blob: 862ce9f6faac1e16482e08df2c56a2a9d95d9993 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
Milan Broze48d4bb2006-10-03 01:15:37 -07004 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file is released under the GPL.
7 */
8
Herbert Xud1806f62006-08-22 20:29:17 +10009#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/bio.h>
14#include <linux/blkdev.h>
15#include <linux/mempool.h>
16#include <linux/slab.h>
17#include <linux/crypto.h>
18#include <linux/workqueue.h>
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;
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057struct crypt_config;
58
59struct crypt_iv_operations {
60 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010061 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 void (*dtr)(struct crypt_config *cc);
63 const char *(*status)(struct crypt_config *cc);
64 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
65};
66
67/*
68 * Crypt: maps a linear range of a block device
69 * and encrypts / decrypts at the same time.
70 */
Milan Broze48d4bb2006-10-03 01:15:37 -070071enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct crypt_config {
73 struct dm_dev *dev;
74 sector_t start;
75
76 /*
77 * pool for per bio private data and
78 * for encryption buffer pages
79 */
80 mempool_t *io_pool;
81 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -070082 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Milan Brozcabf08e2007-10-19 22:38:58 +010084 struct workqueue_struct *io_queue;
85 struct workqueue_struct *crypt_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 /*
87 * crypto related data
88 */
89 struct crypt_iv_operations *iv_gen_ops;
90 char *iv_mode;
Herbert Xu79066ad2006-12-05 13:41:52 -080091 union {
92 struct crypto_cipher *essiv_tfm;
93 int benbi_shift;
94 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 sector_t iv_offset;
96 unsigned int iv_size;
97
Herbert Xud1806f62006-08-22 20:29:17 +100098 char cipher[CRYPTO_MAX_ALG_NAME];
99 char chainmode[CRYPTO_MAX_ALG_NAME];
100 struct crypto_blkcipher *tfm;
Milan Broze48d4bb2006-10-03 01:15:37 -0700101 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned int key_size;
103 u8 key[0];
104};
105
Milan Broz6a24c712006-10-03 01:15:40 -0700106#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define MIN_POOL_PAGES 32
108#define MIN_BIO_PAGES 8
109
Christoph Lametere18b8902006-12-06 20:33:20 -0800110static struct kmem_cache *_crypt_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100112static void clone_init(struct dm_crypt_io *, struct bio *);
Olaf Kirch027581f2007-05-09 02:32:52 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Different IV generation algorithms:
116 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000117 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200118 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000120 * essiv: "encrypted sector|salt initial vector", the sector number is
121 * encrypted with the bulk cipher using a salt as key. The salt
122 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *
Rik Snel48527fa2006-09-03 08:56:39 +1000124 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
125 * (needed for LRW-32-AES and possible other narrow block modes)
126 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700127 * null: the initial vector is always zero. Provides compatibility with
128 * obsolete loop_fish2 devices. Do not use for new devices.
129 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * plumb: unimplemented, see:
131 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
132 */
133
134static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
135{
136 memset(iv, 0, cc->iv_size);
137 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
138
139 return 0;
140}
141
142static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100143 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Herbert Xud1806f62006-08-22 20:29:17 +1000145 struct crypto_cipher *essiv_tfm;
Herbert Xu35058682006-08-24 19:10:20 +1000146 struct crypto_hash *hash_tfm;
147 struct hash_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct scatterlist sg;
149 unsigned int saltsize;
150 u8 *salt;
Herbert Xud1806f62006-08-22 20:29:17 +1000151 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 if (opts == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700154 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return -EINVAL;
156 }
157
158 /* Hash the cipher key with the given hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000159 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
160 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700161 ti->error = "Error initializing ESSIV hash";
Herbert Xu35058682006-08-24 19:10:20 +1000162 return PTR_ERR(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164
Herbert Xu35058682006-08-24 19:10:20 +1000165 saltsize = crypto_hash_digestsize(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 salt = kmalloc(saltsize, GFP_KERNEL);
167 if (salt == NULL) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700168 ti->error = "Error kmallocing salt storage in ESSIV";
Herbert Xu35058682006-08-24 19:10:20 +1000169 crypto_free_hash(hash_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ENOMEM;
171 }
172
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700173 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xu35058682006-08-24 19:10:20 +1000174 desc.tfm = hash_tfm;
175 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
176 err = crypto_hash_digest(&desc, &sg, cc->key_size, salt);
177 crypto_free_hash(hash_tfm);
178
179 if (err) {
180 ti->error = "Error calculating hash in ESSIV";
Dmitry Monakhov815f9e32007-10-19 22:38:38 +0100181 kfree(salt);
Herbert Xu35058682006-08-24 19:10:20 +1000182 return err;
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Setup the essiv_tfm with the given salt */
Herbert Xud1806f62006-08-22 20:29:17 +1000186 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
187 if (IS_ERR(essiv_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700188 ti->error = "Error allocating crypto tfm for ESSIV";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000190 return PTR_ERR(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Herbert Xud1806f62006-08-22 20:29:17 +1000192 if (crypto_cipher_blocksize(essiv_tfm) !=
193 crypto_blkcipher_ivsize(cc->tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700194 ti->error = "Block size of ESSIV cipher does "
Milan Brozd469f842007-10-19 22:42:37 +0100195 "not match IV size of block cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000196 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 kfree(salt);
198 return -EINVAL;
199 }
Herbert Xud1806f62006-08-22 20:29:17 +1000200 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
201 if (err) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700202 ti->error = "Failed to set key for ESSIV cipher";
Herbert Xud1806f62006-08-22 20:29:17 +1000203 crypto_free_cipher(essiv_tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 kfree(salt);
Herbert Xud1806f62006-08-22 20:29:17 +1000205 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 kfree(salt);
208
Herbert Xu79066ad2006-12-05 13:41:52 -0800209 cc->iv_gen_private.essiv_tfm = essiv_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211}
212
213static void crypt_iv_essiv_dtr(struct crypt_config *cc)
214{
Herbert Xu79066ad2006-12-05 13:41:52 -0800215 crypto_free_cipher(cc->iv_gen_private.essiv_tfm);
216 cc->iv_gen_private.essiv_tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
220{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 memset(iv, 0, cc->iv_size);
222 *(u64 *)iv = cpu_to_le64(sector);
Herbert Xu79066ad2006-12-05 13:41:52 -0800223 crypto_cipher_encrypt_one(cc->iv_gen_private.essiv_tfm, iv, iv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
Rik Snel48527fa2006-09-03 08:56:39 +1000227static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
228 const char *opts)
229{
230 unsigned int bs = crypto_blkcipher_blocksize(cc->tfm);
David Howellsf0d1b0b2006-12-08 02:37:49 -0800231 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000232
233 /* we need to calculate how far we must shift the sector count
234 * to get the cipher block count, we use this shift in _gen */
235
236 if (1 << log != bs) {
237 ti->error = "cypher blocksize is not a power of 2";
238 return -EINVAL;
239 }
240
241 if (log > 9) {
242 ti->error = "cypher blocksize is > 512";
243 return -EINVAL;
244 }
245
Herbert Xu79066ad2006-12-05 13:41:52 -0800246 cc->iv_gen_private.benbi_shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000247
248 return 0;
249}
250
251static void crypt_iv_benbi_dtr(struct crypt_config *cc)
252{
Rik Snel48527fa2006-09-03 08:56:39 +1000253}
254
255static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
256{
Herbert Xu79066ad2006-12-05 13:41:52 -0800257 __be64 val;
258
Rik Snel48527fa2006-09-03 08:56:39 +1000259 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800260
261 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi_shift) + 1);
262 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
265}
266
Ludwig Nussel46b47732007-05-09 02:32:55 -0700267static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
268{
269 memset(iv, 0, cc->iv_size);
270
271 return 0;
272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static struct crypt_iv_operations crypt_iv_plain_ops = {
275 .generator = crypt_iv_plain_gen
276};
277
278static struct crypt_iv_operations crypt_iv_essiv_ops = {
279 .ctr = crypt_iv_essiv_ctr,
280 .dtr = crypt_iv_essiv_dtr,
281 .generator = crypt_iv_essiv_gen
282};
283
Rik Snel48527fa2006-09-03 08:56:39 +1000284static struct crypt_iv_operations crypt_iv_benbi_ops = {
285 .ctr = crypt_iv_benbi_ctr,
286 .dtr = crypt_iv_benbi_dtr,
287 .generator = crypt_iv_benbi_gen
288};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Ludwig Nussel46b47732007-05-09 02:32:55 -0700290static struct crypt_iv_operations crypt_iv_null_ops = {
291 .generator = crypt_iv_null_gen
292};
293
Arjan van de Ven858119e2006-01-14 13:20:43 -0800294static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295crypt_convert_scatterlist(struct crypt_config *cc, struct scatterlist *out,
296 struct scatterlist *in, unsigned int length,
297 int write, sector_t sector)
298{
Herbert Xu45789322006-09-03 08:58:41 +1000299 u8 iv[cc->iv_size] __attribute__ ((aligned(__alignof__(u64))));
Herbert Xud1806f62006-08-22 20:29:17 +1000300 struct blkcipher_desc desc = {
301 .tfm = cc->tfm,
302 .info = iv,
303 .flags = CRYPTO_TFM_REQ_MAY_SLEEP,
304 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int r;
306
307 if (cc->iv_gen_ops) {
308 r = cc->iv_gen_ops->generator(cc, iv, sector);
309 if (r < 0)
310 return r;
311
312 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000313 r = crypto_blkcipher_encrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 else
Herbert Xud1806f62006-08-22 20:29:17 +1000315 r = crypto_blkcipher_decrypt_iv(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 } else {
317 if (write)
Herbert Xud1806f62006-08-22 20:29:17 +1000318 r = crypto_blkcipher_encrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 else
Herbert Xud1806f62006-08-22 20:29:17 +1000320 r = crypto_blkcipher_decrypt(&desc, out, in, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
323 return r;
324}
325
Milan Brozd469f842007-10-19 22:42:37 +0100326static void crypt_convert_init(struct crypt_config *cc,
327 struct convert_context *ctx,
328 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000329 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 ctx->bio_in = bio_in;
332 ctx->bio_out = bio_out;
333 ctx->offset_in = 0;
334 ctx->offset_out = 0;
335 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
336 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
337 ctx->sector = sector + cc->iv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/*
341 * Encrypt / decrypt data from one bio to another one (can be the same one)
342 */
343static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100344 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 int r = 0;
347
348 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
349 ctx->idx_out < ctx->bio_out->bi_vcnt) {
350 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
351 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
Jens Axboe45711f12007-10-22 21:19:53 +0200352 struct scatterlist sg_in, sg_out;
353
354 sg_init_table(&sg_in, 1);
Jens Axboe642f1492007-10-24 11:20:47 +0200355 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 +0200356
357 sg_init_table(&sg_out, 1);
Jens Axboe642f1492007-10-24 11:20:47 +0200358 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 -0700359
360 ctx->offset_in += sg_in.length;
361 if (ctx->offset_in >= bv_in->bv_len) {
362 ctx->offset_in = 0;
363 ctx->idx_in++;
364 }
365
366 ctx->offset_out += sg_out.length;
367 if (ctx->offset_out >= bv_out->bv_len) {
368 ctx->offset_out = 0;
369 ctx->idx_out++;
370 }
371
372 r = crypt_convert_scatterlist(cc, &sg_out, &sg_in, sg_in.length,
Milan Brozfcd369d2008-02-08 02:10:41 +0000373 bio_data_dir(ctx->bio_in) == WRITE, ctx->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (r < 0)
375 break;
376
377 ctx->sector++;
378 }
379
380 return r;
381}
382
Milan Brozd469f842007-10-19 22:42:37 +0100383static void dm_crypt_bio_destructor(struct bio *bio)
384{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100385 struct dm_crypt_io *io = bio->bi_private;
Milan Broz6a24c712006-10-03 01:15:40 -0700386 struct crypt_config *cc = io->target->private;
387
388 bio_free(bio, cc->bs);
Milan Brozd469f842007-10-19 22:42:37 +0100389}
Milan Broz6a24c712006-10-03 01:15:40 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
392 * Generate a new unfragmented bio with the given size
393 * This should never violate the device limitations
394 * May return a smaller bio when running out of pages
395 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100396static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Olaf Kirch027581f2007-05-09 02:32:52 -0700398 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700399 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400401 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Milan Broz91e10622007-12-13 14:16:10 +0000402 unsigned i, len;
403 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700405 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700406 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Olaf Kirch027581f2007-05-09 02:32:52 -0700409 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -0700410
Olaf Kirchf97380b2007-05-09 02:32:54 -0700411 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000412 page = mempool_alloc(cc->page_pool, gfp_mask);
413 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 break;
415
416 /*
417 * if additional pages cannot be allocated without waiting,
418 * return a partially allocated bio, the caller will then try
419 * to allocate additional bios while submitting this partial bio
420 */
Olaf Kirchf97380b2007-05-09 02:32:54 -0700421 if (i == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
423
Milan Broz91e10622007-12-13 14:16:10 +0000424 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Milan Broz91e10622007-12-13 14:16:10 +0000426 if (!bio_add_page(clone, page, len, 0)) {
427 mempool_free(page, cc->page_pool);
428 break;
429 }
430
431 size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
Milan Broz8b004452006-10-03 01:15:37 -0700434 if (!clone->bi_size) {
435 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return NULL;
437 }
438
Milan Broz8b004452006-10-03 01:15:37 -0700439 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Neil Brown644bd2f2007-10-16 13:48:46 +0200442static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Neil Brown644bd2f2007-10-16 13:48:46 +0200444 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct bio_vec *bv;
446
Neil Brown644bd2f2007-10-16 13:48:46 +0200447 for (i = 0; i < clone->bi_vcnt; i++) {
Milan Broz8b004452006-10-03 01:15:37 -0700448 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 BUG_ON(!bv->bv_page);
450 mempool_free(bv->bv_page, cc->page_pool);
451 bv->bv_page = NULL;
452 }
453}
454
455/*
456 * One of the bios was finished. Check for completion of
457 * the whole request and correctly clean up the buffer.
458 */
Milan Broz80fd6622007-10-20 01:14:21 +0100459static void crypt_dec_pending(struct dm_crypt_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 struct crypt_config *cc = (struct crypt_config *) io->target->private;
462
463 if (error < 0)
464 io->error = error;
465
466 if (!atomic_dec_and_test(&io->pending))
467 return;
468
NeilBrown6712ecf2007-09-27 12:47:43 +0200469 bio_endio(io->base_bio, io->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 mempool_free(io, cc->io_pool);
472}
473
474/*
Milan Brozcabf08e2007-10-19 22:38:58 +0100475 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
477 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700478 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +0100479 *
480 * kcryptd performs the actual encryption or decryption.
481 *
482 * kcryptd_io performs the IO submission.
483 *
484 * They must be separated as otherwise the final stages could be
485 * starved by new requests which can block in the first stages due
486 * to memory allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
David Howellsc4028952006-11-22 14:57:56 +0000488static void kcryptd_do_work(struct work_struct *work);
Milan Brozcabf08e2007-10-19 22:38:58 +0100489static void kcryptd_do_crypt(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100491static void kcryptd_queue_io(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Milan Broz9934a8b2007-10-19 22:38:57 +0100493 struct crypt_config *cc = io->target->private;
494
David Howellsc4028952006-11-22 14:57:56 +0000495 INIT_WORK(&io->work, kcryptd_do_work);
Milan Brozcabf08e2007-10-19 22:38:58 +0100496 queue_work(cc->io_queue, &io->work);
497}
498
499static void kcryptd_queue_crypt(struct dm_crypt_io *io)
500{
501 struct crypt_config *cc = io->target->private;
502
503 INIT_WORK(&io->work, kcryptd_do_crypt);
504 queue_work(cc->crypt_queue, &io->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
NeilBrown6712ecf2007-09-27 12:47:43 +0200507static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -0700508{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100509 struct dm_crypt_io *io = clone->bi_private;
Milan Broz8b004452006-10-03 01:15:37 -0700510 struct crypt_config *cc = io->target->private;
511 unsigned read_io = bio_data_dir(clone) == READ;
512
Milan Brozadfe4772007-12-13 14:15:51 +0000513 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
514 error = -EIO;
515
Milan Broz8b004452006-10-03 01:15:37 -0700516 /*
NeilBrown6712ecf2007-09-27 12:47:43 +0200517 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -0700518 */
NeilBrown6712ecf2007-09-27 12:47:43 +0200519 if (!read_io) {
Neil Brown644bd2f2007-10-16 13:48:46 +0200520 crypt_free_buffer_pages(cc, clone);
Milan Broz8b004452006-10-03 01:15:37 -0700521 goto out;
NeilBrown6712ecf2007-09-27 12:47:43 +0200522 }
Milan Broz8b004452006-10-03 01:15:37 -0700523
Milan Brozadfe4772007-12-13 14:15:51 +0000524 if (unlikely(error))
Milan Broz8b004452006-10-03 01:15:37 -0700525 goto out;
Milan Broz8b004452006-10-03 01:15:37 -0700526
527 bio_put(clone);
Milan Brozcabf08e2007-10-19 22:38:58 +0100528 kcryptd_queue_crypt(io);
NeilBrown6712ecf2007-09-27 12:47:43 +0200529 return;
Milan Broz8b004452006-10-03 01:15:37 -0700530
531out:
532 bio_put(clone);
Milan Broz80fd6622007-10-20 01:14:21 +0100533 crypt_dec_pending(io, error);
Milan Broz8b004452006-10-03 01:15:37 -0700534}
535
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100536static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -0700537{
538 struct crypt_config *cc = io->target->private;
539
540 clone->bi_private = io;
541 clone->bi_end_io = crypt_endio;
542 clone->bi_bdev = cc->dev->bdev;
543 clone->bi_rw = io->base_bio->bi_rw;
Olaf Kirch027581f2007-05-09 02:32:52 -0700544 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700545}
546
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100547static void process_read(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700548{
549 struct crypt_config *cc = io->target->private;
550 struct bio *base_bio = io->base_bio;
551 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700552 sector_t sector = base_bio->bi_sector - io->target->begin;
553
554 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700555
556 /*
557 * The block layer might modify the bvec array, so always
558 * copy the required bvecs because we need the original
559 * one in order to decrypt the whole bio data *afterwards*.
560 */
Milan Broz6a24c712006-10-03 01:15:40 -0700561 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700562 if (unlikely(!clone)) {
Milan Broz80fd6622007-10-20 01:14:21 +0100563 crypt_dec_pending(io, -ENOMEM);
Milan Broz23541d22006-10-03 01:15:39 -0700564 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700565 }
Milan Broz8b004452006-10-03 01:15:37 -0700566
567 clone_init(io, clone);
568 clone->bi_idx = 0;
569 clone->bi_vcnt = bio_segments(base_bio);
570 clone->bi_size = base_bio->bi_size;
Milan Broz93e605c2006-10-03 01:15:38 -0700571 clone->bi_sector = cc->start + sector;
Milan Broz8b004452006-10-03 01:15:37 -0700572 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
573 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700574
Milan Broz93e605c2006-10-03 01:15:38 -0700575 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700576}
577
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100578static void process_write(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700579{
580 struct crypt_config *cc = io->target->private;
581 struct bio *base_bio = io->base_bio;
582 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700583 unsigned remaining = base_bio->bi_size;
584 sector_t sector = base_bio->bi_sector - io->target->begin;
Milan Broz8b004452006-10-03 01:15:37 -0700585
Milan Broz93e605c2006-10-03 01:15:38 -0700586 atomic_inc(&io->pending);
Milan Broz8b004452006-10-03 01:15:37 -0700587
Milan Brozfcd369d2008-02-08 02:10:41 +0000588 crypt_convert_init(cc, &io->ctx, NULL, base_bio, sector);
Milan Broz8b004452006-10-03 01:15:37 -0700589
Milan Broz93e605c2006-10-03 01:15:38 -0700590 /*
591 * The allocated buffers can be smaller than the whole bio,
592 * so repeat the whole process until all the data can be handled.
593 */
594 while (remaining) {
Olaf Kirchf97380b2007-05-09 02:32:54 -0700595 clone = crypt_alloc_buffer(io, remaining);
Milan Broz23541d22006-10-03 01:15:39 -0700596 if (unlikely(!clone)) {
Milan Broz80fd6622007-10-20 01:14:21 +0100597 crypt_dec_pending(io, -ENOMEM);
Milan Broz23541d22006-10-03 01:15:39 -0700598 return;
599 }
Milan Broz93e605c2006-10-03 01:15:38 -0700600
Milan Broz53017032008-02-08 02:10:38 +0000601 io->ctx.bio_out = clone;
602 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700603
Milan Broz53017032008-02-08 02:10:38 +0000604 if (unlikely(crypt_convert(cc, &io->ctx) < 0)) {
Neil Brown644bd2f2007-10-16 13:48:46 +0200605 crypt_free_buffer_pages(cc, clone);
Milan Broz93e605c2006-10-03 01:15:38 -0700606 bio_put(clone);
Milan Broz80fd6622007-10-20 01:14:21 +0100607 crypt_dec_pending(io, -EIO);
Milan Broz23541d22006-10-03 01:15:39 -0700608 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700609 }
610
Olaf Kirchf97380b2007-05-09 02:32:54 -0700611 /* crypt_convert should have filled the clone bio */
Milan Broz53017032008-02-08 02:10:38 +0000612 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
Olaf Kirchf97380b2007-05-09 02:32:54 -0700613
Milan Broz93e605c2006-10-03 01:15:38 -0700614 clone->bi_sector = cc->start + sector;
Milan Broz93e605c2006-10-03 01:15:38 -0700615 remaining -= clone->bi_size;
616 sector += bio_sectors(clone);
617
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700618 /* Grab another reference to the io struct
619 * before we kick off the request */
Milan Broz23541d22006-10-03 01:15:39 -0700620 if (remaining)
621 atomic_inc(&io->pending);
622
Milan Broz93e605c2006-10-03 01:15:38 -0700623 generic_make_request(clone);
624
Olaf Kirch98221eb2007-05-09 02:32:52 -0700625 /* Do not reference clone after this - it
626 * may be gone already. */
627
Milan Broz93e605c2006-10-03 01:15:38 -0700628 /* out of memory -> run queues */
629 if (remaining)
Olaf Kirch98221eb2007-05-09 02:32:52 -0700630 congestion_wait(WRITE, HZ/100);
Milan Broz8b004452006-10-03 01:15:37 -0700631 }
Milan Broz8b004452006-10-03 01:15:37 -0700632}
633
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100634static void process_read_endio(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700635{
636 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700637
Milan Broz53017032008-02-08 02:10:38 +0000638 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Brozfcd369d2008-02-08 02:10:41 +0000639 io->base_bio->bi_sector - io->target->begin);
Milan Broz8b004452006-10-03 01:15:37 -0700640
Milan Broz53017032008-02-08 02:10:38 +0000641 crypt_dec_pending(io, crypt_convert(cc, &io->ctx));
Milan Broz8b004452006-10-03 01:15:37 -0700642}
643
David Howellsc4028952006-11-22 14:57:56 +0000644static void kcryptd_do_work(struct work_struct *work)
Milan Broz8b004452006-10-03 01:15:37 -0700645{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100646 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
Milan Broz8b004452006-10-03 01:15:37 -0700647
Milan Brozcabf08e2007-10-19 22:38:58 +0100648 if (bio_data_dir(io->base_bio) == READ)
Milan Broz23541d22006-10-03 01:15:39 -0700649 process_read(io);
Milan Brozcabf08e2007-10-19 22:38:58 +0100650}
651
652static void kcryptd_do_crypt(struct work_struct *work)
653{
654 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
655
656 if (bio_data_dir(io->base_bio) == READ)
657 process_read_endio(io);
Milan Broz23541d22006-10-03 01:15:39 -0700658 else
659 process_write(io);
Milan Broz8b004452006-10-03 01:15:37 -0700660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/*
663 * Decode key from its hex representation
664 */
665static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
666{
667 char buffer[3];
668 char *endp;
669 unsigned int i;
670
671 buffer[2] = '\0';
672
Milan Broz8b004452006-10-03 01:15:37 -0700673 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 buffer[0] = *hex++;
675 buffer[1] = *hex++;
676
677 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
678
679 if (endp != &buffer[2])
680 return -EINVAL;
681 }
682
683 if (*hex != '\0')
684 return -EINVAL;
685
686 return 0;
687}
688
689/*
690 * Encode key into its hex representation
691 */
692static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
693{
694 unsigned int i;
695
Milan Broz8b004452006-10-03 01:15:37 -0700696 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 sprintf(hex, "%02x", *key);
698 hex += 2;
699 key++;
700 }
701}
702
Milan Broze48d4bb2006-10-03 01:15:37 -0700703static int crypt_set_key(struct crypt_config *cc, char *key)
704{
705 unsigned key_size = strlen(key) >> 1;
706
707 if (cc->key_size && cc->key_size != key_size)
708 return -EINVAL;
709
710 cc->key_size = key_size; /* initial settings */
711
712 if ((!key_size && strcmp(key, "-")) ||
Milan Brozd469f842007-10-19 22:42:37 +0100713 (key_size && crypt_decode_key(cc->key, key, key_size) < 0))
Milan Broze48d4bb2006-10-03 01:15:37 -0700714 return -EINVAL;
715
716 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
717
718 return 0;
719}
720
721static int crypt_wipe_key(struct crypt_config *cc)
722{
723 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
724 memset(&cc->key, 0, cc->key_size * sizeof(u8));
725 return 0;
726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * Construct an encryption mapping:
730 * <cipher> <key> <iv_offset> <dev_path> <start>
731 */
732static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
733{
734 struct crypt_config *cc;
Herbert Xud1806f62006-08-22 20:29:17 +1000735 struct crypto_blkcipher *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 char *tmp;
737 char *cipher;
738 char *chainmode;
739 char *ivmode;
740 char *ivopts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 unsigned int key_size;
Andrew Morton4ee218c2006-03-27 01:17:48 -0800742 unsigned long long tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 if (argc != 5) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700745 ti->error = "Not enough arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -EINVAL;
747 }
748
749 tmp = argv[0];
750 cipher = strsep(&tmp, "-");
751 chainmode = strsep(&tmp, "-");
752 ivopts = strsep(&tmp, "-");
753 ivmode = strsep(&ivopts, ":");
754
755 if (tmp)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700756 DMWARN("Unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 key_size = strlen(argv[1]) >> 1;
759
Milan Broze48d4bb2006-10-03 01:15:37 -0700760 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (cc == NULL) {
762 ti->error =
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700763 "Cannot allocate transparent encryption context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return -ENOMEM;
765 }
766
Milan Broze48d4bb2006-10-03 01:15:37 -0700767 if (crypt_set_key(cc, argv[1])) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700768 ti->error = "Error decoding key";
Milan Broz636d5782007-10-19 22:47:52 +0100769 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
772 /* Compatiblity mode for old dm-crypt cipher strings */
773 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
774 chainmode = "cbc";
775 ivmode = "plain";
776 }
777
Herbert Xud1806f62006-08-22 20:29:17 +1000778 if (strcmp(chainmode, "ecb") && !ivmode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700779 ti->error = "This chaining mode requires an IV mechanism";
Milan Broz636d5782007-10-19 22:47:52 +0100780 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Milan Brozd469f842007-10-19 22:42:37 +0100783 if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)",
784 chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) {
Herbert Xud1806f62006-08-22 20:29:17 +1000785 ti->error = "Chain mode + cipher name is too long";
Milan Broz636d5782007-10-19 22:47:52 +0100786 goto bad_cipher;
Herbert Xud1806f62006-08-22 20:29:17 +1000787 }
788
789 tfm = crypto_alloc_blkcipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
790 if (IS_ERR(tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700791 ti->error = "Error allocating crypto tfm";
Milan Broz636d5782007-10-19 22:47:52 +0100792 goto bad_cipher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Herbert Xud1806f62006-08-22 20:29:17 +1000795 strcpy(cc->cipher, cipher);
796 strcpy(cc->chainmode, chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 cc->tfm = tfm;
798
799 /*
Rik Snel48527fa2006-09-03 08:56:39 +1000800 * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * See comments at iv code
802 */
803
804 if (ivmode == NULL)
805 cc->iv_gen_ops = NULL;
806 else if (strcmp(ivmode, "plain") == 0)
807 cc->iv_gen_ops = &crypt_iv_plain_ops;
808 else if (strcmp(ivmode, "essiv") == 0)
809 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +1000810 else if (strcmp(ivmode, "benbi") == 0)
811 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -0700812 else if (strcmp(ivmode, "null") == 0)
813 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700815 ti->error = "Invalid IV mode";
Milan Broz636d5782007-10-19 22:47:52 +0100816 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr &&
820 cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0)
Milan Broz636d5782007-10-19 22:47:52 +0100821 goto bad_ivmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Herbert Xud1806f62006-08-22 20:29:17 +1000823 cc->iv_size = crypto_blkcipher_ivsize(tfm);
824 if (cc->iv_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /* at least a 64 bit sector number should fit in our buffer */
Herbert Xud1806f62006-08-22 20:29:17 +1000826 cc->iv_size = max(cc->iv_size,
Milan Brozd469f842007-10-19 22:42:37 +0100827 (unsigned int)(sizeof(u64) / sizeof(u8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (cc->iv_gen_ops) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700830 DMWARN("Selected cipher does not support IVs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (cc->iv_gen_ops->dtr)
832 cc->iv_gen_ops->dtr(cc);
833 cc->iv_gen_ops = NULL;
834 }
835 }
836
Matthew Dobson93d23412006-03-26 01:37:50 -0800837 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700839 ti->error = "Cannot allocate crypt io mempool";
Milan Broz636d5782007-10-19 22:47:52 +0100840 goto bad_slab_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Matthew Dobsona19b27c2006-03-26 01:37:45 -0800843 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700845 ti->error = "Cannot allocate page mempool";
Milan Broz636d5782007-10-19 22:47:52 +0100846 goto bad_page_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848
Jens Axboe59725112007-04-02 10:06:42 +0200849 cc->bs = bioset_create(MIN_IOS, MIN_IOS);
Milan Broz6a24c712006-10-03 01:15:40 -0700850 if (!cc->bs) {
851 ti->error = "Cannot allocate crypt bioset";
852 goto bad_bs;
853 }
854
Herbert Xud1806f62006-08-22 20:29:17 +1000855 if (crypto_blkcipher_setkey(tfm, cc->key, key_size) < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700856 ti->error = "Error setting key";
Milan Broz636d5782007-10-19 22:47:52 +0100857 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
Andrew Morton4ee218c2006-03-27 01:17:48 -0800860 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700861 ti->error = "Invalid iv_offset sector";
Milan Broz636d5782007-10-19 22:47:52 +0100862 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800864 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Andrew Morton4ee218c2006-03-27 01:17:48 -0800866 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700867 ti->error = "Invalid device sector";
Milan Broz636d5782007-10-19 22:47:52 +0100868 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Andrew Morton4ee218c2006-03-27 01:17:48 -0800870 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (dm_get_device(ti, argv[3], cc->start, ti->len,
Milan Brozd469f842007-10-19 22:42:37 +0100873 dm_table_get_mode(ti->table), &cc->dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700874 ti->error = "Device lookup failed";
Milan Broz636d5782007-10-19 22:47:52 +0100875 goto bad_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 if (ivmode && cc->iv_gen_ops) {
879 if (ivopts)
880 *(ivopts - 1) = ':';
881 cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL);
882 if (!cc->iv_mode) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700883 ti->error = "Error kmallocing iv_mode string";
Milan Broz636d5782007-10-19 22:47:52 +0100884 goto bad_ivmode_string;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886 strcpy(cc->iv_mode, ivmode);
887 } else
888 cc->iv_mode = NULL;
889
Milan Brozcabf08e2007-10-19 22:38:58 +0100890 cc->io_queue = create_singlethread_workqueue("kcryptd_io");
891 if (!cc->io_queue) {
892 ti->error = "Couldn't create kcryptd io queue";
893 goto bad_io_queue;
894 }
895
896 cc->crypt_queue = create_singlethread_workqueue("kcryptd");
897 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +0100898 ti->error = "Couldn't create kcryptd queue";
Milan Brozcabf08e2007-10-19 22:38:58 +0100899 goto bad_crypt_queue;
Milan Broz9934a8b2007-10-19 22:38:57 +0100900 }
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 ti->private = cc;
903 return 0;
904
Milan Brozcabf08e2007-10-19 22:38:58 +0100905bad_crypt_queue:
906 destroy_workqueue(cc->io_queue);
907bad_io_queue:
Milan Broz9934a8b2007-10-19 22:38:57 +0100908 kfree(cc->iv_mode);
Milan Broz636d5782007-10-19 22:47:52 +0100909bad_ivmode_string:
Dmitry Monakhov55b42c52007-10-19 22:38:37 +0100910 dm_put_device(ti, cc->dev);
Milan Broz636d5782007-10-19 22:47:52 +0100911bad_device:
Milan Broz6a24c712006-10-03 01:15:40 -0700912 bioset_free(cc->bs);
913bad_bs:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 mempool_destroy(cc->page_pool);
Milan Broz636d5782007-10-19 22:47:52 +0100915bad_page_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 mempool_destroy(cc->io_pool);
Milan Broz636d5782007-10-19 22:47:52 +0100917bad_slab_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
919 cc->iv_gen_ops->dtr(cc);
Milan Broz636d5782007-10-19 22:47:52 +0100920bad_ivmode:
Herbert Xud1806f62006-08-22 20:29:17 +1000921 crypto_free_blkcipher(tfm);
Milan Broz636d5782007-10-19 22:47:52 +0100922bad_cipher:
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800923 /* Must zero key material before freeing */
924 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 kfree(cc);
926 return -EINVAL;
927}
928
929static void crypt_dtr(struct dm_target *ti)
930{
931 struct crypt_config *cc = (struct crypt_config *) ti->private;
932
Milan Brozcabf08e2007-10-19 22:38:58 +0100933 destroy_workqueue(cc->io_queue);
934 destroy_workqueue(cc->crypt_queue);
Milan Broz80b16c12007-07-21 04:37:27 -0700935
Milan Broz6a24c712006-10-03 01:15:40 -0700936 bioset_free(cc->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 mempool_destroy(cc->page_pool);
938 mempool_destroy(cc->io_pool);
939
Jesper Juhl990a8ba2005-06-21 17:17:30 -0700940 kfree(cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
942 cc->iv_gen_ops->dtr(cc);
Herbert Xud1806f62006-08-22 20:29:17 +1000943 crypto_free_blkcipher(cc->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 dm_put_device(ti, cc->dev);
Stefan Rompf9d3520a2006-01-06 00:20:08 -0800945
946 /* Must zero key material before freeing */
947 memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 kfree(cc);
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static int crypt_map(struct dm_target *ti, struct bio *bio,
952 union map_info *map_context)
953{
Milan Broz8b004452006-10-03 01:15:37 -0700954 struct crypt_config *cc = ti->private;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100955 struct dm_crypt_io *io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Milan Broze48d4bb2006-10-03 01:15:37 -0700957 io = mempool_alloc(cc->io_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 io->target = ti;
Milan Broz8b004452006-10-03 01:15:37 -0700959 io->base_bio = bio;
Milan Brozcabf08e2007-10-19 22:38:58 +0100960 io->error = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700961 atomic_set(&io->pending, 0);
Milan Brozcabf08e2007-10-19 22:38:58 +0100962
963 if (bio_data_dir(io->base_bio) == READ)
964 kcryptd_queue_io(io);
965 else
966 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800968 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971static int crypt_status(struct dm_target *ti, status_type_t type,
972 char *result, unsigned int maxlen)
973{
974 struct crypt_config *cc = (struct crypt_config *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 unsigned int sz = 0;
976
977 switch (type) {
978 case STATUSTYPE_INFO:
979 result[0] = '\0';
980 break;
981
982 case STATUSTYPE_TABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (cc->iv_mode)
Christophe Saout37af6562006-10-30 20:39:08 +0100984 DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode,
985 cc->iv_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 else
Christophe Saout37af6562006-10-30 20:39:08 +0100987 DMEMIT("%s-%s ", cc->cipher, cc->chainmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (cc->key_size > 0) {
990 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
991 return -ENOMEM;
992
993 crypt_encode_key(result + sz, cc->key, cc->key_size);
994 sz += cc->key_size << 1;
995 } else {
996 if (sz >= maxlen)
997 return -ENOMEM;
998 result[sz++] = '-';
999 }
1000
Andrew Morton4ee218c2006-03-27 01:17:48 -08001001 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1002 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 break;
1004 }
1005 return 0;
1006}
1007
Milan Broze48d4bb2006-10-03 01:15:37 -07001008static void crypt_postsuspend(struct dm_target *ti)
1009{
1010 struct crypt_config *cc = ti->private;
1011
1012 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1013}
1014
1015static int crypt_preresume(struct dm_target *ti)
1016{
1017 struct crypt_config *cc = ti->private;
1018
1019 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1020 DMERR("aborting resume - crypt key is not set.");
1021 return -EAGAIN;
1022 }
1023
1024 return 0;
1025}
1026
1027static void crypt_resume(struct dm_target *ti)
1028{
1029 struct crypt_config *cc = ti->private;
1030
1031 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1032}
1033
1034/* Message interface
1035 * key set <key>
1036 * key wipe
1037 */
1038static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1039{
1040 struct crypt_config *cc = ti->private;
1041
1042 if (argc < 2)
1043 goto error;
1044
1045 if (!strnicmp(argv[0], MESG_STR("key"))) {
1046 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1047 DMWARN("not suspended during key manipulation.");
1048 return -EINVAL;
1049 }
1050 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set")))
1051 return crypt_set_key(cc, argv[2]);
1052 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe")))
1053 return crypt_wipe_key(cc);
1054 }
1055
1056error:
1057 DMWARN("unrecognised message received.");
1058 return -EINVAL;
1059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061static struct target_type crypt_target = {
1062 .name = "crypt",
Ludwig Nussel46b47732007-05-09 02:32:55 -07001063 .version= {1, 5, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 .module = THIS_MODULE,
1065 .ctr = crypt_ctr,
1066 .dtr = crypt_dtr,
1067 .map = crypt_map,
1068 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001069 .postsuspend = crypt_postsuspend,
1070 .preresume = crypt_preresume,
1071 .resume = crypt_resume,
1072 .message = crypt_message,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073};
1074
1075static int __init dm_crypt_init(void)
1076{
1077 int r;
1078
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001079 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!_crypt_io_pool)
1081 return -ENOMEM;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 r = dm_register_target(&crypt_target);
1084 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001085 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001086 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return r;
1090}
1091
1092static void __exit dm_crypt_exit(void)
1093{
1094 int r = dm_unregister_target(&crypt_target);
1095
1096 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001097 DMERR("unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 kmem_cache_destroy(_crypt_io_pool);
1100}
1101
1102module_init(dm_crypt_init);
1103module_exit(dm_crypt_exit);
1104
1105MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1106MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1107MODULE_LICENSE("GPL");