blob: 45a1f9232dca1a2122844cbd630c50140095c54a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jana Saoutbf142992014-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 Broz54cea3f2015-05-15 17:00:25 +02004 * Copyright (C) 2006-2015 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>
Herbert Xubbdb23b2016-01-24 21:16:36 +080031#include <crypto/skcipher.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Mikulas Patocka586e80e2008-10-21 17:44:59 +010033#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Alasdair G Kergon72d94862006-06-26 00:27:35 -070035#define DM_MSG_PREFIX "crypt"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * context holding the current state of a multi-part conversion
39 */
40struct convert_context {
Milan Broz43d69032008-02-08 02:11:09 +000041 struct completion restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 struct bio *bio_in;
43 struct bio *bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -070044 struct bvec_iter iter_in;
45 struct bvec_iter iter_out;
Mikulas Patockac66029f2012-07-27 15:08:05 +010046 sector_t cc_sector;
Mikulas Patocka40b62292012-07-27 15:08:04 +010047 atomic_t cc_pending;
Herbert Xubbdb23b2016-01-24 21:16:36 +080048 struct skcipher_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Milan Broz53017032008-02-08 02:10:38 +000051/*
52 * per bio private data
53 */
54struct dm_crypt_io {
Alasdair G Kergon49a8a922012-07-27 15:08:05 +010055 struct crypt_config *cc;
Milan Broz53017032008-02-08 02:10:38 +000056 struct bio *base_bio;
57 struct work_struct work;
58
59 struct convert_context ctx;
60
Mikulas Patocka40b62292012-07-27 15:08:04 +010061 atomic_t io_pending;
Milan Broz53017032008-02-08 02:10:38 +000062 int error;
Milan Broz0c395b02008-02-08 02:10:54 +000063 sector_t sector;
Mikulas Patockadc267622015-02-13 08:25:59 -050064
Mikulas Patockab3c5fd32015-02-13 08:27:41 -050065 struct rb_node rb_node;
Mikulas Patocka298a9fa2014-03-28 15:51:55 -040066} CRYPTO_MINALIGN_ATTR;
Milan Broz53017032008-02-08 02:10:38 +000067
Milan Broz01482b72008-02-08 02:11:04 +000068struct dm_crypt_request {
Huang Yingb2174ee2009-03-16 17:44:33 +000069 struct convert_context *ctx;
Milan Broz01482b72008-02-08 02:11:04 +000070 struct scatterlist sg_in;
71 struct scatterlist sg_out;
Milan Broz2dc53272011-01-13 19:59:54 +000072 sector_t iv_sector;
Milan Broz01482b72008-02-08 02:11:04 +000073};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075struct crypt_config;
76
77struct crypt_iv_operations {
78 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010079 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 void (*dtr)(struct crypt_config *cc);
Milan Brozb95bf2d2009-12-10 23:51:56 +000081 int (*init)(struct crypt_config *cc);
Milan Broz542da312009-12-10 23:51:57 +000082 int (*wipe)(struct crypt_config *cc);
Milan Broz2dc53272011-01-13 19:59:54 +000083 int (*generator)(struct crypt_config *cc, u8 *iv,
84 struct dm_crypt_request *dmreq);
85 int (*post)(struct crypt_config *cc, u8 *iv,
86 struct dm_crypt_request *dmreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Milan Broz60473592009-12-10 23:51:55 +000089struct iv_essiv_private {
Herbert Xubbdb23b2016-01-24 21:16:36 +080090 struct crypto_ahash *hash_tfm;
Milan Brozb95bf2d2009-12-10 23:51:56 +000091 u8 *salt;
Milan Broz60473592009-12-10 23:51:55 +000092};
93
94struct iv_benbi_private {
95 int shift;
96};
97
Milan Broz34745782011-01-13 19:59:55 +000098#define LMK_SEED_SIZE 64 /* hash + 0 */
99struct iv_lmk_private {
100 struct crypto_shash *hash_tfm;
101 u8 *seed;
102};
103
Milan Brozed04d982013-10-28 23:21:04 +0100104#define TCW_WHITENING_SIZE 16
105struct iv_tcw_private {
106 struct crypto_shash *crc32_tfm;
107 u8 *iv_seed;
108 u8 *whitening;
109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * Crypt: maps a linear range of a block device
113 * and encrypts / decrypts at the same time.
114 */
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -0500115enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID,
Rabin Vincentf659b102016-09-21 16:22:29 +0200116 DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD };
Andi Kleenc0297722011-01-13 19:59:53 +0000117
Milan Brozc083ebe2017-03-16 15:39:44 +0100118enum cipher_flags {
119 CRYPT_IV_LARGE_SECTORS, /* Calculate IV from sector_size, not 512B sectors */
120};
121
Andi Kleenc0297722011-01-13 19:59:53 +0000122/*
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500123 * The fields in here must be read only after initialization.
Andi Kleenc0297722011-01-13 19:59:53 +0000124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125struct crypt_config {
126 struct dm_dev *dev;
127 sector_t start;
128
129 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000130 * pool for per bio private data, crypto requests and
131 * encryption requeusts/buffer pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
Milan Brozddd42ed2008-02-08 02:11:07 +0000133 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 mempool_t *page_pool;
Milan Broz6a24c712006-10-03 01:15:40 -0700135 struct bio_set *bs;
Mikulas Patocka7145c242015-02-13 08:24:41 -0500136 struct mutex bio_alloc_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Milan Brozcabf08e2007-10-19 22:38:58 +0100138 struct workqueue_struct *io_queue;
139 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -0700140
Mikulas Patockadc267622015-02-13 08:25:59 -0500141 struct task_struct *write_thread;
142 wait_queue_head_t write_thread_wait;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -0500143 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -0500144
Milan Broz5ebaee62010-08-12 04:14:07 +0100145 char *cipher;
Milan Broz7dbcd132011-01-13 19:59:52 +0000146 char *cipher_string;
Milan Broz5ebaee62010-08-12 04:14:07 +0100147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct crypt_iv_operations *iv_gen_ops;
Herbert Xu79066ad2006-12-05 13:41:52 -0800149 union {
Milan Broz60473592009-12-10 23:51:55 +0000150 struct iv_essiv_private essiv;
151 struct iv_benbi_private benbi;
Milan Broz34745782011-01-13 19:59:55 +0000152 struct iv_lmk_private lmk;
Milan Brozed04d982013-10-28 23:21:04 +0100153 struct iv_tcw_private tcw;
Herbert Xu79066ad2006-12-05 13:41:52 -0800154 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 sector_t iv_offset;
156 unsigned int iv_size;
Mikulas Patocka52ad0c42017-03-23 10:23:14 -0400157 unsigned short int sector_size;
158 unsigned char sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100160 /* ESSIV: struct crypto_cipher *essiv_tfm */
161 void *iv_private;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800162 struct crypto_skcipher **tfms;
Milan Brozd1f96422011-01-13 19:59:54 +0000163 unsigned tfms_count;
Milan Brozc083ebe2017-03-16 15:39:44 +0100164 unsigned long cipher_flags;
Andi Kleenc0297722011-01-13 19:59:53 +0000165
166 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000167 * Layout of each crypto request:
168 *
Herbert Xubbdb23b2016-01-24 21:16:36 +0800169 * struct skcipher_request
Milan Brozddd42ed2008-02-08 02:11:07 +0000170 * context
171 * padding
172 * struct dm_crypt_request
173 * padding
174 * IV
175 *
176 * The padding is added so that dm_crypt_request and the IV are
177 * correctly aligned.
178 */
179 unsigned int dmreq_start;
Milan Brozddd42ed2008-02-08 02:11:07 +0000180
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400181 unsigned int per_bio_data_size;
182
Milan Broze48d4bb2006-10-03 01:15:37 -0700183 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned int key_size;
Milan Brozda31a072013-10-28 23:21:03 +0100185 unsigned int key_parts; /* independent parts in key buffer */
186 unsigned int key_extra_size; /* additional keys length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 u8 key[0];
188};
189
Mikulas Patocka0a83df62016-07-15 17:30:20 -0400190#define MIN_IOS 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100192static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000193static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Milan Broz2dc53272011-01-13 19:59:54 +0000194static u8 *iv_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq);
Olaf Kirch027581f2007-05-09 02:32:52 -0700195
Andi Kleenc0297722011-01-13 19:59:53 +0000196/*
197 * Use this to access cipher attributes that are the same for each CPU.
198 */
Herbert Xubbdb23b2016-01-24 21:16:36 +0800199static struct crypto_skcipher *any_tfm(struct crypt_config *cc)
Andi Kleenc0297722011-01-13 19:59:53 +0000200{
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100201 return cc->tfms[0];
Andi Kleenc0297722011-01-13 19:59:53 +0000202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * Different IV generation algorithms:
206 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000207 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200208 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
Milan Broz61afef62009-12-10 23:52:25 +0000210 * plain64: the initial vector is the 64-bit little-endian version of the sector
211 * number, padded with zeros if necessary.
212 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000213 * essiv: "encrypted sector|salt initial vector", the sector number is
214 * encrypted with the bulk cipher using a salt as key. The salt
215 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
Rik Snel48527fa2006-09-03 08:56:39 +1000217 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
218 * (needed for LRW-32-AES and possible other narrow block modes)
219 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700220 * null: the initial vector is always zero. Provides compatibility with
221 * obsolete loop_fish2 devices. Do not use for new devices.
222 *
Milan Broz34745782011-01-13 19:59:55 +0000223 * lmk: Compatible implementation of the block chaining mode used
224 * by the Loop-AES block device encryption system
225 * designed by Jari Ruusu. See http://loop-aes.sourceforge.net/
226 * It operates on full 512 byte sectors and uses CBC
227 * with an IV derived from the sector number, the data and
228 * optionally extra IV seed.
229 * This means that after decryption the first block
230 * of sector must be tweaked according to decrypted data.
231 * Loop-AES can use three encryption schemes:
232 * version 1: is plain aes-cbc mode
233 * version 2: uses 64 multikey scheme with lmk IV generator
234 * version 3: the same as version 2 with additional IV seed
235 * (it uses 65 keys, last key is used as IV seed)
236 *
Milan Brozed04d982013-10-28 23:21:04 +0100237 * tcw: Compatible implementation of the block chaining mode used
238 * by the TrueCrypt device encryption system (prior to version 4.1).
Milan Broze44f23b2015-04-05 18:03:10 +0200239 * For more info see: https://gitlab.com/cryptsetup/cryptsetup/wikis/TrueCryptOnDiskFormat
Milan Brozed04d982013-10-28 23:21:04 +0100240 * It operates on full 512 byte sectors and uses CBC
241 * with an IV derived from initial key and the sector number.
242 * In addition, whitening value is applied on every sector, whitening
243 * is calculated from initial key, sector number and mixed using CRC32.
244 * Note that this encryption scheme is vulnerable to watermarking attacks
245 * and should be used for old compatible containers access only.
246 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * plumb: unimplemented, see:
248 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
249 */
250
Milan Broz2dc53272011-01-13 19:59:54 +0000251static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv,
252 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100255 *(__le32 *)iv = cpu_to_le32(dmreq->iv_sector & 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return 0;
258}
259
Milan Broz61afef62009-12-10 23:52:25 +0000260static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
Milan Broz2dc53272011-01-13 19:59:54 +0000261 struct dm_crypt_request *dmreq)
Milan Broz61afef62009-12-10 23:52:25 +0000262{
263 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100264 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Milan Broz61afef62009-12-10 23:52:25 +0000265
266 return 0;
267}
268
Milan Brozb95bf2d2009-12-10 23:51:56 +0000269/* Initialise ESSIV - compute salt but no local memory allocations */
270static int crypt_iv_essiv_init(struct crypt_config *cc)
271{
272 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800273 AHASH_REQUEST_ON_STACK(req, essiv->hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000274 struct scatterlist sg;
Andi Kleenc0297722011-01-13 19:59:53 +0000275 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100276 int err;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000277
278 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xubbdb23b2016-01-24 21:16:36 +0800279 ahash_request_set_tfm(req, essiv->hash_tfm);
280 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
281 ahash_request_set_crypt(req, &sg, essiv->salt, cc->key_size);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000282
Herbert Xubbdb23b2016-01-24 21:16:36 +0800283 err = crypto_ahash_digest(req);
284 ahash_request_zero(req);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000285 if (err)
286 return err;
287
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100288 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000289
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100290 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800291 crypto_ahash_digestsize(essiv->hash_tfm));
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100292 if (err)
293 return err;
Andi Kleenc0297722011-01-13 19:59:53 +0000294
295 return 0;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000296}
297
Milan Broz542da312009-12-10 23:51:57 +0000298/* Wipe salt and reset key derived from volume key */
299static int crypt_iv_essiv_wipe(struct crypt_config *cc)
300{
301 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800302 unsigned salt_size = crypto_ahash_digestsize(essiv->hash_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000303 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100304 int r, err = 0;
Milan Broz542da312009-12-10 23:51:57 +0000305
306 memset(essiv->salt, 0, salt_size);
307
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100308 essiv_tfm = cc->iv_private;
309 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
310 if (r)
311 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +0000312
313 return err;
314}
315
316/* Set up per cpu cipher state */
317static struct crypto_cipher *setup_essiv_cpu(struct crypt_config *cc,
318 struct dm_target *ti,
319 u8 *salt, unsigned saltsize)
320{
321 struct crypto_cipher *essiv_tfm;
322 int err;
323
324 /* Setup the essiv_tfm with the given salt */
325 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
326 if (IS_ERR(essiv_tfm)) {
327 ti->error = "Error allocating crypto tfm for ESSIV";
328 return essiv_tfm;
329 }
330
331 if (crypto_cipher_blocksize(essiv_tfm) !=
Herbert Xubbdb23b2016-01-24 21:16:36 +0800332 crypto_skcipher_ivsize(any_tfm(cc))) {
Andi Kleenc0297722011-01-13 19:59:53 +0000333 ti->error = "Block size of ESSIV cipher does "
334 "not match IV size of block cipher";
335 crypto_free_cipher(essiv_tfm);
336 return ERR_PTR(-EINVAL);
337 }
338
339 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
340 if (err) {
341 ti->error = "Failed to set key for ESSIV cipher";
342 crypto_free_cipher(essiv_tfm);
343 return ERR_PTR(err);
344 }
345
346 return essiv_tfm;
Milan Broz542da312009-12-10 23:51:57 +0000347}
348
Milan Broz60473592009-12-10 23:51:55 +0000349static void crypt_iv_essiv_dtr(struct crypt_config *cc)
350{
Andi Kleenc0297722011-01-13 19:59:53 +0000351 struct crypto_cipher *essiv_tfm;
Milan Broz60473592009-12-10 23:51:55 +0000352 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
353
Herbert Xubbdb23b2016-01-24 21:16:36 +0800354 crypto_free_ahash(essiv->hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000355 essiv->hash_tfm = NULL;
356
357 kzfree(essiv->salt);
358 essiv->salt = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +0000359
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100360 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000361
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100362 if (essiv_tfm)
363 crypto_free_cipher(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000364
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100365 cc->iv_private = NULL;
Milan Broz60473592009-12-10 23:51:55 +0000366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100369 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Milan Broz5861f1b2009-12-10 23:51:56 +0000371 struct crypto_cipher *essiv_tfm = NULL;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800372 struct crypto_ahash *hash_tfm = NULL;
Milan Broz5861f1b2009-12-10 23:51:56 +0000373 u8 *salt = NULL;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100374 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Milan Broz5861f1b2009-12-10 23:51:56 +0000376 if (!opts) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700377 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return -EINVAL;
379 }
380
Milan Brozb95bf2d2009-12-10 23:51:56 +0000381 /* Allocate hash algorithm */
Herbert Xubbdb23b2016-01-24 21:16:36 +0800382 hash_tfm = crypto_alloc_ahash(opts, 0, CRYPTO_ALG_ASYNC);
Herbert Xu35058682006-08-24 19:10:20 +1000383 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700384 ti->error = "Error initializing ESSIV hash";
Milan Broz5861f1b2009-12-10 23:51:56 +0000385 err = PTR_ERR(hash_tfm);
386 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Herbert Xubbdb23b2016-01-24 21:16:36 +0800389 salt = kzalloc(crypto_ahash_digestsize(hash_tfm), GFP_KERNEL);
Milan Broz5861f1b2009-12-10 23:51:56 +0000390 if (!salt) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700391 ti->error = "Error kmallocing salt storage in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000392 err = -ENOMEM;
393 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
Milan Brozb95bf2d2009-12-10 23:51:56 +0000396 cc->iv_gen_private.essiv.salt = salt;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000397 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
398
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100399 essiv_tfm = setup_essiv_cpu(cc, ti, salt,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800400 crypto_ahash_digestsize(hash_tfm));
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100401 if (IS_ERR(essiv_tfm)) {
402 crypt_iv_essiv_dtr(cc);
403 return PTR_ERR(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000404 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100405 cc->iv_private = essiv_tfm;
Andi Kleenc0297722011-01-13 19:59:53 +0000406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
Milan Broz5861f1b2009-12-10 23:51:56 +0000408
409bad:
Milan Broz5861f1b2009-12-10 23:51:56 +0000410 if (hash_tfm && !IS_ERR(hash_tfm))
Herbert Xubbdb23b2016-01-24 21:16:36 +0800411 crypto_free_ahash(hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000412 kfree(salt);
Milan Broz5861f1b2009-12-10 23:51:56 +0000413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Milan Broz2dc53272011-01-13 19:59:54 +0000416static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv,
417 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100419 struct crypto_cipher *essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100422 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Andi Kleenc0297722011-01-13 19:59:53 +0000423 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426}
427
Rik Snel48527fa2006-09-03 08:56:39 +1000428static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
429 const char *opts)
430{
Herbert Xubbdb23b2016-01-24 21:16:36 +0800431 unsigned bs = crypto_skcipher_blocksize(any_tfm(cc));
David Howellsf0d1b0b2006-12-08 02:37:49 -0800432 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000433
434 /* we need to calculate how far we must shift the sector count
435 * to get the cipher block count, we use this shift in _gen */
436
437 if (1 << log != bs) {
438 ti->error = "cypher blocksize is not a power of 2";
439 return -EINVAL;
440 }
441
442 if (log > 9) {
443 ti->error = "cypher blocksize is > 512";
444 return -EINVAL;
445 }
446
Milan Broz60473592009-12-10 23:51:55 +0000447 cc->iv_gen_private.benbi.shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000448
449 return 0;
450}
451
452static void crypt_iv_benbi_dtr(struct crypt_config *cc)
453{
Rik Snel48527fa2006-09-03 08:56:39 +1000454}
455
Milan Broz2dc53272011-01-13 19:59:54 +0000456static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv,
457 struct dm_crypt_request *dmreq)
Rik Snel48527fa2006-09-03 08:56:39 +1000458{
Herbert Xu79066ad2006-12-05 13:41:52 -0800459 __be64 val;
460
Rik Snel48527fa2006-09-03 08:56:39 +1000461 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800462
Milan Broz2dc53272011-01-13 19:59:54 +0000463 val = cpu_to_be64(((u64)dmreq->iv_sector << cc->iv_gen_private.benbi.shift) + 1);
Herbert Xu79066ad2006-12-05 13:41:52 -0800464 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 0;
467}
468
Milan Broz2dc53272011-01-13 19:59:54 +0000469static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv,
470 struct dm_crypt_request *dmreq)
Ludwig Nussel46b47732007-05-09 02:32:55 -0700471{
472 memset(iv, 0, cc->iv_size);
473
474 return 0;
475}
476
Milan Broz34745782011-01-13 19:59:55 +0000477static void crypt_iv_lmk_dtr(struct crypt_config *cc)
478{
479 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
480
481 if (lmk->hash_tfm && !IS_ERR(lmk->hash_tfm))
482 crypto_free_shash(lmk->hash_tfm);
483 lmk->hash_tfm = NULL;
484
485 kzfree(lmk->seed);
486 lmk->seed = NULL;
487}
488
489static int crypt_iv_lmk_ctr(struct crypt_config *cc, struct dm_target *ti,
490 const char *opts)
491{
492 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
493
Milan Brozc083ebe2017-03-16 15:39:44 +0100494 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
495 ti->error = "Unsupported sector size for LMK";
496 return -EINVAL;
497 }
498
Milan Broz34745782011-01-13 19:59:55 +0000499 lmk->hash_tfm = crypto_alloc_shash("md5", 0, 0);
500 if (IS_ERR(lmk->hash_tfm)) {
501 ti->error = "Error initializing LMK hash";
502 return PTR_ERR(lmk->hash_tfm);
503 }
504
505 /* No seed in LMK version 2 */
506 if (cc->key_parts == cc->tfms_count) {
507 lmk->seed = NULL;
508 return 0;
509 }
510
511 lmk->seed = kzalloc(LMK_SEED_SIZE, GFP_KERNEL);
512 if (!lmk->seed) {
513 crypt_iv_lmk_dtr(cc);
514 ti->error = "Error kmallocing seed storage in LMK";
515 return -ENOMEM;
516 }
517
518 return 0;
519}
520
521static int crypt_iv_lmk_init(struct crypt_config *cc)
522{
523 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
524 int subkey_size = cc->key_size / cc->key_parts;
525
526 /* LMK seed is on the position of LMK_KEYS + 1 key */
527 if (lmk->seed)
528 memcpy(lmk->seed, cc->key + (cc->tfms_count * subkey_size),
529 crypto_shash_digestsize(lmk->hash_tfm));
530
531 return 0;
532}
533
534static int crypt_iv_lmk_wipe(struct crypt_config *cc)
535{
536 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
537
538 if (lmk->seed)
539 memset(lmk->seed, 0, LMK_SEED_SIZE);
540
541 return 0;
542}
543
544static int crypt_iv_lmk_one(struct crypt_config *cc, u8 *iv,
545 struct dm_crypt_request *dmreq,
546 u8 *data)
547{
548 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200549 SHASH_DESC_ON_STACK(desc, lmk->hash_tfm);
Milan Broz34745782011-01-13 19:59:55 +0000550 struct md5_state md5state;
Milan Brozda31a072013-10-28 23:21:03 +0100551 __le32 buf[4];
Milan Broz34745782011-01-13 19:59:55 +0000552 int i, r;
553
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200554 desc->tfm = lmk->hash_tfm;
555 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Broz34745782011-01-13 19:59:55 +0000556
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200557 r = crypto_shash_init(desc);
Milan Broz34745782011-01-13 19:59:55 +0000558 if (r)
559 return r;
560
561 if (lmk->seed) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200562 r = crypto_shash_update(desc, lmk->seed, LMK_SEED_SIZE);
Milan Broz34745782011-01-13 19:59:55 +0000563 if (r)
564 return r;
565 }
566
567 /* Sector is always 512B, block size 16, add data of blocks 1-31 */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200568 r = crypto_shash_update(desc, data + 16, 16 * 31);
Milan Broz34745782011-01-13 19:59:55 +0000569 if (r)
570 return r;
571
572 /* Sector is cropped to 56 bits here */
573 buf[0] = cpu_to_le32(dmreq->iv_sector & 0xFFFFFFFF);
574 buf[1] = cpu_to_le32((((u64)dmreq->iv_sector >> 32) & 0x00FFFFFF) | 0x80000000);
575 buf[2] = cpu_to_le32(4024);
576 buf[3] = 0;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200577 r = crypto_shash_update(desc, (u8 *)buf, sizeof(buf));
Milan Broz34745782011-01-13 19:59:55 +0000578 if (r)
579 return r;
580
581 /* No MD5 padding here */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200582 r = crypto_shash_export(desc, &md5state);
Milan Broz34745782011-01-13 19:59:55 +0000583 if (r)
584 return r;
585
586 for (i = 0; i < MD5_HASH_WORDS; i++)
587 __cpu_to_le32s(&md5state.hash[i]);
588 memcpy(iv, &md5state.hash, cc->iv_size);
589
590 return 0;
591}
592
593static int crypt_iv_lmk_gen(struct crypt_config *cc, u8 *iv,
594 struct dm_crypt_request *dmreq)
595{
596 u8 *src;
597 int r = 0;
598
599 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE) {
Cong Wangc2e022c2011-11-28 13:26:02 +0800600 src = kmap_atomic(sg_page(&dmreq->sg_in));
Milan Broz34745782011-01-13 19:59:55 +0000601 r = crypt_iv_lmk_one(cc, iv, dmreq, src + dmreq->sg_in.offset);
Cong Wangc2e022c2011-11-28 13:26:02 +0800602 kunmap_atomic(src);
Milan Broz34745782011-01-13 19:59:55 +0000603 } else
604 memset(iv, 0, cc->iv_size);
605
606 return r;
607}
608
609static int crypt_iv_lmk_post(struct crypt_config *cc, u8 *iv,
610 struct dm_crypt_request *dmreq)
611{
612 u8 *dst;
613 int r;
614
615 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE)
616 return 0;
617
Cong Wangc2e022c2011-11-28 13:26:02 +0800618 dst = kmap_atomic(sg_page(&dmreq->sg_out));
Milan Broz34745782011-01-13 19:59:55 +0000619 r = crypt_iv_lmk_one(cc, iv, dmreq, dst + dmreq->sg_out.offset);
620
621 /* Tweak the first block of plaintext sector */
622 if (!r)
623 crypto_xor(dst + dmreq->sg_out.offset, iv, cc->iv_size);
624
Cong Wangc2e022c2011-11-28 13:26:02 +0800625 kunmap_atomic(dst);
Milan Broz34745782011-01-13 19:59:55 +0000626 return r;
627}
628
Milan Brozed04d982013-10-28 23:21:04 +0100629static void crypt_iv_tcw_dtr(struct crypt_config *cc)
630{
631 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
632
633 kzfree(tcw->iv_seed);
634 tcw->iv_seed = NULL;
635 kzfree(tcw->whitening);
636 tcw->whitening = NULL;
637
638 if (tcw->crc32_tfm && !IS_ERR(tcw->crc32_tfm))
639 crypto_free_shash(tcw->crc32_tfm);
640 tcw->crc32_tfm = NULL;
641}
642
643static int crypt_iv_tcw_ctr(struct crypt_config *cc, struct dm_target *ti,
644 const char *opts)
645{
646 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
647
Milan Brozc083ebe2017-03-16 15:39:44 +0100648 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
649 ti->error = "Unsupported sector size for TCW";
650 return -EINVAL;
651 }
652
Milan Brozed04d982013-10-28 23:21:04 +0100653 if (cc->key_size <= (cc->iv_size + TCW_WHITENING_SIZE)) {
654 ti->error = "Wrong key size for TCW";
655 return -EINVAL;
656 }
657
658 tcw->crc32_tfm = crypto_alloc_shash("crc32", 0, 0);
659 if (IS_ERR(tcw->crc32_tfm)) {
660 ti->error = "Error initializing CRC32 in TCW";
661 return PTR_ERR(tcw->crc32_tfm);
662 }
663
664 tcw->iv_seed = kzalloc(cc->iv_size, GFP_KERNEL);
665 tcw->whitening = kzalloc(TCW_WHITENING_SIZE, GFP_KERNEL);
666 if (!tcw->iv_seed || !tcw->whitening) {
667 crypt_iv_tcw_dtr(cc);
668 ti->error = "Error allocating seed storage in TCW";
669 return -ENOMEM;
670 }
671
672 return 0;
673}
674
675static int crypt_iv_tcw_init(struct crypt_config *cc)
676{
677 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
678 int key_offset = cc->key_size - cc->iv_size - TCW_WHITENING_SIZE;
679
680 memcpy(tcw->iv_seed, &cc->key[key_offset], cc->iv_size);
681 memcpy(tcw->whitening, &cc->key[key_offset + cc->iv_size],
682 TCW_WHITENING_SIZE);
683
684 return 0;
685}
686
687static int crypt_iv_tcw_wipe(struct crypt_config *cc)
688{
689 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
690
691 memset(tcw->iv_seed, 0, cc->iv_size);
692 memset(tcw->whitening, 0, TCW_WHITENING_SIZE);
693
694 return 0;
695}
696
697static int crypt_iv_tcw_whitening(struct crypt_config *cc,
698 struct dm_crypt_request *dmreq,
699 u8 *data)
700{
701 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
Bart Van Assche350b5392016-06-28 16:32:32 +0200702 __le64 sector = cpu_to_le64(dmreq->iv_sector);
Milan Brozed04d982013-10-28 23:21:04 +0100703 u8 buf[TCW_WHITENING_SIZE];
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200704 SHASH_DESC_ON_STACK(desc, tcw->crc32_tfm);
Milan Brozed04d982013-10-28 23:21:04 +0100705 int i, r;
706
707 /* xor whitening with sector number */
708 memcpy(buf, tcw->whitening, TCW_WHITENING_SIZE);
709 crypto_xor(buf, (u8 *)&sector, 8);
710 crypto_xor(&buf[8], (u8 *)&sector, 8);
711
712 /* calculate crc32 for every 32bit part and xor it */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200713 desc->tfm = tcw->crc32_tfm;
714 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Brozed04d982013-10-28 23:21:04 +0100715 for (i = 0; i < 4; i++) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200716 r = crypto_shash_init(desc);
Milan Brozed04d982013-10-28 23:21:04 +0100717 if (r)
718 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200719 r = crypto_shash_update(desc, &buf[i * 4], 4);
Milan Brozed04d982013-10-28 23:21:04 +0100720 if (r)
721 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200722 r = crypto_shash_final(desc, &buf[i * 4]);
Milan Brozed04d982013-10-28 23:21:04 +0100723 if (r)
724 goto out;
725 }
726 crypto_xor(&buf[0], &buf[12], 4);
727 crypto_xor(&buf[4], &buf[8], 4);
728
729 /* apply whitening (8 bytes) to whole sector */
730 for (i = 0; i < ((1 << SECTOR_SHIFT) / 8); i++)
731 crypto_xor(data + i * 8, buf, 8);
732out:
Milan Broz1a71d6f2014-11-22 09:36:04 +0100733 memzero_explicit(buf, sizeof(buf));
Milan Brozed04d982013-10-28 23:21:04 +0100734 return r;
735}
736
737static int crypt_iv_tcw_gen(struct crypt_config *cc, u8 *iv,
738 struct dm_crypt_request *dmreq)
739{
740 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
Bart Van Assche350b5392016-06-28 16:32:32 +0200741 __le64 sector = cpu_to_le64(dmreq->iv_sector);
Milan Brozed04d982013-10-28 23:21:04 +0100742 u8 *src;
743 int r = 0;
744
745 /* Remove whitening from ciphertext */
746 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE) {
747 src = kmap_atomic(sg_page(&dmreq->sg_in));
748 r = crypt_iv_tcw_whitening(cc, dmreq, src + dmreq->sg_in.offset);
749 kunmap_atomic(src);
750 }
751
752 /* Calculate IV */
753 memcpy(iv, tcw->iv_seed, cc->iv_size);
754 crypto_xor(iv, (u8 *)&sector, 8);
755 if (cc->iv_size > 8)
756 crypto_xor(&iv[8], (u8 *)&sector, cc->iv_size - 8);
757
758 return r;
759}
760
761static int crypt_iv_tcw_post(struct crypt_config *cc, u8 *iv,
762 struct dm_crypt_request *dmreq)
763{
764 u8 *dst;
765 int r;
766
767 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE)
768 return 0;
769
770 /* Apply whitening on ciphertext */
771 dst = kmap_atomic(sg_page(&dmreq->sg_out));
772 r = crypt_iv_tcw_whitening(cc, dmreq, dst + dmreq->sg_out.offset);
773 kunmap_atomic(dst);
774
775 return r;
776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static struct crypt_iv_operations crypt_iv_plain_ops = {
779 .generator = crypt_iv_plain_gen
780};
781
Milan Broz61afef62009-12-10 23:52:25 +0000782static struct crypt_iv_operations crypt_iv_plain64_ops = {
783 .generator = crypt_iv_plain64_gen
784};
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786static struct crypt_iv_operations crypt_iv_essiv_ops = {
787 .ctr = crypt_iv_essiv_ctr,
788 .dtr = crypt_iv_essiv_dtr,
Milan Brozb95bf2d2009-12-10 23:51:56 +0000789 .init = crypt_iv_essiv_init,
Milan Broz542da312009-12-10 23:51:57 +0000790 .wipe = crypt_iv_essiv_wipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 .generator = crypt_iv_essiv_gen
792};
793
Rik Snel48527fa2006-09-03 08:56:39 +1000794static struct crypt_iv_operations crypt_iv_benbi_ops = {
795 .ctr = crypt_iv_benbi_ctr,
796 .dtr = crypt_iv_benbi_dtr,
797 .generator = crypt_iv_benbi_gen
798};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Ludwig Nussel46b47732007-05-09 02:32:55 -0700800static struct crypt_iv_operations crypt_iv_null_ops = {
801 .generator = crypt_iv_null_gen
802};
803
Milan Broz34745782011-01-13 19:59:55 +0000804static struct crypt_iv_operations crypt_iv_lmk_ops = {
805 .ctr = crypt_iv_lmk_ctr,
806 .dtr = crypt_iv_lmk_dtr,
807 .init = crypt_iv_lmk_init,
808 .wipe = crypt_iv_lmk_wipe,
809 .generator = crypt_iv_lmk_gen,
810 .post = crypt_iv_lmk_post
811};
812
Milan Brozed04d982013-10-28 23:21:04 +0100813static struct crypt_iv_operations crypt_iv_tcw_ops = {
814 .ctr = crypt_iv_tcw_ctr,
815 .dtr = crypt_iv_tcw_dtr,
816 .init = crypt_iv_tcw_init,
817 .wipe = crypt_iv_tcw_wipe,
818 .generator = crypt_iv_tcw_gen,
819 .post = crypt_iv_tcw_post
820};
821
Milan Brozd469f842007-10-19 22:42:37 +0100822static void crypt_convert_init(struct crypt_config *cc,
823 struct convert_context *ctx,
824 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000825 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 ctx->bio_in = bio_in;
828 ctx->bio_out = bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700829 if (bio_in)
830 ctx->iter_in = bio_in->bi_iter;
831 if (bio_out)
832 ctx->iter_out = bio_out->bi_iter;
Mikulas Patockac66029f2012-07-27 15:08:05 +0100833 ctx->cc_sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +0000834 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Huang Yingb2174ee2009-03-16 17:44:33 +0000837static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800838 struct skcipher_request *req)
Huang Yingb2174ee2009-03-16 17:44:33 +0000839{
840 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
841}
842
Herbert Xubbdb23b2016-01-24 21:16:36 +0800843static struct skcipher_request *req_of_dmreq(struct crypt_config *cc,
Huang Yingb2174ee2009-03-16 17:44:33 +0000844 struct dm_crypt_request *dmreq)
845{
Herbert Xubbdb23b2016-01-24 21:16:36 +0800846 return (struct skcipher_request *)((char *)dmreq - cc->dmreq_start);
Huang Yingb2174ee2009-03-16 17:44:33 +0000847}
848
Milan Broz2dc53272011-01-13 19:59:54 +0000849static u8 *iv_of_dmreq(struct crypt_config *cc,
850 struct dm_crypt_request *dmreq)
851{
852 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
Herbert Xubbdb23b2016-01-24 21:16:36 +0800853 crypto_skcipher_alignmask(any_tfm(cc)) + 1);
Milan Broz2dc53272011-01-13 19:59:54 +0000854}
855
Milan Broz01482b72008-02-08 02:11:04 +0000856static int crypt_convert_block(struct crypt_config *cc,
Milan Broz3a7f6c92008-02-08 02:11:14 +0000857 struct convert_context *ctx,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800858 struct skcipher_request *req)
Milan Broz01482b72008-02-08 02:11:04 +0000859{
Kent Overstreet003b5c52013-10-11 15:45:43 -0700860 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
861 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000862 struct dm_crypt_request *dmreq;
863 u8 *iv;
Mikulas Patocka40b62292012-07-27 15:08:04 +0100864 int r;
Milan Broz01482b72008-02-08 02:11:04 +0000865
Milan Brozc083ebe2017-03-16 15:39:44 +0100866 /* Reject unexpected unaligned bio. */
Mikulas Patocka946db242017-11-07 10:35:57 -0500867 if (unlikely(bv_in.bv_len & (cc->sector_size - 1)))
Milan Brozc083ebe2017-03-16 15:39:44 +0100868 return -EIO;
869
Huang Yingb2174ee2009-03-16 17:44:33 +0000870 dmreq = dmreq_of_req(cc, req);
Milan Broz2dc53272011-01-13 19:59:54 +0000871 iv = iv_of_dmreq(cc, dmreq);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000872
Mikulas Patockac66029f2012-07-27 15:08:05 +0100873 dmreq->iv_sector = ctx->cc_sector;
Milan Brozc083ebe2017-03-16 15:39:44 +0100874 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
Mikulas Patocka52ad0c42017-03-23 10:23:14 -0400875 dmreq->iv_sector >>= cc->sector_shift;
Huang Yingb2174ee2009-03-16 17:44:33 +0000876 dmreq->ctx = ctx;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000877 sg_init_table(&dmreq->sg_in, 1);
Milan Brozc083ebe2017-03-16 15:39:44 +0100878 sg_set_page(&dmreq->sg_in, bv_in.bv_page, cc->sector_size,
Kent Overstreet003b5c52013-10-11 15:45:43 -0700879 bv_in.bv_offset);
Milan Broz01482b72008-02-08 02:11:04 +0000880
Milan Broz3a7f6c92008-02-08 02:11:14 +0000881 sg_init_table(&dmreq->sg_out, 1);
Milan Brozc083ebe2017-03-16 15:39:44 +0100882 sg_set_page(&dmreq->sg_out, bv_out.bv_page, cc->sector_size,
Kent Overstreet003b5c52013-10-11 15:45:43 -0700883 bv_out.bv_offset);
Milan Broz01482b72008-02-08 02:11:04 +0000884
Milan Brozc083ebe2017-03-16 15:39:44 +0100885 bio_advance_iter(ctx->bio_in, &ctx->iter_in, cc->sector_size);
886 bio_advance_iter(ctx->bio_out, &ctx->iter_out, cc->sector_size);
Milan Broz01482b72008-02-08 02:11:04 +0000887
Milan Broz3a7f6c92008-02-08 02:11:14 +0000888 if (cc->iv_gen_ops) {
Milan Broz2dc53272011-01-13 19:59:54 +0000889 r = cc->iv_gen_ops->generator(cc, iv, dmreq);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000890 if (r < 0)
891 return r;
892 }
893
Herbert Xubbdb23b2016-01-24 21:16:36 +0800894 skcipher_request_set_crypt(req, &dmreq->sg_in, &dmreq->sg_out,
Milan Brozc083ebe2017-03-16 15:39:44 +0100895 cc->sector_size, iv);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000896
897 if (bio_data_dir(ctx->bio_in) == WRITE)
Herbert Xubbdb23b2016-01-24 21:16:36 +0800898 r = crypto_skcipher_encrypt(req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000899 else
Herbert Xubbdb23b2016-01-24 21:16:36 +0800900 r = crypto_skcipher_decrypt(req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000901
Milan Broz2dc53272011-01-13 19:59:54 +0000902 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
903 r = cc->iv_gen_ops->post(cc, iv, dmreq);
904
Milan Broz3a7f6c92008-02-08 02:11:14 +0000905 return r;
Milan Broz01482b72008-02-08 02:11:04 +0000906}
907
Milan Broz95497a92008-02-08 02:11:12 +0000908static void kcryptd_async_done(struct crypto_async_request *async_req,
909 int error);
Andi Kleenc0297722011-01-13 19:59:53 +0000910
Milan Brozddd42ed2008-02-08 02:11:07 +0000911static void crypt_alloc_req(struct crypt_config *cc,
912 struct convert_context *ctx)
913{
Mikulas Patockac66029f2012-07-27 15:08:05 +0100914 unsigned key_index = ctx->cc_sector & (cc->tfms_count - 1);
Andi Kleenc0297722011-01-13 19:59:53 +0000915
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500916 if (!ctx->req)
917 ctx->req = mempool_alloc(cc->req_pool, GFP_NOIO);
Andi Kleenc0297722011-01-13 19:59:53 +0000918
Herbert Xubbdb23b2016-01-24 21:16:36 +0800919 skcipher_request_set_tfm(ctx->req, cc->tfms[key_index]);
Milan Broz54cea3f2015-05-15 17:00:25 +0200920
921 /*
922 * Use REQ_MAY_BACKLOG so a cipher driver internally backlogs
923 * requests if driver request queue is full.
924 */
Herbert Xubbdb23b2016-01-24 21:16:36 +0800925 skcipher_request_set_callback(ctx->req,
Andi Kleenc0297722011-01-13 19:59:53 +0000926 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500927 kcryptd_async_done, dmreq_of_req(cc, ctx->req));
Milan Brozddd42ed2008-02-08 02:11:07 +0000928}
929
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400930static void crypt_free_req(struct crypt_config *cc,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800931 struct skcipher_request *req, struct bio *base_bio)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400932{
933 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
934
Herbert Xubbdb23b2016-01-24 21:16:36 +0800935 if ((struct skcipher_request *)(io + 1) != req)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400936 mempool_free(req, cc->req_pool);
937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * Encrypt / decrypt data from one bio to another one (can be the same one)
941 */
942static int crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +0100943 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Mikulas Patocka52ad0c42017-03-23 10:23:14 -0400945 unsigned int sector_step = cc->sector_size >> SECTOR_SHIFT;
Milan Broz3f1e9072008-03-28 14:16:07 -0700946 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Mikulas Patocka40b62292012-07-27 15:08:04 +0100948 atomic_set(&ctx->cc_pending, 1);
Milan Brozc8081612008-10-10 13:37:08 +0100949
Kent Overstreet003b5c52013-10-11 15:45:43 -0700950 while (ctx->iter_in.bi_size && ctx->iter_out.bi_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Milan Broz3a7f6c92008-02-08 02:11:14 +0000952 crypt_alloc_req(cc, ctx);
Mikulas Patocka40b62292012-07-27 15:08:04 +0100953 atomic_inc(&ctx->cc_pending);
Milan Broz3f1e9072008-03-28 14:16:07 -0700954
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500955 r = crypt_convert_block(cc, ctx, ctx->req);
Milan Broz3a7f6c92008-02-08 02:11:14 +0000956
957 switch (r) {
Milan Broz54cea3f2015-05-15 17:00:25 +0200958 /*
959 * The request was queued by a crypto driver
960 * but the driver request queue is full, let's wait.
961 */
Milan Broz3a7f6c92008-02-08 02:11:14 +0000962 case -EBUSY:
963 wait_for_completion(&ctx->restart);
Wolfram Sang16735d02013-11-14 14:32:02 -0800964 reinit_completion(&ctx->restart);
Milan Broz54cea3f2015-05-15 17:00:25 +0200965 /* fall through */
966 /*
967 * The request is queued and processed asynchronously,
968 * completion function kcryptd_async_done() will be called.
969 */
Rabin Vincentc0403ec2015-05-05 15:15:56 +0200970 case -EINPROGRESS:
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500971 ctx->req = NULL;
Milan Brozc083ebe2017-03-16 15:39:44 +0100972 ctx->cc_sector += sector_step;
Milan Broz3a7f6c92008-02-08 02:11:14 +0000973 continue;
Milan Broz54cea3f2015-05-15 17:00:25 +0200974 /*
975 * The request was already processed (synchronously).
976 */
Milan Broz3f1e9072008-03-28 14:16:07 -0700977 case 0:
Mikulas Patocka40b62292012-07-27 15:08:04 +0100978 atomic_dec(&ctx->cc_pending);
Milan Brozc083ebe2017-03-16 15:39:44 +0100979 ctx->cc_sector += sector_step;
Milan Brozc7f1b202008-07-02 09:34:28 +0100980 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -0700981 continue;
982
Milan Broz54cea3f2015-05-15 17:00:25 +0200983 /* There was an error while processing the request. */
Milan Broz3f1e9072008-03-28 14:16:07 -0700984 default:
Mikulas Patocka40b62292012-07-27 15:08:04 +0100985 atomic_dec(&ctx->cc_pending);
Milan Broz3f1e9072008-03-28 14:16:07 -0700986 return r;
987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Milan Broz3f1e9072008-03-28 14:16:07 -0700990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -0500993static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/*
996 * Generate a new unfragmented bio with the given size
Mike Snitzer586b2862015-09-09 21:34:51 -0400997 * This should never violate the device limitations (but only because
998 * max_segment_size is being constrained to PAGE_SIZE).
Mikulas Patocka7145c242015-02-13 08:24:41 -0500999 *
1000 * This function may be called concurrently. If we allocate from the mempool
1001 * concurrently, there is a possibility of deadlock. For example, if we have
1002 * mempool of 256 pages, two processes, each wanting 256, pages allocate from
1003 * the mempool concurrently, it may deadlock in a situation where both processes
1004 * have allocated 128 pages and the mempool is exhausted.
1005 *
1006 * In order to avoid this scenario we allocate the pages under a mutex.
1007 *
1008 * In order to not degrade performance with excessive locking, we try
1009 * non-blocking allocations without a mutex first but on failure we fallback
1010 * to blocking allocations with a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 */
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001012static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001014 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001015 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Mikulas Patocka7145c242015-02-13 08:24:41 -05001017 gfp_t gfp_mask = GFP_NOWAIT | __GFP_HIGHMEM;
1018 unsigned i, len, remaining_size;
Milan Broz91e10622007-12-13 14:16:10 +00001019 struct page *page;
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001020 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Mikulas Patocka7145c242015-02-13 08:24:41 -05001022retry:
Mel Gormand0164ad2015-11-06 16:28:21 -08001023 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
Mikulas Patocka7145c242015-02-13 08:24:41 -05001024 mutex_lock(&cc->bio_alloc_lock);
1025
Olaf Kirch2f9941b2007-05-09 02:32:53 -07001026 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -07001027 if (!clone)
Mikulas Patocka7145c242015-02-13 08:24:41 -05001028 goto return_clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Olaf Kirch027581f2007-05-09 02:32:52 -07001030 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -07001031
Mikulas Patocka7145c242015-02-13 08:24:41 -05001032 remaining_size = size;
1033
Olaf Kirchf97380b2007-05-09 02:32:54 -07001034 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +00001035 page = mempool_alloc(cc->page_pool, gfp_mask);
Mikulas Patocka7145c242015-02-13 08:24:41 -05001036 if (!page) {
1037 crypt_free_buffer_pages(cc, clone);
1038 bio_put(clone);
Mel Gormand0164ad2015-11-06 16:28:21 -08001039 gfp_mask |= __GFP_DIRECT_RECLAIM;
Mikulas Patocka7145c242015-02-13 08:24:41 -05001040 goto retry;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Mikulas Patocka7145c242015-02-13 08:24:41 -05001043 len = (remaining_size > PAGE_SIZE) ? PAGE_SIZE : remaining_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001045 bvec = &clone->bi_io_vec[clone->bi_vcnt++];
1046 bvec->bv_page = page;
1047 bvec->bv_len = len;
1048 bvec->bv_offset = 0;
1049
1050 clone->bi_iter.bi_size += len;
Milan Broz91e10622007-12-13 14:16:10 +00001051
Mikulas Patocka7145c242015-02-13 08:24:41 -05001052 remaining_size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Mikulas Patocka7145c242015-02-13 08:24:41 -05001055return_clone:
Mel Gormand0164ad2015-11-06 16:28:21 -08001056 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
Mikulas Patocka7145c242015-02-13 08:24:41 -05001057 mutex_unlock(&cc->bio_alloc_lock);
1058
Milan Broz8b004452006-10-03 01:15:37 -07001059 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Neil Brown644bd2f2007-10-16 13:48:46 +02001062static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Neil Brown644bd2f2007-10-16 13:48:46 +02001064 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct bio_vec *bv;
1066
Kent Overstreetcb34e052012-09-05 15:22:02 -07001067 bio_for_each_segment_all(bv, clone, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 BUG_ON(!bv->bv_page);
1069 mempool_free(bv->bv_page, cc->page_pool);
1070 bv->bv_page = NULL;
1071 }
1072}
1073
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001074static void crypt_io_init(struct dm_crypt_io *io, struct crypt_config *cc,
1075 struct bio *bio, sector_t sector)
Milan Brozdc440d1e2008-10-10 13:37:03 +01001076{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001077 io->cc = cc;
Milan Brozdc440d1e2008-10-10 13:37:03 +01001078 io->base_bio = bio;
1079 io->sector = sector;
1080 io->error = 0;
Mikulas Patocka610f2de2014-02-20 18:01:01 -05001081 io->ctx.req = NULL;
Mikulas Patocka40b62292012-07-27 15:08:04 +01001082 atomic_set(&io->io_pending, 0);
Milan Brozdc440d1e2008-10-10 13:37:03 +01001083}
1084
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001085static void crypt_inc_pending(struct dm_crypt_io *io)
1086{
Mikulas Patocka40b62292012-07-27 15:08:04 +01001087 atomic_inc(&io->io_pending);
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001088}
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/*
1091 * One of the bios was finished. Check for completion of
1092 * the whole request and correctly clean up the buffer.
1093 */
Milan Broz5742fd72008-02-08 02:10:43 +00001094static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001096 struct crypt_config *cc = io->cc;
Milan Brozb35f8ca2009-03-16 17:44:36 +00001097 struct bio *base_bio = io->base_bio;
Milan Brozb35f8ca2009-03-16 17:44:36 +00001098 int error = io->error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Mikulas Patocka40b62292012-07-27 15:08:04 +01001100 if (!atomic_dec_and_test(&io->io_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return;
1102
Mikulas Patocka610f2de2014-02-20 18:01:01 -05001103 if (io->ctx.req)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001104 crypt_free_req(cc, io->ctx.req, base_bio);
Milan Brozb35f8ca2009-03-16 17:44:36 +00001105
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001106 base_bio->bi_error = error;
1107 bio_endio(base_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110/*
Milan Brozcabf08e2007-10-19 22:38:58 +01001111 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 *
1113 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -07001114 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +01001115 *
1116 * kcryptd performs the actual encryption or decryption.
1117 *
1118 * kcryptd_io performs the IO submission.
1119 *
1120 * They must be separated as otherwise the final stages could be
1121 * starved by new requests which can block in the first stages due
1122 * to memory allocation.
Andi Kleenc0297722011-01-13 19:59:53 +00001123 *
1124 * The work is done per CPU global for all dm-crypt instances.
1125 * They should not depend on each other and do not block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001127static void crypt_endio(struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -07001128{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001129 struct dm_crypt_io *io = clone->bi_private;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001130 struct crypt_config *cc = io->cc;
Milan Brozee7a4912008-02-08 02:10:46 +00001131 unsigned rw = bio_data_dir(clone);
Sasha Levin9b81c842015-08-10 19:05:18 -04001132 int error;
Milan Broz8b004452006-10-03 01:15:37 -07001133
1134 /*
NeilBrown6712ecf2007-09-27 12:47:43 +02001135 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -07001136 */
Milan Brozee7a4912008-02-08 02:10:46 +00001137 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +02001138 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +00001139
Sasha Levin9b81c842015-08-10 19:05:18 -04001140 error = clone->bi_error;
Milan Brozee7a4912008-02-08 02:10:46 +00001141 bio_put(clone);
1142
Sasha Levin9b81c842015-08-10 19:05:18 -04001143 if (rw == READ && !error) {
Milan Brozee7a4912008-02-08 02:10:46 +00001144 kcryptd_queue_crypt(io);
1145 return;
NeilBrown6712ecf2007-09-27 12:47:43 +02001146 }
Milan Broz8b004452006-10-03 01:15:37 -07001147
Sasha Levin9b81c842015-08-10 19:05:18 -04001148 if (unlikely(error))
1149 io->error = error;
Milan Broz5742fd72008-02-08 02:10:43 +00001150
1151 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001152}
1153
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001154static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -07001155{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001156 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001157
1158 clone->bi_private = io;
1159 clone->bi_end_io = crypt_endio;
1160 clone->bi_bdev = cc->dev->bdev;
Bart Van Assche4382e332016-09-14 10:45:36 +02001161 bio_set_op_attrs(clone, bio_op(io->base_bio), bio_flags(io->base_bio));
Milan Broz8b004452006-10-03 01:15:37 -07001162}
1163
Milan Broz20c82532011-01-13 19:59:53 +00001164static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
Milan Broz8b004452006-10-03 01:15:37 -07001165{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001166 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001167 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -07001168
Milan Broz8b004452006-10-03 01:15:37 -07001169 /*
Mike Snitzer59779072015-04-09 16:53:24 -04001170 * We need the original biovec array in order to decrypt
1171 * the whole bio data *afterwards* -- thanks to immutable
1172 * biovecs we don't need to worry about the block layer
1173 * modifying the biovec array; so leverage bio_clone_fast().
Milan Broz8b004452006-10-03 01:15:37 -07001174 */
Mike Snitzer59779072015-04-09 16:53:24 -04001175 clone = bio_clone_fast(io->base_bio, gfp, cc->bs);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001176 if (!clone)
Milan Broz20c82532011-01-13 19:59:53 +00001177 return 1;
Milan Broz8b004452006-10-03 01:15:37 -07001178
Milan Broz20c82532011-01-13 19:59:53 +00001179 crypt_inc_pending(io);
1180
Milan Broz8b004452006-10-03 01:15:37 -07001181 clone_init(io, clone);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001182 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -07001183
Milan Broz93e605c2006-10-03 01:15:38 -07001184 generic_make_request(clone);
Milan Broz20c82532011-01-13 19:59:53 +00001185 return 0;
Milan Broz8b004452006-10-03 01:15:37 -07001186}
1187
Mikulas Patockadc267622015-02-13 08:25:59 -05001188static void kcryptd_io_read_work(struct work_struct *work)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001189{
1190 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1191
Mikulas Patockadc267622015-02-13 08:25:59 -05001192 crypt_inc_pending(io);
1193 if (kcryptd_io_read(io, GFP_NOIO))
1194 io->error = -ENOMEM;
1195 crypt_dec_pending(io);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001196}
1197
Mikulas Patockadc267622015-02-13 08:25:59 -05001198static void kcryptd_queue_read(struct dm_crypt_io *io)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001199{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001200 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001201
Mikulas Patockadc267622015-02-13 08:25:59 -05001202 INIT_WORK(&io->work, kcryptd_io_read_work);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001203 queue_work(cc->io_queue, &io->work);
1204}
1205
Mikulas Patockadc267622015-02-13 08:25:59 -05001206static void kcryptd_io_write(struct dm_crypt_io *io)
1207{
1208 struct bio *clone = io->ctx.bio_out;
1209
1210 generic_make_request(clone);
1211}
1212
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001213#define crypt_io_from_node(node) rb_entry((node), struct dm_crypt_io, rb_node)
1214
Mikulas Patockadc267622015-02-13 08:25:59 -05001215static int dmcrypt_write(void *data)
1216{
1217 struct crypt_config *cc = data;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001218 struct dm_crypt_io *io;
1219
Mikulas Patockadc267622015-02-13 08:25:59 -05001220 while (1) {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001221 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -05001222 struct blk_plug plug;
1223
1224 DECLARE_WAITQUEUE(wait, current);
1225
1226 spin_lock_irq(&cc->write_thread_wait.lock);
1227continue_locked:
1228
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001229 if (!RB_EMPTY_ROOT(&cc->write_tree))
Mikulas Patockadc267622015-02-13 08:25:59 -05001230 goto pop_from_list;
1231
Rabin Vincentf659b102016-09-21 16:22:29 +02001232 set_current_state(TASK_INTERRUPTIBLE);
Mikulas Patockadc267622015-02-13 08:25:59 -05001233 __add_wait_queue(&cc->write_thread_wait, &wait);
1234
1235 spin_unlock_irq(&cc->write_thread_wait.lock);
1236
Rabin Vincentf659b102016-09-21 16:22:29 +02001237 if (unlikely(kthread_should_stop())) {
1238 set_task_state(current, TASK_RUNNING);
1239 remove_wait_queue(&cc->write_thread_wait, &wait);
1240 break;
1241 }
1242
Mikulas Patockadc267622015-02-13 08:25:59 -05001243 schedule();
1244
Rabin Vincentf659b102016-09-21 16:22:29 +02001245 set_task_state(current, TASK_RUNNING);
Mikulas Patockadc267622015-02-13 08:25:59 -05001246 spin_lock_irq(&cc->write_thread_wait.lock);
1247 __remove_wait_queue(&cc->write_thread_wait, &wait);
1248 goto continue_locked;
1249
1250pop_from_list:
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001251 write_tree = cc->write_tree;
1252 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05001253 spin_unlock_irq(&cc->write_thread_wait.lock);
1254
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001255 BUG_ON(rb_parent(write_tree.rb_node));
1256
1257 /*
1258 * Note: we cannot walk the tree here with rb_next because
1259 * the structures may be freed when kcryptd_io_write is called.
1260 */
Mikulas Patockadc267622015-02-13 08:25:59 -05001261 blk_start_plug(&plug);
1262 do {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001263 io = crypt_io_from_node(rb_first(&write_tree));
1264 rb_erase(&io->rb_node, &write_tree);
Mikulas Patockadc267622015-02-13 08:25:59 -05001265 kcryptd_io_write(io);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001266 } while (!RB_EMPTY_ROOT(&write_tree));
Mikulas Patockadc267622015-02-13 08:25:59 -05001267 blk_finish_plug(&plug);
1268 }
1269 return 0;
1270}
1271
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001272static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +00001273{
Milan Brozdec1ced2008-02-08 02:10:57 +00001274 struct bio *clone = io->ctx.bio_out;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001275 struct crypt_config *cc = io->cc;
Mikulas Patockadc267622015-02-13 08:25:59 -05001276 unsigned long flags;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001277 sector_t sector;
1278 struct rb_node **rbp, *parent;
Milan Brozdec1ced2008-02-08 02:10:57 +00001279
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001280 if (unlikely(io->error < 0)) {
Milan Brozdec1ced2008-02-08 02:10:57 +00001281 crypt_free_buffer_pages(cc, clone);
1282 bio_put(clone);
Milan Broz6c031f42008-10-10 13:37:06 +01001283 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +00001284 return;
1285 }
1286
1287 /* crypt_convert should have filled the clone bio */
Kent Overstreet003b5c52013-10-11 15:45:43 -07001288 BUG_ON(io->ctx.iter_out.bi_size);
Milan Brozdec1ced2008-02-08 02:10:57 +00001289
Kent Overstreet4f024f32013-10-11 15:44:27 -07001290 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +00001291
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001292 if (likely(!async) && test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags)) {
1293 generic_make_request(clone);
1294 return;
1295 }
1296
Mikulas Patockadc267622015-02-13 08:25:59 -05001297 spin_lock_irqsave(&cc->write_thread_wait.lock, flags);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001298 rbp = &cc->write_tree.rb_node;
1299 parent = NULL;
1300 sector = io->sector;
1301 while (*rbp) {
1302 parent = *rbp;
1303 if (sector < crypt_io_from_node(parent)->sector)
1304 rbp = &(*rbp)->rb_left;
1305 else
1306 rbp = &(*rbp)->rb_right;
1307 }
1308 rb_link_node(&io->rb_node, parent, rbp);
1309 rb_insert_color(&io->rb_node, &cc->write_tree);
1310
Mikulas Patockadc267622015-02-13 08:25:59 -05001311 wake_up_locked(&cc->write_thread_wait);
1312 spin_unlock_irqrestore(&cc->write_thread_wait.lock, flags);
Milan Broz4e4eef62008-02-08 02:10:49 +00001313}
1314
Milan Brozfc5a5e92008-10-10 13:37:04 +01001315static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001316{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001317 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001318 struct bio *clone;
Milan Brozc8081612008-10-10 13:37:08 +01001319 int crypt_finished;
Milan Brozb635b002008-10-21 17:45:00 +01001320 sector_t sector = io->sector;
Milan Brozdec1ced2008-02-08 02:10:57 +00001321 int r;
Milan Broz8b004452006-10-03 01:15:37 -07001322
Milan Broz93e605c2006-10-03 01:15:38 -07001323 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +01001324 * Prevent io from disappearing until this function completes.
1325 */
1326 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +01001327 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +01001328
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001329 clone = crypt_alloc_buffer(io, io->base_bio->bi_iter.bi_size);
1330 if (unlikely(!clone)) {
1331 io->error = -EIO;
1332 goto dec;
Milan Broz8b004452006-10-03 01:15:37 -07001333 }
Milan Broz899c95d2008-02-08 02:11:02 +00001334
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001335 io->ctx.bio_out = clone;
1336 io->ctx.iter_out = clone->bi_iter;
1337
1338 sector += bio_sectors(clone);
1339
1340 crypt_inc_pending(io);
1341 r = crypt_convert(cc, &io->ctx);
1342 if (r)
1343 io->error = -EIO;
1344 crypt_finished = atomic_dec_and_test(&io->ctx.cc_pending);
1345
1346 /* Encryption was already finished, submit io now */
1347 if (crypt_finished) {
1348 kcryptd_crypt_write_io_submit(io, 0);
1349 io->sector = sector;
1350 }
1351
1352dec:
Milan Broz899c95d2008-02-08 02:11:02 +00001353 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +00001354}
1355
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001356static void kcryptd_crypt_read_done(struct dm_crypt_io *io)
Milan Broz5742fd72008-02-08 02:10:43 +00001357{
Milan Broz5742fd72008-02-08 02:10:43 +00001358 crypt_dec_pending(io);
1359}
1360
Milan Broz4e4eef62008-02-08 02:10:49 +00001361static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001362{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001363 struct crypt_config *cc = io->cc;
Milan Broz5742fd72008-02-08 02:10:43 +00001364 int r = 0;
Milan Broz8b004452006-10-03 01:15:37 -07001365
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001366 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001367
Milan Broz53017032008-02-08 02:10:38 +00001368 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +00001369 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -07001370
Milan Broz5742fd72008-02-08 02:10:43 +00001371 r = crypt_convert(cc, &io->ctx);
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001372 if (r < 0)
1373 io->error = -EIO;
Milan Broz5742fd72008-02-08 02:10:43 +00001374
Mikulas Patocka40b62292012-07-27 15:08:04 +01001375 if (atomic_dec_and_test(&io->ctx.cc_pending))
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001376 kcryptd_crypt_read_done(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001377
1378 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001379}
1380
Milan Broz95497a92008-02-08 02:11:12 +00001381static void kcryptd_async_done(struct crypto_async_request *async_req,
1382 int error)
1383{
Huang Yingb2174ee2009-03-16 17:44:33 +00001384 struct dm_crypt_request *dmreq = async_req->data;
1385 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +00001386 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001387 struct crypt_config *cc = io->cc;
Milan Broz95497a92008-02-08 02:11:12 +00001388
Milan Broz54cea3f2015-05-15 17:00:25 +02001389 /*
1390 * A request from crypto driver backlog is going to be processed now,
1391 * finish the completion and continue in crypt_convert().
1392 * (Callback will be called for the second time for this request.)
1393 */
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001394 if (error == -EINPROGRESS) {
1395 complete(&ctx->restart);
Milan Broz95497a92008-02-08 02:11:12 +00001396 return;
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001397 }
Milan Broz95497a92008-02-08 02:11:12 +00001398
Milan Broz2dc53272011-01-13 19:59:54 +00001399 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post)
1400 error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq);
1401
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001402 if (error < 0)
1403 io->error = -EIO;
1404
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001405 crypt_free_req(cc, req_of_dmreq(cc, dmreq), io->base_bio);
Milan Broz95497a92008-02-08 02:11:12 +00001406
Mikulas Patocka40b62292012-07-27 15:08:04 +01001407 if (!atomic_dec_and_test(&ctx->cc_pending))
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001408 return;
Milan Broz95497a92008-02-08 02:11:12 +00001409
1410 if (bio_data_dir(io->base_bio) == READ)
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001411 kcryptd_crypt_read_done(io);
Milan Broz95497a92008-02-08 02:11:12 +00001412 else
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001413 kcryptd_crypt_write_io_submit(io, 1);
Milan Broz95497a92008-02-08 02:11:12 +00001414}
1415
Milan Broz4e4eef62008-02-08 02:10:49 +00001416static void kcryptd_crypt(struct work_struct *work)
1417{
1418 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1419
1420 if (bio_data_dir(io->base_bio) == READ)
1421 kcryptd_crypt_read_convert(io);
1422 else
1423 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -07001424}
1425
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001426static void kcryptd_queue_crypt(struct dm_crypt_io *io)
1427{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001428 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001429
1430 INIT_WORK(&io->work, kcryptd_crypt);
1431 queue_work(cc->crypt_queue, &io->work);
1432}
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434/*
1435 * Decode key from its hex representation
1436 */
1437static int crypt_decode_key(u8 *key, char *hex, unsigned int size)
1438{
1439 char buffer[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 unsigned int i;
1441
1442 buffer[2] = '\0';
1443
Milan Broz8b004452006-10-03 01:15:37 -07001444 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 buffer[0] = *hex++;
1446 buffer[1] = *hex++;
1447
majianpeng1a66a082012-07-27 15:07:59 +01001448 if (kstrtou8(buffer, 16, &key[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EINVAL;
1450 }
1451
1452 if (*hex != '\0')
1453 return -EINVAL;
1454
1455 return 0;
1456}
1457
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001458static void crypt_free_tfms(struct crypt_config *cc)
Milan Brozd1f96422011-01-13 19:59:54 +00001459{
Milan Brozd1f96422011-01-13 19:59:54 +00001460 unsigned i;
1461
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001462 if (!cc->tfms)
1463 return;
1464
Milan Brozd1f96422011-01-13 19:59:54 +00001465 for (i = 0; i < cc->tfms_count; i++)
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001466 if (cc->tfms[i] && !IS_ERR(cc->tfms[i])) {
Herbert Xubbdb23b2016-01-24 21:16:36 +08001467 crypto_free_skcipher(cc->tfms[i]);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001468 cc->tfms[i] = NULL;
Milan Brozd1f96422011-01-13 19:59:54 +00001469 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001470
1471 kfree(cc->tfms);
1472 cc->tfms = NULL;
Milan Brozd1f96422011-01-13 19:59:54 +00001473}
1474
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001475static int crypt_alloc_tfms(struct crypt_config *cc, char *ciphermode)
Milan Brozd1f96422011-01-13 19:59:54 +00001476{
Milan Brozd1f96422011-01-13 19:59:54 +00001477 unsigned i;
1478 int err;
1479
Eric Biggers5d0be842016-08-30 09:51:44 -07001480 cc->tfms = kzalloc(cc->tfms_count * sizeof(struct crypto_skcipher *),
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001481 GFP_KERNEL);
1482 if (!cc->tfms)
1483 return -ENOMEM;
1484
Milan Brozd1f96422011-01-13 19:59:54 +00001485 for (i = 0; i < cc->tfms_count; i++) {
Herbert Xubbdb23b2016-01-24 21:16:36 +08001486 cc->tfms[i] = crypto_alloc_skcipher(ciphermode, 0, 0);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001487 if (IS_ERR(cc->tfms[i])) {
1488 err = PTR_ERR(cc->tfms[i]);
1489 crypt_free_tfms(cc);
Milan Brozd1f96422011-01-13 19:59:54 +00001490 return err;
1491 }
1492 }
1493
Eric Biggers1cae07e2018-12-05 20:53:00 -08001494 /*
1495 * dm-crypt performance can vary greatly depending on which crypto
1496 * algorithm implementation is used. Help people debug performance
1497 * problems by logging the ->cra_driver_name.
1498 */
1499 DMINFO("%s using implementation \"%s\"", ciphermode,
1500 crypto_skcipher_alg(any_tfm(cc))->base.cra_driver_name);
Milan Brozd1f96422011-01-13 19:59:54 +00001501 return 0;
1502}
1503
Andi Kleenc0297722011-01-13 19:59:53 +00001504static int crypt_setkey_allcpus(struct crypt_config *cc)
1505{
Milan Brozda31a072013-10-28 23:21:03 +01001506 unsigned subkey_size;
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001507 int err = 0, i, r;
Andi Kleenc0297722011-01-13 19:59:53 +00001508
Milan Brozda31a072013-10-28 23:21:03 +01001509 /* Ignore extra keys (which are used for IV etc) */
1510 subkey_size = (cc->key_size - cc->key_extra_size) >> ilog2(cc->tfms_count);
1511
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001512 for (i = 0; i < cc->tfms_count; i++) {
Herbert Xubbdb23b2016-01-24 21:16:36 +08001513 r = crypto_skcipher_setkey(cc->tfms[i],
1514 cc->key + (i * subkey_size),
1515 subkey_size);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001516 if (r)
1517 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +00001518 }
1519
1520 return err;
1521}
1522
Milan Broze48d4bb2006-10-03 01:15:37 -07001523static int crypt_set_key(struct crypt_config *cc, char *key)
1524{
Milan Brozde8be5a2011-03-24 13:54:27 +00001525 int r = -EINVAL;
1526 int key_string_len = strlen(key);
1527
Milan Broz69a8cfc2011-01-13 19:59:49 +00001528 /* The key size may not be changed. */
Milan Brozde8be5a2011-03-24 13:54:27 +00001529 if (cc->key_size != (key_string_len >> 1))
1530 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001531
Milan Broz69a8cfc2011-01-13 19:59:49 +00001532 /* Hyphen (which gives a key_size of zero) means there is no key. */
1533 if (!cc->key_size && strcmp(key, "-"))
Milan Brozde8be5a2011-03-24 13:54:27 +00001534 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001535
Ondrej Kozina2c017f72016-11-02 15:02:08 +01001536 /* clear the flag since following operations may invalidate previously valid key */
1537 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1538
Milan Broz69a8cfc2011-01-13 19:59:49 +00001539 if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0)
Milan Brozde8be5a2011-03-24 13:54:27 +00001540 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07001541
Milan Brozde8be5a2011-03-24 13:54:27 +00001542 r = crypt_setkey_allcpus(cc);
Ondrej Kozina2c017f72016-11-02 15:02:08 +01001543 if (!r)
1544 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
Milan Brozde8be5a2011-03-24 13:54:27 +00001545
1546out:
1547 /* Hex key string not needed after here, so wipe it. */
1548 memset(key, '0', key_string_len);
1549
1550 return r;
Milan Broze48d4bb2006-10-03 01:15:37 -07001551}
1552
1553static int crypt_wipe_key(struct crypt_config *cc)
1554{
1555 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
1556 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Andi Kleenc0297722011-01-13 19:59:53 +00001557
1558 return crypt_setkey_allcpus(cc);
Milan Broze48d4bb2006-10-03 01:15:37 -07001559}
1560
Milan Broz28513fc2010-08-12 04:14:06 +01001561static void crypt_dtr(struct dm_target *ti)
1562{
1563 struct crypt_config *cc = ti->private;
1564
1565 ti->private = NULL;
1566
1567 if (!cc)
1568 return;
1569
Rabin Vincentf659b102016-09-21 16:22:29 +02001570 if (cc->write_thread)
Mikulas Patockadc267622015-02-13 08:25:59 -05001571 kthread_stop(cc->write_thread);
1572
Milan Broz28513fc2010-08-12 04:14:06 +01001573 if (cc->io_queue)
1574 destroy_workqueue(cc->io_queue);
1575 if (cc->crypt_queue)
1576 destroy_workqueue(cc->crypt_queue);
1577
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001578 crypt_free_tfms(cc);
1579
Milan Broz28513fc2010-08-12 04:14:06 +01001580 if (cc->bs)
1581 bioset_free(cc->bs);
1582
Julia Lawall6f659852015-09-13 14:15:05 +02001583 mempool_destroy(cc->page_pool);
1584 mempool_destroy(cc->req_pool);
Milan Broz28513fc2010-08-12 04:14:06 +01001585
1586 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
1587 cc->iv_gen_ops->dtr(cc);
1588
Milan Broz28513fc2010-08-12 04:14:06 +01001589 if (cc->dev)
1590 dm_put_device(ti, cc->dev);
1591
Milan Broz5ebaee62010-08-12 04:14:07 +01001592 kzfree(cc->cipher);
Milan Broz7dbcd132011-01-13 19:59:52 +00001593 kzfree(cc->cipher_string);
Milan Broz28513fc2010-08-12 04:14:06 +01001594
1595 /* Must zero key material before freeing */
1596 kzfree(cc);
1597}
1598
Milan Broz5ebaee62010-08-12 04:14:07 +01001599static int crypt_ctr_cipher(struct dm_target *ti,
1600 char *cipher_in, char *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Milan Broz5ebaee62010-08-12 04:14:07 +01001602 struct crypt_config *cc = ti->private;
Milan Brozd1f96422011-01-13 19:59:54 +00001603 char *tmp, *cipher, *chainmode, *ivmode, *ivopts, *keycount;
Milan Broz5ebaee62010-08-12 04:14:07 +01001604 char *cipher_api = NULL;
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001605 int ret = -EINVAL;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001606 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Milan Broz5ebaee62010-08-12 04:14:07 +01001608 /* Convert to crypto api definition? */
1609 if (strchr(cipher_in, '(')) {
1610 ti->error = "Bad cipher specification";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return -EINVAL;
1612 }
1613
Milan Broz7dbcd132011-01-13 19:59:52 +00001614 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
1615 if (!cc->cipher_string)
1616 goto bad_mem;
1617
Milan Broz5ebaee62010-08-12 04:14:07 +01001618 /*
1619 * Legacy dm-crypt cipher specification
Milan Brozd1f96422011-01-13 19:59:54 +00001620 * cipher[:keycount]-mode-iv:ivopts
Milan Broz5ebaee62010-08-12 04:14:07 +01001621 */
1622 tmp = cipher_in;
Milan Brozd1f96422011-01-13 19:59:54 +00001623 keycount = strsep(&tmp, "-");
1624 cipher = strsep(&keycount, ":");
1625
1626 if (!keycount)
1627 cc->tfms_count = 1;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001628 else if (sscanf(keycount, "%u%c", &cc->tfms_count, &dummy) != 1 ||
Milan Brozd1f96422011-01-13 19:59:54 +00001629 !is_power_of_2(cc->tfms_count)) {
1630 ti->error = "Bad cipher key count specification";
1631 return -EINVAL;
1632 }
1633 cc->key_parts = cc->tfms_count;
Milan Brozda31a072013-10-28 23:21:03 +01001634 cc->key_extra_size = 0;
Milan Broz5ebaee62010-08-12 04:14:07 +01001635
1636 cc->cipher = kstrdup(cipher, GFP_KERNEL);
1637 if (!cc->cipher)
1638 goto bad_mem;
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 chainmode = strsep(&tmp, "-");
1641 ivopts = strsep(&tmp, "-");
1642 ivmode = strsep(&ivopts, ":");
1643
1644 if (tmp)
Milan Broz5ebaee62010-08-12 04:14:07 +01001645 DMWARN("Ignoring unexpected additional cipher options");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Milan Broz7dbcd132011-01-13 19:59:52 +00001647 /*
1648 * For compatibility with the original dm-crypt mapping format, if
1649 * only the cipher name is supplied, use cbc-plain.
1650 */
Milan Broz5ebaee62010-08-12 04:14:07 +01001651 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 chainmode = "cbc";
1653 ivmode = "plain";
1654 }
1655
Herbert Xud1806f62006-08-22 20:29:17 +10001656 if (strcmp(chainmode, "ecb") && !ivmode) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001657 ti->error = "IV mechanism required";
1658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
Milan Broz5ebaee62010-08-12 04:14:07 +01001661 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
1662 if (!cipher_api)
1663 goto bad_mem;
1664
1665 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
1666 "%s(%s)", chainmode, cipher);
1667 if (ret < 0) {
1668 kfree(cipher_api);
1669 goto bad_mem;
Herbert Xud1806f62006-08-22 20:29:17 +10001670 }
1671
Milan Broz5ebaee62010-08-12 04:14:07 +01001672 /* Allocate cipher */
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001673 ret = crypt_alloc_tfms(cc, cipher_api);
1674 if (ret < 0) {
1675 ti->error = "Error allocating crypto tfm";
1676 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Milan Broz5ebaee62010-08-12 04:14:07 +01001679 /* Initialize IV */
Herbert Xubbdb23b2016-01-24 21:16:36 +08001680 cc->iv_size = crypto_skcipher_ivsize(any_tfm(cc));
Milan Broz5ebaee62010-08-12 04:14:07 +01001681 if (cc->iv_size)
1682 /* at least a 64 bit sector number should fit in our buffer */
1683 cc->iv_size = max(cc->iv_size,
1684 (unsigned int)(sizeof(u64) / sizeof(u8)));
1685 else if (ivmode) {
1686 DMWARN("Selected cipher does not support IVs");
1687 ivmode = NULL;
1688 }
1689
1690 /* Choose ivmode, see comments at iv code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (ivmode == NULL)
1692 cc->iv_gen_ops = NULL;
1693 else if (strcmp(ivmode, "plain") == 0)
1694 cc->iv_gen_ops = &crypt_iv_plain_ops;
Milan Broz61afef62009-12-10 23:52:25 +00001695 else if (strcmp(ivmode, "plain64") == 0)
1696 cc->iv_gen_ops = &crypt_iv_plain64_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 else if (strcmp(ivmode, "essiv") == 0)
1698 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10001699 else if (strcmp(ivmode, "benbi") == 0)
1700 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07001701 else if (strcmp(ivmode, "null") == 0)
1702 cc->iv_gen_ops = &crypt_iv_null_ops;
Milan Broz34745782011-01-13 19:59:55 +00001703 else if (strcmp(ivmode, "lmk") == 0) {
1704 cc->iv_gen_ops = &crypt_iv_lmk_ops;
Milan Brozed04d982013-10-28 23:21:04 +01001705 /*
1706 * Version 2 and 3 is recognised according
Milan Broz34745782011-01-13 19:59:55 +00001707 * to length of provided multi-key string.
1708 * If present (version 3), last key is used as IV seed.
Milan Brozed04d982013-10-28 23:21:04 +01001709 * All keys (including IV seed) are always the same size.
Milan Broz34745782011-01-13 19:59:55 +00001710 */
Milan Brozda31a072013-10-28 23:21:03 +01001711 if (cc->key_size % cc->key_parts) {
Milan Broz34745782011-01-13 19:59:55 +00001712 cc->key_parts++;
Milan Brozda31a072013-10-28 23:21:03 +01001713 cc->key_extra_size = cc->key_size / cc->key_parts;
1714 }
Milan Brozed04d982013-10-28 23:21:04 +01001715 } else if (strcmp(ivmode, "tcw") == 0) {
1716 cc->iv_gen_ops = &crypt_iv_tcw_ops;
1717 cc->key_parts += 2; /* IV + whitening */
1718 cc->key_extra_size = cc->iv_size + TCW_WHITENING_SIZE;
Milan Broz34745782011-01-13 19:59:55 +00001719 } else {
Milan Broz5ebaee62010-08-12 04:14:07 +01001720 ret = -EINVAL;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001721 ti->error = "Invalid IV mode";
Milan Broz28513fc2010-08-12 04:14:06 +01001722 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724
Milan Brozda31a072013-10-28 23:21:03 +01001725 /* Initialize and set key */
1726 ret = crypt_set_key(cc, key);
1727 if (ret < 0) {
1728 ti->error = "Error decoding and setting key";
1729 goto bad;
1730 }
1731
Milan Broz28513fc2010-08-12 04:14:06 +01001732 /* Allocate IV */
1733 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
1734 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
1735 if (ret < 0) {
1736 ti->error = "Error creating IV";
1737 goto bad;
1738 }
Milan Brozb95bf2d2009-12-10 23:51:56 +00001739 }
1740
Milan Broz28513fc2010-08-12 04:14:06 +01001741 /* Initialize IV (set keys for ESSIV etc) */
1742 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
1743 ret = cc->iv_gen_ops->init(cc);
1744 if (ret < 0) {
1745 ti->error = "Error initialising IV";
1746 goto bad;
1747 }
1748 }
1749
Milan Broz5ebaee62010-08-12 04:14:07 +01001750 ret = 0;
1751bad:
1752 kfree(cipher_api);
1753 return ret;
1754
1755bad_mem:
1756 ti->error = "Cannot allocate cipher strings";
1757 return -ENOMEM;
1758}
1759
1760/*
1761 * Construct an encryption mapping:
1762 * <cipher> <key> <iv_offset> <dev_path> <start>
1763 */
1764static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1765{
1766 struct crypt_config *cc;
Milan Broz772ae5f2011-08-02 12:32:08 +01001767 unsigned int key_size, opt_params;
Milan Broz5ebaee62010-08-12 04:14:07 +01001768 unsigned long long tmpll;
1769 int ret;
Mikulas Patockad49ec522014-08-28 11:09:31 -04001770 size_t iv_size_padding;
Milan Broz772ae5f2011-08-02 12:32:08 +01001771 struct dm_arg_set as;
1772 const char *opt_string;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001773 char dummy;
Milan Broz5ebaee62010-08-12 04:14:07 +01001774
Milan Broz772ae5f2011-08-02 12:32:08 +01001775 static struct dm_arg _args[] = {
Milan Brozc083ebe2017-03-16 15:39:44 +01001776 {0, 5, "Invalid number of feature args"},
Milan Broz772ae5f2011-08-02 12:32:08 +01001777 };
1778
1779 if (argc < 5) {
Milan Broz5ebaee62010-08-12 04:14:07 +01001780 ti->error = "Not enough arguments";
1781 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783
Milan Broz5ebaee62010-08-12 04:14:07 +01001784 key_size = strlen(argv[1]) >> 1;
1785
1786 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
1787 if (!cc) {
1788 ti->error = "Cannot allocate encryption context";
1789 return -ENOMEM;
1790 }
Milan Broz69a8cfc2011-01-13 19:59:49 +00001791 cc->key_size = key_size;
Milan Brozc083ebe2017-03-16 15:39:44 +01001792 cc->sector_size = (1 << SECTOR_SHIFT);
Mikulas Patocka52ad0c42017-03-23 10:23:14 -04001793 cc->sector_shift = 0;
Milan Broz5ebaee62010-08-12 04:14:07 +01001794
1795 ti->private = cc;
1796 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
1797 if (ret < 0)
1798 goto bad;
1799
Herbert Xubbdb23b2016-01-24 21:16:36 +08001800 cc->dmreq_start = sizeof(struct skcipher_request);
1801 cc->dmreq_start += crypto_skcipher_reqsize(any_tfm(cc));
Mikulas Patockad49ec522014-08-28 11:09:31 -04001802 cc->dmreq_start = ALIGN(cc->dmreq_start, __alignof__(struct dm_crypt_request));
1803
Herbert Xubbdb23b2016-01-24 21:16:36 +08001804 if (crypto_skcipher_alignmask(any_tfm(cc)) < CRYPTO_MINALIGN) {
Mikulas Patockad49ec522014-08-28 11:09:31 -04001805 /* Allocate the padding exactly */
1806 iv_size_padding = -(cc->dmreq_start + sizeof(struct dm_crypt_request))
Herbert Xubbdb23b2016-01-24 21:16:36 +08001807 & crypto_skcipher_alignmask(any_tfm(cc));
Mikulas Patockad49ec522014-08-28 11:09:31 -04001808 } else {
1809 /*
1810 * If the cipher requires greater alignment than kmalloc
1811 * alignment, we don't know the exact position of the
1812 * initialization vector. We must assume worst case.
1813 */
Herbert Xubbdb23b2016-01-24 21:16:36 +08001814 iv_size_padding = crypto_skcipher_alignmask(any_tfm(cc));
Mikulas Patockad49ec522014-08-28 11:09:31 -04001815 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001816
Mikulas Patocka94f5e022015-02-13 08:25:26 -05001817 ret = -ENOMEM;
Milan Brozddd42ed2008-02-08 02:11:07 +00001818 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start +
Mikulas Patockad49ec522014-08-28 11:09:31 -04001819 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size);
Milan Brozddd42ed2008-02-08 02:11:07 +00001820 if (!cc->req_pool) {
1821 ti->error = "Cannot allocate crypt request mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001822 goto bad;
Milan Brozddd42ed2008-02-08 02:11:07 +00001823 }
Milan Brozddd42ed2008-02-08 02:11:07 +00001824
Mike Snitzer30187e12016-01-31 13:28:26 -05001825 cc->per_bio_data_size = ti->per_io_data_size =
Mikulas Patockad49ec522014-08-28 11:09:31 -04001826 ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start +
1827 sizeof(struct dm_crypt_request) + iv_size_padding + cc->iv_size,
1828 ARCH_KMALLOC_MINALIGN);
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001829
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001830 cc->page_pool = mempool_create_page_pool(BIO_MAX_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (!cc->page_pool) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001832 ti->error = "Cannot allocate page mempool";
Milan Broz28513fc2010-08-12 04:14:06 +01001833 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
Jens Axboebb799ca2008-12-10 15:35:05 +01001836 cc->bs = bioset_create(MIN_IOS, 0);
Milan Broz6a24c712006-10-03 01:15:40 -07001837 if (!cc->bs) {
1838 ti->error = "Cannot allocate crypt bioset";
Milan Broz28513fc2010-08-12 04:14:06 +01001839 goto bad;
Milan Broz6a24c712006-10-03 01:15:40 -07001840 }
1841
Mikulas Patocka7145c242015-02-13 08:24:41 -05001842 mutex_init(&cc->bio_alloc_lock);
1843
Milan Broz28513fc2010-08-12 04:14:06 +01001844 ret = -EINVAL;
Milan Brozc083ebe2017-03-16 15:39:44 +01001845 if ((sscanf(argv[2], "%llu%c", &tmpll, &dummy) != 1) ||
1846 (tmpll & ((cc->sector_size >> SECTOR_SHIFT) - 1))) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001847 ti->error = "Invalid iv_offset sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001848 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001850 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Vivek Goyale80d1c82015-07-31 09:20:36 -04001852 ret = dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev);
1853 if (ret) {
Milan Broz28513fc2010-08-12 04:14:06 +01001854 ti->error = "Device lookup failed";
1855 goto bad;
1856 }
1857
Vivek Goyale80d1c82015-07-31 09:20:36 -04001858 ret = -EINVAL;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001859 if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001860 ti->error = "Invalid device sector";
Milan Broz28513fc2010-08-12 04:14:06 +01001861 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
Andrew Morton4ee218c2006-03-27 01:17:48 -08001863 cc->start = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Milan Broz772ae5f2011-08-02 12:32:08 +01001865 argv += 5;
1866 argc -= 5;
1867
1868 /* Optional parameters */
1869 if (argc) {
1870 as.argc = argc;
1871 as.argv = argv;
1872
1873 ret = dm_read_arg_group(_args, &as, &opt_params, &ti->error);
1874 if (ret)
1875 goto bad;
1876
Wei Yongjun44c144f2015-04-16 22:00:50 -04001877 ret = -EINVAL;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001878 while (opt_params--) {
1879 opt_string = dm_shift_arg(&as);
1880 if (!opt_string) {
1881 ti->error = "Not enough feature arguments";
1882 goto bad;
1883 }
Milan Broz772ae5f2011-08-02 12:32:08 +01001884
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001885 if (!strcasecmp(opt_string, "allow_discards"))
1886 ti->num_discard_bios = 1;
1887
1888 else if (!strcasecmp(opt_string, "same_cpu_crypt"))
1889 set_bit(DM_CRYPT_SAME_CPU, &cc->flags);
1890
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001891 else if (!strcasecmp(opt_string, "submit_from_crypt_cpus"))
1892 set_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
1893
Mikulas Patocka52ad0c42017-03-23 10:23:14 -04001894 else if (sscanf(opt_string, "sector_size:%hu%c",
Milan Brozc083ebe2017-03-16 15:39:44 +01001895 &cc->sector_size, &dummy) == 1) {
1896 if (cc->sector_size < (1 << SECTOR_SHIFT) ||
1897 cc->sector_size > 4096 ||
Mikulas Patocka52ad0c42017-03-23 10:23:14 -04001898 (cc->sector_size & (cc->sector_size - 1))) {
Milan Brozc083ebe2017-03-16 15:39:44 +01001899 ti->error = "Invalid feature value for sector_size";
1900 goto bad;
1901 }
Milan Broz87e52a42017-09-13 15:45:56 +02001902 if (ti->len & ((cc->sector_size >> SECTOR_SHIFT) - 1)) {
1903 ti->error = "Device size is not multiple of sector_size feature";
1904 goto bad;
1905 }
Mikulas Patocka52ad0c42017-03-23 10:23:14 -04001906 cc->sector_shift = __ffs(cc->sector_size) - SECTOR_SHIFT;
Milan Brozc083ebe2017-03-16 15:39:44 +01001907 } else if (!strcasecmp(opt_string, "iv_large_sectors"))
1908 set_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001909 else {
1910 ti->error = "Invalid feature arguments";
1911 goto bad;
1912 }
Milan Broz772ae5f2011-08-02 12:32:08 +01001913 }
1914 }
1915
Milan Broz28513fc2010-08-12 04:14:06 +01001916 ret = -ENOMEM;
Tim Murraye97c4ed2016-01-19 16:33:27 -08001917 cc->io_queue = alloc_workqueue("kcryptd_io",
1918 WQ_HIGHPRI |
1919 WQ_MEM_RECLAIM,
1920 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01001921 if (!cc->io_queue) {
1922 ti->error = "Couldn't create kcryptd io queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001923 goto bad;
Milan Brozcabf08e2007-10-19 22:38:58 +01001924 }
1925
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001926 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
Tim Murraye97c4ed2016-01-19 16:33:27 -08001927 cc->crypt_queue = alloc_workqueue("kcryptd",
1928 WQ_HIGHPRI |
1929 WQ_MEM_RECLAIM, 1);
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001930 else
Tim Murraye97c4ed2016-01-19 16:33:27 -08001931 cc->crypt_queue = alloc_workqueue("kcryptd",
1932 WQ_HIGHPRI |
1933 WQ_MEM_RECLAIM |
1934 WQ_UNBOUND,
Mikulas Patockaf3396c582015-02-13 08:23:09 -05001935 num_online_cpus());
Milan Brozcabf08e2007-10-19 22:38:58 +01001936 if (!cc->crypt_queue) {
Milan Broz9934a8b2007-10-19 22:38:57 +01001937 ti->error = "Couldn't create kcryptd queue";
Milan Broz28513fc2010-08-12 04:14:06 +01001938 goto bad;
Milan Broz9934a8b2007-10-19 22:38:57 +01001939 }
1940
Mikulas Patockadc267622015-02-13 08:25:59 -05001941 init_waitqueue_head(&cc->write_thread_wait);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001942 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05001943
1944 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write");
1945 if (IS_ERR(cc->write_thread)) {
1946 ret = PTR_ERR(cc->write_thread);
1947 cc->write_thread = NULL;
1948 ti->error = "Couldn't spawn write thread";
1949 goto bad;
1950 }
1951 wake_up_process(cc->write_thread);
1952
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001953 ti->num_flush_bios = 1;
Alasdair G Kergon0ac55482012-07-27 15:08:08 +01001954 ti->discard_zeroes_data_unsupported = true;
Milan Broz983c7db2011-09-25 23:26:21 +01001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 0;
1957
Milan Broz28513fc2010-08-12 04:14:06 +01001958bad:
1959 crypt_dtr(ti);
1960 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961}
1962
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001963static int crypt_map(struct dm_target *ti, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001965 struct dm_crypt_io *io;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001966 struct crypt_config *cc = ti->private;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001967
Milan Broz772ae5f2011-08-02 12:32:08 +01001968 /*
Mike Christie28a8f0d2016-06-05 14:32:25 -05001969 * If bio is REQ_PREFLUSH or REQ_OP_DISCARD, just bypass crypt queues.
1970 * - for REQ_PREFLUSH device-mapper core ensures that no IO is in-flight
Mike Christiee6047142016-06-05 14:32:04 -05001971 * - for REQ_OP_DISCARD caller must use flush if IO ordering matters
Milan Broz772ae5f2011-08-02 12:32:08 +01001972 */
Jens Axboe1eff9d32016-08-05 15:35:16 -06001973 if (unlikely(bio->bi_opf & REQ_PREFLUSH ||
Mike Christie28a8f0d2016-06-05 14:32:25 -05001974 bio_op(bio) == REQ_OP_DISCARD)) {
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001975 bio->bi_bdev = cc->dev->bdev;
Milan Broz772ae5f2011-08-02 12:32:08 +01001976 if (bio_sectors(bio))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001977 bio->bi_iter.bi_sector = cc->start +
1978 dm_target_offset(ti, bio->bi_iter.bi_sector);
Mikulas Patocka647c7db2009-06-22 10:12:23 +01001979 return DM_MAPIO_REMAPPED;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Mikulas Patocka4e870e92016-08-30 16:38:42 -04001982 /*
1983 * Check if bio is too large, split as needed.
1984 */
1985 if (unlikely(bio->bi_iter.bi_size > (BIO_MAX_PAGES << PAGE_SHIFT)) &&
1986 bio_data_dir(bio) == WRITE)
1987 dm_accept_partial_bio(bio, ((BIO_MAX_PAGES << PAGE_SHIFT) >> SECTOR_SHIFT));
1988
Milan Brozc083ebe2017-03-16 15:39:44 +01001989 /*
1990 * Ensure that bio is a multiple of internal sector encryption size
1991 * and is aligned to this size as defined in IO hints.
1992 */
1993 if (unlikely((bio->bi_iter.bi_sector & ((cc->sector_size >> SECTOR_SHIFT) - 1)) != 0))
1994 return -EIO;
1995
1996 if (unlikely(bio->bi_iter.bi_size & (cc->sector_size - 1)))
1997 return -EIO;
1998
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001999 io = dm_per_bio_data(bio, cc->per_bio_data_size);
2000 crypt_io_init(io, cc, bio, dm_target_offset(ti, bio->bi_iter.bi_sector));
Herbert Xubbdb23b2016-01-24 21:16:36 +08002001 io->ctx.req = (struct skcipher_request *)(io + 1);
Milan Brozcabf08e2007-10-19 22:38:58 +01002002
Milan Broz20c82532011-01-13 19:59:53 +00002003 if (bio_data_dir(io->base_bio) == READ) {
2004 if (kcryptd_io_read(io, GFP_NOWAIT))
Mikulas Patockadc267622015-02-13 08:25:59 -05002005 kcryptd_queue_read(io);
Milan Broz20c82532011-01-13 19:59:53 +00002006 } else
Milan Brozcabf08e2007-10-19 22:38:58 +01002007 kcryptd_queue_crypt(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002009 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002012static void crypt_status(struct dm_target *ti, status_type_t type,
2013 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Milan Broz5ebaee62010-08-12 04:14:07 +01002015 struct crypt_config *cc = ti->private;
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002016 unsigned i, sz = 0;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002017 int num_feature_args = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 switch (type) {
2020 case STATUSTYPE_INFO:
2021 result[0] = '\0';
2022 break;
2023
2024 case STATUSTYPE_TABLE:
Milan Broz7dbcd132011-01-13 19:59:52 +00002025 DMEMIT("%s ", cc->cipher_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002027 if (cc->key_size > 0)
2028 for (i = 0; i < cc->key_size; i++)
2029 DMEMIT("%02x", cc->key[i]);
2030 else
2031 DMEMIT("-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Andrew Morton4ee218c2006-03-27 01:17:48 -08002033 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
2034 cc->dev->name, (unsigned long long)cc->start);
Milan Broz772ae5f2011-08-02 12:32:08 +01002035
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002036 num_feature_args += !!ti->num_discard_bios;
2037 num_feature_args += test_bit(DM_CRYPT_SAME_CPU, &cc->flags);
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05002038 num_feature_args += test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
Mikulas Patocka52ad0c42017-03-23 10:23:14 -04002039 num_feature_args += cc->sector_size != (1 << SECTOR_SHIFT);
Milan Brozc083ebe2017-03-16 15:39:44 +01002040 num_feature_args += test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002041 if (num_feature_args) {
2042 DMEMIT(" %d", num_feature_args);
2043 if (ti->num_discard_bios)
2044 DMEMIT(" allow_discards");
2045 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
2046 DMEMIT(" same_cpu_crypt");
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05002047 if (test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags))
2048 DMEMIT(" submit_from_crypt_cpus");
Milan Brozc083ebe2017-03-16 15:39:44 +01002049 if (cc->sector_size != (1 << SECTOR_SHIFT))
2050 DMEMIT(" sector_size:%d", cc->sector_size);
2051 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
2052 DMEMIT(" iv_large_sectors");
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002053 }
Milan Broz772ae5f2011-08-02 12:32:08 +01002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 break;
2056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Milan Broze48d4bb2006-10-03 01:15:37 -07002059static void crypt_postsuspend(struct dm_target *ti)
2060{
2061 struct crypt_config *cc = ti->private;
2062
2063 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2064}
2065
2066static int crypt_preresume(struct dm_target *ti)
2067{
2068 struct crypt_config *cc = ti->private;
2069
2070 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
2071 DMERR("aborting resume - crypt key is not set.");
2072 return -EAGAIN;
2073 }
2074
2075 return 0;
2076}
2077
2078static void crypt_resume(struct dm_target *ti)
2079{
2080 struct crypt_config *cc = ti->private;
2081
2082 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2083}
2084
2085/* Message interface
2086 * key set <key>
2087 * key wipe
2088 */
2089static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
2090{
2091 struct crypt_config *cc = ti->private;
Milan Broz542da312009-12-10 23:51:57 +00002092 int ret = -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07002093
2094 if (argc < 2)
2095 goto error;
2096
Mike Snitzer498f0102011-08-02 12:32:04 +01002097 if (!strcasecmp(argv[0], "key")) {
Milan Broze48d4bb2006-10-03 01:15:37 -07002098 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
2099 DMWARN("not suspended during key manipulation.");
2100 return -EINVAL;
2101 }
Mike Snitzer498f0102011-08-02 12:32:04 +01002102 if (argc == 3 && !strcasecmp(argv[1], "set")) {
Milan Broz542da312009-12-10 23:51:57 +00002103 ret = crypt_set_key(cc, argv[2]);
2104 if (ret)
2105 return ret;
2106 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
2107 ret = cc->iv_gen_ops->init(cc);
2108 return ret;
2109 }
Mike Snitzer498f0102011-08-02 12:32:04 +01002110 if (argc == 2 && !strcasecmp(argv[1], "wipe")) {
Milan Broz542da312009-12-10 23:51:57 +00002111 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
2112 ret = cc->iv_gen_ops->wipe(cc);
2113 if (ret)
2114 return ret;
2115 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002116 return crypt_wipe_key(cc);
Milan Broz542da312009-12-10 23:51:57 +00002117 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002118 }
2119
2120error:
2121 DMWARN("unrecognised message received.");
2122 return -EINVAL;
2123}
2124
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002125static int crypt_iterate_devices(struct dm_target *ti,
2126 iterate_devices_callout_fn fn, void *data)
2127{
2128 struct crypt_config *cc = ti->private;
2129
Mike Snitzer5dea2712009-07-23 20:30:42 +01002130 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002131}
2132
Mike Snitzer586b2862015-09-09 21:34:51 -04002133static void crypt_io_hints(struct dm_target *ti, struct queue_limits *limits)
2134{
Milan Brozc083ebe2017-03-16 15:39:44 +01002135 struct crypt_config *cc = ti->private;
2136
Mike Snitzer586b2862015-09-09 21:34:51 -04002137 /*
2138 * Unfortunate constraint that is required to avoid the potential
2139 * for exceeding underlying device's max_segments limits -- due to
2140 * crypt_alloc_buffer() possibly allocating pages for the encryption
2141 * bio that are not as physically contiguous as the original bio.
2142 */
2143 limits->max_segment_size = PAGE_SIZE;
Milan Brozc083ebe2017-03-16 15:39:44 +01002144
Mikulas Patockaf3e3edc2018-08-10 11:23:56 -04002145 limits->logical_block_size =
2146 max_t(unsigned short, limits->logical_block_size, cc->sector_size);
2147 limits->physical_block_size =
2148 max_t(unsigned, limits->physical_block_size, cc->sector_size);
2149 limits->io_min = max_t(unsigned, limits->io_min, cc->sector_size);
Mike Snitzer586b2862015-09-09 21:34:51 -04002150}
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152static struct target_type crypt_target = {
2153 .name = "crypt",
Milan Brozc083ebe2017-03-16 15:39:44 +01002154 .version = {1, 17, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 .module = THIS_MODULE,
2156 .ctr = crypt_ctr,
2157 .dtr = crypt_dtr,
2158 .map = crypt_map,
2159 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07002160 .postsuspend = crypt_postsuspend,
2161 .preresume = crypt_preresume,
2162 .resume = crypt_resume,
2163 .message = crypt_message,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002164 .iterate_devices = crypt_iterate_devices,
Mike Snitzer586b2862015-09-09 21:34:51 -04002165 .io_hints = crypt_io_hints,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166};
2167
2168static int __init dm_crypt_init(void)
2169{
2170 int r;
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 r = dm_register_target(&crypt_target);
Mikulas Patocka94f5e022015-02-13 08:25:26 -05002173 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002174 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 return r;
2177}
2178
2179static void __exit dm_crypt_exit(void)
2180{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002181 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
2184module_init(dm_crypt_init);
2185module_exit(dm_crypt_exit);
2186
Jana Saoutbf142992014-06-24 14:27:04 -04002187MODULE_AUTHOR("Jana Saout <jana@saout.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
2189MODULE_LICENSE("GPL");