blob: 94b5bcf5b628a1ddd585914f9d48e4ad0a6a2cb7 [file] [log] [blame]
Tom Lendacky1d6b8a62013-11-12 11:46:40 -06001/*
2 * AMD Cryptographic Coprocessor (CCP) AES XTS crypto API support
3 *
Gary R Hooke6523992017-07-25 14:12:11 -05004 * Copyright (C) 2013,2017 Advanced Micro Devices, Inc.
Tom Lendacky1d6b8a62013-11-12 11:46:40 -06005 *
Gary R Hooke6523992017-07-25 14:12:11 -05006 * Author: Gary R Hook <gary.hook@amd.com>
Tom Lendacky1d6b8a62013-11-12 11:46:40 -06007 * Author: Tom Lendacky <thomas.lendacky@amd.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/sched.h>
16#include <linux/delay.h>
17#include <linux/scatterlist.h>
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060018#include <crypto/aes.h>
Gary R Hook47f27f12017-07-25 14:21:23 -050019#include <crypto/xts.h>
Herbert Xu241118d2016-06-29 18:04:01 +080020#include <crypto/internal/skcipher.h>
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060021#include <crypto/scatterwalk.h>
22
23#include "ccp-crypto.h"
24
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060025struct ccp_aes_xts_def {
26 const char *name;
27 const char *drv_name;
28};
29
30static struct ccp_aes_xts_def aes_xts_algs[] = {
31 {
32 .name = "xts(aes)",
33 .drv_name = "xts-aes-ccp",
34 },
35};
36
37struct ccp_unit_size_map {
38 unsigned int size;
39 u32 value;
40};
41
Gary R Hook7f7216c2017-07-25 14:21:34 -050042static struct ccp_unit_size_map xts_unit_sizes[] = {
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060043 {
Gary R Hook7f7216c2017-07-25 14:21:34 -050044 .size = 16,
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060045 .value = CCP_XTS_AES_UNIT_SIZE_16,
46 },
47 {
Gary R Hook7f7216c2017-07-25 14:21:34 -050048 .size = 512,
49 .value = CCP_XTS_AES_UNIT_SIZE_512,
50 },
51 {
52 .size = 1024,
53 .value = CCP_XTS_AES_UNIT_SIZE_1024,
54 },
55 {
56 .size = 2048,
57 .value = CCP_XTS_AES_UNIT_SIZE_2048,
58 },
59 {
60 .size = 4096,
61 .value = CCP_XTS_AES_UNIT_SIZE_4096,
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060062 },
63};
64
65static int ccp_aes_xts_complete(struct crypto_async_request *async_req, int ret)
66{
67 struct ablkcipher_request *req = ablkcipher_request_cast(async_req);
68 struct ccp_aes_req_ctx *rctx = ablkcipher_request_ctx(req);
69
70 if (ret)
71 return ret;
72
73 memcpy(req->info, rctx->iv, AES_BLOCK_SIZE);
74
75 return 0;
76}
77
78static int ccp_aes_xts_setkey(struct crypto_ablkcipher *tfm, const u8 *key,
79 unsigned int key_len)
80{
Gary R Hook47f27f12017-07-25 14:21:23 -050081 struct crypto_tfm *xfm = crypto_ablkcipher_tfm(tfm);
82 struct ccp_ctx *ctx = crypto_tfm_ctx(xfm);
Gary R Hook5060ffc2017-07-25 14:21:43 -050083 unsigned int ccpversion = ccp_version();
Gary R Hook47f27f12017-07-25 14:21:23 -050084 int ret;
85
86 ret = xts_check_key(xfm, key, key_len);
87 if (ret)
88 return ret;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060089
Gary R Hook5060ffc2017-07-25 14:21:43 -050090 /* Version 3 devices support 128-bit keys; version 5 devices can
91 * accommodate 128- and 256-bit keys.
Tom Lendacky1d6b8a62013-11-12 11:46:40 -060092 */
93 switch (key_len) {
94 case AES_KEYSIZE_128 * 2:
95 memcpy(ctx->u.aes.key, key, key_len);
96 break;
Gary R Hook5060ffc2017-07-25 14:21:43 -050097 case AES_KEYSIZE_256 * 2:
98 if (ccpversion > CCP_VERSION(3, 0))
99 memcpy(ctx->u.aes.key, key, key_len);
100 break;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600101 }
102 ctx->u.aes.key_len = key_len / 2;
103 sg_init_one(&ctx->u.aes.key_sg, ctx->u.aes.key, key_len);
104
Herbert Xu241118d2016-06-29 18:04:01 +0800105 return crypto_skcipher_setkey(ctx->u.aes.tfm_skcipher, key, key_len);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600106}
107
108static int ccp_aes_xts_crypt(struct ablkcipher_request *req,
109 unsigned int encrypt)
110{
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600111 struct ccp_ctx *ctx = crypto_tfm_ctx(req->base.tfm);
112 struct ccp_aes_req_ctx *rctx = ablkcipher_request_ctx(req);
Gary R Hook5060ffc2017-07-25 14:21:43 -0500113 unsigned int ccpversion = ccp_version();
114 unsigned int fallback = 0;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600115 unsigned int unit;
Tom Lendackyab6a11a2016-05-20 17:33:03 -0500116 u32 unit_size;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600117 int ret;
118
Tom Lendacky369f3da2013-12-10 10:38:44 -0600119 if (!ctx->u.aes.key_len)
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600120 return -EINVAL;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600121
Tom Lendacky369f3da2013-12-10 10:38:44 -0600122 if (req->nbytes & (AES_BLOCK_SIZE - 1))
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600123 return -EINVAL;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600124
Tom Lendacky369f3da2013-12-10 10:38:44 -0600125 if (!req->info)
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600126 return -EINVAL;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600127
Gary R Hook7f7216c2017-07-25 14:21:34 -0500128 /* Check conditions under which the CCP can fulfill a request. The
129 * device can handle input plaintext of a length that is a multiple
130 * of the unit_size, bug the crypto implementation only supports
131 * the unit_size being equal to the input length. This limits the
132 * number of scenarios we can handle.
133 */
Tom Lendackyab6a11a2016-05-20 17:33:03 -0500134 unit_size = CCP_XTS_AES_UNIT_SIZE__LAST;
Gary R Hook7f7216c2017-07-25 14:21:34 -0500135 for (unit = 0; unit < ARRAY_SIZE(xts_unit_sizes); unit++) {
136 if (req->nbytes == xts_unit_sizes[unit].size) {
137 unit_size = unit;
138 break;
Tom Lendackyab6a11a2016-05-20 17:33:03 -0500139 }
140 }
Gary R Hook5060ffc2017-07-25 14:21:43 -0500141 /* The CCP has restrictions on block sizes. Also, a version 3 device
142 * only supports AES-128 operations; version 5 CCPs support both
143 * AES-128 and -256 operations.
144 */
145 if (unit_size == CCP_XTS_AES_UNIT_SIZE__LAST)
146 fallback = 1;
147 if ((ccpversion < CCP_VERSION(5, 0)) &&
148 (ctx->u.aes.key_len != AES_KEYSIZE_128))
149 fallback = 1;
150 if ((ctx->u.aes.key_len != AES_KEYSIZE_128) &&
151 (ctx->u.aes.key_len != AES_KEYSIZE_256))
152 fallback = 1;
153 if (fallback) {
Herbert Xu241118d2016-06-29 18:04:01 +0800154 SKCIPHER_REQUEST_ON_STACK(subreq, ctx->u.aes.tfm_skcipher);
155
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600156 /* Use the fallback to process the request for any
157 * unsupported unit sizes or key sizes
158 */
Herbert Xu241118d2016-06-29 18:04:01 +0800159 skcipher_request_set_tfm(subreq, ctx->u.aes.tfm_skcipher);
160 skcipher_request_set_callback(subreq, req->base.flags,
161 NULL, NULL);
162 skcipher_request_set_crypt(subreq, req->src, req->dst,
163 req->nbytes, req->info);
164 ret = encrypt ? crypto_skcipher_encrypt(subreq) :
165 crypto_skcipher_decrypt(subreq);
166 skcipher_request_zero(subreq);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600167 return ret;
168 }
169
170 memcpy(rctx->iv, req->info, AES_BLOCK_SIZE);
171 sg_init_one(&rctx->iv_sg, rctx->iv, AES_BLOCK_SIZE);
172
173 memset(&rctx->cmd, 0, sizeof(rctx->cmd));
174 INIT_LIST_HEAD(&rctx->cmd.entry);
175 rctx->cmd.engine = CCP_ENGINE_XTS_AES_128;
Gary R Hooke6523992017-07-25 14:12:11 -0500176 rctx->cmd.u.xts.type = CCP_AES_TYPE_128;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600177 rctx->cmd.u.xts.action = (encrypt) ? CCP_AES_ACTION_ENCRYPT
178 : CCP_AES_ACTION_DECRYPT;
Tom Lendackyab6a11a2016-05-20 17:33:03 -0500179 rctx->cmd.u.xts.unit_size = unit_size;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600180 rctx->cmd.u.xts.key = &ctx->u.aes.key_sg;
181 rctx->cmd.u.xts.key_len = ctx->u.aes.key_len;
182 rctx->cmd.u.xts.iv = &rctx->iv_sg;
183 rctx->cmd.u.xts.iv_len = AES_BLOCK_SIZE;
184 rctx->cmd.u.xts.src = req->src;
185 rctx->cmd.u.xts.src_len = req->nbytes;
186 rctx->cmd.u.xts.dst = req->dst;
187
188 ret = ccp_crypto_enqueue_request(&req->base, &rctx->cmd);
189
190 return ret;
191}
192
193static int ccp_aes_xts_encrypt(struct ablkcipher_request *req)
194{
195 return ccp_aes_xts_crypt(req, 1);
196}
197
198static int ccp_aes_xts_decrypt(struct ablkcipher_request *req)
199{
200 return ccp_aes_xts_crypt(req, 0);
201}
202
203static int ccp_aes_xts_cra_init(struct crypto_tfm *tfm)
204{
205 struct ccp_ctx *ctx = crypto_tfm_ctx(tfm);
Herbert Xu241118d2016-06-29 18:04:01 +0800206 struct crypto_skcipher *fallback_tfm;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600207
208 ctx->complete = ccp_aes_xts_complete;
209 ctx->u.aes.key_len = 0;
210
Herbert Xu241118d2016-06-29 18:04:01 +0800211 fallback_tfm = crypto_alloc_skcipher("xts(aes)", 0,
212 CRYPTO_ALG_ASYNC |
213 CRYPTO_ALG_NEED_FALLBACK);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600214 if (IS_ERR(fallback_tfm)) {
Herbert Xu241118d2016-06-29 18:04:01 +0800215 pr_warn("could not load fallback driver xts(aes)\n");
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600216 return PTR_ERR(fallback_tfm);
217 }
Herbert Xu241118d2016-06-29 18:04:01 +0800218 ctx->u.aes.tfm_skcipher = fallback_tfm;
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600219
Herbert Xu241118d2016-06-29 18:04:01 +0800220 tfm->crt_ablkcipher.reqsize = sizeof(struct ccp_aes_req_ctx);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600221
222 return 0;
223}
224
225static void ccp_aes_xts_cra_exit(struct crypto_tfm *tfm)
226{
227 struct ccp_ctx *ctx = crypto_tfm_ctx(tfm);
228
Herbert Xu241118d2016-06-29 18:04:01 +0800229 crypto_free_skcipher(ctx->u.aes.tfm_skcipher);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600230}
231
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600232static int ccp_register_aes_xts_alg(struct list_head *head,
233 const struct ccp_aes_xts_def *def)
234{
235 struct ccp_crypto_ablkcipher_alg *ccp_alg;
236 struct crypto_alg *alg;
237 int ret;
238
239 ccp_alg = kzalloc(sizeof(*ccp_alg), GFP_KERNEL);
240 if (!ccp_alg)
241 return -ENOMEM;
242
243 INIT_LIST_HEAD(&ccp_alg->entry);
244
245 alg = &ccp_alg->alg;
246
247 snprintf(alg->cra_name, CRYPTO_MAX_ALG_NAME, "%s", def->name);
248 snprintf(alg->cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s",
249 def->drv_name);
250 alg->cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC |
251 CRYPTO_ALG_KERN_DRIVER_ONLY |
252 CRYPTO_ALG_NEED_FALLBACK;
253 alg->cra_blocksize = AES_BLOCK_SIZE;
254 alg->cra_ctxsize = sizeof(struct ccp_ctx);
255 alg->cra_priority = CCP_CRA_PRIORITY;
256 alg->cra_type = &crypto_ablkcipher_type;
257 alg->cra_ablkcipher.setkey = ccp_aes_xts_setkey;
258 alg->cra_ablkcipher.encrypt = ccp_aes_xts_encrypt;
259 alg->cra_ablkcipher.decrypt = ccp_aes_xts_decrypt;
260 alg->cra_ablkcipher.min_keysize = AES_MIN_KEY_SIZE * 2;
261 alg->cra_ablkcipher.max_keysize = AES_MAX_KEY_SIZE * 2;
262 alg->cra_ablkcipher.ivsize = AES_BLOCK_SIZE;
263 alg->cra_init = ccp_aes_xts_cra_init;
264 alg->cra_exit = ccp_aes_xts_cra_exit;
265 alg->cra_module = THIS_MODULE;
266
267 ret = crypto_register_alg(alg);
268 if (ret) {
269 pr_err("%s ablkcipher algorithm registration error (%d)\n",
Tom Lendacky8db88462015-02-03 13:07:05 -0600270 alg->cra_name, ret);
Tom Lendacky1d6b8a62013-11-12 11:46:40 -0600271 kfree(ccp_alg);
272 return ret;
273 }
274
275 list_add(&ccp_alg->entry, head);
276
277 return 0;
278}
279
280int ccp_register_aes_xts_algs(struct list_head *head)
281{
282 int i, ret;
283
284 for (i = 0; i < ARRAY_SIZE(aes_xts_algs); i++) {
285 ret = ccp_register_aes_xts_alg(head, &aes_xts_algs[i]);
286 if (ret)
287 return ret;
288 }
289
290 return 0;
291}