xref: /openbmc/linux/arch/x86/crypto/aria_gfni_avx512_glue.c (revision 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e)
1*c970d420STaehee Yoo /* SPDX-License-Identifier: GPL-2.0-or-later */
2*c970d420STaehee Yoo /*
3*c970d420STaehee Yoo  * Glue Code for the AVX512/GFNI assembler implementation of the ARIA Cipher
4*c970d420STaehee Yoo  *
5*c970d420STaehee Yoo  * Copyright (c) 2022 Taehee Yoo <ap420073@gmail.com>
6*c970d420STaehee Yoo  */
7*c970d420STaehee Yoo 
8*c970d420STaehee Yoo #include <crypto/algapi.h>
9*c970d420STaehee Yoo #include <crypto/internal/simd.h>
10*c970d420STaehee Yoo #include <crypto/aria.h>
11*c970d420STaehee Yoo #include <linux/crypto.h>
12*c970d420STaehee Yoo #include <linux/err.h>
13*c970d420STaehee Yoo #include <linux/module.h>
14*c970d420STaehee Yoo #include <linux/types.h>
15*c970d420STaehee Yoo 
16*c970d420STaehee Yoo #include "ecb_cbc_helpers.h"
17*c970d420STaehee Yoo #include "aria-avx.h"
18*c970d420STaehee Yoo 
19*c970d420STaehee Yoo asmlinkage void aria_gfni_avx512_encrypt_64way(const void *ctx, u8 *dst,
20*c970d420STaehee Yoo 					       const u8 *src);
21*c970d420STaehee Yoo asmlinkage void aria_gfni_avx512_decrypt_64way(const void *ctx, u8 *dst,
22*c970d420STaehee Yoo 					       const u8 *src);
23*c970d420STaehee Yoo asmlinkage void aria_gfni_avx512_ctr_crypt_64way(const void *ctx, u8 *dst,
24*c970d420STaehee Yoo 						 const u8 *src,
25*c970d420STaehee Yoo 						 u8 *keystream, u8 *iv);
26*c970d420STaehee Yoo 
27*c970d420STaehee Yoo static struct aria_avx_ops aria_ops;
28*c970d420STaehee Yoo 
29*c970d420STaehee Yoo struct aria_avx512_request_ctx {
30*c970d420STaehee Yoo 	u8 keystream[ARIA_GFNI_AVX512_PARALLEL_BLOCK_SIZE];
31*c970d420STaehee Yoo };
32*c970d420STaehee Yoo 
ecb_do_encrypt(struct skcipher_request * req,const u32 * rkey)33*c970d420STaehee Yoo static int ecb_do_encrypt(struct skcipher_request *req, const u32 *rkey)
34*c970d420STaehee Yoo {
35*c970d420STaehee Yoo 	ECB_WALK_START(req, ARIA_BLOCK_SIZE, ARIA_AESNI_PARALLEL_BLOCKS);
36*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_GFNI_AVX512_PARALLEL_BLOCKS, aria_ops.aria_encrypt_64way);
37*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_AESNI_AVX2_PARALLEL_BLOCKS, aria_ops.aria_encrypt_32way);
38*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_AESNI_PARALLEL_BLOCKS, aria_ops.aria_encrypt_16way);
39*c970d420STaehee Yoo 	ECB_BLOCK(1, aria_encrypt);
40*c970d420STaehee Yoo 	ECB_WALK_END();
41*c970d420STaehee Yoo }
42*c970d420STaehee Yoo 
ecb_do_decrypt(struct skcipher_request * req,const u32 * rkey)43*c970d420STaehee Yoo static int ecb_do_decrypt(struct skcipher_request *req, const u32 *rkey)
44*c970d420STaehee Yoo {
45*c970d420STaehee Yoo 	ECB_WALK_START(req, ARIA_BLOCK_SIZE, ARIA_AESNI_PARALLEL_BLOCKS);
46*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_GFNI_AVX512_PARALLEL_BLOCKS, aria_ops.aria_decrypt_64way);
47*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_AESNI_AVX2_PARALLEL_BLOCKS, aria_ops.aria_decrypt_32way);
48*c970d420STaehee Yoo 	ECB_BLOCK(ARIA_AESNI_PARALLEL_BLOCKS, aria_ops.aria_decrypt_16way);
49*c970d420STaehee Yoo 	ECB_BLOCK(1, aria_decrypt);
50*c970d420STaehee Yoo 	ECB_WALK_END();
51*c970d420STaehee Yoo }
52*c970d420STaehee Yoo 
aria_avx512_ecb_encrypt(struct skcipher_request * req)53*c970d420STaehee Yoo static int aria_avx512_ecb_encrypt(struct skcipher_request *req)
54*c970d420STaehee Yoo {
55*c970d420STaehee Yoo 	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
56*c970d420STaehee Yoo 	struct aria_ctx *ctx = crypto_skcipher_ctx(tfm);
57*c970d420STaehee Yoo 
58*c970d420STaehee Yoo 	return ecb_do_encrypt(req, ctx->enc_key[0]);
59*c970d420STaehee Yoo }
60*c970d420STaehee Yoo 
aria_avx512_ecb_decrypt(struct skcipher_request * req)61*c970d420STaehee Yoo static int aria_avx512_ecb_decrypt(struct skcipher_request *req)
62*c970d420STaehee Yoo {
63*c970d420STaehee Yoo 	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
64*c970d420STaehee Yoo 	struct aria_ctx *ctx = crypto_skcipher_ctx(tfm);
65*c970d420STaehee Yoo 
66*c970d420STaehee Yoo 	return ecb_do_decrypt(req, ctx->dec_key[0]);
67*c970d420STaehee Yoo }
68*c970d420STaehee Yoo 
aria_avx512_set_key(struct crypto_skcipher * tfm,const u8 * key,unsigned int keylen)69*c970d420STaehee Yoo static int aria_avx512_set_key(struct crypto_skcipher *tfm, const u8 *key,
70*c970d420STaehee Yoo 			    unsigned int keylen)
71*c970d420STaehee Yoo {
72*c970d420STaehee Yoo 	return aria_set_key(&tfm->base, key, keylen);
73*c970d420STaehee Yoo }
74*c970d420STaehee Yoo 
aria_avx512_ctr_encrypt(struct skcipher_request * req)75*c970d420STaehee Yoo static int aria_avx512_ctr_encrypt(struct skcipher_request *req)
76*c970d420STaehee Yoo {
77*c970d420STaehee Yoo 	struct aria_avx512_request_ctx *req_ctx = skcipher_request_ctx(req);
78*c970d420STaehee Yoo 	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
79*c970d420STaehee Yoo 	struct aria_ctx *ctx = crypto_skcipher_ctx(tfm);
80*c970d420STaehee Yoo 	struct skcipher_walk walk;
81*c970d420STaehee Yoo 	unsigned int nbytes;
82*c970d420STaehee Yoo 	int err;
83*c970d420STaehee Yoo 
84*c970d420STaehee Yoo 	err = skcipher_walk_virt(&walk, req, false);
85*c970d420STaehee Yoo 
86*c970d420STaehee Yoo 	while ((nbytes = walk.nbytes) > 0) {
87*c970d420STaehee Yoo 		const u8 *src = walk.src.virt.addr;
88*c970d420STaehee Yoo 		u8 *dst = walk.dst.virt.addr;
89*c970d420STaehee Yoo 
90*c970d420STaehee Yoo 		while (nbytes >= ARIA_GFNI_AVX512_PARALLEL_BLOCK_SIZE) {
91*c970d420STaehee Yoo 			kernel_fpu_begin();
92*c970d420STaehee Yoo 			aria_ops.aria_ctr_crypt_64way(ctx, dst, src,
93*c970d420STaehee Yoo 						      &req_ctx->keystream[0],
94*c970d420STaehee Yoo 						      walk.iv);
95*c970d420STaehee Yoo 			kernel_fpu_end();
96*c970d420STaehee Yoo 			dst += ARIA_GFNI_AVX512_PARALLEL_BLOCK_SIZE;
97*c970d420STaehee Yoo 			src += ARIA_GFNI_AVX512_PARALLEL_BLOCK_SIZE;
98*c970d420STaehee Yoo 			nbytes -= ARIA_GFNI_AVX512_PARALLEL_BLOCK_SIZE;
99*c970d420STaehee Yoo 		}
100*c970d420STaehee Yoo 
101*c970d420STaehee Yoo 		while (nbytes >= ARIA_AESNI_AVX2_PARALLEL_BLOCK_SIZE) {
102*c970d420STaehee Yoo 			kernel_fpu_begin();
103*c970d420STaehee Yoo 			aria_ops.aria_ctr_crypt_32way(ctx, dst, src,
104*c970d420STaehee Yoo 						      &req_ctx->keystream[0],
105*c970d420STaehee Yoo 						      walk.iv);
106*c970d420STaehee Yoo 			kernel_fpu_end();
107*c970d420STaehee Yoo 			dst += ARIA_AESNI_AVX2_PARALLEL_BLOCK_SIZE;
108*c970d420STaehee Yoo 			src += ARIA_AESNI_AVX2_PARALLEL_BLOCK_SIZE;
109*c970d420STaehee Yoo 			nbytes -= ARIA_AESNI_AVX2_PARALLEL_BLOCK_SIZE;
110*c970d420STaehee Yoo 		}
111*c970d420STaehee Yoo 
112*c970d420STaehee Yoo 		while (nbytes >= ARIA_AESNI_PARALLEL_BLOCK_SIZE) {
113*c970d420STaehee Yoo 			kernel_fpu_begin();
114*c970d420STaehee Yoo 			aria_ops.aria_ctr_crypt_16way(ctx, dst, src,
115*c970d420STaehee Yoo 						      &req_ctx->keystream[0],
116*c970d420STaehee Yoo 						      walk.iv);
117*c970d420STaehee Yoo 			kernel_fpu_end();
118*c970d420STaehee Yoo 			dst += ARIA_AESNI_PARALLEL_BLOCK_SIZE;
119*c970d420STaehee Yoo 			src += ARIA_AESNI_PARALLEL_BLOCK_SIZE;
120*c970d420STaehee Yoo 			nbytes -= ARIA_AESNI_PARALLEL_BLOCK_SIZE;
121*c970d420STaehee Yoo 		}
122*c970d420STaehee Yoo 
123*c970d420STaehee Yoo 		while (nbytes >= ARIA_BLOCK_SIZE) {
124*c970d420STaehee Yoo 			memcpy(&req_ctx->keystream[0], walk.iv,
125*c970d420STaehee Yoo 			       ARIA_BLOCK_SIZE);
126*c970d420STaehee Yoo 			crypto_inc(walk.iv, ARIA_BLOCK_SIZE);
127*c970d420STaehee Yoo 
128*c970d420STaehee Yoo 			aria_encrypt(ctx, &req_ctx->keystream[0],
129*c970d420STaehee Yoo 				     &req_ctx->keystream[0]);
130*c970d420STaehee Yoo 
131*c970d420STaehee Yoo 			crypto_xor_cpy(dst, src, &req_ctx->keystream[0],
132*c970d420STaehee Yoo 				       ARIA_BLOCK_SIZE);
133*c970d420STaehee Yoo 			dst += ARIA_BLOCK_SIZE;
134*c970d420STaehee Yoo 			src += ARIA_BLOCK_SIZE;
135*c970d420STaehee Yoo 			nbytes -= ARIA_BLOCK_SIZE;
136*c970d420STaehee Yoo 		}
137*c970d420STaehee Yoo 
138*c970d420STaehee Yoo 		if (walk.nbytes == walk.total && nbytes > 0) {
139*c970d420STaehee Yoo 			memcpy(&req_ctx->keystream[0], walk.iv,
140*c970d420STaehee Yoo 			       ARIA_BLOCK_SIZE);
141*c970d420STaehee Yoo 			crypto_inc(walk.iv, ARIA_BLOCK_SIZE);
142*c970d420STaehee Yoo 
143*c970d420STaehee Yoo 			aria_encrypt(ctx, &req_ctx->keystream[0],
144*c970d420STaehee Yoo 				     &req_ctx->keystream[0]);
145*c970d420STaehee Yoo 
146*c970d420STaehee Yoo 			crypto_xor_cpy(dst, src, &req_ctx->keystream[0],
147*c970d420STaehee Yoo 				       nbytes);
148*c970d420STaehee Yoo 			dst += nbytes;
149*c970d420STaehee Yoo 			src += nbytes;
150*c970d420STaehee Yoo 			nbytes = 0;
151*c970d420STaehee Yoo 		}
152*c970d420STaehee Yoo 		err = skcipher_walk_done(&walk, nbytes);
153*c970d420STaehee Yoo 	}
154*c970d420STaehee Yoo 
155*c970d420STaehee Yoo 	return err;
156*c970d420STaehee Yoo }
157*c970d420STaehee Yoo 
aria_avx512_init_tfm(struct crypto_skcipher * tfm)158*c970d420STaehee Yoo static int aria_avx512_init_tfm(struct crypto_skcipher *tfm)
159*c970d420STaehee Yoo {
160*c970d420STaehee Yoo 	crypto_skcipher_set_reqsize(tfm,
161*c970d420STaehee Yoo 				    sizeof(struct aria_avx512_request_ctx));
162*c970d420STaehee Yoo 
163*c970d420STaehee Yoo 	return 0;
164*c970d420STaehee Yoo }
165*c970d420STaehee Yoo 
166*c970d420STaehee Yoo static struct skcipher_alg aria_algs[] = {
167*c970d420STaehee Yoo 	{
168*c970d420STaehee Yoo 		.base.cra_name		= "__ecb(aria)",
169*c970d420STaehee Yoo 		.base.cra_driver_name	= "__ecb-aria-avx512",
170*c970d420STaehee Yoo 		.base.cra_priority	= 600,
171*c970d420STaehee Yoo 		.base.cra_flags		= CRYPTO_ALG_INTERNAL,
172*c970d420STaehee Yoo 		.base.cra_blocksize	= ARIA_BLOCK_SIZE,
173*c970d420STaehee Yoo 		.base.cra_ctxsize	= sizeof(struct aria_ctx),
174*c970d420STaehee Yoo 		.base.cra_module	= THIS_MODULE,
175*c970d420STaehee Yoo 		.min_keysize		= ARIA_MIN_KEY_SIZE,
176*c970d420STaehee Yoo 		.max_keysize		= ARIA_MAX_KEY_SIZE,
177*c970d420STaehee Yoo 		.setkey			= aria_avx512_set_key,
178*c970d420STaehee Yoo 		.encrypt		= aria_avx512_ecb_encrypt,
179*c970d420STaehee Yoo 		.decrypt		= aria_avx512_ecb_decrypt,
180*c970d420STaehee Yoo 	}, {
181*c970d420STaehee Yoo 		.base.cra_name		= "__ctr(aria)",
182*c970d420STaehee Yoo 		.base.cra_driver_name	= "__ctr-aria-avx512",
183*c970d420STaehee Yoo 		.base.cra_priority	= 600,
184*c970d420STaehee Yoo 		.base.cra_flags		= CRYPTO_ALG_INTERNAL |
185*c970d420STaehee Yoo 					  CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE,
186*c970d420STaehee Yoo 		.base.cra_blocksize	= 1,
187*c970d420STaehee Yoo 		.base.cra_ctxsize	= sizeof(struct aria_ctx),
188*c970d420STaehee Yoo 		.base.cra_module	= THIS_MODULE,
189*c970d420STaehee Yoo 		.min_keysize		= ARIA_MIN_KEY_SIZE,
190*c970d420STaehee Yoo 		.max_keysize		= ARIA_MAX_KEY_SIZE,
191*c970d420STaehee Yoo 		.ivsize			= ARIA_BLOCK_SIZE,
192*c970d420STaehee Yoo 		.chunksize		= ARIA_BLOCK_SIZE,
193*c970d420STaehee Yoo 		.setkey			= aria_avx512_set_key,
194*c970d420STaehee Yoo 		.encrypt		= aria_avx512_ctr_encrypt,
195*c970d420STaehee Yoo 		.decrypt		= aria_avx512_ctr_encrypt,
196*c970d420STaehee Yoo 		.init                   = aria_avx512_init_tfm,
197*c970d420STaehee Yoo 	}
198*c970d420STaehee Yoo };
199*c970d420STaehee Yoo 
200*c970d420STaehee Yoo static struct simd_skcipher_alg *aria_simd_algs[ARRAY_SIZE(aria_algs)];
201*c970d420STaehee Yoo 
aria_avx512_init(void)202*c970d420STaehee Yoo static int __init aria_avx512_init(void)
203*c970d420STaehee Yoo {
204*c970d420STaehee Yoo 	const char *feature_name;
205*c970d420STaehee Yoo 
206*c970d420STaehee Yoo 	if (!boot_cpu_has(X86_FEATURE_AVX) ||
207*c970d420STaehee Yoo 	    !boot_cpu_has(X86_FEATURE_AVX2) ||
208*c970d420STaehee Yoo 	    !boot_cpu_has(X86_FEATURE_AVX512F) ||
209*c970d420STaehee Yoo 	    !boot_cpu_has(X86_FEATURE_AVX512VL) ||
210*c970d420STaehee Yoo 	    !boot_cpu_has(X86_FEATURE_GFNI) ||
211*c970d420STaehee Yoo 	    !boot_cpu_has(X86_FEATURE_OSXSAVE)) {
212*c970d420STaehee Yoo 		pr_info("AVX512/GFNI instructions are not detected.\n");
213*c970d420STaehee Yoo 		return -ENODEV;
214*c970d420STaehee Yoo 	}
215*c970d420STaehee Yoo 
216*c970d420STaehee Yoo 	if (!cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM |
217*c970d420STaehee Yoo 			       XFEATURE_MASK_AVX512, &feature_name)) {
218*c970d420STaehee Yoo 		pr_info("CPU feature '%s' is not supported.\n", feature_name);
219*c970d420STaehee Yoo 		return -ENODEV;
220*c970d420STaehee Yoo 	}
221*c970d420STaehee Yoo 
222*c970d420STaehee Yoo 	aria_ops.aria_encrypt_16way = aria_aesni_avx_gfni_encrypt_16way;
223*c970d420STaehee Yoo 	aria_ops.aria_decrypt_16way = aria_aesni_avx_gfni_decrypt_16way;
224*c970d420STaehee Yoo 	aria_ops.aria_ctr_crypt_16way = aria_aesni_avx_gfni_ctr_crypt_16way;
225*c970d420STaehee Yoo 	aria_ops.aria_encrypt_32way = aria_aesni_avx2_gfni_encrypt_32way;
226*c970d420STaehee Yoo 	aria_ops.aria_decrypt_32way = aria_aesni_avx2_gfni_decrypt_32way;
227*c970d420STaehee Yoo 	aria_ops.aria_ctr_crypt_32way = aria_aesni_avx2_gfni_ctr_crypt_32way;
228*c970d420STaehee Yoo 	aria_ops.aria_encrypt_64way = aria_gfni_avx512_encrypt_64way;
229*c970d420STaehee Yoo 	aria_ops.aria_decrypt_64way = aria_gfni_avx512_decrypt_64way;
230*c970d420STaehee Yoo 	aria_ops.aria_ctr_crypt_64way = aria_gfni_avx512_ctr_crypt_64way;
231*c970d420STaehee Yoo 
232*c970d420STaehee Yoo 	return simd_register_skciphers_compat(aria_algs,
233*c970d420STaehee Yoo 					      ARRAY_SIZE(aria_algs),
234*c970d420STaehee Yoo 					      aria_simd_algs);
235*c970d420STaehee Yoo }
236*c970d420STaehee Yoo 
aria_avx512_exit(void)237*c970d420STaehee Yoo static void __exit aria_avx512_exit(void)
238*c970d420STaehee Yoo {
239*c970d420STaehee Yoo 	simd_unregister_skciphers(aria_algs, ARRAY_SIZE(aria_algs),
240*c970d420STaehee Yoo 				  aria_simd_algs);
241*c970d420STaehee Yoo }
242*c970d420STaehee Yoo 
243*c970d420STaehee Yoo module_init(aria_avx512_init);
244*c970d420STaehee Yoo module_exit(aria_avx512_exit);
245*c970d420STaehee Yoo 
246*c970d420STaehee Yoo MODULE_LICENSE("GPL");
247*c970d420STaehee Yoo MODULE_AUTHOR("Taehee Yoo <ap420073@gmail.com>");
248*c970d420STaehee Yoo MODULE_DESCRIPTION("ARIA Cipher Algorithm, AVX512/GFNI optimized");
249*c970d420STaehee Yoo MODULE_ALIAS_CRYPTO("aria");
250*c970d420STaehee Yoo MODULE_ALIAS_CRYPTO("aria-gfni-avx512");
251