2 * AEAD: Authenticated Encryption with Associated Data
4 * This file provides API support for AEAD algorithms.
6 * Copyright (c) 2007-2015 Herbert Xu <herbert@gondor.apana.org.au>
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)
15 #include <crypto/internal/geniv.h>
16 #include <crypto/internal/rng.h>
17 #include <crypto/null.h>
18 #include <crypto/scatterwalk.h>
19 #include <linux/err.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/rtnetlink.h>
24 #include <linux/slab.h>
25 #include <linux/seq_file.h>
26 #include <linux/cryptouser.h>
27 #include <linux/compiler.h>
28 #include <net/netlink.h>
32 static int setkey_unaligned(struct crypto_aead *tfm, const u8 *key,
35 unsigned long alignmask = crypto_aead_alignmask(tfm);
37 u8 *buffer, *alignbuffer;
40 absize = keylen + alignmask;
41 buffer = kmalloc(absize, GFP_ATOMIC);
45 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
46 memcpy(alignbuffer, key, keylen);
47 ret = crypto_aead_alg(tfm)->setkey(tfm, alignbuffer, keylen);
48 memset(alignbuffer, 0, keylen);
53 int crypto_aead_setkey(struct crypto_aead *tfm,
54 const u8 *key, unsigned int keylen)
56 unsigned long alignmask = crypto_aead_alignmask(tfm);
59 if ((unsigned long)key & alignmask)
60 err = setkey_unaligned(tfm, key, keylen);
62 err = crypto_aead_alg(tfm)->setkey(tfm, key, keylen);
65 crypto_aead_set_flags(tfm, CRYPTO_TFM_NEED_KEY);
69 crypto_aead_clear_flags(tfm, CRYPTO_TFM_NEED_KEY);
72 EXPORT_SYMBOL_GPL(crypto_aead_setkey);
74 int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize)
78 if (authsize > crypto_aead_maxauthsize(tfm))
81 if (crypto_aead_alg(tfm)->setauthsize) {
82 err = crypto_aead_alg(tfm)->setauthsize(tfm, authsize);
87 tfm->authsize = authsize;
90 EXPORT_SYMBOL_GPL(crypto_aead_setauthsize);
92 static void crypto_aead_exit_tfm(struct crypto_tfm *tfm)
94 struct crypto_aead *aead = __crypto_aead_cast(tfm);
95 struct aead_alg *alg = crypto_aead_alg(aead);
100 static int crypto_aead_init_tfm(struct crypto_tfm *tfm)
102 struct crypto_aead *aead = __crypto_aead_cast(tfm);
103 struct aead_alg *alg = crypto_aead_alg(aead);
105 crypto_aead_set_flags(aead, CRYPTO_TFM_NEED_KEY);
107 aead->authsize = alg->maxauthsize;
110 aead->base.exit = crypto_aead_exit_tfm;
113 return alg->init(aead);
119 static int crypto_aead_report(struct sk_buff *skb, struct crypto_alg *alg)
121 struct crypto_report_aead raead;
122 struct aead_alg *aead = container_of(alg, struct aead_alg, base);
124 strncpy(raead.type, "aead", sizeof(raead.type));
125 strncpy(raead.geniv, "<none>", sizeof(raead.geniv));
127 raead.blocksize = alg->cra_blocksize;
128 raead.maxauthsize = aead->maxauthsize;
129 raead.ivsize = aead->ivsize;
131 if (nla_put(skb, CRYPTOCFGA_REPORT_AEAD,
132 sizeof(struct crypto_report_aead), &raead))
133 goto nla_put_failure;
140 static int crypto_aead_report(struct sk_buff *skb, struct crypto_alg *alg)
146 static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
148 static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
150 struct aead_alg *aead = container_of(alg, struct aead_alg, base);
152 seq_printf(m, "type : aead\n");
153 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
155 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
156 seq_printf(m, "ivsize : %u\n", aead->ivsize);
157 seq_printf(m, "maxauthsize : %u\n", aead->maxauthsize);
158 seq_printf(m, "geniv : <none>\n");
161 static void crypto_aead_free_instance(struct crypto_instance *inst)
163 struct aead_instance *aead = aead_instance(inst);
166 inst->tmpl->free(inst);
173 static const struct crypto_type crypto_aead_type = {
174 .extsize = crypto_alg_extsize,
175 .init_tfm = crypto_aead_init_tfm,
176 .free = crypto_aead_free_instance,
177 #ifdef CONFIG_PROC_FS
178 .show = crypto_aead_show,
180 .report = crypto_aead_report,
181 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
182 .maskset = CRYPTO_ALG_TYPE_MASK,
183 .type = CRYPTO_ALG_TYPE_AEAD,
184 .tfmsize = offsetof(struct crypto_aead, base),
187 static int aead_geniv_setkey(struct crypto_aead *tfm,
188 const u8 *key, unsigned int keylen)
190 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
192 return crypto_aead_setkey(ctx->child, key, keylen);
195 static int aead_geniv_setauthsize(struct crypto_aead *tfm,
196 unsigned int authsize)
198 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
200 return crypto_aead_setauthsize(ctx->child, authsize);
203 struct aead_instance *aead_geniv_alloc(struct crypto_template *tmpl,
204 struct rtattr **tb, u32 type, u32 mask)
207 struct crypto_aead_spawn *spawn;
208 struct crypto_attr_type *algt;
209 struct aead_instance *inst;
210 struct aead_alg *alg;
212 unsigned int maxauthsize;
215 algt = crypto_get_attr_type(tb);
217 return ERR_CAST(algt);
219 if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
220 return ERR_PTR(-EINVAL);
222 name = crypto_attr_alg_name(tb[1]);
224 return ERR_CAST(name);
226 inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
228 return ERR_PTR(-ENOMEM);
230 spawn = aead_instance_ctx(inst);
232 /* Ignore async algorithms if necessary. */
233 mask |= crypto_requires_sync(algt->type, algt->mask);
235 crypto_set_aead_spawn(spawn, aead_crypto_instance(inst));
236 err = crypto_grab_aead(spawn, name, type, mask);
240 alg = crypto_spawn_aead_alg(spawn);
242 ivsize = crypto_aead_alg_ivsize(alg);
243 maxauthsize = crypto_aead_alg_maxauthsize(alg);
246 if (ivsize < sizeof(u64))
250 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME,
251 "%s(%s)", tmpl->name, alg->base.cra_name) >=
254 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
255 "%s(%s)", tmpl->name, alg->base.cra_driver_name) >=
259 inst->alg.base.cra_flags = alg->base.cra_flags & CRYPTO_ALG_ASYNC;
260 inst->alg.base.cra_priority = alg->base.cra_priority;
261 inst->alg.base.cra_blocksize = alg->base.cra_blocksize;
262 inst->alg.base.cra_alignmask = alg->base.cra_alignmask;
263 inst->alg.base.cra_ctxsize = sizeof(struct aead_geniv_ctx);
265 inst->alg.setkey = aead_geniv_setkey;
266 inst->alg.setauthsize = aead_geniv_setauthsize;
268 inst->alg.ivsize = ivsize;
269 inst->alg.maxauthsize = maxauthsize;
275 crypto_drop_aead(spawn);
281 EXPORT_SYMBOL_GPL(aead_geniv_alloc);
283 void aead_geniv_free(struct aead_instance *inst)
285 crypto_drop_aead(aead_instance_ctx(inst));
288 EXPORT_SYMBOL_GPL(aead_geniv_free);
290 int aead_init_geniv(struct crypto_aead *aead)
292 struct aead_geniv_ctx *ctx = crypto_aead_ctx(aead);
293 struct aead_instance *inst = aead_alg_instance(aead);
294 struct crypto_aead *child;
297 spin_lock_init(&ctx->lock);
299 err = crypto_get_default_rng();
303 err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
304 crypto_aead_ivsize(aead));
305 crypto_put_default_rng();
309 ctx->sknull = crypto_get_default_null_skcipher();
310 err = PTR_ERR(ctx->sknull);
311 if (IS_ERR(ctx->sknull))
314 child = crypto_spawn_aead(aead_instance_ctx(inst));
315 err = PTR_ERR(child);
320 crypto_aead_set_reqsize(aead, crypto_aead_reqsize(child) +
321 sizeof(struct aead_request));
329 crypto_put_default_null_skcipher();
332 EXPORT_SYMBOL_GPL(aead_init_geniv);
334 void aead_exit_geniv(struct crypto_aead *tfm)
336 struct aead_geniv_ctx *ctx = crypto_aead_ctx(tfm);
338 crypto_free_aead(ctx->child);
339 crypto_put_default_null_skcipher();
341 EXPORT_SYMBOL_GPL(aead_exit_geniv);
343 int crypto_grab_aead(struct crypto_aead_spawn *spawn, const char *name,
346 spawn->base.frontend = &crypto_aead_type;
347 return crypto_grab_spawn(&spawn->base, name, type, mask);
349 EXPORT_SYMBOL_GPL(crypto_grab_aead);
351 struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask)
353 return crypto_alloc_tfm(alg_name, &crypto_aead_type, type, mask);
355 EXPORT_SYMBOL_GPL(crypto_alloc_aead);
357 static int aead_prepare_alg(struct aead_alg *alg)
359 struct crypto_alg *base = &alg->base;
361 if (max3(alg->maxauthsize, alg->ivsize, alg->chunksize) >
366 alg->chunksize = base->cra_blocksize;
368 base->cra_type = &crypto_aead_type;
369 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
370 base->cra_flags |= CRYPTO_ALG_TYPE_AEAD;
375 int crypto_register_aead(struct aead_alg *alg)
377 struct crypto_alg *base = &alg->base;
380 err = aead_prepare_alg(alg);
384 return crypto_register_alg(base);
386 EXPORT_SYMBOL_GPL(crypto_register_aead);
388 void crypto_unregister_aead(struct aead_alg *alg)
390 crypto_unregister_alg(&alg->base);
392 EXPORT_SYMBOL_GPL(crypto_unregister_aead);
394 int crypto_register_aeads(struct aead_alg *algs, int count)
398 for (i = 0; i < count; i++) {
399 ret = crypto_register_aead(&algs[i]);
407 for (--i; i >= 0; --i)
408 crypto_unregister_aead(&algs[i]);
412 EXPORT_SYMBOL_GPL(crypto_register_aeads);
414 void crypto_unregister_aeads(struct aead_alg *algs, int count)
418 for (i = count - 1; i >= 0; --i)
419 crypto_unregister_aead(&algs[i]);
421 EXPORT_SYMBOL_GPL(crypto_unregister_aeads);
423 int aead_register_instance(struct crypto_template *tmpl,
424 struct aead_instance *inst)
428 err = aead_prepare_alg(&inst->alg);
432 return crypto_register_instance(tmpl, aead_crypto_instance(inst));
434 EXPORT_SYMBOL_GPL(aead_register_instance);
436 MODULE_LICENSE("GPL");
437 MODULE_DESCRIPTION("Authenticated Encryption with Associated Data (AEAD)");