blob: c3c2041fe0c59ebfeac92c08a1e72445f4ba6fff [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Richard Hartmann0d8fb0a2010-02-16 20:24:30 +08002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Cryptographic API.
4 *
5 * Blowfish Cipher Algorithm, by Bruce Schneier.
6 * http://www.counterpane.com/blowfish.html
7 *
8 * Adapted from Kerneli implementation.
9 *
10 * Copyright (c) Herbert Valerio Riedel <hvr@hvrlab.org>
11 * Copyright (c) Kyle McMartin <kyle@debian.org>
12 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/mm.h>
Herbert Xu06ace7a2005-10-30 21:25:15 +110017#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/crypto.h>
Herbert Xu06ace7a2005-10-30 21:25:15 +110019#include <linux/types.h>
Jussi Kivilinna52ba8672011-09-02 01:45:07 +030020#include <crypto/blowfish.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Richard Hartmann0d8fb0a2010-02-16 20:24:30 +080022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Round loop unrolling macros, S is a pointer to a S-Box array
24 * organized in 4 unsigned longs at a row.
25 */
26#define GET32_3(x) (((x) & 0xff))
27#define GET32_2(x) (((x) >> (8)) & (0xff))
28#define GET32_1(x) (((x) >> (16)) & (0xff))
29#define GET32_0(x) (((x) >> (24)) & (0xff))
30
31#define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +030032 S[512 + GET32_2(x)]) + S[768 + GET32_3(x)])
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +030034#define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); })
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Jussi Kivilinna52ba8672011-09-02 01:45:07 +030036static void bf_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Jussi Kivilinna52ba8672011-09-02 01:45:07 +030038 struct bf_ctx *ctx = crypto_tfm_ctx(tfm);
39 const __be32 *in_blk = (const __be32 *)src;
40 __be32 *const out_blk = (__be32 *)dst;
41 const u32 *P = ctx->p;
42 const u32 *S = ctx->s;
43 u32 yl = be32_to_cpu(in_blk[0]);
44 u32 yr = be32_to_cpu(in_blk[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 ROUND(yr, yl, 0);
47 ROUND(yl, yr, 1);
48 ROUND(yr, yl, 2);
49 ROUND(yl, yr, 3);
50 ROUND(yr, yl, 4);
51 ROUND(yl, yr, 5);
52 ROUND(yr, yl, 6);
53 ROUND(yl, yr, 7);
54 ROUND(yr, yl, 8);
55 ROUND(yl, yr, 9);
56 ROUND(yr, yl, 10);
57 ROUND(yl, yr, 11);
58 ROUND(yr, yl, 12);
59 ROUND(yl, yr, 13);
60 ROUND(yr, yl, 14);
61 ROUND(yl, yr, 15);
62
63 yl ^= P[16];
64 yr ^= P[17];
65
Jussi Kivilinna52ba8672011-09-02 01:45:07 +030066 out_blk[0] = cpu_to_be32(yr);
67 out_blk[1] = cpu_to_be32(yl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Herbert Xu6c2bb982006-05-16 22:09:29 +100070static void bf_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Herbert Xu6c2bb982006-05-16 22:09:29 +100072 struct bf_ctx *ctx = crypto_tfm_ctx(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 const __be32 *in_blk = (const __be32 *)src;
74 __be32 *const out_blk = (__be32 *)dst;
Herbert Xu6c2bb982006-05-16 22:09:29 +100075 const u32 *P = ctx->p;
76 const u32 *S = ctx->s;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 u32 yl = be32_to_cpu(in_blk[0]);
78 u32 yr = be32_to_cpu(in_blk[1]);
79
80 ROUND(yr, yl, 17);
81 ROUND(yl, yr, 16);
82 ROUND(yr, yl, 15);
83 ROUND(yl, yr, 14);
84 ROUND(yr, yl, 13);
85 ROUND(yl, yr, 12);
86 ROUND(yr, yl, 11);
87 ROUND(yl, yr, 10);
88 ROUND(yr, yl, 9);
89 ROUND(yl, yr, 8);
90 ROUND(yr, yl, 7);
91 ROUND(yl, yr, 6);
92 ROUND(yr, yl, 5);
93 ROUND(yl, yr, 4);
94 ROUND(yr, yl, 3);
95 ROUND(yl, yr, 2);
96
97 yl ^= P[1];
98 yr ^= P[0];
99
100 out_blk[0] = cpu_to_be32(yr);
101 out_blk[1] = cpu_to_be32(yl);
102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static struct crypto_alg alg = {
105 .cra_name = "blowfish",
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +0300106 .cra_driver_name = "blowfish-generic",
107 .cra_priority = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
109 .cra_blocksize = BF_BLOCK_SIZE,
110 .cra_ctxsize = sizeof(struct bf_ctx),
Herbert Xua429d262006-01-07 16:38:15 +1100111 .cra_alignmask = 3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .cra_module = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .cra_u = { .cipher = {
114 .cia_min_keysize = BF_MIN_KEY_SIZE,
115 .cia_max_keysize = BF_MAX_KEY_SIZE,
Jussi Kivilinna52ba8672011-09-02 01:45:07 +0300116 .cia_setkey = blowfish_setkey,
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +0300117 .cia_encrypt = bf_encrypt,
118 .cia_decrypt = bf_decrypt } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800121static int __init blowfish_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 return crypto_register_alg(&alg);
124}
125
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800126static void __exit blowfish_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 crypto_unregister_alg(&alg);
129}
130
Eric Biggersc4741b22019-04-11 21:57:42 -0700131subsys_initcall(blowfish_mod_init);
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800132module_exit(blowfish_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134MODULE_LICENSE("GPL");
135MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
Kees Cook5d26a102014-11-20 17:05:53 -0800136MODULE_ALIAS_CRYPTO("blowfish");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100137MODULE_ALIAS_CRYPTO("blowfish-generic");