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 memset(&raead
, 0, sizeof(raead
));
126 strscpy(raead
.type
, "aead", sizeof(raead
.type
));
127 strscpy(raead
.geniv
, "<none>", sizeof(raead
.geniv
));
129 raead
.blocksize
= alg
->cra_blocksize
;
130 raead
.maxauthsize
= aead
->maxauthsize
;
131 raead
.ivsize
= aead
->ivsize
;
133 return nla_put(skb
, CRYPTOCFGA_REPORT_AEAD
, sizeof(raead
), &raead
);
136 static int crypto_aead_report(struct sk_buff
*skb
, struct crypto_alg
*alg
)
142 static void crypto_aead_show(struct seq_file
*m
, struct crypto_alg
*alg
)
144 static void crypto_aead_show(struct seq_file
*m
, struct crypto_alg
*alg
)
146 struct aead_alg
*aead
= container_of(alg
, struct aead_alg
, base
);
148 seq_printf(m
, "type : aead\n");
149 seq_printf(m
, "async : %s\n", alg
->cra_flags
& CRYPTO_ALG_ASYNC
?
151 seq_printf(m
, "blocksize : %u\n", alg
->cra_blocksize
);
152 seq_printf(m
, "ivsize : %u\n", aead
->ivsize
);
153 seq_printf(m
, "maxauthsize : %u\n", aead
->maxauthsize
);
154 seq_printf(m
, "geniv : <none>\n");
157 static void crypto_aead_free_instance(struct crypto_instance
*inst
)
159 struct aead_instance
*aead
= aead_instance(inst
);
162 inst
->tmpl
->free(inst
);
169 static const struct crypto_type crypto_aead_type
= {
170 .extsize
= crypto_alg_extsize
,
171 .init_tfm
= crypto_aead_init_tfm
,
172 .free
= crypto_aead_free_instance
,
173 #ifdef CONFIG_PROC_FS
174 .show
= crypto_aead_show
,
176 .report
= crypto_aead_report
,
177 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
178 .maskset
= CRYPTO_ALG_TYPE_MASK
,
179 .type
= CRYPTO_ALG_TYPE_AEAD
,
180 .tfmsize
= offsetof(struct crypto_aead
, base
),
183 static int aead_geniv_setkey(struct crypto_aead
*tfm
,
184 const u8
*key
, unsigned int keylen
)
186 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
188 return crypto_aead_setkey(ctx
->child
, key
, keylen
);
191 static int aead_geniv_setauthsize(struct crypto_aead
*tfm
,
192 unsigned int authsize
)
194 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
196 return crypto_aead_setauthsize(ctx
->child
, authsize
);
199 struct aead_instance
*aead_geniv_alloc(struct crypto_template
*tmpl
,
200 struct rtattr
**tb
, u32 type
, u32 mask
)
203 struct crypto_aead_spawn
*spawn
;
204 struct crypto_attr_type
*algt
;
205 struct aead_instance
*inst
;
206 struct aead_alg
*alg
;
208 unsigned int maxauthsize
;
211 algt
= crypto_get_attr_type(tb
);
213 return ERR_CAST(algt
);
215 if ((algt
->type
^ CRYPTO_ALG_TYPE_AEAD
) & algt
->mask
)
216 return ERR_PTR(-EINVAL
);
218 name
= crypto_attr_alg_name(tb
[1]);
220 return ERR_CAST(name
);
222 inst
= kzalloc(sizeof(*inst
) + sizeof(*spawn
), GFP_KERNEL
);
224 return ERR_PTR(-ENOMEM
);
226 spawn
= aead_instance_ctx(inst
);
228 /* Ignore async algorithms if necessary. */
229 mask
|= crypto_requires_sync(algt
->type
, algt
->mask
);
231 crypto_set_aead_spawn(spawn
, aead_crypto_instance(inst
));
232 err
= crypto_grab_aead(spawn
, name
, type
, mask
);
236 alg
= crypto_spawn_aead_alg(spawn
);
238 ivsize
= crypto_aead_alg_ivsize(alg
);
239 maxauthsize
= crypto_aead_alg_maxauthsize(alg
);
242 if (ivsize
< sizeof(u64
))
246 if (snprintf(inst
->alg
.base
.cra_name
, CRYPTO_MAX_ALG_NAME
,
247 "%s(%s)", tmpl
->name
, alg
->base
.cra_name
) >=
250 if (snprintf(inst
->alg
.base
.cra_driver_name
, CRYPTO_MAX_ALG_NAME
,
251 "%s(%s)", tmpl
->name
, alg
->base
.cra_driver_name
) >=
255 inst
->alg
.base
.cra_flags
= alg
->base
.cra_flags
& CRYPTO_ALG_ASYNC
;
256 inst
->alg
.base
.cra_priority
= alg
->base
.cra_priority
;
257 inst
->alg
.base
.cra_blocksize
= alg
->base
.cra_blocksize
;
258 inst
->alg
.base
.cra_alignmask
= alg
->base
.cra_alignmask
;
259 inst
->alg
.base
.cra_ctxsize
= sizeof(struct aead_geniv_ctx
);
261 inst
->alg
.setkey
= aead_geniv_setkey
;
262 inst
->alg
.setauthsize
= aead_geniv_setauthsize
;
264 inst
->alg
.ivsize
= ivsize
;
265 inst
->alg
.maxauthsize
= maxauthsize
;
271 crypto_drop_aead(spawn
);
277 EXPORT_SYMBOL_GPL(aead_geniv_alloc
);
279 void aead_geniv_free(struct aead_instance
*inst
)
281 crypto_drop_aead(aead_instance_ctx(inst
));
284 EXPORT_SYMBOL_GPL(aead_geniv_free
);
286 int aead_init_geniv(struct crypto_aead
*aead
)
288 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(aead
);
289 struct aead_instance
*inst
= aead_alg_instance(aead
);
290 struct crypto_aead
*child
;
293 spin_lock_init(&ctx
->lock
);
295 err
= crypto_get_default_rng();
299 err
= crypto_rng_get_bytes(crypto_default_rng
, ctx
->salt
,
300 crypto_aead_ivsize(aead
));
301 crypto_put_default_rng();
305 ctx
->sknull
= crypto_get_default_null_skcipher();
306 err
= PTR_ERR(ctx
->sknull
);
307 if (IS_ERR(ctx
->sknull
))
310 child
= crypto_spawn_aead(aead_instance_ctx(inst
));
311 err
= PTR_ERR(child
);
316 crypto_aead_set_reqsize(aead
, crypto_aead_reqsize(child
) +
317 sizeof(struct aead_request
));
325 crypto_put_default_null_skcipher();
328 EXPORT_SYMBOL_GPL(aead_init_geniv
);
330 void aead_exit_geniv(struct crypto_aead
*tfm
)
332 struct aead_geniv_ctx
*ctx
= crypto_aead_ctx(tfm
);
334 crypto_free_aead(ctx
->child
);
335 crypto_put_default_null_skcipher();
337 EXPORT_SYMBOL_GPL(aead_exit_geniv
);
339 int crypto_grab_aead(struct crypto_aead_spawn
*spawn
, const char *name
,
342 spawn
->base
.frontend
= &crypto_aead_type
;
343 return crypto_grab_spawn(&spawn
->base
, name
, type
, mask
);
345 EXPORT_SYMBOL_GPL(crypto_grab_aead
);
347 struct crypto_aead
*crypto_alloc_aead(const char *alg_name
, u32 type
, u32 mask
)
349 return crypto_alloc_tfm(alg_name
, &crypto_aead_type
, type
, mask
);
351 EXPORT_SYMBOL_GPL(crypto_alloc_aead
);
353 static int aead_prepare_alg(struct aead_alg
*alg
)
355 struct crypto_alg
*base
= &alg
->base
;
357 if (max3(alg
->maxauthsize
, alg
->ivsize
, alg
->chunksize
) >
362 alg
->chunksize
= base
->cra_blocksize
;
364 base
->cra_type
= &crypto_aead_type
;
365 base
->cra_flags
&= ~CRYPTO_ALG_TYPE_MASK
;
366 base
->cra_flags
|= CRYPTO_ALG_TYPE_AEAD
;
371 int crypto_register_aead(struct aead_alg
*alg
)
373 struct crypto_alg
*base
= &alg
->base
;
376 err
= aead_prepare_alg(alg
);
380 return crypto_register_alg(base
);
382 EXPORT_SYMBOL_GPL(crypto_register_aead
);
384 void crypto_unregister_aead(struct aead_alg
*alg
)
386 crypto_unregister_alg(&alg
->base
);
388 EXPORT_SYMBOL_GPL(crypto_unregister_aead
);
390 int crypto_register_aeads(struct aead_alg
*algs
, int count
)
394 for (i
= 0; i
< count
; i
++) {
395 ret
= crypto_register_aead(&algs
[i
]);
403 for (--i
; i
>= 0; --i
)
404 crypto_unregister_aead(&algs
[i
]);
408 EXPORT_SYMBOL_GPL(crypto_register_aeads
);
410 void crypto_unregister_aeads(struct aead_alg
*algs
, int count
)
414 for (i
= count
- 1; i
>= 0; --i
)
415 crypto_unregister_aead(&algs
[i
]);
417 EXPORT_SYMBOL_GPL(crypto_unregister_aeads
);
419 int aead_register_instance(struct crypto_template
*tmpl
,
420 struct aead_instance
*inst
)
424 err
= aead_prepare_alg(&inst
->alg
);
428 return crypto_register_instance(tmpl
, aead_crypto_instance(inst
));
430 EXPORT_SYMBOL_GPL(aead_register_instance
);
432 MODULE_LICENSE("GPL");
433 MODULE_DESCRIPTION("Authenticated Encryption with Associated Data (AEAD)");