blob: 4f75df40fb121f3c955f916fac5a3bb7f64d7f40 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Sage Weil8b6e4f22010-02-02 16:07:07 -08002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/ceph/ceph_debug.h>
Sage Weil8b6e4f22010-02-02 16:07:07 -08004
5#include <linux/err.h>
6#include <linux/scatterlist.h>
Ilya Dryomov7fea24c2017-01-16 14:35:17 +01007#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Herbert Xue59dd982016-01-24 21:18:40 +08009#include <crypto/aes.h>
10#include <crypto/skcipher.h>
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -070011#include <linux/key-type.h>
Ingo Molnar5b3cc152017-02-02 20:43:54 +010012#include <linux/sched/mm.h>
Sage Weil8b6e4f22010-02-02 16:07:07 -080013
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -070014#include <keys/ceph-type.h>
David Howells7c3bec02014-07-18 18:56:35 +010015#include <keys/user-type.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070016#include <linux/ceph/decode.h>
Sage Weil8b6e4f22010-02-02 16:07:07 -080017#include "crypto.h"
Sage Weil8b6e4f22010-02-02 16:07:07 -080018
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010019/*
20 * Set ->key and ->tfm. The rest of the key should be filled in before
21 * this function is called.
22 */
23static int set_secret(struct ceph_crypto_key *key, void *buf)
24{
25 unsigned int noio_flag;
26 int ret;
27
28 key->key = NULL;
29 key->tfm = NULL;
30
31 switch (key->type) {
32 case CEPH_CRYPTO_NONE:
33 return 0; /* nothing to do */
34 case CEPH_CRYPTO_AES:
35 break;
36 default:
37 return -ENOTSUPP;
38 }
39
Eric Biggersb1127082017-11-06 21:57:26 -080040 if (!key->len)
41 return -EINVAL;
42
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010043 key->key = kmemdup(buf, key->len, GFP_NOIO);
44 if (!key->key) {
45 ret = -ENOMEM;
46 goto fail;
47 }
48
Kees Cook69d6302b2018-09-18 19:10:45 -070049 /* crypto_alloc_sync_skcipher() allocates with GFP_KERNEL */
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010050 noio_flag = memalloc_noio_save();
Kees Cook69d6302b2018-09-18 19:10:45 -070051 key->tfm = crypto_alloc_sync_skcipher("cbc(aes)", 0, 0);
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010052 memalloc_noio_restore(noio_flag);
53 if (IS_ERR(key->tfm)) {
54 ret = PTR_ERR(key->tfm);
55 key->tfm = NULL;
56 goto fail;
57 }
58
Kees Cook69d6302b2018-09-18 19:10:45 -070059 ret = crypto_sync_skcipher_setkey(key->tfm, key->key, key->len);
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010060 if (ret)
61 goto fail;
62
63 return 0;
64
65fail:
66 ceph_crypto_key_destroy(key);
67 return ret;
68}
69
Tommi Virtanen8323c3a2011-03-25 16:32:57 -070070int ceph_crypto_key_clone(struct ceph_crypto_key *dst,
71 const struct ceph_crypto_key *src)
72{
73 memcpy(dst, src, sizeof(struct ceph_crypto_key));
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010074 return set_secret(dst, src->key);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -070075}
76
Sage Weil8b6e4f22010-02-02 16:07:07 -080077int ceph_crypto_key_encode(struct ceph_crypto_key *key, void **p, void *end)
78{
79 if (*p + sizeof(u16) + sizeof(key->created) +
80 sizeof(u16) + key->len > end)
81 return -ERANGE;
82 ceph_encode_16(p, key->type);
83 ceph_encode_copy(p, &key->created, sizeof(key->created));
84 ceph_encode_16(p, key->len);
85 ceph_encode_copy(p, key->key, key->len);
86 return 0;
87}
88
89int ceph_crypto_key_decode(struct ceph_crypto_key *key, void **p, void *end)
90{
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010091 int ret;
92
Sage Weil8b6e4f22010-02-02 16:07:07 -080093 ceph_decode_need(p, end, 2*sizeof(u16) + sizeof(key->created), bad);
94 key->type = ceph_decode_16(p);
95 ceph_decode_copy(p, &key->created, sizeof(key->created));
96 key->len = ceph_decode_16(p);
97 ceph_decode_need(p, end, key->len, bad);
Ilya Dryomov7af3ea12016-12-02 16:35:08 +010098 ret = set_secret(key, *p);
99 *p += key->len;
100 return ret;
Sage Weil8b6e4f22010-02-02 16:07:07 -0800101
102bad:
103 dout("failed to decode crypto key\n");
104 return -EINVAL;
105}
106
107int ceph_crypto_key_unarmor(struct ceph_crypto_key *key, const char *inkey)
108{
109 int inlen = strlen(inkey);
110 int blen = inlen * 3 / 4;
111 void *buf, *p;
112 int ret;
113
114 dout("crypto_key_unarmor %s\n", inkey);
115 buf = kmalloc(blen, GFP_NOFS);
116 if (!buf)
117 return -ENOMEM;
118 blen = ceph_unarmor(buf, inkey, inkey+inlen);
119 if (blen < 0) {
120 kfree(buf);
121 return blen;
122 }
123
124 p = buf;
125 ret = ceph_crypto_key_decode(key, &p, p + blen);
126 kfree(buf);
127 if (ret)
128 return ret;
129 dout("crypto_key_unarmor key %p type %d len %d\n", key,
130 key->type, key->len);
131 return 0;
132}
133
Ilya Dryomov6db23042016-12-02 16:35:08 +0100134void ceph_crypto_key_destroy(struct ceph_crypto_key *key)
135{
136 if (key) {
137 kfree(key->key);
138 key->key = NULL;
Jia-Ju Baie8c99202019-07-24 17:43:06 +0800139 if (key->tfm) {
140 crypto_free_sync_skcipher(key->tfm);
141 key->tfm = NULL;
142 }
Ilya Dryomov6db23042016-12-02 16:35:08 +0100143 }
144}
145
Sage Weilcbbfe492010-08-02 15:48:23 -0700146static const u8 *aes_iv = (u8 *)CEPH_AES_IV;
Sage Weil8b6e4f22010-02-02 16:07:07 -0800147
Ilya Dryomovaaef3172014-10-23 00:25:22 +0400148/*
149 * Should be used for buffers allocated with ceph_kvmalloc().
150 * Currently these are encrypt out-buffer (ceph_buffer) and decrypt
151 * in-buffer (msg front).
152 *
153 * Dispose of @sgt with teardown_sgtable().
154 *
155 * @prealloc_sg is to avoid memory allocation inside sg_alloc_table()
156 * in cases where a single sg is sufficient. No attempt to reduce the
157 * number of sgs by squeezing physically contiguous pages together is
158 * made though, for simplicity.
159 */
160static int setup_sgtable(struct sg_table *sgt, struct scatterlist *prealloc_sg,
161 const void *buf, unsigned int buf_len)
162{
163 struct scatterlist *sg;
164 const bool is_vmalloc = is_vmalloc_addr(buf);
165 unsigned int off = offset_in_page(buf);
166 unsigned int chunk_cnt = 1;
167 unsigned int chunk_len = PAGE_ALIGN(off + buf_len);
168 int i;
169 int ret;
170
171 if (buf_len == 0) {
172 memset(sgt, 0, sizeof(*sgt));
173 return -EINVAL;
174 }
175
176 if (is_vmalloc) {
177 chunk_cnt = chunk_len >> PAGE_SHIFT;
178 chunk_len = PAGE_SIZE;
179 }
180
181 if (chunk_cnt > 1) {
182 ret = sg_alloc_table(sgt, chunk_cnt, GFP_NOFS);
183 if (ret)
184 return ret;
185 } else {
186 WARN_ON(chunk_cnt != 1);
187 sg_init_table(prealloc_sg, 1);
188 sgt->sgl = prealloc_sg;
189 sgt->nents = sgt->orig_nents = 1;
190 }
191
192 for_each_sg(sgt->sgl, sg, sgt->orig_nents, i) {
193 struct page *page;
194 unsigned int len = min(chunk_len - off, buf_len);
195
196 if (is_vmalloc)
197 page = vmalloc_to_page(buf);
198 else
199 page = virt_to_page(buf);
200
201 sg_set_page(sg, page, len, off);
202
203 off = 0;
204 buf += len;
205 buf_len -= len;
206 }
207 WARN_ON(buf_len != 0);
208
209 return 0;
210}
211
212static void teardown_sgtable(struct sg_table *sgt)
213{
214 if (sgt->orig_nents > 1)
215 sg_free_table(sgt);
216}
217
Ilya Dryomova45f7952016-12-02 16:35:07 +0100218static int ceph_aes_crypt(const struct ceph_crypto_key *key, bool encrypt,
219 void *buf, int buf_len, int in_len, int *pout_len)
220{
Kees Cook69d6302b2018-09-18 19:10:45 -0700221 SYNC_SKCIPHER_REQUEST_ON_STACK(req, key->tfm);
Ilya Dryomova45f7952016-12-02 16:35:07 +0100222 struct sg_table sgt;
223 struct scatterlist prealloc_sg;
Ilya Dryomov124f9302017-01-16 19:16:46 +0100224 char iv[AES_BLOCK_SIZE] __aligned(8);
Ilya Dryomova45f7952016-12-02 16:35:07 +0100225 int pad_byte = AES_BLOCK_SIZE - (in_len & (AES_BLOCK_SIZE - 1));
226 int crypt_len = encrypt ? in_len + pad_byte : in_len;
227 int ret;
228
Ilya Dryomova45f7952016-12-02 16:35:07 +0100229 WARN_ON(crypt_len > buf_len);
230 if (encrypt)
231 memset(buf + in_len, pad_byte, pad_byte);
232 ret = setup_sgtable(&sgt, &prealloc_sg, buf, crypt_len);
233 if (ret)
Ilya Dryomov7af3ea12016-12-02 16:35:08 +0100234 return ret;
Ilya Dryomova45f7952016-12-02 16:35:07 +0100235
Ilya Dryomova45f7952016-12-02 16:35:07 +0100236 memcpy(iv, aes_iv, AES_BLOCK_SIZE);
Kees Cook69d6302b2018-09-18 19:10:45 -0700237 skcipher_request_set_sync_tfm(req, key->tfm);
Ilya Dryomova45f7952016-12-02 16:35:07 +0100238 skcipher_request_set_callback(req, 0, NULL, NULL);
239 skcipher_request_set_crypt(req, sgt.sgl, sgt.sgl, crypt_len, iv);
240
241 /*
242 print_hex_dump(KERN_ERR, "key: ", DUMP_PREFIX_NONE, 16, 1,
243 key->key, key->len, 1);
244 print_hex_dump(KERN_ERR, " in: ", DUMP_PREFIX_NONE, 16, 1,
245 buf, crypt_len, 1);
246 */
247 if (encrypt)
248 ret = crypto_skcipher_encrypt(req);
249 else
250 ret = crypto_skcipher_decrypt(req);
251 skcipher_request_zero(req);
252 if (ret) {
253 pr_err("%s %scrypt failed: %d\n", __func__,
254 encrypt ? "en" : "de", ret);
255 goto out_sgt;
256 }
257 /*
258 print_hex_dump(KERN_ERR, "out: ", DUMP_PREFIX_NONE, 16, 1,
259 buf, crypt_len, 1);
260 */
261
262 if (encrypt) {
263 *pout_len = crypt_len;
264 } else {
265 pad_byte = *(char *)(buf + in_len - 1);
266 if (pad_byte > 0 && pad_byte <= AES_BLOCK_SIZE &&
267 in_len >= pad_byte) {
268 *pout_len = in_len - pad_byte;
269 } else {
270 pr_err("%s got bad padding %d on in_len %d\n",
271 __func__, pad_byte, in_len);
272 ret = -EPERM;
273 goto out_sgt;
274 }
275 }
276
277out_sgt:
278 teardown_sgtable(&sgt);
Ilya Dryomova45f7952016-12-02 16:35:07 +0100279 return ret;
280}
281
282int ceph_crypt(const struct ceph_crypto_key *key, bool encrypt,
283 void *buf, int buf_len, int in_len, int *pout_len)
284{
285 switch (key->type) {
286 case CEPH_CRYPTO_NONE:
287 *pout_len = in_len;
288 return 0;
289 case CEPH_CRYPTO_AES:
290 return ceph_aes_crypt(key, encrypt, buf, buf_len, in_len,
291 pout_len);
292 default:
293 return -ENOTSUPP;
294 }
295}
296
David Howellsefa64c02014-07-18 18:56:35 +0100297static int ceph_key_preparse(struct key_preparsed_payload *prep)
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700298{
299 struct ceph_crypto_key *ckey;
David Howellscf7f6012012-09-13 13:06:29 +0100300 size_t datalen = prep->datalen;
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700301 int ret;
302 void *p;
303
304 ret = -EINVAL;
David Howellscf7f6012012-09-13 13:06:29 +0100305 if (datalen <= 0 || datalen > 32767 || !prep->data)
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700306 goto err;
307
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700308 ret = -ENOMEM;
309 ckey = kmalloc(sizeof(*ckey), GFP_KERNEL);
310 if (!ckey)
311 goto err;
312
313 /* TODO ceph_crypto_key_decode should really take const input */
David Howellscf7f6012012-09-13 13:06:29 +0100314 p = (void *)prep->data;
315 ret = ceph_crypto_key_decode(ckey, &p, (char*)prep->data+datalen);
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700316 if (ret < 0)
317 goto err_ckey;
318
David Howells146aa8b2015-10-21 14:04:48 +0100319 prep->payload.data[0] = ckey;
David Howellsefa64c02014-07-18 18:56:35 +0100320 prep->quotalen = datalen;
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700321 return 0;
322
323err_ckey:
324 kfree(ckey);
325err:
326 return ret;
327}
328
David Howellsefa64c02014-07-18 18:56:35 +0100329static void ceph_key_free_preparse(struct key_preparsed_payload *prep)
330{
David Howells146aa8b2015-10-21 14:04:48 +0100331 struct ceph_crypto_key *ckey = prep->payload.data[0];
David Howellsefa64c02014-07-18 18:56:35 +0100332 ceph_crypto_key_destroy(ckey);
333 kfree(ckey);
334}
335
David Howellsefa64c02014-07-18 18:56:35 +0100336static void ceph_key_destroy(struct key *key)
337{
David Howells146aa8b2015-10-21 14:04:48 +0100338 struct ceph_crypto_key *ckey = key->payload.data[0];
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700339
340 ceph_crypto_key_destroy(ckey);
Sylvain Munautf0666b12012-08-02 09:12:59 -0700341 kfree(ckey);
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700342}
343
344struct key_type key_type_ceph = {
345 .name = "ceph",
David Howellsefa64c02014-07-18 18:56:35 +0100346 .preparse = ceph_key_preparse,
347 .free_preparse = ceph_key_free_preparse,
348 .instantiate = generic_key_instantiate,
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700349 .destroy = ceph_key_destroy,
350};
351
Chengguang Xu57a35df2018-03-10 20:32:05 +0800352int __init ceph_crypto_init(void)
353{
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700354 return register_key_type(&key_type_ceph);
355}
356
Chengguang Xu57a35df2018-03-10 20:32:05 +0800357void ceph_crypto_shutdown(void)
358{
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700359 unregister_key_type(&key_type_ceph);
360}