2 * Glue Code for assembler optimized version of 3DES
4 * Copyright © 2014 Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
6 * CBC & ECB parts based on code (crypto/cbc.c,ecb.c) by:
7 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
8 * CTR part based on code (crypto/ctr.c) by:
9 * (C) Copyright IBM Corp. 2007 - Joy Latten <latten@us.ibm.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
23 #include <asm/processor.h>
24 #include <crypto/des.h>
25 #include <linux/crypto.h>
26 #include <linux/init.h>
27 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <crypto/algapi.h>
31 struct des3_ede_x86_ctx
{
32 u32 enc_expkey
[DES3_EDE_EXPKEY_WORDS
];
33 u32 dec_expkey
[DES3_EDE_EXPKEY_WORDS
];
36 /* regular block cipher functions */
37 asmlinkage
void des3_ede_x86_64_crypt_blk(const u32
*expkey
, u8
*dst
,
40 /* 3-way parallel cipher functions */
41 asmlinkage
void des3_ede_x86_64_crypt_blk_3way(const u32
*expkey
, u8
*dst
,
44 static inline void des3_ede_enc_blk(struct des3_ede_x86_ctx
*ctx
, u8
*dst
,
47 u32
*enc_ctx
= ctx
->enc_expkey
;
49 des3_ede_x86_64_crypt_blk(enc_ctx
, dst
, src
);
52 static inline void des3_ede_dec_blk(struct des3_ede_x86_ctx
*ctx
, u8
*dst
,
55 u32
*dec_ctx
= ctx
->dec_expkey
;
57 des3_ede_x86_64_crypt_blk(dec_ctx
, dst
, src
);
60 static inline void des3_ede_enc_blk_3way(struct des3_ede_x86_ctx
*ctx
, u8
*dst
,
63 u32
*enc_ctx
= ctx
->enc_expkey
;
65 des3_ede_x86_64_crypt_blk_3way(enc_ctx
, dst
, src
);
68 static inline void des3_ede_dec_blk_3way(struct des3_ede_x86_ctx
*ctx
, u8
*dst
,
71 u32
*dec_ctx
= ctx
->dec_expkey
;
73 des3_ede_x86_64_crypt_blk_3way(dec_ctx
, dst
, src
);
76 static void des3_ede_x86_encrypt(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
)
78 des3_ede_enc_blk(crypto_tfm_ctx(tfm
), dst
, src
);
81 static void des3_ede_x86_decrypt(struct crypto_tfm
*tfm
, u8
*dst
, const u8
*src
)
83 des3_ede_dec_blk(crypto_tfm_ctx(tfm
), dst
, src
);
86 static int ecb_crypt(struct blkcipher_desc
*desc
, struct blkcipher_walk
*walk
,
89 unsigned int bsize
= DES3_EDE_BLOCK_SIZE
;
93 err
= blkcipher_walk_virt(desc
, walk
);
95 while ((nbytes
= walk
->nbytes
)) {
96 u8
*wsrc
= walk
->src
.virt
.addr
;
97 u8
*wdst
= walk
->dst
.virt
.addr
;
99 /* Process four block batch */
100 if (nbytes
>= bsize
* 3) {
102 des3_ede_x86_64_crypt_blk_3way(expkey
, wdst
,
108 } while (nbytes
>= bsize
* 3);
114 /* Handle leftovers */
116 des3_ede_x86_64_crypt_blk(expkey
, wdst
, wsrc
);
121 } while (nbytes
>= bsize
);
124 err
= blkcipher_walk_done(desc
, walk
, nbytes
);
130 static int ecb_encrypt(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
131 struct scatterlist
*src
, unsigned int nbytes
)
133 struct des3_ede_x86_ctx
*ctx
= crypto_blkcipher_ctx(desc
->tfm
);
134 struct blkcipher_walk walk
;
136 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
137 return ecb_crypt(desc
, &walk
, ctx
->enc_expkey
);
140 static int ecb_decrypt(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
141 struct scatterlist
*src
, unsigned int nbytes
)
143 struct des3_ede_x86_ctx
*ctx
= crypto_blkcipher_ctx(desc
->tfm
);
144 struct blkcipher_walk walk
;
146 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
147 return ecb_crypt(desc
, &walk
, ctx
->dec_expkey
);
150 static unsigned int __cbc_encrypt(struct blkcipher_desc
*desc
,
151 struct blkcipher_walk
*walk
)
153 struct des3_ede_x86_ctx
*ctx
= crypto_blkcipher_ctx(desc
->tfm
);
154 unsigned int bsize
= DES3_EDE_BLOCK_SIZE
;
155 unsigned int nbytes
= walk
->nbytes
;
156 u64
*src
= (u64
*)walk
->src
.virt
.addr
;
157 u64
*dst
= (u64
*)walk
->dst
.virt
.addr
;
158 u64
*iv
= (u64
*)walk
->iv
;
162 des3_ede_enc_blk(ctx
, (u8
*)dst
, (u8
*)dst
);
168 } while (nbytes
>= bsize
);
170 *(u64
*)walk
->iv
= *iv
;
174 static int cbc_encrypt(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
175 struct scatterlist
*src
, unsigned int nbytes
)
177 struct blkcipher_walk walk
;
180 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
181 err
= blkcipher_walk_virt(desc
, &walk
);
183 while ((nbytes
= walk
.nbytes
)) {
184 nbytes
= __cbc_encrypt(desc
, &walk
);
185 err
= blkcipher_walk_done(desc
, &walk
, nbytes
);
191 static unsigned int __cbc_decrypt(struct blkcipher_desc
*desc
,
192 struct blkcipher_walk
*walk
)
194 struct des3_ede_x86_ctx
*ctx
= crypto_blkcipher_ctx(desc
->tfm
);
195 unsigned int bsize
= DES3_EDE_BLOCK_SIZE
;
196 unsigned int nbytes
= walk
->nbytes
;
197 u64
*src
= (u64
*)walk
->src
.virt
.addr
;
198 u64
*dst
= (u64
*)walk
->dst
.virt
.addr
;
202 /* Start of the last block. */
203 src
+= nbytes
/ bsize
- 1;
204 dst
+= nbytes
/ bsize
- 1;
208 /* Process four block batch */
209 if (nbytes
>= bsize
* 3) {
211 nbytes
-= bsize
* 3 - bsize
;
218 des3_ede_dec_blk_3way(ctx
, (u8
*)dst
, (u8
*)src
);
230 } while (nbytes
>= bsize
* 3);
233 /* Handle leftovers */
235 des3_ede_dec_blk(ctx
, (u8
*)dst
, (u8
*)src
);
247 *dst
^= *(u64
*)walk
->iv
;
248 *(u64
*)walk
->iv
= last_iv
;
253 static int cbc_decrypt(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
254 struct scatterlist
*src
, unsigned int nbytes
)
256 struct blkcipher_walk walk
;
259 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
260 err
= blkcipher_walk_virt(desc
, &walk
);
262 while ((nbytes
= walk
.nbytes
)) {
263 nbytes
= __cbc_decrypt(desc
, &walk
);
264 err
= blkcipher_walk_done(desc
, &walk
, nbytes
);
270 static void ctr_crypt_final(struct des3_ede_x86_ctx
*ctx
,
271 struct blkcipher_walk
*walk
)
273 u8
*ctrblk
= walk
->iv
;
274 u8 keystream
[DES3_EDE_BLOCK_SIZE
];
275 u8
*src
= walk
->src
.virt
.addr
;
276 u8
*dst
= walk
->dst
.virt
.addr
;
277 unsigned int nbytes
= walk
->nbytes
;
279 des3_ede_enc_blk(ctx
, keystream
, ctrblk
);
280 crypto_xor_cpy(dst
, keystream
, src
, nbytes
);
282 crypto_inc(ctrblk
, DES3_EDE_BLOCK_SIZE
);
285 static unsigned int __ctr_crypt(struct blkcipher_desc
*desc
,
286 struct blkcipher_walk
*walk
)
288 struct des3_ede_x86_ctx
*ctx
= crypto_blkcipher_ctx(desc
->tfm
);
289 unsigned int bsize
= DES3_EDE_BLOCK_SIZE
;
290 unsigned int nbytes
= walk
->nbytes
;
291 __be64
*src
= (__be64
*)walk
->src
.virt
.addr
;
292 __be64
*dst
= (__be64
*)walk
->dst
.virt
.addr
;
293 u64 ctrblk
= be64_to_cpu(*(__be64
*)walk
->iv
);
296 /* Process four block batch */
297 if (nbytes
>= bsize
* 3) {
299 /* create ctrblks for parallel encrypt */
300 ctrblocks
[0] = cpu_to_be64(ctrblk
++);
301 ctrblocks
[1] = cpu_to_be64(ctrblk
++);
302 ctrblocks
[2] = cpu_to_be64(ctrblk
++);
304 des3_ede_enc_blk_3way(ctx
, (u8
*)ctrblocks
,
307 dst
[0] = src
[0] ^ ctrblocks
[0];
308 dst
[1] = src
[1] ^ ctrblocks
[1];
309 dst
[2] = src
[2] ^ ctrblocks
[2];
313 } while ((nbytes
-= bsize
* 3) >= bsize
* 3);
319 /* Handle leftovers */
321 ctrblocks
[0] = cpu_to_be64(ctrblk
++);
323 des3_ede_enc_blk(ctx
, (u8
*)ctrblocks
, (u8
*)ctrblocks
);
325 dst
[0] = src
[0] ^ ctrblocks
[0];
329 } while ((nbytes
-= bsize
) >= bsize
);
332 *(__be64
*)walk
->iv
= cpu_to_be64(ctrblk
);
336 static int ctr_crypt(struct blkcipher_desc
*desc
, struct scatterlist
*dst
,
337 struct scatterlist
*src
, unsigned int nbytes
)
339 struct blkcipher_walk walk
;
342 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
343 err
= blkcipher_walk_virt_block(desc
, &walk
, DES3_EDE_BLOCK_SIZE
);
345 while ((nbytes
= walk
.nbytes
) >= DES3_EDE_BLOCK_SIZE
) {
346 nbytes
= __ctr_crypt(desc
, &walk
);
347 err
= blkcipher_walk_done(desc
, &walk
, nbytes
);
351 ctr_crypt_final(crypto_blkcipher_ctx(desc
->tfm
), &walk
);
352 err
= blkcipher_walk_done(desc
, &walk
, 0);
358 static int des3_ede_x86_setkey(struct crypto_tfm
*tfm
, const u8
*key
,
361 struct des3_ede_x86_ctx
*ctx
= crypto_tfm_ctx(tfm
);
365 /* Generate encryption context using generic implementation. */
366 err
= __des3_ede_setkey(ctx
->enc_expkey
, &tfm
->crt_flags
, key
, keylen
);
370 /* Fix encryption context for this implementation and form decryption
372 j
= DES3_EDE_EXPKEY_WORDS
- 2;
373 for (i
= 0; i
< DES3_EDE_EXPKEY_WORDS
; i
+= 2, j
-= 2) {
374 tmp
= ror32(ctx
->enc_expkey
[i
+ 1], 4);
375 ctx
->enc_expkey
[i
+ 1] = tmp
;
377 ctx
->dec_expkey
[j
+ 0] = ctx
->enc_expkey
[i
+ 0];
378 ctx
->dec_expkey
[j
+ 1] = tmp
;
384 static struct crypto_alg des3_ede_algs
[4] = { {
385 .cra_name
= "des3_ede",
386 .cra_driver_name
= "des3_ede-asm",
388 .cra_flags
= CRYPTO_ALG_TYPE_CIPHER
,
389 .cra_blocksize
= DES3_EDE_BLOCK_SIZE
,
390 .cra_ctxsize
= sizeof(struct des3_ede_x86_ctx
),
392 .cra_module
= THIS_MODULE
,
395 .cia_min_keysize
= DES3_EDE_KEY_SIZE
,
396 .cia_max_keysize
= DES3_EDE_KEY_SIZE
,
397 .cia_setkey
= des3_ede_x86_setkey
,
398 .cia_encrypt
= des3_ede_x86_encrypt
,
399 .cia_decrypt
= des3_ede_x86_decrypt
,
403 .cra_name
= "ecb(des3_ede)",
404 .cra_driver_name
= "ecb-des3_ede-asm",
406 .cra_flags
= CRYPTO_ALG_TYPE_BLKCIPHER
,
407 .cra_blocksize
= DES3_EDE_BLOCK_SIZE
,
408 .cra_ctxsize
= sizeof(struct des3_ede_x86_ctx
),
410 .cra_type
= &crypto_blkcipher_type
,
411 .cra_module
= THIS_MODULE
,
414 .min_keysize
= DES3_EDE_KEY_SIZE
,
415 .max_keysize
= DES3_EDE_KEY_SIZE
,
416 .setkey
= des3_ede_x86_setkey
,
417 .encrypt
= ecb_encrypt
,
418 .decrypt
= ecb_decrypt
,
422 .cra_name
= "cbc(des3_ede)",
423 .cra_driver_name
= "cbc-des3_ede-asm",
425 .cra_flags
= CRYPTO_ALG_TYPE_BLKCIPHER
,
426 .cra_blocksize
= DES3_EDE_BLOCK_SIZE
,
427 .cra_ctxsize
= sizeof(struct des3_ede_x86_ctx
),
429 .cra_type
= &crypto_blkcipher_type
,
430 .cra_module
= THIS_MODULE
,
433 .min_keysize
= DES3_EDE_KEY_SIZE
,
434 .max_keysize
= DES3_EDE_KEY_SIZE
,
435 .ivsize
= DES3_EDE_BLOCK_SIZE
,
436 .setkey
= des3_ede_x86_setkey
,
437 .encrypt
= cbc_encrypt
,
438 .decrypt
= cbc_decrypt
,
442 .cra_name
= "ctr(des3_ede)",
443 .cra_driver_name
= "ctr-des3_ede-asm",
445 .cra_flags
= CRYPTO_ALG_TYPE_BLKCIPHER
,
447 .cra_ctxsize
= sizeof(struct des3_ede_x86_ctx
),
449 .cra_type
= &crypto_blkcipher_type
,
450 .cra_module
= THIS_MODULE
,
453 .min_keysize
= DES3_EDE_KEY_SIZE
,
454 .max_keysize
= DES3_EDE_KEY_SIZE
,
455 .ivsize
= DES3_EDE_BLOCK_SIZE
,
456 .setkey
= des3_ede_x86_setkey
,
457 .encrypt
= ctr_crypt
,
458 .decrypt
= ctr_crypt
,
463 static bool is_blacklisted_cpu(void)
465 if (boot_cpu_data
.x86_vendor
!= X86_VENDOR_INTEL
)
468 if (boot_cpu_data
.x86
== 0x0f) {
470 * On Pentium 4, des3_ede-x86_64 is slower than generic C
471 * implementation because use of 64bit rotates (which are really
472 * slow on P4). Therefore blacklist P4s.
481 module_param(force
, int, 0);
482 MODULE_PARM_DESC(force
, "Force module load, ignore CPU blacklist");
484 static int __init
des3_ede_x86_init(void)
486 if (!force
&& is_blacklisted_cpu()) {
487 pr_info("des3_ede-x86_64: performance on this CPU would be suboptimal: disabling des3_ede-x86_64.\n");
491 return crypto_register_algs(des3_ede_algs
, ARRAY_SIZE(des3_ede_algs
));
494 static void __exit
des3_ede_x86_fini(void)
496 crypto_unregister_algs(des3_ede_algs
, ARRAY_SIZE(des3_ede_algs
));
499 module_init(des3_ede_x86_init
);
500 module_exit(des3_ede_x86_fini
);
502 MODULE_LICENSE("GPL");
503 MODULE_DESCRIPTION("Triple DES EDE Cipher Algorithm, asm optimized");
504 MODULE_ALIAS_CRYPTO("des3_ede");
505 MODULE_ALIAS_CRYPTO("des3_ede-asm");
506 MODULE_AUTHOR("Jussi Kivilinna <jussi.kivilinna@iki.fi>");