Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2003 Christophe Saout <christophe@saout.de> |
| 3 | * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org> |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006-2007 Red Hat, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * This file is released under the GPL. |
| 7 | */ |
| 8 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 9 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/bio.h> |
| 14 | #include <linux/blkdev.h> |
| 15 | #include <linux/mempool.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/crypto.h> |
| 18 | #include <linux/workqueue.h> |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 19 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/atomic.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 21 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/page.h> |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 23 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include "dm.h" |
| 26 | |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 27 | #define DM_MSG_PREFIX "crypt" |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 28 | #define MESG_STR(x) x, sizeof(x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * context holding the current state of a multi-part conversion |
| 32 | */ |
| 33 | struct convert_context { |
| 34 | struct bio *bio_in; |
| 35 | struct bio *bio_out; |
| 36 | unsigned int offset_in; |
| 37 | unsigned int offset_out; |
| 38 | unsigned int idx_in; |
| 39 | unsigned int idx_out; |
| 40 | sector_t sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 43 | /* |
| 44 | * per bio private data |
| 45 | */ |
| 46 | struct dm_crypt_io { |
| 47 | struct dm_target *target; |
| 48 | struct bio *base_bio; |
| 49 | struct work_struct work; |
| 50 | |
| 51 | struct convert_context ctx; |
| 52 | |
| 53 | atomic_t pending; |
| 54 | int error; |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 55 | sector_t sector; |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct crypt_config; |
| 59 | |
| 60 | struct crypt_iv_operations { |
| 61 | int (*ctr)(struct crypt_config *cc, struct dm_target *ti, |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 62 | const char *opts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | void (*dtr)(struct crypt_config *cc); |
| 64 | const char *(*status)(struct crypt_config *cc); |
| 65 | int (*generator)(struct crypt_config *cc, u8 *iv, sector_t sector); |
| 66 | }; |
| 67 | |
| 68 | /* |
| 69 | * Crypt: maps a linear range of a block device |
| 70 | * and encrypts / decrypts at the same time. |
| 71 | */ |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 72 | enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | struct crypt_config { |
| 74 | struct dm_dev *dev; |
| 75 | sector_t start; |
| 76 | |
| 77 | /* |
| 78 | * pool for per bio private data and |
| 79 | * for encryption buffer pages |
| 80 | */ |
| 81 | mempool_t *io_pool; |
| 82 | mempool_t *page_pool; |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 83 | struct bio_set *bs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 85 | struct workqueue_struct *io_queue; |
| 86 | struct workqueue_struct *crypt_queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* |
| 88 | * crypto related data |
| 89 | */ |
| 90 | struct crypt_iv_operations *iv_gen_ops; |
| 91 | char *iv_mode; |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 92 | union { |
| 93 | struct crypto_cipher *essiv_tfm; |
| 94 | int benbi_shift; |
| 95 | } iv_gen_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | sector_t iv_offset; |
| 97 | unsigned int iv_size; |
| 98 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 99 | char cipher[CRYPTO_MAX_ALG_NAME]; |
| 100 | char chainmode[CRYPTO_MAX_ALG_NAME]; |
| 101 | struct crypto_blkcipher *tfm; |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 102 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | unsigned int key_size; |
| 104 | u8 key[0]; |
| 105 | }; |
| 106 | |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 107 | #define MIN_IOS 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define MIN_POOL_PAGES 32 |
| 109 | #define MIN_BIO_PAGES 8 |
| 110 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 111 | static struct kmem_cache *_crypt_io_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 113 | static void clone_init(struct dm_crypt_io *, struct bio *); |
Alasdair G Kergon | 395b167 | 2008-02-08 02:10:52 +0000 | [diff] [blame] | 114 | static void kcryptd_queue_crypt(struct dm_crypt_io *io); |
Olaf Kirch | 027581f | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | * Different IV generation algorithms: |
| 118 | * |
Rik Snel | 3c164bd | 2006-09-02 18:17:33 +1000 | [diff] [blame] | 119 | * plain: the initial vector is the 32-bit little-endian version of the sector |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 120 | * number, padded with zeros if necessary. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | * |
Rik Snel | 3c164bd | 2006-09-02 18:17:33 +1000 | [diff] [blame] | 122 | * essiv: "encrypted sector|salt initial vector", the sector number is |
| 123 | * encrypted with the bulk cipher using a salt as key. The salt |
| 124 | * should be derived from the bulk cipher's key via hashing. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | * |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 126 | * benbi: the 64-bit "big-endian 'narrow block'-count", starting at 1 |
| 127 | * (needed for LRW-32-AES and possible other narrow block modes) |
| 128 | * |
Ludwig Nussel | 46b4773 | 2007-05-09 02:32:55 -0700 | [diff] [blame] | 129 | * null: the initial vector is always zero. Provides compatibility with |
| 130 | * obsolete loop_fish2 devices. Do not use for new devices. |
| 131 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | * plumb: unimplemented, see: |
| 133 | * http://article.gmane.org/gmane.linux.kernel.device-mapper.dm-crypt/454 |
| 134 | */ |
| 135 | |
| 136 | static int crypt_iv_plain_gen(struct crypt_config *cc, u8 *iv, sector_t sector) |
| 137 | { |
| 138 | memset(iv, 0, cc->iv_size); |
| 139 | *(u32 *)iv = cpu_to_le32(sector & 0xffffffff); |
| 140 | |
| 141 | return 0; |
| 142 | } |
| 143 | |
| 144 | static int crypt_iv_essiv_ctr(struct crypt_config *cc, struct dm_target *ti, |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 145 | const char *opts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 147 | struct crypto_cipher *essiv_tfm; |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 148 | struct crypto_hash *hash_tfm; |
| 149 | struct hash_desc desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | struct scatterlist sg; |
| 151 | unsigned int saltsize; |
| 152 | u8 *salt; |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 153 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | if (opts == NULL) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 156 | ti->error = "Digest algorithm missing for ESSIV mode"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | return -EINVAL; |
| 158 | } |
| 159 | |
| 160 | /* Hash the cipher key with the given hash algorithm */ |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 161 | hash_tfm = crypto_alloc_hash(opts, 0, CRYPTO_ALG_ASYNC); |
| 162 | if (IS_ERR(hash_tfm)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 163 | ti->error = "Error initializing ESSIV hash"; |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 164 | return PTR_ERR(hash_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 167 | saltsize = crypto_hash_digestsize(hash_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | salt = kmalloc(saltsize, GFP_KERNEL); |
| 169 | if (salt == NULL) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 170 | ti->error = "Error kmallocing salt storage in ESSIV"; |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 171 | crypto_free_hash(hash_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return -ENOMEM; |
| 173 | } |
| 174 | |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 175 | sg_init_one(&sg, cc->key, cc->key_size); |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 176 | desc.tfm = hash_tfm; |
| 177 | desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP; |
| 178 | err = crypto_hash_digest(&desc, &sg, cc->key_size, salt); |
| 179 | crypto_free_hash(hash_tfm); |
| 180 | |
| 181 | if (err) { |
| 182 | ti->error = "Error calculating hash in ESSIV"; |
Dmitry Monakhov | 815f9e3 | 2007-10-19 22:38:38 +0100 | [diff] [blame] | 183 | kfree(salt); |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 184 | return err; |
| 185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | /* Setup the essiv_tfm with the given salt */ |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 188 | essiv_tfm = crypto_alloc_cipher(cc->cipher, 0, CRYPTO_ALG_ASYNC); |
| 189 | if (IS_ERR(essiv_tfm)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 190 | ti->error = "Error allocating crypto tfm for ESSIV"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | kfree(salt); |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 192 | return PTR_ERR(essiv_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 194 | if (crypto_cipher_blocksize(essiv_tfm) != |
| 195 | crypto_blkcipher_ivsize(cc->tfm)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 196 | ti->error = "Block size of ESSIV cipher does " |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 197 | "not match IV size of block cipher"; |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 198 | crypto_free_cipher(essiv_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | kfree(salt); |
| 200 | return -EINVAL; |
| 201 | } |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 202 | err = crypto_cipher_setkey(essiv_tfm, salt, saltsize); |
| 203 | if (err) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 204 | ti->error = "Failed to set key for ESSIV cipher"; |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 205 | crypto_free_cipher(essiv_tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | kfree(salt); |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 207 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | kfree(salt); |
| 210 | |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 211 | cc->iv_gen_private.essiv_tfm = essiv_tfm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | static void crypt_iv_essiv_dtr(struct crypt_config *cc) |
| 216 | { |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 217 | crypto_free_cipher(cc->iv_gen_private.essiv_tfm); |
| 218 | cc->iv_gen_private.essiv_tfm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | static int crypt_iv_essiv_gen(struct crypt_config *cc, u8 *iv, sector_t sector) |
| 222 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | memset(iv, 0, cc->iv_size); |
| 224 | *(u64 *)iv = cpu_to_le64(sector); |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 225 | crypto_cipher_encrypt_one(cc->iv_gen_private.essiv_tfm, iv, iv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 229 | static int crypt_iv_benbi_ctr(struct crypt_config *cc, struct dm_target *ti, |
| 230 | const char *opts) |
| 231 | { |
| 232 | unsigned int bs = crypto_blkcipher_blocksize(cc->tfm); |
David Howells | f0d1b0b | 2006-12-08 02:37:49 -0800 | [diff] [blame] | 233 | int log = ilog2(bs); |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 234 | |
| 235 | /* we need to calculate how far we must shift the sector count |
| 236 | * to get the cipher block count, we use this shift in _gen */ |
| 237 | |
| 238 | if (1 << log != bs) { |
| 239 | ti->error = "cypher blocksize is not a power of 2"; |
| 240 | return -EINVAL; |
| 241 | } |
| 242 | |
| 243 | if (log > 9) { |
| 244 | ti->error = "cypher blocksize is > 512"; |
| 245 | return -EINVAL; |
| 246 | } |
| 247 | |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 248 | cc->iv_gen_private.benbi_shift = 9 - log; |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 249 | |
| 250 | return 0; |
| 251 | } |
| 252 | |
| 253 | static void crypt_iv_benbi_dtr(struct crypt_config *cc) |
| 254 | { |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | static int crypt_iv_benbi_gen(struct crypt_config *cc, u8 *iv, sector_t sector) |
| 258 | { |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 259 | __be64 val; |
| 260 | |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 261 | memset(iv, 0, cc->iv_size - sizeof(u64)); /* rest is cleared below */ |
Herbert Xu | 79066ad | 2006-12-05 13:41:52 -0800 | [diff] [blame] | 262 | |
| 263 | val = cpu_to_be64(((u64)sector << cc->iv_gen_private.benbi_shift) + 1); |
| 264 | put_unaligned(val, (__be64 *)(iv + cc->iv_size - sizeof(u64))); |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | return 0; |
| 267 | } |
| 268 | |
Ludwig Nussel | 46b4773 | 2007-05-09 02:32:55 -0700 | [diff] [blame] | 269 | static int crypt_iv_null_gen(struct crypt_config *cc, u8 *iv, sector_t sector) |
| 270 | { |
| 271 | memset(iv, 0, cc->iv_size); |
| 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | static struct crypt_iv_operations crypt_iv_plain_ops = { |
| 277 | .generator = crypt_iv_plain_gen |
| 278 | }; |
| 279 | |
| 280 | static struct crypt_iv_operations crypt_iv_essiv_ops = { |
| 281 | .ctr = crypt_iv_essiv_ctr, |
| 282 | .dtr = crypt_iv_essiv_dtr, |
| 283 | .generator = crypt_iv_essiv_gen |
| 284 | }; |
| 285 | |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 286 | static struct crypt_iv_operations crypt_iv_benbi_ops = { |
| 287 | .ctr = crypt_iv_benbi_ctr, |
| 288 | .dtr = crypt_iv_benbi_dtr, |
| 289 | .generator = crypt_iv_benbi_gen |
| 290 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Ludwig Nussel | 46b4773 | 2007-05-09 02:32:55 -0700 | [diff] [blame] | 292 | static struct crypt_iv_operations crypt_iv_null_ops = { |
| 293 | .generator = crypt_iv_null_gen |
| 294 | }; |
| 295 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 296 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | crypt_convert_scatterlist(struct crypt_config *cc, struct scatterlist *out, |
| 298 | struct scatterlist *in, unsigned int length, |
| 299 | int write, sector_t sector) |
| 300 | { |
Herbert Xu | 4578932 | 2006-09-03 08:58:41 +1000 | [diff] [blame] | 301 | u8 iv[cc->iv_size] __attribute__ ((aligned(__alignof__(u64)))); |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 302 | struct blkcipher_desc desc = { |
| 303 | .tfm = cc->tfm, |
| 304 | .info = iv, |
| 305 | .flags = CRYPTO_TFM_REQ_MAY_SLEEP, |
| 306 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | int r; |
| 308 | |
| 309 | if (cc->iv_gen_ops) { |
| 310 | r = cc->iv_gen_ops->generator(cc, iv, sector); |
| 311 | if (r < 0) |
| 312 | return r; |
| 313 | |
| 314 | if (write) |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 315 | r = crypto_blkcipher_encrypt_iv(&desc, out, in, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | else |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 317 | r = crypto_blkcipher_decrypt_iv(&desc, out, in, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | } else { |
| 319 | if (write) |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 320 | r = crypto_blkcipher_encrypt(&desc, out, in, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | else |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 322 | r = crypto_blkcipher_decrypt(&desc, out, in, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | return r; |
| 326 | } |
| 327 | |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 328 | static void crypt_convert_init(struct crypt_config *cc, |
| 329 | struct convert_context *ctx, |
| 330 | struct bio *bio_out, struct bio *bio_in, |
Milan Broz | fcd369d | 2008-02-08 02:10:41 +0000 | [diff] [blame] | 331 | sector_t sector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
| 333 | ctx->bio_in = bio_in; |
| 334 | ctx->bio_out = bio_out; |
| 335 | ctx->offset_in = 0; |
| 336 | ctx->offset_out = 0; |
| 337 | ctx->idx_in = bio_in ? bio_in->bi_idx : 0; |
| 338 | ctx->idx_out = bio_out ? bio_out->bi_idx : 0; |
| 339 | ctx->sector = sector + cc->iv_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /* |
| 343 | * Encrypt / decrypt data from one bio to another one (can be the same one) |
| 344 | */ |
| 345 | static int crypt_convert(struct crypt_config *cc, |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 346 | struct convert_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | { |
| 348 | int r = 0; |
| 349 | |
| 350 | while(ctx->idx_in < ctx->bio_in->bi_vcnt && |
| 351 | ctx->idx_out < ctx->bio_out->bi_vcnt) { |
| 352 | struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in); |
| 353 | struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out); |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 354 | struct scatterlist sg_in, sg_out; |
| 355 | |
| 356 | sg_init_table(&sg_in, 1); |
Jens Axboe | 642f149 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 357 | sg_set_page(&sg_in, bv_in->bv_page, 1 << SECTOR_SHIFT, bv_in->bv_offset + ctx->offset_in); |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 358 | |
| 359 | sg_init_table(&sg_out, 1); |
Jens Axboe | 642f149 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 360 | sg_set_page(&sg_out, bv_out->bv_page, 1 << SECTOR_SHIFT, bv_out->bv_offset + ctx->offset_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | ctx->offset_in += sg_in.length; |
| 363 | if (ctx->offset_in >= bv_in->bv_len) { |
| 364 | ctx->offset_in = 0; |
| 365 | ctx->idx_in++; |
| 366 | } |
| 367 | |
| 368 | ctx->offset_out += sg_out.length; |
| 369 | if (ctx->offset_out >= bv_out->bv_len) { |
| 370 | ctx->offset_out = 0; |
| 371 | ctx->idx_out++; |
| 372 | } |
| 373 | |
| 374 | r = crypt_convert_scatterlist(cc, &sg_out, &sg_in, sg_in.length, |
Milan Broz | fcd369d | 2008-02-08 02:10:41 +0000 | [diff] [blame] | 375 | bio_data_dir(ctx->bio_in) == WRITE, ctx->sector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (r < 0) |
| 377 | break; |
| 378 | |
| 379 | ctx->sector++; |
| 380 | } |
| 381 | |
| 382 | return r; |
| 383 | } |
| 384 | |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 385 | static void dm_crypt_bio_destructor(struct bio *bio) |
| 386 | { |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 387 | struct dm_crypt_io *io = bio->bi_private; |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 388 | struct crypt_config *cc = io->target->private; |
| 389 | |
| 390 | bio_free(bio, cc->bs); |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 391 | } |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | /* |
| 394 | * Generate a new unfragmented bio with the given size |
| 395 | * This should never violate the device limitations |
| 396 | * May return a smaller bio when running out of pages |
| 397 | */ |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 398 | static struct bio *crypt_alloc_buffer(struct dm_crypt_io *io, unsigned size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
Olaf Kirch | 027581f | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 400 | struct crypt_config *cc = io->target->private; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 401 | struct bio *clone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | unsigned int nr_iovecs = (size + PAGE_SIZE - 1) >> PAGE_SHIFT; |
Al Viro | b4e3ca1 | 2005-10-21 03:22:34 -0400 | [diff] [blame] | 403 | gfp_t gfp_mask = GFP_NOIO | __GFP_HIGHMEM; |
Milan Broz | 91e1062 | 2007-12-13 14:16:10 +0000 | [diff] [blame] | 404 | unsigned i, len; |
| 405 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Olaf Kirch | 2f9941b | 2007-05-09 02:32:53 -0700 | [diff] [blame] | 407 | clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 408 | if (!clone) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Olaf Kirch | 027581f | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 411 | clone_init(io, clone); |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 412 | |
Olaf Kirch | f97380b | 2007-05-09 02:32:54 -0700 | [diff] [blame] | 413 | for (i = 0; i < nr_iovecs; i++) { |
Milan Broz | 91e1062 | 2007-12-13 14:16:10 +0000 | [diff] [blame] | 414 | page = mempool_alloc(cc->page_pool, gfp_mask); |
| 415 | if (!page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | break; |
| 417 | |
| 418 | /* |
| 419 | * if additional pages cannot be allocated without waiting, |
| 420 | * return a partially allocated bio, the caller will then try |
| 421 | * to allocate additional bios while submitting this partial bio |
| 422 | */ |
Olaf Kirch | f97380b | 2007-05-09 02:32:54 -0700 | [diff] [blame] | 423 | if (i == (MIN_BIO_PAGES - 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT; |
| 425 | |
Milan Broz | 91e1062 | 2007-12-13 14:16:10 +0000 | [diff] [blame] | 426 | len = (size > PAGE_SIZE) ? PAGE_SIZE : size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Milan Broz | 91e1062 | 2007-12-13 14:16:10 +0000 | [diff] [blame] | 428 | if (!bio_add_page(clone, page, len, 0)) { |
| 429 | mempool_free(page, cc->page_pool); |
| 430 | break; |
| 431 | } |
| 432 | |
| 433 | size -= len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 436 | if (!clone->bi_size) { |
| 437 | bio_put(clone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | return NULL; |
| 439 | } |
| 440 | |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 441 | return clone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Neil Brown | 644bd2f | 2007-10-16 13:48:46 +0200 | [diff] [blame] | 444 | static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
Neil Brown | 644bd2f | 2007-10-16 13:48:46 +0200 | [diff] [blame] | 446 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | struct bio_vec *bv; |
| 448 | |
Neil Brown | 644bd2f | 2007-10-16 13:48:46 +0200 | [diff] [blame] | 449 | for (i = 0; i < clone->bi_vcnt; i++) { |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 450 | bv = bio_iovec_idx(clone, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | BUG_ON(!bv->bv_page); |
| 452 | mempool_free(bv->bv_page, cc->page_pool); |
| 453 | bv->bv_page = NULL; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * One of the bios was finished. Check for completion of |
| 459 | * the whole request and correctly clean up the buffer. |
| 460 | */ |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 461 | static void crypt_dec_pending(struct dm_crypt_io *io) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 463 | struct crypt_config *cc = io->target->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | if (!atomic_dec_and_test(&io->pending)) |
| 466 | return; |
| 467 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 468 | bio_endio(io->base_bio, io->error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | mempool_free(io, cc->io_pool); |
| 470 | } |
| 471 | |
| 472 | /* |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 473 | * kcryptd/kcryptd_io: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | * |
| 475 | * Needed because it would be very unwise to do decryption in an |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 476 | * interrupt context. |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 477 | * |
| 478 | * kcryptd performs the actual encryption or decryption. |
| 479 | * |
| 480 | * kcryptd_io performs the IO submission. |
| 481 | * |
| 482 | * They must be separated as otherwise the final stages could be |
| 483 | * starved by new requests which can block in the first stages due |
| 484 | * to memory allocation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | */ |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 486 | static void crypt_endio(struct bio *clone, int error) |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 487 | { |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 488 | struct dm_crypt_io *io = clone->bi_private; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 489 | struct crypt_config *cc = io->target->private; |
Milan Broz | ee7a491 | 2008-02-08 02:10:46 +0000 | [diff] [blame] | 490 | unsigned rw = bio_data_dir(clone); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 491 | |
Milan Broz | adfe477 | 2007-12-13 14:15:51 +0000 | [diff] [blame] | 492 | if (unlikely(!bio_flagged(clone, BIO_UPTODATE) && !error)) |
| 493 | error = -EIO; |
| 494 | |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 495 | /* |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 496 | * free the processed pages |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 497 | */ |
Milan Broz | ee7a491 | 2008-02-08 02:10:46 +0000 | [diff] [blame] | 498 | if (rw == WRITE) |
Neil Brown | 644bd2f | 2007-10-16 13:48:46 +0200 | [diff] [blame] | 499 | crypt_free_buffer_pages(cc, clone); |
Milan Broz | ee7a491 | 2008-02-08 02:10:46 +0000 | [diff] [blame] | 500 | |
| 501 | bio_put(clone); |
| 502 | |
| 503 | if (rw == READ && !error) { |
| 504 | kcryptd_queue_crypt(io); |
| 505 | return; |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 506 | } |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 507 | |
Milan Broz | adfe477 | 2007-12-13 14:15:51 +0000 | [diff] [blame] | 508 | if (unlikely(error)) |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 509 | io->error = error; |
| 510 | |
| 511 | crypt_dec_pending(io); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 514 | static void clone_init(struct dm_crypt_io *io, struct bio *clone) |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 515 | { |
| 516 | struct crypt_config *cc = io->target->private; |
| 517 | |
| 518 | clone->bi_private = io; |
| 519 | clone->bi_end_io = crypt_endio; |
| 520 | clone->bi_bdev = cc->dev->bdev; |
| 521 | clone->bi_rw = io->base_bio->bi_rw; |
Olaf Kirch | 027581f | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 522 | clone->bi_destructor = dm_crypt_bio_destructor; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 525 | static void kcryptd_io_read(struct dm_crypt_io *io) |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 526 | { |
| 527 | struct crypt_config *cc = io->target->private; |
| 528 | struct bio *base_bio = io->base_bio; |
| 529 | struct bio *clone; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 530 | |
| 531 | atomic_inc(&io->pending); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 532 | |
| 533 | /* |
| 534 | * The block layer might modify the bvec array, so always |
| 535 | * copy the required bvecs because we need the original |
| 536 | * one in order to decrypt the whole bio data *afterwards*. |
| 537 | */ |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 538 | clone = bio_alloc_bioset(GFP_NOIO, bio_segments(base_bio), cc->bs); |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 539 | if (unlikely(!clone)) { |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 540 | io->error = -ENOMEM; |
| 541 | crypt_dec_pending(io); |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 542 | return; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 543 | } |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 544 | |
| 545 | clone_init(io, clone); |
| 546 | clone->bi_idx = 0; |
| 547 | clone->bi_vcnt = bio_segments(base_bio); |
| 548 | clone->bi_size = base_bio->bi_size; |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 549 | clone->bi_sector = cc->start + io->sector; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 550 | memcpy(clone->bi_io_vec, bio_iovec(base_bio), |
| 551 | sizeof(struct bio_vec) * clone->bi_vcnt); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 552 | |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 553 | generic_make_request(clone); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 556 | static void kcryptd_io_write(struct dm_crypt_io *io) |
| 557 | { |
| 558 | } |
| 559 | |
Alasdair G Kergon | 395b167 | 2008-02-08 02:10:52 +0000 | [diff] [blame] | 560 | static void kcryptd_io(struct work_struct *work) |
| 561 | { |
| 562 | struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work); |
| 563 | |
| 564 | if (bio_data_dir(io->base_bio) == READ) |
| 565 | kcryptd_io_read(io); |
| 566 | else |
| 567 | kcryptd_io_write(io); |
| 568 | } |
| 569 | |
| 570 | static void kcryptd_queue_io(struct dm_crypt_io *io) |
| 571 | { |
| 572 | struct crypt_config *cc = io->target->private; |
| 573 | |
| 574 | INIT_WORK(&io->work, kcryptd_io); |
| 575 | queue_work(cc->io_queue, &io->work); |
| 576 | } |
| 577 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 578 | static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int error) |
| 579 | { |
| 580 | } |
| 581 | |
| 582 | static void kcryptd_crypt_write_convert(struct dm_crypt_io *io) |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 583 | { |
| 584 | struct crypt_config *cc = io->target->private; |
| 585 | struct bio *base_bio = io->base_bio; |
| 586 | struct bio *clone; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 587 | unsigned remaining = base_bio->bi_size; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 588 | |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 589 | atomic_inc(&io->pending); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 590 | |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 591 | crypt_convert_init(cc, &io->ctx, NULL, base_bio, io->sector); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 592 | |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 593 | /* |
| 594 | * The allocated buffers can be smaller than the whole bio, |
| 595 | * so repeat the whole process until all the data can be handled. |
| 596 | */ |
| 597 | while (remaining) { |
Olaf Kirch | f97380b | 2007-05-09 02:32:54 -0700 | [diff] [blame] | 598 | clone = crypt_alloc_buffer(io, remaining); |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 599 | if (unlikely(!clone)) { |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 600 | io->error = -ENOMEM; |
| 601 | crypt_dec_pending(io); |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 602 | return; |
| 603 | } |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 604 | |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 605 | io->ctx.bio_out = clone; |
| 606 | io->ctx.idx_out = 0; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 607 | |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 608 | if (unlikely(crypt_convert(cc, &io->ctx) < 0)) { |
Neil Brown | 644bd2f | 2007-10-16 13:48:46 +0200 | [diff] [blame] | 609 | crypt_free_buffer_pages(cc, clone); |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 610 | bio_put(clone); |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 611 | io->error = -EIO; |
| 612 | crypt_dec_pending(io); |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 613 | return; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Olaf Kirch | f97380b | 2007-05-09 02:32:54 -0700 | [diff] [blame] | 616 | /* crypt_convert should have filled the clone bio */ |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 617 | BUG_ON(io->ctx.idx_out < clone->bi_vcnt); |
Olaf Kirch | f97380b | 2007-05-09 02:32:54 -0700 | [diff] [blame] | 618 | |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 619 | clone->bi_sector = cc->start + io->sector; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 620 | remaining -= clone->bi_size; |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 621 | io->sector += bio_sectors(clone); |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 622 | |
Olaf Kirch | 2f9941b | 2007-05-09 02:32:53 -0700 | [diff] [blame] | 623 | /* Grab another reference to the io struct |
| 624 | * before we kick off the request */ |
Milan Broz | 23541d2 | 2006-10-03 01:15:39 -0700 | [diff] [blame] | 625 | if (remaining) |
| 626 | atomic_inc(&io->pending); |
| 627 | |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 628 | generic_make_request(clone); |
| 629 | |
Olaf Kirch | 98221eb | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 630 | /* Do not reference clone after this - it |
| 631 | * may be gone already. */ |
| 632 | |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 633 | /* out of memory -> run queues */ |
| 634 | if (remaining) |
Olaf Kirch | 98221eb | 2007-05-09 02:32:52 -0700 | [diff] [blame] | 635 | congestion_wait(WRITE, HZ/100); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 636 | } |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 639 | static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error) |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 640 | { |
| 641 | if (unlikely(error < 0)) |
| 642 | io->error = -EIO; |
| 643 | |
| 644 | crypt_dec_pending(io); |
| 645 | } |
| 646 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 647 | static void kcryptd_crypt_read_convert(struct dm_crypt_io *io) |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 648 | { |
| 649 | struct crypt_config *cc = io->target->private; |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 650 | int r = 0; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 651 | |
Milan Broz | 5301703 | 2008-02-08 02:10:38 +0000 | [diff] [blame] | 652 | crypt_convert_init(cc, &io->ctx, io->base_bio, io->base_bio, |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 653 | io->sector); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 654 | |
Milan Broz | 5742fd7 | 2008-02-08 02:10:43 +0000 | [diff] [blame] | 655 | r = crypt_convert(cc, &io->ctx); |
| 656 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 657 | kcryptd_crypt_read_done(io, r); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 658 | } |
| 659 | |
Milan Broz | 4e4eef6 | 2008-02-08 02:10:49 +0000 | [diff] [blame] | 660 | static void kcryptd_crypt(struct work_struct *work) |
| 661 | { |
| 662 | struct dm_crypt_io *io = container_of(work, struct dm_crypt_io, work); |
| 663 | |
| 664 | if (bio_data_dir(io->base_bio) == READ) |
| 665 | kcryptd_crypt_read_convert(io); |
| 666 | else |
| 667 | kcryptd_crypt_write_convert(io); |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 668 | } |
| 669 | |
Alasdair G Kergon | 395b167 | 2008-02-08 02:10:52 +0000 | [diff] [blame] | 670 | static void kcryptd_queue_crypt(struct dm_crypt_io *io) |
| 671 | { |
| 672 | struct crypt_config *cc = io->target->private; |
| 673 | |
| 674 | INIT_WORK(&io->work, kcryptd_crypt); |
| 675 | queue_work(cc->crypt_queue, &io->work); |
| 676 | } |
| 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | /* |
| 679 | * Decode key from its hex representation |
| 680 | */ |
| 681 | static int crypt_decode_key(u8 *key, char *hex, unsigned int size) |
| 682 | { |
| 683 | char buffer[3]; |
| 684 | char *endp; |
| 685 | unsigned int i; |
| 686 | |
| 687 | buffer[2] = '\0'; |
| 688 | |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 689 | for (i = 0; i < size; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | buffer[0] = *hex++; |
| 691 | buffer[1] = *hex++; |
| 692 | |
| 693 | key[i] = (u8)simple_strtoul(buffer, &endp, 16); |
| 694 | |
| 695 | if (endp != &buffer[2]) |
| 696 | return -EINVAL; |
| 697 | } |
| 698 | |
| 699 | if (*hex != '\0') |
| 700 | return -EINVAL; |
| 701 | |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | /* |
| 706 | * Encode key into its hex representation |
| 707 | */ |
| 708 | static void crypt_encode_key(char *hex, u8 *key, unsigned int size) |
| 709 | { |
| 710 | unsigned int i; |
| 711 | |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 712 | for (i = 0; i < size; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | sprintf(hex, "%02x", *key); |
| 714 | hex += 2; |
| 715 | key++; |
| 716 | } |
| 717 | } |
| 718 | |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 719 | static int crypt_set_key(struct crypt_config *cc, char *key) |
| 720 | { |
| 721 | unsigned key_size = strlen(key) >> 1; |
| 722 | |
| 723 | if (cc->key_size && cc->key_size != key_size) |
| 724 | return -EINVAL; |
| 725 | |
| 726 | cc->key_size = key_size; /* initial settings */ |
| 727 | |
| 728 | if ((!key_size && strcmp(key, "-")) || |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 729 | (key_size && crypt_decode_key(cc->key, key, key_size) < 0)) |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 730 | return -EINVAL; |
| 731 | |
| 732 | set_bit(DM_CRYPT_KEY_VALID, &cc->flags); |
| 733 | |
| 734 | return 0; |
| 735 | } |
| 736 | |
| 737 | static int crypt_wipe_key(struct crypt_config *cc) |
| 738 | { |
| 739 | clear_bit(DM_CRYPT_KEY_VALID, &cc->flags); |
| 740 | memset(&cc->key, 0, cc->key_size * sizeof(u8)); |
| 741 | return 0; |
| 742 | } |
| 743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | /* |
| 745 | * Construct an encryption mapping: |
| 746 | * <cipher> <key> <iv_offset> <dev_path> <start> |
| 747 | */ |
| 748 | static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv) |
| 749 | { |
| 750 | struct crypt_config *cc; |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 751 | struct crypto_blkcipher *tfm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | char *tmp; |
| 753 | char *cipher; |
| 754 | char *chainmode; |
| 755 | char *ivmode; |
| 756 | char *ivopts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | unsigned int key_size; |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 758 | unsigned long long tmpll; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | if (argc != 5) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 761 | ti->error = "Not enough arguments"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | return -EINVAL; |
| 763 | } |
| 764 | |
| 765 | tmp = argv[0]; |
| 766 | cipher = strsep(&tmp, "-"); |
| 767 | chainmode = strsep(&tmp, "-"); |
| 768 | ivopts = strsep(&tmp, "-"); |
| 769 | ivmode = strsep(&ivopts, ":"); |
| 770 | |
| 771 | if (tmp) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 772 | DMWARN("Unexpected additional cipher options"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | key_size = strlen(argv[1]) >> 1; |
| 775 | |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 776 | cc = kzalloc(sizeof(*cc) + key_size * sizeof(u8), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | if (cc == NULL) { |
| 778 | ti->error = |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 779 | "Cannot allocate transparent encryption context"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | return -ENOMEM; |
| 781 | } |
| 782 | |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 783 | if (crypt_set_key(cc, argv[1])) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 784 | ti->error = "Error decoding key"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 785 | goto bad_cipher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | /* Compatiblity mode for old dm-crypt cipher strings */ |
| 789 | if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) { |
| 790 | chainmode = "cbc"; |
| 791 | ivmode = "plain"; |
| 792 | } |
| 793 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 794 | if (strcmp(chainmode, "ecb") && !ivmode) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 795 | ti->error = "This chaining mode requires an IV mechanism"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 796 | goto bad_cipher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | } |
| 798 | |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 799 | if (snprintf(cc->cipher, CRYPTO_MAX_ALG_NAME, "%s(%s)", |
| 800 | chainmode, cipher) >= CRYPTO_MAX_ALG_NAME) { |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 801 | ti->error = "Chain mode + cipher name is too long"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 802 | goto bad_cipher; |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | tfm = crypto_alloc_blkcipher(cc->cipher, 0, CRYPTO_ALG_ASYNC); |
| 806 | if (IS_ERR(tfm)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 807 | ti->error = "Error allocating crypto tfm"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 808 | goto bad_cipher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 811 | strcpy(cc->cipher, cipher); |
| 812 | strcpy(cc->chainmode, chainmode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | cc->tfm = tfm; |
| 814 | |
| 815 | /* |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 816 | * Choose ivmode. Valid modes: "plain", "essiv:<esshash>", "benbi". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | * See comments at iv code |
| 818 | */ |
| 819 | |
| 820 | if (ivmode == NULL) |
| 821 | cc->iv_gen_ops = NULL; |
| 822 | else if (strcmp(ivmode, "plain") == 0) |
| 823 | cc->iv_gen_ops = &crypt_iv_plain_ops; |
| 824 | else if (strcmp(ivmode, "essiv") == 0) |
| 825 | cc->iv_gen_ops = &crypt_iv_essiv_ops; |
Rik Snel | 48527fa | 2006-09-03 08:56:39 +1000 | [diff] [blame] | 826 | else if (strcmp(ivmode, "benbi") == 0) |
| 827 | cc->iv_gen_ops = &crypt_iv_benbi_ops; |
Ludwig Nussel | 46b4773 | 2007-05-09 02:32:55 -0700 | [diff] [blame] | 828 | else if (strcmp(ivmode, "null") == 0) |
| 829 | cc->iv_gen_ops = &crypt_iv_null_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | else { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 831 | ti->error = "Invalid IV mode"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 832 | goto bad_ivmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | if (cc->iv_gen_ops && cc->iv_gen_ops->ctr && |
| 836 | cc->iv_gen_ops->ctr(cc, ti, ivopts) < 0) |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 837 | goto bad_ivmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 839 | cc->iv_size = crypto_blkcipher_ivsize(tfm); |
| 840 | if (cc->iv_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | /* at least a 64 bit sector number should fit in our buffer */ |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 842 | cc->iv_size = max(cc->iv_size, |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 843 | (unsigned int)(sizeof(u64) / sizeof(u8))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | if (cc->iv_gen_ops) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 846 | DMWARN("Selected cipher does not support IVs"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | if (cc->iv_gen_ops->dtr) |
| 848 | cc->iv_gen_ops->dtr(cc); |
| 849 | cc->iv_gen_ops = NULL; |
| 850 | } |
| 851 | } |
| 852 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 853 | cc->io_pool = mempool_create_slab_pool(MIN_IOS, _crypt_io_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | if (!cc->io_pool) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 855 | ti->error = "Cannot allocate crypt io mempool"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 856 | goto bad_slab_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | } |
| 858 | |
Matthew Dobson | a19b27c | 2006-03-26 01:37:45 -0800 | [diff] [blame] | 859 | cc->page_pool = mempool_create_page_pool(MIN_POOL_PAGES, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | if (!cc->page_pool) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 861 | ti->error = "Cannot allocate page mempool"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 862 | goto bad_page_pool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
| 864 | |
Jens Axboe | 5972511 | 2007-04-02 10:06:42 +0200 | [diff] [blame] | 865 | cc->bs = bioset_create(MIN_IOS, MIN_IOS); |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 866 | if (!cc->bs) { |
| 867 | ti->error = "Cannot allocate crypt bioset"; |
| 868 | goto bad_bs; |
| 869 | } |
| 870 | |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 871 | if (crypto_blkcipher_setkey(tfm, cc->key, key_size) < 0) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 872 | ti->error = "Error setting key"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 873 | goto bad_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 876 | if (sscanf(argv[2], "%llu", &tmpll) != 1) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 877 | ti->error = "Invalid iv_offset sector"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 878 | goto bad_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 880 | cc->iv_offset = tmpll; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 882 | if (sscanf(argv[4], "%llu", &tmpll) != 1) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 883 | ti->error = "Invalid device sector"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 884 | goto bad_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 886 | cc->start = tmpll; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
| 888 | if (dm_get_device(ti, argv[3], cc->start, ti->len, |
Milan Broz | d469f84 | 2007-10-19 22:42:37 +0100 | [diff] [blame] | 889 | dm_table_get_mode(ti->table), &cc->dev)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 890 | ti->error = "Device lookup failed"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 891 | goto bad_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | if (ivmode && cc->iv_gen_ops) { |
| 895 | if (ivopts) |
| 896 | *(ivopts - 1) = ':'; |
| 897 | cc->iv_mode = kmalloc(strlen(ivmode) + 1, GFP_KERNEL); |
| 898 | if (!cc->iv_mode) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 899 | ti->error = "Error kmallocing iv_mode string"; |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 900 | goto bad_ivmode_string; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | } |
| 902 | strcpy(cc->iv_mode, ivmode); |
| 903 | } else |
| 904 | cc->iv_mode = NULL; |
| 905 | |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 906 | cc->io_queue = create_singlethread_workqueue("kcryptd_io"); |
| 907 | if (!cc->io_queue) { |
| 908 | ti->error = "Couldn't create kcryptd io queue"; |
| 909 | goto bad_io_queue; |
| 910 | } |
| 911 | |
| 912 | cc->crypt_queue = create_singlethread_workqueue("kcryptd"); |
| 913 | if (!cc->crypt_queue) { |
Milan Broz | 9934a8b | 2007-10-19 22:38:57 +0100 | [diff] [blame] | 914 | ti->error = "Couldn't create kcryptd queue"; |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 915 | goto bad_crypt_queue; |
Milan Broz | 9934a8b | 2007-10-19 22:38:57 +0100 | [diff] [blame] | 916 | } |
| 917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | ti->private = cc; |
| 919 | return 0; |
| 920 | |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 921 | bad_crypt_queue: |
| 922 | destroy_workqueue(cc->io_queue); |
| 923 | bad_io_queue: |
Milan Broz | 9934a8b | 2007-10-19 22:38:57 +0100 | [diff] [blame] | 924 | kfree(cc->iv_mode); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 925 | bad_ivmode_string: |
Dmitry Monakhov | 55b42c5 | 2007-10-19 22:38:37 +0100 | [diff] [blame] | 926 | dm_put_device(ti, cc->dev); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 927 | bad_device: |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 928 | bioset_free(cc->bs); |
| 929 | bad_bs: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | mempool_destroy(cc->page_pool); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 931 | bad_page_pool: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | mempool_destroy(cc->io_pool); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 933 | bad_slab_pool: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) |
| 935 | cc->iv_gen_ops->dtr(cc); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 936 | bad_ivmode: |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 937 | crypto_free_blkcipher(tfm); |
Milan Broz | 636d578 | 2007-10-19 22:47:52 +0100 | [diff] [blame] | 938 | bad_cipher: |
Stefan Rompf | 9d3520a | 2006-01-06 00:20:08 -0800 | [diff] [blame] | 939 | /* Must zero key material before freeing */ |
| 940 | memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | kfree(cc); |
| 942 | return -EINVAL; |
| 943 | } |
| 944 | |
| 945 | static void crypt_dtr(struct dm_target *ti) |
| 946 | { |
| 947 | struct crypt_config *cc = (struct crypt_config *) ti->private; |
| 948 | |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 949 | destroy_workqueue(cc->io_queue); |
| 950 | destroy_workqueue(cc->crypt_queue); |
Milan Broz | 80b16c1 | 2007-07-21 04:37:27 -0700 | [diff] [blame] | 951 | |
Milan Broz | 6a24c71 | 2006-10-03 01:15:40 -0700 | [diff] [blame] | 952 | bioset_free(cc->bs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | mempool_destroy(cc->page_pool); |
| 954 | mempool_destroy(cc->io_pool); |
| 955 | |
Jesper Juhl | 990a8ba | 2005-06-21 17:17:30 -0700 | [diff] [blame] | 956 | kfree(cc->iv_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) |
| 958 | cc->iv_gen_ops->dtr(cc); |
Herbert Xu | d1806f6 | 2006-08-22 20:29:17 +1000 | [diff] [blame] | 959 | crypto_free_blkcipher(cc->tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | dm_put_device(ti, cc->dev); |
Stefan Rompf | 9d3520a | 2006-01-06 00:20:08 -0800 | [diff] [blame] | 961 | |
| 962 | /* Must zero key material before freeing */ |
| 963 | memset(cc, 0, sizeof(*cc) + cc->key_size * sizeof(u8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | kfree(cc); |
| 965 | } |
| 966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | static int crypt_map(struct dm_target *ti, struct bio *bio, |
| 968 | union map_info *map_context) |
| 969 | { |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 970 | struct crypt_config *cc = ti->private; |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 971 | struct dm_crypt_io *io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 973 | io = mempool_alloc(cc->io_pool, GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | io->target = ti; |
Milan Broz | 8b00445 | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 975 | io->base_bio = bio; |
Milan Broz | 0c395b0 | 2008-02-08 02:10:54 +0000 | [diff] [blame^] | 976 | io->sector = bio->bi_sector - ti->begin; |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 977 | io->error = 0; |
Milan Broz | 93e605c | 2006-10-03 01:15:38 -0700 | [diff] [blame] | 978 | atomic_set(&io->pending, 0); |
Milan Broz | cabf08e | 2007-10-19 22:38:58 +0100 | [diff] [blame] | 979 | |
| 980 | if (bio_data_dir(io->base_bio) == READ) |
| 981 | kcryptd_queue_io(io); |
| 982 | else |
| 983 | kcryptd_queue_crypt(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
Kiyoshi Ueda | d2a7ad2 | 2006-12-08 02:41:06 -0800 | [diff] [blame] | 985 | return DM_MAPIO_SUBMITTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | static int crypt_status(struct dm_target *ti, status_type_t type, |
| 989 | char *result, unsigned int maxlen) |
| 990 | { |
| 991 | struct crypt_config *cc = (struct crypt_config *) ti->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | unsigned int sz = 0; |
| 993 | |
| 994 | switch (type) { |
| 995 | case STATUSTYPE_INFO: |
| 996 | result[0] = '\0'; |
| 997 | break; |
| 998 | |
| 999 | case STATUSTYPE_TABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | if (cc->iv_mode) |
Christophe Saout | 37af656 | 2006-10-30 20:39:08 +0100 | [diff] [blame] | 1001 | DMEMIT("%s-%s-%s ", cc->cipher, cc->chainmode, |
| 1002 | cc->iv_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | else |
Christophe Saout | 37af656 | 2006-10-30 20:39:08 +0100 | [diff] [blame] | 1004 | DMEMIT("%s-%s ", cc->cipher, cc->chainmode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
| 1006 | if (cc->key_size > 0) { |
| 1007 | if ((maxlen - sz) < ((cc->key_size << 1) + 1)) |
| 1008 | return -ENOMEM; |
| 1009 | |
| 1010 | crypt_encode_key(result + sz, cc->key, cc->key_size); |
| 1011 | sz += cc->key_size << 1; |
| 1012 | } else { |
| 1013 | if (sz >= maxlen) |
| 1014 | return -ENOMEM; |
| 1015 | result[sz++] = '-'; |
| 1016 | } |
| 1017 | |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 1018 | DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset, |
| 1019 | cc->dev->name, (unsigned long long)cc->start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | break; |
| 1021 | } |
| 1022 | return 0; |
| 1023 | } |
| 1024 | |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 1025 | static void crypt_postsuspend(struct dm_target *ti) |
| 1026 | { |
| 1027 | struct crypt_config *cc = ti->private; |
| 1028 | |
| 1029 | set_bit(DM_CRYPT_SUSPENDED, &cc->flags); |
| 1030 | } |
| 1031 | |
| 1032 | static int crypt_preresume(struct dm_target *ti) |
| 1033 | { |
| 1034 | struct crypt_config *cc = ti->private; |
| 1035 | |
| 1036 | if (!test_bit(DM_CRYPT_KEY_VALID, &cc->flags)) { |
| 1037 | DMERR("aborting resume - crypt key is not set."); |
| 1038 | return -EAGAIN; |
| 1039 | } |
| 1040 | |
| 1041 | return 0; |
| 1042 | } |
| 1043 | |
| 1044 | static void crypt_resume(struct dm_target *ti) |
| 1045 | { |
| 1046 | struct crypt_config *cc = ti->private; |
| 1047 | |
| 1048 | clear_bit(DM_CRYPT_SUSPENDED, &cc->flags); |
| 1049 | } |
| 1050 | |
| 1051 | /* Message interface |
| 1052 | * key set <key> |
| 1053 | * key wipe |
| 1054 | */ |
| 1055 | static int crypt_message(struct dm_target *ti, unsigned argc, char **argv) |
| 1056 | { |
| 1057 | struct crypt_config *cc = ti->private; |
| 1058 | |
| 1059 | if (argc < 2) |
| 1060 | goto error; |
| 1061 | |
| 1062 | if (!strnicmp(argv[0], MESG_STR("key"))) { |
| 1063 | if (!test_bit(DM_CRYPT_SUSPENDED, &cc->flags)) { |
| 1064 | DMWARN("not suspended during key manipulation."); |
| 1065 | return -EINVAL; |
| 1066 | } |
| 1067 | if (argc == 3 && !strnicmp(argv[1], MESG_STR("set"))) |
| 1068 | return crypt_set_key(cc, argv[2]); |
| 1069 | if (argc == 2 && !strnicmp(argv[1], MESG_STR("wipe"))) |
| 1070 | return crypt_wipe_key(cc); |
| 1071 | } |
| 1072 | |
| 1073 | error: |
| 1074 | DMWARN("unrecognised message received."); |
| 1075 | return -EINVAL; |
| 1076 | } |
| 1077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | static struct target_type crypt_target = { |
| 1079 | .name = "crypt", |
Ludwig Nussel | 46b4773 | 2007-05-09 02:32:55 -0700 | [diff] [blame] | 1080 | .version= {1, 5, 0}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | .module = THIS_MODULE, |
| 1082 | .ctr = crypt_ctr, |
| 1083 | .dtr = crypt_dtr, |
| 1084 | .map = crypt_map, |
| 1085 | .status = crypt_status, |
Milan Broz | e48d4bb | 2006-10-03 01:15:37 -0700 | [diff] [blame] | 1086 | .postsuspend = crypt_postsuspend, |
| 1087 | .preresume = crypt_preresume, |
| 1088 | .resume = crypt_resume, |
| 1089 | .message = crypt_message, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | }; |
| 1091 | |
| 1092 | static int __init dm_crypt_init(void) |
| 1093 | { |
| 1094 | int r; |
| 1095 | |
Alasdair G Kergon | 028867a | 2007-07-12 17:26:32 +0100 | [diff] [blame] | 1096 | _crypt_io_pool = KMEM_CACHE(dm_crypt_io, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | if (!_crypt_io_pool) |
| 1098 | return -ENOMEM; |
| 1099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | r = dm_register_target(&crypt_target); |
| 1101 | if (r < 0) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 1102 | DMERR("register failed %d", r); |
Milan Broz | 9934a8b | 2007-10-19 22:38:57 +0100 | [diff] [blame] | 1103 | kmem_cache_destroy(_crypt_io_pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | return r; |
| 1107 | } |
| 1108 | |
| 1109 | static void __exit dm_crypt_exit(void) |
| 1110 | { |
| 1111 | int r = dm_unregister_target(&crypt_target); |
| 1112 | |
| 1113 | if (r < 0) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 1114 | DMERR("unregister failed %d", r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | kmem_cache_destroy(_crypt_io_pool); |
| 1117 | } |
| 1118 | |
| 1119 | module_init(dm_crypt_init); |
| 1120 | module_exit(dm_crypt_exit); |
| 1121 | |
| 1122 | MODULE_AUTHOR("Christophe Saout <christophe@saout.de>"); |
| 1123 | MODULE_DESCRIPTION(DM_NAME " target for transparent encryption / decryption"); |
| 1124 | MODULE_LICENSE("GPL"); |