blob: cdf6b1e124604b7bd5e2fee7743a9435f1e79032 [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 Brozef43aa32017-01-04 20:23:54 +01004 * Copyright (C) 2006-2017 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2013-2017 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>
Ondrej Kozinac538f6e2016-11-21 15:58:51 +010015#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/bio.h>
17#include <linux/blkdev.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/crypto.h>
21#include <linux/workqueue.h>
Mikulas Patockadc267622015-02-13 08:25:59 -050022#include <linux/kthread.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070023#include <linux/backing-dev.h>
Arun Sharma600634972011-07-26 16:09:06 -070024#include <linux/atomic.h>
David Hardeman378f0582005-09-17 17:55:31 +100025#include <linux/scatterlist.h>
Mikulas Patockab3c5fd32015-02-13 08:27:41 -050026#include <linux/rbtree.h>
Ondrej Kozina027c4312016-12-01 18:20:52 +010027#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/page.h>
Rik Snel48527fa2006-09-03 08:56:39 +100029#include <asm/unaligned.h>
Milan Broz34745782011-01-13 19:59:55 +000030#include <crypto/hash.h>
31#include <crypto/md5.h>
32#include <crypto/algapi.h>
Herbert Xubbdb23b2016-01-24 21:16:36 +080033#include <crypto/skcipher.h>
Milan Brozef43aa32017-01-04 20:23:54 +010034#include <crypto/aead.h>
35#include <crypto/authenc.h>
36#include <linux/rtnetlink.h> /* for struct rtattr and RTA macros only */
Ondrej Kozinac538f6e2016-11-21 15:58:51 +010037#include <keys/user-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Mikulas Patocka586e80e2008-10-21 17:44:59 +010039#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Alasdair G Kergon72d94862006-06-26 00:27:35 -070041#define DM_MSG_PREFIX "crypt"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * context holding the current state of a multi-part conversion
45 */
46struct convert_context {
Milan Broz43d69032008-02-08 02:11:09 +000047 struct completion restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct bio *bio_in;
49 struct bio *bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -070050 struct bvec_iter iter_in;
51 struct bvec_iter iter_out;
Mikulas Patockac66029f2012-07-27 15:08:05 +010052 sector_t cc_sector;
Mikulas Patocka40b62292012-07-27 15:08:04 +010053 atomic_t cc_pending;
Milan Brozef43aa32017-01-04 20:23:54 +010054 union {
55 struct skcipher_request *req;
56 struct aead_request *req_aead;
57 } r;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Milan Broz53017032008-02-08 02:10:38 +000061/*
62 * per bio private data
63 */
64struct dm_crypt_io {
Alasdair G Kergon49a8a922012-07-27 15:08:05 +010065 struct crypt_config *cc;
Milan Broz53017032008-02-08 02:10:38 +000066 struct bio *base_bio;
Milan Brozef43aa32017-01-04 20:23:54 +010067 u8 *integrity_metadata;
68 bool integrity_metadata_from_pool;
Milan Broz53017032008-02-08 02:10:38 +000069 struct work_struct work;
70
71 struct convert_context ctx;
72
Mikulas Patocka40b62292012-07-27 15:08:04 +010073 atomic_t io_pending;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020074 blk_status_t error;
Milan Broz0c395b02008-02-08 02:10:54 +000075 sector_t sector;
Mikulas Patockadc267622015-02-13 08:25:59 -050076
Mikulas Patockab3c5fd32015-02-13 08:27:41 -050077 struct rb_node rb_node;
Mikulas Patocka298a9fa2014-03-28 15:51:55 -040078} CRYPTO_MINALIGN_ATTR;
Milan Broz53017032008-02-08 02:10:38 +000079
Milan Broz01482b72008-02-08 02:11:04 +000080struct dm_crypt_request {
Huang Yingb2174ee2009-03-16 17:44:33 +000081 struct convert_context *ctx;
Milan Brozef43aa32017-01-04 20:23:54 +010082 struct scatterlist sg_in[4];
83 struct scatterlist sg_out[4];
Milan Broz2dc53272011-01-13 19:59:54 +000084 sector_t iv_sector;
Milan Broz01482b72008-02-08 02:11:04 +000085};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct crypt_config;
88
89struct crypt_iv_operations {
90 int (*ctr)(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +010091 const char *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 void (*dtr)(struct crypt_config *cc);
Milan Brozb95bf2d2009-12-10 23:51:56 +000093 int (*init)(struct crypt_config *cc);
Milan Broz542da312009-12-10 23:51:57 +000094 int (*wipe)(struct crypt_config *cc);
Milan Broz2dc53272011-01-13 19:59:54 +000095 int (*generator)(struct crypt_config *cc, u8 *iv,
96 struct dm_crypt_request *dmreq);
97 int (*post)(struct crypt_config *cc, u8 *iv,
98 struct dm_crypt_request *dmreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
Milan Broz60473592009-12-10 23:51:55 +0000101struct iv_essiv_private {
Herbert Xubbdb23b2016-01-24 21:16:36 +0800102 struct crypto_ahash *hash_tfm;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000103 u8 *salt;
Milan Broz60473592009-12-10 23:51:55 +0000104};
105
106struct iv_benbi_private {
107 int shift;
108};
109
Milan Broz34745782011-01-13 19:59:55 +0000110#define LMK_SEED_SIZE 64 /* hash + 0 */
111struct iv_lmk_private {
112 struct crypto_shash *hash_tfm;
113 u8 *seed;
114};
115
Milan Brozed04d982013-10-28 23:21:04 +0100116#define TCW_WHITENING_SIZE 16
117struct iv_tcw_private {
118 struct crypto_shash *crc32_tfm;
119 u8 *iv_seed;
120 u8 *whitening;
121};
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * Crypt: maps a linear range of a block device
125 * and encrypts / decrypts at the same time.
126 */
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -0500127enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID,
Rabin Vincentf659b102016-09-21 16:22:29 +0200128 DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD };
Andi Kleenc0297722011-01-13 19:59:53 +0000129
Milan Brozef43aa32017-01-04 20:23:54 +0100130enum cipher_flags {
131 CRYPT_MODE_INTEGRITY_AEAD, /* Use authenticated mode for cihper */
Milan Broz8f0009a2017-03-16 15:39:44 +0100132 CRYPT_IV_LARGE_SECTORS, /* Calculate IV from sector_size, not 512B sectors */
Milan Brozef43aa32017-01-04 20:23:54 +0100133};
134
Andi Kleenc0297722011-01-13 19:59:53 +0000135/*
Mikulas Patocka610f2de2014-02-20 18:01:01 -0500136 * The fields in here must be read only after initialization.
Andi Kleenc0297722011-01-13 19:59:53 +0000137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138struct crypt_config {
139 struct dm_dev *dev;
140 sector_t start;
141
142 /*
Milan Brozef43aa32017-01-04 20:23:54 +0100143 * pool for per bio private data, crypto requests,
144 * encryption requeusts/buffer pages and integrity tags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 */
Milan Brozddd42ed2008-02-08 02:11:07 +0000146 mempool_t *req_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 mempool_t *page_pool;
Milan Brozef43aa32017-01-04 20:23:54 +0100148 mempool_t *tag_pool;
149 unsigned tag_pool_max_sectors;
150
Milan Broz6a24c712006-10-03 01:15:40 -0700151 struct bio_set *bs;
Mikulas Patocka7145c242015-02-13 08:24:41 -0500152 struct mutex bio_alloc_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Milan Brozcabf08e2007-10-19 22:38:58 +0100154 struct workqueue_struct *io_queue;
155 struct workqueue_struct *crypt_queue;
Milan Broz3f1e9072008-03-28 14:16:07 -0700156
Mikulas Patockadc267622015-02-13 08:25:59 -0500157 struct task_struct *write_thread;
158 wait_queue_head_t write_thread_wait;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -0500159 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -0500160
Milan Broz5ebaee62010-08-12 04:14:07 +0100161 char *cipher;
Milan Broz7dbcd132011-01-13 19:59:52 +0000162 char *cipher_string;
Milan Brozef43aa32017-01-04 20:23:54 +0100163 char *cipher_auth;
Ondrej Kozinac538f6e2016-11-21 15:58:51 +0100164 char *key_string;
Milan Broz5ebaee62010-08-12 04:14:07 +0100165
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100166 const struct crypt_iv_operations *iv_gen_ops;
Herbert Xu79066ad2006-12-05 13:41:52 -0800167 union {
Milan Broz60473592009-12-10 23:51:55 +0000168 struct iv_essiv_private essiv;
169 struct iv_benbi_private benbi;
Milan Broz34745782011-01-13 19:59:55 +0000170 struct iv_lmk_private lmk;
Milan Brozed04d982013-10-28 23:21:04 +0100171 struct iv_tcw_private tcw;
Herbert Xu79066ad2006-12-05 13:41:52 -0800172 } iv_gen_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 sector_t iv_offset;
174 unsigned int iv_size;
Mikulas Patockaff3af922017-03-23 10:23:14 -0400175 unsigned short int sector_size;
176 unsigned char sector_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100178 /* ESSIV: struct crypto_cipher *essiv_tfm */
179 void *iv_private;
Milan Brozef43aa32017-01-04 20:23:54 +0100180 union {
181 struct crypto_skcipher **tfms;
182 struct crypto_aead **tfms_aead;
183 } cipher_tfm;
Milan Brozd1f96422011-01-13 19:59:54 +0000184 unsigned tfms_count;
Milan Brozef43aa32017-01-04 20:23:54 +0100185 unsigned long cipher_flags;
Andi Kleenc0297722011-01-13 19:59:53 +0000186
187 /*
Milan Brozddd42ed2008-02-08 02:11:07 +0000188 * Layout of each crypto request:
189 *
Herbert Xubbdb23b2016-01-24 21:16:36 +0800190 * struct skcipher_request
Milan Brozddd42ed2008-02-08 02:11:07 +0000191 * context
192 * padding
193 * struct dm_crypt_request
194 * padding
195 * IV
196 *
197 * The padding is added so that dm_crypt_request and the IV are
198 * correctly aligned.
199 */
200 unsigned int dmreq_start;
Milan Brozddd42ed2008-02-08 02:11:07 +0000201
Mikulas Patocka298a9fa2014-03-28 15:51:55 -0400202 unsigned int per_bio_data_size;
203
Milan Broze48d4bb2006-10-03 01:15:37 -0700204 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 unsigned int key_size;
Milan Brozda31a072013-10-28 23:21:03 +0100206 unsigned int key_parts; /* independent parts in key buffer */
207 unsigned int key_extra_size; /* additional keys length */
Milan Brozef43aa32017-01-04 20:23:54 +0100208 unsigned int key_mac_size; /* MAC key size for authenc(...) */
209
210 unsigned int integrity_tag_size;
211 unsigned int integrity_iv_size;
212 unsigned int on_disk_tag_size;
213
214 u8 *authenc_key; /* space for keys in authenc() format (if used) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 u8 key[0];
216};
217
Milan Brozef43aa32017-01-04 20:23:54 +0100218#define MIN_IOS 64
219#define MAX_TAG_SIZE 480
220#define POOL_ENTRY_SIZE 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100222static void clone_init(struct dm_crypt_io *, struct bio *);
Alasdair G Kergon395b1672008-02-08 02:10:52 +0000223static void kcryptd_queue_crypt(struct dm_crypt_io *io);
Milan Brozef43aa32017-01-04 20:23:54 +0100224static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc,
225 struct scatterlist *sg);
Olaf Kirch027581f2007-05-09 02:32:52 -0700226
Andi Kleenc0297722011-01-13 19:59:53 +0000227/*
Eric Biggers86f917a2017-03-30 22:18:48 -0700228 * Use this to access cipher attributes that are independent of the key.
Andi Kleenc0297722011-01-13 19:59:53 +0000229 */
Herbert Xubbdb23b2016-01-24 21:16:36 +0800230static struct crypto_skcipher *any_tfm(struct crypt_config *cc)
Andi Kleenc0297722011-01-13 19:59:53 +0000231{
Milan Brozef43aa32017-01-04 20:23:54 +0100232 return cc->cipher_tfm.tfms[0];
233}
234
235static struct crypto_aead *any_tfm_aead(struct crypt_config *cc)
236{
237 return cc->cipher_tfm.tfms_aead[0];
Andi Kleenc0297722011-01-13 19:59:53 +0000238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * Different IV generation algorithms:
242 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000243 * plain: the initial vector is the 32-bit little-endian version of the sector
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200244 * number, padded with zeros if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
Milan Broz61afef62009-12-10 23:52:25 +0000246 * plain64: the initial vector is the 64-bit little-endian version of the sector
247 * number, padded with zeros if necessary.
248 *
Milan Broz7e3fd852017-06-06 09:07:01 +0200249 * plain64be: the initial vector is the 64-bit big-endian version of the sector
250 * number, padded with zeros if necessary.
251 *
Rik Snel3c164bd2006-09-02 18:17:33 +1000252 * essiv: "encrypted sector|salt initial vector", the sector number is
253 * encrypted with the bulk cipher using a salt as key. The salt
254 * should be derived from the bulk cipher's key via hashing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
Rik Snel48527fa2006-09-03 08:56:39 +1000256 * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1
257 * (needed for LRW-32-AES and possible other narrow block modes)
258 *
Ludwig Nussel46b47732007-05-09 02:32:55 -0700259 * null: the initial vector is always zero. Provides compatibility with
260 * obsolete loop_fish2 devices. Do not use for new devices.
261 *
Milan Broz34745782011-01-13 19:59:55 +0000262 * lmk: Compatible implementation of the block chaining mode used
263 * by the Loop-AES block device encryption system
264 * designed by Jari Ruusu. See http://loop-aes.sourceforge.net/
265 * It operates on full 512 byte sectors and uses CBC
266 * with an IV derived from the sector number, the data and
267 * optionally extra IV seed.
268 * This means that after decryption the first block
269 * of sector must be tweaked according to decrypted data.
270 * Loop-AES can use three encryption schemes:
271 * version 1: is plain aes-cbc mode
272 * version 2: uses 64 multikey scheme with lmk IV generator
273 * version 3: the same as version 2 with additional IV seed
274 * (it uses 65 keys, last key is used as IV seed)
275 *
Milan Brozed04d982013-10-28 23:21:04 +0100276 * tcw: Compatible implementation of the block chaining mode used
277 * by the TrueCrypt device encryption system (prior to version 4.1).
Milan Broze44f23b2015-04-05 18:03:10 +0200278 * For more info see: https://gitlab.com/cryptsetup/cryptsetup/wikis/TrueCryptOnDiskFormat
Milan Brozed04d982013-10-28 23:21:04 +0100279 * It operates on full 512 byte sectors and uses CBC
280 * with an IV derived from initial key and the sector number.
281 * In addition, whitening value is applied on every sector, whitening
282 * is calculated from initial key, sector number and mixed using CRC32.
283 * Note that this encryption scheme is vulnerable to watermarking attacks
284 * and should be used for old compatible containers access only.
285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * plumb: unimplemented, see:
287 * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454
288 */
289
Milan Broz2dc53272011-01-13 19:59:54 +0000290static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv,
291 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100294 *(__le32 *)iv = cpu_to_le32(dmreq->iv_sector & 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 return 0;
297}
298
Milan Broz61afef62009-12-10 23:52:25 +0000299static int crypt_iv_plain64_gen(struct crypt_config *cc, u8 *iv,
Milan Broz2dc53272011-01-13 19:59:54 +0000300 struct dm_crypt_request *dmreq)
Milan Broz61afef62009-12-10 23:52:25 +0000301{
302 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100303 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Milan Broz61afef62009-12-10 23:52:25 +0000304
305 return 0;
306}
307
Milan Broz7e3fd852017-06-06 09:07:01 +0200308static int crypt_iv_plain64be_gen(struct crypt_config *cc, u8 *iv,
309 struct dm_crypt_request *dmreq)
310{
311 memset(iv, 0, cc->iv_size);
312 /* iv_size is at least of size u64; usually it is 16 bytes */
313 *(__be64 *)&iv[cc->iv_size - sizeof(u64)] = cpu_to_be64(dmreq->iv_sector);
314
315 return 0;
316}
317
Milan Brozb95bf2d2009-12-10 23:51:56 +0000318/* Initialise ESSIV - compute salt but no local memory allocations */
319static int crypt_iv_essiv_init(struct crypt_config *cc)
320{
321 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800322 AHASH_REQUEST_ON_STACK(req, essiv->hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000323 struct scatterlist sg;
Andi Kleenc0297722011-01-13 19:59:53 +0000324 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100325 int err;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000326
327 sg_init_one(&sg, cc->key, cc->key_size);
Herbert Xubbdb23b2016-01-24 21:16:36 +0800328 ahash_request_set_tfm(req, essiv->hash_tfm);
329 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
330 ahash_request_set_crypt(req, &sg, essiv->salt, cc->key_size);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000331
Herbert Xubbdb23b2016-01-24 21:16:36 +0800332 err = crypto_ahash_digest(req);
333 ahash_request_zero(req);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000334 if (err)
335 return err;
336
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100337 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000338
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100339 err = crypto_cipher_setkey(essiv_tfm, essiv->salt,
Herbert Xubbdb23b2016-01-24 21:16:36 +0800340 crypto_ahash_digestsize(essiv->hash_tfm));
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100341 if (err)
342 return err;
Andi Kleenc0297722011-01-13 19:59:53 +0000343
344 return 0;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000345}
346
Milan Broz542da312009-12-10 23:51:57 +0000347/* Wipe salt and reset key derived from volume key */
348static int crypt_iv_essiv_wipe(struct crypt_config *cc)
349{
350 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800351 unsigned salt_size = crypto_ahash_digestsize(essiv->hash_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000352 struct crypto_cipher *essiv_tfm;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100353 int r, err = 0;
Milan Broz542da312009-12-10 23:51:57 +0000354
355 memset(essiv->salt, 0, salt_size);
356
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100357 essiv_tfm = cc->iv_private;
358 r = crypto_cipher_setkey(essiv_tfm, essiv->salt, salt_size);
359 if (r)
360 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +0000361
362 return err;
363}
364
Eric Biggers86f917a2017-03-30 22:18:48 -0700365/* Allocate the cipher for ESSIV */
366static struct crypto_cipher *alloc_essiv_cipher(struct crypt_config *cc,
367 struct dm_target *ti,
368 const u8 *salt,
369 unsigned int saltsize)
Andi Kleenc0297722011-01-13 19:59:53 +0000370{
371 struct crypto_cipher *essiv_tfm;
372 int err;
373
374 /* Setup the essiv_tfm with the given salt */
375 essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC);
376 if (IS_ERR(essiv_tfm)) {
377 ti->error = "Error allocating crypto tfm for ESSIV";
378 return essiv_tfm;
379 }
380
Milan Brozef43aa32017-01-04 20:23:54 +0100381 if (crypto_cipher_blocksize(essiv_tfm) != cc->iv_size) {
Andi Kleenc0297722011-01-13 19:59:53 +0000382 ti->error = "Block size of ESSIV cipher does "
383 "not match IV size of block cipher";
384 crypto_free_cipher(essiv_tfm);
385 return ERR_PTR(-EINVAL);
386 }
387
388 err = crypto_cipher_setkey(essiv_tfm, salt, saltsize);
389 if (err) {
390 ti->error = "Failed to set key for ESSIV cipher";
391 crypto_free_cipher(essiv_tfm);
392 return ERR_PTR(err);
393 }
394
395 return essiv_tfm;
Milan Broz542da312009-12-10 23:51:57 +0000396}
397
Milan Broz60473592009-12-10 23:51:55 +0000398static void crypt_iv_essiv_dtr(struct crypt_config *cc)
399{
Andi Kleenc0297722011-01-13 19:59:53 +0000400 struct crypto_cipher *essiv_tfm;
Milan Broz60473592009-12-10 23:51:55 +0000401 struct iv_essiv_private *essiv = &cc->iv_gen_private.essiv;
402
Herbert Xubbdb23b2016-01-24 21:16:36 +0800403 crypto_free_ahash(essiv->hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000404 essiv->hash_tfm = NULL;
405
406 kzfree(essiv->salt);
407 essiv->salt = NULL;
Andi Kleenc0297722011-01-13 19:59:53 +0000408
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100409 essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000410
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100411 if (essiv_tfm)
412 crypto_free_cipher(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000413
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100414 cc->iv_private = NULL;
Milan Broz60473592009-12-10 23:51:55 +0000415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti,
Milan Brozd469f842007-10-19 22:42:37 +0100418 const char *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Milan Broz5861f1b2009-12-10 23:51:56 +0000420 struct crypto_cipher *essiv_tfm = NULL;
Herbert Xubbdb23b2016-01-24 21:16:36 +0800421 struct crypto_ahash *hash_tfm = NULL;
Milan Broz5861f1b2009-12-10 23:51:56 +0000422 u8 *salt = NULL;
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100423 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Milan Broz5861f1b2009-12-10 23:51:56 +0000425 if (!opts) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700426 ti->error = "Digest algorithm missing for ESSIV mode";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EINVAL;
428 }
429
Milan Brozb95bf2d2009-12-10 23:51:56 +0000430 /* Allocate hash algorithm */
Herbert Xubbdb23b2016-01-24 21:16:36 +0800431 hash_tfm = crypto_alloc_ahash(opts, 0, CRYPTO_ALG_ASYNC);
Herbert Xu35058682006-08-24 19:10:20 +1000432 if (IS_ERR(hash_tfm)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700433 ti->error = "Error initializing ESSIV hash";
Milan Broz5861f1b2009-12-10 23:51:56 +0000434 err = PTR_ERR(hash_tfm);
435 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
Herbert Xubbdb23b2016-01-24 21:16:36 +0800438 salt = kzalloc(crypto_ahash_digestsize(hash_tfm), GFP_KERNEL);
Milan Broz5861f1b2009-12-10 23:51:56 +0000439 if (!salt) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700440 ti->error = "Error kmallocing salt storage in ESSIV";
Milan Broz5861f1b2009-12-10 23:51:56 +0000441 err = -ENOMEM;
442 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
Milan Brozb95bf2d2009-12-10 23:51:56 +0000445 cc->iv_gen_private.essiv.salt = salt;
Milan Brozb95bf2d2009-12-10 23:51:56 +0000446 cc->iv_gen_private.essiv.hash_tfm = hash_tfm;
447
Eric Biggers86f917a2017-03-30 22:18:48 -0700448 essiv_tfm = alloc_essiv_cipher(cc, ti, salt,
449 crypto_ahash_digestsize(hash_tfm));
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100450 if (IS_ERR(essiv_tfm)) {
451 crypt_iv_essiv_dtr(cc);
452 return PTR_ERR(essiv_tfm);
Andi Kleenc0297722011-01-13 19:59:53 +0000453 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100454 cc->iv_private = essiv_tfm;
Andi Kleenc0297722011-01-13 19:59:53 +0000455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
Milan Broz5861f1b2009-12-10 23:51:56 +0000457
458bad:
Milan Broz5861f1b2009-12-10 23:51:56 +0000459 if (hash_tfm && !IS_ERR(hash_tfm))
Herbert Xubbdb23b2016-01-24 21:16:36 +0800460 crypto_free_ahash(hash_tfm);
Milan Brozb95bf2d2009-12-10 23:51:56 +0000461 kfree(salt);
Milan Broz5861f1b2009-12-10 23:51:56 +0000462 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Milan Broz2dc53272011-01-13 19:59:54 +0000465static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv,
466 struct dm_crypt_request *dmreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Mikulas Patockafd2d2312012-07-27 15:08:05 +0100468 struct crypto_cipher *essiv_tfm = cc->iv_private;
Andi Kleenc0297722011-01-13 19:59:53 +0000469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 memset(iv, 0, cc->iv_size);
Alasdair G Kergon283a8322011-08-02 12:32:01 +0100471 *(__le64 *)iv = cpu_to_le64(dmreq->iv_sector);
Andi Kleenc0297722011-01-13 19:59:53 +0000472 crypto_cipher_encrypt_one(essiv_tfm, iv, iv);
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475}
476
Rik Snel48527fa2006-09-03 08:56:39 +1000477static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti,
478 const char *opts)
479{
Herbert Xubbdb23b2016-01-24 21:16:36 +0800480 unsigned bs = crypto_skcipher_blocksize(any_tfm(cc));
David Howellsf0d1b0b2006-12-08 02:37:49 -0800481 int log = ilog2(bs);
Rik Snel48527fa2006-09-03 08:56:39 +1000482
483 /* we need to calculate how far we must shift the sector count
484 * to get the cipher block count, we use this shift in _gen */
485
486 if (1 << log != bs) {
487 ti->error = "cypher blocksize is not a power of 2";
488 return -EINVAL;
489 }
490
491 if (log > 9) {
492 ti->error = "cypher blocksize is > 512";
493 return -EINVAL;
494 }
495
Milan Broz60473592009-12-10 23:51:55 +0000496 cc->iv_gen_private.benbi.shift = 9 - log;
Rik Snel48527fa2006-09-03 08:56:39 +1000497
498 return 0;
499}
500
501static void crypt_iv_benbi_dtr(struct crypt_config *cc)
502{
Rik Snel48527fa2006-09-03 08:56:39 +1000503}
504
Milan Broz2dc53272011-01-13 19:59:54 +0000505static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv,
506 struct dm_crypt_request *dmreq)
Rik Snel48527fa2006-09-03 08:56:39 +1000507{
Herbert Xu79066ad2006-12-05 13:41:52 -0800508 __be64 val;
509
Rik Snel48527fa2006-09-03 08:56:39 +1000510 memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */
Herbert Xu79066ad2006-12-05 13:41:52 -0800511
Milan Broz2dc53272011-01-13 19:59:54 +0000512 val = cpu_to_be64(((u64)dmreq->iv_sector << cc->iv_gen_private.benbi.shift) + 1);
Herbert Xu79066ad2006-12-05 13:41:52 -0800513 put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64)));
Rik Snel48527fa2006-09-03 08:56:39 +1000514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516}
517
Milan Broz2dc53272011-01-13 19:59:54 +0000518static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv,
519 struct dm_crypt_request *dmreq)
Ludwig Nussel46b47732007-05-09 02:32:55 -0700520{
521 memset(iv, 0, cc->iv_size);
522
523 return 0;
524}
525
Milan Broz34745782011-01-13 19:59:55 +0000526static void crypt_iv_lmk_dtr(struct crypt_config *cc)
527{
528 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
529
530 if (lmk->hash_tfm && !IS_ERR(lmk->hash_tfm))
531 crypto_free_shash(lmk->hash_tfm);
532 lmk->hash_tfm = NULL;
533
534 kzfree(lmk->seed);
535 lmk->seed = NULL;
536}
537
538static int crypt_iv_lmk_ctr(struct crypt_config *cc, struct dm_target *ti,
539 const char *opts)
540{
541 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
542
Milan Broz8f0009a2017-03-16 15:39:44 +0100543 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
544 ti->error = "Unsupported sector size for LMK";
545 return -EINVAL;
546 }
547
Milan Broz34745782011-01-13 19:59:55 +0000548 lmk->hash_tfm = crypto_alloc_shash("md5", 0, 0);
549 if (IS_ERR(lmk->hash_tfm)) {
550 ti->error = "Error initializing LMK hash";
551 return PTR_ERR(lmk->hash_tfm);
552 }
553
554 /* No seed in LMK version 2 */
555 if (cc->key_parts == cc->tfms_count) {
556 lmk->seed = NULL;
557 return 0;
558 }
559
560 lmk->seed = kzalloc(LMK_SEED_SIZE, GFP_KERNEL);
561 if (!lmk->seed) {
562 crypt_iv_lmk_dtr(cc);
563 ti->error = "Error kmallocing seed storage in LMK";
564 return -ENOMEM;
565 }
566
567 return 0;
568}
569
570static int crypt_iv_lmk_init(struct crypt_config *cc)
571{
572 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
573 int subkey_size = cc->key_size / cc->key_parts;
574
575 /* LMK seed is on the position of LMK_KEYS + 1 key */
576 if (lmk->seed)
577 memcpy(lmk->seed, cc->key + (cc->tfms_count * subkey_size),
578 crypto_shash_digestsize(lmk->hash_tfm));
579
580 return 0;
581}
582
583static int crypt_iv_lmk_wipe(struct crypt_config *cc)
584{
585 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
586
587 if (lmk->seed)
588 memset(lmk->seed, 0, LMK_SEED_SIZE);
589
590 return 0;
591}
592
593static int crypt_iv_lmk_one(struct crypt_config *cc, u8 *iv,
594 struct dm_crypt_request *dmreq,
595 u8 *data)
596{
597 struct iv_lmk_private *lmk = &cc->iv_gen_private.lmk;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200598 SHASH_DESC_ON_STACK(desc, lmk->hash_tfm);
Milan Broz34745782011-01-13 19:59:55 +0000599 struct md5_state md5state;
Milan Brozda31a072013-10-28 23:21:03 +0100600 __le32 buf[4];
Milan Broz34745782011-01-13 19:59:55 +0000601 int i, r;
602
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200603 desc->tfm = lmk->hash_tfm;
604 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Broz34745782011-01-13 19:59:55 +0000605
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200606 r = crypto_shash_init(desc);
Milan Broz34745782011-01-13 19:59:55 +0000607 if (r)
608 return r;
609
610 if (lmk->seed) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200611 r = crypto_shash_update(desc, lmk->seed, LMK_SEED_SIZE);
Milan Broz34745782011-01-13 19:59:55 +0000612 if (r)
613 return r;
614 }
615
616 /* Sector is always 512B, block size 16, add data of blocks 1-31 */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200617 r = crypto_shash_update(desc, data + 16, 16 * 31);
Milan Broz34745782011-01-13 19:59:55 +0000618 if (r)
619 return r;
620
621 /* Sector is cropped to 56 bits here */
622 buf[0] = cpu_to_le32(dmreq->iv_sector & 0xFFFFFFFF);
623 buf[1] = cpu_to_le32((((u64)dmreq->iv_sector >> 32) & 0x00FFFFFF) | 0x80000000);
624 buf[2] = cpu_to_le32(4024);
625 buf[3] = 0;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200626 r = crypto_shash_update(desc, (u8 *)buf, sizeof(buf));
Milan Broz34745782011-01-13 19:59:55 +0000627 if (r)
628 return r;
629
630 /* No MD5 padding here */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200631 r = crypto_shash_export(desc, &md5state);
Milan Broz34745782011-01-13 19:59:55 +0000632 if (r)
633 return r;
634
635 for (i = 0; i < MD5_HASH_WORDS; i++)
636 __cpu_to_le32s(&md5state.hash[i]);
637 memcpy(iv, &md5state.hash, cc->iv_size);
638
639 return 0;
640}
641
642static int crypt_iv_lmk_gen(struct crypt_config *cc, u8 *iv,
643 struct dm_crypt_request *dmreq)
644{
Milan Brozef43aa32017-01-04 20:23:54 +0100645 struct scatterlist *sg;
Milan Broz34745782011-01-13 19:59:55 +0000646 u8 *src;
647 int r = 0;
648
649 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE) {
Milan Brozef43aa32017-01-04 20:23:54 +0100650 sg = crypt_get_sg_data(cc, dmreq->sg_in);
651 src = kmap_atomic(sg_page(sg));
652 r = crypt_iv_lmk_one(cc, iv, dmreq, src + sg->offset);
Cong Wangc2e022c2011-11-28 13:26:02 +0800653 kunmap_atomic(src);
Milan Broz34745782011-01-13 19:59:55 +0000654 } else
655 memset(iv, 0, cc->iv_size);
656
657 return r;
658}
659
660static int crypt_iv_lmk_post(struct crypt_config *cc, u8 *iv,
661 struct dm_crypt_request *dmreq)
662{
Milan Brozef43aa32017-01-04 20:23:54 +0100663 struct scatterlist *sg;
Milan Broz34745782011-01-13 19:59:55 +0000664 u8 *dst;
665 int r;
666
667 if (bio_data_dir(dmreq->ctx->bio_in) == WRITE)
668 return 0;
669
Milan Brozef43aa32017-01-04 20:23:54 +0100670 sg = crypt_get_sg_data(cc, dmreq->sg_out);
671 dst = kmap_atomic(sg_page(sg));
672 r = crypt_iv_lmk_one(cc, iv, dmreq, dst + sg->offset);
Milan Broz34745782011-01-13 19:59:55 +0000673
674 /* Tweak the first block of plaintext sector */
675 if (!r)
Milan Brozef43aa32017-01-04 20:23:54 +0100676 crypto_xor(dst + sg->offset, iv, cc->iv_size);
Milan Broz34745782011-01-13 19:59:55 +0000677
Cong Wangc2e022c2011-11-28 13:26:02 +0800678 kunmap_atomic(dst);
Milan Broz34745782011-01-13 19:59:55 +0000679 return r;
680}
681
Milan Brozed04d982013-10-28 23:21:04 +0100682static void crypt_iv_tcw_dtr(struct crypt_config *cc)
683{
684 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
685
686 kzfree(tcw->iv_seed);
687 tcw->iv_seed = NULL;
688 kzfree(tcw->whitening);
689 tcw->whitening = NULL;
690
691 if (tcw->crc32_tfm && !IS_ERR(tcw->crc32_tfm))
692 crypto_free_shash(tcw->crc32_tfm);
693 tcw->crc32_tfm = NULL;
694}
695
696static int crypt_iv_tcw_ctr(struct crypt_config *cc, struct dm_target *ti,
697 const char *opts)
698{
699 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
700
Milan Broz8f0009a2017-03-16 15:39:44 +0100701 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
702 ti->error = "Unsupported sector size for TCW";
703 return -EINVAL;
704 }
705
Milan Brozed04d982013-10-28 23:21:04 +0100706 if (cc->key_size <= (cc->iv_size + TCW_WHITENING_SIZE)) {
707 ti->error = "Wrong key size for TCW";
708 return -EINVAL;
709 }
710
711 tcw->crc32_tfm = crypto_alloc_shash("crc32", 0, 0);
712 if (IS_ERR(tcw->crc32_tfm)) {
713 ti->error = "Error initializing CRC32 in TCW";
714 return PTR_ERR(tcw->crc32_tfm);
715 }
716
717 tcw->iv_seed = kzalloc(cc->iv_size, GFP_KERNEL);
718 tcw->whitening = kzalloc(TCW_WHITENING_SIZE, GFP_KERNEL);
719 if (!tcw->iv_seed || !tcw->whitening) {
720 crypt_iv_tcw_dtr(cc);
721 ti->error = "Error allocating seed storage in TCW";
722 return -ENOMEM;
723 }
724
725 return 0;
726}
727
728static int crypt_iv_tcw_init(struct crypt_config *cc)
729{
730 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
731 int key_offset = cc->key_size - cc->iv_size - TCW_WHITENING_SIZE;
732
733 memcpy(tcw->iv_seed, &cc->key[key_offset], cc->iv_size);
734 memcpy(tcw->whitening, &cc->key[key_offset + cc->iv_size],
735 TCW_WHITENING_SIZE);
736
737 return 0;
738}
739
740static int crypt_iv_tcw_wipe(struct crypt_config *cc)
741{
742 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
743
744 memset(tcw->iv_seed, 0, cc->iv_size);
745 memset(tcw->whitening, 0, TCW_WHITENING_SIZE);
746
747 return 0;
748}
749
750static int crypt_iv_tcw_whitening(struct crypt_config *cc,
751 struct dm_crypt_request *dmreq,
752 u8 *data)
753{
754 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
Bart Van Assche350b5392016-06-28 16:32:32 +0200755 __le64 sector = cpu_to_le64(dmreq->iv_sector);
Milan Brozed04d982013-10-28 23:21:04 +0100756 u8 buf[TCW_WHITENING_SIZE];
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200757 SHASH_DESC_ON_STACK(desc, tcw->crc32_tfm);
Milan Brozed04d982013-10-28 23:21:04 +0100758 int i, r;
759
760 /* xor whitening with sector number */
761 memcpy(buf, tcw->whitening, TCW_WHITENING_SIZE);
762 crypto_xor(buf, (u8 *)&sector, 8);
763 crypto_xor(&buf[8], (u8 *)&sector, 8);
764
765 /* calculate crc32 for every 32bit part and xor it */
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200766 desc->tfm = tcw->crc32_tfm;
767 desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;
Milan Brozed04d982013-10-28 23:21:04 +0100768 for (i = 0; i < 4; i++) {
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200769 r = crypto_shash_init(desc);
Milan Brozed04d982013-10-28 23:21:04 +0100770 if (r)
771 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200772 r = crypto_shash_update(desc, &buf[i * 4], 4);
Milan Brozed04d982013-10-28 23:21:04 +0100773 if (r)
774 goto out;
Jan-Simon Möllerb6106262012-07-02 13:50:54 +0200775 r = crypto_shash_final(desc, &buf[i * 4]);
Milan Brozed04d982013-10-28 23:21:04 +0100776 if (r)
777 goto out;
778 }
779 crypto_xor(&buf[0], &buf[12], 4);
780 crypto_xor(&buf[4], &buf[8], 4);
781
782 /* apply whitening (8 bytes) to whole sector */
783 for (i = 0; i < ((1 << SECTOR_SHIFT) / 8); i++)
784 crypto_xor(data + i * 8, buf, 8);
785out:
Milan Broz1a71d6f2014-11-22 09:36:04 +0100786 memzero_explicit(buf, sizeof(buf));
Milan Brozed04d982013-10-28 23:21:04 +0100787 return r;
788}
789
790static int crypt_iv_tcw_gen(struct crypt_config *cc, u8 *iv,
791 struct dm_crypt_request *dmreq)
792{
Milan Brozef43aa32017-01-04 20:23:54 +0100793 struct scatterlist *sg;
Milan Brozed04d982013-10-28 23:21:04 +0100794 struct iv_tcw_private *tcw = &cc->iv_gen_private.tcw;
Bart Van Assche350b5392016-06-28 16:32:32 +0200795 __le64 sector = cpu_to_le64(dmreq->iv_sector);
Milan Brozed04d982013-10-28 23:21:04 +0100796 u8 *src;
797 int r = 0;
798
799 /* Remove whitening from ciphertext */
800 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE) {
Milan Brozef43aa32017-01-04 20:23:54 +0100801 sg = crypt_get_sg_data(cc, dmreq->sg_in);
802 src = kmap_atomic(sg_page(sg));
803 r = crypt_iv_tcw_whitening(cc, dmreq, src + sg->offset);
Milan Brozed04d982013-10-28 23:21:04 +0100804 kunmap_atomic(src);
805 }
806
807 /* Calculate IV */
808 memcpy(iv, tcw->iv_seed, cc->iv_size);
809 crypto_xor(iv, (u8 *)&sector, 8);
810 if (cc->iv_size > 8)
811 crypto_xor(&iv[8], (u8 *)&sector, cc->iv_size - 8);
812
813 return r;
814}
815
816static int crypt_iv_tcw_post(struct crypt_config *cc, u8 *iv,
817 struct dm_crypt_request *dmreq)
818{
Milan Brozef43aa32017-01-04 20:23:54 +0100819 struct scatterlist *sg;
Milan Brozed04d982013-10-28 23:21:04 +0100820 u8 *dst;
821 int r;
822
823 if (bio_data_dir(dmreq->ctx->bio_in) != WRITE)
824 return 0;
825
826 /* Apply whitening on ciphertext */
Milan Brozef43aa32017-01-04 20:23:54 +0100827 sg = crypt_get_sg_data(cc, dmreq->sg_out);
828 dst = kmap_atomic(sg_page(sg));
829 r = crypt_iv_tcw_whitening(cc, dmreq, dst + sg->offset);
Milan Brozed04d982013-10-28 23:21:04 +0100830 kunmap_atomic(dst);
831
832 return r;
833}
834
Milan Brozef43aa32017-01-04 20:23:54 +0100835static int crypt_iv_random_gen(struct crypt_config *cc, u8 *iv,
836 struct dm_crypt_request *dmreq)
837{
838 /* Used only for writes, there must be an additional space to store IV */
839 get_random_bytes(iv, cc->iv_size);
840 return 0;
841}
842
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100843static const struct crypt_iv_operations crypt_iv_plain_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 .generator = crypt_iv_plain_gen
845};
846
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100847static const struct crypt_iv_operations crypt_iv_plain64_ops = {
Milan Broz61afef62009-12-10 23:52:25 +0000848 .generator = crypt_iv_plain64_gen
849};
850
Milan Broz7e3fd852017-06-06 09:07:01 +0200851static const struct crypt_iv_operations crypt_iv_plain64be_ops = {
852 .generator = crypt_iv_plain64be_gen
853};
854
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100855static const struct crypt_iv_operations crypt_iv_essiv_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 .ctr = crypt_iv_essiv_ctr,
857 .dtr = crypt_iv_essiv_dtr,
Milan Brozb95bf2d2009-12-10 23:51:56 +0000858 .init = crypt_iv_essiv_init,
Milan Broz542da312009-12-10 23:51:57 +0000859 .wipe = crypt_iv_essiv_wipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 .generator = crypt_iv_essiv_gen
861};
862
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100863static const struct crypt_iv_operations crypt_iv_benbi_ops = {
Rik Snel48527fa2006-09-03 08:56:39 +1000864 .ctr = crypt_iv_benbi_ctr,
865 .dtr = crypt_iv_benbi_dtr,
866 .generator = crypt_iv_benbi_gen
867};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100869static const struct crypt_iv_operations crypt_iv_null_ops = {
Ludwig Nussel46b47732007-05-09 02:32:55 -0700870 .generator = crypt_iv_null_gen
871};
872
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100873static const struct crypt_iv_operations crypt_iv_lmk_ops = {
Milan Broz34745782011-01-13 19:59:55 +0000874 .ctr = crypt_iv_lmk_ctr,
875 .dtr = crypt_iv_lmk_dtr,
876 .init = crypt_iv_lmk_init,
877 .wipe = crypt_iv_lmk_wipe,
878 .generator = crypt_iv_lmk_gen,
879 .post = crypt_iv_lmk_post
880};
881
Julia Lawall1b1b58f2015-11-29 14:09:19 +0100882static const struct crypt_iv_operations crypt_iv_tcw_ops = {
Milan Brozed04d982013-10-28 23:21:04 +0100883 .ctr = crypt_iv_tcw_ctr,
884 .dtr = crypt_iv_tcw_dtr,
885 .init = crypt_iv_tcw_init,
886 .wipe = crypt_iv_tcw_wipe,
887 .generator = crypt_iv_tcw_gen,
888 .post = crypt_iv_tcw_post
889};
890
Milan Brozef43aa32017-01-04 20:23:54 +0100891static struct crypt_iv_operations crypt_iv_random_ops = {
892 .generator = crypt_iv_random_gen
893};
894
895/*
896 * Integrity extensions
897 */
898static bool crypt_integrity_aead(struct crypt_config *cc)
899{
900 return test_bit(CRYPT_MODE_INTEGRITY_AEAD, &cc->cipher_flags);
901}
902
903static bool crypt_integrity_hmac(struct crypt_config *cc)
904{
Milan Broz33d2f092017-03-16 15:39:40 +0100905 return crypt_integrity_aead(cc) && cc->key_mac_size;
Milan Brozef43aa32017-01-04 20:23:54 +0100906}
907
908/* Get sg containing data */
909static struct scatterlist *crypt_get_sg_data(struct crypt_config *cc,
910 struct scatterlist *sg)
911{
Milan Broz33d2f092017-03-16 15:39:40 +0100912 if (unlikely(crypt_integrity_aead(cc)))
Milan Brozef43aa32017-01-04 20:23:54 +0100913 return &sg[2];
914
915 return sg;
916}
917
918static int dm_crypt_integrity_io_alloc(struct dm_crypt_io *io, struct bio *bio)
919{
920 struct bio_integrity_payload *bip;
921 unsigned int tag_len;
922 int ret;
923
924 if (!bio_sectors(bio) || !io->cc->on_disk_tag_size)
925 return 0;
926
927 bip = bio_integrity_alloc(bio, GFP_NOIO, 1);
928 if (IS_ERR(bip))
929 return PTR_ERR(bip);
930
931 tag_len = io->cc->on_disk_tag_size * bio_sectors(bio);
932
933 bip->bip_iter.bi_size = tag_len;
934 bip->bip_iter.bi_sector = io->cc->start + io->sector;
935
936 /* We own the metadata, do not let bio_free to release it */
937 bip->bip_flags &= ~BIP_BLOCK_INTEGRITY;
938
939 ret = bio_integrity_add_page(bio, virt_to_page(io->integrity_metadata),
940 tag_len, offset_in_page(io->integrity_metadata));
941 if (unlikely(ret != tag_len))
942 return -ENOMEM;
943
944 return 0;
945}
946
947static int crypt_integrity_ctr(struct crypt_config *cc, struct dm_target *ti)
948{
949#ifdef CONFIG_BLK_DEV_INTEGRITY
950 struct blk_integrity *bi = blk_get_integrity(cc->dev->bdev->bd_disk);
951
952 /* From now we require underlying device with our integrity profile */
953 if (!bi || strcasecmp(bi->profile->name, "DM-DIF-EXT-TAG")) {
954 ti->error = "Integrity profile not supported.";
955 return -EINVAL;
956 }
957
Mikulas Patocka583fe742017-04-18 16:51:54 -0400958 if (bi->tag_size != cc->on_disk_tag_size ||
959 bi->tuple_size != cc->on_disk_tag_size) {
Milan Brozef43aa32017-01-04 20:23:54 +0100960 ti->error = "Integrity profile tag size mismatch.";
961 return -EINVAL;
962 }
Mikulas Patocka583fe742017-04-18 16:51:54 -0400963 if (1 << bi->interval_exp != cc->sector_size) {
964 ti->error = "Integrity profile sector size mismatch.";
965 return -EINVAL;
966 }
Milan Brozef43aa32017-01-04 20:23:54 +0100967
Milan Broz33d2f092017-03-16 15:39:40 +0100968 if (crypt_integrity_aead(cc)) {
Milan Brozef43aa32017-01-04 20:23:54 +0100969 cc->integrity_tag_size = cc->on_disk_tag_size - cc->integrity_iv_size;
970 DMINFO("Integrity AEAD, tag size %u, IV size %u.",
971 cc->integrity_tag_size, cc->integrity_iv_size);
972
973 if (crypto_aead_setauthsize(any_tfm_aead(cc), cc->integrity_tag_size)) {
974 ti->error = "Integrity AEAD auth tag size is not supported.";
975 return -EINVAL;
976 }
977 } else if (cc->integrity_iv_size)
978 DMINFO("Additional per-sector space %u bytes for IV.",
979 cc->integrity_iv_size);
980
981 if ((cc->integrity_tag_size + cc->integrity_iv_size) != bi->tag_size) {
982 ti->error = "Not enough space for integrity tag in the profile.";
983 return -EINVAL;
984 }
985
986 return 0;
987#else
988 ti->error = "Integrity profile not supported.";
989 return -EINVAL;
990#endif
991}
992
Milan Brozd469f842007-10-19 22:42:37 +0100993static void crypt_convert_init(struct crypt_config *cc,
994 struct convert_context *ctx,
995 struct bio *bio_out, struct bio *bio_in,
Milan Brozfcd369d2008-02-08 02:10:41 +0000996 sector_t sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 ctx->bio_in = bio_in;
999 ctx->bio_out = bio_out;
Kent Overstreet003b5c52013-10-11 15:45:43 -07001000 if (bio_in)
1001 ctx->iter_in = bio_in->bi_iter;
1002 if (bio_out)
1003 ctx->iter_out = bio_out->bi_iter;
Mikulas Patockac66029f2012-07-27 15:08:05 +01001004 ctx->cc_sector = sector + cc->iv_offset;
Milan Broz43d69032008-02-08 02:11:09 +00001005 init_completion(&ctx->restart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Huang Yingb2174ee2009-03-16 17:44:33 +00001008static struct dm_crypt_request *dmreq_of_req(struct crypt_config *cc,
Milan Brozef43aa32017-01-04 20:23:54 +01001009 void *req)
Huang Yingb2174ee2009-03-16 17:44:33 +00001010{
1011 return (struct dm_crypt_request *)((char *)req + cc->dmreq_start);
1012}
1013
Milan Brozef43aa32017-01-04 20:23:54 +01001014static void *req_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq)
Huang Yingb2174ee2009-03-16 17:44:33 +00001015{
Milan Brozef43aa32017-01-04 20:23:54 +01001016 return (void *)((char *)dmreq - cc->dmreq_start);
Huang Yingb2174ee2009-03-16 17:44:33 +00001017}
1018
Milan Broz2dc53272011-01-13 19:59:54 +00001019static u8 *iv_of_dmreq(struct crypt_config *cc,
1020 struct dm_crypt_request *dmreq)
1021{
Milan Broz33d2f092017-03-16 15:39:40 +01001022 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001023 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
1024 crypto_aead_alignmask(any_tfm_aead(cc)) + 1);
1025 else
1026 return (u8 *)ALIGN((unsigned long)(dmreq + 1),
1027 crypto_skcipher_alignmask(any_tfm(cc)) + 1);
Milan Broz2dc53272011-01-13 19:59:54 +00001028}
1029
Milan Brozef43aa32017-01-04 20:23:54 +01001030static u8 *org_iv_of_dmreq(struct crypt_config *cc,
1031 struct dm_crypt_request *dmreq)
1032{
1033 return iv_of_dmreq(cc, dmreq) + cc->iv_size;
1034}
1035
1036static uint64_t *org_sector_of_dmreq(struct crypt_config *cc,
1037 struct dm_crypt_request *dmreq)
1038{
1039 u8 *ptr = iv_of_dmreq(cc, dmreq) + cc->iv_size + cc->iv_size;
1040 return (uint64_t*) ptr;
1041}
1042
1043static unsigned int *org_tag_of_dmreq(struct crypt_config *cc,
1044 struct dm_crypt_request *dmreq)
1045{
1046 u8 *ptr = iv_of_dmreq(cc, dmreq) + cc->iv_size +
1047 cc->iv_size + sizeof(uint64_t);
1048 return (unsigned int*)ptr;
1049}
1050
1051static void *tag_from_dmreq(struct crypt_config *cc,
1052 struct dm_crypt_request *dmreq)
1053{
1054 struct convert_context *ctx = dmreq->ctx;
1055 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
1056
1057 return &io->integrity_metadata[*org_tag_of_dmreq(cc, dmreq) *
1058 cc->on_disk_tag_size];
1059}
1060
1061static void *iv_tag_from_dmreq(struct crypt_config *cc,
1062 struct dm_crypt_request *dmreq)
1063{
1064 return tag_from_dmreq(cc, dmreq) + cc->integrity_tag_size;
1065}
1066
1067static int crypt_convert_block_aead(struct crypt_config *cc,
1068 struct convert_context *ctx,
1069 struct aead_request *req,
1070 unsigned int tag_offset)
Milan Broz01482b72008-02-08 02:11:04 +00001071{
Kent Overstreet003b5c52013-10-11 15:45:43 -07001072 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
1073 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001074 struct dm_crypt_request *dmreq;
Milan Brozef43aa32017-01-04 20:23:54 +01001075 u8 *iv, *org_iv, *tag_iv, *tag;
1076 uint64_t *sector;
1077 int r = 0;
1078
1079 BUG_ON(cc->integrity_iv_size && cc->integrity_iv_size != cc->iv_size);
Milan Broz01482b72008-02-08 02:11:04 +00001080
Milan Broz8f0009a2017-03-16 15:39:44 +01001081 /* Reject unexpected unaligned bio. */
1082 if (unlikely(bv_in.bv_offset & (cc->sector_size - 1)))
1083 return -EIO;
Milan Broz01482b72008-02-08 02:11:04 +00001084
Huang Yingb2174ee2009-03-16 17:44:33 +00001085 dmreq = dmreq_of_req(cc, req);
Mikulas Patockac66029f2012-07-27 15:08:05 +01001086 dmreq->iv_sector = ctx->cc_sector;
Milan Broz8f0009a2017-03-16 15:39:44 +01001087 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
Mikulas Patockaff3af922017-03-23 10:23:14 -04001088 dmreq->iv_sector >>= cc->sector_shift;
Huang Yingb2174ee2009-03-16 17:44:33 +00001089 dmreq->ctx = ctx;
Milan Broz01482b72008-02-08 02:11:04 +00001090
Milan Brozef43aa32017-01-04 20:23:54 +01001091 *org_tag_of_dmreq(cc, dmreq) = tag_offset;
Milan Broz01482b72008-02-08 02:11:04 +00001092
Milan Brozef43aa32017-01-04 20:23:54 +01001093 sector = org_sector_of_dmreq(cc, dmreq);
1094 *sector = cpu_to_le64(ctx->cc_sector - cc->iv_offset);
1095
1096 iv = iv_of_dmreq(cc, dmreq);
1097 org_iv = org_iv_of_dmreq(cc, dmreq);
1098 tag = tag_from_dmreq(cc, dmreq);
1099 tag_iv = iv_tag_from_dmreq(cc, dmreq);
1100
1101 /* AEAD request:
1102 * |----- AAD -------|------ DATA -------|-- AUTH TAG --|
1103 * | (authenticated) | (auth+encryption) | |
1104 * | sector_LE | IV | sector in/out | tag in/out |
1105 */
1106 sg_init_table(dmreq->sg_in, 4);
1107 sg_set_buf(&dmreq->sg_in[0], sector, sizeof(uint64_t));
1108 sg_set_buf(&dmreq->sg_in[1], org_iv, cc->iv_size);
Milan Broz8f0009a2017-03-16 15:39:44 +01001109 sg_set_page(&dmreq->sg_in[2], bv_in.bv_page, cc->sector_size, bv_in.bv_offset);
Milan Brozef43aa32017-01-04 20:23:54 +01001110 sg_set_buf(&dmreq->sg_in[3], tag, cc->integrity_tag_size);
1111
1112 sg_init_table(dmreq->sg_out, 4);
1113 sg_set_buf(&dmreq->sg_out[0], sector, sizeof(uint64_t));
1114 sg_set_buf(&dmreq->sg_out[1], org_iv, cc->iv_size);
Milan Broz8f0009a2017-03-16 15:39:44 +01001115 sg_set_page(&dmreq->sg_out[2], bv_out.bv_page, cc->sector_size, bv_out.bv_offset);
Milan Brozef43aa32017-01-04 20:23:54 +01001116 sg_set_buf(&dmreq->sg_out[3], tag, cc->integrity_tag_size);
Milan Broz01482b72008-02-08 02:11:04 +00001117
Milan Broz3a7f6c92008-02-08 02:11:14 +00001118 if (cc->iv_gen_ops) {
Milan Brozef43aa32017-01-04 20:23:54 +01001119 /* For READs use IV stored in integrity metadata */
1120 if (cc->integrity_iv_size && bio_data_dir(ctx->bio_in) != WRITE) {
1121 memcpy(org_iv, tag_iv, cc->iv_size);
1122 } else {
1123 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq);
1124 if (r < 0)
1125 return r;
1126 /* Store generated IV in integrity metadata */
1127 if (cc->integrity_iv_size)
1128 memcpy(tag_iv, org_iv, cc->iv_size);
1129 }
1130 /* Working copy of IV, to be modified in crypto API */
1131 memcpy(iv, org_iv, cc->iv_size);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001132 }
1133
Milan Brozef43aa32017-01-04 20:23:54 +01001134 aead_request_set_ad(req, sizeof(uint64_t) + cc->iv_size);
1135 if (bio_data_dir(ctx->bio_in) == WRITE) {
1136 aead_request_set_crypt(req, dmreq->sg_in, dmreq->sg_out,
Milan Broz8f0009a2017-03-16 15:39:44 +01001137 cc->sector_size, iv);
Milan Brozef43aa32017-01-04 20:23:54 +01001138 r = crypto_aead_encrypt(req);
1139 if (cc->integrity_tag_size + cc->integrity_iv_size != cc->on_disk_tag_size)
1140 memset(tag + cc->integrity_tag_size + cc->integrity_iv_size, 0,
1141 cc->on_disk_tag_size - (cc->integrity_tag_size + cc->integrity_iv_size));
1142 } else {
1143 aead_request_set_crypt(req, dmreq->sg_in, dmreq->sg_out,
Milan Broz8f0009a2017-03-16 15:39:44 +01001144 cc->sector_size + cc->integrity_tag_size, iv);
Milan Brozef43aa32017-01-04 20:23:54 +01001145 r = crypto_aead_decrypt(req);
1146 }
1147
1148 if (r == -EBADMSG)
1149 DMERR_LIMIT("INTEGRITY AEAD ERROR, sector %llu",
1150 (unsigned long long)le64_to_cpu(*sector));
1151
1152 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
1153 r = cc->iv_gen_ops->post(cc, org_iv, dmreq);
1154
Milan Broz8f0009a2017-03-16 15:39:44 +01001155 bio_advance_iter(ctx->bio_in, &ctx->iter_in, cc->sector_size);
1156 bio_advance_iter(ctx->bio_out, &ctx->iter_out, cc->sector_size);
Milan Brozef43aa32017-01-04 20:23:54 +01001157
1158 return r;
1159}
1160
1161static int crypt_convert_block_skcipher(struct crypt_config *cc,
1162 struct convert_context *ctx,
1163 struct skcipher_request *req,
1164 unsigned int tag_offset)
1165{
1166 struct bio_vec bv_in = bio_iter_iovec(ctx->bio_in, ctx->iter_in);
1167 struct bio_vec bv_out = bio_iter_iovec(ctx->bio_out, ctx->iter_out);
1168 struct scatterlist *sg_in, *sg_out;
1169 struct dm_crypt_request *dmreq;
Milan Brozef43aa32017-01-04 20:23:54 +01001170 u8 *iv, *org_iv, *tag_iv;
1171 uint64_t *sector;
1172 int r = 0;
1173
Milan Broz8f0009a2017-03-16 15:39:44 +01001174 /* Reject unexpected unaligned bio. */
1175 if (unlikely(bv_in.bv_offset & (cc->sector_size - 1)))
1176 return -EIO;
1177
Milan Brozef43aa32017-01-04 20:23:54 +01001178 dmreq = dmreq_of_req(cc, req);
1179 dmreq->iv_sector = ctx->cc_sector;
Milan Broz8f0009a2017-03-16 15:39:44 +01001180 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
Mikulas Patockaff3af922017-03-23 10:23:14 -04001181 dmreq->iv_sector >>= cc->sector_shift;
Milan Brozef43aa32017-01-04 20:23:54 +01001182 dmreq->ctx = ctx;
1183
1184 *org_tag_of_dmreq(cc, dmreq) = tag_offset;
1185
1186 iv = iv_of_dmreq(cc, dmreq);
1187 org_iv = org_iv_of_dmreq(cc, dmreq);
1188 tag_iv = iv_tag_from_dmreq(cc, dmreq);
1189
1190 sector = org_sector_of_dmreq(cc, dmreq);
1191 *sector = cpu_to_le64(ctx->cc_sector - cc->iv_offset);
1192
1193 /* For skcipher we use only the first sg item */
1194 sg_in = &dmreq->sg_in[0];
1195 sg_out = &dmreq->sg_out[0];
1196
1197 sg_init_table(sg_in, 1);
Milan Broz8f0009a2017-03-16 15:39:44 +01001198 sg_set_page(sg_in, bv_in.bv_page, cc->sector_size, bv_in.bv_offset);
Milan Brozef43aa32017-01-04 20:23:54 +01001199
1200 sg_init_table(sg_out, 1);
Milan Broz8f0009a2017-03-16 15:39:44 +01001201 sg_set_page(sg_out, bv_out.bv_page, cc->sector_size, bv_out.bv_offset);
Milan Brozef43aa32017-01-04 20:23:54 +01001202
1203 if (cc->iv_gen_ops) {
1204 /* For READs use IV stored in integrity metadata */
1205 if (cc->integrity_iv_size && bio_data_dir(ctx->bio_in) != WRITE) {
1206 memcpy(org_iv, tag_iv, cc->integrity_iv_size);
1207 } else {
1208 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq);
1209 if (r < 0)
1210 return r;
1211 /* Store generated IV in integrity metadata */
1212 if (cc->integrity_iv_size)
1213 memcpy(tag_iv, org_iv, cc->integrity_iv_size);
1214 }
1215 /* Working copy of IV, to be modified in crypto API */
1216 memcpy(iv, org_iv, cc->iv_size);
1217 }
1218
Milan Broz8f0009a2017-03-16 15:39:44 +01001219 skcipher_request_set_crypt(req, sg_in, sg_out, cc->sector_size, iv);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001220
1221 if (bio_data_dir(ctx->bio_in) == WRITE)
Herbert Xubbdb23b2016-01-24 21:16:36 +08001222 r = crypto_skcipher_encrypt(req);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001223 else
Herbert Xubbdb23b2016-01-24 21:16:36 +08001224 r = crypto_skcipher_decrypt(req);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001225
Milan Broz2dc53272011-01-13 19:59:54 +00001226 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post)
Milan Brozef43aa32017-01-04 20:23:54 +01001227 r = cc->iv_gen_ops->post(cc, org_iv, dmreq);
1228
Milan Broz8f0009a2017-03-16 15:39:44 +01001229 bio_advance_iter(ctx->bio_in, &ctx->iter_in, cc->sector_size);
1230 bio_advance_iter(ctx->bio_out, &ctx->iter_out, cc->sector_size);
Milan Broz2dc53272011-01-13 19:59:54 +00001231
Milan Broz3a7f6c92008-02-08 02:11:14 +00001232 return r;
Milan Broz01482b72008-02-08 02:11:04 +00001233}
1234
Milan Broz95497a92008-02-08 02:11:12 +00001235static void kcryptd_async_done(struct crypto_async_request *async_req,
1236 int error);
Andi Kleenc0297722011-01-13 19:59:53 +00001237
Milan Brozef43aa32017-01-04 20:23:54 +01001238static void crypt_alloc_req_skcipher(struct crypt_config *cc,
1239 struct convert_context *ctx)
Milan Brozddd42ed2008-02-08 02:11:07 +00001240{
Mikulas Patockac66029f2012-07-27 15:08:05 +01001241 unsigned key_index = ctx->cc_sector & (cc->tfms_count - 1);
Andi Kleenc0297722011-01-13 19:59:53 +00001242
Milan Brozef43aa32017-01-04 20:23:54 +01001243 if (!ctx->r.req)
1244 ctx->r.req = mempool_alloc(cc->req_pool, GFP_NOIO);
Andi Kleenc0297722011-01-13 19:59:53 +00001245
Milan Brozef43aa32017-01-04 20:23:54 +01001246 skcipher_request_set_tfm(ctx->r.req, cc->cipher_tfm.tfms[key_index]);
Milan Broz54cea3f2015-05-15 17:00:25 +02001247
1248 /*
1249 * Use REQ_MAY_BACKLOG so a cipher driver internally backlogs
1250 * requests if driver request queue is full.
1251 */
Milan Brozef43aa32017-01-04 20:23:54 +01001252 skcipher_request_set_callback(ctx->r.req,
Andi Kleenc0297722011-01-13 19:59:53 +00001253 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Milan Brozef43aa32017-01-04 20:23:54 +01001254 kcryptd_async_done, dmreq_of_req(cc, ctx->r.req));
Milan Brozddd42ed2008-02-08 02:11:07 +00001255}
1256
Milan Brozef43aa32017-01-04 20:23:54 +01001257static void crypt_alloc_req_aead(struct crypt_config *cc,
1258 struct convert_context *ctx)
1259{
1260 if (!ctx->r.req_aead)
1261 ctx->r.req_aead = mempool_alloc(cc->req_pool, GFP_NOIO);
1262
1263 aead_request_set_tfm(ctx->r.req_aead, cc->cipher_tfm.tfms_aead[0]);
1264
1265 /*
1266 * Use REQ_MAY_BACKLOG so a cipher driver internally backlogs
1267 * requests if driver request queue is full.
1268 */
1269 aead_request_set_callback(ctx->r.req_aead,
1270 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
1271 kcryptd_async_done, dmreq_of_req(cc, ctx->r.req_aead));
1272}
1273
1274static void crypt_alloc_req(struct crypt_config *cc,
1275 struct convert_context *ctx)
1276{
Milan Broz33d2f092017-03-16 15:39:40 +01001277 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001278 crypt_alloc_req_aead(cc, ctx);
1279 else
1280 crypt_alloc_req_skcipher(cc, ctx);
1281}
1282
1283static void crypt_free_req_skcipher(struct crypt_config *cc,
1284 struct skcipher_request *req, struct bio *base_bio)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001285{
1286 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
1287
Herbert Xubbdb23b2016-01-24 21:16:36 +08001288 if ((struct skcipher_request *)(io + 1) != req)
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001289 mempool_free(req, cc->req_pool);
1290}
1291
Milan Brozef43aa32017-01-04 20:23:54 +01001292static void crypt_free_req_aead(struct crypt_config *cc,
1293 struct aead_request *req, struct bio *base_bio)
1294{
1295 struct dm_crypt_io *io = dm_per_bio_data(base_bio, cc->per_bio_data_size);
1296
1297 if ((struct aead_request *)(io + 1) != req)
1298 mempool_free(req, cc->req_pool);
1299}
1300
1301static void crypt_free_req(struct crypt_config *cc, void *req, struct bio *base_bio)
1302{
Milan Broz33d2f092017-03-16 15:39:40 +01001303 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001304 crypt_free_req_aead(cc, req, base_bio);
1305 else
1306 crypt_free_req_skcipher(cc, req, base_bio);
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309/*
1310 * Encrypt / decrypt data from one bio to another one (can be the same one)
1311 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001312static blk_status_t crypt_convert(struct crypt_config *cc,
Milan Brozd469f842007-10-19 22:42:37 +01001313 struct convert_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Milan Brozef43aa32017-01-04 20:23:54 +01001315 unsigned int tag_offset = 0;
Mikulas Patockaff3af922017-03-23 10:23:14 -04001316 unsigned int sector_step = cc->sector_size >> SECTOR_SHIFT;
Milan Broz3f1e9072008-03-28 14:16:07 -07001317 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Mikulas Patocka40b62292012-07-27 15:08:04 +01001319 atomic_set(&ctx->cc_pending, 1);
Milan Brozc8081612008-10-10 13:37:08 +01001320
Kent Overstreet003b5c52013-10-11 15:45:43 -07001321 while (ctx->iter_in.bi_size && ctx->iter_out.bi_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Milan Broz3a7f6c92008-02-08 02:11:14 +00001323 crypt_alloc_req(cc, ctx);
Mikulas Patocka40b62292012-07-27 15:08:04 +01001324 atomic_inc(&ctx->cc_pending);
Milan Broz3f1e9072008-03-28 14:16:07 -07001325
Milan Broz33d2f092017-03-16 15:39:40 +01001326 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001327 r = crypt_convert_block_aead(cc, ctx, ctx->r.req_aead, tag_offset);
1328 else
1329 r = crypt_convert_block_skcipher(cc, ctx, ctx->r.req, tag_offset);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001330
1331 switch (r) {
Milan Broz54cea3f2015-05-15 17:00:25 +02001332 /*
1333 * The request was queued by a crypto driver
1334 * but the driver request queue is full, let's wait.
1335 */
Milan Broz3a7f6c92008-02-08 02:11:14 +00001336 case -EBUSY:
1337 wait_for_completion(&ctx->restart);
Wolfram Sang16735d02013-11-14 14:32:02 -08001338 reinit_completion(&ctx->restart);
Milan Broz54cea3f2015-05-15 17:00:25 +02001339 /* fall through */
1340 /*
1341 * The request is queued and processed asynchronously,
1342 * completion function kcryptd_async_done() will be called.
1343 */
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001344 case -EINPROGRESS:
Milan Brozef43aa32017-01-04 20:23:54 +01001345 ctx->r.req = NULL;
Milan Broz8f0009a2017-03-16 15:39:44 +01001346 ctx->cc_sector += sector_step;
Mikulas Patocka583fe742017-04-18 16:51:54 -04001347 tag_offset++;
Milan Broz3a7f6c92008-02-08 02:11:14 +00001348 continue;
Milan Broz54cea3f2015-05-15 17:00:25 +02001349 /*
1350 * The request was already processed (synchronously).
1351 */
Milan Broz3f1e9072008-03-28 14:16:07 -07001352 case 0:
Mikulas Patocka40b62292012-07-27 15:08:04 +01001353 atomic_dec(&ctx->cc_pending);
Milan Broz8f0009a2017-03-16 15:39:44 +01001354 ctx->cc_sector += sector_step;
Mikulas Patocka583fe742017-04-18 16:51:54 -04001355 tag_offset++;
Milan Brozc7f1b202008-07-02 09:34:28 +01001356 cond_resched();
Milan Broz3f1e9072008-03-28 14:16:07 -07001357 continue;
Milan Brozef43aa32017-01-04 20:23:54 +01001358 /*
1359 * There was a data integrity error.
1360 */
1361 case -EBADMSG:
1362 atomic_dec(&ctx->cc_pending);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001363 return BLK_STS_PROTECTION;
Milan Brozef43aa32017-01-04 20:23:54 +01001364 /*
1365 * There was an error while processing the request.
1366 */
Milan Broz3f1e9072008-03-28 14:16:07 -07001367 default:
Mikulas Patocka40b62292012-07-27 15:08:04 +01001368 atomic_dec(&ctx->cc_pending);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001369 return BLK_STS_IOERR;
Milan Broz3f1e9072008-03-28 14:16:07 -07001370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372
Milan Broz3f1e9072008-03-28 14:16:07 -07001373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001376static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378/*
1379 * Generate a new unfragmented bio with the given size
Mike Snitzer586b2862015-09-09 21:34:51 -04001380 * This should never violate the device limitations (but only because
1381 * max_segment_size is being constrained to PAGE_SIZE).
Mikulas Patocka7145c242015-02-13 08:24:41 -05001382 *
1383 * This function may be called concurrently. If we allocate from the mempool
1384 * concurrently, there is a possibility of deadlock. For example, if we have
1385 * mempool of 256 pages, two processes, each wanting 256, pages allocate from
1386 * the mempool concurrently, it may deadlock in a situation where both processes
1387 * have allocated 128 pages and the mempool is exhausted.
1388 *
1389 * In order to avoid this scenario we allocate the pages under a mutex.
1390 *
1391 * In order to not degrade performance with excessive locking, we try
1392 * non-blocking allocations without a mutex first but on failure we fallback
1393 * to blocking allocations with a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 */
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001395static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001397 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001398 struct bio *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Mikulas Patocka7145c242015-02-13 08:24:41 -05001400 gfp_t gfp_mask = GFP_NOWAIT | __GFP_HIGHMEM;
1401 unsigned i, len, remaining_size;
Milan Broz91e10622007-12-13 14:16:10 +00001402 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Mikulas Patocka7145c242015-02-13 08:24:41 -05001404retry:
Mel Gormand0164ad2015-11-06 16:28:21 -08001405 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
Mikulas Patocka7145c242015-02-13 08:24:41 -05001406 mutex_lock(&cc->bio_alloc_lock);
1407
Olaf Kirch2f9941b2007-05-09 02:32:53 -07001408 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
Milan Broz8b004452006-10-03 01:15:37 -07001409 if (!clone)
Milan Brozef43aa32017-01-04 20:23:54 +01001410 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Olaf Kirch027581f2007-05-09 02:32:52 -07001412 clone_init(io, clone);
Milan Broz6a24c712006-10-03 01:15:40 -07001413
Mikulas Patocka7145c242015-02-13 08:24:41 -05001414 remaining_size = size;
1415
Olaf Kirchf97380b2007-05-09 02:32:54 -07001416 for (i = 0; i < nr_iovecs; i++) {
Milan Broz91e10622007-12-13 14:16:10 +00001417 page = mempool_alloc(cc->page_pool, gfp_mask);
Mikulas Patocka7145c242015-02-13 08:24:41 -05001418 if (!page) {
1419 crypt_free_buffer_pages(cc, clone);
1420 bio_put(clone);
Mel Gormand0164ad2015-11-06 16:28:21 -08001421 gfp_mask |= __GFP_DIRECT_RECLAIM;
Mikulas Patocka7145c242015-02-13 08:24:41 -05001422 goto retry;
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Mikulas Patocka7145c242015-02-13 08:24:41 -05001425 len = (remaining_size > PAGE_SIZE) ? PAGE_SIZE : remaining_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Ming Lei0dae7fe2016-10-29 16:08:06 +08001427 bio_add_page(clone, page, len, 0);
Milan Broz91e10622007-12-13 14:16:10 +00001428
Mikulas Patocka7145c242015-02-13 08:24:41 -05001429 remaining_size -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
Milan Brozef43aa32017-01-04 20:23:54 +01001432 /* Allocate space for integrity tags */
1433 if (dm_crypt_integrity_io_alloc(io, clone)) {
1434 crypt_free_buffer_pages(cc, clone);
1435 bio_put(clone);
1436 clone = NULL;
1437 }
1438out:
Mel Gormand0164ad2015-11-06 16:28:21 -08001439 if (unlikely(gfp_mask & __GFP_DIRECT_RECLAIM))
Mikulas Patocka7145c242015-02-13 08:24:41 -05001440 mutex_unlock(&cc->bio_alloc_lock);
1441
Milan Broz8b004452006-10-03 01:15:37 -07001442 return clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
Neil Brown644bd2f2007-10-16 13:48:46 +02001445static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Neil Brown644bd2f2007-10-16 13:48:46 +02001447 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 struct bio_vec *bv;
1449
Kent Overstreetcb34e052012-09-05 15:22:02 -07001450 bio_for_each_segment_all(bv, clone, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 BUG_ON(!bv->bv_page);
1452 mempool_free(bv->bv_page, cc->page_pool);
1453 bv->bv_page = NULL;
1454 }
1455}
1456
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001457static void crypt_io_init(struct dm_crypt_io *io, struct crypt_config *cc,
1458 struct bio *bio, sector_t sector)
Milan Brozdc440d1e2008-10-10 13:37:03 +01001459{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001460 io->cc = cc;
Milan Brozdc440d1e2008-10-10 13:37:03 +01001461 io->base_bio = bio;
1462 io->sector = sector;
1463 io->error = 0;
Milan Brozef43aa32017-01-04 20:23:54 +01001464 io->ctx.r.req = NULL;
1465 io->integrity_metadata = NULL;
1466 io->integrity_metadata_from_pool = false;
Mikulas Patocka40b62292012-07-27 15:08:04 +01001467 atomic_set(&io->io_pending, 0);
Milan Brozdc440d1e2008-10-10 13:37:03 +01001468}
1469
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001470static void crypt_inc_pending(struct dm_crypt_io *io)
1471{
Mikulas Patocka40b62292012-07-27 15:08:04 +01001472 atomic_inc(&io->io_pending);
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001473}
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475/*
1476 * One of the bios was finished. Check for completion of
1477 * the whole request and correctly clean up the buffer.
1478 */
Milan Broz5742fd72008-02-08 02:10:43 +00001479static void crypt_dec_pending(struct dm_crypt_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001481 struct crypt_config *cc = io->cc;
Milan Brozb35f8ca2009-03-16 17:44:36 +00001482 struct bio *base_bio = io->base_bio;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001483 blk_status_t error = io->error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Mikulas Patocka40b62292012-07-27 15:08:04 +01001485 if (!atomic_dec_and_test(&io->io_pending))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return;
1487
Milan Brozef43aa32017-01-04 20:23:54 +01001488 if (io->ctx.r.req)
1489 crypt_free_req(cc, io->ctx.r.req, base_bio);
1490
1491 if (unlikely(io->integrity_metadata_from_pool))
1492 mempool_free(io->integrity_metadata, io->cc->tag_pool);
1493 else
1494 kfree(io->integrity_metadata);
Milan Brozb35f8ca2009-03-16 17:44:36 +00001495
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001496 base_bio->bi_status = error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001497 bio_endio(base_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500/*
Milan Brozcabf08e2007-10-19 22:38:58 +01001501 * kcryptd/kcryptd_io:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 *
1503 * Needed because it would be very unwise to do decryption in an
Milan Broz23541d22006-10-03 01:15:39 -07001504 * interrupt context.
Milan Brozcabf08e2007-10-19 22:38:58 +01001505 *
1506 * kcryptd performs the actual encryption or decryption.
1507 *
1508 * kcryptd_io performs the IO submission.
1509 *
1510 * They must be separated as otherwise the final stages could be
1511 * starved by new requests which can block in the first stages due
1512 * to memory allocation.
Andi Kleenc0297722011-01-13 19:59:53 +00001513 *
1514 * The work is done per CPU global for all dm-crypt instances.
1515 * They should not depend on each other and do not block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001517static void crypt_endio(struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -07001518{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001519 struct dm_crypt_io *io = clone->bi_private;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001520 struct crypt_config *cc = io->cc;
Milan Brozee7a4912008-02-08 02:10:46 +00001521 unsigned rw = bio_data_dir(clone);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001522 blk_status_t error;
Milan Broz8b004452006-10-03 01:15:37 -07001523
1524 /*
NeilBrown6712ecf2007-09-27 12:47:43 +02001525 * free the processed pages
Milan Broz8b004452006-10-03 01:15:37 -07001526 */
Milan Brozee7a4912008-02-08 02:10:46 +00001527 if (rw == WRITE)
Neil Brown644bd2f2007-10-16 13:48:46 +02001528 crypt_free_buffer_pages(cc, clone);
Milan Brozee7a4912008-02-08 02:10:46 +00001529
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001530 error = clone->bi_status;
Milan Brozee7a4912008-02-08 02:10:46 +00001531 bio_put(clone);
1532
Sasha Levin9b81c842015-08-10 19:05:18 -04001533 if (rw == READ && !error) {
Milan Brozee7a4912008-02-08 02:10:46 +00001534 kcryptd_queue_crypt(io);
1535 return;
NeilBrown6712ecf2007-09-27 12:47:43 +02001536 }
Milan Broz8b004452006-10-03 01:15:37 -07001537
Sasha Levin9b81c842015-08-10 19:05:18 -04001538 if (unlikely(error))
1539 io->error = error;
Milan Broz5742fd72008-02-08 02:10:43 +00001540
1541 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001542}
1543
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001544static void clone_init(struct dm_crypt_io *io, struct bio *clone)
Milan Broz8b004452006-10-03 01:15:37 -07001545{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001546 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001547
1548 clone->bi_private = io;
1549 clone->bi_end_io = crypt_endio;
1550 clone->bi_bdev = cc->dev->bdev;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001551 clone->bi_opf = io->base_bio->bi_opf;
Milan Broz8b004452006-10-03 01:15:37 -07001552}
1553
Milan Broz20c82532011-01-13 19:59:53 +00001554static int kcryptd_io_read(struct dm_crypt_io *io, gfp_t gfp)
Milan Broz8b004452006-10-03 01:15:37 -07001555{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001556 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001557 struct bio *clone;
Milan Broz93e605c2006-10-03 01:15:38 -07001558
Milan Broz8b004452006-10-03 01:15:37 -07001559 /*
Mike Snitzer59779072015-04-09 16:53:24 -04001560 * We need the original biovec array in order to decrypt
1561 * the whole bio data *afterwards* -- thanks to immutable
1562 * biovecs we don't need to worry about the block layer
1563 * modifying the biovec array; so leverage bio_clone_fast().
Milan Broz8b004452006-10-03 01:15:37 -07001564 */
Mike Snitzer59779072015-04-09 16:53:24 -04001565 clone = bio_clone_fast(io->base_bio, gfp, cc->bs);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001566 if (!clone)
Milan Broz20c82532011-01-13 19:59:53 +00001567 return 1;
Milan Broz8b004452006-10-03 01:15:37 -07001568
Milan Broz20c82532011-01-13 19:59:53 +00001569 crypt_inc_pending(io);
1570
Milan Broz8b004452006-10-03 01:15:37 -07001571 clone_init(io, clone);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001572 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz8b004452006-10-03 01:15:37 -07001573
Milan Brozef43aa32017-01-04 20:23:54 +01001574 if (dm_crypt_integrity_io_alloc(io, clone)) {
1575 crypt_dec_pending(io);
1576 bio_put(clone);
1577 return 1;
1578 }
1579
Milan Broz93e605c2006-10-03 01:15:38 -07001580 generic_make_request(clone);
Milan Broz20c82532011-01-13 19:59:53 +00001581 return 0;
Milan Broz8b004452006-10-03 01:15:37 -07001582}
1583
Mikulas Patockadc267622015-02-13 08:25:59 -05001584static void kcryptd_io_read_work(struct work_struct *work)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001585{
1586 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1587
Mikulas Patockadc267622015-02-13 08:25:59 -05001588 crypt_inc_pending(io);
1589 if (kcryptd_io_read(io, GFP_NOIO))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001590 io->error = BLK_STS_RESOURCE;
Mikulas Patockadc267622015-02-13 08:25:59 -05001591 crypt_dec_pending(io);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001592}
1593
Mikulas Patockadc267622015-02-13 08:25:59 -05001594static void kcryptd_queue_read(struct dm_crypt_io *io)
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001595{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001596 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001597
Mikulas Patockadc267622015-02-13 08:25:59 -05001598 INIT_WORK(&io->work, kcryptd_io_read_work);
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001599 queue_work(cc->io_queue, &io->work);
1600}
1601
Mikulas Patockadc267622015-02-13 08:25:59 -05001602static void kcryptd_io_write(struct dm_crypt_io *io)
1603{
1604 struct bio *clone = io->ctx.bio_out;
1605
1606 generic_make_request(clone);
1607}
1608
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001609#define crypt_io_from_node(node) rb_entry((node), struct dm_crypt_io, rb_node)
1610
Mikulas Patockadc267622015-02-13 08:25:59 -05001611static int dmcrypt_write(void *data)
1612{
1613 struct crypt_config *cc = data;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001614 struct dm_crypt_io *io;
1615
Mikulas Patockadc267622015-02-13 08:25:59 -05001616 while (1) {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001617 struct rb_root write_tree;
Mikulas Patockadc267622015-02-13 08:25:59 -05001618 struct blk_plug plug;
1619
1620 DECLARE_WAITQUEUE(wait, current);
1621
1622 spin_lock_irq(&cc->write_thread_wait.lock);
1623continue_locked:
1624
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001625 if (!RB_EMPTY_ROOT(&cc->write_tree))
Mikulas Patockadc267622015-02-13 08:25:59 -05001626 goto pop_from_list;
1627
Rabin Vincentf659b102016-09-21 16:22:29 +02001628 set_current_state(TASK_INTERRUPTIBLE);
Mikulas Patockadc267622015-02-13 08:25:59 -05001629 __add_wait_queue(&cc->write_thread_wait, &wait);
1630
1631 spin_unlock_irq(&cc->write_thread_wait.lock);
1632
Rabin Vincentf659b102016-09-21 16:22:29 +02001633 if (unlikely(kthread_should_stop())) {
Davidlohr Bueso642fa442017-01-03 13:43:14 -08001634 set_current_state(TASK_RUNNING);
Rabin Vincentf659b102016-09-21 16:22:29 +02001635 remove_wait_queue(&cc->write_thread_wait, &wait);
1636 break;
1637 }
1638
Mikulas Patockadc267622015-02-13 08:25:59 -05001639 schedule();
1640
Davidlohr Bueso642fa442017-01-03 13:43:14 -08001641 set_current_state(TASK_RUNNING);
Mikulas Patockadc267622015-02-13 08:25:59 -05001642 spin_lock_irq(&cc->write_thread_wait.lock);
1643 __remove_wait_queue(&cc->write_thread_wait, &wait);
1644 goto continue_locked;
1645
1646pop_from_list:
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001647 write_tree = cc->write_tree;
1648 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05001649 spin_unlock_irq(&cc->write_thread_wait.lock);
1650
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001651 BUG_ON(rb_parent(write_tree.rb_node));
1652
1653 /*
1654 * Note: we cannot walk the tree here with rb_next because
1655 * the structures may be freed when kcryptd_io_write is called.
1656 */
Mikulas Patockadc267622015-02-13 08:25:59 -05001657 blk_start_plug(&plug);
1658 do {
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001659 io = crypt_io_from_node(rb_first(&write_tree));
1660 rb_erase(&io->rb_node, &write_tree);
Mikulas Patockadc267622015-02-13 08:25:59 -05001661 kcryptd_io_write(io);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001662 } while (!RB_EMPTY_ROOT(&write_tree));
Mikulas Patockadc267622015-02-13 08:25:59 -05001663 blk_finish_plug(&plug);
1664 }
1665 return 0;
1666}
1667
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001668static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async)
Milan Broz4e4eef62008-02-08 02:10:49 +00001669{
Milan Brozdec1ced2008-02-08 02:10:57 +00001670 struct bio *clone = io->ctx.bio_out;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001671 struct crypt_config *cc = io->cc;
Mikulas Patockadc267622015-02-13 08:25:59 -05001672 unsigned long flags;
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001673 sector_t sector;
1674 struct rb_node **rbp, *parent;
Milan Brozdec1ced2008-02-08 02:10:57 +00001675
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001676 if (unlikely(io->error)) {
Milan Brozdec1ced2008-02-08 02:10:57 +00001677 crypt_free_buffer_pages(cc, clone);
1678 bio_put(clone);
Milan Broz6c031f42008-10-10 13:37:06 +01001679 crypt_dec_pending(io);
Milan Brozdec1ced2008-02-08 02:10:57 +00001680 return;
1681 }
1682
1683 /* crypt_convert should have filled the clone bio */
Kent Overstreet003b5c52013-10-11 15:45:43 -07001684 BUG_ON(io->ctx.iter_out.bi_size);
Milan Brozdec1ced2008-02-08 02:10:57 +00001685
Kent Overstreet4f024f32013-10-11 15:44:27 -07001686 clone->bi_iter.bi_sector = cc->start + io->sector;
Milan Broz899c95d2008-02-08 02:11:02 +00001687
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05001688 if (likely(!async) && test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags)) {
1689 generic_make_request(clone);
1690 return;
1691 }
1692
Mikulas Patockadc267622015-02-13 08:25:59 -05001693 spin_lock_irqsave(&cc->write_thread_wait.lock, flags);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05001694 rbp = &cc->write_tree.rb_node;
1695 parent = NULL;
1696 sector = io->sector;
1697 while (*rbp) {
1698 parent = *rbp;
1699 if (sector < crypt_io_from_node(parent)->sector)
1700 rbp = &(*rbp)->rb_left;
1701 else
1702 rbp = &(*rbp)->rb_right;
1703 }
1704 rb_link_node(&io->rb_node, parent, rbp);
1705 rb_insert_color(&io->rb_node, &cc->write_tree);
1706
Mikulas Patockadc267622015-02-13 08:25:59 -05001707 wake_up_locked(&cc->write_thread_wait);
1708 spin_unlock_irqrestore(&cc->write_thread_wait.lock, flags);
Milan Broz4e4eef62008-02-08 02:10:49 +00001709}
1710
Milan Brozfc5a5e92008-10-10 13:37:04 +01001711static void kcryptd_crypt_write_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001712{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001713 struct crypt_config *cc = io->cc;
Milan Broz8b004452006-10-03 01:15:37 -07001714 struct bio *clone;
Milan Brozc8081612008-10-10 13:37:08 +01001715 int crypt_finished;
Milan Brozb635b002008-10-21 17:45:00 +01001716 sector_t sector = io->sector;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001717 blk_status_t r;
Milan Broz8b004452006-10-03 01:15:37 -07001718
Milan Broz93e605c2006-10-03 01:15:38 -07001719 /*
Milan Brozfc5a5e92008-10-10 13:37:04 +01001720 * Prevent io from disappearing until this function completes.
1721 */
1722 crypt_inc_pending(io);
Milan Brozb635b002008-10-21 17:45:00 +01001723 crypt_convert_init(cc, &io->ctx, NULL, io->base_bio, sector);
Milan Brozfc5a5e92008-10-10 13:37:04 +01001724
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001725 clone = crypt_alloc_buffer(io, io->base_bio->bi_iter.bi_size);
1726 if (unlikely(!clone)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001727 io->error = BLK_STS_IOERR;
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001728 goto dec;
Milan Broz8b004452006-10-03 01:15:37 -07001729 }
Milan Broz899c95d2008-02-08 02:11:02 +00001730
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001731 io->ctx.bio_out = clone;
1732 io->ctx.iter_out = clone->bi_iter;
1733
1734 sector += bio_sectors(clone);
1735
1736 crypt_inc_pending(io);
1737 r = crypt_convert(cc, &io->ctx);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001738 if (r)
Milan Brozef43aa32017-01-04 20:23:54 +01001739 io->error = r;
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05001740 crypt_finished = atomic_dec_and_test(&io->ctx.cc_pending);
1741
1742 /* Encryption was already finished, submit io now */
1743 if (crypt_finished) {
1744 kcryptd_crypt_write_io_submit(io, 0);
1745 io->sector = sector;
1746 }
1747
1748dec:
Milan Broz899c95d2008-02-08 02:11:02 +00001749 crypt_dec_pending(io);
Milan Broz84131db2008-02-08 02:10:59 +00001750}
1751
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001752static void kcryptd_crypt_read_done(struct dm_crypt_io *io)
Milan Broz5742fd72008-02-08 02:10:43 +00001753{
Milan Broz5742fd72008-02-08 02:10:43 +00001754 crypt_dec_pending(io);
1755}
1756
Milan Broz4e4eef62008-02-08 02:10:49 +00001757static void kcryptd_crypt_read_convert(struct dm_crypt_io *io)
Milan Broz8b004452006-10-03 01:15:37 -07001758{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001759 struct crypt_config *cc = io->cc;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001760 blk_status_t r;
Milan Broz8b004452006-10-03 01:15:37 -07001761
Milan Broz3e1a8bd2008-10-10 13:37:02 +01001762 crypt_inc_pending(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001763
Milan Broz53017032008-02-08 02:10:38 +00001764 crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio,
Milan Broz0c395b02008-02-08 02:10:54 +00001765 io->sector);
Milan Broz8b004452006-10-03 01:15:37 -07001766
Milan Broz5742fd72008-02-08 02:10:43 +00001767 r = crypt_convert(cc, &io->ctx);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001768 if (r)
Milan Brozef43aa32017-01-04 20:23:54 +01001769 io->error = r;
Milan Broz5742fd72008-02-08 02:10:43 +00001770
Mikulas Patocka40b62292012-07-27 15:08:04 +01001771 if (atomic_dec_and_test(&io->ctx.cc_pending))
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001772 kcryptd_crypt_read_done(io);
Milan Broz3a7f6c92008-02-08 02:11:14 +00001773
1774 crypt_dec_pending(io);
Milan Broz8b004452006-10-03 01:15:37 -07001775}
1776
Milan Broz95497a92008-02-08 02:11:12 +00001777static void kcryptd_async_done(struct crypto_async_request *async_req,
1778 int error)
1779{
Huang Yingb2174ee2009-03-16 17:44:33 +00001780 struct dm_crypt_request *dmreq = async_req->data;
1781 struct convert_context *ctx = dmreq->ctx;
Milan Broz95497a92008-02-08 02:11:12 +00001782 struct dm_crypt_io *io = container_of(ctx, struct dm_crypt_io, ctx);
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001783 struct crypt_config *cc = io->cc;
Milan Broz95497a92008-02-08 02:11:12 +00001784
Milan Broz54cea3f2015-05-15 17:00:25 +02001785 /*
1786 * A request from crypto driver backlog is going to be processed now,
1787 * finish the completion and continue in crypt_convert().
1788 * (Callback will be called for the second time for this request.)
1789 */
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001790 if (error == -EINPROGRESS) {
1791 complete(&ctx->restart);
Milan Broz95497a92008-02-08 02:11:12 +00001792 return;
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001793 }
Milan Broz95497a92008-02-08 02:11:12 +00001794
Milan Broz2dc53272011-01-13 19:59:54 +00001795 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post)
Milan Brozef43aa32017-01-04 20:23:54 +01001796 error = cc->iv_gen_ops->post(cc, org_iv_of_dmreq(cc, dmreq), dmreq);
Milan Broz2dc53272011-01-13 19:59:54 +00001797
Milan Brozef43aa32017-01-04 20:23:54 +01001798 if (error == -EBADMSG) {
1799 DMERR_LIMIT("INTEGRITY AEAD ERROR, sector %llu",
1800 (unsigned long long)le64_to_cpu(*org_sector_of_dmreq(cc, dmreq)));
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001801 io->error = BLK_STS_PROTECTION;
Milan Brozef43aa32017-01-04 20:23:54 +01001802 } else if (error < 0)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001803 io->error = BLK_STS_IOERR;
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001804
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04001805 crypt_free_req(cc, req_of_dmreq(cc, dmreq), io->base_bio);
Milan Broz95497a92008-02-08 02:11:12 +00001806
Mikulas Patocka40b62292012-07-27 15:08:04 +01001807 if (!atomic_dec_and_test(&ctx->cc_pending))
Rabin Vincentc0403ec2015-05-05 15:15:56 +02001808 return;
Milan Broz95497a92008-02-08 02:11:12 +00001809
1810 if (bio_data_dir(io->base_bio) == READ)
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001811 kcryptd_crypt_read_done(io);
Milan Broz95497a92008-02-08 02:11:12 +00001812 else
Mikulas Patocka72c6e7a2012-03-28 18:41:22 +01001813 kcryptd_crypt_write_io_submit(io, 1);
Milan Broz95497a92008-02-08 02:11:12 +00001814}
1815
Milan Broz4e4eef62008-02-08 02:10:49 +00001816static void kcryptd_crypt(struct work_struct *work)
1817{
1818 struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work);
1819
1820 if (bio_data_dir(io->base_bio) == READ)
1821 kcryptd_crypt_read_convert(io);
1822 else
1823 kcryptd_crypt_write_convert(io);
Milan Broz8b004452006-10-03 01:15:37 -07001824}
1825
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001826static void kcryptd_queue_crypt(struct dm_crypt_io *io)
1827{
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01001828 struct crypt_config *cc = io->cc;
Alasdair G Kergon395b1672008-02-08 02:10:52 +00001829
1830 INIT_WORK(&io->work, kcryptd_crypt);
1831 queue_work(cc->crypt_queue, &io->work);
1832}
1833
Milan Brozef43aa32017-01-04 20:23:54 +01001834static void crypt_free_tfms_aead(struct crypt_config *cc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Milan Brozef43aa32017-01-04 20:23:54 +01001836 if (!cc->cipher_tfm.tfms_aead)
1837 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Milan Brozef43aa32017-01-04 20:23:54 +01001839 if (cc->cipher_tfm.tfms_aead[0] && !IS_ERR(cc->cipher_tfm.tfms_aead[0])) {
1840 crypto_free_aead(cc->cipher_tfm.tfms_aead[0]);
1841 cc->cipher_tfm.tfms_aead[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
Milan Brozef43aa32017-01-04 20:23:54 +01001844 kfree(cc->cipher_tfm.tfms_aead);
1845 cc->cipher_tfm.tfms_aead = NULL;
1846}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Milan Brozef43aa32017-01-04 20:23:54 +01001848static void crypt_free_tfms_skcipher(struct crypt_config *cc)
Milan Brozd1f96422011-01-13 19:59:54 +00001849{
Milan Brozd1f96422011-01-13 19:59:54 +00001850 unsigned i;
1851
Milan Brozef43aa32017-01-04 20:23:54 +01001852 if (!cc->cipher_tfm.tfms)
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001853 return;
1854
Milan Brozd1f96422011-01-13 19:59:54 +00001855 for (i = 0; i < cc->tfms_count; i++)
Milan Brozef43aa32017-01-04 20:23:54 +01001856 if (cc->cipher_tfm.tfms[i] && !IS_ERR(cc->cipher_tfm.tfms[i])) {
1857 crypto_free_skcipher(cc->cipher_tfm.tfms[i]);
1858 cc->cipher_tfm.tfms[i] = NULL;
Milan Brozd1f96422011-01-13 19:59:54 +00001859 }
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001860
Milan Brozef43aa32017-01-04 20:23:54 +01001861 kfree(cc->cipher_tfm.tfms);
1862 cc->cipher_tfm.tfms = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
1865static void crypt_free_tfms(struct crypt_config *cc)
1866{
Milan Broz33d2f092017-03-16 15:39:40 +01001867 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001868 crypt_free_tfms_aead(cc);
1869 else
1870 crypt_free_tfms_skcipher(cc);
Milan Brozd1f96422011-01-13 19:59:54 +00001871}
1872
Milan Brozef43aa32017-01-04 20:23:54 +01001873static int crypt_alloc_tfms_skcipher(struct crypt_config *cc, char *ciphermode)
Milan Brozd1f96422011-01-13 19:59:54 +00001874{
Milan Brozd1f96422011-01-13 19:59:54 +00001875 unsigned i;
1876 int err;
1877
Milan Brozef43aa32017-01-04 20:23:54 +01001878 cc->cipher_tfm.tfms = kzalloc(cc->tfms_count *
1879 sizeof(struct crypto_skcipher *), GFP_KERNEL);
1880 if (!cc->cipher_tfm.tfms)
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001881 return -ENOMEM;
1882
Milan Brozd1f96422011-01-13 19:59:54 +00001883 for (i = 0; i < cc->tfms_count; i++) {
Milan Brozef43aa32017-01-04 20:23:54 +01001884 cc->cipher_tfm.tfms[i] = crypto_alloc_skcipher(ciphermode, 0, 0);
1885 if (IS_ERR(cc->cipher_tfm.tfms[i])) {
1886 err = PTR_ERR(cc->cipher_tfm.tfms[i]);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001887 crypt_free_tfms(cc);
Milan Brozd1f96422011-01-13 19:59:54 +00001888 return err;
1889 }
1890 }
1891
1892 return 0;
1893}
1894
Milan Brozef43aa32017-01-04 20:23:54 +01001895static int crypt_alloc_tfms_aead(struct crypt_config *cc, char *ciphermode)
1896{
Milan Brozef43aa32017-01-04 20:23:54 +01001897 int err;
1898
1899 cc->cipher_tfm.tfms = kmalloc(sizeof(struct crypto_aead *), GFP_KERNEL);
1900 if (!cc->cipher_tfm.tfms)
1901 return -ENOMEM;
1902
Milan Brozef43aa32017-01-04 20:23:54 +01001903 cc->cipher_tfm.tfms_aead[0] = crypto_alloc_aead(ciphermode, 0, 0);
1904 if (IS_ERR(cc->cipher_tfm.tfms_aead[0])) {
1905 err = PTR_ERR(cc->cipher_tfm.tfms_aead[0]);
1906 crypt_free_tfms(cc);
1907 return err;
1908 }
1909
Milan Brozef43aa32017-01-04 20:23:54 +01001910 return 0;
1911}
1912
1913static int crypt_alloc_tfms(struct crypt_config *cc, char *ciphermode)
1914{
Milan Broz33d2f092017-03-16 15:39:40 +01001915 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001916 return crypt_alloc_tfms_aead(cc, ciphermode);
1917 else
1918 return crypt_alloc_tfms_skcipher(cc, ciphermode);
1919}
1920
1921static unsigned crypt_subkey_size(struct crypt_config *cc)
1922{
1923 return (cc->key_size - cc->key_extra_size) >> ilog2(cc->tfms_count);
1924}
1925
1926static unsigned crypt_authenckey_size(struct crypt_config *cc)
1927{
1928 return crypt_subkey_size(cc) + RTA_SPACE(sizeof(struct crypto_authenc_key_param));
1929}
1930
1931/*
1932 * If AEAD is composed like authenc(hmac(sha256),xts(aes)),
1933 * the key must be for some reason in special format.
1934 * This funcion converts cc->key to this special format.
1935 */
1936static void crypt_copy_authenckey(char *p, const void *key,
1937 unsigned enckeylen, unsigned authkeylen)
1938{
1939 struct crypto_authenc_key_param *param;
1940 struct rtattr *rta;
1941
1942 rta = (struct rtattr *)p;
1943 param = RTA_DATA(rta);
1944 param->enckeylen = cpu_to_be32(enckeylen);
1945 rta->rta_len = RTA_LENGTH(sizeof(*param));
1946 rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
1947 p += RTA_SPACE(sizeof(*param));
1948 memcpy(p, key + enckeylen, authkeylen);
1949 p += authkeylen;
1950 memcpy(p, key, enckeylen);
1951}
1952
Mikulas Patocka671ea6b2016-08-25 07:12:54 -04001953static int crypt_setkey(struct crypt_config *cc)
Andi Kleenc0297722011-01-13 19:59:53 +00001954{
Milan Brozda31a072013-10-28 23:21:03 +01001955 unsigned subkey_size;
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001956 int err = 0, i, r;
Andi Kleenc0297722011-01-13 19:59:53 +00001957
Milan Brozda31a072013-10-28 23:21:03 +01001958 /* Ignore extra keys (which are used for IV etc) */
Milan Brozef43aa32017-01-04 20:23:54 +01001959 subkey_size = crypt_subkey_size(cc);
Milan Brozda31a072013-10-28 23:21:03 +01001960
Milan Brozef43aa32017-01-04 20:23:54 +01001961 if (crypt_integrity_hmac(cc))
1962 crypt_copy_authenckey(cc->authenc_key, cc->key,
1963 subkey_size - cc->key_mac_size,
1964 cc->key_mac_size);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001965 for (i = 0; i < cc->tfms_count; i++) {
Milan Broz33d2f092017-03-16 15:39:40 +01001966 if (crypt_integrity_hmac(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01001967 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i],
1968 cc->authenc_key, crypt_authenckey_size(cc));
Milan Broz33d2f092017-03-16 15:39:40 +01001969 else if (crypt_integrity_aead(cc))
1970 r = crypto_aead_setkey(cc->cipher_tfm.tfms_aead[i],
1971 cc->key + (i * subkey_size),
1972 subkey_size);
Milan Brozef43aa32017-01-04 20:23:54 +01001973 else
1974 r = crypto_skcipher_setkey(cc->cipher_tfm.tfms[i],
1975 cc->key + (i * subkey_size),
1976 subkey_size);
Mikulas Patockafd2d2312012-07-27 15:08:05 +01001977 if (r)
1978 err = r;
Andi Kleenc0297722011-01-13 19:59:53 +00001979 }
1980
Milan Brozef43aa32017-01-04 20:23:54 +01001981 if (crypt_integrity_hmac(cc))
1982 memzero_explicit(cc->authenc_key, crypt_authenckey_size(cc));
1983
Andi Kleenc0297722011-01-13 19:59:53 +00001984 return err;
1985}
1986
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01001987#ifdef CONFIG_KEYS
1988
Ondrej Kozina027c4312016-12-01 18:20:52 +01001989static bool contains_whitespace(const char *str)
1990{
1991 while (*str)
1992 if (isspace(*str++))
1993 return true;
1994 return false;
1995}
1996
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01001997static int crypt_set_keyring_key(struct crypt_config *cc, const char *key_string)
1998{
1999 char *new_key_string, *key_desc;
2000 int ret;
2001 struct key *key;
2002 const struct user_key_payload *ukp;
2003
Ondrej Kozina027c4312016-12-01 18:20:52 +01002004 /*
2005 * Reject key_string with whitespace. dm core currently lacks code for
2006 * proper whitespace escaping in arguments on DM_TABLE_STATUS path.
2007 */
2008 if (contains_whitespace(key_string)) {
2009 DMERR("whitespace chars not allowed in key string");
2010 return -EINVAL;
2011 }
2012
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002013 /* look for next ':' separating key_type from key_description */
2014 key_desc = strpbrk(key_string, ":");
2015 if (!key_desc || key_desc == key_string || !strlen(key_desc + 1))
2016 return -EINVAL;
2017
2018 if (strncmp(key_string, "logon:", key_desc - key_string + 1) &&
2019 strncmp(key_string, "user:", key_desc - key_string + 1))
2020 return -EINVAL;
2021
2022 new_key_string = kstrdup(key_string, GFP_KERNEL);
2023 if (!new_key_string)
2024 return -ENOMEM;
2025
2026 key = request_key(key_string[0] == 'l' ? &key_type_logon : &key_type_user,
2027 key_desc + 1, NULL);
2028 if (IS_ERR(key)) {
2029 kzfree(new_key_string);
2030 return PTR_ERR(key);
2031 }
2032
Ondrej Kozinaf5b0cba2017-01-31 15:47:11 +01002033 down_read(&key->sem);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002034
David Howells0837e492017-03-01 15:11:23 +00002035 ukp = user_key_payload_locked(key);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002036 if (!ukp) {
Ondrej Kozinaf5b0cba2017-01-31 15:47:11 +01002037 up_read(&key->sem);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002038 key_put(key);
2039 kzfree(new_key_string);
2040 return -EKEYREVOKED;
2041 }
2042
2043 if (cc->key_size != ukp->datalen) {
Ondrej Kozinaf5b0cba2017-01-31 15:47:11 +01002044 up_read(&key->sem);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002045 key_put(key);
2046 kzfree(new_key_string);
2047 return -EINVAL;
2048 }
2049
2050 memcpy(cc->key, ukp->data, cc->key_size);
2051
Ondrej Kozinaf5b0cba2017-01-31 15:47:11 +01002052 up_read(&key->sem);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002053 key_put(key);
2054
2055 /* clear the flag since following operations may invalidate previously valid key */
2056 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
2057
2058 ret = crypt_setkey(cc);
2059
2060 /* wipe the kernel key payload copy in each case */
2061 memset(cc->key, 0, cc->key_size * sizeof(u8));
2062
2063 if (!ret) {
2064 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
2065 kzfree(cc->key_string);
2066 cc->key_string = new_key_string;
2067 } else
2068 kzfree(new_key_string);
2069
2070 return ret;
2071}
2072
2073static int get_key_size(char **key_string)
2074{
2075 char *colon, dummy;
2076 int ret;
2077
2078 if (*key_string[0] != ':')
2079 return strlen(*key_string) >> 1;
2080
2081 /* look for next ':' in key string */
2082 colon = strpbrk(*key_string + 1, ":");
2083 if (!colon)
2084 return -EINVAL;
2085
2086 if (sscanf(*key_string + 1, "%u%c", &ret, &dummy) != 2 || dummy != ':')
2087 return -EINVAL;
2088
2089 *key_string = colon;
2090
2091 /* remaining key string should be :<logon|user>:<key_desc> */
2092
2093 return ret;
2094}
2095
2096#else
2097
2098static int crypt_set_keyring_key(struct crypt_config *cc, const char *key_string)
2099{
2100 return -EINVAL;
2101}
2102
2103static int get_key_size(char **key_string)
2104{
2105 return (*key_string[0] == ':') ? -EINVAL : strlen(*key_string) >> 1;
2106}
2107
2108#endif
2109
Milan Broze48d4bb2006-10-03 01:15:37 -07002110static int crypt_set_key(struct crypt_config *cc, char *key)
2111{
Milan Brozde8be5a2011-03-24 13:54:27 +00002112 int r = -EINVAL;
2113 int key_string_len = strlen(key);
2114
Milan Broz69a8cfc2011-01-13 19:59:49 +00002115 /* Hyphen (which gives a key_size of zero) means there is no key. */
2116 if (!cc->key_size && strcmp(key, "-"))
Milan Brozde8be5a2011-03-24 13:54:27 +00002117 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07002118
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002119 /* ':' means the key is in kernel keyring, short-circuit normal key processing */
2120 if (key[0] == ':') {
2121 r = crypt_set_keyring_key(cc, key + 1);
2122 goto out;
2123 }
2124
Ondrej Kozina265e9092016-11-02 15:02:08 +01002125 /* clear the flag since following operations may invalidate previously valid key */
2126 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
2127
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002128 /* wipe references to any kernel keyring key */
2129 kzfree(cc->key_string);
2130 cc->key_string = NULL;
2131
Andy Shevchenkoe944e032017-04-27 16:52:04 +03002132 /* Decode key from its hex representation. */
2133 if (cc->key_size && hex2bin(cc->key, key, cc->key_size) < 0)
Milan Brozde8be5a2011-03-24 13:54:27 +00002134 goto out;
Milan Broze48d4bb2006-10-03 01:15:37 -07002135
Mikulas Patocka671ea6b2016-08-25 07:12:54 -04002136 r = crypt_setkey(cc);
Ondrej Kozina265e9092016-11-02 15:02:08 +01002137 if (!r)
2138 set_bit(DM_CRYPT_KEY_VALID, &cc->flags);
Milan Brozde8be5a2011-03-24 13:54:27 +00002139
2140out:
2141 /* Hex key string not needed after here, so wipe it. */
2142 memset(key, '0', key_string_len);
2143
2144 return r;
Milan Broze48d4bb2006-10-03 01:15:37 -07002145}
2146
2147static int crypt_wipe_key(struct crypt_config *cc)
2148{
Ondrej Kozinac82feee2017-04-24 14:21:53 +02002149 int r;
2150
Milan Broze48d4bb2006-10-03 01:15:37 -07002151 clear_bit(DM_CRYPT_KEY_VALID, &cc->flags);
Ondrej Kozinac82feee2017-04-24 14:21:53 +02002152 get_random_bytes(&cc->key, cc->key_size);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002153 kzfree(cc->key_string);
2154 cc->key_string = NULL;
Ondrej Kozinac82feee2017-04-24 14:21:53 +02002155 r = crypt_setkey(cc);
2156 memset(&cc->key, 0, cc->key_size * sizeof(u8));
Andi Kleenc0297722011-01-13 19:59:53 +00002157
Ondrej Kozinac82feee2017-04-24 14:21:53 +02002158 return r;
Milan Broze48d4bb2006-10-03 01:15:37 -07002159}
2160
Milan Broz28513fc2010-08-12 04:14:06 +01002161static void crypt_dtr(struct dm_target *ti)
2162{
2163 struct crypt_config *cc = ti->private;
2164
2165 ti->private = NULL;
2166
2167 if (!cc)
2168 return;
2169
Rabin Vincentf659b102016-09-21 16:22:29 +02002170 if (cc->write_thread)
Mikulas Patockadc267622015-02-13 08:25:59 -05002171 kthread_stop(cc->write_thread);
2172
Milan Broz28513fc2010-08-12 04:14:06 +01002173 if (cc->io_queue)
2174 destroy_workqueue(cc->io_queue);
2175 if (cc->crypt_queue)
2176 destroy_workqueue(cc->crypt_queue);
2177
Mikulas Patockafd2d2312012-07-27 15:08:05 +01002178 crypt_free_tfms(cc);
2179
Milan Broz28513fc2010-08-12 04:14:06 +01002180 if (cc->bs)
2181 bioset_free(cc->bs);
2182
Julia Lawall6f659852015-09-13 14:15:05 +02002183 mempool_destroy(cc->page_pool);
2184 mempool_destroy(cc->req_pool);
Milan Brozef43aa32017-01-04 20:23:54 +01002185 mempool_destroy(cc->tag_pool);
Milan Broz28513fc2010-08-12 04:14:06 +01002186
2187 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr)
2188 cc->iv_gen_ops->dtr(cc);
2189
Milan Broz28513fc2010-08-12 04:14:06 +01002190 if (cc->dev)
2191 dm_put_device(ti, cc->dev);
2192
Milan Broz5ebaee62010-08-12 04:14:07 +01002193 kzfree(cc->cipher);
Milan Broz7dbcd132011-01-13 19:59:52 +00002194 kzfree(cc->cipher_string);
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002195 kzfree(cc->key_string);
Milan Brozef43aa32017-01-04 20:23:54 +01002196 kzfree(cc->cipher_auth);
2197 kzfree(cc->authenc_key);
Milan Broz28513fc2010-08-12 04:14:06 +01002198
2199 /* Must zero key material before freeing */
2200 kzfree(cc);
2201}
2202
Milan Broze889f972017-03-16 15:39:39 +01002203static int crypt_ctr_ivmode(struct dm_target *ti, const char *ivmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
Milan Broz5ebaee62010-08-12 04:14:07 +01002205 struct crypt_config *cc = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Milan Broz33d2f092017-03-16 15:39:40 +01002207 if (crypt_integrity_aead(cc))
Milan Broze889f972017-03-16 15:39:39 +01002208 cc->iv_size = crypto_aead_ivsize(any_tfm_aead(cc));
2209 else
2210 cc->iv_size = crypto_skcipher_ivsize(any_tfm(cc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Milan Broz5ebaee62010-08-12 04:14:07 +01002212 if (cc->iv_size)
2213 /* at least a 64 bit sector number should fit in our buffer */
2214 cc->iv_size = max(cc->iv_size,
2215 (unsigned int)(sizeof(u64) / sizeof(u8)));
2216 else if (ivmode) {
2217 DMWARN("Selected cipher does not support IVs");
2218 ivmode = NULL;
2219 }
2220
2221 /* Choose ivmode, see comments at iv code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (ivmode == NULL)
2223 cc->iv_gen_ops = NULL;
2224 else if (strcmp(ivmode, "plain") == 0)
2225 cc->iv_gen_ops = &crypt_iv_plain_ops;
Milan Broz61afef62009-12-10 23:52:25 +00002226 else if (strcmp(ivmode, "plain64") == 0)
2227 cc->iv_gen_ops = &crypt_iv_plain64_ops;
Milan Broz7e3fd852017-06-06 09:07:01 +02002228 else if (strcmp(ivmode, "plain64be") == 0)
2229 cc->iv_gen_ops = &crypt_iv_plain64be_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 else if (strcmp(ivmode, "essiv") == 0)
2231 cc->iv_gen_ops = &crypt_iv_essiv_ops;
Rik Snel48527fa2006-09-03 08:56:39 +10002232 else if (strcmp(ivmode, "benbi") == 0)
2233 cc->iv_gen_ops = &crypt_iv_benbi_ops;
Ludwig Nussel46b47732007-05-09 02:32:55 -07002234 else if (strcmp(ivmode, "null") == 0)
2235 cc->iv_gen_ops = &crypt_iv_null_ops;
Milan Broz34745782011-01-13 19:59:55 +00002236 else if (strcmp(ivmode, "lmk") == 0) {
2237 cc->iv_gen_ops = &crypt_iv_lmk_ops;
Milan Brozed04d982013-10-28 23:21:04 +01002238 /*
2239 * Version 2 and 3 is recognised according
Milan Broz34745782011-01-13 19:59:55 +00002240 * to length of provided multi-key string.
2241 * If present (version 3), last key is used as IV seed.
Milan Brozed04d982013-10-28 23:21:04 +01002242 * All keys (including IV seed) are always the same size.
Milan Broz34745782011-01-13 19:59:55 +00002243 */
Milan Brozda31a072013-10-28 23:21:03 +01002244 if (cc->key_size % cc->key_parts) {
Milan Broz34745782011-01-13 19:59:55 +00002245 cc->key_parts++;
Milan Brozda31a072013-10-28 23:21:03 +01002246 cc->key_extra_size = cc->key_size / cc->key_parts;
2247 }
Milan Brozed04d982013-10-28 23:21:04 +01002248 } else if (strcmp(ivmode, "tcw") == 0) {
2249 cc->iv_gen_ops = &crypt_iv_tcw_ops;
2250 cc->key_parts += 2; /* IV + whitening */
2251 cc->key_extra_size = cc->iv_size + TCW_WHITENING_SIZE;
Milan Broze889f972017-03-16 15:39:39 +01002252 } else if (strcmp(ivmode, "random") == 0) {
2253 cc->iv_gen_ops = &crypt_iv_random_ops;
2254 /* Need storage space in integrity fields. */
2255 cc->integrity_iv_size = cc->iv_size;
Milan Broz34745782011-01-13 19:59:55 +00002256 } else {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002257 ti->error = "Invalid IV mode";
Milan Broze889f972017-03-16 15:39:39 +01002258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
2260
Milan Broze889f972017-03-16 15:39:39 +01002261 return 0;
2262}
2263
Milan Broz33d2f092017-03-16 15:39:40 +01002264/*
2265 * Workaround to parse cipher algorithm from crypto API spec.
2266 * The cc->cipher is currently used only in ESSIV.
2267 * This should be probably done by crypto-api calls (once available...)
2268 */
2269static int crypt_ctr_blkdev_cipher(struct crypt_config *cc)
2270{
2271 const char *alg_name = NULL;
2272 char *start, *end;
2273
2274 if (crypt_integrity_aead(cc)) {
2275 alg_name = crypto_tfm_alg_name(crypto_aead_tfm(any_tfm_aead(cc)));
2276 if (!alg_name)
2277 return -EINVAL;
2278 if (crypt_integrity_hmac(cc)) {
2279 alg_name = strchr(alg_name, ',');
2280 if (!alg_name)
2281 return -EINVAL;
2282 }
2283 alg_name++;
2284 } else {
2285 alg_name = crypto_tfm_alg_name(crypto_skcipher_tfm(any_tfm(cc)));
2286 if (!alg_name)
2287 return -EINVAL;
2288 }
2289
2290 start = strchr(alg_name, '(');
2291 end = strchr(alg_name, ')');
2292
2293 if (!start && !end) {
2294 cc->cipher = kstrdup(alg_name, GFP_KERNEL);
2295 return cc->cipher ? 0 : -ENOMEM;
2296 }
2297
2298 if (!start || !end || ++start >= end)
2299 return -EINVAL;
2300
2301 cc->cipher = kzalloc(end - start + 1, GFP_KERNEL);
2302 if (!cc->cipher)
2303 return -ENOMEM;
2304
2305 strncpy(cc->cipher, start, end - start);
2306
2307 return 0;
2308}
2309
2310/*
2311 * Workaround to parse HMAC algorithm from AEAD crypto API spec.
2312 * The HMAC is needed to calculate tag size (HMAC digest size).
2313 * This should be probably done by crypto-api calls (once available...)
2314 */
2315static int crypt_ctr_auth_cipher(struct crypt_config *cc, char *cipher_api)
2316{
2317 char *start, *end, *mac_alg = NULL;
2318 struct crypto_ahash *mac;
2319
2320 if (!strstarts(cipher_api, "authenc("))
2321 return 0;
2322
2323 start = strchr(cipher_api, '(');
2324 end = strchr(cipher_api, ',');
2325 if (!start || !end || ++start > end)
2326 return -EINVAL;
2327
2328 mac_alg = kzalloc(end - start + 1, GFP_KERNEL);
2329 if (!mac_alg)
2330 return -ENOMEM;
2331 strncpy(mac_alg, start, end - start);
2332
2333 mac = crypto_alloc_ahash(mac_alg, 0, 0);
2334 kfree(mac_alg);
2335
2336 if (IS_ERR(mac))
2337 return PTR_ERR(mac);
2338
2339 cc->key_mac_size = crypto_ahash_digestsize(mac);
2340 crypto_free_ahash(mac);
2341
2342 cc->authenc_key = kmalloc(crypt_authenckey_size(cc), GFP_KERNEL);
2343 if (!cc->authenc_key)
2344 return -ENOMEM;
2345
2346 return 0;
2347}
2348
2349static int crypt_ctr_cipher_new(struct dm_target *ti, char *cipher_in, char *key,
2350 char **ivmode, char **ivopts)
Milan Broz5ebaee62010-08-12 04:14:07 +01002351{
2352 struct crypt_config *cc = ti->private;
Milan Broz33d2f092017-03-16 15:39:40 +01002353 char *tmp, *cipher_api;
2354 int ret = -EINVAL;
2355
2356 cc->tfms_count = 1;
2357
2358 /*
2359 * New format (capi: prefix)
2360 * capi:cipher_api_spec-iv:ivopts
2361 */
2362 tmp = &cipher_in[strlen("capi:")];
2363 cipher_api = strsep(&tmp, "-");
2364 *ivmode = strsep(&tmp, ":");
2365 *ivopts = tmp;
2366
2367 if (*ivmode && !strcmp(*ivmode, "lmk"))
2368 cc->tfms_count = 64;
2369
2370 cc->key_parts = cc->tfms_count;
2371
2372 /* Allocate cipher */
2373 ret = crypt_alloc_tfms(cc, cipher_api);
2374 if (ret < 0) {
2375 ti->error = "Error allocating crypto tfm";
2376 return ret;
2377 }
2378
2379 /* Alloc AEAD, can be used only in new format. */
2380 if (crypt_integrity_aead(cc)) {
2381 ret = crypt_ctr_auth_cipher(cc, cipher_api);
2382 if (ret < 0) {
2383 ti->error = "Invalid AEAD cipher spec";
2384 return -ENOMEM;
2385 }
2386 cc->iv_size = crypto_aead_ivsize(any_tfm_aead(cc));
2387 } else
2388 cc->iv_size = crypto_skcipher_ivsize(any_tfm(cc));
2389
2390 ret = crypt_ctr_blkdev_cipher(cc);
2391 if (ret < 0) {
2392 ti->error = "Cannot allocate cipher string";
2393 return -ENOMEM;
2394 }
2395
2396 return 0;
2397}
2398
2399static int crypt_ctr_cipher_old(struct dm_target *ti, char *cipher_in, char *key,
2400 char **ivmode, char **ivopts)
2401{
2402 struct crypt_config *cc = ti->private;
2403 char *tmp, *cipher, *chainmode, *keycount;
Milan Broz5ebaee62010-08-12 04:14:07 +01002404 char *cipher_api = NULL;
2405 int ret = -EINVAL;
2406 char dummy;
2407
Milan Broz33d2f092017-03-16 15:39:40 +01002408 if (strchr(cipher_in, '(') || crypt_integrity_aead(cc)) {
Milan Broz5ebaee62010-08-12 04:14:07 +01002409 ti->error = "Bad cipher specification";
2410 return -EINVAL;
2411 }
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 /*
Milan Broz5ebaee62010-08-12 04:14:07 +01002414 * Legacy dm-crypt cipher specification
2415 * cipher[:keycount]-mode-iv:ivopts
2416 */
2417 tmp = cipher_in;
2418 keycount = strsep(&tmp, "-");
2419 cipher = strsep(&keycount, ":");
2420
Milan Broz69a8cfc2011-01-13 19:59:49 +00002421 if (!keycount)
Milan Broz5ebaee62010-08-12 04:14:07 +01002422 cc->tfms_count = 1;
2423 else if (sscanf(keycount, "%u%c", &cc->tfms_count, &dummy) != 1 ||
2424 !is_power_of_2(cc->tfms_count)) {
2425 ti->error = "Bad cipher key count specification";
2426 return -EINVAL;
2427 }
Milan Broz28513fc2010-08-12 04:14:06 +01002428 cc->key_parts = cc->tfms_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002430 cc->cipher = kstrdup(cipher, GFP_KERNEL);
Milan Broz28513fc2010-08-12 04:14:06 +01002431 if (!cc->cipher)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 goto bad_mem;
2433
Milan Brozddd42ed2008-02-08 02:11:07 +00002434 chainmode = strsep(&tmp, "-");
Milan Broz33d2f092017-03-16 15:39:40 +01002435 *ivopts = strsep(&tmp, "-");
2436 *ivmode = strsep(&*ivopts, ":");
Andi Kleenc0297722011-01-13 19:59:53 +00002437
Milan Broz3a7f6c92008-02-08 02:11:14 +00002438 if (tmp)
Milan Brozddd42ed2008-02-08 02:11:07 +00002439 DMWARN("Ignoring unexpected additional cipher options");
2440
2441 /*
2442 * For compatibility with the original dm-crypt mapping format, if
2443 * only the cipher name is supplied, use cbc-plain.
Milan Broz28513fc2010-08-12 04:14:06 +01002444 */
Milan Broz33d2f092017-03-16 15:39:40 +01002445 if (!chainmode || (!strcmp(chainmode, "plain") && !*ivmode)) {
Milan Brozcabf08e2007-10-19 22:38:58 +01002446 chainmode = "cbc";
Milan Broz33d2f092017-03-16 15:39:40 +01002447 *ivmode = "plain";
Milan Brozcabf08e2007-10-19 22:38:58 +01002448 }
2449
Milan Broz33d2f092017-03-16 15:39:40 +01002450 if (strcmp(chainmode, "ecb") && !*ivmode) {
Andi Kleenc0297722011-01-13 19:59:53 +00002451 ti->error = "IV mechanism required";
2452 return -EINVAL;
2453 }
2454
Milan Brozcabf08e2007-10-19 22:38:58 +01002455 cipher_api = kmalloc(CRYPTO_MAX_ALG_NAME, GFP_KERNEL);
Milan Broz9934a8b2007-10-19 22:38:57 +01002456 if (!cipher_api)
Milan Broz28513fc2010-08-12 04:14:06 +01002457 goto bad_mem;
Milan Broz9934a8b2007-10-19 22:38:57 +01002458
2459 ret = snprintf(cipher_api, CRYPTO_MAX_ALG_NAME,
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002460 "%s(%s)", chainmode, cipher);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (ret < 0) {
2462 kfree(cipher_api);
Milan Broz28513fc2010-08-12 04:14:06 +01002463 goto bad_mem;
2464 }
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 /* Allocate cipher */
2467 ret = crypt_alloc_tfms(cc, cipher_api);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (ret < 0) {
2469 ti->error = "Error allocating crypto tfm";
Milan Broz33d2f092017-03-16 15:39:40 +01002470 kfree(cipher_api);
2471 return ret;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002472 }
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002473
Milan Broz33d2f092017-03-16 15:39:40 +01002474 return 0;
2475bad_mem:
2476 ti->error = "Cannot allocate cipher strings";
2477 return -ENOMEM;
2478}
2479
2480static int crypt_ctr_cipher(struct dm_target *ti, char *cipher_in, char *key)
2481{
2482 struct crypt_config *cc = ti->private;
2483 char *ivmode = NULL, *ivopts = NULL;
2484 int ret;
2485
2486 cc->cipher_string = kstrdup(cipher_in, GFP_KERNEL);
2487 if (!cc->cipher_string) {
2488 ti->error = "Cannot allocate cipher strings";
2489 return -ENOMEM;
2490 }
2491
2492 if (strstarts(cipher_in, "capi:"))
2493 ret = crypt_ctr_cipher_new(ti, cipher_in, key, &ivmode, &ivopts);
2494 else
2495 ret = crypt_ctr_cipher_old(ti, cipher_in, key, &ivmode, &ivopts);
2496 if (ret)
2497 return ret;
2498
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002499 /* Initialize IV */
Milan Broze889f972017-03-16 15:39:39 +01002500 ret = crypt_ctr_ivmode(ti, ivmode);
2501 if (ret < 0)
Milan Broz33d2f092017-03-16 15:39:40 +01002502 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Milan Brozda31a072013-10-28 23:21:03 +01002504 /* Initialize and set key */
2505 ret = crypt_set_key(cc, key);
2506 if (ret < 0) {
2507 ti->error = "Error decoding and setting key";
Milan Broz33d2f092017-03-16 15:39:40 +01002508 return ret;
Milan Brozda31a072013-10-28 23:21:03 +01002509 }
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 /* Allocate IV */
2512 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) {
2513 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts);
2514 if (ret < 0) {
2515 ti->error = "Error creating IV";
Milan Broz33d2f092017-03-16 15:39:40 +01002516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
2518 }
2519
2520 /* Initialize IV (set keys for ESSIV etc) */
2521 if (cc->iv_gen_ops && cc->iv_gen_ops->init) {
2522 ret = cc->iv_gen_ops->init(cc);
2523 if (ret < 0) {
2524 ti->error = "Error initialising IV";
Milan Broz33d2f092017-03-16 15:39:40 +01002525 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
2527 }
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Milan Brozef43aa32017-01-04 20:23:54 +01002532static int crypt_ctr_optional(struct dm_target *ti, unsigned int argc, char **argv)
2533{
2534 struct crypt_config *cc = ti->private;
2535 struct dm_arg_set as;
2536 static struct dm_arg _args[] = {
Milan Broz8f0009a2017-03-16 15:39:44 +01002537 {0, 6, "Invalid number of feature args"},
Milan Brozef43aa32017-01-04 20:23:54 +01002538 };
2539 unsigned int opt_params, val;
2540 const char *opt_string, *sval;
Milan Broz8f0009a2017-03-16 15:39:44 +01002541 char dummy;
Milan Brozef43aa32017-01-04 20:23:54 +01002542 int ret;
2543
2544 /* Optional parameters */
2545 as.argc = argc;
2546 as.argv = argv;
2547
2548 ret = dm_read_arg_group(_args, &as, &opt_params, &ti->error);
2549 if (ret)
2550 return ret;
2551
2552 while (opt_params--) {
2553 opt_string = dm_shift_arg(&as);
2554 if (!opt_string) {
2555 ti->error = "Not enough feature arguments";
2556 return -EINVAL;
2557 }
2558
2559 if (!strcasecmp(opt_string, "allow_discards"))
2560 ti->num_discard_bios = 1;
2561
2562 else if (!strcasecmp(opt_string, "same_cpu_crypt"))
2563 set_bit(DM_CRYPT_SAME_CPU, &cc->flags);
2564
2565 else if (!strcasecmp(opt_string, "submit_from_crypt_cpus"))
2566 set_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
2567 else if (sscanf(opt_string, "integrity:%u:", &val) == 1) {
2568 if (val == 0 || val > MAX_TAG_SIZE) {
2569 ti->error = "Invalid integrity arguments";
2570 return -EINVAL;
2571 }
2572 cc->on_disk_tag_size = val;
2573 sval = strchr(opt_string + strlen("integrity:"), ':') + 1;
2574 if (!strcasecmp(sval, "aead")) {
2575 set_bit(CRYPT_MODE_INTEGRITY_AEAD, &cc->cipher_flags);
Milan Brozef43aa32017-01-04 20:23:54 +01002576 } else if (strcasecmp(sval, "none")) {
2577 ti->error = "Unknown integrity profile";
2578 return -EINVAL;
2579 }
2580
2581 cc->cipher_auth = kstrdup(sval, GFP_KERNEL);
2582 if (!cc->cipher_auth)
2583 return -ENOMEM;
Mikulas Patockaff3af922017-03-23 10:23:14 -04002584 } else if (sscanf(opt_string, "sector_size:%hu%c", &cc->sector_size, &dummy) == 1) {
Milan Broz8f0009a2017-03-16 15:39:44 +01002585 if (cc->sector_size < (1 << SECTOR_SHIFT) ||
2586 cc->sector_size > 4096 ||
Mikulas Patockaff3af922017-03-23 10:23:14 -04002587 (cc->sector_size & (cc->sector_size - 1))) {
Milan Broz8f0009a2017-03-16 15:39:44 +01002588 ti->error = "Invalid feature value for sector_size";
2589 return -EINVAL;
2590 }
Mikulas Patockaff3af922017-03-23 10:23:14 -04002591 cc->sector_shift = __ffs(cc->sector_size) - SECTOR_SHIFT;
Milan Broz8f0009a2017-03-16 15:39:44 +01002592 } else if (!strcasecmp(opt_string, "iv_large_sectors"))
2593 set_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
2594 else {
Milan Brozef43aa32017-01-04 20:23:54 +01002595 ti->error = "Invalid feature arguments";
2596 return -EINVAL;
2597 }
2598 }
2599
2600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601}
2602
2603/*
2604 * Construct an encryption mapping:
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002605 * <cipher> [<key>|:<key_size>:<user|logon>:<key_description>] <iv_offset> <dev_path> <start>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 */
2607static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
2608{
2609 struct crypt_config *cc;
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002610 int key_size;
Milan Brozef43aa32017-01-04 20:23:54 +01002611 unsigned int align_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 unsigned long long tmpll;
2613 int ret;
Milan Brozef43aa32017-01-04 20:23:54 +01002614 size_t iv_size_padding, additional_req_size;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01002615 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Milan Broz772ae5f2011-08-02 12:32:08 +01002617 if (argc < 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 ti->error = "Not enough arguments";
2619 return -EINVAL;
2620 }
2621
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002622 key_size = get_key_size(&argv[1]);
2623 if (key_size < 0) {
2624 ti->error = "Cannot parse key size";
2625 return -EINVAL;
2626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628 cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL);
2629 if (!cc) {
2630 ti->error = "Cannot allocate encryption context";
2631 return -ENOMEM;
2632 }
2633 cc->key_size = key_size;
Milan Broz8f0009a2017-03-16 15:39:44 +01002634 cc->sector_size = (1 << SECTOR_SHIFT);
Mikulas Patockaff3af922017-03-23 10:23:14 -04002635 cc->sector_shift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 ti->private = cc;
Milan Brozef43aa32017-01-04 20:23:54 +01002638
2639 /* Optional parameters need to be read before cipher constructor */
2640 if (argc > 5) {
2641 ret = crypt_ctr_optional(ti, argc - 5, &argv[5]);
2642 if (ret)
2643 goto bad;
2644 }
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 ret = crypt_ctr_cipher(ti, argv[0], argv[1]);
2647 if (ret < 0)
2648 goto bad;
2649
Milan Broz33d2f092017-03-16 15:39:40 +01002650 if (crypt_integrity_aead(cc)) {
Milan Brozef43aa32017-01-04 20:23:54 +01002651 cc->dmreq_start = sizeof(struct aead_request);
2652 cc->dmreq_start += crypto_aead_reqsize(any_tfm_aead(cc));
2653 align_mask = crypto_aead_alignmask(any_tfm_aead(cc));
2654 } else {
2655 cc->dmreq_start = sizeof(struct skcipher_request);
2656 cc->dmreq_start += crypto_skcipher_reqsize(any_tfm(cc));
2657 align_mask = crypto_skcipher_alignmask(any_tfm(cc));
2658 }
Mikulas Patockad49ec522014-08-28 11:09:31 -04002659 cc->dmreq_start = ALIGN(cc->dmreq_start, __alignof__(struct dm_crypt_request));
2660
Milan Brozef43aa32017-01-04 20:23:54 +01002661 if (align_mask < CRYPTO_MINALIGN) {
Mikulas Patockad49ec522014-08-28 11:09:31 -04002662 /* Allocate the padding exactly */
2663 iv_size_padding = -(cc->dmreq_start + sizeof(struct dm_crypt_request))
Milan Brozef43aa32017-01-04 20:23:54 +01002664 & align_mask;
Mikulas Patockad49ec522014-08-28 11:09:31 -04002665 } else {
2666 /*
2667 * If the cipher requires greater alignment than kmalloc
2668 * alignment, we don't know the exact position of the
2669 * initialization vector. We must assume worst case.
2670 */
Milan Brozef43aa32017-01-04 20:23:54 +01002671 iv_size_padding = align_mask;
Mikulas Patockad49ec522014-08-28 11:09:31 -04002672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Mikulas Patocka94f5e022015-02-13 08:25:26 -05002674 ret = -ENOMEM;
Milan Brozef43aa32017-01-04 20:23:54 +01002675
2676 /* ...| IV + padding | original IV | original sec. number | bio tag offset | */
2677 additional_req_size = sizeof(struct dm_crypt_request) +
2678 iv_size_padding + cc->iv_size +
2679 cc->iv_size +
2680 sizeof(uint64_t) +
2681 sizeof(unsigned int);
2682
2683 cc->req_pool = mempool_create_kmalloc_pool(MIN_IOS, cc->dmreq_start + additional_req_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (!cc->req_pool) {
2685 ti->error = "Cannot allocate crypt request mempool";
2686 goto bad;
2687 }
2688
Mike Snitzer30187e12016-01-31 13:28:26 -05002689 cc->per_bio_data_size = ti->per_io_data_size =
Milan Brozef43aa32017-01-04 20:23:54 +01002690 ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start + additional_req_size,
Mikulas Patockad49ec522014-08-28 11:09:31 -04002691 ARCH_KMALLOC_MINALIGN);
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04002692
Mikulas Patockacf2f1ab2015-02-13 08:23:52 -05002693 cc->page_pool = mempool_create_page_pool(BIO_MAX_PAGES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 if (!cc->page_pool) {
Milan Broz8b004452006-10-03 01:15:37 -07002695 ti->error = "Cannot allocate page mempool";
Milan Broze48d4bb2006-10-03 01:15:37 -07002696 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002698
NeilBrown47e0fb42017-06-18 14:38:57 +10002699 cc->bs = bioset_create(MIN_IOS, 0, (BIOSET_NEED_BVECS |
2700 BIOSET_NEED_RESCUER));
Milan Broz8b004452006-10-03 01:15:37 -07002701 if (!cc->bs) {
Milan Broz0c395b02008-02-08 02:10:54 +00002702 ti->error = "Cannot allocate crypt bioset";
Milan Brozcabf08e2007-10-19 22:38:58 +01002703 goto bad;
Milan Broz93e605c2006-10-03 01:15:38 -07002704 }
Milan Brozcabf08e2007-10-19 22:38:58 +01002705
Mikulas Patocka7145c242015-02-13 08:24:41 -05002706 mutex_init(&cc->bio_alloc_lock);
2707
Milan Brozcabf08e2007-10-19 22:38:58 +01002708 ret = -EINVAL;
Milan Broz8f0009a2017-03-16 15:39:44 +01002709 if ((sscanf(argv[2], "%llu%c", &tmpll, &dummy) != 1) ||
2710 (tmpll & ((cc->sector_size >> SECTOR_SHIFT) - 1))) {
Milan Brozcabf08e2007-10-19 22:38:58 +01002711 ti->error = "Invalid iv_offset sector";
2712 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002714 cc->iv_offset = tmpll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Vivek Goyale80d1c82015-07-31 09:20:36 -04002716 ret = dm_get_device(ti, argv[3], dm_table_get_mode(ti->table), &cc->dev);
2717 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 ti->error = "Device lookup failed";
2719 goto bad;
2720 }
2721
Vivek Goyale80d1c82015-07-31 09:20:36 -04002722 ret = -EINVAL;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01002723 if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 ti->error = "Invalid device sector";
2725 goto bad;
2726 }
2727 cc->start = tmpll;
2728
Milan Broz33d2f092017-03-16 15:39:40 +01002729 if (crypt_integrity_aead(cc) || cc->integrity_iv_size) {
Milan Brozef43aa32017-01-04 20:23:54 +01002730 ret = crypt_integrity_ctr(cc, ti);
Milan Broz772ae5f2011-08-02 12:32:08 +01002731 if (ret)
2732 goto bad;
2733
Milan Brozef43aa32017-01-04 20:23:54 +01002734 cc->tag_pool_max_sectors = POOL_ENTRY_SIZE / cc->on_disk_tag_size;
2735 if (!cc->tag_pool_max_sectors)
2736 cc->tag_pool_max_sectors = 1;
Milan Broz772ae5f2011-08-02 12:32:08 +01002737
Milan Brozef43aa32017-01-04 20:23:54 +01002738 cc->tag_pool = mempool_create_kmalloc_pool(MIN_IOS,
2739 cc->tag_pool_max_sectors * cc->on_disk_tag_size);
2740 if (!cc->tag_pool) {
2741 ti->error = "Cannot allocate integrity tags mempool";
2742 goto bad;
Milan Broz772ae5f2011-08-02 12:32:08 +01002743 }
Mikulas Patocka583fe742017-04-18 16:51:54 -04002744
2745 cc->tag_pool_max_sectors <<= cc->sector_shift;
Milan Broz772ae5f2011-08-02 12:32:08 +01002746 }
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 ret = -ENOMEM;
Tim Murraya1b89132017-04-21 11:11:36 +02002749 cc->io_queue = alloc_workqueue("kcryptd_io", WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (!cc->io_queue) {
2751 ti->error = "Couldn't create kcryptd io queue";
2752 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
Christophe Saout37af6562006-10-30 20:39:08 +01002754
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002755 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
Tim Murraya1b89132017-04-21 11:11:36 +02002756 cc->crypt_queue = alloc_workqueue("kcryptd", WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 1);
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002757 else
Tim Murraya1b89132017-04-21 11:11:36 +02002758 cc->crypt_queue = alloc_workqueue("kcryptd",
2759 WQ_HIGHPRI | WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM | WQ_UNBOUND,
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002760 num_online_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (!cc->crypt_queue) {
2762 ti->error = "Couldn't create kcryptd queue";
2763 goto bad;
2764 }
2765
Mikulas Patockadc267622015-02-13 08:25:59 -05002766 init_waitqueue_head(&cc->write_thread_wait);
Mikulas Patockab3c5fd32015-02-13 08:27:41 -05002767 cc->write_tree = RB_ROOT;
Mikulas Patockadc267622015-02-13 08:25:59 -05002768
2769 cc->write_thread = kthread_create(dmcrypt_write, cc, "dmcrypt_write");
2770 if (IS_ERR(cc->write_thread)) {
2771 ret = PTR_ERR(cc->write_thread);
2772 cc->write_thread = NULL;
2773 ti->error = "Couldn't spawn write thread";
2774 goto bad;
2775 }
2776 wake_up_process(cc->write_thread);
2777
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002778 ti->num_flush_bios = 1;
Milan Broz983c7db2011-09-25 23:26:21 +01002779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return 0;
2781
2782bad:
2783 crypt_dtr(ti);
2784 return ret;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002785}
2786
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002787static int crypt_map(struct dm_target *ti, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
2789 struct dm_crypt_io *io;
Alasdair G Kergon49a8a922012-07-27 15:08:05 +01002790 struct crypt_config *cc = ti->private;
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002791
Milan Broz772ae5f2011-08-02 12:32:08 +01002792 /*
Mike Christie28a8f0d2016-06-05 14:32:25 -05002793 * If bio is REQ_PREFLUSH or REQ_OP_DISCARD, just bypass crypt queues.
2794 * - for REQ_PREFLUSH device-mapper core ensures that no IO is in-flight
Mike Christiee6047142016-06-05 14:32:04 -05002795 * - for REQ_OP_DISCARD caller must use flush if IO ordering matters
Milan Broz772ae5f2011-08-02 12:32:08 +01002796 */
Jens Axboe1eff9d32016-08-05 15:35:16 -06002797 if (unlikely(bio->bi_opf & REQ_PREFLUSH ||
Mike Christie28a8f0d2016-06-05 14:32:25 -05002798 bio_op(bio) == REQ_OP_DISCARD)) {
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002799 bio->bi_bdev = cc->dev->bdev;
Milan Broz772ae5f2011-08-02 12:32:08 +01002800 if (bio_sectors(bio))
Kent Overstreet4f024f32013-10-11 15:44:27 -07002801 bio->bi_iter.bi_sector = cc->start +
2802 dm_target_offset(ti, bio->bi_iter.bi_sector);
Mikulas Patocka647c7db2009-06-22 10:12:23 +01002803 return DM_MAPIO_REMAPPED;
2804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Mikulas Patocka4e870e92016-08-30 16:38:42 -04002806 /*
2807 * Check if bio is too large, split as needed.
2808 */
2809 if (unlikely(bio->bi_iter.bi_size > (BIO_MAX_PAGES << PAGE_SHIFT)) &&
Milan Brozef43aa32017-01-04 20:23:54 +01002810 (bio_data_dir(bio) == WRITE || cc->on_disk_tag_size))
Mikulas Patocka4e870e92016-08-30 16:38:42 -04002811 dm_accept_partial_bio(bio, ((BIO_MAX_PAGES << PAGE_SHIFT) >> SECTOR_SHIFT));
2812
Milan Broz8f0009a2017-03-16 15:39:44 +01002813 /*
2814 * Ensure that bio is a multiple of internal sector encryption size
2815 * and is aligned to this size as defined in IO hints.
2816 */
2817 if (unlikely((bio->bi_iter.bi_sector & ((cc->sector_size >> SECTOR_SHIFT) - 1)) != 0))
Christoph Hellwig846785e2017-06-03 09:38:02 +02002818 return DM_MAPIO_KILL;
Milan Broz8f0009a2017-03-16 15:39:44 +01002819
2820 if (unlikely(bio->bi_iter.bi_size & (cc->sector_size - 1)))
Christoph Hellwig846785e2017-06-03 09:38:02 +02002821 return DM_MAPIO_KILL;
Milan Broz8f0009a2017-03-16 15:39:44 +01002822
Mikulas Patocka298a9fa2014-03-28 15:51:55 -04002823 io = dm_per_bio_data(bio, cc->per_bio_data_size);
2824 crypt_io_init(io, cc, bio, dm_target_offset(ti, bio->bi_iter.bi_sector));
Milan Brozef43aa32017-01-04 20:23:54 +01002825
2826 if (cc->on_disk_tag_size) {
Mikulas Patocka583fe742017-04-18 16:51:54 -04002827 unsigned tag_len = cc->on_disk_tag_size * (bio_sectors(bio) >> cc->sector_shift);
Milan Brozef43aa32017-01-04 20:23:54 +01002828
2829 if (unlikely(tag_len > KMALLOC_MAX_SIZE) ||
Mikulas Patocka583fe742017-04-18 16:51:54 -04002830 unlikely(!(io->integrity_metadata = kmalloc(tag_len,
Milan Brozef43aa32017-01-04 20:23:54 +01002831 GFP_NOIO | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN)))) {
2832 if (bio_sectors(bio) > cc->tag_pool_max_sectors)
2833 dm_accept_partial_bio(bio, cc->tag_pool_max_sectors);
2834 io->integrity_metadata = mempool_alloc(cc->tag_pool, GFP_NOIO);
2835 io->integrity_metadata_from_pool = true;
2836 }
2837 }
2838
Milan Broz33d2f092017-03-16 15:39:40 +01002839 if (crypt_integrity_aead(cc))
Milan Brozef43aa32017-01-04 20:23:54 +01002840 io->ctx.r.req_aead = (struct aead_request *)(io + 1);
2841 else
2842 io->ctx.r.req = (struct skcipher_request *)(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Milan Broz20c82532011-01-13 19:59:53 +00002844 if (bio_data_dir(io->base_bio) == READ) {
2845 if (kcryptd_io_read(io, GFP_NOWAIT))
Mikulas Patockadc267622015-02-13 08:25:59 -05002846 kcryptd_queue_read(io);
Milan Broz20c82532011-01-13 19:59:53 +00002847 } else
Andrew Morton4ee218c2006-03-27 01:17:48 -08002848 kcryptd_queue_crypt(io);
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 return DM_MAPIO_SUBMITTED;
2851}
2852
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002853static void crypt_status(struct dm_target *ti, status_type_t type,
2854 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
Milan Broz5ebaee62010-08-12 04:14:07 +01002856 struct crypt_config *cc = ti->private;
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002857 unsigned i, sz = 0;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002858 int num_feature_args = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860 switch (type) {
2861 case STATUSTYPE_INFO:
2862 result[0] = '\0';
2863 break;
2864
2865 case STATUSTYPE_TABLE:
Milan Broz7dbcd132011-01-13 19:59:52 +00002866 DMEMIT("%s ", cc->cipher_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002868 if (cc->key_size > 0) {
2869 if (cc->key_string)
2870 DMEMIT(":%u:%s", cc->key_size, cc->key_string);
2871 else
2872 for (i = 0; i < cc->key_size; i++)
2873 DMEMIT("%02x", cc->key[i]);
2874 } else
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002875 DMEMIT("-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
2877 DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset,
2878 cc->dev->name, (unsigned long long)cc->start);
Milan Broz772ae5f2011-08-02 12:32:08 +01002879
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002880 num_feature_args += !!ti->num_discard_bios;
2881 num_feature_args += test_bit(DM_CRYPT_SAME_CPU, &cc->flags);
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05002882 num_feature_args += test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags);
Mikulas Patockaff3af922017-03-23 10:23:14 -04002883 num_feature_args += cc->sector_size != (1 << SECTOR_SHIFT);
Milan Broz8f0009a2017-03-16 15:39:44 +01002884 num_feature_args += test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags);
Milan Brozef43aa32017-01-04 20:23:54 +01002885 if (cc->on_disk_tag_size)
2886 num_feature_args++;
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002887 if (num_feature_args) {
2888 DMEMIT(" %d", num_feature_args);
2889 if (ti->num_discard_bios)
2890 DMEMIT(" allow_discards");
2891 if (test_bit(DM_CRYPT_SAME_CPU, &cc->flags))
2892 DMEMIT(" same_cpu_crypt");
Mikulas Patocka0f5d8e62015-02-13 08:27:08 -05002893 if (test_bit(DM_CRYPT_NO_OFFLOAD, &cc->flags))
2894 DMEMIT(" submit_from_crypt_cpus");
Milan Brozef43aa32017-01-04 20:23:54 +01002895 if (cc->on_disk_tag_size)
2896 DMEMIT(" integrity:%u:%s", cc->on_disk_tag_size, cc->cipher_auth);
Milan Broz8f0009a2017-03-16 15:39:44 +01002897 if (cc->sector_size != (1 << SECTOR_SHIFT))
2898 DMEMIT(" sector_size:%d", cc->sector_size);
2899 if (test_bit(CRYPT_IV_LARGE_SECTORS, &cc->cipher_flags))
2900 DMEMIT(" iv_large_sectors");
Mikulas Patockaf3396c582015-02-13 08:23:09 -05002901 }
Milan Broz772ae5f2011-08-02 12:32:08 +01002902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 break;
2904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905}
2906
Milan Broze48d4bb2006-10-03 01:15:37 -07002907static void crypt_postsuspend(struct dm_target *ti)
2908{
2909 struct crypt_config *cc = ti->private;
2910
2911 set_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2912}
2913
2914static int crypt_preresume(struct dm_target *ti)
2915{
2916 struct crypt_config *cc = ti->private;
2917
2918 if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) {
2919 DMERR("aborting resume - crypt key is not set.");
2920 return -EAGAIN;
2921 }
2922
2923 return 0;
2924}
2925
2926static void crypt_resume(struct dm_target *ti)
2927{
2928 struct crypt_config *cc = ti->private;
2929
2930 clear_bit(DM_CRYPT_SUSPENDED, &cc->flags);
2931}
2932
2933/* Message interface
2934 * key set <key>
2935 * key wipe
2936 */
2937static int crypt_message(struct dm_target *ti, unsigned argc, char **argv)
2938{
2939 struct crypt_config *cc = ti->private;
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002940 int key_size, ret = -EINVAL;
Milan Broze48d4bb2006-10-03 01:15:37 -07002941
2942 if (argc < 2)
2943 goto error;
2944
Mike Snitzer498f0102011-08-02 12:32:04 +01002945 if (!strcasecmp(argv[0], "key")) {
Milan Broze48d4bb2006-10-03 01:15:37 -07002946 if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) {
2947 DMWARN("not suspended during key manipulation.");
2948 return -EINVAL;
2949 }
Mike Snitzer498f0102011-08-02 12:32:04 +01002950 if (argc == 3 && !strcasecmp(argv[1], "set")) {
Ondrej Kozinac538f6e2016-11-21 15:58:51 +01002951 /* The key size may not be changed. */
2952 key_size = get_key_size(&argv[2]);
2953 if (key_size < 0 || cc->key_size != key_size) {
2954 memset(argv[2], '0', strlen(argv[2]));
2955 return -EINVAL;
2956 }
2957
Milan Broz542da312009-12-10 23:51:57 +00002958 ret = crypt_set_key(cc, argv[2]);
2959 if (ret)
2960 return ret;
2961 if (cc->iv_gen_ops && cc->iv_gen_ops->init)
2962 ret = cc->iv_gen_ops->init(cc);
2963 return ret;
2964 }
Mike Snitzer498f0102011-08-02 12:32:04 +01002965 if (argc == 2 && !strcasecmp(argv[1], "wipe")) {
Milan Broz542da312009-12-10 23:51:57 +00002966 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) {
2967 ret = cc->iv_gen_ops->wipe(cc);
2968 if (ret)
2969 return ret;
2970 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002971 return crypt_wipe_key(cc);
Milan Broz542da312009-12-10 23:51:57 +00002972 }
Milan Broze48d4bb2006-10-03 01:15:37 -07002973 }
2974
2975error:
2976 DMWARN("unrecognised message received.");
2977 return -EINVAL;
2978}
2979
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002980static int crypt_iterate_devices(struct dm_target *ti,
2981 iterate_devices_callout_fn fn, void *data)
2982{
2983 struct crypt_config *cc = ti->private;
2984
Mike Snitzer5dea2712009-07-23 20:30:42 +01002985 return fn(ti, cc->dev, cc->start, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01002986}
2987
Mike Snitzer586b2862015-09-09 21:34:51 -04002988static void crypt_io_hints(struct dm_target *ti, struct queue_limits *limits)
2989{
Milan Broz8f0009a2017-03-16 15:39:44 +01002990 struct crypt_config *cc = ti->private;
2991
Mike Snitzer586b2862015-09-09 21:34:51 -04002992 /*
2993 * Unfortunate constraint that is required to avoid the potential
2994 * for exceeding underlying device's max_segments limits -- due to
2995 * crypt_alloc_buffer() possibly allocating pages for the encryption
2996 * bio that are not as physically contiguous as the original bio.
2997 */
2998 limits->max_segment_size = PAGE_SIZE;
Milan Broz8f0009a2017-03-16 15:39:44 +01002999
3000 if (cc->sector_size != (1 << SECTOR_SHIFT)) {
3001 limits->logical_block_size = cc->sector_size;
3002 limits->physical_block_size = cc->sector_size;
3003 blk_limits_io_min(limits, cc->sector_size);
3004 }
Mike Snitzer586b2862015-09-09 21:34:51 -04003005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007static struct target_type crypt_target = {
3008 .name = "crypt",
Milan Broz7e3fd852017-06-06 09:07:01 +02003009 .version = {1, 18, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 .module = THIS_MODULE,
3011 .ctr = crypt_ctr,
3012 .dtr = crypt_dtr,
3013 .map = crypt_map,
3014 .status = crypt_status,
Milan Broze48d4bb2006-10-03 01:15:37 -07003015 .postsuspend = crypt_postsuspend,
3016 .preresume = crypt_preresume,
3017 .resume = crypt_resume,
3018 .message = crypt_message,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01003019 .iterate_devices = crypt_iterate_devices,
Mike Snitzer586b2862015-09-09 21:34:51 -04003020 .io_hints = crypt_io_hints,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021};
3022
3023static int __init dm_crypt_init(void)
3024{
3025 int r;
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 r = dm_register_target(&crypt_target);
Mikulas Patocka94f5e022015-02-13 08:25:26 -05003028 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -07003029 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return r;
3032}
3033
3034static void __exit dm_crypt_exit(void)
3035{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00003036 dm_unregister_target(&crypt_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
3038
3039module_init(dm_crypt_init);
3040module_exit(dm_crypt_exit);
3041
Jana Saoutbf142992014-06-24 14:27:04 -04003042MODULE_AUTHOR("Jana Saout <jana@saout.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption");
3044MODULE_LICENSE("GPL");