2 Linux loop encryption enabling module
4 Copyright (C) 2002 Herbert Valerio Riedel <hvr@gnu.org>
5 Copyright (C) 2003 Fruhwirth Clemens <clemens@endorphin.org>
7 This module is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This module is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this module; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/module.h>
24 #include <crypto/skcipher.h>
25 #include <linux/init.h>
26 #include <linux/string.h>
27 #include <linux/blkdev.h>
28 #include <linux/scatterlist.h>
29 #include <asm/uaccess.h>
32 MODULE_LICENSE("GPL");
33 MODULE_DESCRIPTION("loop blockdevice transferfunction adaptor / CryptoAPI");
34 MODULE_AUTHOR("Herbert Valerio Riedel <hvr@gnu.org>");
36 #define LOOP_IV_SECTOR_BITS 9
37 #define LOOP_IV_SECTOR_SIZE (1 << LOOP_IV_SECTOR_BITS)
40 cryptoloop_init(struct loop_device *lo, const struct loop_info64 *info)
45 char cms[LO_NAME_SIZE]; /* cipher-mode string */
48 char *cmsp = cms; /* c-m string pointer */
49 struct crypto_skcipher *tfm;
51 /* encryption breaks for non sector aligned offsets */
53 if (info->lo_offset % LOOP_IV_SECTOR_SIZE)
56 strncpy(cms, info->lo_crypt_name, LO_NAME_SIZE);
57 cms[LO_NAME_SIZE - 1] = 0;
60 cipher_len = strcspn(cmsp, "-");
62 mode = cmsp + cipher_len;
66 mode_len = strcspn(mode, "-");
74 if (cipher_len + mode_len + 3 > LO_NAME_SIZE)
77 memmove(cms, mode, mode_len);
78 cmsp = cms + mode_len;
80 memcpy(cmsp, info->lo_crypt_name, cipher_len);
85 tfm = crypto_alloc_skcipher(cms, 0, CRYPTO_ALG_ASYNC);
89 err = crypto_skcipher_setkey(tfm, info->lo_encrypt_key,
90 info->lo_encrypt_key_size);
99 crypto_free_skcipher(tfm);
106 typedef int (*encdec_cbc_t)(struct skcipher_request *req);
109 cryptoloop_transfer(struct loop_device *lo, int cmd,
110 struct page *raw_page, unsigned raw_off,
111 struct page *loop_page, unsigned loop_off,
112 int size, sector_t IV)
114 struct crypto_skcipher *tfm = lo->key_data;
115 SKCIPHER_REQUEST_ON_STACK(req, tfm);
116 struct scatterlist sg_out;
117 struct scatterlist sg_in;
119 encdec_cbc_t encdecfunc;
120 struct page *in_page, *out_page;
121 unsigned in_offs, out_offs;
124 skcipher_request_set_tfm(req, tfm);
125 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP,
128 sg_init_table(&sg_out, 1);
129 sg_init_table(&sg_in, 1);
134 out_page = loop_page;
136 encdecfunc = crypto_skcipher_decrypt;
142 encdecfunc = crypto_skcipher_encrypt;
146 const int sz = min(size, LOOP_IV_SECTOR_SIZE);
148 iv[0] = cpu_to_le32(IV & 0xffffffff);
150 sg_set_page(&sg_in, in_page, sz, in_offs);
151 sg_set_page(&sg_out, out_page, sz, out_offs);
153 skcipher_request_set_crypt(req, &sg_in, &sg_out, sz, iv);
154 err = encdecfunc(req);
167 skcipher_request_zero(req);
172 cryptoloop_ioctl(struct loop_device *lo, int cmd, unsigned long arg)
178 cryptoloop_release(struct loop_device *lo)
180 struct crypto_skcipher *tfm = lo->key_data;
182 crypto_free_skcipher(tfm);
186 printk(KERN_ERR "cryptoloop_release(): tfm == NULL?\n");
190 static struct loop_func_table cryptoloop_funcs = {
191 .number = LO_CRYPT_CRYPTOAPI,
192 .init = cryptoloop_init,
193 .ioctl = cryptoloop_ioctl,
194 .transfer = cryptoloop_transfer,
195 .release = cryptoloop_release,
200 init_cryptoloop(void)
202 int rc = loop_register_transfer(&cryptoloop_funcs);
205 printk(KERN_ERR "cryptoloop: loop_register_transfer failed\n");
210 cleanup_cryptoloop(void)
212 if (loop_unregister_transfer(LO_CRYPT_CRYPTOAPI))
214 "cryptoloop: loop_unregister_transfer failed\n");
217 module_init(init_cryptoloop);
218 module_exit(cleanup_cryptoloop);