blob: 003b52c6880eabbc1af53bb2999452a420ae7962 [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>
Ard Biesheuvel50a3a9f2021-02-01 19:02:32 +010017#include <asm/unaligned.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);
Jussi Kivilinna52ba8672011-09-02 01:45:07 +030039 const u32 *P = ctx->p;
40 const u32 *S = ctx->s;
Ard Biesheuvel50a3a9f2021-02-01 19:02:32 +010041 u32 yl = get_unaligned_be32(src);
42 u32 yr = get_unaligned_be32(src + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 ROUND(yr, yl, 0);
45 ROUND(yl, yr, 1);
46 ROUND(yr, yl, 2);
47 ROUND(yl, yr, 3);
48 ROUND(yr, yl, 4);
49 ROUND(yl, yr, 5);
50 ROUND(yr, yl, 6);
51 ROUND(yl, yr, 7);
52 ROUND(yr, yl, 8);
53 ROUND(yl, yr, 9);
54 ROUND(yr, yl, 10);
55 ROUND(yl, yr, 11);
56 ROUND(yr, yl, 12);
57 ROUND(yl, yr, 13);
58 ROUND(yr, yl, 14);
59 ROUND(yl, yr, 15);
60
61 yl ^= P[16];
62 yr ^= P[17];
63
Ard Biesheuvel50a3a9f2021-02-01 19:02:32 +010064 put_unaligned_be32(yr, dst);
65 put_unaligned_be32(yl, dst + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Herbert Xu6c2bb982006-05-16 22:09:29 +100068static void bf_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Herbert Xu6c2bb982006-05-16 22:09:29 +100070 struct bf_ctx *ctx = crypto_tfm_ctx(tfm);
Herbert Xu6c2bb982006-05-16 22:09:29 +100071 const u32 *P = ctx->p;
72 const u32 *S = ctx->s;
Ard Biesheuvel50a3a9f2021-02-01 19:02:32 +010073 u32 yl = get_unaligned_be32(src);
74 u32 yr = get_unaligned_be32(src + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 ROUND(yr, yl, 17);
77 ROUND(yl, yr, 16);
78 ROUND(yr, yl, 15);
79 ROUND(yl, yr, 14);
80 ROUND(yr, yl, 13);
81 ROUND(yl, yr, 12);
82 ROUND(yr, yl, 11);
83 ROUND(yl, yr, 10);
84 ROUND(yr, yl, 9);
85 ROUND(yl, yr, 8);
86 ROUND(yr, yl, 7);
87 ROUND(yl, yr, 6);
88 ROUND(yr, yl, 5);
89 ROUND(yl, yr, 4);
90 ROUND(yr, yl, 3);
91 ROUND(yl, yr, 2);
92
93 yl ^= P[1];
94 yr ^= P[0];
95
Ard Biesheuvel50a3a9f2021-02-01 19:02:32 +010096 put_unaligned_be32(yr, dst);
97 put_unaligned_be32(yl, dst + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct crypto_alg alg = {
101 .cra_name = "blowfish",
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +0300102 .cra_driver_name = "blowfish-generic",
103 .cra_priority = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
105 .cra_blocksize = BF_BLOCK_SIZE,
106 .cra_ctxsize = sizeof(struct bf_ctx),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .cra_module = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .cra_u = { .cipher = {
109 .cia_min_keysize = BF_MIN_KEY_SIZE,
110 .cia_max_keysize = BF_MAX_KEY_SIZE,
Jussi Kivilinna52ba8672011-09-02 01:45:07 +0300111 .cia_setkey = blowfish_setkey,
Jussi Kivilinna3f2a5d22011-09-02 01:45:12 +0300112 .cia_encrypt = bf_encrypt,
113 .cia_decrypt = bf_decrypt } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800116static int __init blowfish_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 return crypto_register_alg(&alg);
119}
120
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800121static void __exit blowfish_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 crypto_unregister_alg(&alg);
124}
125
Eric Biggersc4741b22019-04-11 21:57:42 -0700126subsys_initcall(blowfish_mod_init);
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800127module_exit(blowfish_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129MODULE_LICENSE("GPL");
130MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
Kees Cook5d26a102014-11-20 17:05:53 -0800131MODULE_ALIAS_CRYPTO("blowfish");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100132MODULE_ALIAS_CRYPTO("blowfish-generic");