blob: 97bbb135e9a6d9a28c671ccf6434aa730ec6465b [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Martin Willi71ebc4d2015-06-01 13:44:00 +02002/*
3 * ChaCha20-Poly1305 AEAD, RFC7539
4 *
5 * Copyright (C) 2015 Martin Willi
Martin Willi71ebc4d2015-06-01 13:44:00 +02006 */
7
8#include <crypto/internal/aead.h>
9#include <crypto/internal/hash.h>
10#include <crypto/internal/skcipher.h>
11#include <crypto/scatterwalk.h>
Eric Biggers1ca1b912018-11-16 17:26:21 -080012#include <crypto/chacha.h>
Martin Willi2546f812015-07-16 19:14:05 +020013#include <crypto/poly1305.h>
Martin Willi71ebc4d2015-06-01 13:44:00 +020014#include <linux/err.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
17#include <linux/module.h>
18
Martin Willi71ebc4d2015-06-01 13:44:00 +020019struct chachapoly_instance_ctx {
20 struct crypto_skcipher_spawn chacha;
21 struct crypto_ahash_spawn poly;
22 unsigned int saltlen;
23};
24
25struct chachapoly_ctx {
Herbert Xu1e1f0062016-07-12 13:17:40 +080026 struct crypto_skcipher *chacha;
Martin Willi71ebc4d2015-06-01 13:44:00 +020027 struct crypto_ahash *poly;
28 /* key bytes we use for the ChaCha20 IV */
29 unsigned int saltlen;
30 u8 salt[];
31};
32
33struct poly_req {
34 /* zero byte padding for AD/ciphertext, as needed */
35 u8 pad[POLY1305_BLOCK_SIZE];
36 /* tail data with AD/ciphertext lengths */
37 struct {
38 __le64 assoclen;
39 __le64 cryptlen;
40 } tail;
41 struct scatterlist src[1];
42 struct ahash_request req; /* must be last member */
43};
44
45struct chacha_req {
Eric Biggers1ca1b912018-11-16 17:26:21 -080046 u8 iv[CHACHA_IV_SIZE];
Martin Willi71ebc4d2015-06-01 13:44:00 +020047 struct scatterlist src[1];
Herbert Xu1e1f0062016-07-12 13:17:40 +080048 struct skcipher_request req; /* must be last member */
Martin Willi71ebc4d2015-06-01 13:44:00 +020049};
50
51struct chachapoly_req_ctx {
Herbert Xu74790922015-07-16 12:35:08 +080052 struct scatterlist src[2];
53 struct scatterlist dst[2];
Martin Willic2b7b20a2015-06-16 11:34:16 +020054 /* the key we generate for Poly1305 using Chacha20 */
55 u8 key[POLY1305_KEY_SIZE];
Martin Willi71ebc4d2015-06-01 13:44:00 +020056 /* calculated Poly1305 tag */
57 u8 tag[POLY1305_DIGEST_SIZE];
58 /* length of data to en/decrypt, without ICV */
59 unsigned int cryptlen;
Herbert Xu74790922015-07-16 12:35:08 +080060 /* Actual AD, excluding IV */
61 unsigned int assoclen;
Eric Biggers7545b6c2019-05-31 11:12:30 -070062 /* request flags, with MAY_SLEEP cleared if needed */
63 u32 flags;
Martin Willi71ebc4d2015-06-01 13:44:00 +020064 union {
65 struct poly_req poly;
66 struct chacha_req chacha;
67 } u;
68};
69
70static inline void async_done_continue(struct aead_request *req, int err,
71 int (*cont)(struct aead_request *))
72{
Eric Biggers7545b6c2019-05-31 11:12:30 -070073 if (!err) {
74 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
75
76 rctx->flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP;
Martin Willi71ebc4d2015-06-01 13:44:00 +020077 err = cont(req);
Eric Biggers7545b6c2019-05-31 11:12:30 -070078 }
Martin Willi71ebc4d2015-06-01 13:44:00 +020079
80 if (err != -EINPROGRESS && err != -EBUSY)
81 aead_request_complete(req, err);
82}
83
84static void chacha_iv(u8 *iv, struct aead_request *req, u32 icb)
85{
86 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
87 __le32 leicb = cpu_to_le32(icb);
88
89 memcpy(iv, &leicb, sizeof(leicb));
90 memcpy(iv + sizeof(leicb), ctx->salt, ctx->saltlen);
91 memcpy(iv + sizeof(leicb) + ctx->saltlen, req->iv,
Eric Biggers1ca1b912018-11-16 17:26:21 -080092 CHACHA_IV_SIZE - sizeof(leicb) - ctx->saltlen);
Martin Willi71ebc4d2015-06-01 13:44:00 +020093}
94
95static int poly_verify_tag(struct aead_request *req)
96{
97 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
98 u8 tag[sizeof(rctx->tag)];
99
Herbert Xu74790922015-07-16 12:35:08 +0800100 scatterwalk_map_and_copy(tag, req->src,
101 req->assoclen + rctx->cryptlen,
102 sizeof(tag), 0);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200103 if (crypto_memneq(tag, rctx->tag, sizeof(tag)))
104 return -EBADMSG;
105 return 0;
106}
107
108static int poly_copy_tag(struct aead_request *req)
109{
110 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
111
Herbert Xu74790922015-07-16 12:35:08 +0800112 scatterwalk_map_and_copy(rctx->tag, req->dst,
113 req->assoclen + rctx->cryptlen,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200114 sizeof(rctx->tag), 1);
115 return 0;
116}
117
118static void chacha_decrypt_done(struct crypto_async_request *areq, int err)
119{
120 async_done_continue(areq->data, err, poly_verify_tag);
121}
122
123static int chacha_decrypt(struct aead_request *req)
124{
125 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
126 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
127 struct chacha_req *creq = &rctx->u.chacha;
Herbert Xu74790922015-07-16 12:35:08 +0800128 struct scatterlist *src, *dst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200129 int err;
130
Jason A. Donenfeld161151d2015-12-06 02:51:38 +0100131 if (rctx->cryptlen == 0)
132 goto skip;
133
Martin Willi71ebc4d2015-06-01 13:44:00 +0200134 chacha_iv(creq->iv, req, 1);
135
Herbert Xu74790922015-07-16 12:35:08 +0800136 src = scatterwalk_ffwd(rctx->src, req->src, req->assoclen);
137 dst = src;
Eric Biggers76cadf22019-06-02 22:46:34 -0700138 if (req->src != req->dst)
Herbert Xu74790922015-07-16 12:35:08 +0800139 dst = scatterwalk_ffwd(rctx->dst, req->dst, req->assoclen);
Herbert Xu74790922015-07-16 12:35:08 +0800140
Eric Biggers7545b6c2019-05-31 11:12:30 -0700141 skcipher_request_set_callback(&creq->req, rctx->flags,
Herbert Xu1e1f0062016-07-12 13:17:40 +0800142 chacha_decrypt_done, req);
143 skcipher_request_set_tfm(&creq->req, ctx->chacha);
144 skcipher_request_set_crypt(&creq->req, src, dst,
145 rctx->cryptlen, creq->iv);
146 err = crypto_skcipher_decrypt(&creq->req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200147 if (err)
148 return err;
149
Jason A. Donenfeld161151d2015-12-06 02:51:38 +0100150skip:
Martin Willi71ebc4d2015-06-01 13:44:00 +0200151 return poly_verify_tag(req);
152}
153
154static int poly_tail_continue(struct aead_request *req)
155{
156 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
157
158 if (rctx->cryptlen == req->cryptlen) /* encrypting */
159 return poly_copy_tag(req);
160
161 return chacha_decrypt(req);
162}
163
164static void poly_tail_done(struct crypto_async_request *areq, int err)
165{
166 async_done_continue(areq->data, err, poly_tail_continue);
167}
168
169static int poly_tail(struct aead_request *req)
170{
Herbert Xu74790922015-07-16 12:35:08 +0800171 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
172 struct chachapoly_ctx *ctx = crypto_aead_ctx(tfm);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200173 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
174 struct poly_req *preq = &rctx->u.poly;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200175 int err;
176
Eric Biggers76cadf22019-06-02 22:46:34 -0700177 preq->tail.assoclen = cpu_to_le64(rctx->assoclen);
178 preq->tail.cryptlen = cpu_to_le64(rctx->cryptlen);
179 sg_init_one(preq->src, &preq->tail, sizeof(preq->tail));
Martin Willi71ebc4d2015-06-01 13:44:00 +0200180
Eric Biggers7545b6c2019-05-31 11:12:30 -0700181 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200182 poly_tail_done, req);
183 ahash_request_set_tfm(&preq->req, ctx->poly);
184 ahash_request_set_crypt(&preq->req, preq->src,
185 rctx->tag, sizeof(preq->tail));
186
187 err = crypto_ahash_finup(&preq->req);
188 if (err)
189 return err;
190
191 return poly_tail_continue(req);
192}
193
194static void poly_cipherpad_done(struct crypto_async_request *areq, int err)
195{
196 async_done_continue(areq->data, err, poly_tail);
197}
198
199static int poly_cipherpad(struct aead_request *req)
200{
201 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
202 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
203 struct poly_req *preq = &rctx->u.poly;
Eric Biggers76cadf22019-06-02 22:46:34 -0700204 unsigned int padlen;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200205 int err;
206
Eric Biggers76cadf22019-06-02 22:46:34 -0700207 padlen = -rctx->cryptlen % POLY1305_BLOCK_SIZE;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200208 memset(preq->pad, 0, sizeof(preq->pad));
Eric Biggers76cadf22019-06-02 22:46:34 -0700209 sg_init_one(preq->src, preq->pad, padlen);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200210
Eric Biggers7545b6c2019-05-31 11:12:30 -0700211 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200212 poly_cipherpad_done, req);
213 ahash_request_set_tfm(&preq->req, ctx->poly);
214 ahash_request_set_crypt(&preq->req, preq->src, NULL, padlen);
215
216 err = crypto_ahash_update(&preq->req);
217 if (err)
218 return err;
219
220 return poly_tail(req);
221}
222
223static void poly_cipher_done(struct crypto_async_request *areq, int err)
224{
225 async_done_continue(areq->data, err, poly_cipherpad);
226}
227
228static int poly_cipher(struct aead_request *req)
229{
230 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
231 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
232 struct poly_req *preq = &rctx->u.poly;
233 struct scatterlist *crypt = req->src;
234 int err;
235
236 if (rctx->cryptlen == req->cryptlen) /* encrypting */
237 crypt = req->dst;
238
Herbert Xu74790922015-07-16 12:35:08 +0800239 crypt = scatterwalk_ffwd(rctx->src, crypt, req->assoclen);
240
Eric Biggers7545b6c2019-05-31 11:12:30 -0700241 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200242 poly_cipher_done, req);
243 ahash_request_set_tfm(&preq->req, ctx->poly);
244 ahash_request_set_crypt(&preq->req, crypt, NULL, rctx->cryptlen);
245
246 err = crypto_ahash_update(&preq->req);
247 if (err)
248 return err;
249
250 return poly_cipherpad(req);
251}
252
253static void poly_adpad_done(struct crypto_async_request *areq, int err)
254{
255 async_done_continue(areq->data, err, poly_cipher);
256}
257
258static int poly_adpad(struct aead_request *req)
259{
260 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
261 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
262 struct poly_req *preq = &rctx->u.poly;
Eric Biggers76cadf22019-06-02 22:46:34 -0700263 unsigned int padlen;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200264 int err;
265
Eric Biggers76cadf22019-06-02 22:46:34 -0700266 padlen = -rctx->assoclen % POLY1305_BLOCK_SIZE;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200267 memset(preq->pad, 0, sizeof(preq->pad));
Eric Biggers76cadf22019-06-02 22:46:34 -0700268 sg_init_one(preq->src, preq->pad, padlen);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200269
Eric Biggers7545b6c2019-05-31 11:12:30 -0700270 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200271 poly_adpad_done, req);
272 ahash_request_set_tfm(&preq->req, ctx->poly);
273 ahash_request_set_crypt(&preq->req, preq->src, NULL, padlen);
274
275 err = crypto_ahash_update(&preq->req);
276 if (err)
277 return err;
278
279 return poly_cipher(req);
280}
281
282static void poly_ad_done(struct crypto_async_request *areq, int err)
283{
284 async_done_continue(areq->data, err, poly_adpad);
285}
286
287static int poly_ad(struct aead_request *req)
288{
289 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
290 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
291 struct poly_req *preq = &rctx->u.poly;
292 int err;
293
Eric Biggers7545b6c2019-05-31 11:12:30 -0700294 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200295 poly_ad_done, req);
296 ahash_request_set_tfm(&preq->req, ctx->poly);
Herbert Xu74790922015-07-16 12:35:08 +0800297 ahash_request_set_crypt(&preq->req, req->src, NULL, rctx->assoclen);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200298
299 err = crypto_ahash_update(&preq->req);
300 if (err)
301 return err;
302
303 return poly_adpad(req);
304}
305
Martin Willic2b7b20a2015-06-16 11:34:16 +0200306static void poly_setkey_done(struct crypto_async_request *areq, int err)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200307{
308 async_done_continue(areq->data, err, poly_ad);
309}
310
Martin Willic2b7b20a2015-06-16 11:34:16 +0200311static int poly_setkey(struct aead_request *req)
312{
313 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
314 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
315 struct poly_req *preq = &rctx->u.poly;
316 int err;
317
Eric Biggers76cadf22019-06-02 22:46:34 -0700318 sg_init_one(preq->src, rctx->key, sizeof(rctx->key));
Martin Willic2b7b20a2015-06-16 11:34:16 +0200319
Eric Biggers7545b6c2019-05-31 11:12:30 -0700320 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willic2b7b20a2015-06-16 11:34:16 +0200321 poly_setkey_done, req);
322 ahash_request_set_tfm(&preq->req, ctx->poly);
323 ahash_request_set_crypt(&preq->req, preq->src, NULL, sizeof(rctx->key));
324
325 err = crypto_ahash_update(&preq->req);
326 if (err)
327 return err;
328
329 return poly_ad(req);
330}
331
332static void poly_init_done(struct crypto_async_request *areq, int err)
333{
334 async_done_continue(areq->data, err, poly_setkey);
335}
336
Martin Willi71ebc4d2015-06-01 13:44:00 +0200337static int poly_init(struct aead_request *req)
338{
339 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
340 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
341 struct poly_req *preq = &rctx->u.poly;
342 int err;
343
Eric Biggers7545b6c2019-05-31 11:12:30 -0700344 ahash_request_set_callback(&preq->req, rctx->flags,
Martin Willi71ebc4d2015-06-01 13:44:00 +0200345 poly_init_done, req);
346 ahash_request_set_tfm(&preq->req, ctx->poly);
347
348 err = crypto_ahash_init(&preq->req);
349 if (err)
350 return err;
351
Martin Willic2b7b20a2015-06-16 11:34:16 +0200352 return poly_setkey(req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200353}
354
355static void poly_genkey_done(struct crypto_async_request *areq, int err)
356{
Martin Willic2b7b20a2015-06-16 11:34:16 +0200357 async_done_continue(areq->data, err, poly_init);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200358}
359
360static int poly_genkey(struct aead_request *req)
361{
Herbert Xu74790922015-07-16 12:35:08 +0800362 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
363 struct chachapoly_ctx *ctx = crypto_aead_ctx(tfm);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200364 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
365 struct chacha_req *creq = &rctx->u.chacha;
366 int err;
367
Herbert Xu74790922015-07-16 12:35:08 +0800368 rctx->assoclen = req->assoclen;
369
370 if (crypto_aead_ivsize(tfm) == 8) {
371 if (rctx->assoclen < 8)
372 return -EINVAL;
373 rctx->assoclen -= 8;
374 }
375
Martin Willic2b7b20a2015-06-16 11:34:16 +0200376 memset(rctx->key, 0, sizeof(rctx->key));
Eric Biggers76cadf22019-06-02 22:46:34 -0700377 sg_init_one(creq->src, rctx->key, sizeof(rctx->key));
Martin Willi71ebc4d2015-06-01 13:44:00 +0200378
379 chacha_iv(creq->iv, req, 0);
380
Eric Biggers7545b6c2019-05-31 11:12:30 -0700381 skcipher_request_set_callback(&creq->req, rctx->flags,
Herbert Xu1e1f0062016-07-12 13:17:40 +0800382 poly_genkey_done, req);
383 skcipher_request_set_tfm(&creq->req, ctx->chacha);
384 skcipher_request_set_crypt(&creq->req, creq->src, creq->src,
385 POLY1305_KEY_SIZE, creq->iv);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200386
Herbert Xu1e1f0062016-07-12 13:17:40 +0800387 err = crypto_skcipher_decrypt(&creq->req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200388 if (err)
389 return err;
390
Martin Willic2b7b20a2015-06-16 11:34:16 +0200391 return poly_init(req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200392}
393
394static void chacha_encrypt_done(struct crypto_async_request *areq, int err)
395{
396 async_done_continue(areq->data, err, poly_genkey);
397}
398
399static int chacha_encrypt(struct aead_request *req)
400{
401 struct chachapoly_ctx *ctx = crypto_aead_ctx(crypto_aead_reqtfm(req));
402 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
403 struct chacha_req *creq = &rctx->u.chacha;
Herbert Xu74790922015-07-16 12:35:08 +0800404 struct scatterlist *src, *dst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200405 int err;
406
Jason A. Donenfeld161151d2015-12-06 02:51:38 +0100407 if (req->cryptlen == 0)
408 goto skip;
409
Martin Willi71ebc4d2015-06-01 13:44:00 +0200410 chacha_iv(creq->iv, req, 1);
411
Herbert Xu74790922015-07-16 12:35:08 +0800412 src = scatterwalk_ffwd(rctx->src, req->src, req->assoclen);
413 dst = src;
Eric Biggers76cadf22019-06-02 22:46:34 -0700414 if (req->src != req->dst)
Herbert Xu74790922015-07-16 12:35:08 +0800415 dst = scatterwalk_ffwd(rctx->dst, req->dst, req->assoclen);
Herbert Xu74790922015-07-16 12:35:08 +0800416
Eric Biggers7545b6c2019-05-31 11:12:30 -0700417 skcipher_request_set_callback(&creq->req, rctx->flags,
Herbert Xu1e1f0062016-07-12 13:17:40 +0800418 chacha_encrypt_done, req);
419 skcipher_request_set_tfm(&creq->req, ctx->chacha);
420 skcipher_request_set_crypt(&creq->req, src, dst,
421 req->cryptlen, creq->iv);
422 err = crypto_skcipher_encrypt(&creq->req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200423 if (err)
424 return err;
425
Jason A. Donenfeld161151d2015-12-06 02:51:38 +0100426skip:
Martin Willi71ebc4d2015-06-01 13:44:00 +0200427 return poly_genkey(req);
428}
429
430static int chachapoly_encrypt(struct aead_request *req)
431{
432 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
433
434 rctx->cryptlen = req->cryptlen;
Eric Biggers7545b6c2019-05-31 11:12:30 -0700435 rctx->flags = aead_request_flags(req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200436
437 /* encrypt call chain:
438 * - chacha_encrypt/done()
Martin Willic2b7b20a2015-06-16 11:34:16 +0200439 * - poly_genkey/done()
Martin Willi71ebc4d2015-06-01 13:44:00 +0200440 * - poly_init/done()
Martin Willic2b7b20a2015-06-16 11:34:16 +0200441 * - poly_setkey/done()
Martin Willi71ebc4d2015-06-01 13:44:00 +0200442 * - poly_ad/done()
443 * - poly_adpad/done()
444 * - poly_cipher/done()
445 * - poly_cipherpad/done()
446 * - poly_tail/done/continue()
447 * - poly_copy_tag()
448 */
449 return chacha_encrypt(req);
450}
451
452static int chachapoly_decrypt(struct aead_request *req)
453{
454 struct chachapoly_req_ctx *rctx = aead_request_ctx(req);
455
Martin Willi71ebc4d2015-06-01 13:44:00 +0200456 rctx->cryptlen = req->cryptlen - POLY1305_DIGEST_SIZE;
Eric Biggers7545b6c2019-05-31 11:12:30 -0700457 rctx->flags = aead_request_flags(req);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200458
459 /* decrypt call chain:
Martin Willic2b7b20a2015-06-16 11:34:16 +0200460 * - poly_genkey/done()
Martin Willi71ebc4d2015-06-01 13:44:00 +0200461 * - poly_init/done()
Martin Willic2b7b20a2015-06-16 11:34:16 +0200462 * - poly_setkey/done()
Martin Willi71ebc4d2015-06-01 13:44:00 +0200463 * - poly_ad/done()
464 * - poly_adpad/done()
465 * - poly_cipher/done()
466 * - poly_cipherpad/done()
467 * - poly_tail/done/continue()
468 * - chacha_decrypt/done()
469 * - poly_verify_tag()
470 */
471 return poly_genkey(req);
472}
473
474static int chachapoly_setkey(struct crypto_aead *aead, const u8 *key,
475 unsigned int keylen)
476{
477 struct chachapoly_ctx *ctx = crypto_aead_ctx(aead);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200478
Eric Biggers1ca1b912018-11-16 17:26:21 -0800479 if (keylen != ctx->saltlen + CHACHA_KEY_SIZE)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200480 return -EINVAL;
481
482 keylen -= ctx->saltlen;
483 memcpy(ctx->salt, key + keylen, ctx->saltlen);
484
Herbert Xu1e1f0062016-07-12 13:17:40 +0800485 crypto_skcipher_clear_flags(ctx->chacha, CRYPTO_TFM_REQ_MASK);
486 crypto_skcipher_set_flags(ctx->chacha, crypto_aead_get_flags(aead) &
487 CRYPTO_TFM_REQ_MASK);
Eric Biggersaf5034e2019-12-30 21:19:38 -0600488 return crypto_skcipher_setkey(ctx->chacha, key, keylen);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200489}
490
491static int chachapoly_setauthsize(struct crypto_aead *tfm,
492 unsigned int authsize)
493{
494 if (authsize != POLY1305_DIGEST_SIZE)
495 return -EINVAL;
496
497 return 0;
498}
499
Herbert Xu74790922015-07-16 12:35:08 +0800500static int chachapoly_init(struct crypto_aead *tfm)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200501{
Herbert Xu74790922015-07-16 12:35:08 +0800502 struct aead_instance *inst = aead_alg_instance(tfm);
503 struct chachapoly_instance_ctx *ictx = aead_instance_ctx(inst);
504 struct chachapoly_ctx *ctx = crypto_aead_ctx(tfm);
Herbert Xu1e1f0062016-07-12 13:17:40 +0800505 struct crypto_skcipher *chacha;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200506 struct crypto_ahash *poly;
507 unsigned long align;
508
509 poly = crypto_spawn_ahash(&ictx->poly);
510 if (IS_ERR(poly))
511 return PTR_ERR(poly);
512
Eric Biggers60425a82016-10-28 09:52:19 -0700513 chacha = crypto_spawn_skcipher(&ictx->chacha);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200514 if (IS_ERR(chacha)) {
515 crypto_free_ahash(poly);
516 return PTR_ERR(chacha);
517 }
518
519 ctx->chacha = chacha;
520 ctx->poly = poly;
521 ctx->saltlen = ictx->saltlen;
522
Herbert Xu74790922015-07-16 12:35:08 +0800523 align = crypto_aead_alignmask(tfm);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200524 align &= ~(crypto_tfm_ctx_alignment() - 1);
Herbert Xu74790922015-07-16 12:35:08 +0800525 crypto_aead_set_reqsize(
526 tfm,
527 align + offsetof(struct chachapoly_req_ctx, u) +
528 max(offsetof(struct chacha_req, req) +
Herbert Xu1e1f0062016-07-12 13:17:40 +0800529 sizeof(struct skcipher_request) +
530 crypto_skcipher_reqsize(chacha),
Herbert Xu74790922015-07-16 12:35:08 +0800531 offsetof(struct poly_req, req) +
532 sizeof(struct ahash_request) +
533 crypto_ahash_reqsize(poly)));
Martin Willi71ebc4d2015-06-01 13:44:00 +0200534
535 return 0;
536}
537
Herbert Xu74790922015-07-16 12:35:08 +0800538static void chachapoly_exit(struct crypto_aead *tfm)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200539{
Herbert Xu74790922015-07-16 12:35:08 +0800540 struct chachapoly_ctx *ctx = crypto_aead_ctx(tfm);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200541
542 crypto_free_ahash(ctx->poly);
Herbert Xu1e1f0062016-07-12 13:17:40 +0800543 crypto_free_skcipher(ctx->chacha);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200544}
545
Herbert Xu74790922015-07-16 12:35:08 +0800546static void chachapoly_free(struct aead_instance *inst)
547{
548 struct chachapoly_instance_ctx *ctx = aead_instance_ctx(inst);
549
550 crypto_drop_skcipher(&ctx->chacha);
551 crypto_drop_ahash(&ctx->poly);
552 kfree(inst);
553}
554
555static int chachapoly_create(struct crypto_template *tmpl, struct rtattr **tb,
556 const char *name, unsigned int ivsize)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200557{
Eric Biggersb9f76dd2020-01-02 19:58:45 -0800558 u32 mask;
Herbert Xu74790922015-07-16 12:35:08 +0800559 struct aead_instance *inst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200560 struct chachapoly_instance_ctx *ctx;
Eric Biggersc2825862020-01-02 19:58:59 -0800561 struct skcipher_alg *chacha;
562 struct hash_alg_common *poly;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200563 int err;
564
565 if (ivsize > CHACHAPOLY_IV_SIZE)
Herbert Xu74790922015-07-16 12:35:08 +0800566 return -EINVAL;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200567
Eric Biggers7bcb2c92020-07-09 23:20:38 -0700568 err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_AEAD, &mask);
569 if (err)
570 return err;
Eric Biggersb9f76dd2020-01-02 19:58:45 -0800571
Martin Willi71ebc4d2015-06-01 13:44:00 +0200572 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
573 if (!inst)
Eric Biggersc2825862020-01-02 19:58:59 -0800574 return -ENOMEM;
Herbert Xu74790922015-07-16 12:35:08 +0800575 ctx = aead_instance_ctx(inst);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200576 ctx->saltlen = CHACHAPOLY_IV_SIZE - ivsize;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200577
Eric Biggersb9f76dd2020-01-02 19:58:45 -0800578 err = crypto_grab_skcipher(&ctx->chacha, aead_crypto_instance(inst),
Eric Biggersc2825862020-01-02 19:58:59 -0800579 crypto_attr_alg_name(tb[1]), 0, mask);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200580 if (err)
Eric Biggersc2825862020-01-02 19:58:59 -0800581 goto err_free_inst;
Herbert Xu1e1f0062016-07-12 13:17:40 +0800582 chacha = crypto_spawn_skcipher_alg(&ctx->chacha);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200583
Eric Biggersc2825862020-01-02 19:58:59 -0800584 err = crypto_grab_ahash(&ctx->poly, aead_crypto_instance(inst),
585 crypto_attr_alg_name(tb[2]), 0, mask);
586 if (err)
587 goto err_free_inst;
588 poly = crypto_spawn_ahash_alg(&ctx->poly);
589
Martin Willi71ebc4d2015-06-01 13:44:00 +0200590 err = -EINVAL;
Eric Biggersc2825862020-01-02 19:58:59 -0800591 if (poly->digestsize != POLY1305_DIGEST_SIZE)
592 goto err_free_inst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200593 /* Need 16-byte IV size, including Initial Block Counter value */
Eric Biggers1ca1b912018-11-16 17:26:21 -0800594 if (crypto_skcipher_alg_ivsize(chacha) != CHACHA_IV_SIZE)
Eric Biggersc2825862020-01-02 19:58:59 -0800595 goto err_free_inst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200596 /* Not a stream cipher? */
Herbert Xu1e1f0062016-07-12 13:17:40 +0800597 if (chacha->base.cra_blocksize != 1)
Eric Biggersc2825862020-01-02 19:58:59 -0800598 goto err_free_inst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200599
600 err = -ENAMETOOLONG;
Herbert Xu74790922015-07-16 12:35:08 +0800601 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME,
Eric Biggers5e27f382019-03-31 13:04:16 -0700602 "%s(%s,%s)", name, chacha->base.cra_name,
Eric Biggersc2825862020-01-02 19:58:59 -0800603 poly->base.cra_name) >= CRYPTO_MAX_ALG_NAME)
604 goto err_free_inst;
Herbert Xu74790922015-07-16 12:35:08 +0800605 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
Herbert Xu1e1f0062016-07-12 13:17:40 +0800606 "%s(%s,%s)", name, chacha->base.cra_driver_name,
Eric Biggersc2825862020-01-02 19:58:59 -0800607 poly->base.cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
608 goto err_free_inst;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200609
Herbert Xu1e1f0062016-07-12 13:17:40 +0800610 inst->alg.base.cra_priority = (chacha->base.cra_priority +
Eric Biggersc2825862020-01-02 19:58:59 -0800611 poly->base.cra_priority) / 2;
Herbert Xu74790922015-07-16 12:35:08 +0800612 inst->alg.base.cra_blocksize = 1;
Herbert Xu1e1f0062016-07-12 13:17:40 +0800613 inst->alg.base.cra_alignmask = chacha->base.cra_alignmask |
Eric Biggersc2825862020-01-02 19:58:59 -0800614 poly->base.cra_alignmask;
Herbert Xu74790922015-07-16 12:35:08 +0800615 inst->alg.base.cra_ctxsize = sizeof(struct chachapoly_ctx) +
616 ctx->saltlen;
617 inst->alg.ivsize = ivsize;
Herbert Xu1e1f0062016-07-12 13:17:40 +0800618 inst->alg.chunksize = crypto_skcipher_alg_chunksize(chacha);
Herbert Xu74790922015-07-16 12:35:08 +0800619 inst->alg.maxauthsize = POLY1305_DIGEST_SIZE;
620 inst->alg.init = chachapoly_init;
621 inst->alg.exit = chachapoly_exit;
622 inst->alg.encrypt = chachapoly_encrypt;
623 inst->alg.decrypt = chachapoly_decrypt;
624 inst->alg.setkey = chachapoly_setkey;
625 inst->alg.setauthsize = chachapoly_setauthsize;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200626
Herbert Xu74790922015-07-16 12:35:08 +0800627 inst->free = chachapoly_free;
628
629 err = aead_register_instance(tmpl, inst);
Eric Biggersc2825862020-01-02 19:58:59 -0800630 if (err) {
Martin Willi71ebc4d2015-06-01 13:44:00 +0200631err_free_inst:
Eric Biggersc2825862020-01-02 19:58:59 -0800632 chachapoly_free(inst);
633 }
634 return err;
Martin Willi71ebc4d2015-06-01 13:44:00 +0200635}
636
Herbert Xu74790922015-07-16 12:35:08 +0800637static int rfc7539_create(struct crypto_template *tmpl, struct rtattr **tb)
Martin Willi71ebc4d2015-06-01 13:44:00 +0200638{
Herbert Xu74790922015-07-16 12:35:08 +0800639 return chachapoly_create(tmpl, tb, "rfc7539", 12);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200640}
641
Herbert Xu74790922015-07-16 12:35:08 +0800642static int rfc7539esp_create(struct crypto_template *tmpl, struct rtattr **tb)
Martin Willi4db4ad22015-06-01 13:44:02 +0200643{
Herbert Xu74790922015-07-16 12:35:08 +0800644 return chachapoly_create(tmpl, tb, "rfc7539esp", 8);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200645}
646
Xiongfeng Wang1a5e02b2019-01-18 13:58:15 +0800647static struct crypto_template rfc7539_tmpls[] = {
648 {
649 .name = "rfc7539",
650 .create = rfc7539_create,
651 .module = THIS_MODULE,
652 }, {
653 .name = "rfc7539esp",
654 .create = rfc7539esp_create,
655 .module = THIS_MODULE,
656 },
Martin Willi4db4ad22015-06-01 13:44:02 +0200657};
658
Martin Willi71ebc4d2015-06-01 13:44:00 +0200659static int __init chacha20poly1305_module_init(void)
660{
Xiongfeng Wang1a5e02b2019-01-18 13:58:15 +0800661 return crypto_register_templates(rfc7539_tmpls,
662 ARRAY_SIZE(rfc7539_tmpls));
Martin Willi71ebc4d2015-06-01 13:44:00 +0200663}
664
665static void __exit chacha20poly1305_module_exit(void)
666{
Xiongfeng Wang1a5e02b2019-01-18 13:58:15 +0800667 crypto_unregister_templates(rfc7539_tmpls,
668 ARRAY_SIZE(rfc7539_tmpls));
Martin Willi71ebc4d2015-06-01 13:44:00 +0200669}
670
Eric Biggersc4741b22019-04-11 21:57:42 -0700671subsys_initcall(chacha20poly1305_module_init);
Martin Willi71ebc4d2015-06-01 13:44:00 +0200672module_exit(chacha20poly1305_module_exit);
673
674MODULE_LICENSE("GPL");
675MODULE_AUTHOR("Martin Willi <martin@strongswan.org>");
676MODULE_DESCRIPTION("ChaCha20-Poly1305 AEAD");
Martin Willi71ebc4d2015-06-01 13:44:00 +0200677MODULE_ALIAS_CRYPTO("rfc7539");
Martin Willi4db4ad22015-06-01 13:44:02 +0200678MODULE_ALIAS_CRYPTO("rfc7539esp");