blob: 049282e6482ff77a5d9570242caa00724b560f72 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jana Saoutbf14299f2014-06-24 14:27:04 -04002 * Copyright (C) 2003 Jana Saout <jana@saout.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org>
Milan Broz542da312009-12-10 23:51:57 +00004 * Copyright (C) 2006-2009 Red Hat, Inc. All rights reserved.
Milan Brozed04d982013-10-28 23:21:04 +01005 * Copyright (C) 2013 Milan Broz <gmazyland@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file is released under the GPL.
8 */
9
Milan Broz43d69032008-02-08 02:11:09 +000010#include <linux/completion.h>
Herbert Xud1806f62006-08-22 20:29:17 +100011#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/bio.h>
16#include <linux/blkdev.h>
17#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/crypto.h>
20#include <linux/workqueue.h>
Mikulas Patockadc267622015-02-13 08:25:59 -050021#include <linux/kthread.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070022#include <linux/backing-dev.h>
Arun Sharma600634972011-07-26 16:09:06 -070023#include <linux/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100024#include <linux/scatterlist.h>
Mikulas Patockab3c5fd32015-02-13 08:27:41 -050025#include <linux/rbtree.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/page.h>
Rik Snel48527fa2006-09-03 08:56:39 +100027#include <asm/unaligned.h>
Milan Broz34745782011-01-13 19:59:55 +000028#include <crypto/hash.h>
29#include <crypto/md5.h>
30#include <crypto/algapi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Mikulas Patocka586e80e2008-10-21 17:44:59 +010032#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Alasdair G Kergon72d94862006-06-26 00:27:35 -070034#define DM_MSG_PREFIX "crypt"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * context holding the current state of a multi-part conversion
38 */
39struct convert_context {
Milan Broz43d69032008-02-08 02:11:09 +000040 struct completion restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 struct bio *bio_in;
42 struct bio *bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -070043 struct bvec_iter iter_in;
44 struct bvec_iter iter_out;
Mikulas Patockac66029f2012-07-27 15:08:05 +010045 sector_t cc_sector;
Mikulas Patocka40b62292012-07-27 15:08:04 +010046 atomic_t cc_pending;
Mikulas Patocka610f2de2014-02-20 18:01:01 -050047 struct ablkcipher_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Milan Broz53017032008-02-08 02:10:38 +000050/*
51 * per bio private data
52 */
53struct dm_crypt_io {
Alasdair G Kergon49a8a922012-07-27 15:08:05 +010054 struct crypt_config *cc;
Milan Broz53017032008-02-08 02:10:38 +000055 struct bio *base_bio;
56 struct work_struct work;
57
58 struct convert_context ctx;
59
Mikulas Patocka40b62292012-07-27 15:08:04 +010060 atomic_t io_pending;
Milan Broz53017032008-02-08 02:10:38 +000061 int error;
Milan Broz0c395b02008-02-08 02:10:54 +000062 sector_t sector;
Mikulas Patockadc267622015-02-13 08:25:59 -050063
Mikulas Patockab3c5fd32015-02-13 08:27:41 -050064 struct rb_node rb_node;
Mikulas Patocka298a9fa2014-03-28 15:51:55 -040065} CRYPTO_MINALIGN_ATTR;
Milan Broz53017032008-02-08 02:10:38 +000066
Milan Broz01482b72008-02-08 02:11:04 +000067struct dm_crypt_request {
Huang Yingb2174ee2009-03-16 17:44:33 +000068 struct convert_context *ctx;
Milan Broz01482b72008-02-08 02:11:04 +000069 struct scatterlist sg_in;
70 struct scatterlist sg_out;
Milan Broz2dc53272011-01-13 19:59:54 +000071 sector_t iv_sector;
Milan Broz01482b72008-02-08 02:11:04 +000072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct crypt_config;
75
76struct crypt_iv_operations {
77 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010078 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 void (*dtr)(struct crypt_config *cc);
Milan Brozb95bf2d2009-12-10 23:51:56 +000080 int (*init)(struct crypt_config *cc);
Milan Broz542da312009-12-10 23:51:57 +000081 int (*wipe)(struct crypt_config *cc);
Milan Broz2dc53272011-01-13 19:59:54 +000082 int (*generator)(struct crypt_config *cc, u8 *iv,
83 struct dm_crypt_request *dmreq);
84 int (*post)(struct crypt_config *cc, u8 *iv,
85 struct dm_crypt_request *dmreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Milan Broz60473592009-12-10 23:51:55 +000088struct iv_essiv_private {
Milan Brozb95bf2d2009-12-10 23:51:56 +000089 struct crypto_hash *hash_tfm;
90 u8 *salt;
Milan Broz60473592009-12-10 23:51:55 +000091};
92
93struct iv_benbi_private {
94 int shift;
95};
96
Milan Broz34745782011-01-13 19:59:55 +000097#define LMK_SEED_SIZE 64 /* hash + 0 */
98struct iv_lmk_private {
99 struct crypto_shash *hash_tfm;
100 u8 *seed;
101};
102
Milan Brozed04d982013-10-28 23:21:04 +0100103#define TCW_WHITENING_SIZE 16
104struct iv_tcw_private {
105 struct crypto_shash *crc32_tfm;
106 u8 *iv_seed;
107 u8 *whitening;
108};
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * Crypt: maps a linear range of a block device
112 * and encrypts / decrypts at the same time.
113 */
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -0500114enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID,
115 DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD };
Andi Kleenc0297722011-01-13 19:59:53 +0000116
117/*
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500118 * The fields in here must be read only after initialization.
Andi Kleenc0297722011-01-13 19:59:53 +0000119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120struct crypt_config {
121 struct dm_dev *dev;
122 sector_t start;
123
124 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000125 * pool for per bio private data, crypto requests and
126 * encryption requeusts/buffer pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
Milan Brozddd42ed2008-02-08 02:11:07 +0000128 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -0700130 struct bio_set *bs;
Mikulas Patocka7145c242015-02-13 08:24:41 -0500131 struct mutex bio_alloc_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Milan Brozcabf08e2007-10-19 22:38:58 +0100133 struct workqueue_struct *io_queue;
134 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -0700135
Mikulas Patockadc267622015-02-13 08:25:59 -0500136 struct task_struct *write_thread;
137 wait_queue_head_t write_thread_wait;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -0500138 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -0500139
Milan Broz5ebaee62010-08-12 04:14:07 +0100140 char *cipher;
Milan Broz7dbcd132011-01-13 19:59:52 +0000141 char *cipher_string;
Milan Broz5ebaee62010-08-12 04:14:07 +0100142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct crypt_iv_operations *iv_gen_ops;
Herbert Xu79066ad2006-12-05 13:41:52 -0800144 union {
Milan Broz60473592009-12-10 23:51:55 +0000145 struct iv_essiv_private essiv;
146 struct iv_benbi_private benbi;
Milan Broz34745782011-01-13 19:59:55 +0000147 struct iv_lmk_private lmk;
Milan Brozed04d982013-10-28 23:21:04 +0100148 struct iv_tcw_private tcw;
Herbert Xu79066ad2006-12-05 13:41:52 -0800149 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 sector_t iv_offset;
151 unsigned int iv_size;
152
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100153 /* ESSIV: struct crypto_cipher *essiv_tfm */
154 void *iv_private;
155 struct crypto_ablkcipher **tfms;
Milan Brozd1f96422011-01-13 19:59:54 +0000156 unsigned tfms_count;
Andi Kleenc0297722011-01-13 19:59:53 +0000157
158 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000159 * Layout of each crypto request:
160 *
161 * struct ablkcipher_request
162 * context
163 * padding
164 * struct dm_crypt_request
165 * padding
166 * IV
167 *
168 * The padding is added so that dm_crypt_request and the IV are
169 * correctly aligned.
170 */
171 unsigned int dmreq_start;
Milan Brozddd42ed2008-02-08 02:11:07 +0000172
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400173 unsigned int per_bio_data_size;
174
Milan Broze48d4bb2006-10-03 01:15:37 -0700175 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 unsigned int key_size;
Milan Brozda31a072013-10-28 23:21:03 +0100177 unsigned int key_parts; /* independent parts in key buffer */
178 unsigned int key_extra_size; /* additional keys length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 u8 key[0];
180};
181
Milan Broz6a24c712006-10-03 01:15:40 -0700182#define MIN_IOS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100184static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000185static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Milan Broz2dc53272011-01-13 19:59:54 +0000186static u8 *iv_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq);
Olaf Kirch027581f2007-05-09 02:32:52 -0700187
Andi Kleenc0297722011-01-13 19:59:53 +0000188/*
189 * Use this to access cipher attributes that are the same for each CPU.
190 */
191static struct crypto_ablkcipher *any_tfm(struct crypt_config *cc)
192{
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100193 return cc->tfms[0];
Andi Kleenc0297722011-01-13 19:59:53 +0000194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * Different IV generation algorithms:
198 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000199 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200200 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
Milan Broz61afef62009-12-10 23:52:25 +0000202 * plain64: the initial vector is the 64-bit little-endian version of the sector
203 * number, padded with zeros if necessary.
204 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000205 * essiv: "encrypted sector|salt initial vector", the sector number is
206 * encrypted with the bulk cipher using a salt as key. The salt
207 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *
Rik Snel48527fa2006-09-03 08:56:39 +1000209 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
210 * (needed for LRW-32-AES and possible other narrow block modes)
211 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700212 * null: the initial vector is always zero. Provides compatibility with
213 * obsolete loop_fish2 devices. Do not use for new devices.
214 *
Milan Broz34745782011-01-13 19:59:55 +0000215 * lmk: Compatible implementation of the block chaining mode used
216 * by the Loop-AES block device encryption system
217 * designed by Jari Ruusu. See http://loop-aes.sourceforge.net/
218 * It operates on full 512 byte sectors and uses CBC
219 * with an IV derived from the sector number, the data and
220 * optionally extra IV seed.
221 * This means that after decryption the first block
222 * of sector must be tweaked according to decrypted data.
223 * Loop-AES can use three encryption schemes:
224 * version 1: is plain aes-cbc mode
225 * version 2: uses 64 multikey scheme with lmk IV generator
226 * version 3: the same as version 2 with additional IV seed
227 * (it uses 65 keys, last key is used as IV seed)
228 *
Milan Brozed04d982013-10-28 23:21:04 +0100229 * tcw: Compatible implementation of the block chaining mode used
230 * by the TrueCrypt device encryption system (prior to version 4.1).
Milan Broze44f23b2015-04-05 18:03:10 +0200231 * For more info see: https://gitlab.com/cryptsetup/cryptsetup/wikis/TrueCryptOnDiskFormat
Milan Brozed04d982013-10-28 23:21:04 +0100232 * It operates on full 512 byte sectors and uses CBC
233 * with an IV derived from initial key and the sector number.
234 * In addition, whitening value is applied on every sector, whitening
235 * is calculated from initial key, sector number and mixed using CRC32.
236 * Note that this encryption scheme is vulnerable to watermarking attacks
237 * and should be used for old compatible containers access only.
238 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 * plumb: unimplemented, see:
240 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
241 */
242
Milan Broz2dc53272011-01-13 19:59:54 +0000243static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv,
244 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100247 *(__le32 *)iv = cpu_to_le32(dmreq->iv_sector & 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 return 0;
250}
251
Milan Broz61afef62009-12-10 23:52:25 +0000252static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
Milan Broz2dc53272011-01-13 19:59:54 +0000253 struct dm_crypt_request *dmreq)
Milan Broz61afef62009-12-10 23:52:25 +0000254{
255 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100256 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Milan Broz61afef62009-12-10 23:52:25 +0000257
258 return 0;
259}
260
Milan Brozb95bf2d2009-12-10 23:51:56 +0000261/* Initialise ESSIV - compute salt but no local memory allocations */
262static int crypt_iv_essiv_init(struct crypt_config *cc)
263{
264 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
265 struct hash_desc desc;
266 struct scatterlist sg;
Andi Kleenc0297722011-01-13 19:59:53 +0000267 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100268 int err;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000269
270 sg_init_one(&sg, cc->key, cc->key_size);
271 desc.tfm = essiv->hash_tfm;
272 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
273
274 err = crypto_hash_digest(&desc, &sg, cc->key_size, essiv->salt);
275 if (err)
276 return err;
277
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100278 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000279
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100280 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
281 crypto_hash_digestsize(essiv->hash_tfm));
282 if (err)
283 return err;
Andi Kleenc0297722011-01-13 19:59:53 +0000284
285 return 0;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000286}
287
Milan Broz542da312009-12-10 23:51:57 +0000288/* Wipe salt and reset key derived from volume key */
289static int crypt_iv_essiv_wipe(struct crypt_config *cc)
290{
291 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
292 unsigned salt_size = crypto_hash_digestsize(essiv->hash_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000293 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100294 int r, err = 0;
Milan Broz542da312009-12-10 23:51:57 +0000295
296 memset(essiv->salt, 0, salt_size);
297
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100298 essiv_tfm = cc->iv_private;
299 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
300 if (r)
301 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +0000302
303 return err;
304}
305
306/* Set up per cpu cipher state */
307static struct crypto_cipher *setup_essiv_cpu(struct crypt_config *cc,
308 struct dm_target *ti,
309 u8 *salt, unsigned saltsize)
310{
311 struct crypto_cipher *essiv_tfm;
312 int err;
313
314 /* Setup the essiv_tfm with the given salt */
315 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
316 if (IS_ERR(essiv_tfm)) {
317 ti->error = "Error allocating crypto tfm for ESSIV";
318 return essiv_tfm;
319 }
320
321 if (crypto_cipher_blocksize(essiv_tfm) !=
322 crypto_ablkcipher_ivsize(any_tfm(cc))) {
323 ti->error = "Block size of ESSIV cipher does "
324 "not match IV size of block cipher";
325 crypto_free_cipher(essiv_tfm);
326 return ERR_PTR(-EINVAL);
327 }
328
329 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
330 if (err) {
331 ti->error = "Failed to set key for ESSIV cipher";
332 crypto_free_cipher(essiv_tfm);
333 return ERR_PTR(err);
334 }
335
336 return essiv_tfm;
Milan Broz542da312009-12-10 23:51:57 +0000337}
338
Milan Broz60473592009-12-10 23:51:55 +0000339static void crypt_iv_essiv_dtr(struct crypt_config *cc)
340{
Andi Kleenc0297722011-01-13 19:59:53 +0000341 struct crypto_cipher *essiv_tfm;
Milan Broz60473592009-12-10 23:51:55 +0000342 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
343
Milan Brozb95bf2d2009-12-10 23:51:56 +0000344 crypto_free_hash(essiv->hash_tfm);
345 essiv->hash_tfm = NULL;
346
347 kzfree(essiv->salt);
348 essiv->salt = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +0000349
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100350 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000351
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100352 if (essiv_tfm)
353 crypto_free_cipher(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000354
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100355 cc->iv_private = NULL;
Milan Broz60473592009-12-10 23:51:55 +0000356}
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100359 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Milan Broz5861f1b2009-12-10 23:51:56 +0000361 struct crypto_cipher *essiv_tfm = NULL;
362 struct crypto_hash *hash_tfm = NULL;
Milan Broz5861f1b2009-12-10 23:51:56 +0000363 u8 *salt = NULL;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100364 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Milan Broz5861f1b2009-12-10 23:51:56 +0000366 if (!opts) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700367 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return -EINVAL;
369 }
370
Milan Brozb95bf2d2009-12-10 23:51:56 +0000371 /* Allocate hash algorithm */
Herbert Xu35058682006-08-24 19:10:20 +1000372 hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC);
373 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700374 ti->error = "Error initializing ESSIV hash";
Milan Broz5861f1b2009-12-10 23:51:56 +0000375 err = PTR_ERR(hash_tfm);
376 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Milan Brozb95bf2d2009-12-10 23:51:56 +0000379 salt = kzalloc(crypto_hash_digestsize(hash_tfm), GFP_KERNEL);
Milan Broz5861f1b2009-12-10 23:51:56 +0000380 if (!salt) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700381 ti->error = "Error kmallocing salt storage in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000382 err = -ENOMEM;
383 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
Milan Brozb95bf2d2009-12-10 23:51:56 +0000386 cc->iv_gen_private.essiv.salt = salt;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000387 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
388
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100389 essiv_tfm = setup_essiv_cpu(cc, ti, salt,
390 crypto_hash_digestsize(hash_tfm));
391 if (IS_ERR(essiv_tfm)) {
392 crypt_iv_essiv_dtr(cc);
393 return PTR_ERR(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000394 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100395 cc->iv_private = essiv_tfm;
Andi Kleenc0297722011-01-13 19:59:53 +0000396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
Milan Broz5861f1b2009-12-10 23:51:56 +0000398
399bad:
Milan Broz5861f1b2009-12-10 23:51:56 +0000400 if (hash_tfm && !IS_ERR(hash_tfm))
401 crypto_free_hash(hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000402 kfree(salt);
Milan Broz5861f1b2009-12-10 23:51:56 +0000403 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Milan Broz2dc53272011-01-13 19:59:54 +0000406static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv,
407 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100409 struct crypto_cipher *essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100412 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Andi Kleenc0297722011-01-13 19:59:53 +0000413 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
416}
417
Rik Snel48527fa2006-09-03 08:56:39 +1000418static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
419 const char *opts)
420{
Andi Kleenc0297722011-01-13 19:59:53 +0000421 unsigned bs = crypto_ablkcipher_blocksize(any_tfm(cc));
David Howellsf0d1b0b2006-12-08 02:37:49 -0800422 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000423
424 /* we need to calculate how far we must shift the sector count
425 * to get the cipher block count, we use this shift in _gen */
426
427 if (1 << log != bs) {
428 ti->error = "cypher blocksize is not a power of 2";
429 return -EINVAL;
430 }
431
432 if (log > 9) {
433 ti->error = "cypher blocksize is > 512";
434 return -EINVAL;
435 }
436
Milan Broz60473592009-12-10 23:51:55 +0000437 cc->iv_gen_private.benbi.shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000438
439 return 0;
440}
441
442static void crypt_iv_benbi_dtr(struct crypt_config *cc)
443{
Rik Snel48527fa2006-09-03 08:56:39 +1000444}
445
Milan Broz2dc53272011-01-13 19:59:54 +0000446static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv,
447 struct dm_crypt_request *dmreq)
Rik Snel48527fa2006-09-03 08:56:39 +1000448{
Herbert Xu79066ad2006-12-05 13:41:52 -0800449 __be64 val;
450
Rik Snel48527fa2006-09-03 08:56:39 +1000451 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800452
Milan Broz2dc53272011-01-13 19:59:54 +0000453 val = cpu_to_be64(((u64)dmreq->iv_sector << cc->iv_gen_private.benbi.shift) + 1);
Herbert Xu79066ad2006-12-05 13:41:52 -0800454 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Milan Broz2dc53272011-01-13 19:59:54 +0000459static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv,
460 struct dm_crypt_request *dmreq)
Ludwig Nussel46b47732007-05-09 02:32:55 -0700461{
462 memset(iv, 0, cc->iv_size);
463
464 return 0;
465}
466
Milan Broz34745782011-01-13 19:59:55 +0000467static void crypt_iv_lmk_dtr(struct crypt_config *cc)
468{
469 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
470
471 if (lmk->hash_tfm && !IS_ERR(lmk->hash_tfm))
472 crypto_free_shash(lmk->hash_tfm);
473 lmk->hash_tfm = NULL;
474
475 kzfree(lmk->seed);
476 lmk->seed = NULL;
477}
478
479static int crypt_iv_lmk_ctr(struct crypt_config *cc, struct dm_target *ti,
480 const char *opts)
481{
482 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
483
484 lmk->hash_tfm = crypto_alloc_shash("md5", 0, 0);
485 if (IS_ERR(lmk->hash_tfm)) {
486 ti->error = "Error initializing LMK hash";
487 return PTR_ERR(lmk->hash_tfm);
488 }
489
490 /* No seed in LMK version 2 */
491 if (cc->key_parts == cc->tfms_count) {
492 lmk->seed = NULL;
493 return 0;
494 }
495
496 lmk->seed = kzalloc(LMK_SEED_SIZE, GFP_KERNEL);
497 if (!lmk->seed) {
498 crypt_iv_lmk_dtr(cc);
499 ti->error = "Error kmallocing seed storage in LMK";
500 return -ENOMEM;
501 }
502
503 return 0;
504}
505
506static int crypt_iv_lmk_init(struct crypt_config *cc)
507{
508 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
509 int subkey_size = cc->key_size / cc->key_parts;
510
511 /* LMK seed is on the position of LMK_KEYS + 1 key */
512 if (lmk->seed)
513 memcpy(lmk->seed, cc->key + (cc->tfms_count * subkey_size),
514 crypto_shash_digestsize(lmk->hash_tfm));
515
516 return 0;
517}
518
519static int crypt_iv_lmk_wipe(struct crypt_config *cc)
520{
521 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
522
523 if (lmk->seed)
524 memset(lmk->seed, 0, LMK_SEED_SIZE);
525
526 return 0;
527}
528
529static int crypt_iv_lmk_one(struct crypt_config *cc, u8 *iv,
530 struct dm_crypt_request *dmreq,
531 u8 *data)
532{
533 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200534 SHASH_DESC_ON_STACK(desc, lmk->hash_tfm);
Milan Broz34745782011-01-13 19:59:55 +0000535 struct md5_state md5state;
Milan Brozda31a072013-10-28 23:21:03 +0100536 __le32 buf[4];
Milan Broz34745782011-01-13 19:59:55 +0000537 int i, r;
538
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200539 desc->tfm = lmk->hash_tfm;
540 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Broz34745782011-01-13 19:59:55 +0000541
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200542 r = crypto_shash_init(desc);
Milan Broz34745782011-01-13 19:59:55 +0000543 if (r)
544 return r;
545
546 if (lmk->seed) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200547 r = crypto_shash_update(desc, lmk->seed, LMK_SEED_SIZE);
Milan Broz34745782011-01-13 19:59:55 +0000548 if (r)
549 return r;
550 }
551
552 /* Sector is always 512B, block size 16, add data of blocks 1-31 */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200553 r = crypto_shash_update(desc, data + 16, 16 * 31);
Milan Broz34745782011-01-13 19:59:55 +0000554 if (r)
555 return r;
556
557 /* Sector is cropped to 56 bits here */
558 buf[0] = cpu_to_le32(dmreq->iv_sector & 0xFFFFFFFF);
559 buf[1] = cpu_to_le32((((u64)dmreq->iv_sector >> 32) & 0x00FFFFFF) | 0x80000000);
560 buf[2] = cpu_to_le32(4024);
561 buf[3] = 0;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200562 r = crypto_shash_update(desc, (u8 *)buf, sizeof(buf));
Milan Broz34745782011-01-13 19:59:55 +0000563 if (r)
564 return r;
565
566 /* No MD5 padding here */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200567 r = crypto_shash_export(desc, &md5state);
Milan Broz34745782011-01-13 19:59:55 +0000568 if (r)
569 return r;
570
571 for (i = 0; i < MD5_HASH_WORDS; i++)
572 __cpu_to_le32s(&md5state.hash[i]);
573 memcpy(iv, &md5state.hash, cc->iv_size);
574
575 return 0;
576}
577
578static int crypt_iv_lmk_gen(struct crypt_config *cc, u8 *iv,
579 struct dm_crypt_request *dmreq)
580{
581 u8 *src;
582 int r = 0;
583
584 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE) {
Cong Wangc2e022c2011-11-28 13:26:02 +0800585 src = kmap_atomic(sg_page(&dmreq->sg_in));
Milan Broz34745782011-01-13 19:59:55 +0000586 r = crypt_iv_lmk_one(cc, iv, dmreq, src + dmreq->sg_in.offset);
Cong Wangc2e022c2011-11-28 13:26:02 +0800587 kunmap_atomic(src);
Milan Broz34745782011-01-13 19:59:55 +0000588 } else
589 memset(iv, 0, cc->iv_size);
590
591 return r;
592}
593
594static int crypt_iv_lmk_post(struct crypt_config *cc, u8 *iv,
595 struct dm_crypt_request *dmreq)
596{
597 u8 *dst;
598 int r;
599
600 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE)
601 return 0;
602
Cong Wangc2e022c2011-11-28 13:26:02 +0800603 dst = kmap_atomic(sg_page(&dmreq->sg_out));
Milan Broz34745782011-01-13 19:59:55 +0000604 r = crypt_iv_lmk_one(cc, iv, dmreq, dst + dmreq->sg_out.offset);
605
606 /* Tweak the first block of plaintext sector */
607 if (!r)
608 crypto_xor(dst + dmreq->sg_out.offset, iv, cc->iv_size);
609
Cong Wangc2e022c2011-11-28 13:26:02 +0800610 kunmap_atomic(dst);
Milan Broz34745782011-01-13 19:59:55 +0000611 return r;
612}
613
Milan Brozed04d982013-10-28 23:21:04 +0100614static void crypt_iv_tcw_dtr(struct crypt_config *cc)
615{
616 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
617
618 kzfree(tcw->iv_seed);
619 tcw->iv_seed = NULL;
620 kzfree(tcw->whitening);
621 tcw->whitening = NULL;
622
623 if (tcw->crc32_tfm && !IS_ERR(tcw->crc32_tfm))
624 crypto_free_shash(tcw->crc32_tfm);
625 tcw->crc32_tfm = NULL;
626}
627
628static int crypt_iv_tcw_ctr(struct crypt_config *cc, struct dm_target *ti,
629 const char *opts)
630{
631 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
632
633 if (cc->key_size <= (cc->iv_size + TCW_WHITENING_SIZE)) {
634 ti->error = "Wrong key size for TCW";
635 return -EINVAL;
636 }
637
638 tcw->crc32_tfm = crypto_alloc_shash("crc32", 0, 0);
639 if (IS_ERR(tcw->crc32_tfm)) {
640 ti->error = "Error initializing CRC32 in TCW";
641 return PTR_ERR(tcw->crc32_tfm);
642 }
643
644 tcw->iv_seed = kzalloc(cc->iv_size, GFP_KERNEL);
645 tcw->whitening = kzalloc(TCW_WHITENING_SIZE, GFP_KERNEL);
646 if (!tcw->iv_seed || !tcw->whitening) {
647 crypt_iv_tcw_dtr(cc);
648 ti->error = "Error allocating seed storage in TCW";
649 return -ENOMEM;
650 }
651
652 return 0;
653}
654
655static int crypt_iv_tcw_init(struct crypt_config *cc)
656{
657 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
658 int key_offset = cc->key_size - cc->iv_size - TCW_WHITENING_SIZE;
659
660 memcpy(tcw->iv_seed, &cc->key[key_offset], cc->iv_size);
661 memcpy(tcw->whitening, &cc->key[key_offset + cc->iv_size],
662 TCW_WHITENING_SIZE);
663
664 return 0;
665}
666
667static int crypt_iv_tcw_wipe(struct crypt_config *cc)
668{
669 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
670
671 memset(tcw->iv_seed, 0, cc->iv_size);
672 memset(tcw->whitening, 0, TCW_WHITENING_SIZE);
673
674 return 0;
675}
676
677static int crypt_iv_tcw_whitening(struct crypt_config *cc,
678 struct dm_crypt_request *dmreq,
679 u8 *data)
680{
681 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
682 u64 sector = cpu_to_le64((u64)dmreq->iv_sector);
683 u8 buf[TCW_WHITENING_SIZE];
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200684 SHASH_DESC_ON_STACK(desc, tcw->crc32_tfm);
Milan Brozed04d982013-10-28 23:21:04 +0100685 int i, r;
686
687 /* xor whitening with sector number */
688 memcpy(buf, tcw->whitening, TCW_WHITENING_SIZE);
689 crypto_xor(buf, (u8 *)&sector, 8);
690 crypto_xor(&buf[8], (u8 *)&sector, 8);
691
692 /* calculate crc32 for every 32bit part and xor it */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200693 desc->tfm = tcw->crc32_tfm;
694 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Brozed04d982013-10-28 23:21:04 +0100695 for (i = 0; i < 4; i++) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200696 r = crypto_shash_init(desc);
Milan Brozed04d982013-10-28 23:21:04 +0100697 if (r)
698 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200699 r = crypto_shash_update(desc, &buf[i * 4], 4);
Milan Brozed04d982013-10-28 23:21:04 +0100700 if (r)
701 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200702 r = crypto_shash_final(desc, &buf[i * 4]);
Milan Brozed04d982013-10-28 23:21:04 +0100703 if (r)
704 goto out;
705 }
706 crypto_xor(&buf[0], &buf[12], 4);
707 crypto_xor(&buf[4], &buf[8], 4);
708
709 /* apply whitening (8 bytes) to whole sector */
710 for (i = 0; i < ((1 << SECTOR_SHIFT) / 8); i++)
711 crypto_xor(data + i * 8, buf, 8);
712out:
Milan Broz1a71d6f2014-11-22 09:36:04 +0100713 memzero_explicit(buf, sizeof(buf));
Milan Brozed04d982013-10-28 23:21:04 +0100714 return r;
715}
716
717static int crypt_iv_tcw_gen(struct crypt_config *cc, u8 *iv,
718 struct dm_crypt_request *dmreq)
719{
720 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
721 u64 sector = cpu_to_le64((u64)dmreq->iv_sector);
722 u8 *src;
723 int r = 0;
724
725 /* Remove whitening from ciphertext */
726 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE) {
727 src = kmap_atomic(sg_page(&dmreq->sg_in));
728 r = crypt_iv_tcw_whitening(cc, dmreq, src + dmreq->sg_in.offset);
729 kunmap_atomic(src);
730 }
731
732 /* Calculate IV */
733 memcpy(iv, tcw->iv_seed, cc->iv_size);
734 crypto_xor(iv, (u8 *)&sector, 8);
735 if (cc->iv_size > 8)
736 crypto_xor(&iv[8], (u8 *)&sector, cc->iv_size - 8);
737
738 return r;
739}
740
741static int crypt_iv_tcw_post(struct crypt_config *cc, u8 *iv,
742 struct dm_crypt_request *dmreq)
743{
744 u8 *dst;
745 int r;
746
747 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE)
748 return 0;
749
750 /* Apply whitening on ciphertext */
751 dst = kmap_atomic(sg_page(&dmreq->sg_out));
752 r = crypt_iv_tcw_whitening(cc, dmreq, dst + dmreq->sg_out.offset);
753 kunmap_atomic(dst);
754
755 return r;
756}
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758static struct crypt_iv_operations crypt_iv_plain_ops = {
759 .generator = crypt_iv_plain_gen
760};
761
Milan Broz61afef62009-12-10 23:52:25 +0000762static struct crypt_iv_operations crypt_iv_plain64_ops = {
763 .generator = crypt_iv_plain64_gen
764};
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766static struct crypt_iv_operations crypt_iv_essiv_ops = {
767 .ctr = crypt_iv_essiv_ctr,
768 .dtr = crypt_iv_essiv_dtr,
Milan Brozb95bf2d2009-12-10 23:51:56 +0000769 .init = crypt_iv_essiv_init,
Milan Broz542da312009-12-10 23:51:57 +0000770 .wipe = crypt_iv_essiv_wipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 .generator = crypt_iv_essiv_gen
772};
773
Rik Snel48527fa2006-09-03 08:56:39 +1000774static struct crypt_iv_operations crypt_iv_benbi_ops = {
775 .ctr = crypt_iv_benbi_ctr,
776 .dtr = crypt_iv_benbi_dtr,
777 .generator = crypt_iv_benbi_gen
778};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Ludwig Nussel46b47732007-05-09 02:32:55 -0700780static struct crypt_iv_operations crypt_iv_null_ops = {
781 .generator = crypt_iv_null_gen
782};
783
Milan Broz34745782011-01-13 19:59:55 +0000784static struct crypt_iv_operations crypt_iv_lmk_ops = {
785 .ctr = crypt_iv_lmk_ctr,
786 .dtr = crypt_iv_lmk_dtr,
787 .init = crypt_iv_lmk_init,
788 .wipe = crypt_iv_lmk_wipe,
789 .generator = crypt_iv_lmk_gen,
790 .post = crypt_iv_lmk_post
791};
792
Milan Brozed04d982013-10-28 23:21:04 +0100793static struct crypt_iv_operations crypt_iv_tcw_ops = {
794 .ctr = crypt_iv_tcw_ctr,
795 .dtr = crypt_iv_tcw_dtr,
796 .init = crypt_iv_tcw_init,
797 .wipe = crypt_iv_tcw_wipe,
798 .generator = crypt_iv_tcw_gen,
799 .post = crypt_iv_tcw_post
800};
801
Milan Brozd469f842007-10-19 22:42:37 +0100802static void crypt_convert_init(struct crypt_config *cc,
803 struct convert_context *ctx,
804 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000805 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 ctx->bio_in = bio_in;
808 ctx->bio_out = bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700809 if (bio_in)
810 ctx->iter_in = bio_in->bi_iter;
811 if (bio_out)
812 ctx->iter_out = bio_out->bi_iter;
Mikulas Patockac66029f2012-07-27 15:08:05 +0100813 ctx->cc_sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +0000814 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Huang Yingb2174ee2009-03-16 17:44:33 +0000817static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
818 struct ablkcipher_request *req)
819{
820 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
821}
822
823static struct ablkcipher_request *req_of_dmreq(struct crypt_config *cc,
824 struct dm_crypt_request *dmreq)
825{
826 return (struct ablkcipher_request *)((char *)dmreq - cc->dmreq_start);
827}
828
Milan Broz2dc53272011-01-13 19:59:54 +0000829static u8 *iv_of_dmreq(struct crypt_config *cc,
830 struct dm_crypt_request *dmreq)
831{
832 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
833 crypto_ablkcipher_alignmask(any_tfm(cc)) + 1);
834}
835
Milan Broz01482b72008-02-08 02:11:04 +0000836static int crypt_convert_block(struct crypt_config *cc,
Milan Broz3a7f6c92008-02-08 02:11:14 +0000837 struct convert_context *ctx,
838 struct ablkcipher_request *req)
Milan Broz01482b72008-02-08 02:11:04 +0000839{
Kent Overstreet003b5c52013-10-11 15:45:43 -0700840 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
841 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000842 struct dm_crypt_request *dmreq;
843 u8 *iv;
Mikulas Patocka40b62292012-07-27 15:08:04 +0100844 int r;
Milan Broz01482b72008-02-08 02:11:04 +0000845
Huang Yingb2174ee2009-03-16 17:44:33 +0000846 dmreq = dmreq_of_req(cc, req);
Milan Broz2dc53272011-01-13 19:59:54 +0000847 iv = iv_of_dmreq(cc, dmreq);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000848
Mikulas Patockac66029f2012-07-27 15:08:05 +0100849 dmreq->iv_sector = ctx->cc_sector;
Huang Yingb2174ee2009-03-16 17:44:33 +0000850 dmreq->ctx = ctx;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000851 sg_init_table(&dmreq->sg_in, 1);
Kent Overstreet003b5c52013-10-11 15:45:43 -0700852 sg_set_page(&dmreq->sg_in, bv_in.bv_page, 1 << SECTOR_SHIFT,
853 bv_in.bv_offset);
Milan Broz01482b72008-02-08 02:11:04 +0000854
Milan Broz3a7f6c92008-02-08 02:11:14 +0000855 sg_init_table(&dmreq->sg_out, 1);
Kent Overstreet003b5c52013-10-11 15:45:43 -0700856 sg_set_page(&dmreq->sg_out, bv_out.bv_page, 1 << SECTOR_SHIFT,
857 bv_out.bv_offset);
Milan Broz01482b72008-02-08 02:11:04 +0000858
Kent Overstreet003b5c52013-10-11 15:45:43 -0700859 bio_advance_iter(ctx->bio_in, &ctx->iter_in, 1 << SECTOR_SHIFT);
860 bio_advance_iter(ctx->bio_out, &ctx->iter_out, 1 << SECTOR_SHIFT);
Milan Broz01482b72008-02-08 02:11:04 +0000861
Milan Broz3a7f6c92008-02-08 02:11:14 +0000862 if (cc->iv_gen_ops) {
Milan Broz2dc53272011-01-13 19:59:54 +0000863 r = cc->iv_gen_ops->generator(cc, iv, dmreq);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000864 if (r < 0)
865 return r;
866 }
867
868 ablkcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
869 1 << SECTOR_SHIFT, iv);
870
871 if (bio_data_dir(ctx->bio_in) == WRITE)
872 r = crypto_ablkcipher_encrypt(req);
873 else
874 r = crypto_ablkcipher_decrypt(req);
875
Milan Broz2dc53272011-01-13 19:59:54 +0000876 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
877 r = cc->iv_gen_ops->post(cc, iv, dmreq);
878
Milan Broz3a7f6c92008-02-08 02:11:14 +0000879 return r;
Milan Broz01482b72008-02-08 02:11:04 +0000880}
881
Milan Broz95497a92008-02-08 02:11:12 +0000882static void kcryptd_async_done(struct crypto_async_request *async_req,
883 int error);
Andi Kleenc0297722011-01-13 19:59:53 +0000884
Milan Brozddd42ed2008-02-08 02:11:07 +0000885static void crypt_alloc_req(struct crypt_config *cc,
886 struct convert_context *ctx)
887{
Mikulas Patockac66029f2012-07-27 15:08:05 +0100888 unsigned key_index = ctx->cc_sector & (cc->tfms_count - 1);
Andi Kleenc0297722011-01-13 19:59:53 +0000889
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500890 if (!ctx->req)
891 ctx->req = mempool_alloc(cc->req_pool, GFP_NOIO);
Andi Kleenc0297722011-01-13 19:59:53 +0000892
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500893 ablkcipher_request_set_tfm(ctx->req, cc->tfms[key_index]);
894 ablkcipher_request_set_callback(ctx->req,
Andi Kleenc0297722011-01-13 19:59:53 +0000895 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500896 kcryptd_async_done, dmreq_of_req(cc, ctx->req));
Milan Brozddd42ed2008-02-08 02:11:07 +0000897}
898
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400899static void crypt_free_req(struct crypt_config *cc,
900 struct ablkcipher_request *req, struct bio *base_bio)
901{
902 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
903
904 if ((struct ablkcipher_request *)(io + 1) != req)
905 mempool_free(req, cc->req_pool);
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/*
909 * Encrypt / decrypt data from one bio to another one (can be the same one)
910 */
911static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100912 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Milan Broz3f1e9072008-03-28 14:16:07 -0700914 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Mikulas Patocka40b62292012-07-27 15:08:04 +0100916 atomic_set(&ctx->cc_pending, 1);
Milan Brozc8081612008-10-10 13:37:08 +0100917
Kent Overstreet003b5c52013-10-11 15:45:43 -0700918 while (ctx->iter_in.bi_size && ctx->iter_out.bi_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Milan Broz3a7f6c92008-02-08 02:11:14 +0000920 crypt_alloc_req(cc, ctx);
921
Mikulas Patocka40b62292012-07-27 15:08:04 +0100922 atomic_inc(&ctx->cc_pending);
Milan Broz3f1e9072008-03-28 14:16:07 -0700923
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500924 r = crypt_convert_block(cc, ctx, ctx->req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000925
926 switch (r) {
Milan Broz3f1e9072008-03-28 14:16:07 -0700927 /* async */
Milan Broz3a7f6c92008-02-08 02:11:14 +0000928 case -EBUSY:
929 wait_for_completion(&ctx->restart);
Wolfram Sang16735d02013-11-14 14:32:02 -0800930 reinit_completion(&ctx->restart);
Rabin Vincentc0403ec2015-05-05 15:15:56 +0200931 /* fall through*/
932 case -EINPROGRESS:
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500933 ctx->req = NULL;
Mikulas Patockac66029f2012-07-27 15:08:05 +0100934 ctx->cc_sector++;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000935 continue;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000936
Milan Broz3f1e9072008-03-28 14:16:07 -0700937 /* sync */
938 case 0:
Mikulas Patocka40b62292012-07-27 15:08:04 +0100939 atomic_dec(&ctx->cc_pending);
Mikulas Patockac66029f2012-07-27 15:08:05 +0100940 ctx->cc_sector++;
Milan Brozc7f1b202008-07-02 09:34:28 +0100941 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -0700942 continue;
943
944 /* error */
945 default:
Mikulas Patocka40b62292012-07-27 15:08:04 +0100946 atomic_dec(&ctx->cc_pending);
Milan Broz3f1e9072008-03-28 14:16:07 -0700947 return r;
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Milan Broz3f1e9072008-03-28 14:16:07 -0700951 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -0500954static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/*
957 * Generate a new unfragmented bio with the given size
Mike Snitzer839e3592015-09-09 21:34:51 -0400958 * This should never violate the device limitations (but only because
959 * max_segment_size is being constrained to PAGE_SIZE).
Mikulas Patocka7145c242015-02-13 08:24:41 -0500960 *
961 * This function may be called concurrently. If we allocate from the mempool
962 * concurrently, there is a possibility of deadlock. For example, if we have
963 * mempool of 256 pages, two processes, each wanting 256, pages allocate from
964 * the mempool concurrently, it may deadlock in a situation where both processes
965 * have allocated 128 pages and the mempool is exhausted.
966 *
967 * In order to avoid this scenario we allocate the pages under a mutex.
968 *
969 * In order to not degrade performance with excessive locking, we try
970 * non-blocking allocations without a mutex first but on failure we fallback
971 * to blocking allocations with a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -0500973static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +0100975 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -0700976 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Mikulas Patocka7145c242015-02-13 08:24:41 -0500978 gfp_t gfp_mask = GFP_NOWAIT | __GFP_HIGHMEM;
979 unsigned i, len, remaining_size;
Milan Broz91e10622007-12-13 14:16:10 +0000980 struct page *page;
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -0500981 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Mikulas Patocka7145c242015-02-13 08:24:41 -0500983retry:
984 if (unlikely(gfp_mask & __GFP_WAIT))
985 mutex_lock(&cc->bio_alloc_lock);
986
Olaf Kirch2f9941b2007-05-09 02:32:53 -0700987 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -0700988 if (!clone)
Mikulas Patocka7145c242015-02-13 08:24:41 -0500989 goto return_clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Olaf Kirch027581f2007-05-09 02:32:52 -0700991 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -0700992
Mikulas Patocka7145c242015-02-13 08:24:41 -0500993 remaining_size = size;
994
Olaf Kirchf97380b2007-05-09 02:32:54 -0700995 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +0000996 page = mempool_alloc(cc->page_pool, gfp_mask);
Mikulas Patocka7145c242015-02-13 08:24:41 -0500997 if (!page) {
998 crypt_free_buffer_pages(cc, clone);
999 bio_put(clone);
1000 gfp_mask |= __GFP_WAIT;
1001 goto retry;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Mikulas Patocka7145c242015-02-13 08:24:41 -05001004 len = (remaining_size > PAGE_SIZE) ? PAGE_SIZE : remaining_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001006 bvec = &clone->bi_io_vec[clone->bi_vcnt++];
1007 bvec->bv_page = page;
1008 bvec->bv_len = len;
1009 bvec->bv_offset = 0;
1010
1011 clone->bi_iter.bi_size += len;
Milan Broz91e10622007-12-13 14:16:10 +00001012
Mikulas Patocka7145c242015-02-13 08:24:41 -05001013 remaining_size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
Mikulas Patocka7145c242015-02-13 08:24:41 -05001016return_clone:
1017 if (unlikely(gfp_mask & __GFP_WAIT))
1018 mutex_unlock(&cc->bio_alloc_lock);
1019
Milan Broz8b004452006-10-03 01:15:37 -07001020 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Neil Brown644bd2f2007-10-16 13:48:46 +02001023static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Neil Brown644bd2f2007-10-16 13:48:46 +02001025 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 struct bio_vec *bv;
1027
Kent Overstreetcb34e052012-09-05 15:22:02 -07001028 bio_for_each_segment_all(bv, clone, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 BUG_ON(!bv->bv_page);
1030 mempool_free(bv->bv_page, cc->page_pool);
1031 bv->bv_page = NULL;
1032 }
1033}
1034
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001035static void crypt_io_init(struct dm_crypt_io *io, struct crypt_config *cc,
1036 struct bio *bio, sector_t sector)
Milan Brozdc440d1e2008-10-10 13:37:03 +01001037{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001038 io->cc = cc;
Milan Brozdc440d1e2008-10-10 13:37:03 +01001039 io->base_bio = bio;
1040 io->sector = sector;
1041 io->error = 0;
Mikulas Patocka610f2de2014-02-20 18:01:01 -05001042 io->ctx.req = NULL;
Mikulas Patocka40b62292012-07-27 15:08:04 +01001043 atomic_set(&io->io_pending, 0);
Milan Brozdc440d1e2008-10-10 13:37:03 +01001044}
1045
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001046static void crypt_inc_pending(struct dm_crypt_io *io)
1047{
Mikulas Patocka40b62292012-07-27 15:08:04 +01001048 atomic_inc(&io->io_pending);
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001049}
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051/*
1052 * One of the bios was finished. Check for completion of
1053 * the whole request and correctly clean up the buffer.
1054 */
Milan Broz5742fd72008-02-08 02:10:43 +00001055static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001057 struct crypt_config *cc = io->cc;
Milan Brozb35f8ca2009-03-16 17:44:36 +00001058 struct bio *base_bio = io->base_bio;
Milan Brozb35f8ca2009-03-16 17:44:36 +00001059 int error = io->error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Mikulas Patocka40b62292012-07-27 15:08:04 +01001061 if (!atomic_dec_and_test(&io->io_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return;
1063
Mikulas Patocka610f2de2014-02-20 18:01:01 -05001064 if (io->ctx.req)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001065 crypt_free_req(cc, io->ctx.req, base_bio);
Milan Brozb35f8ca2009-03-16 17:44:36 +00001066
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001067 bio_endio(base_bio, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
1070/*
Milan Brozcabf08e2007-10-19 22:38:58 +01001071 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 *
1073 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -07001074 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +01001075 *
1076 * kcryptd performs the actual encryption or decryption.
1077 *
1078 * kcryptd_io performs the IO submission.
1079 *
1080 * They must be separated as otherwise the final stages could be
1081 * starved by new requests which can block in the first stages due
1082 * to memory allocation.
Andi Kleenc0297722011-01-13 19:59:53 +00001083 *
1084 * The work is done per CPU global for all dm-crypt instances.
1085 * They should not depend on each other and do not block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 */
NeilBrown6712ecf2007-09-27 12:47:43 +02001087static void crypt_endio(struct bio *clone, int error)
Milan Broz8b004452006-10-03 01:15:37 -07001088{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001089 struct dm_crypt_io *io = clone->bi_private;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001090 struct crypt_config *cc = io->cc;
Milan Brozee7a4912008-02-08 02:10:46 +00001091 unsigned rw = bio_data_dir(clone);
Milan Broz8b004452006-10-03 01:15:37 -07001092
Milan Brozadfe4772007-12-13 14:15:51 +00001093 if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error))
1094 error = -EIO;
1095
Milan Broz8b004452006-10-03 01:15:37 -07001096 /*
NeilBrown6712ecf2007-09-27 12:47:43 +02001097 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -07001098 */
Milan Brozee7a4912008-02-08 02:10:46 +00001099 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +02001100 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +00001101
1102 bio_put(clone);
1103
1104 if (rw == READ && !error) {
1105 kcryptd_queue_crypt(io);
1106 return;
NeilBrown6712ecf2007-09-27 12:47:43 +02001107 }
Milan Broz8b004452006-10-03 01:15:37 -07001108
Milan Brozadfe4772007-12-13 14:15:51 +00001109 if (unlikely(error))
Milan Broz5742fd72008-02-08 02:10:43 +00001110 io->error = error;
1111
1112 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001113}
1114
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001115static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -07001116{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001117 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001118
1119 clone->bi_private = io;
1120 clone->bi_end_io = crypt_endio;
1121 clone->bi_bdev = cc->dev->bdev;
1122 clone->bi_rw = io->base_bio->bi_rw;
1123}
1124
Milan Broz20c82532011-01-13 19:59:53 +00001125static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
Milan Broz8b004452006-10-03 01:15:37 -07001126{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001127 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001128 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -07001129
Milan Broz8b004452006-10-03 01:15:37 -07001130 /*
Mike Snitzer59779072015-04-09 16:53:24 -04001131 * We need the original biovec array in order to decrypt
1132 * the whole bio data *afterwards* -- thanks to immutable
1133 * biovecs we don't need to worry about the block layer
1134 * modifying the biovec array; so leverage bio_clone_fast().
Milan Broz8b004452006-10-03 01:15:37 -07001135 */
Mike Snitzer59779072015-04-09 16:53:24 -04001136 clone = bio_clone_fast(io->base_bio, gfp, cc->bs);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001137 if (!clone)
Milan Broz20c82532011-01-13 19:59:53 +00001138 return 1;
Milan Broz8b004452006-10-03 01:15:37 -07001139
Milan Broz20c82532011-01-13 19:59:53 +00001140 crypt_inc_pending(io);
1141
Milan Broz8b004452006-10-03 01:15:37 -07001142 clone_init(io, clone);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001143 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -07001144
Milan Broz93e605c2006-10-03 01:15:38 -07001145 generic_make_request(clone);
Milan Broz20c82532011-01-13 19:59:53 +00001146 return 0;
Milan Broz8b004452006-10-03 01:15:37 -07001147}
1148
Mikulas Patockadc267622015-02-13 08:25:59 -05001149static void kcryptd_io_read_work(struct work_struct *work)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001150{
1151 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1152
Mikulas Patockadc267622015-02-13 08:25:59 -05001153 crypt_inc_pending(io);
1154 if (kcryptd_io_read(io, GFP_NOIO))
1155 io->error = -ENOMEM;
1156 crypt_dec_pending(io);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001157}
1158
Mikulas Patockadc267622015-02-13 08:25:59 -05001159static void kcryptd_queue_read(struct dm_crypt_io *io)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001160{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001161 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001162
Mikulas Patockadc267622015-02-13 08:25:59 -05001163 INIT_WORK(&io->work, kcryptd_io_read_work);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001164 queue_work(cc->io_queue, &io->work);
1165}
1166
Mikulas Patockadc267622015-02-13 08:25:59 -05001167static void kcryptd_io_write(struct dm_crypt_io *io)
1168{
1169 struct bio *clone = io->ctx.bio_out;
1170
1171 generic_make_request(clone);
1172}
1173
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001174#define crypt_io_from_node(node) rb_entry((node), struct dm_crypt_io, rb_node)
1175
Mikulas Patockadc267622015-02-13 08:25:59 -05001176static int dmcrypt_write(void *data)
1177{
1178 struct crypt_config *cc = data;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001179 struct dm_crypt_io *io;
1180
Mikulas Patockadc267622015-02-13 08:25:59 -05001181 while (1) {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001182 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -05001183 struct blk_plug plug;
1184
1185 DECLARE_WAITQUEUE(wait, current);
1186
1187 spin_lock_irq(&cc->write_thread_wait.lock);
1188continue_locked:
1189
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001190 if (!RB_EMPTY_ROOT(&cc->write_tree))
Mikulas Patockadc267622015-02-13 08:25:59 -05001191 goto pop_from_list;
1192
1193 __set_current_state(TASK_INTERRUPTIBLE);
1194 __add_wait_queue(&cc->write_thread_wait, &wait);
1195
1196 spin_unlock_irq(&cc->write_thread_wait.lock);
1197
1198 if (unlikely(kthread_should_stop())) {
1199 set_task_state(current, TASK_RUNNING);
1200 remove_wait_queue(&cc->write_thread_wait, &wait);
1201 break;
1202 }
1203
1204 schedule();
1205
1206 set_task_state(current, TASK_RUNNING);
1207 spin_lock_irq(&cc->write_thread_wait.lock);
1208 __remove_wait_queue(&cc->write_thread_wait, &wait);
1209 goto continue_locked;
1210
1211pop_from_list:
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001212 write_tree = cc->write_tree;
1213 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05001214 spin_unlock_irq(&cc->write_thread_wait.lock);
1215
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001216 BUG_ON(rb_parent(write_tree.rb_node));
1217
1218 /*
1219 * Note: we cannot walk the tree here with rb_next because
1220 * the structures may be freed when kcryptd_io_write is called.
1221 */
Mikulas Patockadc267622015-02-13 08:25:59 -05001222 blk_start_plug(&plug);
1223 do {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001224 io = crypt_io_from_node(rb_first(&write_tree));
1225 rb_erase(&io->rb_node, &write_tree);
Mikulas Patockadc267622015-02-13 08:25:59 -05001226 kcryptd_io_write(io);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001227 } while (!RB_EMPTY_ROOT(&write_tree));
Mikulas Patockadc267622015-02-13 08:25:59 -05001228 blk_finish_plug(&plug);
1229 }
1230 return 0;
1231}
1232
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001233static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +00001234{
Milan Brozdec1ced2008-02-08 02:10:57 +00001235 struct bio *clone = io->ctx.bio_out;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001236 struct crypt_config *cc = io->cc;
Mikulas Patockadc267622015-02-13 08:25:59 -05001237 unsigned long flags;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001238 sector_t sector;
1239 struct rb_node **rbp, *parent;
Milan Brozdec1ced2008-02-08 02:10:57 +00001240
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001241 if (unlikely(io->error < 0)) {
Milan Brozdec1ced2008-02-08 02:10:57 +00001242 crypt_free_buffer_pages(cc, clone);
1243 bio_put(clone);
Milan Broz6c031f42008-10-10 13:37:06 +01001244 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +00001245 return;
1246 }
1247
1248 /* crypt_convert should have filled the clone bio */
Kent Overstreet003b5c52013-10-11 15:45:43 -07001249 BUG_ON(io->ctx.iter_out.bi_size);
Milan Brozdec1ced2008-02-08 02:10:57 +00001250
Kent Overstreet4f024f32013-10-11 15:44:27 -07001251 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +00001252
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001253 if (likely(!async) && test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags)) {
1254 generic_make_request(clone);
1255 return;
1256 }
1257
Mikulas Patockadc267622015-02-13 08:25:59 -05001258 spin_lock_irqsave(&cc->write_thread_wait.lock, flags);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001259 rbp = &cc->write_tree.rb_node;
1260 parent = NULL;
1261 sector = io->sector;
1262 while (*rbp) {
1263 parent = *rbp;
1264 if (sector < crypt_io_from_node(parent)->sector)
1265 rbp = &(*rbp)->rb_left;
1266 else
1267 rbp = &(*rbp)->rb_right;
1268 }
1269 rb_link_node(&io->rb_node, parent, rbp);
1270 rb_insert_color(&io->rb_node, &cc->write_tree);
1271
Mikulas Patockadc267622015-02-13 08:25:59 -05001272 wake_up_locked(&cc->write_thread_wait);
1273 spin_unlock_irqrestore(&cc->write_thread_wait.lock, flags);
Milan Broz4e4eef62008-02-08 02:10:49 +00001274}
1275
Milan Brozfc5a5e92008-10-10 13:37:04 +01001276static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001277{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001278 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001279 struct bio *clone;
Milan Brozc8081612008-10-10 13:37:08 +01001280 int crypt_finished;
Milan Brozb635b002008-10-21 17:45:00 +01001281 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +00001282 int r;
Milan Broz8b004452006-10-03 01:15:37 -07001283
Milan Broz93e605c2006-10-03 01:15:38 -07001284 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +01001285 * Prevent io from disappearing until this function completes.
1286 */
1287 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +01001288 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +01001289
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001290 clone = crypt_alloc_buffer(io, io->base_bio->bi_iter.bi_size);
1291 if (unlikely(!clone)) {
1292 io->error = -EIO;
1293 goto dec;
Milan Broz8b004452006-10-03 01:15:37 -07001294 }
Milan Broz899c95d2008-02-08 02:11:02 +00001295
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001296 io->ctx.bio_out = clone;
1297 io->ctx.iter_out = clone->bi_iter;
1298
1299 sector += bio_sectors(clone);
1300
1301 crypt_inc_pending(io);
1302 r = crypt_convert(cc, &io->ctx);
1303 if (r)
1304 io->error = -EIO;
1305 crypt_finished = atomic_dec_and_test(&io->ctx.cc_pending);
1306
1307 /* Encryption was already finished, submit io now */
1308 if (crypt_finished) {
1309 kcryptd_crypt_write_io_submit(io, 0);
1310 io->sector = sector;
1311 }
1312
1313dec:
Milan Broz899c95d2008-02-08 02:11:02 +00001314 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +00001315}
1316
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001317static void kcryptd_crypt_read_done(struct dm_crypt_io *io)
Milan Broz5742fd72008-02-08 02:10:43 +00001318{
Milan Broz5742fd72008-02-08 02:10:43 +00001319 crypt_dec_pending(io);
1320}
1321
Milan Broz4e4eef62008-02-08 02:10:49 +00001322static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001323{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001324 struct crypt_config *cc = io->cc;
Milan Broz5742fd72008-02-08 02:10:43 +00001325 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -07001326
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001327 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001328
Milan Broz53017032008-02-08 02:10:38 +00001329 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +00001330 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -07001331
Milan Broz5742fd72008-02-08 02:10:43 +00001332 r = crypt_convert(cc, &io->ctx);
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001333 if (r < 0)
1334 io->error = -EIO;
Milan Broz5742fd72008-02-08 02:10:43 +00001335
Mikulas Patocka40b62292012-07-27 15:08:04 +01001336 if (atomic_dec_and_test(&io->ctx.cc_pending))
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001337 kcryptd_crypt_read_done(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001338
1339 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001340}
1341
Milan Broz95497a92008-02-08 02:11:12 +00001342static void kcryptd_async_done(struct crypto_async_request *async_req,
1343 int error)
1344{
Huang Yingb2174ee2009-03-16 17:44:33 +00001345 struct dm_crypt_request *dmreq = async_req->data;
1346 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +00001347 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001348 struct crypt_config *cc = io->cc;
Milan Broz95497a92008-02-08 02:11:12 +00001349
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001350 if (error == -EINPROGRESS) {
1351 complete(&ctx->restart);
Milan Broz95497a92008-02-08 02:11:12 +00001352 return;
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001353 }
Milan Broz95497a92008-02-08 02:11:12 +00001354
Milan Broz2dc53272011-01-13 19:59:54 +00001355 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post)
1356 error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq);
1357
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001358 if (error < 0)
1359 io->error = -EIO;
1360
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001361 crypt_free_req(cc, req_of_dmreq(cc, dmreq), io->base_bio);
Milan Broz95497a92008-02-08 02:11:12 +00001362
Mikulas Patocka40b62292012-07-27 15:08:04 +01001363 if (!atomic_dec_and_test(&ctx->cc_pending))
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001364 return;
Milan Broz95497a92008-02-08 02:11:12 +00001365
1366 if (bio_data_dir(io->base_bio) == READ)
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001367 kcryptd_crypt_read_done(io);
Milan Broz95497a92008-02-08 02:11:12 +00001368 else
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001369 kcryptd_crypt_write_io_submit(io, 1);
Milan Broz95497a92008-02-08 02:11:12 +00001370}
1371
Milan Broz4e4eef62008-02-08 02:10:49 +00001372static void kcryptd_crypt(struct work_struct *work)
1373{
1374 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1375
1376 if (bio_data_dir(io->base_bio) == READ)
1377 kcryptd_crypt_read_convert(io);
1378 else
1379 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -07001380}
1381
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001382static void kcryptd_queue_crypt(struct dm_crypt_io *io)
1383{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001384 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001385
1386 INIT_WORK(&io->work, kcryptd_crypt);
1387 queue_work(cc->crypt_queue, &io->work);
1388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390/*
1391 * Decode key from its hex representation
1392 */
1393static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1394{
1395 char buffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 unsigned int i;
1397
1398 buffer[2] = '\0';
1399
Milan Broz8b004452006-10-03 01:15:37 -07001400 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 buffer[0] = *hex++;
1402 buffer[1] = *hex++;
1403
majianpeng1a66a082012-07-27 15:07:59 +01001404 if (kstrtou8(buffer, 16, &key[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -EINVAL;
1406 }
1407
1408 if (*hex != '\0')
1409 return -EINVAL;
1410
1411 return 0;
1412}
1413
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001414static void crypt_free_tfms(struct crypt_config *cc)
Milan Brozd1f96422011-01-13 19:59:54 +00001415{
Milan Brozd1f96422011-01-13 19:59:54 +00001416 unsigned i;
1417
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001418 if (!cc->tfms)
1419 return;
1420
Milan Brozd1f96422011-01-13 19:59:54 +00001421 for (i = 0; i < cc->tfms_count; i++)
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001422 if (cc->tfms[i] && !IS_ERR(cc->tfms[i])) {
1423 crypto_free_ablkcipher(cc->tfms[i]);
1424 cc->tfms[i] = NULL;
Milan Brozd1f96422011-01-13 19:59:54 +00001425 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001426
1427 kfree(cc->tfms);
1428 cc->tfms = NULL;
Milan Brozd1f96422011-01-13 19:59:54 +00001429}
1430
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001431static int crypt_alloc_tfms(struct crypt_config *cc, char *ciphermode)
Milan Brozd1f96422011-01-13 19:59:54 +00001432{
Milan Brozd1f96422011-01-13 19:59:54 +00001433 unsigned i;
1434 int err;
1435
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001436 cc->tfms = kmalloc(cc->tfms_count * sizeof(struct crypto_ablkcipher *),
1437 GFP_KERNEL);
1438 if (!cc->tfms)
1439 return -ENOMEM;
1440
Milan Brozd1f96422011-01-13 19:59:54 +00001441 for (i = 0; i < cc->tfms_count; i++) {
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001442 cc->tfms[i] = crypto_alloc_ablkcipher(ciphermode, 0, 0);
1443 if (IS_ERR(cc->tfms[i])) {
1444 err = PTR_ERR(cc->tfms[i]);
1445 crypt_free_tfms(cc);
Milan Brozd1f96422011-01-13 19:59:54 +00001446 return err;
1447 }
1448 }
1449
1450 return 0;
1451}
1452
Andi Kleenc0297722011-01-13 19:59:53 +00001453static int crypt_setkey_allcpus(struct crypt_config *cc)
1454{
Milan Brozda31a072013-10-28 23:21:03 +01001455 unsigned subkey_size;
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001456 int err = 0, i, r;
Andi Kleenc0297722011-01-13 19:59:53 +00001457
Milan Brozda31a072013-10-28 23:21:03 +01001458 /* Ignore extra keys (which are used for IV etc) */
1459 subkey_size = (cc->key_size - cc->key_extra_size) >> ilog2(cc->tfms_count);
1460
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001461 for (i = 0; i < cc->tfms_count; i++) {
1462 r = crypto_ablkcipher_setkey(cc->tfms[i],
1463 cc->key + (i * subkey_size),
1464 subkey_size);
1465 if (r)
1466 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +00001467 }
1468
1469 return err;
1470}
1471
Milan Broze48d4bb2006-10-03 01:15:37 -07001472static int crypt_set_key(struct crypt_config *cc, char *key)
1473{
Milan Brozde8be5a2011-03-24 13:54:27 +00001474 int r = -EINVAL;
1475 int key_string_len = strlen(key);
1476
Milan Broz69a8cfc2011-01-13 19:59:49 +00001477 /* The key size may not be changed. */
Milan Brozde8be5a2011-03-24 13:54:27 +00001478 if (cc->key_size != (key_string_len >> 1))
1479 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001480
Milan Broz69a8cfc2011-01-13 19:59:49 +00001481 /* Hyphen (which gives a key_size of zero) means there is no key. */
1482 if (!cc->key_size && strcmp(key, "-"))
Milan Brozde8be5a2011-03-24 13:54:27 +00001483 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001484
Milan Broz69a8cfc2011-01-13 19:59:49 +00001485 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
Milan Brozde8be5a2011-03-24 13:54:27 +00001486 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001487
1488 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1489
Milan Brozde8be5a2011-03-24 13:54:27 +00001490 r = crypt_setkey_allcpus(cc);
1491
1492out:
1493 /* Hex key string not needed after here, so wipe it. */
1494 memset(key, '0', key_string_len);
1495
1496 return r;
Milan Broze48d4bb2006-10-03 01:15:37 -07001497}
1498
1499static int crypt_wipe_key(struct crypt_config *cc)
1500{
1501 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1502 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Andi Kleenc0297722011-01-13 19:59:53 +00001503
1504 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001505}
1506
Milan Broz28513fc2010-08-12 04:14:06 +01001507static void crypt_dtr(struct dm_target *ti)
1508{
1509 struct crypt_config *cc = ti->private;
1510
1511 ti->private = NULL;
1512
1513 if (!cc)
1514 return;
1515
Mikulas Patockadc267622015-02-13 08:25:59 -05001516 if (cc->write_thread)
1517 kthread_stop(cc->write_thread);
1518
Milan Broz28513fc2010-08-12 04:14:06 +01001519 if (cc->io_queue)
1520 destroy_workqueue(cc->io_queue);
1521 if (cc->crypt_queue)
1522 destroy_workqueue(cc->crypt_queue);
1523
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001524 crypt_free_tfms(cc);
1525
Milan Broz28513fc2010-08-12 04:14:06 +01001526 if (cc->bs)
1527 bioset_free(cc->bs);
1528
1529 if (cc->page_pool)
1530 mempool_destroy(cc->page_pool);
1531 if (cc->req_pool)
1532 mempool_destroy(cc->req_pool);
Milan Broz28513fc2010-08-12 04:14:06 +01001533
1534 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1535 cc->iv_gen_ops->dtr(cc);
1536
Milan Broz28513fc2010-08-12 04:14:06 +01001537 if (cc->dev)
1538 dm_put_device(ti, cc->dev);
1539
Milan Broz5ebaee62010-08-12 04:14:07 +01001540 kzfree(cc->cipher);
Milan Broz7dbcd132011-01-13 19:59:52 +00001541 kzfree(cc->cipher_string);
Milan Broz28513fc2010-08-12 04:14:06 +01001542
1543 /* Must zero key material before freeing */
1544 kzfree(cc);
1545}
1546
Milan Broz5ebaee62010-08-12 04:14:07 +01001547static int crypt_ctr_cipher(struct dm_target *ti,
1548 char *cipher_in, char *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Milan Broz5ebaee62010-08-12 04:14:07 +01001550 struct crypt_config *cc = ti->private;
Milan Brozd1f96422011-01-13 19:59:54 +00001551 char *tmp, *cipher, *chainmode, *ivmode, *ivopts, *keycount;
Milan Broz5ebaee62010-08-12 04:14:07 +01001552 char *cipher_api = NULL;
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001553 int ret = -EINVAL;
Mikulas Patocka31998ef12012-03-28 18:41:26 +01001554 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Milan Broz5ebaee62010-08-12 04:14:07 +01001556 /* Convert to crypto api definition? */
1557 if (strchr(cipher_in, '(')) {
1558 ti->error = "Bad cipher specification";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 return -EINVAL;
1560 }
1561
Milan Broz7dbcd132011-01-13 19:59:52 +00001562 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1563 if (!cc->cipher_string)
1564 goto bad_mem;
1565
Milan Broz5ebaee62010-08-12 04:14:07 +01001566 /*
1567 * Legacy dm-crypt cipher specification
Milan Brozd1f96422011-01-13 19:59:54 +00001568 * cipher[:keycount]-mode-iv:ivopts
Milan Broz5ebaee62010-08-12 04:14:07 +01001569 */
1570 tmp = cipher_in;
Milan Brozd1f96422011-01-13 19:59:54 +00001571 keycount = strsep(&tmp, "-");
1572 cipher = strsep(&keycount, ":");
1573
1574 if (!keycount)
1575 cc->tfms_count = 1;
Mikulas Patocka31998ef12012-03-28 18:41:26 +01001576 else if (sscanf(keycount, "%u%c", &cc->tfms_count, &dummy) != 1 ||
Milan Brozd1f96422011-01-13 19:59:54 +00001577 !is_power_of_2(cc->tfms_count)) {
1578 ti->error = "Bad cipher key count specification";
1579 return -EINVAL;
1580 }
1581 cc->key_parts = cc->tfms_count;
Milan Brozda31a072013-10-28 23:21:03 +01001582 cc->key_extra_size = 0;
Milan Broz5ebaee62010-08-12 04:14:07 +01001583
1584 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1585 if (!cc->cipher)
1586 goto bad_mem;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 chainmode = strsep(&tmp, "-");
1589 ivopts = strsep(&tmp, "-");
1590 ivmode = strsep(&ivopts, ":");
1591
1592 if (tmp)
Milan Broz5ebaee62010-08-12 04:14:07 +01001593 DMWARN("Ignoring unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Milan Broz7dbcd132011-01-13 19:59:52 +00001595 /*
1596 * For compatibility with the original dm-crypt mapping format, if
1597 * only the cipher name is supplied, use cbc-plain.
1598 */
Milan Broz5ebaee62010-08-12 04:14:07 +01001599 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 chainmode = "cbc";
1601 ivmode = "plain";
1602 }
1603
Herbert Xud1806f62006-08-22 20:29:17 +10001604 if (strcmp(chainmode, "ecb") && !ivmode) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001605 ti->error = "IV mechanism required";
1606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608
Milan Broz5ebaee62010-08-12 04:14:07 +01001609 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1610 if (!cipher_api)
1611 goto bad_mem;
1612
1613 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1614 "%s(%s)", chainmode, cipher);
1615 if (ret < 0) {
1616 kfree(cipher_api);
1617 goto bad_mem;
Herbert Xud1806f62006-08-22 20:29:17 +10001618 }
1619
Milan Broz5ebaee62010-08-12 04:14:07 +01001620 /* Allocate cipher */
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001621 ret = crypt_alloc_tfms(cc, cipher_api);
1622 if (ret < 0) {
1623 ti->error = "Error allocating crypto tfm";
1624 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Milan Broz5ebaee62010-08-12 04:14:07 +01001627 /* Initialize IV */
Andi Kleenc0297722011-01-13 19:59:53 +00001628 cc->iv_size = crypto_ablkcipher_ivsize(any_tfm(cc));
Milan Broz5ebaee62010-08-12 04:14:07 +01001629 if (cc->iv_size)
1630 /* at least a 64 bit sector number should fit in our buffer */
1631 cc->iv_size = max(cc->iv_size,
1632 (unsigned int)(sizeof(u64) / sizeof(u8)));
1633 else if (ivmode) {
1634 DMWARN("Selected cipher does not support IVs");
1635 ivmode = NULL;
1636 }
1637
1638 /* Choose ivmode, see comments at iv code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (ivmode == NULL)
1640 cc->iv_gen_ops = NULL;
1641 else if (strcmp(ivmode, "plain") == 0)
1642 cc->iv_gen_ops = &crypt_iv_plain_ops;
Milan Broz61afef62009-12-10 23:52:25 +00001643 else if (strcmp(ivmode, "plain64") == 0)
1644 cc->iv_gen_ops = &crypt_iv_plain64_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 else if (strcmp(ivmode, "essiv") == 0)
1646 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001647 else if (strcmp(ivmode, "benbi") == 0)
1648 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001649 else if (strcmp(ivmode, "null") == 0)
1650 cc->iv_gen_ops = &crypt_iv_null_ops;
Milan Broz34745782011-01-13 19:59:55 +00001651 else if (strcmp(ivmode, "lmk") == 0) {
1652 cc->iv_gen_ops = &crypt_iv_lmk_ops;
Milan Brozed04d982013-10-28 23:21:04 +01001653 /*
1654 * Version 2 and 3 is recognised according
Milan Broz34745782011-01-13 19:59:55 +00001655 * to length of provided multi-key string.
1656 * If present (version 3), last key is used as IV seed.
Milan Brozed04d982013-10-28 23:21:04 +01001657 * All keys (including IV seed) are always the same size.
Milan Broz34745782011-01-13 19:59:55 +00001658 */
Milan Brozda31a072013-10-28 23:21:03 +01001659 if (cc->key_size % cc->key_parts) {
Milan Broz34745782011-01-13 19:59:55 +00001660 cc->key_parts++;
Milan Brozda31a072013-10-28 23:21:03 +01001661 cc->key_extra_size = cc->key_size / cc->key_parts;
1662 }
Milan Brozed04d982013-10-28 23:21:04 +01001663 } else if (strcmp(ivmode, "tcw") == 0) {
1664 cc->iv_gen_ops = &crypt_iv_tcw_ops;
1665 cc->key_parts += 2; /* IV + whitening */
1666 cc->key_extra_size = cc->iv_size + TCW_WHITENING_SIZE;
Milan Broz34745782011-01-13 19:59:55 +00001667 } else {
Milan Broz5ebaee62010-08-12 04:14:07 +01001668 ret = -EINVAL;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001669 ti->error = "Invalid IV mode";
Milan Broz28513fc2010-08-12 04:14:06 +01001670 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
Milan Brozda31a072013-10-28 23:21:03 +01001673 /* Initialize and set key */
1674 ret = crypt_set_key(cc, key);
1675 if (ret < 0) {
1676 ti->error = "Error decoding and setting key";
1677 goto bad;
1678 }
1679
Milan Broz28513fc2010-08-12 04:14:06 +01001680 /* Allocate IV */
1681 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1682 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1683 if (ret < 0) {
1684 ti->error = "Error creating IV";
1685 goto bad;
1686 }
Milan Brozb95bf2d2009-12-10 23:51:56 +00001687 }
1688
Milan Broz28513fc2010-08-12 04:14:06 +01001689 /* Initialize IV (set keys for ESSIV etc) */
1690 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1691 ret = cc->iv_gen_ops->init(cc);
1692 if (ret < 0) {
1693 ti->error = "Error initialising IV";
1694 goto bad;
1695 }
1696 }
1697
Milan Broz5ebaee62010-08-12 04:14:07 +01001698 ret = 0;
1699bad:
1700 kfree(cipher_api);
1701 return ret;
1702
1703bad_mem:
1704 ti->error = "Cannot allocate cipher strings";
1705 return -ENOMEM;
1706}
1707
1708/*
1709 * Construct an encryption mapping:
1710 * <cipher> <key> <iv_offset> <dev_path> <start>
1711 */
1712static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1713{
1714 struct crypt_config *cc;
Milan Broz772ae5f2011-08-02 12:32:08 +01001715 unsigned int key_size, opt_params;
Milan Broz5ebaee62010-08-12 04:14:07 +01001716 unsigned long long tmpll;
1717 int ret;
Mikulas Patockad49ec522014-08-28 11:09:31 -04001718 size_t iv_size_padding;
Milan Broz772ae5f2011-08-02 12:32:08 +01001719 struct dm_arg_set as;
1720 const char *opt_string;
Mikulas Patocka31998ef12012-03-28 18:41:26 +01001721 char dummy;
Milan Broz5ebaee62010-08-12 04:14:07 +01001722
Milan Broz772ae5f2011-08-02 12:32:08 +01001723 static struct dm_arg _args[] = {
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001724 {0, 3, "Invalid number of feature args"},
Milan Broz772ae5f2011-08-02 12:32:08 +01001725 };
1726
1727 if (argc < 5) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001728 ti->error = "Not enough arguments";
1729 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
1731
Milan Broz5ebaee62010-08-12 04:14:07 +01001732 key_size = strlen(argv[1]) >> 1;
1733
1734 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1735 if (!cc) {
1736 ti->error = "Cannot allocate encryption context";
1737 return -ENOMEM;
1738 }
Milan Broz69a8cfc2011-01-13 19:59:49 +00001739 cc->key_size = key_size;
Milan Broz5ebaee62010-08-12 04:14:07 +01001740
1741 ti->private = cc;
1742 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1743 if (ret < 0)
1744 goto bad;
1745
Milan Brozddd42ed2008-02-08 02:11:07 +00001746 cc->dmreq_start = sizeof(struct ablkcipher_request);
Andi Kleenc0297722011-01-13 19:59:53 +00001747 cc->dmreq_start += crypto_ablkcipher_reqsize(any_tfm(cc));
Mikulas Patockad49ec522014-08-28 11:09:31 -04001748 cc->dmreq_start = ALIGN(cc->dmreq_start, __alignof__(struct dm_crypt_request));
1749
1750 if (crypto_ablkcipher_alignmask(any_tfm(cc)) < CRYPTO_MINALIGN) {
1751 /* Allocate the padding exactly */
1752 iv_size_padding = -(cc->dmreq_start + sizeof(struct dm_crypt_request))
1753 & crypto_ablkcipher_alignmask(any_tfm(cc));
1754 } else {
1755 /*
1756 * If the cipher requires greater alignment than kmalloc
1757 * alignment, we don't know the exact position of the
1758 * initialization vector. We must assume worst case.
1759 */
1760 iv_size_padding = crypto_ablkcipher_alignmask(any_tfm(cc));
1761 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001762
Mikulas Patocka94f5e022015-02-13 08:25:26 -05001763 ret = -ENOMEM;
Milan Brozddd42ed2008-02-08 02:11:07 +00001764 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
Mikulas Patockad49ec522014-08-28 11:09:31 -04001765 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size);
Milan Brozddd42ed2008-02-08 02:11:07 +00001766 if (!cc->req_pool) {
1767 ti->error = "Cannot allocate crypt request mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001768 goto bad;
Milan Brozddd42ed2008-02-08 02:11:07 +00001769 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001770
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001771 cc->per_bio_data_size = ti->per_bio_data_size =
Mikulas Patockad49ec522014-08-28 11:09:31 -04001772 ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start +
1773 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size,
1774 ARCH_KMALLOC_MINALIGN);
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001775
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001776 cc->page_pool = mempool_create_page_pool(BIO_MAX_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001778 ti->error = "Cannot allocate page mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001779 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
Jens Axboebb799ca2008-12-10 15:35:05 +01001782 cc->bs = bioset_create(MIN_IOS, 0);
Milan Broz6a24c712006-10-03 01:15:40 -07001783 if (!cc->bs) {
1784 ti->error = "Cannot allocate crypt bioset";
Milan Broz28513fc2010-08-12 04:14:06 +01001785 goto bad;
Milan Broz6a24c712006-10-03 01:15:40 -07001786 }
1787
Mikulas Patocka7145c242015-02-13 08:24:41 -05001788 mutex_init(&cc->bio_alloc_lock);
1789
Milan Broz28513fc2010-08-12 04:14:06 +01001790 ret = -EINVAL;
Mikulas Patocka31998ef12012-03-28 18:41:26 +01001791 if (sscanf(argv[2], "%llu%c", &tmpll, &dummy) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001792 ti->error = "Invalid iv_offset sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001793 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001795 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Milan Broz28513fc2010-08-12 04:14:06 +01001797 if (dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev)) {
1798 ti->error = "Device lookup failed";
1799 goto bad;
1800 }
1801
Mikulas Patocka31998ef12012-03-28 18:41:26 +01001802 if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001803 ti->error = "Invalid device sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001804 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001806 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Milan Broz772ae5f2011-08-02 12:32:08 +01001808 argv += 5;
1809 argc -= 5;
1810
1811 /* Optional parameters */
1812 if (argc) {
1813 as.argc = argc;
1814 as.argv = argv;
1815
1816 ret = dm_read_arg_group(_args, &as, &opt_params, &ti->error);
1817 if (ret)
1818 goto bad;
1819
Wei Yongjun44c144f2015-04-16 22:00:50 -04001820 ret = -EINVAL;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001821 while (opt_params--) {
1822 opt_string = dm_shift_arg(&as);
1823 if (!opt_string) {
1824 ti->error = "Not enough feature arguments";
1825 goto bad;
1826 }
Milan Broz772ae5f2011-08-02 12:32:08 +01001827
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001828 if (!strcasecmp(opt_string, "allow_discards"))
1829 ti->num_discard_bios = 1;
1830
1831 else if (!strcasecmp(opt_string, "same_cpu_crypt"))
1832 set_bit(DM_CRYPT_SAME_CPU, &cc->flags);
1833
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001834 else if (!strcasecmp(opt_string, "submit_from_crypt_cpus"))
1835 set_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
1836
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001837 else {
1838 ti->error = "Invalid feature arguments";
1839 goto bad;
1840 }
Milan Broz772ae5f2011-08-02 12:32:08 +01001841 }
1842 }
1843
Milan Broz28513fc2010-08-12 04:14:06 +01001844 ret = -ENOMEM;
Tejun Heo670368a2013-07-30 08:40:21 -04001845 cc->io_queue = alloc_workqueue("kcryptd_io", WQ_MEM_RECLAIM, 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001846 if (!cc->io_queue) {
1847 ti->error = "Couldn't create kcryptd io queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001848 goto bad;
Milan Brozcabf08e2007-10-19 22:38:58 +01001849 }
1850
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001851 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
1852 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
1853 else
1854 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | WQ_UNBOUND,
1855 num_online_cpus());
Milan Brozcabf08e2007-10-19 22:38:58 +01001856 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001857 ti->error = "Couldn't create kcryptd queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001858 goto bad;
Milan Broz9934a8b2007-10-19 22:38:57 +01001859 }
1860
Mikulas Patockadc267622015-02-13 08:25:59 -05001861 init_waitqueue_head(&cc->write_thread_wait);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001862 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05001863
1864 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write");
1865 if (IS_ERR(cc->write_thread)) {
1866 ret = PTR_ERR(cc->write_thread);
1867 cc->write_thread = NULL;
1868 ti->error = "Couldn't spawn write thread";
1869 goto bad;
1870 }
1871 wake_up_process(cc->write_thread);
1872
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001873 ti->num_flush_bios = 1;
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01001874 ti->discard_zeroes_data_unsupported = true;
Milan Broz983c7db2011-09-25 23:26:21 +01001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return 0;
1877
Milan Broz28513fc2010-08-12 04:14:06 +01001878bad:
1879 crypt_dtr(ti);
1880 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001883static int crypt_map(struct dm_target *ti, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001885 struct dm_crypt_io *io;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001886 struct crypt_config *cc = ti->private;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001887
Milan Broz772ae5f2011-08-02 12:32:08 +01001888 /*
1889 * If bio is REQ_FLUSH or REQ_DISCARD, just bypass crypt queues.
1890 * - for REQ_FLUSH device-mapper core ensures that no IO is in-flight
1891 * - for REQ_DISCARD caller must use flush if IO ordering matters
1892 */
1893 if (unlikely(bio->bi_rw & (REQ_FLUSH | REQ_DISCARD))) {
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001894 bio->bi_bdev = cc->dev->bdev;
Milan Broz772ae5f2011-08-02 12:32:08 +01001895 if (bio_sectors(bio))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001896 bio->bi_iter.bi_sector = cc->start +
1897 dm_target_offset(ti, bio->bi_iter.bi_sector);
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001898 return DM_MAPIO_REMAPPED;
1899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001901 io = dm_per_bio_data(bio, cc->per_bio_data_size);
1902 crypt_io_init(io, cc, bio, dm_target_offset(ti, bio->bi_iter.bi_sector));
1903 io->ctx.req = (struct ablkcipher_request *)(io + 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001904
Milan Broz20c82532011-01-13 19:59:53 +00001905 if (bio_data_dir(io->base_bio) == READ) {
1906 if (kcryptd_io_read(io, GFP_NOWAIT))
Mikulas Patockadc267622015-02-13 08:25:59 -05001907 kcryptd_queue_read(io);
Milan Broz20c82532011-01-13 19:59:53 +00001908 } else
Milan Brozcabf08e2007-10-19 22:38:58 +01001909 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001911 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
Mikulas Patockafd7c092e2013-03-01 22:45:44 +00001914static void crypt_status(struct dm_target *ti, status_type_t type,
1915 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Milan Broz5ebaee62010-08-12 04:14:07 +01001917 struct crypt_config *cc = ti->private;
Mikulas Patockafd7c092e2013-03-01 22:45:44 +00001918 unsigned i, sz = 0;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001919 int num_feature_args = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 switch (type) {
1922 case STATUSTYPE_INFO:
1923 result[0] = '\0';
1924 break;
1925
1926 case STATUSTYPE_TABLE:
Milan Broz7dbcd132011-01-13 19:59:52 +00001927 DMEMIT("%s ", cc->cipher_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Mikulas Patockafd7c092e2013-03-01 22:45:44 +00001929 if (cc->key_size > 0)
1930 for (i = 0; i < cc->key_size; i++)
1931 DMEMIT("%02x", cc->key[i]);
1932 else
1933 DMEMIT("-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Andrew Morton4ee218c2006-03-27 01:17:48 -08001935 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
1936 cc->dev->name, (unsigned long long)cc->start);
Milan Broz772ae5f2011-08-02 12:32:08 +01001937
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001938 num_feature_args += !!ti->num_discard_bios;
1939 num_feature_args += test_bit(DM_CRYPT_SAME_CPU, &cc->flags);
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001940 num_feature_args += test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001941 if (num_feature_args) {
1942 DMEMIT(" %d", num_feature_args);
1943 if (ti->num_discard_bios)
1944 DMEMIT(" allow_discards");
1945 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
1946 DMEMIT(" same_cpu_crypt");
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001947 if (test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags))
1948 DMEMIT(" submit_from_crypt_cpus");
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001949 }
Milan Broz772ae5f2011-08-02 12:32:08 +01001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 break;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
Milan Broze48d4bb2006-10-03 01:15:37 -07001955static void crypt_postsuspend(struct dm_target *ti)
1956{
1957 struct crypt_config *cc = ti->private;
1958
1959 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1960}
1961
1962static int crypt_preresume(struct dm_target *ti)
1963{
1964 struct crypt_config *cc = ti->private;
1965
1966 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
1967 DMERR("aborting resume - crypt key is not set.");
1968 return -EAGAIN;
1969 }
1970
1971 return 0;
1972}
1973
1974static void crypt_resume(struct dm_target *ti)
1975{
1976 struct crypt_config *cc = ti->private;
1977
1978 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
1979}
1980
1981/* Message interface
1982 * key set <key>
1983 * key wipe
1984 */
1985static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
1986{
1987 struct crypt_config *cc = ti->private;
Milan Broz542da312009-12-10 23:51:57 +00001988 int ret = -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07001989
1990 if (argc < 2)
1991 goto error;
1992
Mike Snitzer498f0102011-08-02 12:32:04 +01001993 if (!strcasecmp(argv[0], "key")) {
Milan Broze48d4bb2006-10-03 01:15:37 -07001994 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
1995 DMWARN("not suspended during key manipulation.");
1996 return -EINVAL;
1997 }
Mike Snitzer498f0102011-08-02 12:32:04 +01001998 if (argc == 3 && !strcasecmp(argv[1], "set")) {
Milan Broz542da312009-12-10 23:51:57 +00001999 ret = crypt_set_key(cc, argv[2]);
2000 if (ret)
2001 return ret;
2002 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
2003 ret = cc->iv_gen_ops->init(cc);
2004 return ret;
2005 }
Mike Snitzer498f0102011-08-02 12:32:04 +01002006 if (argc == 2 && !strcasecmp(argv[1], "wipe")) {
Milan Broz542da312009-12-10 23:51:57 +00002007 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
2008 ret = cc->iv_gen_ops->wipe(cc);
2009 if (ret)
2010 return ret;
2011 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002012 return crypt_wipe_key(cc);
Milan Broz542da312009-12-10 23:51:57 +00002013 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002014 }
2015
2016error:
2017 DMWARN("unrecognised message received.");
2018 return -EINVAL;
2019}
2020
Milan Brozd41e26b2008-07-21 12:00:40 +01002021static int crypt_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2022 struct bio_vec *biovec, int max_size)
2023{
2024 struct crypt_config *cc = ti->private;
2025 struct request_queue *q = bdev_get_queue(cc->dev->bdev);
2026
2027 if (!q->merge_bvec_fn)
2028 return max_size;
2029
2030 bvm->bi_bdev = cc->dev->bdev;
Alasdair G Kergonb441a2622010-08-12 04:14:11 +01002031 bvm->bi_sector = cc->start + dm_target_offset(ti, bvm->bi_sector);
Milan Brozd41e26b2008-07-21 12:00:40 +01002032
2033 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2034}
2035
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002036static int crypt_iterate_devices(struct dm_target *ti,
2037 iterate_devices_callout_fn fn, void *data)
2038{
2039 struct crypt_config *cc = ti->private;
2040
Mike Snitzer5dea2712009-07-23 20:30:42 +01002041 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002042}
2043
Mike Snitzer839e3592015-09-09 21:34:51 -04002044static void crypt_io_hints(struct dm_target *ti, struct queue_limits *limits)
2045{
2046 /*
2047 * Unfortunate constraint that is required to avoid the potential
2048 * for exceeding underlying device's max_segments limits -- due to
2049 * crypt_alloc_buffer() possibly allocating pages for the encryption
2050 * bio that are not as physically contiguous as the original bio.
2051 */
2052 limits->max_segment_size = PAGE_SIZE;
2053}
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055static struct target_type crypt_target = {
2056 .name = "crypt",
Mike Snitzer839e3592015-09-09 21:34:51 -04002057 .version = {1, 14, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 .module = THIS_MODULE,
2059 .ctr = crypt_ctr,
2060 .dtr = crypt_dtr,
2061 .map = crypt_map,
2062 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07002063 .postsuspend = crypt_postsuspend,
2064 .preresume = crypt_preresume,
2065 .resume = crypt_resume,
2066 .message = crypt_message,
Milan Brozd41e26b2008-07-21 12:00:40 +01002067 .merge = crypt_merge,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002068 .iterate_devices = crypt_iterate_devices,
Mike Snitzer839e3592015-09-09 21:34:51 -04002069 .io_hints = crypt_io_hints,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070};
2071
2072static int __init dm_crypt_init(void)
2073{
2074 int r;
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 r = dm_register_target(&crypt_target);
Mikulas Patocka94f5e022015-02-13 08:25:26 -05002077 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002078 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 return r;
2081}
2082
2083static void __exit dm_crypt_exit(void)
2084{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002085 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
2088module_init(dm_crypt_init);
2089module_exit(dm_crypt_exit);
2090
Jana Saoutbf14299f2014-06-24 14:27:04 -04002091MODULE_AUTHOR("Jana Saout <jana@saout.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
2093MODULE_LICENSE("GPL");