Due to mmc optimizations mmc host controllers are turned off during mmc suspend. These clocks have to be turned ON during ICE program/evict key. In PFK based FBE there would be numerous calls to program/evict ICE key. The change ensure required clocks are turned on before programming crypto key to avoid any unclocked access. Validations done:- 1) Flash P SDM660 build and let device bootup successfully to UI. 2) adb shell getprop ro.crypto.state: encrypted adb shell getprop ro.crypto.type: file 3) Create files under /data and /data/misc/vold/user_key 4) Flash T build except userdata i.e. OTA to T. 5) Device able to boot successfully to UI. 6) Files created earlier got retained after flashing T build. Change-Id: Ia1629a6b373895af42b1c724aebbe7ae6fc7de93 Signed-off-by: Pruthvi Kurada <quic_pkurada@quicinc.com>
455 lines
12 KiB
C
455 lines
12 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2020-2021, Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#include <crypto/algapi.h>
|
|
#include "sdhci.h"
|
|
#include "sdhci-pltfm.h"
|
|
#include "sdhci-msm.h"
|
|
#include "cqhci-crypto-qti.h"
|
|
#include "../core/queue.h"
|
|
#include <linux/crypto-qti-common.h>
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/atomic.h>
|
|
#if IS_ENABLED(CONFIG_CRYPTO_DEV_QCOM_ICE)
|
|
#include <crypto/ice.h>
|
|
#include <linux/blkdev.h>
|
|
#endif
|
|
|
|
#define RAW_SECRET_SIZE 32
|
|
#define MINIMUM_DUN_SIZE 512
|
|
#define MAXIMUM_DUN_SIZE 65536
|
|
|
|
static struct cqhci_host_crypto_variant_ops cqhci_crypto_qti_variant_ops = {
|
|
.host_init_crypto = cqhci_crypto_qti_init_crypto,
|
|
.enable = cqhci_crypto_qti_enable,
|
|
.disable = cqhci_crypto_qti_disable,
|
|
.resume = cqhci_crypto_qti_resume,
|
|
.debug = cqhci_crypto_qti_debug,
|
|
.reset = cqhci_crypto_qti_reset,
|
|
.prepare_crypto_desc = cqhci_crypto_qti_prep_desc,
|
|
.recovery_finish = cqhci_crypto_qti_recovery_finish,
|
|
};
|
|
|
|
static atomic_t keycache;
|
|
static bool cmdq_use_default_du_size;
|
|
|
|
static bool ice_cap_idx_valid(struct cqhci_host *host,
|
|
unsigned int cap_idx)
|
|
{
|
|
return cap_idx < host->crypto_capabilities.num_crypto_cap;
|
|
}
|
|
|
|
static uint8_t get_data_unit_size_mask(unsigned int data_unit_size)
|
|
{
|
|
unsigned int du_size;
|
|
|
|
if (data_unit_size < MINIMUM_DUN_SIZE ||
|
|
data_unit_size > MAXIMUM_DUN_SIZE ||
|
|
!is_power_of_2(data_unit_size))
|
|
return 0;
|
|
|
|
if (cmdq_use_default_du_size)
|
|
du_size = MINIMUM_DUN_SIZE;
|
|
else
|
|
du_size = data_unit_size;
|
|
|
|
return du_size / MINIMUM_DUN_SIZE;
|
|
}
|
|
|
|
|
|
void cqhci_crypto_qti_enable(struct cqhci_host *host)
|
|
{
|
|
int err = 0;
|
|
|
|
if (!cqhci_host_is_crypto_supported(host))
|
|
return;
|
|
|
|
host->caps |= CQHCI_CAP_CRYPTO_SUPPORT;
|
|
|
|
err = crypto_qti_enable(host->crypto_vops->priv);
|
|
if (err) {
|
|
pr_err("%s: Error enabling crypto, err %d\n",
|
|
__func__, err);
|
|
cqhci_crypto_qti_disable(host);
|
|
}
|
|
}
|
|
|
|
void cqhci_crypto_qti_disable(struct cqhci_host *host)
|
|
{
|
|
cqhci_crypto_disable_spec(host);
|
|
crypto_qti_disable(host->crypto_vops->priv);
|
|
}
|
|
|
|
int cqhci_crypto_qti_reset(struct cqhci_host *host)
|
|
{
|
|
atomic_set(&keycache, 0);
|
|
return 0;
|
|
}
|
|
|
|
static int cqhci_crypto_qti_keyslot_program(struct keyslot_manager *ksm,
|
|
const struct blk_crypto_key *key,
|
|
unsigned int slot)
|
|
{
|
|
struct cqhci_host *host = keyslot_manager_private(ksm);
|
|
int err = 0;
|
|
u8 data_unit_mask;
|
|
int crypto_alg_id;
|
|
struct sdhci_host *sdhci = mmc_priv(host->mmc);
|
|
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(sdhci);
|
|
struct sdhci_msm_host *msm_host = pltfm_host->priv;
|
|
|
|
crypto_alg_id = cqhci_crypto_cap_find(host, key->crypto_mode,
|
|
key->data_unit_size);
|
|
|
|
if (!IS_ERR(msm_host->pclk) && !IS_ERR(msm_host->ice_clk)) {
|
|
err = clk_prepare_enable(msm_host->pclk);
|
|
if (err)
|
|
return err;
|
|
err = clk_prepare_enable(msm_host->ice_clk);
|
|
if (err)
|
|
return err;
|
|
} else {
|
|
pr_err("%s: Invalid clock value\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
pm_runtime_get_sync(&host->mmc->card->dev);
|
|
|
|
if (!cqhci_is_crypto_enabled(host) ||
|
|
!cqhci_keyslot_valid(host, slot) ||
|
|
!ice_cap_idx_valid(host, crypto_alg_id)) {
|
|
pm_runtime_put_sync(&host->mmc->card->dev);
|
|
return -EINVAL;
|
|
}
|
|
|
|
data_unit_mask = get_data_unit_size_mask(key->data_unit_size);
|
|
|
|
if (!(data_unit_mask &
|
|
host->crypto_cap_array[crypto_alg_id].sdus_mask)) {
|
|
pm_runtime_put_sync(&host->mmc->card->dev);
|
|
return -EINVAL;
|
|
}
|
|
|
|
err = crypto_qti_keyslot_program(host->crypto_vops->priv, key,
|
|
slot, data_unit_mask, crypto_alg_id);
|
|
if (err)
|
|
pr_err("%s: failed with error %d\n", __func__, err);
|
|
|
|
clk_disable_unprepare(msm_host->pclk);
|
|
clk_disable_unprepare(msm_host->ice_clk);
|
|
pm_runtime_put_sync(&host->mmc->card->dev);
|
|
return err;
|
|
}
|
|
|
|
static int cqhci_crypto_qti_keyslot_evict(struct keyslot_manager *ksm,
|
|
const struct blk_crypto_key *key,
|
|
unsigned int slot)
|
|
{
|
|
int err = 0;
|
|
int val = 0;
|
|
struct cqhci_host *host = keyslot_manager_private(ksm);
|
|
struct sdhci_host *sdhci = mmc_priv(host->mmc);
|
|
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(sdhci);
|
|
struct sdhci_msm_host *msm_host = pltfm_host->priv;
|
|
|
|
if (!IS_ERR(msm_host->pclk) && !IS_ERR(msm_host->ice_clk)) {
|
|
err = clk_prepare_enable(msm_host->pclk);
|
|
if (err)
|
|
return err;
|
|
err = clk_prepare_enable(msm_host->ice_clk);
|
|
if (err)
|
|
return err;
|
|
} else {
|
|
pr_err("%s: Invalid clock value\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
pm_runtime_get_sync(&host->mmc->card->dev);
|
|
|
|
if (!cqhci_is_crypto_enabled(host) ||
|
|
!cqhci_keyslot_valid(host, slot)) {
|
|
pm_runtime_put_sync(&host->mmc->card->dev);
|
|
return -EINVAL;
|
|
}
|
|
|
|
err = crypto_qti_keyslot_evict(host->crypto_vops->priv, slot);
|
|
if (err)
|
|
pr_err("%s: failed with error %d\n", __func__, err);
|
|
|
|
clk_disable_unprepare(msm_host->pclk);
|
|
clk_disable_unprepare(msm_host->ice_clk);
|
|
pm_runtime_put_sync(&host->mmc->card->dev);
|
|
val = atomic_read(&keycache) & ~(1 << slot);
|
|
atomic_set(&keycache, val);
|
|
return err;
|
|
}
|
|
|
|
static int cqhci_crypto_qti_derive_raw_secret(struct keyslot_manager *ksm,
|
|
const u8 *wrapped_key, unsigned int wrapped_key_size,
|
|
u8 *secret, unsigned int secret_size)
|
|
{
|
|
int err = 0;
|
|
|
|
err = crypto_qti_derive_raw_secret(wrapped_key, wrapped_key_size,
|
|
secret, secret_size);
|
|
|
|
return err;
|
|
}
|
|
|
|
static const struct keyslot_mgmt_ll_ops cqhci_crypto_qti_ksm_ops = {
|
|
.keyslot_program = cqhci_crypto_qti_keyslot_program,
|
|
.keyslot_evict = cqhci_crypto_qti_keyslot_evict,
|
|
.derive_raw_secret = cqhci_crypto_qti_derive_raw_secret
|
|
};
|
|
|
|
enum blk_crypto_mode_num cqhci_blk_crypto_qti_mode_num_for_alg_dusize(
|
|
enum cqhci_crypto_alg cqhci_crypto_alg,
|
|
enum cqhci_crypto_key_size key_size)
|
|
{
|
|
/*
|
|
* Currently the only mode that eMMC and blk-crypto both support.
|
|
*/
|
|
if (cqhci_crypto_alg == CQHCI_CRYPTO_ALG_AES_XTS &&
|
|
key_size == CQHCI_CRYPTO_KEY_SIZE_256)
|
|
return BLK_ENCRYPTION_MODE_AES_256_XTS;
|
|
|
|
return BLK_ENCRYPTION_MODE_INVALID;
|
|
}
|
|
|
|
int cqhci_host_init_crypto_qti_spec(struct cqhci_host *host,
|
|
const struct keyslot_mgmt_ll_ops *ksm_ops)
|
|
{
|
|
int cap_idx = 0;
|
|
int err = 0;
|
|
unsigned int crypto_modes_supported[BLK_ENCRYPTION_MODE_MAX];
|
|
enum blk_crypto_mode_num blk_mode_num;
|
|
|
|
/* Default to disabling crypto */
|
|
host->caps &= ~CQHCI_CAP_CRYPTO_SUPPORT;
|
|
|
|
if (!(cqhci_readl(host, CQHCI_CAP) & CQHCI_CAP_CS)) {
|
|
pr_debug("%s no crypto capability\n", __func__);
|
|
err = -ENODEV;
|
|
goto out;
|
|
}
|
|
|
|
/*
|
|
* Crypto Capabilities should never be 0, because the
|
|
* config_array_ptr > 04h. So we use a 0 value to indicate that
|
|
* crypto init failed, and can't be enabled.
|
|
*/
|
|
host->crypto_capabilities.reg_val = cqhci_readl(host, CQHCI_CCAP);
|
|
host->crypto_cfg_register =
|
|
(u32)host->crypto_capabilities.config_array_ptr * 0x100;
|
|
host->crypto_cap_array =
|
|
devm_kcalloc(mmc_dev(host->mmc),
|
|
host->crypto_capabilities.num_crypto_cap,
|
|
sizeof(host->crypto_cap_array[0]), GFP_KERNEL);
|
|
if (!host->crypto_cap_array) {
|
|
err = -ENOMEM;
|
|
pr_err("%s failed to allocate memory\n", __func__);
|
|
goto out;
|
|
}
|
|
|
|
memset(crypto_modes_supported, 0, sizeof(crypto_modes_supported));
|
|
|
|
/*
|
|
* Store all the capabilities now so that we don't need to repeatedly
|
|
* access the device each time we want to know its capabilities
|
|
*/
|
|
for (cap_idx = 0; cap_idx < host->crypto_capabilities.num_crypto_cap;
|
|
cap_idx++) {
|
|
host->crypto_cap_array[cap_idx].reg_val =
|
|
cpu_to_le32(cqhci_readl(host,
|
|
CQHCI_CRYPTOCAP +
|
|
cap_idx * sizeof(__le32)));
|
|
blk_mode_num = cqhci_blk_crypto_qti_mode_num_for_alg_dusize(
|
|
host->crypto_cap_array[cap_idx].algorithm_id,
|
|
host->crypto_cap_array[cap_idx].key_size);
|
|
if (blk_mode_num == BLK_ENCRYPTION_MODE_INVALID)
|
|
continue;
|
|
crypto_modes_supported[blk_mode_num] |=
|
|
host->crypto_cap_array[cap_idx].sdus_mask * 512;
|
|
}
|
|
|
|
host->ksm = keyslot_manager_create(host->mmc->parent,
|
|
cqhci_num_keyslots(host), ksm_ops,
|
|
BLK_CRYPTO_FEATURE_STANDARD_KEYS |
|
|
BLK_CRYPTO_FEATURE_WRAPPED_KEYS,
|
|
crypto_modes_supported, host);
|
|
|
|
if (!host->ksm) {
|
|
err = -ENOMEM;
|
|
goto out;
|
|
}
|
|
keyslot_manager_set_max_dun_bytes(host->ksm, sizeof(u32));
|
|
|
|
/*
|
|
* In case host controller supports cryptographic operations
|
|
* then, it uses 128bit task descriptor. Upper 64 bits of task
|
|
* descriptor would be used to pass crypto specific informaton.
|
|
*/
|
|
host->caps |= CQHCI_TASK_DESC_SZ_128;
|
|
|
|
return 0;
|
|
|
|
out:
|
|
/* Indicate that init failed by setting crypto_capabilities to 0 */
|
|
host->crypto_capabilities.reg_val = 0;
|
|
return err;
|
|
}
|
|
|
|
int cqhci_crypto_qti_init_crypto(struct cqhci_host *host,
|
|
const struct keyslot_mgmt_ll_ops *ksm_ops)
|
|
{
|
|
int err = 0;
|
|
struct sdhci_host *sdhci = mmc_priv(host->mmc);
|
|
struct sdhci_pltfm_host *pltfm_host = sdhci_priv(sdhci);
|
|
struct sdhci_msm_host *msm_host = pltfm_host->priv;
|
|
struct resource *cqhci_ice_memres = NULL;
|
|
|
|
cqhci_ice_memres = platform_get_resource_byname(msm_host->pdev,
|
|
IORESOURCE_MEM,
|
|
"cqhci_ice");
|
|
if (!cqhci_ice_memres) {
|
|
pr_debug("%s ICE not supported\n", __func__);
|
|
host->icemmio = NULL;
|
|
host->caps &= ~CQHCI_CAP_CRYPTO_SUPPORT;
|
|
return err;
|
|
}
|
|
|
|
host->icemmio = devm_ioremap(&msm_host->pdev->dev,
|
|
cqhci_ice_memres->start,
|
|
resource_size(cqhci_ice_memres));
|
|
if (!host->icemmio) {
|
|
pr_err("%s failed to remap ice regs\n", __func__);
|
|
return PTR_ERR(host->icemmio);
|
|
}
|
|
|
|
err = cqhci_host_init_crypto_qti_spec(host, &cqhci_crypto_qti_ksm_ops);
|
|
if (err) {
|
|
pr_err("%s: Error initiating crypto capabilities, err %d\n",
|
|
__func__, err);
|
|
return err;
|
|
}
|
|
|
|
err = crypto_qti_init_crypto(&msm_host->pdev->dev,
|
|
host->icemmio, (void **)&host->crypto_vops->priv);
|
|
if (err) {
|
|
pr_err("%s: Error initiating crypto, err %d\n",
|
|
__func__, err);
|
|
}
|
|
return err;
|
|
}
|
|
|
|
|
|
int cqhci_crypto_qti_prep_desc(struct cqhci_host *host, struct mmc_request *mrq,
|
|
u64 *ice_ctx)
|
|
{
|
|
struct bio_crypt_ctx *bc;
|
|
struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
|
|
brq.mrq);
|
|
struct request *req = mmc_queue_req_to_req(mqrq);
|
|
int ret = 0;
|
|
int val = 0;
|
|
#if IS_ENABLED(CONFIG_CRYPTO_DEV_QCOM_ICE)
|
|
struct ice_data_setting setting;
|
|
bool bypass = true;
|
|
short key_index = 0;
|
|
#endif
|
|
|
|
*ice_ctx = 0;
|
|
if (!req || !req->bio)
|
|
return ret;
|
|
|
|
if (!bio_crypt_should_process(req)) {
|
|
#if IS_ENABLED(CONFIG_CRYPTO_DEV_QCOM_ICE)
|
|
ret = qcom_ice_config_start(req, &setting);
|
|
if (!ret) {
|
|
key_index = setting.crypto_data.key_index;
|
|
bypass = (rq_data_dir(req) == WRITE) ?
|
|
setting.encr_bypass : setting.decr_bypass;
|
|
*ice_ctx = DATA_UNIT_NUM(req->__sector) |
|
|
CRYPTO_CONFIG_INDEX(key_index) |
|
|
CRYPTO_ENABLE(!bypass);
|
|
} else {
|
|
pr_err("%s crypto config failed err = %d\n", __func__,
|
|
ret);
|
|
}
|
|
#endif
|
|
return ret;
|
|
}
|
|
if (WARN_ON(!cqhci_is_crypto_enabled(host))) {
|
|
/*
|
|
* Upper layer asked us to do inline encryption
|
|
* but that isn't enabled, so we fail this request.
|
|
*/
|
|
return -EINVAL;
|
|
}
|
|
|
|
bc = req->bio->bi_crypt_context;
|
|
|
|
if (!cqhci_keyslot_valid(host, bc->bc_keyslot))
|
|
return -EINVAL;
|
|
|
|
if (!(atomic_read(&keycache) & (1 << bc->bc_keyslot))) {
|
|
if (bc->is_ext4)
|
|
cmdq_use_default_du_size = true;
|
|
else
|
|
cmdq_use_default_du_size = false;
|
|
|
|
ret = cqhci_crypto_qti_keyslot_program(host->ksm, bc->bc_key,
|
|
bc->bc_keyslot);
|
|
if (ret) {
|
|
pr_err("%s keyslot program failed %d\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
val = atomic_read(&keycache) | (1 << bc->bc_keyslot);
|
|
atomic_set(&keycache, val);
|
|
}
|
|
|
|
if (ice_ctx) {
|
|
if (bc->is_ext4)
|
|
*ice_ctx = DATA_UNIT_NUM(req->__sector);
|
|
else
|
|
*ice_ctx = DATA_UNIT_NUM(bc->bc_dun[0]);
|
|
|
|
*ice_ctx = *ice_ctx | CRYPTO_CONFIG_INDEX(bc->bc_keyslot) |
|
|
CRYPTO_ENABLE(true);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
int cqhci_crypto_qti_debug(struct cqhci_host *host)
|
|
{
|
|
return crypto_qti_debug(host->crypto_vops->priv);
|
|
}
|
|
|
|
void cqhci_crypto_qti_set_vops(struct cqhci_host *host)
|
|
{
|
|
return cqhci_crypto_set_vops(host, &cqhci_crypto_qti_variant_ops);
|
|
}
|
|
|
|
int cqhci_crypto_qti_resume(struct cqhci_host *host)
|
|
{
|
|
return crypto_qti_resume(host->crypto_vops->priv);
|
|
}
|
|
|
|
int cqhci_crypto_qti_recovery_finish(struct cqhci_host *host)
|
|
{
|
|
keyslot_manager_reprogram_all_keys(host->ksm);
|
|
return 0;
|
|
}
|