blob: 2301d223f2ae63edd6cc5169086fc1ee7f2b6dcd [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 {
Huang Yingb2174ee2009-03-16 17:44:33 +000063 struct convert_context *ctx;
Milan Broz01482b72008-02-08 02:11:04 +000064 struct scatterlist sg_in;
65 struct scatterlist sg_out;
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct crypt_config;
69
70struct crypt_iv_operations {
71 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010072 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 void (*dtr)(struct crypt_config *cc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
75};
76
Milan Broz60473592009-12-10 23:51:55 +000077struct iv_essiv_private {
78 struct crypto_cipher *tfm;
79};
80
81struct iv_benbi_private {
82 int shift;
83};
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Crypt: maps a linear range of a block device
87 * and encrypts / decrypts at the same time.
88 */
Milan Broze48d4bb2006-10-03 01:15:37 -070089enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070090struct crypt_config {
91 struct dm_dev *dev;
92 sector_t start;
93
94 /*
Milan Brozddd42ed2008-02-08 02:11:07 +000095 * pool for per bio private data, crypto requests and
96 * encryption requeusts/buffer pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
98 mempool_t *io_pool;
Milan Brozddd42ed2008-02-08 02:11:07 +000099 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -0700101 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Milan Brozcabf08e2007-10-19 22:38:58 +0100103 struct workqueue_struct *io_queue;
104 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /*
107 * crypto related data
108 */
109 struct crypt_iv_operations *iv_gen_ops;
110 char *iv_mode;
Herbert Xu79066ad2006-12-05 13:41:52 -0800111 union {
Milan Broz60473592009-12-10 23:51:55 +0000112 struct iv_essiv_private essiv;
113 struct iv_benbi_private benbi;
Herbert Xu79066ad2006-12-05 13:41:52 -0800114 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 sector_t iv_offset;
116 unsigned int iv_size;
117
Milan Brozddd42ed2008-02-08 02:11:07 +0000118 /*
119 * Layout of each crypto request:
120 *
121 * struct ablkcipher_request
122 * context
123 * padding
124 * struct dm_crypt_request
125 * padding
126 * IV
127 *
128 * The padding is added so that dm_crypt_request and the IV are
129 * correctly aligned.
130 */
131 unsigned int dmreq_start;
132 struct ablkcipher_request *req;
133
Herbert Xud1806f62006-08-22 20:29:17 +1000134 char cipher[CRYPTO_MAX_ALG_NAME];
135 char chainmode[CRYPTO_MAX_ALG_NAME];
Milan Broz3a7f6c92008-02-08 02:11:14 +0000136 struct crypto_ablkcipher *tfm;
Milan Broze48d4bb2006-10-03 01:15:37 -0700137 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int key_size;
139 u8 key[0];
140};
141
Milan Broz6a24c712006-10-03 01:15:40 -0700142#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#define MIN_POOL_PAGES 32
144#define MIN_BIO_PAGES 8
145
Christoph Lametere18b8902006-12-06 20:33:20 -0800146static struct kmem_cache *_crypt_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100148static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000149static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Olaf Kirch027581f2007-05-09 02:32:52 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * Different IV generation algorithms:
153 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000154 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200155 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000157 * essiv: "encrypted sector|salt initial vector", the sector number is
158 * encrypted with the bulk cipher using a salt as key. The salt
159 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
Rik Snel48527fa2006-09-03 08:56:39 +1000161 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
162 * (needed for LRW-32-AES and possible other narrow block modes)
163 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700164 * null: the initial vector is always zero. Provides compatibility with
165 * obsolete loop_fish2 devices. Do not use for new devices.
166 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * plumb: unimplemented, see:
168 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
169 */
170
171static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
172{
173 memset(iv, 0, cc->iv_size);
174 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
175
176 return 0;
177}
178
Milan Broz60473592009-12-10 23:51:55 +0000179static void crypt_iv_essiv_dtr(struct crypt_config *cc)
180{
181 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
182
183 crypto_free_cipher(essiv->tfm);
184 essiv->tfm = NULL;
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100188 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Milan Broz5861f1b2009-12-10 23:51:56 +0000190 struct crypto_cipher *essiv_tfm = NULL;
191 struct crypto_hash *hash_tfm = NULL;
Herbert Xu35058682006-08-24 19:10:20 +1000192 struct hash_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct scatterlist sg;
194 unsigned int saltsize;
Milan Broz5861f1b2009-12-10 23:51:56 +0000195 u8 *salt = NULL;
Herbert Xud1806f62006-08-22 20:29:17 +1000196 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Milan Broz5861f1b2009-12-10 23:51:56 +0000198 if (!opts) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700199 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -EINVAL;
201 }
202
203 /* Hash the cipher key with the given hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000204 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
205 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700206 ti->error = "Error initializing ESSIV hash";
Milan Broz5861f1b2009-12-10 23:51:56 +0000207 err = PTR_ERR(hash_tfm);
208 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Herbert Xu35058682006-08-24 19:10:20 +1000211 saltsize = crypto_hash_digestsize(hash_tfm);
Milan Broz5861f1b2009-12-10 23:51:56 +0000212 salt = kzalloc(saltsize, GFP_KERNEL);
213 if (!salt) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700214 ti->error = "Error kmallocing salt storage in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000215 err = -ENOMEM;
216 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700219 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xu35058682006-08-24 19:10:20 +1000220 desc.tfm = hash_tfm;
221 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
222 err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
223 crypto_free_hash(hash_tfm);
Milan Broz5861f1b2009-12-10 23:51:56 +0000224 hash_tfm = NULL;
Herbert Xu35058682006-08-24 19:10:20 +1000225
226 if (err) {
227 ti->error = "Error calculating hash in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000228 goto bad;
Herbert Xu35058682006-08-24 19:10:20 +1000229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* Setup the essiv_tfm with the given salt */
Herbert Xud1806f62006-08-22 20:29:17 +1000232 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
233 if (IS_ERR(essiv_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700234 ti->error = "Error allocating crypto tfm for ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000235 err = PTR_ERR(essiv_tfm);
236 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
Herbert Xud1806f62006-08-22 20:29:17 +1000238 if (crypto_cipher_blocksize(essiv_tfm) !=
Milan Broz3a7f6c92008-02-08 02:11:14 +0000239 crypto_ablkcipher_ivsize(cc->tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700240 ti->error = "Block size of ESSIV cipher does "
Milan Brozd469f842007-10-19 22:42:37 +0100241 "not match IV size of block cipher";
Milan Broz5861f1b2009-12-10 23:51:56 +0000242 err = -EINVAL;
243 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
Herbert Xud1806f62006-08-22 20:29:17 +1000245 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
246 if (err) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700247 ti->error = "Failed to set key for ESSIV cipher";
Milan Broz5861f1b2009-12-10 23:51:56 +0000248 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Milan Broz5861f1b2009-12-10 23:51:56 +0000250 kzfree(salt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Milan Broz60473592009-12-10 23:51:55 +0000252 cc->iv_gen_private.essiv.tfm = essiv_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
Milan Broz5861f1b2009-12-10 23:51:56 +0000254
255bad:
256 if (essiv_tfm && !IS_ERR(essiv_tfm))
257 crypto_free_cipher(essiv_tfm);
258 if (hash_tfm && !IS_ERR(hash_tfm))
259 crypto_free_hash(hash_tfm);
260 kzfree(salt);
261 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 memset(iv, 0, cc->iv_size);
267 *(u64 *)iv = cpu_to_le64(sector);
Milan Broz60473592009-12-10 23:51:55 +0000268 crypto_cipher_encrypt_one(cc->iv_gen_private.essiv.tfm, iv, iv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 0;
270}
271
Rik Snel48527fa2006-09-03 08:56:39 +1000272static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
273 const char *opts)
274{
Milan Broz3a7f6c92008-02-08 02:11:14 +0000275 unsigned bs = crypto_ablkcipher_blocksize(cc->tfm);
David Howellsf0d1b0b2006-12-08 02:37:49 -0800276 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000277
278 /* we need to calculate how far we must shift the sector count
279 * to get the cipher block count, we use this shift in _gen */
280
281 if (1 << log != bs) {
282 ti->error = "cypher blocksize is not a power of 2";
283 return -EINVAL;
284 }
285
286 if (log > 9) {
287 ti->error = "cypher blocksize is > 512";
288 return -EINVAL;
289 }
290
Milan Broz60473592009-12-10 23:51:55 +0000291 cc->iv_gen_private.benbi.shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000292
293 return 0;
294}
295
296static void crypt_iv_benbi_dtr(struct crypt_config *cc)
297{
Rik Snel48527fa2006-09-03 08:56:39 +1000298}
299
300static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
301{
Herbert Xu79066ad2006-12-05 13:41:52 -0800302 __be64 val;
303
Rik Snel48527fa2006-09-03 08:56:39 +1000304 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800305
Milan Broz60473592009-12-10 23:51:55 +0000306 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi.shift) + 1);
Herbert Xu79066ad2006-12-05 13:41:52 -0800307 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return 0;
310}
311
Ludwig Nussel46b47732007-05-09 02:32:55 -0700312static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
313{
314 memset(iv, 0, cc->iv_size);
315
316 return 0;
317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static struct crypt_iv_operations crypt_iv_plain_ops = {
320 .generator = crypt_iv_plain_gen
321};
322
323static struct crypt_iv_operations crypt_iv_essiv_ops = {
324 .ctr = crypt_iv_essiv_ctr,
325 .dtr = crypt_iv_essiv_dtr,
326 .generator = crypt_iv_essiv_gen
327};
328
Rik Snel48527fa2006-09-03 08:56:39 +1000329static struct crypt_iv_operations crypt_iv_benbi_ops = {
330 .ctr = crypt_iv_benbi_ctr,
331 .dtr = crypt_iv_benbi_dtr,
332 .generator = crypt_iv_benbi_gen
333};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Ludwig Nussel46b47732007-05-09 02:32:55 -0700335static struct crypt_iv_operations crypt_iv_null_ops = {
336 .generator = crypt_iv_null_gen
337};
338
Milan Brozd469f842007-10-19 22:42:37 +0100339static void crypt_convert_init(struct crypt_config *cc,
340 struct convert_context *ctx,
341 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000342 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 ctx->bio_in = bio_in;
345 ctx->bio_out = bio_out;
346 ctx->offset_in = 0;
347 ctx->offset_out = 0;
348 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
349 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
350 ctx->sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +0000351 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Huang Yingb2174ee2009-03-16 17:44:33 +0000354static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
355 struct ablkcipher_request *req)
356{
357 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
358}
359
360static struct ablkcipher_request *req_of_dmreq(struct crypt_config *cc,
361 struct dm_crypt_request *dmreq)
362{
363 return (struct ablkcipher_request *)((char *)dmreq - cc->dmreq_start);
364}
365
Milan Broz01482b72008-02-08 02:11:04 +0000366static int crypt_convert_block(struct crypt_config *cc,
Milan Broz3a7f6c92008-02-08 02:11:14 +0000367 struct convert_context *ctx,
368 struct ablkcipher_request *req)
Milan Broz01482b72008-02-08 02:11:04 +0000369{
370 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
371 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000372 struct dm_crypt_request *dmreq;
373 u8 *iv;
374 int r = 0;
Milan Broz01482b72008-02-08 02:11:04 +0000375
Huang Yingb2174ee2009-03-16 17:44:33 +0000376 dmreq = dmreq_of_req(cc, req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000377 iv = (u8 *)ALIGN((unsigned long)(dmreq + 1),
378 crypto_ablkcipher_alignmask(cc->tfm) + 1);
379
Huang Yingb2174ee2009-03-16 17:44:33 +0000380 dmreq->ctx = ctx;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000381 sg_init_table(&dmreq->sg_in, 1);
382 sg_set_page(&dmreq->sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000383 bv_in->bv_offset + ctx->offset_in);
384
Milan Broz3a7f6c92008-02-08 02:11:14 +0000385 sg_init_table(&dmreq->sg_out, 1);
386 sg_set_page(&dmreq->sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000387 bv_out->bv_offset + ctx->offset_out);
388
389 ctx->offset_in += 1 << SECTOR_SHIFT;
390 if (ctx->offset_in >= bv_in->bv_len) {
391 ctx->offset_in = 0;
392 ctx->idx_in++;
393 }
394
395 ctx->offset_out += 1 << SECTOR_SHIFT;
396 if (ctx->offset_out >= bv_out->bv_len) {
397 ctx->offset_out = 0;
398 ctx->idx_out++;
399 }
400
Milan Broz3a7f6c92008-02-08 02:11:14 +0000401 if (cc->iv_gen_ops) {
402 r = cc->iv_gen_ops->generator(cc, iv, ctx->sector);
403 if (r < 0)
404 return r;
405 }
406
407 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
408 1 << SECTOR_SHIFT, iv);
409
410 if (bio_data_dir(ctx->bio_in) == WRITE)
411 r = crypto_ablkcipher_encrypt(req);
412 else
413 r = crypto_ablkcipher_decrypt(req);
414
415 return r;
Milan Broz01482b72008-02-08 02:11:04 +0000416}
417
Milan Broz95497a92008-02-08 02:11:12 +0000418static void kcryptd_async_done(struct crypto_async_request *async_req,
419 int error);
Milan Brozddd42ed2008-02-08 02:11:07 +0000420static void crypt_alloc_req(struct crypt_config *cc,
421 struct convert_context *ctx)
422{
423 if (!cc->req)
424 cc->req = mempool_alloc(cc->req_pool, GFP_NOIO);
Milan Broz95497a92008-02-08 02:11:12 +0000425 ablkcipher_request_set_tfm(cc->req, cc->tfm);
426 ablkcipher_request_set_callback(cc->req, CRYPTO_TFM_REQ_MAY_BACKLOG |
Huang Yingb2174ee2009-03-16 17:44:33 +0000427 CRYPTO_TFM_REQ_MAY_SLEEP,
428 kcryptd_async_done,
429 dmreq_of_req(cc, cc->req));
Milan Brozddd42ed2008-02-08 02:11:07 +0000430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/*
433 * Encrypt / decrypt data from one bio to another one (can be the same one)
434 */
435static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100436 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Milan Broz3f1e9072008-03-28 14:16:07 -0700438 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Milan Brozc8081612008-10-10 13:37:08 +0100440 atomic_set(&ctx->pending, 1);
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
443 ctx->idx_out < ctx->bio_out->bi_vcnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Milan Broz3a7f6c92008-02-08 02:11:14 +0000445 crypt_alloc_req(cc, ctx);
446
Milan Broz3f1e9072008-03-28 14:16:07 -0700447 atomic_inc(&ctx->pending);
448
Milan Broz3a7f6c92008-02-08 02:11:14 +0000449 r = crypt_convert_block(cc, ctx, cc->req);
450
451 switch (r) {
Milan Broz3f1e9072008-03-28 14:16:07 -0700452 /* async */
Milan Broz3a7f6c92008-02-08 02:11:14 +0000453 case -EBUSY:
454 wait_for_completion(&ctx->restart);
455 INIT_COMPLETION(ctx->restart);
456 /* fall through*/
457 case -EINPROGRESS:
Milan Broz3a7f6c92008-02-08 02:11:14 +0000458 cc->req = NULL;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000459 ctx->sector++;
460 continue;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000461
Milan Broz3f1e9072008-03-28 14:16:07 -0700462 /* sync */
463 case 0:
464 atomic_dec(&ctx->pending);
465 ctx->sector++;
Milan Brozc7f1b202008-07-02 09:34:28 +0100466 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -0700467 continue;
468
469 /* error */
470 default:
471 atomic_dec(&ctx->pending);
472 return r;
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475
Milan Broz3f1e9072008-03-28 14:16:07 -0700476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Milan Brozd469f842007-10-19 22:42:37 +0100479static void dm_crypt_bio_destructor(struct bio *bio)
480{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100481 struct dm_crypt_io *io = bio->bi_private;
Milan Broz6a24c712006-10-03 01:15:40 -0700482 struct crypt_config *cc = io->target->private;
483
484 bio_free(bio, cc->bs);
Milan Brozd469f842007-10-19 22:42:37 +0100485}
Milan Broz6a24c712006-10-03 01:15:40 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
488 * Generate a new unfragmented bio with the given size
489 * This should never violate the device limitations
Milan Broz933f01d2008-10-10 13:37:08 +0100490 * May return a smaller bio when running out of pages, indicated by
491 * *out_of_pages set to 1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
Milan Broz933f01d2008-10-10 13:37:08 +0100493static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size,
494 unsigned *out_of_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Olaf Kirch027581f2007-05-09 02:32:52 -0700496 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700497 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400499 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Milan Broz91e10622007-12-13 14:16:10 +0000500 unsigned i, len;
501 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700503 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700504 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Olaf Kirch027581f2007-05-09 02:32:52 -0700507 clone_init(io, clone);
Milan Broz933f01d2008-10-10 13:37:08 +0100508 *out_of_pages = 0;
Milan Broz6a24c712006-10-03 01:15:40 -0700509
Olaf Kirchf97380b2007-05-09 02:32:54 -0700510 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000511 page = mempool_alloc(cc->page_pool, gfp_mask);
Milan Broz933f01d2008-10-10 13:37:08 +0100512 if (!page) {
513 *out_of_pages = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
Milan Broz933f01d2008-10-10 13:37:08 +0100515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /*
518 * if additional pages cannot be allocated without waiting,
519 * return a partially allocated bio, the caller will then try
520 * to allocate additional bios while submitting this partial bio
521 */
Olaf Kirchf97380b2007-05-09 02:32:54 -0700522 if (i == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
524
Milan Broz91e10622007-12-13 14:16:10 +0000525 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Milan Broz91e10622007-12-13 14:16:10 +0000527 if (!bio_add_page(clone, page, len, 0)) {
528 mempool_free(page, cc->page_pool);
529 break;
530 }
531
532 size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
Milan Broz8b004452006-10-03 01:15:37 -0700535 if (!clone->bi_size) {
536 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return NULL;
538 }
539
Milan Broz8b004452006-10-03 01:15:37 -0700540 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Neil Brown644bd2f2007-10-16 13:48:46 +0200543static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Neil Brown644bd2f2007-10-16 13:48:46 +0200545 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct bio_vec *bv;
547
Neil Brown644bd2f2007-10-16 13:48:46 +0200548 for (i = 0; i < clone->bi_vcnt; i++) {
Milan Broz8b004452006-10-03 01:15:37 -0700549 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 BUG_ON(!bv->bv_page);
551 mempool_free(bv->bv_page, cc->page_pool);
552 bv->bv_page = NULL;
553 }
554}
555
Milan Brozdc440d1e2008-10-10 13:37:03 +0100556static struct dm_crypt_io *crypt_io_alloc(struct dm_target *ti,
557 struct bio *bio, sector_t sector)
558{
559 struct crypt_config *cc = ti->private;
560 struct dm_crypt_io *io;
561
562 io = mempool_alloc(cc->io_pool, GFP_NOIO);
563 io->target = ti;
564 io->base_bio = bio;
565 io->sector = sector;
566 io->error = 0;
Milan Broz393b47e2008-10-21 17:45:02 +0100567 io->base_io = NULL;
Milan Brozdc440d1e2008-10-10 13:37:03 +0100568 atomic_set(&io->pending, 0);
569
570 return io;
571}
572
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100573static void crypt_inc_pending(struct dm_crypt_io *io)
574{
575 atomic_inc(&io->pending);
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578/*
579 * One of the bios was finished. Check for completion of
580 * the whole request and correctly clean up the buffer.
Milan Broz393b47e2008-10-21 17:45:02 +0100581 * If base_io is set, wait for the last fragment to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Milan Broz5742fd72008-02-08 02:10:43 +0000583static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Milan Broz5742fd72008-02-08 02:10:43 +0000585 struct crypt_config *cc = io->target->private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000586 struct bio *base_bio = io->base_bio;
587 struct dm_crypt_io *base_io = io->base_io;
588 int error = io->error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 if (!atomic_dec_and_test(&io->pending))
591 return;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 mempool_free(io, cc->io_pool);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000594
595 if (likely(!base_io))
596 bio_endio(base_bio, error);
597 else {
598 if (error && !base_io->error)
599 base_io->error = error;
600 crypt_dec_pending(base_io);
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/*
Milan Brozcabf08e2007-10-19 22:38:58 +0100605 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 *
607 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700608 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +0100609 *
610 * kcryptd performs the actual encryption or decryption.
611 *
612 * kcryptd_io performs the IO submission.
613 *
614 * They must be separated as otherwise the final stages could be
615 * starved by new requests which can block in the first stages due
616 * to memory allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 */
NeilBrown6712ecf2007-09-27 12:47:43 +0200618static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -0700619{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100620 struct dm_crypt_io *io = clone->bi_private;
Milan Broz8b004452006-10-03 01:15:37 -0700621 struct crypt_config *cc = io->target->private;
Milan Brozee7a4912008-02-08 02:10:46 +0000622 unsigned rw = bio_data_dir(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700623
Milan Brozadfe4772007-12-13 14:15:51 +0000624 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
625 error = -EIO;
626
Milan Broz8b004452006-10-03 01:15:37 -0700627 /*
NeilBrown6712ecf2007-09-27 12:47:43 +0200628 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -0700629 */
Milan Brozee7a4912008-02-08 02:10:46 +0000630 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +0200631 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +0000632
633 bio_put(clone);
634
635 if (rw == READ && !error) {
636 kcryptd_queue_crypt(io);
637 return;
NeilBrown6712ecf2007-09-27 12:47:43 +0200638 }
Milan Broz8b004452006-10-03 01:15:37 -0700639
Milan Brozadfe4772007-12-13 14:15:51 +0000640 if (unlikely(error))
Milan Broz5742fd72008-02-08 02:10:43 +0000641 io->error = error;
642
643 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700644}
645
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100646static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -0700647{
648 struct crypt_config *cc = io->target->private;
649
650 clone->bi_private = io;
651 clone->bi_end_io = crypt_endio;
652 clone->bi_bdev = cc->dev->bdev;
653 clone->bi_rw = io->base_bio->bi_rw;
Olaf Kirch027581f2007-05-09 02:32:52 -0700654 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700655}
656
Milan Broz4e4eef62008-02-08 02:10:49 +0000657static void kcryptd_io_read(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700658{
659 struct crypt_config *cc = io->target->private;
660 struct bio *base_bio = io->base_bio;
661 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700662
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100663 crypt_inc_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700664
665 /*
666 * The block layer might modify the bvec array, so always
667 * copy the required bvecs because we need the original
668 * one in order to decrypt the whole bio data *afterwards*.
669 */
Milan Broz6a24c712006-10-03 01:15:40 -0700670 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700671 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000672 io->error = -ENOMEM;
673 crypt_dec_pending(io);
Milan Broz23541d22006-10-03 01:15:39 -0700674 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700675 }
Milan Broz8b004452006-10-03 01:15:37 -0700676
677 clone_init(io, clone);
678 clone->bi_idx = 0;
679 clone->bi_vcnt = bio_segments(base_bio);
680 clone->bi_size = base_bio->bi_size;
Milan Broz0c395b02008-02-08 02:10:54 +0000681 clone->bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -0700682 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
683 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700684
Milan Broz93e605c2006-10-03 01:15:38 -0700685 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700686}
687
Milan Broz4e4eef62008-02-08 02:10:49 +0000688static void kcryptd_io_write(struct dm_crypt_io *io)
689{
Milan Broz95497a92008-02-08 02:11:12 +0000690 struct bio *clone = io->ctx.bio_out;
Milan Broz95497a92008-02-08 02:11:12 +0000691 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000692}
693
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000694static void kcryptd_io(struct work_struct *work)
695{
696 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
697
698 if (bio_data_dir(io->base_bio) == READ)
699 kcryptd_io_read(io);
700 else
701 kcryptd_io_write(io);
702}
703
704static void kcryptd_queue_io(struct dm_crypt_io *io)
705{
706 struct crypt_config *cc = io->target->private;
707
708 INIT_WORK(&io->work, kcryptd_io);
709 queue_work(cc->io_queue, &io->work);
710}
711
Milan Broz95497a92008-02-08 02:11:12 +0000712static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io,
713 int error, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +0000714{
Milan Brozdec1ced2008-02-08 02:10:57 +0000715 struct bio *clone = io->ctx.bio_out;
716 struct crypt_config *cc = io->target->private;
717
718 if (unlikely(error < 0)) {
719 crypt_free_buffer_pages(cc, clone);
720 bio_put(clone);
721 io->error = -EIO;
Milan Broz6c031f42008-10-10 13:37:06 +0100722 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000723 return;
724 }
725
726 /* crypt_convert should have filled the clone bio */
727 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
728
729 clone->bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +0000730
Milan Broz95497a92008-02-08 02:11:12 +0000731 if (async)
732 kcryptd_queue_io(io);
Alasdair G Kergon1e37bb8e2008-10-10 13:37:05 +0100733 else
Milan Broz95497a92008-02-08 02:11:12 +0000734 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000735}
736
Milan Brozfc5a5e92008-10-10 13:37:04 +0100737static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700738{
739 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700740 struct bio *clone;
Milan Broz393b47e2008-10-21 17:45:02 +0100741 struct dm_crypt_io *new_io;
Milan Brozc8081612008-10-10 13:37:08 +0100742 int crypt_finished;
Milan Broz933f01d2008-10-10 13:37:08 +0100743 unsigned out_of_pages = 0;
Milan Brozdec1ced2008-02-08 02:10:57 +0000744 unsigned remaining = io->base_bio->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100745 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +0000746 int r;
Milan Broz8b004452006-10-03 01:15:37 -0700747
Milan Broz93e605c2006-10-03 01:15:38 -0700748 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +0100749 * Prevent io from disappearing until this function completes.
750 */
751 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +0100752 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +0100753
754 /*
Milan Broz93e605c2006-10-03 01:15:38 -0700755 * The allocated buffers can be smaller than the whole bio,
756 * so repeat the whole process until all the data can be handled.
757 */
758 while (remaining) {
Milan Broz933f01d2008-10-10 13:37:08 +0100759 clone = crypt_alloc_buffer(io, remaining, &out_of_pages);
Milan Broz23541d22006-10-03 01:15:39 -0700760 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000761 io->error = -ENOMEM;
Milan Brozfc5a5e92008-10-10 13:37:04 +0100762 break;
Milan Broz23541d22006-10-03 01:15:39 -0700763 }
Milan Broz93e605c2006-10-03 01:15:38 -0700764
Milan Broz53017032008-02-08 02:10:38 +0000765 io->ctx.bio_out = clone;
766 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700767
Milan Broz93e605c2006-10-03 01:15:38 -0700768 remaining -= clone->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100769 sector += bio_sectors(clone);
Milan Brozdec1ced2008-02-08 02:10:57 +0000770
Milan Broz4e594092008-10-10 13:37:07 +0100771 crypt_inc_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000772 r = crypt_convert(cc, &io->ctx);
Milan Brozc8081612008-10-10 13:37:08 +0100773 crypt_finished = atomic_dec_and_test(&io->ctx.pending);
Milan Brozdec1ced2008-02-08 02:10:57 +0000774
Milan Brozc8081612008-10-10 13:37:08 +0100775 /* Encryption was already finished, submit io now */
776 if (crypt_finished) {
Milan Broz3a7f6c92008-02-08 02:11:14 +0000777 kcryptd_crypt_write_io_submit(io, r, 0);
Milan Brozc8081612008-10-10 13:37:08 +0100778
779 /*
780 * If there was an error, do not try next fragments.
781 * For async, error is processed in async handler.
782 */
Milan Broz6c031f42008-10-10 13:37:06 +0100783 if (unlikely(r < 0))
Milan Brozfc5a5e92008-10-10 13:37:04 +0100784 break;
Milan Brozb635b002008-10-21 17:45:00 +0100785
786 io->sector = sector;
Milan Broz4e594092008-10-10 13:37:07 +0100787 }
Milan Broz93e605c2006-10-03 01:15:38 -0700788
Milan Broz933f01d2008-10-10 13:37:08 +0100789 /*
790 * Out of memory -> run queues
791 * But don't wait if split was due to the io size restriction
792 */
793 if (unlikely(out_of_pages))
Jens Axboe8aa7e842009-07-09 14:52:32 +0200794 congestion_wait(BLK_RW_ASYNC, HZ/100);
Milan Broz933f01d2008-10-10 13:37:08 +0100795
Milan Broz393b47e2008-10-21 17:45:02 +0100796 /*
797 * With async crypto it is unsafe to share the crypto context
798 * between fragments, so switch to a new dm_crypt_io structure.
799 */
800 if (unlikely(!crypt_finished && remaining)) {
801 new_io = crypt_io_alloc(io->target, io->base_bio,
802 sector);
803 crypt_inc_pending(new_io);
804 crypt_convert_init(cc, &new_io->ctx, NULL,
805 io->base_bio, sector);
806 new_io->ctx.idx_in = io->ctx.idx_in;
807 new_io->ctx.offset_in = io->ctx.offset_in;
808
809 /*
810 * Fragments after the first use the base_io
811 * pending count.
812 */
813 if (!io->base_io)
814 new_io->base_io = io;
815 else {
816 new_io->base_io = io->base_io;
817 crypt_inc_pending(io->base_io);
818 crypt_dec_pending(io);
819 }
820
821 io = new_io;
822 }
Milan Broz8b004452006-10-03 01:15:37 -0700823 }
Milan Broz899c95d2008-02-08 02:11:02 +0000824
825 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +0000826}
827
Milan Broz4e4eef62008-02-08 02:10:49 +0000828static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
Milan Broz5742fd72008-02-08 02:10:43 +0000829{
830 if (unlikely(error < 0))
831 io->error = -EIO;
832
833 crypt_dec_pending(io);
834}
835
Milan Broz4e4eef62008-02-08 02:10:49 +0000836static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700837{
838 struct crypt_config *cc = io->target->private;
Milan Broz5742fd72008-02-08 02:10:43 +0000839 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700840
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100841 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000842
Milan Broz53017032008-02-08 02:10:38 +0000843 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +0000844 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700845
Milan Broz5742fd72008-02-08 02:10:43 +0000846 r = crypt_convert(cc, &io->ctx);
847
Milan Broz3f1e9072008-03-28 14:16:07 -0700848 if (atomic_dec_and_test(&io->ctx.pending))
Milan Broz3a7f6c92008-02-08 02:11:14 +0000849 kcryptd_crypt_read_done(io, r);
850
851 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700852}
853
Milan Broz95497a92008-02-08 02:11:12 +0000854static void kcryptd_async_done(struct crypto_async_request *async_req,
855 int error)
856{
Huang Yingb2174ee2009-03-16 17:44:33 +0000857 struct dm_crypt_request *dmreq = async_req->data;
858 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +0000859 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
860 struct crypt_config *cc = io->target->private;
861
862 if (error == -EINPROGRESS) {
863 complete(&ctx->restart);
864 return;
865 }
866
Huang Yingb2174ee2009-03-16 17:44:33 +0000867 mempool_free(req_of_dmreq(cc, dmreq), cc->req_pool);
Milan Broz95497a92008-02-08 02:11:12 +0000868
869 if (!atomic_dec_and_test(&ctx->pending))
870 return;
871
872 if (bio_data_dir(io->base_bio) == READ)
873 kcryptd_crypt_read_done(io, error);
874 else
875 kcryptd_crypt_write_io_submit(io, error, 1);
876}
877
Milan Broz4e4eef62008-02-08 02:10:49 +0000878static void kcryptd_crypt(struct work_struct *work)
879{
880 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
881
882 if (bio_data_dir(io->base_bio) == READ)
883 kcryptd_crypt_read_convert(io);
884 else
885 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -0700886}
887
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000888static void kcryptd_queue_crypt(struct dm_crypt_io *io)
889{
890 struct crypt_config *cc = io->target->private;
891
892 INIT_WORK(&io->work, kcryptd_crypt);
893 queue_work(cc->crypt_queue, &io->work);
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/*
897 * Decode key from its hex representation
898 */
899static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
900{
901 char buffer[3];
902 char *endp;
903 unsigned int i;
904
905 buffer[2] = '\0';
906
Milan Broz8b004452006-10-03 01:15:37 -0700907 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 buffer[0] = *hex++;
909 buffer[1] = *hex++;
910
911 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
912
913 if (endp != &buffer[2])
914 return -EINVAL;
915 }
916
917 if (*hex != '\0')
918 return -EINVAL;
919
920 return 0;
921}
922
923/*
924 * Encode key into its hex representation
925 */
926static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
927{
928 unsigned int i;
929
Milan Broz8b004452006-10-03 01:15:37 -0700930 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 sprintf(hex, "%02x", *key);
932 hex += 2;
933 key++;
934 }
935}
936
Milan Broze48d4bb2006-10-03 01:15:37 -0700937static int crypt_set_key(struct crypt_config *cc, char *key)
938{
939 unsigned key_size = strlen(key) >> 1;
940
941 if (cc->key_size && cc->key_size != key_size)
942 return -EINVAL;
943
944 cc->key_size = key_size; /* initial settings */
945
946 if ((!key_size && strcmp(key, "-")) ||
Milan Brozd469f842007-10-19 22:42:37 +0100947 (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
Milan Broze48d4bb2006-10-03 01:15:37 -0700948 return -EINVAL;
949
950 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
951
Milan Broz0b430952009-12-10 23:51:55 +0000952 return crypto_ablkcipher_setkey(cc->tfm, cc->key, cc->key_size);
Milan Broze48d4bb2006-10-03 01:15:37 -0700953}
954
955static int crypt_wipe_key(struct crypt_config *cc)
956{
957 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
958 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Milan Broz0b430952009-12-10 23:51:55 +0000959 return crypto_ablkcipher_setkey(cc->tfm, cc->key, cc->key_size);
Milan Broze48d4bb2006-10-03 01:15:37 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 * Construct an encryption mapping:
964 * <cipher> <key> <iv_offset> <dev_path> <start>
965 */
966static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
967{
968 struct crypt_config *cc;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000969 struct crypto_ablkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 char *tmp;
971 char *cipher;
972 char *chainmode;
973 char *ivmode;
974 char *ivopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 unsigned int key_size;
Andrew Morton4ee218c2006-03-27 01:17:48 -0800976 unsigned long long tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 if (argc != 5) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700979 ti->error = "Not enough arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -EINVAL;
981 }
982
983 tmp = argv[0];
984 cipher = strsep(&tmp, "-");
985 chainmode = strsep(&tmp, "-");
986 ivopts = strsep(&tmp, "-");
987 ivmode = strsep(&ivopts, ":");
988
989 if (tmp)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700990 DMWARN("Unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 key_size = strlen(argv[1]) >> 1;
993
Milan Broze48d4bb2006-10-03 01:15:37 -0700994 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (cc == NULL) {
996 ti->error =
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700997 "Cannot allocate transparent encryption context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return -ENOMEM;
999 }
1000
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -04001001 /* Compatibility mode for old dm-crypt cipher strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
1003 chainmode = "cbc";
1004 ivmode = "plain";
1005 }
1006
Herbert Xud1806f62006-08-22 20:29:17 +10001007 if (strcmp(chainmode, "ecb") && !ivmode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001008 ti->error = "This chaining mode requires an IV mechanism";
Milan Broz636d5782007-10-19 22:47:52 +01001009 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
Milan Brozd469f842007-10-19 22:42:37 +01001012 if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)",
1013 chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) {
Herbert Xud1806f62006-08-22 20:29:17 +10001014 ti->error = "Chain mode + cipher name is too long";
Milan Broz636d5782007-10-19 22:47:52 +01001015 goto bad_cipher;
Herbert Xud1806f62006-08-22 20:29:17 +10001016 }
1017
Milan Broz3a7f6c92008-02-08 02:11:14 +00001018 tfm = crypto_alloc_ablkcipher(cc->cipher, 0, 0);
Herbert Xud1806f62006-08-22 20:29:17 +10001019 if (IS_ERR(tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001020 ti->error = "Error allocating crypto tfm";
Milan Broz636d5782007-10-19 22:47:52 +01001021 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Herbert Xud1806f62006-08-22 20:29:17 +10001024 strcpy(cc->cipher, cipher);
1025 strcpy(cc->chainmode, chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 cc->tfm = tfm;
1027
Milan Broz0b430952009-12-10 23:51:55 +00001028 if (crypt_set_key(cc, argv[1]) < 0) {
1029 ti->error = "Error decoding and setting key";
1030 goto bad_ivmode;
1031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /*
Rik Snel48527fa2006-09-03 08:56:39 +10001034 * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 * See comments at iv code
1036 */
1037
1038 if (ivmode == NULL)
1039 cc->iv_gen_ops = NULL;
1040 else if (strcmp(ivmode, "plain") == 0)
1041 cc->iv_gen_ops = &crypt_iv_plain_ops;
1042 else if (strcmp(ivmode, "essiv") == 0)
1043 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001044 else if (strcmp(ivmode, "benbi") == 0)
1045 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001046 else if (strcmp(ivmode, "null") == 0)
1047 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001049 ti->error = "Invalid IV mode";
Milan Broz636d5782007-10-19 22:47:52 +01001050 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052
1053 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
1054 cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
Milan Broz636d5782007-10-19 22:47:52 +01001055 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Milan Broz3a7f6c92008-02-08 02:11:14 +00001057 cc->iv_size = crypto_ablkcipher_ivsize(tfm);
Herbert Xud1806f62006-08-22 20:29:17 +10001058 if (cc->iv_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /* at least a 64 bit sector number should fit in our buffer */
Herbert Xud1806f62006-08-22 20:29:17 +10001060 cc->iv_size = max(cc->iv_size,
Milan Brozd469f842007-10-19 22:42:37 +01001061 (unsigned int)(sizeof(u64) / sizeof(u8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (cc->iv_gen_ops) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001064 DMWARN("Selected cipher does not support IVs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (cc->iv_gen_ops->dtr)
1066 cc->iv_gen_ops->dtr(cc);
1067 cc->iv_gen_ops = NULL;
1068 }
1069 }
1070
Matthew Dobson93d23412006-03-26 01:37:50 -08001071 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001073 ti->error = "Cannot allocate crypt io mempool";
Milan Broz636d5782007-10-19 22:47:52 +01001074 goto bad_slab_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076
Milan Brozddd42ed2008-02-08 02:11:07 +00001077 cc->dmreq_start = sizeof(struct ablkcipher_request);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001078 cc->dmreq_start += crypto_ablkcipher_reqsize(tfm);
Milan Brozddd42ed2008-02-08 02:11:07 +00001079 cc->dmreq_start = ALIGN(cc->dmreq_start, crypto_tfm_ctx_alignment());
Milan Broz3a7f6c92008-02-08 02:11:14 +00001080 cc->dmreq_start += crypto_ablkcipher_alignmask(tfm) &
1081 ~(crypto_tfm_ctx_alignment() - 1);
Milan Brozddd42ed2008-02-08 02:11:07 +00001082
1083 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
1084 sizeof(struct dm_crypt_request) + cc->iv_size);
1085 if (!cc->req_pool) {
1086 ti->error = "Cannot allocate crypt request mempool";
1087 goto bad_req_pool;
1088 }
1089 cc->req = NULL;
1090
Matthew Dobsona19b27c2006-03-26 01:37:45 -08001091 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001093 ti->error = "Cannot allocate page mempool";
Milan Broz636d5782007-10-19 22:47:52 +01001094 goto bad_page_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096
Jens Axboebb799ca2008-12-10 15:35:05 +01001097 cc->bs = bioset_create(MIN_IOS, 0);
Milan Broz6a24c712006-10-03 01:15:40 -07001098 if (!cc->bs) {
1099 ti->error = "Cannot allocate crypt bioset";
1100 goto bad_bs;
1101 }
1102
Andrew Morton4ee218c2006-03-27 01:17:48 -08001103 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001104 ti->error = "Invalid iv_offset sector";
Milan Broz636d5782007-10-19 22:47:52 +01001105 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001107 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Andrew Morton4ee218c2006-03-27 01:17:48 -08001109 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001110 ti->error = "Invalid device sector";
Milan Broz636d5782007-10-19 22:47:52 +01001111 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001113 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 if (dm_get_device(ti, argv[3], cc->start, ti->len,
Milan Brozd469f842007-10-19 22:42:37 +01001116 dm_table_get_mode(ti->table), &cc->dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001117 ti->error = "Device lookup failed";
Milan Broz636d5782007-10-19 22:47:52 +01001118 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
1121 if (ivmode && cc->iv_gen_ops) {
1122 if (ivopts)
1123 *(ivopts - 1) = ':';
1124 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
1125 if (!cc->iv_mode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001126 ti->error = "Error kmallocing iv_mode string";
Milan Broz636d5782007-10-19 22:47:52 +01001127 goto bad_ivmode_string;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 strcpy(cc->iv_mode, ivmode);
1130 } else
1131 cc->iv_mode = NULL;
1132
Milan Brozcabf08e2007-10-19 22:38:58 +01001133 cc->io_queue = create_singlethread_workqueue("kcryptd_io");
1134 if (!cc->io_queue) {
1135 ti->error = "Couldn't create kcryptd io queue";
1136 goto bad_io_queue;
1137 }
1138
1139 cc->crypt_queue = create_singlethread_workqueue("kcryptd");
1140 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001141 ti->error = "Couldn't create kcryptd queue";
Milan Brozcabf08e2007-10-19 22:38:58 +01001142 goto bad_crypt_queue;
Milan Broz9934a8b2007-10-19 22:38:57 +01001143 }
1144
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001145 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 ti->private = cc;
1147 return 0;
1148
Milan Brozcabf08e2007-10-19 22:38:58 +01001149bad_crypt_queue:
1150 destroy_workqueue(cc->io_queue);
1151bad_io_queue:
Milan Broz9934a8b2007-10-19 22:38:57 +01001152 kfree(cc->iv_mode);
Milan Broz636d5782007-10-19 22:47:52 +01001153bad_ivmode_string:
Dmitry Monakhov55b42c52007-10-19 22:38:37 +01001154 dm_put_device(ti, cc->dev);
Milan Broz636d5782007-10-19 22:47:52 +01001155bad_device:
Milan Broz6a24c712006-10-03 01:15:40 -07001156 bioset_free(cc->bs);
1157bad_bs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 mempool_destroy(cc->page_pool);
Milan Broz636d5782007-10-19 22:47:52 +01001159bad_page_pool:
Milan Brozddd42ed2008-02-08 02:11:07 +00001160 mempool_destroy(cc->req_pool);
1161bad_req_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 mempool_destroy(cc->io_pool);
Milan Broz636d5782007-10-19 22:47:52 +01001163bad_slab_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1165 cc->iv_gen_ops->dtr(cc);
Milan Broz636d5782007-10-19 22:47:52 +01001166bad_ivmode:
Milan Broz3a7f6c92008-02-08 02:11:14 +00001167 crypto_free_ablkcipher(tfm);
Milan Broz636d5782007-10-19 22:47:52 +01001168bad_cipher:
Stefan Rompf9d3520a2006-01-06 00:20:08 -08001169 /* Must zero key material before freeing */
Johannes Weinerb81d6cf2009-04-02 19:55:28 +01001170 kzfree(cc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return -EINVAL;
1172}
1173
1174static void crypt_dtr(struct dm_target *ti)
1175{
1176 struct crypt_config *cc = (struct crypt_config *) ti->private;
1177
Milan Brozcabf08e2007-10-19 22:38:58 +01001178 destroy_workqueue(cc->io_queue);
1179 destroy_workqueue(cc->crypt_queue);
Milan Broz80b16c12007-07-21 04:37:27 -07001180
Milan Brozddd42ed2008-02-08 02:11:07 +00001181 if (cc->req)
1182 mempool_free(cc->req, cc->req_pool);
1183
Milan Broz6a24c712006-10-03 01:15:40 -07001184 bioset_free(cc->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 mempool_destroy(cc->page_pool);
Milan Brozddd42ed2008-02-08 02:11:07 +00001186 mempool_destroy(cc->req_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 mempool_destroy(cc->io_pool);
1188
Jesper Juhl990a8ba2005-06-21 17:17:30 -07001189 kfree(cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1191 cc->iv_gen_ops->dtr(cc);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001192 crypto_free_ablkcipher(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 dm_put_device(ti, cc->dev);
Stefan Rompf9d3520a2006-01-06 00:20:08 -08001194
1195 /* Must zero key material before freeing */
Johannes Weinerb81d6cf2009-04-02 19:55:28 +01001196 kzfree(cc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199static int crypt_map(struct dm_target *ti, struct bio *bio,
1200 union map_info *map_context)
1201{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001202 struct dm_crypt_io *io;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001203 struct crypt_config *cc;
1204
1205 if (unlikely(bio_empty_barrier(bio))) {
1206 cc = ti->private;
1207 bio->bi_bdev = cc->dev->bdev;
1208 return DM_MAPIO_REMAPPED;
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Milan Brozdc440d1e2008-10-10 13:37:03 +01001211 io = crypt_io_alloc(ti, bio, bio->bi_sector - ti->begin);
Milan Brozcabf08e2007-10-19 22:38:58 +01001212
1213 if (bio_data_dir(io->base_bio) == READ)
1214 kcryptd_queue_io(io);
1215 else
1216 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001218 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
1221static int crypt_status(struct dm_target *ti, status_type_t type,
1222 char *result, unsigned int maxlen)
1223{
1224 struct crypt_config *cc = (struct crypt_config *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 unsigned int sz = 0;
1226
1227 switch (type) {
1228 case STATUSTYPE_INFO:
1229 result[0] = '\0';
1230 break;
1231
1232 case STATUSTYPE_TABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (cc->iv_mode)
Christophe Saout37af6562006-10-30 20:39:08 +01001234 DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode,
1235 cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 else
Christophe Saout37af6562006-10-30 20:39:08 +01001237 DMEMIT("%s-%s ", cc->cipher, cc->chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 if (cc->key_size > 0) {
1240 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1241 return -ENOMEM;
1242
1243 crypt_encode_key(result + sz, cc->key, cc->key_size);
1244 sz += cc->key_size << 1;
1245 } else {
1246 if (sz >= maxlen)
1247 return -ENOMEM;
1248 result[sz++] = '-';
1249 }
1250
Andrew Morton4ee218c2006-03-27 01:17:48 -08001251 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1252 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 break;
1254 }
1255 return 0;
1256}
1257
Milan Broze48d4bb2006-10-03 01:15:37 -07001258static void crypt_postsuspend(struct dm_target *ti)
1259{
1260 struct crypt_config *cc = ti->private;
1261
1262 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1263}
1264
1265static int crypt_preresume(struct dm_target *ti)
1266{
1267 struct crypt_config *cc = ti->private;
1268
1269 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1270 DMERR("aborting resume - crypt key is not set.");
1271 return -EAGAIN;
1272 }
1273
1274 return 0;
1275}
1276
1277static void crypt_resume(struct dm_target *ti)
1278{
1279 struct crypt_config *cc = ti->private;
1280
1281 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1282}
1283
1284/* Message interface
1285 * key set <key>
1286 * key wipe
1287 */
1288static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1289{
1290 struct crypt_config *cc = ti->private;
1291
1292 if (argc < 2)
1293 goto error;
1294
1295 if (!strnicmp(argv[0], MESG_STR("key"))) {
1296 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1297 DMWARN("not suspended during key manipulation.");
1298 return -EINVAL;
1299 }
1300 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
1301 return crypt_set_key(cc, argv[2]);
1302 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1303 return crypt_wipe_key(cc);
1304 }
1305
1306error:
1307 DMWARN("unrecognised message received.");
1308 return -EINVAL;
1309}
1310
Milan Brozd41e26b2008-07-21 12:00:40 +01001311static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
1312 struct bio_vec *biovec, int max_size)
1313{
1314 struct crypt_config *cc = ti->private;
1315 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
1316
1317 if (!q->merge_bvec_fn)
1318 return max_size;
1319
1320 bvm->bi_bdev = cc->dev->bdev;
1321 bvm->bi_sector = cc->start + bvm->bi_sector - ti->begin;
1322
1323 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
1324}
1325
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001326static int crypt_iterate_devices(struct dm_target *ti,
1327 iterate_devices_callout_fn fn, void *data)
1328{
1329 struct crypt_config *cc = ti->private;
1330
Mike Snitzer5dea2712009-07-23 20:30:42 +01001331 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001332}
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334static struct target_type crypt_target = {
1335 .name = "crypt",
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001336 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 .module = THIS_MODULE,
1338 .ctr = crypt_ctr,
1339 .dtr = crypt_dtr,
1340 .map = crypt_map,
1341 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001342 .postsuspend = crypt_postsuspend,
1343 .preresume = crypt_preresume,
1344 .resume = crypt_resume,
1345 .message = crypt_message,
Milan Brozd41e26b2008-07-21 12:00:40 +01001346 .merge = crypt_merge,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001347 .iterate_devices = crypt_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348};
1349
1350static int __init dm_crypt_init(void)
1351{
1352 int r;
1353
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001354 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (!_crypt_io_pool)
1356 return -ENOMEM;
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 r = dm_register_target(&crypt_target);
1359 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001360 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001361 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return r;
1365}
1366
1367static void __exit dm_crypt_exit(void)
1368{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001369 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 kmem_cache_destroy(_crypt_io_pool);
1371}
1372
1373module_init(dm_crypt_init);
1374module_exit(dm_crypt_exit);
1375
1376MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1377MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1378MODULE_LICENSE("GPL");