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