Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ChaCha20 256-bit cipher algorithm, RFC7539 |
| 3 | * |
| 4 | * Copyright (C) 2015 Martin Willi |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
| 11 | |
Eric Biggers | dbd872a | 2017-11-22 11:51:36 -0800 | [diff] [blame] | 12 | #include <asm/unaligned.h> |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 13 | #include <crypto/algapi.h> |
Martin Willi | 31d7247 | 2015-07-16 19:14:00 +0200 | [diff] [blame] | 14 | #include <crypto/chacha20.h> |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 15 | #include <crypto/internal/skcipher.h> |
| 16 | #include <linux/module.h> |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 17 | |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 18 | static void chacha20_docrypt(u32 *state, u8 *dst, const u8 *src, |
| 19 | unsigned int bytes) |
| 20 | { |
Eric Biggers | 9f480fa | 2017-11-22 11:51:39 -0800 | [diff] [blame] | 21 | u32 stream[CHACHA20_BLOCK_WORDS]; |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 22 | |
| 23 | if (dst != src) |
| 24 | memcpy(dst, src, bytes); |
| 25 | |
| 26 | while (bytes >= CHACHA20_BLOCK_SIZE) { |
| 27 | chacha20_block(state, stream); |
Eric Biggers | 9f480fa | 2017-11-22 11:51:39 -0800 | [diff] [blame] | 28 | crypto_xor(dst, (const u8 *)stream, CHACHA20_BLOCK_SIZE); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 29 | bytes -= CHACHA20_BLOCK_SIZE; |
| 30 | dst += CHACHA20_BLOCK_SIZE; |
| 31 | } |
| 32 | if (bytes) { |
| 33 | chacha20_block(state, stream); |
Eric Biggers | 9f480fa | 2017-11-22 11:51:39 -0800 | [diff] [blame] | 34 | crypto_xor(dst, (const u8 *)stream, bytes); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 35 | } |
| 36 | } |
| 37 | |
Martin Willi | 31d7247 | 2015-07-16 19:14:00 +0200 | [diff] [blame] | 38 | void crypto_chacha20_init(u32 *state, struct chacha20_ctx *ctx, u8 *iv) |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 39 | { |
Eric Biggers | ecf3220 | 2017-11-22 11:51:35 -0800 | [diff] [blame] | 40 | state[0] = 0x61707865; /* "expa" */ |
| 41 | state[1] = 0x3320646e; /* "nd 3" */ |
| 42 | state[2] = 0x79622d32; /* "2-by" */ |
| 43 | state[3] = 0x6b206574; /* "te k" */ |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 44 | state[4] = ctx->key[0]; |
| 45 | state[5] = ctx->key[1]; |
| 46 | state[6] = ctx->key[2]; |
| 47 | state[7] = ctx->key[3]; |
| 48 | state[8] = ctx->key[4]; |
| 49 | state[9] = ctx->key[5]; |
| 50 | state[10] = ctx->key[6]; |
| 51 | state[11] = ctx->key[7]; |
Eric Biggers | dbd872a | 2017-11-22 11:51:36 -0800 | [diff] [blame] | 52 | state[12] = get_unaligned_le32(iv + 0); |
| 53 | state[13] = get_unaligned_le32(iv + 4); |
| 54 | state[14] = get_unaligned_le32(iv + 8); |
| 55 | state[15] = get_unaligned_le32(iv + 12); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 56 | } |
Martin Willi | 31d7247 | 2015-07-16 19:14:00 +0200 | [diff] [blame] | 57 | EXPORT_SYMBOL_GPL(crypto_chacha20_init); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 58 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 59 | int crypto_chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key, |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 60 | unsigned int keysize) |
| 61 | { |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 62 | struct chacha20_ctx *ctx = crypto_skcipher_ctx(tfm); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 63 | int i; |
| 64 | |
| 65 | if (keysize != CHACHA20_KEY_SIZE) |
| 66 | return -EINVAL; |
| 67 | |
| 68 | for (i = 0; i < ARRAY_SIZE(ctx->key); i++) |
Eric Biggers | dbd872a | 2017-11-22 11:51:36 -0800 | [diff] [blame] | 69 | ctx->key[i] = get_unaligned_le32(key + i * sizeof(u32)); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 70 | |
| 71 | return 0; |
| 72 | } |
Martin Willi | 31d7247 | 2015-07-16 19:14:00 +0200 | [diff] [blame] | 73 | EXPORT_SYMBOL_GPL(crypto_chacha20_setkey); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 74 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 75 | int crypto_chacha20_crypt(struct skcipher_request *req) |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 76 | { |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 77 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 78 | struct chacha20_ctx *ctx = crypto_skcipher_ctx(tfm); |
| 79 | struct skcipher_walk walk; |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 80 | u32 state[16]; |
| 81 | int err; |
| 82 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 83 | err = skcipher_walk_virt(&walk, req, true); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 84 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 85 | crypto_chacha20_init(state, ctx, walk.iv); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 86 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 87 | while (walk.nbytes > 0) { |
Ard Biesheuvel | 4de4372 | 2017-08-14 14:28:14 +0100 | [diff] [blame] | 88 | unsigned int nbytes = walk.nbytes; |
| 89 | |
| 90 | if (nbytes < walk.total) |
| 91 | nbytes = round_down(nbytes, walk.stride); |
| 92 | |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 93 | chacha20_docrypt(state, walk.dst.virt.addr, walk.src.virt.addr, |
Ard Biesheuvel | 4de4372 | 2017-08-14 14:28:14 +0100 | [diff] [blame] | 94 | nbytes); |
| 95 | err = skcipher_walk_done(&walk, walk.nbytes - nbytes); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | return err; |
| 99 | } |
Martin Willi | 31d7247 | 2015-07-16 19:14:00 +0200 | [diff] [blame] | 100 | EXPORT_SYMBOL_GPL(crypto_chacha20_crypt); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 101 | |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 102 | static struct skcipher_alg alg = { |
| 103 | .base.cra_name = "chacha20", |
| 104 | .base.cra_driver_name = "chacha20-generic", |
| 105 | .base.cra_priority = 100, |
| 106 | .base.cra_blocksize = 1, |
| 107 | .base.cra_ctxsize = sizeof(struct chacha20_ctx), |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 108 | .base.cra_module = THIS_MODULE, |
| 109 | |
| 110 | .min_keysize = CHACHA20_KEY_SIZE, |
| 111 | .max_keysize = CHACHA20_KEY_SIZE, |
| 112 | .ivsize = CHACHA20_IV_SIZE, |
| 113 | .chunksize = CHACHA20_BLOCK_SIZE, |
| 114 | .setkey = crypto_chacha20_setkey, |
| 115 | .encrypt = crypto_chacha20_crypt, |
| 116 | .decrypt = crypto_chacha20_crypt, |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | static int __init chacha20_generic_mod_init(void) |
| 120 | { |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 121 | return crypto_register_skcipher(&alg); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static void __exit chacha20_generic_mod_fini(void) |
| 125 | { |
Ard Biesheuvel | 9ae433b | 2016-12-09 14:33:51 +0000 | [diff] [blame] | 126 | crypto_unregister_skcipher(&alg); |
Martin Willi | c08d0e6 | 2015-06-01 13:43:56 +0200 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | module_init(chacha20_generic_mod_init); |
| 130 | module_exit(chacha20_generic_mod_fini); |
| 131 | |
| 132 | MODULE_LICENSE("GPL"); |
| 133 | MODULE_AUTHOR("Martin Willi <martin@strongswan.org>"); |
| 134 | MODULE_DESCRIPTION("chacha20 cipher algorithm"); |
| 135 | MODULE_ALIAS_CRYPTO("chacha20"); |
| 136 | MODULE_ALIAS_CRYPTO("chacha20-generic"); |