blob: fb507d56992292bd7ce2eac116063b932527dbe9 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Ard Biesheuvel1abee992017-01-11 16:41:55 +00002/*
3 * Bit sliced AES using NEON instructions
4 *
Ard Biesheuvelec808bb2017-07-24 11:28:15 +01005 * Copyright (C) 2016 - 2017 Linaro Ltd <ard.biesheuvel@linaro.org>
Ard Biesheuvel1abee992017-01-11 16:41:55 +00006 */
7
8#include <asm/neon.h>
Ard Biesheuvelec808bb2017-07-24 11:28:15 +01009#include <asm/simd.h>
Ard Biesheuvel1abee992017-01-11 16:41:55 +000010#include <crypto/aes.h>
Ard Biesheuvelff6f4112019-07-02 21:41:35 +020011#include <crypto/ctr.h>
Ard Biesheuvel1abee992017-01-11 16:41:55 +000012#include <crypto/internal/simd.h>
13#include <crypto/internal/skcipher.h>
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -070014#include <crypto/scatterwalk.h>
Ard Biesheuvel1abee992017-01-11 16:41:55 +000015#include <crypto/xts.h>
16#include <linux/module.h>
17
18MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
19MODULE_LICENSE("GPL v2");
20
21MODULE_ALIAS_CRYPTO("ecb(aes)");
22MODULE_ALIAS_CRYPTO("cbc(aes)");
23MODULE_ALIAS_CRYPTO("ctr(aes)");
24MODULE_ALIAS_CRYPTO("xts(aes)");
25
26asmlinkage void aesbs_convert_key(u8 out[], u32 const rk[], int rounds);
27
28asmlinkage void aesbs_ecb_encrypt(u8 out[], u8 const in[], u8 const rk[],
29 int rounds, int blocks);
30asmlinkage void aesbs_ecb_decrypt(u8 out[], u8 const in[], u8 const rk[],
31 int rounds, int blocks);
32
33asmlinkage void aesbs_cbc_decrypt(u8 out[], u8 const in[], u8 const rk[],
34 int rounds, int blocks, u8 iv[]);
35
36asmlinkage void aesbs_ctr_encrypt(u8 out[], u8 const in[], u8 const rk[],
Ard Biesheuvel88a3f582017-02-02 11:38:55 +000037 int rounds, int blocks, u8 iv[], u8 final[]);
Ard Biesheuvel1abee992017-01-11 16:41:55 +000038
39asmlinkage void aesbs_xts_encrypt(u8 out[], u8 const in[], u8 const rk[],
40 int rounds, int blocks, u8 iv[]);
41asmlinkage void aesbs_xts_decrypt(u8 out[], u8 const in[], u8 const rk[],
42 int rounds, int blocks, u8 iv[]);
43
Ard Biesheuvel12fcd922017-01-28 23:25:39 +000044/* borrowed from aes-neon-blk.ko */
45asmlinkage void neon_aes_ecb_encrypt(u8 out[], u8 const in[], u32 const rk[],
Ard Biesheuvel68338172018-03-10 15:21:48 +000046 int rounds, int blocks);
Ard Biesheuvel12fcd922017-01-28 23:25:39 +000047asmlinkage void neon_aes_cbc_encrypt(u8 out[], u8 const in[], u32 const rk[],
Ard Biesheuvel68338172018-03-10 15:21:48 +000048 int rounds, int blocks, u8 iv[]);
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -070049asmlinkage void neon_aes_xts_encrypt(u8 out[], u8 const in[],
50 u32 const rk1[], int rounds, int bytes,
51 u32 const rk2[], u8 iv[], int first);
52asmlinkage void neon_aes_xts_decrypt(u8 out[], u8 const in[],
53 u32 const rk1[], int rounds, int bytes,
54 u32 const rk2[], u8 iv[], int first);
Ard Biesheuvel1abee992017-01-11 16:41:55 +000055
56struct aesbs_ctx {
57 u8 rk[13 * (8 * AES_BLOCK_SIZE) + 32];
58 int rounds;
59} __aligned(AES_BLOCK_SIZE);
60
61struct aesbs_cbc_ctx {
62 struct aesbs_ctx key;
63 u32 enc[AES_MAX_KEYLENGTH_U32];
64};
65
Ard Biesheuvelec808bb2017-07-24 11:28:15 +010066struct aesbs_ctr_ctx {
67 struct aesbs_ctx key; /* must be first member */
68 struct crypto_aes_ctx fallback;
69};
70
Ard Biesheuvel1abee992017-01-11 16:41:55 +000071struct aesbs_xts_ctx {
72 struct aesbs_ctx key;
73 u32 twkey[AES_MAX_KEYLENGTH_U32];
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -070074 struct crypto_aes_ctx cts;
Ard Biesheuvel1abee992017-01-11 16:41:55 +000075};
76
77static int aesbs_setkey(struct crypto_skcipher *tfm, const u8 *in_key,
78 unsigned int key_len)
79{
80 struct aesbs_ctx *ctx = crypto_skcipher_ctx(tfm);
81 struct crypto_aes_ctx rk;
82 int err;
83
Ard Biesheuvelf68df542019-07-02 21:41:31 +020084 err = aes_expandkey(&rk, in_key, key_len);
Ard Biesheuvel1abee992017-01-11 16:41:55 +000085 if (err)
86 return err;
87
88 ctx->rounds = 6 + key_len / 4;
89
90 kernel_neon_begin();
91 aesbs_convert_key(ctx->rk, rk.key_enc, ctx->rounds);
92 kernel_neon_end();
93
94 return 0;
95}
96
97static int __ecb_crypt(struct skcipher_request *req,
98 void (*fn)(u8 out[], u8 const in[], u8 const rk[],
99 int rounds, int blocks))
100{
101 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
102 struct aesbs_ctx *ctx = crypto_skcipher_ctx(tfm);
103 struct skcipher_walk walk;
104 int err;
105
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000106 err = skcipher_walk_virt(&walk, req, false);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000107
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000108 while (walk.nbytes >= AES_BLOCK_SIZE) {
109 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
110
111 if (walk.nbytes < walk.total)
112 blocks = round_down(blocks,
113 walk.stride / AES_BLOCK_SIZE);
114
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000115 kernel_neon_begin();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000116 fn(walk.dst.virt.addr, walk.src.virt.addr, ctx->rk,
117 ctx->rounds, blocks);
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000118 kernel_neon_end();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000119 err = skcipher_walk_done(&walk,
120 walk.nbytes - blocks * AES_BLOCK_SIZE);
121 }
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000122
123 return err;
124}
125
126static int ecb_encrypt(struct skcipher_request *req)
127{
128 return __ecb_crypt(req, aesbs_ecb_encrypt);
129}
130
131static int ecb_decrypt(struct skcipher_request *req)
132{
133 return __ecb_crypt(req, aesbs_ecb_decrypt);
134}
135
136static int aesbs_cbc_setkey(struct crypto_skcipher *tfm, const u8 *in_key,
137 unsigned int key_len)
138{
139 struct aesbs_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
140 struct crypto_aes_ctx rk;
141 int err;
142
Ard Biesheuvelf68df542019-07-02 21:41:31 +0200143 err = aes_expandkey(&rk, in_key, key_len);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000144 if (err)
145 return err;
146
147 ctx->key.rounds = 6 + key_len / 4;
148
149 memcpy(ctx->enc, rk.key_enc, sizeof(ctx->enc));
150
151 kernel_neon_begin();
152 aesbs_convert_key(ctx->key.rk, rk.key_enc, ctx->key.rounds);
153 kernel_neon_end();
Torsten Duwe82ff4932020-03-13 12:02:58 +0100154 memzero_explicit(&rk, sizeof(rk));
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000155
156 return 0;
157}
158
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000159static int cbc_encrypt(struct skcipher_request *req)
160{
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000161 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
162 struct aesbs_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
163 struct skcipher_walk walk;
Ard Biesheuvel68338172018-03-10 15:21:48 +0000164 int err;
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000165
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000166 err = skcipher_walk_virt(&walk, req, false);
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000167
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000168 while (walk.nbytes >= AES_BLOCK_SIZE) {
169 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
170
171 /* fall back to the non-bitsliced NEON implementation */
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000172 kernel_neon_begin();
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000173 neon_aes_cbc_encrypt(walk.dst.virt.addr, walk.src.virt.addr,
Ard Biesheuvel68338172018-03-10 15:21:48 +0000174 ctx->enc, ctx->key.rounds, blocks,
175 walk.iv);
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000176 kernel_neon_end();
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000177 err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000178 }
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000179 return err;
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000180}
181
182static int cbc_decrypt(struct skcipher_request *req)
183{
184 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
185 struct aesbs_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
186 struct skcipher_walk walk;
187 int err;
188
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000189 err = skcipher_walk_virt(&walk, req, false);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000190
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000191 while (walk.nbytes >= AES_BLOCK_SIZE) {
192 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
193
194 if (walk.nbytes < walk.total)
195 blocks = round_down(blocks,
196 walk.stride / AES_BLOCK_SIZE);
197
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000198 kernel_neon_begin();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000199 aesbs_cbc_decrypt(walk.dst.virt.addr, walk.src.virt.addr,
200 ctx->key.rk, ctx->key.rounds, blocks,
201 walk.iv);
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000202 kernel_neon_end();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000203 err = skcipher_walk_done(&walk,
204 walk.nbytes - blocks * AES_BLOCK_SIZE);
205 }
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000206
207 return err;
208}
209
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100210static int aesbs_ctr_setkey_sync(struct crypto_skcipher *tfm, const u8 *in_key,
211 unsigned int key_len)
212{
213 struct aesbs_ctr_ctx *ctx = crypto_skcipher_ctx(tfm);
214 int err;
215
Ard Biesheuvelf68df542019-07-02 21:41:31 +0200216 err = aes_expandkey(&ctx->fallback, in_key, key_len);
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100217 if (err)
218 return err;
219
220 ctx->key.rounds = 6 + key_len / 4;
221
222 kernel_neon_begin();
223 aesbs_convert_key(ctx->key.rk, ctx->fallback.key_enc, ctx->key.rounds);
224 kernel_neon_end();
225
226 return 0;
227}
228
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000229static int ctr_encrypt(struct skcipher_request *req)
230{
231 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
232 struct aesbs_ctx *ctx = crypto_skcipher_ctx(tfm);
233 struct skcipher_walk walk;
Ard Biesheuvel88a3f582017-02-02 11:38:55 +0000234 u8 buf[AES_BLOCK_SIZE];
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000235 int err;
236
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000237 err = skcipher_walk_virt(&walk, req, false);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000238
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000239 while (walk.nbytes > 0) {
240 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
Ard Biesheuvel88a3f582017-02-02 11:38:55 +0000241 u8 *final = (walk.total % AES_BLOCK_SIZE) ? buf : NULL;
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000242
243 if (walk.nbytes < walk.total) {
244 blocks = round_down(blocks,
245 walk.stride / AES_BLOCK_SIZE);
Ard Biesheuvel88a3f582017-02-02 11:38:55 +0000246 final = NULL;
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000247 }
248
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000249 kernel_neon_begin();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000250 aesbs_ctr_encrypt(walk.dst.virt.addr, walk.src.virt.addr,
251 ctx->rk, ctx->rounds, blocks, walk.iv, final);
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000252 kernel_neon_end();
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000253
254 if (final) {
255 u8 *dst = walk.dst.virt.addr + blocks * AES_BLOCK_SIZE;
256 u8 *src = walk.src.virt.addr + blocks * AES_BLOCK_SIZE;
257
Ard Biesheuvel45fe93d2017-07-24 11:28:04 +0100258 crypto_xor_cpy(dst, src, final,
259 walk.total % AES_BLOCK_SIZE);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000260
261 err = skcipher_walk_done(&walk, 0);
262 break;
263 }
264 err = skcipher_walk_done(&walk,
265 walk.nbytes - blocks * AES_BLOCK_SIZE);
266 }
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000267 return err;
268}
269
270static int aesbs_xts_setkey(struct crypto_skcipher *tfm, const u8 *in_key,
271 unsigned int key_len)
272{
273 struct aesbs_xts_ctx *ctx = crypto_skcipher_ctx(tfm);
274 struct crypto_aes_ctx rk;
275 int err;
276
277 err = xts_verify_key(tfm, in_key, key_len);
278 if (err)
279 return err;
280
281 key_len /= 2;
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700282 err = aes_expandkey(&ctx->cts, in_key, key_len);
283 if (err)
284 return err;
285
Ard Biesheuvelf68df542019-07-02 21:41:31 +0200286 err = aes_expandkey(&rk, in_key + key_len, key_len);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000287 if (err)
288 return err;
289
290 memcpy(ctx->twkey, rk.key_enc, sizeof(ctx->twkey));
291
292 return aesbs_setkey(tfm, in_key, key_len);
293}
294
Ard Biesheuvelff6f4112019-07-02 21:41:35 +0200295static void ctr_encrypt_one(struct crypto_skcipher *tfm, const u8 *src, u8 *dst)
296{
297 struct aesbs_ctr_ctx *ctx = crypto_skcipher_ctx(tfm);
298 unsigned long flags;
299
300 /*
301 * Temporarily disable interrupts to avoid races where
302 * cachelines are evicted when the CPU is interrupted
303 * to do something else.
304 */
305 local_irq_save(flags);
306 aes_encrypt(&ctx->fallback, dst, src);
307 local_irq_restore(flags);
308}
309
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100310static int ctr_encrypt_sync(struct skcipher_request *req)
311{
Eric Biggerse52b7022019-03-12 22:12:50 -0700312 if (!crypto_simd_usable())
Ard Biesheuvelff6f4112019-07-02 21:41:35 +0200313 return crypto_ctr_encrypt_walk(req, ctr_encrypt_one);
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100314
315 return ctr_encrypt(req);
316}
317
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700318static int __xts_crypt(struct skcipher_request *req, bool encrypt,
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000319 void (*fn)(u8 out[], u8 const in[], u8 const rk[],
320 int rounds, int blocks, u8 iv[]))
321{
322 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
323 struct aesbs_xts_ctx *ctx = crypto_skcipher_ctx(tfm);
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700324 int tail = req->cryptlen % (8 * AES_BLOCK_SIZE);
325 struct scatterlist sg_src[2], sg_dst[2];
326 struct skcipher_request subreq;
327 struct scatterlist *src, *dst;
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000328 struct skcipher_walk walk;
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700329 int nbytes, err;
330 int first = 1;
331 u8 *out, *in;
332
333 if (req->cryptlen < AES_BLOCK_SIZE)
334 return -EINVAL;
335
336 /* ensure that the cts tail is covered by a single step */
337 if (unlikely(tail > 0 && tail < AES_BLOCK_SIZE)) {
338 int xts_blocks = DIV_ROUND_UP(req->cryptlen,
339 AES_BLOCK_SIZE) - 2;
340
341 skcipher_request_set_tfm(&subreq, tfm);
342 skcipher_request_set_callback(&subreq,
343 skcipher_request_flags(req),
344 NULL, NULL);
345 skcipher_request_set_crypt(&subreq, req->src, req->dst,
346 xts_blocks * AES_BLOCK_SIZE,
347 req->iv);
348 req = &subreq;
349 } else {
350 tail = 0;
351 }
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000352
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000353 err = skcipher_walk_virt(&walk, req, false);
Eric Biggers4a8108b2019-04-09 23:46:32 -0700354 if (err)
355 return err;
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000356
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000357 while (walk.nbytes >= AES_BLOCK_SIZE) {
358 unsigned int blocks = walk.nbytes / AES_BLOCK_SIZE;
359
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700360 if (walk.nbytes < walk.total || walk.nbytes % AES_BLOCK_SIZE)
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000361 blocks = round_down(blocks,
362 walk.stride / AES_BLOCK_SIZE);
363
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700364 out = walk.dst.virt.addr;
365 in = walk.src.virt.addr;
366 nbytes = walk.nbytes;
367
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000368 kernel_neon_begin();
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700369 if (likely(blocks > 6)) { /* plain NEON is faster otherwise */
370 if (first)
371 neon_aes_ecb_encrypt(walk.iv, walk.iv,
372 ctx->twkey,
373 ctx->key.rounds, 1);
374 first = 0;
375
376 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks,
377 walk.iv);
378
379 out += blocks * AES_BLOCK_SIZE;
380 in += blocks * AES_BLOCK_SIZE;
381 nbytes -= blocks * AES_BLOCK_SIZE;
382 }
383
384 if (walk.nbytes == walk.total && nbytes > 0)
385 goto xts_tail;
386
Ard Biesheuvel78ad7b02018-03-10 15:21:49 +0000387 kernel_neon_end();
Yunfeng Ye9b537992019-10-22 16:11:18 +0800388 err = skcipher_walk_done(&walk, nbytes);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000389 }
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700390
391 if (err || likely(!tail))
392 return err;
393
394 /* handle ciphertext stealing */
395 dst = src = scatterwalk_ffwd(sg_src, req->src, req->cryptlen);
396 if (req->dst != req->src)
397 dst = scatterwalk_ffwd(sg_dst, req->dst, req->cryptlen);
398
399 skcipher_request_set_crypt(req, src, dst, AES_BLOCK_SIZE + tail,
400 req->iv);
401
402 err = skcipher_walk_virt(&walk, req, false);
403 if (err)
404 return err;
405
406 out = walk.dst.virt.addr;
407 in = walk.src.virt.addr;
408 nbytes = walk.nbytes;
409
410 kernel_neon_begin();
411xts_tail:
412 if (encrypt)
413 neon_aes_xts_encrypt(out, in, ctx->cts.key_enc, ctx->key.rounds,
414 nbytes, ctx->twkey, walk.iv, first ?: 2);
415 else
416 neon_aes_xts_decrypt(out, in, ctx->cts.key_dec, ctx->key.rounds,
417 nbytes, ctx->twkey, walk.iv, first ?: 2);
418 kernel_neon_end();
419
420 return skcipher_walk_done(&walk, 0);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000421}
422
423static int xts_encrypt(struct skcipher_request *req)
424{
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700425 return __xts_crypt(req, true, aesbs_xts_encrypt);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000426}
427
428static int xts_decrypt(struct skcipher_request *req)
429{
Ard Biesheuvel67cfa5d2019-09-03 09:43:34 -0700430 return __xts_crypt(req, false, aesbs_xts_decrypt);
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000431}
432
433static struct skcipher_alg aes_algs[] = { {
434 .base.cra_name = "__ecb(aes)",
435 .base.cra_driver_name = "__ecb-aes-neonbs",
436 .base.cra_priority = 250,
437 .base.cra_blocksize = AES_BLOCK_SIZE,
438 .base.cra_ctxsize = sizeof(struct aesbs_ctx),
439 .base.cra_module = THIS_MODULE,
440 .base.cra_flags = CRYPTO_ALG_INTERNAL,
441
442 .min_keysize = AES_MIN_KEY_SIZE,
443 .max_keysize = AES_MAX_KEY_SIZE,
444 .walksize = 8 * AES_BLOCK_SIZE,
445 .setkey = aesbs_setkey,
446 .encrypt = ecb_encrypt,
447 .decrypt = ecb_decrypt,
448}, {
449 .base.cra_name = "__cbc(aes)",
450 .base.cra_driver_name = "__cbc-aes-neonbs",
451 .base.cra_priority = 250,
452 .base.cra_blocksize = AES_BLOCK_SIZE,
453 .base.cra_ctxsize = sizeof(struct aesbs_cbc_ctx),
454 .base.cra_module = THIS_MODULE,
455 .base.cra_flags = CRYPTO_ALG_INTERNAL,
456
457 .min_keysize = AES_MIN_KEY_SIZE,
458 .max_keysize = AES_MAX_KEY_SIZE,
459 .walksize = 8 * AES_BLOCK_SIZE,
460 .ivsize = AES_BLOCK_SIZE,
461 .setkey = aesbs_cbc_setkey,
462 .encrypt = cbc_encrypt,
463 .decrypt = cbc_decrypt,
464}, {
465 .base.cra_name = "__ctr(aes)",
466 .base.cra_driver_name = "__ctr-aes-neonbs",
467 .base.cra_priority = 250,
468 .base.cra_blocksize = 1,
469 .base.cra_ctxsize = sizeof(struct aesbs_ctx),
470 .base.cra_module = THIS_MODULE,
471 .base.cra_flags = CRYPTO_ALG_INTERNAL,
472
473 .min_keysize = AES_MIN_KEY_SIZE,
474 .max_keysize = AES_MAX_KEY_SIZE,
475 .chunksize = AES_BLOCK_SIZE,
476 .walksize = 8 * AES_BLOCK_SIZE,
477 .ivsize = AES_BLOCK_SIZE,
478 .setkey = aesbs_setkey,
479 .encrypt = ctr_encrypt,
480 .decrypt = ctr_encrypt,
481}, {
482 .base.cra_name = "ctr(aes)",
483 .base.cra_driver_name = "ctr-aes-neonbs",
484 .base.cra_priority = 250 - 1,
485 .base.cra_blocksize = 1,
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100486 .base.cra_ctxsize = sizeof(struct aesbs_ctr_ctx),
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000487 .base.cra_module = THIS_MODULE,
488
489 .min_keysize = AES_MIN_KEY_SIZE,
490 .max_keysize = AES_MAX_KEY_SIZE,
491 .chunksize = AES_BLOCK_SIZE,
492 .walksize = 8 * AES_BLOCK_SIZE,
493 .ivsize = AES_BLOCK_SIZE,
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100494 .setkey = aesbs_ctr_setkey_sync,
495 .encrypt = ctr_encrypt_sync,
496 .decrypt = ctr_encrypt_sync,
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000497}, {
498 .base.cra_name = "__xts(aes)",
499 .base.cra_driver_name = "__xts-aes-neonbs",
500 .base.cra_priority = 250,
501 .base.cra_blocksize = AES_BLOCK_SIZE,
502 .base.cra_ctxsize = sizeof(struct aesbs_xts_ctx),
503 .base.cra_module = THIS_MODULE,
504 .base.cra_flags = CRYPTO_ALG_INTERNAL,
505
506 .min_keysize = 2 * AES_MIN_KEY_SIZE,
507 .max_keysize = 2 * AES_MAX_KEY_SIZE,
508 .walksize = 8 * AES_BLOCK_SIZE,
509 .ivsize = AES_BLOCK_SIZE,
510 .setkey = aesbs_xts_setkey,
511 .encrypt = xts_encrypt,
512 .decrypt = xts_decrypt,
513} };
514
515static struct simd_skcipher_alg *aes_simd_algs[ARRAY_SIZE(aes_algs)];
516
517static void aes_exit(void)
518{
519 int i;
520
521 for (i = 0; i < ARRAY_SIZE(aes_simd_algs); i++)
522 if (aes_simd_algs[i])
523 simd_skcipher_free(aes_simd_algs[i]);
524
525 crypto_unregister_skciphers(aes_algs, ARRAY_SIZE(aes_algs));
526}
527
528static int __init aes_init(void)
529{
530 struct simd_skcipher_alg *simd;
531 const char *basename;
532 const char *algname;
533 const char *drvname;
534 int err;
535 int i;
536
Andrew Murrayaaba0982019-04-09 10:52:40 +0100537 if (!cpu_have_named_feature(ASIMD))
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000538 return -ENODEV;
539
540 err = crypto_register_skciphers(aes_algs, ARRAY_SIZE(aes_algs));
541 if (err)
542 return err;
543
544 for (i = 0; i < ARRAY_SIZE(aes_algs); i++) {
545 if (!(aes_algs[i].base.cra_flags & CRYPTO_ALG_INTERNAL))
546 continue;
547
548 algname = aes_algs[i].base.cra_name + 2;
549 drvname = aes_algs[i].base.cra_driver_name + 2;
550 basename = aes_algs[i].base.cra_driver_name;
551 simd = simd_skcipher_create_compat(algname, drvname, basename);
552 err = PTR_ERR(simd);
553 if (IS_ERR(simd))
554 goto unregister_simds;
555
556 aes_simd_algs[i] = simd;
557 }
558 return 0;
559
560unregister_simds:
561 aes_exit();
562 return err;
563}
564
565module_init(aes_init);
566module_exit(aes_exit);