Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Richard Hartmann | c9af70f | 2010-02-16 20:31:54 +0800 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Cryptographic API. |
| 4 | * |
| 5 | * Null algorithms, aka Much Ado About Nothing. |
| 6 | * |
| 7 | * These are needed for IPsec, and may be useful in general for |
| 8 | * testing & debugging. |
Richard Hartmann | c9af70f | 2010-02-16 20:31:54 +0800 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * The null cipher is compliant with RFC2410. |
| 11 | * |
| 12 | * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 14 | |
Horia Geanta | 7256725 | 2014-03-14 17:46:50 +0200 | [diff] [blame] | 15 | #include <crypto/null.h> |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 16 | #include <crypto/internal/hash.h> |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 17 | #include <crypto/internal/skcipher.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/init.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/mm.h> |
Patrick McHardy | d085600 | 2005-05-16 21:53:41 -0700 | [diff] [blame] | 21 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 23 | static DEFINE_MUTEX(crypto_default_null_skcipher_lock); |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 24 | static struct crypto_sync_skcipher *crypto_default_null_skcipher; |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 25 | static int crypto_default_null_skcipher_refcnt; |
| 26 | |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 27 | static int null_compress(struct crypto_tfm *tfm, const u8 *src, |
| 28 | unsigned int slen, u8 *dst, unsigned int *dlen) |
Patrick McHardy | d085600 | 2005-05-16 21:53:41 -0700 | [diff] [blame] | 29 | { |
| 30 | if (slen > *dlen) |
| 31 | return -EINVAL; |
| 32 | memcpy(dst, src, slen); |
| 33 | *dlen = slen; |
| 34 | return 0; |
| 35 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 37 | static int null_init(struct shash_desc *desc) |
| 38 | { |
| 39 | return 0; |
| 40 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 42 | static int null_update(struct shash_desc *desc, const u8 *data, |
| 43 | unsigned int len) |
| 44 | { |
| 45 | return 0; |
| 46 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 48 | static int null_final(struct shash_desc *desc, u8 *out) |
| 49 | { |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | static int null_digest(struct shash_desc *desc, const u8 *data, |
| 54 | unsigned int len, u8 *out) |
| 55 | { |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | static int null_hash_setkey(struct crypto_shash *tfm, const u8 *key, |
| 60 | unsigned int keylen) |
| 61 | { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 63 | static int null_skcipher_setkey(struct crypto_skcipher *tfm, const u8 *key, |
| 64 | unsigned int keylen) |
| 65 | { return 0; } |
| 66 | |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 67 | static int null_setkey(struct crypto_tfm *tfm, const u8 *key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 68 | unsigned int keylen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { return 0; } |
| 70 | |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 71 | static void null_crypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) |
Patrick McHardy | d085600 | 2005-05-16 21:53:41 -0700 | [diff] [blame] | 72 | { |
| 73 | memcpy(dst, src, NULL_BLOCK_SIZE); |
| 74 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 76 | static int null_skcipher_crypt(struct skcipher_request *req) |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 77 | { |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 78 | struct skcipher_walk walk; |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 79 | int err; |
| 80 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 81 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 82 | |
| 83 | while (walk.nbytes) { |
| 84 | if (walk.src.virt.addr != walk.dst.virt.addr) |
| 85 | memcpy(walk.dst.virt.addr, walk.src.virt.addr, |
| 86 | walk.nbytes); |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 87 | err = skcipher_walk_done(&walk, 0); |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | return err; |
| 91 | } |
| 92 | |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 93 | static struct shash_alg digest_null = { |
| 94 | .digestsize = NULL_DIGEST_SIZE, |
| 95 | .setkey = null_hash_setkey, |
| 96 | .init = null_init, |
| 97 | .update = null_update, |
| 98 | .finup = null_digest, |
| 99 | .digest = null_digest, |
| 100 | .final = null_final, |
| 101 | .base = { |
| 102 | .cra_name = "digest_null", |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 103 | .cra_blocksize = NULL_BLOCK_SIZE, |
| 104 | .cra_module = THIS_MODULE, |
| 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 108 | static struct skcipher_alg skcipher_null = { |
| 109 | .base.cra_name = "ecb(cipher_null)", |
| 110 | .base.cra_driver_name = "ecb-cipher_null", |
| 111 | .base.cra_priority = 100, |
| 112 | .base.cra_blocksize = NULL_BLOCK_SIZE, |
| 113 | .base.cra_ctxsize = 0, |
| 114 | .base.cra_module = THIS_MODULE, |
| 115 | .min_keysize = NULL_KEY_SIZE, |
| 116 | .max_keysize = NULL_KEY_SIZE, |
| 117 | .ivsize = NULL_IV_SIZE, |
| 118 | .setkey = null_skcipher_setkey, |
| 119 | .encrypt = null_skcipher_crypt, |
| 120 | .decrypt = null_skcipher_crypt, |
| 121 | }; |
| 122 | |
| 123 | static struct crypto_alg null_algs[] = { { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | .cra_name = "cipher_null", |
| 125 | .cra_flags = CRYPTO_ALG_TYPE_CIPHER, |
| 126 | .cra_blocksize = NULL_BLOCK_SIZE, |
| 127 | .cra_ctxsize = 0, |
| 128 | .cra_module = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | .cra_u = { .cipher = { |
| 130 | .cia_min_keysize = NULL_KEY_SIZE, |
| 131 | .cia_max_keysize = NULL_KEY_SIZE, |
| 132 | .cia_setkey = null_setkey, |
Patrick McHardy | d085600 | 2005-05-16 21:53:41 -0700 | [diff] [blame] | 133 | .cia_encrypt = null_crypt, |
| 134 | .cia_decrypt = null_crypt } } |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 135 | }, { |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 136 | .cra_name = "compress_null", |
| 137 | .cra_flags = CRYPTO_ALG_TYPE_COMPRESS, |
| 138 | .cra_blocksize = NULL_BLOCK_SIZE, |
| 139 | .cra_ctxsize = 0, |
| 140 | .cra_module = THIS_MODULE, |
| 141 | .cra_u = { .compress = { |
| 142 | .coa_compress = null_compress, |
| 143 | .coa_decompress = null_compress } } |
| 144 | } }; |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 145 | |
Kees Cook | 5d26a10 | 2014-11-20 17:05:53 -0800 | [diff] [blame] | 146 | MODULE_ALIAS_CRYPTO("compress_null"); |
| 147 | MODULE_ALIAS_CRYPTO("digest_null"); |
| 148 | MODULE_ALIAS_CRYPTO("cipher_null"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 150 | struct crypto_sync_skcipher *crypto_get_default_null_skcipher(void) |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 151 | { |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 152 | struct crypto_sync_skcipher *tfm; |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 153 | |
| 154 | mutex_lock(&crypto_default_null_skcipher_lock); |
| 155 | tfm = crypto_default_null_skcipher; |
| 156 | |
| 157 | if (!tfm) { |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 158 | tfm = crypto_alloc_sync_skcipher("ecb(cipher_null)", 0, 0); |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 159 | if (IS_ERR(tfm)) |
| 160 | goto unlock; |
| 161 | |
| 162 | crypto_default_null_skcipher = tfm; |
| 163 | } |
| 164 | |
| 165 | crypto_default_null_skcipher_refcnt++; |
| 166 | |
| 167 | unlock: |
| 168 | mutex_unlock(&crypto_default_null_skcipher_lock); |
| 169 | |
| 170 | return tfm; |
| 171 | } |
| 172 | EXPORT_SYMBOL_GPL(crypto_get_default_null_skcipher); |
| 173 | |
| 174 | void crypto_put_default_null_skcipher(void) |
| 175 | { |
| 176 | mutex_lock(&crypto_default_null_skcipher_lock); |
| 177 | if (!--crypto_default_null_skcipher_refcnt) { |
Kees Cook | 8d60539 | 2018-09-18 19:10:51 -0700 | [diff] [blame] | 178 | crypto_free_sync_skcipher(crypto_default_null_skcipher); |
Herbert Xu | 3302346 | 2015-05-21 15:11:09 +0800 | [diff] [blame] | 179 | crypto_default_null_skcipher = NULL; |
| 180 | } |
| 181 | mutex_unlock(&crypto_default_null_skcipher_lock); |
| 182 | } |
| 183 | EXPORT_SYMBOL_GPL(crypto_put_default_null_skcipher); |
| 184 | |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 185 | static int __init crypto_null_mod_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
| 187 | int ret = 0; |
Richard Hartmann | c9af70f | 2010-02-16 20:31:54 +0800 | [diff] [blame] | 188 | |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 189 | ret = crypto_register_algs(null_algs, ARRAY_SIZE(null_algs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | if (ret < 0) |
| 191 | goto out; |
| 192 | |
Herbert Xu | d35d245 | 2008-11-08 08:09:56 +0800 | [diff] [blame] | 193 | ret = crypto_register_shash(&digest_null); |
Herbert Xu | 3631c65 | 2007-12-13 22:28:59 +0800 | [diff] [blame] | 194 | if (ret < 0) |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 195 | goto out_unregister_algs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 197 | ret = crypto_register_skcipher(&skcipher_null); |
| 198 | if (ret < 0) |
| 199 | goto out_unregister_shash; |
| 200 | |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 201 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 203 | out_unregister_shash: |
| 204 | crypto_unregister_shash(&digest_null); |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 205 | out_unregister_algs: |
| 206 | crypto_unregister_algs(null_algs, ARRAY_SIZE(null_algs)); |
Richard Hartmann | c9af70f | 2010-02-16 20:31:54 +0800 | [diff] [blame] | 207 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return ret; |
| 209 | } |
| 210 | |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 211 | static void __exit crypto_null_mod_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Jussi Kivilinna | 70a03bf | 2012-07-11 14:20:00 +0300 | [diff] [blame] | 213 | crypto_unregister_algs(null_algs, ARRAY_SIZE(null_algs)); |
Eric Biggers | 31d40c2 | 2019-01-03 20:16:24 -0800 | [diff] [blame] | 214 | crypto_unregister_shash(&digest_null); |
| 215 | crypto_unregister_skcipher(&skcipher_null); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Eric Biggers | c4741b2 | 2019-04-11 21:57:42 -0700 | [diff] [blame] | 218 | subsys_initcall(crypto_null_mod_init); |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 219 | module_exit(crypto_null_mod_fini); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | MODULE_LICENSE("GPL"); |
| 222 | MODULE_DESCRIPTION("Null Cryptographic Algorithms"); |