blob: 9da54698b87abb66e2c256d9dfc7ac37d9ad66d5 [file] [log] [blame]
Jan Glauberbf754ae2006-01-06 00:19:18 -08001/*
2 * Cryptographic API.
3 *
4 * s390 implementation of the AES Cipher Algorithm.
5 *
6 * s390 Version:
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02007 * Copyright IBM Corp. 2005, 2007
Jan Glauberbf754ae2006-01-06 00:19:18 -08008 * Author(s): Jan Glauber (jang@de.ibm.com)
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +11009 * Sebastian Siewior (sebastian@breakpoint.cc> SW-Fallback
Jan Glauberbf754ae2006-01-06 00:19:18 -080010 *
Sebastian Siewiorf8246af2007-10-05 16:52:01 +080011 * Derived from "crypto/aes_generic.c"
Jan Glauberbf754ae2006-01-06 00:19:18 -080012 *
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
Jan Glauber39f09392008-12-25 13:39:37 +010020#define KMSG_COMPONENT "aes_s390"
21#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
22
Sebastian Siewior89e126542007-10-17 23:18:57 +080023#include <crypto/aes.h>
Herbert Xua9e62fa2006-08-21 21:39:24 +100024#include <crypto/algapi.h>
Herbert Xu64e26802016-06-29 18:04:07 +080025#include <crypto/internal/skcipher.h>
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +110026#include <linux/err.h>
Jan Glauberbf754ae2006-01-06 00:19:18 -080027#include <linux/module.h>
Hendrik Bruecknerd05377c2015-02-19 17:34:07 +010028#include <linux/cpufeature.h>
Jan Glauberbf754ae2006-01-06 00:19:18 -080029#include <linux/init.h>
Harald Freudenberger0519e9a2014-01-16 16:01:11 +010030#include <linux/spinlock.h>
Stephan Mueller49abc0d2016-02-17 07:00:01 +010031#include <crypto/xts.h>
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +010032#include <asm/cpacf.h>
Jan Glauberbf754ae2006-01-06 00:19:18 -080033
Jan Glauber86aa9fc2007-02-05 21:18:14 +010034#define AES_KEYLEN_128 1
35#define AES_KEYLEN_192 2
36#define AES_KEYLEN_256 4
37
Gerald Schaefer0200f3e2011-05-04 15:09:44 +100038static u8 *ctrblk;
Harald Freudenberger0519e9a2014-01-16 16:01:11 +010039static DEFINE_SPINLOCK(ctrblk_lock);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +100040static char keylen_flag;
Jan Glauberbf754ae2006-01-06 00:19:18 -080041
42struct s390_aes_ctx {
Jan Glauberbf754ae2006-01-06 00:19:18 -080043 u8 key[AES_MAX_KEY_SIZE];
44 int key_len;
Martin Schwidefskyedc63a32016-08-15 09:19:16 +020045 unsigned long fc;
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +110046 union {
Herbert Xu64e26802016-06-29 18:04:07 +080047 struct crypto_skcipher *blk;
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +110048 struct crypto_cipher *cip;
49 } fallback;
Jan Glauberbf754ae2006-01-06 00:19:18 -080050};
51
Gerald Schaefer99d97222011-04-26 16:12:42 +100052struct pcc_param {
53 u8 key[32];
54 u8 tweak[16];
55 u8 block[16];
56 u8 bit[16];
57 u8 xts[16];
58};
59
60struct s390_xts_ctx {
61 u8 key[32];
Gerald Schaefer9dda2762013-11-19 17:12:47 +010062 u8 pcc_key[32];
Gerald Schaefer99d97222011-04-26 16:12:42 +100063 int key_len;
Martin Schwidefskyedc63a32016-08-15 09:19:16 +020064 unsigned long fc;
Herbert Xu64e26802016-06-29 18:04:07 +080065 struct crypto_skcipher *fallback;
Gerald Schaefer99d97222011-04-26 16:12:42 +100066};
67
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +110068/*
69 * Check if the key_len is supported by the HW.
70 * Returns 0 if it is, a positive number if it is not and software fallback is
71 * required or a negative number in case the key size is not valid
72 */
73static int need_fallback(unsigned int key_len)
74{
75 switch (key_len) {
76 case 16:
77 if (!(keylen_flag & AES_KEYLEN_128))
78 return 1;
79 break;
80 case 24:
81 if (!(keylen_flag & AES_KEYLEN_192))
82 return 1;
83 break;
84 case 32:
85 if (!(keylen_flag & AES_KEYLEN_256))
86 return 1;
87 break;
88 default:
89 return -1;
90 break;
91 }
92 return 0;
93}
94
95static int setkey_fallback_cip(struct crypto_tfm *tfm, const u8 *in_key,
96 unsigned int key_len)
97{
98 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
99 int ret;
100
Roel Kluind7ac7692010-01-08 14:18:34 +1100101 sctx->fallback.cip->base.crt_flags &= ~CRYPTO_TFM_REQ_MASK;
102 sctx->fallback.cip->base.crt_flags |= (tfm->crt_flags &
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100103 CRYPTO_TFM_REQ_MASK);
104
105 ret = crypto_cipher_setkey(sctx->fallback.cip, in_key, key_len);
106 if (ret) {
107 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
Roel Kluind7ac7692010-01-08 14:18:34 +1100108 tfm->crt_flags |= (sctx->fallback.cip->base.crt_flags &
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100109 CRYPTO_TFM_RES_MASK);
110 }
111 return ret;
112}
113
Herbert Xu6c2bb982006-05-16 22:09:29 +1000114static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000115 unsigned int key_len)
Jan Glauberbf754ae2006-01-06 00:19:18 -0800116{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000117 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
Herbert Xu560c06a2006-08-13 14:16:39 +1000118 u32 *flags = &tfm->crt_flags;
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100119 int ret;
Jan Glauberbf754ae2006-01-06 00:19:18 -0800120
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100121 ret = need_fallback(key_len);
122 if (ret < 0) {
123 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
124 return -EINVAL;
Jan Glauberbf754ae2006-01-06 00:19:18 -0800125 }
126
127 sctx->key_len = key_len;
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100128 if (!ret) {
129 memcpy(sctx->key, in_key, key_len);
130 return 0;
131 }
132
133 return setkey_fallback_cip(tfm, in_key, key_len);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800134}
135
Herbert Xu6c2bb982006-05-16 22:09:29 +1000136static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Jan Glauberbf754ae2006-01-06 00:19:18 -0800137{
Chen Gange6a67ad2015-01-01 22:56:02 +0800138 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800139
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100140 if (unlikely(need_fallback(sctx->key_len))) {
141 crypto_cipher_encrypt_one(sctx->fallback.cip, out, in);
142 return;
143 }
144
Jan Glauberbf754ae2006-01-06 00:19:18 -0800145 switch (sctx->key_len) {
146 case 16:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200147 cpacf_km(CPACF_KM_AES_128,
148 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800149 break;
150 case 24:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200151 cpacf_km(CPACF_KM_AES_192,
152 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800153 break;
154 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200155 cpacf_km(CPACF_KM_AES_256,
156 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800157 break;
158 }
159}
160
Herbert Xu6c2bb982006-05-16 22:09:29 +1000161static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Jan Glauberbf754ae2006-01-06 00:19:18 -0800162{
Chen Gange6a67ad2015-01-01 22:56:02 +0800163 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800164
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100165 if (unlikely(need_fallback(sctx->key_len))) {
166 crypto_cipher_decrypt_one(sctx->fallback.cip, out, in);
167 return;
168 }
169
Jan Glauberbf754ae2006-01-06 00:19:18 -0800170 switch (sctx->key_len) {
171 case 16:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200172 cpacf_km(CPACF_KM_AES_128 | CPACF_DECRYPT,
173 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800174 break;
175 case 24:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200176 cpacf_km(CPACF_KM_AES_192 | CPACF_DECRYPT,
177 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800178 break;
179 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200180 cpacf_km(CPACF_KM_AES_256 | CPACF_DECRYPT,
181 &sctx->key, out, in, AES_BLOCK_SIZE);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800182 break;
183 }
184}
185
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100186static int fallback_init_cip(struct crypto_tfm *tfm)
187{
188 const char *name = tfm->__crt_alg->cra_name;
189 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
190
191 sctx->fallback.cip = crypto_alloc_cipher(name, 0,
192 CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
193
194 if (IS_ERR(sctx->fallback.cip)) {
Jan Glauber39f09392008-12-25 13:39:37 +0100195 pr_err("Allocating AES fallback algorithm %s failed\n",
196 name);
Roel Kluinb59cdcb32009-12-18 17:43:18 +0100197 return PTR_ERR(sctx->fallback.cip);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100198 }
199
200 return 0;
201}
202
203static void fallback_exit_cip(struct crypto_tfm *tfm)
204{
205 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
206
207 crypto_free_cipher(sctx->fallback.cip);
208 sctx->fallback.cip = NULL;
209}
Jan Glauberbf754ae2006-01-06 00:19:18 -0800210
211static struct crypto_alg aes_alg = {
212 .cra_name = "aes",
Herbert Xu65b75c32006-08-21 21:18:50 +1000213 .cra_driver_name = "aes-s390",
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100214 .cra_priority = 300,
Jan Glauberf67d1362007-05-04 18:47:47 +0200215 .cra_flags = CRYPTO_ALG_TYPE_CIPHER |
216 CRYPTO_ALG_NEED_FALLBACK,
Jan Glauberbf754ae2006-01-06 00:19:18 -0800217 .cra_blocksize = AES_BLOCK_SIZE,
218 .cra_ctxsize = sizeof(struct s390_aes_ctx),
219 .cra_module = THIS_MODULE,
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100220 .cra_init = fallback_init_cip,
221 .cra_exit = fallback_exit_cip,
Jan Glauberbf754ae2006-01-06 00:19:18 -0800222 .cra_u = {
223 .cipher = {
224 .cia_min_keysize = AES_MIN_KEY_SIZE,
225 .cia_max_keysize = AES_MAX_KEY_SIZE,
226 .cia_setkey = aes_set_key,
227 .cia_encrypt = aes_encrypt,
228 .cia_decrypt = aes_decrypt,
Jan Glauberbf754ae2006-01-06 00:19:18 -0800229 }
230 }
231};
232
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100233static int setkey_fallback_blk(struct crypto_tfm *tfm, const u8 *key,
234 unsigned int len)
235{
236 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
237 unsigned int ret;
238
Herbert Xu64e26802016-06-29 18:04:07 +0800239 crypto_skcipher_clear_flags(sctx->fallback.blk, CRYPTO_TFM_REQ_MASK);
240 crypto_skcipher_set_flags(sctx->fallback.blk, tfm->crt_flags &
241 CRYPTO_TFM_REQ_MASK);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100242
Herbert Xu64e26802016-06-29 18:04:07 +0800243 ret = crypto_skcipher_setkey(sctx->fallback.blk, key, len);
244
245 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
246 tfm->crt_flags |= crypto_skcipher_get_flags(sctx->fallback.blk) &
247 CRYPTO_TFM_RES_MASK;
248
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100249 return ret;
250}
251
252static int fallback_blk_dec(struct blkcipher_desc *desc,
253 struct scatterlist *dst, struct scatterlist *src,
254 unsigned int nbytes)
255{
256 unsigned int ret;
Herbert Xu64e26802016-06-29 18:04:07 +0800257 struct crypto_blkcipher *tfm = desc->tfm;
258 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(tfm);
259 SKCIPHER_REQUEST_ON_STACK(req, sctx->fallback.blk);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100260
Herbert Xu64e26802016-06-29 18:04:07 +0800261 skcipher_request_set_tfm(req, sctx->fallback.blk);
262 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
263 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100264
Herbert Xu64e26802016-06-29 18:04:07 +0800265 ret = crypto_skcipher_decrypt(req);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100266
Herbert Xu64e26802016-06-29 18:04:07 +0800267 skcipher_request_zero(req);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100268 return ret;
269}
270
271static int fallback_blk_enc(struct blkcipher_desc *desc,
272 struct scatterlist *dst, struct scatterlist *src,
273 unsigned int nbytes)
274{
275 unsigned int ret;
Herbert Xu64e26802016-06-29 18:04:07 +0800276 struct crypto_blkcipher *tfm = desc->tfm;
277 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(tfm);
278 SKCIPHER_REQUEST_ON_STACK(req, sctx->fallback.blk);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100279
Herbert Xu64e26802016-06-29 18:04:07 +0800280 skcipher_request_set_tfm(req, sctx->fallback.blk);
281 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
282 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100283
Herbert Xu64e26802016-06-29 18:04:07 +0800284 ret = crypto_skcipher_encrypt(req);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100285 return ret;
286}
287
Herbert Xua9e62fa2006-08-21 21:39:24 +1000288static int ecb_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
289 unsigned int key_len)
290{
291 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100292 int ret;
293
294 ret = need_fallback(key_len);
295 if (ret > 0) {
296 sctx->key_len = key_len;
297 return setkey_fallback_blk(tfm, in_key, key_len);
298 }
Herbert Xua9e62fa2006-08-21 21:39:24 +1000299
300 switch (key_len) {
301 case 16:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200302 sctx->fc = CPACF_KM_AES_128;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000303 break;
304 case 24:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200305 sctx->fc = CPACF_KM_AES_192;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000306 break;
307 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200308 sctx->fc = CPACF_KM_AES_256;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000309 break;
310 }
311
312 return aes_set_key(tfm, in_key, key_len);
313}
314
315static int ecb_aes_crypt(struct blkcipher_desc *desc, long func, void *param,
316 struct blkcipher_walk *walk)
317{
318 int ret = blkcipher_walk_virt(desc, walk);
319 unsigned int nbytes;
320
321 while ((nbytes = walk->nbytes)) {
322 /* only use complete blocks */
323 unsigned int n = nbytes & ~(AES_BLOCK_SIZE - 1);
324 u8 *out = walk->dst.virt.addr;
325 u8 *in = walk->src.virt.addr;
326
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100327 ret = cpacf_km(func, param, out, in, n);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200328 if (ret < 0 || ret != n)
329 return -EIO;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000330
331 nbytes &= AES_BLOCK_SIZE - 1;
332 ret = blkcipher_walk_done(desc, walk, nbytes);
333 }
334
335 return ret;
336}
337
338static int ecb_aes_encrypt(struct blkcipher_desc *desc,
339 struct scatterlist *dst, struct scatterlist *src,
340 unsigned int nbytes)
341{
342 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
343 struct blkcipher_walk walk;
344
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100345 if (unlikely(need_fallback(sctx->key_len)))
346 return fallback_blk_enc(desc, dst, src, nbytes);
347
Herbert Xua9e62fa2006-08-21 21:39:24 +1000348 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200349 return ecb_aes_crypt(desc, sctx->fc, sctx->key, &walk);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000350}
351
352static int ecb_aes_decrypt(struct blkcipher_desc *desc,
353 struct scatterlist *dst, struct scatterlist *src,
354 unsigned int nbytes)
355{
356 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
357 struct blkcipher_walk walk;
358
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100359 if (unlikely(need_fallback(sctx->key_len)))
360 return fallback_blk_dec(desc, dst, src, nbytes);
361
Herbert Xua9e62fa2006-08-21 21:39:24 +1000362 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200363 return ecb_aes_crypt(desc, sctx->fc | CPACF_DECRYPT, sctx->key, &walk);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000364}
365
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100366static int fallback_init_blk(struct crypto_tfm *tfm)
367{
368 const char *name = tfm->__crt_alg->cra_name;
369 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
370
Herbert Xu64e26802016-06-29 18:04:07 +0800371 sctx->fallback.blk = crypto_alloc_skcipher(name, 0,
372 CRYPTO_ALG_ASYNC |
373 CRYPTO_ALG_NEED_FALLBACK);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100374
375 if (IS_ERR(sctx->fallback.blk)) {
Jan Glauber39f09392008-12-25 13:39:37 +0100376 pr_err("Allocating AES fallback algorithm %s failed\n",
377 name);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100378 return PTR_ERR(sctx->fallback.blk);
379 }
380
381 return 0;
382}
383
384static void fallback_exit_blk(struct crypto_tfm *tfm)
385{
386 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
387
Herbert Xu64e26802016-06-29 18:04:07 +0800388 crypto_free_skcipher(sctx->fallback.blk);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100389}
390
Herbert Xua9e62fa2006-08-21 21:39:24 +1000391static struct crypto_alg ecb_aes_alg = {
392 .cra_name = "ecb(aes)",
393 .cra_driver_name = "ecb-aes-s390",
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100394 .cra_priority = 400, /* combo: aes + ecb */
Jan Glauberf67d1362007-05-04 18:47:47 +0200395 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
396 CRYPTO_ALG_NEED_FALLBACK,
Herbert Xua9e62fa2006-08-21 21:39:24 +1000397 .cra_blocksize = AES_BLOCK_SIZE,
398 .cra_ctxsize = sizeof(struct s390_aes_ctx),
399 .cra_type = &crypto_blkcipher_type,
400 .cra_module = THIS_MODULE,
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100401 .cra_init = fallback_init_blk,
402 .cra_exit = fallback_exit_blk,
Herbert Xua9e62fa2006-08-21 21:39:24 +1000403 .cra_u = {
404 .blkcipher = {
405 .min_keysize = AES_MIN_KEY_SIZE,
406 .max_keysize = AES_MAX_KEY_SIZE,
407 .setkey = ecb_aes_set_key,
408 .encrypt = ecb_aes_encrypt,
409 .decrypt = ecb_aes_decrypt,
410 }
411 }
412};
413
414static int cbc_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
415 unsigned int key_len)
416{
417 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100418 int ret;
419
420 ret = need_fallback(key_len);
421 if (ret > 0) {
422 sctx->key_len = key_len;
423 return setkey_fallback_blk(tfm, in_key, key_len);
424 }
Herbert Xua9e62fa2006-08-21 21:39:24 +1000425
426 switch (key_len) {
427 case 16:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200428 sctx->fc = CPACF_KMC_AES_128;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000429 break;
430 case 24:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200431 sctx->fc = CPACF_KMC_AES_192;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000432 break;
433 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200434 sctx->fc = CPACF_KMC_AES_256;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000435 break;
436 }
437
438 return aes_set_key(tfm, in_key, key_len);
439}
440
Herbert Xuf262f0f2013-11-05 19:36:27 +0800441static int cbc_aes_crypt(struct blkcipher_desc *desc, long func,
Herbert Xua9e62fa2006-08-21 21:39:24 +1000442 struct blkcipher_walk *walk)
443{
Herbert Xuf262f0f2013-11-05 19:36:27 +0800444 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000445 int ret = blkcipher_walk_virt(desc, walk);
446 unsigned int nbytes = walk->nbytes;
Herbert Xuf262f0f2013-11-05 19:36:27 +0800447 struct {
448 u8 iv[AES_BLOCK_SIZE];
449 u8 key[AES_MAX_KEY_SIZE];
450 } param;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000451
452 if (!nbytes)
453 goto out;
454
Herbert Xuf262f0f2013-11-05 19:36:27 +0800455 memcpy(param.iv, walk->iv, AES_BLOCK_SIZE);
456 memcpy(param.key, sctx->key, sctx->key_len);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000457 do {
458 /* only use complete blocks */
459 unsigned int n = nbytes & ~(AES_BLOCK_SIZE - 1);
460 u8 *out = walk->dst.virt.addr;
461 u8 *in = walk->src.virt.addr;
462
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100463 ret = cpacf_kmc(func, &param, out, in, n);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200464 if (ret < 0 || ret != n)
465 return -EIO;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000466
467 nbytes &= AES_BLOCK_SIZE - 1;
468 ret = blkcipher_walk_done(desc, walk, nbytes);
469 } while ((nbytes = walk->nbytes));
Herbert Xuf262f0f2013-11-05 19:36:27 +0800470 memcpy(walk->iv, param.iv, AES_BLOCK_SIZE);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000471
472out:
473 return ret;
474}
475
476static int cbc_aes_encrypt(struct blkcipher_desc *desc,
477 struct scatterlist *dst, struct scatterlist *src,
478 unsigned int nbytes)
479{
480 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
481 struct blkcipher_walk walk;
482
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100483 if (unlikely(need_fallback(sctx->key_len)))
484 return fallback_blk_enc(desc, dst, src, nbytes);
485
Herbert Xua9e62fa2006-08-21 21:39:24 +1000486 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200487 return cbc_aes_crypt(desc, sctx->fc, &walk);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000488}
489
490static int cbc_aes_decrypt(struct blkcipher_desc *desc,
491 struct scatterlist *dst, struct scatterlist *src,
492 unsigned int nbytes)
493{
494 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
495 struct blkcipher_walk walk;
496
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100497 if (unlikely(need_fallback(sctx->key_len)))
498 return fallback_blk_dec(desc, dst, src, nbytes);
499
Herbert Xua9e62fa2006-08-21 21:39:24 +1000500 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200501 return cbc_aes_crypt(desc, sctx->fc | CPACF_DECRYPT, &walk);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000502}
503
504static struct crypto_alg cbc_aes_alg = {
505 .cra_name = "cbc(aes)",
506 .cra_driver_name = "cbc-aes-s390",
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100507 .cra_priority = 400, /* combo: aes + cbc */
Jan Glauberf67d1362007-05-04 18:47:47 +0200508 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
509 CRYPTO_ALG_NEED_FALLBACK,
Herbert Xua9e62fa2006-08-21 21:39:24 +1000510 .cra_blocksize = AES_BLOCK_SIZE,
511 .cra_ctxsize = sizeof(struct s390_aes_ctx),
512 .cra_type = &crypto_blkcipher_type,
513 .cra_module = THIS_MODULE,
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100514 .cra_init = fallback_init_blk,
515 .cra_exit = fallback_exit_blk,
Herbert Xua9e62fa2006-08-21 21:39:24 +1000516 .cra_u = {
517 .blkcipher = {
518 .min_keysize = AES_MIN_KEY_SIZE,
519 .max_keysize = AES_MAX_KEY_SIZE,
520 .ivsize = AES_BLOCK_SIZE,
521 .setkey = cbc_aes_set_key,
522 .encrypt = cbc_aes_encrypt,
523 .decrypt = cbc_aes_decrypt,
524 }
525 }
526};
527
Gerald Schaefer99d97222011-04-26 16:12:42 +1000528static int xts_fallback_setkey(struct crypto_tfm *tfm, const u8 *key,
529 unsigned int len)
530{
531 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
532 unsigned int ret;
533
Herbert Xu64e26802016-06-29 18:04:07 +0800534 crypto_skcipher_clear_flags(xts_ctx->fallback, CRYPTO_TFM_REQ_MASK);
535 crypto_skcipher_set_flags(xts_ctx->fallback, tfm->crt_flags &
536 CRYPTO_TFM_REQ_MASK);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000537
Herbert Xu64e26802016-06-29 18:04:07 +0800538 ret = crypto_skcipher_setkey(xts_ctx->fallback, key, len);
539
540 tfm->crt_flags &= ~CRYPTO_TFM_RES_MASK;
541 tfm->crt_flags |= crypto_skcipher_get_flags(xts_ctx->fallback) &
542 CRYPTO_TFM_RES_MASK;
543
Gerald Schaefer99d97222011-04-26 16:12:42 +1000544 return ret;
545}
546
547static int xts_fallback_decrypt(struct blkcipher_desc *desc,
548 struct scatterlist *dst, struct scatterlist *src,
549 unsigned int nbytes)
550{
Herbert Xu64e26802016-06-29 18:04:07 +0800551 struct crypto_blkcipher *tfm = desc->tfm;
552 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(tfm);
553 SKCIPHER_REQUEST_ON_STACK(req, xts_ctx->fallback);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000554 unsigned int ret;
555
Herbert Xu64e26802016-06-29 18:04:07 +0800556 skcipher_request_set_tfm(req, xts_ctx->fallback);
557 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
558 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000559
Herbert Xu64e26802016-06-29 18:04:07 +0800560 ret = crypto_skcipher_decrypt(req);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000561
Herbert Xu64e26802016-06-29 18:04:07 +0800562 skcipher_request_zero(req);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000563 return ret;
564}
565
566static int xts_fallback_encrypt(struct blkcipher_desc *desc,
567 struct scatterlist *dst, struct scatterlist *src,
568 unsigned int nbytes)
569{
Herbert Xu64e26802016-06-29 18:04:07 +0800570 struct crypto_blkcipher *tfm = desc->tfm;
571 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(tfm);
572 SKCIPHER_REQUEST_ON_STACK(req, xts_ctx->fallback);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000573 unsigned int ret;
574
Herbert Xu64e26802016-06-29 18:04:07 +0800575 skcipher_request_set_tfm(req, xts_ctx->fallback);
576 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
577 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000578
Herbert Xu64e26802016-06-29 18:04:07 +0800579 ret = crypto_skcipher_encrypt(req);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000580
Herbert Xu64e26802016-06-29 18:04:07 +0800581 skcipher_request_zero(req);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000582 return ret;
583}
584
585static int xts_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
586 unsigned int key_len)
587{
588 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
589 u32 *flags = &tfm->crt_flags;
Stephan Mueller28856a92016-02-09 15:37:47 +0100590 int err;
591
592 err = xts_check_key(tfm, in_key, key_len);
593 if (err)
594 return err;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000595
596 switch (key_len) {
597 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200598 xts_ctx->fc = CPACF_KM_XTS_128;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000599 memcpy(xts_ctx->key + 16, in_key, 16);
Gerald Schaefer9dda2762013-11-19 17:12:47 +0100600 memcpy(xts_ctx->pcc_key + 16, in_key + 16, 16);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000601 break;
602 case 48:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200603 xts_ctx->fc = 0;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000604 xts_fallback_setkey(tfm, in_key, key_len);
605 break;
606 case 64:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200607 xts_ctx->fc = CPACF_KM_XTS_256;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000608 memcpy(xts_ctx->key, in_key, 32);
Gerald Schaefer9dda2762013-11-19 17:12:47 +0100609 memcpy(xts_ctx->pcc_key, in_key + 32, 32);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000610 break;
611 default:
612 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
613 return -EINVAL;
614 }
615 xts_ctx->key_len = key_len;
616 return 0;
617}
618
619static int xts_aes_crypt(struct blkcipher_desc *desc, long func,
620 struct s390_xts_ctx *xts_ctx,
621 struct blkcipher_walk *walk)
622{
623 unsigned int offset = (xts_ctx->key_len >> 1) & 0x10;
624 int ret = blkcipher_walk_virt(desc, walk);
625 unsigned int nbytes = walk->nbytes;
626 unsigned int n;
627 u8 *in, *out;
Gerald Schaefer9dda2762013-11-19 17:12:47 +0100628 struct pcc_param pcc_param;
629 struct {
630 u8 key[32];
631 u8 init[16];
632 } xts_param;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000633
634 if (!nbytes)
635 goto out;
636
Gerald Schaefer9dda2762013-11-19 17:12:47 +0100637 memset(pcc_param.block, 0, sizeof(pcc_param.block));
638 memset(pcc_param.bit, 0, sizeof(pcc_param.bit));
639 memset(pcc_param.xts, 0, sizeof(pcc_param.xts));
640 memcpy(pcc_param.tweak, walk->iv, sizeof(pcc_param.tweak));
641 memcpy(pcc_param.key, xts_ctx->pcc_key, 32);
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100642 /* remove decipher modifier bit from 'func' and call PCC */
643 ret = cpacf_pcc(func & 0x7f, &pcc_param.key[offset]);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200644 if (ret < 0)
645 return -EIO;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000646
Gerald Schaefer9dda2762013-11-19 17:12:47 +0100647 memcpy(xts_param.key, xts_ctx->key, 32);
648 memcpy(xts_param.init, pcc_param.xts, 16);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000649 do {
650 /* only use complete blocks */
651 n = nbytes & ~(AES_BLOCK_SIZE - 1);
652 out = walk->dst.virt.addr;
653 in = walk->src.virt.addr;
654
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100655 ret = cpacf_km(func, &xts_param.key[offset], out, in, n);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200656 if (ret < 0 || ret != n)
657 return -EIO;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000658
659 nbytes &= AES_BLOCK_SIZE - 1;
660 ret = blkcipher_walk_done(desc, walk, nbytes);
661 } while ((nbytes = walk->nbytes));
662out:
663 return ret;
664}
665
666static int xts_aes_encrypt(struct blkcipher_desc *desc,
667 struct scatterlist *dst, struct scatterlist *src,
668 unsigned int nbytes)
669{
670 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(desc->tfm);
671 struct blkcipher_walk walk;
672
673 if (unlikely(xts_ctx->key_len == 48))
674 return xts_fallback_encrypt(desc, dst, src, nbytes);
675
676 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200677 return xts_aes_crypt(desc, xts_ctx->fc, xts_ctx, &walk);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000678}
679
680static int xts_aes_decrypt(struct blkcipher_desc *desc,
681 struct scatterlist *dst, struct scatterlist *src,
682 unsigned int nbytes)
683{
684 struct s390_xts_ctx *xts_ctx = crypto_blkcipher_ctx(desc->tfm);
685 struct blkcipher_walk walk;
686
687 if (unlikely(xts_ctx->key_len == 48))
688 return xts_fallback_decrypt(desc, dst, src, nbytes);
689
690 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200691 return xts_aes_crypt(desc, xts_ctx->fc | CPACF_DECRYPT, xts_ctx, &walk);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000692}
693
694static int xts_fallback_init(struct crypto_tfm *tfm)
695{
696 const char *name = tfm->__crt_alg->cra_name;
697 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
698
Herbert Xu64e26802016-06-29 18:04:07 +0800699 xts_ctx->fallback = crypto_alloc_skcipher(name, 0,
700 CRYPTO_ALG_ASYNC |
701 CRYPTO_ALG_NEED_FALLBACK);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000702
703 if (IS_ERR(xts_ctx->fallback)) {
704 pr_err("Allocating XTS fallback algorithm %s failed\n",
705 name);
706 return PTR_ERR(xts_ctx->fallback);
707 }
708 return 0;
709}
710
711static void xts_fallback_exit(struct crypto_tfm *tfm)
712{
713 struct s390_xts_ctx *xts_ctx = crypto_tfm_ctx(tfm);
714
Herbert Xu64e26802016-06-29 18:04:07 +0800715 crypto_free_skcipher(xts_ctx->fallback);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000716}
717
718static struct crypto_alg xts_aes_alg = {
719 .cra_name = "xts(aes)",
720 .cra_driver_name = "xts-aes-s390",
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100721 .cra_priority = 400, /* combo: aes + xts */
Gerald Schaefer99d97222011-04-26 16:12:42 +1000722 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER |
723 CRYPTO_ALG_NEED_FALLBACK,
724 .cra_blocksize = AES_BLOCK_SIZE,
725 .cra_ctxsize = sizeof(struct s390_xts_ctx),
726 .cra_type = &crypto_blkcipher_type,
727 .cra_module = THIS_MODULE,
Gerald Schaefer99d97222011-04-26 16:12:42 +1000728 .cra_init = xts_fallback_init,
729 .cra_exit = xts_fallback_exit,
730 .cra_u = {
731 .blkcipher = {
732 .min_keysize = 2 * AES_MIN_KEY_SIZE,
733 .max_keysize = 2 * AES_MAX_KEY_SIZE,
734 .ivsize = AES_BLOCK_SIZE,
735 .setkey = xts_aes_set_key,
736 .encrypt = xts_aes_encrypt,
737 .decrypt = xts_aes_decrypt,
738 }
739 }
740};
741
Ingo Tuchscherer4f57ba72013-10-15 11:24:07 +0200742static int xts_aes_alg_reg;
743
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000744static int ctr_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
745 unsigned int key_len)
746{
747 struct s390_aes_ctx *sctx = crypto_tfm_ctx(tfm);
748
749 switch (key_len) {
750 case 16:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200751 sctx->fc = CPACF_KMCTR_AES_128;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000752 break;
753 case 24:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200754 sctx->fc = CPACF_KMCTR_AES_192;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000755 break;
756 case 32:
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200757 sctx->fc = CPACF_KMCTR_AES_256;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000758 break;
759 }
760
761 return aes_set_key(tfm, in_key, key_len);
762}
763
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100764static unsigned int __ctrblk_init(u8 *ctrptr, unsigned int nbytes)
765{
766 unsigned int i, n;
767
768 /* only use complete blocks, max. PAGE_SIZE */
769 n = (nbytes > PAGE_SIZE) ? PAGE_SIZE : nbytes & ~(AES_BLOCK_SIZE - 1);
770 for (i = AES_BLOCK_SIZE; i < n; i += AES_BLOCK_SIZE) {
771 memcpy(ctrptr + i, ctrptr + i - AES_BLOCK_SIZE,
772 AES_BLOCK_SIZE);
773 crypto_inc(ctrptr + i, AES_BLOCK_SIZE);
774 }
775 return n;
776}
777
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000778static int ctr_aes_crypt(struct blkcipher_desc *desc, long func,
779 struct s390_aes_ctx *sctx, struct blkcipher_walk *walk)
780{
781 int ret = blkcipher_walk_virt_block(desc, walk, AES_BLOCK_SIZE);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100782 unsigned int n, nbytes;
783 u8 buf[AES_BLOCK_SIZE], ctrbuf[AES_BLOCK_SIZE];
784 u8 *out, *in, *ctrptr = ctrbuf;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000785
786 if (!walk->nbytes)
787 return ret;
788
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100789 if (spin_trylock(&ctrblk_lock))
790 ctrptr = ctrblk;
791
792 memcpy(ctrptr, walk->iv, AES_BLOCK_SIZE);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000793 while ((nbytes = walk->nbytes) >= AES_BLOCK_SIZE) {
794 out = walk->dst.virt.addr;
795 in = walk->src.virt.addr;
796 while (nbytes >= AES_BLOCK_SIZE) {
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100797 if (ctrptr == ctrblk)
798 n = __ctrblk_init(ctrptr, nbytes);
799 else
800 n = AES_BLOCK_SIZE;
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100801 ret = cpacf_kmctr(func, sctx->key, out, in, n, ctrptr);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100802 if (ret < 0 || ret != n) {
803 if (ctrptr == ctrblk)
804 spin_unlock(&ctrblk_lock);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200805 return -EIO;
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100806 }
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000807 if (n > AES_BLOCK_SIZE)
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100808 memcpy(ctrptr, ctrptr + n - AES_BLOCK_SIZE,
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000809 AES_BLOCK_SIZE);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100810 crypto_inc(ctrptr, AES_BLOCK_SIZE);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000811 out += n;
812 in += n;
813 nbytes -= n;
814 }
815 ret = blkcipher_walk_done(desc, walk, nbytes);
816 }
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100817 if (ctrptr == ctrblk) {
818 if (nbytes)
819 memcpy(ctrbuf, ctrptr, AES_BLOCK_SIZE);
820 else
821 memcpy(walk->iv, ctrptr, AES_BLOCK_SIZE);
822 spin_unlock(&ctrblk_lock);
Harald Freudenberger3901c112014-05-07 16:51:29 +0200823 } else {
824 if (!nbytes)
825 memcpy(walk->iv, ctrptr, AES_BLOCK_SIZE);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100826 }
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000827 /*
828 * final block may be < AES_BLOCK_SIZE, copy only nbytes
829 */
830 if (nbytes) {
831 out = walk->dst.virt.addr;
832 in = walk->src.virt.addr;
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100833 ret = cpacf_kmctr(func, sctx->key, buf, in,
834 AES_BLOCK_SIZE, ctrbuf);
Jan Glauber36eb2ca2012-10-26 15:06:12 +0200835 if (ret < 0 || ret != AES_BLOCK_SIZE)
836 return -EIO;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000837 memcpy(out, buf, nbytes);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100838 crypto_inc(ctrbuf, AES_BLOCK_SIZE);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000839 ret = blkcipher_walk_done(desc, walk, 0);
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100840 memcpy(walk->iv, ctrbuf, AES_BLOCK_SIZE);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000841 }
Harald Freudenberger0519e9a2014-01-16 16:01:11 +0100842
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000843 return ret;
844}
845
846static int ctr_aes_encrypt(struct blkcipher_desc *desc,
847 struct scatterlist *dst, struct scatterlist *src,
848 unsigned int nbytes)
849{
850 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
851 struct blkcipher_walk walk;
852
853 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200854 return ctr_aes_crypt(desc, sctx->fc, sctx, &walk);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000855}
856
857static int ctr_aes_decrypt(struct blkcipher_desc *desc,
858 struct scatterlist *dst, struct scatterlist *src,
859 unsigned int nbytes)
860{
861 struct s390_aes_ctx *sctx = crypto_blkcipher_ctx(desc->tfm);
862 struct blkcipher_walk walk;
863
864 blkcipher_walk_init(&walk, dst, src, nbytes);
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200865 return ctr_aes_crypt(desc, sctx->fc | CPACF_DECRYPT, sctx, &walk);
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000866}
867
868static struct crypto_alg ctr_aes_alg = {
869 .cra_name = "ctr(aes)",
870 .cra_driver_name = "ctr-aes-s390",
Martin Schwidefskyc7d4d252016-03-17 15:22:12 +0100871 .cra_priority = 400, /* combo: aes + ctr */
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000872 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
873 .cra_blocksize = 1,
874 .cra_ctxsize = sizeof(struct s390_aes_ctx),
875 .cra_type = &crypto_blkcipher_type,
876 .cra_module = THIS_MODULE,
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000877 .cra_u = {
878 .blkcipher = {
879 .min_keysize = AES_MIN_KEY_SIZE,
880 .max_keysize = AES_MAX_KEY_SIZE,
881 .ivsize = AES_BLOCK_SIZE,
882 .setkey = ctr_aes_set_key,
883 .encrypt = ctr_aes_encrypt,
884 .decrypt = ctr_aes_decrypt,
885 }
886 }
887};
888
Ingo Tuchscherer4f57ba72013-10-15 11:24:07 +0200889static int ctr_aes_alg_reg;
890
Heiko Carstens9f7819c2008-04-17 07:46:17 +0200891static int __init aes_s390_init(void)
Jan Glauberbf754ae2006-01-06 00:19:18 -0800892{
893 int ret;
894
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200895 if (cpacf_query(CPACF_KM, CPACF_KM_AES_128))
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100896 keylen_flag |= AES_KEYLEN_128;
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200897 if (cpacf_query(CPACF_KM, CPACF_KM_AES_192))
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100898 keylen_flag |= AES_KEYLEN_192;
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200899 if (cpacf_query(CPACF_KM, CPACF_KM_AES_256))
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100900 keylen_flag |= AES_KEYLEN_256;
Jan Glauberbf754ae2006-01-06 00:19:18 -0800901
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100902 if (!keylen_flag)
903 return -EOPNOTSUPP;
904
905 /* z9 109 and z9 BC/EC only support 128 bit key length */
Sebastian Siewiorb0c3e752007-12-01 12:47:37 +1100906 if (keylen_flag == AES_KEYLEN_128)
Jan Glauber39f09392008-12-25 13:39:37 +0100907 pr_info("AES hardware acceleration is only available for"
908 " 128-bit keys\n");
Jan Glauberbf754ae2006-01-06 00:19:18 -0800909
910 ret = crypto_register_alg(&aes_alg);
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100911 if (ret)
Herbert Xua9e62fa2006-08-21 21:39:24 +1000912 goto aes_err;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000913
914 ret = crypto_register_alg(&ecb_aes_alg);
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100915 if (ret)
Herbert Xua9e62fa2006-08-21 21:39:24 +1000916 goto ecb_aes_err;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000917
918 ret = crypto_register_alg(&cbc_aes_alg);
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100919 if (ret)
Herbert Xua9e62fa2006-08-21 21:39:24 +1000920 goto cbc_aes_err;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000921
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200922 if (cpacf_query(CPACF_KM, CPACF_KM_XTS_128) &&
923 cpacf_query(CPACF_KM, CPACF_KM_XTS_256)) {
Gerald Schaefer99d97222011-04-26 16:12:42 +1000924 ret = crypto_register_alg(&xts_aes_alg);
925 if (ret)
926 goto xts_aes_err;
Ingo Tuchscherer4f57ba72013-10-15 11:24:07 +0200927 xts_aes_alg_reg = 1;
Gerald Schaefer99d97222011-04-26 16:12:42 +1000928 }
929
Martin Schwidefskyedc63a32016-08-15 09:19:16 +0200930 if (cpacf_query(CPACF_KMCTR, CPACF_KMCTR_AES_128) &&
931 cpacf_query(CPACF_KMCTR, CPACF_KMCTR_AES_192) &&
932 cpacf_query(CPACF_KMCTR, CPACF_KMCTR_AES_256)) {
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000933 ctrblk = (u8 *) __get_free_page(GFP_KERNEL);
934 if (!ctrblk) {
935 ret = -ENOMEM;
936 goto ctr_aes_err;
937 }
938 ret = crypto_register_alg(&ctr_aes_alg);
939 if (ret) {
940 free_page((unsigned long) ctrblk);
941 goto ctr_aes_err;
942 }
Ingo Tuchscherer4f57ba72013-10-15 11:24:07 +0200943 ctr_aes_alg_reg = 1;
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000944 }
945
Herbert Xua9e62fa2006-08-21 21:39:24 +1000946out:
Jan Glauberbf754ae2006-01-06 00:19:18 -0800947 return ret;
Herbert Xua9e62fa2006-08-21 21:39:24 +1000948
Gerald Schaefer0200f3e2011-05-04 15:09:44 +1000949ctr_aes_err:
950 crypto_unregister_alg(&xts_aes_alg);
Gerald Schaefer99d97222011-04-26 16:12:42 +1000951xts_aes_err:
952 crypto_unregister_alg(&cbc_aes_alg);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000953cbc_aes_err:
954 crypto_unregister_alg(&ecb_aes_alg);
955ecb_aes_err:
956 crypto_unregister_alg(&aes_alg);
957aes_err:
958 goto out;
Jan Glauberbf754ae2006-01-06 00:19:18 -0800959}
960
Heiko Carstens9f7819c2008-04-17 07:46:17 +0200961static void __exit aes_s390_fini(void)
Jan Glauberbf754ae2006-01-06 00:19:18 -0800962{
Ingo Tuchscherer4f57ba72013-10-15 11:24:07 +0200963 if (ctr_aes_alg_reg) {
964 crypto_unregister_alg(&ctr_aes_alg);
965 free_page((unsigned long) ctrblk);
966 }
967 if (xts_aes_alg_reg)
968 crypto_unregister_alg(&xts_aes_alg);
Herbert Xua9e62fa2006-08-21 21:39:24 +1000969 crypto_unregister_alg(&cbc_aes_alg);
970 crypto_unregister_alg(&ecb_aes_alg);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800971 crypto_unregister_alg(&aes_alg);
972}
973
Hendrik Bruecknerd05377c2015-02-19 17:34:07 +0100974module_cpu_feature_match(MSA, aes_s390_init);
Heiko Carstens9f7819c2008-04-17 07:46:17 +0200975module_exit(aes_s390_fini);
Jan Glauberbf754ae2006-01-06 00:19:18 -0800976
Kees Cook5d26a102014-11-20 17:05:53 -0800977MODULE_ALIAS_CRYPTO("aes-all");
Jan Glauberbf754ae2006-01-06 00:19:18 -0800978
979MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm");
980MODULE_LICENSE("GPL");