blob: 68f751a41a84c2d9029e2f1e06d3c73d564e5a08 [file] [log] [blame]
Herbert Xudb131ef2006-09-21 11:44:08 +10001/*
2 * CBC: Cipher Block Chaining mode
3 *
Herbert Xucc868d82016-11-22 20:08:42 +08004 * Copyright (c) 2006-2016 Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xudb131ef2006-09-21 11:44:08 +10005 *
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
Herbert Xucc868d82016-11-22 20:08:42 +080013#include <crypto/cbc.h>
Herbert Xu79c65d12016-11-22 20:08:39 +080014#include <crypto/internal/skcipher.h>
Herbert Xudb131ef2006-09-21 11:44:08 +100015#include <linux/err.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
Herbert Xu50b65442007-11-20 17:36:00 +080018#include <linux/log2.h>
Herbert Xudb131ef2006-09-21 11:44:08 +100019#include <linux/module.h>
Herbert Xudb131ef2006-09-21 11:44:08 +100020#include <linux/slab.h>
21
22struct crypto_cbc_ctx {
23 struct crypto_cipher *child;
Herbert Xudb131ef2006-09-21 11:44:08 +100024};
25
Herbert Xu79c65d12016-11-22 20:08:39 +080026static int crypto_cbc_setkey(struct crypto_skcipher *parent, const u8 *key,
Herbert Xudb131ef2006-09-21 11:44:08 +100027 unsigned int keylen)
28{
Herbert Xu79c65d12016-11-22 20:08:39 +080029 struct crypto_cbc_ctx *ctx = crypto_skcipher_ctx(parent);
Herbert Xudb131ef2006-09-21 11:44:08 +100030 struct crypto_cipher *child = ctx->child;
31 int err;
32
33 crypto_cipher_clear_flags(child, CRYPTO_TFM_REQ_MASK);
Herbert Xu79c65d12016-11-22 20:08:39 +080034 crypto_cipher_set_flags(child, crypto_skcipher_get_flags(parent) &
Herbert Xudb131ef2006-09-21 11:44:08 +100035 CRYPTO_TFM_REQ_MASK);
36 err = crypto_cipher_setkey(child, key, keylen);
Herbert Xu79c65d12016-11-22 20:08:39 +080037 crypto_skcipher_set_flags(parent, crypto_cipher_get_flags(child) &
38 CRYPTO_TFM_RES_MASK);
Herbert Xudb131ef2006-09-21 11:44:08 +100039 return err;
40}
41
Herbert Xu79c65d12016-11-22 20:08:39 +080042static inline void crypto_cbc_encrypt_one(struct crypto_skcipher *tfm,
43 const u8 *src, u8 *dst)
Herbert Xudb131ef2006-09-21 11:44:08 +100044{
Herbert Xu79c65d12016-11-22 20:08:39 +080045 struct crypto_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
46
47 crypto_cipher_encrypt_one(ctx->child, dst, src);
48}
49
50static int crypto_cbc_encrypt(struct skcipher_request *req)
51{
52 return crypto_cbc_encrypt_walk(req, crypto_cbc_encrypt_one);
53}
54
Herbert Xu79c65d12016-11-22 20:08:39 +080055static inline void crypto_cbc_decrypt_one(struct crypto_skcipher *tfm,
56 const u8 *src, u8 *dst)
57{
58 struct crypto_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
59
60 crypto_cipher_decrypt_one(ctx->child, dst, src);
61}
62
63static int crypto_cbc_decrypt(struct skcipher_request *req)
64{
65 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
66 struct skcipher_walk walk;
Herbert Xudb131ef2006-09-21 11:44:08 +100067 int err;
68
Herbert Xu79c65d12016-11-22 20:08:39 +080069 err = skcipher_walk_virt(&walk, req, false);
Herbert Xudb131ef2006-09-21 11:44:08 +100070
Herbert Xu79c65d12016-11-22 20:08:39 +080071 while (walk.nbytes) {
72 err = crypto_cbc_decrypt_blocks(&walk, tfm,
73 crypto_cbc_decrypt_one);
74 err = skcipher_walk_done(&walk, err);
Herbert Xudb131ef2006-09-21 11:44:08 +100075 }
76
77 return err;
78}
79
Herbert Xu79c65d12016-11-22 20:08:39 +080080static int crypto_cbc_init_tfm(struct crypto_skcipher *tfm)
Herbert Xudb131ef2006-09-21 11:44:08 +100081{
Herbert Xu79c65d12016-11-22 20:08:39 +080082 struct skcipher_instance *inst = skcipher_alg_instance(tfm);
83 struct crypto_spawn *spawn = skcipher_instance_ctx(inst);
84 struct crypto_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
Herbert Xu2e306ee2006-12-17 10:05:58 +110085 struct crypto_cipher *cipher;
Herbert Xudb131ef2006-09-21 11:44:08 +100086
Herbert Xu2e306ee2006-12-17 10:05:58 +110087 cipher = crypto_spawn_cipher(spawn);
88 if (IS_ERR(cipher))
89 return PTR_ERR(cipher);
Herbert Xudb131ef2006-09-21 11:44:08 +100090
Herbert Xu2e306ee2006-12-17 10:05:58 +110091 ctx->child = cipher;
Herbert Xudb131ef2006-09-21 11:44:08 +100092 return 0;
93}
94
Herbert Xu79c65d12016-11-22 20:08:39 +080095static void crypto_cbc_exit_tfm(struct crypto_skcipher *tfm)
Herbert Xudb131ef2006-09-21 11:44:08 +100096{
Herbert Xu79c65d12016-11-22 20:08:39 +080097 struct crypto_cbc_ctx *ctx = crypto_skcipher_ctx(tfm);
98
Herbert Xudb131ef2006-09-21 11:44:08 +100099 crypto_free_cipher(ctx->child);
100}
101
Herbert Xu79c65d12016-11-22 20:08:39 +0800102static void crypto_cbc_free(struct skcipher_instance *inst)
Herbert Xudb131ef2006-09-21 11:44:08 +1000103{
Herbert Xu79c65d12016-11-22 20:08:39 +0800104 crypto_drop_skcipher(skcipher_instance_ctx(inst));
105 kfree(inst);
106}
107
108static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb)
109{
110 struct skcipher_instance *inst;
111 struct crypto_spawn *spawn;
Herbert Xudb131ef2006-09-21 11:44:08 +1000112 struct crypto_alg *alg;
Herbert Xuebc610e2007-01-01 18:37:02 +1100113 int err;
Herbert Xudb131ef2006-09-21 11:44:08 +1000114
Herbert Xu79c65d12016-11-22 20:08:39 +0800115 err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_SKCIPHER);
Herbert Xuebc610e2007-01-01 18:37:02 +1100116 if (err)
Herbert Xu79c65d12016-11-22 20:08:39 +0800117 return err;
118
119 inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
120 if (!inst)
121 return -ENOMEM;
Herbert Xuebc610e2007-01-01 18:37:02 +1100122
123 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
124 CRYPTO_ALG_TYPE_MASK);
Herbert Xu79c65d12016-11-22 20:08:39 +0800125 err = PTR_ERR(alg);
Herbert Xudb131ef2006-09-21 11:44:08 +1000126 if (IS_ERR(alg))
Herbert Xu79c65d12016-11-22 20:08:39 +0800127 goto err_free_inst;
Herbert Xudb131ef2006-09-21 11:44:08 +1000128
Herbert Xu79c65d12016-11-22 20:08:39 +0800129 spawn = skcipher_instance_ctx(inst);
130 err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst),
131 CRYPTO_ALG_TYPE_MASK);
132 crypto_mod_put(alg);
133 if (err)
134 goto err_free_inst;
135
136 err = crypto_inst_setname(skcipher_crypto_instance(inst), "cbc", alg);
137 if (err)
138 goto err_drop_spawn;
139
140 err = -EINVAL;
Herbert Xu50b65442007-11-20 17:36:00 +0800141 if (!is_power_of_2(alg->cra_blocksize))
Herbert Xu79c65d12016-11-22 20:08:39 +0800142 goto err_drop_spawn;
Herbert Xu50b65442007-11-20 17:36:00 +0800143
Herbert Xu79c65d12016-11-22 20:08:39 +0800144 inst->alg.base.cra_priority = alg->cra_priority;
145 inst->alg.base.cra_blocksize = alg->cra_blocksize;
146 inst->alg.base.cra_alignmask = alg->cra_alignmask;
Herbert Xudb131ef2006-09-21 11:44:08 +1000147
Herbert Xu3c7f0762007-11-20 17:33:39 +0800148 /* We access the data as u32s when xoring. */
Herbert Xu79c65d12016-11-22 20:08:39 +0800149 inst->alg.base.cra_alignmask |= __alignof__(u32) - 1;
Herbert Xu3c7f0762007-11-20 17:33:39 +0800150
Herbert Xu79c65d12016-11-22 20:08:39 +0800151 inst->alg.ivsize = alg->cra_blocksize;
152 inst->alg.min_keysize = alg->cra_cipher.cia_min_keysize;
153 inst->alg.max_keysize = alg->cra_cipher.cia_max_keysize;
Herbert Xudb131ef2006-09-21 11:44:08 +1000154
Herbert Xu79c65d12016-11-22 20:08:39 +0800155 inst->alg.base.cra_ctxsize = sizeof(struct crypto_cbc_ctx);
Herbert Xudb131ef2006-09-21 11:44:08 +1000156
Herbert Xu79c65d12016-11-22 20:08:39 +0800157 inst->alg.init = crypto_cbc_init_tfm;
158 inst->alg.exit = crypto_cbc_exit_tfm;
Herbert Xudb131ef2006-09-21 11:44:08 +1000159
Herbert Xu79c65d12016-11-22 20:08:39 +0800160 inst->alg.setkey = crypto_cbc_setkey;
161 inst->alg.encrypt = crypto_cbc_encrypt;
162 inst->alg.decrypt = crypto_cbc_decrypt;
Herbert Xudb131ef2006-09-21 11:44:08 +1000163
Herbert Xu79c65d12016-11-22 20:08:39 +0800164 inst->free = crypto_cbc_free;
Herbert Xudb131ef2006-09-21 11:44:08 +1000165
Herbert Xu79c65d12016-11-22 20:08:39 +0800166 err = skcipher_register_instance(tmpl, inst);
167 if (err)
168 goto err_drop_spawn;
169
170out:
171 return err;
172
173err_drop_spawn:
174 crypto_drop_spawn(spawn);
175err_free_inst:
Herbert Xudb131ef2006-09-21 11:44:08 +1000176 kfree(inst);
Herbert Xu79c65d12016-11-22 20:08:39 +0800177 goto out;
Herbert Xudb131ef2006-09-21 11:44:08 +1000178}
179
180static struct crypto_template crypto_cbc_tmpl = {
181 .name = "cbc",
Herbert Xu79c65d12016-11-22 20:08:39 +0800182 .create = crypto_cbc_create,
Herbert Xudb131ef2006-09-21 11:44:08 +1000183 .module = THIS_MODULE,
184};
185
186static int __init crypto_cbc_module_init(void)
187{
188 return crypto_register_template(&crypto_cbc_tmpl);
189}
190
191static void __exit crypto_cbc_module_exit(void)
192{
193 crypto_unregister_template(&crypto_cbc_tmpl);
194}
195
196module_init(crypto_cbc_module_init);
197module_exit(crypto_cbc_module_exit);
198
199MODULE_LICENSE("GPL");
200MODULE_DESCRIPTION("CBC block cipher algorithm");
Kees Cook4943ba12014-11-24 16:32:38 -0800201MODULE_ALIAS_CRYPTO("cbc");