blob: 1ce0019c059c3915913e2917c19a5157ec5cd0f7 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Eric Biggers8b65f342018-12-04 22:20:03 -08002/*
3 * x64 SIMD accelerated ChaCha and XChaCha stream ciphers,
4 * including ChaCha20 (RFC7539)
5 *
6 * Copyright (C) 2015 Martin Willi
Eric Biggers8b65f342018-12-04 22:20:03 -08007 */
8
9#include <crypto/algapi.h>
10#include <crypto/chacha.h>
Eric Biggersf2abe0d2019-03-12 22:12:48 -070011#include <crypto/internal/simd.h>
Eric Biggers8b65f342018-12-04 22:20:03 -080012#include <crypto/internal/skcipher.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
Eric Biggers8b65f342018-12-04 22:20:03 -080015#include <asm/simd.h>
16
17#define CHACHA_STATE_ALIGN 16
18
19asmlinkage void chacha_block_xor_ssse3(u32 *state, u8 *dst, const u8 *src,
20 unsigned int len, int nrounds);
21asmlinkage void chacha_4block_xor_ssse3(u32 *state, u8 *dst, const u8 *src,
22 unsigned int len, int nrounds);
23asmlinkage void hchacha_block_ssse3(const u32 *state, u32 *out, int nrounds);
24#ifdef CONFIG_AS_AVX2
25asmlinkage void chacha_2block_xor_avx2(u32 *state, u8 *dst, const u8 *src,
26 unsigned int len, int nrounds);
27asmlinkage void chacha_4block_xor_avx2(u32 *state, u8 *dst, const u8 *src,
28 unsigned int len, int nrounds);
29asmlinkage void chacha_8block_xor_avx2(u32 *state, u8 *dst, const u8 *src,
30 unsigned int len, int nrounds);
31static bool chacha_use_avx2;
32#ifdef CONFIG_AS_AVX512
33asmlinkage void chacha_2block_xor_avx512vl(u32 *state, u8 *dst, const u8 *src,
34 unsigned int len, int nrounds);
35asmlinkage void chacha_4block_xor_avx512vl(u32 *state, u8 *dst, const u8 *src,
36 unsigned int len, int nrounds);
37asmlinkage void chacha_8block_xor_avx512vl(u32 *state, u8 *dst, const u8 *src,
38 unsigned int len, int nrounds);
39static bool chacha_use_avx512vl;
40#endif
41#endif
42
43static unsigned int chacha_advance(unsigned int len, unsigned int maxblocks)
44{
45 len = min(len, maxblocks * CHACHA_BLOCK_SIZE);
46 return round_up(len, CHACHA_BLOCK_SIZE) / CHACHA_BLOCK_SIZE;
47}
48
49static void chacha_dosimd(u32 *state, u8 *dst, const u8 *src,
50 unsigned int bytes, int nrounds)
51{
52#ifdef CONFIG_AS_AVX2
53#ifdef CONFIG_AS_AVX512
54 if (chacha_use_avx512vl) {
55 while (bytes >= CHACHA_BLOCK_SIZE * 8) {
56 chacha_8block_xor_avx512vl(state, dst, src, bytes,
57 nrounds);
58 bytes -= CHACHA_BLOCK_SIZE * 8;
59 src += CHACHA_BLOCK_SIZE * 8;
60 dst += CHACHA_BLOCK_SIZE * 8;
61 state[12] += 8;
62 }
63 if (bytes > CHACHA_BLOCK_SIZE * 4) {
64 chacha_8block_xor_avx512vl(state, dst, src, bytes,
65 nrounds);
66 state[12] += chacha_advance(bytes, 8);
67 return;
68 }
69 if (bytes > CHACHA_BLOCK_SIZE * 2) {
70 chacha_4block_xor_avx512vl(state, dst, src, bytes,
71 nrounds);
72 state[12] += chacha_advance(bytes, 4);
73 return;
74 }
75 if (bytes) {
76 chacha_2block_xor_avx512vl(state, dst, src, bytes,
77 nrounds);
78 state[12] += chacha_advance(bytes, 2);
79 return;
80 }
81 }
82#endif
83 if (chacha_use_avx2) {
84 while (bytes >= CHACHA_BLOCK_SIZE * 8) {
85 chacha_8block_xor_avx2(state, dst, src, bytes, nrounds);
86 bytes -= CHACHA_BLOCK_SIZE * 8;
87 src += CHACHA_BLOCK_SIZE * 8;
88 dst += CHACHA_BLOCK_SIZE * 8;
89 state[12] += 8;
90 }
91 if (bytes > CHACHA_BLOCK_SIZE * 4) {
92 chacha_8block_xor_avx2(state, dst, src, bytes, nrounds);
93 state[12] += chacha_advance(bytes, 8);
94 return;
95 }
96 if (bytes > CHACHA_BLOCK_SIZE * 2) {
97 chacha_4block_xor_avx2(state, dst, src, bytes, nrounds);
98 state[12] += chacha_advance(bytes, 4);
99 return;
100 }
101 if (bytes > CHACHA_BLOCK_SIZE) {
102 chacha_2block_xor_avx2(state, dst, src, bytes, nrounds);
103 state[12] += chacha_advance(bytes, 2);
104 return;
105 }
106 }
107#endif
108 while (bytes >= CHACHA_BLOCK_SIZE * 4) {
109 chacha_4block_xor_ssse3(state, dst, src, bytes, nrounds);
110 bytes -= CHACHA_BLOCK_SIZE * 4;
111 src += CHACHA_BLOCK_SIZE * 4;
112 dst += CHACHA_BLOCK_SIZE * 4;
113 state[12] += 4;
114 }
115 if (bytes > CHACHA_BLOCK_SIZE) {
116 chacha_4block_xor_ssse3(state, dst, src, bytes, nrounds);
117 state[12] += chacha_advance(bytes, 4);
118 return;
119 }
120 if (bytes) {
121 chacha_block_xor_ssse3(state, dst, src, bytes, nrounds);
122 state[12]++;
123 }
124}
125
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800126static int chacha_simd_stream_xor(struct skcipher_walk *walk,
Eric Biggers8b65f342018-12-04 22:20:03 -0800127 struct chacha_ctx *ctx, u8 *iv)
128{
129 u32 *state, state_buf[16 + 2] __aligned(8);
Eric Biggersa033aed2018-12-04 22:20:05 -0800130 int next_yield = 4096; /* bytes until next FPU yield */
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800131 int err = 0;
Eric Biggers8b65f342018-12-04 22:20:03 -0800132
133 BUILD_BUG_ON(CHACHA_STATE_ALIGN != 16);
134 state = PTR_ALIGN(state_buf + 0, CHACHA_STATE_ALIGN);
135
Eric Biggers8b65f342018-12-04 22:20:03 -0800136 crypto_chacha_init(state, ctx, iv);
137
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800138 while (walk->nbytes > 0) {
139 unsigned int nbytes = walk->nbytes;
Eric Biggers8b65f342018-12-04 22:20:03 -0800140
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800141 if (nbytes < walk->total) {
142 nbytes = round_down(nbytes, walk->stride);
Eric Biggersa033aed2018-12-04 22:20:05 -0800143 next_yield -= nbytes;
144 }
Eric Biggers8b65f342018-12-04 22:20:03 -0800145
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800146 chacha_dosimd(state, walk->dst.virt.addr, walk->src.virt.addr,
Eric Biggers8b65f342018-12-04 22:20:03 -0800147 nbytes, ctx->nrounds);
148
Eric Biggersa033aed2018-12-04 22:20:05 -0800149 if (next_yield <= 0) {
150 /* temporarily allow preemption */
151 kernel_fpu_end();
152 kernel_fpu_begin();
153 next_yield = 4096;
154 }
155
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800156 err = skcipher_walk_done(walk, walk->nbytes - nbytes);
Eric Biggers8b65f342018-12-04 22:20:03 -0800157 }
158
159 return err;
160}
161
162static int chacha_simd(struct skcipher_request *req)
163{
164 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
165 struct chacha_ctx *ctx = crypto_skcipher_ctx(tfm);
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800166 struct skcipher_walk walk;
Eric Biggers8b65f342018-12-04 22:20:03 -0800167 int err;
168
Eric Biggersf2abe0d2019-03-12 22:12:48 -0700169 if (req->cryptlen <= CHACHA_BLOCK_SIZE || !crypto_simd_usable())
Eric Biggers8b65f342018-12-04 22:20:03 -0800170 return crypto_chacha_crypt(req);
171
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800172 err = skcipher_walk_virt(&walk, req, true);
173 if (err)
174 return err;
175
Eric Biggers8b65f342018-12-04 22:20:03 -0800176 kernel_fpu_begin();
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800177 err = chacha_simd_stream_xor(&walk, ctx, req->iv);
Eric Biggers8b65f342018-12-04 22:20:03 -0800178 kernel_fpu_end();
179 return err;
180}
181
182static int xchacha_simd(struct skcipher_request *req)
183{
184 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
185 struct chacha_ctx *ctx = crypto_skcipher_ctx(tfm);
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800186 struct skcipher_walk walk;
Eric Biggers8b65f342018-12-04 22:20:03 -0800187 struct chacha_ctx subctx;
188 u32 *state, state_buf[16 + 2] __aligned(8);
189 u8 real_iv[16];
190 int err;
191
Eric Biggersf2abe0d2019-03-12 22:12:48 -0700192 if (req->cryptlen <= CHACHA_BLOCK_SIZE || !crypto_simd_usable())
Eric Biggers8b65f342018-12-04 22:20:03 -0800193 return crypto_xchacha_crypt(req);
194
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800195 err = skcipher_walk_virt(&walk, req, true);
196 if (err)
197 return err;
198
Eric Biggers8b65f342018-12-04 22:20:03 -0800199 BUILD_BUG_ON(CHACHA_STATE_ALIGN != 16);
200 state = PTR_ALIGN(state_buf + 0, CHACHA_STATE_ALIGN);
201 crypto_chacha_init(state, ctx, req->iv);
202
203 kernel_fpu_begin();
204
205 hchacha_block_ssse3(state, subctx.key, ctx->nrounds);
206 subctx.nrounds = ctx->nrounds;
207
208 memcpy(&real_iv[0], req->iv + 24, 8);
209 memcpy(&real_iv[8], req->iv + 16, 8);
Eric Biggersf9c9bdb2018-12-15 12:40:17 -0800210 err = chacha_simd_stream_xor(&walk, &subctx, real_iv);
Eric Biggers8b65f342018-12-04 22:20:03 -0800211
212 kernel_fpu_end();
213
214 return err;
215}
216
217static struct skcipher_alg algs[] = {
218 {
219 .base.cra_name = "chacha20",
220 .base.cra_driver_name = "chacha20-simd",
221 .base.cra_priority = 300,
222 .base.cra_blocksize = 1,
223 .base.cra_ctxsize = sizeof(struct chacha_ctx),
224 .base.cra_module = THIS_MODULE,
225
226 .min_keysize = CHACHA_KEY_SIZE,
227 .max_keysize = CHACHA_KEY_SIZE,
228 .ivsize = CHACHA_IV_SIZE,
229 .chunksize = CHACHA_BLOCK_SIZE,
230 .setkey = crypto_chacha20_setkey,
231 .encrypt = chacha_simd,
232 .decrypt = chacha_simd,
233 }, {
234 .base.cra_name = "xchacha20",
235 .base.cra_driver_name = "xchacha20-simd",
236 .base.cra_priority = 300,
237 .base.cra_blocksize = 1,
238 .base.cra_ctxsize = sizeof(struct chacha_ctx),
239 .base.cra_module = THIS_MODULE,
240
241 .min_keysize = CHACHA_KEY_SIZE,
242 .max_keysize = CHACHA_KEY_SIZE,
243 .ivsize = XCHACHA_IV_SIZE,
244 .chunksize = CHACHA_BLOCK_SIZE,
245 .setkey = crypto_chacha20_setkey,
246 .encrypt = xchacha_simd,
247 .decrypt = xchacha_simd,
Eric Biggers7a507d62018-12-04 22:20:04 -0800248 }, {
249 .base.cra_name = "xchacha12",
250 .base.cra_driver_name = "xchacha12-simd",
251 .base.cra_priority = 300,
252 .base.cra_blocksize = 1,
253 .base.cra_ctxsize = sizeof(struct chacha_ctx),
254 .base.cra_module = THIS_MODULE,
255
256 .min_keysize = CHACHA_KEY_SIZE,
257 .max_keysize = CHACHA_KEY_SIZE,
258 .ivsize = XCHACHA_IV_SIZE,
259 .chunksize = CHACHA_BLOCK_SIZE,
260 .setkey = crypto_chacha12_setkey,
261 .encrypt = xchacha_simd,
262 .decrypt = xchacha_simd,
Eric Biggers8b65f342018-12-04 22:20:03 -0800263 },
264};
265
266static int __init chacha_simd_mod_init(void)
267{
268 if (!boot_cpu_has(X86_FEATURE_SSSE3))
269 return -ENODEV;
270
271#ifdef CONFIG_AS_AVX2
272 chacha_use_avx2 = boot_cpu_has(X86_FEATURE_AVX) &&
273 boot_cpu_has(X86_FEATURE_AVX2) &&
274 cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM, NULL);
275#ifdef CONFIG_AS_AVX512
276 chacha_use_avx512vl = chacha_use_avx2 &&
277 boot_cpu_has(X86_FEATURE_AVX512VL) &&
278 boot_cpu_has(X86_FEATURE_AVX512BW); /* kmovq */
279#endif
280#endif
281 return crypto_register_skciphers(algs, ARRAY_SIZE(algs));
282}
283
284static void __exit chacha_simd_mod_fini(void)
285{
286 crypto_unregister_skciphers(algs, ARRAY_SIZE(algs));
287}
288
289module_init(chacha_simd_mod_init);
290module_exit(chacha_simd_mod_fini);
291
292MODULE_LICENSE("GPL");
293MODULE_AUTHOR("Martin Willi <martin@strongswan.org>");
294MODULE_DESCRIPTION("ChaCha and XChaCha stream ciphers (x64 SIMD accelerated)");
295MODULE_ALIAS_CRYPTO("chacha20");
296MODULE_ALIAS_CRYPTO("chacha20-simd");
297MODULE_ALIAS_CRYPTO("xchacha20");
298MODULE_ALIAS_CRYPTO("xchacha20-simd");
Eric Biggers7a507d62018-12-04 22:20:04 -0800299MODULE_ALIAS_CRYPTO("xchacha12");
300MODULE_ALIAS_CRYPTO("xchacha12-simd");