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 * Normally only one of the fields will be 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 /* 249 * fscrypt_inode_info - the "encryption key" for an inode 250 * 251 * When an encrypted file's key is made available, an instance of this struct is 252 * allocated and a pointer to it is stored in the file's in-memory inode. Once 253 * created, it remains until the inode is evicted. 254 */ 255 struct fscrypt_inode_info { 256 257 /* The key in a form prepared for actual encryption/decryption */ 258 struct fscrypt_prepared_key ci_enc_key; 259 260 /* True if ci_enc_key should be freed when this struct is freed */ 261 u8 ci_owns_key : 1; 262 263 #ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT 264 /* 265 * True if this inode will use inline encryption (blk-crypto) instead of 266 * the traditional filesystem-layer encryption. 267 */ 268 u8 ci_inlinecrypt : 1; 269 #endif 270 271 /* True if ci_dirhash_key is initialized */ 272 u8 ci_dirhash_key_initialized : 1; 273 274 /* 275 * log2 of the data unit size (granularity of contents encryption) of 276 * this file. This is computable from ci_policy and ci_inode but is 277 * cached here for efficiency. Only used for regular files. 278 */ 279 u8 ci_data_unit_bits; 280 281 /* Hashed inode number. Only set for IV_INO_LBLK_32 */ 282 u32 ci_hashed_ino; 283 284 /* 285 * Encryption mode used for this inode. It corresponds to either the 286 * contents or filenames encryption mode, depending on the inode type. 287 */ 288 struct fscrypt_mode *ci_mode; 289 290 /* Back-pointer to the inode */ 291 struct inode *ci_inode; 292 293 /* 294 * The master key with which this inode was unlocked (decrypted). This 295 * will be NULL if the master key was found in a process-subscribed 296 * keyring rather than in the filesystem-level keyring. 297 */ 298 struct fscrypt_master_key *ci_master_key; 299 300 /* 301 * Link in list of inodes that were unlocked with the master key. 302 * Only used when ->ci_master_key is set. 303 */ 304 struct list_head ci_master_key_link; 305 306 /* 307 * If non-NULL, then encryption is done using the master key directly 308 * and ci_enc_key will equal ci_direct_key->dk_key. 309 */ 310 struct fscrypt_direct_key *ci_direct_key; 311 312 /* 313 * This inode's hash key for filenames. This is a 128-bit SipHash-2-4 314 * key. This is only set for directories that use a keyed dirhash over 315 * the plaintext filenames -- currently just casefolded directories. 316 */ 317 siphash_key_t ci_dirhash_key; 318 319 /* The encryption policy used by this inode */ 320 union fscrypt_policy ci_policy; 321 322 /* This inode's nonce, copied from the fscrypt_context */ 323 u8 ci_nonce[FSCRYPT_FILE_NONCE_SIZE]; 324 }; 325 326 typedef enum { 327 FS_DECRYPT = 0, 328 FS_ENCRYPT, 329 } fscrypt_direction_t; 330 331 /* crypto.c */ 332 extern struct kmem_cache *fscrypt_inode_info_cachep; 333 int fscrypt_initialize(struct super_block *sb); 334 int fscrypt_crypt_data_unit(const struct fscrypt_inode_info *ci, 335 fscrypt_direction_t rw, u64 index, 336 struct page *src_page, struct page *dest_page, 337 unsigned int len, unsigned int offs); 338 struct page *fscrypt_alloc_bounce_page(gfp_t gfp_flags); 339 340 void __printf(3, 4) __cold 341 fscrypt_msg(const struct inode *inode, const char *level, const char *fmt, ...); 342 343 #define fscrypt_warn(inode, fmt, ...) \ 344 fscrypt_msg((inode), KERN_WARNING, fmt, ##__VA_ARGS__) 345 #define fscrypt_err(inode, fmt, ...) \ 346 fscrypt_msg((inode), KERN_ERR, fmt, ##__VA_ARGS__) 347 348 #define FSCRYPT_MAX_IV_SIZE 32 349 350 union fscrypt_iv { 351 struct { 352 /* zero-based index of data unit within the file */ 353 __le64 index; 354 355 /* per-file nonce; only set in DIRECT_KEY mode */ 356 u8 nonce[FSCRYPT_FILE_NONCE_SIZE]; 357 }; 358 u8 raw[FSCRYPT_MAX_IV_SIZE]; 359 __le64 dun[FSCRYPT_MAX_IV_SIZE / sizeof(__le64)]; 360 }; 361 362 void fscrypt_generate_iv(union fscrypt_iv *iv, u64 index, 363 const struct fscrypt_inode_info *ci); 364 365 /* 366 * Return the number of bits used by the maximum file data unit index that is 367 * possible on the given filesystem, using the given log2 data unit size. 368 */ 369 static inline int 370 fscrypt_max_file_dun_bits(const struct super_block *sb, int du_bits) 371 { 372 return fls64(sb->s_maxbytes - 1) - du_bits; 373 } 374 375 /* fname.c */ 376 bool __fscrypt_fname_encrypted_size(const union fscrypt_policy *policy, 377 u32 orig_len, u32 max_len, 378 u32 *encrypted_len_ret); 379 380 /* hkdf.c */ 381 void fscrypt_init_hkdf(struct hmac_sha512_key *hkdf, const u8 *master_key, 382 unsigned int master_key_size); 383 384 /* 385 * The list of contexts in which fscrypt uses HKDF. These values are used as 386 * the first byte of the HKDF application-specific info string to guarantee that 387 * info strings are never repeated between contexts. This ensures that all HKDF 388 * outputs are unique and cryptographically isolated, i.e. knowledge of one 389 * output doesn't reveal another. 390 */ 391 #define HKDF_CONTEXT_KEY_IDENTIFIER_FOR_RAW_KEY 1 /* info=<empty> */ 392 #define HKDF_CONTEXT_PER_FILE_ENC_KEY 2 /* info=file_nonce */ 393 #define HKDF_CONTEXT_DIRECT_KEY 3 /* info=mode_num */ 394 #define HKDF_CONTEXT_IV_INO_LBLK_64_KEY 4 /* info=mode_num||fs_uuid */ 395 #define HKDF_CONTEXT_DIRHASH_KEY 5 /* info=file_nonce */ 396 #define HKDF_CONTEXT_IV_INO_LBLK_32_KEY 6 /* info=mode_num||fs_uuid */ 397 #define HKDF_CONTEXT_INODE_HASH_KEY 7 /* info=<empty> */ 398 #define HKDF_CONTEXT_KEY_IDENTIFIER_FOR_HW_WRAPPED_KEY \ 399 8 /* info=<empty> */ 400 401 void fscrypt_hkdf_expand(const struct hmac_sha512_key *hkdf, u8 context, 402 const u8 *info, unsigned int infolen, 403 u8 *okm, unsigned int okmlen); 404 405 /* inline_crypt.c */ 406 #ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT 407 int fscrypt_select_encryption_impl(struct fscrypt_inode_info *ci, 408 bool is_hw_wrapped_key); 409 410 static inline bool 411 fscrypt_using_inline_encryption(const struct fscrypt_inode_info *ci) 412 { 413 return ci->ci_inlinecrypt; 414 } 415 416 int fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key *prep_key, 417 const u8 *key_bytes, size_t key_size, 418 bool is_hw_wrapped, 419 const struct fscrypt_inode_info *ci); 420 421 void fscrypt_destroy_inline_crypt_key(struct super_block *sb, 422 struct fscrypt_prepared_key *prep_key); 423 424 int fscrypt_derive_sw_secret(struct super_block *sb, 425 const u8 *wrapped_key, size_t wrapped_key_size, 426 u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]); 427 428 /* 429 * Check whether the crypto transform or blk-crypto key has been allocated in 430 * @prep_key, depending on which encryption implementation the file will use. 431 */ 432 static inline bool 433 fscrypt_is_key_prepared(struct fscrypt_prepared_key *prep_key, 434 const struct fscrypt_inode_info *ci) 435 { 436 /* 437 * The two smp_load_acquire()'s here pair with the smp_store_release()'s 438 * in fscrypt_prepare_inline_crypt_key() and fscrypt_prepare_key(). 439 * I.e., in some cases (namely, if this prep_key is a per-mode 440 * encryption key) another task can publish blk_key or tfm concurrently, 441 * executing a RELEASE barrier. We need to use smp_load_acquire() here 442 * to safely ACQUIRE the memory the other task published. 443 */ 444 if (fscrypt_using_inline_encryption(ci)) 445 return smp_load_acquire(&prep_key->blk_key) != NULL; 446 return smp_load_acquire(&prep_key->tfm) != NULL; 447 } 448 449 #else /* CONFIG_FS_ENCRYPTION_INLINE_CRYPT */ 450 451 static inline int fscrypt_select_encryption_impl(struct fscrypt_inode_info *ci, 452 bool is_hw_wrapped_key) 453 { 454 return 0; 455 } 456 457 static inline bool 458 fscrypt_using_inline_encryption(const struct fscrypt_inode_info *ci) 459 { 460 return false; 461 } 462 463 static inline int 464 fscrypt_prepare_inline_crypt_key(struct fscrypt_prepared_key *prep_key, 465 const u8 *key_bytes, size_t key_size, 466 bool is_hw_wrapped, 467 const struct fscrypt_inode_info *ci) 468 { 469 WARN_ON_ONCE(1); 470 return -EOPNOTSUPP; 471 } 472 473 static inline void 474 fscrypt_destroy_inline_crypt_key(struct super_block *sb, 475 struct fscrypt_prepared_key *prep_key) 476 { 477 } 478 479 static inline int 480 fscrypt_derive_sw_secret(struct super_block *sb, 481 const u8 *wrapped_key, size_t wrapped_key_size, 482 u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]) 483 { 484 fscrypt_warn(NULL, "kernel doesn't support hardware-wrapped keys"); 485 return -EOPNOTSUPP; 486 } 487 488 static inline bool 489 fscrypt_is_key_prepared(struct fscrypt_prepared_key *prep_key, 490 const struct fscrypt_inode_info *ci) 491 { 492 return smp_load_acquire(&prep_key->tfm) != NULL; 493 } 494 #endif /* !CONFIG_FS_ENCRYPTION_INLINE_CRYPT */ 495 496 /* keyring.c */ 497 498 /* 499 * fscrypt_master_key_secret - secret key material of an in-use master key 500 */ 501 struct fscrypt_master_key_secret { 502 503 /* 504 * The KDF with which subkeys of this key can be derived. 505 * 506 * For v1 policy keys, this isn't applicable and won't be set. 507 * Otherwise, this KDF will be keyed by this master key if 508 * ->is_hw_wrapped=false, or by the "software secret" that hardware 509 * derived from this master key if ->is_hw_wrapped=true. 510 */ 511 struct hmac_sha512_key hkdf; 512 513 /* 514 * True if this key is a hardware-wrapped key; false if this key is a 515 * raw key (i.e. a "software key"). For v1 policy keys this will always 516 * be false, as v1 policy support is a legacy feature which doesn't 517 * support newer functionality such as hardware-wrapped keys. 518 */ 519 bool is_hw_wrapped; 520 521 /* 522 * Size of the key in bytes. This remains set even if ->bytes was 523 * zeroized due to no longer being needed. I.e. we still remember the 524 * size of the key even if we don't need to remember the key itself. 525 */ 526 u32 size; 527 528 /* 529 * The bytes of the key, when still needed. This can be either a raw 530 * key or a hardware-wrapped key, as indicated by ->is_hw_wrapped. In 531 * the case of a raw, v2 policy key, there is no need to remember the 532 * actual key separately from ->hkdf so this field will be zeroized as 533 * soon as ->hkdf is initialized. 534 */ 535 u8 bytes[FSCRYPT_MAX_ANY_KEY_SIZE]; 536 537 } __randomize_layout; 538 539 /* 540 * fscrypt_master_key - an in-use master key 541 * 542 * This represents a master encryption key which has been added to the 543 * filesystem. There are three high-level states that a key can be in: 544 * 545 * FSCRYPT_KEY_STATUS_PRESENT 546 * Key is fully usable; it can be used to unlock inodes that are encrypted 547 * with it (this includes being able to create new inodes). ->mk_present 548 * indicates whether the key is in this state. ->mk_secret exists, the key 549 * is in the keyring, and ->mk_active_refs > 0 due to ->mk_present. 550 * 551 * FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED 552 * Removal of this key has been initiated, but some inodes that were 553 * unlocked with it are still in-use. Like ABSENT, ->mk_secret is wiped, 554 * and the key can no longer be used to unlock inodes. Unlike ABSENT, the 555 * key is still in the keyring; ->mk_decrypted_inodes is nonempty; and 556 * ->mk_active_refs > 0, being equal to the size of ->mk_decrypted_inodes. 557 * 558 * This state transitions to ABSENT if ->mk_decrypted_inodes becomes empty, 559 * or to PRESENT if FS_IOC_ADD_ENCRYPTION_KEY is called again for this key. 560 * 561 * FSCRYPT_KEY_STATUS_ABSENT 562 * Key is fully removed. The key is no longer in the keyring, 563 * ->mk_decrypted_inodes is empty, ->mk_active_refs == 0, ->mk_secret is 564 * wiped, and the key can no longer be used to unlock inodes. 565 */ 566 struct fscrypt_master_key { 567 568 /* 569 * Link in ->s_master_keys->key_hashtable. 570 * Only valid if ->mk_active_refs > 0. 571 */ 572 struct hlist_node mk_node; 573 574 /* Semaphore that protects ->mk_secret, ->mk_users, and ->mk_present */ 575 struct rw_semaphore mk_sem; 576 577 /* 578 * Active and structural reference counts. An active ref guarantees 579 * that the struct continues to exist, continues to be in the keyring 580 * ->s_master_keys, and that any embedded subkeys (e.g. 581 * ->mk_direct_keys) that have been prepared continue to exist. 582 * A structural ref only guarantees that the struct continues to exist. 583 * 584 * There is one active ref associated with ->mk_present being true, and 585 * one active ref for each inode in ->mk_decrypted_inodes. 586 * 587 * There is one structural ref associated with the active refcount being 588 * nonzero. Finding a key in the keyring also takes a structural ref, 589 * which is then held temporarily while the key is operated on. 590 */ 591 refcount_t mk_active_refs; 592 refcount_t mk_struct_refs; 593 594 struct rcu_head mk_rcu_head; 595 596 /* 597 * The secret key material. Wiped as soon as it is no longer needed; 598 * for details, see the fscrypt_master_key struct comment. 599 * 600 * Locking: protected by ->mk_sem. 601 */ 602 struct fscrypt_master_key_secret mk_secret; 603 604 /* 605 * For v1 policy keys: an arbitrary key descriptor which was assigned by 606 * userspace (->descriptor). 607 * 608 * For v2 policy keys: a cryptographic hash of this key (->identifier). 609 */ 610 struct fscrypt_key_specifier mk_spec; 611 612 /* 613 * Keyring which contains a key of type 'key_type_fscrypt_user' for each 614 * user who has added this key. Normally each key will be added by just 615 * one user, but it's possible that multiple users share a key, and in 616 * that case we need to keep track of those users so that one user can't 617 * remove the key before the others want it removed too. 618 * 619 * This is NULL for v1 policy keys; those can only be added by root. 620 * 621 * Locking: protected by ->mk_sem. (We don't just rely on the keyrings 622 * subsystem semaphore ->mk_users->sem, as we need support for atomic 623 * search+insert along with proper synchronization with other fields.) 624 */ 625 struct key *mk_users; 626 627 /* 628 * List of inodes that were unlocked using this key. This allows the 629 * inodes to be evicted efficiently if the key is removed. 630 */ 631 struct list_head mk_decrypted_inodes; 632 spinlock_t mk_decrypted_inodes_lock; 633 634 /* 635 * Per-mode encryption keys for the various types of encryption policies 636 * that use them. Allocated and derived on-demand. 637 */ 638 struct fscrypt_prepared_key mk_direct_keys[FSCRYPT_MODE_MAX + 1]; 639 struct fscrypt_prepared_key mk_iv_ino_lblk_64_keys[FSCRYPT_MODE_MAX + 1]; 640 struct fscrypt_prepared_key mk_iv_ino_lblk_32_keys[FSCRYPT_MODE_MAX + 1]; 641 642 /* Hash key for inode numbers. Initialized only when needed. */ 643 siphash_key_t mk_ino_hash_key; 644 bool mk_ino_hash_key_initialized; 645 646 /* 647 * Whether this key is in the "present" state, i.e. fully usable. For 648 * details, see the fscrypt_master_key struct comment. 649 * 650 * Locking: protected by ->mk_sem, but can be read locklessly using 651 * READ_ONCE(). Writers must use WRITE_ONCE() when concurrent readers 652 * are possible. 653 */ 654 bool mk_present; 655 656 } __randomize_layout; 657 658 static inline const char *master_key_spec_type( 659 const struct fscrypt_key_specifier *spec) 660 { 661 switch (spec->type) { 662 case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR: 663 return "descriptor"; 664 case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER: 665 return "identifier"; 666 } 667 return "[unknown]"; 668 } 669 670 static inline int master_key_spec_len(const struct fscrypt_key_specifier *spec) 671 { 672 switch (spec->type) { 673 case FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR: 674 return FSCRYPT_KEY_DESCRIPTOR_SIZE; 675 case FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER: 676 return FSCRYPT_KEY_IDENTIFIER_SIZE; 677 } 678 return 0; 679 } 680 681 void fscrypt_put_master_key(struct fscrypt_master_key *mk); 682 683 void fscrypt_put_master_key_activeref(struct super_block *sb, 684 struct fscrypt_master_key *mk); 685 686 struct fscrypt_master_key * 687 fscrypt_find_master_key(struct super_block *sb, 688 const struct fscrypt_key_specifier *mk_spec); 689 690 void fscrypt_get_test_dummy_key_identifier( 691 u8 key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]); 692 693 int fscrypt_add_test_dummy_key(struct super_block *sb, 694 struct fscrypt_key_specifier *key_spec); 695 696 int fscrypt_verify_key_added(struct super_block *sb, 697 const u8 identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]); 698 699 int __init fscrypt_init_keyring(void); 700 701 /* keysetup.c */ 702 703 struct fscrypt_mode { 704 const char *friendly_name; 705 const char *cipher_str; 706 int keysize; /* key size in bytes */ 707 int security_strength; /* security strength in bytes */ 708 int ivsize; /* IV size in bytes */ 709 int logged_cryptoapi_impl; 710 int logged_blk_crypto_native; 711 int logged_blk_crypto_fallback; 712 enum blk_crypto_mode_num blk_crypto_mode; 713 }; 714 715 extern struct fscrypt_mode fscrypt_modes[]; 716 717 int fscrypt_prepare_key(struct fscrypt_prepared_key *prep_key, 718 const u8 *raw_key, const struct fscrypt_inode_info *ci); 719 720 void fscrypt_destroy_prepared_key(struct super_block *sb, 721 struct fscrypt_prepared_key *prep_key); 722 723 int fscrypt_set_per_file_enc_key(struct fscrypt_inode_info *ci, 724 const u8 *raw_key); 725 726 void fscrypt_derive_dirhash_key(struct fscrypt_inode_info *ci, 727 const struct fscrypt_master_key *mk); 728 729 void fscrypt_hash_inode_number(struct fscrypt_inode_info *ci, 730 const struct fscrypt_master_key *mk); 731 732 int fscrypt_get_encryption_info(struct inode *inode, bool allow_unsupported); 733 734 /** 735 * fscrypt_require_key() - require an inode's encryption key 736 * @inode: the inode we need the key for 737 * 738 * If the inode is encrypted, set up its encryption key if not already done. 739 * Then require that the key be present and return -ENOKEY otherwise. 740 * 741 * No locks are needed, and the key will live as long as the struct inode --- so 742 * it won't go away from under you. 743 * 744 * Return: 0 on success, -ENOKEY if the key is missing, or another -errno code 745 * if a problem occurred while setting up the encryption key. 746 */ 747 static inline int fscrypt_require_key(struct inode *inode) 748 { 749 if (IS_ENCRYPTED(inode)) { 750 int err = fscrypt_get_encryption_info(inode, false); 751 752 if (err) 753 return err; 754 if (!fscrypt_has_encryption_key(inode)) 755 return -ENOKEY; 756 } 757 return 0; 758 } 759 760 /* keysetup_v1.c */ 761 762 void fscrypt_put_direct_key(struct fscrypt_direct_key *dk); 763 764 int fscrypt_setup_v1_file_key(struct fscrypt_inode_info *ci, 765 const u8 *raw_master_key); 766 767 int fscrypt_setup_v1_file_key_via_subscribed_keyrings( 768 struct fscrypt_inode_info *ci); 769 770 /* policy.c */ 771 772 bool fscrypt_policies_equal(const union fscrypt_policy *policy1, 773 const union fscrypt_policy *policy2); 774 int fscrypt_policy_to_key_spec(const union fscrypt_policy *policy, 775 struct fscrypt_key_specifier *key_spec); 776 const union fscrypt_policy *fscrypt_get_dummy_policy(struct super_block *sb); 777 bool fscrypt_supported_policy(const union fscrypt_policy *policy_u, 778 const struct inode *inode); 779 int fscrypt_policy_from_context(union fscrypt_policy *policy_u, 780 const union fscrypt_context *ctx_u, 781 int ctx_size); 782 const union fscrypt_policy *fscrypt_policy_to_inherit(struct inode *dir); 783 784 #endif /* _FSCRYPT_PRIVATE_H */ 785