dm crypt: use io thread for reads only if mempool exhausted
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / md / dm-crypt.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
542da317 4 * Copyright (C) 2006-2009 Red Hat, Inc. All rights reserved.
1da177e4
LT
5 *
6 * This file is released under the GPL.
7 */
8
43d69034 9#include <linux/completion.h>
d1806f6a 10#include <linux/err.h>
1da177e4
LT
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/bio.h>
15#include <linux/blkdev.h>
16#include <linux/mempool.h>
17#include <linux/slab.h>
18#include <linux/crypto.h>
19#include <linux/workqueue.h>
3fcfab16 20#include <linux/backing-dev.h>
c0297721 21#include <linux/percpu.h>
1da177e4 22#include <asm/atomic.h>
378f058c 23#include <linux/scatterlist.h>
1da177e4 24#include <asm/page.h>
48527fa7 25#include <asm/unaligned.h>
1da177e4 26
586e80e6 27#include <linux/device-mapper.h>
1da177e4 28
72d94861 29#define DM_MSG_PREFIX "crypt"
e48d4bbf 30#define MESG_STR(x) x, sizeof(x)
1da177e4 31
1da177e4
LT
32/*
33 * context holding the current state of a multi-part conversion
34 */
35struct convert_context {
43d69034 36 struct completion restart;
1da177e4
LT
37 struct bio *bio_in;
38 struct bio *bio_out;
39 unsigned int offset_in;
40 unsigned int offset_out;
41 unsigned int idx_in;
42 unsigned int idx_out;
43 sector_t sector;
43d69034 44 atomic_t pending;
1da177e4
LT
45};
46
53017030
MB
47/*
48 * per bio private data
49 */
50struct dm_crypt_io {
51 struct dm_target *target;
52 struct bio *base_bio;
53 struct work_struct work;
54
55 struct convert_context ctx;
56
57 atomic_t pending;
58 int error;
0c395b0f 59 sector_t sector;
393b47ef 60 struct dm_crypt_io *base_io;
53017030
MB
61};
62
01482b76 63struct dm_crypt_request {
b2174eeb 64 struct convert_context *ctx;
01482b76
MB
65 struct scatterlist sg_in;
66 struct scatterlist sg_out;
67};
68
1da177e4
LT
69struct crypt_config;
70
71struct crypt_iv_operations {
72 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
d469f841 73 const char *opts);
1da177e4 74 void (*dtr)(struct crypt_config *cc);
b95bf2d3 75 int (*init)(struct crypt_config *cc);
542da317 76 int (*wipe)(struct crypt_config *cc);
1da177e4
LT
77 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
78};
79
60473592 80struct iv_essiv_private {
b95bf2d3
MB
81 struct crypto_hash *hash_tfm;
82 u8 *salt;
60473592
MB
83};
84
85struct iv_benbi_private {
86 int shift;
87};
88
1da177e4
LT
89/*
90 * Crypt: maps a linear range of a block device
91 * and encrypts / decrypts at the same time.
92 */
e48d4bbf 93enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
c0297721
AK
94
95/*
96 * Duplicated per-CPU state for cipher.
97 */
98struct crypt_cpu {
99 struct ablkcipher_request *req;
100 struct crypto_ablkcipher *tfm;
101
102 /* ESSIV: struct crypto_cipher *essiv_tfm */
103 void *iv_private;
104};
105
106/*
107 * The fields in here must be read only after initialization,
108 * changing state should be in crypt_cpu.
109 */
1da177e4
LT
110struct crypt_config {
111 struct dm_dev *dev;
112 sector_t start;
113
114 /*
ddd42edf
MB
115 * pool for per bio private data, crypto requests and
116 * encryption requeusts/buffer pages
1da177e4
LT
117 */
118 mempool_t *io_pool;
ddd42edf 119 mempool_t *req_pool;
1da177e4 120 mempool_t *page_pool;
6a24c718 121 struct bio_set *bs;
1da177e4 122
cabf08e4
MB
123 struct workqueue_struct *io_queue;
124 struct workqueue_struct *crypt_queue;
3f1e9070 125
5ebaee6d 126 char *cipher;
7dbcd137 127 char *cipher_string;
5ebaee6d 128
1da177e4 129 struct crypt_iv_operations *iv_gen_ops;
79066ad3 130 union {
60473592
MB
131 struct iv_essiv_private essiv;
132 struct iv_benbi_private benbi;
79066ad3 133 } iv_gen_private;
1da177e4
LT
134 sector_t iv_offset;
135 unsigned int iv_size;
136
c0297721
AK
137 /*
138 * Duplicated per cpu state. Access through
139 * per_cpu_ptr() only.
140 */
141 struct crypt_cpu __percpu *cpu;
142
ddd42edf
MB
143 /*
144 * Layout of each crypto request:
145 *
146 * struct ablkcipher_request
147 * context
148 * padding
149 * struct dm_crypt_request
150 * padding
151 * IV
152 *
153 * The padding is added so that dm_crypt_request and the IV are
154 * correctly aligned.
155 */
156 unsigned int dmreq_start;
ddd42edf 157
e48d4bbf 158 unsigned long flags;
1da177e4
LT
159 unsigned int key_size;
160 u8 key[0];
161};
162
6a24c718 163#define MIN_IOS 16
1da177e4
LT
164#define MIN_POOL_PAGES 32
165#define MIN_BIO_PAGES 8
166
e18b890b 167static struct kmem_cache *_crypt_io_pool;
1da177e4 168
028867ac 169static void clone_init(struct dm_crypt_io *, struct bio *);
395b167c 170static void kcryptd_queue_crypt(struct dm_crypt_io *io);
027581f3 171
c0297721
AK
172static struct crypt_cpu *this_crypt_config(struct crypt_config *cc)
173{
174 return this_cpu_ptr(cc->cpu);
175}
176
177/*
178 * Use this to access cipher attributes that are the same for each CPU.
179 */
180static struct crypto_ablkcipher *any_tfm(struct crypt_config *cc)
181{
182 return __this_cpu_ptr(cc->cpu)->tfm;
183}
184
1da177e4
LT
185/*
186 * Different IV generation algorithms:
187 *
3c164bd8 188 * plain: the initial vector is the 32-bit little-endian version of the sector
3a4fa0a2 189 * number, padded with zeros if necessary.
1da177e4 190 *
61afef61
MB
191 * plain64: the initial vector is the 64-bit little-endian version of the sector
192 * number, padded with zeros if necessary.
193 *
3c164bd8
RS
194 * essiv: "encrypted sector|salt initial vector", the sector number is
195 * encrypted with the bulk cipher using a salt as key. The salt
196 * should be derived from the bulk cipher's key via hashing.
1da177e4 197 *
48527fa7
RS
198 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
199 * (needed for LRW-32-AES and possible other narrow block modes)
200 *
46b47730
LN
201 * null: the initial vector is always zero. Provides compatibility with
202 * obsolete loop_fish2 devices. Do not use for new devices.
203 *
1da177e4
LT
204 * plumb: unimplemented, see:
205 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
206 */
207
208static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
209{
210 memset(iv, 0, cc->iv_size);
211 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
212
213 return 0;
214}
215
61afef61
MB
216static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
217 sector_t sector)
218{
219 memset(iv, 0, cc->iv_size);
220 *(u64 *)iv = cpu_to_le64(sector);
221
222 return 0;
223}
224
b95bf2d3
MB
225/* Initialise ESSIV - compute salt but no local memory allocations */
226static int crypt_iv_essiv_init(struct crypt_config *cc)
227{
228 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
229 struct hash_desc desc;
230 struct scatterlist sg;
c0297721
AK
231 struct crypto_cipher *essiv_tfm;
232 int err, cpu;
b95bf2d3
MB
233
234 sg_init_one(&sg, cc->key, cc->key_size);
235 desc.tfm = essiv->hash_tfm;
236 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
237
238 err = crypto_hash_digest(&desc, &sg, cc->key_size, essiv->salt);
239 if (err)
240 return err;
241
c0297721
AK
242 for_each_possible_cpu(cpu) {
243 essiv_tfm = per_cpu_ptr(cc->cpu, cpu)->iv_private,
244
245 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
b95bf2d3 246 crypto_hash_digestsize(essiv->hash_tfm));
c0297721
AK
247 if (err)
248 return err;
249 }
250
251 return 0;
b95bf2d3
MB
252}
253
542da317
MB
254/* Wipe salt and reset key derived from volume key */
255static int crypt_iv_essiv_wipe(struct crypt_config *cc)
256{
257 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
258 unsigned salt_size = crypto_hash_digestsize(essiv->hash_tfm);
c0297721
AK
259 struct crypto_cipher *essiv_tfm;
260 int cpu, r, err = 0;
542da317
MB
261
262 memset(essiv->salt, 0, salt_size);
263
c0297721
AK
264 for_each_possible_cpu(cpu) {
265 essiv_tfm = per_cpu_ptr(cc->cpu, cpu)->iv_private;
266 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
267 if (r)
268 err = r;
269 }
270
271 return err;
272}
273
274/* Set up per cpu cipher state */
275static struct crypto_cipher *setup_essiv_cpu(struct crypt_config *cc,
276 struct dm_target *ti,
277 u8 *salt, unsigned saltsize)
278{
279 struct crypto_cipher *essiv_tfm;
280 int err;
281
282 /* Setup the essiv_tfm with the given salt */
283 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
284 if (IS_ERR(essiv_tfm)) {
285 ti->error = "Error allocating crypto tfm for ESSIV";
286 return essiv_tfm;
287 }
288
289 if (crypto_cipher_blocksize(essiv_tfm) !=
290 crypto_ablkcipher_ivsize(any_tfm(cc))) {
291 ti->error = "Block size of ESSIV cipher does "
292 "not match IV size of block cipher";
293 crypto_free_cipher(essiv_tfm);
294 return ERR_PTR(-EINVAL);
295 }
296
297 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
298 if (err) {
299 ti->error = "Failed to set key for ESSIV cipher";
300 crypto_free_cipher(essiv_tfm);
301 return ERR_PTR(err);
302 }
303
304 return essiv_tfm;
542da317
MB
305}
306
60473592
MB
307static void crypt_iv_essiv_dtr(struct crypt_config *cc)
308{
c0297721
AK
309 int cpu;
310 struct crypt_cpu *cpu_cc;
311 struct crypto_cipher *essiv_tfm;
60473592
MB
312 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
313
b95bf2d3
MB
314 crypto_free_hash(essiv->hash_tfm);
315 essiv->hash_tfm = NULL;
316
317 kzfree(essiv->salt);
318 essiv->salt = NULL;
c0297721
AK
319
320 for_each_possible_cpu(cpu) {
321 cpu_cc = per_cpu_ptr(cc->cpu, cpu);
322 essiv_tfm = cpu_cc->iv_private;
323
324 if (essiv_tfm)
325 crypto_free_cipher(essiv_tfm);
326
327 cpu_cc->iv_private = NULL;
328 }
60473592
MB
329}
330
1da177e4 331static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
d469f841 332 const char *opts)
1da177e4 333{
5861f1be
MB
334 struct crypto_cipher *essiv_tfm = NULL;
335 struct crypto_hash *hash_tfm = NULL;
5861f1be 336 u8 *salt = NULL;
c0297721 337 int err, cpu;
1da177e4 338
5861f1be 339 if (!opts) {
72d94861 340 ti->error = "Digest algorithm missing for ESSIV mode";
1da177e4
LT
341 return -EINVAL;
342 }
343
b95bf2d3 344 /* Allocate hash algorithm */
35058687
HX
345 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
346 if (IS_ERR(hash_tfm)) {
72d94861 347 ti->error = "Error initializing ESSIV hash";
5861f1be
MB
348 err = PTR_ERR(hash_tfm);
349 goto bad;
1da177e4
LT
350 }
351
b95bf2d3 352 salt = kzalloc(crypto_hash_digestsize(hash_tfm), GFP_KERNEL);
5861f1be 353 if (!salt) {
72d94861 354 ti->error = "Error kmallocing salt storage in ESSIV";
5861f1be
MB
355 err = -ENOMEM;
356 goto bad;
1da177e4
LT
357 }
358
b95bf2d3 359 cc->iv_gen_private.essiv.salt = salt;
b95bf2d3
MB
360 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
361
c0297721
AK
362 for_each_possible_cpu(cpu) {
363 essiv_tfm = setup_essiv_cpu(cc, ti, salt,
364 crypto_hash_digestsize(hash_tfm));
365 if (IS_ERR(essiv_tfm)) {
366 crypt_iv_essiv_dtr(cc);
367 return PTR_ERR(essiv_tfm);
368 }
369 per_cpu_ptr(cc->cpu, cpu)->iv_private = essiv_tfm;
370 }
371
1da177e4 372 return 0;
5861f1be
MB
373
374bad:
5861f1be
MB
375 if (hash_tfm && !IS_ERR(hash_tfm))
376 crypto_free_hash(hash_tfm);
b95bf2d3 377 kfree(salt);
5861f1be 378 return err;
1da177e4
LT
379}
380
1da177e4
LT
381static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
382{
c0297721
AK
383 struct crypto_cipher *essiv_tfm = this_crypt_config(cc)->iv_private;
384
1da177e4
LT
385 memset(iv, 0, cc->iv_size);
386 *(u64 *)iv = cpu_to_le64(sector);
c0297721
AK
387 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
388
1da177e4
LT
389 return 0;
390}
391
48527fa7
RS
392static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
393 const char *opts)
394{
c0297721 395 unsigned bs = crypto_ablkcipher_blocksize(any_tfm(cc));
f0d1b0b3 396 int log = ilog2(bs);
48527fa7
RS
397
398 /* we need to calculate how far we must shift the sector count
399 * to get the cipher block count, we use this shift in _gen */
400
401 if (1 << log != bs) {
402 ti->error = "cypher blocksize is not a power of 2";
403 return -EINVAL;
404 }
405
406 if (log > 9) {
407 ti->error = "cypher blocksize is > 512";
408 return -EINVAL;
409 }
410
60473592 411 cc->iv_gen_private.benbi.shift = 9 - log;
48527fa7
RS
412
413 return 0;
414}
415
416static void crypt_iv_benbi_dtr(struct crypt_config *cc)
417{
48527fa7
RS
418}
419
420static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
421{
79066ad3
HX
422 __be64 val;
423
48527fa7 424 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
79066ad3 425
60473592 426 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi.shift) + 1);
79066ad3 427 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
48527fa7 428
1da177e4
LT
429 return 0;
430}
431
46b47730
LN
432static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
433{
434 memset(iv, 0, cc->iv_size);
435
436 return 0;
437}
438
1da177e4
LT
439static struct crypt_iv_operations crypt_iv_plain_ops = {
440 .generator = crypt_iv_plain_gen
441};
442
61afef61
MB
443static struct crypt_iv_operations crypt_iv_plain64_ops = {
444 .generator = crypt_iv_plain64_gen
445};
446
1da177e4
LT
447static struct crypt_iv_operations crypt_iv_essiv_ops = {
448 .ctr = crypt_iv_essiv_ctr,
449 .dtr = crypt_iv_essiv_dtr,
b95bf2d3 450 .init = crypt_iv_essiv_init,
542da317 451 .wipe = crypt_iv_essiv_wipe,
1da177e4
LT
452 .generator = crypt_iv_essiv_gen
453};
454
48527fa7
RS
455static struct crypt_iv_operations crypt_iv_benbi_ops = {
456 .ctr = crypt_iv_benbi_ctr,
457 .dtr = crypt_iv_benbi_dtr,
458 .generator = crypt_iv_benbi_gen
459};
1da177e4 460
46b47730
LN
461static struct crypt_iv_operations crypt_iv_null_ops = {
462 .generator = crypt_iv_null_gen
463};
464
d469f841
MB
465static void crypt_convert_init(struct crypt_config *cc,
466 struct convert_context *ctx,
467 struct bio *bio_out, struct bio *bio_in,
fcd369da 468 sector_t sector)
1da177e4
LT
469{
470 ctx->bio_in = bio_in;
471 ctx->bio_out = bio_out;
472 ctx->offset_in = 0;
473 ctx->offset_out = 0;
474 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
475 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
476 ctx->sector = sector + cc->iv_offset;
43d69034 477 init_completion(&ctx->restart);
1da177e4
LT
478}
479
b2174eeb
HY
480static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
481 struct ablkcipher_request *req)
482{
483 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
484}
485
486static struct ablkcipher_request *req_of_dmreq(struct crypt_config *cc,
487 struct dm_crypt_request *dmreq)
488{
489 return (struct ablkcipher_request *)((char *)dmreq - cc->dmreq_start);
490}
491
01482b76 492static int crypt_convert_block(struct crypt_config *cc,
3a7f6c99
MB
493 struct convert_context *ctx,
494 struct ablkcipher_request *req)
01482b76
MB
495{
496 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
497 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
3a7f6c99
MB
498 struct dm_crypt_request *dmreq;
499 u8 *iv;
500 int r = 0;
501
b2174eeb 502 dmreq = dmreq_of_req(cc, req);
3a7f6c99 503 iv = (u8 *)ALIGN((unsigned long)(dmreq + 1),
c0297721 504 crypto_ablkcipher_alignmask(any_tfm(cc)) + 1);
01482b76 505
b2174eeb 506 dmreq->ctx = ctx;
3a7f6c99
MB
507 sg_init_table(&dmreq->sg_in, 1);
508 sg_set_page(&dmreq->sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT,
01482b76
MB
509 bv_in->bv_offset + ctx->offset_in);
510
3a7f6c99
MB
511 sg_init_table(&dmreq->sg_out, 1);
512 sg_set_page(&dmreq->sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT,
01482b76
MB
513 bv_out->bv_offset + ctx->offset_out);
514
515 ctx->offset_in += 1 << SECTOR_SHIFT;
516 if (ctx->offset_in >= bv_in->bv_len) {
517 ctx->offset_in = 0;
518 ctx->idx_in++;
519 }
520
521 ctx->offset_out += 1 << SECTOR_SHIFT;
522 if (ctx->offset_out >= bv_out->bv_len) {
523 ctx->offset_out = 0;
524 ctx->idx_out++;
525 }
526
3a7f6c99
MB
527 if (cc->iv_gen_ops) {
528 r = cc->iv_gen_ops->generator(cc, iv, ctx->sector);
529 if (r < 0)
530 return r;
531 }
532
533 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
534 1 << SECTOR_SHIFT, iv);
535
536 if (bio_data_dir(ctx->bio_in) == WRITE)
537 r = crypto_ablkcipher_encrypt(req);
538 else
539 r = crypto_ablkcipher_decrypt(req);
540
541 return r;
01482b76
MB
542}
543
95497a96
MB
544static void kcryptd_async_done(struct crypto_async_request *async_req,
545 int error);
c0297721 546
ddd42edf
MB
547static void crypt_alloc_req(struct crypt_config *cc,
548 struct convert_context *ctx)
549{
c0297721
AK
550 struct crypt_cpu *this_cc = this_crypt_config(cc);
551
552 if (!this_cc->req)
553 this_cc->req = mempool_alloc(cc->req_pool, GFP_NOIO);
554
555 ablkcipher_request_set_tfm(this_cc->req, this_cc->tfm);
556 ablkcipher_request_set_callback(this_cc->req,
557 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
558 kcryptd_async_done, dmreq_of_req(cc, this_cc->req));
ddd42edf
MB
559}
560
1da177e4
LT
561/*
562 * Encrypt / decrypt data from one bio to another one (can be the same one)
563 */
564static int crypt_convert(struct crypt_config *cc,
d469f841 565 struct convert_context *ctx)
1da177e4 566{
c0297721 567 struct crypt_cpu *this_cc = this_crypt_config(cc);
3f1e9070 568 int r;
1da177e4 569
c8081618
MB
570 atomic_set(&ctx->pending, 1);
571
1da177e4
LT
572 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
573 ctx->idx_out < ctx->bio_out->bi_vcnt) {
1da177e4 574
3a7f6c99
MB
575 crypt_alloc_req(cc, ctx);
576
3f1e9070
MB
577 atomic_inc(&ctx->pending);
578
c0297721 579 r = crypt_convert_block(cc, ctx, this_cc->req);
3a7f6c99
MB
580
581 switch (r) {
3f1e9070 582 /* async */
3a7f6c99
MB
583 case -EBUSY:
584 wait_for_completion(&ctx->restart);
585 INIT_COMPLETION(ctx->restart);
586 /* fall through*/
587 case -EINPROGRESS:
c0297721 588 this_cc->req = NULL;
3f1e9070
MB
589 ctx->sector++;
590 continue;
591
592 /* sync */
3a7f6c99 593 case 0:
3f1e9070 594 atomic_dec(&ctx->pending);
3a7f6c99 595 ctx->sector++;
c7f1b204 596 cond_resched();
3a7f6c99 597 continue;
3a7f6c99 598
3f1e9070
MB
599 /* error */
600 default:
601 atomic_dec(&ctx->pending);
602 return r;
603 }
1da177e4
LT
604 }
605
3f1e9070 606 return 0;
1da177e4
LT
607}
608
d469f841
MB
609static void dm_crypt_bio_destructor(struct bio *bio)
610{
028867ac 611 struct dm_crypt_io *io = bio->bi_private;
6a24c718
MB
612 struct crypt_config *cc = io->target->private;
613
614 bio_free(bio, cc->bs);
d469f841 615}
6a24c718 616
1da177e4
LT
617/*
618 * Generate a new unfragmented bio with the given size
619 * This should never violate the device limitations
933f01d4
MB
620 * May return a smaller bio when running out of pages, indicated by
621 * *out_of_pages set to 1.
1da177e4 622 */
933f01d4
MB
623static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size,
624 unsigned *out_of_pages)
1da177e4 625{
027581f3 626 struct crypt_config *cc = io->target->private;
8b004457 627 struct bio *clone;
1da177e4 628 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
b4e3ca1a 629 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
91e10625
MB
630 unsigned i, len;
631 struct page *page;
1da177e4 632
2f9941b6 633 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
8b004457 634 if (!clone)
1da177e4 635 return NULL;
1da177e4 636
027581f3 637 clone_init(io, clone);
933f01d4 638 *out_of_pages = 0;
6a24c718 639
f97380bc 640 for (i = 0; i < nr_iovecs; i++) {
91e10625 641 page = mempool_alloc(cc->page_pool, gfp_mask);
933f01d4
MB
642 if (!page) {
643 *out_of_pages = 1;
1da177e4 644 break;
933f01d4 645 }
1da177e4
LT
646
647 /*
648 * if additional pages cannot be allocated without waiting,
649 * return a partially allocated bio, the caller will then try
650 * to allocate additional bios while submitting this partial bio
651 */
f97380bc 652 if (i == (MIN_BIO_PAGES - 1))
1da177e4
LT
653 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
654
91e10625
MB
655 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
656
657 if (!bio_add_page(clone, page, len, 0)) {
658 mempool_free(page, cc->page_pool);
659 break;
660 }
1da177e4 661
91e10625 662 size -= len;
1da177e4
LT
663 }
664
8b004457
MB
665 if (!clone->bi_size) {
666 bio_put(clone);
1da177e4
LT
667 return NULL;
668 }
669
8b004457 670 return clone;
1da177e4
LT
671}
672
644bd2f0 673static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
1da177e4 674{
644bd2f0 675 unsigned int i;
1da177e4
LT
676 struct bio_vec *bv;
677
644bd2f0 678 for (i = 0; i < clone->bi_vcnt; i++) {
8b004457 679 bv = bio_iovec_idx(clone, i);
1da177e4
LT
680 BUG_ON(!bv->bv_page);
681 mempool_free(bv->bv_page, cc->page_pool);
682 bv->bv_page = NULL;
683 }
684}
685
dc440d1e
MB
686static struct dm_crypt_io *crypt_io_alloc(struct dm_target *ti,
687 struct bio *bio, sector_t sector)
688{
689 struct crypt_config *cc = ti->private;
690 struct dm_crypt_io *io;
691
692 io = mempool_alloc(cc->io_pool, GFP_NOIO);
693 io->target = ti;
694 io->base_bio = bio;
695 io->sector = sector;
696 io->error = 0;
393b47ef 697 io->base_io = NULL;
dc440d1e
MB
698 atomic_set(&io->pending, 0);
699
700 return io;
701}
702
3e1a8bdd
MB
703static void crypt_inc_pending(struct dm_crypt_io *io)
704{
705 atomic_inc(&io->pending);
706}
707
1da177e4
LT
708/*
709 * One of the bios was finished. Check for completion of
710 * the whole request and correctly clean up the buffer.
393b47ef 711 * If base_io is set, wait for the last fragment to complete.
1da177e4 712 */
5742fd77 713static void crypt_dec_pending(struct dm_crypt_io *io)
1da177e4 714{
5742fd77 715 struct crypt_config *cc = io->target->private;
b35f8caa
MB
716 struct bio *base_bio = io->base_bio;
717 struct dm_crypt_io *base_io = io->base_io;
718 int error = io->error;
1da177e4
LT
719
720 if (!atomic_dec_and_test(&io->pending))
721 return;
722
b35f8caa
MB
723 mempool_free(io, cc->io_pool);
724
725 if (likely(!base_io))
726 bio_endio(base_bio, error);
393b47ef 727 else {
b35f8caa
MB
728 if (error && !base_io->error)
729 base_io->error = error;
730 crypt_dec_pending(base_io);
393b47ef 731 }
1da177e4
LT
732}
733
734/*
cabf08e4 735 * kcryptd/kcryptd_io:
1da177e4
LT
736 *
737 * Needed because it would be very unwise to do decryption in an
23541d2d 738 * interrupt context.
cabf08e4
MB
739 *
740 * kcryptd performs the actual encryption or decryption.
741 *
742 * kcryptd_io performs the IO submission.
743 *
744 * They must be separated as otherwise the final stages could be
745 * starved by new requests which can block in the first stages due
746 * to memory allocation.
c0297721
AK
747 *
748 * The work is done per CPU global for all dm-crypt instances.
749 * They should not depend on each other and do not block.
1da177e4 750 */
6712ecf8 751static void crypt_endio(struct bio *clone, int error)
8b004457 752{
028867ac 753 struct dm_crypt_io *io = clone->bi_private;
8b004457 754 struct crypt_config *cc = io->target->private;
ee7a491e 755 unsigned rw = bio_data_dir(clone);
8b004457 756
adfe4770
MB
757 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
758 error = -EIO;
759
8b004457 760 /*
6712ecf8 761 * free the processed pages
8b004457 762 */
ee7a491e 763 if (rw == WRITE)
644bd2f0 764 crypt_free_buffer_pages(cc, clone);
8b004457
MB
765
766 bio_put(clone);
8b004457 767
ee7a491e
MB
768 if (rw == READ && !error) {
769 kcryptd_queue_crypt(io);
770 return;
771 }
5742fd77
MB
772
773 if (unlikely(error))
774 io->error = error;
775
776 crypt_dec_pending(io);
8b004457
MB
777}
778
028867ac 779static void clone_init(struct dm_crypt_io *io, struct bio *clone)
8b004457
MB
780{
781 struct crypt_config *cc = io->target->private;
782
783 clone->bi_private = io;
784 clone->bi_end_io = crypt_endio;
785 clone->bi_bdev = cc->dev->bdev;
786 clone->bi_rw = io->base_bio->bi_rw;
027581f3 787 clone->bi_destructor = dm_crypt_bio_destructor;
8b004457
MB
788}
789
20c82538
MB
790static void kcryptd_unplug(struct crypt_config *cc)
791{
792 blk_unplug(bdev_get_queue(cc->dev->bdev));
793}
794
795static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
8b004457
MB
796{
797 struct crypt_config *cc = io->target->private;
798 struct bio *base_bio = io->base_bio;
799 struct bio *clone;
93e605c2 800
8b004457
MB
801 /*
802 * The block layer might modify the bvec array, so always
803 * copy the required bvecs because we need the original
804 * one in order to decrypt the whole bio data *afterwards*.
805 */
20c82538
MB
806 clone = bio_alloc_bioset(gfp, bio_segments(base_bio), cc->bs);
807 if (!clone) {
808 kcryptd_unplug(cc);
809 return 1;
93e605c2 810 }
8b004457 811
20c82538
MB
812 crypt_inc_pending(io);
813
8b004457
MB
814 clone_init(io, clone);
815 clone->bi_idx = 0;
816 clone->bi_vcnt = bio_segments(base_bio);
817 clone->bi_size = base_bio->bi_size;
0c395b0f 818 clone->bi_sector = cc->start + io->sector;
8b004457
MB
819 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
820 sizeof(struct bio_vec) * clone->bi_vcnt);
8b004457 821
93e605c2 822 generic_make_request(clone);
20c82538 823 return 0;
8b004457
MB
824}
825
4e4eef64
MB
826static void kcryptd_io_write(struct dm_crypt_io *io)
827{
95497a96 828 struct bio *clone = io->ctx.bio_out;
95497a96 829 generic_make_request(clone);
4e4eef64
MB
830}
831
395b167c
AK
832static void kcryptd_io(struct work_struct *work)
833{
834 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
835
20c82538
MB
836 if (bio_data_dir(io->base_bio) == READ) {
837 crypt_inc_pending(io);
838 if (kcryptd_io_read(io, GFP_NOIO))
839 io->error = -ENOMEM;
840 crypt_dec_pending(io);
841 } else
395b167c
AK
842 kcryptd_io_write(io);
843}
844
845static void kcryptd_queue_io(struct dm_crypt_io *io)
846{
847 struct crypt_config *cc = io->target->private;
848
849 INIT_WORK(&io->work, kcryptd_io);
850 queue_work(cc->io_queue, &io->work);
851}
852
95497a96
MB
853static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io,
854 int error, int async)
4e4eef64 855{
dec1cedf
MB
856 struct bio *clone = io->ctx.bio_out;
857 struct crypt_config *cc = io->target->private;
858
859 if (unlikely(error < 0)) {
860 crypt_free_buffer_pages(cc, clone);
861 bio_put(clone);
862 io->error = -EIO;
6c031f41 863 crypt_dec_pending(io);
dec1cedf
MB
864 return;
865 }
866
867 /* crypt_convert should have filled the clone bio */
868 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
869
870 clone->bi_sector = cc->start + io->sector;
899c95d3 871
95497a96
MB
872 if (async)
873 kcryptd_queue_io(io);
1e37bb8e 874 else
95497a96 875 generic_make_request(clone);
4e4eef64
MB
876}
877
fc5a5e9a 878static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
8b004457
MB
879{
880 struct crypt_config *cc = io->target->private;
8b004457 881 struct bio *clone;
393b47ef 882 struct dm_crypt_io *new_io;
c8081618 883 int crypt_finished;
933f01d4 884 unsigned out_of_pages = 0;
dec1cedf 885 unsigned remaining = io->base_bio->bi_size;
b635b00e 886 sector_t sector = io->sector;
dec1cedf 887 int r;
8b004457 888
fc5a5e9a
MB
889 /*
890 * Prevent io from disappearing until this function completes.
891 */
892 crypt_inc_pending(io);
b635b00e 893 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
fc5a5e9a 894
93e605c2
MB
895 /*
896 * The allocated buffers can be smaller than the whole bio,
897 * so repeat the whole process until all the data can be handled.
898 */
899 while (remaining) {
933f01d4 900 clone = crypt_alloc_buffer(io, remaining, &out_of_pages);
23541d2d 901 if (unlikely(!clone)) {
5742fd77 902 io->error = -ENOMEM;
fc5a5e9a 903 break;
23541d2d 904 }
93e605c2 905
53017030
MB
906 io->ctx.bio_out = clone;
907 io->ctx.idx_out = 0;
93e605c2 908
dec1cedf 909 remaining -= clone->bi_size;
b635b00e 910 sector += bio_sectors(clone);
93e605c2 911
4e594098 912 crypt_inc_pending(io);
dec1cedf 913 r = crypt_convert(cc, &io->ctx);
c8081618 914 crypt_finished = atomic_dec_and_test(&io->ctx.pending);
f97380bc 915
c8081618
MB
916 /* Encryption was already finished, submit io now */
917 if (crypt_finished) {
3a7f6c99 918 kcryptd_crypt_write_io_submit(io, r, 0);
c8081618
MB
919
920 /*
921 * If there was an error, do not try next fragments.
922 * For async, error is processed in async handler.
923 */
6c031f41 924 if (unlikely(r < 0))
fc5a5e9a 925 break;
b635b00e
MB
926
927 io->sector = sector;
4e594098 928 }
93e605c2 929
933f01d4
MB
930 /*
931 * Out of memory -> run queues
932 * But don't wait if split was due to the io size restriction
933 */
934 if (unlikely(out_of_pages))
8aa7e847 935 congestion_wait(BLK_RW_ASYNC, HZ/100);
933f01d4 936
393b47ef
MB
937 /*
938 * With async crypto it is unsafe to share the crypto context
939 * between fragments, so switch to a new dm_crypt_io structure.
940 */
941 if (unlikely(!crypt_finished && remaining)) {
942 new_io = crypt_io_alloc(io->target, io->base_bio,
943 sector);
944 crypt_inc_pending(new_io);
945 crypt_convert_init(cc, &new_io->ctx, NULL,
946 io->base_bio, sector);
947 new_io->ctx.idx_in = io->ctx.idx_in;
948 new_io->ctx.offset_in = io->ctx.offset_in;
949
950 /*
951 * Fragments after the first use the base_io
952 * pending count.
953 */
954 if (!io->base_io)
955 new_io->base_io = io;
956 else {
957 new_io->base_io = io->base_io;
958 crypt_inc_pending(io->base_io);
959 crypt_dec_pending(io);
960 }
961
962 io = new_io;
963 }
93e605c2 964 }
899c95d3
MB
965
966 crypt_dec_pending(io);
84131db6
MB
967}
968
4e4eef64 969static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
5742fd77
MB
970{
971 if (unlikely(error < 0))
972 io->error = -EIO;
973
974 crypt_dec_pending(io);
975}
976
4e4eef64 977static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
8b004457
MB
978{
979 struct crypt_config *cc = io->target->private;
5742fd77 980 int r = 0;
1da177e4 981
3e1a8bdd 982 crypt_inc_pending(io);
3a7f6c99 983
53017030 984 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
0c395b0f 985 io->sector);
1da177e4 986
5742fd77
MB
987 r = crypt_convert(cc, &io->ctx);
988
3f1e9070 989 if (atomic_dec_and_test(&io->ctx.pending))
3a7f6c99
MB
990 kcryptd_crypt_read_done(io, r);
991
992 crypt_dec_pending(io);
1da177e4
LT
993}
994
95497a96
MB
995static void kcryptd_async_done(struct crypto_async_request *async_req,
996 int error)
997{
b2174eeb
HY
998 struct dm_crypt_request *dmreq = async_req->data;
999 struct convert_context *ctx = dmreq->ctx;
95497a96
MB
1000 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
1001 struct crypt_config *cc = io->target->private;
1002
1003 if (error == -EINPROGRESS) {
1004 complete(&ctx->restart);
1005 return;
1006 }
1007
b2174eeb 1008 mempool_free(req_of_dmreq(cc, dmreq), cc->req_pool);
95497a96
MB
1009
1010 if (!atomic_dec_and_test(&ctx->pending))
1011 return;
1012
1013 if (bio_data_dir(io->base_bio) == READ)
1014 kcryptd_crypt_read_done(io, error);
1015 else
1016 kcryptd_crypt_write_io_submit(io, error, 1);
1017}
1018
395b167c 1019static void kcryptd_crypt(struct work_struct *work)
1da177e4 1020{
028867ac 1021 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
8b004457 1022
cabf08e4 1023 if (bio_data_dir(io->base_bio) == READ)
395b167c 1024 kcryptd_crypt_read_convert(io);
4e4eef64 1025 else
395b167c 1026 kcryptd_crypt_write_convert(io);
cabf08e4
MB
1027}
1028
395b167c 1029static void kcryptd_queue_crypt(struct dm_crypt_io *io)
cabf08e4 1030{
395b167c 1031 struct crypt_config *cc = io->target->private;
cabf08e4 1032
395b167c
AK
1033 INIT_WORK(&io->work, kcryptd_crypt);
1034 queue_work(cc->crypt_queue, &io->work);
1da177e4
LT
1035}
1036
1037/*
1038 * Decode key from its hex representation
1039 */
1040static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1041{
1042 char buffer[3];
1043 char *endp;
1044 unsigned int i;
1045
1046 buffer[2] = '\0';
1047
8b004457 1048 for (i = 0; i < size; i++) {
1da177e4
LT
1049 buffer[0] = *hex++;
1050 buffer[1] = *hex++;
1051
1052 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
1053
1054 if (endp != &buffer[2])
1055 return -EINVAL;
1056 }
1057
1058 if (*hex != '\0')
1059 return -EINVAL;
1060
1061 return 0;
1062}
1063
1064/*
1065 * Encode key into its hex representation
1066 */
1067static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
1068{
1069 unsigned int i;
1070
8b004457 1071 for (i = 0; i < size; i++) {
1da177e4
LT
1072 sprintf(hex, "%02x", *key);
1073 hex += 2;
1074 key++;
1075 }
1076}
1077
c0297721
AK
1078static int crypt_setkey_allcpus(struct crypt_config *cc)
1079{
1080 int cpu, err = 0, r;
1081
1082 for_each_possible_cpu(cpu) {
1083 r = crypto_ablkcipher_setkey(per_cpu_ptr(cc->cpu, cpu)->tfm,
1084 cc->key, cc->key_size);
1085 if (r)
1086 err = r;
1087 }
1088
1089 return err;
1090}
1091
e48d4bbf
MB
1092static int crypt_set_key(struct crypt_config *cc, char *key)
1093{
69a8cfcd
MB
1094 /* The key size may not be changed. */
1095 if (cc->key_size != (strlen(key) >> 1))
e48d4bbf
MB
1096 return -EINVAL;
1097
69a8cfcd
MB
1098 /* Hyphen (which gives a key_size of zero) means there is no key. */
1099 if (!cc->key_size && strcmp(key, "-"))
1100 return -EINVAL;
e48d4bbf 1101
69a8cfcd 1102 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
e48d4bbf
MB
1103 return -EINVAL;
1104
1105 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1106
c0297721 1107 return crypt_setkey_allcpus(cc);
e48d4bbf
MB
1108}
1109
1110static int crypt_wipe_key(struct crypt_config *cc)
1111{
1112 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1113 memset(&cc->key, 0, cc->key_size * sizeof(u8));
c0297721
AK
1114
1115 return crypt_setkey_allcpus(cc);
e48d4bbf
MB
1116}
1117
28513fcc
MB
1118static void crypt_dtr(struct dm_target *ti)
1119{
1120 struct crypt_config *cc = ti->private;
c0297721
AK
1121 struct crypt_cpu *cpu_cc;
1122 int cpu;
28513fcc
MB
1123
1124 ti->private = NULL;
1125
1126 if (!cc)
1127 return;
1128
1129 if (cc->io_queue)
1130 destroy_workqueue(cc->io_queue);
1131 if (cc->crypt_queue)
1132 destroy_workqueue(cc->crypt_queue);
1133
c0297721
AK
1134 if (cc->cpu)
1135 for_each_possible_cpu(cpu) {
1136 cpu_cc = per_cpu_ptr(cc->cpu, cpu);
1137 if (cpu_cc->req)
1138 mempool_free(cpu_cc->req, cc->req_pool);
1139 if (cpu_cc->tfm)
1140 crypto_free_ablkcipher(cpu_cc->tfm);
1141 }
1142
28513fcc
MB
1143 if (cc->bs)
1144 bioset_free(cc->bs);
1145
1146 if (cc->page_pool)
1147 mempool_destroy(cc->page_pool);
1148 if (cc->req_pool)
1149 mempool_destroy(cc->req_pool);
1150 if (cc->io_pool)
1151 mempool_destroy(cc->io_pool);
1152
1153 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1154 cc->iv_gen_ops->dtr(cc);
1155
28513fcc
MB
1156 if (cc->dev)
1157 dm_put_device(ti, cc->dev);
1158
c0297721
AK
1159 if (cc->cpu)
1160 free_percpu(cc->cpu);
1161
5ebaee6d 1162 kzfree(cc->cipher);
7dbcd137 1163 kzfree(cc->cipher_string);
28513fcc
MB
1164
1165 /* Must zero key material before freeing */
1166 kzfree(cc);
1167}
1168
5ebaee6d
MB
1169static int crypt_ctr_cipher(struct dm_target *ti,
1170 char *cipher_in, char *key)
1da177e4 1171{
5ebaee6d 1172 struct crypt_config *cc = ti->private;
c0297721 1173 struct crypto_ablkcipher *tfm;
5ebaee6d
MB
1174 char *tmp, *cipher, *chainmode, *ivmode, *ivopts;
1175 char *cipher_api = NULL;
c0297721 1176 int cpu, ret = -EINVAL;
1da177e4 1177
5ebaee6d
MB
1178 /* Convert to crypto api definition? */
1179 if (strchr(cipher_in, '(')) {
1180 ti->error = "Bad cipher specification";
1da177e4
LT
1181 return -EINVAL;
1182 }
1183
7dbcd137
MB
1184 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1185 if (!cc->cipher_string)
1186 goto bad_mem;
1187
5ebaee6d
MB
1188 /*
1189 * Legacy dm-crypt cipher specification
1190 * cipher-mode-iv:ivopts
1191 */
1192 tmp = cipher_in;
1da177e4 1193 cipher = strsep(&tmp, "-");
5ebaee6d
MB
1194
1195 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1196 if (!cc->cipher)
1197 goto bad_mem;
1198
1da177e4
LT
1199 chainmode = strsep(&tmp, "-");
1200 ivopts = strsep(&tmp, "-");
1201 ivmode = strsep(&ivopts, ":");
1202
1203 if (tmp)
5ebaee6d 1204 DMWARN("Ignoring unexpected additional cipher options");
1da177e4 1205
c0297721
AK
1206 cc->cpu = alloc_percpu(struct crypt_cpu);
1207 if (!cc->cpu) {
1208 ti->error = "Cannot allocate per cpu state";
1209 goto bad_mem;
1210 }
1211
7dbcd137
MB
1212 /*
1213 * For compatibility with the original dm-crypt mapping format, if
1214 * only the cipher name is supplied, use cbc-plain.
1215 */
5ebaee6d 1216 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
1da177e4
LT
1217 chainmode = "cbc";
1218 ivmode = "plain";
1219 }
1220
d1806f6a 1221 if (strcmp(chainmode, "ecb") && !ivmode) {
5ebaee6d
MB
1222 ti->error = "IV mechanism required";
1223 return -EINVAL;
1da177e4
LT
1224 }
1225
5ebaee6d
MB
1226 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1227 if (!cipher_api)
1228 goto bad_mem;
1229
1230 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1231 "%s(%s)", chainmode, cipher);
1232 if (ret < 0) {
1233 kfree(cipher_api);
1234 goto bad_mem;
1da177e4
LT
1235 }
1236
5ebaee6d 1237 /* Allocate cipher */
c0297721
AK
1238 for_each_possible_cpu(cpu) {
1239 tfm = crypto_alloc_ablkcipher(cipher_api, 0, 0);
1240 if (IS_ERR(tfm)) {
1241 ret = PTR_ERR(tfm);
1242 ti->error = "Error allocating crypto tfm";
1243 goto bad;
1244 }
1245 per_cpu_ptr(cc->cpu, cpu)->tfm = tfm;
1da177e4 1246 }
1da177e4 1247
5ebaee6d
MB
1248 /* Initialize and set key */
1249 ret = crypt_set_key(cc, key);
28513fcc 1250 if (ret < 0) {
0b430958 1251 ti->error = "Error decoding and setting key";
28513fcc 1252 goto bad;
0b430958
MB
1253 }
1254
5ebaee6d 1255 /* Initialize IV */
c0297721 1256 cc->iv_size = crypto_ablkcipher_ivsize(any_tfm(cc));
5ebaee6d
MB
1257 if (cc->iv_size)
1258 /* at least a 64 bit sector number should fit in our buffer */
1259 cc->iv_size = max(cc->iv_size,
1260 (unsigned int)(sizeof(u64) / sizeof(u8)));
1261 else if (ivmode) {
1262 DMWARN("Selected cipher does not support IVs");
1263 ivmode = NULL;
1264 }
1265
1266 /* Choose ivmode, see comments at iv code. */
1da177e4
LT
1267 if (ivmode == NULL)
1268 cc->iv_gen_ops = NULL;
1269 else if (strcmp(ivmode, "plain") == 0)
1270 cc->iv_gen_ops = &crypt_iv_plain_ops;
61afef61
MB
1271 else if (strcmp(ivmode, "plain64") == 0)
1272 cc->iv_gen_ops = &crypt_iv_plain64_ops;
1da177e4
LT
1273 else if (strcmp(ivmode, "essiv") == 0)
1274 cc->iv_gen_ops = &crypt_iv_essiv_ops;
48527fa7
RS
1275 else if (strcmp(ivmode, "benbi") == 0)
1276 cc->iv_gen_ops = &crypt_iv_benbi_ops;
46b47730
LN
1277 else if (strcmp(ivmode, "null") == 0)
1278 cc->iv_gen_ops = &crypt_iv_null_ops;
1da177e4 1279 else {
5ebaee6d 1280 ret = -EINVAL;
72d94861 1281 ti->error = "Invalid IV mode";
28513fcc 1282 goto bad;
1da177e4
LT
1283 }
1284
28513fcc
MB
1285 /* Allocate IV */
1286 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1287 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1288 if (ret < 0) {
1289 ti->error = "Error creating IV";
1290 goto bad;
1291 }
1292 }
1da177e4 1293
28513fcc
MB
1294 /* Initialize IV (set keys for ESSIV etc) */
1295 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1296 ret = cc->iv_gen_ops->init(cc);
1297 if (ret < 0) {
1298 ti->error = "Error initialising IV";
1299 goto bad;
1300 }
b95bf2d3
MB
1301 }
1302
5ebaee6d
MB
1303 ret = 0;
1304bad:
1305 kfree(cipher_api);
1306 return ret;
1307
1308bad_mem:
1309 ti->error = "Cannot allocate cipher strings";
1310 return -ENOMEM;
1311}
1312
1313/*
1314 * Construct an encryption mapping:
1315 * <cipher> <key> <iv_offset> <dev_path> <start>
1316 */
1317static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1318{
1319 struct crypt_config *cc;
1320 unsigned int key_size;
1321 unsigned long long tmpll;
1322 int ret;
1323
1324 if (argc != 5) {
1325 ti->error = "Not enough arguments";
1326 return -EINVAL;
1da177e4
LT
1327 }
1328
5ebaee6d
MB
1329 key_size = strlen(argv[1]) >> 1;
1330
1331 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1332 if (!cc) {
1333 ti->error = "Cannot allocate encryption context";
1334 return -ENOMEM;
1335 }
69a8cfcd 1336 cc->key_size = key_size;
5ebaee6d
MB
1337
1338 ti->private = cc;
1339 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1340 if (ret < 0)
1341 goto bad;
1342
28513fcc 1343 ret = -ENOMEM;
93d2341c 1344 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
1da177e4 1345 if (!cc->io_pool) {
72d94861 1346 ti->error = "Cannot allocate crypt io mempool";
28513fcc 1347 goto bad;
1da177e4
LT
1348 }
1349
ddd42edf 1350 cc->dmreq_start = sizeof(struct ablkcipher_request);
c0297721 1351 cc->dmreq_start += crypto_ablkcipher_reqsize(any_tfm(cc));
ddd42edf 1352 cc->dmreq_start = ALIGN(cc->dmreq_start, crypto_tfm_ctx_alignment());
c0297721 1353 cc->dmreq_start += crypto_ablkcipher_alignmask(any_tfm(cc)) &
3a7f6c99 1354 ~(crypto_tfm_ctx_alignment() - 1);
ddd42edf
MB
1355
1356 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
1357 sizeof(struct dm_crypt_request) + cc->iv_size);
1358 if (!cc->req_pool) {
1359 ti->error = "Cannot allocate crypt request mempool";
28513fcc 1360 goto bad;
ddd42edf 1361 }
ddd42edf 1362
a19b27ce 1363 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
1da177e4 1364 if (!cc->page_pool) {
72d94861 1365 ti->error = "Cannot allocate page mempool";
28513fcc 1366 goto bad;
1da177e4
LT
1367 }
1368
bb799ca0 1369 cc->bs = bioset_create(MIN_IOS, 0);
6a24c718
MB
1370 if (!cc->bs) {
1371 ti->error = "Cannot allocate crypt bioset";
28513fcc 1372 goto bad;
6a24c718
MB
1373 }
1374
28513fcc 1375 ret = -EINVAL;
4ee218cd 1376 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
72d94861 1377 ti->error = "Invalid iv_offset sector";
28513fcc 1378 goto bad;
1da177e4 1379 }
4ee218cd 1380 cc->iv_offset = tmpll;
1da177e4 1381
28513fcc
MB
1382 if (dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev)) {
1383 ti->error = "Device lookup failed";
1384 goto bad;
1385 }
1386
4ee218cd 1387 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
72d94861 1388 ti->error = "Invalid device sector";
28513fcc 1389 goto bad;
1da177e4 1390 }
4ee218cd 1391 cc->start = tmpll;
1da177e4 1392
28513fcc 1393 ret = -ENOMEM;
c0297721
AK
1394 cc->io_queue = alloc_workqueue("kcryptd_io",
1395 WQ_NON_REENTRANT|
1396 WQ_MEM_RECLAIM,
1397 1);
cabf08e4
MB
1398 if (!cc->io_queue) {
1399 ti->error = "Couldn't create kcryptd io queue";
28513fcc 1400 goto bad;
cabf08e4
MB
1401 }
1402
c0297721
AK
1403 cc->crypt_queue = alloc_workqueue("kcryptd",
1404 WQ_NON_REENTRANT|
1405 WQ_CPU_INTENSIVE|
1406 WQ_MEM_RECLAIM,
1407 1);
cabf08e4 1408 if (!cc->crypt_queue) {
9934a8be 1409 ti->error = "Couldn't create kcryptd queue";
28513fcc 1410 goto bad;
9934a8be
MB
1411 }
1412
647c7db1 1413 ti->num_flush_requests = 1;
1da177e4
LT
1414 return 0;
1415
28513fcc
MB
1416bad:
1417 crypt_dtr(ti);
1418 return ret;
1da177e4
LT
1419}
1420
1da177e4
LT
1421static int crypt_map(struct dm_target *ti, struct bio *bio,
1422 union map_info *map_context)
1423{
028867ac 1424 struct dm_crypt_io *io;
647c7db1
MP
1425 struct crypt_config *cc;
1426
d87f4c14 1427 if (bio->bi_rw & REQ_FLUSH) {
647c7db1
MP
1428 cc = ti->private;
1429 bio->bi_bdev = cc->dev->bdev;
1430 return DM_MAPIO_REMAPPED;
1431 }
1da177e4 1432
b441a262 1433 io = crypt_io_alloc(ti, bio, dm_target_offset(ti, bio->bi_sector));
cabf08e4 1434
20c82538
MB
1435 if (bio_data_dir(io->base_bio) == READ) {
1436 if (kcryptd_io_read(io, GFP_NOWAIT))
1437 kcryptd_queue_io(io);
1438 } else
cabf08e4 1439 kcryptd_queue_crypt(io);
1da177e4 1440
d2a7ad29 1441 return DM_MAPIO_SUBMITTED;
1da177e4
LT
1442}
1443
1444static int crypt_status(struct dm_target *ti, status_type_t type,
1445 char *result, unsigned int maxlen)
1446{
5ebaee6d 1447 struct crypt_config *cc = ti->private;
1da177e4
LT
1448 unsigned int sz = 0;
1449
1450 switch (type) {
1451 case STATUSTYPE_INFO:
1452 result[0] = '\0';
1453 break;
1454
1455 case STATUSTYPE_TABLE:
7dbcd137 1456 DMEMIT("%s ", cc->cipher_string);
1da177e4
LT
1457
1458 if (cc->key_size > 0) {
1459 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1460 return -ENOMEM;
1461
1462 crypt_encode_key(result + sz, cc->key, cc->key_size);
1463 sz += cc->key_size << 1;
1464 } else {
1465 if (sz >= maxlen)
1466 return -ENOMEM;
1467 result[sz++] = '-';
1468 }
1469
4ee218cd
AM
1470 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1471 cc->dev->name, (unsigned long long)cc->start);
1da177e4
LT
1472 break;
1473 }
1474 return 0;
1475}
1476
e48d4bbf
MB
1477static void crypt_postsuspend(struct dm_target *ti)
1478{
1479 struct crypt_config *cc = ti->private;
1480
1481 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1482}
1483
1484static int crypt_preresume(struct dm_target *ti)
1485{
1486 struct crypt_config *cc = ti->private;
1487
1488 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1489 DMERR("aborting resume - crypt key is not set.");
1490 return -EAGAIN;
1491 }
1492
1493 return 0;
1494}
1495
1496static void crypt_resume(struct dm_target *ti)
1497{
1498 struct crypt_config *cc = ti->private;
1499
1500 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1501}
1502
1503/* Message interface
1504 * key set <key>
1505 * key wipe
1506 */
1507static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1508{
1509 struct crypt_config *cc = ti->private;
542da317 1510 int ret = -EINVAL;
e48d4bbf
MB
1511
1512 if (argc < 2)
1513 goto error;
1514
1515 if (!strnicmp(argv[0], MESG_STR("key"))) {
1516 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1517 DMWARN("not suspended during key manipulation.");
1518 return -EINVAL;
1519 }
542da317
MB
1520 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set"))) {
1521 ret = crypt_set_key(cc, argv[2]);
1522 if (ret)
1523 return ret;
1524 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
1525 ret = cc->iv_gen_ops->init(cc);
1526 return ret;
1527 }
1528 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe"))) {
1529 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
1530 ret = cc->iv_gen_ops->wipe(cc);
1531 if (ret)
1532 return ret;
1533 }
e48d4bbf 1534 return crypt_wipe_key(cc);
542da317 1535 }
e48d4bbf
MB
1536 }
1537
1538error:
1539 DMWARN("unrecognised message received.");
1540 return -EINVAL;
1541}
1542
d41e26b9
MB
1543static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
1544 struct bio_vec *biovec, int max_size)
1545{
1546 struct crypt_config *cc = ti->private;
1547 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
1548
1549 if (!q->merge_bvec_fn)
1550 return max_size;
1551
1552 bvm->bi_bdev = cc->dev->bdev;
b441a262 1553 bvm->bi_sector = cc->start + dm_target_offset(ti, bvm->bi_sector);
d41e26b9
MB
1554
1555 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
1556}
1557
af4874e0
MS
1558static int crypt_iterate_devices(struct dm_target *ti,
1559 iterate_devices_callout_fn fn, void *data)
1560{
1561 struct crypt_config *cc = ti->private;
1562
5dea271b 1563 return fn(ti, cc->dev, cc->start, ti->len, data);
af4874e0
MS
1564}
1565
1da177e4
LT
1566static struct target_type crypt_target = {
1567 .name = "crypt",
c0297721 1568 .version = {1, 9, 0},
1da177e4
LT
1569 .module = THIS_MODULE,
1570 .ctr = crypt_ctr,
1571 .dtr = crypt_dtr,
1572 .map = crypt_map,
1573 .status = crypt_status,
e48d4bbf
MB
1574 .postsuspend = crypt_postsuspend,
1575 .preresume = crypt_preresume,
1576 .resume = crypt_resume,
1577 .message = crypt_message,
d41e26b9 1578 .merge = crypt_merge,
af4874e0 1579 .iterate_devices = crypt_iterate_devices,
1da177e4
LT
1580};
1581
1582static int __init dm_crypt_init(void)
1583{
1584 int r;
1585
028867ac 1586 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
1da177e4
LT
1587 if (!_crypt_io_pool)
1588 return -ENOMEM;
1589
1da177e4
LT
1590 r = dm_register_target(&crypt_target);
1591 if (r < 0) {
72d94861 1592 DMERR("register failed %d", r);
9934a8be 1593 kmem_cache_destroy(_crypt_io_pool);
1da177e4
LT
1594 }
1595
1da177e4
LT
1596 return r;
1597}
1598
1599static void __exit dm_crypt_exit(void)
1600{
10d3bd09 1601 dm_unregister_target(&crypt_target);
1da177e4
LT
1602 kmem_cache_destroy(_crypt_io_pool);
1603}
1604
1605module_init(dm_crypt_init);
1606module_exit(dm_crypt_exit);
1607
1608MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1609MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1610MODULE_LICENSE("GPL");