Loading...
1/*
2 * AEAD: Authenticated Encryption with Associated Data
3 *
4 * This file provides API support for AEAD algorithms.
5 *
6 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 */
14
15#include <crypto/internal/aead.h>
16#include <linux/err.h>
17#include <linux/init.h>
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/rtnetlink.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23#include <linux/seq_file.h>
24
25#include "internal.h"
26
27static int setkey_unaligned(struct crypto_aead *tfm, const u8 *key,
28 unsigned int keylen)
29{
30 struct aead_alg *aead = crypto_aead_alg(tfm);
31 unsigned long alignmask = crypto_aead_alignmask(tfm);
32 int ret;
33 u8 *buffer, *alignbuffer;
34 unsigned long absize;
35
36 absize = keylen + alignmask;
37 buffer = kmalloc(absize, GFP_ATOMIC);
38 if (!buffer)
39 return -ENOMEM;
40
41 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
42 memcpy(alignbuffer, key, keylen);
43 ret = aead->setkey(tfm, alignbuffer, keylen);
44 memset(alignbuffer, 0, keylen);
45 kfree(buffer);
46 return ret;
47}
48
49static int setkey(struct crypto_aead *tfm, const u8 *key, unsigned int keylen)
50{
51 struct aead_alg *aead = crypto_aead_alg(tfm);
52 unsigned long alignmask = crypto_aead_alignmask(tfm);
53
54 if ((unsigned long)key & alignmask)
55 return setkey_unaligned(tfm, key, keylen);
56
57 return aead->setkey(tfm, key, keylen);
58}
59
60int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize)
61{
62 struct aead_tfm *crt = crypto_aead_crt(tfm);
63 int err;
64
65 if (authsize > crypto_aead_alg(tfm)->maxauthsize)
66 return -EINVAL;
67
68 if (crypto_aead_alg(tfm)->setauthsize) {
69 err = crypto_aead_alg(tfm)->setauthsize(crt->base, authsize);
70 if (err)
71 return err;
72 }
73
74 crypto_aead_crt(crt->base)->authsize = authsize;
75 crt->authsize = authsize;
76 return 0;
77}
78EXPORT_SYMBOL_GPL(crypto_aead_setauthsize);
79
80static unsigned int crypto_aead_ctxsize(struct crypto_alg *alg, u32 type,
81 u32 mask)
82{
83 return alg->cra_ctxsize;
84}
85
86static int no_givcrypt(struct aead_givcrypt_request *req)
87{
88 return -ENOSYS;
89}
90
91static int crypto_init_aead_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
92{
93 struct aead_alg *alg = &tfm->__crt_alg->cra_aead;
94 struct aead_tfm *crt = &tfm->crt_aead;
95
96 if (max(alg->maxauthsize, alg->ivsize) > PAGE_SIZE / 8)
97 return -EINVAL;
98
99 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ?
100 alg->setkey : setkey;
101 crt->encrypt = alg->encrypt;
102 crt->decrypt = alg->decrypt;
103 crt->givencrypt = alg->givencrypt ?: no_givcrypt;
104 crt->givdecrypt = alg->givdecrypt ?: no_givcrypt;
105 crt->base = __crypto_aead_cast(tfm);
106 crt->ivsize = alg->ivsize;
107 crt->authsize = alg->maxauthsize;
108
109 return 0;
110}
111
112static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
113 __attribute__ ((unused));
114static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
115{
116 struct aead_alg *aead = &alg->cra_aead;
117
118 seq_printf(m, "type : aead\n");
119 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
120 "yes" : "no");
121 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
122 seq_printf(m, "ivsize : %u\n", aead->ivsize);
123 seq_printf(m, "maxauthsize : %u\n", aead->maxauthsize);
124 seq_printf(m, "geniv : %s\n", aead->geniv ?: "<built-in>");
125}
126
127const struct crypto_type crypto_aead_type = {
128 .ctxsize = crypto_aead_ctxsize,
129 .init = crypto_init_aead_ops,
130#ifdef CONFIG_PROC_FS
131 .show = crypto_aead_show,
132#endif
133};
134EXPORT_SYMBOL_GPL(crypto_aead_type);
135
136static int aead_null_givencrypt(struct aead_givcrypt_request *req)
137{
138 return crypto_aead_encrypt(&req->areq);
139}
140
141static int aead_null_givdecrypt(struct aead_givcrypt_request *req)
142{
143 return crypto_aead_decrypt(&req->areq);
144}
145
146static int crypto_init_nivaead_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
147{
148 struct aead_alg *alg = &tfm->__crt_alg->cra_aead;
149 struct aead_tfm *crt = &tfm->crt_aead;
150
151 if (max(alg->maxauthsize, alg->ivsize) > PAGE_SIZE / 8)
152 return -EINVAL;
153
154 crt->setkey = setkey;
155 crt->encrypt = alg->encrypt;
156 crt->decrypt = alg->decrypt;
157 if (!alg->ivsize) {
158 crt->givencrypt = aead_null_givencrypt;
159 crt->givdecrypt = aead_null_givdecrypt;
160 }
161 crt->base = __crypto_aead_cast(tfm);
162 crt->ivsize = alg->ivsize;
163 crt->authsize = alg->maxauthsize;
164
165 return 0;
166}
167
168static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg)
169 __attribute__ ((unused));
170static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg)
171{
172 struct aead_alg *aead = &alg->cra_aead;
173
174 seq_printf(m, "type : nivaead\n");
175 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
176 "yes" : "no");
177 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
178 seq_printf(m, "ivsize : %u\n", aead->ivsize);
179 seq_printf(m, "maxauthsize : %u\n", aead->maxauthsize);
180 seq_printf(m, "geniv : %s\n", aead->geniv);
181}
182
183const struct crypto_type crypto_nivaead_type = {
184 .ctxsize = crypto_aead_ctxsize,
185 .init = crypto_init_nivaead_ops,
186#ifdef CONFIG_PROC_FS
187 .show = crypto_nivaead_show,
188#endif
189};
190EXPORT_SYMBOL_GPL(crypto_nivaead_type);
191
192static int crypto_grab_nivaead(struct crypto_aead_spawn *spawn,
193 const char *name, u32 type, u32 mask)
194{
195 struct crypto_alg *alg;
196 int err;
197
198 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
199 type |= CRYPTO_ALG_TYPE_AEAD;
200 mask |= CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV;
201
202 alg = crypto_alg_mod_lookup(name, type, mask);
203 if (IS_ERR(alg))
204 return PTR_ERR(alg);
205
206 err = crypto_init_spawn(&spawn->base, alg, spawn->base.inst, mask);
207 crypto_mod_put(alg);
208 return err;
209}
210
211struct crypto_instance *aead_geniv_alloc(struct crypto_template *tmpl,
212 struct rtattr **tb, u32 type,
213 u32 mask)
214{
215 const char *name;
216 struct crypto_aead_spawn *spawn;
217 struct crypto_attr_type *algt;
218 struct crypto_instance *inst;
219 struct crypto_alg *alg;
220 int err;
221
222 algt = crypto_get_attr_type(tb);
223 err = PTR_ERR(algt);
224 if (IS_ERR(algt))
225 return ERR_PTR(err);
226
227 if ((algt->type ^ (CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_GENIV)) &
228 algt->mask)
229 return ERR_PTR(-EINVAL);
230
231 name = crypto_attr_alg_name(tb[1]);
232 err = PTR_ERR(name);
233 if (IS_ERR(name))
234 return ERR_PTR(err);
235
236 inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
237 if (!inst)
238 return ERR_PTR(-ENOMEM);
239
240 spawn = crypto_instance_ctx(inst);
241
242 /* Ignore async algorithms if necessary. */
243 mask |= crypto_requires_sync(algt->type, algt->mask);
244
245 crypto_set_aead_spawn(spawn, inst);
246 err = crypto_grab_nivaead(spawn, name, type, mask);
247 if (err)
248 goto err_free_inst;
249
250 alg = crypto_aead_spawn_alg(spawn);
251
252 err = -EINVAL;
253 if (!alg->cra_aead.ivsize)
254 goto err_drop_alg;
255
256 /*
257 * This is only true if we're constructing an algorithm with its
258 * default IV generator. For the default generator we elide the
259 * template name and double-check the IV generator.
260 */
261 if (algt->mask & CRYPTO_ALG_GENIV) {
262 if (strcmp(tmpl->name, alg->cra_aead.geniv))
263 goto err_drop_alg;
264
265 memcpy(inst->alg.cra_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
266 memcpy(inst->alg.cra_driver_name, alg->cra_driver_name,
267 CRYPTO_MAX_ALG_NAME);
268 } else {
269 err = -ENAMETOOLONG;
270 if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
271 "%s(%s)", tmpl->name, alg->cra_name) >=
272 CRYPTO_MAX_ALG_NAME)
273 goto err_drop_alg;
274 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
275 "%s(%s)", tmpl->name, alg->cra_driver_name) >=
276 CRYPTO_MAX_ALG_NAME)
277 goto err_drop_alg;
278 }
279
280 inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_GENIV;
281 inst->alg.cra_flags |= alg->cra_flags & CRYPTO_ALG_ASYNC;
282 inst->alg.cra_priority = alg->cra_priority;
283 inst->alg.cra_blocksize = alg->cra_blocksize;
284 inst->alg.cra_alignmask = alg->cra_alignmask;
285 inst->alg.cra_type = &crypto_aead_type;
286
287 inst->alg.cra_aead.ivsize = alg->cra_aead.ivsize;
288 inst->alg.cra_aead.maxauthsize = alg->cra_aead.maxauthsize;
289 inst->alg.cra_aead.geniv = alg->cra_aead.geniv;
290
291 inst->alg.cra_aead.setkey = alg->cra_aead.setkey;
292 inst->alg.cra_aead.setauthsize = alg->cra_aead.setauthsize;
293 inst->alg.cra_aead.encrypt = alg->cra_aead.encrypt;
294 inst->alg.cra_aead.decrypt = alg->cra_aead.decrypt;
295
296out:
297 return inst;
298
299err_drop_alg:
300 crypto_drop_aead(spawn);
301err_free_inst:
302 kfree(inst);
303 inst = ERR_PTR(err);
304 goto out;
305}
306EXPORT_SYMBOL_GPL(aead_geniv_alloc);
307
308void aead_geniv_free(struct crypto_instance *inst)
309{
310 crypto_drop_aead(crypto_instance_ctx(inst));
311 kfree(inst);
312}
313EXPORT_SYMBOL_GPL(aead_geniv_free);
314
315int aead_geniv_init(struct crypto_tfm *tfm)
316{
317 struct crypto_instance *inst = (void *)tfm->__crt_alg;
318 struct crypto_aead *aead;
319
320 aead = crypto_spawn_aead(crypto_instance_ctx(inst));
321 if (IS_ERR(aead))
322 return PTR_ERR(aead);
323
324 tfm->crt_aead.base = aead;
325 tfm->crt_aead.reqsize += crypto_aead_reqsize(aead);
326
327 return 0;
328}
329EXPORT_SYMBOL_GPL(aead_geniv_init);
330
331void aead_geniv_exit(struct crypto_tfm *tfm)
332{
333 crypto_free_aead(tfm->crt_aead.base);
334}
335EXPORT_SYMBOL_GPL(aead_geniv_exit);
336
337static int crypto_nivaead_default(struct crypto_alg *alg, u32 type, u32 mask)
338{
339 struct rtattr *tb[3];
340 struct {
341 struct rtattr attr;
342 struct crypto_attr_type data;
343 } ptype;
344 struct {
345 struct rtattr attr;
346 struct crypto_attr_alg data;
347 } palg;
348 struct crypto_template *tmpl;
349 struct crypto_instance *inst;
350 struct crypto_alg *larval;
351 const char *geniv;
352 int err;
353
354 larval = crypto_larval_lookup(alg->cra_driver_name,
355 CRYPTO_ALG_TYPE_AEAD | CRYPTO_ALG_GENIV,
356 CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
357 err = PTR_ERR(larval);
358 if (IS_ERR(larval))
359 goto out;
360
361 err = -EAGAIN;
362 if (!crypto_is_larval(larval))
363 goto drop_larval;
364
365 ptype.attr.rta_len = sizeof(ptype);
366 ptype.attr.rta_type = CRYPTOA_TYPE;
367 ptype.data.type = type | CRYPTO_ALG_GENIV;
368 /* GENIV tells the template that we're making a default geniv. */
369 ptype.data.mask = mask | CRYPTO_ALG_GENIV;
370 tb[0] = &ptype.attr;
371
372 palg.attr.rta_len = sizeof(palg);
373 palg.attr.rta_type = CRYPTOA_ALG;
374 /* Must use the exact name to locate ourselves. */
375 memcpy(palg.data.name, alg->cra_driver_name, CRYPTO_MAX_ALG_NAME);
376 tb[1] = &palg.attr;
377
378 tb[2] = NULL;
379
380 geniv = alg->cra_aead.geniv;
381
382 tmpl = crypto_lookup_template(geniv);
383 err = -ENOENT;
384 if (!tmpl)
385 goto kill_larval;
386
387 inst = tmpl->alloc(tb);
388 err = PTR_ERR(inst);
389 if (IS_ERR(inst))
390 goto put_tmpl;
391
392 if ((err = crypto_register_instance(tmpl, inst))) {
393 tmpl->free(inst);
394 goto put_tmpl;
395 }
396
397 /* Redo the lookup to use the instance we just registered. */
398 err = -EAGAIN;
399
400put_tmpl:
401 crypto_tmpl_put(tmpl);
402kill_larval:
403 crypto_larval_kill(larval);
404drop_larval:
405 crypto_mod_put(larval);
406out:
407 crypto_mod_put(alg);
408 return err;
409}
410
411static struct crypto_alg *crypto_lookup_aead(const char *name, u32 type,
412 u32 mask)
413{
414 struct crypto_alg *alg;
415
416 alg = crypto_alg_mod_lookup(name, type, mask);
417 if (IS_ERR(alg))
418 return alg;
419
420 if (alg->cra_type == &crypto_aead_type)
421 return alg;
422
423 if (!alg->cra_aead.ivsize)
424 return alg;
425
426 crypto_mod_put(alg);
427 alg = crypto_alg_mod_lookup(name, type | CRYPTO_ALG_TESTED,
428 mask & ~CRYPTO_ALG_TESTED);
429 if (IS_ERR(alg))
430 return alg;
431
432 if (alg->cra_type == &crypto_aead_type) {
433 if ((alg->cra_flags ^ type ^ ~mask) & CRYPTO_ALG_TESTED) {
434 crypto_mod_put(alg);
435 alg = ERR_PTR(-ENOENT);
436 }
437 return alg;
438 }
439
440 BUG_ON(!alg->cra_aead.ivsize);
441
442 return ERR_PTR(crypto_nivaead_default(alg, type, mask));
443}
444
445int crypto_grab_aead(struct crypto_aead_spawn *spawn, const char *name,
446 u32 type, u32 mask)
447{
448 struct crypto_alg *alg;
449 int err;
450
451 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
452 type |= CRYPTO_ALG_TYPE_AEAD;
453 mask &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
454 mask |= CRYPTO_ALG_TYPE_MASK;
455
456 alg = crypto_lookup_aead(name, type, mask);
457 if (IS_ERR(alg))
458 return PTR_ERR(alg);
459
460 err = crypto_init_spawn(&spawn->base, alg, spawn->base.inst, mask);
461 crypto_mod_put(alg);
462 return err;
463}
464EXPORT_SYMBOL_GPL(crypto_grab_aead);
465
466struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask)
467{
468 struct crypto_tfm *tfm;
469 int err;
470
471 type &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
472 type |= CRYPTO_ALG_TYPE_AEAD;
473 mask &= ~(CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_GENIV);
474 mask |= CRYPTO_ALG_TYPE_MASK;
475
476 for (;;) {
477 struct crypto_alg *alg;
478
479 alg = crypto_lookup_aead(alg_name, type, mask);
480 if (IS_ERR(alg)) {
481 err = PTR_ERR(alg);
482 goto err;
483 }
484
485 tfm = __crypto_alloc_tfm(alg, type, mask);
486 if (!IS_ERR(tfm))
487 return __crypto_aead_cast(tfm);
488
489 crypto_mod_put(alg);
490 err = PTR_ERR(tfm);
491
492err:
493 if (err != -EAGAIN)
494 break;
495 if (signal_pending(current)) {
496 err = -EINTR;
497 break;
498 }
499 }
500
501 return ERR_PTR(err);
502}
503EXPORT_SYMBOL_GPL(crypto_alloc_aead);
504
505MODULE_LICENSE("GPL");
506MODULE_DESCRIPTION("Authenticated Encryption with Associated Data (AEAD)");
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * AEAD: Authenticated Encryption with Associated Data
4 *
5 * This file provides API support for AEAD algorithms.
6 *
7 * Copyright (c) 2007-2015 Herbert Xu <herbert@gondor.apana.org.au>
8 */
9
10#include <crypto/internal/geniv.h>
11#include <crypto/internal/rng.h>
12#include <crypto/null.h>
13#include <crypto/scatterwalk.h>
14#include <linux/err.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/rtnetlink.h>
19#include <linux/slab.h>
20#include <linux/seq_file.h>
21#include <linux/cryptouser.h>
22#include <linux/compiler.h>
23#include <net/netlink.h>
24
25#include "internal.h"
26
27static int setkey_unaligned(struct crypto_aead *tfm, const u8 *key,
28 unsigned int keylen)
29{
30 unsigned long alignmask = crypto_aead_alignmask(tfm);
31 int ret;
32 u8 *buffer, *alignbuffer;
33 unsigned long absize;
34
35 absize = keylen + alignmask;
36 buffer = kmalloc(absize, GFP_ATOMIC);
37 if (!buffer)
38 return -ENOMEM;
39
40 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
41 memcpy(alignbuffer, key, keylen);
42 ret = crypto_aead_alg(tfm)->setkey(tfm, alignbuffer, keylen);
43 memset(alignbuffer, 0, keylen);
44 kfree(buffer);
45 return ret;
46}
47
48int crypto_aead_setkey(struct crypto_aead *tfm,
49 const u8 *key, unsigned int keylen)
50{
51 unsigned long alignmask = crypto_aead_alignmask(tfm);
52 int err;
53
54 if ((unsigned long)key & alignmask)
55 err = setkey_unaligned(tfm, key, keylen);
56 else
57 err = crypto_aead_alg(tfm)->setkey(tfm, key, keylen);
58
59 if (unlikely(err)) {
60 crypto_aead_set_flags(tfm, CRYPTO_TFM_NEED_KEY);
61 return err;
62 }
63
64 crypto_aead_clear_flags(tfm, CRYPTO_TFM_NEED_KEY);
65 return 0;
66}
67EXPORT_SYMBOL_GPL(crypto_aead_setkey);
68
69int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize)
70{
71 int err;
72
73 if ((!authsize && crypto_aead_maxauthsize(tfm)) ||
74 authsize > crypto_aead_maxauthsize(tfm))
75 return -EINVAL;
76
77 if (crypto_aead_alg(tfm)->setauthsize) {
78 err = crypto_aead_alg(tfm)->setauthsize(tfm, authsize);
79 if (err)
80 return err;
81 }
82
83 tfm->authsize = authsize;
84 return 0;
85}
86EXPORT_SYMBOL_GPL(crypto_aead_setauthsize);
87
88int crypto_aead_encrypt(struct aead_request *req)
89{
90 struct crypto_aead *aead = crypto_aead_reqtfm(req);
91 struct crypto_alg *alg = aead->base.__crt_alg;
92 unsigned int cryptlen = req->cryptlen;
93 int ret;
94
95 crypto_stats_get(alg);
96 if (crypto_aead_get_flags(aead) & CRYPTO_TFM_NEED_KEY)
97 ret = -ENOKEY;
98 else
99 ret = crypto_aead_alg(aead)->encrypt(req);
100 crypto_stats_aead_encrypt(cryptlen, alg, ret);
101 return ret;
102}
103EXPORT_SYMBOL_GPL(crypto_aead_encrypt);
104
105int crypto_aead_decrypt(struct aead_request *req)
106{
107 struct crypto_aead *aead = crypto_aead_reqtfm(req);
108 struct crypto_alg *alg = aead->base.__crt_alg;
109 unsigned int cryptlen = req->cryptlen;
110 int ret;
111
112 crypto_stats_get(alg);
113 if (crypto_aead_get_flags(aead) & CRYPTO_TFM_NEED_KEY)
114 ret = -ENOKEY;
115 else if (req->cryptlen < crypto_aead_authsize(aead))
116 ret = -EINVAL;
117 else
118 ret = crypto_aead_alg(aead)->decrypt(req);
119 crypto_stats_aead_decrypt(cryptlen, alg, ret);
120 return ret;
121}
122EXPORT_SYMBOL_GPL(crypto_aead_decrypt);
123
124static void crypto_aead_exit_tfm(struct crypto_tfm *tfm)
125{
126 struct crypto_aead *aead = __crypto_aead_cast(tfm);
127 struct aead_alg *alg = crypto_aead_alg(aead);
128
129 alg->exit(aead);
130}
131
132static int crypto_aead_init_tfm(struct crypto_tfm *tfm)
133{
134 struct crypto_aead *aead = __crypto_aead_cast(tfm);
135 struct aead_alg *alg = crypto_aead_alg(aead);
136
137 crypto_aead_set_flags(aead, CRYPTO_TFM_NEED_KEY);
138
139 aead->authsize = alg->maxauthsize;
140
141 if (alg->exit)
142 aead->base.exit = crypto_aead_exit_tfm;
143
144 if (alg->init)
145 return alg->init(aead);
146
147 return 0;
148}
149
150#ifdef CONFIG_NET
151static int crypto_aead_report(struct sk_buff *skb, struct crypto_alg *alg)
152{
153 struct crypto_report_aead raead;
154 struct aead_alg *aead = container_of(alg, struct aead_alg, base);
155
156 memset(&raead, 0, sizeof(raead));
157
158 strscpy(raead.type, "aead", sizeof(raead.type));
159 strscpy(raead.geniv, "<none>", sizeof(raead.geniv));
160
161 raead.blocksize = alg->cra_blocksize;
162 raead.maxauthsize = aead->maxauthsize;
163 raead.ivsize = aead->ivsize;
164
165 return nla_put(skb, CRYPTOCFGA_REPORT_AEAD, sizeof(raead), &raead);
166}
167#else
168static int crypto_aead_report(struct sk_buff *skb, struct crypto_alg *alg)
169{
170 return -ENOSYS;
171}
172#endif
173
174static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
175 __maybe_unused;
176static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
177{
178 struct aead_alg *aead = container_of(alg, struct aead_alg, base);
179
180 seq_printf(m, "type : aead\n");
181 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
182 "yes" : "no");
183 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
184 seq_printf(m, "ivsize : %u\n", aead->ivsize);
185 seq_printf(m, "maxauthsize : %u\n", aead->maxauthsize);
186 seq_printf(m, "geniv : <none>\n");
187}
188
189static void crypto_aead_free_instance(struct crypto_instance *inst)
190{
191 struct aead_instance *aead = aead_instance(inst);
192
193 if (!aead->free) {
194 inst->tmpl->free(inst);
195 return;
196 }
197
198 aead->free(aead);
199}
200
201static const struct crypto_type crypto_aead_type = {
202 .extsize = crypto_alg_extsize,
203 .init_tfm = crypto_aead_init_tfm,
204 .free = crypto_aead_free_instance,
205#ifdef CONFIG_PROC_FS
206 .show = crypto_aead_show,
207#endif
208 .report = crypto_aead_report,
209 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
210 .maskset = CRYPTO_ALG_TYPE_MASK,
211 .type = CRYPTO_ALG_TYPE_AEAD,
212 .tfmsize = offsetof(struct crypto_aead, base),
213};
214
215static int aead_geniv_setkey(struct crypto_aead *tfm,
216 const u8 *key, unsigned int keylen)
217{
218 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
219
220 return crypto_aead_setkey(ctx->child, key, keylen);
221}
222
223static int aead_geniv_setauthsize(struct crypto_aead *tfm,
224 unsigned int authsize)
225{
226 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
227
228 return crypto_aead_setauthsize(ctx->child, authsize);
229}
230
231struct aead_instance *aead_geniv_alloc(struct crypto_template *tmpl,
232 struct rtattr **tb, u32 type, u32 mask)
233{
234 const char *name;
235 struct crypto_aead_spawn *spawn;
236 struct crypto_attr_type *algt;
237 struct aead_instance *inst;
238 struct aead_alg *alg;
239 unsigned int ivsize;
240 unsigned int maxauthsize;
241 int err;
242
243 algt = crypto_get_attr_type(tb);
244 if (IS_ERR(algt))
245 return ERR_CAST(algt);
246
247 if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
248 return ERR_PTR(-EINVAL);
249
250 name = crypto_attr_alg_name(tb[1]);
251 if (IS_ERR(name))
252 return ERR_CAST(name);
253
254 inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
255 if (!inst)
256 return ERR_PTR(-ENOMEM);
257
258 spawn = aead_instance_ctx(inst);
259
260 /* Ignore async algorithms if necessary. */
261 mask |= crypto_requires_sync(algt->type, algt->mask);
262
263 crypto_set_aead_spawn(spawn, aead_crypto_instance(inst));
264 err = crypto_grab_aead(spawn, name, type, mask);
265 if (err)
266 goto err_free_inst;
267
268 alg = crypto_spawn_aead_alg(spawn);
269
270 ivsize = crypto_aead_alg_ivsize(alg);
271 maxauthsize = crypto_aead_alg_maxauthsize(alg);
272
273 err = -EINVAL;
274 if (ivsize < sizeof(u64))
275 goto err_drop_alg;
276
277 err = -ENAMETOOLONG;
278 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME,
279 "%s(%s)", tmpl->name, alg->base.cra_name) >=
280 CRYPTO_MAX_ALG_NAME)
281 goto err_drop_alg;
282 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
283 "%s(%s)", tmpl->name, alg->base.cra_driver_name) >=
284 CRYPTO_MAX_ALG_NAME)
285 goto err_drop_alg;
286
287 inst->alg.base.cra_flags = alg->base.cra_flags & CRYPTO_ALG_ASYNC;
288 inst->alg.base.cra_priority = alg->base.cra_priority;
289 inst->alg.base.cra_blocksize = alg->base.cra_blocksize;
290 inst->alg.base.cra_alignmask = alg->base.cra_alignmask;
291 inst->alg.base.cra_ctxsize = sizeof(struct aead_geniv_ctx);
292
293 inst->alg.setkey = aead_geniv_setkey;
294 inst->alg.setauthsize = aead_geniv_setauthsize;
295
296 inst->alg.ivsize = ivsize;
297 inst->alg.maxauthsize = maxauthsize;
298
299out:
300 return inst;
301
302err_drop_alg:
303 crypto_drop_aead(spawn);
304err_free_inst:
305 kfree(inst);
306 inst = ERR_PTR(err);
307 goto out;
308}
309EXPORT_SYMBOL_GPL(aead_geniv_alloc);
310
311void aead_geniv_free(struct aead_instance *inst)
312{
313 crypto_drop_aead(aead_instance_ctx(inst));
314 kfree(inst);
315}
316EXPORT_SYMBOL_GPL(aead_geniv_free);
317
318int aead_init_geniv(struct crypto_aead *aead)
319{
320 struct aead_geniv_ctx *ctx = crypto_aead_ctx(aead);
321 struct aead_instance *inst = aead_alg_instance(aead);
322 struct crypto_aead *child;
323 int err;
324
325 spin_lock_init(&ctx->lock);
326
327 err = crypto_get_default_rng();
328 if (err)
329 goto out;
330
331 err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
332 crypto_aead_ivsize(aead));
333 crypto_put_default_rng();
334 if (err)
335 goto out;
336
337 ctx->sknull = crypto_get_default_null_skcipher();
338 err = PTR_ERR(ctx->sknull);
339 if (IS_ERR(ctx->sknull))
340 goto out;
341
342 child = crypto_spawn_aead(aead_instance_ctx(inst));
343 err = PTR_ERR(child);
344 if (IS_ERR(child))
345 goto drop_null;
346
347 ctx->child = child;
348 crypto_aead_set_reqsize(aead, crypto_aead_reqsize(child) +
349 sizeof(struct aead_request));
350
351 err = 0;
352
353out:
354 return err;
355
356drop_null:
357 crypto_put_default_null_skcipher();
358 goto out;
359}
360EXPORT_SYMBOL_GPL(aead_init_geniv);
361
362void aead_exit_geniv(struct crypto_aead *tfm)
363{
364 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
365
366 crypto_free_aead(ctx->child);
367 crypto_put_default_null_skcipher();
368}
369EXPORT_SYMBOL_GPL(aead_exit_geniv);
370
371int crypto_grab_aead(struct crypto_aead_spawn *spawn, const char *name,
372 u32 type, u32 mask)
373{
374 spawn->base.frontend = &crypto_aead_type;
375 return crypto_grab_spawn(&spawn->base, name, type, mask);
376}
377EXPORT_SYMBOL_GPL(crypto_grab_aead);
378
379struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask)
380{
381 return crypto_alloc_tfm(alg_name, &crypto_aead_type, type, mask);
382}
383EXPORT_SYMBOL_GPL(crypto_alloc_aead);
384
385static int aead_prepare_alg(struct aead_alg *alg)
386{
387 struct crypto_alg *base = &alg->base;
388
389 if (max3(alg->maxauthsize, alg->ivsize, alg->chunksize) >
390 PAGE_SIZE / 8)
391 return -EINVAL;
392
393 if (!alg->chunksize)
394 alg->chunksize = base->cra_blocksize;
395
396 base->cra_type = &crypto_aead_type;
397 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
398 base->cra_flags |= CRYPTO_ALG_TYPE_AEAD;
399
400 return 0;
401}
402
403int crypto_register_aead(struct aead_alg *alg)
404{
405 struct crypto_alg *base = &alg->base;
406 int err;
407
408 err = aead_prepare_alg(alg);
409 if (err)
410 return err;
411
412 return crypto_register_alg(base);
413}
414EXPORT_SYMBOL_GPL(crypto_register_aead);
415
416void crypto_unregister_aead(struct aead_alg *alg)
417{
418 crypto_unregister_alg(&alg->base);
419}
420EXPORT_SYMBOL_GPL(crypto_unregister_aead);
421
422int crypto_register_aeads(struct aead_alg *algs, int count)
423{
424 int i, ret;
425
426 for (i = 0; i < count; i++) {
427 ret = crypto_register_aead(&algs[i]);
428 if (ret)
429 goto err;
430 }
431
432 return 0;
433
434err:
435 for (--i; i >= 0; --i)
436 crypto_unregister_aead(&algs[i]);
437
438 return ret;
439}
440EXPORT_SYMBOL_GPL(crypto_register_aeads);
441
442void crypto_unregister_aeads(struct aead_alg *algs, int count)
443{
444 int i;
445
446 for (i = count - 1; i >= 0; --i)
447 crypto_unregister_aead(&algs[i]);
448}
449EXPORT_SYMBOL_GPL(crypto_unregister_aeads);
450
451int aead_register_instance(struct crypto_template *tmpl,
452 struct aead_instance *inst)
453{
454 int err;
455
456 err = aead_prepare_alg(&inst->alg);
457 if (err)
458 return err;
459
460 return crypto_register_instance(tmpl, aead_crypto_instance(inst));
461}
462EXPORT_SYMBOL_GPL(aead_register_instance);
463
464MODULE_LICENSE("GPL");
465MODULE_DESCRIPTION("Authenticated Encryption with Associated Data (AEAD)");