Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 1 | /* |
| 2 | * ECB: Electronic CodeBook mode |
| 3 | * |
| 4 | * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <crypto/algapi.h> |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 14 | #include <crypto/internal/skcipher.h> |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 15 | #include <linux/err.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 19 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 20 | static int crypto_ecb_crypt(struct skcipher_request *req, |
| 21 | struct crypto_cipher *cipher, |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 22 | void (*fn)(struct crypto_tfm *, u8 *, const u8 *)) |
| 23 | { |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 24 | const unsigned int bsize = crypto_cipher_blocksize(cipher); |
| 25 | struct skcipher_walk walk; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 26 | unsigned int nbytes; |
| 27 | int err; |
| 28 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 29 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 30 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 31 | while ((nbytes = walk.nbytes) != 0) { |
| 32 | const u8 *src = walk.src.virt.addr; |
| 33 | u8 *dst = walk.dst.virt.addr; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 34 | |
| 35 | do { |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 36 | fn(crypto_cipher_tfm(cipher), dst, src); |
Richard Hartmann | 5b37c19 | 2010-02-16 20:33:49 +0800 | [diff] [blame] | 37 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 38 | src += bsize; |
| 39 | dst += bsize; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 40 | } while ((nbytes -= bsize) >= bsize); |
| 41 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 42 | err = skcipher_walk_done(&walk, nbytes); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | return err; |
| 46 | } |
| 47 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 48 | static int crypto_ecb_encrypt(struct skcipher_request *req) |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 49 | { |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 50 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 51 | struct crypto_cipher *cipher = skcipher_cipher_simple(tfm); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 52 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 53 | return crypto_ecb_crypt(req, cipher, |
| 54 | crypto_cipher_alg(cipher)->cia_encrypt); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 55 | } |
| 56 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 57 | static int crypto_ecb_decrypt(struct skcipher_request *req) |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 58 | { |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 59 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 60 | struct crypto_cipher *cipher = skcipher_cipher_simple(tfm); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 61 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 62 | return crypto_ecb_crypt(req, cipher, |
| 63 | crypto_cipher_alg(cipher)->cia_decrypt); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 64 | } |
| 65 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 66 | static int crypto_ecb_create(struct crypto_template *tmpl, struct rtattr **tb) |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 67 | { |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 68 | struct skcipher_instance *inst; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 69 | struct crypto_alg *alg; |
Herbert Xu | ebc610e | 2007-01-01 18:37:02 +1100 | [diff] [blame] | 70 | int err; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 71 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 72 | inst = skcipher_alloc_instance_simple(tmpl, tb, &alg); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 73 | if (IS_ERR(inst)) |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 74 | return PTR_ERR(inst); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 75 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 76 | inst->alg.ivsize = 0; /* ECB mode doesn't take an IV */ |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 77 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 78 | inst->alg.encrypt = crypto_ecb_encrypt; |
| 79 | inst->alg.decrypt = crypto_ecb_decrypt; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 80 | |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 81 | err = skcipher_register_instance(tmpl, inst); |
| 82 | if (err) |
| 83 | inst->free(inst); |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 84 | crypto_mod_put(alg); |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 85 | return err; |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static struct crypto_template crypto_ecb_tmpl = { |
| 89 | .name = "ecb", |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 90 | .create = crypto_ecb_create, |
Herbert Xu | db131ef | 2006-09-21 11:44:08 +1000 | [diff] [blame] | 91 | .module = THIS_MODULE, |
| 92 | }; |
| 93 | |
| 94 | static int __init crypto_ecb_module_init(void) |
| 95 | { |
| 96 | return crypto_register_template(&crypto_ecb_tmpl); |
| 97 | } |
| 98 | |
| 99 | static void __exit crypto_ecb_module_exit(void) |
| 100 | { |
| 101 | crypto_unregister_template(&crypto_ecb_tmpl); |
| 102 | } |
| 103 | |
| 104 | module_init(crypto_ecb_module_init); |
| 105 | module_exit(crypto_ecb_module_exit); |
| 106 | |
| 107 | MODULE_LICENSE("GPL"); |
Eric Biggers | 52e9368 | 2019-01-03 20:16:18 -0800 | [diff] [blame^] | 108 | MODULE_DESCRIPTION("ECB block cipher mode of operation"); |
Kees Cook | 4943ba1 | 2014-11-24 16:32:38 -0800 | [diff] [blame] | 109 | MODULE_ALIAS_CRYPTO("ecb"); |