xref: /linux/fs/crypto/fscrypt_private.h (revision 7d8d6ad659c02ed5d2387777194c22e8e81dbb2b)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * fscrypt_private.h
4  *
5  * Copyright (C) 2015, Google, Inc.
6  *
7  * Originally written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar.
8  * Heavily modified since then.
9  */
10 
11 #ifndef _FSCRYPT_PRIVATE_H
12 #define _FSCRYPT_PRIVATE_H
13 
14 #include <crypto/sha2.h>
15 #include <linux/fscrypt.h>
16 #include <linux/minmax.h>
17 #include <linux/siphash.h>
18 #include <linux/blk-crypto.h>
19 
20 #define CONST_STRLEN(str)	(sizeof(str) - 1)
21 
22 #define FSCRYPT_FILE_NONCE_SIZE	16
23 
24 /*
25  * Minimum size of an fscrypt master key.  Note: a longer key will be required
26  * if ciphers with a 256-bit security strength are used.  This is just the
27  * absolute minimum, which applies when only 128-bit encryption is used.
28  */
29 #define FSCRYPT_MIN_KEY_SIZE	16
30 
31 /* Maximum size of a raw fscrypt master key */
32 #define FSCRYPT_MAX_RAW_KEY_SIZE	64
33 
34 /* Maximum size of a hardware-wrapped fscrypt master key */
35 #define FSCRYPT_MAX_HW_WRAPPED_KEY_SIZE	BLK_CRYPTO_MAX_HW_WRAPPED_KEY_SIZE
36 
37 /* Maximum size of an fscrypt master key across both key types */
38 #define FSCRYPT_MAX_ANY_KEY_SIZE \
39 	MAX(FSCRYPT_MAX_RAW_KEY_SIZE, FSCRYPT_MAX_HW_WRAPPED_KEY_SIZE)
40 
41 /*
42  * FSCRYPT_MAX_KEY_SIZE is defined in the UAPI header, but the addition of
43  * hardware-wrapped keys has made it misleading as it's only for raw keys.
44  * Don't use it in kernel code; use one of the above constants instead.
45  */
46 #undef FSCRYPT_MAX_KEY_SIZE
47 
48 /*
49  * This mask is passed as the third argument to the crypto_alloc_*() functions
50  * to prevent fscrypt from using the Crypto API drivers for non-inline crypto
51  * engines.  Those drivers have been problematic for fscrypt.  fscrypt users
52  * have reported hangs and even incorrect en/decryption with these drivers.
53  * Since going to the driver, off CPU, and back again is really slow, such
54  * drivers can be over 50 times slower than the CPU-based code for fscrypt's
55  * workload.  Even on platforms that lack AES instructions on the CPU, using the
56  * offloads has been shown to be slower, even staying with AES.  (Of course,
57  * Adiantum is faster still, and is the recommended option on such platforms...)
58  *
59  * Note that fscrypt also supports inline crypto engines.  Those don't use the
60  * Crypto API and work much better than the old-style (non-inline) engines.
61  */
62 #define FSCRYPT_CRYPTOAPI_MASK                            \
63 	(CRYPTO_ALG_ASYNC | CRYPTO_ALG_ALLOCATES_MEMORY | \
64 	 CRYPTO_ALG_KERN_DRIVER_ONLY)
65 
66 #define FSCRYPT_CONTEXT_V1	1
67 #define FSCRYPT_CONTEXT_V2	2
68 
69 /* Keep this in sync with include/uapi/linux/fscrypt.h */
70 #define FSCRYPT_MODE_MAX	FSCRYPT_MODE_AES_256_HCTR2
71 
72 struct fscrypt_context_v1 {
73 	u8 version; /* FSCRYPT_CONTEXT_V1 */
74 	u8 contents_encryption_mode;
75 	u8 filenames_encryption_mode;
76 	u8 flags;
77 	u8 master_key_descriptor[FSCRYPT_KEY_DESCRIPTOR_SIZE];
78 	u8 nonce[FSCRYPT_FILE_NONCE_SIZE];
79 };
80 
81 struct fscrypt_context_v2 {
82 	u8 version; /* FSCRYPT_CONTEXT_V2 */
83 	u8 contents_encryption_mode;
84 	u8 filenames_encryption_mode;
85 	u8 flags;
86 	u8 log2_data_unit_size;
87 	u8 __reserved[3];
88 	u8 master_key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE];
89 	u8 nonce[FSCRYPT_FILE_NONCE_SIZE];
90 };
91 
92 /*
93  * fscrypt_context - the encryption context of an inode
94  *
95  * This is the on-disk equivalent of an fscrypt_policy, stored alongside each
96  * encrypted file usually in a hidden extended attribute.  It contains the
97  * fields from the fscrypt_policy, in order to identify the encryption algorithm
98  * and key with which the file is encrypted.  It also contains a nonce that was
99  * randomly generated by fscrypt itself; this is used as KDF input or as a tweak
100  * to cause different files to be encrypted differently.
101  */
102 union fscrypt_context {
103 	u8 version;
104 	struct fscrypt_context_v1 v1;
105 	struct fscrypt_context_v2 v2;
106 };
107 
108 /*
109  * Return the size expected for the given fscrypt_context based on its version
110  * number, or 0 if the context version is unrecognized.
111  */
112 static inline int fscrypt_context_size(const union fscrypt_context *ctx)
113 {
114 	switch (ctx->version) {
115 	case FSCRYPT_CONTEXT_V1:
116 		BUILD_BUG_ON(sizeof(ctx->v1) != 28);
117 		return sizeof(ctx->v1);
118 	case FSCRYPT_CONTEXT_V2:
119 		BUILD_BUG_ON(sizeof(ctx->v2) != 40);
120 		return sizeof(ctx->v2);
121 	}
122 	return 0;
123 }
124 
125 /* Check whether an fscrypt_context has a recognized version number and size */
126 static inline bool fscrypt_context_is_valid(const union fscrypt_context *ctx,
127 					    int ctx_size)
128 {
129 	return ctx_size >= 1 && ctx_size == fscrypt_context_size(ctx);
130 }
131 
132 /* Retrieve the context's nonce, assuming the context was already validated */
133 static inline const u8 *fscrypt_context_nonce(const union fscrypt_context *ctx)
134 {
135 	switch (ctx->version) {
136 	case FSCRYPT_CONTEXT_V1:
137 		return ctx->v1.nonce;
138 	case FSCRYPT_CONTEXT_V2:
139 		return ctx->v2.nonce;
140 	}
141 	WARN_ON_ONCE(1);
142 	return NULL;
143 }
144 
145 union fscrypt_policy {
146 	u8 version;
147 	struct fscrypt_policy_v1 v1;
148 	struct fscrypt_policy_v2 v2;
149 };
150 
151 /*
152  * Return the size expected for the given fscrypt_policy based on its version
153  * number, or 0 if the policy version is unrecognized.
154  */
155 static inline int fscrypt_policy_size(const union fscrypt_policy *policy)
156 {
157 	switch (policy->version) {
158 	case FSCRYPT_POLICY_V1:
159 		return sizeof(policy->v1);
160 	case FSCRYPT_POLICY_V2:
161 		return sizeof(policy->v2);
162 	}
163 	return 0;
164 }
165 
166 /* Return the contents encryption mode of a valid encryption policy */
167 static inline u8
168 fscrypt_policy_contents_mode(const union fscrypt_policy *policy)
169 {
170 	switch (policy->version) {
171 	case FSCRYPT_POLICY_V1:
172 		return policy->v1.contents_encryption_mode;
173 	case FSCRYPT_POLICY_V2:
174 		return policy->v2.contents_encryption_mode;
175 	}
176 	BUG();
177 }
178 
179 /* Return the filenames encryption mode of a valid encryption policy */
180 static inline u8
181 fscrypt_policy_fnames_mode(const union fscrypt_policy *policy)
182 {
183 	switch (policy->version) {
184 	case FSCRYPT_POLICY_V1:
185 		return policy->v1.filenames_encryption_mode;
186 	case FSCRYPT_POLICY_V2:
187 		return policy->v2.filenames_encryption_mode;
188 	}
189 	BUG();
190 }
191 
192 /* Return the flags (FSCRYPT_POLICY_FLAG*) of a valid encryption policy */
193 static inline u8
194 fscrypt_policy_flags(const union fscrypt_policy *policy)
195 {
196 	switch (policy->version) {
197 	case FSCRYPT_POLICY_V1:
198 		return policy->v1.flags;
199 	case FSCRYPT_POLICY_V2:
200 		return policy->v2.flags;
201 	}
202 	BUG();
203 }
204 
205 static inline int
206 fscrypt_policy_v2_du_bits(const struct fscrypt_policy_v2 *policy,
207 			  const struct inode *inode)
208 {
209 	return policy->log2_data_unit_size ?: inode->i_blkbits;
210 }
211 
212 static inline int
213 fscrypt_policy_du_bits(const union fscrypt_policy *policy,
214 		       const struct inode *inode)
215 {
216 	switch (policy->version) {
217 	case FSCRYPT_POLICY_V1:
218 		return inode->i_blkbits;
219 	case FSCRYPT_POLICY_V2:
220 		return fscrypt_policy_v2_du_bits(&policy->v2, inode);
221 	}
222 	BUG();
223 }
224 
225 /*
226  * For encrypted symlinks, the ciphertext length is stored at the beginning
227  * of the string in little-endian format.
228  */
229 struct fscrypt_symlink_data {
230 	__le16 len;
231 	char encrypted_path[];
232 } __packed;
233 
234 /**
235  * struct fscrypt_prepared_key - a key prepared for actual encryption/decryption
236  * @tfm: crypto API transform object
237  * @blk_key: key for blk-crypto
238  *
239  * Only one of the fields is non-NULL.
240  */
241 struct fscrypt_prepared_key {
242 	struct crypto_sync_skcipher *tfm;
243 #ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
244 	struct blk_crypto_key *blk_key;
245 #endif
246 };
247 
248 /* An entry in the linked list ->mk_mode_keys */
249 struct fscrypt_mode_key {
250 	struct fscrypt_prepared_key key;
251 	struct list_head link;
252 	u8 hkdf_context;
253 	u8 mode_num;
254 	u8 data_unit_bits;
255 };
256 
257 /*
258  * fscrypt_inode_info - the "encryption key" for an inode
259  *
260  * When an encrypted file's key is made available, an instance of this struct is
261  * allocated and a pointer to it is stored in the file's in-memory inode.  Once
262  * created, it remains until the inode is evicted.
263  */
264 struct fscrypt_inode_info {
265 
266 	/* The key in a form prepared for actual encryption/decryption */
267 	struct fscrypt_prepared_key ci_enc_key;
268 
269 	/* True if ci_enc_key should be freed when this struct is freed */
270 	u8 ci_owns_key : 1;
271 
272 #ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
273 	/*
274 	 * True if this inode will use inline encryption (blk-crypto) instead of
275 	 * the traditional filesystem-layer encryption.
276 	 */
277 	u8 ci_inlinecrypt : 1;
278 #endif
279 
280 	/* True if ci_dirhash_key is initialized */
281 	u8 ci_dirhash_key_initialized : 1;
282 
283 	/*
284 	 * log2 of the data unit size (granularity of contents encryption) of
285 	 * this file.  This is computable from ci_policy and ci_inode but is
286 	 * cached here for efficiency.  Only used for regular files.
287 	 */
288 	u8 ci_data_unit_bits;
289 
290 	/* Hashed inode number.  Only set for IV_INO_LBLK_32 */
291 	u32 ci_hashed_ino;
292 
293 	/*
294 	 * Encryption mode used for this inode.  It corresponds to either the
295 	 * contents or filenames encryption mode, depending on the inode type.
296 	 */
297 	struct fscrypt_mode *ci_mode;
298 
299 	/* Back-pointer to the inode */
300 	struct inode *ci_inode;
301 
302 	/*
303 	 * The master key with which this inode was unlocked (decrypted).  This
304 	 * will be NULL if the master key was found in a process-subscribed
305 	 * keyring rather than in the filesystem-level keyring.
306 	 */
307 	struct fscrypt_master_key *ci_master_key;
308 
309 	/*
310 	 * Link in list of inodes that were unlocked with the master key.
311 	 * Only used when ->ci_master_key is set.
312 	 */
313 	struct list_head ci_master_key_link;
314 
315 	/*
316 	 * If non-NULL, then encryption is done using the master key directly
317 	 * and ci_enc_key will equal ci_direct_key->dk_key.
318 	 */
319 	struct fscrypt_direct_key *ci_direct_key;
320 
321 	/*
322 	 * This inode's hash key for filenames.  This is a 128-bit SipHash-2-4
323 	 * key.  This is only set for directories that use a keyed dirhash over
324 	 * the plaintext filenames -- currently just casefolded directories.
325 	 */
326 	siphash_key_t ci_dirhash_key;
327 
328 	/* The encryption policy used by this inode */
329 	union fscrypt_policy ci_policy;
330 
331 	/* This inode's nonce, copied from the fscrypt_context */
332 	u8 ci_nonce[FSCRYPT_FILE_NONCE_SIZE];
333 };
334 
335 typedef enum {
336 	FS_DECRYPT = 0,
337 	FS_ENCRYPT,
338 } fscrypt_direction_t;
339 
340 /* crypto.c */
341 extern struct kmem_cache *fscrypt_inode_info_cachep;
342 int fscrypt_initialize(struct super_block *sb);
343 int fscrypt_crypt_data_unit(const struct fscrypt_inode_info *ci,
344 			    fscrypt_direction_t rw, u64 index,
345 			    struct page *src_page, struct page *dest_page,
346 			    unsigned int len, unsigned int offs);
347 struct page *fscrypt_alloc_bounce_page(gfp_t gfp_flags);
348 
349 void __printf(3, 4) __cold
350 fscrypt_msg(const struct inode *inode, const char *level, const char *fmt, ...);
351 
352 #define fscrypt_warn(inode, fmt, ...)		\
353 	fscrypt_msg((inode), KERN_WARNING, fmt, ##__VA_ARGS__)
354 #define fscrypt_err(inode, fmt, ...)		\
355 	fscrypt_msg((inode), KERN_ERR, fmt, ##__VA_ARGS__)
356 
357 #define FSCRYPT_MAX_IV_SIZE	32
358 
359 union fscrypt_iv {
360 	struct {
361 		/* zero-based index of data unit within the file */
362 		__le64 index;
363 
364 		/* per-file nonce; only set in DIRECT_KEY mode */
365 		u8 nonce[FSCRYPT_FILE_NONCE_SIZE];
366 	};
367 	u8 raw[FSCRYPT_MAX_IV_SIZE];
368 	__le64 dun[FSCRYPT_MAX_IV_SIZE / sizeof(__le64)];
369 };
370 
371 void fscrypt_generate_iv(union fscrypt_iv *iv, u64 index,
372 			 const struct fscrypt_inode_info *ci);
373 
374 /*
375  * Return the number of bits used by the maximum file data unit index that is
376  * possible on the given filesystem, using the given log2 data unit size.
377  */
378 static inline int
379 fscrypt_max_file_dun_bits(const struct super_block *sb, int du_bits)
380 {
381 	return fls64(sb->s_maxbytes - 1) - du_bits;
382 }
383 
384 /* fname.c */
385 bool __fscrypt_fname_encrypted_size(const union fscrypt_policy *policy,
386 				    u32 orig_len, u32 max_len,
387 				    u32 *encrypted_len_ret);
388 
389 /* hkdf.c */
390 void fscrypt_init_hkdf(struct hmac_sha512_key *hkdf, const u8 *master_key,
391 		       unsigned int master_key_size);
392 
393 /*
394  * The list of contexts in which fscrypt uses HKDF.  These values are used as
395  * the first byte of the HKDF application-specific info string to guarantee that
396  * info strings are never repeated between contexts.  This ensures that all HKDF
397  * outputs are unique and cryptographically isolated, i.e. knowledge of one
398  * output doesn't reveal another.
399  */
400 #define HKDF_CONTEXT_KEY_IDENTIFIER_FOR_RAW_KEY	1 /* info=<empty>	*/
401 #define HKDF_CONTEXT_PER_FILE_ENC_KEY	2 /* info=file_nonce		*/
402 #define HKDF_CONTEXT_DIRECT_KEY		3 /* info=mode_num		*/
403 #define HKDF_CONTEXT_IV_INO_LBLK_64_KEY	4 /* info=mode_num||fs_uuid	*/
404 #define HKDF_CONTEXT_DIRHASH_KEY	5 /* info=file_nonce		*/
405 #define HKDF_CONTEXT_IV_INO_LBLK_32_KEY	6 /* info=mode_num||fs_uuid	*/
406 #define HKDF_CONTEXT_INODE_HASH_KEY	7 /* info=<empty>		*/
407 #define HKDF_CONTEXT_KEY_IDENTIFIER_FOR_HW_WRAPPED_KEY \
408 					8 /* info=<empty>		*/
409 
410 void fscrypt_hkdf_expand(const struct hmac_sha512_key *hkdf, u8 context,
411 			 const u8 *info, unsigned int infolen,
412 			 u8 *okm, unsigned int okmlen);
413 
414 /* inline_crypt.c */
415 #ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
416 int fscrypt_select_encryption_impl(struct fscrypt_inode_info *ci,
417 				   bool is_hw_wrapped_key);
418 
419 static inline bool
420 fscrypt_using_inline_encryption(const struct fscrypt_inode_info *ci)
421 {
422 	return ci->ci_inlinecrypt;
423 }
424 
425 int fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key *prep_key,
426 				     const u8 *key_bytes, size_t key_size,
427 				     bool is_hw_wrapped,
428 				     const struct fscrypt_inode_info *ci);
429 
430 void fscrypt_destroy_inline_crypt_key(struct super_block *sb,
431 				      struct fscrypt_prepared_key *prep_key);
432 
433 int fscrypt_derive_sw_secret(struct super_block *sb,
434 			     const u8 *wrapped_key, size_t wrapped_key_size,
435 			     u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]);
436 
437 /*
438  * Check whether the crypto transform or blk-crypto key has been allocated in
439  * @prep_key, depending on which encryption implementation the file will use.
440  */
441 static inline bool
442 fscrypt_is_key_prepared(const struct fscrypt_prepared_key *prep_key,
443 			const struct fscrypt_inode_info *ci)
444 {
445 	if (fscrypt_using_inline_encryption(ci))
446 		return prep_key->blk_key != NULL;
447 	return prep_key->tfm != NULL;
448 }
449 
450 #else /* CONFIG_FS_ENCRYPTION_INLINE_CRYPT */
451 
452 static inline int fscrypt_select_encryption_impl(struct fscrypt_inode_info *ci,
453 						 bool is_hw_wrapped_key)
454 {
455 	return 0;
456 }
457 
458 static inline bool
459 fscrypt_using_inline_encryption(const struct fscrypt_inode_info *ci)
460 {
461 	return false;
462 }
463 
464 static inline int
465 fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key *prep_key,
466 				 const u8 *key_bytes, size_t key_size,
467 				 bool is_hw_wrapped,
468 				 const struct fscrypt_inode_info *ci)
469 {
470 	WARN_ON_ONCE(1);
471 	return -EOPNOTSUPP;
472 }
473 
474 static inline void
475 fscrypt_destroy_inline_crypt_key(struct super_block *sb,
476 				 struct fscrypt_prepared_key *prep_key)
477 {
478 }
479 
480 static inline int
481 fscrypt_derive_sw_secret(struct super_block *sb,
482 			 const u8 *wrapped_key, size_t wrapped_key_size,
483 			 u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE])
484 {
485 	fscrypt_warn(NULL, "kernel doesn't support hardware-wrapped keys");
486 	return -EOPNOTSUPP;
487 }
488 
489 static inline bool
490 fscrypt_is_key_prepared(const struct fscrypt_prepared_key *prep_key,
491 			const struct fscrypt_inode_info *ci)
492 {
493 	return prep_key->tfm != NULL;
494 }
495 #endif /* !CONFIG_FS_ENCRYPTION_INLINE_CRYPT */
496 
497 /* keyring.c */
498 
499 /*
500  * fscrypt_master_key_user - a user's claim to a master key
501  */
502 struct fscrypt_master_key_user {
503 	struct list_head link;
504 	kuid_t uid;
505 	/*
506 	 * This 'struct key' contains no secret.  It exists solely to charge the
507 	 * appropriate user's key quota.
508 	 */
509 	struct key *quota_key;
510 };
511 
512 /*
513  * fscrypt_master_key_secret - secret key material of an in-use master key
514  */
515 struct fscrypt_master_key_secret {
516 
517 	/*
518 	 * The KDF with which subkeys of this key can be derived.
519 	 *
520 	 * For v1 policy keys, this isn't applicable and won't be set.
521 	 * Otherwise, this KDF will be keyed by this master key if
522 	 * ->is_hw_wrapped=false, or by the "software secret" that hardware
523 	 * derived from this master key if ->is_hw_wrapped=true.
524 	 */
525 	struct hmac_sha512_key	hkdf;
526 
527 	/*
528 	 * True if this key is a hardware-wrapped key; false if this key is a
529 	 * raw key (i.e. a "software key").  For v1 policy keys this will always
530 	 * be false, as v1 policy support is a legacy feature which doesn't
531 	 * support newer functionality such as hardware-wrapped keys.
532 	 */
533 	bool			is_hw_wrapped;
534 
535 	/*
536 	 * Size of the key in bytes.  This remains set even if ->bytes was
537 	 * zeroized due to no longer being needed.  I.e. we still remember the
538 	 * size of the key even if we don't need to remember the key itself.
539 	 */
540 	u32			size;
541 
542 	/*
543 	 * The bytes of the key, when still needed.  This can be either a raw
544 	 * key or a hardware-wrapped key, as indicated by ->is_hw_wrapped.  In
545 	 * the case of a raw, v2 policy key, there is no need to remember the
546 	 * actual key separately from ->hkdf so this field will be zeroized as
547 	 * soon as ->hkdf is initialized.
548 	 */
549 	u8			bytes[FSCRYPT_MAX_ANY_KEY_SIZE];
550 
551 } __randomize_layout;
552 
553 /*
554  * fscrypt_master_key - an in-use master key
555  *
556  * This represents a master encryption key which has been added to the
557  * filesystem.  There are three high-level states that a key can be in:
558  *
559  * FSCRYPT_KEY_STATUS_PRESENT
560  *	Key is fully usable; it can be used to unlock inodes that are encrypted
561  *	with it (this includes being able to create new inodes).  ->mk_present
562  *	indicates whether the key is in this state.  ->mk_secret exists, the key
563  *	is in the keyring, and ->mk_active_refs > 0 due to ->mk_present.
564  *
565  * FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED
566  *	Removal of this key has been initiated, but some inodes that were
567  *	unlocked with it are still in-use.  Like ABSENT, ->mk_secret is wiped,
568  *	and the key can no longer be used to unlock inodes.  Unlike ABSENT, the
569  *	key is still in the keyring; ->mk_decrypted_inodes is nonempty; and
570  *	->mk_active_refs > 0, being equal to the size of ->mk_decrypted_inodes.
571  *
572  *	This state transitions to ABSENT if ->mk_decrypted_inodes becomes empty,
573  *	or to PRESENT if FS_IOC_ADD_ENCRYPTION_KEY is called again for this key.
574  *
575  * FSCRYPT_KEY_STATUS_ABSENT
576  *	Key is fully removed.  The key is no longer in the keyring,
577  *	->mk_decrypted_inodes is empty, ->mk_active_refs == 0, ->mk_secret is
578  *	wiped, and the key can no longer be used to unlock inodes.
579  */
580 struct fscrypt_master_key {
581 
582 	/*
583 	 * Link in ->s_master_keys->key_hashtable.
584 	 * Only valid if ->mk_active_refs > 0.
585 	 */
586 	struct hlist_node			mk_node;
587 
588 	/* Semaphore that protects ->mk_secret, ->mk_users, and ->mk_present */
589 	struct rw_semaphore			mk_sem;
590 
591 	/*
592 	 * Active and structural reference counts.  An active ref guarantees
593 	 * that the struct continues to exist, continues to be in the keyring
594 	 * ->s_master_keys, and that any non-file-scoped subkeys (e.g.
595 	 * ->mk_mode_keys) that have been prepared continue to exist.
596 	 * A structural ref only guarantees that the struct continues to exist.
597 	 *
598 	 * There is one active ref associated with ->mk_present being true, and
599 	 * one active ref for each inode in ->mk_decrypted_inodes.
600 	 *
601 	 * There is one structural ref associated with the active refcount being
602 	 * nonzero.  Finding a key in the keyring also takes a structural ref,
603 	 * which is then held temporarily while the key is operated on.
604 	 */
605 	refcount_t				mk_active_refs;
606 	refcount_t				mk_struct_refs;
607 
608 	struct rcu_head				mk_rcu_head;
609 
610 	/*
611 	 * The secret key material.  Wiped as soon as it is no longer needed;
612 	 * for details, see the fscrypt_master_key struct comment.
613 	 *
614 	 * Locking: protected by ->mk_sem.
615 	 */
616 	struct fscrypt_master_key_secret	mk_secret;
617 
618 	/*
619 	 * For v1 policy keys: an arbitrary key descriptor which was assigned by
620 	 * userspace (->descriptor).
621 	 *
622 	 * For v2 policy keys: a cryptographic hash of this key (->identifier).
623 	 */
624 	struct fscrypt_key_specifier		mk_spec;
625 
626 	/*
627 	 * List of user claims to this key (struct fscrypt_master_key_user).
628 	 * Normally each key will be added by just one user, but it's possible
629 	 * that multiple users share a key, and in that case we need to keep
630 	 * track of those users so that one user can't remove the key before the
631 	 * others want it removed too.
632 	 *
633 	 * Used only for v2 policy keys.  v1 policy keys can be added only by
634 	 * root, so user tracking doesn't apply to them.
635 	 *
636 	 * Locking: protected by ->mk_sem.
637 	 */
638 	struct list_head	mk_users;
639 
640 	/*
641 	 * List of inodes that were unlocked using this key.  This allows the
642 	 * inodes to be evicted efficiently if the key is removed.
643 	 */
644 	struct list_head	mk_decrypted_inodes;
645 	spinlock_t		mk_decrypted_inodes_lock;
646 
647 	/*
648 	 * A list of 'struct fscrypt_mode_key' for the (hkdf_context, mode_num,
649 	 * data_unit_bits, inlinecrypt) combinations that are in use for this
650 	 * master key, for hkdf_context in [HKDF_CONTEXT_DIRECT_KEY,
651 	 * HKDF_CONTEXT_IV_INO_LBLK_32_KEY, HKDF_CONTEXT_IV_INO_LBLK_64_KEY].
652 	 *
653 	 * This is a linked list and not a hash table because in practice
654 	 * there's just a single encryption policy per master key, using
655 	 * _at most_ 2 nodes in this list.  Per-file keys don't use this at all.
656 	 *
657 	 * This list is append-only until the master key is fully removed, at
658 	 * which time the list is cleared.  Before then,
659 	 * fscrypt_mode_key_setup_mutex synchronizes appends, and searches use
660 	 * the RCU read lock together with ->mk_sem held for read.
661 	 */
662 	struct list_head	mk_mode_keys;
663 
664 	/* Hash key for inode numbers.  Initialized only when needed. */
665 	siphash_key_t		mk_ino_hash_key;
666 	bool			mk_ino_hash_key_initialized;
667 
668 	/*
669 	 * Whether this key is in the "present" state, i.e. fully usable.  For
670 	 * details, see the fscrypt_master_key struct comment.
671 	 *
672 	 * Locking: protected by ->mk_sem, but can be read locklessly using
673 	 * READ_ONCE().  Writers must use WRITE_ONCE() when concurrent readers
674 	 * are possible.
675 	 */
676 	bool			mk_present;
677 
678 } __randomize_layout;
679 
680 static inline const char *master_key_spec_type(
681 				const struct fscrypt_key_specifier *spec)
682 {
683 	switch (spec->type) {
684 	case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR:
685 		return "descriptor";
686 	case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER:
687 		return "identifier";
688 	}
689 	return "[unknown]";
690 }
691 
692 static inline int master_key_spec_len(const struct fscrypt_key_specifier *spec)
693 {
694 	switch (spec->type) {
695 	case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR:
696 		return FSCRYPT_KEY_DESCRIPTOR_SIZE;
697 	case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER:
698 		return FSCRYPT_KEY_IDENTIFIER_SIZE;
699 	}
700 	return 0;
701 }
702 
703 void fscrypt_put_master_key(struct fscrypt_master_key *mk);
704 
705 void fscrypt_put_master_key_activeref(struct super_block *sb,
706 				      struct fscrypt_master_key *mk);
707 
708 struct fscrypt_master_key *
709 fscrypt_find_master_key(struct super_block *sb,
710 			const struct fscrypt_key_specifier *mk_spec);
711 
712 void fscrypt_get_test_dummy_key_identifier(
713 			  u8 key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]);
714 
715 int fscrypt_add_test_dummy_key(struct super_block *sb,
716 			       struct fscrypt_key_specifier *key_spec);
717 
718 int fscrypt_verify_key_added(struct super_block *sb,
719 			     const u8 identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]);
720 
721 int __init fscrypt_init_keyring(void);
722 
723 /* keysetup.c */
724 
725 struct fscrypt_mode {
726 	const char *friendly_name;
727 	const char *cipher_str;
728 	int keysize;		/* key size in bytes */
729 	int security_strength;	/* security strength in bytes */
730 	int ivsize;		/* IV size in bytes */
731 	int logged_cryptoapi_impl;
732 	int logged_blk_crypto_native;
733 	int logged_blk_crypto_fallback;
734 	enum blk_crypto_mode_num blk_crypto_mode;
735 };
736 
737 extern struct fscrypt_mode fscrypt_modes[];
738 
739 int fscrypt_prepare_key(struct fscrypt_prepared_key *prep_key,
740 			const u8 *raw_key, const struct fscrypt_inode_info *ci);
741 
742 void fscrypt_destroy_prepared_key(struct super_block *sb,
743 				  struct fscrypt_prepared_key *prep_key);
744 
745 int fscrypt_set_per_file_enc_key(struct fscrypt_inode_info *ci,
746 				 const u8 *raw_key);
747 
748 void fscrypt_derive_dirhash_key(struct fscrypt_inode_info *ci,
749 				const struct fscrypt_master_key *mk);
750 
751 void fscrypt_hash_inode_number(struct fscrypt_inode_info *ci,
752 			       const struct fscrypt_master_key *mk);
753 
754 int fscrypt_get_encryption_info(struct inode *inode, bool allow_unsupported);
755 
756 /**
757  * fscrypt_require_key() - require an inode's encryption key
758  * @inode: the inode we need the key for
759  *
760  * If the inode is encrypted, set up its encryption key if not already done.
761  * Then require that the key be present and return -ENOKEY otherwise.
762  *
763  * No locks are needed, and the key will live as long as the struct inode --- so
764  * it won't go away from under you.
765  *
766  * Return: 0 on success, -ENOKEY if the key is missing, or another -errno code
767  * if a problem occurred while setting up the encryption key.
768  */
769 static inline int fscrypt_require_key(struct inode *inode)
770 {
771 	if (IS_ENCRYPTED(inode)) {
772 		int err = fscrypt_get_encryption_info(inode, false);
773 
774 		if (err)
775 			return err;
776 		if (!fscrypt_has_encryption_key(inode))
777 			return -ENOKEY;
778 	}
779 	return 0;
780 }
781 
782 /* keysetup_v1.c */
783 
784 void fscrypt_put_direct_key(struct fscrypt_direct_key *dk);
785 
786 int fscrypt_setup_v1_file_key(struct fscrypt_inode_info *ci,
787 			      const u8 *raw_master_key);
788 
789 int fscrypt_setup_v1_file_key_via_subscribed_keyrings(
790 				struct fscrypt_inode_info *ci);
791 
792 /* policy.c */
793 
794 bool fscrypt_policies_equal(const union fscrypt_policy *policy1,
795 			    const union fscrypt_policy *policy2);
796 int fscrypt_policy_to_key_spec(const union fscrypt_policy *policy,
797 			       struct fscrypt_key_specifier *key_spec);
798 const union fscrypt_policy *fscrypt_get_dummy_policy(struct super_block *sb);
799 bool fscrypt_supported_policy(const union fscrypt_policy *policy_u,
800 			      const struct inode *inode);
801 int fscrypt_policy_from_context(union fscrypt_policy *policy_u,
802 				const union fscrypt_context *ctx_u,
803 				int ctx_size);
804 const union fscrypt_policy *fscrypt_policy_to_inherit(struct inode *dir);
805 
806 #endif /* _FSCRYPT_PRIVATE_H */
807