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
);
58 if ((unsigned long)key
& alignmask
)
59 return setkey_unaligned(tfm
, key
, keylen
);
61 return crypto_aead_alg(tfm
)->setkey(tfm
, key
, keylen
);
63 EXPORT_SYMBOL_GPL(crypto_aead_setkey
);
65 int crypto_aead_setauthsize(struct crypto_aead
*tfm
, unsigned int authsize
)
69 if (authsize
> crypto_aead_maxauthsize(tfm
))
72 if (crypto_aead_alg(tfm
)->setauthsize
) {
73 err
= crypto_aead_alg(tfm
)->setauthsize(tfm
, authsize
);
78 tfm
->authsize
= authsize
;
81 EXPORT_SYMBOL_GPL(crypto_aead_setauthsize
);
83 static void crypto_aead_exit_tfm(struct crypto_tfm
*tfm
)
85 struct crypto_aead
*aead
= __crypto_aead_cast(tfm
);
86 struct aead_alg
*alg
= crypto_aead_alg(aead
);
91 static int crypto_aead_init_tfm(struct crypto_tfm
*tfm
)
93 struct crypto_aead
*aead
= __crypto_aead_cast(tfm
);
94 struct aead_alg
*alg
= crypto_aead_alg(aead
);
96 aead
->authsize
= alg
->maxauthsize
;
99 aead
->base
.exit
= crypto_aead_exit_tfm
;
102 return alg
->init(aead
);
108 static int crypto_aead_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
110 struct crypto_report_aead raead
;
111 struct aead_alg
*aead
= container_of(alg
, struct aead_alg
, base
);
113 strncpy(raead
.type
, "aead", sizeof(raead
.type
));
114 strncpy(raead
.geniv
, "<none>", sizeof(raead
.geniv
));
116 raead
.blocksize
= alg
->cra_blocksize
;
117 raead
.maxauthsize
= aead
->maxauthsize
;
118 raead
.ivsize
= aead
->ivsize
;
120 if (nla_put(skb
, CRYPTOCFGA_REPORT_AEAD
,
121 sizeof(struct crypto_report_aead
), &raead
))
122 goto nla_put_failure
;
129 static int crypto_aead_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
135 static void crypto_aead_show(struct seq_file
*m
, struct crypto_alg
*alg
)
137 static void crypto_aead_show(struct seq_file
*m
, struct crypto_alg
*alg
)
139 struct aead_alg
*aead
= container_of(alg
, struct aead_alg
, base
);
141 seq_printf(m
, "type : aead\n");
142 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
144 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
145 seq_printf(m
, "ivsize : %u\n", aead
->ivsize
);
146 seq_printf(m
, "maxauthsize : %u\n", aead
->maxauthsize
);
147 seq_printf(m
, "geniv : <none>\n");
150 static void crypto_aead_free_instance(struct crypto_instance
*inst
)
152 struct aead_instance
*aead
= aead_instance(inst
);
155 inst
->tmpl
->free(inst
);
162 static const struct crypto_type crypto_aead_type
= {
163 .extsize
= crypto_alg_extsize
,
164 .init_tfm
= crypto_aead_init_tfm
,
165 .free
= crypto_aead_free_instance
,
166 #ifdef CONFIG_PROC_FS
167 .show
= crypto_aead_show
,
169 .report
= crypto_aead_report
,
170 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
171 .maskset
= CRYPTO_ALG_TYPE_MASK
,
172 .type
= CRYPTO_ALG_TYPE_AEAD
,
173 .tfmsize
= offsetof(struct crypto_aead
, base
),
176 static int aead_geniv_setkey(struct crypto_aead
*tfm
,
177 const u8
*key
, unsigned int keylen
)
179 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
181 return crypto_aead_setkey(ctx
->child
, key
, keylen
);
184 static int aead_geniv_setauthsize(struct crypto_aead
*tfm
,
185 unsigned int authsize
)
187 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
189 return crypto_aead_setauthsize(ctx
->child
, authsize
);
192 struct aead_instance
*aead_geniv_alloc(struct crypto_template
*tmpl
,
193 struct rtattr
**tb
, u32 type
, u32 mask
)
196 struct crypto_aead_spawn
*spawn
;
197 struct crypto_attr_type
*algt
;
198 struct aead_instance
*inst
;
199 struct aead_alg
*alg
;
201 unsigned int maxauthsize
;
204 algt
= crypto_get_attr_type(tb
);
206 return ERR_CAST(algt
);
208 if ((algt
->type
^ CRYPTO_ALG_TYPE_AEAD
) & algt
->mask
)
209 return ERR_PTR(-EINVAL
);
211 name
= crypto_attr_alg_name(tb
[1]);
213 return ERR_CAST(name
);
215 inst
= kzalloc(sizeof(*inst
) + sizeof(*spawn
), GFP_KERNEL
);
217 return ERR_PTR(-ENOMEM
);
219 spawn
= aead_instance_ctx(inst
);
221 /* Ignore async algorithms if necessary. */
222 mask
|= crypto_requires_sync(algt
->type
, algt
->mask
);
224 crypto_set_aead_spawn(spawn
, aead_crypto_instance(inst
));
225 err
= crypto_grab_aead(spawn
, name
, type
, mask
);
229 alg
= crypto_spawn_aead_alg(spawn
);
231 ivsize
= crypto_aead_alg_ivsize(alg
);
232 maxauthsize
= crypto_aead_alg_maxauthsize(alg
);
235 if (ivsize
< sizeof(u64
))
239 if (snprintf(inst
->alg
.base
.cra_name
, CRYPTO_MAX_ALG_NAME
,
240 "%s(%s)", tmpl
->name
, alg
->base
.cra_name
) >=
243 if (snprintf(inst
->alg
.base
.cra_driver_name
, CRYPTO_MAX_ALG_NAME
,
244 "%s(%s)", tmpl
->name
, alg
->base
.cra_driver_name
) >=
248 inst
->alg
.base
.cra_flags
= alg
->base
.cra_flags
& CRYPTO_ALG_ASYNC
;
249 inst
->alg
.base
.cra_priority
= alg
->base
.cra_priority
;
250 inst
->alg
.base
.cra_blocksize
= alg
->base
.cra_blocksize
;
251 inst
->alg
.base
.cra_alignmask
= alg
->base
.cra_alignmask
;
252 inst
->alg
.base
.cra_ctxsize
= sizeof(struct aead_geniv_ctx
);
254 inst
->alg
.setkey
= aead_geniv_setkey
;
255 inst
->alg
.setauthsize
= aead_geniv_setauthsize
;
257 inst
->alg
.ivsize
= ivsize
;
258 inst
->alg
.maxauthsize
= maxauthsize
;
264 crypto_drop_aead(spawn
);
270 EXPORT_SYMBOL_GPL(aead_geniv_alloc
);
272 void aead_geniv_free(struct aead_instance
*inst
)
274 crypto_drop_aead(aead_instance_ctx(inst
));
277 EXPORT_SYMBOL_GPL(aead_geniv_free
);
279 int aead_init_geniv(struct crypto_aead
*aead
)
281 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(aead
);
282 struct aead_instance
*inst
= aead_alg_instance(aead
);
283 struct crypto_aead
*child
;
286 spin_lock_init(&ctx
->lock
);
288 err
= crypto_get_default_rng();
292 err
= crypto_rng_get_bytes(crypto_default_rng
, ctx
->salt
,
293 crypto_aead_ivsize(aead
));
294 crypto_put_default_rng();
298 ctx
->sknull
= crypto_get_default_null_skcipher2();
299 err
= PTR_ERR(ctx
->sknull
);
300 if (IS_ERR(ctx
->sknull
))
303 child
= crypto_spawn_aead(aead_instance_ctx(inst
));
304 err
= PTR_ERR(child
);
309 crypto_aead_set_reqsize(aead
, crypto_aead_reqsize(child
) +
310 sizeof(struct aead_request
));
318 crypto_put_default_null_skcipher2();
321 EXPORT_SYMBOL_GPL(aead_init_geniv
);
323 void aead_exit_geniv(struct crypto_aead
*tfm
)
325 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
327 crypto_free_aead(ctx
->child
);
328 crypto_put_default_null_skcipher2();
330 EXPORT_SYMBOL_GPL(aead_exit_geniv
);
332 int crypto_grab_aead(struct crypto_aead_spawn
*spawn
, const char *name
,
335 spawn
->base
.frontend
= &crypto_aead_type
;
336 return crypto_grab_spawn(&spawn
->base
, name
, type
, mask
);
338 EXPORT_SYMBOL_GPL(crypto_grab_aead
);
340 struct crypto_aead
*crypto_alloc_aead(const char *alg_name
, u32 type
, u32 mask
)
342 return crypto_alloc_tfm(alg_name
, &crypto_aead_type
, type
, mask
);
344 EXPORT_SYMBOL_GPL(crypto_alloc_aead
);
346 static int aead_prepare_alg(struct aead_alg
*alg
)
348 struct crypto_alg
*base
= &alg
->base
;
350 if (max3(alg
->maxauthsize
, alg
->ivsize
, alg
->chunksize
) >
355 alg
->chunksize
= base
->cra_blocksize
;
357 base
->cra_type
= &crypto_aead_type
;
358 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
359 base
->cra_flags
|= CRYPTO_ALG_TYPE_AEAD
;
364 int crypto_register_aead(struct aead_alg
*alg
)
366 struct crypto_alg
*base
= &alg
->base
;
369 err
= aead_prepare_alg(alg
);
373 return crypto_register_alg(base
);
375 EXPORT_SYMBOL_GPL(crypto_register_aead
);
377 void crypto_unregister_aead(struct aead_alg
*alg
)
379 crypto_unregister_alg(&alg
->base
);
381 EXPORT_SYMBOL_GPL(crypto_unregister_aead
);
383 int crypto_register_aeads(struct aead_alg
*algs
, int count
)
387 for (i
= 0; i
< count
; i
++) {
388 ret
= crypto_register_aead(&algs
[i
]);
396 for (--i
; i
>= 0; --i
)
397 crypto_unregister_aead(&algs
[i
]);
401 EXPORT_SYMBOL_GPL(crypto_register_aeads
);
403 void crypto_unregister_aeads(struct aead_alg
*algs
, int count
)
407 for (i
= count
- 1; i
>= 0; --i
)
408 crypto_unregister_aead(&algs
[i
]);
410 EXPORT_SYMBOL_GPL(crypto_unregister_aeads
);
412 int aead_register_instance(struct crypto_template
*tmpl
,
413 struct aead_instance
*inst
)
417 err
= aead_prepare_alg(&inst
->alg
);
421 return crypto_register_instance(tmpl
, aead_crypto_instance(inst
));
423 EXPORT_SYMBOL_GPL(aead_register_instance
);
425 MODULE_LICENSE("GPL");
426 MODULE_DESCRIPTION("Authenticated Encryption with Associated Data (AEAD)");