blob: 50ae6ef83738b39ed34370d3bb59405cc55f87bb [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 Broz542da312009-12-10 23:51:57 +00004 * Copyright (C) 2006-2009 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file is released under the GPL.
7 */
8
Milan Broz43d69032008-02-08 02:11:09 +00009#include <linux/completion.h>
Herbert Xud1806f62006-08-22 20:29:17 +100010#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/bio.h>
15#include <linux/blkdev.h>
16#include <linux/mempool.h>
17#include <linux/slab.h>
18#include <linux/crypto.h>
19#include <linux/workqueue.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070020#include <linux/backing-dev.h>
Andi Kleenc0297722011-01-13 19:59:53 +000021#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100023#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/page.h>
Rik Snel48527fa2006-09-03 08:56:39 +100025#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Mikulas Patocka586e80e2008-10-21 17:44:59 +010027#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Alasdair G Kergon72d94862006-06-26 00:27:35 -070029#define DM_MSG_PREFIX "crypt"
Milan Broze48d4bb2006-10-03 01:15:37 -070030#define MESG_STR(x) x, sizeof(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * context holding the current state of a multi-part conversion
34 */
35struct convert_context {
Milan Broz43d69032008-02-08 02:11:09 +000036 struct completion restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct bio *bio_in;
38 struct bio *bio_out;
39 unsigned int offset_in;
40 unsigned int offset_out;
41 unsigned int idx_in;
42 unsigned int idx_out;
43 sector_t sector;
Milan Broz43d69032008-02-08 02:11:09 +000044 atomic_t pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Milan Broz53017032008-02-08 02:10:38 +000047/*
48 * per bio private data
49 */
50struct dm_crypt_io {
51 struct dm_target *target;
52 struct bio *base_bio;
53 struct work_struct work;
54
55 struct convert_context ctx;
56
57 atomic_t pending;
58 int error;
Milan Broz0c395b02008-02-08 02:10:54 +000059 sector_t sector;
Milan Broz393b47e2008-10-21 17:45:02 +010060 struct dm_crypt_io *base_io;
Milan Broz53017032008-02-08 02:10:38 +000061};
62
Milan Broz01482b72008-02-08 02:11:04 +000063struct dm_crypt_request {
Huang Yingb2174ee2009-03-16 17:44:33 +000064 struct convert_context *ctx;
Milan Broz01482b72008-02-08 02:11:04 +000065 struct scatterlist sg_in;
66 struct scatterlist sg_out;
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct crypt_config;
70
71struct crypt_iv_operations {
72 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010073 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 void (*dtr)(struct crypt_config *cc);
Milan Brozb95bf2d2009-12-10 23:51:56 +000075 int (*init)(struct crypt_config *cc);
Milan Broz542da312009-12-10 23:51:57 +000076 int (*wipe)(struct crypt_config *cc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector);
78};
79
Milan Broz60473592009-12-10 23:51:55 +000080struct iv_essiv_private {
Milan Brozb95bf2d2009-12-10 23:51:56 +000081 struct crypto_hash *hash_tfm;
82 u8 *salt;
Milan Broz60473592009-12-10 23:51:55 +000083};
84
85struct iv_benbi_private {
86 int shift;
87};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Crypt: maps a linear range of a block device
91 * and encrypts / decrypts at the same time.
92 */
Milan Broze48d4bb2006-10-03 01:15:37 -070093enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID };
Andi Kleenc0297722011-01-13 19:59:53 +000094
95/*
96 * Duplicated per-CPU state for cipher.
97 */
98struct crypt_cpu {
99 struct ablkcipher_request *req;
100 struct crypto_ablkcipher *tfm;
101
102 /* ESSIV: struct crypto_cipher *essiv_tfm */
103 void *iv_private;
104};
105
106/*
107 * The fields in here must be read only after initialization,
108 * changing state should be in crypt_cpu.
109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110struct crypt_config {
111 struct dm_dev *dev;
112 sector_t start;
113
114 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000115 * pool for per bio private data, crypto requests and
116 * encryption requeusts/buffer pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118 mempool_t *io_pool;
Milan Brozddd42ed2008-02-08 02:11:07 +0000119 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -0700121 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Milan Brozcabf08e2007-10-19 22:38:58 +0100123 struct workqueue_struct *io_queue;
124 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -0700125
Milan Broz5ebaee62010-08-12 04:14:07 +0100126 char *cipher;
Milan Broz7dbcd132011-01-13 19:59:52 +0000127 char *cipher_string;
Milan Broz5ebaee62010-08-12 04:14:07 +0100128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct crypt_iv_operations *iv_gen_ops;
Herbert Xu79066ad2006-12-05 13:41:52 -0800130 union {
Milan Broz60473592009-12-10 23:51:55 +0000131 struct iv_essiv_private essiv;
132 struct iv_benbi_private benbi;
Herbert Xu79066ad2006-12-05 13:41:52 -0800133 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 sector_t iv_offset;
135 unsigned int iv_size;
136
Milan Brozddd42ed2008-02-08 02:11:07 +0000137 /*
Andi Kleenc0297722011-01-13 19:59:53 +0000138 * Duplicated per cpu state. Access through
139 * per_cpu_ptr() only.
140 */
141 struct crypt_cpu __percpu *cpu;
142
143 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000144 * Layout of each crypto request:
145 *
146 * struct ablkcipher_request
147 * context
148 * padding
149 * struct dm_crypt_request
150 * padding
151 * IV
152 *
153 * The padding is added so that dm_crypt_request and the IV are
154 * correctly aligned.
155 */
156 unsigned int dmreq_start;
Milan Brozddd42ed2008-02-08 02:11:07 +0000157
Milan Broze48d4bb2006-10-03 01:15:37 -0700158 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 unsigned int key_size;
160 u8 key[0];
161};
162
Milan Broz6a24c712006-10-03 01:15:40 -0700163#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define MIN_POOL_PAGES 32
165#define MIN_BIO_PAGES 8
166
Christoph Lametere18b8902006-12-06 20:33:20 -0800167static struct kmem_cache *_crypt_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100169static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000170static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Olaf Kirch027581f2007-05-09 02:32:52 -0700171
Andi Kleenc0297722011-01-13 19:59:53 +0000172static struct crypt_cpu *this_crypt_config(struct crypt_config *cc)
173{
174 return this_cpu_ptr(cc->cpu);
175}
176
177/*
178 * Use this to access cipher attributes that are the same for each CPU.
179 */
180static struct crypto_ablkcipher *any_tfm(struct crypt_config *cc)
181{
182 return __this_cpu_ptr(cc->cpu)->tfm;
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * Different IV generation algorithms:
187 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000188 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200189 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
Milan Broz61afef62009-12-10 23:52:25 +0000191 * plain64: the initial vector is the 64-bit little-endian version of the sector
192 * number, padded with zeros if necessary.
193 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000194 * essiv: "encrypted sector|salt initial vector", the sector number is
195 * encrypted with the bulk cipher using a salt as key. The salt
196 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
Rik Snel48527fa2006-09-03 08:56:39 +1000198 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
199 * (needed for LRW-32-AES and possible other narrow block modes)
200 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700201 * null: the initial vector is always zero. Provides compatibility with
202 * obsolete loop_fish2 devices. Do not use for new devices.
203 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * plumb: unimplemented, see:
205 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
206 */
207
208static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
209{
210 memset(iv, 0, cc->iv_size);
211 *(u32 *)iv = cpu_to_le32(sector & 0xffffffff);
212
213 return 0;
214}
215
Milan Broz61afef62009-12-10 23:52:25 +0000216static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
217 sector_t sector)
218{
219 memset(iv, 0, cc->iv_size);
220 *(u64 *)iv = cpu_to_le64(sector);
221
222 return 0;
223}
224
Milan Brozb95bf2d2009-12-10 23:51:56 +0000225/* Initialise ESSIV - compute salt but no local memory allocations */
226static int crypt_iv_essiv_init(struct crypt_config *cc)
227{
228 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
229 struct hash_desc desc;
230 struct scatterlist sg;
Andi Kleenc0297722011-01-13 19:59:53 +0000231 struct crypto_cipher *essiv_tfm;
232 int err, cpu;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000233
234 sg_init_one(&sg, cc->key, cc->key_size);
235 desc.tfm = essiv->hash_tfm;
236 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
237
238 err = crypto_hash_digest(&desc, &sg, cc->key_size, essiv->salt);
239 if (err)
240 return err;
241
Andi Kleenc0297722011-01-13 19:59:53 +0000242 for_each_possible_cpu(cpu) {
243 essiv_tfm = per_cpu_ptr(cc->cpu, cpu)->iv_private,
244
245 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
Milan Brozb95bf2d2009-12-10 23:51:56 +0000246 crypto_hash_digestsize(essiv->hash_tfm));
Andi Kleenc0297722011-01-13 19:59:53 +0000247 if (err)
248 return err;
249 }
250
251 return 0;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000252}
253
Milan Broz542da312009-12-10 23:51:57 +0000254/* Wipe salt and reset key derived from volume key */
255static int crypt_iv_essiv_wipe(struct crypt_config *cc)
256{
257 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
258 unsigned salt_size = crypto_hash_digestsize(essiv->hash_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000259 struct crypto_cipher *essiv_tfm;
260 int cpu, r, err = 0;
Milan Broz542da312009-12-10 23:51:57 +0000261
262 memset(essiv->salt, 0, salt_size);
263
Andi Kleenc0297722011-01-13 19:59:53 +0000264 for_each_possible_cpu(cpu) {
265 essiv_tfm = per_cpu_ptr(cc->cpu, cpu)->iv_private;
266 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
267 if (r)
268 err = r;
269 }
270
271 return err;
272}
273
274/* Set up per cpu cipher state */
275static struct crypto_cipher *setup_essiv_cpu(struct crypt_config *cc,
276 struct dm_target *ti,
277 u8 *salt, unsigned saltsize)
278{
279 struct crypto_cipher *essiv_tfm;
280 int err;
281
282 /* Setup the essiv_tfm with the given salt */
283 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
284 if (IS_ERR(essiv_tfm)) {
285 ti->error = "Error allocating crypto tfm for ESSIV";
286 return essiv_tfm;
287 }
288
289 if (crypto_cipher_blocksize(essiv_tfm) !=
290 crypto_ablkcipher_ivsize(any_tfm(cc))) {
291 ti->error = "Block size of ESSIV cipher does "
292 "not match IV size of block cipher";
293 crypto_free_cipher(essiv_tfm);
294 return ERR_PTR(-EINVAL);
295 }
296
297 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
298 if (err) {
299 ti->error = "Failed to set key for ESSIV cipher";
300 crypto_free_cipher(essiv_tfm);
301 return ERR_PTR(err);
302 }
303
304 return essiv_tfm;
Milan Broz542da312009-12-10 23:51:57 +0000305}
306
Milan Broz60473592009-12-10 23:51:55 +0000307static void crypt_iv_essiv_dtr(struct crypt_config *cc)
308{
Andi Kleenc0297722011-01-13 19:59:53 +0000309 int cpu;
310 struct crypt_cpu *cpu_cc;
311 struct crypto_cipher *essiv_tfm;
Milan Broz60473592009-12-10 23:51:55 +0000312 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
313
Milan Brozb95bf2d2009-12-10 23:51:56 +0000314 crypto_free_hash(essiv->hash_tfm);
315 essiv->hash_tfm = NULL;
316
317 kzfree(essiv->salt);
318 essiv->salt = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +0000319
320 for_each_possible_cpu(cpu) {
321 cpu_cc = per_cpu_ptr(cc->cpu, cpu);
322 essiv_tfm = cpu_cc->iv_private;
323
324 if (essiv_tfm)
325 crypto_free_cipher(essiv_tfm);
326
327 cpu_cc->iv_private = NULL;
328 }
Milan Broz60473592009-12-10 23:51:55 +0000329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100332 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Milan Broz5861f1b2009-12-10 23:51:56 +0000334 struct crypto_cipher *essiv_tfm = NULL;
335 struct crypto_hash *hash_tfm = NULL;
Milan Broz5861f1b2009-12-10 23:51:56 +0000336 u8 *salt = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +0000337 int err, cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Milan Broz5861f1b2009-12-10 23:51:56 +0000339 if (!opts) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700340 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return -EINVAL;
342 }
343
Milan Brozb95bf2d2009-12-10 23:51:56 +0000344 /* Allocate hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000345 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
346 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700347 ti->error = "Error initializing ESSIV hash";
Milan Broz5861f1b2009-12-10 23:51:56 +0000348 err = PTR_ERR(hash_tfm);
349 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
Milan Brozb95bf2d2009-12-10 23:51:56 +0000352 salt = kzalloc(crypto_hash_digestsize(hash_tfm), GFP_KERNEL);
Milan Broz5861f1b2009-12-10 23:51:56 +0000353 if (!salt) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700354 ti->error = "Error kmallocing salt storage in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000355 err = -ENOMEM;
356 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
Milan Brozb95bf2d2009-12-10 23:51:56 +0000359 cc->iv_gen_private.essiv.salt = salt;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000360 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
361
Andi Kleenc0297722011-01-13 19:59:53 +0000362 for_each_possible_cpu(cpu) {
363 essiv_tfm = setup_essiv_cpu(cc, ti, salt,
364 crypto_hash_digestsize(hash_tfm));
365 if (IS_ERR(essiv_tfm)) {
366 crypt_iv_essiv_dtr(cc);
367 return PTR_ERR(essiv_tfm);
368 }
369 per_cpu_ptr(cc->cpu, cpu)->iv_private = essiv_tfm;
370 }
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
Milan Broz5861f1b2009-12-10 23:51:56 +0000373
374bad:
Milan Broz5861f1b2009-12-10 23:51:56 +0000375 if (hash_tfm && !IS_ERR(hash_tfm))
376 crypto_free_hash(hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000377 kfree(salt);
Milan Broz5861f1b2009-12-10 23:51:56 +0000378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
382{
Andi Kleenc0297722011-01-13 19:59:53 +0000383 struct crypto_cipher *essiv_tfm = this_crypt_config(cc)->iv_private;
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 memset(iv, 0, cc->iv_size);
386 *(u64 *)iv = cpu_to_le64(sector);
Andi Kleenc0297722011-01-13 19:59:53 +0000387 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
390}
391
Rik Snel48527fa2006-09-03 08:56:39 +1000392static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
393 const char *opts)
394{
Andi Kleenc0297722011-01-13 19:59:53 +0000395 unsigned bs = crypto_ablkcipher_blocksize(any_tfm(cc));
David Howellsf0d1b0b2006-12-08 02:37:49 -0800396 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000397
398 /* we need to calculate how far we must shift the sector count
399 * to get the cipher block count, we use this shift in _gen */
400
401 if (1 << log != bs) {
402 ti->error = "cypher blocksize is not a power of 2";
403 return -EINVAL;
404 }
405
406 if (log > 9) {
407 ti->error = "cypher blocksize is > 512";
408 return -EINVAL;
409 }
410
Milan Broz60473592009-12-10 23:51:55 +0000411 cc->iv_gen_private.benbi.shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000412
413 return 0;
414}
415
416static void crypt_iv_benbi_dtr(struct crypt_config *cc)
417{
Rik Snel48527fa2006-09-03 08:56:39 +1000418}
419
420static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
421{
Herbert Xu79066ad2006-12-05 13:41:52 -0800422 __be64 val;
423
Rik Snel48527fa2006-09-03 08:56:39 +1000424 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800425
Milan Broz60473592009-12-10 23:51:55 +0000426 val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi.shift) + 1);
Herbert Xu79066ad2006-12-05 13:41:52 -0800427 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 0;
430}
431
Ludwig Nussel46b47732007-05-09 02:32:55 -0700432static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector)
433{
434 memset(iv, 0, cc->iv_size);
435
436 return 0;
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static struct crypt_iv_operations crypt_iv_plain_ops = {
440 .generator = crypt_iv_plain_gen
441};
442
Milan Broz61afef62009-12-10 23:52:25 +0000443static struct crypt_iv_operations crypt_iv_plain64_ops = {
444 .generator = crypt_iv_plain64_gen
445};
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447static struct crypt_iv_operations crypt_iv_essiv_ops = {
448 .ctr = crypt_iv_essiv_ctr,
449 .dtr = crypt_iv_essiv_dtr,
Milan Brozb95bf2d2009-12-10 23:51:56 +0000450 .init = crypt_iv_essiv_init,
Milan Broz542da312009-12-10 23:51:57 +0000451 .wipe = crypt_iv_essiv_wipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 .generator = crypt_iv_essiv_gen
453};
454
Rik Snel48527fa2006-09-03 08:56:39 +1000455static struct crypt_iv_operations crypt_iv_benbi_ops = {
456 .ctr = crypt_iv_benbi_ctr,
457 .dtr = crypt_iv_benbi_dtr,
458 .generator = crypt_iv_benbi_gen
459};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Ludwig Nussel46b47732007-05-09 02:32:55 -0700461static struct crypt_iv_operations crypt_iv_null_ops = {
462 .generator = crypt_iv_null_gen
463};
464
Milan Brozd469f842007-10-19 22:42:37 +0100465static void crypt_convert_init(struct crypt_config *cc,
466 struct convert_context *ctx,
467 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000468 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 ctx->bio_in = bio_in;
471 ctx->bio_out = bio_out;
472 ctx->offset_in = 0;
473 ctx->offset_out = 0;
474 ctx->idx_in = bio_in ? bio_in->bi_idx : 0;
475 ctx->idx_out = bio_out ? bio_out->bi_idx : 0;
476 ctx->sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +0000477 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Huang Yingb2174ee2009-03-16 17:44:33 +0000480static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
481 struct ablkcipher_request *req)
482{
483 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
484}
485
486static struct ablkcipher_request *req_of_dmreq(struct crypt_config *cc,
487 struct dm_crypt_request *dmreq)
488{
489 return (struct ablkcipher_request *)((char *)dmreq - cc->dmreq_start);
490}
491
Milan Broz01482b72008-02-08 02:11:04 +0000492static int crypt_convert_block(struct crypt_config *cc,
Milan Broz3a7f6c92008-02-08 02:11:14 +0000493 struct convert_context *ctx,
494 struct ablkcipher_request *req)
Milan Broz01482b72008-02-08 02:11:04 +0000495{
496 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
497 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000498 struct dm_crypt_request *dmreq;
499 u8 *iv;
500 int r = 0;
Milan Broz01482b72008-02-08 02:11:04 +0000501
Huang Yingb2174ee2009-03-16 17:44:33 +0000502 dmreq = dmreq_of_req(cc, req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000503 iv = (u8 *)ALIGN((unsigned long)(dmreq + 1),
Andi Kleenc0297722011-01-13 19:59:53 +0000504 crypto_ablkcipher_alignmask(any_tfm(cc)) + 1);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000505
Huang Yingb2174ee2009-03-16 17:44:33 +0000506 dmreq->ctx = ctx;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000507 sg_init_table(&dmreq->sg_in, 1);
508 sg_set_page(&dmreq->sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000509 bv_in->bv_offset + ctx->offset_in);
510
Milan Broz3a7f6c92008-02-08 02:11:14 +0000511 sg_init_table(&dmreq->sg_out, 1);
512 sg_set_page(&dmreq->sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT,
Milan Broz01482b72008-02-08 02:11:04 +0000513 bv_out->bv_offset + ctx->offset_out);
514
515 ctx->offset_in += 1 << SECTOR_SHIFT;
516 if (ctx->offset_in >= bv_in->bv_len) {
517 ctx->offset_in = 0;
518 ctx->idx_in++;
519 }
520
521 ctx->offset_out += 1 << SECTOR_SHIFT;
522 if (ctx->offset_out >= bv_out->bv_len) {
523 ctx->offset_out = 0;
524 ctx->idx_out++;
525 }
526
Milan Broz3a7f6c92008-02-08 02:11:14 +0000527 if (cc->iv_gen_ops) {
528 r = cc->iv_gen_ops->generator(cc, iv, ctx->sector);
529 if (r < 0)
530 return r;
531 }
532
533 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
534 1 << SECTOR_SHIFT, iv);
535
536 if (bio_data_dir(ctx->bio_in) == WRITE)
537 r = crypto_ablkcipher_encrypt(req);
538 else
539 r = crypto_ablkcipher_decrypt(req);
540
541 return r;
Milan Broz01482b72008-02-08 02:11:04 +0000542}
543
Milan Broz95497a92008-02-08 02:11:12 +0000544static void kcryptd_async_done(struct crypto_async_request *async_req,
545 int error);
Andi Kleenc0297722011-01-13 19:59:53 +0000546
Milan Brozddd42ed2008-02-08 02:11:07 +0000547static void crypt_alloc_req(struct crypt_config *cc,
548 struct convert_context *ctx)
549{
Andi Kleenc0297722011-01-13 19:59:53 +0000550 struct crypt_cpu *this_cc = this_crypt_config(cc);
551
552 if (!this_cc->req)
553 this_cc->req = mempool_alloc(cc->req_pool, GFP_NOIO);
554
555 ablkcipher_request_set_tfm(this_cc->req, this_cc->tfm);
556 ablkcipher_request_set_callback(this_cc->req,
557 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
558 kcryptd_async_done, dmreq_of_req(cc, this_cc->req));
Milan Brozddd42ed2008-02-08 02:11:07 +0000559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561/*
562 * Encrypt / decrypt data from one bio to another one (can be the same one)
563 */
564static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100565 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Andi Kleenc0297722011-01-13 19:59:53 +0000567 struct crypt_cpu *this_cc = this_crypt_config(cc);
Milan Broz3f1e9072008-03-28 14:16:07 -0700568 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Milan Brozc8081612008-10-10 13:37:08 +0100570 atomic_set(&ctx->pending, 1);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 while(ctx->idx_in < ctx->bio_in->bi_vcnt &&
573 ctx->idx_out < ctx->bio_out->bi_vcnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Milan Broz3a7f6c92008-02-08 02:11:14 +0000575 crypt_alloc_req(cc, ctx);
576
Milan Broz3f1e9072008-03-28 14:16:07 -0700577 atomic_inc(&ctx->pending);
578
Andi Kleenc0297722011-01-13 19:59:53 +0000579 r = crypt_convert_block(cc, ctx, this_cc->req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000580
581 switch (r) {
Milan Broz3f1e9072008-03-28 14:16:07 -0700582 /* async */
Milan Broz3a7f6c92008-02-08 02:11:14 +0000583 case -EBUSY:
584 wait_for_completion(&ctx->restart);
585 INIT_COMPLETION(ctx->restart);
586 /* fall through*/
587 case -EINPROGRESS:
Andi Kleenc0297722011-01-13 19:59:53 +0000588 this_cc->req = NULL;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000589 ctx->sector++;
590 continue;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000591
Milan Broz3f1e9072008-03-28 14:16:07 -0700592 /* sync */
593 case 0:
594 atomic_dec(&ctx->pending);
595 ctx->sector++;
Milan Brozc7f1b202008-07-02 09:34:28 +0100596 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -0700597 continue;
598
599 /* error */
600 default:
601 atomic_dec(&ctx->pending);
602 return r;
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
Milan Broz3f1e9072008-03-28 14:16:07 -0700606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Milan Brozd469f842007-10-19 22:42:37 +0100609static void dm_crypt_bio_destructor(struct bio *bio)
610{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100611 struct dm_crypt_io *io = bio->bi_private;
Milan Broz6a24c712006-10-03 01:15:40 -0700612 struct crypt_config *cc = io->target->private;
613
614 bio_free(bio, cc->bs);
Milan Brozd469f842007-10-19 22:42:37 +0100615}
Milan Broz6a24c712006-10-03 01:15:40 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*
618 * Generate a new unfragmented bio with the given size
619 * This should never violate the device limitations
Milan Broz933f01d2008-10-10 13:37:08 +0100620 * May return a smaller bio when running out of pages, indicated by
621 * *out_of_pages set to 1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Milan Broz933f01d2008-10-10 13:37:08 +0100623static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size,
624 unsigned *out_of_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Olaf Kirch027581f2007-05-09 02:32:52 -0700626 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700627 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Al Virob4e3ca12005-10-21 03:22:34 -0400629 gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM;
Milan Broz91e10622007-12-13 14:16:10 +0000630 unsigned i, len;
631 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700633 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700634 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Olaf Kirch027581f2007-05-09 02:32:52 -0700637 clone_init(io, clone);
Milan Broz933f01d2008-10-10 13:37:08 +0100638 *out_of_pages = 0;
Milan Broz6a24c712006-10-03 01:15:40 -0700639
Olaf Kirchf97380b2007-05-09 02:32:54 -0700640 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000641 page = mempool_alloc(cc->page_pool, gfp_mask);
Milan Broz933f01d2008-10-10 13:37:08 +0100642 if (!page) {
643 *out_of_pages = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 break;
Milan Broz933f01d2008-10-10 13:37:08 +0100645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /*
648 * if additional pages cannot be allocated without waiting,
649 * return a partially allocated bio, the caller will then try
650 * to allocate additional bios while submitting this partial bio
651 */
Olaf Kirchf97380b2007-05-09 02:32:54 -0700652 if (i == (MIN_BIO_PAGES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT;
654
Milan Broz91e10622007-12-13 14:16:10 +0000655 len = (size > PAGE_SIZE) ? PAGE_SIZE : size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Milan Broz91e10622007-12-13 14:16:10 +0000657 if (!bio_add_page(clone, page, len, 0)) {
658 mempool_free(page, cc->page_pool);
659 break;
660 }
661
662 size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Milan Broz8b004452006-10-03 01:15:37 -0700665 if (!clone->bi_size) {
666 bio_put(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return NULL;
668 }
669
Milan Broz8b004452006-10-03 01:15:37 -0700670 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Neil Brown644bd2f2007-10-16 13:48:46 +0200673static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Neil Brown644bd2f2007-10-16 13:48:46 +0200675 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct bio_vec *bv;
677
Neil Brown644bd2f2007-10-16 13:48:46 +0200678 for (i = 0; i < clone->bi_vcnt; i++) {
Milan Broz8b004452006-10-03 01:15:37 -0700679 bv = bio_iovec_idx(clone, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 BUG_ON(!bv->bv_page);
681 mempool_free(bv->bv_page, cc->page_pool);
682 bv->bv_page = NULL;
683 }
684}
685
Milan Brozdc440d1e2008-10-10 13:37:03 +0100686static struct dm_crypt_io *crypt_io_alloc(struct dm_target *ti,
687 struct bio *bio, sector_t sector)
688{
689 struct crypt_config *cc = ti->private;
690 struct dm_crypt_io *io;
691
692 io = mempool_alloc(cc->io_pool, GFP_NOIO);
693 io->target = ti;
694 io->base_bio = bio;
695 io->sector = sector;
696 io->error = 0;
Milan Broz393b47e2008-10-21 17:45:02 +0100697 io->base_io = NULL;
Milan Brozdc440d1e2008-10-10 13:37:03 +0100698 atomic_set(&io->pending, 0);
699
700 return io;
701}
702
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100703static void crypt_inc_pending(struct dm_crypt_io *io)
704{
705 atomic_inc(&io->pending);
706}
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708/*
709 * One of the bios was finished. Check for completion of
710 * the whole request and correctly clean up the buffer.
Milan Broz393b47e2008-10-21 17:45:02 +0100711 * If base_io is set, wait for the last fragment to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 */
Milan Broz5742fd72008-02-08 02:10:43 +0000713static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Milan Broz5742fd72008-02-08 02:10:43 +0000715 struct crypt_config *cc = io->target->private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000716 struct bio *base_bio = io->base_bio;
717 struct dm_crypt_io *base_io = io->base_io;
718 int error = io->error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (!atomic_dec_and_test(&io->pending))
721 return;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 mempool_free(io, cc->io_pool);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000724
725 if (likely(!base_io))
726 bio_endio(base_bio, error);
727 else {
728 if (error && !base_io->error)
729 base_io->error = error;
730 crypt_dec_pending(base_io);
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734/*
Milan Brozcabf08e2007-10-19 22:38:58 +0100735 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *
737 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -0700738 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +0100739 *
740 * kcryptd performs the actual encryption or decryption.
741 *
742 * kcryptd_io performs the IO submission.
743 *
744 * They must be separated as otherwise the final stages could be
745 * starved by new requests which can block in the first stages due
746 * to memory allocation.
Andi Kleenc0297722011-01-13 19:59:53 +0000747 *
748 * The work is done per CPU global for all dm-crypt instances.
749 * They should not depend on each other and do not block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 */
NeilBrown6712ecf2007-09-27 12:47:43 +0200751static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -0700752{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100753 struct dm_crypt_io *io = clone->bi_private;
Milan Broz8b004452006-10-03 01:15:37 -0700754 struct crypt_config *cc = io->target->private;
Milan Brozee7a4912008-02-08 02:10:46 +0000755 unsigned rw = bio_data_dir(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700756
Milan Brozadfe4772007-12-13 14:15:51 +0000757 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
758 error = -EIO;
759
Milan Broz8b004452006-10-03 01:15:37 -0700760 /*
NeilBrown6712ecf2007-09-27 12:47:43 +0200761 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -0700762 */
Milan Brozee7a4912008-02-08 02:10:46 +0000763 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +0200764 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +0000765
766 bio_put(clone);
767
768 if (rw == READ && !error) {
769 kcryptd_queue_crypt(io);
770 return;
NeilBrown6712ecf2007-09-27 12:47:43 +0200771 }
Milan Broz8b004452006-10-03 01:15:37 -0700772
Milan Brozadfe4772007-12-13 14:15:51 +0000773 if (unlikely(error))
Milan Broz5742fd72008-02-08 02:10:43 +0000774 io->error = error;
775
776 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700777}
778
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100779static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -0700780{
781 struct crypt_config *cc = io->target->private;
782
783 clone->bi_private = io;
784 clone->bi_end_io = crypt_endio;
785 clone->bi_bdev = cc->dev->bdev;
786 clone->bi_rw = io->base_bio->bi_rw;
Olaf Kirch027581f2007-05-09 02:32:52 -0700787 clone->bi_destructor = dm_crypt_bio_destructor;
Milan Broz8b004452006-10-03 01:15:37 -0700788}
789
Milan Broz4e4eef62008-02-08 02:10:49 +0000790static void kcryptd_io_read(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700791{
792 struct crypt_config *cc = io->target->private;
793 struct bio *base_bio = io->base_bio;
794 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700795
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100796 crypt_inc_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700797
798 /*
799 * The block layer might modify the bvec array, so always
800 * copy the required bvecs because we need the original
801 * one in order to decrypt the whole bio data *afterwards*.
802 */
Milan Broz6a24c712006-10-03 01:15:40 -0700803 clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs);
Milan Broz93e605c2006-10-03 01:15:38 -0700804 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000805 io->error = -ENOMEM;
806 crypt_dec_pending(io);
Milan Broz23541d22006-10-03 01:15:39 -0700807 return;
Milan Broz93e605c2006-10-03 01:15:38 -0700808 }
Milan Broz8b004452006-10-03 01:15:37 -0700809
810 clone_init(io, clone);
811 clone->bi_idx = 0;
812 clone->bi_vcnt = bio_segments(base_bio);
813 clone->bi_size = base_bio->bi_size;
Milan Broz0c395b02008-02-08 02:10:54 +0000814 clone->bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -0700815 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
816 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700817
Milan Broz93e605c2006-10-03 01:15:38 -0700818 generic_make_request(clone);
Milan Broz8b004452006-10-03 01:15:37 -0700819}
820
Milan Broz4e4eef62008-02-08 02:10:49 +0000821static void kcryptd_io_write(struct dm_crypt_io *io)
822{
Milan Broz95497a92008-02-08 02:11:12 +0000823 struct bio *clone = io->ctx.bio_out;
Milan Broz95497a92008-02-08 02:11:12 +0000824 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000825}
826
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000827static void kcryptd_io(struct work_struct *work)
828{
829 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
830
831 if (bio_data_dir(io->base_bio) == READ)
832 kcryptd_io_read(io);
833 else
834 kcryptd_io_write(io);
835}
836
837static void kcryptd_queue_io(struct dm_crypt_io *io)
838{
839 struct crypt_config *cc = io->target->private;
840
841 INIT_WORK(&io->work, kcryptd_io);
842 queue_work(cc->io_queue, &io->work);
843}
844
Milan Broz95497a92008-02-08 02:11:12 +0000845static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io,
846 int error, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +0000847{
Milan Brozdec1ced2008-02-08 02:10:57 +0000848 struct bio *clone = io->ctx.bio_out;
849 struct crypt_config *cc = io->target->private;
850
851 if (unlikely(error < 0)) {
852 crypt_free_buffer_pages(cc, clone);
853 bio_put(clone);
854 io->error = -EIO;
Milan Broz6c031f42008-10-10 13:37:06 +0100855 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000856 return;
857 }
858
859 /* crypt_convert should have filled the clone bio */
860 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
861
862 clone->bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +0000863
Milan Broz95497a92008-02-08 02:11:12 +0000864 if (async)
865 kcryptd_queue_io(io);
Alasdair G Kergon1e37bb8e2008-10-10 13:37:05 +0100866 else
Milan Broz95497a92008-02-08 02:11:12 +0000867 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000868}
869
Milan Brozfc5a5e92008-10-10 13:37:04 +0100870static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700871{
872 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700873 struct bio *clone;
Milan Broz393b47e2008-10-21 17:45:02 +0100874 struct dm_crypt_io *new_io;
Milan Brozc8081612008-10-10 13:37:08 +0100875 int crypt_finished;
Milan Broz933f01d2008-10-10 13:37:08 +0100876 unsigned out_of_pages = 0;
Milan Brozdec1ced2008-02-08 02:10:57 +0000877 unsigned remaining = io->base_bio->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100878 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +0000879 int r;
Milan Broz8b004452006-10-03 01:15:37 -0700880
Milan Broz93e605c2006-10-03 01:15:38 -0700881 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +0100882 * Prevent io from disappearing until this function completes.
883 */
884 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +0100885 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +0100886
887 /*
Milan Broz93e605c2006-10-03 01:15:38 -0700888 * The allocated buffers can be smaller than the whole bio,
889 * so repeat the whole process until all the data can be handled.
890 */
891 while (remaining) {
Milan Broz933f01d2008-10-10 13:37:08 +0100892 clone = crypt_alloc_buffer(io, remaining, &out_of_pages);
Milan Broz23541d22006-10-03 01:15:39 -0700893 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000894 io->error = -ENOMEM;
Milan Brozfc5a5e92008-10-10 13:37:04 +0100895 break;
Milan Broz23541d22006-10-03 01:15:39 -0700896 }
Milan Broz93e605c2006-10-03 01:15:38 -0700897
Milan Broz53017032008-02-08 02:10:38 +0000898 io->ctx.bio_out = clone;
899 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700900
Milan Broz93e605c2006-10-03 01:15:38 -0700901 remaining -= clone->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100902 sector += bio_sectors(clone);
Milan Brozdec1ced2008-02-08 02:10:57 +0000903
Milan Broz4e594092008-10-10 13:37:07 +0100904 crypt_inc_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000905 r = crypt_convert(cc, &io->ctx);
Milan Brozc8081612008-10-10 13:37:08 +0100906 crypt_finished = atomic_dec_and_test(&io->ctx.pending);
Milan Brozdec1ced2008-02-08 02:10:57 +0000907
Milan Brozc8081612008-10-10 13:37:08 +0100908 /* Encryption was already finished, submit io now */
909 if (crypt_finished) {
Milan Broz3a7f6c92008-02-08 02:11:14 +0000910 kcryptd_crypt_write_io_submit(io, r, 0);
Milan Brozc8081612008-10-10 13:37:08 +0100911
912 /*
913 * If there was an error, do not try next fragments.
914 * For async, error is processed in async handler.
915 */
Milan Broz6c031f42008-10-10 13:37:06 +0100916 if (unlikely(r < 0))
Milan Brozfc5a5e92008-10-10 13:37:04 +0100917 break;
Milan Brozb635b002008-10-21 17:45:00 +0100918
919 io->sector = sector;
Milan Broz4e594092008-10-10 13:37:07 +0100920 }
Milan Broz93e605c2006-10-03 01:15:38 -0700921
Milan Broz933f01d2008-10-10 13:37:08 +0100922 /*
923 * Out of memory -> run queues
924 * But don't wait if split was due to the io size restriction
925 */
926 if (unlikely(out_of_pages))
Jens Axboe8aa7e842009-07-09 14:52:32 +0200927 congestion_wait(BLK_RW_ASYNC, HZ/100);
Milan Broz933f01d2008-10-10 13:37:08 +0100928
Milan Broz393b47e2008-10-21 17:45:02 +0100929 /*
930 * With async crypto it is unsafe to share the crypto context
931 * between fragments, so switch to a new dm_crypt_io structure.
932 */
933 if (unlikely(!crypt_finished && remaining)) {
934 new_io = crypt_io_alloc(io->target, io->base_bio,
935 sector);
936 crypt_inc_pending(new_io);
937 crypt_convert_init(cc, &new_io->ctx, NULL,
938 io->base_bio, sector);
939 new_io->ctx.idx_in = io->ctx.idx_in;
940 new_io->ctx.offset_in = io->ctx.offset_in;
941
942 /*
943 * Fragments after the first use the base_io
944 * pending count.
945 */
946 if (!io->base_io)
947 new_io->base_io = io;
948 else {
949 new_io->base_io = io->base_io;
950 crypt_inc_pending(io->base_io);
951 crypt_dec_pending(io);
952 }
953
954 io = new_io;
955 }
Milan Broz8b004452006-10-03 01:15:37 -0700956 }
Milan Broz899c95d2008-02-08 02:11:02 +0000957
958 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +0000959}
960
Milan Broz4e4eef62008-02-08 02:10:49 +0000961static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
Milan Broz5742fd72008-02-08 02:10:43 +0000962{
963 if (unlikely(error < 0))
964 io->error = -EIO;
965
966 crypt_dec_pending(io);
967}
968
Milan Broz4e4eef62008-02-08 02:10:49 +0000969static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700970{
971 struct crypt_config *cc = io->target->private;
Milan Broz5742fd72008-02-08 02:10:43 +0000972 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700973
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100974 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000975
Milan Broz53017032008-02-08 02:10:38 +0000976 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +0000977 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700978
Milan Broz5742fd72008-02-08 02:10:43 +0000979 r = crypt_convert(cc, &io->ctx);
980
Milan Broz3f1e9072008-03-28 14:16:07 -0700981 if (atomic_dec_and_test(&io->ctx.pending))
Milan Broz3a7f6c92008-02-08 02:11:14 +0000982 kcryptd_crypt_read_done(io, r);
983
984 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700985}
986
Milan Broz95497a92008-02-08 02:11:12 +0000987static void kcryptd_async_done(struct crypto_async_request *async_req,
988 int error)
989{
Huang Yingb2174ee2009-03-16 17:44:33 +0000990 struct dm_crypt_request *dmreq = async_req->data;
991 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +0000992 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
993 struct crypt_config *cc = io->target->private;
994
995 if (error == -EINPROGRESS) {
996 complete(&ctx->restart);
997 return;
998 }
999
Huang Yingb2174ee2009-03-16 17:44:33 +00001000 mempool_free(req_of_dmreq(cc, dmreq), cc->req_pool);
Milan Broz95497a92008-02-08 02:11:12 +00001001
1002 if (!atomic_dec_and_test(&ctx->pending))
1003 return;
1004
1005 if (bio_data_dir(io->base_bio) == READ)
1006 kcryptd_crypt_read_done(io, error);
1007 else
1008 kcryptd_crypt_write_io_submit(io, error, 1);
1009}
1010
Milan Broz4e4eef62008-02-08 02:10:49 +00001011static void kcryptd_crypt(struct work_struct *work)
1012{
1013 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1014
1015 if (bio_data_dir(io->base_bio) == READ)
1016 kcryptd_crypt_read_convert(io);
1017 else
1018 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -07001019}
1020
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001021static void kcryptd_queue_crypt(struct dm_crypt_io *io)
1022{
1023 struct crypt_config *cc = io->target->private;
1024
1025 INIT_WORK(&io->work, kcryptd_crypt);
1026 queue_work(cc->crypt_queue, &io->work);
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/*
1030 * Decode key from its hex representation
1031 */
1032static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1033{
1034 char buffer[3];
1035 char *endp;
1036 unsigned int i;
1037
1038 buffer[2] = '\0';
1039
Milan Broz8b004452006-10-03 01:15:37 -07001040 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 buffer[0] = *hex++;
1042 buffer[1] = *hex++;
1043
1044 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
1045
1046 if (endp != &buffer[2])
1047 return -EINVAL;
1048 }
1049
1050 if (*hex != '\0')
1051 return -EINVAL;
1052
1053 return 0;
1054}
1055
1056/*
1057 * Encode key into its hex representation
1058 */
1059static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
1060{
1061 unsigned int i;
1062
Milan Broz8b004452006-10-03 01:15:37 -07001063 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 sprintf(hex, "%02x", *key);
1065 hex += 2;
1066 key++;
1067 }
1068}
1069
Andi Kleenc0297722011-01-13 19:59:53 +00001070static int crypt_setkey_allcpus(struct crypt_config *cc)
1071{
1072 int cpu, err = 0, r;
1073
1074 for_each_possible_cpu(cpu) {
1075 r = crypto_ablkcipher_setkey(per_cpu_ptr(cc->cpu, cpu)->tfm,
1076 cc->key, cc->key_size);
1077 if (r)
1078 err = r;
1079 }
1080
1081 return err;
1082}
1083
Milan Broze48d4bb2006-10-03 01:15:37 -07001084static int crypt_set_key(struct crypt_config *cc, char *key)
1085{
Milan Broz69a8cfc2011-01-13 19:59:49 +00001086 /* The key size may not be changed. */
1087 if (cc->key_size != (strlen(key) >> 1))
Milan Broze48d4bb2006-10-03 01:15:37 -07001088 return -EINVAL;
1089
Milan Broz69a8cfc2011-01-13 19:59:49 +00001090 /* Hyphen (which gives a key_size of zero) means there is no key. */
1091 if (!cc->key_size && strcmp(key, "-"))
1092 return -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07001093
Milan Broz69a8cfc2011-01-13 19:59:49 +00001094 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
Milan Broze48d4bb2006-10-03 01:15:37 -07001095 return -EINVAL;
1096
1097 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1098
Andi Kleenc0297722011-01-13 19:59:53 +00001099 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001100}
1101
1102static int crypt_wipe_key(struct crypt_config *cc)
1103{
1104 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1105 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Andi Kleenc0297722011-01-13 19:59:53 +00001106
1107 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001108}
1109
Milan Broz28513fc2010-08-12 04:14:06 +01001110static void crypt_dtr(struct dm_target *ti)
1111{
1112 struct crypt_config *cc = ti->private;
Andi Kleenc0297722011-01-13 19:59:53 +00001113 struct crypt_cpu *cpu_cc;
1114 int cpu;
Milan Broz28513fc2010-08-12 04:14:06 +01001115
1116 ti->private = NULL;
1117
1118 if (!cc)
1119 return;
1120
1121 if (cc->io_queue)
1122 destroy_workqueue(cc->io_queue);
1123 if (cc->crypt_queue)
1124 destroy_workqueue(cc->crypt_queue);
1125
Andi Kleenc0297722011-01-13 19:59:53 +00001126 if (cc->cpu)
1127 for_each_possible_cpu(cpu) {
1128 cpu_cc = per_cpu_ptr(cc->cpu, cpu);
1129 if (cpu_cc->req)
1130 mempool_free(cpu_cc->req, cc->req_pool);
1131 if (cpu_cc->tfm)
1132 crypto_free_ablkcipher(cpu_cc->tfm);
1133 }
1134
Milan Broz28513fc2010-08-12 04:14:06 +01001135 if (cc->bs)
1136 bioset_free(cc->bs);
1137
1138 if (cc->page_pool)
1139 mempool_destroy(cc->page_pool);
1140 if (cc->req_pool)
1141 mempool_destroy(cc->req_pool);
1142 if (cc->io_pool)
1143 mempool_destroy(cc->io_pool);
1144
1145 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1146 cc->iv_gen_ops->dtr(cc);
1147
Milan Broz28513fc2010-08-12 04:14:06 +01001148 if (cc->dev)
1149 dm_put_device(ti, cc->dev);
1150
Andi Kleenc0297722011-01-13 19:59:53 +00001151 if (cc->cpu)
1152 free_percpu(cc->cpu);
1153
Milan Broz5ebaee62010-08-12 04:14:07 +01001154 kzfree(cc->cipher);
Milan Broz7dbcd132011-01-13 19:59:52 +00001155 kzfree(cc->cipher_string);
Milan Broz28513fc2010-08-12 04:14:06 +01001156
1157 /* Must zero key material before freeing */
1158 kzfree(cc);
1159}
1160
Milan Broz5ebaee62010-08-12 04:14:07 +01001161static int crypt_ctr_cipher(struct dm_target *ti,
1162 char *cipher_in, char *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Milan Broz5ebaee62010-08-12 04:14:07 +01001164 struct crypt_config *cc = ti->private;
Andi Kleenc0297722011-01-13 19:59:53 +00001165 struct crypto_ablkcipher *tfm;
Milan Broz5ebaee62010-08-12 04:14:07 +01001166 char *tmp, *cipher, *chainmode, *ivmode, *ivopts;
1167 char *cipher_api = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +00001168 int cpu, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Milan Broz5ebaee62010-08-12 04:14:07 +01001170 /* Convert to crypto api definition? */
1171 if (strchr(cipher_in, '(')) {
1172 ti->error = "Bad cipher specification";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return -EINVAL;
1174 }
1175
Milan Broz7dbcd132011-01-13 19:59:52 +00001176 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1177 if (!cc->cipher_string)
1178 goto bad_mem;
1179
Milan Broz5ebaee62010-08-12 04:14:07 +01001180 /*
1181 * Legacy dm-crypt cipher specification
1182 * cipher-mode-iv:ivopts
1183 */
1184 tmp = cipher_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 cipher = strsep(&tmp, "-");
Milan Broz5ebaee62010-08-12 04:14:07 +01001186
1187 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1188 if (!cc->cipher)
1189 goto bad_mem;
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 chainmode = strsep(&tmp, "-");
1192 ivopts = strsep(&tmp, "-");
1193 ivmode = strsep(&ivopts, ":");
1194
1195 if (tmp)
Milan Broz5ebaee62010-08-12 04:14:07 +01001196 DMWARN("Ignoring unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Andi Kleenc0297722011-01-13 19:59:53 +00001198 cc->cpu = alloc_percpu(struct crypt_cpu);
1199 if (!cc->cpu) {
1200 ti->error = "Cannot allocate per cpu state";
1201 goto bad_mem;
1202 }
1203
Milan Broz7dbcd132011-01-13 19:59:52 +00001204 /*
1205 * For compatibility with the original dm-crypt mapping format, if
1206 * only the cipher name is supplied, use cbc-plain.
1207 */
Milan Broz5ebaee62010-08-12 04:14:07 +01001208 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 chainmode = "cbc";
1210 ivmode = "plain";
1211 }
1212
Herbert Xud1806f62006-08-22 20:29:17 +10001213 if (strcmp(chainmode, "ecb") && !ivmode) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001214 ti->error = "IV mechanism required";
1215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
Milan Broz5ebaee62010-08-12 04:14:07 +01001218 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1219 if (!cipher_api)
1220 goto bad_mem;
1221
1222 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1223 "%s(%s)", chainmode, cipher);
1224 if (ret < 0) {
1225 kfree(cipher_api);
1226 goto bad_mem;
Herbert Xud1806f62006-08-22 20:29:17 +10001227 }
1228
Milan Broz5ebaee62010-08-12 04:14:07 +01001229 /* Allocate cipher */
Andi Kleenc0297722011-01-13 19:59:53 +00001230 for_each_possible_cpu(cpu) {
1231 tfm = crypto_alloc_ablkcipher(cipher_api, 0, 0);
1232 if (IS_ERR(tfm)) {
1233 ret = PTR_ERR(tfm);
1234 ti->error = "Error allocating crypto tfm";
1235 goto bad;
1236 }
1237 per_cpu_ptr(cc->cpu, cpu)->tfm = tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Milan Broz5ebaee62010-08-12 04:14:07 +01001240 /* Initialize and set key */
1241 ret = crypt_set_key(cc, key);
Milan Broz28513fc2010-08-12 04:14:06 +01001242 if (ret < 0) {
Milan Broz0b430952009-12-10 23:51:55 +00001243 ti->error = "Error decoding and setting key";
Milan Broz28513fc2010-08-12 04:14:06 +01001244 goto bad;
Milan Broz0b430952009-12-10 23:51:55 +00001245 }
1246
Milan Broz5ebaee62010-08-12 04:14:07 +01001247 /* Initialize IV */
Andi Kleenc0297722011-01-13 19:59:53 +00001248 cc->iv_size = crypto_ablkcipher_ivsize(any_tfm(cc));
Milan Broz5ebaee62010-08-12 04:14:07 +01001249 if (cc->iv_size)
1250 /* at least a 64 bit sector number should fit in our buffer */
1251 cc->iv_size = max(cc->iv_size,
1252 (unsigned int)(sizeof(u64) / sizeof(u8)));
1253 else if (ivmode) {
1254 DMWARN("Selected cipher does not support IVs");
1255 ivmode = NULL;
1256 }
1257
1258 /* Choose ivmode, see comments at iv code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (ivmode == NULL)
1260 cc->iv_gen_ops = NULL;
1261 else if (strcmp(ivmode, "plain") == 0)
1262 cc->iv_gen_ops = &crypt_iv_plain_ops;
Milan Broz61afef62009-12-10 23:52:25 +00001263 else if (strcmp(ivmode, "plain64") == 0)
1264 cc->iv_gen_ops = &crypt_iv_plain64_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 else if (strcmp(ivmode, "essiv") == 0)
1266 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001267 else if (strcmp(ivmode, "benbi") == 0)
1268 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001269 else if (strcmp(ivmode, "null") == 0)
1270 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 else {
Milan Broz5ebaee62010-08-12 04:14:07 +01001272 ret = -EINVAL;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001273 ti->error = "Invalid IV mode";
Milan Broz28513fc2010-08-12 04:14:06 +01001274 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276
Milan Broz28513fc2010-08-12 04:14:06 +01001277 /* Allocate IV */
1278 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1279 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1280 if (ret < 0) {
1281 ti->error = "Error creating IV";
1282 goto bad;
1283 }
Milan Brozb95bf2d2009-12-10 23:51:56 +00001284 }
1285
Milan Broz28513fc2010-08-12 04:14:06 +01001286 /* Initialize IV (set keys for ESSIV etc) */
1287 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1288 ret = cc->iv_gen_ops->init(cc);
1289 if (ret < 0) {
1290 ti->error = "Error initialising IV";
1291 goto bad;
1292 }
1293 }
1294
Milan Broz5ebaee62010-08-12 04:14:07 +01001295 ret = 0;
1296bad:
1297 kfree(cipher_api);
1298 return ret;
1299
1300bad_mem:
1301 ti->error = "Cannot allocate cipher strings";
1302 return -ENOMEM;
1303}
1304
1305/*
1306 * Construct an encryption mapping:
1307 * <cipher> <key> <iv_offset> <dev_path> <start>
1308 */
1309static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1310{
1311 struct crypt_config *cc;
1312 unsigned int key_size;
1313 unsigned long long tmpll;
1314 int ret;
1315
1316 if (argc != 5) {
1317 ti->error = "Not enough arguments";
1318 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
Milan Broz5ebaee62010-08-12 04:14:07 +01001321 key_size = strlen(argv[1]) >> 1;
1322
1323 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1324 if (!cc) {
1325 ti->error = "Cannot allocate encryption context";
1326 return -ENOMEM;
1327 }
Milan Broz69a8cfc2011-01-13 19:59:49 +00001328 cc->key_size = key_size;
Milan Broz5ebaee62010-08-12 04:14:07 +01001329
1330 ti->private = cc;
1331 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1332 if (ret < 0)
1333 goto bad;
1334
Milan Broz28513fc2010-08-12 04:14:06 +01001335 ret = -ENOMEM;
Matthew Dobson93d23412006-03-26 01:37:50 -08001336 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001338 ti->error = "Cannot allocate crypt io mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001339 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
Milan Brozddd42ed2008-02-08 02:11:07 +00001342 cc->dmreq_start = sizeof(struct ablkcipher_request);
Andi Kleenc0297722011-01-13 19:59:53 +00001343 cc->dmreq_start += crypto_ablkcipher_reqsize(any_tfm(cc));
Milan Brozddd42ed2008-02-08 02:11:07 +00001344 cc->dmreq_start = ALIGN(cc->dmreq_start, crypto_tfm_ctx_alignment());
Andi Kleenc0297722011-01-13 19:59:53 +00001345 cc->dmreq_start += crypto_ablkcipher_alignmask(any_tfm(cc)) &
Milan Broz3a7f6c92008-02-08 02:11:14 +00001346 ~(crypto_tfm_ctx_alignment() - 1);
Milan Brozddd42ed2008-02-08 02:11:07 +00001347
1348 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
1349 sizeof(struct dm_crypt_request) + cc->iv_size);
1350 if (!cc->req_pool) {
1351 ti->error = "Cannot allocate crypt request mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001352 goto bad;
Milan Brozddd42ed2008-02-08 02:11:07 +00001353 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001354
Matthew Dobsona19b27c2006-03-26 01:37:45 -08001355 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001357 ti->error = "Cannot allocate page mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001358 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
Jens Axboebb799ca2008-12-10 15:35:05 +01001361 cc->bs = bioset_create(MIN_IOS, 0);
Milan Broz6a24c712006-10-03 01:15:40 -07001362 if (!cc->bs) {
1363 ti->error = "Cannot allocate crypt bioset";
Milan Broz28513fc2010-08-12 04:14:06 +01001364 goto bad;
Milan Broz6a24c712006-10-03 01:15:40 -07001365 }
1366
Milan Broz28513fc2010-08-12 04:14:06 +01001367 ret = -EINVAL;
Andrew Morton4ee218c2006-03-27 01:17:48 -08001368 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001369 ti->error = "Invalid iv_offset sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001370 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001372 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Milan Broz28513fc2010-08-12 04:14:06 +01001374 if (dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev)) {
1375 ti->error = "Device lookup failed";
1376 goto bad;
1377 }
1378
Andrew Morton4ee218c2006-03-27 01:17:48 -08001379 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001380 ti->error = "Invalid device sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001381 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001383 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Milan Broz28513fc2010-08-12 04:14:06 +01001385 ret = -ENOMEM;
Andi Kleenc0297722011-01-13 19:59:53 +00001386 cc->io_queue = alloc_workqueue("kcryptd_io",
1387 WQ_NON_REENTRANT|
1388 WQ_MEM_RECLAIM,
1389 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001390 if (!cc->io_queue) {
1391 ti->error = "Couldn't create kcryptd io queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001392 goto bad;
Milan Brozcabf08e2007-10-19 22:38:58 +01001393 }
1394
Andi Kleenc0297722011-01-13 19:59:53 +00001395 cc->crypt_queue = alloc_workqueue("kcryptd",
1396 WQ_NON_REENTRANT|
1397 WQ_CPU_INTENSIVE|
1398 WQ_MEM_RECLAIM,
1399 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001400 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001401 ti->error = "Couldn't create kcryptd queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001402 goto bad;
Milan Broz9934a8b2007-10-19 22:38:57 +01001403 }
1404
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001405 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407
Milan Broz28513fc2010-08-12 04:14:06 +01001408bad:
1409 crypt_dtr(ti);
1410 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413static int crypt_map(struct dm_target *ti, struct bio *bio,
1414 union map_info *map_context)
1415{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001416 struct dm_crypt_io *io;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001417 struct crypt_config *cc;
1418
Tejun Heod87f4c12010-09-03 11:56:19 +02001419 if (bio->bi_rw & REQ_FLUSH) {
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001420 cc = ti->private;
1421 bio->bi_bdev = cc->dev->bdev;
1422 return DM_MAPIO_REMAPPED;
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Alasdair G Kergonb441a2622010-08-12 04:14:11 +01001425 io = crypt_io_alloc(ti, bio, dm_target_offset(ti, bio->bi_sector));
Milan Brozcabf08e2007-10-19 22:38:58 +01001426
1427 if (bio_data_dir(io->base_bio) == READ)
1428 kcryptd_queue_io(io);
1429 else
1430 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001432 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435static int crypt_status(struct dm_target *ti, status_type_t type,
1436 char *result, unsigned int maxlen)
1437{
Milan Broz5ebaee62010-08-12 04:14:07 +01001438 struct crypt_config *cc = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 unsigned int sz = 0;
1440
1441 switch (type) {
1442 case STATUSTYPE_INFO:
1443 result[0] = '\0';
1444 break;
1445
1446 case STATUSTYPE_TABLE:
Milan Broz7dbcd132011-01-13 19:59:52 +00001447 DMEMIT("%s ", cc->cipher_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 if (cc->key_size > 0) {
1450 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1451 return -ENOMEM;
1452
1453 crypt_encode_key(result + sz, cc->key, cc->key_size);
1454 sz += cc->key_size << 1;
1455 } else {
1456 if (sz >= maxlen)
1457 return -ENOMEM;
1458 result[sz++] = '-';
1459 }
1460
Andrew Morton4ee218c2006-03-27 01:17:48 -08001461 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1462 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 break;
1464 }
1465 return 0;
1466}
1467
Milan Broze48d4bb2006-10-03 01:15:37 -07001468static void crypt_postsuspend(struct dm_target *ti)
1469{
1470 struct crypt_config *cc = ti->private;
1471
1472 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1473}
1474
1475static int crypt_preresume(struct dm_target *ti)
1476{
1477 struct crypt_config *cc = ti->private;
1478
1479 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1480 DMERR("aborting resume - crypt key is not set.");
1481 return -EAGAIN;
1482 }
1483
1484 return 0;
1485}
1486
1487static void crypt_resume(struct dm_target *ti)
1488{
1489 struct crypt_config *cc = ti->private;
1490
1491 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1492}
1493
1494/* Message interface
1495 * key set <key>
1496 * key wipe
1497 */
1498static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1499{
1500 struct crypt_config *cc = ti->private;
Milan Broz542da312009-12-10 23:51:57 +00001501 int ret = -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07001502
1503 if (argc < 2)
1504 goto error;
1505
1506 if (!strnicmp(argv[0], MESG_STR("key"))) {
1507 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1508 DMWARN("not suspended during key manipulation.");
1509 return -EINVAL;
1510 }
Milan Broz542da312009-12-10 23:51:57 +00001511 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set"))) {
1512 ret = crypt_set_key(cc, argv[2]);
1513 if (ret)
1514 return ret;
1515 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
1516 ret = cc->iv_gen_ops->init(cc);
1517 return ret;
1518 }
1519 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe"))) {
1520 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
1521 ret = cc->iv_gen_ops->wipe(cc);
1522 if (ret)
1523 return ret;
1524 }
Milan Broze48d4bb2006-10-03 01:15:37 -07001525 return crypt_wipe_key(cc);
Milan Broz542da312009-12-10 23:51:57 +00001526 }
Milan Broze48d4bb2006-10-03 01:15:37 -07001527 }
1528
1529error:
1530 DMWARN("unrecognised message received.");
1531 return -EINVAL;
1532}
1533
Milan Brozd41e26b2008-07-21 12:00:40 +01001534static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
1535 struct bio_vec *biovec, int max_size)
1536{
1537 struct crypt_config *cc = ti->private;
1538 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
1539
1540 if (!q->merge_bvec_fn)
1541 return max_size;
1542
1543 bvm->bi_bdev = cc->dev->bdev;
Alasdair G Kergonb441a2622010-08-12 04:14:11 +01001544 bvm->bi_sector = cc->start + dm_target_offset(ti, bvm->bi_sector);
Milan Brozd41e26b2008-07-21 12:00:40 +01001545
1546 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
1547}
1548
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001549static int crypt_iterate_devices(struct dm_target *ti,
1550 iterate_devices_callout_fn fn, void *data)
1551{
1552 struct crypt_config *cc = ti->private;
1553
Mike Snitzer5dea2712009-07-23 20:30:42 +01001554 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557static struct target_type crypt_target = {
1558 .name = "crypt",
Andi Kleenc0297722011-01-13 19:59:53 +00001559 .version = {1, 9, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .module = THIS_MODULE,
1561 .ctr = crypt_ctr,
1562 .dtr = crypt_dtr,
1563 .map = crypt_map,
1564 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001565 .postsuspend = crypt_postsuspend,
1566 .preresume = crypt_preresume,
1567 .resume = crypt_resume,
1568 .message = crypt_message,
Milan Brozd41e26b2008-07-21 12:00:40 +01001569 .merge = crypt_merge,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001570 .iterate_devices = crypt_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571};
1572
1573static int __init dm_crypt_init(void)
1574{
1575 int r;
1576
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001577 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (!_crypt_io_pool)
1579 return -ENOMEM;
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 r = dm_register_target(&crypt_target);
1582 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001583 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001584 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return r;
1588}
1589
1590static void __exit dm_crypt_exit(void)
1591{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001592 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 kmem_cache_destroy(_crypt_io_pool);
1594}
1595
1596module_init(dm_crypt_init);
1597module_exit(dm_crypt_exit);
1598
1599MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1600MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1601MODULE_LICENSE("GPL");