Merge remote-tracking branch 'battery/for-next'
[deliverable/linux.git] / arch / s390 / crypto / aes_s390.c
CommitLineData
bf754ae8
JG
1/*
2 * Cryptographic API.
3 *
4 * s390 implementation of the AES Cipher Algorithm.
5 *
6 * s390 Version:
a53c8fab 7 * Copyright IBM Corp. 2005, 2007
bf754ae8 8 * Author(s): Jan Glauber (jang@de.ibm.com)
b0c3e75d 9 * Sebastian Siewior (sebastian@breakpoint.cc> SW-Fallback
bf754ae8 10 *
f8246af0 11 * Derived from "crypto/aes_generic.c"
bf754ae8
JG
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the Free
15 * Software Foundation; either version 2 of the License, or (at your option)
16 * any later version.
17 *
18 */
19
39f09392
JG
20#define KMSG_COMPONENT "aes_s390"
21#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
22
89e12654 23#include <crypto/aes.h>
a9e62fad 24#include <crypto/algapi.h>
64e26807 25#include <crypto/internal/skcipher.h>
b0c3e75d 26#include <linux/err.h>
bf754ae8 27#include <linux/module.h>
d05377c1 28#include <linux/cpufeature.h>
bf754ae8 29#include <linux/init.h>
0519e9ad 30#include <linux/spinlock.h>
49abc0d2 31#include <crypto/xts.h>
c7d4d259 32#include <asm/cpacf.h>
bf754ae8 33
0200f3ec 34static u8 *ctrblk;
0519e9ad 35static DEFINE_SPINLOCK(ctrblk_lock);
69c0e360
MS
36
37static cpacf_mask_t km_functions, kmc_functions, kmctr_functions;
bf754ae8
JG
38
39struct s390_aes_ctx {
bf754ae8
JG
40 u8 key[AES_MAX_KEY_SIZE];
41 int key_len;
edc63a37 42 unsigned long fc;
b0c3e75d 43 union {
64e26807 44 struct crypto_skcipher *blk;
b0c3e75d
SS
45 struct crypto_cipher *cip;
46 } fallback;
bf754ae8
JG
47};
48
99d97222
GS
49struct s390_xts_ctx {
50 u8 key[32];
9dda2769 51 u8 pcc_key[32];
99d97222 52 int key_len;
edc63a37 53 unsigned long fc;
64e26807 54 struct crypto_skcipher *fallback;
99d97222
GS
55};
56
b0c3e75d
SS
57static int setkey_fallback_cip(struct crypto_tfm *tfm, const u8 *in_key,
58 unsigned int key_len)
59{
60 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
61 int ret;
62
d7ac7690
RK
63 sctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
64 sctx->fallback.cip->base.crt_flags |= (tfm->crt_flags &
b0c3e75d
SS
65 CRYPTO_TFM_REQ_MASK);
66
67 ret = crypto_cipher_setkey(sctx->fallback.cip, in_key, key_len);
68 if (ret) {
69 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
d7ac7690 70 tfm->crt_flags |= (sctx->fallback.cip->base.crt_flags &
b0c3e75d
SS
71 CRYPTO_TFM_RES_MASK);
72 }
73 return ret;
74}
75
76static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
77 unsigned int key_len)
78{
79 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
69c0e360 80 unsigned long fc;
b0c3e75d 81
69c0e360
MS
82 /* Pick the correct function code based on the key length */
83 fc = (key_len == 16) ? CPACF_KM_AES_128 :
84 (key_len == 24) ? CPACF_KM_AES_192 :
85 (key_len == 32) ? CPACF_KM_AES_256 : 0;
bf754ae8 86
69c0e360
MS
87 /* Check if the function code is available */
88 sctx->fc = (fc && cpacf_test_func(&km_functions, fc)) ? fc : 0;
89 if (!sctx->fc)
90 return setkey_fallback_cip(tfm, in_key, key_len);
b0c3e75d 91
69c0e360
MS
92 sctx->key_len = key_len;
93 memcpy(sctx->key, in_key, key_len);
94 return 0;
bf754ae8
JG
95}
96
6c2bb98b 97static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
bf754ae8 98{
e6a67ad0 99 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
bf754ae8 100
69c0e360 101 if (unlikely(!sctx->fc)) {
b0c3e75d
SS
102 crypto_cipher_encrypt_one(sctx->fallback.cip, out, in);
103 return;
104 }
69c0e360 105 cpacf_km(sctx->fc, &sctx->key, out, in, AES_BLOCK_SIZE);
bf754ae8
JG
106}
107
6c2bb98b 108static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
bf754ae8 109{
e6a67ad0 110 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
bf754ae8 111
69c0e360 112 if (unlikely(!sctx->fc)) {
b0c3e75d
SS
113 crypto_cipher_decrypt_one(sctx->fallback.cip, out, in);
114 return;
115 }
69c0e360
MS
116 cpacf_km(sctx->fc | CPACF_DECRYPT,
117 &sctx->key, out, in, AES_BLOCK_SIZE);
bf754ae8
JG
118}
119
b0c3e75d
SS
120static int fallback_init_cip(struct crypto_tfm *tfm)
121{
122 const char *name = tfm->__crt_alg->cra_name;
123 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
124
125 sctx->fallback.cip = crypto_alloc_cipher(name, 0,
126 CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
127
128 if (IS_ERR(sctx->fallback.cip)) {
39f09392
JG
129 pr_err("Allocating AES fallback algorithm %s failed\n",
130 name);
b59cdcb3 131 return PTR_ERR(sctx->fallback.cip);
b0c3e75d
SS
132 }
133
134 return 0;
135}
136
137static void fallback_exit_cip(struct crypto_tfm *tfm)
138{
139 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
140
141 crypto_free_cipher(sctx->fallback.cip);
142 sctx->fallback.cip = NULL;
143}
bf754ae8
JG
144
145static struct crypto_alg aes_alg = {
146 .cra_name = "aes",
65b75c36 147 .cra_driver_name = "aes-s390",
c7d4d259 148 .cra_priority = 300,
f67d1369
JG
149 .cra_flags = CRYPTO_ALG_TYPE_CIPHER |
150 CRYPTO_ALG_NEED_FALLBACK,
bf754ae8
JG
151 .cra_blocksize = AES_BLOCK_SIZE,
152 .cra_ctxsize = sizeof(struct s390_aes_ctx),
153 .cra_module = THIS_MODULE,
b0c3e75d
SS
154 .cra_init = fallback_init_cip,
155 .cra_exit = fallback_exit_cip,
bf754ae8
JG
156 .cra_u = {
157 .cipher = {
158 .cia_min_keysize = AES_MIN_KEY_SIZE,
159 .cia_max_keysize = AES_MAX_KEY_SIZE,
160 .cia_setkey = aes_set_key,
161 .cia_encrypt = aes_encrypt,
162 .cia_decrypt = aes_decrypt,
bf754ae8
JG
163 }
164 }
165};
166
b0c3e75d
SS
167static int setkey_fallback_blk(struct crypto_tfm *tfm, const u8 *key,
168 unsigned int len)
169{
170 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
171 unsigned int ret;
172
64e26807
HX
173 crypto_skcipher_clear_flags(sctx->fallback.blk, CRYPTO_TFM_REQ_MASK);
174 crypto_skcipher_set_flags(sctx->fallback.blk, tfm->crt_flags &
175 CRYPTO_TFM_REQ_MASK);
176
177 ret = crypto_skcipher_setkey(sctx->fallback.blk, key, len);
178
179 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
180 tfm->crt_flags |= crypto_skcipher_get_flags(sctx->fallback.blk) &
181 CRYPTO_TFM_RES_MASK;
b0c3e75d 182
b0c3e75d
SS
183 return ret;
184}
185
186static int fallback_blk_dec(struct blkcipher_desc *desc,
187 struct scatterlist *dst, struct scatterlist *src,
188 unsigned int nbytes)
189{
190 unsigned int ret;
64e26807
HX
191 struct crypto_blkcipher *tfm = desc->tfm;
192 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(tfm);
193 SKCIPHER_REQUEST_ON_STACK(req, sctx->fallback.blk);
b0c3e75d 194
64e26807
HX
195 skcipher_request_set_tfm(req, sctx->fallback.blk);
196 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
197 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
b0c3e75d 198
64e26807 199 ret = crypto_skcipher_decrypt(req);
b0c3e75d 200
64e26807 201 skcipher_request_zero(req);
b0c3e75d
SS
202 return ret;
203}
204
205static int fallback_blk_enc(struct blkcipher_desc *desc,
206 struct scatterlist *dst, struct scatterlist *src,
207 unsigned int nbytes)
208{
209 unsigned int ret;
64e26807
HX
210 struct crypto_blkcipher *tfm = desc->tfm;
211 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(tfm);
212 SKCIPHER_REQUEST_ON_STACK(req, sctx->fallback.blk);
b0c3e75d 213
64e26807
HX
214 skcipher_request_set_tfm(req, sctx->fallback.blk);
215 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
216 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
b0c3e75d 217
64e26807 218 ret = crypto_skcipher_encrypt(req);
b0c3e75d
SS
219 return ret;
220}
221
a9e62fad
HX
222static int ecb_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
223 unsigned int key_len)
224{
225 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
69c0e360 226 unsigned long fc;
b0c3e75d 227
69c0e360
MS
228 /* Pick the correct function code based on the key length */
229 fc = (key_len == 16) ? CPACF_KM_AES_128 :
230 (key_len == 24) ? CPACF_KM_AES_192 :
231 (key_len == 32) ? CPACF_KM_AES_256 : 0;
a9e62fad 232
69c0e360
MS
233 /* Check if the function code is available */
234 sctx->fc = (fc && cpacf_test_func(&km_functions, fc)) ? fc : 0;
235 if (!sctx->fc)
236 return setkey_fallback_blk(tfm, in_key, key_len);
a9e62fad 237
69c0e360
MS
238 sctx->key_len = key_len;
239 memcpy(sctx->key, in_key, key_len);
240 return 0;
a9e62fad
HX
241}
242
7bac4f5b 243static int ecb_aes_crypt(struct blkcipher_desc *desc, unsigned long modifier,
a9e62fad
HX
244 struct blkcipher_walk *walk)
245{
7bac4f5b
MS
246 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
247 unsigned int nbytes, n;
248 int ret;
a9e62fad 249
7bac4f5b
MS
250 ret = blkcipher_walk_virt(desc, walk);
251 while ((nbytes = walk->nbytes) >= AES_BLOCK_SIZE) {
a9e62fad 252 /* only use complete blocks */
7bac4f5b
MS
253 n = nbytes & ~(AES_BLOCK_SIZE - 1);
254 cpacf_km(sctx->fc | modifier, sctx->key,
255 walk->dst.virt.addr, walk->src.virt.addr, n);
256 ret = blkcipher_walk_done(desc, walk, nbytes - n);
a9e62fad
HX
257 }
258
259 return ret;
260}
261
262static int ecb_aes_encrypt(struct blkcipher_desc *desc,
263 struct scatterlist *dst, struct scatterlist *src,
264 unsigned int nbytes)
265{
266 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
267 struct blkcipher_walk walk;
268
69c0e360 269 if (unlikely(!sctx->fc))
b0c3e75d
SS
270 return fallback_blk_enc(desc, dst, src, nbytes);
271
a9e62fad 272 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 273 return ecb_aes_crypt(desc, 0, &walk);
a9e62fad
HX
274}
275
276static int ecb_aes_decrypt(struct blkcipher_desc *desc,
277 struct scatterlist *dst, struct scatterlist *src,
278 unsigned int nbytes)
279{
280 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
281 struct blkcipher_walk walk;
282
69c0e360 283 if (unlikely(!sctx->fc))
b0c3e75d
SS
284 return fallback_blk_dec(desc, dst, src, nbytes);
285
a9e62fad 286 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 287 return ecb_aes_crypt(desc, CPACF_DECRYPT, &walk);
a9e62fad
HX
288}
289
b0c3e75d
SS
290static int fallback_init_blk(struct crypto_tfm *tfm)
291{
292 const char *name = tfm->__crt_alg->cra_name;
293 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
294
64e26807
HX
295 sctx->fallback.blk = crypto_alloc_skcipher(name, 0,
296 CRYPTO_ALG_ASYNC |
297 CRYPTO_ALG_NEED_FALLBACK);
b0c3e75d
SS
298
299 if (IS_ERR(sctx->fallback.blk)) {
39f09392
JG
300 pr_err("Allocating AES fallback algorithm %s failed\n",
301 name);
b0c3e75d
SS
302 return PTR_ERR(sctx->fallback.blk);
303 }
304
305 return 0;
306}
307
308static void fallback_exit_blk(struct crypto_tfm *tfm)
309{
310 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
311
64e26807 312 crypto_free_skcipher(sctx->fallback.blk);
b0c3e75d
SS
313}
314
a9e62fad
HX
315static struct crypto_alg ecb_aes_alg = {
316 .cra_name = "ecb(aes)",
317 .cra_driver_name = "ecb-aes-s390",
c7d4d259 318 .cra_priority = 400, /* combo: aes + ecb */
f67d1369
JG
319 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
320 CRYPTO_ALG_NEED_FALLBACK,
a9e62fad
HX
321 .cra_blocksize = AES_BLOCK_SIZE,
322 .cra_ctxsize = sizeof(struct s390_aes_ctx),
323 .cra_type = &crypto_blkcipher_type,
324 .cra_module = THIS_MODULE,
b0c3e75d
SS
325 .cra_init = fallback_init_blk,
326 .cra_exit = fallback_exit_blk,
a9e62fad
HX
327 .cra_u = {
328 .blkcipher = {
329 .min_keysize = AES_MIN_KEY_SIZE,
330 .max_keysize = AES_MAX_KEY_SIZE,
331 .setkey = ecb_aes_set_key,
332 .encrypt = ecb_aes_encrypt,
333 .decrypt = ecb_aes_decrypt,
334 }
335 }
336};
337
338static int cbc_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
339 unsigned int key_len)
340{
341 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
69c0e360 342 unsigned long fc;
b0c3e75d 343
69c0e360
MS
344 /* Pick the correct function code based on the key length */
345 fc = (key_len == 16) ? CPACF_KMC_AES_128 :
346 (key_len == 24) ? CPACF_KMC_AES_192 :
347 (key_len == 32) ? CPACF_KMC_AES_256 : 0;
a9e62fad 348
69c0e360
MS
349 /* Check if the function code is available */
350 sctx->fc = (fc && cpacf_test_func(&kmc_functions, fc)) ? fc : 0;
351 if (!sctx->fc)
352 return setkey_fallback_blk(tfm, in_key, key_len);
a9e62fad 353
69c0e360
MS
354 sctx->key_len = key_len;
355 memcpy(sctx->key, in_key, key_len);
356 return 0;
a9e62fad
HX
357}
358
7bac4f5b 359static int cbc_aes_crypt(struct blkcipher_desc *desc, unsigned long modifier,
a9e62fad
HX
360 struct blkcipher_walk *walk)
361{
f262f0f5 362 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
7bac4f5b
MS
363 unsigned int nbytes, n;
364 int ret;
f262f0f5
HX
365 struct {
366 u8 iv[AES_BLOCK_SIZE];
367 u8 key[AES_MAX_KEY_SIZE];
368 } param;
a9e62fad 369
7bac4f5b 370 ret = blkcipher_walk_virt(desc, walk);
f262f0f5
HX
371 memcpy(param.iv, walk->iv, AES_BLOCK_SIZE);
372 memcpy(param.key, sctx->key, sctx->key_len);
7bac4f5b 373 while ((nbytes = walk->nbytes) >= AES_BLOCK_SIZE) {
a9e62fad 374 /* only use complete blocks */
7bac4f5b
MS
375 n = nbytes & ~(AES_BLOCK_SIZE - 1);
376 cpacf_kmc(sctx->fc | modifier, &param,
377 walk->dst.virt.addr, walk->src.virt.addr, n);
378 ret = blkcipher_walk_done(desc, walk, nbytes - n);
379 }
f262f0f5 380 memcpy(walk->iv, param.iv, AES_BLOCK_SIZE);
a9e62fad
HX
381 return ret;
382}
383
384static int cbc_aes_encrypt(struct blkcipher_desc *desc,
385 struct scatterlist *dst, struct scatterlist *src,
386 unsigned int nbytes)
387{
388 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
389 struct blkcipher_walk walk;
390
69c0e360 391 if (unlikely(!sctx->fc))
b0c3e75d
SS
392 return fallback_blk_enc(desc, dst, src, nbytes);
393
a9e62fad 394 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 395 return cbc_aes_crypt(desc, 0, &walk);
a9e62fad
HX
396}
397
398static int cbc_aes_decrypt(struct blkcipher_desc *desc,
399 struct scatterlist *dst, struct scatterlist *src,
400 unsigned int nbytes)
401{
402 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
403 struct blkcipher_walk walk;
404
69c0e360 405 if (unlikely(!sctx->fc))
b0c3e75d
SS
406 return fallback_blk_dec(desc, dst, src, nbytes);
407
a9e62fad 408 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 409 return cbc_aes_crypt(desc, CPACF_DECRYPT, &walk);
a9e62fad
HX
410}
411
412static struct crypto_alg cbc_aes_alg = {
413 .cra_name = "cbc(aes)",
414 .cra_driver_name = "cbc-aes-s390",
c7d4d259 415 .cra_priority = 400, /* combo: aes + cbc */
f67d1369
JG
416 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
417 CRYPTO_ALG_NEED_FALLBACK,
a9e62fad
HX
418 .cra_blocksize = AES_BLOCK_SIZE,
419 .cra_ctxsize = sizeof(struct s390_aes_ctx),
420 .cra_type = &crypto_blkcipher_type,
421 .cra_module = THIS_MODULE,
b0c3e75d
SS
422 .cra_init = fallback_init_blk,
423 .cra_exit = fallback_exit_blk,
a9e62fad
HX
424 .cra_u = {
425 .blkcipher = {
426 .min_keysize = AES_MIN_KEY_SIZE,
427 .max_keysize = AES_MAX_KEY_SIZE,
428 .ivsize = AES_BLOCK_SIZE,
429 .setkey = cbc_aes_set_key,
430 .encrypt = cbc_aes_encrypt,
431 .decrypt = cbc_aes_decrypt,
432 }
433 }
434};
435
99d97222
GS
436static int xts_fallback_setkey(struct crypto_tfm *tfm, const u8 *key,
437 unsigned int len)
438{
439 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
440 unsigned int ret;
441
64e26807
HX
442 crypto_skcipher_clear_flags(xts_ctx->fallback, CRYPTO_TFM_REQ_MASK);
443 crypto_skcipher_set_flags(xts_ctx->fallback, tfm->crt_flags &
444 CRYPTO_TFM_REQ_MASK);
445
446 ret = crypto_skcipher_setkey(xts_ctx->fallback, key, len);
447
448 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
449 tfm->crt_flags |= crypto_skcipher_get_flags(xts_ctx->fallback) &
450 CRYPTO_TFM_RES_MASK;
99d97222 451
99d97222
GS
452 return ret;
453}
454
455static int xts_fallback_decrypt(struct blkcipher_desc *desc,
456 struct scatterlist *dst, struct scatterlist *src,
457 unsigned int nbytes)
458{
64e26807
HX
459 struct crypto_blkcipher *tfm = desc->tfm;
460 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(tfm);
461 SKCIPHER_REQUEST_ON_STACK(req, xts_ctx->fallback);
99d97222
GS
462 unsigned int ret;
463
64e26807
HX
464 skcipher_request_set_tfm(req, xts_ctx->fallback);
465 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
466 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
99d97222 467
64e26807 468 ret = crypto_skcipher_decrypt(req);
99d97222 469
64e26807 470 skcipher_request_zero(req);
99d97222
GS
471 return ret;
472}
473
474static int xts_fallback_encrypt(struct blkcipher_desc *desc,
475 struct scatterlist *dst, struct scatterlist *src,
476 unsigned int nbytes)
477{
64e26807
HX
478 struct crypto_blkcipher *tfm = desc->tfm;
479 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(tfm);
480 SKCIPHER_REQUEST_ON_STACK(req, xts_ctx->fallback);
99d97222
GS
481 unsigned int ret;
482
64e26807
HX
483 skcipher_request_set_tfm(req, xts_ctx->fallback);
484 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
485 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
99d97222 486
64e26807 487 ret = crypto_skcipher_encrypt(req);
99d97222 488
64e26807 489 skcipher_request_zero(req);
99d97222
GS
490 return ret;
491}
492
493static int xts_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
494 unsigned int key_len)
495{
496 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
69c0e360 497 unsigned long fc;
28856a9e
SM
498 int err;
499
500 err = xts_check_key(tfm, in_key, key_len);
501 if (err)
502 return err;
99d97222 503
69c0e360
MS
504 /* Pick the correct function code based on the key length */
505 fc = (key_len == 32) ? CPACF_KM_XTS_128 :
506 (key_len == 64) ? CPACF_KM_XTS_256 : 0;
507
508 /* Check if the function code is available */
509 xts_ctx->fc = (fc && cpacf_test_func(&km_functions, fc)) ? fc : 0;
510 if (!xts_ctx->fc)
511 return xts_fallback_setkey(tfm, in_key, key_len);
512
513 /* Split the XTS key into the two subkeys */
514 key_len = key_len / 2;
99d97222 515 xts_ctx->key_len = key_len;
69c0e360
MS
516 memcpy(xts_ctx->key, in_key, key_len);
517 memcpy(xts_ctx->pcc_key, in_key + key_len, key_len);
99d97222
GS
518 return 0;
519}
520
7bac4f5b 521static int xts_aes_crypt(struct blkcipher_desc *desc, unsigned long modifier,
99d97222
GS
522 struct blkcipher_walk *walk)
523{
7bac4f5b
MS
524 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(desc->tfm);
525 unsigned int offset, nbytes, n;
526 int ret;
527 struct {
528 u8 key[32];
529 u8 tweak[16];
530 u8 block[16];
531 u8 bit[16];
532 u8 xts[16];
533 } pcc_param;
9dda2769
GS
534 struct {
535 u8 key[32];
536 u8 init[16];
537 } xts_param;
99d97222 538
7bac4f5b
MS
539 ret = blkcipher_walk_virt(desc, walk);
540 offset = xts_ctx->key_len & 0x10;
9dda2769
GS
541 memset(pcc_param.block, 0, sizeof(pcc_param.block));
542 memset(pcc_param.bit, 0, sizeof(pcc_param.bit));
543 memset(pcc_param.xts, 0, sizeof(pcc_param.xts));
544 memcpy(pcc_param.tweak, walk->iv, sizeof(pcc_param.tweak));
69c0e360 545 memcpy(pcc_param.key + offset, xts_ctx->pcc_key, xts_ctx->key_len);
7bac4f5b 546 cpacf_pcc(xts_ctx->fc, pcc_param.key + offset);
99d97222 547
69c0e360 548 memcpy(xts_param.key + offset, xts_ctx->key, xts_ctx->key_len);
9dda2769 549 memcpy(xts_param.init, pcc_param.xts, 16);
7bac4f5b
MS
550
551 while ((nbytes = walk->nbytes) >= AES_BLOCK_SIZE) {
99d97222
GS
552 /* only use complete blocks */
553 n = nbytes & ~(AES_BLOCK_SIZE - 1);
7bac4f5b
MS
554 cpacf_km(xts_ctx->fc | modifier, xts_param.key + offset,
555 walk->dst.virt.addr, walk->src.virt.addr, n);
556 ret = blkcipher_walk_done(desc, walk, nbytes - n);
557 }
99d97222
GS
558 return ret;
559}
560
561static int xts_aes_encrypt(struct blkcipher_desc *desc,
562 struct scatterlist *dst, struct scatterlist *src,
563 unsigned int nbytes)
564{
565 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(desc->tfm);
566 struct blkcipher_walk walk;
567
69c0e360 568 if (unlikely(!xts_ctx->fc))
99d97222
GS
569 return xts_fallback_encrypt(desc, dst, src, nbytes);
570
571 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 572 return xts_aes_crypt(desc, 0, &walk);
99d97222
GS
573}
574
575static int xts_aes_decrypt(struct blkcipher_desc *desc,
576 struct scatterlist *dst, struct scatterlist *src,
577 unsigned int nbytes)
578{
579 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(desc->tfm);
580 struct blkcipher_walk walk;
581
69c0e360 582 if (unlikely(!xts_ctx->fc))
99d97222
GS
583 return xts_fallback_decrypt(desc, dst, src, nbytes);
584
585 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 586 return xts_aes_crypt(desc, CPACF_DECRYPT, &walk);
99d97222
GS
587}
588
589static int xts_fallback_init(struct crypto_tfm *tfm)
590{
591 const char *name = tfm->__crt_alg->cra_name;
592 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
593
64e26807
HX
594 xts_ctx->fallback = crypto_alloc_skcipher(name, 0,
595 CRYPTO_ALG_ASYNC |
596 CRYPTO_ALG_NEED_FALLBACK);
99d97222
GS
597
598 if (IS_ERR(xts_ctx->fallback)) {
599 pr_err("Allocating XTS fallback algorithm %s failed\n",
600 name);
601 return PTR_ERR(xts_ctx->fallback);
602 }
603 return 0;
604}
605
606static void xts_fallback_exit(struct crypto_tfm *tfm)
607{
608 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
609
64e26807 610 crypto_free_skcipher(xts_ctx->fallback);
99d97222
GS
611}
612
613static struct crypto_alg xts_aes_alg = {
614 .cra_name = "xts(aes)",
615 .cra_driver_name = "xts-aes-s390",
c7d4d259 616 .cra_priority = 400, /* combo: aes + xts */
99d97222
GS
617 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
618 CRYPTO_ALG_NEED_FALLBACK,
619 .cra_blocksize = AES_BLOCK_SIZE,
620 .cra_ctxsize = sizeof(struct s390_xts_ctx),
621 .cra_type = &crypto_blkcipher_type,
622 .cra_module = THIS_MODULE,
99d97222
GS
623 .cra_init = xts_fallback_init,
624 .cra_exit = xts_fallback_exit,
625 .cra_u = {
626 .blkcipher = {
627 .min_keysize = 2 * AES_MIN_KEY_SIZE,
628 .max_keysize = 2 * AES_MAX_KEY_SIZE,
629 .ivsize = AES_BLOCK_SIZE,
630 .setkey = xts_aes_set_key,
631 .encrypt = xts_aes_encrypt,
632 .decrypt = xts_aes_decrypt,
633 }
634 }
635};
636
0200f3ec
GS
637static int ctr_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
638 unsigned int key_len)
639{
640 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
69c0e360 641 unsigned long fc;
0200f3ec 642
69c0e360
MS
643 /* Pick the correct function code based on the key length */
644 fc = (key_len == 16) ? CPACF_KMCTR_AES_128 :
645 (key_len == 24) ? CPACF_KMCTR_AES_192 :
646 (key_len == 32) ? CPACF_KMCTR_AES_256 : 0;
647
648 /* Check if the function code is available */
649 sctx->fc = (fc && cpacf_test_func(&kmctr_functions, fc)) ? fc : 0;
650 if (!sctx->fc)
651 return setkey_fallback_blk(tfm, in_key, key_len);
0200f3ec 652
69c0e360
MS
653 sctx->key_len = key_len;
654 memcpy(sctx->key, in_key, key_len);
655 return 0;
0200f3ec
GS
656}
657
7bac4f5b 658static unsigned int __ctrblk_init(u8 *ctrptr, u8 *iv, unsigned int nbytes)
0519e9ad
HF
659{
660 unsigned int i, n;
661
662 /* only use complete blocks, max. PAGE_SIZE */
7bac4f5b 663 memcpy(ctrptr, iv, AES_BLOCK_SIZE);
0519e9ad 664 n = (nbytes > PAGE_SIZE) ? PAGE_SIZE : nbytes & ~(AES_BLOCK_SIZE - 1);
7bac4f5b
MS
665 for (i = (n / AES_BLOCK_SIZE) - 1; i > 0; i--) {
666 memcpy(ctrptr + AES_BLOCK_SIZE, ctrptr, AES_BLOCK_SIZE);
667 crypto_inc(ctrptr + AES_BLOCK_SIZE, AES_BLOCK_SIZE);
668 ctrptr += AES_BLOCK_SIZE;
0519e9ad
HF
669 }
670 return n;
671}
672
7bac4f5b
MS
673static int ctr_aes_crypt(struct blkcipher_desc *desc, unsigned long modifier,
674 struct blkcipher_walk *walk)
0200f3ec 675{
7bac4f5b
MS
676 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
677 u8 buf[AES_BLOCK_SIZE], *ctrptr;
0519e9ad 678 unsigned int n, nbytes;
7bac4f5b 679 int ret, locked;
0200f3ec 680
7bac4f5b 681 locked = spin_trylock(&ctrblk_lock);
0519e9ad 682
7bac4f5b 683 ret = blkcipher_walk_virt_block(desc, walk, AES_BLOCK_SIZE);
0200f3ec 684 while ((nbytes = walk->nbytes) >= AES_BLOCK_SIZE) {
7bac4f5b
MS
685 n = AES_BLOCK_SIZE;
686 if (nbytes >= 2*AES_BLOCK_SIZE && locked)
687 n = __ctrblk_init(ctrblk, walk->iv, nbytes);
688 ctrptr = (n > AES_BLOCK_SIZE) ? ctrblk : walk->iv;
689 cpacf_kmctr(sctx->fc | modifier, sctx->key,
690 walk->dst.virt.addr, walk->src.virt.addr,
691 n, ctrptr);
692 if (ctrptr == ctrblk)
693 memcpy(walk->iv, ctrptr + n - AES_BLOCK_SIZE,
694 AES_BLOCK_SIZE);
695 crypto_inc(walk->iv, AES_BLOCK_SIZE);
696 ret = blkcipher_walk_done(desc, walk, nbytes - n);
0200f3ec 697 }
7bac4f5b 698 if (locked)
0519e9ad 699 spin_unlock(&ctrblk_lock);
0200f3ec
GS
700 /*
701 * final block may be < AES_BLOCK_SIZE, copy only nbytes
702 */
703 if (nbytes) {
7bac4f5b
MS
704 cpacf_kmctr(sctx->fc | modifier, sctx->key,
705 buf, walk->src.virt.addr,
706 AES_BLOCK_SIZE, walk->iv);
707 memcpy(walk->dst.virt.addr, buf, nbytes);
708 crypto_inc(walk->iv, AES_BLOCK_SIZE);
0200f3ec
GS
709 ret = blkcipher_walk_done(desc, walk, 0);
710 }
0519e9ad 711
0200f3ec
GS
712 return ret;
713}
714
715static int ctr_aes_encrypt(struct blkcipher_desc *desc,
716 struct scatterlist *dst, struct scatterlist *src,
717 unsigned int nbytes)
718{
719 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
720 struct blkcipher_walk walk;
721
69c0e360
MS
722 if (unlikely(!sctx->fc))
723 return fallback_blk_enc(desc, dst, src, nbytes);
724
0200f3ec 725 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 726 return ctr_aes_crypt(desc, 0, &walk);
0200f3ec
GS
727}
728
729static int ctr_aes_decrypt(struct blkcipher_desc *desc,
730 struct scatterlist *dst, struct scatterlist *src,
731 unsigned int nbytes)
732{
733 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
734 struct blkcipher_walk walk;
735
69c0e360
MS
736 if (unlikely(!sctx->fc))
737 return fallback_blk_dec(desc, dst, src, nbytes);
738
0200f3ec 739 blkcipher_walk_init(&walk, dst, src, nbytes);
7bac4f5b 740 return ctr_aes_crypt(desc, CPACF_DECRYPT, &walk);
0200f3ec
GS
741}
742
743static struct crypto_alg ctr_aes_alg = {
744 .cra_name = "ctr(aes)",
745 .cra_driver_name = "ctr-aes-s390",
c7d4d259 746 .cra_priority = 400, /* combo: aes + ctr */
69c0e360
MS
747 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
748 CRYPTO_ALG_NEED_FALLBACK,
0200f3ec
GS
749 .cra_blocksize = 1,
750 .cra_ctxsize = sizeof(struct s390_aes_ctx),
751 .cra_type = &crypto_blkcipher_type,
752 .cra_module = THIS_MODULE,
69c0e360
MS
753 .cra_init = fallback_init_blk,
754 .cra_exit = fallback_exit_blk,
0200f3ec
GS
755 .cra_u = {
756 .blkcipher = {
757 .min_keysize = AES_MIN_KEY_SIZE,
758 .max_keysize = AES_MAX_KEY_SIZE,
759 .ivsize = AES_BLOCK_SIZE,
760 .setkey = ctr_aes_set_key,
761 .encrypt = ctr_aes_encrypt,
762 .decrypt = ctr_aes_decrypt,
763 }
764 }
765};
766
d863d594
MS
767static struct crypto_alg *aes_s390_algs_ptr[5];
768static int aes_s390_algs_num;
769
770static int aes_s390_register_alg(struct crypto_alg *alg)
771{
772 int ret;
773
774 ret = crypto_register_alg(alg);
775 if (!ret)
776 aes_s390_algs_ptr[aes_s390_algs_num++] = alg;
777 return ret;
778}
779
780static void aes_s390_fini(void)
781{
782 while (aes_s390_algs_num--)
783 crypto_unregister_alg(aes_s390_algs_ptr[aes_s390_algs_num]);
784 if (ctrblk)
785 free_page((unsigned long) ctrblk);
786}
4f57ba71 787
9f7819c1 788static int __init aes_s390_init(void)
bf754ae8
JG
789{
790 int ret;
791
69c0e360
MS
792 /* Query available functions for KM, KMC and KMCTR */
793 cpacf_query(CPACF_KM, &km_functions);
794 cpacf_query(CPACF_KMC, &kmc_functions);
795 cpacf_query(CPACF_KMCTR, &kmctr_functions);
a9e62fad 796
69c0e360
MS
797 if (cpacf_test_func(&km_functions, CPACF_KM_AES_128) ||
798 cpacf_test_func(&km_functions, CPACF_KM_AES_192) ||
799 cpacf_test_func(&km_functions, CPACF_KM_AES_256)) {
800 ret = aes_s390_register_alg(&aes_alg);
801 if (ret)
802 goto out_err;
803 ret = aes_s390_register_alg(&ecb_aes_alg);
804 if (ret)
805 goto out_err;
806 }
a9e62fad 807
69c0e360
MS
808 if (cpacf_test_func(&kmc_functions, CPACF_KMC_AES_128) ||
809 cpacf_test_func(&kmc_functions, CPACF_KMC_AES_192) ||
810 cpacf_test_func(&kmc_functions, CPACF_KMC_AES_256)) {
811 ret = aes_s390_register_alg(&cbc_aes_alg);
812 if (ret)
813 goto out_err;
814 }
a9e62fad 815
69c0e360
MS
816 if (cpacf_test_func(&km_functions, CPACF_KM_XTS_128) ||
817 cpacf_test_func(&km_functions, CPACF_KM_XTS_256)) {
d863d594 818 ret = aes_s390_register_alg(&xts_aes_alg);
99d97222 819 if (ret)
d863d594 820 goto out_err;
99d97222
GS
821 }
822
69c0e360
MS
823 if (cpacf_test_func(&kmctr_functions, CPACF_KMCTR_AES_128) ||
824 cpacf_test_func(&kmctr_functions, CPACF_KMCTR_AES_192) ||
825 cpacf_test_func(&kmctr_functions, CPACF_KMCTR_AES_256)) {
0200f3ec
GS
826 ctrblk = (u8 *) __get_free_page(GFP_KERNEL);
827 if (!ctrblk) {
828 ret = -ENOMEM;
d863d594 829 goto out_err;
0200f3ec 830 }
d863d594
MS
831 ret = aes_s390_register_alg(&ctr_aes_alg);
832 if (ret)
833 goto out_err;
0200f3ec
GS
834 }
835
d863d594
MS
836 return 0;
837out_err:
838 aes_s390_fini();
bf754ae8 839 return ret;
bf754ae8
JG
840}
841
d05377c1 842module_cpu_feature_match(MSA, aes_s390_init);
9f7819c1 843module_exit(aes_s390_fini);
bf754ae8 844
5d26a105 845MODULE_ALIAS_CRYPTO("aes-all");
bf754ae8
JG
846
847MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm");
848MODULE_LICENSE("GPL");
This page took 0.716678 seconds and 5 git commands to generate.