blob: 655d816760e591f0d007a6721fd557265004a791 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
Milan Broze48d4bb2006-10-03 01:15:37 -07004 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file is released under the GPL.
7 */
8
Herbert Xud1806f62006-08-22 20:29:17 +10009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#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 <asm/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100020#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/page.h>
22
23#include "dm.h"
24
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "crypt"
Milan Broze48d4bb2006-10-03 01:15:37 -070026#define MESG_STR(x) x, sizeof(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * per bio private data
30 */
31struct crypt_io {
32 struct dm_target *target;
Milan Broz8b004452006-10-03 01:15:37 -070033 struct bio *base_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct bio *first_clone;
35 struct work_struct work;
36 atomic_t pending;
37 int error;
Milan Broz23541d22006-10-03 01:15:39 -070038 int post_process;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41/*
42 * context holding the current state of a multi-part conversion
43 */
44struct convert_context {
45 struct bio *bio_in;
46 struct bio *bio_out;
47 unsigned int offset_in;
48 unsigned int offset_out;
49 unsigned int idx_in;
50 unsigned int idx_out;
51 sector_t sector;
52 int write;
53};
54
55struct crypt_config;
56
57struct crypt_iv_operations {
58 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
59 const char *opts);
60 void (*dtr)(struct crypt_config *cc);
61 const char *(*status)(struct crypt_config *cc);
62 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
63};
64
65/*
66 * Crypt: maps a linear range of a block device
67 * and encrypts / decrypts at the same time.
68 */
Milan Broze48d4bb2006-10-03 01:15:37 -070069enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct crypt_config {
71 struct dm_dev *dev;
72 sector_t start;
73
74 /*
75 * pool for per bio private data and
76 * for encryption buffer pages
77 */
78 mempool_t *io_pool;
79 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -070080 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 /*
83 * crypto related data
84 */
85 struct crypt_iv_operations *iv_gen_ops;
86 char *iv_mode;
Herbert Xud1806f62006-08-22 20:29:17 +100087 struct crypto_cipher *iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 sector_t iv_offset;
89 unsigned int iv_size;
90
Herbert Xud1806f62006-08-22 20:29:17 +100091 char cipher[CRYPTO_MAX_ALG_NAME];
92 char chainmode[CRYPTO_MAX_ALG_NAME];
93 struct crypto_blkcipher *tfm;
Milan Broze48d4bb2006-10-03 01:15:37 -070094 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unsigned int key_size;
96 u8 key[0];
97};
98
Milan Broz6a24c712006-10-03 01:15:40 -070099#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define MIN_POOL_PAGES 32
101#define MIN_BIO_PAGES 8
102
103static kmem_cache_t *_crypt_io_pool;
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Different IV generation algorithms:
107 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000108 * plain: the initial vector is the 32-bit little-endian version of the sector
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * number, padded with zeros if neccessary.
110 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000111 * essiv: "encrypted sector|salt initial vector", the sector number is
112 * encrypted with the bulk cipher using a salt as key. The salt
113 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *
115 * plumb: unimplemented, see:
116 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
117 */
118
119static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
120{
121 memset(iv, 0, cc->iv_size);
122 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
123
124 return 0;
125}
126
127static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
128 const char *opts)
129{
Herbert Xud1806f62006-08-22 20:29:17 +1000130 struct crypto_cipher *essiv_tfm;
Herbert Xu35058682006-08-24 19:10:20 +1000131 struct crypto_hash *hash_tfm;
132 struct hash_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct scatterlist sg;
134 unsigned int saltsize;
135 u8 *salt;
Herbert Xud1806f62006-08-22 20:29:17 +1000136 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (opts == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700139 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return -EINVAL;
141 }
142
143 /* Hash the cipher key with the given hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000144 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
145 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700146 ti->error = "Error initializing ESSIV hash";
Herbert Xu35058682006-08-24 19:10:20 +1000147 return PTR_ERR(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
Herbert Xu35058682006-08-24 19:10:20 +1000150 saltsize = crypto_hash_digestsize(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 salt = kmalloc(saltsize, GFP_KERNEL);
152 if (salt == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700153 ti->error = "Error kmallocing salt storage in ESSIV";
Herbert Xu35058682006-08-24 19:10:20 +1000154 crypto_free_hash(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return -ENOMEM;
156 }
157
David Hardeman378f0582005-09-17 17:55:31 +1000158 sg_set_buf(&sg, cc->key, cc->key_size);
Herbert Xu35058682006-08-24 19:10:20 +1000159 desc.tfm = hash_tfm;
160 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
161 err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
162 crypto_free_hash(hash_tfm);
163
164 if (err) {
165 ti->error = "Error calculating hash in ESSIV";
166 return err;
167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* Setup the essiv_tfm with the given salt */
Herbert Xud1806f62006-08-22 20:29:17 +1000170 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
171 if (IS_ERR(essiv_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700172 ti->error = "Error allocating crypto tfm for ESSIV";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000174 return PTR_ERR(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
Herbert Xud1806f62006-08-22 20:29:17 +1000176 if (crypto_cipher_blocksize(essiv_tfm) !=
177 crypto_blkcipher_ivsize(cc->tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700178 ti->error = "Block size of ESSIV cipher does "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 "not match IV size of block cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000180 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree(salt);
182 return -EINVAL;
183 }
Herbert Xud1806f62006-08-22 20:29:17 +1000184 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
185 if (err) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700186 ti->error = "Failed to set key for ESSIV cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000187 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000189 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191 kfree(salt);
192
Herbert Xud1806f62006-08-22 20:29:17 +1000193 cc->iv_gen_private = essiv_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
195}
196
197static void crypt_iv_essiv_dtr(struct crypt_config *cc)
198{
Herbert Xud1806f62006-08-22 20:29:17 +1000199 crypto_free_cipher(cc->iv_gen_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 cc->iv_gen_private = NULL;
201}
202
203static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
204{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 memset(iv, 0, cc->iv_size);
206 *(u64 *)iv = cpu_to_le64(sector);
Herbert Xud1806f62006-08-22 20:29:17 +1000207 crypto_cipher_encrypt_one(cc->iv_gen_private, iv, iv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209}
210
211static struct crypt_iv_operations crypt_iv_plain_ops = {
212 .generator = crypt_iv_plain_gen
213};
214
215static struct crypt_iv_operations crypt_iv_essiv_ops = {
216 .ctr = crypt_iv_essiv_ctr,
217 .dtr = crypt_iv_essiv_dtr,
218 .generator = crypt_iv_essiv_gen
219};
220
221
Arjan van de Ven858119e2006-01-14 13:20:43 -0800222static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223crypt_convert_scatterlist(struct crypt_config *cc, struct scatterlist *out,
224 struct scatterlist *in, unsigned int length,
225 int write, sector_t sector)
226{
227 u8 iv[cc->iv_size];
Herbert Xud1806f62006-08-22 20:29:17 +1000228 struct blkcipher_desc desc = {
229 .tfm = cc->tfm,
230 .info = iv,
231 .flags = CRYPTO_TFM_REQ_MAY_SLEEP,
232 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int r;
234
235 if (cc->iv_gen_ops) {
236 r = cc->iv_gen_ops->generator(cc, iv, sector);
237 if (r < 0)
238 return r;
239
240 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000241 r = crypto_blkcipher_encrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 else
Herbert Xud1806f62006-08-22 20:29:17 +1000243 r = crypto_blkcipher_decrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 } else {
245 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000246 r = crypto_blkcipher_encrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 else
Herbert Xud1806f62006-08-22 20:29:17 +1000248 r = crypto_blkcipher_decrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
251 return r;
252}
253
254static void
255crypt_convert_init(struct crypt_config *cc, struct convert_context *ctx,
256 struct bio *bio_out, struct bio *bio_in,
257 sector_t sector, int write)
258{
259 ctx->bio_in = bio_in;
260 ctx->bio_out = bio_out;
261 ctx->offset_in = 0;
262 ctx->offset_out = 0;
263 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
264 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
265 ctx->sector = sector + cc->iv_offset;
266 ctx->write = write;
267}
268
269/*
270 * Encrypt / decrypt data from one bio to another one (can be the same one)
271 */
272static int crypt_convert(struct crypt_config *cc,
273 struct convert_context *ctx)
274{
275 int r = 0;
276
277 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
278 ctx->idx_out < ctx->bio_out->bi_vcnt) {
279 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
280 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
281 struct scatterlist sg_in = {
282 .page = bv_in->bv_page,
283 .offset = bv_in->bv_offset + ctx->offset_in,
284 .length = 1 << SECTOR_SHIFT
285 };
286 struct scatterlist sg_out = {
287 .page = bv_out->bv_page,
288 .offset = bv_out->bv_offset + ctx->offset_out,
289 .length = 1 << SECTOR_SHIFT
290 };
291
292 ctx->offset_in += sg_in.length;
293 if (ctx->offset_in >= bv_in->bv_len) {
294 ctx->offset_in = 0;
295 ctx->idx_in++;
296 }
297
298 ctx->offset_out += sg_out.length;
299 if (ctx->offset_out >= bv_out->bv_len) {
300 ctx->offset_out = 0;
301 ctx->idx_out++;
302 }
303
304 r = crypt_convert_scatterlist(cc, &sg_out, &sg_in, sg_in.length,
305 ctx->write, ctx->sector);
306 if (r < 0)
307 break;
308
309 ctx->sector++;
310 }
311
312 return r;
313}
314
Milan Broz6a24c712006-10-03 01:15:40 -0700315 static void dm_crypt_bio_destructor(struct bio *bio)
316 {
317 struct crypt_io *io = bio->bi_private;
318 struct crypt_config *cc = io->target->private;
319
320 bio_free(bio, cc->bs);
321 }
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
324 * Generate a new unfragmented bio with the given size
325 * This should never violate the device limitations
326 * May return a smaller bio when running out of pages
327 */
328static struct bio *
329crypt_alloc_buffer(struct crypt_config *cc, unsigned int size,
330 struct bio *base_bio, unsigned int *bio_vec_idx)
331{
Milan Broz8b004452006-10-03 01:15:37 -0700332 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400334 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 unsigned int i;
336
Milan Broz6a24c712006-10-03 01:15:40 -0700337 if (base_bio) {
338 clone = bio_alloc_bioset(GFP_NOIO, base_bio->bi_max_vecs, cc->bs);
339 __bio_clone(clone, base_bio);
340 } else
341 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
342
Milan Broz8b004452006-10-03 01:15:37 -0700343 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Milan Broz6a24c712006-10-03 01:15:40 -0700346 clone->bi_destructor = dm_crypt_bio_destructor;
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* if the last bio was not complete, continue where that one ended */
Milan Broz8b004452006-10-03 01:15:37 -0700349 clone->bi_idx = *bio_vec_idx;
350 clone->bi_vcnt = *bio_vec_idx;
351 clone->bi_size = 0;
352 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Milan Broz8b004452006-10-03 01:15:37 -0700354 /* clone->bi_idx pages have already been allocated */
355 size -= clone->bi_idx * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Milan Broz8b004452006-10-03 01:15:37 -0700357 for (i = clone->bi_idx; i < nr_iovecs; i++) {
358 struct bio_vec *bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 bv->bv_page = mempool_alloc(cc->page_pool, gfp_mask);
361 if (!bv->bv_page)
362 break;
363
364 /*
365 * if additional pages cannot be allocated without waiting,
366 * return a partially allocated bio, the caller will then try
367 * to allocate additional bios while submitting this partial bio
368 */
Milan Broz8b004452006-10-03 01:15:37 -0700369 if ((i - clone->bi_idx) == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
371
372 bv->bv_offset = 0;
373 if (size > PAGE_SIZE)
374 bv->bv_len = PAGE_SIZE;
375 else
376 bv->bv_len = size;
377
Milan Broz8b004452006-10-03 01:15:37 -0700378 clone->bi_size += bv->bv_len;
379 clone->bi_vcnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 size -= bv->bv_len;
381 }
382
Milan Broz8b004452006-10-03 01:15:37 -0700383 if (!clone->bi_size) {
384 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return NULL;
386 }
387
388 /*
389 * Remember the last bio_vec allocated to be able
390 * to correctly continue after the splitting.
391 */
Milan Broz8b004452006-10-03 01:15:37 -0700392 *bio_vec_idx = clone->bi_vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Milan Broz8b004452006-10-03 01:15:37 -0700394 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397static void crypt_free_buffer_pages(struct crypt_config *cc,
Milan Broz8b004452006-10-03 01:15:37 -0700398 struct bio *clone, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 unsigned int i, start, end;
401 struct bio_vec *bv;
402
403 /*
404 * This is ugly, but Jens Axboe thinks that using bi_idx in the
405 * endio function is too dangerous at the moment, so I calculate the
406 * correct position using bi_vcnt and bi_size.
407 * The bv_offset and bv_len fields might already be modified but we
408 * know that we always allocated whole pages.
409 * A fix to the bi_idx issue in the kernel is in the works, so
410 * we will hopefully be able to revert to the cleaner solution soon.
411 */
Milan Broz8b004452006-10-03 01:15:37 -0700412 i = clone->bi_vcnt - 1;
413 bv = bio_iovec_idx(clone, i);
414 end = (i << PAGE_SHIFT) + (bv->bv_offset + bv->bv_len) - clone->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 start = end - bytes;
416
417 start >>= PAGE_SHIFT;
Milan Broz8b004452006-10-03 01:15:37 -0700418 if (!clone->bi_size)
419 end = clone->bi_vcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 else
421 end >>= PAGE_SHIFT;
422
Milan Broz8b004452006-10-03 01:15:37 -0700423 for (i = start; i < end; i++) {
424 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 BUG_ON(!bv->bv_page);
426 mempool_free(bv->bv_page, cc->page_pool);
427 bv->bv_page = NULL;
428 }
429}
430
431/*
432 * One of the bios was finished. Check for completion of
433 * the whole request and correctly clean up the buffer.
434 */
435static void dec_pending(struct crypt_io *io, int error)
436{
437 struct crypt_config *cc = (struct crypt_config *) io->target->private;
438
439 if (error < 0)
440 io->error = error;
441
442 if (!atomic_dec_and_test(&io->pending))
443 return;
444
445 if (io->first_clone)
446 bio_put(io->first_clone);
447
Milan Broz8b004452006-10-03 01:15:37 -0700448 bio_endio(io->base_bio, io->base_bio->bi_size, io->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 mempool_free(io, cc->io_pool);
451}
452
453/*
454 * kcryptd:
455 *
456 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700457 * interrupt context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 */
459static struct workqueue_struct *_kcryptd_workqueue;
Milan Broz8b004452006-10-03 01:15:37 -0700460static void kcryptd_do_work(void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462static void kcryptd_queue_io(struct crypt_io *io)
463{
464 INIT_WORK(&io->work, kcryptd_do_work, io);
465 queue_work(_kcryptd_workqueue, &io->work);
466}
467
Milan Broz8b004452006-10-03 01:15:37 -0700468static int crypt_endio(struct bio *clone, unsigned int done, int error)
469{
470 struct crypt_io *io = clone->bi_private;
471 struct crypt_config *cc = io->target->private;
472 unsigned read_io = bio_data_dir(clone) == READ;
473
474 /*
475 * free the processed pages, even if
476 * it's only a partially completed write
477 */
478 if (!read_io)
479 crypt_free_buffer_pages(cc, clone, done);
480
Milan Broz23541d22006-10-03 01:15:39 -0700481 /* keep going - not finished yet */
Milan Broz8b004452006-10-03 01:15:37 -0700482 if (unlikely(clone->bi_size))
483 return 1;
484
Milan Broz8b004452006-10-03 01:15:37 -0700485 if (!read_io)
486 goto out;
487
488 if (unlikely(!bio_flagged(clone, BIO_UPTODATE))) {
489 error = -EIO;
490 goto out;
491 }
492
493 bio_put(clone);
Milan Broz23541d22006-10-03 01:15:39 -0700494 io->post_process = 1;
Milan Broz8b004452006-10-03 01:15:37 -0700495 kcryptd_queue_io(io);
496 return 0;
497
498out:
499 bio_put(clone);
500 dec_pending(io, error);
501 return error;
502}
503
504static void clone_init(struct crypt_io *io, struct bio *clone)
505{
506 struct crypt_config *cc = io->target->private;
507
508 clone->bi_private = io;
509 clone->bi_end_io = crypt_endio;
510 clone->bi_bdev = cc->dev->bdev;
511 clone->bi_rw = io->base_bio->bi_rw;
512}
513
Milan Broz23541d22006-10-03 01:15:39 -0700514static void process_read(struct crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700515{
516 struct crypt_config *cc = io->target->private;
517 struct bio *base_bio = io->base_bio;
518 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700519 sector_t sector = base_bio->bi_sector - io->target->begin;
520
521 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700522
523 /*
524 * The block layer might modify the bvec array, so always
525 * copy the required bvecs because we need the original
526 * one in order to decrypt the whole bio data *afterwards*.
527 */
Milan Broz6a24c712006-10-03 01:15:40 -0700528 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700529 if (unlikely(!clone)) {
530 dec_pending(io, -ENOMEM);
Milan Broz23541d22006-10-03 01:15:39 -0700531 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700532 }
Milan Broz8b004452006-10-03 01:15:37 -0700533
534 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -0700535 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700536 clone->bi_idx = 0;
537 clone->bi_vcnt = bio_segments(base_bio);
538 clone->bi_size = base_bio->bi_size;
Milan Broz93e605c2006-10-03 01:15:38 -0700539 clone->bi_sector = cc->start + sector;
Milan Broz8b004452006-10-03 01:15:37 -0700540 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
541 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700542
Milan Broz93e605c2006-10-03 01:15:38 -0700543 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700544}
545
Milan Broz23541d22006-10-03 01:15:39 -0700546static void process_write(struct crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700547{
548 struct crypt_config *cc = io->target->private;
549 struct bio *base_bio = io->base_bio;
550 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700551 struct convert_context ctx;
552 unsigned remaining = base_bio->bi_size;
553 sector_t sector = base_bio->bi_sector - io->target->begin;
554 unsigned bvec_idx = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700555
Milan Broz93e605c2006-10-03 01:15:38 -0700556 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700557
Milan Broz93e605c2006-10-03 01:15:38 -0700558 crypt_convert_init(cc, &ctx, NULL, base_bio, sector, 1);
Milan Broz8b004452006-10-03 01:15:37 -0700559
Milan Broz93e605c2006-10-03 01:15:38 -0700560 /*
561 * The allocated buffers can be smaller than the whole bio,
562 * so repeat the whole process until all the data can be handled.
563 */
564 while (remaining) {
565 clone = crypt_alloc_buffer(cc, base_bio->bi_size,
566 io->first_clone, &bvec_idx);
Milan Broz23541d22006-10-03 01:15:39 -0700567 if (unlikely(!clone)) {
568 dec_pending(io, -ENOMEM);
569 return;
570 }
Milan Broz93e605c2006-10-03 01:15:38 -0700571
572 ctx.bio_out = clone;
573
574 if (unlikely(crypt_convert(cc, &ctx) < 0)) {
575 crypt_free_buffer_pages(cc, clone, clone->bi_size);
576 bio_put(clone);
Milan Broz23541d22006-10-03 01:15:39 -0700577 dec_pending(io, -EIO);
578 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700579 }
580
581 clone_init(io, clone);
582 clone->bi_sector = cc->start + sector;
583
584 if (!io->first_clone) {
585 /*
586 * hold a reference to the first clone, because it
587 * holds the bio_vec array and that can't be freed
588 * before all other clones are released
589 */
590 bio_get(clone);
591 io->first_clone = clone;
592 }
593
Milan Broz93e605c2006-10-03 01:15:38 -0700594 remaining -= clone->bi_size;
595 sector += bio_sectors(clone);
596
Milan Broz23541d22006-10-03 01:15:39 -0700597 /* prevent bio_put of first_clone */
598 if (remaining)
599 atomic_inc(&io->pending);
600
Milan Broz93e605c2006-10-03 01:15:38 -0700601 generic_make_request(clone);
602
603 /* out of memory -> run queues */
604 if (remaining)
605 blk_congestion_wait(bio_data_dir(clone), HZ/100);
Milan Broz8b004452006-10-03 01:15:37 -0700606 }
Milan Broz8b004452006-10-03 01:15:37 -0700607}
608
609static void process_read_endio(struct crypt_io *io)
610{
611 struct crypt_config *cc = io->target->private;
612 struct convert_context ctx;
613
614 crypt_convert_init(cc, &ctx, io->base_bio, io->base_bio,
615 io->base_bio->bi_sector - io->target->begin, 0);
616
617 dec_pending(io, crypt_convert(cc, &ctx));
618}
619
620static void kcryptd_do_work(void *data)
621{
622 struct crypt_io *io = data;
623
Milan Broz23541d22006-10-03 01:15:39 -0700624 if (io->post_process)
625 process_read_endio(io);
626 else if (bio_data_dir(io->base_bio) == READ)
627 process_read(io);
628 else
629 process_write(io);
Milan Broz8b004452006-10-03 01:15:37 -0700630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/*
633 * Decode key from its hex representation
634 */
635static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
636{
637 char buffer[3];
638 char *endp;
639 unsigned int i;
640
641 buffer[2] = '\0';
642
Milan Broz8b004452006-10-03 01:15:37 -0700643 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 buffer[0] = *hex++;
645 buffer[1] = *hex++;
646
647 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
648
649 if (endp != &buffer[2])
650 return -EINVAL;
651 }
652
653 if (*hex != '\0')
654 return -EINVAL;
655
656 return 0;
657}
658
659/*
660 * Encode key into its hex representation
661 */
662static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
663{
664 unsigned int i;
665
Milan Broz8b004452006-10-03 01:15:37 -0700666 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 sprintf(hex, "%02x", *key);
668 hex += 2;
669 key++;
670 }
671}
672
Milan Broze48d4bb2006-10-03 01:15:37 -0700673static int crypt_set_key(struct crypt_config *cc, char *key)
674{
675 unsigned key_size = strlen(key) >> 1;
676
677 if (cc->key_size && cc->key_size != key_size)
678 return -EINVAL;
679
680 cc->key_size = key_size; /* initial settings */
681
682 if ((!key_size && strcmp(key, "-")) ||
683 (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
684 return -EINVAL;
685
686 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
687
688 return 0;
689}
690
691static int crypt_wipe_key(struct crypt_config *cc)
692{
693 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
694 memset(&cc->key, 0, cc->key_size * sizeof(u8));
695 return 0;
696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/*
699 * Construct an encryption mapping:
700 * <cipher> <key> <iv_offset> <dev_path> <start>
701 */
702static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
703{
704 struct crypt_config *cc;
Herbert Xud1806f62006-08-22 20:29:17 +1000705 struct crypto_blkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 char *tmp;
707 char *cipher;
708 char *chainmode;
709 char *ivmode;
710 char *ivopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned int key_size;
Andrew Morton4ee218c2006-03-27 01:17:48 -0800712 unsigned long long tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (argc != 5) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700715 ti->error = "Not enough arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return -EINVAL;
717 }
718
719 tmp = argv[0];
720 cipher = strsep(&tmp, "-");
721 chainmode = strsep(&tmp, "-");
722 ivopts = strsep(&tmp, "-");
723 ivmode = strsep(&ivopts, ":");
724
725 if (tmp)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700726 DMWARN("Unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 key_size = strlen(argv[1]) >> 1;
729
Milan Broze48d4bb2006-10-03 01:15:37 -0700730 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (cc == NULL) {
732 ti->error =
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700733 "Cannot allocate transparent encryption context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -ENOMEM;
735 }
736
Milan Broze48d4bb2006-10-03 01:15:37 -0700737 if (crypt_set_key(cc, argv[1])) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700738 ti->error = "Error decoding key";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto bad1;
740 }
741
742 /* Compatiblity mode for old dm-crypt cipher strings */
743 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
744 chainmode = "cbc";
745 ivmode = "plain";
746 }
747
Herbert Xud1806f62006-08-22 20:29:17 +1000748 if (strcmp(chainmode, "ecb") && !ivmode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700749 ti->error = "This chaining mode requires an IV mechanism";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto bad1;
751 }
752
Herbert Xud1806f62006-08-22 20:29:17 +1000753 if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)", chainmode,
754 cipher) >= CRYPTO_MAX_ALG_NAME) {
755 ti->error = "Chain mode + cipher name is too long";
756 goto bad1;
757 }
758
759 tfm = crypto_alloc_blkcipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
760 if (IS_ERR(tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700761 ti->error = "Error allocating crypto tfm";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 goto bad1;
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Herbert Xud1806f62006-08-22 20:29:17 +1000765 strcpy(cc->cipher, cipher);
766 strcpy(cc->chainmode, chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 cc->tfm = tfm;
768
769 /*
770 * Choose ivmode. Valid modes: "plain", "essiv:<esshash>".
771 * See comments at iv code
772 */
773
774 if (ivmode == NULL)
775 cc->iv_gen_ops = NULL;
776 else if (strcmp(ivmode, "plain") == 0)
777 cc->iv_gen_ops = &crypt_iv_plain_ops;
778 else if (strcmp(ivmode, "essiv") == 0)
779 cc->iv_gen_ops = &crypt_iv_essiv_ops;
780 else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700781 ti->error = "Invalid IV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 goto bad2;
783 }
784
785 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
786 cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
787 goto bad2;
788
Herbert Xud1806f62006-08-22 20:29:17 +1000789 cc->iv_size = crypto_blkcipher_ivsize(tfm);
790 if (cc->iv_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* at least a 64 bit sector number should fit in our buffer */
Herbert Xud1806f62006-08-22 20:29:17 +1000792 cc->iv_size = max(cc->iv_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 (unsigned int)(sizeof(u64) / sizeof(u8)));
794 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (cc->iv_gen_ops) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700796 DMWARN("Selected cipher does not support IVs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (cc->iv_gen_ops->dtr)
798 cc->iv_gen_ops->dtr(cc);
799 cc->iv_gen_ops = NULL;
800 }
801 }
802
Matthew Dobson93d23412006-03-26 01:37:50 -0800803 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700805 ti->error = "Cannot allocate crypt io mempool";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 goto bad3;
807 }
808
Matthew Dobsona19b27c2006-03-26 01:37:45 -0800809 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700811 ti->error = "Cannot allocate page mempool";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto bad4;
813 }
814
Milan Broz6a24c712006-10-03 01:15:40 -0700815 cc->bs = bioset_create(MIN_IOS, MIN_IOS, 4);
816 if (!cc->bs) {
817 ti->error = "Cannot allocate crypt bioset";
818 goto bad_bs;
819 }
820
Herbert Xud1806f62006-08-22 20:29:17 +1000821 if (crypto_blkcipher_setkey(tfm, cc->key, key_size) < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700822 ti->error = "Error setting key";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 goto bad5;
824 }
825
Andrew Morton4ee218c2006-03-27 01:17:48 -0800826 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700827 ti->error = "Invalid iv_offset sector";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto bad5;
829 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800830 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Andrew Morton4ee218c2006-03-27 01:17:48 -0800832 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700833 ti->error = "Invalid device sector";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto bad5;
835 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800836 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (dm_get_device(ti, argv[3], cc->start, ti->len,
839 dm_table_get_mode(ti->table), &cc->dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700840 ti->error = "Device lookup failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto bad5;
842 }
843
844 if (ivmode && cc->iv_gen_ops) {
845 if (ivopts)
846 *(ivopts - 1) = ':';
847 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
848 if (!cc->iv_mode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700849 ti->error = "Error kmallocing iv_mode string";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto bad5;
851 }
852 strcpy(cc->iv_mode, ivmode);
853 } else
854 cc->iv_mode = NULL;
855
856 ti->private = cc;
857 return 0;
858
859bad5:
Milan Broz6a24c712006-10-03 01:15:40 -0700860 bioset_free(cc->bs);
861bad_bs:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 mempool_destroy(cc->page_pool);
863bad4:
864 mempool_destroy(cc->io_pool);
865bad3:
866 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
867 cc->iv_gen_ops->dtr(cc);
868bad2:
Herbert Xud1806f62006-08-22 20:29:17 +1000869 crypto_free_blkcipher(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870bad1:
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800871 /* Must zero key material before freeing */
872 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kfree(cc);
874 return -EINVAL;
875}
876
877static void crypt_dtr(struct dm_target *ti)
878{
879 struct crypt_config *cc = (struct crypt_config *) ti->private;
880
Milan Broz6a24c712006-10-03 01:15:40 -0700881 bioset_free(cc->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 mempool_destroy(cc->page_pool);
883 mempool_destroy(cc->io_pool);
884
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700885 kfree(cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
887 cc->iv_gen_ops->dtr(cc);
Herbert Xud1806f62006-08-22 20:29:17 +1000888 crypto_free_blkcipher(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 dm_put_device(ti, cc->dev);
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800890
891 /* Must zero key material before freeing */
892 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 kfree(cc);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static int crypt_map(struct dm_target *ti, struct bio *bio,
897 union map_info *map_context)
898{
Milan Broz8b004452006-10-03 01:15:37 -0700899 struct crypt_config *cc = ti->private;
Milan Broze48d4bb2006-10-03 01:15:37 -0700900 struct crypt_io *io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Milan Broze48d4bb2006-10-03 01:15:37 -0700902 io = mempool_alloc(cc->io_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 io->target = ti;
Milan Broz8b004452006-10-03 01:15:37 -0700904 io->base_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 io->first_clone = NULL;
Milan Broz23541d22006-10-03 01:15:39 -0700906 io->error = io->post_process = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700907 atomic_set(&io->pending, 0);
Milan Broz23541d22006-10-03 01:15:39 -0700908 kcryptd_queue_io(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Milan Broz23541d22006-10-03 01:15:39 -0700910 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
913static int crypt_status(struct dm_target *ti, status_type_t type,
914 char *result, unsigned int maxlen)
915{
916 struct crypt_config *cc = (struct crypt_config *) ti->private;
917 const char *cipher;
918 const char *chainmode = NULL;
919 unsigned int sz = 0;
920
921 switch (type) {
922 case STATUSTYPE_INFO:
923 result[0] = '\0';
924 break;
925
926 case STATUSTYPE_TABLE:
Herbert Xud1806f62006-08-22 20:29:17 +1000927 cipher = crypto_blkcipher_name(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Herbert Xud1806f62006-08-22 20:29:17 +1000929 chainmode = cc->chainmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (cc->iv_mode)
932 DMEMIT("%s-%s-%s ", cipher, chainmode, cc->iv_mode);
933 else
934 DMEMIT("%s-%s ", cipher, chainmode);
935
936 if (cc->key_size > 0) {
937 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
938 return -ENOMEM;
939
940 crypt_encode_key(result + sz, cc->key, cc->key_size);
941 sz += cc->key_size << 1;
942 } else {
943 if (sz >= maxlen)
944 return -ENOMEM;
945 result[sz++] = '-';
946 }
947
Andrew Morton4ee218c2006-03-27 01:17:48 -0800948 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
949 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
951 }
952 return 0;
953}
954
Milan Broze48d4bb2006-10-03 01:15:37 -0700955static void crypt_postsuspend(struct dm_target *ti)
956{
957 struct crypt_config *cc = ti->private;
958
959 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
960}
961
962static int crypt_preresume(struct dm_target *ti)
963{
964 struct crypt_config *cc = ti->private;
965
966 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
967 DMERR("aborting resume - crypt key is not set.");
968 return -EAGAIN;
969 }
970
971 return 0;
972}
973
974static void crypt_resume(struct dm_target *ti)
975{
976 struct crypt_config *cc = ti->private;
977
978 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
979}
980
981/* Message interface
982 * key set <key>
983 * key wipe
984 */
985static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
986{
987 struct crypt_config *cc = ti->private;
988
989 if (argc < 2)
990 goto error;
991
992 if (!strnicmp(argv[0], MESG_STR("key"))) {
993 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
994 DMWARN("not suspended during key manipulation.");
995 return -EINVAL;
996 }
997 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
998 return crypt_set_key(cc, argv[2]);
999 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1000 return crypt_wipe_key(cc);
1001 }
1002
1003error:
1004 DMWARN("unrecognised message received.");
1005 return -EINVAL;
1006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008static struct target_type crypt_target = {
1009 .name = "crypt",
Milan Broz23541d22006-10-03 01:15:39 -07001010 .version= {1, 3, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .module = THIS_MODULE,
1012 .ctr = crypt_ctr,
1013 .dtr = crypt_dtr,
1014 .map = crypt_map,
1015 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001016 .postsuspend = crypt_postsuspend,
1017 .preresume = crypt_preresume,
1018 .resume = crypt_resume,
1019 .message = crypt_message,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020};
1021
1022static int __init dm_crypt_init(void)
1023{
1024 int r;
1025
1026 _crypt_io_pool = kmem_cache_create("dm-crypt_io",
1027 sizeof(struct crypt_io),
1028 0, 0, NULL, NULL);
1029 if (!_crypt_io_pool)
1030 return -ENOMEM;
1031
1032 _kcryptd_workqueue = create_workqueue("kcryptd");
1033 if (!_kcryptd_workqueue) {
1034 r = -ENOMEM;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001035 DMERR("couldn't create kcryptd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 goto bad1;
1037 }
1038
1039 r = dm_register_target(&crypt_target);
1040 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001041 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 goto bad2;
1043 }
1044
1045 return 0;
1046
1047bad2:
1048 destroy_workqueue(_kcryptd_workqueue);
1049bad1:
1050 kmem_cache_destroy(_crypt_io_pool);
1051 return r;
1052}
1053
1054static void __exit dm_crypt_exit(void)
1055{
1056 int r = dm_unregister_target(&crypt_target);
1057
1058 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001059 DMERR("unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 destroy_workqueue(_kcryptd_workqueue);
1062 kmem_cache_destroy(_crypt_io_pool);
1063}
1064
1065module_init(dm_crypt_init);
1066module_exit(dm_crypt_exit);
1067
1068MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1069MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1070MODULE_LICENSE("GPL");