blob: 98472a4670fbc959e4f6386fd4aac0514ac76074 [file] [log] [blame]
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07001/*
2 * key management facility for FS encryption support.
3 *
4 * Copyright (C) 2015, Google, Inc.
5 *
6 * This contains encryption key functions.
7 *
8 * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
9 */
10
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070011#include <keys/user-type.h>
Eric Biggerse33fa312018-11-26 11:27:37 -080012#include <linux/hashtable.h>
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070013#include <linux/scatterlist.h>
Daniel Walter8e989de2017-06-19 09:27:58 +020014#include <linux/ratelimit.h>
15#include <crypto/aes.h>
Eric Biggerse33fa312018-11-26 11:27:37 -080016#include <crypto/algapi.h>
Daniel Walter8e989de2017-06-19 09:27:58 +020017#include <crypto/sha.h>
Eric Biggerseb9c5fd2018-01-05 10:45:00 -080018#include <crypto/skcipher.h>
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070019#include "fscrypt_private.h"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070020
Daniel Walter8e989de2017-06-19 09:27:58 +020021static struct crypto_shash *essiv_hash_tfm;
22
Eric Biggerse33fa312018-11-26 11:27:37 -080023/* Table of keys referenced by FS_POLICY_FLAG_DIRECT_KEY policies */
24static DEFINE_HASHTABLE(fscrypt_master_keys, 6); /* 6 bits = 64 buckets */
25static DEFINE_SPINLOCK(fscrypt_master_keys_lock);
26
Eric Biggers08ac7222018-04-30 15:51:49 -070027/*
28 * Key derivation function. This generates the derived key by encrypting the
29 * master key with AES-128-ECB using the inode's nonce as the AES key.
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070030 *
Eric Biggers08ac7222018-04-30 15:51:49 -070031 * The master key must be at least as long as the derived key. If the master
32 * key is longer, then only the first 'derived_keysize' bytes are used.
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070033 */
Eric Biggers08ac7222018-04-30 15:51:49 -070034static int derive_key_aes(const u8 *master_key,
35 const struct fscrypt_context *ctx,
36 u8 *derived_key, unsigned int derived_keysize)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070037{
38 int res = 0;
Linus Torvaldsd4075742016-03-21 11:03:02 -070039 struct skcipher_request *req = NULL;
Gilad Ben-Yossef743205f2017-10-18 08:00:44 +010040 DECLARE_CRYPTO_WAIT(wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070041 struct scatterlist src_sg, dst_sg;
Linus Torvaldsd4075742016-03-21 11:03:02 -070042 struct crypto_skcipher *tfm = crypto_alloc_skcipher("ecb(aes)", 0, 0);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070043
44 if (IS_ERR(tfm)) {
45 res = PTR_ERR(tfm);
46 tfm = NULL;
47 goto out;
48 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070049 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
50 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070051 if (!req) {
52 res = -ENOMEM;
53 goto out;
54 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070055 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070056 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossef743205f2017-10-18 08:00:44 +010057 crypto_req_done, &wait);
Eric Biggers08ac7222018-04-30 15:51:49 -070058 res = crypto_skcipher_setkey(tfm, ctx->nonce, sizeof(ctx->nonce));
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070059 if (res < 0)
60 goto out;
61
Eric Biggers08ac7222018-04-30 15:51:49 -070062 sg_init_one(&src_sg, master_key, derived_keysize);
63 sg_init_one(&dst_sg, derived_key, derived_keysize);
64 skcipher_request_set_crypt(req, &src_sg, &dst_sg, derived_keysize,
Daniel Walter8e989de2017-06-19 09:27:58 +020065 NULL);
Gilad Ben-Yossef743205f2017-10-18 08:00:44 +010066 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070067out:
Linus Torvaldsd4075742016-03-21 11:03:02 -070068 skcipher_request_free(req);
69 crypto_free_skcipher(tfm);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070070 return res;
71}
72
Eric Biggers24cc7a82018-04-30 15:51:48 -070073/*
74 * Search the current task's subscribed keyrings for a "logon" key with
75 * description prefix:descriptor, and if found acquire a read lock on it and
76 * return a pointer to its validated payload in *payload_ret.
77 */
78static struct key *
79find_and_lock_process_key(const char *prefix,
80 const u8 descriptor[FS_KEY_DESCRIPTOR_SIZE],
81 unsigned int min_keysize,
82 const struct fscrypt_key **payload_ret)
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070083{
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070084 char *description;
Eric Biggers24cc7a82018-04-30 15:51:48 -070085 struct key *key;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070086 const struct user_key_payload *ukp;
Eric Biggers24cc7a82018-04-30 15:51:48 -070087 const struct fscrypt_key *payload;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070088
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070089 description = kasprintf(GFP_NOFS, "%s%*phN", prefix,
Eric Biggers24cc7a82018-04-30 15:51:48 -070090 FS_KEY_DESCRIPTOR_SIZE, descriptor);
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070091 if (!description)
Eric Biggers24cc7a82018-04-30 15:51:48 -070092 return ERR_PTR(-ENOMEM);
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070093
Eric Biggers24cc7a82018-04-30 15:51:48 -070094 key = request_key(&key_type_logon, description, NULL);
Jaegeuk Kime6b120d2017-07-10 12:55:09 -070095 kfree(description);
Eric Biggers24cc7a82018-04-30 15:51:48 -070096 if (IS_ERR(key))
97 return key;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070098
Eric Biggers24cc7a82018-04-30 15:51:48 -070099 down_read(&key->sem);
100 ukp = user_key_payload_locked(key);
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -0700101
Eric Biggers24cc7a82018-04-30 15:51:48 -0700102 if (!ukp) /* was the key revoked before we acquired its semaphore? */
103 goto invalid;
104
105 payload = (const struct fscrypt_key *)ukp->data;
106
107 if (ukp->datalen != sizeof(struct fscrypt_key) ||
108 payload->size < 1 || payload->size > FS_MAX_KEY_SIZE) {
109 fscrypt_warn(NULL,
110 "key with description '%s' has invalid payload",
111 key->description);
112 goto invalid;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -0700113 }
Eric Biggers24cc7a82018-04-30 15:51:48 -0700114
Eric Biggers08ac7222018-04-30 15:51:49 -0700115 if (payload->size < min_keysize) {
Eric Biggers24cc7a82018-04-30 15:51:48 -0700116 fscrypt_warn(NULL,
Eric Biggers08ac7222018-04-30 15:51:49 -0700117 "key with description '%s' is too short (got %u bytes, need %u+ bytes)",
Eric Biggers24cc7a82018-04-30 15:51:48 -0700118 key->description, payload->size, min_keysize);
119 goto invalid;
120 }
121
122 *payload_ret = payload;
123 return key;
124
125invalid:
126 up_read(&key->sem);
127 key_put(key);
128 return ERR_PTR(-ENOKEY);
129}
130
Eric Biggerse33fa312018-11-26 11:27:37 -0800131static struct fscrypt_mode available_modes[] = {
Eric Biggersa4842a12018-05-18 10:58:14 -0700132 [FS_ENCRYPTION_MODE_AES_256_XTS] = {
133 .friendly_name = "AES-256-XTS",
134 .cipher_str = "xts(aes)",
135 .keysize = 64,
Eric Biggerse33fa312018-11-26 11:27:37 -0800136 .ivsize = 16,
Eric Biggersa4842a12018-05-18 10:58:14 -0700137 },
138 [FS_ENCRYPTION_MODE_AES_256_CTS] = {
139 .friendly_name = "AES-256-CTS-CBC",
140 .cipher_str = "cts(cbc(aes))",
141 .keysize = 32,
Eric Biggerse33fa312018-11-26 11:27:37 -0800142 .ivsize = 16,
Eric Biggersa4842a12018-05-18 10:58:14 -0700143 },
144 [FS_ENCRYPTION_MODE_AES_128_CBC] = {
145 .friendly_name = "AES-128-CBC",
146 .cipher_str = "cbc(aes)",
147 .keysize = 16,
Eric Biggerse33fa312018-11-26 11:27:37 -0800148 .ivsize = 16,
149 .needs_essiv = true,
Eric Biggersa4842a12018-05-18 10:58:14 -0700150 },
151 [FS_ENCRYPTION_MODE_AES_128_CTS] = {
152 .friendly_name = "AES-128-CTS-CBC",
153 .cipher_str = "cts(cbc(aes))",
154 .keysize = 16,
Eric Biggerse33fa312018-11-26 11:27:37 -0800155 .ivsize = 16,
156 },
157 [FS_ENCRYPTION_MODE_ADIANTUM] = {
158 .friendly_name = "Adiantum",
159 .cipher_str = "adiantum(xchacha12,aes)",
160 .keysize = 32,
161 .ivsize = 32,
Eric Biggersa4842a12018-05-18 10:58:14 -0700162 },
Daniel Walter8e989de2017-06-19 09:27:58 +0200163};
164
Eric Biggersa4842a12018-05-18 10:58:14 -0700165static struct fscrypt_mode *
166select_encryption_mode(const struct fscrypt_info *ci, const struct inode *inode)
Eric Biggers8f398502016-09-15 13:32:11 -0400167{
Daniel Walter8e989de2017-06-19 09:27:58 +0200168 if (!fscrypt_valid_enc_modes(ci->ci_data_mode, ci->ci_filename_mode)) {
Eric Biggers78275d82018-04-30 15:51:47 -0700169 fscrypt_warn(inode->i_sb,
170 "inode %lu uses unsupported encryption modes (contents mode %d, filenames mode %d)",
171 inode->i_ino, ci->ci_data_mode,
172 ci->ci_filename_mode);
Eric Biggersa4842a12018-05-18 10:58:14 -0700173 return ERR_PTR(-EINVAL);
Daniel Walter8e989de2017-06-19 09:27:58 +0200174 }
175
Eric Biggersa4842a12018-05-18 10:58:14 -0700176 if (S_ISREG(inode->i_mode))
177 return &available_modes[ci->ci_data_mode];
Eric Biggers8f398502016-09-15 13:32:11 -0400178
Eric Biggersa4842a12018-05-18 10:58:14 -0700179 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
180 return &available_modes[ci->ci_filename_mode];
181
182 WARN_ONCE(1, "fscrypt: filesystem tried to load encryption info for inode %lu, which is not encryptable (file type %d)\n",
183 inode->i_ino, (inode->i_mode & S_IFMT));
184 return ERR_PTR(-EINVAL);
Eric Biggers8f398502016-09-15 13:32:11 -0400185}
186
Eric Biggerse33fa312018-11-26 11:27:37 -0800187/* Find the master key, then derive the inode's actual encryption key */
188static int find_and_derive_key(const struct inode *inode,
189 const struct fscrypt_context *ctx,
190 u8 *derived_key, const struct fscrypt_mode *mode)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700191{
Eric Biggerse33fa312018-11-26 11:27:37 -0800192 struct key *key;
193 const struct fscrypt_key *payload;
194 int err;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700195
Eric Biggerse33fa312018-11-26 11:27:37 -0800196 key = find_and_lock_process_key(FS_KEY_DESC_PREFIX,
197 ctx->master_key_descriptor,
198 mode->keysize, &payload);
199 if (key == ERR_PTR(-ENOKEY) && inode->i_sb->s_cop->key_prefix) {
200 key = find_and_lock_process_key(inode->i_sb->s_cop->key_prefix,
201 ctx->master_key_descriptor,
202 mode->keysize, &payload);
203 }
204 if (IS_ERR(key))
205 return PTR_ERR(key);
206
207 if (ctx->flags & FS_POLICY_FLAG_DIRECT_KEY) {
208 if (mode->ivsize < offsetofend(union fscrypt_iv, nonce)) {
209 fscrypt_warn(inode->i_sb,
210 "direct key mode not allowed with %s",
211 mode->friendly_name);
212 err = -EINVAL;
213 } else if (ctx->contents_encryption_mode !=
214 ctx->filenames_encryption_mode) {
215 fscrypt_warn(inode->i_sb,
216 "direct key mode not allowed with different contents and filenames modes");
217 err = -EINVAL;
218 } else {
219 memcpy(derived_key, payload->raw, mode->keysize);
220 err = 0;
221 }
222 } else {
223 err = derive_key_aes(payload->raw, ctx, derived_key,
224 mode->keysize);
225 }
226 up_read(&key->sem);
227 key_put(key);
228 return err;
229}
230
231/* Allocate and key a symmetric cipher object for the given encryption mode */
232static struct crypto_skcipher *
233allocate_skcipher_for_mode(struct fscrypt_mode *mode, const u8 *raw_key,
234 const struct inode *inode)
235{
236 struct crypto_skcipher *tfm;
237 int err;
238
239 tfm = crypto_alloc_skcipher(mode->cipher_str, 0, 0);
240 if (IS_ERR(tfm)) {
241 fscrypt_warn(inode->i_sb,
242 "error allocating '%s' transform for inode %lu: %ld",
243 mode->cipher_str, inode->i_ino, PTR_ERR(tfm));
244 return tfm;
245 }
246 if (unlikely(!mode->logged_impl_name)) {
247 /*
248 * fscrypt performance can vary greatly depending on which
249 * crypto algorithm implementation is used. Help people debug
250 * performance problems by logging the ->cra_driver_name the
251 * first time a mode is used. Note that multiple threads can
252 * race here, but it doesn't really matter.
253 */
254 mode->logged_impl_name = true;
255 pr_info("fscrypt: %s using implementation \"%s\"\n",
256 mode->friendly_name,
257 crypto_skcipher_alg(tfm)->base.cra_driver_name);
258 }
259 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
260 err = crypto_skcipher_setkey(tfm, raw_key, mode->keysize);
261 if (err)
262 goto err_free_tfm;
263
264 return tfm;
265
266err_free_tfm:
267 crypto_free_skcipher(tfm);
268 return ERR_PTR(err);
269}
270
271/* Master key referenced by FS_POLICY_FLAG_DIRECT_KEY policy */
272struct fscrypt_master_key {
273 struct hlist_node mk_node;
274 atomic_t mk_refcount;
275 const struct fscrypt_mode *mk_mode;
276 struct crypto_skcipher *mk_ctfm;
277 u8 mk_descriptor[FS_KEY_DESCRIPTOR_SIZE];
278 u8 mk_raw[FS_MAX_KEY_SIZE];
279};
280
281static void free_master_key(struct fscrypt_master_key *mk)
282{
283 if (mk) {
284 crypto_free_skcipher(mk->mk_ctfm);
285 kzfree(mk);
286 }
287}
288
289static void put_master_key(struct fscrypt_master_key *mk)
290{
291 if (!atomic_dec_and_lock(&mk->mk_refcount, &fscrypt_master_keys_lock))
292 return;
293 hash_del(&mk->mk_node);
294 spin_unlock(&fscrypt_master_keys_lock);
295
296 free_master_key(mk);
297}
298
299/*
300 * Find/insert the given master key into the fscrypt_master_keys table. If
301 * found, it is returned with elevated refcount, and 'to_insert' is freed if
302 * non-NULL. If not found, 'to_insert' is inserted and returned if it's
303 * non-NULL; otherwise NULL is returned.
304 */
305static struct fscrypt_master_key *
306find_or_insert_master_key(struct fscrypt_master_key *to_insert,
307 const u8 *raw_key, const struct fscrypt_mode *mode,
308 const struct fscrypt_info *ci)
309{
310 unsigned long hash_key;
311 struct fscrypt_master_key *mk;
312
313 /*
314 * Careful: to avoid potentially leaking secret key bytes via timing
315 * information, we must key the hash table by descriptor rather than by
316 * raw key, and use crypto_memneq() when comparing raw keys.
317 */
318
319 BUILD_BUG_ON(sizeof(hash_key) > FS_KEY_DESCRIPTOR_SIZE);
320 memcpy(&hash_key, ci->ci_master_key_descriptor, sizeof(hash_key));
321
322 spin_lock(&fscrypt_master_keys_lock);
323 hash_for_each_possible(fscrypt_master_keys, mk, mk_node, hash_key) {
324 if (memcmp(ci->ci_master_key_descriptor, mk->mk_descriptor,
325 FS_KEY_DESCRIPTOR_SIZE) != 0)
326 continue;
327 if (mode != mk->mk_mode)
328 continue;
329 if (crypto_memneq(raw_key, mk->mk_raw, mode->keysize))
330 continue;
331 /* using existing tfm with same (descriptor, mode, raw_key) */
332 atomic_inc(&mk->mk_refcount);
333 spin_unlock(&fscrypt_master_keys_lock);
334 free_master_key(to_insert);
335 return mk;
336 }
337 if (to_insert)
338 hash_add(fscrypt_master_keys, &to_insert->mk_node, hash_key);
339 spin_unlock(&fscrypt_master_keys_lock);
340 return to_insert;
341}
342
343/* Prepare to encrypt directly using the master key in the given mode */
344static struct fscrypt_master_key *
345fscrypt_get_master_key(const struct fscrypt_info *ci, struct fscrypt_mode *mode,
346 const u8 *raw_key, const struct inode *inode)
347{
348 struct fscrypt_master_key *mk;
349 int err;
350
351 /* Is there already a tfm for this key? */
352 mk = find_or_insert_master_key(NULL, raw_key, mode, ci);
353 if (mk)
354 return mk;
355
356 /* Nope, allocate one. */
357 mk = kzalloc(sizeof(*mk), GFP_NOFS);
358 if (!mk)
359 return ERR_PTR(-ENOMEM);
360 atomic_set(&mk->mk_refcount, 1);
361 mk->mk_mode = mode;
362 mk->mk_ctfm = allocate_skcipher_for_mode(mode, raw_key, inode);
363 if (IS_ERR(mk->mk_ctfm)) {
364 err = PTR_ERR(mk->mk_ctfm);
365 mk->mk_ctfm = NULL;
366 goto err_free_mk;
367 }
368 memcpy(mk->mk_descriptor, ci->ci_master_key_descriptor,
369 FS_KEY_DESCRIPTOR_SIZE);
370 memcpy(mk->mk_raw, raw_key, mode->keysize);
371
372 return find_or_insert_master_key(mk, raw_key, mode, ci);
373
374err_free_mk:
375 free_master_key(mk);
376 return ERR_PTR(err);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700377}
378
Daniel Walter8e989de2017-06-19 09:27:58 +0200379static int derive_essiv_salt(const u8 *key, int keysize, u8 *salt)
380{
381 struct crypto_shash *tfm = READ_ONCE(essiv_hash_tfm);
382
383 /* init hash transform on demand */
384 if (unlikely(!tfm)) {
385 struct crypto_shash *prev_tfm;
386
387 tfm = crypto_alloc_shash("sha256", 0, 0);
388 if (IS_ERR(tfm)) {
Eric Biggers78275d82018-04-30 15:51:47 -0700389 fscrypt_warn(NULL,
390 "error allocating SHA-256 transform: %ld",
391 PTR_ERR(tfm));
Daniel Walter8e989de2017-06-19 09:27:58 +0200392 return PTR_ERR(tfm);
393 }
394 prev_tfm = cmpxchg(&essiv_hash_tfm, NULL, tfm);
395 if (prev_tfm) {
396 crypto_free_shash(tfm);
397 tfm = prev_tfm;
398 }
399 }
400
401 {
402 SHASH_DESC_ON_STACK(desc, tfm);
403 desc->tfm = tfm;
404 desc->flags = 0;
405
406 return crypto_shash_digest(desc, key, keysize, salt);
407 }
408}
409
410static int init_essiv_generator(struct fscrypt_info *ci, const u8 *raw_key,
411 int keysize)
412{
413 int err;
414 struct crypto_cipher *essiv_tfm;
415 u8 salt[SHA256_DIGEST_SIZE];
416
417 essiv_tfm = crypto_alloc_cipher("aes", 0, 0);
418 if (IS_ERR(essiv_tfm))
419 return PTR_ERR(essiv_tfm);
420
421 ci->ci_essiv_tfm = essiv_tfm;
422
423 err = derive_essiv_salt(raw_key, keysize, salt);
424 if (err)
425 goto out;
426
427 /*
428 * Using SHA256 to derive the salt/key will result in AES-256 being
429 * used for IV generation. File contents encryption will still use the
430 * configured keysize (AES-128) nevertheless.
431 */
432 err = crypto_cipher_setkey(essiv_tfm, salt, sizeof(salt));
433 if (err)
434 goto out;
435
436out:
437 memzero_explicit(salt, sizeof(salt));
438 return err;
439}
440
441void __exit fscrypt_essiv_cleanup(void)
442{
443 crypto_free_shash(essiv_hash_tfm);
444}
445
Eric Biggerse33fa312018-11-26 11:27:37 -0800446/*
447 * Given the encryption mode and key (normally the derived key, but for
448 * FS_POLICY_FLAG_DIRECT_KEY mode it's the master key), set up the inode's
449 * symmetric cipher transform object(s).
450 */
451static int setup_crypto_transform(struct fscrypt_info *ci,
452 struct fscrypt_mode *mode,
453 const u8 *raw_key, const struct inode *inode)
454{
455 struct fscrypt_master_key *mk;
456 struct crypto_skcipher *ctfm;
457 int err;
458
459 if (ci->ci_flags & FS_POLICY_FLAG_DIRECT_KEY) {
460 mk = fscrypt_get_master_key(ci, mode, raw_key, inode);
461 if (IS_ERR(mk))
462 return PTR_ERR(mk);
463 ctfm = mk->mk_ctfm;
464 } else {
465 mk = NULL;
466 ctfm = allocate_skcipher_for_mode(mode, raw_key, inode);
467 if (IS_ERR(ctfm))
468 return PTR_ERR(ctfm);
469 }
470 ci->ci_master_key = mk;
471 ci->ci_ctfm = ctfm;
472
473 if (mode->needs_essiv) {
474 /* ESSIV implies 16-byte IVs which implies !DIRECT_KEY */
475 WARN_ON(mode->ivsize != AES_BLOCK_SIZE);
476 WARN_ON(ci->ci_flags & FS_POLICY_FLAG_DIRECT_KEY);
477
478 err = init_essiv_generator(ci, raw_key, mode->keysize);
479 if (err) {
480 fscrypt_warn(inode->i_sb,
481 "error initializing ESSIV generator for inode %lu: %d",
482 inode->i_ino, err);
483 return err;
484 }
485 }
486 return 0;
487}
488
489static void put_crypt_info(struct fscrypt_info *ci)
490{
491 if (!ci)
492 return;
493
494 if (ci->ci_master_key) {
495 put_master_key(ci->ci_master_key);
496 } else {
497 crypto_free_skcipher(ci->ci_ctfm);
498 crypto_free_cipher(ci->ci_essiv_tfm);
499 }
500 kmem_cache_free(fscrypt_info_cachep, ci);
501}
502
Eric Biggers2984e522017-02-21 15:07:11 -0800503int fscrypt_get_encryption_info(struct inode *inode)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700504{
505 struct fscrypt_info *crypt_info;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700506 struct fscrypt_context ctx;
Eric Biggersa4842a12018-05-18 10:58:14 -0700507 struct fscrypt_mode *mode;
Eric Biggers0f0909e2016-11-13 20:41:09 -0500508 u8 *raw_key = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700509 int res;
510
Eric Biggers2984e522017-02-21 15:07:11 -0800511 if (inode->i_crypt_info)
512 return 0;
513
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700514 res = fscrypt_initialize(inode->i_sb->s_cop->flags);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700515 if (res)
516 return res;
517
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700518 res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
519 if (res < 0) {
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700520 if (!fscrypt_dummy_context_enabled(inode) ||
Eric Biggersd750ec72017-10-09 12:15:36 -0700521 IS_ENCRYPTED(inode))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700522 return res;
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700523 /* Fake up a context for an unencrypted directory */
524 memset(&ctx, 0, sizeof(ctx));
Eric Biggers8f398502016-09-15 13:32:11 -0400525 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700526 ctx.contents_encryption_mode = FS_ENCRYPTION_MODE_AES_256_XTS;
527 ctx.filenames_encryption_mode = FS_ENCRYPTION_MODE_AES_256_CTS;
Jaegeuk Kime6b120d2017-07-10 12:55:09 -0700528 memset(ctx.master_key_descriptor, 0x42, FS_KEY_DESCRIPTOR_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700529 } else if (res != sizeof(ctx)) {
530 return -EINVAL;
531 }
Eric Biggers8f398502016-09-15 13:32:11 -0400532
533 if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1)
534 return -EINVAL;
535
536 if (ctx.flags & ~FS_POLICY_FLAGS_VALID)
537 return -EINVAL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700538
Eric Biggerse33fa312018-11-26 11:27:37 -0800539 crypt_info = kmem_cache_zalloc(fscrypt_info_cachep, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700540 if (!crypt_info)
541 return -ENOMEM;
542
543 crypt_info->ci_flags = ctx.flags;
544 crypt_info->ci_data_mode = ctx.contents_encryption_mode;
545 crypt_info->ci_filename_mode = ctx.filenames_encryption_mode;
Eric Biggerse33fa312018-11-26 11:27:37 -0800546 memcpy(crypt_info->ci_master_key_descriptor, ctx.master_key_descriptor,
547 FS_KEY_DESCRIPTOR_SIZE);
548 memcpy(crypt_info->ci_nonce, ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700549
Eric Biggersa4842a12018-05-18 10:58:14 -0700550 mode = select_encryption_mode(crypt_info, inode);
551 if (IS_ERR(mode)) {
552 res = PTR_ERR(mode);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700553 goto out;
Eric Biggersa4842a12018-05-18 10:58:14 -0700554 }
Eric Biggerse33fa312018-11-26 11:27:37 -0800555 WARN_ON(mode->ivsize > FSCRYPT_MAX_IV_SIZE);
556 crypt_info->ci_mode = mode;
Eric Biggers8f398502016-09-15 13:32:11 -0400557
Eric Biggers0f0909e2016-11-13 20:41:09 -0500558 /*
Eric Biggerse33fa312018-11-26 11:27:37 -0800559 * This cannot be a stack buffer because it may be passed to the
560 * scatterlist crypto API as part of key derivation.
Eric Biggers0f0909e2016-11-13 20:41:09 -0500561 */
562 res = -ENOMEM;
Eric Biggersa4842a12018-05-18 10:58:14 -0700563 raw_key = kmalloc(mode->keysize, GFP_NOFS);
Eric Biggers0f0909e2016-11-13 20:41:09 -0500564 if (!raw_key)
565 goto out;
566
Eric Biggerse33fa312018-11-26 11:27:37 -0800567 res = find_and_derive_key(inode, &ctx, raw_key, mode);
Eric Biggers24cc7a82018-04-30 15:51:48 -0700568 if (res)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700569 goto out;
Eric Biggers24cc7a82018-04-30 15:51:48 -0700570
Eric Biggerse33fa312018-11-26 11:27:37 -0800571 res = setup_crypto_transform(crypt_info, mode, raw_key, inode);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700572 if (res)
573 goto out;
574
Eric Biggers2984e522017-02-21 15:07:11 -0800575 if (cmpxchg(&inode->i_crypt_info, NULL, crypt_info) == NULL)
576 crypt_info = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700577out:
578 if (res == -ENOKEY)
579 res = 0;
580 put_crypt_info(crypt_info);
Eric Biggers0f0909e2016-11-13 20:41:09 -0500581 kzfree(raw_key);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700582 return res;
583}
Eric Biggers2984e522017-02-21 15:07:11 -0800584EXPORT_SYMBOL(fscrypt_get_encryption_info);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700585
Eric Biggers401052f2018-01-11 23:30:13 -0500586void fscrypt_put_encryption_info(struct inode *inode)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700587{
Eric Biggers401052f2018-01-11 23:30:13 -0500588 put_crypt_info(inode->i_crypt_info);
589 inode->i_crypt_info = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700590}
591EXPORT_SYMBOL(fscrypt_put_encryption_info);