1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Inline encryption support for fscrypt
4 *
5 * Copyright 2019 Google LLC
6 */
7
8 /*
9 * With "inline encryption", the block layer handles the decryption/encryption
10 * as part of the bio, instead of the filesystem doing the crypto itself via
11 * crypto API. See Documentation/block/inline-encryption.rst. fscrypt still
12 * provides the key and IV to use.
13 */
14
15 #include <linux/blk-crypto.h>
16 #include <linux/blkdev.h>
17 #include <linux/buffer_head.h>
18 #include <linux/sched/mm.h>
19 #include <linux/slab.h>
20 #include <linux/uio.h>
21
22 #include "fscrypt_private.h"
23
fscrypt_get_devices(struct super_block * sb,unsigned int * num_devs)24 static struct block_device **fscrypt_get_devices(struct super_block *sb,
25 unsigned int *num_devs)
26 {
27 struct block_device **devs;
28
29 if (sb->s_cop->get_devices) {
30 devs = sb->s_cop->get_devices(sb, num_devs);
31 if (devs)
32 return devs;
33 }
34 devs = kmalloc(sizeof(*devs), GFP_KERNEL);
35 if (!devs)
36 return ERR_PTR(-ENOMEM);
37 devs[0] = sb->s_bdev;
38 *num_devs = 1;
39 return devs;
40 }
41
fscrypt_get_dun_bytes(const struct fscrypt_info * ci)42 static unsigned int fscrypt_get_dun_bytes(const struct fscrypt_info *ci)
43 {
44 struct super_block *sb = ci->ci_inode->i_sb;
45 unsigned int flags = fscrypt_policy_flags(&ci->ci_policy);
46 int dun_bits;
47
48 if (flags & FSCRYPT_POLICY_FLAG_DIRECT_KEY)
49 return offsetofend(union fscrypt_iv, nonce);
50
51 if (flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64)
52 return sizeof(__le64);
53
54 if (flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32)
55 return sizeof(__le32);
56
57 /* Default case: IVs are just the file data unit index */
58 dun_bits = fscrypt_max_file_dun_bits(sb, ci->ci_data_unit_bits);
59 return DIV_ROUND_UP(dun_bits, 8);
60 }
61
62 /*
63 * Log a message when starting to use blk-crypto (native) or blk-crypto-fallback
64 * for an encryption mode for the first time. This is the blk-crypto
65 * counterpart to the message logged when starting to use the crypto API for the
66 * first time. A limitation is that these messages don't convey which specific
67 * filesystems or files are using each implementation. However, *usually*
68 * systems use just one implementation per mode, which makes these messages
69 * helpful for debugging problems where the "wrong" implementation is used.
70 */
fscrypt_log_blk_crypto_impl(struct fscrypt_mode * mode,struct block_device ** devs,unsigned int num_devs,const struct blk_crypto_config * cfg)71 static void fscrypt_log_blk_crypto_impl(struct fscrypt_mode *mode,
72 struct block_device **devs,
73 unsigned int num_devs,
74 const struct blk_crypto_config *cfg)
75 {
76 unsigned int i;
77
78 for (i = 0; i < num_devs; i++) {
79 if (!IS_ENABLED(CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK) ||
80 blk_crypto_config_supported_natively(devs[i], cfg)) {
81 if (!xchg(&mode->logged_blk_crypto_native, 1))
82 pr_info("fscrypt: %s using blk-crypto (native)\n",
83 mode->friendly_name);
84 } else if (!xchg(&mode->logged_blk_crypto_fallback, 1)) {
85 pr_info("fscrypt: %s using blk-crypto-fallback\n",
86 mode->friendly_name);
87 }
88 }
89 }
90
91 /* Enable inline encryption for this file if supported. */
fscrypt_select_encryption_impl(struct fscrypt_info * ci,bool is_hw_wrapped_key)92 int fscrypt_select_encryption_impl(struct fscrypt_info *ci,
93 bool is_hw_wrapped_key)
94 {
95 const struct inode *inode = ci->ci_inode;
96 struct super_block *sb = inode->i_sb;
97 struct blk_crypto_config crypto_cfg;
98 struct block_device **devs;
99 unsigned int num_devs;
100 unsigned int i;
101
102 /* The file must need contents encryption, not filenames encryption */
103 if (!S_ISREG(inode->i_mode))
104 return 0;
105
106 /* The crypto mode must have a blk-crypto counterpart */
107 if (ci->ci_mode->blk_crypto_mode == BLK_ENCRYPTION_MODE_INVALID)
108 return 0;
109
110 /* The filesystem must be mounted with -o inlinecrypt */
111 if (!(sb->s_flags & SB_INLINECRYPT))
112 return 0;
113
114 /*
115 * When a page contains multiple logically contiguous filesystem blocks,
116 * some filesystem code only calls fscrypt_mergeable_bio() for the first
117 * block in the page. This is fine for most of fscrypt's IV generation
118 * strategies, where contiguous blocks imply contiguous IVs. But it
119 * doesn't work with IV_INO_LBLK_32. For now, simply exclude
120 * IV_INO_LBLK_32 with blocksize != PAGE_SIZE from inline encryption.
121 */
122 if ((fscrypt_policy_flags(&ci->ci_policy) &
123 FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
124 sb->s_blocksize != PAGE_SIZE)
125 return 0;
126
127 /*
128 * On all the filesystem's block devices, blk-crypto must support the
129 * crypto configuration that the file would use.
130 */
131 crypto_cfg.crypto_mode = ci->ci_mode->blk_crypto_mode;
132 crypto_cfg.data_unit_size = 1U << ci->ci_data_unit_bits;
133 crypto_cfg.dun_bytes = fscrypt_get_dun_bytes(ci);
134 crypto_cfg.key_type =
135 is_hw_wrapped_key ? BLK_CRYPTO_KEY_TYPE_HW_WRAPPED :
136 BLK_CRYPTO_KEY_TYPE_STANDARD;
137
138 devs = fscrypt_get_devices(sb, &num_devs);
139 if (IS_ERR(devs))
140 return PTR_ERR(devs);
141
142 for (i = 0; i < num_devs; i++) {
143 if (!blk_crypto_config_supported(devs[i], &crypto_cfg))
144 goto out_free_devs;
145 }
146
147 fscrypt_log_blk_crypto_impl(ci->ci_mode, devs, num_devs, &crypto_cfg);
148
149 ci->ci_inlinecrypt = true;
150 out_free_devs:
151 kfree(devs);
152
153 return 0;
154 }
155
fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key * prep_key,const u8 * raw_key,size_t raw_key_size,bool is_hw_wrapped,const struct fscrypt_info * ci)156 int fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key *prep_key,
157 const u8 *raw_key, size_t raw_key_size,
158 bool is_hw_wrapped,
159 const struct fscrypt_info *ci)
160 {
161 const struct inode *inode = ci->ci_inode;
162 struct super_block *sb = inode->i_sb;
163 enum blk_crypto_mode_num crypto_mode = ci->ci_mode->blk_crypto_mode;
164 enum blk_crypto_key_type key_type = is_hw_wrapped ?
165 BLK_CRYPTO_KEY_TYPE_HW_WRAPPED : BLK_CRYPTO_KEY_TYPE_STANDARD;
166 struct blk_crypto_key *blk_key;
167 struct block_device **devs;
168 unsigned int num_devs;
169 unsigned int i;
170 int err;
171
172 blk_key = kmalloc(sizeof(*blk_key), GFP_KERNEL);
173 if (!blk_key)
174 return -ENOMEM;
175
176 err = blk_crypto_init_key(blk_key, raw_key, raw_key_size, key_type,
177 crypto_mode, fscrypt_get_dun_bytes(ci),
178 1U << ci->ci_data_unit_bits);
179 if (err) {
180 fscrypt_err(inode, "error %d initializing blk-crypto key", err);
181 goto fail;
182 }
183
184 /* Start using blk-crypto on all the filesystem's block devices. */
185 devs = fscrypt_get_devices(sb, &num_devs);
186 if (IS_ERR(devs)) {
187 err = PTR_ERR(devs);
188 goto fail;
189 }
190 for (i = 0; i < num_devs; i++) {
191 err = blk_crypto_start_using_key(devs[i], blk_key);
192 if (err)
193 break;
194 }
195 kfree(devs);
196 if (err) {
197 fscrypt_err(inode, "error %d starting to use blk-crypto", err);
198 goto fail;
199 }
200
201 /*
202 * Pairs with the smp_load_acquire() in fscrypt_is_key_prepared().
203 * I.e., here we publish ->blk_key with a RELEASE barrier so that
204 * concurrent tasks can ACQUIRE it. Note that this concurrency is only
205 * possible for per-mode keys, not for per-file keys.
206 */
207 smp_store_release(&prep_key->blk_key, blk_key);
208 return 0;
209
210 fail:
211 kfree_sensitive(blk_key);
212 return err;
213 }
214
fscrypt_destroy_inline_crypt_key(struct super_block * sb,struct fscrypt_prepared_key * prep_key)215 void fscrypt_destroy_inline_crypt_key(struct super_block *sb,
216 struct fscrypt_prepared_key *prep_key)
217 {
218 struct blk_crypto_key *blk_key = prep_key->blk_key;
219 struct block_device **devs;
220 unsigned int num_devs;
221 unsigned int i;
222
223 if (!blk_key)
224 return;
225
226 /* Evict the key from all the filesystem's block devices. */
227 devs = fscrypt_get_devices(sb, &num_devs);
228 if (!IS_ERR(devs)) {
229 for (i = 0; i < num_devs; i++)
230 blk_crypto_evict_key(devs[i], blk_key);
231 kfree(devs);
232 }
233 kfree_sensitive(blk_key);
234 }
235
236 /*
237 * Ask the inline encryption hardware to derive the software secret from a
238 * hardware-wrapped key. Returns -EOPNOTSUPP if hardware-wrapped keys aren't
239 * supported on this filesystem or hardware.
240 */
fscrypt_derive_sw_secret(struct super_block * sb,const u8 * wrapped_key,size_t wrapped_key_size,u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE])241 int fscrypt_derive_sw_secret(struct super_block *sb,
242 const u8 *wrapped_key, size_t wrapped_key_size,
243 u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE])
244 {
245 int err;
246
247 /* The filesystem must be mounted with -o inlinecrypt. */
248 if (!(sb->s_flags & SB_INLINECRYPT)) {
249 fscrypt_warn(NULL,
250 "%s: filesystem not mounted with inlinecrypt\n",
251 sb->s_id);
252 return -EOPNOTSUPP;
253 }
254
255 err = blk_crypto_derive_sw_secret(sb->s_bdev, wrapped_key,
256 wrapped_key_size, sw_secret);
257 if (err == -EOPNOTSUPP)
258 fscrypt_warn(NULL,
259 "%s: block device doesn't support hardware-wrapped keys\n",
260 sb->s_id);
261 return err;
262 }
263
__fscrypt_inode_uses_inline_crypto(const struct inode * inode)264 bool __fscrypt_inode_uses_inline_crypto(const struct inode *inode)
265 {
266 return inode->i_crypt_info->ci_inlinecrypt;
267 }
268 EXPORT_SYMBOL_GPL(__fscrypt_inode_uses_inline_crypto);
269
fscrypt_generate_dun(const struct fscrypt_info * ci,u64 lblk_num,u64 dun[BLK_CRYPTO_DUN_ARRAY_SIZE])270 static void fscrypt_generate_dun(const struct fscrypt_info *ci, u64 lblk_num,
271 u64 dun[BLK_CRYPTO_DUN_ARRAY_SIZE])
272 {
273 u64 index = lblk_num << ci->ci_data_units_per_block_bits;
274 union fscrypt_iv iv;
275 int i;
276
277 fscrypt_generate_iv(&iv, index, ci);
278
279 BUILD_BUG_ON(FSCRYPT_MAX_IV_SIZE > BLK_CRYPTO_MAX_IV_SIZE);
280 memset(dun, 0, BLK_CRYPTO_MAX_IV_SIZE);
281 for (i = 0; i < ci->ci_mode->ivsize/sizeof(dun[0]); i++)
282 dun[i] = le64_to_cpu(iv.dun[i]);
283 }
284
285 /**
286 * fscrypt_set_bio_crypt_ctx() - prepare a file contents bio for inline crypto
287 * @bio: a bio which will eventually be submitted to the file
288 * @inode: the file's inode
289 * @first_lblk: the first file logical block number in the I/O
290 * @gfp_mask: memory allocation flags - these must be a waiting mask so that
291 * bio_crypt_set_ctx can't fail.
292 *
293 * If the contents of the file should be encrypted (or decrypted) with inline
294 * encryption, then assign the appropriate encryption context to the bio.
295 *
296 * Normally the bio should be newly allocated (i.e. no pages added yet), as
297 * otherwise fscrypt_mergeable_bio() won't work as intended.
298 *
299 * The encryption context will be freed automatically when the bio is freed.
300 *
301 * This function also handles setting bi_skip_dm_default_key when needed.
302 */
fscrypt_set_bio_crypt_ctx(struct bio * bio,const struct inode * inode,u64 first_lblk,gfp_t gfp_mask)303 void fscrypt_set_bio_crypt_ctx(struct bio *bio, const struct inode *inode,
304 u64 first_lblk, gfp_t gfp_mask)
305 {
306 const struct fscrypt_info *ci;
307 u64 dun[BLK_CRYPTO_DUN_ARRAY_SIZE];
308
309 if (fscrypt_inode_should_skip_dm_default_key(inode))
310 bio_set_skip_dm_default_key(bio);
311
312 if (!fscrypt_inode_uses_inline_crypto(inode))
313 return;
314 ci = inode->i_crypt_info;
315
316 fscrypt_generate_dun(ci, first_lblk, dun);
317 bio_crypt_set_ctx(bio, ci->ci_enc_key.blk_key, dun, gfp_mask);
318 }
319 EXPORT_SYMBOL_GPL(fscrypt_set_bio_crypt_ctx);
320
321 /* Extract the inode and logical block number from a buffer_head. */
bh_get_inode_and_lblk_num(const struct buffer_head * bh,const struct inode ** inode_ret,u64 * lblk_num_ret)322 static bool bh_get_inode_and_lblk_num(const struct buffer_head *bh,
323 const struct inode **inode_ret,
324 u64 *lblk_num_ret)
325 {
326 struct page *page = bh->b_page;
327 const struct address_space *mapping;
328 const struct inode *inode;
329
330 /*
331 * The ext4 journal (jbd2) can submit a buffer_head it directly created
332 * for a non-pagecache page. fscrypt doesn't care about these.
333 */
334 mapping = page_mapping(page);
335 if (!mapping)
336 return false;
337 inode = mapping->host;
338
339 *inode_ret = inode;
340 *lblk_num_ret = ((u64)page->index << (PAGE_SHIFT - inode->i_blkbits)) +
341 (bh_offset(bh) >> inode->i_blkbits);
342 return true;
343 }
344
345 /**
346 * fscrypt_set_bio_crypt_ctx_bh() - prepare a file contents bio for inline
347 * crypto
348 * @bio: a bio which will eventually be submitted to the file
349 * @first_bh: the first buffer_head for which I/O will be submitted
350 * @gfp_mask: memory allocation flags
351 *
352 * Same as fscrypt_set_bio_crypt_ctx(), except this takes a buffer_head instead
353 * of an inode and block number directly.
354 */
fscrypt_set_bio_crypt_ctx_bh(struct bio * bio,const struct buffer_head * first_bh,gfp_t gfp_mask)355 void fscrypt_set_bio_crypt_ctx_bh(struct bio *bio,
356 const struct buffer_head *first_bh,
357 gfp_t gfp_mask)
358 {
359 const struct inode *inode;
360 u64 first_lblk;
361
362 if (bh_get_inode_and_lblk_num(first_bh, &inode, &first_lblk))
363 fscrypt_set_bio_crypt_ctx(bio, inode, first_lblk, gfp_mask);
364 }
365 EXPORT_SYMBOL_GPL(fscrypt_set_bio_crypt_ctx_bh);
366
367 /**
368 * fscrypt_mergeable_bio() - test whether data can be added to a bio
369 * @bio: the bio being built up
370 * @inode: the inode for the next part of the I/O
371 * @next_lblk: the next file logical block number in the I/O
372 *
373 * When building a bio which may contain data which should undergo inline
374 * encryption (or decryption) via fscrypt, filesystems should call this function
375 * to ensure that the resulting bio contains only contiguous data unit numbers.
376 * This will return false if the next part of the I/O cannot be merged with the
377 * bio because either the encryption key would be different or the encryption
378 * data unit numbers would be discontiguous.
379 *
380 * fscrypt_set_bio_crypt_ctx() must have already been called on the bio.
381 *
382 * This function isn't required in cases where crypto-mergeability is ensured in
383 * another way, such as I/O targeting only a single file (and thus a single key)
384 * combined with fscrypt_limit_io_blocks() to ensure DUN contiguity.
385 *
386 * This function also returns false if the next part of the I/O would need to
387 * have a different value for the bi_skip_dm_default_key flag.
388 *
389 * Return: true iff the I/O is mergeable
390 */
fscrypt_mergeable_bio(struct bio * bio,const struct inode * inode,u64 next_lblk)391 bool fscrypt_mergeable_bio(struct bio *bio, const struct inode *inode,
392 u64 next_lblk)
393 {
394 const struct bio_crypt_ctx *bc = bio->bi_crypt_context;
395 u64 next_dun[BLK_CRYPTO_DUN_ARRAY_SIZE];
396
397 if (!!bc != fscrypt_inode_uses_inline_crypto(inode))
398 return false;
399 if (bio_should_skip_dm_default_key(bio) !=
400 fscrypt_inode_should_skip_dm_default_key(inode))
401 return false;
402 if (!bc)
403 return true;
404
405 /*
406 * Comparing the key pointers is good enough, as all I/O for each key
407 * uses the same pointer. I.e., there's currently no need to support
408 * merging requests where the keys are the same but the pointers differ.
409 */
410 if (bc->bc_key != inode->i_crypt_info->ci_enc_key.blk_key)
411 return false;
412
413 fscrypt_generate_dun(inode->i_crypt_info, next_lblk, next_dun);
414 return bio_crypt_dun_is_contiguous(bc, bio->bi_iter.bi_size, next_dun);
415 }
416 EXPORT_SYMBOL_GPL(fscrypt_mergeable_bio);
417
418 /**
419 * fscrypt_mergeable_bio_bh() - test whether data can be added to a bio
420 * @bio: the bio being built up
421 * @next_bh: the next buffer_head for which I/O will be submitted
422 *
423 * Same as fscrypt_mergeable_bio(), except this takes a buffer_head instead of
424 * an inode and block number directly.
425 *
426 * Return: true iff the I/O is mergeable
427 */
fscrypt_mergeable_bio_bh(struct bio * bio,const struct buffer_head * next_bh)428 bool fscrypt_mergeable_bio_bh(struct bio *bio,
429 const struct buffer_head *next_bh)
430 {
431 const struct inode *inode;
432 u64 next_lblk;
433
434 if (!bh_get_inode_and_lblk_num(next_bh, &inode, &next_lblk))
435 return !bio->bi_crypt_context &&
436 !bio_should_skip_dm_default_key(bio);
437
438 return fscrypt_mergeable_bio(bio, inode, next_lblk);
439 }
440 EXPORT_SYMBOL_GPL(fscrypt_mergeable_bio_bh);
441
442 /**
443 * fscrypt_dio_supported() - check whether DIO (direct I/O) is supported on an
444 * inode, as far as encryption is concerned
445 * @inode: the inode in question
446 *
447 * Return: %true if there are no encryption constraints that prevent DIO from
448 * being supported; %false if DIO is unsupported. (Note that in the
449 * %true case, the filesystem might have other, non-encryption-related
450 * constraints that prevent DIO from actually being supported. Also, on
451 * encrypted files the filesystem is still responsible for only allowing
452 * DIO when requests are filesystem-block-aligned.)
453 */
fscrypt_dio_supported(struct inode * inode)454 bool fscrypt_dio_supported(struct inode *inode)
455 {
456 int err;
457
458 /* If the file is unencrypted, no veto from us. */
459 if (!fscrypt_needs_contents_encryption(inode))
460 return true;
461
462 /*
463 * We only support DIO with inline crypto, not fs-layer crypto.
464 *
465 * To determine whether the inode is using inline crypto, we have to set
466 * up the key if it wasn't already done. This is because in the current
467 * design of fscrypt, the decision of whether to use inline crypto or
468 * not isn't made until the inode's encryption key is being set up. In
469 * the DIO read/write case, the key will always be set up already, since
470 * the file will be open. But in the case of statx(), the key might not
471 * be set up yet, as the file might not have been opened yet.
472 */
473 err = fscrypt_require_key(inode);
474 if (err) {
475 /*
476 * Key unavailable or couldn't be set up. This edge case isn't
477 * worth worrying about; just report that DIO is unsupported.
478 */
479 return false;
480 }
481 return fscrypt_inode_uses_inline_crypto(inode);
482 }
483 EXPORT_SYMBOL_GPL(fscrypt_dio_supported);
484
485 /**
486 * fscrypt_limit_io_blocks() - limit I/O blocks to avoid discontiguous DUNs
487 * @inode: the file on which I/O is being done
488 * @lblk: the block at which the I/O is being started from
489 * @nr_blocks: the number of blocks we want to submit starting at @lblk
490 *
491 * Determine the limit to the number of blocks that can be submitted in a bio
492 * targeting @lblk without causing a data unit number (DUN) discontiguity.
493 *
494 * This is normally just @nr_blocks, as normally the DUNs just increment along
495 * with the logical blocks. (Or the file is not encrypted.)
496 *
497 * In rare cases, fscrypt can be using an IV generation method that allows the
498 * DUN to wrap around within logically contiguous blocks, and that wraparound
499 * will occur. If this happens, a value less than @nr_blocks will be returned
500 * so that the wraparound doesn't occur in the middle of a bio, which would
501 * cause encryption/decryption to produce wrong results.
502 *
503 * Return: the actual number of blocks that can be submitted
504 */
fscrypt_limit_io_blocks(const struct inode * inode,u64 lblk,u64 nr_blocks)505 u64 fscrypt_limit_io_blocks(const struct inode *inode, u64 lblk, u64 nr_blocks)
506 {
507 const struct fscrypt_info *ci;
508 u32 dun;
509
510 if (!fscrypt_inode_uses_inline_crypto(inode))
511 return nr_blocks;
512
513 if (nr_blocks <= 1)
514 return nr_blocks;
515
516 ci = inode->i_crypt_info;
517 if (!(fscrypt_policy_flags(&ci->ci_policy) &
518 FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32))
519 return nr_blocks;
520
521 /* With IV_INO_LBLK_32, the DUN can wrap around from U32_MAX to 0. */
522
523 dun = ci->ci_hashed_ino + lblk;
524
525 return min_t(u64, nr_blocks, (u64)U32_MAX + 1 - dun);
526 }
527 EXPORT_SYMBOL_GPL(fscrypt_limit_io_blocks);
528