blob: dc4403bcc6a0bff010197752803bc7956b7ea9cf [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 Broz20c82532011-01-13 19:59:53 +0000790static void kcryptd_unplug(struct crypt_config *cc)
791{
792 blk_unplug(bdev_get_queue(cc->dev->bdev));
793}
794
795static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
Milan Broz8b004452006-10-03 01:15:37 -0700796{
797 struct crypt_config *cc = io->target->private;
798 struct bio *base_bio = io->base_bio;
799 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -0700800
Milan Broz8b004452006-10-03 01:15:37 -0700801 /*
802 * The block layer might modify the bvec array, so always
803 * copy the required bvecs because we need the original
804 * one in order to decrypt the whole bio data *afterwards*.
805 */
Milan Broz20c82532011-01-13 19:59:53 +0000806 clone = bio_alloc_bioset(gfp, bio_segments(base_bio), cc->bs);
807 if (!clone) {
808 kcryptd_unplug(cc);
809 return 1;
Milan Broz93e605c2006-10-03 01:15:38 -0700810 }
Milan Broz8b004452006-10-03 01:15:37 -0700811
Milan Broz20c82532011-01-13 19:59:53 +0000812 crypt_inc_pending(io);
813
Milan Broz8b004452006-10-03 01:15:37 -0700814 clone_init(io, clone);
815 clone->bi_idx = 0;
816 clone->bi_vcnt = bio_segments(base_bio);
817 clone->bi_size = base_bio->bi_size;
Milan Broz0c395b02008-02-08 02:10:54 +0000818 clone->bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -0700819 memcpy(clone->bi_io_vec, bio_iovec(base_bio),
820 sizeof(struct bio_vec) * clone->bi_vcnt);
Milan Broz8b004452006-10-03 01:15:37 -0700821
Milan Broz93e605c2006-10-03 01:15:38 -0700822 generic_make_request(clone);
Milan Broz20c82532011-01-13 19:59:53 +0000823 return 0;
Milan Broz8b004452006-10-03 01:15:37 -0700824}
825
Milan Broz4e4eef62008-02-08 02:10:49 +0000826static void kcryptd_io_write(struct dm_crypt_io *io)
827{
Milan Broz95497a92008-02-08 02:11:12 +0000828 struct bio *clone = io->ctx.bio_out;
Milan Broz95497a92008-02-08 02:11:12 +0000829 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000830}
831
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000832static void kcryptd_io(struct work_struct *work)
833{
834 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
835
Milan Broz20c82532011-01-13 19:59:53 +0000836 if (bio_data_dir(io->base_bio) == READ) {
837 crypt_inc_pending(io);
838 if (kcryptd_io_read(io, GFP_NOIO))
839 io->error = -ENOMEM;
840 crypt_dec_pending(io);
841 } else
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000842 kcryptd_io_write(io);
843}
844
845static void kcryptd_queue_io(struct dm_crypt_io *io)
846{
847 struct crypt_config *cc = io->target->private;
848
849 INIT_WORK(&io->work, kcryptd_io);
850 queue_work(cc->io_queue, &io->work);
851}
852
Milan Broz95497a92008-02-08 02:11:12 +0000853static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io,
854 int error, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +0000855{
Milan Brozdec1ced2008-02-08 02:10:57 +0000856 struct bio *clone = io->ctx.bio_out;
857 struct crypt_config *cc = io->target->private;
858
859 if (unlikely(error < 0)) {
860 crypt_free_buffer_pages(cc, clone);
861 bio_put(clone);
862 io->error = -EIO;
Milan Broz6c031f42008-10-10 13:37:06 +0100863 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000864 return;
865 }
866
867 /* crypt_convert should have filled the clone bio */
868 BUG_ON(io->ctx.idx_out < clone->bi_vcnt);
869
870 clone->bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +0000871
Milan Broz95497a92008-02-08 02:11:12 +0000872 if (async)
873 kcryptd_queue_io(io);
Alasdair G Kergon1e37bb82008-10-10 13:37:05 +0100874 else
Milan Broz95497a92008-02-08 02:11:12 +0000875 generic_make_request(clone);
Milan Broz4e4eef62008-02-08 02:10:49 +0000876}
877
Milan Brozfc5a5e92008-10-10 13:37:04 +0100878static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700879{
880 struct crypt_config *cc = io->target->private;
Milan Broz8b004452006-10-03 01:15:37 -0700881 struct bio *clone;
Milan Broz393b47e2008-10-21 17:45:02 +0100882 struct dm_crypt_io *new_io;
Milan Brozc8081612008-10-10 13:37:08 +0100883 int crypt_finished;
Milan Broz933f01d2008-10-10 13:37:08 +0100884 unsigned out_of_pages = 0;
Milan Brozdec1ced2008-02-08 02:10:57 +0000885 unsigned remaining = io->base_bio->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100886 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +0000887 int r;
Milan Broz8b004452006-10-03 01:15:37 -0700888
Milan Broz93e605c2006-10-03 01:15:38 -0700889 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +0100890 * Prevent io from disappearing until this function completes.
891 */
892 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +0100893 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +0100894
895 /*
Milan Broz93e605c2006-10-03 01:15:38 -0700896 * The allocated buffers can be smaller than the whole bio,
897 * so repeat the whole process until all the data can be handled.
898 */
899 while (remaining) {
Milan Broz933f01d2008-10-10 13:37:08 +0100900 clone = crypt_alloc_buffer(io, remaining, &out_of_pages);
Milan Broz23541d22006-10-03 01:15:39 -0700901 if (unlikely(!clone)) {
Milan Broz5742fd72008-02-08 02:10:43 +0000902 io->error = -ENOMEM;
Milan Brozfc5a5e92008-10-10 13:37:04 +0100903 break;
Milan Broz23541d22006-10-03 01:15:39 -0700904 }
Milan Broz93e605c2006-10-03 01:15:38 -0700905
Milan Broz53017032008-02-08 02:10:38 +0000906 io->ctx.bio_out = clone;
907 io->ctx.idx_out = 0;
Milan Broz93e605c2006-10-03 01:15:38 -0700908
Milan Broz93e605c2006-10-03 01:15:38 -0700909 remaining -= clone->bi_size;
Milan Brozb635b002008-10-21 17:45:00 +0100910 sector += bio_sectors(clone);
Milan Brozdec1ced2008-02-08 02:10:57 +0000911
Milan Broz4e594092008-10-10 13:37:07 +0100912 crypt_inc_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +0000913 r = crypt_convert(cc, &io->ctx);
Milan Brozc8081612008-10-10 13:37:08 +0100914 crypt_finished = atomic_dec_and_test(&io->ctx.pending);
Milan Brozdec1ced2008-02-08 02:10:57 +0000915
Milan Brozc8081612008-10-10 13:37:08 +0100916 /* Encryption was already finished, submit io now */
917 if (crypt_finished) {
Milan Broz3a7f6c92008-02-08 02:11:14 +0000918 kcryptd_crypt_write_io_submit(io, r, 0);
Milan Brozc8081612008-10-10 13:37:08 +0100919
920 /*
921 * If there was an error, do not try next fragments.
922 * For async, error is processed in async handler.
923 */
Milan Broz6c031f42008-10-10 13:37:06 +0100924 if (unlikely(r < 0))
Milan Brozfc5a5e92008-10-10 13:37:04 +0100925 break;
Milan Brozb635b002008-10-21 17:45:00 +0100926
927 io->sector = sector;
Milan Broz4e594092008-10-10 13:37:07 +0100928 }
Milan Broz93e605c2006-10-03 01:15:38 -0700929
Milan Broz933f01d2008-10-10 13:37:08 +0100930 /*
931 * Out of memory -> run queues
932 * But don't wait if split was due to the io size restriction
933 */
934 if (unlikely(out_of_pages))
Jens Axboe8aa7e842009-07-09 14:52:32 +0200935 congestion_wait(BLK_RW_ASYNC, HZ/100);
Milan Broz933f01d2008-10-10 13:37:08 +0100936
Milan Broz393b47e2008-10-21 17:45:02 +0100937 /*
938 * With async crypto it is unsafe to share the crypto context
939 * between fragments, so switch to a new dm_crypt_io structure.
940 */
941 if (unlikely(!crypt_finished && remaining)) {
942 new_io = crypt_io_alloc(io->target, io->base_bio,
943 sector);
944 crypt_inc_pending(new_io);
945 crypt_convert_init(cc, &new_io->ctx, NULL,
946 io->base_bio, sector);
947 new_io->ctx.idx_in = io->ctx.idx_in;
948 new_io->ctx.offset_in = io->ctx.offset_in;
949
950 /*
951 * Fragments after the first use the base_io
952 * pending count.
953 */
954 if (!io->base_io)
955 new_io->base_io = io;
956 else {
957 new_io->base_io = io->base_io;
958 crypt_inc_pending(io->base_io);
959 crypt_dec_pending(io);
960 }
961
962 io = new_io;
963 }
Milan Broz8b004452006-10-03 01:15:37 -0700964 }
Milan Broz899c95d2008-02-08 02:11:02 +0000965
966 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +0000967}
968
Milan Broz4e4eef62008-02-08 02:10:49 +0000969static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error)
Milan Broz5742fd72008-02-08 02:10:43 +0000970{
971 if (unlikely(error < 0))
972 io->error = -EIO;
973
974 crypt_dec_pending(io);
975}
976
Milan Broz4e4eef62008-02-08 02:10:49 +0000977static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -0700978{
979 struct crypt_config *cc = io->target->private;
Milan Broz5742fd72008-02-08 02:10:43 +0000980 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -0700981
Milan Broz3e1a8bd2008-10-10 13:37:02 +0100982 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000983
Milan Broz53017032008-02-08 02:10:38 +0000984 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +0000985 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -0700986
Milan Broz5742fd72008-02-08 02:10:43 +0000987 r = crypt_convert(cc, &io->ctx);
988
Milan Broz3f1e9072008-03-28 14:16:07 -0700989 if (atomic_dec_and_test(&io->ctx.pending))
Milan Broz3a7f6c92008-02-08 02:11:14 +0000990 kcryptd_crypt_read_done(io, r);
991
992 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -0700993}
994
Milan Broz95497a92008-02-08 02:11:12 +0000995static void kcryptd_async_done(struct crypto_async_request *async_req,
996 int error)
997{
Huang Yingb2174ee2009-03-16 17:44:33 +0000998 struct dm_crypt_request *dmreq = async_req->data;
999 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +00001000 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
1001 struct crypt_config *cc = io->target->private;
1002
1003 if (error == -EINPROGRESS) {
1004 complete(&ctx->restart);
1005 return;
1006 }
1007
Huang Yingb2174ee2009-03-16 17:44:33 +00001008 mempool_free(req_of_dmreq(cc, dmreq), cc->req_pool);
Milan Broz95497a92008-02-08 02:11:12 +00001009
1010 if (!atomic_dec_and_test(&ctx->pending))
1011 return;
1012
1013 if (bio_data_dir(io->base_bio) == READ)
1014 kcryptd_crypt_read_done(io, error);
1015 else
1016 kcryptd_crypt_write_io_submit(io, error, 1);
1017}
1018
Milan Broz4e4eef62008-02-08 02:10:49 +00001019static void kcryptd_crypt(struct work_struct *work)
1020{
1021 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1022
1023 if (bio_data_dir(io->base_bio) == READ)
1024 kcryptd_crypt_read_convert(io);
1025 else
1026 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -07001027}
1028
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001029static void kcryptd_queue_crypt(struct dm_crypt_io *io)
1030{
1031 struct crypt_config *cc = io->target->private;
1032
1033 INIT_WORK(&io->work, kcryptd_crypt);
1034 queue_work(cc->crypt_queue, &io->work);
1035}
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
1038 * Decode key from its hex representation
1039 */
1040static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1041{
1042 char buffer[3];
1043 char *endp;
1044 unsigned int i;
1045
1046 buffer[2] = '\0';
1047
Milan Broz8b004452006-10-03 01:15:37 -07001048 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 buffer[0] = *hex++;
1050 buffer[1] = *hex++;
1051
1052 key[i] = (u8)simple_strtoul(buffer, &endp, 16);
1053
1054 if (endp != &buffer[2])
1055 return -EINVAL;
1056 }
1057
1058 if (*hex != '\0')
1059 return -EINVAL;
1060
1061 return 0;
1062}
1063
1064/*
1065 * Encode key into its hex representation
1066 */
1067static void crypt_encode_key(char *hex, u8 *key, unsigned int size)
1068{
1069 unsigned int i;
1070
Milan Broz8b004452006-10-03 01:15:37 -07001071 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 sprintf(hex, "%02x", *key);
1073 hex += 2;
1074 key++;
1075 }
1076}
1077
Andi Kleenc0297722011-01-13 19:59:53 +00001078static int crypt_setkey_allcpus(struct crypt_config *cc)
1079{
1080 int cpu, err = 0, r;
1081
1082 for_each_possible_cpu(cpu) {
1083 r = crypto_ablkcipher_setkey(per_cpu_ptr(cc->cpu, cpu)->tfm,
1084 cc->key, cc->key_size);
1085 if (r)
1086 err = r;
1087 }
1088
1089 return err;
1090}
1091
Milan Broze48d4bb2006-10-03 01:15:37 -07001092static int crypt_set_key(struct crypt_config *cc, char *key)
1093{
Milan Broz69a8cfc2011-01-13 19:59:49 +00001094 /* The key size may not be changed. */
1095 if (cc->key_size != (strlen(key) >> 1))
Milan Broze48d4bb2006-10-03 01:15:37 -07001096 return -EINVAL;
1097
Milan Broz69a8cfc2011-01-13 19:59:49 +00001098 /* Hyphen (which gives a key_size of zero) means there is no key. */
1099 if (!cc->key_size && strcmp(key, "-"))
1100 return -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07001101
Milan Broz69a8cfc2011-01-13 19:59:49 +00001102 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
Milan Broze48d4bb2006-10-03 01:15:37 -07001103 return -EINVAL;
1104
1105 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1106
Andi Kleenc0297722011-01-13 19:59:53 +00001107 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001108}
1109
1110static int crypt_wipe_key(struct crypt_config *cc)
1111{
1112 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1113 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Andi Kleenc0297722011-01-13 19:59:53 +00001114
1115 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001116}
1117
Milan Broz28513fc2010-08-12 04:14:06 +01001118static void crypt_dtr(struct dm_target *ti)
1119{
1120 struct crypt_config *cc = ti->private;
Andi Kleenc0297722011-01-13 19:59:53 +00001121 struct crypt_cpu *cpu_cc;
1122 int cpu;
Milan Broz28513fc2010-08-12 04:14:06 +01001123
1124 ti->private = NULL;
1125
1126 if (!cc)
1127 return;
1128
1129 if (cc->io_queue)
1130 destroy_workqueue(cc->io_queue);
1131 if (cc->crypt_queue)
1132 destroy_workqueue(cc->crypt_queue);
1133
Andi Kleenc0297722011-01-13 19:59:53 +00001134 if (cc->cpu)
1135 for_each_possible_cpu(cpu) {
1136 cpu_cc = per_cpu_ptr(cc->cpu, cpu);
1137 if (cpu_cc->req)
1138 mempool_free(cpu_cc->req, cc->req_pool);
1139 if (cpu_cc->tfm)
1140 crypto_free_ablkcipher(cpu_cc->tfm);
1141 }
1142
Milan Broz28513fc2010-08-12 04:14:06 +01001143 if (cc->bs)
1144 bioset_free(cc->bs);
1145
1146 if (cc->page_pool)
1147 mempool_destroy(cc->page_pool);
1148 if (cc->req_pool)
1149 mempool_destroy(cc->req_pool);
1150 if (cc->io_pool)
1151 mempool_destroy(cc->io_pool);
1152
1153 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1154 cc->iv_gen_ops->dtr(cc);
1155
Milan Broz28513fc2010-08-12 04:14:06 +01001156 if (cc->dev)
1157 dm_put_device(ti, cc->dev);
1158
Andi Kleenc0297722011-01-13 19:59:53 +00001159 if (cc->cpu)
1160 free_percpu(cc->cpu);
1161
Milan Broz5ebaee62010-08-12 04:14:07 +01001162 kzfree(cc->cipher);
Milan Broz7dbcd132011-01-13 19:59:52 +00001163 kzfree(cc->cipher_string);
Milan Broz28513fc2010-08-12 04:14:06 +01001164
1165 /* Must zero key material before freeing */
1166 kzfree(cc);
1167}
1168
Milan Broz5ebaee62010-08-12 04:14:07 +01001169static int crypt_ctr_cipher(struct dm_target *ti,
1170 char *cipher_in, char *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Milan Broz5ebaee62010-08-12 04:14:07 +01001172 struct crypt_config *cc = ti->private;
Andi Kleenc0297722011-01-13 19:59:53 +00001173 struct crypto_ablkcipher *tfm;
Milan Broz5ebaee62010-08-12 04:14:07 +01001174 char *tmp, *cipher, *chainmode, *ivmode, *ivopts;
1175 char *cipher_api = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +00001176 int cpu, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Milan Broz5ebaee62010-08-12 04:14:07 +01001178 /* Convert to crypto api definition? */
1179 if (strchr(cipher_in, '(')) {
1180 ti->error = "Bad cipher specification";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return -EINVAL;
1182 }
1183
Milan Broz7dbcd132011-01-13 19:59:52 +00001184 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1185 if (!cc->cipher_string)
1186 goto bad_mem;
1187
Milan Broz5ebaee62010-08-12 04:14:07 +01001188 /*
1189 * Legacy dm-crypt cipher specification
1190 * cipher-mode-iv:ivopts
1191 */
1192 tmp = cipher_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 cipher = strsep(&tmp, "-");
Milan Broz5ebaee62010-08-12 04:14:07 +01001194
1195 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1196 if (!cc->cipher)
1197 goto bad_mem;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 chainmode = strsep(&tmp, "-");
1200 ivopts = strsep(&tmp, "-");
1201 ivmode = strsep(&ivopts, ":");
1202
1203 if (tmp)
Milan Broz5ebaee62010-08-12 04:14:07 +01001204 DMWARN("Ignoring unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Andi Kleenc0297722011-01-13 19:59:53 +00001206 cc->cpu = alloc_percpu(struct crypt_cpu);
1207 if (!cc->cpu) {
1208 ti->error = "Cannot allocate per cpu state";
1209 goto bad_mem;
1210 }
1211
Milan Broz7dbcd132011-01-13 19:59:52 +00001212 /*
1213 * For compatibility with the original dm-crypt mapping format, if
1214 * only the cipher name is supplied, use cbc-plain.
1215 */
Milan Broz5ebaee62010-08-12 04:14:07 +01001216 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 chainmode = "cbc";
1218 ivmode = "plain";
1219 }
1220
Herbert Xud1806f62006-08-22 20:29:17 +10001221 if (strcmp(chainmode, "ecb") && !ivmode) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001222 ti->error = "IV mechanism required";
1223 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
Milan Broz5ebaee62010-08-12 04:14:07 +01001226 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1227 if (!cipher_api)
1228 goto bad_mem;
1229
1230 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1231 "%s(%s)", chainmode, cipher);
1232 if (ret < 0) {
1233 kfree(cipher_api);
1234 goto bad_mem;
Herbert Xud1806f62006-08-22 20:29:17 +10001235 }
1236
Milan Broz5ebaee62010-08-12 04:14:07 +01001237 /* Allocate cipher */
Andi Kleenc0297722011-01-13 19:59:53 +00001238 for_each_possible_cpu(cpu) {
1239 tfm = crypto_alloc_ablkcipher(cipher_api, 0, 0);
1240 if (IS_ERR(tfm)) {
1241 ret = PTR_ERR(tfm);
1242 ti->error = "Error allocating crypto tfm";
1243 goto bad;
1244 }
1245 per_cpu_ptr(cc->cpu, cpu)->tfm = tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Milan Broz5ebaee62010-08-12 04:14:07 +01001248 /* Initialize and set key */
1249 ret = crypt_set_key(cc, key);
Milan Broz28513fc2010-08-12 04:14:06 +01001250 if (ret < 0) {
Milan Broz0b430952009-12-10 23:51:55 +00001251 ti->error = "Error decoding and setting key";
Milan Broz28513fc2010-08-12 04:14:06 +01001252 goto bad;
Milan Broz0b430952009-12-10 23:51:55 +00001253 }
1254
Milan Broz5ebaee62010-08-12 04:14:07 +01001255 /* Initialize IV */
Andi Kleenc0297722011-01-13 19:59:53 +00001256 cc->iv_size = crypto_ablkcipher_ivsize(any_tfm(cc));
Milan Broz5ebaee62010-08-12 04:14:07 +01001257 if (cc->iv_size)
1258 /* at least a 64 bit sector number should fit in our buffer */
1259 cc->iv_size = max(cc->iv_size,
1260 (unsigned int)(sizeof(u64) / sizeof(u8)));
1261 else if (ivmode) {
1262 DMWARN("Selected cipher does not support IVs");
1263 ivmode = NULL;
1264 }
1265
1266 /* Choose ivmode, see comments at iv code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (ivmode == NULL)
1268 cc->iv_gen_ops = NULL;
1269 else if (strcmp(ivmode, "plain") == 0)
1270 cc->iv_gen_ops = &crypt_iv_plain_ops;
Milan Broz61afef62009-12-10 23:52:25 +00001271 else if (strcmp(ivmode, "plain64") == 0)
1272 cc->iv_gen_ops = &crypt_iv_plain64_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 else if (strcmp(ivmode, "essiv") == 0)
1274 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001275 else if (strcmp(ivmode, "benbi") == 0)
1276 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001277 else if (strcmp(ivmode, "null") == 0)
1278 cc->iv_gen_ops = &crypt_iv_null_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 else {
Milan Broz5ebaee62010-08-12 04:14:07 +01001280 ret = -EINVAL;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001281 ti->error = "Invalid IV mode";
Milan Broz28513fc2010-08-12 04:14:06 +01001282 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284
Milan Broz28513fc2010-08-12 04:14:06 +01001285 /* Allocate IV */
1286 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1287 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1288 if (ret < 0) {
1289 ti->error = "Error creating IV";
1290 goto bad;
1291 }
Milan Brozb95bf2d2009-12-10 23:51:56 +00001292 }
1293
Milan Broz28513fc2010-08-12 04:14:06 +01001294 /* Initialize IV (set keys for ESSIV etc) */
1295 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1296 ret = cc->iv_gen_ops->init(cc);
1297 if (ret < 0) {
1298 ti->error = "Error initialising IV";
1299 goto bad;
1300 }
1301 }
1302
Milan Broz5ebaee62010-08-12 04:14:07 +01001303 ret = 0;
1304bad:
1305 kfree(cipher_api);
1306 return ret;
1307
1308bad_mem:
1309 ti->error = "Cannot allocate cipher strings";
1310 return -ENOMEM;
1311}
1312
1313/*
1314 * Construct an encryption mapping:
1315 * <cipher> <key> <iv_offset> <dev_path> <start>
1316 */
1317static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1318{
1319 struct crypt_config *cc;
1320 unsigned int key_size;
1321 unsigned long long tmpll;
1322 int ret;
1323
1324 if (argc != 5) {
1325 ti->error = "Not enough arguments";
1326 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
Milan Broz5ebaee62010-08-12 04:14:07 +01001329 key_size = strlen(argv[1]) >> 1;
1330
1331 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1332 if (!cc) {
1333 ti->error = "Cannot allocate encryption context";
1334 return -ENOMEM;
1335 }
Milan Broz69a8cfc2011-01-13 19:59:49 +00001336 cc->key_size = key_size;
Milan Broz5ebaee62010-08-12 04:14:07 +01001337
1338 ti->private = cc;
1339 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1340 if (ret < 0)
1341 goto bad;
1342
Milan Broz28513fc2010-08-12 04:14:06 +01001343 ret = -ENOMEM;
Matthew Dobson93d23412006-03-26 01:37:50 -08001344 cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (!cc->io_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001346 ti->error = "Cannot allocate crypt io mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001347 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349
Milan Brozddd42ed2008-02-08 02:11:07 +00001350 cc->dmreq_start = sizeof(struct ablkcipher_request);
Andi Kleenc0297722011-01-13 19:59:53 +00001351 cc->dmreq_start += crypto_ablkcipher_reqsize(any_tfm(cc));
Milan Brozddd42ed2008-02-08 02:11:07 +00001352 cc->dmreq_start = ALIGN(cc->dmreq_start, crypto_tfm_ctx_alignment());
Andi Kleenc0297722011-01-13 19:59:53 +00001353 cc->dmreq_start += crypto_ablkcipher_alignmask(any_tfm(cc)) &
Milan Broz3a7f6c92008-02-08 02:11:14 +00001354 ~(crypto_tfm_ctx_alignment() - 1);
Milan Brozddd42ed2008-02-08 02:11:07 +00001355
1356 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
1357 sizeof(struct dm_crypt_request) + cc->iv_size);
1358 if (!cc->req_pool) {
1359 ti->error = "Cannot allocate crypt request mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001360 goto bad;
Milan Brozddd42ed2008-02-08 02:11:07 +00001361 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001362
Matthew Dobsona19b27c2006-03-26 01:37:45 -08001363 cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001365 ti->error = "Cannot allocate page mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001366 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Jens Axboebb799ca2008-12-10 15:35:05 +01001369 cc->bs = bioset_create(MIN_IOS, 0);
Milan Broz6a24c712006-10-03 01:15:40 -07001370 if (!cc->bs) {
1371 ti->error = "Cannot allocate crypt bioset";
Milan Broz28513fc2010-08-12 04:14:06 +01001372 goto bad;
Milan Broz6a24c712006-10-03 01:15:40 -07001373 }
1374
Milan Broz28513fc2010-08-12 04:14:06 +01001375 ret = -EINVAL;
Andrew Morton4ee218c2006-03-27 01:17:48 -08001376 if (sscanf(argv[2], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001377 ti->error = "Invalid iv_offset sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001378 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001380 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Milan Broz28513fc2010-08-12 04:14:06 +01001382 if (dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev)) {
1383 ti->error = "Device lookup failed";
1384 goto bad;
1385 }
1386
Andrew Morton4ee218c2006-03-27 01:17:48 -08001387 if (sscanf(argv[4], "%llu", &tmpll) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001388 ti->error = "Invalid device sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001389 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001391 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Milan Broz28513fc2010-08-12 04:14:06 +01001393 ret = -ENOMEM;
Andi Kleenc0297722011-01-13 19:59:53 +00001394 cc->io_queue = alloc_workqueue("kcryptd_io",
1395 WQ_NON_REENTRANT|
1396 WQ_MEM_RECLAIM,
1397 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001398 if (!cc->io_queue) {
1399 ti->error = "Couldn't create kcryptd io queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001400 goto bad;
Milan Brozcabf08e2007-10-19 22:38:58 +01001401 }
1402
Andi Kleenc0297722011-01-13 19:59:53 +00001403 cc->crypt_queue = alloc_workqueue("kcryptd",
1404 WQ_NON_REENTRANT|
1405 WQ_CPU_INTENSIVE|
1406 WQ_MEM_RECLAIM,
1407 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001408 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001409 ti->error = "Couldn't create kcryptd queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001410 goto bad;
Milan Broz9934a8b2007-10-19 22:38:57 +01001411 }
1412
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001413 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return 0;
1415
Milan Broz28513fc2010-08-12 04:14:06 +01001416bad:
1417 crypt_dtr(ti);
1418 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421static int crypt_map(struct dm_target *ti, struct bio *bio,
1422 union map_info *map_context)
1423{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001424 struct dm_crypt_io *io;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001425 struct crypt_config *cc;
1426
Tejun Heod87f4c12010-09-03 11:56:19 +02001427 if (bio->bi_rw & REQ_FLUSH) {
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001428 cc = ti->private;
1429 bio->bi_bdev = cc->dev->bdev;
1430 return DM_MAPIO_REMAPPED;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Alasdair G Kergonb441a2622010-08-12 04:14:11 +01001433 io = crypt_io_alloc(ti, bio, dm_target_offset(ti, bio->bi_sector));
Milan Brozcabf08e2007-10-19 22:38:58 +01001434
Milan Broz20c82532011-01-13 19:59:53 +00001435 if (bio_data_dir(io->base_bio) == READ) {
1436 if (kcryptd_io_read(io, GFP_NOWAIT))
1437 kcryptd_queue_io(io);
1438 } else
Milan Brozcabf08e2007-10-19 22:38:58 +01001439 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001441 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
1444static int crypt_status(struct dm_target *ti, status_type_t type,
1445 char *result, unsigned int maxlen)
1446{
Milan Broz5ebaee62010-08-12 04:14:07 +01001447 struct crypt_config *cc = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 unsigned int sz = 0;
1449
1450 switch (type) {
1451 case STATUSTYPE_INFO:
1452 result[0] = '\0';
1453 break;
1454
1455 case STATUSTYPE_TABLE:
Milan Broz7dbcd132011-01-13 19:59:52 +00001456 DMEMIT("%s ", cc->cipher_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 if (cc->key_size > 0) {
1459 if ((maxlen - sz) < ((cc->key_size << 1) + 1))
1460 return -ENOMEM;
1461
1462 crypt_encode_key(result + sz, cc->key, cc->key_size);
1463 sz += cc->key_size << 1;
1464 } else {
1465 if (sz >= maxlen)
1466 return -ENOMEM;
1467 result[sz++] = '-';
1468 }
1469
Andrew Morton4ee218c2006-03-27 01:17:48 -08001470 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1471 cc->dev->name, (unsigned long long)cc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 break;
1473 }
1474 return 0;
1475}
1476
Milan Broze48d4bb2006-10-03 01:15:37 -07001477static void crypt_postsuspend(struct dm_target *ti)
1478{
1479 struct crypt_config *cc = ti->private;
1480
1481 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1482}
1483
1484static int crypt_preresume(struct dm_target *ti)
1485{
1486 struct crypt_config *cc = ti->private;
1487
1488 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1489 DMERR("aborting resume - crypt key is not set.");
1490 return -EAGAIN;
1491 }
1492
1493 return 0;
1494}
1495
1496static void crypt_resume(struct dm_target *ti)
1497{
1498 struct crypt_config *cc = ti->private;
1499
1500 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1501}
1502
1503/* Message interface
1504 * key set <key>
1505 * key wipe
1506 */
1507static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1508{
1509 struct crypt_config *cc = ti->private;
Milan Broz542da312009-12-10 23:51:57 +00001510 int ret = -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07001511
1512 if (argc < 2)
1513 goto error;
1514
1515 if (!strnicmp(argv[0], MESG_STR("key"))) {
1516 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1517 DMWARN("not suspended during key manipulation.");
1518 return -EINVAL;
1519 }
Milan Broz542da312009-12-10 23:51:57 +00001520 if (argc == 3 && !strnicmp(argv[1], MESG_STR("set"))) {
1521 ret = crypt_set_key(cc, argv[2]);
1522 if (ret)
1523 return ret;
1524 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
1525 ret = cc->iv_gen_ops->init(cc);
1526 return ret;
1527 }
1528 if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe"))) {
1529 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
1530 ret = cc->iv_gen_ops->wipe(cc);
1531 if (ret)
1532 return ret;
1533 }
Milan Broze48d4bb2006-10-03 01:15:37 -07001534 return crypt_wipe_key(cc);
Milan Broz542da312009-12-10 23:51:57 +00001535 }
Milan Broze48d4bb2006-10-03 01:15:37 -07001536 }
1537
1538error:
1539 DMWARN("unrecognised message received.");
1540 return -EINVAL;
1541}
1542
Milan Brozd41e26b2008-07-21 12:00:40 +01001543static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
1544 struct bio_vec *biovec, int max_size)
1545{
1546 struct crypt_config *cc = ti->private;
1547 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
1548
1549 if (!q->merge_bvec_fn)
1550 return max_size;
1551
1552 bvm->bi_bdev = cc->dev->bdev;
Alasdair G Kergonb441a2622010-08-12 04:14:11 +01001553 bvm->bi_sector = cc->start + dm_target_offset(ti, bvm->bi_sector);
Milan Brozd41e26b2008-07-21 12:00:40 +01001554
1555 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
1556}
1557
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001558static int crypt_iterate_devices(struct dm_target *ti,
1559 iterate_devices_callout_fn fn, void *data)
1560{
1561 struct crypt_config *cc = ti->private;
1562
Mike Snitzer5dea2712009-07-23 20:30:42 +01001563 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566static struct target_type crypt_target = {
1567 .name = "crypt",
Andi Kleenc0297722011-01-13 19:59:53 +00001568 .version = {1, 9, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 .module = THIS_MODULE,
1570 .ctr = crypt_ctr,
1571 .dtr = crypt_dtr,
1572 .map = crypt_map,
1573 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07001574 .postsuspend = crypt_postsuspend,
1575 .preresume = crypt_preresume,
1576 .resume = crypt_resume,
1577 .message = crypt_message,
Milan Brozd41e26b2008-07-21 12:00:40 +01001578 .merge = crypt_merge,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001579 .iterate_devices = crypt_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580};
1581
1582static int __init dm_crypt_init(void)
1583{
1584 int r;
1585
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001586 _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!_crypt_io_pool)
1588 return -ENOMEM;
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 r = dm_register_target(&crypt_target);
1591 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001592 DMERR("register failed %d", r);
Milan Broz9934a8b2007-10-19 22:38:57 +01001593 kmem_cache_destroy(_crypt_io_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return r;
1597}
1598
1599static void __exit dm_crypt_exit(void)
1600{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001601 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 kmem_cache_destroy(_crypt_io_pool);
1603}
1604
1605module_init(dm_crypt_init);
1606module_exit(dm_crypt_exit);
1607
1608MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
1609MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
1610MODULE_LICENSE("GPL");