dm crypt: use wake_up_process() instead of a wait queue
[linux-2.6-block.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>
ef43aa38
MB
4 * Copyright (C) 2006-2017 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2013-2017 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>
c538f6ec 15#include <linux/key.h>
1da177e4
LT
16#include <linux/bio.h>
17#include <linux/blkdev.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/crypto.h>
21#include <linux/workqueue.h>
dc267621 22#include <linux/kthread.h>
3fcfab16 23#include <linux/backing-dev.h>
60063497 24#include <linux/atomic.h>
378f058c 25#include <linux/scatterlist.h>
b3c5fd30 26#include <linux/rbtree.h>
027c431c 27#include <linux/ctype.h>
1da177e4 28#include <asm/page.h>
48527fa7 29#include <asm/unaligned.h>
34745785
MB
30#include <crypto/hash.h>
31#include <crypto/md5.h>
32#include <crypto/algapi.h>
bbdb23b5 33#include <crypto/skcipher.h>
ef43aa38
MB
34#include <crypto/aead.h>
35#include <crypto/authenc.h>
36#include <linux/rtnetlink.h> /* for struct rtattr and RTA macros only */
c538f6ec 37#include <keys/user-type.h>
1da177e4 38
586e80e6 39#include <linux/device-mapper.h>
1da177e4 40
72d94861 41#define DM_MSG_PREFIX "crypt"
1da177e4 42
1da177e4
LT
43/*
44 * context holding the current state of a multi-part conversion
45 */
46struct convert_context {
43d69034 47 struct completion restart;
1da177e4
LT
48 struct bio *bio_in;
49 struct bio *bio_out;
003b5c57
KO
50 struct bvec_iter iter_in;
51 struct bvec_iter iter_out;
c66029f4 52 sector_t cc_sector;
40b6229b 53 atomic_t cc_pending;
ef43aa38
MB
54 union {
55 struct skcipher_request *req;
56 struct aead_request *req_aead;
57 } r;
58
1da177e4
LT
59};
60
53017030
MB
61/*
62 * per bio private data
63 */
64struct dm_crypt_io {
49a8a920 65 struct crypt_config *cc;
53017030 66 struct bio *base_bio;
ef43aa38
MB
67 u8 *integrity_metadata;
68 bool integrity_metadata_from_pool;
53017030
MB
69 struct work_struct work;
70
71 struct convert_context ctx;
72
40b6229b 73 atomic_t io_pending;
4e4cbee9 74 blk_status_t error;
0c395b0f 75 sector_t sector;
dc267621 76
b3c5fd30 77 struct rb_node rb_node;
298a9fa0 78} CRYPTO_MINALIGN_ATTR;
53017030 79
01482b76 80struct dm_crypt_request {
b2174eeb 81 struct convert_context *ctx;
ef43aa38
MB
82 struct scatterlist sg_in[4];
83 struct scatterlist sg_out[4];
2dc5327d 84 sector_t iv_sector;
01482b76
MB
85};
86
1da177e4
LT
87struct crypt_config;
88
89struct crypt_iv_operations {
90 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
d469f841 91 const char *opts);
1da177e4 92 void (*dtr)(struct crypt_config *cc);
b95bf2d3 93 int (*init)(struct crypt_config *cc);
542da317 94 int (*wipe)(struct crypt_config *cc);
2dc5327d
MB
95 int (*generator)(struct crypt_config *cc, u8 *iv,
96 struct dm_crypt_request *dmreq);
97 int (*post)(struct crypt_config *cc, u8 *iv,
98 struct dm_crypt_request *dmreq);
1da177e4
LT
99};
100
60473592 101struct iv_essiv_private {
bbdb23b5 102 struct crypto_ahash *hash_tfm;
b95bf2d3 103 u8 *salt;
60473592
MB
104};
105
106struct iv_benbi_private {
107 int shift;
108};
109
34745785
MB
110#define LMK_SEED_SIZE 64 /* hash + 0 */
111struct iv_lmk_private {
112 struct crypto_shash *hash_tfm;
113 u8 *seed;
114};
115
ed04d981
MB
116#define TCW_WHITENING_SIZE 16
117struct iv_tcw_private {
118 struct crypto_shash *crc32_tfm;
119 u8 *iv_seed;
120 u8 *whitening;
121};
122
1da177e4
LT
123/*
124 * Crypt: maps a linear range of a block device
125 * and encrypts / decrypts at the same time.
126 */
0f5d8e6e 127enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID,
f659b100 128 DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD };
c0297721 129
ef43aa38
MB
130enum cipher_flags {
131 CRYPT_MODE_INTEGRITY_AEAD, /* Use authenticated mode for cihper */
8f0009a2 132 CRYPT_IV_LARGE_SECTORS, /* Calculate IV from sector_size, not 512B sectors */
ef43aa38
MB
133};
134
c0297721 135/*
610f2de3 136 * The fields in here must be read only after initialization.
c0297721 137 */
1da177e4
LT
138struct crypt_config {
139 struct dm_dev *dev;
140 sector_t start;
141
5059353d
MP
142 struct percpu_counter n_allocated_pages;
143
cabf08e4
MB
144 struct workqueue_struct *io_queue;
145 struct workqueue_struct *crypt_queue;
3f1e9070 146
c7329eff 147 spinlock_t write_thread_lock;
72d711c8 148 struct task_struct *write_thread;
b3c5fd30 149 struct rb_root write_tree;
dc267621 150
5ebaee6d 151 char *cipher;
7dbcd137 152 char *cipher_string;
ef43aa38 153 char *cipher_auth;
c538f6ec 154 char *key_string;
5ebaee6d 155
1b1b58f5 156 const struct crypt_iv_operations *iv_gen_ops;
79066ad3 157 union {
60473592
MB
158 struct iv_essiv_private essiv;
159 struct iv_benbi_private benbi;
34745785 160 struct iv_lmk_private lmk;
ed04d981 161 struct iv_tcw_private tcw;
79066ad3 162 } iv_gen_private;
1da177e4
LT
163 sector_t iv_offset;
164 unsigned int iv_size;
ff3af92b
MP
165 unsigned short int sector_size;
166 unsigned char sector_shift;
1da177e4 167
fd2d231f
MP
168 /* ESSIV: struct crypto_cipher *essiv_tfm */
169 void *iv_private;
ef43aa38
MB
170 union {
171 struct crypto_skcipher **tfms;
172 struct crypto_aead **tfms_aead;
173 } cipher_tfm;
d1f96423 174 unsigned tfms_count;
ef43aa38 175 unsigned long cipher_flags;
c0297721 176
ddd42edf
MB
177 /*
178 * Layout of each crypto request:
179 *
bbdb23b5 180 * struct skcipher_request
ddd42edf
MB
181 * context
182 * padding
183 * struct dm_crypt_request
184 * padding
185 * IV
186 *
187 * The padding is added so that dm_crypt_request and the IV are
188 * correctly aligned.
189 */
190 unsigned int dmreq_start;
ddd42edf 191
298a9fa0
MP
192 unsigned int per_bio_data_size;
193
e48d4bbf 194 unsigned long flags;
1da177e4 195 unsigned int key_size;
da31a078
MB
196 unsigned int key_parts; /* independent parts in key buffer */
197 unsigned int key_extra_size; /* additional keys length */
ef43aa38
MB
198 unsigned int key_mac_size; /* MAC key size for authenc(...) */
199
200 unsigned int integrity_tag_size;
201 unsigned int integrity_iv_size;
202 unsigned int on_disk_tag_size;
203
72d711c8
MS
204 /*
205 * pool for per bio private data, crypto requests,
206 * encryption requeusts/buffer pages and integrity tags
207 */
208 unsigned tag_pool_max_sectors;
209 mempool_t tag_pool;
210 mempool_t req_pool;
211 mempool_t page_pool;
212
213 struct bio_set bs;
214 struct mutex bio_alloc_lock;
215
ef43aa38 216 u8 *authenc_key; /* space for keys in authenc() format (if used) */
1da177e4
LT
217 u8 key[0];
218};
219
ef43aa38
MB
220#define MIN_IOS 64
221#define MAX_TAG_SIZE 480
222#define POOL_ENTRY_SIZE 512
1da177e4 223
5059353d
MP
224static DEFINE_SPINLOCK(dm_crypt_clients_lock);
225static unsigned dm_crypt_clients_n = 0;
226static volatile unsigned long dm_crypt_pages_per_client;
227#define DM_CRYPT_MEMORY_PERCENT 2
228#define DM_CRYPT_MIN_PAGES_PER_CLIENT (BIO_MAX_PAGES * 16)
229
028867ac 230static void clone_init(struct dm_crypt_io *, struct bio *);
395b167c 231static void kcryptd_queue_crypt(struct dm_crypt_io *io);
ef43aa38
MB
232static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc,
233 struct scatterlist *sg);
027581f3 234
c0297721 235/*
86f917ad 236 * Use this to access cipher attributes that are independent of the key.
c0297721 237 */
bbdb23b5 238static struct crypto_skcipher *any_tfm(struct crypt_config *cc)
c0297721 239{
ef43aa38
MB
240 return cc->cipher_tfm.tfms[0];
241}
242
243static struct crypto_aead *any_tfm_aead(struct crypt_config *cc)
244{
245 return cc->cipher_tfm.tfms_aead[0];
c0297721
AK
246}
247
1da177e4
LT
248/*
249 * Different IV generation algorithms:
250 *
3c164bd8 251 * plain: the initial vector is the 32-bit little-endian version of the sector
3a4fa0a2 252 * number, padded with zeros if necessary.
1da177e4 253 *
61afef61
MB
254 * plain64: the initial vector is the 64-bit little-endian version of the sector
255 * number, padded with zeros if necessary.
256 *
7e3fd855
MB
257 * plain64be: the initial vector is the 64-bit big-endian version of the sector
258 * number, padded with zeros if necessary.
259 *
3c164bd8
RS
260 * essiv: "encrypted sector|salt initial vector", the sector number is
261 * encrypted with the bulk cipher using a salt as key. The salt
262 * should be derived from the bulk cipher's key via hashing.
1da177e4 263 *
48527fa7
RS
264 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
265 * (needed for LRW-32-AES and possible other narrow block modes)
266 *
46b47730
LN
267 * null: the initial vector is always zero. Provides compatibility with
268 * obsolete loop_fish2 devices. Do not use for new devices.
269 *
34745785
MB
270 * lmk: Compatible implementation of the block chaining mode used
271 * by the Loop-AES block device encryption system
272 * designed by Jari Ruusu. See http://loop-aes.sourceforge.net/
273 * It operates on full 512 byte sectors and uses CBC
274 * with an IV derived from the sector number, the data and
275 * optionally extra IV seed.
276 * This means that after decryption the first block
277 * of sector must be tweaked according to decrypted data.
278 * Loop-AES can use three encryption schemes:
279 * version 1: is plain aes-cbc mode
280 * version 2: uses 64 multikey scheme with lmk IV generator
281 * version 3: the same as version 2 with additional IV seed
282 * (it uses 65 keys, last key is used as IV seed)
283 *
ed04d981
MB
284 * tcw: Compatible implementation of the block chaining mode used
285 * by the TrueCrypt device encryption system (prior to version 4.1).
e44f23b3 286 * For more info see: https://gitlab.com/cryptsetup/cryptsetup/wikis/TrueCryptOnDiskFormat
ed04d981
MB
287 * It operates on full 512 byte sectors and uses CBC
288 * with an IV derived from initial key and the sector number.
289 * In addition, whitening value is applied on every sector, whitening
290 * is calculated from initial key, sector number and mixed using CRC32.
291 * Note that this encryption scheme is vulnerable to watermarking attacks
292 * and should be used for old compatible containers access only.
293 *
1da177e4
LT
294 * plumb: unimplemented, see:
295 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
296 */
297
2dc5327d
MB
298static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv,
299 struct dm_crypt_request *dmreq)
1da177e4
LT
300{
301 memset(iv, 0, cc->iv_size);
283a8328 302 *(__le32 *)iv = cpu_to_le32(dmreq->iv_sector & 0xffffffff);
1da177e4
LT
303
304 return 0;
305}
306
61afef61 307static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
2dc5327d 308 struct dm_crypt_request *dmreq)
61afef61
MB
309{
310 memset(iv, 0, cc->iv_size);
283a8328 311 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
61afef61
MB
312
313 return 0;
314}
315
7e3fd855
MB
316static int crypt_iv_plain64be_gen(struct crypt_config *cc, u8 *iv,
317 struct dm_crypt_request *dmreq)
318{
319 memset(iv, 0, cc->iv_size);
320 /* iv_size is at least of size u64; usually it is 16 bytes */
321 *(__be64 *)&iv[cc->iv_size - sizeof(u64)] = cpu_to_be64(dmreq->iv_sector);
322
323 return 0;
324}
325
b95bf2d3
MB
326/* Initialise ESSIV - compute salt but no local memory allocations */
327static int crypt_iv_essiv_init(struct crypt_config *cc)
328{
329 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
bbdb23b5 330 AHASH_REQUEST_ON_STACK(req, essiv->hash_tfm);
b95bf2d3 331 struct scatterlist sg;
c0297721 332 struct crypto_cipher *essiv_tfm;
fd2d231f 333 int err;
b95bf2d3
MB
334
335 sg_init_one(&sg, cc->key, cc->key_size);
bbdb23b5
HX
336 ahash_request_set_tfm(req, essiv->hash_tfm);
337 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
338 ahash_request_set_crypt(req, &sg, essiv->salt, cc->key_size);
b95bf2d3 339
bbdb23b5
HX
340 err = crypto_ahash_digest(req);
341 ahash_request_zero(req);
b95bf2d3
MB
342 if (err)
343 return err;
344
fd2d231f 345 essiv_tfm = cc->iv_private;
c0297721 346
fd2d231f 347 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
bbdb23b5 348 crypto_ahash_digestsize(essiv->hash_tfm));
fd2d231f
MP
349 if (err)
350 return err;
c0297721
AK
351
352 return 0;
b95bf2d3
MB
353}
354
542da317
MB
355/* Wipe salt and reset key derived from volume key */
356static int crypt_iv_essiv_wipe(struct crypt_config *cc)
357{
358 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
bbdb23b5 359 unsigned salt_size = crypto_ahash_digestsize(essiv->hash_tfm);
c0297721 360 struct crypto_cipher *essiv_tfm;
fd2d231f 361 int r, err = 0;
542da317
MB
362
363 memset(essiv->salt, 0, salt_size);
364
fd2d231f
MP
365 essiv_tfm = cc->iv_private;
366 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
367 if (r)
368 err = r;
c0297721
AK
369
370 return err;
371}
372
86f917ad
EB
373/* Allocate the cipher for ESSIV */
374static struct crypto_cipher *alloc_essiv_cipher(struct crypt_config *cc,
375 struct dm_target *ti,
376 const u8 *salt,
377 unsigned int saltsize)
c0297721
AK
378{
379 struct crypto_cipher *essiv_tfm;
380 int err;
381
382 /* Setup the essiv_tfm with the given salt */
383 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
384 if (IS_ERR(essiv_tfm)) {
385 ti->error = "Error allocating crypto tfm for ESSIV";
386 return essiv_tfm;
387 }
388
ef43aa38 389 if (crypto_cipher_blocksize(essiv_tfm) != cc->iv_size) {
c0297721
AK
390 ti->error = "Block size of ESSIV cipher does "
391 "not match IV size of block cipher";
392 crypto_free_cipher(essiv_tfm);
393 return ERR_PTR(-EINVAL);
394 }
395
396 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
397 if (err) {
398 ti->error = "Failed to set key for ESSIV cipher";
399 crypto_free_cipher(essiv_tfm);
400 return ERR_PTR(err);
401 }
402
403 return essiv_tfm;
542da317
MB
404}
405
60473592
MB
406static void crypt_iv_essiv_dtr(struct crypt_config *cc)
407{
c0297721 408 struct crypto_cipher *essiv_tfm;
60473592
MB
409 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
410
bbdb23b5 411 crypto_free_ahash(essiv->hash_tfm);
b95bf2d3
MB
412 essiv->hash_tfm = NULL;
413
414 kzfree(essiv->salt);
415 essiv->salt = NULL;
c0297721 416
fd2d231f 417 essiv_tfm = cc->iv_private;
c0297721 418
fd2d231f
MP
419 if (essiv_tfm)
420 crypto_free_cipher(essiv_tfm);
c0297721 421
fd2d231f 422 cc->iv_private = NULL;
60473592
MB
423}
424
1da177e4 425static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
d469f841 426 const char *opts)
1da177e4 427{
5861f1be 428 struct crypto_cipher *essiv_tfm = NULL;
bbdb23b5 429 struct crypto_ahash *hash_tfm = NULL;
5861f1be 430 u8 *salt = NULL;
fd2d231f 431 int err;
1da177e4 432
5861f1be 433 if (!opts) {
72d94861 434 ti->error = "Digest algorithm missing for ESSIV mode";
1da177e4
LT
435 return -EINVAL;
436 }
437
b95bf2d3 438 /* Allocate hash algorithm */
bbdb23b5 439 hash_tfm = crypto_alloc_ahash(opts, 0, CRYPTO_ALG_ASYNC);
35058687 440 if (IS_ERR(hash_tfm)) {
72d94861 441 ti->error = "Error initializing ESSIV hash";
5861f1be
MB
442 err = PTR_ERR(hash_tfm);
443 goto bad;
1da177e4
LT
444 }
445
bbdb23b5 446 salt = kzalloc(crypto_ahash_digestsize(hash_tfm), GFP_KERNEL);
5861f1be 447 if (!salt) {
72d94861 448 ti->error = "Error kmallocing salt storage in ESSIV";
5861f1be
MB
449 err = -ENOMEM;
450 goto bad;
1da177e4
LT
451 }
452
b95bf2d3 453 cc->iv_gen_private.essiv.salt = salt;
b95bf2d3
MB
454 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
455
86f917ad
EB
456 essiv_tfm = alloc_essiv_cipher(cc, ti, salt,
457 crypto_ahash_digestsize(hash_tfm));
fd2d231f
MP
458 if (IS_ERR(essiv_tfm)) {
459 crypt_iv_essiv_dtr(cc);
460 return PTR_ERR(essiv_tfm);
c0297721 461 }
fd2d231f 462 cc->iv_private = essiv_tfm;
c0297721 463
1da177e4 464 return 0;
5861f1be
MB
465
466bad:
5861f1be 467 if (hash_tfm && !IS_ERR(hash_tfm))
bbdb23b5 468 crypto_free_ahash(hash_tfm);
b95bf2d3 469 kfree(salt);
5861f1be 470 return err;
1da177e4
LT
471}
472
2dc5327d
MB
473static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv,
474 struct dm_crypt_request *dmreq)
1da177e4 475{
fd2d231f 476 struct crypto_cipher *essiv_tfm = cc->iv_private;
c0297721 477
1da177e4 478 memset(iv, 0, cc->iv_size);
283a8328 479 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
c0297721
AK
480 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
481
1da177e4
LT
482 return 0;
483}
484
48527fa7
RS
485static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
486 const char *opts)
487{
bbdb23b5 488 unsigned bs = crypto_skcipher_blocksize(any_tfm(cc));
f0d1b0b3 489 int log = ilog2(bs);
48527fa7
RS
490
491 /* we need to calculate how far we must shift the sector count
492 * to get the cipher block count, we use this shift in _gen */
493
494 if (1 << log != bs) {
495 ti->error = "cypher blocksize is not a power of 2";
496 return -EINVAL;
497 }
498
499 if (log > 9) {
500 ti->error = "cypher blocksize is > 512";
501 return -EINVAL;
502 }
503
60473592 504 cc->iv_gen_private.benbi.shift = 9 - log;
48527fa7
RS
505
506 return 0;
507}
508
509static void crypt_iv_benbi_dtr(struct crypt_config *cc)
510{
48527fa7
RS
511}
512
2dc5327d
MB
513static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv,
514 struct dm_crypt_request *dmreq)
48527fa7 515{
79066ad3
HX
516 __be64 val;
517
48527fa7 518 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
79066ad3 519
2dc5327d 520 val = cpu_to_be64(((u64)dmreq->iv_sector << cc->iv_gen_private.benbi.shift) + 1);
79066ad3 521 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
48527fa7 522
1da177e4
LT
523 return 0;
524}
525
2dc5327d
MB
526static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv,
527 struct dm_crypt_request *dmreq)
46b47730
LN
528{
529 memset(iv, 0, cc->iv_size);
530
531 return 0;
532}
533
34745785
MB
534static void crypt_iv_lmk_dtr(struct crypt_config *cc)
535{
536 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
537
538 if (lmk->hash_tfm && !IS_ERR(lmk->hash_tfm))
539 crypto_free_shash(lmk->hash_tfm);
540 lmk->hash_tfm = NULL;
541
542 kzfree(lmk->seed);
543 lmk->seed = NULL;
544}
545
546static int crypt_iv_lmk_ctr(struct crypt_config *cc, struct dm_target *ti,
547 const char *opts)
548{
549 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
550
8f0009a2
MB
551 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
552 ti->error = "Unsupported sector size for LMK";
553 return -EINVAL;
554 }
555
34745785
MB
556 lmk->hash_tfm = crypto_alloc_shash("md5", 0, 0);
557 if (IS_ERR(lmk->hash_tfm)) {
558 ti->error = "Error initializing LMK hash";
559 return PTR_ERR(lmk->hash_tfm);
560 }
561
562 /* No seed in LMK version 2 */
563 if (cc->key_parts == cc->tfms_count) {
564 lmk->seed = NULL;
565 return 0;
566 }
567
568 lmk->seed = kzalloc(LMK_SEED_SIZE, GFP_KERNEL);
569 if (!lmk->seed) {
570 crypt_iv_lmk_dtr(cc);
571 ti->error = "Error kmallocing seed storage in LMK";
572 return -ENOMEM;
573 }
574
575 return 0;
576}
577
578static int crypt_iv_lmk_init(struct crypt_config *cc)
579{
580 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
581 int subkey_size = cc->key_size / cc->key_parts;
582
583 /* LMK seed is on the position of LMK_KEYS + 1 key */
584 if (lmk->seed)
585 memcpy(lmk->seed, cc->key + (cc->tfms_count * subkey_size),
586 crypto_shash_digestsize(lmk->hash_tfm));
587
588 return 0;
589}
590
591static int crypt_iv_lmk_wipe(struct crypt_config *cc)
592{
593 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
594
595 if (lmk->seed)
596 memset(lmk->seed, 0, LMK_SEED_SIZE);
597
598 return 0;
599}
600
601static int crypt_iv_lmk_one(struct crypt_config *cc, u8 *iv,
602 struct dm_crypt_request *dmreq,
603 u8 *data)
604{
605 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
b6106265 606 SHASH_DESC_ON_STACK(desc, lmk->hash_tfm);
34745785 607 struct md5_state md5state;
da31a078 608 __le32 buf[4];
34745785
MB
609 int i, r;
610
b6106265
JSM
611 desc->tfm = lmk->hash_tfm;
612 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
34745785 613
b6106265 614 r = crypto_shash_init(desc);
34745785
MB
615 if (r)
616 return r;
617
618 if (lmk->seed) {
b6106265 619 r = crypto_shash_update(desc, lmk->seed, LMK_SEED_SIZE);
34745785
MB
620 if (r)
621 return r;
622 }
623
624 /* Sector is always 512B, block size 16, add data of blocks 1-31 */
b6106265 625 r = crypto_shash_update(desc, data + 16, 16 * 31);
34745785
MB
626 if (r)
627 return r;
628
629 /* Sector is cropped to 56 bits here */
630 buf[0] = cpu_to_le32(dmreq->iv_sector & 0xFFFFFFFF);
631 buf[1] = cpu_to_le32((((u64)dmreq->iv_sector >> 32) & 0x00FFFFFF) | 0x80000000);
632 buf[2] = cpu_to_le32(4024);
633 buf[3] = 0;
b6106265 634 r = crypto_shash_update(desc, (u8 *)buf, sizeof(buf));
34745785
MB
635 if (r)
636 return r;
637
638 /* No MD5 padding here */
b6106265 639 r = crypto_shash_export(desc, &md5state);
34745785
MB
640 if (r)
641 return r;
642
643 for (i = 0; i < MD5_HASH_WORDS; i++)
644 __cpu_to_le32s(&md5state.hash[i]);
645 memcpy(iv, &md5state.hash, cc->iv_size);
646
647 return 0;
648}
649
650static int crypt_iv_lmk_gen(struct crypt_config *cc, u8 *iv,
651 struct dm_crypt_request *dmreq)
652{
ef43aa38 653 struct scatterlist *sg;
34745785
MB
654 u8 *src;
655 int r = 0;
656
657 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE) {
ef43aa38
MB
658 sg = crypt_get_sg_data(cc, dmreq->sg_in);
659 src = kmap_atomic(sg_page(sg));
660 r = crypt_iv_lmk_one(cc, iv, dmreq, src + sg->offset);
c2e022cb 661 kunmap_atomic(src);
34745785
MB
662 } else
663 memset(iv, 0, cc->iv_size);
664
665 return r;
666}
667
668static int crypt_iv_lmk_post(struct crypt_config *cc, u8 *iv,
669 struct dm_crypt_request *dmreq)
670{
ef43aa38 671 struct scatterlist *sg;
34745785
MB
672 u8 *dst;
673 int r;
674
675 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE)
676 return 0;
677
ef43aa38
MB
678 sg = crypt_get_sg_data(cc, dmreq->sg_out);
679 dst = kmap_atomic(sg_page(sg));
680 r = crypt_iv_lmk_one(cc, iv, dmreq, dst + sg->offset);
34745785
MB
681
682 /* Tweak the first block of plaintext sector */
683 if (!r)
ef43aa38 684 crypto_xor(dst + sg->offset, iv, cc->iv_size);
34745785 685
c2e022cb 686 kunmap_atomic(dst);
34745785
MB
687 return r;
688}
689
ed04d981
MB
690static void crypt_iv_tcw_dtr(struct crypt_config *cc)
691{
692 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
693
694 kzfree(tcw->iv_seed);
695 tcw->iv_seed = NULL;
696 kzfree(tcw->whitening);
697 tcw->whitening = NULL;
698
699 if (tcw->crc32_tfm && !IS_ERR(tcw->crc32_tfm))
700 crypto_free_shash(tcw->crc32_tfm);
701 tcw->crc32_tfm = NULL;
702}
703
704static int crypt_iv_tcw_ctr(struct crypt_config *cc, struct dm_target *ti,
705 const char *opts)
706{
707 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
708
8f0009a2
MB
709 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
710 ti->error = "Unsupported sector size for TCW";
711 return -EINVAL;
712 }
713
ed04d981
MB
714 if (cc->key_size <= (cc->iv_size + TCW_WHITENING_SIZE)) {
715 ti->error = "Wrong key size for TCW";
716 return -EINVAL;
717 }
718
719 tcw->crc32_tfm = crypto_alloc_shash("crc32", 0, 0);
720 if (IS_ERR(tcw->crc32_tfm)) {
721 ti->error = "Error initializing CRC32 in TCW";
722 return PTR_ERR(tcw->crc32_tfm);
723 }
724
725 tcw->iv_seed = kzalloc(cc->iv_size, GFP_KERNEL);
726 tcw->whitening = kzalloc(TCW_WHITENING_SIZE, GFP_KERNEL);
727 if (!tcw->iv_seed || !tcw->whitening) {
728 crypt_iv_tcw_dtr(cc);
729 ti->error = "Error allocating seed storage in TCW";
730 return -ENOMEM;
731 }
732
733 return 0;
734}
735
736static int crypt_iv_tcw_init(struct crypt_config *cc)
737{
738 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
739 int key_offset = cc->key_size - cc->iv_size - TCW_WHITENING_SIZE;
740
741 memcpy(tcw->iv_seed, &cc->key[key_offset], cc->iv_size);
742 memcpy(tcw->whitening, &cc->key[key_offset + cc->iv_size],
743 TCW_WHITENING_SIZE);
744
745 return 0;
746}
747
748static int crypt_iv_tcw_wipe(struct crypt_config *cc)
749{
750 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
751
752 memset(tcw->iv_seed, 0, cc->iv_size);
753 memset(tcw->whitening, 0, TCW_WHITENING_SIZE);
754
755 return 0;
756}
757
758static int crypt_iv_tcw_whitening(struct crypt_config *cc,
759 struct dm_crypt_request *dmreq,
760 u8 *data)
761{
762 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
350b5393 763 __le64 sector = cpu_to_le64(dmreq->iv_sector);
ed04d981 764 u8 buf[TCW_WHITENING_SIZE];
b6106265 765 SHASH_DESC_ON_STACK(desc, tcw->crc32_tfm);
ed04d981
MB
766 int i, r;
767
768 /* xor whitening with sector number */
45fe93df
AB
769 crypto_xor_cpy(buf, tcw->whitening, (u8 *)&sector, 8);
770 crypto_xor_cpy(&buf[8], tcw->whitening + 8, (u8 *)&sector, 8);
ed04d981
MB
771
772 /* calculate crc32 for every 32bit part and xor it */
b6106265
JSM
773 desc->tfm = tcw->crc32_tfm;
774 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
ed04d981 775 for (i = 0; i < 4; i++) {
b6106265 776 r = crypto_shash_init(desc);
ed04d981
MB
777 if (r)
778 goto out;
b6106265 779 r = crypto_shash_update(desc, &buf[i * 4], 4);
ed04d981
MB
780 if (r)
781 goto out;
b6106265 782 r = crypto_shash_final(desc, &buf[i * 4]);
ed04d981
MB
783 if (r)
784 goto out;
785 }
786 crypto_xor(&buf[0], &buf[12], 4);
787 crypto_xor(&buf[4], &buf[8], 4);
788
789 /* apply whitening (8 bytes) to whole sector */
790 for (i = 0; i < ((1 << SECTOR_SHIFT) / 8); i++)
791 crypto_xor(data + i * 8, buf, 8);
792out:
1a71d6ff 793 memzero_explicit(buf, sizeof(buf));
ed04d981
MB
794 return r;
795}
796
797static int crypt_iv_tcw_gen(struct crypt_config *cc, u8 *iv,
798 struct dm_crypt_request *dmreq)
799{
ef43aa38 800 struct scatterlist *sg;
ed04d981 801 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
350b5393 802 __le64 sector = cpu_to_le64(dmreq->iv_sector);
ed04d981
MB
803 u8 *src;
804 int r = 0;
805
806 /* Remove whitening from ciphertext */
807 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE) {
ef43aa38
MB
808 sg = crypt_get_sg_data(cc, dmreq->sg_in);
809 src = kmap_atomic(sg_page(sg));
810 r = crypt_iv_tcw_whitening(cc, dmreq, src + sg->offset);
ed04d981
MB
811 kunmap_atomic(src);
812 }
813
814 /* Calculate IV */
45fe93df 815 crypto_xor_cpy(iv, tcw->iv_seed, (u8 *)&sector, 8);
ed04d981 816 if (cc->iv_size > 8)
45fe93df
AB
817 crypto_xor_cpy(&iv[8], tcw->iv_seed + 8, (u8 *)&sector,
818 cc->iv_size - 8);
ed04d981
MB
819
820 return r;
821}
822
823static int crypt_iv_tcw_post(struct crypt_config *cc, u8 *iv,
824 struct dm_crypt_request *dmreq)
825{
ef43aa38 826 struct scatterlist *sg;
ed04d981
MB
827 u8 *dst;
828 int r;
829
830 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE)
831 return 0;
832
833 /* Apply whitening on ciphertext */
ef43aa38
MB
834 sg = crypt_get_sg_data(cc, dmreq->sg_out);
835 dst = kmap_atomic(sg_page(sg));
836 r = crypt_iv_tcw_whitening(cc, dmreq, dst + sg->offset);
ed04d981
MB
837 kunmap_atomic(dst);
838
839 return r;
840}
841
ef43aa38
MB
842static int crypt_iv_random_gen(struct crypt_config *cc, u8 *iv,
843 struct dm_crypt_request *dmreq)
844{
845 /* Used only for writes, there must be an additional space to store IV */
846 get_random_bytes(iv, cc->iv_size);
847 return 0;
848}
849
1b1b58f5 850static const struct crypt_iv_operations crypt_iv_plain_ops = {
1da177e4
LT
851 .generator = crypt_iv_plain_gen
852};
853
1b1b58f5 854static const struct crypt_iv_operations crypt_iv_plain64_ops = {
61afef61
MB
855 .generator = crypt_iv_plain64_gen
856};
857
7e3fd855
MB
858static const struct crypt_iv_operations crypt_iv_plain64be_ops = {
859 .generator = crypt_iv_plain64be_gen
860};
861
1b1b58f5 862static const struct crypt_iv_operations crypt_iv_essiv_ops = {
1da177e4
LT
863 .ctr = crypt_iv_essiv_ctr,
864 .dtr = crypt_iv_essiv_dtr,
b95bf2d3 865 .init = crypt_iv_essiv_init,
542da317 866 .wipe = crypt_iv_essiv_wipe,
1da177e4
LT
867 .generator = crypt_iv_essiv_gen
868};
869
1b1b58f5 870static const struct crypt_iv_operations crypt_iv_benbi_ops = {
48527fa7
RS
871 .ctr = crypt_iv_benbi_ctr,
872 .dtr = crypt_iv_benbi_dtr,
873 .generator = crypt_iv_benbi_gen
874};
1da177e4 875
1b1b58f5 876static const struct crypt_iv_operations crypt_iv_null_ops = {
46b47730
LN
877 .generator = crypt_iv_null_gen
878};
879
1b1b58f5 880static const struct crypt_iv_operations crypt_iv_lmk_ops = {
34745785
MB
881 .ctr = crypt_iv_lmk_ctr,
882 .dtr = crypt_iv_lmk_dtr,
883 .init = crypt_iv_lmk_init,
884 .wipe = crypt_iv_lmk_wipe,
885 .generator = crypt_iv_lmk_gen,
886 .post = crypt_iv_lmk_post
887};
888
1b1b58f5 889static const struct crypt_iv_operations crypt_iv_tcw_ops = {
ed04d981
MB
890 .ctr = crypt_iv_tcw_ctr,
891 .dtr = crypt_iv_tcw_dtr,
892 .init = crypt_iv_tcw_init,
893 .wipe = crypt_iv_tcw_wipe,
894 .generator = crypt_iv_tcw_gen,
895 .post = crypt_iv_tcw_post
896};
897
ef43aa38
MB
898static struct crypt_iv_operations crypt_iv_random_ops = {
899 .generator = crypt_iv_random_gen
900};
901
902/*
903 * Integrity extensions
904 */
905static bool crypt_integrity_aead(struct crypt_config *cc)
906{
907 return test_bit(CRYPT_MODE_INTEGRITY_AEAD, &cc->cipher_flags);
908}
909
910static bool crypt_integrity_hmac(struct crypt_config *cc)
911{
33d2f09f 912 return crypt_integrity_aead(cc) && cc->key_mac_size;
ef43aa38
MB
913}
914
915/* Get sg containing data */
916static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc,
917 struct scatterlist *sg)
918{
33d2f09f 919 if (unlikely(crypt_integrity_aead(cc)))
ef43aa38
MB
920 return &sg[2];
921
922 return sg;
923}
924
925static int dm_crypt_integrity_io_alloc(struct dm_crypt_io *io, struct bio *bio)
926{
927 struct bio_integrity_payload *bip;
928 unsigned int tag_len;
929 int ret;
930
931 if (!bio_sectors(bio) || !io->cc->on_disk_tag_size)
932 return 0;
933
934 bip = bio_integrity_alloc(bio, GFP_NOIO, 1);
935 if (IS_ERR(bip))
936 return PTR_ERR(bip);
937
938 tag_len = io->cc->on_disk_tag_size * bio_sectors(bio);
939
940 bip->bip_iter.bi_size = tag_len;
941 bip->bip_iter.bi_sector = io->cc->start + io->sector;
942
ef43aa38
MB
943 ret = bio_integrity_add_page(bio, virt_to_page(io->integrity_metadata),
944 tag_len, offset_in_page(io->integrity_metadata));
945 if (unlikely(ret != tag_len))
946 return -ENOMEM;
947
948 return 0;
949}
950
951static int crypt_integrity_ctr(struct crypt_config *cc, struct dm_target *ti)
952{
953#ifdef CONFIG_BLK_DEV_INTEGRITY
954 struct blk_integrity *bi = blk_get_integrity(cc->dev->bdev->bd_disk);
955
956 /* From now we require underlying device with our integrity profile */
957 if (!bi || strcasecmp(bi->profile->name, "DM-DIF-EXT-TAG")) {
958 ti->error = "Integrity profile not supported.";
959 return -EINVAL;
960 }
961
583fe747
MP
962 if (bi->tag_size != cc->on_disk_tag_size ||
963 bi->tuple_size != cc->on_disk_tag_size) {
ef43aa38
MB
964 ti->error = "Integrity profile tag size mismatch.";
965 return -EINVAL;
966 }
583fe747
MP
967 if (1 << bi->interval_exp != cc->sector_size) {
968 ti->error = "Integrity profile sector size mismatch.";
969 return -EINVAL;
970 }
ef43aa38 971
33d2f09f 972 if (crypt_integrity_aead(cc)) {
ef43aa38
MB
973 cc->integrity_tag_size = cc->on_disk_tag_size - cc->integrity_iv_size;
974 DMINFO("Integrity AEAD, tag size %u, IV size %u.",
975 cc->integrity_tag_size, cc->integrity_iv_size);
976
977 if (crypto_aead_setauthsize(any_tfm_aead(cc), cc->integrity_tag_size)) {
978 ti->error = "Integrity AEAD auth tag size is not supported.";
979 return -EINVAL;
980 }
981 } else if (cc->integrity_iv_size)
982 DMINFO("Additional per-sector space %u bytes for IV.",
983 cc->integrity_iv_size);
984
985 if ((cc->integrity_tag_size + cc->integrity_iv_size) != bi->tag_size) {
986 ti->error = "Not enough space for integrity tag in the profile.";
987 return -EINVAL;
988 }
989
990 return 0;
991#else
992 ti->error = "Integrity profile not supported.";
993 return -EINVAL;
994#endif
995}
996
d469f841
MB
997static void crypt_convert_init(struct crypt_config *cc,
998 struct convert_context *ctx,
999 struct bio *bio_out, struct bio *bio_in,
fcd369da 1000 sector_t sector)
1da177e4
LT
1001{
1002 ctx->bio_in = bio_in;
1003 ctx->bio_out = bio_out;
003b5c57
KO
1004 if (bio_in)
1005 ctx->iter_in = bio_in->bi_iter;
1006 if (bio_out)
1007 ctx->iter_out = bio_out->bi_iter;
c66029f4 1008 ctx->cc_sector = sector + cc->iv_offset;
43d69034 1009 init_completion(&ctx->restart);
1da177e4
LT
1010}
1011
b2174eeb 1012static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
ef43aa38 1013 void *req)
b2174eeb
HY
1014{
1015 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
1016}
1017
ef43aa38 1018static void *req_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq)
b2174eeb 1019{
ef43aa38 1020 return (void *)((char *)dmreq - cc->dmreq_start);
b2174eeb
HY
1021}
1022
2dc5327d
MB
1023static u8 *iv_of_dmreq(struct crypt_config *cc,
1024 struct dm_crypt_request *dmreq)
1025{
33d2f09f 1026 if (crypt_integrity_aead(cc))
ef43aa38
MB
1027 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
1028 crypto_aead_alignmask(any_tfm_aead(cc)) + 1);
1029 else
1030 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
1031 crypto_skcipher_alignmask(any_tfm(cc)) + 1);
2dc5327d
MB
1032}
1033
ef43aa38
MB
1034static u8 *org_iv_of_dmreq(struct crypt_config *cc,
1035 struct dm_crypt_request *dmreq)
1036{
1037 return iv_of_dmreq(cc, dmreq) + cc->iv_size;
1038}
1039
1040static uint64_t *org_sector_of_dmreq(struct crypt_config *cc,
1041 struct dm_crypt_request *dmreq)
1042{
1043 u8 *ptr = iv_of_dmreq(cc, dmreq) + cc->iv_size + cc->iv_size;
1044 return (uint64_t*) ptr;
1045}
1046
1047static unsigned int *org_tag_of_dmreq(struct crypt_config *cc,
1048 struct dm_crypt_request *dmreq)
1049{
1050 u8 *ptr = iv_of_dmreq(cc, dmreq) + cc->iv_size +
1051 cc->iv_size + sizeof(uint64_t);
1052 return (unsigned int*)ptr;
1053}
1054
1055static void *tag_from_dmreq(struct crypt_config *cc,
1056 struct dm_crypt_request *dmreq)
1057{
1058 struct convert_context *ctx = dmreq->ctx;
1059 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
1060
1061 return &io->integrity_metadata[*org_tag_of_dmreq(cc, dmreq) *
1062 cc->on_disk_tag_size];
1063}
1064
1065static void *iv_tag_from_dmreq(struct crypt_config *cc,
1066 struct dm_crypt_request *dmreq)
1067{
1068 return tag_from_dmreq(cc, dmreq) + cc->integrity_tag_size;
1069}
1070
1071static int crypt_convert_block_aead(struct crypt_config *cc,
1072 struct convert_context *ctx,
1073 struct aead_request *req,
1074 unsigned int tag_offset)
01482b76 1075{
003b5c57
KO
1076 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
1077 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
3a7f6c99 1078 struct dm_crypt_request *dmreq;
ef43aa38
MB
1079 u8 *iv, *org_iv, *tag_iv, *tag;
1080 uint64_t *sector;
1081 int r = 0;
1082
1083 BUG_ON(cc->integrity_iv_size && cc->integrity_iv_size != cc->iv_size);
3a7f6c99 1084
8f0009a2 1085 /* Reject unexpected unaligned bio. */
0440d5c0 1086 if (unlikely(bv_in.bv_len & (cc->sector_size - 1)))
8f0009a2 1087 return -EIO;
3a7f6c99 1088
b2174eeb 1089 dmreq = dmreq_of_req(cc, req);
ef43aa38 1090 dmreq->iv_sector = ctx->cc_sector;
8f0009a2 1091 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
ff3af92b 1092 dmreq->iv_sector >>= cc->sector_shift;
ef43aa38
MB
1093 dmreq->ctx = ctx;
1094
1095 *org_tag_of_dmreq(cc, dmreq) = tag_offset;
1096
1097 sector = org_sector_of_dmreq(cc, dmreq);
1098 *sector = cpu_to_le64(ctx->cc_sector - cc->iv_offset);
1099
2dc5327d 1100 iv = iv_of_dmreq(cc, dmreq);
ef43aa38
MB
1101 org_iv = org_iv_of_dmreq(cc, dmreq);
1102 tag = tag_from_dmreq(cc, dmreq);
1103 tag_iv = iv_tag_from_dmreq(cc, dmreq);
1104
1105 /* AEAD request:
1106 * |----- AAD -------|------ DATA -------|-- AUTH TAG --|
1107 * | (authenticated) | (auth+encryption) | |
1108 * | sector_LE | IV | sector in/out | tag in/out |
1109 */
1110 sg_init_table(dmreq->sg_in, 4);
1111 sg_set_buf(&dmreq->sg_in[0], sector, sizeof(uint64_t));
1112 sg_set_buf(&dmreq->sg_in[1], org_iv, cc->iv_size);
8f0009a2 1113 sg_set_page(&dmreq->sg_in[2], bv_in.bv_page, cc->sector_size, bv_in.bv_offset);
ef43aa38
MB
1114 sg_set_buf(&dmreq->sg_in[3], tag, cc->integrity_tag_size);
1115
1116 sg_init_table(dmreq->sg_out, 4);
1117 sg_set_buf(&dmreq->sg_out[0], sector, sizeof(uint64_t));
1118 sg_set_buf(&dmreq->sg_out[1], org_iv, cc->iv_size);
8f0009a2 1119 sg_set_page(&dmreq->sg_out[2], bv_out.bv_page, cc->sector_size, bv_out.bv_offset);
ef43aa38
MB
1120 sg_set_buf(&dmreq->sg_out[3], tag, cc->integrity_tag_size);
1121
1122 if (cc->iv_gen_ops) {
1123 /* For READs use IV stored in integrity metadata */
1124 if (cc->integrity_iv_size && bio_data_dir(ctx->bio_in) != WRITE) {
1125 memcpy(org_iv, tag_iv, cc->iv_size);
1126 } else {
1127 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq);
1128 if (r < 0)
1129 return r;
1130 /* Store generated IV in integrity metadata */
1131 if (cc->integrity_iv_size)
1132 memcpy(tag_iv, org_iv, cc->iv_size);
1133 }
1134 /* Working copy of IV, to be modified in crypto API */
1135 memcpy(iv, org_iv, cc->iv_size);
1136 }
1137
1138 aead_request_set_ad(req, sizeof(uint64_t) + cc->iv_size);
1139 if (bio_data_dir(ctx->bio_in) == WRITE) {
1140 aead_request_set_crypt(req, dmreq->sg_in, dmreq->sg_out,
8f0009a2 1141 cc->sector_size, iv);
ef43aa38
MB
1142 r = crypto_aead_encrypt(req);
1143 if (cc->integrity_tag_size + cc->integrity_iv_size != cc->on_disk_tag_size)
1144 memset(tag + cc->integrity_tag_size + cc->integrity_iv_size, 0,
1145 cc->on_disk_tag_size - (cc->integrity_tag_size + cc->integrity_iv_size));
1146 } else {
1147 aead_request_set_crypt(req, dmreq->sg_in, dmreq->sg_out,
8f0009a2 1148 cc->sector_size + cc->integrity_tag_size, iv);
ef43aa38
MB
1149 r = crypto_aead_decrypt(req);
1150 }
1151
1152 if (r == -EBADMSG)
1153 DMERR_LIMIT("INTEGRITY AEAD ERROR, sector %llu",
1154 (unsigned long long)le64_to_cpu(*sector));
1155
1156 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
1157 r = cc->iv_gen_ops->post(cc, org_iv, dmreq);
1158
8f0009a2
MB
1159 bio_advance_iter(ctx->bio_in, &ctx->iter_in, cc->sector_size);
1160 bio_advance_iter(ctx->bio_out, &ctx->iter_out, cc->sector_size);
01482b76 1161
ef43aa38
MB
1162 return r;
1163}
1164
1165static int crypt_convert_block_skcipher(struct crypt_config *cc,
1166 struct convert_context *ctx,
1167 struct skcipher_request *req,
1168 unsigned int tag_offset)
1169{
1170 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
1171 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
1172 struct scatterlist *sg_in, *sg_out;
1173 struct dm_crypt_request *dmreq;
ef43aa38
MB
1174 u8 *iv, *org_iv, *tag_iv;
1175 uint64_t *sector;
1176 int r = 0;
01482b76 1177
8f0009a2 1178 /* Reject unexpected unaligned bio. */
0440d5c0 1179 if (unlikely(bv_in.bv_len & (cc->sector_size - 1)))
8f0009a2
MB
1180 return -EIO;
1181
ef43aa38 1182 dmreq = dmreq_of_req(cc, req);
c66029f4 1183 dmreq->iv_sector = ctx->cc_sector;
8f0009a2 1184 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
ff3af92b 1185 dmreq->iv_sector >>= cc->sector_shift;
b2174eeb 1186 dmreq->ctx = ctx;
01482b76 1187
ef43aa38
MB
1188 *org_tag_of_dmreq(cc, dmreq) = tag_offset;
1189
1190 iv = iv_of_dmreq(cc, dmreq);
1191 org_iv = org_iv_of_dmreq(cc, dmreq);
1192 tag_iv = iv_tag_from_dmreq(cc, dmreq);
1193
1194 sector = org_sector_of_dmreq(cc, dmreq);
1195 *sector = cpu_to_le64(ctx->cc_sector - cc->iv_offset);
1196
1197 /* For skcipher we use only the first sg item */
1198 sg_in = &dmreq->sg_in[0];
1199 sg_out = &dmreq->sg_out[0];
01482b76 1200
ef43aa38 1201 sg_init_table(sg_in, 1);
8f0009a2 1202 sg_set_page(sg_in, bv_in.bv_page, cc->sector_size, bv_in.bv_offset);
ef43aa38
MB
1203
1204 sg_init_table(sg_out, 1);
8f0009a2 1205 sg_set_page(sg_out, bv_out.bv_page, cc->sector_size, bv_out.bv_offset);
01482b76 1206
3a7f6c99 1207 if (cc->iv_gen_ops) {
ef43aa38
MB
1208 /* For READs use IV stored in integrity metadata */
1209 if (cc->integrity_iv_size && bio_data_dir(ctx->bio_in) != WRITE) {
1210 memcpy(org_iv, tag_iv, cc->integrity_iv_size);
1211 } else {
1212 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq);
1213 if (r < 0)
1214 return r;
1215 /* Store generated IV in integrity metadata */
1216 if (cc->integrity_iv_size)
1217 memcpy(tag_iv, org_iv, cc->integrity_iv_size);
1218 }
1219 /* Working copy of IV, to be modified in crypto API */
1220 memcpy(iv, org_iv, cc->iv_size);
3a7f6c99
MB
1221 }
1222
8f0009a2 1223 skcipher_request_set_crypt(req, sg_in, sg_out, cc->sector_size, iv);
3a7f6c99
MB
1224
1225 if (bio_data_dir(ctx->bio_in) == WRITE)
bbdb23b5 1226 r = crypto_skcipher_encrypt(req);
3a7f6c99 1227 else
bbdb23b5 1228 r = crypto_skcipher_decrypt(req);
3a7f6c99 1229
2dc5327d 1230 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
ef43aa38
MB
1231 r = cc->iv_gen_ops->post(cc, org_iv, dmreq);
1232
8f0009a2
MB
1233 bio_advance_iter(ctx->bio_in, &ctx->iter_in, cc->sector_size);
1234 bio_advance_iter(ctx->bio_out, &ctx->iter_out, cc->sector_size);
2dc5327d 1235
3a7f6c99 1236 return r;
01482b76
MB
1237}
1238
95497a96
MB
1239static void kcryptd_async_done(struct crypto_async_request *async_req,
1240 int error);
c0297721 1241
ef43aa38
MB
1242static void crypt_alloc_req_skcipher(struct crypt_config *cc,
1243 struct convert_context *ctx)
ddd42edf 1244{
c66029f4 1245 unsigned key_index = ctx->cc_sector & (cc->tfms_count - 1);
c0297721 1246
ef43aa38 1247 if (!ctx->r.req)
6f1c819c 1248 ctx->r.req = mempool_alloc(&cc->req_pool, GFP_NOIO);
c0297721 1249
ef43aa38 1250 skcipher_request_set_tfm(ctx->r.req, cc->cipher_tfm.tfms[key_index]);
54cea3f6
MB
1251
1252 /*
1253 * Use REQ_MAY_BACKLOG so a cipher driver internally backlogs
1254 * requests if driver request queue is full.
1255 */
ef43aa38 1256 skcipher_request_set_callback(ctx->r.req,
c0297721 1257 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
ef43aa38 1258 kcryptd_async_done, dmreq_of_req(cc, ctx->r.req));
ddd42edf
MB
1259}
1260
ef43aa38
MB
1261static void crypt_alloc_req_aead(struct crypt_config *cc,
1262 struct convert_context *ctx)
1263{
1264 if (!ctx->r.req_aead)
6f1c819c 1265 ctx->r.req_aead = mempool_alloc(&cc->req_pool, GFP_NOIO);
c0297721 1266
ef43aa38 1267 aead_request_set_tfm(ctx->r.req_aead, cc->cipher_tfm.tfms_aead[0]);
54cea3f6
MB
1268
1269 /*
1270 * Use REQ_MAY_BACKLOG so a cipher driver internally backlogs
1271 * requests if driver request queue is full.
1272 */
ef43aa38 1273 aead_request_set_callback(ctx->r.req_aead,
c0297721 1274 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
ef43aa38
MB
1275 kcryptd_async_done, dmreq_of_req(cc, ctx->r.req_aead));
1276}
1277
1278static void crypt_alloc_req(struct crypt_config *cc,
1279 struct convert_context *ctx)
1280{
33d2f09f 1281 if (crypt_integrity_aead(cc))
ef43aa38
MB
1282 crypt_alloc_req_aead(cc, ctx);
1283 else
1284 crypt_alloc_req_skcipher(cc, ctx);
ddd42edf
MB
1285}
1286
ef43aa38
MB
1287static void crypt_free_req_skcipher(struct crypt_config *cc,
1288 struct skcipher_request *req, struct bio *base_bio)
298a9fa0
MP
1289{
1290 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
1291
bbdb23b5 1292 if ((struct skcipher_request *)(io + 1) != req)
6f1c819c 1293 mempool_free(req, &cc->req_pool);
298a9fa0
MP
1294}
1295
ef43aa38
MB
1296static void crypt_free_req_aead(struct crypt_config *cc,
1297 struct aead_request *req, struct bio *base_bio)
1298{
1299 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
1300
1301 if ((struct aead_request *)(io + 1) != req)
6f1c819c 1302 mempool_free(req, &cc->req_pool);
ef43aa38
MB
1303}
1304
1305static void crypt_free_req(struct crypt_config *cc, void *req, struct bio *base_bio)
1306{
33d2f09f 1307 if (crypt_integrity_aead(cc))
ef43aa38
MB
1308 crypt_free_req_aead(cc, req, base_bio);
1309 else
1310 crypt_free_req_skcipher(cc, req, base_bio);
1311}
1312
1da177e4
LT
1313/*
1314 * Encrypt / decrypt data from one bio to another one (can be the same one)
1315 */
4e4cbee9 1316static blk_status_t crypt_convert(struct crypt_config *cc,
d469f841 1317 struct convert_context *ctx)
1da177e4 1318{
ef43aa38 1319 unsigned int tag_offset = 0;
ff3af92b 1320 unsigned int sector_step = cc->sector_size >> SECTOR_SHIFT;
3f1e9070 1321 int r;
1da177e4 1322
40b6229b 1323 atomic_set(&ctx->cc_pending, 1);
c8081618 1324
003b5c57 1325 while (ctx->iter_in.bi_size && ctx->iter_out.bi_size) {
1da177e4 1326
3a7f6c99 1327 crypt_alloc_req(cc, ctx);
40b6229b 1328 atomic_inc(&ctx->cc_pending);
3f1e9070 1329
33d2f09f 1330 if (crypt_integrity_aead(cc))
ef43aa38
MB
1331 r = crypt_convert_block_aead(cc, ctx, ctx->r.req_aead, tag_offset);
1332 else
1333 r = crypt_convert_block_skcipher(cc, ctx, ctx->r.req, tag_offset);
3a7f6c99
MB
1334
1335 switch (r) {
54cea3f6
MB
1336 /*
1337 * The request was queued by a crypto driver
1338 * but the driver request queue is full, let's wait.
1339 */
3a7f6c99
MB
1340 case -EBUSY:
1341 wait_for_completion(&ctx->restart);
16735d02 1342 reinit_completion(&ctx->restart);
54cea3f6
MB
1343 /* fall through */
1344 /*
1345 * The request is queued and processed asynchronously,
1346 * completion function kcryptd_async_done() will be called.
1347 */
c0403ec0 1348 case -EINPROGRESS:
ef43aa38 1349 ctx->r.req = NULL;
8f0009a2 1350 ctx->cc_sector += sector_step;
583fe747 1351 tag_offset++;
3f1e9070 1352 continue;
54cea3f6
MB
1353 /*
1354 * The request was already processed (synchronously).
1355 */
3a7f6c99 1356 case 0:
40b6229b 1357 atomic_dec(&ctx->cc_pending);
8f0009a2 1358 ctx->cc_sector += sector_step;
583fe747 1359 tag_offset++;
c7f1b204 1360 cond_resched();
3a7f6c99 1361 continue;
ef43aa38
MB
1362 /*
1363 * There was a data integrity error.
1364 */
1365 case -EBADMSG:
1366 atomic_dec(&ctx->cc_pending);
4e4cbee9 1367 return BLK_STS_PROTECTION;
ef43aa38
MB
1368 /*
1369 * There was an error while processing the request.
1370 */
3f1e9070 1371 default:
40b6229b 1372 atomic_dec(&ctx->cc_pending);
4e4cbee9 1373 return BLK_STS_IOERR;
3f1e9070 1374 }
1da177e4
LT
1375 }
1376
3f1e9070 1377 return 0;
1da177e4
LT
1378}
1379
cf2f1abf
MP
1380static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
1381
1da177e4
LT
1382/*
1383 * Generate a new unfragmented bio with the given size
586b286b
MS
1384 * This should never violate the device limitations (but only because
1385 * max_segment_size is being constrained to PAGE_SIZE).
7145c241
MP
1386 *
1387 * This function may be called concurrently. If we allocate from the mempool
1388 * concurrently, there is a possibility of deadlock. For example, if we have
1389 * mempool of 256 pages, two processes, each wanting 256, pages allocate from
1390 * the mempool concurrently, it may deadlock in a situation where both processes
1391 * have allocated 128 pages and the mempool is exhausted.
1392 *
1393 * In order to avoid this scenario we allocate the pages under a mutex.
1394 *
1395 * In order to not degrade performance with excessive locking, we try
1396 * non-blocking allocations without a mutex first but on failure we fallback
1397 * to blocking allocations with a mutex.
1da177e4 1398 */
cf2f1abf 1399static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
1da177e4 1400{
49a8a920 1401 struct crypt_config *cc = io->cc;
8b004457 1402 struct bio *clone;
1da177e4 1403 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
7145c241
MP
1404 gfp_t gfp_mask = GFP_NOWAIT | __GFP_HIGHMEM;
1405 unsigned i, len, remaining_size;
91e10625 1406 struct page *page;
1da177e4 1407
7145c241 1408retry:
d0164adc 1409 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
7145c241
MP
1410 mutex_lock(&cc->bio_alloc_lock);
1411
6f1c819c 1412 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, &cc->bs);
8b004457 1413 if (!clone)
ef43aa38 1414 goto out;
1da177e4 1415
027581f3 1416 clone_init(io, clone);
6a24c718 1417
7145c241
MP
1418 remaining_size = size;
1419
f97380bc 1420 for (i = 0; i < nr_iovecs; i++) {
6f1c819c 1421 page = mempool_alloc(&cc->page_pool, gfp_mask);
7145c241
MP
1422 if (!page) {
1423 crypt_free_buffer_pages(cc, clone);
1424 bio_put(clone);
d0164adc 1425 gfp_mask |= __GFP_DIRECT_RECLAIM;
7145c241
MP
1426 goto retry;
1427 }
1da177e4 1428
7145c241 1429 len = (remaining_size > PAGE_SIZE) ? PAGE_SIZE : remaining_size;
91e10625 1430
0dae7fe5 1431 bio_add_page(clone, page, len, 0);
1da177e4 1432
7145c241 1433 remaining_size -= len;
1da177e4
LT
1434 }
1435
ef43aa38
MB
1436 /* Allocate space for integrity tags */
1437 if (dm_crypt_integrity_io_alloc(io, clone)) {
1438 crypt_free_buffer_pages(cc, clone);
1439 bio_put(clone);
1440 clone = NULL;
1441 }
1442out:
d0164adc 1443 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
7145c241
MP
1444 mutex_unlock(&cc->bio_alloc_lock);
1445
8b004457 1446 return clone;
1da177e4
LT
1447}
1448
644bd2f0 1449static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
1da177e4 1450{
644bd2f0 1451 unsigned int i;
1da177e4
LT
1452 struct bio_vec *bv;
1453
cb34e057 1454 bio_for_each_segment_all(bv, clone, i) {
1da177e4 1455 BUG_ON(!bv->bv_page);
6f1c819c 1456 mempool_free(bv->bv_page, &cc->page_pool);
1da177e4
LT
1457 }
1458}
1459
298a9fa0
MP
1460static void crypt_io_init(struct dm_crypt_io *io, struct crypt_config *cc,
1461 struct bio *bio, sector_t sector)
dc440d1e 1462{
49a8a920 1463 io->cc = cc;
dc440d1e
MB
1464 io->base_bio = bio;
1465 io->sector = sector;
1466 io->error = 0;
ef43aa38
MB
1467 io->ctx.r.req = NULL;
1468 io->integrity_metadata = NULL;
1469 io->integrity_metadata_from_pool = false;
40b6229b 1470 atomic_set(&io->io_pending, 0);
dc440d1e
MB
1471}
1472
3e1a8bdd
MB
1473static void crypt_inc_pending(struct dm_crypt_io *io)
1474{
40b6229b 1475 atomic_inc(&io->io_pending);
3e1a8bdd
MB
1476}
1477
1da177e4
LT
1478/*
1479 * One of the bios was finished. Check for completion of
1480 * the whole request and correctly clean up the buffer.
1481 */
5742fd77 1482static void crypt_dec_pending(struct dm_crypt_io *io)
1da177e4 1483{
49a8a920 1484 struct crypt_config *cc = io->cc;
b35f8caa 1485 struct bio *base_bio = io->base_bio;
4e4cbee9 1486 blk_status_t error = io->error;
1da177e4 1487
40b6229b 1488 if (!atomic_dec_and_test(&io->io_pending))
1da177e4
LT
1489 return;
1490
ef43aa38
MB
1491 if (io->ctx.r.req)
1492 crypt_free_req(cc, io->ctx.r.req, base_bio);
1493
1494 if (unlikely(io->integrity_metadata_from_pool))
6f1c819c 1495 mempool_free(io->integrity_metadata, &io->cc->tag_pool);
ef43aa38
MB
1496 else
1497 kfree(io->integrity_metadata);
b35f8caa 1498
4e4cbee9 1499 base_bio->bi_status = error;
4246a0b6 1500 bio_endio(base_bio);
1da177e4
LT
1501}
1502
1503/*
cabf08e4 1504 * kcryptd/kcryptd_io:
1da177e4
LT
1505 *
1506 * Needed because it would be very unwise to do decryption in an
23541d2d 1507 * interrupt context.
cabf08e4
MB
1508 *
1509 * kcryptd performs the actual encryption or decryption.
1510 *
1511 * kcryptd_io performs the IO submission.
1512 *
1513 * They must be separated as otherwise the final stages could be
1514 * starved by new requests which can block in the first stages due
1515 * to memory allocation.
c0297721
AK
1516 *
1517 * The work is done per CPU global for all dm-crypt instances.
1518 * They should not depend on each other and do not block.
1da177e4 1519 */
4246a0b6 1520static void crypt_endio(struct bio *clone)
8b004457 1521{
028867ac 1522 struct dm_crypt_io *io = clone->bi_private;
49a8a920 1523 struct crypt_config *cc = io->cc;
ee7a491e 1524 unsigned rw = bio_data_dir(clone);
4e4cbee9 1525 blk_status_t error;
8b004457
MB
1526
1527 /*
6712ecf8 1528 * free the processed pages
8b004457 1529 */
ee7a491e 1530 if (rw == WRITE)
644bd2f0 1531 crypt_free_buffer_pages(cc, clone);
8b004457 1532
4e4cbee9 1533 error = clone->bi_status;
8b004457 1534 bio_put(clone);
8b004457 1535
9b81c842 1536 if (rw == READ && !error) {
ee7a491e
MB
1537 kcryptd_queue_crypt(io);
1538 return;
1539 }
5742fd77 1540
9b81c842
SL
1541 if (unlikely(error))
1542 io->error = error;
5742fd77
MB
1543
1544 crypt_dec_pending(io);
8b004457
MB
1545}
1546
028867ac 1547static void clone_init(struct dm_crypt_io *io, struct bio *clone)
8b004457 1548{
49a8a920 1549 struct crypt_config *cc = io->cc;
8b004457
MB
1550
1551 clone->bi_private = io;
1552 clone->bi_end_io = crypt_endio;
74d46992 1553 bio_set_dev(clone, cc->dev->bdev);
ef295ecf 1554 clone->bi_opf = io->base_bio->bi_opf;
8b004457
MB
1555}
1556
20c82538 1557static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
8b004457 1558{
49a8a920 1559 struct crypt_config *cc = io->cc;
8b004457 1560 struct bio *clone;
93e605c2 1561
8b004457 1562 /*
59779079
MS
1563 * We need the original biovec array in order to decrypt
1564 * the whole bio data *afterwards* -- thanks to immutable
1565 * biovecs we don't need to worry about the block layer
1566 * modifying the biovec array; so leverage bio_clone_fast().
8b004457 1567 */
6f1c819c 1568 clone = bio_clone_fast(io->base_bio, gfp, &cc->bs);
7eaceacc 1569 if (!clone)
20c82538 1570 return 1;
8b004457 1571
20c82538
MB
1572 crypt_inc_pending(io);
1573
8b004457 1574 clone_init(io, clone);
4f024f37 1575 clone->bi_iter.bi_sector = cc->start + io->sector;
8b004457 1576
ef43aa38
MB
1577 if (dm_crypt_integrity_io_alloc(io, clone)) {
1578 crypt_dec_pending(io);
1579 bio_put(clone);
1580 return 1;
1581 }
1582
93e605c2 1583 generic_make_request(clone);
20c82538 1584 return 0;
8b004457
MB
1585}
1586
dc267621
MP
1587static void kcryptd_io_read_work(struct work_struct *work)
1588{
1589 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1590
1591 crypt_inc_pending(io);
1592 if (kcryptd_io_read(io, GFP_NOIO))
4e4cbee9 1593 io->error = BLK_STS_RESOURCE;
dc267621
MP
1594 crypt_dec_pending(io);
1595}
1596
1597static void kcryptd_queue_read(struct dm_crypt_io *io)
1598{
1599 struct crypt_config *cc = io->cc;
1600
1601 INIT_WORK(&io->work, kcryptd_io_read_work);
1602 queue_work(cc->io_queue, &io->work);
1603}
1604
4e4eef64
MB
1605static void kcryptd_io_write(struct dm_crypt_io *io)
1606{
95497a96 1607 struct bio *clone = io->ctx.bio_out;
dc267621 1608
95497a96 1609 generic_make_request(clone);
4e4eef64
MB
1610}
1611
b3c5fd30
MP
1612#define crypt_io_from_node(node) rb_entry((node), struct dm_crypt_io, rb_node)
1613
dc267621 1614static int dmcrypt_write(void *data)
395b167c 1615{
dc267621 1616 struct crypt_config *cc = data;
b3c5fd30
MP
1617 struct dm_crypt_io *io;
1618
dc267621 1619 while (1) {
b3c5fd30 1620 struct rb_root write_tree;
dc267621 1621 struct blk_plug plug;
395b167c 1622
c7329eff 1623 spin_lock_irq(&cc->write_thread_lock);
dc267621 1624continue_locked:
395b167c 1625
b3c5fd30 1626 if (!RB_EMPTY_ROOT(&cc->write_tree))
dc267621
MP
1627 goto pop_from_list;
1628
f659b100 1629 set_current_state(TASK_INTERRUPTIBLE);
dc267621 1630
c7329eff 1631 spin_unlock_irq(&cc->write_thread_lock);
dc267621 1632
f659b100 1633 if (unlikely(kthread_should_stop())) {
642fa448 1634 set_current_state(TASK_RUNNING);
f659b100
RV
1635 break;
1636 }
1637
dc267621
MP
1638 schedule();
1639
642fa448 1640 set_current_state(TASK_RUNNING);
c7329eff 1641 spin_lock_irq(&cc->write_thread_lock);
dc267621
MP
1642 goto continue_locked;
1643
1644pop_from_list:
b3c5fd30
MP
1645 write_tree = cc->write_tree;
1646 cc->write_tree = RB_ROOT;
c7329eff 1647 spin_unlock_irq(&cc->write_thread_lock);
dc267621 1648
b3c5fd30
MP
1649 BUG_ON(rb_parent(write_tree.rb_node));
1650
1651 /*
1652 * Note: we cannot walk the tree here with rb_next because
1653 * the structures may be freed when kcryptd_io_write is called.
1654 */
dc267621
MP
1655 blk_start_plug(&plug);
1656 do {
b3c5fd30
MP
1657 io = crypt_io_from_node(rb_first(&write_tree));
1658 rb_erase(&io->rb_node, &write_tree);
dc267621 1659 kcryptd_io_write(io);
b3c5fd30 1660 } while (!RB_EMPTY_ROOT(&write_tree));
dc267621
MP
1661 blk_finish_plug(&plug);
1662 }
1663 return 0;
395b167c
AK
1664}
1665
72c6e7af 1666static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async)
4e4eef64 1667{
dec1cedf 1668 struct bio *clone = io->ctx.bio_out;
49a8a920 1669 struct crypt_config *cc = io->cc;
dc267621 1670 unsigned long flags;
b3c5fd30
MP
1671 sector_t sector;
1672 struct rb_node **rbp, *parent;
dec1cedf 1673
4e4cbee9 1674 if (unlikely(io->error)) {
dec1cedf
MB
1675 crypt_free_buffer_pages(cc, clone);
1676 bio_put(clone);
6c031f41 1677 crypt_dec_pending(io);
dec1cedf
MB
1678 return;
1679 }
1680
1681 /* crypt_convert should have filled the clone bio */
003b5c57 1682 BUG_ON(io->ctx.iter_out.bi_size);
dec1cedf 1683
4f024f37 1684 clone->bi_iter.bi_sector = cc->start + io->sector;
899c95d3 1685
0f5d8e6e
MP
1686 if (likely(!async) && test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags)) {
1687 generic_make_request(clone);
1688 return;
1689 }
1690
c7329eff
MP
1691 spin_lock_irqsave(&cc->write_thread_lock, flags);
1692 if (RB_EMPTY_ROOT(&cc->write_tree))
1693 wake_up_process(cc->write_thread);
b3c5fd30
MP
1694 rbp = &cc->write_tree.rb_node;
1695 parent = NULL;
1696 sector = io->sector;
1697 while (*rbp) {
1698 parent = *rbp;
1699 if (sector < crypt_io_from_node(parent)->sector)
1700 rbp = &(*rbp)->rb_left;
1701 else
1702 rbp = &(*rbp)->rb_right;
1703 }
1704 rb_link_node(&io->rb_node, parent, rbp);
1705 rb_insert_color(&io->rb_node, &cc->write_tree);
c7329eff 1706 spin_unlock_irqrestore(&cc->write_thread_lock, flags);
4e4eef64
MB
1707}
1708
fc5a5e9a 1709static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
8b004457 1710{
49a8a920 1711 struct crypt_config *cc = io->cc;
8b004457 1712 struct bio *clone;
c8081618 1713 int crypt_finished;
b635b00e 1714 sector_t sector = io->sector;
4e4cbee9 1715 blk_status_t r;
8b004457 1716
fc5a5e9a
MB
1717 /*
1718 * Prevent io from disappearing until this function completes.
1719 */
1720 crypt_inc_pending(io);
b635b00e 1721 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
fc5a5e9a 1722
cf2f1abf
MP
1723 clone = crypt_alloc_buffer(io, io->base_bio->bi_iter.bi_size);
1724 if (unlikely(!clone)) {
4e4cbee9 1725 io->error = BLK_STS_IOERR;
cf2f1abf
MP
1726 goto dec;
1727 }
c8081618 1728
cf2f1abf
MP
1729 io->ctx.bio_out = clone;
1730 io->ctx.iter_out = clone->bi_iter;
b635b00e 1731
cf2f1abf 1732 sector += bio_sectors(clone);
93e605c2 1733
cf2f1abf
MP
1734 crypt_inc_pending(io);
1735 r = crypt_convert(cc, &io->ctx);
4e4cbee9 1736 if (r)
ef43aa38 1737 io->error = r;
cf2f1abf 1738 crypt_finished = atomic_dec_and_test(&io->ctx.cc_pending);
933f01d4 1739
cf2f1abf
MP
1740 /* Encryption was already finished, submit io now */
1741 if (crypt_finished) {
1742 kcryptd_crypt_write_io_submit(io, 0);
1743 io->sector = sector;
93e605c2 1744 }
899c95d3 1745
cf2f1abf 1746dec:
899c95d3 1747 crypt_dec_pending(io);
84131db6
MB
1748}
1749
72c6e7af 1750static void kcryptd_crypt_read_done(struct dm_crypt_io *io)
5742fd77 1751{
5742fd77
MB
1752 crypt_dec_pending(io);
1753}
1754
4e4eef64 1755static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
8b004457 1756{
49a8a920 1757 struct crypt_config *cc = io->cc;
4e4cbee9 1758 blk_status_t r;
1da177e4 1759
3e1a8bdd 1760 crypt_inc_pending(io);
3a7f6c99 1761
53017030 1762 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
0c395b0f 1763 io->sector);
1da177e4 1764
5742fd77 1765 r = crypt_convert(cc, &io->ctx);
4e4cbee9 1766 if (r)
ef43aa38 1767 io->error = r;
5742fd77 1768
40b6229b 1769 if (atomic_dec_and_test(&io->ctx.cc_pending))
72c6e7af 1770 kcryptd_crypt_read_done(io);
3a7f6c99
MB
1771
1772 crypt_dec_pending(io);
1da177e4
LT
1773}
1774
95497a96
MB
1775static void kcryptd_async_done(struct crypto_async_request *async_req,
1776 int error)
1777{
b2174eeb
HY
1778 struct dm_crypt_request *dmreq = async_req->data;
1779 struct convert_context *ctx = dmreq->ctx;
95497a96 1780 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
49a8a920 1781 struct crypt_config *cc = io->cc;
95497a96 1782
54cea3f6
MB
1783 /*
1784 * A request from crypto driver backlog is going to be processed now,
1785 * finish the completion and continue in crypt_convert().
1786 * (Callback will be called for the second time for this request.)
1787 */
c0403ec0
RV
1788 if (error == -EINPROGRESS) {
1789 complete(&ctx->restart);
95497a96 1790 return;
c0403ec0 1791 }
95497a96 1792
2dc5327d 1793 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post)
ef43aa38 1794 error = cc->iv_gen_ops->post(cc, org_iv_of_dmreq(cc, dmreq), dmreq);
2dc5327d 1795
ef43aa38
MB
1796 if (error == -EBADMSG) {
1797 DMERR_LIMIT("INTEGRITY AEAD ERROR, sector %llu",
1798 (unsigned long long)le64_to_cpu(*org_sector_of_dmreq(cc, dmreq)));
4e4cbee9 1799 io->error = BLK_STS_PROTECTION;
ef43aa38 1800 } else if (error < 0)
4e4cbee9 1801 io->error = BLK_STS_IOERR;
72c6e7af 1802
298a9fa0 1803 crypt_free_req(cc, req_of_dmreq(cc, dmreq), io->base_bio);
95497a96 1804
40b6229b 1805 if (!atomic_dec_and_test(&ctx->cc_pending))
c0403ec0 1806 return;
95497a96
MB
1807
1808 if (bio_data_dir(io->base_bio) == READ)
72c6e7af 1809 kcryptd_crypt_read_done(io);
95497a96 1810 else
72c6e7af 1811 kcryptd_crypt_write_io_submit(io, 1);
95497a96
MB
1812}
1813
395b167c 1814static void kcryptd_crypt(struct work_struct *work)
1da177e4 1815{
028867ac 1816 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
8b004457 1817
cabf08e4 1818 if (bio_data_dir(io->base_bio) == READ)
395b167c 1819 kcryptd_crypt_read_convert(io);
4e4eef64 1820 else
395b167c 1821 kcryptd_crypt_write_convert(io);
cabf08e4
MB
1822}
1823
395b167c 1824static void kcryptd_queue_crypt(struct dm_crypt_io *io)
cabf08e4 1825{
49a8a920 1826 struct crypt_config *cc = io->cc;
cabf08e4 1827
395b167c
AK
1828 INIT_WORK(&io->work, kcryptd_crypt);
1829 queue_work(cc->crypt_queue, &io->work);
1da177e4
LT
1830}
1831
ef43aa38 1832static void crypt_free_tfms_aead(struct crypt_config *cc)
1da177e4 1833{
ef43aa38
MB
1834 if (!cc->cipher_tfm.tfms_aead)
1835 return;
1da177e4 1836
ef43aa38
MB
1837 if (cc->cipher_tfm.tfms_aead[0] && !IS_ERR(cc->cipher_tfm.tfms_aead[0])) {
1838 crypto_free_aead(cc->cipher_tfm.tfms_aead[0]);
1839 cc->cipher_tfm.tfms_aead[0] = NULL;
1da177e4
LT
1840 }
1841
ef43aa38
MB
1842 kfree(cc->cipher_tfm.tfms_aead);
1843 cc->cipher_tfm.tfms_aead = NULL;
1da177e4
LT
1844}
1845
ef43aa38 1846static void crypt_free_tfms_skcipher(struct crypt_config *cc)
d1f96423 1847{
d1f96423
MB
1848 unsigned i;
1849
ef43aa38 1850 if (!cc->cipher_tfm.tfms)
fd2d231f
MP
1851 return;
1852
d1f96423 1853 for (i = 0; i < cc->tfms_count; i++)
ef43aa38
MB
1854 if (cc->cipher_tfm.tfms[i] && !IS_ERR(cc->cipher_tfm.tfms[i])) {
1855 crypto_free_skcipher(cc->cipher_tfm.tfms[i]);
1856 cc->cipher_tfm.tfms[i] = NULL;
d1f96423 1857 }
fd2d231f 1858
ef43aa38
MB
1859 kfree(cc->cipher_tfm.tfms);
1860 cc->cipher_tfm.tfms = NULL;
d1f96423
MB
1861}
1862
ef43aa38
MB
1863static void crypt_free_tfms(struct crypt_config *cc)
1864{
33d2f09f 1865 if (crypt_integrity_aead(cc))
ef43aa38
MB
1866 crypt_free_tfms_aead(cc);
1867 else
1868 crypt_free_tfms_skcipher(cc);
1869}
1870
1871static int crypt_alloc_tfms_skcipher(struct crypt_config *cc, char *ciphermode)
d1f96423 1872{
d1f96423
MB
1873 unsigned i;
1874 int err;
1875
6396bb22
KC
1876 cc->cipher_tfm.tfms = kcalloc(cc->tfms_count,
1877 sizeof(struct crypto_skcipher *),
1878 GFP_KERNEL);
ef43aa38 1879 if (!cc->cipher_tfm.tfms)
fd2d231f
MP
1880 return -ENOMEM;
1881
d1f96423 1882 for (i = 0; i < cc->tfms_count; i++) {
ef43aa38
MB
1883 cc->cipher_tfm.tfms[i] = crypto_alloc_skcipher(ciphermode, 0, 0);
1884 if (IS_ERR(cc->cipher_tfm.tfms[i])) {
1885 err = PTR_ERR(cc->cipher_tfm.tfms[i]);
fd2d231f 1886 crypt_free_tfms(cc);
d1f96423
MB
1887 return err;
1888 }
1889 }
1890
1891 return 0;
1892}
1893
ef43aa38
MB
1894static int crypt_alloc_tfms_aead(struct crypt_config *cc, char *ciphermode)
1895{
ef43aa38
MB
1896 int err;
1897
1898 cc->cipher_tfm.tfms = kmalloc(sizeof(struct crypto_aead *), GFP_KERNEL);
1899 if (!cc->cipher_tfm.tfms)
1900 return -ENOMEM;
1901
ef43aa38
MB
1902 cc->cipher_tfm.tfms_aead[0] = crypto_alloc_aead(ciphermode, 0, 0);
1903 if (IS_ERR(cc->cipher_tfm.tfms_aead[0])) {
1904 err = PTR_ERR(cc->cipher_tfm.tfms_aead[0]);
1905 crypt_free_tfms(cc);
1906 return err;
1907 }
1908
ef43aa38
MB
1909 return 0;
1910}
1911
1912static int crypt_alloc_tfms(struct crypt_config *cc, char *ciphermode)
1913{
33d2f09f 1914 if (crypt_integrity_aead(cc))
ef43aa38
MB
1915 return crypt_alloc_tfms_aead(cc, ciphermode);
1916 else
1917 return crypt_alloc_tfms_skcipher(cc, ciphermode);
1918}
1919
1920static unsigned crypt_subkey_size(struct crypt_config *cc)
1921{
1922 return (cc->key_size - cc->key_extra_size) >> ilog2(cc->tfms_count);
1923}
1924
1925static unsigned crypt_authenckey_size(struct crypt_config *cc)
1926{
1927 return crypt_subkey_size(cc) + RTA_SPACE(sizeof(struct crypto_authenc_key_param));
1928}
1929
1930/*
1931 * If AEAD is composed like authenc(hmac(sha256),xts(aes)),
1932 * the key must be for some reason in special format.
1933 * This funcion converts cc->key to this special format.
1934 */
1935static void crypt_copy_authenckey(char *p, const void *key,
1936 unsigned enckeylen, unsigned authkeylen)
1937{
1938 struct crypto_authenc_key_param *param;
1939 struct rtattr *rta;
1940
1941 rta = (struct rtattr *)p;
1942 param = RTA_DATA(rta);
1943 param->enckeylen = cpu_to_be32(enckeylen);
1944 rta->rta_len = RTA_LENGTH(sizeof(*param));
1945 rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
1946 p += RTA_SPACE(sizeof(*param));
1947 memcpy(p, key + enckeylen, authkeylen);
1948 p += authkeylen;
1949 memcpy(p, key, enckeylen);
1950}
1951
671ea6b4 1952static int crypt_setkey(struct crypt_config *cc)
c0297721 1953{
da31a078 1954 unsigned subkey_size;
fd2d231f
MP
1955 int err = 0, i, r;
1956
da31a078 1957 /* Ignore extra keys (which are used for IV etc) */
ef43aa38 1958 subkey_size = crypt_subkey_size(cc);
da31a078 1959
27c70036
MB
1960 if (crypt_integrity_hmac(cc)) {
1961 if (subkey_size < cc->key_mac_size)
1962 return -EINVAL;
1963
ef43aa38
MB
1964 crypt_copy_authenckey(cc->authenc_key, cc->key,
1965 subkey_size - cc->key_mac_size,
1966 cc->key_mac_size);
27c70036
MB
1967 }
1968
fd2d231f 1969 for (i = 0; i < cc->tfms_count; i++) {
33d2f09f 1970 if (crypt_integrity_hmac(cc))
ef43aa38
MB
1971 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i],
1972 cc->authenc_key, crypt_authenckey_size(cc));
33d2f09f
MB
1973 else if (crypt_integrity_aead(cc))
1974 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i],
1975 cc->key + (i * subkey_size),
1976 subkey_size);
ef43aa38
MB
1977 else
1978 r = crypto_skcipher_setkey(cc->cipher_tfm.tfms[i],
1979 cc->key + (i * subkey_size),
1980 subkey_size);
fd2d231f
MP
1981 if (r)
1982 err = r;
c0297721
AK
1983 }
1984
ef43aa38
MB
1985 if (crypt_integrity_hmac(cc))
1986 memzero_explicit(cc->authenc_key, crypt_authenckey_size(cc));
1987
c0297721
AK
1988 return err;
1989}
1990
c538f6ec
OK
1991#ifdef CONFIG_KEYS
1992
027c431c
OK
1993static bool contains_whitespace(const char *str)
1994{
1995 while (*str)
1996 if (isspace(*str++))
1997 return true;
1998 return false;
1999}
2000
c538f6ec
OK
2001static int crypt_set_keyring_key(struct crypt_config *cc, const char *key_string)
2002{
2003 char *new_key_string, *key_desc;
2004 int ret;
2005 struct key *key;
2006 const struct user_key_payload *ukp;
2007
027c431c
OK
2008 /*
2009 * Reject key_string with whitespace. dm core currently lacks code for
2010 * proper whitespace escaping in arguments on DM_TABLE_STATUS path.
2011 */
2012 if (contains_whitespace(key_string)) {
2013 DMERR("whitespace chars not allowed in key string");
2014 return -EINVAL;
2015 }
2016
c538f6ec
OK
2017 /* look for next ':' separating key_type from key_description */
2018 key_desc = strpbrk(key_string, ":");
2019 if (!key_desc || key_desc == key_string || !strlen(key_desc + 1))
2020 return -EINVAL;
2021
2022 if (strncmp(key_string, "logon:", key_desc - key_string + 1) &&
2023 strncmp(key_string, "user:", key_desc - key_string + 1))
2024 return -EINVAL;
2025
2026 new_key_string = kstrdup(key_string, GFP_KERNEL);
2027 if (!new_key_string)
2028 return -ENOMEM;
2029
2030 key = request_key(key_string[0] == 'l' ? &key_type_logon : &key_type_user,
2031 key_desc + 1, NULL);
2032 if (IS_ERR(key)) {
2033 kzfree(new_key_string);
2034 return PTR_ERR(key);
2035 }
2036
f5b0cba8 2037 down_read(&key->sem);
c538f6ec 2038
0837e49a 2039 ukp = user_key_payload_locked(key);
c538f6ec 2040 if (!ukp) {
f5b0cba8 2041 up_read(&key->sem);
c538f6ec
OK
2042 key_put(key);
2043 kzfree(new_key_string);
2044 return -EKEYREVOKED;
2045 }
2046
2047 if (cc->key_size != ukp->datalen) {
f5b0cba8 2048 up_read(&key->sem);
c538f6ec
OK
2049 key_put(key);
2050 kzfree(new_key_string);
2051 return -EINVAL;
2052 }
2053
2054 memcpy(cc->key, ukp->data, cc->key_size);
2055
f5b0cba8 2056 up_read(&key->sem);
c538f6ec
OK
2057 key_put(key);
2058
2059 /* clear the flag since following operations may invalidate previously valid key */
2060 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
2061
2062 ret = crypt_setkey(cc);
2063
c538f6ec
OK
2064 if (!ret) {
2065 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
2066 kzfree(cc->key_string);
2067 cc->key_string = new_key_string;
2068 } else
2069 kzfree(new_key_string);
2070
2071 return ret;
2072}
2073
2074static int get_key_size(char **key_string)
2075{
2076 char *colon, dummy;
2077 int ret;
2078
2079 if (*key_string[0] != ':')
2080 return strlen(*key_string) >> 1;
2081
2082 /* look for next ':' in key string */
2083 colon = strpbrk(*key_string + 1, ":");
2084 if (!colon)
2085 return -EINVAL;
2086
2087 if (sscanf(*key_string + 1, "%u%c", &ret, &dummy) != 2 || dummy != ':')
2088 return -EINVAL;
2089
2090 *key_string = colon;
2091
2092 /* remaining key string should be :<logon|user>:<key_desc> */
2093
2094 return ret;
2095}
2096
2097#else
2098
2099static int crypt_set_keyring_key(struct crypt_config *cc, const char *key_string)
2100{
2101 return -EINVAL;
2102}
2103
2104static int get_key_size(char **key_string)
2105{
2106 return (*key_string[0] == ':') ? -EINVAL : strlen(*key_string) >> 1;
2107}
2108
2109#endif
2110
e48d4bbf
MB
2111static int crypt_set_key(struct crypt_config *cc, char *key)
2112{
de8be5ac
MB
2113 int r = -EINVAL;
2114 int key_string_len = strlen(key);
2115
69a8cfcd
MB
2116 /* Hyphen (which gives a key_size of zero) means there is no key. */
2117 if (!cc->key_size && strcmp(key, "-"))
de8be5ac 2118 goto out;
e48d4bbf 2119
c538f6ec
OK
2120 /* ':' means the key is in kernel keyring, short-circuit normal key processing */
2121 if (key[0] == ':') {
2122 r = crypt_set_keyring_key(cc, key + 1);
de8be5ac 2123 goto out;
c538f6ec 2124 }
e48d4bbf 2125
265e9098
OK
2126 /* clear the flag since following operations may invalidate previously valid key */
2127 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
e48d4bbf 2128
c538f6ec
OK
2129 /* wipe references to any kernel keyring key */
2130 kzfree(cc->key_string);
2131 cc->key_string = NULL;
2132
e944e03e
AS
2133 /* Decode key from its hex representation. */
2134 if (cc->key_size && hex2bin(cc->key, key, cc->key_size) < 0)
de8be5ac 2135 goto out;
e48d4bbf 2136
671ea6b4 2137 r = crypt_setkey(cc);
265e9098
OK
2138 if (!r)
2139 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
de8be5ac
MB
2140
2141out:
2142 /* Hex key string not needed after here, so wipe it. */
2143 memset(key, '0', key_string_len);
2144
2145 return r;
e48d4bbf
MB
2146}
2147
2148static int crypt_wipe_key(struct crypt_config *cc)
2149{
c82feeec
OK
2150 int r;
2151
e48d4bbf 2152 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
c82feeec 2153 get_random_bytes(&cc->key, cc->key_size);
c538f6ec
OK
2154 kzfree(cc->key_string);
2155 cc->key_string = NULL;
c82feeec
OK
2156 r = crypt_setkey(cc);
2157 memset(&cc->key, 0, cc->key_size * sizeof(u8));
c0297721 2158
c82feeec 2159 return r;
e48d4bbf
MB
2160}
2161
5059353d
MP
2162static void crypt_calculate_pages_per_client(void)
2163{
2164 unsigned long pages = (totalram_pages - totalhigh_pages) * DM_CRYPT_MEMORY_PERCENT / 100;
2165
2166 if (!dm_crypt_clients_n)
2167 return;
2168
2169 pages /= dm_crypt_clients_n;
2170 if (pages < DM_CRYPT_MIN_PAGES_PER_CLIENT)
2171 pages = DM_CRYPT_MIN_PAGES_PER_CLIENT;
2172 dm_crypt_pages_per_client = pages;
2173}
2174
2175static void *crypt_page_alloc(gfp_t gfp_mask, void *pool_data)
2176{
2177 struct crypt_config *cc = pool_data;
2178 struct page *page;
2179
2180 if (unlikely(percpu_counter_compare(&cc->n_allocated_pages, dm_crypt_pages_per_client) >= 0) &&
2181 likely(gfp_mask & __GFP_NORETRY))
2182 return NULL;
2183
2184 page = alloc_page(gfp_mask);
2185 if (likely(page != NULL))
2186 percpu_counter_add(&cc->n_allocated_pages, 1);
2187
2188 return page;
2189}
2190
2191static void crypt_page_free(void *page, void *pool_data)
2192{
2193 struct crypt_config *cc = pool_data;
2194
2195 __free_page(page);
2196 percpu_counter_sub(&cc->n_allocated_pages, 1);
2197}
2198
28513fcc
MB
2199static void crypt_dtr(struct dm_target *ti)
2200{
2201 struct crypt_config *cc = ti->private;
2202
2203 ti->private = NULL;
2204
2205 if (!cc)
2206 return;
2207
f659b100 2208 if (cc->write_thread)
dc267621
MP
2209 kthread_stop(cc->write_thread);
2210
28513fcc
MB
2211 if (cc->io_queue)
2212 destroy_workqueue(cc->io_queue);
2213 if (cc->crypt_queue)
2214 destroy_workqueue(cc->crypt_queue);
2215
fd2d231f
MP
2216 crypt_free_tfms(cc);
2217
6f1c819c 2218 bioset_exit(&cc->bs);
28513fcc 2219
6f1c819c
KO
2220 mempool_exit(&cc->page_pool);
2221 mempool_exit(&cc->req_pool);
2222 mempool_exit(&cc->tag_pool);
2223
d00a11df
KO
2224 WARN_ON(percpu_counter_sum(&cc->n_allocated_pages) != 0);
2225 percpu_counter_destroy(&cc->n_allocated_pages);
2226
28513fcc
MB
2227 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
2228 cc->iv_gen_ops->dtr(cc);
2229
28513fcc
MB
2230 if (cc->dev)
2231 dm_put_device(ti, cc->dev);
2232
5ebaee6d 2233 kzfree(cc->cipher);
7dbcd137 2234 kzfree(cc->cipher_string);
c538f6ec 2235 kzfree(cc->key_string);
ef43aa38
MB
2236 kzfree(cc->cipher_auth);
2237 kzfree(cc->authenc_key);
28513fcc 2238
d5ffebdd
MS
2239 mutex_destroy(&cc->bio_alloc_lock);
2240
28513fcc
MB
2241 /* Must zero key material before freeing */
2242 kzfree(cc);
5059353d
MP
2243
2244 spin_lock(&dm_crypt_clients_lock);
2245 WARN_ON(!dm_crypt_clients_n);
2246 dm_crypt_clients_n--;
2247 crypt_calculate_pages_per_client();
2248 spin_unlock(&dm_crypt_clients_lock);
28513fcc
MB
2249}
2250
e889f97a
MB
2251static int crypt_ctr_ivmode(struct dm_target *ti, const char *ivmode)
2252{
2253 struct crypt_config *cc = ti->private;
2254
33d2f09f 2255 if (crypt_integrity_aead(cc))
e889f97a
MB
2256 cc->iv_size = crypto_aead_ivsize(any_tfm_aead(cc));
2257 else
2258 cc->iv_size = crypto_skcipher_ivsize(any_tfm(cc));
2259
e889f97a
MB
2260 if (cc->iv_size)
2261 /* at least a 64 bit sector number should fit in our buffer */
2262 cc->iv_size = max(cc->iv_size,
2263 (unsigned int)(sizeof(u64) / sizeof(u8)));
2264 else if (ivmode) {
2265 DMWARN("Selected cipher does not support IVs");
2266 ivmode = NULL;
2267 }
2268
2269 /* Choose ivmode, see comments at iv code. */
2270 if (ivmode == NULL)
2271 cc->iv_gen_ops = NULL;
2272 else if (strcmp(ivmode, "plain") == 0)
2273 cc->iv_gen_ops = &crypt_iv_plain_ops;
2274 else if (strcmp(ivmode, "plain64") == 0)
2275 cc->iv_gen_ops = &crypt_iv_plain64_ops;
7e3fd855
MB
2276 else if (strcmp(ivmode, "plain64be") == 0)
2277 cc->iv_gen_ops = &crypt_iv_plain64be_ops;
e889f97a
MB
2278 else if (strcmp(ivmode, "essiv") == 0)
2279 cc->iv_gen_ops = &crypt_iv_essiv_ops;
2280 else if (strcmp(ivmode, "benbi") == 0)
2281 cc->iv_gen_ops = &crypt_iv_benbi_ops;
2282 else if (strcmp(ivmode, "null") == 0)
2283 cc->iv_gen_ops = &crypt_iv_null_ops;
2284 else if (strcmp(ivmode, "lmk") == 0) {
2285 cc->iv_gen_ops = &crypt_iv_lmk_ops;
2286 /*
2287 * Version 2 and 3 is recognised according
2288 * to length of provided multi-key string.
2289 * If present (version 3), last key is used as IV seed.
2290 * All keys (including IV seed) are always the same size.
2291 */
2292 if (cc->key_size % cc->key_parts) {
2293 cc->key_parts++;
2294 cc->key_extra_size = cc->key_size / cc->key_parts;
2295 }
2296 } else if (strcmp(ivmode, "tcw") == 0) {
2297 cc->iv_gen_ops = &crypt_iv_tcw_ops;
2298 cc->key_parts += 2; /* IV + whitening */
2299 cc->key_extra_size = cc->iv_size + TCW_WHITENING_SIZE;
2300 } else if (strcmp(ivmode, "random") == 0) {
2301 cc->iv_gen_ops = &crypt_iv_random_ops;
2302 /* Need storage space in integrity fields. */
2303 cc->integrity_iv_size = cc->iv_size;
2304 } else {
2305 ti->error = "Invalid IV mode";
2306 return -EINVAL;
2307 }
2308
2309 return 0;
2310}
2311
33d2f09f
MB
2312/*
2313 * Workaround to parse cipher algorithm from crypto API spec.
2314 * The cc->cipher is currently used only in ESSIV.
2315 * This should be probably done by crypto-api calls (once available...)
2316 */
2317static int crypt_ctr_blkdev_cipher(struct crypt_config *cc)
2318{
2319 const char *alg_name = NULL;
2320 char *start, *end;
2321
2322 if (crypt_integrity_aead(cc)) {
2323 alg_name = crypto_tfm_alg_name(crypto_aead_tfm(any_tfm_aead(cc)));
2324 if (!alg_name)
2325 return -EINVAL;
2326 if (crypt_integrity_hmac(cc)) {
2327 alg_name = strchr(alg_name, ',');
2328 if (!alg_name)
2329 return -EINVAL;
2330 }
2331 alg_name++;
2332 } else {
2333 alg_name = crypto_tfm_alg_name(crypto_skcipher_tfm(any_tfm(cc)));
2334 if (!alg_name)
2335 return -EINVAL;
2336 }
2337
2338 start = strchr(alg_name, '(');
2339 end = strchr(alg_name, ')');
2340
2341 if (!start && !end) {
2342 cc->cipher = kstrdup(alg_name, GFP_KERNEL);
2343 return cc->cipher ? 0 : -ENOMEM;
2344 }
2345
2346 if (!start || !end || ++start >= end)
2347 return -EINVAL;
2348
2349 cc->cipher = kzalloc(end - start + 1, GFP_KERNEL);
2350 if (!cc->cipher)
2351 return -ENOMEM;
2352
2353 strncpy(cc->cipher, start, end - start);
2354
2355 return 0;
2356}
2357
2358/*
2359 * Workaround to parse HMAC algorithm from AEAD crypto API spec.
2360 * The HMAC is needed to calculate tag size (HMAC digest size).
2361 * This should be probably done by crypto-api calls (once available...)
2362 */
2363static int crypt_ctr_auth_cipher(struct crypt_config *cc, char *cipher_api)
2364{
2365 char *start, *end, *mac_alg = NULL;
2366 struct crypto_ahash *mac;
2367
2368 if (!strstarts(cipher_api, "authenc("))
2369 return 0;
2370
2371 start = strchr(cipher_api, '(');
2372 end = strchr(cipher_api, ',');
2373 if (!start || !end || ++start > end)
2374 return -EINVAL;
2375
2376 mac_alg = kzalloc(end - start + 1, GFP_KERNEL);
2377 if (!mac_alg)
2378 return -ENOMEM;
2379 strncpy(mac_alg, start, end - start);
2380
2381 mac = crypto_alloc_ahash(mac_alg, 0, 0);
2382 kfree(mac_alg);
2383
2384 if (IS_ERR(mac))
2385 return PTR_ERR(mac);
2386
2387 cc->key_mac_size = crypto_ahash_digestsize(mac);
2388 crypto_free_ahash(mac);
2389
2390 cc->authenc_key = kmalloc(crypt_authenckey_size(cc), GFP_KERNEL);
2391 if (!cc->authenc_key)
2392 return -ENOMEM;
2393
2394 return 0;
2395}
2396
2397static int crypt_ctr_cipher_new(struct dm_target *ti, char *cipher_in, char *key,
2398 char **ivmode, char **ivopts)
2399{
2400 struct crypt_config *cc = ti->private;
2401 char *tmp, *cipher_api;
2402 int ret = -EINVAL;
2403
2404 cc->tfms_count = 1;
2405
2406 /*
2407 * New format (capi: prefix)
2408 * capi:cipher_api_spec-iv:ivopts
2409 */
2410 tmp = &cipher_in[strlen("capi:")];
2411 cipher_api = strsep(&tmp, "-");
2412 *ivmode = strsep(&tmp, ":");
2413 *ivopts = tmp;
2414
2415 if (*ivmode && !strcmp(*ivmode, "lmk"))
2416 cc->tfms_count = 64;
2417
2418 cc->key_parts = cc->tfms_count;
2419
2420 /* Allocate cipher */
2421 ret = crypt_alloc_tfms(cc, cipher_api);
2422 if (ret < 0) {
2423 ti->error = "Error allocating crypto tfm";
2424 return ret;
2425 }
2426
2427 /* Alloc AEAD, can be used only in new format. */
2428 if (crypt_integrity_aead(cc)) {
2429 ret = crypt_ctr_auth_cipher(cc, cipher_api);
2430 if (ret < 0) {
2431 ti->error = "Invalid AEAD cipher spec";
2432 return -ENOMEM;
2433 }
2434 cc->iv_size = crypto_aead_ivsize(any_tfm_aead(cc));
2435 } else
2436 cc->iv_size = crypto_skcipher_ivsize(any_tfm(cc));
2437
2438 ret = crypt_ctr_blkdev_cipher(cc);
2439 if (ret < 0) {
2440 ti->error = "Cannot allocate cipher string";
2441 return -ENOMEM;
2442 }
2443
2444 return 0;
2445}
2446
2447static int crypt_ctr_cipher_old(struct dm_target *ti, char *cipher_in, char *key,
2448 char **ivmode, char **ivopts)
1da177e4 2449{
5ebaee6d 2450 struct crypt_config *cc = ti->private;
33d2f09f 2451 char *tmp, *cipher, *chainmode, *keycount;
5ebaee6d 2452 char *cipher_api = NULL;
fd2d231f 2453 int ret = -EINVAL;
31998ef1 2454 char dummy;
1da177e4 2455
33d2f09f 2456 if (strchr(cipher_in, '(') || crypt_integrity_aead(cc)) {
5ebaee6d 2457 ti->error = "Bad cipher specification";
1da177e4
LT
2458 return -EINVAL;
2459 }
2460
5ebaee6d
MB
2461 /*
2462 * Legacy dm-crypt cipher specification
d1f96423 2463 * cipher[:keycount]-mode-iv:ivopts
5ebaee6d
MB
2464 */
2465 tmp = cipher_in;
d1f96423
MB
2466 keycount = strsep(&tmp, "-");
2467 cipher = strsep(&keycount, ":");
2468
2469 if (!keycount)
2470 cc->tfms_count = 1;
31998ef1 2471 else if (sscanf(keycount, "%u%c", &cc->tfms_count, &dummy) != 1 ||
d1f96423
MB
2472 !is_power_of_2(cc->tfms_count)) {
2473 ti->error = "Bad cipher key count specification";
2474 return -EINVAL;
2475 }
2476 cc->key_parts = cc->tfms_count;
5ebaee6d
MB
2477
2478 cc->cipher = kstrdup(cipher, GFP_KERNEL);
2479 if (!cc->cipher)
2480 goto bad_mem;
2481
1da177e4 2482 chainmode = strsep(&tmp, "-");
33d2f09f
MB
2483 *ivopts = strsep(&tmp, "-");
2484 *ivmode = strsep(&*ivopts, ":");
1da177e4
LT
2485
2486 if (tmp)
5ebaee6d 2487 DMWARN("Ignoring unexpected additional cipher options");
1da177e4 2488
7dbcd137
MB
2489 /*
2490 * For compatibility with the original dm-crypt mapping format, if
2491 * only the cipher name is supplied, use cbc-plain.
2492 */
33d2f09f 2493 if (!chainmode || (!strcmp(chainmode, "plain") && !*ivmode)) {
1da177e4 2494 chainmode = "cbc";
33d2f09f 2495 *ivmode = "plain";
1da177e4
LT
2496 }
2497
33d2f09f 2498 if (strcmp(chainmode, "ecb") && !*ivmode) {
5ebaee6d
MB
2499 ti->error = "IV mechanism required";
2500 return -EINVAL;
1da177e4
LT
2501 }
2502
5ebaee6d
MB
2503 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
2504 if (!cipher_api)
2505 goto bad_mem;
2506
2507 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
2508 "%s(%s)", chainmode, cipher);
2509 if (ret < 0) {
2510 kfree(cipher_api);
2511 goto bad_mem;
1da177e4
LT
2512 }
2513
5ebaee6d 2514 /* Allocate cipher */
fd2d231f
MP
2515 ret = crypt_alloc_tfms(cc, cipher_api);
2516 if (ret < 0) {
2517 ti->error = "Error allocating crypto tfm";
33d2f09f
MB
2518 kfree(cipher_api);
2519 return ret;
1da177e4 2520 }
bd86e320 2521 kfree(cipher_api);
1da177e4 2522
33d2f09f
MB
2523 return 0;
2524bad_mem:
2525 ti->error = "Cannot allocate cipher strings";
2526 return -ENOMEM;
2527}
5ebaee6d 2528
33d2f09f
MB
2529static int crypt_ctr_cipher(struct dm_target *ti, char *cipher_in, char *key)
2530{
2531 struct crypt_config *cc = ti->private;
2532 char *ivmode = NULL, *ivopts = NULL;
2533 int ret;
2534
2535 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
2536 if (!cc->cipher_string) {
2537 ti->error = "Cannot allocate cipher strings";
2538 return -ENOMEM;
1da177e4
LT
2539 }
2540
33d2f09f
MB
2541 if (strstarts(cipher_in, "capi:"))
2542 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts);
2543 else
2544 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts);
2545 if (ret)
2546 return ret;
2547
5ebaee6d 2548 /* Initialize IV */
e889f97a
MB
2549 ret = crypt_ctr_ivmode(ti, ivmode);
2550 if (ret < 0)
33d2f09f 2551 return ret;
1da177e4 2552
da31a078
MB
2553 /* Initialize and set key */
2554 ret = crypt_set_key(cc, key);
2555 if (ret < 0) {
2556 ti->error = "Error decoding and setting key";
33d2f09f 2557 return ret;
da31a078
MB
2558 }
2559
28513fcc
MB
2560 /* Allocate IV */
2561 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
2562 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
2563 if (ret < 0) {
2564 ti->error = "Error creating IV";
33d2f09f 2565 return ret;
28513fcc
MB
2566 }
2567 }
1da177e4 2568
28513fcc
MB
2569 /* Initialize IV (set keys for ESSIV etc) */
2570 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
2571 ret = cc->iv_gen_ops->init(cc);
2572 if (ret < 0) {
2573 ti->error = "Error initialising IV";
33d2f09f 2574 return ret;
28513fcc 2575 }
b95bf2d3
MB
2576 }
2577
dc94902b
OK
2578 /* wipe the kernel key payload copy */
2579 if (cc->key_string)
2580 memset(cc->key, 0, cc->key_size * sizeof(u8));
2581
5ebaee6d 2582 return ret;
5ebaee6d 2583}
5ebaee6d 2584
ef43aa38
MB
2585static int crypt_ctr_optional(struct dm_target *ti, unsigned int argc, char **argv)
2586{
2587 struct crypt_config *cc = ti->private;
2588 struct dm_arg_set as;
5916a22b 2589 static const struct dm_arg _args[] = {
8f0009a2 2590 {0, 6, "Invalid number of feature args"},
ef43aa38
MB
2591 };
2592 unsigned int opt_params, val;
2593 const char *opt_string, *sval;
8f0009a2 2594 char dummy;
ef43aa38
MB
2595 int ret;
2596
2597 /* Optional parameters */
2598 as.argc = argc;
2599 as.argv = argv;
2600
2601 ret = dm_read_arg_group(_args, &as, &opt_params, &ti->error);
2602 if (ret)
2603 return ret;
2604
2605 while (opt_params--) {
2606 opt_string = dm_shift_arg(&as);
2607 if (!opt_string) {
2608 ti->error = "Not enough feature arguments";
2609 return -EINVAL;
2610 }
2611
2612 if (!strcasecmp(opt_string, "allow_discards"))
2613 ti->num_discard_bios = 1;
2614
2615 else if (!strcasecmp(opt_string, "same_cpu_crypt"))
2616 set_bit(DM_CRYPT_SAME_CPU, &cc->flags);
2617
2618 else if (!strcasecmp(opt_string, "submit_from_crypt_cpus"))
2619 set_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
2620 else if (sscanf(opt_string, "integrity:%u:", &val) == 1) {
2621 if (val == 0 || val > MAX_TAG_SIZE) {
2622 ti->error = "Invalid integrity arguments";
2623 return -EINVAL;
2624 }
2625 cc->on_disk_tag_size = val;
2626 sval = strchr(opt_string + strlen("integrity:"), ':') + 1;
2627 if (!strcasecmp(sval, "aead")) {
2628 set_bit(CRYPT_MODE_INTEGRITY_AEAD, &cc->cipher_flags);
ef43aa38
MB
2629 } else if (strcasecmp(sval, "none")) {
2630 ti->error = "Unknown integrity profile";
2631 return -EINVAL;
2632 }
2633
2634 cc->cipher_auth = kstrdup(sval, GFP_KERNEL);
2635 if (!cc->cipher_auth)
2636 return -ENOMEM;
ff3af92b 2637 } else if (sscanf(opt_string, "sector_size:%hu%c", &cc->sector_size, &dummy) == 1) {
8f0009a2
MB
2638 if (cc->sector_size < (1 << SECTOR_SHIFT) ||
2639 cc->sector_size > 4096 ||
ff3af92b 2640 (cc->sector_size & (cc->sector_size - 1))) {
8f0009a2
MB
2641 ti->error = "Invalid feature value for sector_size";
2642 return -EINVAL;
2643 }
783874b0
MB
2644 if (ti->len & ((cc->sector_size >> SECTOR_SHIFT) - 1)) {
2645 ti->error = "Device size is not multiple of sector_size feature";
2646 return -EINVAL;
2647 }
ff3af92b 2648 cc->sector_shift = __ffs(cc->sector_size) - SECTOR_SHIFT;
8f0009a2
MB
2649 } else if (!strcasecmp(opt_string, "iv_large_sectors"))
2650 set_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
2651 else {
ef43aa38
MB
2652 ti->error = "Invalid feature arguments";
2653 return -EINVAL;
2654 }
2655 }
2656
2657 return 0;
5ebaee6d
MB
2658}
2659
2660/*
2661 * Construct an encryption mapping:
c538f6ec 2662 * <cipher> [<key>|:<key_size>:<user|logon>:<key_description>] <iv_offset> <dev_path> <start>
5ebaee6d
MB
2663 */
2664static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
2665{
2666 struct crypt_config *cc;
c538f6ec 2667 int key_size;
ef43aa38 2668 unsigned int align_mask;
5ebaee6d
MB
2669 unsigned long long tmpll;
2670 int ret;
ef43aa38 2671 size_t iv_size_padding, additional_req_size;
31998ef1 2672 char dummy;
772ae5f5 2673
772ae5f5 2674 if (argc < 5) {
5ebaee6d
MB
2675 ti->error = "Not enough arguments";
2676 return -EINVAL;
1da177e4
LT
2677 }
2678
c538f6ec
OK
2679 key_size = get_key_size(&argv[1]);
2680 if (key_size < 0) {
2681 ti->error = "Cannot parse key size";
2682 return -EINVAL;
2683 }
5ebaee6d
MB
2684
2685 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
2686 if (!cc) {
2687 ti->error = "Cannot allocate encryption context";
2688 return -ENOMEM;
2689 }
69a8cfcd 2690 cc->key_size = key_size;
8f0009a2 2691 cc->sector_size = (1 << SECTOR_SHIFT);
ff3af92b 2692 cc->sector_shift = 0;
5ebaee6d
MB
2693
2694 ti->private = cc;
ef43aa38 2695
5059353d
MP
2696 spin_lock(&dm_crypt_clients_lock);
2697 dm_crypt_clients_n++;
2698 crypt_calculate_pages_per_client();
2699 spin_unlock(&dm_crypt_clients_lock);
2700
2701 ret = percpu_counter_init(&cc->n_allocated_pages, 0, GFP_KERNEL);
2702 if (ret < 0)
2703 goto bad;
2704
ef43aa38
MB
2705 /* Optional parameters need to be read before cipher constructor */
2706 if (argc > 5) {
2707 ret = crypt_ctr_optional(ti, argc - 5, &argv[5]);
2708 if (ret)
2709 goto bad;
2710 }
2711
5ebaee6d
MB
2712 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
2713 if (ret < 0)
2714 goto bad;
2715
33d2f09f 2716 if (crypt_integrity_aead(cc)) {
ef43aa38
MB
2717 cc->dmreq_start = sizeof(struct aead_request);
2718 cc->dmreq_start += crypto_aead_reqsize(any_tfm_aead(cc));
2719 align_mask = crypto_aead_alignmask(any_tfm_aead(cc));
2720 } else {
2721 cc->dmreq_start = sizeof(struct skcipher_request);
2722 cc->dmreq_start += crypto_skcipher_reqsize(any_tfm(cc));
2723 align_mask = crypto_skcipher_alignmask(any_tfm(cc));
2724 }
d49ec52f
MP
2725 cc->dmreq_start = ALIGN(cc->dmreq_start, __alignof__(struct dm_crypt_request));
2726
ef43aa38 2727 if (align_mask < CRYPTO_MINALIGN) {
d49ec52f
MP
2728 /* Allocate the padding exactly */
2729 iv_size_padding = -(cc->dmreq_start + sizeof(struct dm_crypt_request))
ef43aa38 2730 & align_mask;
d49ec52f
MP
2731 } else {
2732 /*
2733 * If the cipher requires greater alignment than kmalloc
2734 * alignment, we don't know the exact position of the
2735 * initialization vector. We must assume worst case.
2736 */
ef43aa38 2737 iv_size_padding = align_mask;
d49ec52f 2738 }
ddd42edf 2739
ef43aa38
MB
2740 /* ...| IV + padding | original IV | original sec. number | bio tag offset | */
2741 additional_req_size = sizeof(struct dm_crypt_request) +
2742 iv_size_padding + cc->iv_size +
2743 cc->iv_size +
2744 sizeof(uint64_t) +
2745 sizeof(unsigned int);
2746
6f1c819c
KO
2747 ret = mempool_init_kmalloc_pool(&cc->req_pool, MIN_IOS, cc->dmreq_start + additional_req_size);
2748 if (ret) {
ddd42edf 2749 ti->error = "Cannot allocate crypt request mempool";
28513fcc 2750 goto bad;
ddd42edf 2751 }
ddd42edf 2752
30187e1d 2753 cc->per_bio_data_size = ti->per_io_data_size =
ef43aa38 2754 ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start + additional_req_size,
d49ec52f 2755 ARCH_KMALLOC_MINALIGN);
298a9fa0 2756
6f1c819c
KO
2757 ret = mempool_init(&cc->page_pool, BIO_MAX_PAGES, crypt_page_alloc, crypt_page_free, cc);
2758 if (ret) {
72d94861 2759 ti->error = "Cannot allocate page mempool";
28513fcc 2760 goto bad;
1da177e4
LT
2761 }
2762
6f1c819c
KO
2763 ret = bioset_init(&cc->bs, MIN_IOS, 0, BIOSET_NEED_BVECS);
2764 if (ret) {
6a24c718 2765 ti->error = "Cannot allocate crypt bioset";
28513fcc 2766 goto bad;
6a24c718
MB
2767 }
2768
7145c241
MP
2769 mutex_init(&cc->bio_alloc_lock);
2770
28513fcc 2771 ret = -EINVAL;
8f0009a2
MB
2772 if ((sscanf(argv[2], "%llu%c", &tmpll, &dummy) != 1) ||
2773 (tmpll & ((cc->sector_size >> SECTOR_SHIFT) - 1))) {
72d94861 2774 ti->error = "Invalid iv_offset sector";
28513fcc 2775 goto bad;
1da177e4 2776 }
4ee218cd 2777 cc->iv_offset = tmpll;
1da177e4 2778
e80d1c80
VG
2779 ret = dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev);
2780 if (ret) {
28513fcc
MB
2781 ti->error = "Device lookup failed";
2782 goto bad;
2783 }
2784
e80d1c80 2785 ret = -EINVAL;
31998ef1 2786 if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
72d94861 2787 ti->error = "Invalid device sector";
28513fcc 2788 goto bad;
1da177e4 2789 }
4ee218cd 2790 cc->start = tmpll;
1da177e4 2791
33d2f09f 2792 if (crypt_integrity_aead(cc) || cc->integrity_iv_size) {
ef43aa38 2793 ret = crypt_integrity_ctr(cc, ti);
772ae5f5
MB
2794 if (ret)
2795 goto bad;
2796
ef43aa38
MB
2797 cc->tag_pool_max_sectors = POOL_ENTRY_SIZE / cc->on_disk_tag_size;
2798 if (!cc->tag_pool_max_sectors)
2799 cc->tag_pool_max_sectors = 1;
f3396c58 2800
6f1c819c 2801 ret = mempool_init_kmalloc_pool(&cc->tag_pool, MIN_IOS,
ef43aa38 2802 cc->tag_pool_max_sectors * cc->on_disk_tag_size);
6f1c819c 2803 if (ret) {
ef43aa38
MB
2804 ti->error = "Cannot allocate integrity tags mempool";
2805 goto bad;
772ae5f5 2806 }
583fe747
MP
2807
2808 cc->tag_pool_max_sectors <<= cc->sector_shift;
772ae5f5
MB
2809 }
2810
28513fcc 2811 ret = -ENOMEM;
a1b89132 2812 cc->io_queue = alloc_workqueue("kcryptd_io", WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
cabf08e4
MB
2813 if (!cc->io_queue) {
2814 ti->error = "Couldn't create kcryptd io queue";
28513fcc 2815 goto bad;
cabf08e4
MB
2816 }
2817
f3396c58 2818 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
a1b89132 2819 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
f3396c58 2820 else
a1b89132
TM
2821 cc->crypt_queue = alloc_workqueue("kcryptd",
2822 WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | WQ_UNBOUND,
f3396c58 2823 num_online_cpus());
cabf08e4 2824 if (!cc->crypt_queue) {
9934a8be 2825 ti->error = "Couldn't create kcryptd queue";
28513fcc 2826 goto bad;
9934a8be
MB
2827 }
2828
c7329eff 2829 spin_lock_init(&cc->write_thread_lock);
b3c5fd30 2830 cc->write_tree = RB_ROOT;
dc267621
MP
2831
2832 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write");
2833 if (IS_ERR(cc->write_thread)) {
2834 ret = PTR_ERR(cc->write_thread);
2835 cc->write_thread = NULL;
2836 ti->error = "Couldn't spawn write thread";
2837 goto bad;
2838 }
2839 wake_up_process(cc->write_thread);
2840
55a62eef 2841 ti->num_flush_bios = 1;
983c7db3 2842
1da177e4
LT
2843 return 0;
2844
28513fcc
MB
2845bad:
2846 crypt_dtr(ti);
2847 return ret;
1da177e4
LT
2848}
2849
7de3ee57 2850static int crypt_map(struct dm_target *ti, struct bio *bio)
1da177e4 2851{
028867ac 2852 struct dm_crypt_io *io;
49a8a920 2853 struct crypt_config *cc = ti->private;
647c7db1 2854
772ae5f5 2855 /*
28a8f0d3
MC
2856 * If bio is REQ_PREFLUSH or REQ_OP_DISCARD, just bypass crypt queues.
2857 * - for REQ_PREFLUSH device-mapper core ensures that no IO is in-flight
e6047149 2858 * - for REQ_OP_DISCARD caller must use flush if IO ordering matters
772ae5f5 2859 */
1eff9d32 2860 if (unlikely(bio->bi_opf & REQ_PREFLUSH ||
28a8f0d3 2861 bio_op(bio) == REQ_OP_DISCARD)) {
74d46992 2862 bio_set_dev(bio, cc->dev->bdev);
772ae5f5 2863 if (bio_sectors(bio))
4f024f37
KO
2864 bio->bi_iter.bi_sector = cc->start +
2865 dm_target_offset(ti, bio->bi_iter.bi_sector);
647c7db1
MP
2866 return DM_MAPIO_REMAPPED;
2867 }
1da177e4 2868
4e870e94
MP
2869 /*
2870 * Check if bio is too large, split as needed.
2871 */
2872 if (unlikely(bio->bi_iter.bi_size > (BIO_MAX_PAGES << PAGE_SHIFT)) &&
ef43aa38 2873 (bio_data_dir(bio) == WRITE || cc->on_disk_tag_size))
4e870e94
MP
2874 dm_accept_partial_bio(bio, ((BIO_MAX_PAGES << PAGE_SHIFT) >> SECTOR_SHIFT));
2875
8f0009a2
MB
2876 /*
2877 * Ensure that bio is a multiple of internal sector encryption size
2878 * and is aligned to this size as defined in IO hints.
2879 */
2880 if (unlikely((bio->bi_iter.bi_sector & ((cc->sector_size >> SECTOR_SHIFT) - 1)) != 0))
846785e6 2881 return DM_MAPIO_KILL;
8f0009a2
MB
2882
2883 if (unlikely(bio->bi_iter.bi_size & (cc->sector_size - 1)))
846785e6 2884 return DM_MAPIO_KILL;
8f0009a2 2885
298a9fa0
MP
2886 io = dm_per_bio_data(bio, cc->per_bio_data_size);
2887 crypt_io_init(io, cc, bio, dm_target_offset(ti, bio->bi_iter.bi_sector));
ef43aa38
MB
2888
2889 if (cc->on_disk_tag_size) {
583fe747 2890 unsigned tag_len = cc->on_disk_tag_size * (bio_sectors(bio) >> cc->sector_shift);
ef43aa38
MB
2891
2892 if (unlikely(tag_len > KMALLOC_MAX_SIZE) ||
583fe747 2893 unlikely(!(io->integrity_metadata = kmalloc(tag_len,
ef43aa38
MB
2894 GFP_NOIO | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN)))) {
2895 if (bio_sectors(bio) > cc->tag_pool_max_sectors)
2896 dm_accept_partial_bio(bio, cc->tag_pool_max_sectors);
6f1c819c 2897 io->integrity_metadata = mempool_alloc(&cc->tag_pool, GFP_NOIO);
ef43aa38
MB
2898 io->integrity_metadata_from_pool = true;
2899 }
2900 }
2901
33d2f09f 2902 if (crypt_integrity_aead(cc))
ef43aa38
MB
2903 io->ctx.r.req_aead = (struct aead_request *)(io + 1);
2904 else
2905 io->ctx.r.req = (struct skcipher_request *)(io + 1);
cabf08e4 2906
20c82538
MB
2907 if (bio_data_dir(io->base_bio) == READ) {
2908 if (kcryptd_io_read(io, GFP_NOWAIT))
dc267621 2909 kcryptd_queue_read(io);
20c82538 2910 } else
cabf08e4 2911 kcryptd_queue_crypt(io);
1da177e4 2912
d2a7ad29 2913 return DM_MAPIO_SUBMITTED;
1da177e4
LT
2914}
2915
fd7c092e
MP
2916static void crypt_status(struct dm_target *ti, status_type_t type,
2917 unsigned status_flags, char *result, unsigned maxlen)
1da177e4 2918{
5ebaee6d 2919 struct crypt_config *cc = ti->private;
fd7c092e 2920 unsigned i, sz = 0;
f3396c58 2921 int num_feature_args = 0;
1da177e4
LT
2922
2923 switch (type) {
2924 case STATUSTYPE_INFO:
2925 result[0] = '\0';
2926 break;
2927
2928 case STATUSTYPE_TABLE:
7dbcd137 2929 DMEMIT("%s ", cc->cipher_string);
1da177e4 2930
c538f6ec
OK
2931 if (cc->key_size > 0) {
2932 if (cc->key_string)
2933 DMEMIT(":%u:%s", cc->key_size, cc->key_string);
2934 else
2935 for (i = 0; i < cc->key_size; i++)
2936 DMEMIT("%02x", cc->key[i]);
2937 } else
fd7c092e 2938 DMEMIT("-");
1da177e4 2939
4ee218cd
AM
2940 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
2941 cc->dev->name, (unsigned long long)cc->start);
772ae5f5 2942
f3396c58
MP
2943 num_feature_args += !!ti->num_discard_bios;
2944 num_feature_args += test_bit(DM_CRYPT_SAME_CPU, &cc->flags);
0f5d8e6e 2945 num_feature_args += test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
ff3af92b 2946 num_feature_args += cc->sector_size != (1 << SECTOR_SHIFT);
8f0009a2 2947 num_feature_args += test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
ef43aa38
MB
2948 if (cc->on_disk_tag_size)
2949 num_feature_args++;
f3396c58
MP
2950 if (num_feature_args) {
2951 DMEMIT(" %d", num_feature_args);
2952 if (ti->num_discard_bios)
2953 DMEMIT(" allow_discards");
2954 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
2955 DMEMIT(" same_cpu_crypt");
0f5d8e6e
MP
2956 if (test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags))
2957 DMEMIT(" submit_from_crypt_cpus");
ef43aa38
MB
2958 if (cc->on_disk_tag_size)
2959 DMEMIT(" integrity:%u:%s", cc->on_disk_tag_size, cc->cipher_auth);
8f0009a2
MB
2960 if (cc->sector_size != (1 << SECTOR_SHIFT))
2961 DMEMIT(" sector_size:%d", cc->sector_size);
2962 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
2963 DMEMIT(" iv_large_sectors");
f3396c58 2964 }
772ae5f5 2965
1da177e4
LT
2966 break;
2967 }
1da177e4
LT
2968}
2969
e48d4bbf
MB
2970static void crypt_postsuspend(struct dm_target *ti)
2971{
2972 struct crypt_config *cc = ti->private;
2973
2974 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2975}
2976
2977static int crypt_preresume(struct dm_target *ti)
2978{
2979 struct crypt_config *cc = ti->private;
2980
2981 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
2982 DMERR("aborting resume - crypt key is not set.");
2983 return -EAGAIN;
2984 }
2985
2986 return 0;
2987}
2988
2989static void crypt_resume(struct dm_target *ti)
2990{
2991 struct crypt_config *cc = ti->private;
2992
2993 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2994}
2995
2996/* Message interface
2997 * key set <key>
2998 * key wipe
2999 */
1eb5fa84
MS
3000static int crypt_message(struct dm_target *ti, unsigned argc, char **argv,
3001 char *result, unsigned maxlen)
e48d4bbf
MB
3002{
3003 struct crypt_config *cc = ti->private;
c538f6ec 3004 int key_size, ret = -EINVAL;
e48d4bbf
MB
3005
3006 if (argc < 2)
3007 goto error;
3008
498f0103 3009 if (!strcasecmp(argv[0], "key")) {
e48d4bbf
MB
3010 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
3011 DMWARN("not suspended during key manipulation.");
3012 return -EINVAL;
3013 }
498f0103 3014 if (argc == 3 && !strcasecmp(argv[1], "set")) {
c538f6ec
OK
3015 /* The key size may not be changed. */
3016 key_size = get_key_size(&argv[2]);
3017 if (key_size < 0 || cc->key_size != key_size) {
3018 memset(argv[2], '0', strlen(argv[2]));
3019 return -EINVAL;
3020 }
3021
542da317
MB
3022 ret = crypt_set_key(cc, argv[2]);
3023 if (ret)
3024 return ret;
3025 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
3026 ret = cc->iv_gen_ops->init(cc);
dc94902b
OK
3027 /* wipe the kernel key payload copy */
3028 if (cc->key_string)
3029 memset(cc->key, 0, cc->key_size * sizeof(u8));
542da317
MB
3030 return ret;
3031 }
498f0103 3032 if (argc == 2 && !strcasecmp(argv[1], "wipe")) {
542da317
MB
3033 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
3034 ret = cc->iv_gen_ops->wipe(cc);
3035 if (ret)
3036 return ret;
3037 }
e48d4bbf 3038 return crypt_wipe_key(cc);
542da317 3039 }
e48d4bbf
MB
3040 }
3041
3042error:
3043 DMWARN("unrecognised message received.");
3044 return -EINVAL;
3045}
3046
af4874e0
MS
3047static int crypt_iterate_devices(struct dm_target *ti,
3048 iterate_devices_callout_fn fn, void *data)
3049{
3050 struct crypt_config *cc = ti->private;
3051
5dea271b 3052 return fn(ti, cc->dev, cc->start, ti->len, data);
af4874e0
MS
3053}
3054
586b286b
MS
3055static void crypt_io_hints(struct dm_target *ti, struct queue_limits *limits)
3056{
8f0009a2
MB
3057 struct crypt_config *cc = ti->private;
3058
586b286b
MS
3059 /*
3060 * Unfortunate constraint that is required to avoid the potential
3061 * for exceeding underlying device's max_segments limits -- due to
3062 * crypt_alloc_buffer() possibly allocating pages for the encryption
3063 * bio that are not as physically contiguous as the original bio.
3064 */
3065 limits->max_segment_size = PAGE_SIZE;
8f0009a2
MB
3066
3067 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
3068 limits->logical_block_size = cc->sector_size;
3069 limits->physical_block_size = cc->sector_size;
3070 blk_limits_io_min(limits, cc->sector_size);
3071 }
586b286b
MS
3072}
3073
1da177e4
LT
3074static struct target_type crypt_target = {
3075 .name = "crypt",
dc94902b 3076 .version = {1, 18, 1},
1da177e4
LT
3077 .module = THIS_MODULE,
3078 .ctr = crypt_ctr,
3079 .dtr = crypt_dtr,
3080 .map = crypt_map,
3081 .status = crypt_status,
e48d4bbf
MB
3082 .postsuspend = crypt_postsuspend,
3083 .preresume = crypt_preresume,
3084 .resume = crypt_resume,
3085 .message = crypt_message,
af4874e0 3086 .iterate_devices = crypt_iterate_devices,
586b286b 3087 .io_hints = crypt_io_hints,
1da177e4
LT
3088};
3089
3090static int __init dm_crypt_init(void)
3091{
3092 int r;
3093
1da177e4 3094 r = dm_register_target(&crypt_target);
94f5e024 3095 if (r < 0)
72d94861 3096 DMERR("register failed %d", r);
1da177e4 3097
1da177e4
LT
3098 return r;
3099}
3100
3101static void __exit dm_crypt_exit(void)
3102{
10d3bd09 3103 dm_unregister_target(&crypt_target);
1da177e4
LT
3104}
3105
3106module_init(dm_crypt_init);
3107module_exit(dm_crypt_exit);
3108
bf14299f 3109MODULE_AUTHOR("Jana Saout <jana@saout.de>");
1da177e4
LT
3110MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
3111MODULE_LICENSE("GPL");