blob: 4df7d2f782d8ffc021069f82cba6c20d7031cbf6 [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 Broz4e4eef62008-02-08 02:10:49 +00004 * Copyright (C) 2006-2007 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file is released under the GPL.
7 */
8
Herbert Xud1806f62006-08-22 20:29:17 +10009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
15#include <linux/mempool.h>
16#include <linux/slab.h>
17#include <linux/crypto.h>
18#include <linux/workqueue.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070019#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100021#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/page.h>
Rik Snel48527fa2006-09-03 08:56:39 +100023#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "dm.h"
26
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "crypt"
Milan Broze48d4bb2006-10-03 01:15:37 -070028#define MESG_STR(x) x, sizeof(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * context holding the current state of a multi-part conversion
32 */
33struct convert_context {
34 struct bio *bio_in;
35 struct bio *bio_out;
36 unsigned int offset_in;
37 unsigned int offset_out;
38 unsigned int idx_in;
39 unsigned int idx_out;
40 sector_t sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
Milan Broz53017032008-02-08 02:10:38 +000043/*
44 * per bio private data
45 */
46struct dm_crypt_io {
47 struct dm_target *target;
48 struct bio *base_bio;
49 struct work_struct work;
50
51 struct convert_context ctx;
52
53 atomic_t pending;
54 int error;
Milan Broz0c395b02008-02-08 02:10:54 +000055 sector_t sector;
Milan Broz53017032008-02-08 02:10:38 +000056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct crypt_config;
59
60struct crypt_iv_operations {
61 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010062 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 void (*dtr)(struct crypt_config *cc);
64 const char *(*status)(struct crypt_config *cc);
65 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
66};
67
68/*
69 * Crypt: maps a linear range of a block device
70 * and encrypts / decrypts at the same time.
71 */
Milan Broze48d4bb2006-10-03 01:15:37 -070072enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070073struct crypt_config {
74 struct dm_dev *dev;
75 sector_t start;
76
77 /*
78 * pool for per bio private data and
79 * for encryption buffer pages
80 */
81 mempool_t *io_pool;
82 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -070083 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Milan Brozcabf08e2007-10-19 22:38:58 +010085 struct workqueue_struct *io_queue;
86 struct workqueue_struct *crypt_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /*
88 * crypto related data
89 */
90 struct crypt_iv_operations *iv_gen_ops;
91 char *iv_mode;
Herbert Xu79066ad2006-12-05 13:41:52 -080092 union {
93 struct crypto_cipher *essiv_tfm;
94 int benbi_shift;
95 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 sector_t iv_offset;
97 unsigned int iv_size;
98
Herbert Xud1806f62006-08-22 20:29:17 +100099 char cipher[CRYPTO_MAX_ALG_NAME];
100 char chainmode[CRYPTO_MAX_ALG_NAME];
101 struct crypto_blkcipher *tfm;
Milan Broze48d4bb2006-10-03 01:15:37 -0700102 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned int key_size;
104 u8 key[0];
105};
106
Milan Broz6a24c712006-10-03 01:15:40 -0700107#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define MIN_POOL_PAGES 32
109#define MIN_BIO_PAGES 8
110
Christoph Lametere18b8902006-12-06 20:33:20 -0800111static struct kmem_cache *_crypt_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100113static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000114static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Olaf Kirch027581f2007-05-09 02:32:52 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * Different IV generation algorithms:
118 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000119 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200120 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000122 * essiv: "encrypted sector|salt initial vector", the sector number is
123 * encrypted with the bulk cipher using a salt as key. The salt
124 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *
Rik Snel48527fa2006-09-03 08:56:39 +1000126 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
127 * (needed for LRW-32-AES and possible other narrow block modes)
128 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700129 * null: the initial vector is always zero. Provides compatibility with
130 * obsolete loop_fish2 devices. Do not use for new devices.
131 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * plumb: unimplemented, see:
133 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
134 */
135
136static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
137{
138 memset(iv, 0, cc->iv_size);
139 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
140
141 return 0;
142}
143
144static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100145 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Herbert Xud1806f62006-08-22 20:29:17 +1000147 struct crypto_cipher *essiv_tfm;
Herbert Xu35058682006-08-24 19:10:20 +1000148 struct crypto_hash *hash_tfm;
149 struct hash_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct scatterlist sg;
151 unsigned int saltsize;
152 u8 *salt;
Herbert Xud1806f62006-08-22 20:29:17 +1000153 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (opts == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700156 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return -EINVAL;
158 }
159
160 /* Hash the cipher key with the given hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000161 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
162 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700163 ti->error = "Error initializing ESSIV hash";
Herbert Xu35058682006-08-24 19:10:20 +1000164 return PTR_ERR(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
Herbert Xu35058682006-08-24 19:10:20 +1000167 saltsize = crypto_hash_digestsize(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 salt = kmalloc(saltsize, GFP_KERNEL);
169 if (salt == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700170 ti->error = "Error kmallocing salt storage in ESSIV";
Herbert Xu35058682006-08-24 19:10:20 +1000171 crypto_free_hash(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -ENOMEM;
173 }
174
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700175 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xu35058682006-08-24 19:10:20 +1000176 desc.tfm = hash_tfm;
177 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
178 err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
179 crypto_free_hash(hash_tfm);
180
181 if (err) {
182 ti->error = "Error calculating hash in ESSIV";
Dmitry Monakhov815f9e32007-10-19 22:38:38 +0100183 kfree(salt);
Herbert Xu35058682006-08-24 19:10:20 +1000184 return err;
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* Setup the essiv_tfm with the given salt */
Herbert Xud1806f62006-08-22 20:29:17 +1000188 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
189 if (IS_ERR(essiv_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700190 ti->error = "Error allocating crypto tfm for ESSIV";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000192 return PTR_ERR(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Herbert Xud1806f62006-08-22 20:29:17 +1000194 if (crypto_cipher_blocksize(essiv_tfm) !=
195 crypto_blkcipher_ivsize(cc->tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700196 ti->error = "Block size of ESSIV cipher does "
Milan Brozd469f842007-10-19 22:42:37 +0100197 "not match IV size of block cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000198 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 kfree(salt);
200 return -EINVAL;
201 }
Herbert Xud1806f62006-08-22 20:29:17 +1000202 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
203 if (err) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700204 ti->error = "Failed to set key for ESSIV cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000205 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000207 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 kfree(salt);
210
Herbert Xu79066ad2006-12-05 13:41:52 -0800211 cc->iv_gen_private.essiv_tfm = essiv_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213}
214
215static void crypt_iv_essiv_dtr(struct crypt_config *cc)
216{
Herbert Xu79066ad2006-12-05 13:41:52 -0800217 crypto_free_cipher(cc->iv_gen_private.essiv_tfm);
218 cc->iv_gen_private.essiv_tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
222{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 memset(iv, 0, cc->iv_size);
224 *(u64 *)iv = cpu_to_le64(sector);
Herbert Xu79066ad2006-12-05 13:41:52 -0800225 crypto_cipher_encrypt_one(cc->iv_gen_private.essiv_tfm, iv, iv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return 0;
227}
228
Rik Snel48527fa2006-09-03 08:56:39 +1000229static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
230 const char *opts)
231{
232 unsigned int bs = crypto_blkcipher_blocksize(cc->tfm);
David Howellsf0d1b0b2006-12-08 02:37:49 -0800233 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000234
235 /* we need to calculate how far we must shift the sector count
236 * to get the cipher block count, we use this shift in _gen */
237
238 if (1 << log != bs) {
239 ti->error = "cypher blocksize is not a power of 2";
240 return -EINVAL;
241 }
242
243 if (log > 9) {
244 ti->error = "cypher blocksize is > 512";
245 return -EINVAL;
246 }
247
Herbert Xu79066ad2006-12-05 13:41:52 -0800248 cc->iv_gen_private.benbi_shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000249
250 return 0;
251}
252
253static void crypt_iv_benbi_dtr(struct crypt_config *cc)
254{
Rik Snel48527fa2006-09-03 08:56:39 +1000255}
256
257static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
258{
Herbert Xu79066ad2006-12-05 13:41:52 -0800259 __be64 val;
260
Rik Snel48527fa2006-09-03 08:56:39 +1000261 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800262
263 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi_shift) + 1);
264 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return 0;
267}
268
Ludwig Nussel46b47732007-05-09 02:32:55 -0700269static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
270{
271 memset(iv, 0, cc->iv_size);
272
273 return 0;
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276static struct crypt_iv_operations crypt_iv_plain_ops = {
277 .generator = crypt_iv_plain_gen
278};
279
280static struct crypt_iv_operations crypt_iv_essiv_ops = {
281 .ctr = crypt_iv_essiv_ctr,
282 .dtr = crypt_iv_essiv_dtr,
283 .generator = crypt_iv_essiv_gen
284};
285
Rik Snel48527fa2006-09-03 08:56:39 +1000286static struct crypt_iv_operations crypt_iv_benbi_ops = {
287 .ctr = crypt_iv_benbi_ctr,
288 .dtr = crypt_iv_benbi_dtr,
289 .generator = crypt_iv_benbi_gen
290};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Ludwig Nussel46b47732007-05-09 02:32:55 -0700292static struct crypt_iv_operations crypt_iv_null_ops = {
293 .generator = crypt_iv_null_gen
294};
295
Arjan van de Ven858119e2006-01-14 13:20:43 -0800296static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297crypt_convert_scatterlist(struct crypt_config *cc, struct scatterlist *out,
298 struct scatterlist *in, unsigned int length,
299 int write, sector_t sector)
300{
Herbert Xu45789322006-09-03 08:58:41 +1000301 u8 iv[cc->iv_size] __attribute__ ((aligned(__alignof__(u64))));
Herbert Xud1806f62006-08-22 20:29:17 +1000302 struct blkcipher_desc desc = {
303 .tfm = cc->tfm,
304 .info = iv,
305 .flags = CRYPTO_TFM_REQ_MAY_SLEEP,
306 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 int r;
308
309 if (cc->iv_gen_ops) {
310 r = cc->iv_gen_ops->generator(cc, iv, sector);
311 if (r < 0)
312 return r;
313
314 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000315 r = crypto_blkcipher_encrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 else
Herbert Xud1806f62006-08-22 20:29:17 +1000317 r = crypto_blkcipher_decrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 } else {
319 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000320 r = crypto_blkcipher_encrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else
Herbert Xud1806f62006-08-22 20:29:17 +1000322 r = crypto_blkcipher_decrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
325 return r;
326}
327
Milan Brozd469f842007-10-19 22:42:37 +0100328static void crypt_convert_init(struct crypt_config *cc,
329 struct convert_context *ctx,
330 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000331 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 ctx->bio_in = bio_in;
334 ctx->bio_out = bio_out;
335 ctx->offset_in = 0;
336 ctx->offset_out = 0;
337 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
338 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
339 ctx->sector = sector + cc->iv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*
343 * Encrypt / decrypt data from one bio to another one (can be the same one)
344 */
345static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100346 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 int r = 0;
349
350 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
351 ctx->idx_out < ctx->bio_out->bi_vcnt) {
352 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
353 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
Jens Axboe45711f12007-10-22 21:19:53 +0200354 struct scatterlist sg_in, sg_out;
355
356 sg_init_table(&sg_in, 1);
Jens Axboe642f1492007-10-24 11:20:47 +0200357 sg_set_page(&sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT, bv_in->bv_offset + ctx->offset_in);
Jens Axboe45711f12007-10-22 21:19:53 +0200358
359 sg_init_table(&sg_out, 1);
Jens Axboe642f1492007-10-24 11:20:47 +0200360 sg_set_page(&sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT, bv_out->bv_offset + ctx->offset_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 ctx->offset_in += sg_in.length;
363 if (ctx->offset_in >= bv_in->bv_len) {
364 ctx->offset_in = 0;
365 ctx->idx_in++;
366 }
367
368 ctx->offset_out += sg_out.length;
369 if (ctx->offset_out >= bv_out->bv_len) {
370 ctx->offset_out = 0;
371 ctx->idx_out++;
372 }
373
374 r = crypt_convert_scatterlist(cc, &sg_out, &sg_in, sg_in.length,
Milan Brozfcd369d2008-02-08 02:10:41 +0000375 bio_data_dir(ctx->bio_in) == WRITE, ctx->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (r < 0)
377 break;
378
379 ctx->sector++;
380 }
381
382 return r;
383}
384
Milan Brozd469f842007-10-19 22:42:37 +0100385static void dm_crypt_bio_destructor(struct bio *bio)
386{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100387 struct dm_crypt_io *io = bio->bi_private;
Milan Broz6a24c712006-10-03 01:15:40 -0700388 struct crypt_config *cc = io->target->private;
389
390 bio_free(bio, cc->bs);
Milan Brozd469f842007-10-19 22:42:37 +0100391}
Milan Broz6a24c712006-10-03 01:15:40 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
394 * Generate a new unfragmented bio with the given size
395 * This should never violate the device limitations
396 * May return a smaller bio when running out of pages
397 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100398static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Olaf Kirch027581f2007-05-09 02:32:52 -0700400 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700401 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400403 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Milan Broz91e10622007-12-13 14:16:10 +0000404 unsigned i, len;
405 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700407 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700408 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Olaf Kirch027581f2007-05-09 02:32:52 -0700411 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -0700412
Olaf Kirchf97380b2007-05-09 02:32:54 -0700413 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000414 page = mempool_alloc(cc->page_pool, gfp_mask);
415 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
417
418 /*
419 * if additional pages cannot be allocated without waiting,
420 * return a partially allocated bio, the caller will then try
421 * to allocate additional bios while submitting this partial bio
422 */
Olaf Kirchf97380b2007-05-09 02:32:54 -0700423 if (i == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
425
Milan Broz91e10622007-12-13 14:16:10 +0000426 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Milan Broz91e10622007-12-13 14:16:10 +0000428 if (!bio_add_page(clone, page, len, 0)) {
429 mempool_free(page, cc->page_pool);
430 break;
431 }
432
433 size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Milan Broz8b004452006-10-03 01:15:37 -0700436 if (!clone->bi_size) {
437 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return NULL;
439 }
440
Milan Broz8b004452006-10-03 01:15:37 -0700441 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Neil Brown644bd2f2007-10-16 13:48:46 +0200444static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Neil Brown644bd2f2007-10-16 13:48:46 +0200446 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct bio_vec *bv;
448
Neil Brown644bd2f2007-10-16 13:48:46 +0200449 for (i = 0; i < clone->bi_vcnt; i++) {
Milan Broz8b004452006-10-03 01:15:37 -0700450 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 BUG_ON(!bv->bv_page);
452 mempool_free(bv->bv_page, cc->page_pool);
453 bv->bv_page = NULL;
454 }
455}
456
457/*
458 * One of the bios was finished. Check for completion of
459 * the whole request and correctly clean up the buffer.
460 */
Milan Broz5742fd72008-02-08 02:10:43 +0000461static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Milan Broz5742fd72008-02-08 02:10:43 +0000463 struct crypt_config *cc = io->target->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (!atomic_dec_and_test(&io->pending))
466 return;
467
NeilBrown6712ecf2007-09-27 12:47:43 +0200468 bio_endio(io->base_bio, io->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 mempool_free(io, cc->io_pool);
470}
471
472/*
Milan Brozcabf08e2007-10-19 22:38:58 +0100473 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 *
475 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700476 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +0100477 *
478 * kcryptd performs the actual encryption or decryption.
479 *
480 * kcryptd_io performs the IO submission.
481 *
482 * They must be separated as otherwise the final stages could be
483 * starved by new requests which can block in the first stages due
484 * to memory allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
NeilBrown6712ecf2007-09-27 12:47:43 +0200486static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -0700487{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100488 struct dm_crypt_io *io = clone->bi_private;
Milan Broz8b004452006-10-03 01:15:37 -0700489 struct crypt_config *cc = io->target->private;
Milan Brozee7a4912008-02-08 02:10:46 +0000490 unsigned rw = bio_data_dir(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700491
Milan Brozadfe4772007-12-13 14:15:51 +0000492 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
493 error = -EIO;
494
Milan Broz8b004452006-10-03 01:15:37 -0700495 /*
NeilBrown6712ecf2007-09-27 12:47:43 +0200496 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -0700497 */
Milan Brozee7a4912008-02-08 02:10:46 +0000498 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +0200499 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +0000500
501 bio_put(clone);
502
503 if (rw == READ && !error) {
504 kcryptd_queue_crypt(io);
505 return;
NeilBrown6712ecf2007-09-27 12:47:43 +0200506 }
Milan Broz8b004452006-10-03 01:15:37 -0700507
Milan Brozadfe4772007-12-13 14:15:51 +0000508 if (unlikely(error))
Milan Broz5742fd72008-02-08 02:10:43 +0000509 io->error = error;
510
511 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700512}
513
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100514static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -0700515{
516 struct crypt_config *cc = io->target->private;
517
518 clone->bi_private = io;
519 clone->bi_end_io = crypt_endio;
520 clone->bi_bdev = cc->dev->bdev;
521 clone->bi_rw = io->base_bio->bi_rw;
Olaf Kirch027581f2007-05-09 02:32:52 -0700522 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700523}
524
Milan Broz4e4eef62008-02-08 02:10:49 +0000525static void kcryptd_io_read(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700526{
527 struct crypt_config *cc = io->target->private;
528 struct bio *base_bio = io->base_bio;
529 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700530
531 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700532
533 /*
534 * The block layer might modify the bvec array, so always
535 * copy the required bvecs because we need the original
536 * one in order to decrypt the whole bio data *afterwards*.
537 */
Milan Broz6a24c712006-10-03 01:15:40 -0700538 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700539 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000540 io->error = -ENOMEM;
541 crypt_dec_pending(io);
Milan Broz23541d22006-10-03 01:15:39 -0700542 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700543 }
Milan Broz8b004452006-10-03 01:15:37 -0700544
545 clone_init(io, clone);
546 clone->bi_idx = 0;
547 clone->bi_vcnt = bio_segments(base_bio);
548 clone->bi_size = base_bio->bi_size;
Milan Broz0c395b02008-02-08 02:10:54 +0000549 clone->bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -0700550 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
551 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700552
Milan Broz93e605c2006-10-03 01:15:38 -0700553 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700554}
555
Milan Broz4e4eef62008-02-08 02:10:49 +0000556static void kcryptd_io_write(struct dm_crypt_io *io)
557{
558}
559
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000560static void kcryptd_io(struct work_struct *work)
561{
562 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
563
564 if (bio_data_dir(io->base_bio) == READ)
565 kcryptd_io_read(io);
566 else
567 kcryptd_io_write(io);
568}
569
570static void kcryptd_queue_io(struct dm_crypt_io *io)
571{
572 struct crypt_config *cc = io->target->private;
573
574 INIT_WORK(&io->work, kcryptd_io);
575 queue_work(cc->io_queue, &io->work);
576}
577
Milan Broz4e4eef62008-02-08 02:10:49 +0000578static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int error)
579{
Milan Brozdec1ced2008-02-08 02:10:57 +0000580 struct bio *clone = io->ctx.bio_out;
581 struct crypt_config *cc = io->target->private;
582
583 if (unlikely(error < 0)) {
584 crypt_free_buffer_pages(cc, clone);
585 bio_put(clone);
586 io->error = -EIO;
587 crypt_dec_pending(io);
588 return;
589 }
590
591 /* crypt_convert should have filled the clone bio */
592 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
593
594 clone->bi_sector = cc->start + io->sector;
595 io->sector += bio_sectors(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000596}
597
598static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700599{
600 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700601 struct bio *clone;
Milan Brozdec1ced2008-02-08 02:10:57 +0000602 unsigned remaining = io->base_bio->bi_size;
603 int r;
Milan Broz8b004452006-10-03 01:15:37 -0700604
Milan Broz93e605c2006-10-03 01:15:38 -0700605 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700606
Milan Brozdec1ced2008-02-08 02:10:57 +0000607 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700608
Milan Broz93e605c2006-10-03 01:15:38 -0700609 /*
610 * The allocated buffers can be smaller than the whole bio,
611 * so repeat the whole process until all the data can be handled.
612 */
613 while (remaining) {
Olaf Kirchf97380b2007-05-09 02:32:54 -0700614 clone = crypt_alloc_buffer(io, remaining);
Milan Broz23541d22006-10-03 01:15:39 -0700615 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000616 io->error = -ENOMEM;
617 crypt_dec_pending(io);
Milan Broz23541d22006-10-03 01:15:39 -0700618 return;
619 }
Milan Broz93e605c2006-10-03 01:15:38 -0700620
Milan Broz53017032008-02-08 02:10:38 +0000621 io->ctx.bio_out = clone;
622 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700623
Milan Broz93e605c2006-10-03 01:15:38 -0700624 remaining -= clone->bi_size;
Milan Brozdec1ced2008-02-08 02:10:57 +0000625
626 r = crypt_convert(cc, &io->ctx);
627
628 kcryptd_crypt_write_io_submit(io, r);
629 if (unlikely(r < 0))
630 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700631
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700632 /* Grab another reference to the io struct
633 * before we kick off the request */
Milan Broz23541d22006-10-03 01:15:39 -0700634 if (remaining)
635 atomic_inc(&io->pending);
636
Milan Broz93e605c2006-10-03 01:15:38 -0700637 generic_make_request(clone);
638
Olaf Kirch98221eb2007-05-09 02:32:52 -0700639 /* Do not reference clone after this - it
640 * may be gone already. */
641
Milan Broz93e605c2006-10-03 01:15:38 -0700642 /* out of memory -> run queues */
Milan Brozdec1ced2008-02-08 02:10:57 +0000643 if (unlikely(remaining))
Olaf Kirch98221eb2007-05-09 02:32:52 -0700644 congestion_wait(WRITE, HZ/100);
Milan Broz8b004452006-10-03 01:15:37 -0700645 }
Milan Broz8b004452006-10-03 01:15:37 -0700646}
647
Milan Broz4e4eef62008-02-08 02:10:49 +0000648static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
Milan Broz5742fd72008-02-08 02:10:43 +0000649{
650 if (unlikely(error < 0))
651 io->error = -EIO;
652
653 crypt_dec_pending(io);
654}
655
Milan Broz4e4eef62008-02-08 02:10:49 +0000656static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700657{
658 struct crypt_config *cc = io->target->private;
Milan Broz5742fd72008-02-08 02:10:43 +0000659 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700660
Milan Broz53017032008-02-08 02:10:38 +0000661 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +0000662 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700663
Milan Broz5742fd72008-02-08 02:10:43 +0000664 r = crypt_convert(cc, &io->ctx);
665
Milan Broz4e4eef62008-02-08 02:10:49 +0000666 kcryptd_crypt_read_done(io, r);
Milan Broz8b004452006-10-03 01:15:37 -0700667}
668
Milan Broz4e4eef62008-02-08 02:10:49 +0000669static void kcryptd_crypt(struct work_struct *work)
670{
671 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
672
673 if (bio_data_dir(io->base_bio) == READ)
674 kcryptd_crypt_read_convert(io);
675 else
676 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -0700677}
678
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000679static void kcryptd_queue_crypt(struct dm_crypt_io *io)
680{
681 struct crypt_config *cc = io->target->private;
682
683 INIT_WORK(&io->work, kcryptd_crypt);
684 queue_work(cc->crypt_queue, &io->work);
685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/*
688 * Decode key from its hex representation
689 */
690static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
691{
692 char buffer[3];
693 char *endp;
694 unsigned int i;
695
696 buffer[2] = '\0';
697
Milan Broz8b004452006-10-03 01:15:37 -0700698 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 buffer[0] = *hex++;
700 buffer[1] = *hex++;
701
702 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
703
704 if (endp != &buffer[2])
705 return -EINVAL;
706 }
707
708 if (*hex != '\0')
709 return -EINVAL;
710
711 return 0;
712}
713
714/*
715 * Encode key into its hex representation
716 */
717static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
718{
719 unsigned int i;
720
Milan Broz8b004452006-10-03 01:15:37 -0700721 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 sprintf(hex, "%02x", *key);
723 hex += 2;
724 key++;
725 }
726}
727
Milan Broze48d4bb2006-10-03 01:15:37 -0700728static int crypt_set_key(struct crypt_config *cc, char *key)
729{
730 unsigned key_size = strlen(key) >> 1;
731
732 if (cc->key_size && cc->key_size != key_size)
733 return -EINVAL;
734
735 cc->key_size = key_size; /* initial settings */
736
737 if ((!key_size && strcmp(key, "-")) ||
Milan Brozd469f842007-10-19 22:42:37 +0100738 (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
Milan Broze48d4bb2006-10-03 01:15:37 -0700739 return -EINVAL;
740
741 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
742
743 return 0;
744}
745
746static int crypt_wipe_key(struct crypt_config *cc)
747{
748 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
749 memset(&cc->key, 0, cc->key_size * sizeof(u8));
750 return 0;
751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/*
754 * Construct an encryption mapping:
755 * <cipher> <key> <iv_offset> <dev_path> <start>
756 */
757static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
758{
759 struct crypt_config *cc;
Herbert Xud1806f62006-08-22 20:29:17 +1000760 struct crypto_blkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 char *tmp;
762 char *cipher;
763 char *chainmode;
764 char *ivmode;
765 char *ivopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 unsigned int key_size;
Andrew Morton4ee218c2006-03-27 01:17:48 -0800767 unsigned long long tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (argc != 5) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700770 ti->error = "Not enough arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return -EINVAL;
772 }
773
774 tmp = argv[0];
775 cipher = strsep(&tmp, "-");
776 chainmode = strsep(&tmp, "-");
777 ivopts = strsep(&tmp, "-");
778 ivmode = strsep(&ivopts, ":");
779
780 if (tmp)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700781 DMWARN("Unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 key_size = strlen(argv[1]) >> 1;
784
Milan Broze48d4bb2006-10-03 01:15:37 -0700785 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (cc == NULL) {
787 ti->error =
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700788 "Cannot allocate transparent encryption context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -ENOMEM;
790 }
791
Milan Broze48d4bb2006-10-03 01:15:37 -0700792 if (crypt_set_key(cc, argv[1])) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700793 ti->error = "Error decoding key";
Milan Broz636d5782007-10-19 22:47:52 +0100794 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
797 /* Compatiblity mode for old dm-crypt cipher strings */
798 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
799 chainmode = "cbc";
800 ivmode = "plain";
801 }
802
Herbert Xud1806f62006-08-22 20:29:17 +1000803 if (strcmp(chainmode, "ecb") && !ivmode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700804 ti->error = "This chaining mode requires an IV mechanism";
Milan Broz636d5782007-10-19 22:47:52 +0100805 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Milan Brozd469f842007-10-19 22:42:37 +0100808 if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)",
809 chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) {
Herbert Xud1806f62006-08-22 20:29:17 +1000810 ti->error = "Chain mode + cipher name is too long";
Milan Broz636d5782007-10-19 22:47:52 +0100811 goto bad_cipher;
Herbert Xud1806f62006-08-22 20:29:17 +1000812 }
813
814 tfm = crypto_alloc_blkcipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
815 if (IS_ERR(tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700816 ti->error = "Error allocating crypto tfm";
Milan Broz636d5782007-10-19 22:47:52 +0100817 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Herbert Xud1806f62006-08-22 20:29:17 +1000820 strcpy(cc->cipher, cipher);
821 strcpy(cc->chainmode, chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 cc->tfm = tfm;
823
824 /*
Rik Snel48527fa2006-09-03 08:56:39 +1000825 * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * See comments at iv code
827 */
828
829 if (ivmode == NULL)
830 cc->iv_gen_ops = NULL;
831 else if (strcmp(ivmode, "plain") == 0)
832 cc->iv_gen_ops = &crypt_iv_plain_ops;
833 else if (strcmp(ivmode, "essiv") == 0)
834 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +1000835 else if (strcmp(ivmode, "benbi") == 0)
836 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -0700837 else if (strcmp(ivmode, "null") == 0)
838 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700840 ti->error = "Invalid IV mode";
Milan Broz636d5782007-10-19 22:47:52 +0100841 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
844 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
845 cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
Milan Broz636d5782007-10-19 22:47:52 +0100846 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Herbert Xud1806f62006-08-22 20:29:17 +1000848 cc->iv_size = crypto_blkcipher_ivsize(tfm);
849 if (cc->iv_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* at least a 64 bit sector number should fit in our buffer */
Herbert Xud1806f62006-08-22 20:29:17 +1000851 cc->iv_size = max(cc->iv_size,
Milan Brozd469f842007-10-19 22:42:37 +0100852 (unsigned int)(sizeof(u64) / sizeof(u8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (cc->iv_gen_ops) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700855 DMWARN("Selected cipher does not support IVs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (cc->iv_gen_ops->dtr)
857 cc->iv_gen_ops->dtr(cc);
858 cc->iv_gen_ops = NULL;
859 }
860 }
861
Matthew Dobson93d23412006-03-26 01:37:50 -0800862 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700864 ti->error = "Cannot allocate crypt io mempool";
Milan Broz636d5782007-10-19 22:47:52 +0100865 goto bad_slab_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
Matthew Dobsona19b27c2006-03-26 01:37:45 -0800868 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700870 ti->error = "Cannot allocate page mempool";
Milan Broz636d5782007-10-19 22:47:52 +0100871 goto bad_page_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Jens Axboe59725112007-04-02 10:06:42 +0200874 cc->bs = bioset_create(MIN_IOS, MIN_IOS);
Milan Broz6a24c712006-10-03 01:15:40 -0700875 if (!cc->bs) {
876 ti->error = "Cannot allocate crypt bioset";
877 goto bad_bs;
878 }
879
Herbert Xud1806f62006-08-22 20:29:17 +1000880 if (crypto_blkcipher_setkey(tfm, cc->key, key_size) < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700881 ti->error = "Error setting key";
Milan Broz636d5782007-10-19 22:47:52 +0100882 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Andrew Morton4ee218c2006-03-27 01:17:48 -0800885 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700886 ti->error = "Invalid iv_offset sector";
Milan Broz636d5782007-10-19 22:47:52 +0100887 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800889 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Andrew Morton4ee218c2006-03-27 01:17:48 -0800891 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700892 ti->error = "Invalid device sector";
Milan Broz636d5782007-10-19 22:47:52 +0100893 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800895 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (dm_get_device(ti, argv[3], cc->start, ti->len,
Milan Brozd469f842007-10-19 22:42:37 +0100898 dm_table_get_mode(ti->table), &cc->dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700899 ti->error = "Device lookup failed";
Milan Broz636d5782007-10-19 22:47:52 +0100900 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 if (ivmode && cc->iv_gen_ops) {
904 if (ivopts)
905 *(ivopts - 1) = ':';
906 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
907 if (!cc->iv_mode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700908 ti->error = "Error kmallocing iv_mode string";
Milan Broz636d5782007-10-19 22:47:52 +0100909 goto bad_ivmode_string;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 strcpy(cc->iv_mode, ivmode);
912 } else
913 cc->iv_mode = NULL;
914
Milan Brozcabf08e2007-10-19 22:38:58 +0100915 cc->io_queue = create_singlethread_workqueue("kcryptd_io");
916 if (!cc->io_queue) {
917 ti->error = "Couldn't create kcryptd io queue";
918 goto bad_io_queue;
919 }
920
921 cc->crypt_queue = create_singlethread_workqueue("kcryptd");
922 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +0100923 ti->error = "Couldn't create kcryptd queue";
Milan Brozcabf08e2007-10-19 22:38:58 +0100924 goto bad_crypt_queue;
Milan Broz9934a8b2007-10-19 22:38:57 +0100925 }
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 ti->private = cc;
928 return 0;
929
Milan Brozcabf08e2007-10-19 22:38:58 +0100930bad_crypt_queue:
931 destroy_workqueue(cc->io_queue);
932bad_io_queue:
Milan Broz9934a8b2007-10-19 22:38:57 +0100933 kfree(cc->iv_mode);
Milan Broz636d5782007-10-19 22:47:52 +0100934bad_ivmode_string:
Dmitry Monakhov55b42c52007-10-19 22:38:37 +0100935 dm_put_device(ti, cc->dev);
Milan Broz636d5782007-10-19 22:47:52 +0100936bad_device:
Milan Broz6a24c712006-10-03 01:15:40 -0700937 bioset_free(cc->bs);
938bad_bs:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 mempool_destroy(cc->page_pool);
Milan Broz636d5782007-10-19 22:47:52 +0100940bad_page_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 mempool_destroy(cc->io_pool);
Milan Broz636d5782007-10-19 22:47:52 +0100942bad_slab_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
944 cc->iv_gen_ops->dtr(cc);
Milan Broz636d5782007-10-19 22:47:52 +0100945bad_ivmode:
Herbert Xud1806f62006-08-22 20:29:17 +1000946 crypto_free_blkcipher(tfm);
Milan Broz636d5782007-10-19 22:47:52 +0100947bad_cipher:
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800948 /* Must zero key material before freeing */
949 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 kfree(cc);
951 return -EINVAL;
952}
953
954static void crypt_dtr(struct dm_target *ti)
955{
956 struct crypt_config *cc = (struct crypt_config *) ti->private;
957
Milan Brozcabf08e2007-10-19 22:38:58 +0100958 destroy_workqueue(cc->io_queue);
959 destroy_workqueue(cc->crypt_queue);
Milan Broz80b16c12007-07-21 04:37:27 -0700960
Milan Broz6a24c712006-10-03 01:15:40 -0700961 bioset_free(cc->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 mempool_destroy(cc->page_pool);
963 mempool_destroy(cc->io_pool);
964
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700965 kfree(cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
967 cc->iv_gen_ops->dtr(cc);
Herbert Xud1806f62006-08-22 20:29:17 +1000968 crypto_free_blkcipher(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 dm_put_device(ti, cc->dev);
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800970
971 /* Must zero key material before freeing */
972 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 kfree(cc);
974}
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976static int crypt_map(struct dm_target *ti, struct bio *bio,
977 union map_info *map_context)
978{
Milan Broz8b004452006-10-03 01:15:37 -0700979 struct crypt_config *cc = ti->private;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100980 struct dm_crypt_io *io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Milan Broze48d4bb2006-10-03 01:15:37 -0700982 io = mempool_alloc(cc->io_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 io->target = ti;
Milan Broz8b004452006-10-03 01:15:37 -0700984 io->base_bio = bio;
Milan Broz0c395b02008-02-08 02:10:54 +0000985 io->sector = bio->bi_sector - ti->begin;
Milan Brozcabf08e2007-10-19 22:38:58 +0100986 io->error = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700987 atomic_set(&io->pending, 0);
Milan Brozcabf08e2007-10-19 22:38:58 +0100988
989 if (bio_data_dir(io->base_bio) == READ)
990 kcryptd_queue_io(io);
991 else
992 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800994 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997static int crypt_status(struct dm_target *ti, status_type_t type,
998 char *result, unsigned int maxlen)
999{
1000 struct crypt_config *cc = (struct crypt_config *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 unsigned int sz = 0;
1002
1003 switch (type) {
1004 case STATUSTYPE_INFO:
1005 result[0] = '\0';
1006 break;
1007
1008 case STATUSTYPE_TABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (cc->iv_mode)
Christophe Saout37af6562006-10-30 20:39:08 +01001010 DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode,
1011 cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 else
Christophe Saout37af6562006-10-30 20:39:08 +01001013 DMEMIT("%s-%s ", cc->cipher, cc->chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 if (cc->key_size > 0) {
1016 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1017 return -ENOMEM;
1018
1019 crypt_encode_key(result + sz, cc->key, cc->key_size);
1020 sz += cc->key_size << 1;
1021 } else {
1022 if (sz >= maxlen)
1023 return -ENOMEM;
1024 result[sz++] = '-';
1025 }
1026
Andrew Morton4ee218c2006-03-27 01:17:48 -08001027 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1028 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 break;
1030 }
1031 return 0;
1032}
1033
Milan Broze48d4bb2006-10-03 01:15:37 -07001034static void crypt_postsuspend(struct dm_target *ti)
1035{
1036 struct crypt_config *cc = ti->private;
1037
1038 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1039}
1040
1041static int crypt_preresume(struct dm_target *ti)
1042{
1043 struct crypt_config *cc = ti->private;
1044
1045 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1046 DMERR("aborting resume - crypt key is not set.");
1047 return -EAGAIN;
1048 }
1049
1050 return 0;
1051}
1052
1053static void crypt_resume(struct dm_target *ti)
1054{
1055 struct crypt_config *cc = ti->private;
1056
1057 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1058}
1059
1060/* Message interface
1061 * key set <key>
1062 * key wipe
1063 */
1064static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1065{
1066 struct crypt_config *cc = ti->private;
1067
1068 if (argc < 2)
1069 goto error;
1070
1071 if (!strnicmp(argv[0], MESG_STR("key"))) {
1072 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1073 DMWARN("not suspended during key manipulation.");
1074 return -EINVAL;
1075 }
1076 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
1077 return crypt_set_key(cc, argv[2]);
1078 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1079 return crypt_wipe_key(cc);
1080 }
1081
1082error:
1083 DMWARN("unrecognised message received.");
1084 return -EINVAL;
1085}
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087static struct target_type crypt_target = {
1088 .name = "crypt",
Ludwig Nussel46b47732007-05-09 02:32:55 -07001089 .version= {1, 5, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 .module = THIS_MODULE,
1091 .ctr = crypt_ctr,
1092 .dtr = crypt_dtr,
1093 .map = crypt_map,
1094 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001095 .postsuspend = crypt_postsuspend,
1096 .preresume = crypt_preresume,
1097 .resume = crypt_resume,
1098 .message = crypt_message,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099};
1100
1101static int __init dm_crypt_init(void)
1102{
1103 int r;
1104
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001105 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (!_crypt_io_pool)
1107 return -ENOMEM;
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 r = dm_register_target(&crypt_target);
1110 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001111 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001112 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return r;
1116}
1117
1118static void __exit dm_crypt_exit(void)
1119{
1120 int r = dm_unregister_target(&crypt_target);
1121
1122 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001123 DMERR("unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 kmem_cache_destroy(_crypt_io_pool);
1126}
1127
1128module_init(dm_crypt_init);
1129module_exit(dm_crypt_exit);
1130
1131MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1132MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1133MODULE_LICENSE("GPL");