2 * chainiv: Chain IV Generator
4 * Generate IVs simply be using the last block of the previous encryption.
5 * This is mainly useful for CBC with a synchronous algorithm.
7 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
16 #include <crypto/internal/skcipher.h>
17 #include <crypto/rng.h>
18 #include <crypto/crypto_wq.h>
19 #include <linux/err.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/spinlock.h>
24 #include <linux/string.h>
25 #include <linux/workqueue.h>
28 CHAINIV_STATE_INUSE = 0,
36 struct async_chainiv_ctx {
42 struct crypto_queue queue;
43 struct work_struct postponed;
48 static int chainiv_givencrypt(struct skcipher_givcrypt_request *req)
50 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
51 struct chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
52 struct ablkcipher_request *subreq = skcipher_givcrypt_reqctx(req);
56 ablkcipher_request_set_tfm(subreq, skcipher_geniv_cipher(geniv));
57 ablkcipher_request_set_callback(subreq, req->creq.base.flags &
58 ~CRYPTO_TFM_REQ_MAY_SLEEP,
59 req->creq.base.complete,
61 ablkcipher_request_set_crypt(subreq, req->creq.src, req->creq.dst,
62 req->creq.nbytes, req->creq.info);
64 spin_lock_bh(&ctx->lock);
66 ivsize = crypto_ablkcipher_ivsize(geniv);
68 memcpy(req->giv, ctx->iv, ivsize);
69 memcpy(subreq->info, ctx->iv, ivsize);
71 err = crypto_ablkcipher_encrypt(subreq);
75 memcpy(ctx->iv, subreq->info, ivsize);
78 spin_unlock_bh(&ctx->lock);
83 static int chainiv_givencrypt_first(struct skcipher_givcrypt_request *req)
85 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
86 struct chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
89 spin_lock_bh(&ctx->lock);
90 if (crypto_ablkcipher_crt(geniv)->givencrypt !=
91 chainiv_givencrypt_first)
94 crypto_ablkcipher_crt(geniv)->givencrypt = chainiv_givencrypt;
95 err = crypto_rng_get_bytes(crypto_default_rng, ctx->iv,
96 crypto_ablkcipher_ivsize(geniv));
99 spin_unlock_bh(&ctx->lock);
104 return chainiv_givencrypt(req);
107 static int chainiv_init_common(struct crypto_tfm *tfm)
109 tfm->crt_ablkcipher.reqsize = sizeof(struct ablkcipher_request);
111 return skcipher_geniv_init(tfm);
114 static int chainiv_init(struct crypto_tfm *tfm)
116 struct chainiv_ctx *ctx = crypto_tfm_ctx(tfm);
118 spin_lock_init(&ctx->lock);
120 return chainiv_init_common(tfm);
123 static int async_chainiv_schedule_work(struct async_chainiv_ctx *ctx)
128 if (!ctx->queue.qlen) {
129 smp_mb__before_clear_bit();
130 clear_bit(CHAINIV_STATE_INUSE, &ctx->state);
132 if (!ctx->queue.qlen ||
133 test_and_set_bit(CHAINIV_STATE_INUSE, &ctx->state))
137 queued = queue_work(kcrypto_wq, &ctx->postponed);
144 static int async_chainiv_postpone_request(struct skcipher_givcrypt_request *req)
146 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
147 struct async_chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
150 spin_lock_bh(&ctx->lock);
151 err = skcipher_enqueue_givcrypt(&ctx->queue, req);
152 spin_unlock_bh(&ctx->lock);
154 if (test_and_set_bit(CHAINIV_STATE_INUSE, &ctx->state))
158 return async_chainiv_schedule_work(ctx);
161 static int async_chainiv_givencrypt_tail(struct skcipher_givcrypt_request *req)
163 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
164 struct async_chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
165 struct ablkcipher_request *subreq = skcipher_givcrypt_reqctx(req);
166 unsigned int ivsize = crypto_ablkcipher_ivsize(geniv);
168 memcpy(req->giv, ctx->iv, ivsize);
169 memcpy(subreq->info, ctx->iv, ivsize);
171 ctx->err = crypto_ablkcipher_encrypt(subreq);
175 memcpy(ctx->iv, subreq->info, ivsize);
178 return async_chainiv_schedule_work(ctx);
181 static int async_chainiv_givencrypt(struct skcipher_givcrypt_request *req)
183 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
184 struct async_chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
185 struct ablkcipher_request *subreq = skcipher_givcrypt_reqctx(req);
187 ablkcipher_request_set_tfm(subreq, skcipher_geniv_cipher(geniv));
188 ablkcipher_request_set_callback(subreq, req->creq.base.flags,
189 req->creq.base.complete,
190 req->creq.base.data);
191 ablkcipher_request_set_crypt(subreq, req->creq.src, req->creq.dst,
192 req->creq.nbytes, req->creq.info);
194 if (test_and_set_bit(CHAINIV_STATE_INUSE, &ctx->state))
197 if (ctx->queue.qlen) {
198 clear_bit(CHAINIV_STATE_INUSE, &ctx->state);
202 return async_chainiv_givencrypt_tail(req);
205 return async_chainiv_postpone_request(req);
208 static int async_chainiv_givencrypt_first(struct skcipher_givcrypt_request *req)
210 struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
211 struct async_chainiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
214 if (test_and_set_bit(CHAINIV_STATE_INUSE, &ctx->state))
217 if (crypto_ablkcipher_crt(geniv)->givencrypt !=
218 async_chainiv_givencrypt_first)
221 crypto_ablkcipher_crt(geniv)->givencrypt = async_chainiv_givencrypt;
222 err = crypto_rng_get_bytes(crypto_default_rng, ctx->iv,
223 crypto_ablkcipher_ivsize(geniv));
226 clear_bit(CHAINIV_STATE_INUSE, &ctx->state);
232 return async_chainiv_givencrypt(req);
235 static void async_chainiv_do_postponed(struct work_struct *work)
237 struct async_chainiv_ctx *ctx = container_of(work,
238 struct async_chainiv_ctx,
240 struct skcipher_givcrypt_request *req;
241 struct ablkcipher_request *subreq;
244 /* Only handle one request at a time to avoid hogging keventd. */
245 spin_lock_bh(&ctx->lock);
246 req = skcipher_dequeue_givcrypt(&ctx->queue);
247 spin_unlock_bh(&ctx->lock);
250 async_chainiv_schedule_work(ctx);
254 subreq = skcipher_givcrypt_reqctx(req);
255 subreq->base.flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
257 err = async_chainiv_givencrypt_tail(req);
260 skcipher_givcrypt_complete(req, err);
264 static int async_chainiv_init(struct crypto_tfm *tfm)
266 struct async_chainiv_ctx *ctx = crypto_tfm_ctx(tfm);
268 spin_lock_init(&ctx->lock);
270 crypto_init_queue(&ctx->queue, 100);
271 INIT_WORK(&ctx->postponed, async_chainiv_do_postponed);
273 return chainiv_init_common(tfm);
276 static void async_chainiv_exit(struct crypto_tfm *tfm)
278 struct async_chainiv_ctx *ctx = crypto_tfm_ctx(tfm);
280 BUG_ON(test_bit(CHAINIV_STATE_INUSE, &ctx->state) || ctx->queue.qlen);
282 skcipher_geniv_exit(tfm);
285 static struct crypto_template chainiv_tmpl;
287 static struct crypto_instance *chainiv_alloc(struct rtattr **tb)
289 struct crypto_attr_type *algt;
290 struct crypto_instance *inst;
293 algt = crypto_get_attr_type(tb);
295 return ERR_CAST(algt);
297 err = crypto_get_default_rng();
301 inst = skcipher_geniv_alloc(&chainiv_tmpl, tb, 0, 0);
305 inst->alg.cra_ablkcipher.givencrypt = chainiv_givencrypt_first;
307 inst->alg.cra_init = chainiv_init;
308 inst->alg.cra_exit = skcipher_geniv_exit;
310 inst->alg.cra_ctxsize = sizeof(struct chainiv_ctx);
312 if (!crypto_requires_sync(algt->type, algt->mask)) {
313 inst->alg.cra_flags |= CRYPTO_ALG_ASYNC;
315 inst->alg.cra_ablkcipher.givencrypt =
316 async_chainiv_givencrypt_first;
318 inst->alg.cra_init = async_chainiv_init;
319 inst->alg.cra_exit = async_chainiv_exit;
321 inst->alg.cra_ctxsize = sizeof(struct async_chainiv_ctx);
324 inst->alg.cra_ctxsize += inst->alg.cra_ablkcipher.ivsize;
330 crypto_put_default_rng();
334 static void chainiv_free(struct crypto_instance *inst)
336 skcipher_geniv_free(inst);
337 crypto_put_default_rng();
340 static struct crypto_template chainiv_tmpl = {
342 .alloc = chainiv_alloc,
343 .free = chainiv_free,
344 .module = THIS_MODULE,
347 static int __init chainiv_module_init(void)
349 return crypto_register_template(&chainiv_tmpl);
352 static void chainiv_module_exit(void)
354 crypto_unregister_template(&chainiv_tmpl);
357 module_init(chainiv_module_init);
358 module_exit(chainiv_module_exit);
360 MODULE_LICENSE("GPL");
361 MODULE_DESCRIPTION("Chain IV Generator");