blob: 046ee516074b6a2d12dd977cb2635198e0913100 [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 Broz3f1e9072008-03-28 14:16:07 -07004 * Copyright (C) 2006-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file is released under the GPL.
7 */
8
Milan Broz43d69032008-02-08 02:11:09 +00009#include <linux/completion.h>
Herbert Xud1806f62006-08-22 20:29:17 +100010#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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>
Andrew Morton3fcfab12006-10-19 23:28:16 -070020#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100022#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/page.h>
Rik Snel48527fa2006-09-03 08:56:39 +100024#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Mikulas Patocka586e80e2008-10-21 17:44:59 +010026#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Alasdair G Kergon72d94862006-06-26 00:27:35 -070028#define DM_MSG_PREFIX "crypt"
Milan Broze48d4bb2006-10-03 01:15:37 -070029#define MESG_STR(x) x, sizeof(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * context holding the current state of a multi-part conversion
33 */
34struct convert_context {
Milan Broz43d69032008-02-08 02:11:09 +000035 struct completion restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct bio *bio_in;
37 struct bio *bio_out;
38 unsigned int offset_in;
39 unsigned int offset_out;
40 unsigned int idx_in;
41 unsigned int idx_out;
42 sector_t sector;
Milan Broz43d69032008-02-08 02:11:09 +000043 atomic_t pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
Milan Broz53017032008-02-08 02:10:38 +000046/*
47 * per bio private data
48 */
49struct dm_crypt_io {
50 struct dm_target *target;
51 struct bio *base_bio;
52 struct work_struct work;
53
54 struct convert_context ctx;
55
56 atomic_t pending;
57 int error;
Milan Broz0c395b02008-02-08 02:10:54 +000058 sector_t sector;
Milan Broz393b47e2008-10-21 17:45:02 +010059 struct dm_crypt_io *base_io;
Milan Broz53017032008-02-08 02:10:38 +000060};
61
Milan Broz01482b72008-02-08 02:11:04 +000062struct dm_crypt_request {
63 struct scatterlist sg_in;
64 struct scatterlist sg_out;
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067struct crypt_config;
68
69struct crypt_iv_operations {
70 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010071 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 void (*dtr)(struct crypt_config *cc);
73 const char *(*status)(struct crypt_config *cc);
74 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
75};
76
77/*
78 * Crypt: maps a linear range of a block device
79 * and encrypts / decrypts at the same time.
80 */
Milan Broze48d4bb2006-10-03 01:15:37 -070081enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct crypt_config {
83 struct dm_dev *dev;
84 sector_t start;
85
86 /*
Milan Brozddd42ed2008-02-08 02:11:07 +000087 * pool for per bio private data, crypto requests and
88 * encryption requeusts/buffer pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
90 mempool_t *io_pool;
Milan Brozddd42ed2008-02-08 02:11:07 +000091 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -070093 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Milan Brozcabf08e2007-10-19 22:38:58 +010095 struct workqueue_struct *io_queue;
96 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -070097 wait_queue_head_t writeq;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 /*
100 * crypto related data
101 */
102 struct crypt_iv_operations *iv_gen_ops;
103 char *iv_mode;
Herbert Xu79066ad2006-12-05 13:41:52 -0800104 union {
105 struct crypto_cipher *essiv_tfm;
106 int benbi_shift;
107 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 sector_t iv_offset;
109 unsigned int iv_size;
110
Milan Brozddd42ed2008-02-08 02:11:07 +0000111 /*
112 * Layout of each crypto request:
113 *
114 * struct ablkcipher_request
115 * context
116 * padding
117 * struct dm_crypt_request
118 * padding
119 * IV
120 *
121 * The padding is added so that dm_crypt_request and the IV are
122 * correctly aligned.
123 */
124 unsigned int dmreq_start;
125 struct ablkcipher_request *req;
126
Herbert Xud1806f62006-08-22 20:29:17 +1000127 char cipher[CRYPTO_MAX_ALG_NAME];
128 char chainmode[CRYPTO_MAX_ALG_NAME];
Milan Broz3a7f6c92008-02-08 02:11:14 +0000129 struct crypto_ablkcipher *tfm;
Milan Broze48d4bb2006-10-03 01:15:37 -0700130 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 unsigned int key_size;
132 u8 key[0];
133};
134
Milan Broz6a24c712006-10-03 01:15:40 -0700135#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define MIN_POOL_PAGES 32
137#define MIN_BIO_PAGES 8
138
Christoph Lametere18b8902006-12-06 20:33:20 -0800139static struct kmem_cache *_crypt_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100141static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000142static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Olaf Kirch027581f2007-05-09 02:32:52 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * Different IV generation algorithms:
146 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000147 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200148 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000150 * essiv: "encrypted sector|salt initial vector", the sector number is
151 * encrypted with the bulk cipher using a salt as key. The salt
152 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Rik Snel48527fa2006-09-03 08:56:39 +1000154 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
155 * (needed for LRW-32-AES and possible other narrow block modes)
156 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700157 * null: the initial vector is always zero. Provides compatibility with
158 * obsolete loop_fish2 devices. Do not use for new devices.
159 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * plumb: unimplemented, see:
161 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
162 */
163
164static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
165{
166 memset(iv, 0, cc->iv_size);
167 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
168
169 return 0;
170}
171
172static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100173 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Herbert Xud1806f62006-08-22 20:29:17 +1000175 struct crypto_cipher *essiv_tfm;
Herbert Xu35058682006-08-24 19:10:20 +1000176 struct crypto_hash *hash_tfm;
177 struct hash_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct scatterlist sg;
179 unsigned int saltsize;
180 u8 *salt;
Herbert Xud1806f62006-08-22 20:29:17 +1000181 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (opts == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700184 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -EINVAL;
186 }
187
188 /* Hash the cipher key with the given hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000189 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
190 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700191 ti->error = "Error initializing ESSIV hash";
Herbert Xu35058682006-08-24 19:10:20 +1000192 return PTR_ERR(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
Herbert Xu35058682006-08-24 19:10:20 +1000195 saltsize = crypto_hash_digestsize(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 salt = kmalloc(saltsize, GFP_KERNEL);
197 if (salt == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700198 ti->error = "Error kmallocing salt storage in ESSIV";
Herbert Xu35058682006-08-24 19:10:20 +1000199 crypto_free_hash(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -ENOMEM;
201 }
202
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700203 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xu35058682006-08-24 19:10:20 +1000204 desc.tfm = hash_tfm;
205 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
206 err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
207 crypto_free_hash(hash_tfm);
208
209 if (err) {
210 ti->error = "Error calculating hash in ESSIV";
Dmitry Monakhov815f9e32007-10-19 22:38:38 +0100211 kfree(salt);
Herbert Xu35058682006-08-24 19:10:20 +1000212 return err;
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* Setup the essiv_tfm with the given salt */
Herbert Xud1806f62006-08-22 20:29:17 +1000216 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
217 if (IS_ERR(essiv_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700218 ti->error = "Error allocating crypto tfm for ESSIV";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000220 return PTR_ERR(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Herbert Xud1806f62006-08-22 20:29:17 +1000222 if (crypto_cipher_blocksize(essiv_tfm) !=
Milan Broz3a7f6c92008-02-08 02:11:14 +0000223 crypto_ablkcipher_ivsize(cc->tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700224 ti->error = "Block size of ESSIV cipher does "
Milan Brozd469f842007-10-19 22:42:37 +0100225 "not match IV size of block cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000226 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 kfree(salt);
228 return -EINVAL;
229 }
Herbert Xud1806f62006-08-22 20:29:17 +1000230 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
231 if (err) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700232 ti->error = "Failed to set key for ESSIV cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000233 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 kfree(salt);
238
Herbert Xu79066ad2006-12-05 13:41:52 -0800239 cc->iv_gen_private.essiv_tfm = essiv_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241}
242
243static void crypt_iv_essiv_dtr(struct crypt_config *cc)
244{
Herbert Xu79066ad2006-12-05 13:41:52 -0800245 crypto_free_cipher(cc->iv_gen_private.essiv_tfm);
246 cc->iv_gen_private.essiv_tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
250{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 memset(iv, 0, cc->iv_size);
252 *(u64 *)iv = cpu_to_le64(sector);
Herbert Xu79066ad2006-12-05 13:41:52 -0800253 crypto_cipher_encrypt_one(cc->iv_gen_private.essiv_tfm, iv, iv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255}
256
Rik Snel48527fa2006-09-03 08:56:39 +1000257static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
258 const char *opts)
259{
Milan Broz3a7f6c92008-02-08 02:11:14 +0000260 unsigned bs = crypto_ablkcipher_blocksize(cc->tfm);
David Howellsf0d1b0b2006-12-08 02:37:49 -0800261 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000262
263 /* we need to calculate how far we must shift the sector count
264 * to get the cipher block count, we use this shift in _gen */
265
266 if (1 << log != bs) {
267 ti->error = "cypher blocksize is not a power of 2";
268 return -EINVAL;
269 }
270
271 if (log > 9) {
272 ti->error = "cypher blocksize is > 512";
273 return -EINVAL;
274 }
275
Herbert Xu79066ad2006-12-05 13:41:52 -0800276 cc->iv_gen_private.benbi_shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000277
278 return 0;
279}
280
281static void crypt_iv_benbi_dtr(struct crypt_config *cc)
282{
Rik Snel48527fa2006-09-03 08:56:39 +1000283}
284
285static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
286{
Herbert Xu79066ad2006-12-05 13:41:52 -0800287 __be64 val;
288
Rik Snel48527fa2006-09-03 08:56:39 +1000289 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800290
291 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi_shift) + 1);
292 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295}
296
Ludwig Nussel46b47732007-05-09 02:32:55 -0700297static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
298{
299 memset(iv, 0, cc->iv_size);
300
301 return 0;
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static struct crypt_iv_operations crypt_iv_plain_ops = {
305 .generator = crypt_iv_plain_gen
306};
307
308static struct crypt_iv_operations crypt_iv_essiv_ops = {
309 .ctr = crypt_iv_essiv_ctr,
310 .dtr = crypt_iv_essiv_dtr,
311 .generator = crypt_iv_essiv_gen
312};
313
Rik Snel48527fa2006-09-03 08:56:39 +1000314static struct crypt_iv_operations crypt_iv_benbi_ops = {
315 .ctr = crypt_iv_benbi_ctr,
316 .dtr = crypt_iv_benbi_dtr,
317 .generator = crypt_iv_benbi_gen
318};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Ludwig Nussel46b47732007-05-09 02:32:55 -0700320static struct crypt_iv_operations crypt_iv_null_ops = {
321 .generator = crypt_iv_null_gen
322};
323
Milan Brozd469f842007-10-19 22:42:37 +0100324static void crypt_convert_init(struct crypt_config *cc,
325 struct convert_context *ctx,
326 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000327 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 ctx->bio_in = bio_in;
330 ctx->bio_out = bio_out;
331 ctx->offset_in = 0;
332 ctx->offset_out = 0;
333 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
334 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
335 ctx->sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +0000336 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Milan Broz01482b72008-02-08 02:11:04 +0000339static int crypt_convert_block(struct crypt_config *cc,
Milan Broz3a7f6c92008-02-08 02:11:14 +0000340 struct convert_context *ctx,
341 struct ablkcipher_request *req)
Milan Broz01482b72008-02-08 02:11:04 +0000342{
343 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
344 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000345 struct dm_crypt_request *dmreq;
346 u8 *iv;
347 int r = 0;
Milan Broz01482b72008-02-08 02:11:04 +0000348
Milan Broz3a7f6c92008-02-08 02:11:14 +0000349 dmreq = (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
350 iv = (u8 *)ALIGN((unsigned long)(dmreq + 1),
351 crypto_ablkcipher_alignmask(cc->tfm) + 1);
352
353 sg_init_table(&dmreq->sg_in, 1);
354 sg_set_page(&dmreq->sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000355 bv_in->bv_offset + ctx->offset_in);
356
Milan Broz3a7f6c92008-02-08 02:11:14 +0000357 sg_init_table(&dmreq->sg_out, 1);
358 sg_set_page(&dmreq->sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000359 bv_out->bv_offset + ctx->offset_out);
360
361 ctx->offset_in += 1 << SECTOR_SHIFT;
362 if (ctx->offset_in >= bv_in->bv_len) {
363 ctx->offset_in = 0;
364 ctx->idx_in++;
365 }
366
367 ctx->offset_out += 1 << SECTOR_SHIFT;
368 if (ctx->offset_out >= bv_out->bv_len) {
369 ctx->offset_out = 0;
370 ctx->idx_out++;
371 }
372
Milan Broz3a7f6c92008-02-08 02:11:14 +0000373 if (cc->iv_gen_ops) {
374 r = cc->iv_gen_ops->generator(cc, iv, ctx->sector);
375 if (r < 0)
376 return r;
377 }
378
379 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
380 1 << SECTOR_SHIFT, iv);
381
382 if (bio_data_dir(ctx->bio_in) == WRITE)
383 r = crypto_ablkcipher_encrypt(req);
384 else
385 r = crypto_ablkcipher_decrypt(req);
386
387 return r;
Milan Broz01482b72008-02-08 02:11:04 +0000388}
389
Milan Broz95497a92008-02-08 02:11:12 +0000390static void kcryptd_async_done(struct crypto_async_request *async_req,
391 int error);
Milan Brozddd42ed2008-02-08 02:11:07 +0000392static void crypt_alloc_req(struct crypt_config *cc,
393 struct convert_context *ctx)
394{
395 if (!cc->req)
396 cc->req = mempool_alloc(cc->req_pool, GFP_NOIO);
Milan Broz95497a92008-02-08 02:11:12 +0000397 ablkcipher_request_set_tfm(cc->req, cc->tfm);
398 ablkcipher_request_set_callback(cc->req, CRYPTO_TFM_REQ_MAY_BACKLOG |
399 CRYPTO_TFM_REQ_MAY_SLEEP,
400 kcryptd_async_done, ctx);
Milan Brozddd42ed2008-02-08 02:11:07 +0000401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*
404 * Encrypt / decrypt data from one bio to another one (can be the same one)
405 */
406static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100407 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Milan Broz3f1e9072008-03-28 14:16:07 -0700409 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Milan Brozc8081612008-10-10 13:37:08 +0100411 atomic_set(&ctx->pending, 1);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
414 ctx->idx_out < ctx->bio_out->bi_vcnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Milan Broz3a7f6c92008-02-08 02:11:14 +0000416 crypt_alloc_req(cc, ctx);
417
Milan Broz3f1e9072008-03-28 14:16:07 -0700418 atomic_inc(&ctx->pending);
419
Milan Broz3a7f6c92008-02-08 02:11:14 +0000420 r = crypt_convert_block(cc, ctx, cc->req);
421
422 switch (r) {
Milan Broz3f1e9072008-03-28 14:16:07 -0700423 /* async */
Milan Broz3a7f6c92008-02-08 02:11:14 +0000424 case -EBUSY:
425 wait_for_completion(&ctx->restart);
426 INIT_COMPLETION(ctx->restart);
427 /* fall through*/
428 case -EINPROGRESS:
Milan Broz3a7f6c92008-02-08 02:11:14 +0000429 cc->req = NULL;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000430 ctx->sector++;
431 continue;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000432
Milan Broz3f1e9072008-03-28 14:16:07 -0700433 /* sync */
434 case 0:
435 atomic_dec(&ctx->pending);
436 ctx->sector++;
Milan Brozc7f1b202008-07-02 09:34:28 +0100437 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -0700438 continue;
439
440 /* error */
441 default:
442 atomic_dec(&ctx->pending);
443 return r;
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446
Milan Broz3f1e9072008-03-28 14:16:07 -0700447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Milan Brozd469f842007-10-19 22:42:37 +0100450static void dm_crypt_bio_destructor(struct bio *bio)
451{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100452 struct dm_crypt_io *io = bio->bi_private;
Milan Broz6a24c712006-10-03 01:15:40 -0700453 struct crypt_config *cc = io->target->private;
454
455 bio_free(bio, cc->bs);
Milan Brozd469f842007-10-19 22:42:37 +0100456}
Milan Broz6a24c712006-10-03 01:15:40 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
459 * Generate a new unfragmented bio with the given size
460 * This should never violate the device limitations
Milan Broz933f01d2008-10-10 13:37:08 +0100461 * May return a smaller bio when running out of pages, indicated by
462 * *out_of_pages set to 1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
Milan Broz933f01d2008-10-10 13:37:08 +0100464static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size,
465 unsigned *out_of_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Olaf Kirch027581f2007-05-09 02:32:52 -0700467 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700468 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400470 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Milan Broz91e10622007-12-13 14:16:10 +0000471 unsigned i, len;
472 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700474 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700475 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Olaf Kirch027581f2007-05-09 02:32:52 -0700478 clone_init(io, clone);
Milan Broz933f01d2008-10-10 13:37:08 +0100479 *out_of_pages = 0;
Milan Broz6a24c712006-10-03 01:15:40 -0700480
Olaf Kirchf97380b2007-05-09 02:32:54 -0700481 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000482 page = mempool_alloc(cc->page_pool, gfp_mask);
Milan Broz933f01d2008-10-10 13:37:08 +0100483 if (!page) {
484 *out_of_pages = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 break;
Milan Broz933f01d2008-10-10 13:37:08 +0100486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /*
489 * if additional pages cannot be allocated without waiting,
490 * return a partially allocated bio, the caller will then try
491 * to allocate additional bios while submitting this partial bio
492 */
Olaf Kirchf97380b2007-05-09 02:32:54 -0700493 if (i == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
495
Milan Broz91e10622007-12-13 14:16:10 +0000496 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Milan Broz91e10622007-12-13 14:16:10 +0000498 if (!bio_add_page(clone, page, len, 0)) {
499 mempool_free(page, cc->page_pool);
500 break;
501 }
502
503 size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Milan Broz8b004452006-10-03 01:15:37 -0700506 if (!clone->bi_size) {
507 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return NULL;
509 }
510
Milan Broz8b004452006-10-03 01:15:37 -0700511 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Neil Brown644bd2f2007-10-16 13:48:46 +0200514static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Neil Brown644bd2f2007-10-16 13:48:46 +0200516 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct bio_vec *bv;
518
Neil Brown644bd2f2007-10-16 13:48:46 +0200519 for (i = 0; i < clone->bi_vcnt; i++) {
Milan Broz8b004452006-10-03 01:15:37 -0700520 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 BUG_ON(!bv->bv_page);
522 mempool_free(bv->bv_page, cc->page_pool);
523 bv->bv_page = NULL;
524 }
525}
526
Milan Brozdc440d1e2008-10-10 13:37:03 +0100527static struct dm_crypt_io *crypt_io_alloc(struct dm_target *ti,
528 struct bio *bio, sector_t sector)
529{
530 struct crypt_config *cc = ti->private;
531 struct dm_crypt_io *io;
532
533 io = mempool_alloc(cc->io_pool, GFP_NOIO);
534 io->target = ti;
535 io->base_bio = bio;
536 io->sector = sector;
537 io->error = 0;
Milan Broz393b47e2008-10-21 17:45:02 +0100538 io->base_io = NULL;
Milan Brozdc440d1e2008-10-10 13:37:03 +0100539 atomic_set(&io->pending, 0);
540
541 return io;
542}
543
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100544static void crypt_inc_pending(struct dm_crypt_io *io)
545{
546 atomic_inc(&io->pending);
547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * One of the bios was finished. Check for completion of
551 * the whole request and correctly clean up the buffer.
Milan Broz393b47e2008-10-21 17:45:02 +0100552 * If base_io is set, wait for the last fragment to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Milan Broz5742fd72008-02-08 02:10:43 +0000554static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Milan Broz5742fd72008-02-08 02:10:43 +0000556 struct crypt_config *cc = io->target->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (!atomic_dec_and_test(&io->pending))
559 return;
560
Milan Broz393b47e2008-10-21 17:45:02 +0100561 if (likely(!io->base_io))
562 bio_endio(io->base_bio, io->error);
563 else {
564 if (io->error && !io->base_io->error)
565 io->base_io->error = io->error;
566 crypt_dec_pending(io->base_io);
567 }
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 mempool_free(io, cc->io_pool);
570}
571
572/*
Milan Brozcabf08e2007-10-19 22:38:58 +0100573 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
575 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700576 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +0100577 *
578 * kcryptd performs the actual encryption or decryption.
579 *
580 * kcryptd_io performs the IO submission.
581 *
582 * They must be separated as otherwise the final stages could be
583 * starved by new requests which can block in the first stages due
584 * to memory allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
NeilBrown6712ecf2007-09-27 12:47:43 +0200586static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -0700587{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100588 struct dm_crypt_io *io = clone->bi_private;
Milan Broz8b004452006-10-03 01:15:37 -0700589 struct crypt_config *cc = io->target->private;
Milan Brozee7a4912008-02-08 02:10:46 +0000590 unsigned rw = bio_data_dir(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700591
Milan Brozadfe4772007-12-13 14:15:51 +0000592 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
593 error = -EIO;
594
Milan Broz8b004452006-10-03 01:15:37 -0700595 /*
NeilBrown6712ecf2007-09-27 12:47:43 +0200596 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -0700597 */
Milan Brozee7a4912008-02-08 02:10:46 +0000598 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +0200599 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +0000600
601 bio_put(clone);
602
603 if (rw == READ && !error) {
604 kcryptd_queue_crypt(io);
605 return;
NeilBrown6712ecf2007-09-27 12:47:43 +0200606 }
Milan Broz8b004452006-10-03 01:15:37 -0700607
Milan Brozadfe4772007-12-13 14:15:51 +0000608 if (unlikely(error))
Milan Broz5742fd72008-02-08 02:10:43 +0000609 io->error = error;
610
611 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700612}
613
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100614static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -0700615{
616 struct crypt_config *cc = io->target->private;
617
618 clone->bi_private = io;
619 clone->bi_end_io = crypt_endio;
620 clone->bi_bdev = cc->dev->bdev;
621 clone->bi_rw = io->base_bio->bi_rw;
Olaf Kirch027581f2007-05-09 02:32:52 -0700622 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700623}
624
Milan Broz4e4eef62008-02-08 02:10:49 +0000625static void kcryptd_io_read(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700626{
627 struct crypt_config *cc = io->target->private;
628 struct bio *base_bio = io->base_bio;
629 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700630
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100631 crypt_inc_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700632
633 /*
634 * The block layer might modify the bvec array, so always
635 * copy the required bvecs because we need the original
636 * one in order to decrypt the whole bio data *afterwards*.
637 */
Milan Broz6a24c712006-10-03 01:15:40 -0700638 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700639 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000640 io->error = -ENOMEM;
641 crypt_dec_pending(io);
Milan Broz23541d22006-10-03 01:15:39 -0700642 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700643 }
Milan Broz8b004452006-10-03 01:15:37 -0700644
645 clone_init(io, clone);
646 clone->bi_idx = 0;
647 clone->bi_vcnt = bio_segments(base_bio);
648 clone->bi_size = base_bio->bi_size;
Milan Broz0c395b02008-02-08 02:10:54 +0000649 clone->bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -0700650 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
651 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700652
Milan Broz93e605c2006-10-03 01:15:38 -0700653 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700654}
655
Milan Broz4e4eef62008-02-08 02:10:49 +0000656static void kcryptd_io_write(struct dm_crypt_io *io)
657{
Milan Broz95497a92008-02-08 02:11:12 +0000658 struct bio *clone = io->ctx.bio_out;
Milan Broz3f1e9072008-03-28 14:16:07 -0700659 struct crypt_config *cc = io->target->private;
Milan Broz95497a92008-02-08 02:11:12 +0000660
661 generic_make_request(clone);
Milan Broz3f1e9072008-03-28 14:16:07 -0700662 wake_up(&cc->writeq);
Milan Broz4e4eef62008-02-08 02:10:49 +0000663}
664
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000665static void kcryptd_io(struct work_struct *work)
666{
667 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
668
669 if (bio_data_dir(io->base_bio) == READ)
670 kcryptd_io_read(io);
671 else
672 kcryptd_io_write(io);
673}
674
675static void kcryptd_queue_io(struct dm_crypt_io *io)
676{
677 struct crypt_config *cc = io->target->private;
678
679 INIT_WORK(&io->work, kcryptd_io);
680 queue_work(cc->io_queue, &io->work);
681}
682
Milan Broz95497a92008-02-08 02:11:12 +0000683static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io,
684 int error, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +0000685{
Milan Brozdec1ced2008-02-08 02:10:57 +0000686 struct bio *clone = io->ctx.bio_out;
687 struct crypt_config *cc = io->target->private;
688
689 if (unlikely(error < 0)) {
690 crypt_free_buffer_pages(cc, clone);
691 bio_put(clone);
692 io->error = -EIO;
Milan Broz6c031f42008-10-10 13:37:06 +0100693 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000694 return;
695 }
696
697 /* crypt_convert should have filled the clone bio */
698 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
699
700 clone->bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +0000701
Milan Broz95497a92008-02-08 02:11:12 +0000702 if (async)
703 kcryptd_queue_io(io);
Alasdair G Kergon1e37bb82008-10-10 13:37:05 +0100704 else
Milan Broz95497a92008-02-08 02:11:12 +0000705 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000706}
707
Milan Brozfc5a5e92008-10-10 13:37:04 +0100708static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700709{
710 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700711 struct bio *clone;
Milan Broz393b47e2008-10-21 17:45:02 +0100712 struct dm_crypt_io *new_io;
Milan Brozc8081612008-10-10 13:37:08 +0100713 int crypt_finished;
Milan Broz933f01d2008-10-10 13:37:08 +0100714 unsigned out_of_pages = 0;
Milan Brozdec1ced2008-02-08 02:10:57 +0000715 unsigned remaining = io->base_bio->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100716 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +0000717 int r;
Milan Broz8b004452006-10-03 01:15:37 -0700718
Milan Broz93e605c2006-10-03 01:15:38 -0700719 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +0100720 * Prevent io from disappearing until this function completes.
721 */
722 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +0100723 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +0100724
725 /*
Milan Broz93e605c2006-10-03 01:15:38 -0700726 * The allocated buffers can be smaller than the whole bio,
727 * so repeat the whole process until all the data can be handled.
728 */
729 while (remaining) {
Milan Broz933f01d2008-10-10 13:37:08 +0100730 clone = crypt_alloc_buffer(io, remaining, &out_of_pages);
Milan Broz23541d22006-10-03 01:15:39 -0700731 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000732 io->error = -ENOMEM;
Milan Brozfc5a5e92008-10-10 13:37:04 +0100733 break;
Milan Broz23541d22006-10-03 01:15:39 -0700734 }
Milan Broz93e605c2006-10-03 01:15:38 -0700735
Milan Broz53017032008-02-08 02:10:38 +0000736 io->ctx.bio_out = clone;
737 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700738
Milan Broz93e605c2006-10-03 01:15:38 -0700739 remaining -= clone->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100740 sector += bio_sectors(clone);
Milan Brozdec1ced2008-02-08 02:10:57 +0000741
Milan Broz4e594092008-10-10 13:37:07 +0100742 crypt_inc_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000743 r = crypt_convert(cc, &io->ctx);
Milan Brozc8081612008-10-10 13:37:08 +0100744 crypt_finished = atomic_dec_and_test(&io->ctx.pending);
Milan Brozdec1ced2008-02-08 02:10:57 +0000745
Milan Brozc8081612008-10-10 13:37:08 +0100746 /* Encryption was already finished, submit io now */
747 if (crypt_finished) {
Milan Broz3a7f6c92008-02-08 02:11:14 +0000748 kcryptd_crypt_write_io_submit(io, r, 0);
Milan Brozc8081612008-10-10 13:37:08 +0100749
750 /*
751 * If there was an error, do not try next fragments.
752 * For async, error is processed in async handler.
753 */
Milan Broz6c031f42008-10-10 13:37:06 +0100754 if (unlikely(r < 0))
Milan Brozfc5a5e92008-10-10 13:37:04 +0100755 break;
Milan Brozb635b002008-10-21 17:45:00 +0100756
757 io->sector = sector;
Milan Broz4e594092008-10-10 13:37:07 +0100758 }
Milan Broz93e605c2006-10-03 01:15:38 -0700759
Milan Broz933f01d2008-10-10 13:37:08 +0100760 /*
761 * Out of memory -> run queues
762 * But don't wait if split was due to the io size restriction
763 */
764 if (unlikely(out_of_pages))
Olaf Kirch98221eb2007-05-09 02:32:52 -0700765 congestion_wait(WRITE, HZ/100);
Milan Broz933f01d2008-10-10 13:37:08 +0100766
Milan Broz393b47e2008-10-21 17:45:02 +0100767 /*
768 * With async crypto it is unsafe to share the crypto context
769 * between fragments, so switch to a new dm_crypt_io structure.
770 */
771 if (unlikely(!crypt_finished && remaining)) {
772 new_io = crypt_io_alloc(io->target, io->base_bio,
773 sector);
774 crypt_inc_pending(new_io);
775 crypt_convert_init(cc, &new_io->ctx, NULL,
776 io->base_bio, sector);
777 new_io->ctx.idx_in = io->ctx.idx_in;
778 new_io->ctx.offset_in = io->ctx.offset_in;
779
780 /*
781 * Fragments after the first use the base_io
782 * pending count.
783 */
784 if (!io->base_io)
785 new_io->base_io = io;
786 else {
787 new_io->base_io = io->base_io;
788 crypt_inc_pending(io->base_io);
789 crypt_dec_pending(io);
790 }
791
792 io = new_io;
793 }
794
Milan Broz933f01d2008-10-10 13:37:08 +0100795 if (unlikely(remaining))
796 wait_event(cc->writeq, !atomic_read(&io->ctx.pending));
Milan Broz8b004452006-10-03 01:15:37 -0700797 }
Milan Broz899c95d2008-02-08 02:11:02 +0000798
799 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +0000800}
801
Milan Broz4e4eef62008-02-08 02:10:49 +0000802static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
Milan Broz5742fd72008-02-08 02:10:43 +0000803{
804 if (unlikely(error < 0))
805 io->error = -EIO;
806
807 crypt_dec_pending(io);
808}
809
Milan Broz4e4eef62008-02-08 02:10:49 +0000810static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700811{
812 struct crypt_config *cc = io->target->private;
Milan Broz5742fd72008-02-08 02:10:43 +0000813 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700814
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100815 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000816
Milan Broz53017032008-02-08 02:10:38 +0000817 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +0000818 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700819
Milan Broz5742fd72008-02-08 02:10:43 +0000820 r = crypt_convert(cc, &io->ctx);
821
Milan Broz3f1e9072008-03-28 14:16:07 -0700822 if (atomic_dec_and_test(&io->ctx.pending))
Milan Broz3a7f6c92008-02-08 02:11:14 +0000823 kcryptd_crypt_read_done(io, r);
824
825 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700826}
827
Milan Broz95497a92008-02-08 02:11:12 +0000828static void kcryptd_async_done(struct crypto_async_request *async_req,
829 int error)
830{
831 struct convert_context *ctx = async_req->data;
832 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
833 struct crypt_config *cc = io->target->private;
834
835 if (error == -EINPROGRESS) {
836 complete(&ctx->restart);
837 return;
838 }
839
840 mempool_free(ablkcipher_request_cast(async_req), cc->req_pool);
841
842 if (!atomic_dec_and_test(&ctx->pending))
843 return;
844
845 if (bio_data_dir(io->base_bio) == READ)
846 kcryptd_crypt_read_done(io, error);
847 else
848 kcryptd_crypt_write_io_submit(io, error, 1);
849}
850
Milan Broz4e4eef62008-02-08 02:10:49 +0000851static void kcryptd_crypt(struct work_struct *work)
852{
853 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
854
855 if (bio_data_dir(io->base_bio) == READ)
856 kcryptd_crypt_read_convert(io);
857 else
858 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -0700859}
860
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000861static void kcryptd_queue_crypt(struct dm_crypt_io *io)
862{
863 struct crypt_config *cc = io->target->private;
864
865 INIT_WORK(&io->work, kcryptd_crypt);
866 queue_work(cc->crypt_queue, &io->work);
867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * Decode key from its hex representation
871 */
872static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
873{
874 char buffer[3];
875 char *endp;
876 unsigned int i;
877
878 buffer[2] = '\0';
879
Milan Broz8b004452006-10-03 01:15:37 -0700880 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 buffer[0] = *hex++;
882 buffer[1] = *hex++;
883
884 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
885
886 if (endp != &buffer[2])
887 return -EINVAL;
888 }
889
890 if (*hex != '\0')
891 return -EINVAL;
892
893 return 0;
894}
895
896/*
897 * Encode key into its hex representation
898 */
899static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
900{
901 unsigned int i;
902
Milan Broz8b004452006-10-03 01:15:37 -0700903 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 sprintf(hex, "%02x", *key);
905 hex += 2;
906 key++;
907 }
908}
909
Milan Broze48d4bb2006-10-03 01:15:37 -0700910static int crypt_set_key(struct crypt_config *cc, char *key)
911{
912 unsigned key_size = strlen(key) >> 1;
913
914 if (cc->key_size && cc->key_size != key_size)
915 return -EINVAL;
916
917 cc->key_size = key_size; /* initial settings */
918
919 if ((!key_size && strcmp(key, "-")) ||
Milan Brozd469f842007-10-19 22:42:37 +0100920 (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
Milan Broze48d4bb2006-10-03 01:15:37 -0700921 return -EINVAL;
922
923 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
924
925 return 0;
926}
927
928static int crypt_wipe_key(struct crypt_config *cc)
929{
930 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
931 memset(&cc->key, 0, cc->key_size * sizeof(u8));
932 return 0;
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
936 * Construct an encryption mapping:
937 * <cipher> <key> <iv_offset> <dev_path> <start>
938 */
939static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
940{
941 struct crypt_config *cc;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000942 struct crypto_ablkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 char *tmp;
944 char *cipher;
945 char *chainmode;
946 char *ivmode;
947 char *ivopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 unsigned int key_size;
Andrew Morton4ee218c2006-03-27 01:17:48 -0800949 unsigned long long tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 if (argc != 5) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700952 ti->error = "Not enough arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -EINVAL;
954 }
955
956 tmp = argv[0];
957 cipher = strsep(&tmp, "-");
958 chainmode = strsep(&tmp, "-");
959 ivopts = strsep(&tmp, "-");
960 ivmode = strsep(&ivopts, ":");
961
962 if (tmp)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700963 DMWARN("Unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 key_size = strlen(argv[1]) >> 1;
966
Milan Broze48d4bb2006-10-03 01:15:37 -0700967 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (cc == NULL) {
969 ti->error =
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700970 "Cannot allocate transparent encryption context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return -ENOMEM;
972 }
973
Milan Broze48d4bb2006-10-03 01:15:37 -0700974 if (crypt_set_key(cc, argv[1])) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700975 ti->error = "Error decoding key";
Milan Broz636d5782007-10-19 22:47:52 +0100976 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
979 /* Compatiblity mode for old dm-crypt cipher strings */
980 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
981 chainmode = "cbc";
982 ivmode = "plain";
983 }
984
Herbert Xud1806f62006-08-22 20:29:17 +1000985 if (strcmp(chainmode, "ecb") && !ivmode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700986 ti->error = "This chaining mode requires an IV mechanism";
Milan Broz636d5782007-10-19 22:47:52 +0100987 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Milan Brozd469f842007-10-19 22:42:37 +0100990 if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)",
991 chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) {
Herbert Xud1806f62006-08-22 20:29:17 +1000992 ti->error = "Chain mode + cipher name is too long";
Milan Broz636d5782007-10-19 22:47:52 +0100993 goto bad_cipher;
Herbert Xud1806f62006-08-22 20:29:17 +1000994 }
995
Milan Broz3a7f6c92008-02-08 02:11:14 +0000996 tfm = crypto_alloc_ablkcipher(cc->cipher, 0, 0);
Herbert Xud1806f62006-08-22 20:29:17 +1000997 if (IS_ERR(tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700998 ti->error = "Error allocating crypto tfm";
Milan Broz636d5782007-10-19 22:47:52 +0100999 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Herbert Xud1806f62006-08-22 20:29:17 +10001002 strcpy(cc->cipher, cipher);
1003 strcpy(cc->chainmode, chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 cc->tfm = tfm;
1005
1006 /*
Rik Snel48527fa2006-09-03 08:56:39 +10001007 * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 * See comments at iv code
1009 */
1010
1011 if (ivmode == NULL)
1012 cc->iv_gen_ops = NULL;
1013 else if (strcmp(ivmode, "plain") == 0)
1014 cc->iv_gen_ops = &crypt_iv_plain_ops;
1015 else if (strcmp(ivmode, "essiv") == 0)
1016 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001017 else if (strcmp(ivmode, "benbi") == 0)
1018 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001019 else if (strcmp(ivmode, "null") == 0)
1020 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001022 ti->error = "Invalid IV mode";
Milan Broz636d5782007-10-19 22:47:52 +01001023 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
1027 cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
Milan Broz636d5782007-10-19 22:47:52 +01001028 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Milan Broz3a7f6c92008-02-08 02:11:14 +00001030 cc->iv_size = crypto_ablkcipher_ivsize(tfm);
Herbert Xud1806f62006-08-22 20:29:17 +10001031 if (cc->iv_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* at least a 64 bit sector number should fit in our buffer */
Herbert Xud1806f62006-08-22 20:29:17 +10001033 cc->iv_size = max(cc->iv_size,
Milan Brozd469f842007-10-19 22:42:37 +01001034 (unsigned int)(sizeof(u64) / sizeof(u8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (cc->iv_gen_ops) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001037 DMWARN("Selected cipher does not support IVs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (cc->iv_gen_ops->dtr)
1039 cc->iv_gen_ops->dtr(cc);
1040 cc->iv_gen_ops = NULL;
1041 }
1042 }
1043
Matthew Dobson93d23412006-03-26 01:37:50 -08001044 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001046 ti->error = "Cannot allocate crypt io mempool";
Milan Broz636d5782007-10-19 22:47:52 +01001047 goto bad_slab_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
Milan Brozddd42ed2008-02-08 02:11:07 +00001050 cc->dmreq_start = sizeof(struct ablkcipher_request);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001051 cc->dmreq_start += crypto_ablkcipher_reqsize(tfm);
Milan Brozddd42ed2008-02-08 02:11:07 +00001052 cc->dmreq_start = ALIGN(cc->dmreq_start, crypto_tfm_ctx_alignment());
Milan Broz3a7f6c92008-02-08 02:11:14 +00001053 cc->dmreq_start += crypto_ablkcipher_alignmask(tfm) &
1054 ~(crypto_tfm_ctx_alignment() - 1);
Milan Brozddd42ed2008-02-08 02:11:07 +00001055
1056 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
1057 sizeof(struct dm_crypt_request) + cc->iv_size);
1058 if (!cc->req_pool) {
1059 ti->error = "Cannot allocate crypt request mempool";
1060 goto bad_req_pool;
1061 }
1062 cc->req = NULL;
1063
Matthew Dobsona19b27c2006-03-26 01:37:45 -08001064 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001066 ti->error = "Cannot allocate page mempool";
Milan Broz636d5782007-10-19 22:47:52 +01001067 goto bad_page_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069
Jens Axboe59725112007-04-02 10:06:42 +02001070 cc->bs = bioset_create(MIN_IOS, MIN_IOS);
Milan Broz6a24c712006-10-03 01:15:40 -07001071 if (!cc->bs) {
1072 ti->error = "Cannot allocate crypt bioset";
1073 goto bad_bs;
1074 }
1075
Milan Broz3a7f6c92008-02-08 02:11:14 +00001076 if (crypto_ablkcipher_setkey(tfm, cc->key, key_size) < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001077 ti->error = "Error setting key";
Milan Broz636d5782007-10-19 22:47:52 +01001078 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Andrew Morton4ee218c2006-03-27 01:17:48 -08001081 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001082 ti->error = "Invalid iv_offset sector";
Milan Broz636d5782007-10-19 22:47:52 +01001083 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001085 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Andrew Morton4ee218c2006-03-27 01:17:48 -08001087 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001088 ti->error = "Invalid device sector";
Milan Broz636d5782007-10-19 22:47:52 +01001089 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001091 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 if (dm_get_device(ti, argv[3], cc->start, ti->len,
Milan Brozd469f842007-10-19 22:42:37 +01001094 dm_table_get_mode(ti->table), &cc->dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001095 ti->error = "Device lookup failed";
Milan Broz636d5782007-10-19 22:47:52 +01001096 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
1099 if (ivmode && cc->iv_gen_ops) {
1100 if (ivopts)
1101 *(ivopts - 1) = ':';
1102 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
1103 if (!cc->iv_mode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001104 ti->error = "Error kmallocing iv_mode string";
Milan Broz636d5782007-10-19 22:47:52 +01001105 goto bad_ivmode_string;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107 strcpy(cc->iv_mode, ivmode);
1108 } else
1109 cc->iv_mode = NULL;
1110
Milan Brozcabf08e2007-10-19 22:38:58 +01001111 cc->io_queue = create_singlethread_workqueue("kcryptd_io");
1112 if (!cc->io_queue) {
1113 ti->error = "Couldn't create kcryptd io queue";
1114 goto bad_io_queue;
1115 }
1116
1117 cc->crypt_queue = create_singlethread_workqueue("kcryptd");
1118 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001119 ti->error = "Couldn't create kcryptd queue";
Milan Brozcabf08e2007-10-19 22:38:58 +01001120 goto bad_crypt_queue;
Milan Broz9934a8b2007-10-19 22:38:57 +01001121 }
1122
Milan Broz3f1e9072008-03-28 14:16:07 -07001123 init_waitqueue_head(&cc->writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 ti->private = cc;
1125 return 0;
1126
Milan Brozcabf08e2007-10-19 22:38:58 +01001127bad_crypt_queue:
1128 destroy_workqueue(cc->io_queue);
1129bad_io_queue:
Milan Broz9934a8b2007-10-19 22:38:57 +01001130 kfree(cc->iv_mode);
Milan Broz636d5782007-10-19 22:47:52 +01001131bad_ivmode_string:
Dmitry Monakhov55b42c52007-10-19 22:38:37 +01001132 dm_put_device(ti, cc->dev);
Milan Broz636d5782007-10-19 22:47:52 +01001133bad_device:
Milan Broz6a24c712006-10-03 01:15:40 -07001134 bioset_free(cc->bs);
1135bad_bs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 mempool_destroy(cc->page_pool);
Milan Broz636d5782007-10-19 22:47:52 +01001137bad_page_pool:
Milan Brozddd42ed2008-02-08 02:11:07 +00001138 mempool_destroy(cc->req_pool);
1139bad_req_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 mempool_destroy(cc->io_pool);
Milan Broz636d5782007-10-19 22:47:52 +01001141bad_slab_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1143 cc->iv_gen_ops->dtr(cc);
Milan Broz636d5782007-10-19 22:47:52 +01001144bad_ivmode:
Milan Broz3a7f6c92008-02-08 02:11:14 +00001145 crypto_free_ablkcipher(tfm);
Milan Broz636d5782007-10-19 22:47:52 +01001146bad_cipher:
Stefan Rompf9d3520a2006-01-06 00:20:08 -08001147 /* Must zero key material before freeing */
1148 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 kfree(cc);
1150 return -EINVAL;
1151}
1152
1153static void crypt_dtr(struct dm_target *ti)
1154{
1155 struct crypt_config *cc = (struct crypt_config *) ti->private;
1156
Milan Brozcabf08e2007-10-19 22:38:58 +01001157 destroy_workqueue(cc->io_queue);
1158 destroy_workqueue(cc->crypt_queue);
Milan Broz80b16c12007-07-21 04:37:27 -07001159
Milan Brozddd42ed2008-02-08 02:11:07 +00001160 if (cc->req)
1161 mempool_free(cc->req, cc->req_pool);
1162
Milan Broz6a24c712006-10-03 01:15:40 -07001163 bioset_free(cc->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 mempool_destroy(cc->page_pool);
Milan Brozddd42ed2008-02-08 02:11:07 +00001165 mempool_destroy(cc->req_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 mempool_destroy(cc->io_pool);
1167
Jesper Juhl990a8ba2005-06-21 17:17:30 -07001168 kfree(cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1170 cc->iv_gen_ops->dtr(cc);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001171 crypto_free_ablkcipher(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 dm_put_device(ti, cc->dev);
Stefan Rompf9d3520a2006-01-06 00:20:08 -08001173
1174 /* Must zero key material before freeing */
1175 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 kfree(cc);
1177}
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179static int crypt_map(struct dm_target *ti, struct bio *bio,
1180 union map_info *map_context)
1181{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001182 struct dm_crypt_io *io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Milan Brozdc440d1e2008-10-10 13:37:03 +01001184 io = crypt_io_alloc(ti, bio, bio->bi_sector - ti->begin);
Milan Brozcabf08e2007-10-19 22:38:58 +01001185
1186 if (bio_data_dir(io->base_bio) == READ)
1187 kcryptd_queue_io(io);
1188 else
1189 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001191 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194static int crypt_status(struct dm_target *ti, status_type_t type,
1195 char *result, unsigned int maxlen)
1196{
1197 struct crypt_config *cc = (struct crypt_config *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 unsigned int sz = 0;
1199
1200 switch (type) {
1201 case STATUSTYPE_INFO:
1202 result[0] = '\0';
1203 break;
1204
1205 case STATUSTYPE_TABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (cc->iv_mode)
Christophe Saout37af6562006-10-30 20:39:08 +01001207 DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode,
1208 cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 else
Christophe Saout37af6562006-10-30 20:39:08 +01001210 DMEMIT("%s-%s ", cc->cipher, cc->chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 if (cc->key_size > 0) {
1213 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1214 return -ENOMEM;
1215
1216 crypt_encode_key(result + sz, cc->key, cc->key_size);
1217 sz += cc->key_size << 1;
1218 } else {
1219 if (sz >= maxlen)
1220 return -ENOMEM;
1221 result[sz++] = '-';
1222 }
1223
Andrew Morton4ee218c2006-03-27 01:17:48 -08001224 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1225 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 break;
1227 }
1228 return 0;
1229}
1230
Milan Broze48d4bb2006-10-03 01:15:37 -07001231static void crypt_postsuspend(struct dm_target *ti)
1232{
1233 struct crypt_config *cc = ti->private;
1234
1235 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1236}
1237
1238static int crypt_preresume(struct dm_target *ti)
1239{
1240 struct crypt_config *cc = ti->private;
1241
1242 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1243 DMERR("aborting resume - crypt key is not set.");
1244 return -EAGAIN;
1245 }
1246
1247 return 0;
1248}
1249
1250static void crypt_resume(struct dm_target *ti)
1251{
1252 struct crypt_config *cc = ti->private;
1253
1254 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1255}
1256
1257/* Message interface
1258 * key set <key>
1259 * key wipe
1260 */
1261static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1262{
1263 struct crypt_config *cc = ti->private;
1264
1265 if (argc < 2)
1266 goto error;
1267
1268 if (!strnicmp(argv[0], MESG_STR("key"))) {
1269 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1270 DMWARN("not suspended during key manipulation.");
1271 return -EINVAL;
1272 }
1273 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
1274 return crypt_set_key(cc, argv[2]);
1275 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1276 return crypt_wipe_key(cc);
1277 }
1278
1279error:
1280 DMWARN("unrecognised message received.");
1281 return -EINVAL;
1282}
1283
Milan Brozd41e26b2008-07-21 12:00:40 +01001284static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
1285 struct bio_vec *biovec, int max_size)
1286{
1287 struct crypt_config *cc = ti->private;
1288 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
1289
1290 if (!q->merge_bvec_fn)
1291 return max_size;
1292
1293 bvm->bi_bdev = cc->dev->bdev;
1294 bvm->bi_sector = cc->start + bvm->bi_sector - ti->begin;
1295
1296 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299static struct target_type crypt_target = {
1300 .name = "crypt",
Milan Brozd41e26b2008-07-21 12:00:40 +01001301 .version= {1, 6, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 .module = THIS_MODULE,
1303 .ctr = crypt_ctr,
1304 .dtr = crypt_dtr,
1305 .map = crypt_map,
1306 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001307 .postsuspend = crypt_postsuspend,
1308 .preresume = crypt_preresume,
1309 .resume = crypt_resume,
1310 .message = crypt_message,
Milan Brozd41e26b2008-07-21 12:00:40 +01001311 .merge = crypt_merge,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312};
1313
1314static int __init dm_crypt_init(void)
1315{
1316 int r;
1317
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001318 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (!_crypt_io_pool)
1320 return -ENOMEM;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 r = dm_register_target(&crypt_target);
1323 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001324 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001325 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return r;
1329}
1330
1331static void __exit dm_crypt_exit(void)
1332{
1333 int r = dm_unregister_target(&crypt_target);
1334
1335 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001336 DMERR("unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 kmem_cache_destroy(_crypt_io_pool);
1339}
1340
1341module_init(dm_crypt_init);
1342module_exit(dm_crypt_exit);
1343
1344MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1345MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1346MODULE_LICENSE("GPL");