Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 2 | /* |
| 3 | * authencesn.c - AEAD wrapper for IPsec with extended sequence numbers, |
| 4 | * derived from authenc.c |
| 5 | * |
| 6 | * Copyright (C) 2010 secunet Security Networks AG |
| 7 | * Copyright (C) 2010 Steffen Klassert <steffen.klassert@secunet.com> |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 8 | * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au> |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Herbert Xu | 7fb2a4b | 2015-05-11 17:47:42 +0800 | [diff] [blame] | 11 | #include <crypto/internal/aead.h> |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 12 | #include <crypto/internal/hash.h> |
| 13 | #include <crypto/internal/skcipher.h> |
| 14 | #include <crypto/authenc.h> |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 15 | #include <crypto/null.h> |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 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> |
| 24 | |
| 25 | struct authenc_esn_instance_ctx { |
| 26 | struct crypto_ahash_spawn auth; |
| 27 | struct crypto_skcipher_spawn enc; |
| 28 | }; |
| 29 | |
| 30 | struct crypto_authenc_esn_ctx { |
| 31 | unsigned int reqoff; |
| 32 | struct crypto_ahash *auth; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 33 | struct crypto_skcipher *enc; |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 34 | struct crypto_sync_skcipher *null; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | struct authenc_esn_request_ctx { |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 38 | struct scatterlist src[2]; |
| 39 | struct scatterlist dst[2]; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 40 | char tail[]; |
| 41 | }; |
| 42 | |
| 43 | static void authenc_esn_request_complete(struct aead_request *req, int err) |
| 44 | { |
| 45 | if (err != -EINPROGRESS) |
| 46 | aead_request_complete(req, err); |
| 47 | } |
| 48 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 49 | static int crypto_authenc_esn_setauthsize(struct crypto_aead *authenc_esn, |
| 50 | unsigned int authsize) |
| 51 | { |
| 52 | if (authsize > 0 && authsize < 4) |
| 53 | return -EINVAL; |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 58 | static int crypto_authenc_esn_setkey(struct crypto_aead *authenc_esn, const u8 *key, |
| 59 | unsigned int keylen) |
| 60 | { |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 61 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
| 62 | struct crypto_ahash *auth = ctx->auth; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 63 | struct crypto_skcipher *enc = ctx->enc; |
Mathias Krause | fddc2c4 | 2013-10-15 13:49:31 +0200 | [diff] [blame] | 64 | struct crypto_authenc_keys keys; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 65 | int err = -EINVAL; |
| 66 | |
Mathias Krause | fddc2c4 | 2013-10-15 13:49:31 +0200 | [diff] [blame] | 67 | if (crypto_authenc_extractkeys(&keys, key, keylen) != 0) |
Eric Biggers | 674f368 | 2019-12-30 21:19:36 -0600 | [diff] [blame] | 68 | goto out; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 69 | |
| 70 | crypto_ahash_clear_flags(auth, CRYPTO_TFM_REQ_MASK); |
| 71 | crypto_ahash_set_flags(auth, crypto_aead_get_flags(authenc_esn) & |
| 72 | CRYPTO_TFM_REQ_MASK); |
Mathias Krause | fddc2c4 | 2013-10-15 13:49:31 +0200 | [diff] [blame] | 73 | err = crypto_ahash_setkey(auth, keys.authkey, keys.authkeylen); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 74 | if (err) |
| 75 | goto out; |
| 76 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 77 | crypto_skcipher_clear_flags(enc, CRYPTO_TFM_REQ_MASK); |
| 78 | crypto_skcipher_set_flags(enc, crypto_aead_get_flags(authenc_esn) & |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 79 | CRYPTO_TFM_REQ_MASK); |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 80 | err = crypto_skcipher_setkey(enc, keys.enckey, keys.enckeylen); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 81 | out: |
Tudor-Dan Ambarus | 31545df | 2018-04-03 09:39:01 +0300 | [diff] [blame] | 82 | memzero_explicit(&keys, sizeof(keys)); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 83 | return err; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 86 | static int crypto_authenc_esn_genicv_tail(struct aead_request *req, |
| 87 | unsigned int flags) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 88 | { |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 89 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
| 90 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
| 91 | struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 92 | struct crypto_ahash *auth = ctx->auth; |
| 93 | u8 *hash = PTR_ALIGN((u8 *)areq_ctx->tail, |
| 94 | crypto_ahash_alignmask(auth) + 1); |
| 95 | unsigned int authsize = crypto_aead_authsize(authenc_esn); |
| 96 | unsigned int assoclen = req->assoclen; |
| 97 | unsigned int cryptlen = req->cryptlen; |
| 98 | struct scatterlist *dst = req->dst; |
| 99 | u32 tmp[2]; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 100 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 101 | /* Move high-order bits of sequence number back. */ |
| 102 | scatterwalk_map_and_copy(tmp, dst, 4, 4, 0); |
| 103 | scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0); |
| 104 | scatterwalk_map_and_copy(tmp, dst, 0, 8, 1); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 105 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 106 | scatterwalk_map_and_copy(hash, dst, assoclen + cryptlen, authsize, 1); |
| 107 | return 0; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 110 | static void authenc_esn_geniv_ahash_done(struct crypto_async_request *areq, |
| 111 | int err) |
| 112 | { |
| 113 | struct aead_request *req = areq->data; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 114 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 115 | err = err ?: crypto_authenc_esn_genicv_tail(req, 0); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 116 | aead_request_complete(req, err); |
| 117 | } |
| 118 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 119 | static int crypto_authenc_esn_genicv(struct aead_request *req, |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 120 | unsigned int flags) |
| 121 | { |
| 122 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
| 123 | struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 124 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
| 125 | struct crypto_ahash *auth = ctx->auth; |
| 126 | u8 *hash = PTR_ALIGN((u8 *)areq_ctx->tail, |
| 127 | crypto_ahash_alignmask(auth) + 1); |
| 128 | struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff); |
| 129 | unsigned int authsize = crypto_aead_authsize(authenc_esn); |
| 130 | unsigned int assoclen = req->assoclen; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 131 | unsigned int cryptlen = req->cryptlen; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 132 | struct scatterlist *dst = req->dst; |
| 133 | u32 tmp[2]; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 134 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 135 | if (!authsize) |
| 136 | return 0; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 137 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 138 | /* Move high-order bits of sequence number to the end. */ |
| 139 | scatterwalk_map_and_copy(tmp, dst, 0, 8, 0); |
| 140 | scatterwalk_map_and_copy(tmp, dst, 4, 4, 1); |
| 141 | scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 142 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 143 | sg_init_table(areq_ctx->dst, 2); |
| 144 | dst = scatterwalk_ffwd(areq_ctx->dst, dst, 4); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 145 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 146 | ahash_request_set_tfm(ahreq, auth); |
| 147 | ahash_request_set_crypt(ahreq, dst, hash, assoclen + cryptlen); |
| 148 | ahash_request_set_callback(ahreq, flags, |
| 149 | authenc_esn_geniv_ahash_done, req); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 150 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 151 | return crypto_ahash_digest(ahreq) ?: |
| 152 | crypto_authenc_esn_genicv_tail(req, aead_request_flags(req)); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | |
| 156 | static void crypto_authenc_esn_encrypt_done(struct crypto_async_request *req, |
| 157 | int err) |
| 158 | { |
| 159 | struct aead_request *areq = req->data; |
| 160 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 161 | if (!err) |
| 162 | err = crypto_authenc_esn_genicv(areq, 0); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 163 | |
| 164 | authenc_esn_request_complete(areq, err); |
| 165 | } |
| 166 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 167 | static int crypto_authenc_esn_copy(struct aead_request *req, unsigned int len) |
| 168 | { |
| 169 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
| 170 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 171 | SYNC_SKCIPHER_REQUEST_ON_STACK(skreq, ctx->null); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 172 | |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 173 | skcipher_request_set_sync_tfm(skreq, ctx->null); |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 174 | skcipher_request_set_callback(skreq, aead_request_flags(req), |
| 175 | NULL, NULL); |
| 176 | skcipher_request_set_crypt(skreq, req->src, req->dst, len, NULL); |
| 177 | |
| 178 | return crypto_skcipher_encrypt(skreq); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 179 | } |
| 180 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 181 | static int crypto_authenc_esn_encrypt(struct aead_request *req) |
| 182 | { |
| 183 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 184 | struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 185 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 186 | struct skcipher_request *skreq = (void *)(areq_ctx->tail + |
| 187 | ctx->reqoff); |
| 188 | struct crypto_skcipher *enc = ctx->enc; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 189 | unsigned int assoclen = req->assoclen; |
| 190 | unsigned int cryptlen = req->cryptlen; |
| 191 | struct scatterlist *src, *dst; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 192 | int err; |
| 193 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 194 | sg_init_table(areq_ctx->src, 2); |
| 195 | src = scatterwalk_ffwd(areq_ctx->src, req->src, assoclen); |
| 196 | dst = src; |
| 197 | |
| 198 | if (req->src != req->dst) { |
| 199 | err = crypto_authenc_esn_copy(req, assoclen); |
| 200 | if (err) |
| 201 | return err; |
| 202 | |
| 203 | sg_init_table(areq_ctx->dst, 2); |
| 204 | dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, assoclen); |
| 205 | } |
| 206 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 207 | skcipher_request_set_tfm(skreq, enc); |
| 208 | skcipher_request_set_callback(skreq, aead_request_flags(req), |
| 209 | crypto_authenc_esn_encrypt_done, req); |
| 210 | skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 211 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 212 | err = crypto_skcipher_encrypt(skreq); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 213 | if (err) |
| 214 | return err; |
| 215 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 216 | return crypto_authenc_esn_genicv(req, aead_request_flags(req)); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 217 | } |
| 218 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 219 | static int crypto_authenc_esn_decrypt_tail(struct aead_request *req, |
| 220 | unsigned int flags) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 221 | { |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 222 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
| 223 | unsigned int authsize = crypto_aead_authsize(authenc_esn); |
| 224 | struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 225 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 226 | struct skcipher_request *skreq = (void *)(areq_ctx->tail + |
| 227 | ctx->reqoff); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 228 | struct crypto_ahash *auth = ctx->auth; |
| 229 | u8 *ohash = PTR_ALIGN((u8 *)areq_ctx->tail, |
| 230 | crypto_ahash_alignmask(auth) + 1); |
| 231 | unsigned int cryptlen = req->cryptlen - authsize; |
| 232 | unsigned int assoclen = req->assoclen; |
| 233 | struct scatterlist *dst = req->dst; |
| 234 | u8 *ihash = ohash + crypto_ahash_digestsize(auth); |
| 235 | u32 tmp[2]; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 236 | |
Herbert Xu | 41cdf7a | 2017-07-17 15:32:30 +0800 | [diff] [blame] | 237 | if (!authsize) |
| 238 | goto decrypt; |
| 239 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 240 | /* Move high-order bits of sequence number back. */ |
| 241 | scatterwalk_map_and_copy(tmp, dst, 4, 4, 0); |
| 242 | scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0); |
| 243 | scatterwalk_map_and_copy(tmp, dst, 0, 8, 1); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 244 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 245 | if (crypto_memneq(ihash, ohash, authsize)) |
| 246 | return -EBADMSG; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 247 | |
Herbert Xu | 41cdf7a | 2017-07-17 15:32:30 +0800 | [diff] [blame] | 248 | decrypt: |
| 249 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 250 | sg_init_table(areq_ctx->dst, 2); |
| 251 | dst = scatterwalk_ffwd(areq_ctx->dst, dst, assoclen); |
| 252 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 253 | skcipher_request_set_tfm(skreq, ctx->enc); |
| 254 | skcipher_request_set_callback(skreq, flags, |
| 255 | req->base.complete, req->base.data); |
| 256 | skcipher_request_set_crypt(skreq, dst, dst, cryptlen, req->iv); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 257 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 258 | return crypto_skcipher_decrypt(skreq); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 261 | static void authenc_esn_verify_ahash_done(struct crypto_async_request *areq, |
| 262 | int err) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 263 | { |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 264 | struct aead_request *req = areq->data; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 265 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 266 | err = err ?: crypto_authenc_esn_decrypt_tail(req, 0); |
Harsh Jain | a777336 | 2019-01-03 14:21:05 +0530 | [diff] [blame] | 267 | authenc_esn_request_complete(req, err); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | static int crypto_authenc_esn_decrypt(struct aead_request *req) |
| 271 | { |
| 272 | struct crypto_aead *authenc_esn = crypto_aead_reqtfm(req); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 273 | struct authenc_esn_request_ctx *areq_ctx = aead_request_ctx(req); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 274 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(authenc_esn); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 275 | struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 276 | unsigned int authsize = crypto_aead_authsize(authenc_esn); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 277 | struct crypto_ahash *auth = ctx->auth; |
| 278 | u8 *ohash = PTR_ALIGN((u8 *)areq_ctx->tail, |
| 279 | crypto_ahash_alignmask(auth) + 1); |
| 280 | unsigned int assoclen = req->assoclen; |
| 281 | unsigned int cryptlen = req->cryptlen; |
| 282 | u8 *ihash = ohash + crypto_ahash_digestsize(auth); |
| 283 | struct scatterlist *dst = req->dst; |
| 284 | u32 tmp[2]; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 285 | int err; |
| 286 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 287 | cryptlen -= authsize; |
| 288 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 289 | if (req->src != dst) { |
| 290 | err = crypto_authenc_esn_copy(req, assoclen + cryptlen); |
| 291 | if (err) |
| 292 | return err; |
| 293 | } |
| 294 | |
| 295 | scatterwalk_map_and_copy(ihash, req->src, assoclen + cryptlen, |
| 296 | authsize, 0); |
| 297 | |
| 298 | if (!authsize) |
| 299 | goto tail; |
| 300 | |
| 301 | /* Move high-order bits of sequence number to the end. */ |
| 302 | scatterwalk_map_and_copy(tmp, dst, 0, 8, 0); |
| 303 | scatterwalk_map_and_copy(tmp, dst, 4, 4, 1); |
| 304 | scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1); |
| 305 | |
| 306 | sg_init_table(areq_ctx->dst, 2); |
| 307 | dst = scatterwalk_ffwd(areq_ctx->dst, dst, 4); |
| 308 | |
| 309 | ahash_request_set_tfm(ahreq, auth); |
| 310 | ahash_request_set_crypt(ahreq, dst, ohash, assoclen + cryptlen); |
| 311 | ahash_request_set_callback(ahreq, aead_request_flags(req), |
| 312 | authenc_esn_verify_ahash_done, req); |
| 313 | |
| 314 | err = crypto_ahash_digest(ahreq); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 315 | if (err) |
| 316 | return err; |
| 317 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 318 | tail: |
| 319 | return crypto_authenc_esn_decrypt_tail(req, aead_request_flags(req)); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 322 | static int crypto_authenc_esn_init_tfm(struct crypto_aead *tfm) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 323 | { |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 324 | struct aead_instance *inst = aead_alg_instance(tfm); |
| 325 | struct authenc_esn_instance_ctx *ictx = aead_instance_ctx(inst); |
| 326 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(tfm); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 327 | struct crypto_ahash *auth; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 328 | struct crypto_skcipher *enc; |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 329 | struct crypto_sync_skcipher *null; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 330 | int err; |
| 331 | |
| 332 | auth = crypto_spawn_ahash(&ictx->auth); |
| 333 | if (IS_ERR(auth)) |
| 334 | return PTR_ERR(auth); |
| 335 | |
Eric Biggers | 60425a8 | 2016-10-28 09:52:19 -0700 | [diff] [blame] | 336 | enc = crypto_spawn_skcipher(&ictx->enc); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 337 | err = PTR_ERR(enc); |
| 338 | if (IS_ERR(enc)) |
| 339 | goto err_free_ahash; |
| 340 | |
Eric Biggers | 3a2d4fb | 2017-12-07 10:56:34 -0800 | [diff] [blame] | 341 | null = crypto_get_default_null_skcipher(); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 342 | err = PTR_ERR(null); |
| 343 | if (IS_ERR(null)) |
| 344 | goto err_free_skcipher; |
| 345 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 346 | ctx->auth = auth; |
| 347 | ctx->enc = enc; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 348 | ctx->null = null; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 349 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 350 | ctx->reqoff = ALIGN(2 * crypto_ahash_digestsize(auth), |
| 351 | crypto_ahash_alignmask(auth) + 1); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 352 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 353 | crypto_aead_set_reqsize( |
| 354 | tfm, |
Herbert Xu | 6650d09 | 2015-05-11 17:47:55 +0800 | [diff] [blame] | 355 | sizeof(struct authenc_esn_request_ctx) + |
| 356 | ctx->reqoff + |
| 357 | max_t(unsigned int, |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 358 | crypto_ahash_reqsize(auth) + |
| 359 | sizeof(struct ahash_request), |
| 360 | sizeof(struct skcipher_request) + |
| 361 | crypto_skcipher_reqsize(enc))); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 362 | |
| 363 | return 0; |
| 364 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 365 | err_free_skcipher: |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 366 | crypto_free_skcipher(enc); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 367 | err_free_ahash: |
| 368 | crypto_free_ahash(auth); |
| 369 | return err; |
| 370 | } |
| 371 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 372 | static void crypto_authenc_esn_exit_tfm(struct crypto_aead *tfm) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 373 | { |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 374 | struct crypto_authenc_esn_ctx *ctx = crypto_aead_ctx(tfm); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 375 | |
| 376 | crypto_free_ahash(ctx->auth); |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 377 | crypto_free_skcipher(ctx->enc); |
Eric Biggers | 3a2d4fb | 2017-12-07 10:56:34 -0800 | [diff] [blame] | 378 | crypto_put_default_null_skcipher(); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 379 | } |
| 380 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 381 | static void crypto_authenc_esn_free(struct aead_instance *inst) |
| 382 | { |
| 383 | struct authenc_esn_instance_ctx *ctx = aead_instance_ctx(inst); |
| 384 | |
| 385 | crypto_drop_skcipher(&ctx->enc); |
| 386 | crypto_drop_ahash(&ctx->auth); |
| 387 | kfree(inst); |
| 388 | } |
| 389 | |
| 390 | static int crypto_authenc_esn_create(struct crypto_template *tmpl, |
| 391 | struct rtattr **tb) |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 392 | { |
Eric Biggers | b9f76dd | 2020-01-02 19:58:45 -0800 | [diff] [blame] | 393 | u32 mask; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 394 | struct aead_instance *inst; |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 395 | struct authenc_esn_instance_ctx *ctx; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 396 | struct hash_alg_common *auth; |
| 397 | struct crypto_alg *auth_base; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 398 | struct skcipher_alg *enc; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 399 | int err; |
| 400 | |
Eric Biggers | 7bcb2c9 | 2020-07-09 23:20:38 -0700 | [diff] [blame] | 401 | err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_AEAD, &mask); |
| 402 | if (err) |
| 403 | return err; |
Eric Biggers | b9f76dd | 2020-01-02 19:58:45 -0800 | [diff] [blame] | 404 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 405 | inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 406 | if (!inst) |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 407 | return -ENOMEM; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 408 | ctx = aead_instance_ctx(inst); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 409 | |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 410 | err = crypto_grab_ahash(&ctx->auth, aead_crypto_instance(inst), |
| 411 | crypto_attr_alg_name(tb[1]), 0, mask); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 412 | if (err) |
| 413 | goto err_free_inst; |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 414 | auth = crypto_spawn_ahash_alg(&ctx->auth); |
| 415 | auth_base = &auth->base; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 416 | |
Eric Biggers | b9f76dd | 2020-01-02 19:58:45 -0800 | [diff] [blame] | 417 | err = crypto_grab_skcipher(&ctx->enc, aead_crypto_instance(inst), |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 418 | crypto_attr_alg_name(tb[2]), 0, mask); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 419 | if (err) |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 420 | goto err_free_inst; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 421 | enc = crypto_spawn_skcipher_alg(&ctx->enc); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 422 | |
| 423 | err = -ENAMETOOLONG; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 424 | if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, |
| 425 | "authencesn(%s,%s)", auth_base->cra_name, |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 426 | enc->base.cra_name) >= CRYPTO_MAX_ALG_NAME) |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 427 | goto err_free_inst; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 428 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 429 | if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 430 | "authencesn(%s,%s)", auth_base->cra_driver_name, |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 431 | enc->base.cra_driver_name) >= CRYPTO_MAX_ALG_NAME) |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 432 | goto err_free_inst; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 433 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 434 | inst->alg.base.cra_priority = enc->base.cra_priority * 10 + |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 435 | auth_base->cra_priority; |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 436 | inst->alg.base.cra_blocksize = enc->base.cra_blocksize; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 437 | inst->alg.base.cra_alignmask = auth_base->cra_alignmask | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 438 | enc->base.cra_alignmask; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 439 | inst->alg.base.cra_ctxsize = sizeof(struct crypto_authenc_esn_ctx); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 440 | |
Herbert Xu | e75445a | 2016-07-12 13:17:35 +0800 | [diff] [blame] | 441 | inst->alg.ivsize = crypto_skcipher_alg_ivsize(enc); |
| 442 | inst->alg.chunksize = crypto_skcipher_alg_chunksize(enc); |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 443 | inst->alg.maxauthsize = auth->digestsize; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 444 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 445 | inst->alg.init = crypto_authenc_esn_init_tfm; |
| 446 | inst->alg.exit = crypto_authenc_esn_exit_tfm; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 447 | |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 448 | inst->alg.setkey = crypto_authenc_esn_setkey; |
| 449 | inst->alg.setauthsize = crypto_authenc_esn_setauthsize; |
| 450 | inst->alg.encrypt = crypto_authenc_esn_encrypt; |
| 451 | inst->alg.decrypt = crypto_authenc_esn_decrypt; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 452 | |
Eric Biggers | d1dc4df | 2020-02-25 20:59:13 -0800 | [diff] [blame] | 453 | inst->free = crypto_authenc_esn_free; |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 454 | |
| 455 | err = aead_register_instance(tmpl, inst); |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 456 | if (err) { |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 457 | err_free_inst: |
Eric Biggers | 3707388 | 2020-01-02 19:58:56 -0800 | [diff] [blame] | 458 | crypto_authenc_esn_free(inst); |
| 459 | } |
| 460 | return err; |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 463 | static struct crypto_template crypto_authenc_esn_tmpl = { |
| 464 | .name = "authencesn", |
Herbert Xu | 104880a | 2015-08-07 16:42:59 +0800 | [diff] [blame] | 465 | .create = crypto_authenc_esn_create, |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 466 | .module = THIS_MODULE, |
| 467 | }; |
| 468 | |
| 469 | static int __init crypto_authenc_esn_module_init(void) |
| 470 | { |
| 471 | return crypto_register_template(&crypto_authenc_esn_tmpl); |
| 472 | } |
| 473 | |
| 474 | static void __exit crypto_authenc_esn_module_exit(void) |
| 475 | { |
| 476 | crypto_unregister_template(&crypto_authenc_esn_tmpl); |
| 477 | } |
| 478 | |
Eric Biggers | c4741b2 | 2019-04-11 21:57:42 -0700 | [diff] [blame] | 479 | subsys_initcall(crypto_authenc_esn_module_init); |
Steffen Klassert | a5079d0 | 2011-03-08 00:04:58 +0000 | [diff] [blame] | 480 | module_exit(crypto_authenc_esn_module_exit); |
| 481 | |
| 482 | MODULE_LICENSE("GPL"); |
| 483 | MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>"); |
| 484 | MODULE_DESCRIPTION("AEAD wrapper for IPsec with extended sequence numbers"); |
Kees Cook | 4943ba1 | 2014-11-24 16:32:38 -0800 | [diff] [blame] | 485 | MODULE_ALIAS_CRYPTO("authencesn"); |