]> Pileus Git - ~andy/linux/blob - drivers/md/dm-crypt.c
dm crypt: remove unnecessary crypt_context write parm
[~andy/linux] / drivers / md / dm-crypt.c
1 /*
2  * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
3  * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
4  * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
5  *
6  * This file is released under the GPL.
7  */
8
9 #include <linux/err.h>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/bio.h>
14 #include <linux/blkdev.h>
15 #include <linux/mempool.h>
16 #include <linux/slab.h>
17 #include <linux/crypto.h>
18 #include <linux/workqueue.h>
19 #include <linux/backing-dev.h>
20 #include <asm/atomic.h>
21 #include <linux/scatterlist.h>
22 #include <asm/page.h>
23 #include <asm/unaligned.h>
24
25 #include "dm.h"
26
27 #define DM_MSG_PREFIX "crypt"
28 #define MESG_STR(x) x, sizeof(x)
29
30 /*
31  * context holding the current state of a multi-part conversion
32  */
33 struct convert_context {
34         struct bio *bio_in;
35         struct bio *bio_out;
36         unsigned int offset_in;
37         unsigned int offset_out;
38         unsigned int idx_in;
39         unsigned int idx_out;
40         sector_t sector;
41 };
42
43 /*
44  * per bio private data
45  */
46 struct dm_crypt_io {
47         struct dm_target *target;
48         struct bio *base_bio;
49         struct work_struct work;
50
51         struct convert_context ctx;
52
53         atomic_t pending;
54         int error;
55 };
56
57 struct crypt_config;
58
59 struct crypt_iv_operations {
60         int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
61                    const char *opts);
62         void (*dtr)(struct crypt_config *cc);
63         const char *(*status)(struct crypt_config *cc);
64         int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
65 };
66
67 /*
68  * Crypt: maps a linear range of a block device
69  * and encrypts / decrypts at the same time.
70  */
71 enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
72 struct crypt_config {
73         struct dm_dev *dev;
74         sector_t start;
75
76         /*
77          * pool for per bio private data and
78          * for encryption buffer pages
79          */
80         mempool_t *io_pool;
81         mempool_t *page_pool;
82         struct bio_set *bs;
83
84         struct workqueue_struct *io_queue;
85         struct workqueue_struct *crypt_queue;
86         /*
87          * crypto related data
88          */
89         struct crypt_iv_operations *iv_gen_ops;
90         char *iv_mode;
91         union {
92                 struct crypto_cipher *essiv_tfm;
93                 int benbi_shift;
94         } iv_gen_private;
95         sector_t iv_offset;
96         unsigned int iv_size;
97
98         char cipher[CRYPTO_MAX_ALG_NAME];
99         char chainmode[CRYPTO_MAX_ALG_NAME];
100         struct crypto_blkcipher *tfm;
101         unsigned long flags;
102         unsigned int key_size;
103         u8 key[0];
104 };
105
106 #define MIN_IOS        16
107 #define MIN_POOL_PAGES 32
108 #define MIN_BIO_PAGES  8
109
110 static struct kmem_cache *_crypt_io_pool;
111
112 static void clone_init(struct dm_crypt_io *, struct bio *);
113
114 /*
115  * Different IV generation algorithms:
116  *
117  * plain: the initial vector is the 32-bit little-endian version of the sector
118  *        number, padded with zeros if necessary.
119  *
120  * essiv: "encrypted sector|salt initial vector", the sector number is
121  *        encrypted with the bulk cipher using a salt as key. The salt
122  *        should be derived from the bulk cipher's key via hashing.
123  *
124  * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
125  *        (needed for LRW-32-AES and possible other narrow block modes)
126  *
127  * null: the initial vector is always zero.  Provides compatibility with
128  *       obsolete loop_fish2 devices.  Do not use for new devices.
129  *
130  * plumb: unimplemented, see:
131  * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
132  */
133
134 static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
135 {
136         memset(iv, 0, cc->iv_size);
137         *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
138
139         return 0;
140 }
141
142 static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
143                               const char *opts)
144 {
145         struct crypto_cipher *essiv_tfm;
146         struct crypto_hash *hash_tfm;
147         struct hash_desc desc;
148         struct scatterlist sg;
149         unsigned int saltsize;
150         u8 *salt;
151         int err;
152
153         if (opts == NULL) {
154                 ti->error = "Digest algorithm missing for ESSIV mode";
155                 return -EINVAL;
156         }
157
158         /* Hash the cipher key with the given hash algorithm */
159         hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
160         if (IS_ERR(hash_tfm)) {
161                 ti->error = "Error initializing ESSIV hash";
162                 return PTR_ERR(hash_tfm);
163         }
164
165         saltsize = crypto_hash_digestsize(hash_tfm);
166         salt = kmalloc(saltsize, GFP_KERNEL);
167         if (salt == NULL) {
168                 ti->error = "Error kmallocing salt storage in ESSIV";
169                 crypto_free_hash(hash_tfm);
170                 return -ENOMEM;
171         }
172
173         sg_init_one(&sg, cc->key, cc->key_size);
174         desc.tfm = hash_tfm;
175         desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
176         err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
177         crypto_free_hash(hash_tfm);
178
179         if (err) {
180                 ti->error = "Error calculating hash in ESSIV";
181                 kfree(salt);
182                 return err;
183         }
184
185         /* Setup the essiv_tfm with the given salt */
186         essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
187         if (IS_ERR(essiv_tfm)) {
188                 ti->error = "Error allocating crypto tfm for ESSIV";
189                 kfree(salt);
190                 return PTR_ERR(essiv_tfm);
191         }
192         if (crypto_cipher_blocksize(essiv_tfm) !=
193             crypto_blkcipher_ivsize(cc->tfm)) {
194                 ti->error = "Block size of ESSIV cipher does "
195                             "not match IV size of block cipher";
196                 crypto_free_cipher(essiv_tfm);
197                 kfree(salt);
198                 return -EINVAL;
199         }
200         err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
201         if (err) {
202                 ti->error = "Failed to set key for ESSIV cipher";
203                 crypto_free_cipher(essiv_tfm);
204                 kfree(salt);
205                 return err;
206         }
207         kfree(salt);
208
209         cc->iv_gen_private.essiv_tfm = essiv_tfm;
210         return 0;
211 }
212
213 static void crypt_iv_essiv_dtr(struct crypt_config *cc)
214 {
215         crypto_free_cipher(cc->iv_gen_private.essiv_tfm);
216         cc->iv_gen_private.essiv_tfm = NULL;
217 }
218
219 static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
220 {
221         memset(iv, 0, cc->iv_size);
222         *(u64 *)iv = cpu_to_le64(sector);
223         crypto_cipher_encrypt_one(cc->iv_gen_private.essiv_tfm, iv, iv);
224         return 0;
225 }
226
227 static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
228                               const char *opts)
229 {
230         unsigned int bs = crypto_blkcipher_blocksize(cc->tfm);
231         int log = ilog2(bs);
232
233         /* we need to calculate how far we must shift the sector count
234          * to get the cipher block count, we use this shift in _gen */
235
236         if (1 << log != bs) {
237                 ti->error = "cypher blocksize is not a power of 2";
238                 return -EINVAL;
239         }
240
241         if (log > 9) {
242                 ti->error = "cypher blocksize is > 512";
243                 return -EINVAL;
244         }
245
246         cc->iv_gen_private.benbi_shift = 9 - log;
247
248         return 0;
249 }
250
251 static void crypt_iv_benbi_dtr(struct crypt_config *cc)
252 {
253 }
254
255 static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
256 {
257         __be64 val;
258
259         memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
260
261         val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi_shift) + 1);
262         put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
263
264         return 0;
265 }
266
267 static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
268 {
269         memset(iv, 0, cc->iv_size);
270
271         return 0;
272 }
273
274 static struct crypt_iv_operations crypt_iv_plain_ops = {
275         .generator = crypt_iv_plain_gen
276 };
277
278 static struct crypt_iv_operations crypt_iv_essiv_ops = {
279         .ctr       = crypt_iv_essiv_ctr,
280         .dtr       = crypt_iv_essiv_dtr,
281         .generator = crypt_iv_essiv_gen
282 };
283
284 static struct crypt_iv_operations crypt_iv_benbi_ops = {
285         .ctr       = crypt_iv_benbi_ctr,
286         .dtr       = crypt_iv_benbi_dtr,
287         .generator = crypt_iv_benbi_gen
288 };
289
290 static struct crypt_iv_operations crypt_iv_null_ops = {
291         .generator = crypt_iv_null_gen
292 };
293
294 static int
295 crypt_convert_scatterlist(struct crypt_config *cc, struct scatterlist *out,
296                           struct scatterlist *in, unsigned int length,
297                           int write, sector_t sector)
298 {
299         u8 iv[cc->iv_size] __attribute__ ((aligned(__alignof__(u64))));
300         struct blkcipher_desc desc = {
301                 .tfm = cc->tfm,
302                 .info = iv,
303                 .flags = CRYPTO_TFM_REQ_MAY_SLEEP,
304         };
305         int r;
306
307         if (cc->iv_gen_ops) {
308                 r = cc->iv_gen_ops->generator(cc, iv, sector);
309                 if (r < 0)
310                         return r;
311
312                 if (write)
313                         r = crypto_blkcipher_encrypt_iv(&desc, out, in, length);
314                 else
315                         r = crypto_blkcipher_decrypt_iv(&desc, out, in, length);
316         } else {
317                 if (write)
318                         r = crypto_blkcipher_encrypt(&desc, out, in, length);
319                 else
320                         r = crypto_blkcipher_decrypt(&desc, out, in, length);
321         }
322
323         return r;
324 }
325
326 static void crypt_convert_init(struct crypt_config *cc,
327                                struct convert_context *ctx,
328                                struct bio *bio_out, struct bio *bio_in,
329                                sector_t sector)
330 {
331         ctx->bio_in = bio_in;
332         ctx->bio_out = bio_out;
333         ctx->offset_in = 0;
334         ctx->offset_out = 0;
335         ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
336         ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
337         ctx->sector = sector + cc->iv_offset;
338 }
339
340 /*
341  * Encrypt / decrypt data from one bio to another one (can be the same one)
342  */
343 static int crypt_convert(struct crypt_config *cc,
344                          struct convert_context *ctx)
345 {
346         int r = 0;
347
348         while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
349               ctx->idx_out < ctx->bio_out->bi_vcnt) {
350                 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
351                 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
352                 struct scatterlist sg_in, sg_out;
353
354                 sg_init_table(&sg_in, 1);
355                 sg_set_page(&sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT, bv_in->bv_offset + ctx->offset_in);
356
357                 sg_init_table(&sg_out, 1);
358                 sg_set_page(&sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT, bv_out->bv_offset + ctx->offset_out);
359
360                 ctx->offset_in += sg_in.length;
361                 if (ctx->offset_in >= bv_in->bv_len) {
362                         ctx->offset_in = 0;
363                         ctx->idx_in++;
364                 }
365
366                 ctx->offset_out += sg_out.length;
367                 if (ctx->offset_out >= bv_out->bv_len) {
368                         ctx->offset_out = 0;
369                         ctx->idx_out++;
370                 }
371
372                 r = crypt_convert_scatterlist(cc, &sg_out, &sg_in, sg_in.length,
373                         bio_data_dir(ctx->bio_in) == WRITE, ctx->sector);
374                 if (r < 0)
375                         break;
376
377                 ctx->sector++;
378         }
379
380         return r;
381 }
382
383 static void dm_crypt_bio_destructor(struct bio *bio)
384 {
385         struct dm_crypt_io *io = bio->bi_private;
386         struct crypt_config *cc = io->target->private;
387
388         bio_free(bio, cc->bs);
389 }
390
391 /*
392  * Generate a new unfragmented bio with the given size
393  * This should never violate the device limitations
394  * May return a smaller bio when running out of pages
395  */
396 static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
397 {
398         struct crypt_config *cc = io->target->private;
399         struct bio *clone;
400         unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
401         gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
402         unsigned i, len;
403         struct page *page;
404
405         clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
406         if (!clone)
407                 return NULL;
408
409         clone_init(io, clone);
410
411         for (i = 0; i < nr_iovecs; i++) {
412                 page = mempool_alloc(cc->page_pool, gfp_mask);
413                 if (!page)
414                         break;
415
416                 /*
417                  * if additional pages cannot be allocated without waiting,
418                  * return a partially allocated bio, the caller will then try
419                  * to allocate additional bios while submitting this partial bio
420                  */
421                 if (i == (MIN_BIO_PAGES - 1))
422                         gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
423
424                 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
425
426                 if (!bio_add_page(clone, page, len, 0)) {
427                         mempool_free(page, cc->page_pool);
428                         break;
429                 }
430
431                 size -= len;
432         }
433
434         if (!clone->bi_size) {
435                 bio_put(clone);
436                 return NULL;
437         }
438
439         return clone;
440 }
441
442 static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
443 {
444         unsigned int i;
445         struct bio_vec *bv;
446
447         for (i = 0; i < clone->bi_vcnt; i++) {
448                 bv = bio_iovec_idx(clone, i);
449                 BUG_ON(!bv->bv_page);
450                 mempool_free(bv->bv_page, cc->page_pool);
451                 bv->bv_page = NULL;
452         }
453 }
454
455 /*
456  * One of the bios was finished. Check for completion of
457  * the whole request and correctly clean up the buffer.
458  */
459 static void crypt_dec_pending(struct dm_crypt_io *io, int error)
460 {
461         struct crypt_config *cc = (struct crypt_config *) io->target->private;
462
463         if (error < 0)
464                 io->error = error;
465
466         if (!atomic_dec_and_test(&io->pending))
467                 return;
468
469         bio_endio(io->base_bio, io->error);
470
471         mempool_free(io, cc->io_pool);
472 }
473
474 /*
475  * kcryptd/kcryptd_io:
476  *
477  * Needed because it would be very unwise to do decryption in an
478  * interrupt context.
479  *
480  * kcryptd performs the actual encryption or decryption.
481  *
482  * kcryptd_io performs the IO submission.
483  *
484  * They must be separated as otherwise the final stages could be
485  * starved by new requests which can block in the first stages due
486  * to memory allocation.
487  */
488 static void kcryptd_do_work(struct work_struct *work);
489 static void kcryptd_do_crypt(struct work_struct *work);
490
491 static void kcryptd_queue_io(struct dm_crypt_io *io)
492 {
493         struct crypt_config *cc = io->target->private;
494
495         INIT_WORK(&io->work, kcryptd_do_work);
496         queue_work(cc->io_queue, &io->work);
497 }
498
499 static void kcryptd_queue_crypt(struct dm_crypt_io *io)
500 {
501         struct crypt_config *cc = io->target->private;
502
503         INIT_WORK(&io->work, kcryptd_do_crypt);
504         queue_work(cc->crypt_queue, &io->work);
505 }
506
507 static void crypt_endio(struct bio *clone, int error)
508 {
509         struct dm_crypt_io *io = clone->bi_private;
510         struct crypt_config *cc = io->target->private;
511         unsigned read_io = bio_data_dir(clone) == READ;
512
513         if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
514                 error = -EIO;
515
516         /*
517          * free the processed pages
518          */
519         if (!read_io) {
520                 crypt_free_buffer_pages(cc, clone);
521                 goto out;
522         }
523
524         if (unlikely(error))
525                 goto out;
526
527         bio_put(clone);
528         kcryptd_queue_crypt(io);
529         return;
530
531 out:
532         bio_put(clone);
533         crypt_dec_pending(io, error);
534 }
535
536 static void clone_init(struct dm_crypt_io *io, struct bio *clone)
537 {
538         struct crypt_config *cc = io->target->private;
539
540         clone->bi_private = io;
541         clone->bi_end_io  = crypt_endio;
542         clone->bi_bdev    = cc->dev->bdev;
543         clone->bi_rw      = io->base_bio->bi_rw;
544         clone->bi_destructor = dm_crypt_bio_destructor;
545 }
546
547 static void process_read(struct dm_crypt_io *io)
548 {
549         struct crypt_config *cc = io->target->private;
550         struct bio *base_bio = io->base_bio;
551         struct bio *clone;
552         sector_t sector = base_bio->bi_sector - io->target->begin;
553
554         atomic_inc(&io->pending);
555
556         /*
557          * The block layer might modify the bvec array, so always
558          * copy the required bvecs because we need the original
559          * one in order to decrypt the whole bio data *afterwards*.
560          */
561         clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
562         if (unlikely(!clone)) {
563                 crypt_dec_pending(io, -ENOMEM);
564                 return;
565         }
566
567         clone_init(io, clone);
568         clone->bi_idx = 0;
569         clone->bi_vcnt = bio_segments(base_bio);
570         clone->bi_size = base_bio->bi_size;
571         clone->bi_sector = cc->start + sector;
572         memcpy(clone->bi_io_vec, bio_iovec(base_bio),
573                sizeof(struct bio_vec) * clone->bi_vcnt);
574
575         generic_make_request(clone);
576 }
577
578 static void process_write(struct dm_crypt_io *io)
579 {
580         struct crypt_config *cc = io->target->private;
581         struct bio *base_bio = io->base_bio;
582         struct bio *clone;
583         unsigned remaining = base_bio->bi_size;
584         sector_t sector = base_bio->bi_sector - io->target->begin;
585
586         atomic_inc(&io->pending);
587
588         crypt_convert_init(cc, &io->ctx, NULL, base_bio, sector);
589
590         /*
591          * The allocated buffers can be smaller than the whole bio,
592          * so repeat the whole process until all the data can be handled.
593          */
594         while (remaining) {
595                 clone = crypt_alloc_buffer(io, remaining);
596                 if (unlikely(!clone)) {
597                         crypt_dec_pending(io, -ENOMEM);
598                         return;
599                 }
600
601                 io->ctx.bio_out = clone;
602                 io->ctx.idx_out = 0;
603
604                 if (unlikely(crypt_convert(cc, &io->ctx) < 0)) {
605                         crypt_free_buffer_pages(cc, clone);
606                         bio_put(clone);
607                         crypt_dec_pending(io, -EIO);
608                         return;
609                 }
610
611                 /* crypt_convert should have filled the clone bio */
612                 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
613
614                 clone->bi_sector = cc->start + sector;
615                 remaining -= clone->bi_size;
616                 sector += bio_sectors(clone);
617
618                 /* Grab another reference to the io struct
619                  * before we kick off the request */
620                 if (remaining)
621                         atomic_inc(&io->pending);
622
623                 generic_make_request(clone);
624
625                 /* Do not reference clone after this - it
626                  * may be gone already. */
627
628                 /* out of memory -> run queues */
629                 if (remaining)
630                         congestion_wait(WRITE, HZ/100);
631         }
632 }
633
634 static void process_read_endio(struct dm_crypt_io *io)
635 {
636         struct crypt_config *cc = io->target->private;
637
638         crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
639                            io->base_bio->bi_sector - io->target->begin);
640
641         crypt_dec_pending(io, crypt_convert(cc, &io->ctx));
642 }
643
644 static void kcryptd_do_work(struct work_struct *work)
645 {
646         struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
647
648         if (bio_data_dir(io->base_bio) == READ)
649                 process_read(io);
650 }
651
652 static void kcryptd_do_crypt(struct work_struct *work)
653 {
654         struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
655
656         if (bio_data_dir(io->base_bio) == READ)
657                 process_read_endio(io);
658         else
659                 process_write(io);
660 }
661
662 /*
663  * Decode key from its hex representation
664  */
665 static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
666 {
667         char buffer[3];
668         char *endp;
669         unsigned int i;
670
671         buffer[2] = '\0';
672
673         for (i = 0; i < size; i++) {
674                 buffer[0] = *hex++;
675                 buffer[1] = *hex++;
676
677                 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
678
679                 if (endp != &buffer[2])
680                         return -EINVAL;
681         }
682
683         if (*hex != '\0')
684                 return -EINVAL;
685
686         return 0;
687 }
688
689 /*
690  * Encode key into its hex representation
691  */
692 static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
693 {
694         unsigned int i;
695
696         for (i = 0; i < size; i++) {
697                 sprintf(hex, "%02x", *key);
698                 hex += 2;
699                 key++;
700         }
701 }
702
703 static int crypt_set_key(struct crypt_config *cc, char *key)
704 {
705         unsigned key_size = strlen(key) >> 1;
706
707         if (cc->key_size && cc->key_size != key_size)
708                 return -EINVAL;
709
710         cc->key_size = key_size; /* initial settings */
711
712         if ((!key_size && strcmp(key, "-")) ||
713            (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
714                 return -EINVAL;
715
716         set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
717
718         return 0;
719 }
720
721 static int crypt_wipe_key(struct crypt_config *cc)
722 {
723         clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
724         memset(&cc->key, 0, cc->key_size * sizeof(u8));
725         return 0;
726 }
727
728 /*
729  * Construct an encryption mapping:
730  * <cipher> <key> <iv_offset> <dev_path> <start>
731  */
732 static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
733 {
734         struct crypt_config *cc;
735         struct crypto_blkcipher *tfm;
736         char *tmp;
737         char *cipher;
738         char *chainmode;
739         char *ivmode;
740         char *ivopts;
741         unsigned int key_size;
742         unsigned long long tmpll;
743
744         if (argc != 5) {
745                 ti->error = "Not enough arguments";
746                 return -EINVAL;
747         }
748
749         tmp = argv[0];
750         cipher = strsep(&tmp, "-");
751         chainmode = strsep(&tmp, "-");
752         ivopts = strsep(&tmp, "-");
753         ivmode = strsep(&ivopts, ":");
754
755         if (tmp)
756                 DMWARN("Unexpected additional cipher options");
757
758         key_size = strlen(argv[1]) >> 1;
759
760         cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
761         if (cc == NULL) {
762                 ti->error =
763                         "Cannot allocate transparent encryption context";
764                 return -ENOMEM;
765         }
766
767         if (crypt_set_key(cc, argv[1])) {
768                 ti->error = "Error decoding key";
769                 goto bad_cipher;
770         }
771
772         /* Compatiblity mode for old dm-crypt cipher strings */
773         if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
774                 chainmode = "cbc";
775                 ivmode = "plain";
776         }
777
778         if (strcmp(chainmode, "ecb") && !ivmode) {
779                 ti->error = "This chaining mode requires an IV mechanism";
780                 goto bad_cipher;
781         }
782
783         if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)",
784                      chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) {
785                 ti->error = "Chain mode + cipher name is too long";
786                 goto bad_cipher;
787         }
788
789         tfm = crypto_alloc_blkcipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
790         if (IS_ERR(tfm)) {
791                 ti->error = "Error allocating crypto tfm";
792                 goto bad_cipher;
793         }
794
795         strcpy(cc->cipher, cipher);
796         strcpy(cc->chainmode, chainmode);
797         cc->tfm = tfm;
798
799         /*
800          * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi".
801          * See comments at iv code
802          */
803
804         if (ivmode == NULL)
805                 cc->iv_gen_ops = NULL;
806         else if (strcmp(ivmode, "plain") == 0)
807                 cc->iv_gen_ops = &crypt_iv_plain_ops;
808         else if (strcmp(ivmode, "essiv") == 0)
809                 cc->iv_gen_ops = &crypt_iv_essiv_ops;
810         else if (strcmp(ivmode, "benbi") == 0)
811                 cc->iv_gen_ops = &crypt_iv_benbi_ops;
812         else if (strcmp(ivmode, "null") == 0)
813                 cc->iv_gen_ops = &crypt_iv_null_ops;
814         else {
815                 ti->error = "Invalid IV mode";
816                 goto bad_ivmode;
817         }
818
819         if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
820             cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
821                 goto bad_ivmode;
822
823         cc->iv_size = crypto_blkcipher_ivsize(tfm);
824         if (cc->iv_size)
825                 /* at least a 64 bit sector number should fit in our buffer */
826                 cc->iv_size = max(cc->iv_size,
827                                   (unsigned int)(sizeof(u64) / sizeof(u8)));
828         else {
829                 if (cc->iv_gen_ops) {
830                         DMWARN("Selected cipher does not support IVs");
831                         if (cc->iv_gen_ops->dtr)
832                                 cc->iv_gen_ops->dtr(cc);
833                         cc->iv_gen_ops = NULL;
834                 }
835         }
836
837         cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
838         if (!cc->io_pool) {
839                 ti->error = "Cannot allocate crypt io mempool";
840                 goto bad_slab_pool;
841         }
842
843         cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
844         if (!cc->page_pool) {
845                 ti->error = "Cannot allocate page mempool";
846                 goto bad_page_pool;
847         }
848
849         cc->bs = bioset_create(MIN_IOS, MIN_IOS);
850         if (!cc->bs) {
851                 ti->error = "Cannot allocate crypt bioset";
852                 goto bad_bs;
853         }
854
855         if (crypto_blkcipher_setkey(tfm, cc->key, key_size) < 0) {
856                 ti->error = "Error setting key";
857                 goto bad_device;
858         }
859
860         if (sscanf(argv[2], "%llu", &tmpll) != 1) {
861                 ti->error = "Invalid iv_offset sector";
862                 goto bad_device;
863         }
864         cc->iv_offset = tmpll;
865
866         if (sscanf(argv[4], "%llu", &tmpll) != 1) {
867                 ti->error = "Invalid device sector";
868                 goto bad_device;
869         }
870         cc->start = tmpll;
871
872         if (dm_get_device(ti, argv[3], cc->start, ti->len,
873                           dm_table_get_mode(ti->table), &cc->dev)) {
874                 ti->error = "Device lookup failed";
875                 goto bad_device;
876         }
877
878         if (ivmode && cc->iv_gen_ops) {
879                 if (ivopts)
880                         *(ivopts - 1) = ':';
881                 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
882                 if (!cc->iv_mode) {
883                         ti->error = "Error kmallocing iv_mode string";
884                         goto bad_ivmode_string;
885                 }
886                 strcpy(cc->iv_mode, ivmode);
887         } else
888                 cc->iv_mode = NULL;
889
890         cc->io_queue = create_singlethread_workqueue("kcryptd_io");
891         if (!cc->io_queue) {
892                 ti->error = "Couldn't create kcryptd io queue";
893                 goto bad_io_queue;
894         }
895
896         cc->crypt_queue = create_singlethread_workqueue("kcryptd");
897         if (!cc->crypt_queue) {
898                 ti->error = "Couldn't create kcryptd queue";
899                 goto bad_crypt_queue;
900         }
901
902         ti->private = cc;
903         return 0;
904
905 bad_crypt_queue:
906         destroy_workqueue(cc->io_queue);
907 bad_io_queue:
908         kfree(cc->iv_mode);
909 bad_ivmode_string:
910         dm_put_device(ti, cc->dev);
911 bad_device:
912         bioset_free(cc->bs);
913 bad_bs:
914         mempool_destroy(cc->page_pool);
915 bad_page_pool:
916         mempool_destroy(cc->io_pool);
917 bad_slab_pool:
918         if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
919                 cc->iv_gen_ops->dtr(cc);
920 bad_ivmode:
921         crypto_free_blkcipher(tfm);
922 bad_cipher:
923         /* Must zero key material before freeing */
924         memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
925         kfree(cc);
926         return -EINVAL;
927 }
928
929 static void crypt_dtr(struct dm_target *ti)
930 {
931         struct crypt_config *cc = (struct crypt_config *) ti->private;
932
933         destroy_workqueue(cc->io_queue);
934         destroy_workqueue(cc->crypt_queue);
935
936         bioset_free(cc->bs);
937         mempool_destroy(cc->page_pool);
938         mempool_destroy(cc->io_pool);
939
940         kfree(cc->iv_mode);
941         if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
942                 cc->iv_gen_ops->dtr(cc);
943         crypto_free_blkcipher(cc->tfm);
944         dm_put_device(ti, cc->dev);
945
946         /* Must zero key material before freeing */
947         memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
948         kfree(cc);
949 }
950
951 static int crypt_map(struct dm_target *ti, struct bio *bio,
952                      union map_info *map_context)
953 {
954         struct crypt_config *cc = ti->private;
955         struct dm_crypt_io *io;
956
957         io = mempool_alloc(cc->io_pool, GFP_NOIO);
958         io->target = ti;
959         io->base_bio = bio;
960         io->error = 0;
961         atomic_set(&io->pending, 0);
962
963         if (bio_data_dir(io->base_bio) == READ)
964                 kcryptd_queue_io(io);
965         else
966                 kcryptd_queue_crypt(io);
967
968         return DM_MAPIO_SUBMITTED;
969 }
970
971 static int crypt_status(struct dm_target *ti, status_type_t type,
972                         char *result, unsigned int maxlen)
973 {
974         struct crypt_config *cc = (struct crypt_config *) ti->private;
975         unsigned int sz = 0;
976
977         switch (type) {
978         case STATUSTYPE_INFO:
979                 result[0] = '\0';
980                 break;
981
982         case STATUSTYPE_TABLE:
983                 if (cc->iv_mode)
984                         DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode,
985                                cc->iv_mode);
986                 else
987                         DMEMIT("%s-%s ", cc->cipher, cc->chainmode);
988
989                 if (cc->key_size > 0) {
990                         if ((maxlen - sz) < ((cc->key_size << 1) + 1))
991                                 return -ENOMEM;
992
993                         crypt_encode_key(result + sz, cc->key, cc->key_size);
994                         sz += cc->key_size << 1;
995                 } else {
996                         if (sz >= maxlen)
997                                 return -ENOMEM;
998                         result[sz++] = '-';
999                 }
1000
1001                 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1002                                 cc->dev->name, (unsigned long long)cc->start);
1003                 break;
1004         }
1005         return 0;
1006 }
1007
1008 static void crypt_postsuspend(struct dm_target *ti)
1009 {
1010         struct crypt_config *cc = ti->private;
1011
1012         set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1013 }
1014
1015 static int crypt_preresume(struct dm_target *ti)
1016 {
1017         struct crypt_config *cc = ti->private;
1018
1019         if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1020                 DMERR("aborting resume - crypt key is not set.");
1021                 return -EAGAIN;
1022         }
1023
1024         return 0;
1025 }
1026
1027 static void crypt_resume(struct dm_target *ti)
1028 {
1029         struct crypt_config *cc = ti->private;
1030
1031         clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1032 }
1033
1034 /* Message interface
1035  *      key set <key>
1036  *      key wipe
1037  */
1038 static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1039 {
1040         struct crypt_config *cc = ti->private;
1041
1042         if (argc < 2)
1043                 goto error;
1044
1045         if (!strnicmp(argv[0], MESG_STR("key"))) {
1046                 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1047                         DMWARN("not suspended during key manipulation.");
1048                         return -EINVAL;
1049                 }
1050                 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
1051                         return crypt_set_key(cc, argv[2]);
1052                 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1053                         return crypt_wipe_key(cc);
1054         }
1055
1056 error:
1057         DMWARN("unrecognised message received.");
1058         return -EINVAL;
1059 }
1060
1061 static struct target_type crypt_target = {
1062         .name   = "crypt",
1063         .version= {1, 5, 0},
1064         .module = THIS_MODULE,
1065         .ctr    = crypt_ctr,
1066         .dtr    = crypt_dtr,
1067         .map    = crypt_map,
1068         .status = crypt_status,
1069         .postsuspend = crypt_postsuspend,
1070         .preresume = crypt_preresume,
1071         .resume = crypt_resume,
1072         .message = crypt_message,
1073 };
1074
1075 static int __init dm_crypt_init(void)
1076 {
1077         int r;
1078
1079         _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
1080         if (!_crypt_io_pool)
1081                 return -ENOMEM;
1082
1083         r = dm_register_target(&crypt_target);
1084         if (r < 0) {
1085                 DMERR("register failed %d", r);
1086                 kmem_cache_destroy(_crypt_io_pool);
1087         }
1088
1089         return r;
1090 }
1091
1092 static void __exit dm_crypt_exit(void)
1093 {
1094         int r = dm_unregister_target(&crypt_target);
1095
1096         if (r < 0)
1097                 DMERR("unregister failed %d", r);
1098
1099         kmem_cache_destroy(_crypt_io_pool);
1100 }
1101
1102 module_init(dm_crypt_init);
1103 module_exit(dm_crypt_exit);
1104
1105 MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1106 MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1107 MODULE_LICENSE("GPL");