1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * authencesn.c - AEAD wrapper for IPsec with extended sequence numbers,
4 * derived from authenc.c
6 * Copyright (C) 2010 secunet Security Networks AG
7 * Copyright (C) 2010 Steffen Klassert <steffen.klassert@secunet.com>
8 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
11 #include <crypto/internal/aead.h>
12 #include <crypto/internal/hash.h>
13 #include <crypto/internal/skcipher.h>
14 #include <crypto/authenc.h>
15 #include <crypto/null.h>
16 #include <crypto/scatterwalk.h>
17 #include <linux/err.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/slab.h>
23 #include <linux/spinlock.h>
25 struct authenc_esn_instance_ctx {
26 struct crypto_ahash_spawn auth;
27 struct crypto_skcipher_spawn enc;
30 struct crypto_authenc_esn_ctx {
32 struct crypto_ahash *auth;
33 struct crypto_skcipher *enc;
34 struct crypto_sync_skcipher *null;
37 struct authenc_esn_request_ctx {
38 struct scatterlist src[2];
39 struct scatterlist dst[2];
43 static void authenc_esn_request_complete(struct aead_request *req, int err)
45 if (err != -EINPROGRESS)
46 aead_request_complete(req, err);
49 static int crypto_authenc_esn_setauthsize(struct crypto_aead *authenc_esn,
50 unsigned int authsize)
52 if (authsize > 0 && authsize < 4)
58 static int crypto_authenc_esn_setkey(struct crypto_aead *authenc_esn, const u8 *key,
61 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
62 struct crypto_ahash *auth = ctx->auth;
63 struct crypto_skcipher *enc = ctx->enc;
64 struct crypto_authenc_keys keys;
67 if (crypto_authenc_extractkeys(&keys, key, keylen) != 0)
70 crypto_ahash_clear_flags(auth, CRYPTO_TFM_REQ_MASK);
71 crypto_ahash_set_flags(auth, crypto_aead_get_flags(authenc_esn) &
73 err = crypto_ahash_setkey(auth, keys.authkey, keys.authkeylen);
74 crypto_aead_set_flags(authenc_esn, crypto_ahash_get_flags(auth) &
80 crypto_skcipher_clear_flags(enc, CRYPTO_TFM_REQ_MASK);
81 crypto_skcipher_set_flags(enc, crypto_aead_get_flags(authenc_esn) &
83 err = crypto_skcipher_setkey(enc, keys.enckey, keys.enckeylen);
84 crypto_aead_set_flags(authenc_esn, crypto_skcipher_get_flags(enc) &
88 memzero_explicit(&keys, sizeof(keys));
92 crypto_aead_set_flags(authenc_esn, CRYPTO_TFM_RES_BAD_KEY_LEN);
96 static int crypto_authenc_esn_genicv_tail(struct aead_request *req,
99 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
100 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
101 struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req);
102 struct crypto_ahash *auth = ctx->auth;
103 u8 *hash = PTR_ALIGN((u8 *)areq_ctx->tail,
104 crypto_ahash_alignmask(auth) + 1);
105 unsigned int authsize = crypto_aead_authsize(authenc_esn);
106 unsigned int assoclen = req->assoclen;
107 unsigned int cryptlen = req->cryptlen;
108 struct scatterlist *dst = req->dst;
111 /* Move high-order bits of sequence number back. */
112 scatterwalk_map_and_copy(tmp, dst, 4, 4, 0);
113 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0);
114 scatterwalk_map_and_copy(tmp, dst, 0, 8, 1);
116 scatterwalk_map_and_copy(hash, dst, assoclen + cryptlen, authsize, 1);
120 static void authenc_esn_geniv_ahash_done(struct crypto_async_request *areq,
123 struct aead_request *req = areq->data;
125 err = err ?: crypto_authenc_esn_genicv_tail(req, 0);
126 aead_request_complete(req, err);
129 static int crypto_authenc_esn_genicv(struct aead_request *req,
132 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
133 struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req);
134 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
135 struct crypto_ahash *auth = ctx->auth;
136 u8 *hash = PTR_ALIGN((u8 *)areq_ctx->tail,
137 crypto_ahash_alignmask(auth) + 1);
138 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff);
139 unsigned int authsize = crypto_aead_authsize(authenc_esn);
140 unsigned int assoclen = req->assoclen;
141 unsigned int cryptlen = req->cryptlen;
142 struct scatterlist *dst = req->dst;
148 /* Move high-order bits of sequence number to the end. */
149 scatterwalk_map_and_copy(tmp, dst, 0, 8, 0);
150 scatterwalk_map_and_copy(tmp, dst, 4, 4, 1);
151 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1);
153 sg_init_table(areq_ctx->dst, 2);
154 dst = scatterwalk_ffwd(areq_ctx->dst, dst, 4);
156 ahash_request_set_tfm(ahreq, auth);
157 ahash_request_set_crypt(ahreq, dst, hash, assoclen + cryptlen);
158 ahash_request_set_callback(ahreq, flags,
159 authenc_esn_geniv_ahash_done, req);
161 return crypto_ahash_digest(ahreq) ?:
162 crypto_authenc_esn_genicv_tail(req, aead_request_flags(req));
166 static void crypto_authenc_esn_encrypt_done(struct crypto_async_request *req,
169 struct aead_request *areq = req->data;
172 err = crypto_authenc_esn_genicv(areq, 0);
174 authenc_esn_request_complete(areq, err);
177 static int crypto_authenc_esn_copy(struct aead_request *req, unsigned int len)
179 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
180 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
181 SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null);
183 skcipher_request_set_sync_tfm(skreq, ctx->null);
184 skcipher_request_set_callback(skreq, aead_request_flags(req),
186 skcipher_request_set_crypt(skreq, req->src, req->dst, len, NULL);
188 return crypto_skcipher_encrypt(skreq);
191 static int crypto_authenc_esn_encrypt(struct aead_request *req)
193 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
194 struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req);
195 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
196 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
198 struct crypto_skcipher *enc = ctx->enc;
199 unsigned int assoclen = req->assoclen;
200 unsigned int cryptlen = req->cryptlen;
201 struct scatterlist *src, *dst;
204 sg_init_table(areq_ctx->src, 2);
205 src = scatterwalk_ffwd(areq_ctx->src, req->src, assoclen);
208 if (req->src != req->dst) {
209 err = crypto_authenc_esn_copy(req, assoclen);
213 sg_init_table(areq_ctx->dst, 2);
214 dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, assoclen);
217 skcipher_request_set_tfm(skreq, enc);
218 skcipher_request_set_callback(skreq, aead_request_flags(req),
219 crypto_authenc_esn_encrypt_done, req);
220 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
222 err = crypto_skcipher_encrypt(skreq);
226 return crypto_authenc_esn_genicv(req, aead_request_flags(req));
229 static int crypto_authenc_esn_decrypt_tail(struct aead_request *req,
232 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
233 unsigned int authsize = crypto_aead_authsize(authenc_esn);
234 struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req);
235 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
236 struct skcipher_request *skreq = (void *)(areq_ctx->tail +
238 struct crypto_ahash *auth = ctx->auth;
239 u8 *ohash = PTR_ALIGN((u8 *)areq_ctx->tail,
240 crypto_ahash_alignmask(auth) + 1);
241 unsigned int cryptlen = req->cryptlen - authsize;
242 unsigned int assoclen = req->assoclen;
243 struct scatterlist *dst = req->dst;
244 u8 *ihash = ohash + crypto_ahash_digestsize(auth);
250 /* Move high-order bits of sequence number back. */
251 scatterwalk_map_and_copy(tmp, dst, 4, 4, 0);
252 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0);
253 scatterwalk_map_and_copy(tmp, dst, 0, 8, 1);
255 if (crypto_memneq(ihash, ohash, authsize))
260 sg_init_table(areq_ctx->dst, 2);
261 dst = scatterwalk_ffwd(areq_ctx->dst, dst, assoclen);
263 skcipher_request_set_tfm(skreq, ctx->enc);
264 skcipher_request_set_callback(skreq, flags,
265 req->base.complete, req->base.data);
266 skcipher_request_set_crypt(skreq, dst, dst, cryptlen, req->iv);
268 return crypto_skcipher_decrypt(skreq);
271 static void authenc_esn_verify_ahash_done(struct crypto_async_request *areq,
274 struct aead_request *req = areq->data;
276 err = err ?: crypto_authenc_esn_decrypt_tail(req, 0);
277 authenc_esn_request_complete(req, err);
280 static int crypto_authenc_esn_decrypt(struct aead_request *req)
282 struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req);
283 struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req);
284 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn);
285 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff);
286 unsigned int authsize = crypto_aead_authsize(authenc_esn);
287 struct crypto_ahash *auth = ctx->auth;
288 u8 *ohash = PTR_ALIGN((u8 *)areq_ctx->tail,
289 crypto_ahash_alignmask(auth) + 1);
290 unsigned int assoclen = req->assoclen;
291 unsigned int cryptlen = req->cryptlen;
292 u8 *ihash = ohash + crypto_ahash_digestsize(auth);
293 struct scatterlist *dst = req->dst;
297 cryptlen -= authsize;
299 if (req->src != dst) {
300 err = crypto_authenc_esn_copy(req, assoclen + cryptlen);
305 scatterwalk_map_and_copy(ihash, req->src, assoclen + cryptlen,
311 /* Move high-order bits of sequence number to the end. */
312 scatterwalk_map_and_copy(tmp, dst, 0, 8, 0);
313 scatterwalk_map_and_copy(tmp, dst, 4, 4, 1);
314 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1);
316 sg_init_table(areq_ctx->dst, 2);
317 dst = scatterwalk_ffwd(areq_ctx->dst, dst, 4);
319 ahash_request_set_tfm(ahreq, auth);
320 ahash_request_set_crypt(ahreq, dst, ohash, assoclen + cryptlen);
321 ahash_request_set_callback(ahreq, aead_request_flags(req),
322 authenc_esn_verify_ahash_done, req);
324 err = crypto_ahash_digest(ahreq);
329 return crypto_authenc_esn_decrypt_tail(req, aead_request_flags(req));
332 static int crypto_authenc_esn_init_tfm(struct crypto_aead *tfm)
334 struct aead_instance *inst = aead_alg_instance(tfm);
335 struct authenc_esn_instance_ctx *ictx = aead_instance_ctx(inst);
336 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(tfm);
337 struct crypto_ahash *auth;
338 struct crypto_skcipher *enc;
339 struct crypto_sync_skcipher *null;
342 auth = crypto_spawn_ahash(&ictx->auth);
344 return PTR_ERR(auth);
346 enc = crypto_spawn_skcipher(&ictx->enc);
351 null = crypto_get_default_null_skcipher();
354 goto err_free_skcipher;
360 ctx->reqoff = ALIGN(2 * crypto_ahash_digestsize(auth),
361 crypto_ahash_alignmask(auth) + 1);
363 crypto_aead_set_reqsize(
365 sizeof(struct authenc_esn_request_ctx) +
368 crypto_ahash_reqsize(auth) +
369 sizeof(struct ahash_request),
370 sizeof(struct skcipher_request) +
371 crypto_skcipher_reqsize(enc)));
376 crypto_free_skcipher(enc);
378 crypto_free_ahash(auth);
382 static void crypto_authenc_esn_exit_tfm(struct crypto_aead *tfm)
384 struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(tfm);
386 crypto_free_ahash(ctx->auth);
387 crypto_free_skcipher(ctx->enc);
388 crypto_put_default_null_skcipher();
391 static void crypto_authenc_esn_free(struct aead_instance *inst)
393 struct authenc_esn_instance_ctx *ctx = aead_instance_ctx(inst);
395 crypto_drop_skcipher(&ctx->enc);
396 crypto_drop_ahash(&ctx->auth);
400 static int crypto_authenc_esn_create(struct crypto_template *tmpl,
403 struct crypto_attr_type *algt;
404 struct aead_instance *inst;
405 struct hash_alg_common *auth;
406 struct crypto_alg *auth_base;
407 struct skcipher_alg *enc;
408 struct authenc_esn_instance_ctx *ctx;
409 const char *enc_name;
412 algt = crypto_get_attr_type(tb);
414 return PTR_ERR(algt);
416 if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
419 auth = ahash_attr_alg(tb[1], CRYPTO_ALG_TYPE_HASH,
420 CRYPTO_ALG_TYPE_AHASH_MASK |
421 crypto_requires_sync(algt->type, algt->mask));
423 return PTR_ERR(auth);
425 auth_base = &auth->base;
427 enc_name = crypto_attr_alg_name(tb[2]);
428 err = PTR_ERR(enc_name);
429 if (IS_ERR(enc_name))
432 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
437 ctx = aead_instance_ctx(inst);
439 err = crypto_init_ahash_spawn(&ctx->auth, auth,
440 aead_crypto_instance(inst));
444 crypto_set_skcipher_spawn(&ctx->enc, aead_crypto_instance(inst));
445 err = crypto_grab_skcipher(&ctx->enc, enc_name, 0,
446 crypto_requires_sync(algt->type,
451 enc = crypto_spawn_skcipher_alg(&ctx->enc);
454 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME,
455 "authencesn(%s,%s)", auth_base->cra_name,
456 enc->base.cra_name) >= CRYPTO_MAX_ALG_NAME)
459 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
460 "authencesn(%s,%s)", auth_base->cra_driver_name,
461 enc->base.cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
464 inst->alg.base.cra_flags = (auth_base->cra_flags |
465 enc->base.cra_flags) & CRYPTO_ALG_ASYNC;
466 inst->alg.base.cra_priority = enc->base.cra_priority * 10 +
467 auth_base->cra_priority;
468 inst->alg.base.cra_blocksize = enc->base.cra_blocksize;
469 inst->alg.base.cra_alignmask = auth_base->cra_alignmask |
470 enc->base.cra_alignmask;
471 inst->alg.base.cra_ctxsize = sizeof(struct crypto_authenc_esn_ctx);
473 inst->alg.ivsize = crypto_skcipher_alg_ivsize(enc);
474 inst->alg.chunksize = crypto_skcipher_alg_chunksize(enc);
475 inst->alg.maxauthsize = auth->digestsize;
477 inst->alg.init = crypto_authenc_esn_init_tfm;
478 inst->alg.exit = crypto_authenc_esn_exit_tfm;
480 inst->alg.setkey = crypto_authenc_esn_setkey;
481 inst->alg.setauthsize = crypto_authenc_esn_setauthsize;
482 inst->alg.encrypt = crypto_authenc_esn_encrypt;
483 inst->alg.decrypt = crypto_authenc_esn_decrypt;
485 inst->free = crypto_authenc_esn_free,
487 err = aead_register_instance(tmpl, inst);
492 crypto_mod_put(auth_base);
496 crypto_drop_skcipher(&ctx->enc);
498 crypto_drop_ahash(&ctx->auth);
505 static struct crypto_template crypto_authenc_esn_tmpl = {
506 .name = "authencesn",
507 .create = crypto_authenc_esn_create,
508 .module = THIS_MODULE,
511 static int __init crypto_authenc_esn_module_init(void)
513 return crypto_register_template(&crypto_authenc_esn_tmpl);
516 static void __exit crypto_authenc_esn_module_exit(void)
518 crypto_unregister_template(&crypto_authenc_esn_tmpl);
521 subsys_initcall(crypto_authenc_esn_module_init);
522 module_exit(crypto_authenc_esn_module_exit);
524 MODULE_LICENSE("GPL");
525 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
526 MODULE_DESCRIPTION("AEAD wrapper for IPsec with extended sequence numbers");
527 MODULE_ALIAS_CRYPTO("authencesn");