Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[deliverable/linux.git] / drivers / md / dm-crypt.c
CommitLineData
1da177e4 1/*
bf14299f 2 * Copyright (C) 2003 Jana Saout <jana@saout.de>
1da177e4 3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
542da317 4 * Copyright (C) 2006-2009 Red Hat, Inc. All rights reserved.
ed04d981 5 * Copyright (C) 2013 Milan Broz <gmazyland@gmail.com>
1da177e4
LT
6 *
7 * This file is released under the GPL.
8 */
9
43d69034 10#include <linux/completion.h>
d1806f6a 11#include <linux/err.h>
1da177e4
LT
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/bio.h>
16#include <linux/blkdev.h>
17#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/crypto.h>
20#include <linux/workqueue.h>
dc267621 21#include <linux/kthread.h>
3fcfab16 22#include <linux/backing-dev.h>
60063497 23#include <linux/atomic.h>
378f058c 24#include <linux/scatterlist.h>
b3c5fd30 25#include <linux/rbtree.h>
1da177e4 26#include <asm/page.h>
48527fa7 27#include <asm/unaligned.h>
34745785
MB
28#include <crypto/hash.h>
29#include <crypto/md5.h>
30#include <crypto/algapi.h>
1da177e4 31
586e80e6 32#include <linux/device-mapper.h>
1da177e4 33
72d94861 34#define DM_MSG_PREFIX "crypt"
1da177e4 35
1da177e4
LT
36/*
37 * context holding the current state of a multi-part conversion
38 */
39struct convert_context {
43d69034 40 struct completion restart;
1da177e4
LT
41 struct bio *bio_in;
42 struct bio *bio_out;
003b5c57
KO
43 struct bvec_iter iter_in;
44 struct bvec_iter iter_out;
c66029f4 45 sector_t cc_sector;
40b6229b 46 atomic_t cc_pending;
610f2de3 47 struct ablkcipher_request *req;
1da177e4
LT
48};
49
53017030
MB
50/*
51 * per bio private data
52 */
53struct dm_crypt_io {
49a8a920 54 struct crypt_config *cc;
53017030
MB
55 struct bio *base_bio;
56 struct work_struct work;
57
58 struct convert_context ctx;
59
40b6229b 60 atomic_t io_pending;
53017030 61 int error;
0c395b0f 62 sector_t sector;
dc267621 63
b3c5fd30 64 struct rb_node rb_node;
298a9fa0 65} CRYPTO_MINALIGN_ATTR;
53017030 66
01482b76 67struct dm_crypt_request {
b2174eeb 68 struct convert_context *ctx;
01482b76
MB
69 struct scatterlist sg_in;
70 struct scatterlist sg_out;
2dc5327d 71 sector_t iv_sector;
01482b76
MB
72};
73
1da177e4
LT
74struct crypt_config;
75
76struct crypt_iv_operations {
77 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
d469f841 78 const char *opts);
1da177e4 79 void (*dtr)(struct crypt_config *cc);
b95bf2d3 80 int (*init)(struct crypt_config *cc);
542da317 81 int (*wipe)(struct crypt_config *cc);
2dc5327d
MB
82 int (*generator)(struct crypt_config *cc, u8 *iv,
83 struct dm_crypt_request *dmreq);
84 int (*post)(struct crypt_config *cc, u8 *iv,
85 struct dm_crypt_request *dmreq);
1da177e4
LT
86};
87
60473592 88struct iv_essiv_private {
b95bf2d3
MB
89 struct crypto_hash *hash_tfm;
90 u8 *salt;
60473592
MB
91};
92
93struct iv_benbi_private {
94 int shift;
95};
96
34745785
MB
97#define LMK_SEED_SIZE 64 /* hash + 0 */
98struct iv_lmk_private {
99 struct crypto_shash *hash_tfm;
100 u8 *seed;
101};
102
ed04d981
MB
103#define TCW_WHITENING_SIZE 16
104struct iv_tcw_private {
105 struct crypto_shash *crc32_tfm;
106 u8 *iv_seed;
107 u8 *whitening;
108};
109
1da177e4
LT
110/*
111 * Crypt: maps a linear range of a block device
112 * and encrypts / decrypts at the same time.
113 */
0f5d8e6e
MP
114enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID,
115 DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD };
c0297721
AK
116
117/*
610f2de3 118 * The fields in here must be read only after initialization.
c0297721 119 */
1da177e4
LT
120struct crypt_config {
121 struct dm_dev *dev;
122 sector_t start;
123
124 /*
ddd42edf
MB
125 * pool for per bio private data, crypto requests and
126 * encryption requeusts/buffer pages
1da177e4 127 */
ddd42edf 128 mempool_t *req_pool;
1da177e4 129 mempool_t *page_pool;
6a24c718 130 struct bio_set *bs;
7145c241 131 struct mutex bio_alloc_lock;
1da177e4 132
cabf08e4
MB
133 struct workqueue_struct *io_queue;
134 struct workqueue_struct *crypt_queue;
3f1e9070 135
dc267621
MP
136 struct task_struct *write_thread;
137 wait_queue_head_t write_thread_wait;
b3c5fd30 138 struct rb_root write_tree;
dc267621 139
5ebaee6d 140 char *cipher;
7dbcd137 141 char *cipher_string;
5ebaee6d 142
1da177e4 143 struct crypt_iv_operations *iv_gen_ops;
79066ad3 144 union {
60473592
MB
145 struct iv_essiv_private essiv;
146 struct iv_benbi_private benbi;
34745785 147 struct iv_lmk_private lmk;
ed04d981 148 struct iv_tcw_private tcw;
79066ad3 149 } iv_gen_private;
1da177e4
LT
150 sector_t iv_offset;
151 unsigned int iv_size;
152
fd2d231f
MP
153 /* ESSIV: struct crypto_cipher *essiv_tfm */
154 void *iv_private;
155 struct crypto_ablkcipher **tfms;
d1f96423 156 unsigned tfms_count;
c0297721 157
ddd42edf
MB
158 /*
159 * Layout of each crypto request:
160 *
161 * struct ablkcipher_request
162 * context
163 * padding
164 * struct dm_crypt_request
165 * padding
166 * IV
167 *
168 * The padding is added so that dm_crypt_request and the IV are
169 * correctly aligned.
170 */
171 unsigned int dmreq_start;
ddd42edf 172
298a9fa0
MP
173 unsigned int per_bio_data_size;
174
e48d4bbf 175 unsigned long flags;
1da177e4 176 unsigned int key_size;
da31a078
MB
177 unsigned int key_parts; /* independent parts in key buffer */
178 unsigned int key_extra_size; /* additional keys length */
1da177e4
LT
179 u8 key[0];
180};
181
6a24c718 182#define MIN_IOS 16
1da177e4 183
028867ac 184static void clone_init(struct dm_crypt_io *, struct bio *);
395b167c 185static void kcryptd_queue_crypt(struct dm_crypt_io *io);
2dc5327d 186static u8 *iv_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq);
027581f3 187
c0297721
AK
188/*
189 * Use this to access cipher attributes that are the same for each CPU.
190 */
191static struct crypto_ablkcipher *any_tfm(struct crypt_config *cc)
192{
fd2d231f 193 return cc->tfms[0];
c0297721
AK
194}
195
1da177e4
LT
196/*
197 * Different IV generation algorithms:
198 *
3c164bd8 199 * plain: the initial vector is the 32-bit little-endian version of the sector
3a4fa0a2 200 * number, padded with zeros if necessary.
1da177e4 201 *
61afef61
MB
202 * plain64: the initial vector is the 64-bit little-endian version of the sector
203 * number, padded with zeros if necessary.
204 *
3c164bd8
RS
205 * essiv: "encrypted sector|salt initial vector", the sector number is
206 * encrypted with the bulk cipher using a salt as key. The salt
207 * should be derived from the bulk cipher's key via hashing.
1da177e4 208 *
48527fa7
RS
209 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
210 * (needed for LRW-32-AES and possible other narrow block modes)
211 *
46b47730
LN
212 * null: the initial vector is always zero. Provides compatibility with
213 * obsolete loop_fish2 devices. Do not use for new devices.
214 *
34745785
MB
215 * lmk: Compatible implementation of the block chaining mode used
216 * by the Loop-AES block device encryption system
217 * designed by Jari Ruusu. See http://loop-aes.sourceforge.net/
218 * It operates on full 512 byte sectors and uses CBC
219 * with an IV derived from the sector number, the data and
220 * optionally extra IV seed.
221 * This means that after decryption the first block
222 * of sector must be tweaked according to decrypted data.
223 * Loop-AES can use three encryption schemes:
224 * version 1: is plain aes-cbc mode
225 * version 2: uses 64 multikey scheme with lmk IV generator
226 * version 3: the same as version 2 with additional IV seed
227 * (it uses 65 keys, last key is used as IV seed)
228 *
ed04d981
MB
229 * tcw: Compatible implementation of the block chaining mode used
230 * by the TrueCrypt device encryption system (prior to version 4.1).
e44f23b3 231 * For more info see: https://gitlab.com/cryptsetup/cryptsetup/wikis/TrueCryptOnDiskFormat
ed04d981
MB
232 * It operates on full 512 byte sectors and uses CBC
233 * with an IV derived from initial key and the sector number.
234 * In addition, whitening value is applied on every sector, whitening
235 * is calculated from initial key, sector number and mixed using CRC32.
236 * Note that this encryption scheme is vulnerable to watermarking attacks
237 * and should be used for old compatible containers access only.
238 *
1da177e4
LT
239 * plumb: unimplemented, see:
240 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
241 */
242
2dc5327d
MB
243static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv,
244 struct dm_crypt_request *dmreq)
1da177e4
LT
245{
246 memset(iv, 0, cc->iv_size);
283a8328 247 *(__le32 *)iv = cpu_to_le32(dmreq->iv_sector & 0xffffffff);
1da177e4
LT
248
249 return 0;
250}
251
61afef61 252static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
2dc5327d 253 struct dm_crypt_request *dmreq)
61afef61
MB
254{
255 memset(iv, 0, cc->iv_size);
283a8328 256 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
61afef61
MB
257
258 return 0;
259}
260
b95bf2d3
MB
261/* Initialise ESSIV - compute salt but no local memory allocations */
262static int crypt_iv_essiv_init(struct crypt_config *cc)
263{
264 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
265 struct hash_desc desc;
266 struct scatterlist sg;
c0297721 267 struct crypto_cipher *essiv_tfm;
fd2d231f 268 int err;
b95bf2d3
MB
269
270 sg_init_one(&sg, cc->key, cc->key_size);
271 desc.tfm = essiv->hash_tfm;
272 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
273
274 err = crypto_hash_digest(&desc, &sg, cc->key_size, essiv->salt);
275 if (err)
276 return err;
277
fd2d231f 278 essiv_tfm = cc->iv_private;
c0297721 279
fd2d231f
MP
280 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
281 crypto_hash_digestsize(essiv->hash_tfm));
282 if (err)
283 return err;
c0297721
AK
284
285 return 0;
b95bf2d3
MB
286}
287
542da317
MB
288/* Wipe salt and reset key derived from volume key */
289static int crypt_iv_essiv_wipe(struct crypt_config *cc)
290{
291 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
292 unsigned salt_size = crypto_hash_digestsize(essiv->hash_tfm);
c0297721 293 struct crypto_cipher *essiv_tfm;
fd2d231f 294 int r, err = 0;
542da317
MB
295
296 memset(essiv->salt, 0, salt_size);
297
fd2d231f
MP
298 essiv_tfm = cc->iv_private;
299 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
300 if (r)
301 err = r;
c0297721
AK
302
303 return err;
304}
305
306/* Set up per cpu cipher state */
307static struct crypto_cipher *setup_essiv_cpu(struct crypt_config *cc,
308 struct dm_target *ti,
309 u8 *salt, unsigned saltsize)
310{
311 struct crypto_cipher *essiv_tfm;
312 int err;
313
314 /* Setup the essiv_tfm with the given salt */
315 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
316 if (IS_ERR(essiv_tfm)) {
317 ti->error = "Error allocating crypto tfm for ESSIV";
318 return essiv_tfm;
319 }
320
321 if (crypto_cipher_blocksize(essiv_tfm) !=
322 crypto_ablkcipher_ivsize(any_tfm(cc))) {
323 ti->error = "Block size of ESSIV cipher does "
324 "not match IV size of block cipher";
325 crypto_free_cipher(essiv_tfm);
326 return ERR_PTR(-EINVAL);
327 }
328
329 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
330 if (err) {
331 ti->error = "Failed to set key for ESSIV cipher";
332 crypto_free_cipher(essiv_tfm);
333 return ERR_PTR(err);
334 }
335
336 return essiv_tfm;
542da317
MB
337}
338
60473592
MB
339static void crypt_iv_essiv_dtr(struct crypt_config *cc)
340{
c0297721 341 struct crypto_cipher *essiv_tfm;
60473592
MB
342 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
343
b95bf2d3
MB
344 crypto_free_hash(essiv->hash_tfm);
345 essiv->hash_tfm = NULL;
346
347 kzfree(essiv->salt);
348 essiv->salt = NULL;
c0297721 349
fd2d231f 350 essiv_tfm = cc->iv_private;
c0297721 351
fd2d231f
MP
352 if (essiv_tfm)
353 crypto_free_cipher(essiv_tfm);
c0297721 354
fd2d231f 355 cc->iv_private = NULL;
60473592
MB
356}
357
1da177e4 358static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
d469f841 359 const char *opts)
1da177e4 360{
5861f1be
MB
361 struct crypto_cipher *essiv_tfm = NULL;
362 struct crypto_hash *hash_tfm = NULL;
5861f1be 363 u8 *salt = NULL;
fd2d231f 364 int err;
1da177e4 365
5861f1be 366 if (!opts) {
72d94861 367 ti->error = "Digest algorithm missing for ESSIV mode";
1da177e4
LT
368 return -EINVAL;
369 }
370
b95bf2d3 371 /* Allocate hash algorithm */
35058687
HX
372 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
373 if (IS_ERR(hash_tfm)) {
72d94861 374 ti->error = "Error initializing ESSIV hash";
5861f1be
MB
375 err = PTR_ERR(hash_tfm);
376 goto bad;
1da177e4
LT
377 }
378
b95bf2d3 379 salt = kzalloc(crypto_hash_digestsize(hash_tfm), GFP_KERNEL);
5861f1be 380 if (!salt) {
72d94861 381 ti->error = "Error kmallocing salt storage in ESSIV";
5861f1be
MB
382 err = -ENOMEM;
383 goto bad;
1da177e4
LT
384 }
385
b95bf2d3 386 cc->iv_gen_private.essiv.salt = salt;
b95bf2d3
MB
387 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
388
fd2d231f
MP
389 essiv_tfm = setup_essiv_cpu(cc, ti, salt,
390 crypto_hash_digestsize(hash_tfm));
391 if (IS_ERR(essiv_tfm)) {
392 crypt_iv_essiv_dtr(cc);
393 return PTR_ERR(essiv_tfm);
c0297721 394 }
fd2d231f 395 cc->iv_private = essiv_tfm;
c0297721 396
1da177e4 397 return 0;
5861f1be
MB
398
399bad:
5861f1be
MB
400 if (hash_tfm && !IS_ERR(hash_tfm))
401 crypto_free_hash(hash_tfm);
b95bf2d3 402 kfree(salt);
5861f1be 403 return err;
1da177e4
LT
404}
405
2dc5327d
MB
406static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv,
407 struct dm_crypt_request *dmreq)
1da177e4 408{
fd2d231f 409 struct crypto_cipher *essiv_tfm = cc->iv_private;
c0297721 410
1da177e4 411 memset(iv, 0, cc->iv_size);
283a8328 412 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
c0297721
AK
413 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
414
1da177e4
LT
415 return 0;
416}
417
48527fa7
RS
418static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
419 const char *opts)
420{
c0297721 421 unsigned bs = crypto_ablkcipher_blocksize(any_tfm(cc));
f0d1b0b3 422 int log = ilog2(bs);
48527fa7
RS
423
424 /* we need to calculate how far we must shift the sector count
425 * to get the cipher block count, we use this shift in _gen */
426
427 if (1 << log != bs) {
428 ti->error = "cypher blocksize is not a power of 2";
429 return -EINVAL;
430 }
431
432 if (log > 9) {
433 ti->error = "cypher blocksize is > 512";
434 return -EINVAL;
435 }
436
60473592 437 cc->iv_gen_private.benbi.shift = 9 - log;
48527fa7
RS
438
439 return 0;
440}
441
442static void crypt_iv_benbi_dtr(struct crypt_config *cc)
443{
48527fa7
RS
444}
445
2dc5327d
MB
446static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv,
447 struct dm_crypt_request *dmreq)
48527fa7 448{
79066ad3
HX
449 __be64 val;
450
48527fa7 451 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
79066ad3 452
2dc5327d 453 val = cpu_to_be64(((u64)dmreq->iv_sector << cc->iv_gen_private.benbi.shift) + 1);
79066ad3 454 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
48527fa7 455
1da177e4
LT
456 return 0;
457}
458
2dc5327d
MB
459static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv,
460 struct dm_crypt_request *dmreq)
46b47730
LN
461{
462 memset(iv, 0, cc->iv_size);
463
464 return 0;
465}
466
34745785
MB
467static void crypt_iv_lmk_dtr(struct crypt_config *cc)
468{
469 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
470
471 if (lmk->hash_tfm && !IS_ERR(lmk->hash_tfm))
472 crypto_free_shash(lmk->hash_tfm);
473 lmk->hash_tfm = NULL;
474
475 kzfree(lmk->seed);
476 lmk->seed = NULL;
477}
478
479static int crypt_iv_lmk_ctr(struct crypt_config *cc, struct dm_target *ti,
480 const char *opts)
481{
482 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
483
484 lmk->hash_tfm = crypto_alloc_shash("md5", 0, 0);
485 if (IS_ERR(lmk->hash_tfm)) {
486 ti->error = "Error initializing LMK hash";
487 return PTR_ERR(lmk->hash_tfm);
488 }
489
490 /* No seed in LMK version 2 */
491 if (cc->key_parts == cc->tfms_count) {
492 lmk->seed = NULL;
493 return 0;
494 }
495
496 lmk->seed = kzalloc(LMK_SEED_SIZE, GFP_KERNEL);
497 if (!lmk->seed) {
498 crypt_iv_lmk_dtr(cc);
499 ti->error = "Error kmallocing seed storage in LMK";
500 return -ENOMEM;
501 }
502
503 return 0;
504}
505
506static int crypt_iv_lmk_init(struct crypt_config *cc)
507{
508 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
509 int subkey_size = cc->key_size / cc->key_parts;
510
511 /* LMK seed is on the position of LMK_KEYS + 1 key */
512 if (lmk->seed)
513 memcpy(lmk->seed, cc->key + (cc->tfms_count * subkey_size),
514 crypto_shash_digestsize(lmk->hash_tfm));
515
516 return 0;
517}
518
519static int crypt_iv_lmk_wipe(struct crypt_config *cc)
520{
521 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
522
523 if (lmk->seed)
524 memset(lmk->seed, 0, LMK_SEED_SIZE);
525
526 return 0;
527}
528
529static int crypt_iv_lmk_one(struct crypt_config *cc, u8 *iv,
530 struct dm_crypt_request *dmreq,
531 u8 *data)
532{
533 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
b6106265 534 SHASH_DESC_ON_STACK(desc, lmk->hash_tfm);
34745785 535 struct md5_state md5state;
da31a078 536 __le32 buf[4];
34745785
MB
537 int i, r;
538
b6106265
JSM
539 desc->tfm = lmk->hash_tfm;
540 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
34745785 541
b6106265 542 r = crypto_shash_init(desc);
34745785
MB
543 if (r)
544 return r;
545
546 if (lmk->seed) {
b6106265 547 r = crypto_shash_update(desc, lmk->seed, LMK_SEED_SIZE);
34745785
MB
548 if (r)
549 return r;
550 }
551
552 /* Sector is always 512B, block size 16, add data of blocks 1-31 */
b6106265 553 r = crypto_shash_update(desc, data + 16, 16 * 31);
34745785
MB
554 if (r)
555 return r;
556
557 /* Sector is cropped to 56 bits here */
558 buf[0] = cpu_to_le32(dmreq->iv_sector & 0xFFFFFFFF);
559 buf[1] = cpu_to_le32((((u64)dmreq->iv_sector >> 32) & 0x00FFFFFF) | 0x80000000);
560 buf[2] = cpu_to_le32(4024);
561 buf[3] = 0;
b6106265 562 r = crypto_shash_update(desc, (u8 *)buf, sizeof(buf));
34745785
MB
563 if (r)
564 return r;
565
566 /* No MD5 padding here */
b6106265 567 r = crypto_shash_export(desc, &md5state);
34745785
MB
568 if (r)
569 return r;
570
571 for (i = 0; i < MD5_HASH_WORDS; i++)
572 __cpu_to_le32s(&md5state.hash[i]);
573 memcpy(iv, &md5state.hash, cc->iv_size);
574
575 return 0;
576}
577
578static int crypt_iv_lmk_gen(struct crypt_config *cc, u8 *iv,
579 struct dm_crypt_request *dmreq)
580{
581 u8 *src;
582 int r = 0;
583
584 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE) {
c2e022cb 585 src = kmap_atomic(sg_page(&dmreq->sg_in));
34745785 586 r = crypt_iv_lmk_one(cc, iv, dmreq, src + dmreq->sg_in.offset);
c2e022cb 587 kunmap_atomic(src);
34745785
MB
588 } else
589 memset(iv, 0, cc->iv_size);
590
591 return r;
592}
593
594static int crypt_iv_lmk_post(struct crypt_config *cc, u8 *iv,
595 struct dm_crypt_request *dmreq)
596{
597 u8 *dst;
598 int r;
599
600 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE)
601 return 0;
602
c2e022cb 603 dst = kmap_atomic(sg_page(&dmreq->sg_out));
34745785
MB
604 r = crypt_iv_lmk_one(cc, iv, dmreq, dst + dmreq->sg_out.offset);
605
606 /* Tweak the first block of plaintext sector */
607 if (!r)
608 crypto_xor(dst + dmreq->sg_out.offset, iv, cc->iv_size);
609
c2e022cb 610 kunmap_atomic(dst);
34745785
MB
611 return r;
612}
613
ed04d981
MB
614static void crypt_iv_tcw_dtr(struct crypt_config *cc)
615{
616 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
617
618 kzfree(tcw->iv_seed);
619 tcw->iv_seed = NULL;
620 kzfree(tcw->whitening);
621 tcw->whitening = NULL;
622
623 if (tcw->crc32_tfm && !IS_ERR(tcw->crc32_tfm))
624 crypto_free_shash(tcw->crc32_tfm);
625 tcw->crc32_tfm = NULL;
626}
627
628static int crypt_iv_tcw_ctr(struct crypt_config *cc, struct dm_target *ti,
629 const char *opts)
630{
631 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
632
633 if (cc->key_size <= (cc->iv_size + TCW_WHITENING_SIZE)) {
634 ti->error = "Wrong key size for TCW";
635 return -EINVAL;
636 }
637
638 tcw->crc32_tfm = crypto_alloc_shash("crc32", 0, 0);
639 if (IS_ERR(tcw->crc32_tfm)) {
640 ti->error = "Error initializing CRC32 in TCW";
641 return PTR_ERR(tcw->crc32_tfm);
642 }
643
644 tcw->iv_seed = kzalloc(cc->iv_size, GFP_KERNEL);
645 tcw->whitening = kzalloc(TCW_WHITENING_SIZE, GFP_KERNEL);
646 if (!tcw->iv_seed || !tcw->whitening) {
647 crypt_iv_tcw_dtr(cc);
648 ti->error = "Error allocating seed storage in TCW";
649 return -ENOMEM;
650 }
651
652 return 0;
653}
654
655static int crypt_iv_tcw_init(struct crypt_config *cc)
656{
657 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
658 int key_offset = cc->key_size - cc->iv_size - TCW_WHITENING_SIZE;
659
660 memcpy(tcw->iv_seed, &cc->key[key_offset], cc->iv_size);
661 memcpy(tcw->whitening, &cc->key[key_offset + cc->iv_size],
662 TCW_WHITENING_SIZE);
663
664 return 0;
665}
666
667static int crypt_iv_tcw_wipe(struct crypt_config *cc)
668{
669 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
670
671 memset(tcw->iv_seed, 0, cc->iv_size);
672 memset(tcw->whitening, 0, TCW_WHITENING_SIZE);
673
674 return 0;
675}
676
677static int crypt_iv_tcw_whitening(struct crypt_config *cc,
678 struct dm_crypt_request *dmreq,
679 u8 *data)
680{
681 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
682 u64 sector = cpu_to_le64((u64)dmreq->iv_sector);
683 u8 buf[TCW_WHITENING_SIZE];
b6106265 684 SHASH_DESC_ON_STACK(desc, tcw->crc32_tfm);
ed04d981
MB
685 int i, r;
686
687 /* xor whitening with sector number */
688 memcpy(buf, tcw->whitening, TCW_WHITENING_SIZE);
689 crypto_xor(buf, (u8 *)&sector, 8);
690 crypto_xor(&buf[8], (u8 *)&sector, 8);
691
692 /* calculate crc32 for every 32bit part and xor it */
b6106265
JSM
693 desc->tfm = tcw->crc32_tfm;
694 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
ed04d981 695 for (i = 0; i < 4; i++) {
b6106265 696 r = crypto_shash_init(desc);
ed04d981
MB
697 if (r)
698 goto out;
b6106265 699 r = crypto_shash_update(desc, &buf[i * 4], 4);
ed04d981
MB
700 if (r)
701 goto out;
b6106265 702 r = crypto_shash_final(desc, &buf[i * 4]);
ed04d981
MB
703 if (r)
704 goto out;
705 }
706 crypto_xor(&buf[0], &buf[12], 4);
707 crypto_xor(&buf[4], &buf[8], 4);
708
709 /* apply whitening (8 bytes) to whole sector */
710 for (i = 0; i < ((1 << SECTOR_SHIFT) / 8); i++)
711 crypto_xor(data + i * 8, buf, 8);
712out:
1a71d6ff 713 memzero_explicit(buf, sizeof(buf));
ed04d981
MB
714 return r;
715}
716
717static int crypt_iv_tcw_gen(struct crypt_config *cc, u8 *iv,
718 struct dm_crypt_request *dmreq)
719{
720 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
721 u64 sector = cpu_to_le64((u64)dmreq->iv_sector);
722 u8 *src;
723 int r = 0;
724
725 /* Remove whitening from ciphertext */
726 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE) {
727 src = kmap_atomic(sg_page(&dmreq->sg_in));
728 r = crypt_iv_tcw_whitening(cc, dmreq, src + dmreq->sg_in.offset);
729 kunmap_atomic(src);
730 }
731
732 /* Calculate IV */
733 memcpy(iv, tcw->iv_seed, cc->iv_size);
734 crypto_xor(iv, (u8 *)&sector, 8);
735 if (cc->iv_size > 8)
736 crypto_xor(&iv[8], (u8 *)&sector, cc->iv_size - 8);
737
738 return r;
739}
740
741static int crypt_iv_tcw_post(struct crypt_config *cc, u8 *iv,
742 struct dm_crypt_request *dmreq)
743{
744 u8 *dst;
745 int r;
746
747 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE)
748 return 0;
749
750 /* Apply whitening on ciphertext */
751 dst = kmap_atomic(sg_page(&dmreq->sg_out));
752 r = crypt_iv_tcw_whitening(cc, dmreq, dst + dmreq->sg_out.offset);
753 kunmap_atomic(dst);
754
755 return r;
756}
757
1da177e4
LT
758static struct crypt_iv_operations crypt_iv_plain_ops = {
759 .generator = crypt_iv_plain_gen
760};
761
61afef61
MB
762static struct crypt_iv_operations crypt_iv_plain64_ops = {
763 .generator = crypt_iv_plain64_gen
764};
765
1da177e4
LT
766static struct crypt_iv_operations crypt_iv_essiv_ops = {
767 .ctr = crypt_iv_essiv_ctr,
768 .dtr = crypt_iv_essiv_dtr,
b95bf2d3 769 .init = crypt_iv_essiv_init,
542da317 770 .wipe = crypt_iv_essiv_wipe,
1da177e4
LT
771 .generator = crypt_iv_essiv_gen
772};
773
48527fa7
RS
774static struct crypt_iv_operations crypt_iv_benbi_ops = {
775 .ctr = crypt_iv_benbi_ctr,
776 .dtr = crypt_iv_benbi_dtr,
777 .generator = crypt_iv_benbi_gen
778};
1da177e4 779
46b47730
LN
780static struct crypt_iv_operations crypt_iv_null_ops = {
781 .generator = crypt_iv_null_gen
782};
783
34745785
MB
784static struct crypt_iv_operations crypt_iv_lmk_ops = {
785 .ctr = crypt_iv_lmk_ctr,
786 .dtr = crypt_iv_lmk_dtr,
787 .init = crypt_iv_lmk_init,
788 .wipe = crypt_iv_lmk_wipe,
789 .generator = crypt_iv_lmk_gen,
790 .post = crypt_iv_lmk_post
791};
792
ed04d981
MB
793static struct crypt_iv_operations crypt_iv_tcw_ops = {
794 .ctr = crypt_iv_tcw_ctr,
795 .dtr = crypt_iv_tcw_dtr,
796 .init = crypt_iv_tcw_init,
797 .wipe = crypt_iv_tcw_wipe,
798 .generator = crypt_iv_tcw_gen,
799 .post = crypt_iv_tcw_post
800};
801
d469f841
MB
802static void crypt_convert_init(struct crypt_config *cc,
803 struct convert_context *ctx,
804 struct bio *bio_out, struct bio *bio_in,
fcd369da 805 sector_t sector)
1da177e4
LT
806{
807 ctx->bio_in = bio_in;
808 ctx->bio_out = bio_out;
003b5c57
KO
809 if (bio_in)
810 ctx->iter_in = bio_in->bi_iter;
811 if (bio_out)
812 ctx->iter_out = bio_out->bi_iter;
c66029f4 813 ctx->cc_sector = sector + cc->iv_offset;
43d69034 814 init_completion(&ctx->restart);
1da177e4
LT
815}
816
b2174eeb
HY
817static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
818 struct ablkcipher_request *req)
819{
820 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
821}
822
823static struct ablkcipher_request *req_of_dmreq(struct crypt_config *cc,
824 struct dm_crypt_request *dmreq)
825{
826 return (struct ablkcipher_request *)((char *)dmreq - cc->dmreq_start);
827}
828
2dc5327d
MB
829static u8 *iv_of_dmreq(struct crypt_config *cc,
830 struct dm_crypt_request *dmreq)
831{
832 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
833 crypto_ablkcipher_alignmask(any_tfm(cc)) + 1);
834}
835
01482b76 836static int crypt_convert_block(struct crypt_config *cc,
3a7f6c99
MB
837 struct convert_context *ctx,
838 struct ablkcipher_request *req)
01482b76 839{
003b5c57
KO
840 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
841 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
3a7f6c99
MB
842 struct dm_crypt_request *dmreq;
843 u8 *iv;
40b6229b 844 int r;
3a7f6c99 845
b2174eeb 846 dmreq = dmreq_of_req(cc, req);
2dc5327d 847 iv = iv_of_dmreq(cc, dmreq);
01482b76 848
c66029f4 849 dmreq->iv_sector = ctx->cc_sector;
b2174eeb 850 dmreq->ctx = ctx;
3a7f6c99 851 sg_init_table(&dmreq->sg_in, 1);
003b5c57
KO
852 sg_set_page(&dmreq->sg_in, bv_in.bv_page, 1 << SECTOR_SHIFT,
853 bv_in.bv_offset);
01482b76 854
3a7f6c99 855 sg_init_table(&dmreq->sg_out, 1);
003b5c57
KO
856 sg_set_page(&dmreq->sg_out, bv_out.bv_page, 1 << SECTOR_SHIFT,
857 bv_out.bv_offset);
01482b76 858
003b5c57
KO
859 bio_advance_iter(ctx->bio_in, &ctx->iter_in, 1 << SECTOR_SHIFT);
860 bio_advance_iter(ctx->bio_out, &ctx->iter_out, 1 << SECTOR_SHIFT);
01482b76 861
3a7f6c99 862 if (cc->iv_gen_ops) {
2dc5327d 863 r = cc->iv_gen_ops->generator(cc, iv, dmreq);
3a7f6c99
MB
864 if (r < 0)
865 return r;
866 }
867
868 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
869 1 << SECTOR_SHIFT, iv);
870
871 if (bio_data_dir(ctx->bio_in) == WRITE)
872 r = crypto_ablkcipher_encrypt(req);
873 else
874 r = crypto_ablkcipher_decrypt(req);
875
2dc5327d
MB
876 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
877 r = cc->iv_gen_ops->post(cc, iv, dmreq);
878
3a7f6c99 879 return r;
01482b76
MB
880}
881
95497a96
MB
882static void kcryptd_async_done(struct crypto_async_request *async_req,
883 int error);
c0297721 884
ddd42edf
MB
885static void crypt_alloc_req(struct crypt_config *cc,
886 struct convert_context *ctx)
887{
c66029f4 888 unsigned key_index = ctx->cc_sector & (cc->tfms_count - 1);
c0297721 889
610f2de3
MP
890 if (!ctx->req)
891 ctx->req = mempool_alloc(cc->req_pool, GFP_NOIO);
c0297721 892
610f2de3
MP
893 ablkcipher_request_set_tfm(ctx->req, cc->tfms[key_index]);
894 ablkcipher_request_set_callback(ctx->req,
c0297721 895 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
610f2de3 896 kcryptd_async_done, dmreq_of_req(cc, ctx->req));
ddd42edf
MB
897}
898
298a9fa0
MP
899static void crypt_free_req(struct crypt_config *cc,
900 struct ablkcipher_request *req, struct bio *base_bio)
901{
902 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
903
904 if ((struct ablkcipher_request *)(io + 1) != req)
905 mempool_free(req, cc->req_pool);
906}
907
1da177e4
LT
908/*
909 * Encrypt / decrypt data from one bio to another one (can be the same one)
910 */
911static int crypt_convert(struct crypt_config *cc,
d469f841 912 struct convert_context *ctx)
1da177e4 913{
3f1e9070 914 int r;
1da177e4 915
40b6229b 916 atomic_set(&ctx->cc_pending, 1);
c8081618 917
003b5c57 918 while (ctx->iter_in.bi_size && ctx->iter_out.bi_size) {
1da177e4 919
3a7f6c99
MB
920 crypt_alloc_req(cc, ctx);
921
40b6229b 922 atomic_inc(&ctx->cc_pending);
3f1e9070 923
610f2de3 924 r = crypt_convert_block(cc, ctx, ctx->req);
3a7f6c99
MB
925
926 switch (r) {
3f1e9070 927 /* async */
0618764c 928 case -EINPROGRESS:
3a7f6c99
MB
929 case -EBUSY:
930 wait_for_completion(&ctx->restart);
16735d02 931 reinit_completion(&ctx->restart);
610f2de3 932 ctx->req = NULL;
c66029f4 933 ctx->cc_sector++;
3f1e9070
MB
934 continue;
935
936 /* sync */
3a7f6c99 937 case 0:
40b6229b 938 atomic_dec(&ctx->cc_pending);
c66029f4 939 ctx->cc_sector++;
c7f1b204 940 cond_resched();
3a7f6c99 941 continue;
3a7f6c99 942
3f1e9070
MB
943 /* error */
944 default:
40b6229b 945 atomic_dec(&ctx->cc_pending);
3f1e9070
MB
946 return r;
947 }
1da177e4
LT
948 }
949
3f1e9070 950 return 0;
1da177e4
LT
951}
952
cf2f1abf
MP
953static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
954
1da177e4
LT
955/*
956 * Generate a new unfragmented bio with the given size
957 * This should never violate the device limitations
7145c241
MP
958 *
959 * This function may be called concurrently. If we allocate from the mempool
960 * concurrently, there is a possibility of deadlock. For example, if we have
961 * mempool of 256 pages, two processes, each wanting 256, pages allocate from
962 * the mempool concurrently, it may deadlock in a situation where both processes
963 * have allocated 128 pages and the mempool is exhausted.
964 *
965 * In order to avoid this scenario we allocate the pages under a mutex.
966 *
967 * In order to not degrade performance with excessive locking, we try
968 * non-blocking allocations without a mutex first but on failure we fallback
969 * to blocking allocations with a mutex.
1da177e4 970 */
cf2f1abf 971static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
1da177e4 972{
49a8a920 973 struct crypt_config *cc = io->cc;
8b004457 974 struct bio *clone;
1da177e4 975 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
7145c241
MP
976 gfp_t gfp_mask = GFP_NOWAIT | __GFP_HIGHMEM;
977 unsigned i, len, remaining_size;
91e10625 978 struct page *page;
cf2f1abf 979 struct bio_vec *bvec;
1da177e4 980
7145c241
MP
981retry:
982 if (unlikely(gfp_mask & __GFP_WAIT))
983 mutex_lock(&cc->bio_alloc_lock);
984
2f9941b6 985 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
8b004457 986 if (!clone)
7145c241 987 goto return_clone;
1da177e4 988
027581f3 989 clone_init(io, clone);
6a24c718 990
7145c241
MP
991 remaining_size = size;
992
f97380bc 993 for (i = 0; i < nr_iovecs; i++) {
91e10625 994 page = mempool_alloc(cc->page_pool, gfp_mask);
7145c241
MP
995 if (!page) {
996 crypt_free_buffer_pages(cc, clone);
997 bio_put(clone);
998 gfp_mask |= __GFP_WAIT;
999 goto retry;
1000 }
1da177e4 1001
7145c241 1002 len = (remaining_size > PAGE_SIZE) ? PAGE_SIZE : remaining_size;
91e10625 1003
cf2f1abf
MP
1004 bvec = &clone->bi_io_vec[clone->bi_vcnt++];
1005 bvec->bv_page = page;
1006 bvec->bv_len = len;
1007 bvec->bv_offset = 0;
1da177e4 1008
cf2f1abf 1009 clone->bi_iter.bi_size += len;
1da177e4 1010
7145c241 1011 remaining_size -= len;
1da177e4
LT
1012 }
1013
7145c241
MP
1014return_clone:
1015 if (unlikely(gfp_mask & __GFP_WAIT))
1016 mutex_unlock(&cc->bio_alloc_lock);
1017
8b004457 1018 return clone;
1da177e4
LT
1019}
1020
644bd2f0 1021static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
1da177e4 1022{
644bd2f0 1023 unsigned int i;
1da177e4
LT
1024 struct bio_vec *bv;
1025
cb34e057 1026 bio_for_each_segment_all(bv, clone, i) {
1da177e4
LT
1027 BUG_ON(!bv->bv_page);
1028 mempool_free(bv->bv_page, cc->page_pool);
1029 bv->bv_page = NULL;
1030 }
1031}
1032
298a9fa0
MP
1033static void crypt_io_init(struct dm_crypt_io *io, struct crypt_config *cc,
1034 struct bio *bio, sector_t sector)
dc440d1e 1035{
49a8a920 1036 io->cc = cc;
dc440d1e
MB
1037 io->base_bio = bio;
1038 io->sector = sector;
1039 io->error = 0;
610f2de3 1040 io->ctx.req = NULL;
40b6229b 1041 atomic_set(&io->io_pending, 0);
dc440d1e
MB
1042}
1043
3e1a8bdd
MB
1044static void crypt_inc_pending(struct dm_crypt_io *io)
1045{
40b6229b 1046 atomic_inc(&io->io_pending);
3e1a8bdd
MB
1047}
1048
1da177e4
LT
1049/*
1050 * One of the bios was finished. Check for completion of
1051 * the whole request and correctly clean up the buffer.
1052 */
5742fd77 1053static void crypt_dec_pending(struct dm_crypt_io *io)
1da177e4 1054{
49a8a920 1055 struct crypt_config *cc = io->cc;
b35f8caa 1056 struct bio *base_bio = io->base_bio;
b35f8caa 1057 int error = io->error;
1da177e4 1058
40b6229b 1059 if (!atomic_dec_and_test(&io->io_pending))
1da177e4
LT
1060 return;
1061
610f2de3 1062 if (io->ctx.req)
298a9fa0 1063 crypt_free_req(cc, io->ctx.req, base_bio);
b35f8caa 1064
cf2f1abf 1065 bio_endio(base_bio, error);
1da177e4
LT
1066}
1067
1068/*
cabf08e4 1069 * kcryptd/kcryptd_io:
1da177e4
LT
1070 *
1071 * Needed because it would be very unwise to do decryption in an
23541d2d 1072 * interrupt context.
cabf08e4
MB
1073 *
1074 * kcryptd performs the actual encryption or decryption.
1075 *
1076 * kcryptd_io performs the IO submission.
1077 *
1078 * They must be separated as otherwise the final stages could be
1079 * starved by new requests which can block in the first stages due
1080 * to memory allocation.
c0297721
AK
1081 *
1082 * The work is done per CPU global for all dm-crypt instances.
1083 * They should not depend on each other and do not block.
1da177e4 1084 */
6712ecf8 1085static void crypt_endio(struct bio *clone, int error)
8b004457 1086{
028867ac 1087 struct dm_crypt_io *io = clone->bi_private;
49a8a920 1088 struct crypt_config *cc = io->cc;
ee7a491e 1089 unsigned rw = bio_data_dir(clone);
8b004457 1090
adfe4770
MB
1091 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
1092 error = -EIO;
1093
8b004457 1094 /*
6712ecf8 1095 * free the processed pages
8b004457 1096 */
ee7a491e 1097 if (rw == WRITE)
644bd2f0 1098 crypt_free_buffer_pages(cc, clone);
8b004457
MB
1099
1100 bio_put(clone);
8b004457 1101
ee7a491e
MB
1102 if (rw == READ && !error) {
1103 kcryptd_queue_crypt(io);
1104 return;
1105 }
5742fd77
MB
1106
1107 if (unlikely(error))
1108 io->error = error;
1109
1110 crypt_dec_pending(io);
8b004457
MB
1111}
1112
028867ac 1113static void clone_init(struct dm_crypt_io *io, struct bio *clone)
8b004457 1114{
49a8a920 1115 struct crypt_config *cc = io->cc;
8b004457
MB
1116
1117 clone->bi_private = io;
1118 clone->bi_end_io = crypt_endio;
1119 clone->bi_bdev = cc->dev->bdev;
1120 clone->bi_rw = io->base_bio->bi_rw;
1121}
1122
20c82538 1123static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
8b004457 1124{
49a8a920 1125 struct crypt_config *cc = io->cc;
8b004457 1126 struct bio *clone;
93e605c2 1127
8b004457 1128 /*
59779079
MS
1129 * We need the original biovec array in order to decrypt
1130 * the whole bio data *afterwards* -- thanks to immutable
1131 * biovecs we don't need to worry about the block layer
1132 * modifying the biovec array; so leverage bio_clone_fast().
8b004457 1133 */
59779079 1134 clone = bio_clone_fast(io->base_bio, gfp, cc->bs);
7eaceacc 1135 if (!clone)
20c82538 1136 return 1;
8b004457 1137
20c82538
MB
1138 crypt_inc_pending(io);
1139
8b004457 1140 clone_init(io, clone);
4f024f37 1141 clone->bi_iter.bi_sector = cc->start + io->sector;
8b004457 1142
93e605c2 1143 generic_make_request(clone);
20c82538 1144 return 0;
8b004457
MB
1145}
1146
dc267621
MP
1147static void kcryptd_io_read_work(struct work_struct *work)
1148{
1149 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1150
1151 crypt_inc_pending(io);
1152 if (kcryptd_io_read(io, GFP_NOIO))
1153 io->error = -ENOMEM;
1154 crypt_dec_pending(io);
1155}
1156
1157static void kcryptd_queue_read(struct dm_crypt_io *io)
1158{
1159 struct crypt_config *cc = io->cc;
1160
1161 INIT_WORK(&io->work, kcryptd_io_read_work);
1162 queue_work(cc->io_queue, &io->work);
1163}
1164
4e4eef64
MB
1165static void kcryptd_io_write(struct dm_crypt_io *io)
1166{
95497a96 1167 struct bio *clone = io->ctx.bio_out;
dc267621 1168
95497a96 1169 generic_make_request(clone);
4e4eef64
MB
1170}
1171
b3c5fd30
MP
1172#define crypt_io_from_node(node) rb_entry((node), struct dm_crypt_io, rb_node)
1173
dc267621 1174static int dmcrypt_write(void *data)
395b167c 1175{
dc267621 1176 struct crypt_config *cc = data;
b3c5fd30
MP
1177 struct dm_crypt_io *io;
1178
dc267621 1179 while (1) {
b3c5fd30 1180 struct rb_root write_tree;
dc267621 1181 struct blk_plug plug;
395b167c 1182
dc267621 1183 DECLARE_WAITQUEUE(wait, current);
395b167c 1184
dc267621
MP
1185 spin_lock_irq(&cc->write_thread_wait.lock);
1186continue_locked:
395b167c 1187
b3c5fd30 1188 if (!RB_EMPTY_ROOT(&cc->write_tree))
dc267621
MP
1189 goto pop_from_list;
1190
1191 __set_current_state(TASK_INTERRUPTIBLE);
1192 __add_wait_queue(&cc->write_thread_wait, &wait);
1193
1194 spin_unlock_irq(&cc->write_thread_wait.lock);
1195
1196 if (unlikely(kthread_should_stop())) {
1197 set_task_state(current, TASK_RUNNING);
1198 remove_wait_queue(&cc->write_thread_wait, &wait);
1199 break;
1200 }
1201
1202 schedule();
1203
1204 set_task_state(current, TASK_RUNNING);
1205 spin_lock_irq(&cc->write_thread_wait.lock);
1206 __remove_wait_queue(&cc->write_thread_wait, &wait);
1207 goto continue_locked;
1208
1209pop_from_list:
b3c5fd30
MP
1210 write_tree = cc->write_tree;
1211 cc->write_tree = RB_ROOT;
dc267621
MP
1212 spin_unlock_irq(&cc->write_thread_wait.lock);
1213
b3c5fd30
MP
1214 BUG_ON(rb_parent(write_tree.rb_node));
1215
1216 /*
1217 * Note: we cannot walk the tree here with rb_next because
1218 * the structures may be freed when kcryptd_io_write is called.
1219 */
dc267621
MP
1220 blk_start_plug(&plug);
1221 do {
b3c5fd30
MP
1222 io = crypt_io_from_node(rb_first(&write_tree));
1223 rb_erase(&io->rb_node, &write_tree);
dc267621 1224 kcryptd_io_write(io);
b3c5fd30 1225 } while (!RB_EMPTY_ROOT(&write_tree));
dc267621
MP
1226 blk_finish_plug(&plug);
1227 }
1228 return 0;
395b167c
AK
1229}
1230
72c6e7af 1231static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async)
4e4eef64 1232{
dec1cedf 1233 struct bio *clone = io->ctx.bio_out;
49a8a920 1234 struct crypt_config *cc = io->cc;
dc267621 1235 unsigned long flags;
b3c5fd30
MP
1236 sector_t sector;
1237 struct rb_node **rbp, *parent;
dec1cedf 1238
72c6e7af 1239 if (unlikely(io->error < 0)) {
dec1cedf
MB
1240 crypt_free_buffer_pages(cc, clone);
1241 bio_put(clone);
6c031f41 1242 crypt_dec_pending(io);
dec1cedf
MB
1243 return;
1244 }
1245
1246 /* crypt_convert should have filled the clone bio */
003b5c57 1247 BUG_ON(io->ctx.iter_out.bi_size);
dec1cedf 1248
4f024f37 1249 clone->bi_iter.bi_sector = cc->start + io->sector;
899c95d3 1250
0f5d8e6e
MP
1251 if (likely(!async) && test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags)) {
1252 generic_make_request(clone);
1253 return;
1254 }
1255
dc267621 1256 spin_lock_irqsave(&cc->write_thread_wait.lock, flags);
b3c5fd30
MP
1257 rbp = &cc->write_tree.rb_node;
1258 parent = NULL;
1259 sector = io->sector;
1260 while (*rbp) {
1261 parent = *rbp;
1262 if (sector < crypt_io_from_node(parent)->sector)
1263 rbp = &(*rbp)->rb_left;
1264 else
1265 rbp = &(*rbp)->rb_right;
1266 }
1267 rb_link_node(&io->rb_node, parent, rbp);
1268 rb_insert_color(&io->rb_node, &cc->write_tree);
1269
dc267621
MP
1270 wake_up_locked(&cc->write_thread_wait);
1271 spin_unlock_irqrestore(&cc->write_thread_wait.lock, flags);
4e4eef64
MB
1272}
1273
fc5a5e9a 1274static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
8b004457 1275{
49a8a920 1276 struct crypt_config *cc = io->cc;
8b004457 1277 struct bio *clone;
c8081618 1278 int crypt_finished;
b635b00e 1279 sector_t sector = io->sector;
dec1cedf 1280 int r;
8b004457 1281
fc5a5e9a
MB
1282 /*
1283 * Prevent io from disappearing until this function completes.
1284 */
1285 crypt_inc_pending(io);
b635b00e 1286 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
fc5a5e9a 1287
cf2f1abf
MP
1288 clone = crypt_alloc_buffer(io, io->base_bio->bi_iter.bi_size);
1289 if (unlikely(!clone)) {
1290 io->error = -EIO;
1291 goto dec;
1292 }
c8081618 1293
cf2f1abf
MP
1294 io->ctx.bio_out = clone;
1295 io->ctx.iter_out = clone->bi_iter;
b635b00e 1296
cf2f1abf 1297 sector += bio_sectors(clone);
93e605c2 1298
cf2f1abf
MP
1299 crypt_inc_pending(io);
1300 r = crypt_convert(cc, &io->ctx);
1301 if (r)
1302 io->error = -EIO;
1303 crypt_finished = atomic_dec_and_test(&io->ctx.cc_pending);
933f01d4 1304
cf2f1abf
MP
1305 /* Encryption was already finished, submit io now */
1306 if (crypt_finished) {
1307 kcryptd_crypt_write_io_submit(io, 0);
1308 io->sector = sector;
93e605c2 1309 }
899c95d3 1310
cf2f1abf 1311dec:
899c95d3 1312 crypt_dec_pending(io);
84131db6
MB
1313}
1314
72c6e7af 1315static void kcryptd_crypt_read_done(struct dm_crypt_io *io)
5742fd77 1316{
5742fd77
MB
1317 crypt_dec_pending(io);
1318}
1319
4e4eef64 1320static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
8b004457 1321{
49a8a920 1322 struct crypt_config *cc = io->cc;
5742fd77 1323 int r = 0;
1da177e4 1324
3e1a8bdd 1325 crypt_inc_pending(io);
3a7f6c99 1326
53017030 1327 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
0c395b0f 1328 io->sector);
1da177e4 1329
5742fd77 1330 r = crypt_convert(cc, &io->ctx);
72c6e7af
MP
1331 if (r < 0)
1332 io->error = -EIO;
5742fd77 1333
40b6229b 1334 if (atomic_dec_and_test(&io->ctx.cc_pending))
72c6e7af 1335 kcryptd_crypt_read_done(io);
3a7f6c99
MB
1336
1337 crypt_dec_pending(io);
1da177e4
LT
1338}
1339
95497a96
MB
1340static void kcryptd_async_done(struct crypto_async_request *async_req,
1341 int error)
1342{
b2174eeb
HY
1343 struct dm_crypt_request *dmreq = async_req->data;
1344 struct convert_context *ctx = dmreq->ctx;
95497a96 1345 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
49a8a920 1346 struct crypt_config *cc = io->cc;
95497a96 1347
0618764c 1348 if (error == -EINPROGRESS)
95497a96 1349 return;
95497a96 1350
2dc5327d
MB
1351 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post)
1352 error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq);
1353
72c6e7af
MP
1354 if (error < 0)
1355 io->error = -EIO;
1356
298a9fa0 1357 crypt_free_req(cc, req_of_dmreq(cc, dmreq), io->base_bio);
95497a96 1358
40b6229b 1359 if (!atomic_dec_and_test(&ctx->cc_pending))
0618764c 1360 goto done;
95497a96
MB
1361
1362 if (bio_data_dir(io->base_bio) == READ)
72c6e7af 1363 kcryptd_crypt_read_done(io);
95497a96 1364 else
72c6e7af 1365 kcryptd_crypt_write_io_submit(io, 1);
0618764c
BC
1366done:
1367 if (!completion_done(&ctx->restart))
1368 complete(&ctx->restart);
95497a96
MB
1369}
1370
395b167c 1371static void kcryptd_crypt(struct work_struct *work)
1da177e4 1372{
028867ac 1373 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
8b004457 1374
cabf08e4 1375 if (bio_data_dir(io->base_bio) == READ)
395b167c 1376 kcryptd_crypt_read_convert(io);
4e4eef64 1377 else
395b167c 1378 kcryptd_crypt_write_convert(io);
cabf08e4
MB
1379}
1380
395b167c 1381static void kcryptd_queue_crypt(struct dm_crypt_io *io)
cabf08e4 1382{
49a8a920 1383 struct crypt_config *cc = io->cc;
cabf08e4 1384
395b167c
AK
1385 INIT_WORK(&io->work, kcryptd_crypt);
1386 queue_work(cc->crypt_queue, &io->work);
1da177e4
LT
1387}
1388
1389/*
1390 * Decode key from its hex representation
1391 */
1392static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1393{
1394 char buffer[3];
1da177e4
LT
1395 unsigned int i;
1396
1397 buffer[2] = '\0';
1398
8b004457 1399 for (i = 0; i < size; i++) {
1da177e4
LT
1400 buffer[0] = *hex++;
1401 buffer[1] = *hex++;
1402
1a66a08a 1403 if (kstrtou8(buffer, 16, &key[i]))
1da177e4
LT
1404 return -EINVAL;
1405 }
1406
1407 if (*hex != '\0')
1408 return -EINVAL;
1409
1410 return 0;
1411}
1412
fd2d231f 1413static void crypt_free_tfms(struct crypt_config *cc)
d1f96423 1414{
d1f96423
MB
1415 unsigned i;
1416
fd2d231f
MP
1417 if (!cc->tfms)
1418 return;
1419
d1f96423 1420 for (i = 0; i < cc->tfms_count; i++)
fd2d231f
MP
1421 if (cc->tfms[i] && !IS_ERR(cc->tfms[i])) {
1422 crypto_free_ablkcipher(cc->tfms[i]);
1423 cc->tfms[i] = NULL;
d1f96423 1424 }
fd2d231f
MP
1425
1426 kfree(cc->tfms);
1427 cc->tfms = NULL;
d1f96423
MB
1428}
1429
fd2d231f 1430static int crypt_alloc_tfms(struct crypt_config *cc, char *ciphermode)
d1f96423 1431{
d1f96423
MB
1432 unsigned i;
1433 int err;
1434
fd2d231f
MP
1435 cc->tfms = kmalloc(cc->tfms_count * sizeof(struct crypto_ablkcipher *),
1436 GFP_KERNEL);
1437 if (!cc->tfms)
1438 return -ENOMEM;
1439
d1f96423 1440 for (i = 0; i < cc->tfms_count; i++) {
fd2d231f
MP
1441 cc->tfms[i] = crypto_alloc_ablkcipher(ciphermode, 0, 0);
1442 if (IS_ERR(cc->tfms[i])) {
1443 err = PTR_ERR(cc->tfms[i]);
1444 crypt_free_tfms(cc);
d1f96423
MB
1445 return err;
1446 }
1447 }
1448
1449 return 0;
1450}
1451
c0297721
AK
1452static int crypt_setkey_allcpus(struct crypt_config *cc)
1453{
da31a078 1454 unsigned subkey_size;
fd2d231f
MP
1455 int err = 0, i, r;
1456
da31a078
MB
1457 /* Ignore extra keys (which are used for IV etc) */
1458 subkey_size = (cc->key_size - cc->key_extra_size) >> ilog2(cc->tfms_count);
1459
fd2d231f
MP
1460 for (i = 0; i < cc->tfms_count; i++) {
1461 r = crypto_ablkcipher_setkey(cc->tfms[i],
1462 cc->key + (i * subkey_size),
1463 subkey_size);
1464 if (r)
1465 err = r;
c0297721
AK
1466 }
1467
1468 return err;
1469}
1470
e48d4bbf
MB
1471static int crypt_set_key(struct crypt_config *cc, char *key)
1472{
de8be5ac
MB
1473 int r = -EINVAL;
1474 int key_string_len = strlen(key);
1475
69a8cfcd 1476 /* The key size may not be changed. */
de8be5ac
MB
1477 if (cc->key_size != (key_string_len >> 1))
1478 goto out;
e48d4bbf 1479
69a8cfcd
MB
1480 /* Hyphen (which gives a key_size of zero) means there is no key. */
1481 if (!cc->key_size && strcmp(key, "-"))
de8be5ac 1482 goto out;
e48d4bbf 1483
69a8cfcd 1484 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
de8be5ac 1485 goto out;
e48d4bbf
MB
1486
1487 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1488
de8be5ac
MB
1489 r = crypt_setkey_allcpus(cc);
1490
1491out:
1492 /* Hex key string not needed after here, so wipe it. */
1493 memset(key, '0', key_string_len);
1494
1495 return r;
e48d4bbf
MB
1496}
1497
1498static int crypt_wipe_key(struct crypt_config *cc)
1499{
1500 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1501 memset(&cc->key, 0, cc->key_size * sizeof(u8));
c0297721
AK
1502
1503 return crypt_setkey_allcpus(cc);
e48d4bbf
MB
1504}
1505
28513fcc
MB
1506static void crypt_dtr(struct dm_target *ti)
1507{
1508 struct crypt_config *cc = ti->private;
1509
1510 ti->private = NULL;
1511
1512 if (!cc)
1513 return;
1514
dc267621
MP
1515 if (cc->write_thread)
1516 kthread_stop(cc->write_thread);
1517
28513fcc
MB
1518 if (cc->io_queue)
1519 destroy_workqueue(cc->io_queue);
1520 if (cc->crypt_queue)
1521 destroy_workqueue(cc->crypt_queue);
1522
fd2d231f
MP
1523 crypt_free_tfms(cc);
1524
28513fcc
MB
1525 if (cc->bs)
1526 bioset_free(cc->bs);
1527
1528 if (cc->page_pool)
1529 mempool_destroy(cc->page_pool);
1530 if (cc->req_pool)
1531 mempool_destroy(cc->req_pool);
28513fcc
MB
1532
1533 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1534 cc->iv_gen_ops->dtr(cc);
1535
28513fcc
MB
1536 if (cc->dev)
1537 dm_put_device(ti, cc->dev);
1538
5ebaee6d 1539 kzfree(cc->cipher);
7dbcd137 1540 kzfree(cc->cipher_string);
28513fcc
MB
1541
1542 /* Must zero key material before freeing */
1543 kzfree(cc);
1544}
1545
5ebaee6d
MB
1546static int crypt_ctr_cipher(struct dm_target *ti,
1547 char *cipher_in, char *key)
1da177e4 1548{
5ebaee6d 1549 struct crypt_config *cc = ti->private;
d1f96423 1550 char *tmp, *cipher, *chainmode, *ivmode, *ivopts, *keycount;
5ebaee6d 1551 char *cipher_api = NULL;
fd2d231f 1552 int ret = -EINVAL;
31998ef1 1553 char dummy;
1da177e4 1554
5ebaee6d
MB
1555 /* Convert to crypto api definition? */
1556 if (strchr(cipher_in, '(')) {
1557 ti->error = "Bad cipher specification";
1da177e4
LT
1558 return -EINVAL;
1559 }
1560
7dbcd137
MB
1561 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1562 if (!cc->cipher_string)
1563 goto bad_mem;
1564
5ebaee6d
MB
1565 /*
1566 * Legacy dm-crypt cipher specification
d1f96423 1567 * cipher[:keycount]-mode-iv:ivopts
5ebaee6d
MB
1568 */
1569 tmp = cipher_in;
d1f96423
MB
1570 keycount = strsep(&tmp, "-");
1571 cipher = strsep(&keycount, ":");
1572
1573 if (!keycount)
1574 cc->tfms_count = 1;
31998ef1 1575 else if (sscanf(keycount, "%u%c", &cc->tfms_count, &dummy) != 1 ||
d1f96423
MB
1576 !is_power_of_2(cc->tfms_count)) {
1577 ti->error = "Bad cipher key count specification";
1578 return -EINVAL;
1579 }
1580 cc->key_parts = cc->tfms_count;
da31a078 1581 cc->key_extra_size = 0;
5ebaee6d
MB
1582
1583 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1584 if (!cc->cipher)
1585 goto bad_mem;
1586
1da177e4
LT
1587 chainmode = strsep(&tmp, "-");
1588 ivopts = strsep(&tmp, "-");
1589 ivmode = strsep(&ivopts, ":");
1590
1591 if (tmp)
5ebaee6d 1592 DMWARN("Ignoring unexpected additional cipher options");
1da177e4 1593
7dbcd137
MB
1594 /*
1595 * For compatibility with the original dm-crypt mapping format, if
1596 * only the cipher name is supplied, use cbc-plain.
1597 */
5ebaee6d 1598 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
1da177e4
LT
1599 chainmode = "cbc";
1600 ivmode = "plain";
1601 }
1602
d1806f6a 1603 if (strcmp(chainmode, "ecb") && !ivmode) {
5ebaee6d
MB
1604 ti->error = "IV mechanism required";
1605 return -EINVAL;
1da177e4
LT
1606 }
1607
5ebaee6d
MB
1608 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1609 if (!cipher_api)
1610 goto bad_mem;
1611
1612 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1613 "%s(%s)", chainmode, cipher);
1614 if (ret < 0) {
1615 kfree(cipher_api);
1616 goto bad_mem;
1da177e4
LT
1617 }
1618
5ebaee6d 1619 /* Allocate cipher */
fd2d231f
MP
1620 ret = crypt_alloc_tfms(cc, cipher_api);
1621 if (ret < 0) {
1622 ti->error = "Error allocating crypto tfm";
1623 goto bad;
1da177e4 1624 }
1da177e4 1625
5ebaee6d 1626 /* Initialize IV */
c0297721 1627 cc->iv_size = crypto_ablkcipher_ivsize(any_tfm(cc));
5ebaee6d
MB
1628 if (cc->iv_size)
1629 /* at least a 64 bit sector number should fit in our buffer */
1630 cc->iv_size = max(cc->iv_size,
1631 (unsigned int)(sizeof(u64) / sizeof(u8)));
1632 else if (ivmode) {
1633 DMWARN("Selected cipher does not support IVs");
1634 ivmode = NULL;
1635 }
1636
1637 /* Choose ivmode, see comments at iv code. */
1da177e4
LT
1638 if (ivmode == NULL)
1639 cc->iv_gen_ops = NULL;
1640 else if (strcmp(ivmode, "plain") == 0)
1641 cc->iv_gen_ops = &crypt_iv_plain_ops;
61afef61
MB
1642 else if (strcmp(ivmode, "plain64") == 0)
1643 cc->iv_gen_ops = &crypt_iv_plain64_ops;
1da177e4
LT
1644 else if (strcmp(ivmode, "essiv") == 0)
1645 cc->iv_gen_ops = &crypt_iv_essiv_ops;
48527fa7
RS
1646 else if (strcmp(ivmode, "benbi") == 0)
1647 cc->iv_gen_ops = &crypt_iv_benbi_ops;
46b47730
LN
1648 else if (strcmp(ivmode, "null") == 0)
1649 cc->iv_gen_ops = &crypt_iv_null_ops;
34745785
MB
1650 else if (strcmp(ivmode, "lmk") == 0) {
1651 cc->iv_gen_ops = &crypt_iv_lmk_ops;
ed04d981
MB
1652 /*
1653 * Version 2 and 3 is recognised according
34745785
MB
1654 * to length of provided multi-key string.
1655 * If present (version 3), last key is used as IV seed.
ed04d981 1656 * All keys (including IV seed) are always the same size.
34745785 1657 */
da31a078 1658 if (cc->key_size % cc->key_parts) {
34745785 1659 cc->key_parts++;
da31a078
MB
1660 cc->key_extra_size = cc->key_size / cc->key_parts;
1661 }
ed04d981
MB
1662 } else if (strcmp(ivmode, "tcw") == 0) {
1663 cc->iv_gen_ops = &crypt_iv_tcw_ops;
1664 cc->key_parts += 2; /* IV + whitening */
1665 cc->key_extra_size = cc->iv_size + TCW_WHITENING_SIZE;
34745785 1666 } else {
5ebaee6d 1667 ret = -EINVAL;
72d94861 1668 ti->error = "Invalid IV mode";
28513fcc 1669 goto bad;
1da177e4
LT
1670 }
1671
da31a078
MB
1672 /* Initialize and set key */
1673 ret = crypt_set_key(cc, key);
1674 if (ret < 0) {
1675 ti->error = "Error decoding and setting key";
1676 goto bad;
1677 }
1678
28513fcc
MB
1679 /* Allocate IV */
1680 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1681 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1682 if (ret < 0) {
1683 ti->error = "Error creating IV";
1684 goto bad;
1685 }
1686 }
1da177e4 1687
28513fcc
MB
1688 /* Initialize IV (set keys for ESSIV etc) */
1689 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1690 ret = cc->iv_gen_ops->init(cc);
1691 if (ret < 0) {
1692 ti->error = "Error initialising IV";
1693 goto bad;
1694 }
b95bf2d3
MB
1695 }
1696
5ebaee6d
MB
1697 ret = 0;
1698bad:
1699 kfree(cipher_api);
1700 return ret;
1701
1702bad_mem:
1703 ti->error = "Cannot allocate cipher strings";
1704 return -ENOMEM;
1705}
1706
1707/*
1708 * Construct an encryption mapping:
1709 * <cipher> <key> <iv_offset> <dev_path> <start>
1710 */
1711static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1712{
1713 struct crypt_config *cc;
772ae5f5 1714 unsigned int key_size, opt_params;
5ebaee6d
MB
1715 unsigned long long tmpll;
1716 int ret;
d49ec52f 1717 size_t iv_size_padding;
772ae5f5
MB
1718 struct dm_arg_set as;
1719 const char *opt_string;
31998ef1 1720 char dummy;
772ae5f5
MB
1721
1722 static struct dm_arg _args[] = {
0f5d8e6e 1723 {0, 3, "Invalid number of feature args"},
772ae5f5 1724 };
5ebaee6d 1725
772ae5f5 1726 if (argc < 5) {
5ebaee6d
MB
1727 ti->error = "Not enough arguments";
1728 return -EINVAL;
1da177e4
LT
1729 }
1730
5ebaee6d
MB
1731 key_size = strlen(argv[1]) >> 1;
1732
1733 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1734 if (!cc) {
1735 ti->error = "Cannot allocate encryption context";
1736 return -ENOMEM;
1737 }
69a8cfcd 1738 cc->key_size = key_size;
5ebaee6d
MB
1739
1740 ti->private = cc;
1741 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1742 if (ret < 0)
1743 goto bad;
1744
ddd42edf 1745 cc->dmreq_start = sizeof(struct ablkcipher_request);
c0297721 1746 cc->dmreq_start += crypto_ablkcipher_reqsize(any_tfm(cc));
d49ec52f
MP
1747 cc->dmreq_start = ALIGN(cc->dmreq_start, __alignof__(struct dm_crypt_request));
1748
1749 if (crypto_ablkcipher_alignmask(any_tfm(cc)) < CRYPTO_MINALIGN) {
1750 /* Allocate the padding exactly */
1751 iv_size_padding = -(cc->dmreq_start + sizeof(struct dm_crypt_request))
1752 & crypto_ablkcipher_alignmask(any_tfm(cc));
1753 } else {
1754 /*
1755 * If the cipher requires greater alignment than kmalloc
1756 * alignment, we don't know the exact position of the
1757 * initialization vector. We must assume worst case.
1758 */
1759 iv_size_padding = crypto_ablkcipher_alignmask(any_tfm(cc));
1760 }
ddd42edf 1761
94f5e024 1762 ret = -ENOMEM;
ddd42edf 1763 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
d49ec52f 1764 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size);
ddd42edf
MB
1765 if (!cc->req_pool) {
1766 ti->error = "Cannot allocate crypt request mempool";
28513fcc 1767 goto bad;
ddd42edf 1768 }
ddd42edf 1769
298a9fa0 1770 cc->per_bio_data_size = ti->per_bio_data_size =
d49ec52f
MP
1771 ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start +
1772 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size,
1773 ARCH_KMALLOC_MINALIGN);
298a9fa0 1774
cf2f1abf 1775 cc->page_pool = mempool_create_page_pool(BIO_MAX_PAGES, 0);
1da177e4 1776 if (!cc->page_pool) {
72d94861 1777 ti->error = "Cannot allocate page mempool";
28513fcc 1778 goto bad;
1da177e4
LT
1779 }
1780
bb799ca0 1781 cc->bs = bioset_create(MIN_IOS, 0);
6a24c718
MB
1782 if (!cc->bs) {
1783 ti->error = "Cannot allocate crypt bioset";
28513fcc 1784 goto bad;
6a24c718
MB
1785 }
1786
7145c241
MP
1787 mutex_init(&cc->bio_alloc_lock);
1788
28513fcc 1789 ret = -EINVAL;
31998ef1 1790 if (sscanf(argv[2], "%llu%c", &tmpll, &dummy) != 1) {
72d94861 1791 ti->error = "Invalid iv_offset sector";
28513fcc 1792 goto bad;
1da177e4 1793 }
4ee218cd 1794 cc->iv_offset = tmpll;
1da177e4 1795
28513fcc
MB
1796 if (dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev)) {
1797 ti->error = "Device lookup failed";
1798 goto bad;
1799 }
1800
31998ef1 1801 if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
72d94861 1802 ti->error = "Invalid device sector";
28513fcc 1803 goto bad;
1da177e4 1804 }
4ee218cd 1805 cc->start = tmpll;
1da177e4 1806
772ae5f5
MB
1807 argv += 5;
1808 argc -= 5;
1809
1810 /* Optional parameters */
1811 if (argc) {
1812 as.argc = argc;
1813 as.argv = argv;
1814
1815 ret = dm_read_arg_group(_args, &as, &opt_params, &ti->error);
1816 if (ret)
1817 goto bad;
1818
44c144f9 1819 ret = -EINVAL;
f3396c58
MP
1820 while (opt_params--) {
1821 opt_string = dm_shift_arg(&as);
1822 if (!opt_string) {
1823 ti->error = "Not enough feature arguments";
1824 goto bad;
1825 }
772ae5f5 1826
f3396c58
MP
1827 if (!strcasecmp(opt_string, "allow_discards"))
1828 ti->num_discard_bios = 1;
1829
1830 else if (!strcasecmp(opt_string, "same_cpu_crypt"))
1831 set_bit(DM_CRYPT_SAME_CPU, &cc->flags);
1832
0f5d8e6e
MP
1833 else if (!strcasecmp(opt_string, "submit_from_crypt_cpus"))
1834 set_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
1835
f3396c58
MP
1836 else {
1837 ti->error = "Invalid feature arguments";
1838 goto bad;
1839 }
772ae5f5
MB
1840 }
1841 }
1842
28513fcc 1843 ret = -ENOMEM;
670368a8 1844 cc->io_queue = alloc_workqueue("kcryptd_io", WQ_MEM_RECLAIM, 1);
cabf08e4
MB
1845 if (!cc->io_queue) {
1846 ti->error = "Couldn't create kcryptd io queue";
28513fcc 1847 goto bad;
cabf08e4
MB
1848 }
1849
f3396c58
MP
1850 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
1851 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
1852 else
1853 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | WQ_UNBOUND,
1854 num_online_cpus());
cabf08e4 1855 if (!cc->crypt_queue) {
9934a8be 1856 ti->error = "Couldn't create kcryptd queue";
28513fcc 1857 goto bad;
9934a8be
MB
1858 }
1859
dc267621 1860 init_waitqueue_head(&cc->write_thread_wait);
b3c5fd30 1861 cc->write_tree = RB_ROOT;
dc267621
MP
1862
1863 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write");
1864 if (IS_ERR(cc->write_thread)) {
1865 ret = PTR_ERR(cc->write_thread);
1866 cc->write_thread = NULL;
1867 ti->error = "Couldn't spawn write thread";
1868 goto bad;
1869 }
1870 wake_up_process(cc->write_thread);
1871
55a62eef 1872 ti->num_flush_bios = 1;
0ac55489 1873 ti->discard_zeroes_data_unsupported = true;
983c7db3 1874
1da177e4
LT
1875 return 0;
1876
28513fcc
MB
1877bad:
1878 crypt_dtr(ti);
1879 return ret;
1da177e4
LT
1880}
1881
7de3ee57 1882static int crypt_map(struct dm_target *ti, struct bio *bio)
1da177e4 1883{
028867ac 1884 struct dm_crypt_io *io;
49a8a920 1885 struct crypt_config *cc = ti->private;
647c7db1 1886
772ae5f5
MB
1887 /*
1888 * If bio is REQ_FLUSH or REQ_DISCARD, just bypass crypt queues.
1889 * - for REQ_FLUSH device-mapper core ensures that no IO is in-flight
1890 * - for REQ_DISCARD caller must use flush if IO ordering matters
1891 */
1892 if (unlikely(bio->bi_rw & (REQ_FLUSH | REQ_DISCARD))) {
647c7db1 1893 bio->bi_bdev = cc->dev->bdev;
772ae5f5 1894 if (bio_sectors(bio))
4f024f37
KO
1895 bio->bi_iter.bi_sector = cc->start +
1896 dm_target_offset(ti, bio->bi_iter.bi_sector);
647c7db1
MP
1897 return DM_MAPIO_REMAPPED;
1898 }
1da177e4 1899
298a9fa0
MP
1900 io = dm_per_bio_data(bio, cc->per_bio_data_size);
1901 crypt_io_init(io, cc, bio, dm_target_offset(ti, bio->bi_iter.bi_sector));
1902 io->ctx.req = (struct ablkcipher_request *)(io + 1);
cabf08e4 1903
20c82538
MB
1904 if (bio_data_dir(io->base_bio) == READ) {
1905 if (kcryptd_io_read(io, GFP_NOWAIT))
dc267621 1906 kcryptd_queue_read(io);
20c82538 1907 } else
cabf08e4 1908 kcryptd_queue_crypt(io);
1da177e4 1909
d2a7ad29 1910 return DM_MAPIO_SUBMITTED;
1da177e4
LT
1911}
1912
fd7c092e
MP
1913static void crypt_status(struct dm_target *ti, status_type_t type,
1914 unsigned status_flags, char *result, unsigned maxlen)
1da177e4 1915{
5ebaee6d 1916 struct crypt_config *cc = ti->private;
fd7c092e 1917 unsigned i, sz = 0;
f3396c58 1918 int num_feature_args = 0;
1da177e4
LT
1919
1920 switch (type) {
1921 case STATUSTYPE_INFO:
1922 result[0] = '\0';
1923 break;
1924
1925 case STATUSTYPE_TABLE:
7dbcd137 1926 DMEMIT("%s ", cc->cipher_string);
1da177e4 1927
fd7c092e
MP
1928 if (cc->key_size > 0)
1929 for (i = 0; i < cc->key_size; i++)
1930 DMEMIT("%02x", cc->key[i]);
1931 else
1932 DMEMIT("-");
1da177e4 1933
4ee218cd
AM
1934 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1935 cc->dev->name, (unsigned long long)cc->start);
772ae5f5 1936
f3396c58
MP
1937 num_feature_args += !!ti->num_discard_bios;
1938 num_feature_args += test_bit(DM_CRYPT_SAME_CPU, &cc->flags);
0f5d8e6e 1939 num_feature_args += test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
f3396c58
MP
1940 if (num_feature_args) {
1941 DMEMIT(" %d", num_feature_args);
1942 if (ti->num_discard_bios)
1943 DMEMIT(" allow_discards");
1944 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
1945 DMEMIT(" same_cpu_crypt");
0f5d8e6e
MP
1946 if (test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags))
1947 DMEMIT(" submit_from_crypt_cpus");
f3396c58 1948 }
772ae5f5 1949
1da177e4
LT
1950 break;
1951 }
1da177e4
LT
1952}
1953
e48d4bbf
MB
1954static void crypt_postsuspend(struct dm_target *ti)
1955{
1956 struct crypt_config *cc = ti->private;
1957
1958 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1959}
1960
1961static int crypt_preresume(struct dm_target *ti)
1962{
1963 struct crypt_config *cc = ti->private;
1964
1965 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1966 DMERR("aborting resume - crypt key is not set.");
1967 return -EAGAIN;
1968 }
1969
1970 return 0;
1971}
1972
1973static void crypt_resume(struct dm_target *ti)
1974{
1975 struct crypt_config *cc = ti->private;
1976
1977 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1978}
1979
1980/* Message interface
1981 * key set <key>
1982 * key wipe
1983 */
1984static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1985{
1986 struct crypt_config *cc = ti->private;
542da317 1987 int ret = -EINVAL;
e48d4bbf
MB
1988
1989 if (argc < 2)
1990 goto error;
1991
498f0103 1992 if (!strcasecmp(argv[0], "key")) {
e48d4bbf
MB
1993 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1994 DMWARN("not suspended during key manipulation.");
1995 return -EINVAL;
1996 }
498f0103 1997 if (argc == 3 && !strcasecmp(argv[1], "set")) {
542da317
MB
1998 ret = crypt_set_key(cc, argv[2]);
1999 if (ret)
2000 return ret;
2001 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
2002 ret = cc->iv_gen_ops->init(cc);
2003 return ret;
2004 }
498f0103 2005 if (argc == 2 && !strcasecmp(argv[1], "wipe")) {
542da317
MB
2006 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
2007 ret = cc->iv_gen_ops->wipe(cc);
2008 if (ret)
2009 return ret;
2010 }
e48d4bbf 2011 return crypt_wipe_key(cc);
542da317 2012 }
e48d4bbf
MB
2013 }
2014
2015error:
2016 DMWARN("unrecognised message received.");
2017 return -EINVAL;
2018}
2019
d41e26b9
MB
2020static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2021 struct bio_vec *biovec, int max_size)
2022{
2023 struct crypt_config *cc = ti->private;
2024 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
2025
2026 if (!q->merge_bvec_fn)
2027 return max_size;
2028
2029 bvm->bi_bdev = cc->dev->bdev;
b441a262 2030 bvm->bi_sector = cc->start + dm_target_offset(ti, bvm->bi_sector);
d41e26b9
MB
2031
2032 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2033}
2034
af4874e0
MS
2035static int crypt_iterate_devices(struct dm_target *ti,
2036 iterate_devices_callout_fn fn, void *data)
2037{
2038 struct crypt_config *cc = ti->private;
2039
5dea271b 2040 return fn(ti, cc->dev, cc->start, ti->len, data);
af4874e0
MS
2041}
2042
1da177e4
LT
2043static struct target_type crypt_target = {
2044 .name = "crypt",
f3396c58 2045 .version = {1, 14, 0},
1da177e4
LT
2046 .module = THIS_MODULE,
2047 .ctr = crypt_ctr,
2048 .dtr = crypt_dtr,
2049 .map = crypt_map,
2050 .status = crypt_status,
e48d4bbf
MB
2051 .postsuspend = crypt_postsuspend,
2052 .preresume = crypt_preresume,
2053 .resume = crypt_resume,
2054 .message = crypt_message,
d41e26b9 2055 .merge = crypt_merge,
af4874e0 2056 .iterate_devices = crypt_iterate_devices,
1da177e4
LT
2057};
2058
2059static int __init dm_crypt_init(void)
2060{
2061 int r;
2062
1da177e4 2063 r = dm_register_target(&crypt_target);
94f5e024 2064 if (r < 0)
72d94861 2065 DMERR("register failed %d", r);
1da177e4 2066
1da177e4
LT
2067 return r;
2068}
2069
2070static void __exit dm_crypt_exit(void)
2071{
10d3bd09 2072 dm_unregister_target(&crypt_target);
1da177e4
LT
2073}
2074
2075module_init(dm_crypt_init);
2076module_exit(dm_crypt_exit);
2077
bf14299f 2078MODULE_AUTHOR("Jana Saout <jana@saout.de>");
1da177e4
LT
2079MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
2080MODULE_LICENSE("GPL");
This page took 1.821512 seconds and 5 git commands to generate.