1===================================== 2Filesystem-level encryption (fscrypt) 3===================================== 4 5Introduction 6============ 7 8fscrypt is a library which filesystems can hook into to support 9transparent encryption of files and directories. 10 11Note: "fscrypt" in this document refers to the kernel-level portion, 12implemented in ``fs/crypto/``, as opposed to the userspace tool 13`fscrypt <https://github.com/google/fscrypt>`_. This document only 14covers the kernel-level portion. For command-line examples of how to 15use encryption, see the documentation for the userspace tool `fscrypt 16<https://github.com/google/fscrypt>`_. Also, it is recommended to use 17the fscrypt userspace tool, or other existing userspace tools such as 18`fscryptctl <https://github.com/google/fscryptctl>`_ or `Android's key 19management system 20<https://source.android.com/security/encryption/file-based>`_, over 21using the kernel's API directly. Using existing tools reduces the 22chance of introducing your own security bugs. (Nevertheless, for 23completeness this documentation covers the kernel's API anyway.) 24 25Unlike dm-crypt, fscrypt operates at the filesystem level rather than 26at the block device level. This allows it to encrypt different files 27with different keys and to have unencrypted files on the same 28filesystem. This is useful for multi-user systems where each user's 29data-at-rest needs to be cryptographically isolated from the others. 30However, except for filenames, fscrypt does not encrypt filesystem 31metadata. 32 33Unlike eCryptfs, which is a stacked filesystem, fscrypt is integrated 34directly into supported filesystems --- currently ext4, F2FS, UBIFS, 35and CephFS. This allows encrypted files to be read and written 36without caching both the decrypted and encrypted pages in the 37pagecache, thereby nearly halving the memory used and bringing it in 38line with unencrypted files. Similarly, half as many dentries and 39inodes are needed. eCryptfs also limits encrypted filenames to 143 40bytes, causing application compatibility issues; fscrypt allows the 41full 255 bytes (NAME_MAX). Finally, unlike eCryptfs, the fscrypt API 42can be used by unprivileged users, with no need to mount anything. 43 44fscrypt does not support encrypting files in-place. Instead, it 45supports marking an empty directory as encrypted. Then, after 46userspace provides the key, all regular files, directories, and 47symbolic links created in that directory tree are transparently 48encrypted. 49 50Threat model 51============ 52 53Offline attacks 54--------------- 55 56Provided that userspace chooses a strong encryption key, fscrypt 57protects the confidentiality of file contents and filenames in the 58event of a single point-in-time permanent offline compromise of the 59block device content. fscrypt does not protect the confidentiality of 60non-filename metadata, e.g. file sizes, file permissions, file 61timestamps, and extended attributes. Also, the existence and location 62of holes (unallocated blocks which logically contain all zeroes) in 63files is not protected. 64 65fscrypt is not guaranteed to protect confidentiality or authenticity 66if an attacker is able to manipulate the filesystem offline prior to 67an authorized user later accessing the filesystem. 68 69Online attacks 70-------------- 71 72fscrypt (and storage encryption in general) can only provide limited 73protection, if any at all, against online attacks. In detail: 74 75Side-channel attacks 76~~~~~~~~~~~~~~~~~~~~ 77 78fscrypt is only resistant to side-channel attacks, such as timing or 79electromagnetic attacks, to the extent that the underlying Linux 80Cryptographic API algorithms or inline encryption hardware are. If a 81vulnerable algorithm is used, such as a table-based implementation of 82AES, it may be possible for an attacker to mount a side channel attack 83against the online system. Side channel attacks may also be mounted 84against applications consuming decrypted data. 85 86Unauthorized file access 87~~~~~~~~~~~~~~~~~~~~~~~~ 88 89After an encryption key has been added, fscrypt does not hide the 90plaintext file contents or filenames from other users on the same 91system. Instead, existing access control mechanisms such as file mode 92bits, POSIX ACLs, LSMs, or namespaces should be used for this purpose. 93 94(For the reasoning behind this, understand that while the key is 95added, the confidentiality of the data, from the perspective of the 96system itself, is *not* protected by the mathematical properties of 97encryption but rather only by the correctness of the kernel. 98Therefore, any encryption-specific access control checks would merely 99be enforced by kernel *code* and therefore would be largely redundant 100with the wide variety of access control mechanisms already available.) 101 102Kernel memory compromise 103~~~~~~~~~~~~~~~~~~~~~~~~ 104 105An attacker who compromises the system enough to read from arbitrary 106memory, e.g. by mounting a physical attack or by exploiting a kernel 107security vulnerability, can compromise all encryption keys that are 108currently in use. 109 110However, fscrypt allows encryption keys to be removed from the kernel, 111which may protect them from later compromise. 112 113In more detail, the FS_IOC_REMOVE_ENCRYPTION_KEY ioctl (or the 114FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS ioctl) can wipe a master 115encryption key from kernel memory. If it does so, it will also try to 116evict all cached inodes which had been "unlocked" using the key, 117thereby wiping their per-file keys and making them once again appear 118"locked", i.e. in ciphertext or encrypted form. 119 120However, these ioctls have some limitations: 121 122- Per-file keys for in-use files will *not* be removed or wiped. 123 Therefore, for maximum effect, userspace should close the relevant 124 encrypted files and directories before removing a master key, as 125 well as kill any processes whose working directory is in an affected 126 encrypted directory. 127 128- The kernel cannot magically wipe copies of the master key(s) that 129 userspace might have as well. Therefore, userspace must wipe all 130 copies of the master key(s) it makes as well; normally this should 131 be done immediately after FS_IOC_ADD_ENCRYPTION_KEY, without waiting 132 for FS_IOC_REMOVE_ENCRYPTION_KEY. Naturally, the same also applies 133 to all higher levels in the key hierarchy. Userspace should also 134 follow other security precautions such as mlock()ing memory 135 containing keys to prevent it from being swapped out. 136 137- In general, decrypted contents and filenames in the kernel VFS 138 caches are freed but not wiped. Therefore, portions thereof may be 139 recoverable from freed memory, even after the corresponding key(s) 140 were wiped. To partially solve this, you can set 141 CONFIG_PAGE_POISONING=y in your kernel config and add page_poison=1 142 to your kernel command line. However, this has a performance cost. 143 144- Secret keys might still exist in CPU registers or in other places 145 not explicitly considered here. 146 147Limitations of v1 policies 148~~~~~~~~~~~~~~~~~~~~~~~~~~ 149 150v1 encryption policies have some weaknesses with respect to online 151attacks: 152 153- There is no verification that the provided master key is correct. 154 Therefore, a malicious user can temporarily associate the wrong key 155 with another user's encrypted files to which they have read-only 156 access. Because of filesystem caching, the wrong key will then be 157 used by the other user's accesses to those files, even if the other 158 user has the correct key in their own keyring. This violates the 159 meaning of "read-only access". 160 161- A compromise of a per-file key also compromises the master key from 162 which it was derived. 163 164- Non-root users cannot securely remove encryption keys. 165 166All the above problems are fixed with v2 encryption policies. For 167this reason among others, it is recommended to use v2 encryption 168policies on all new encrypted directories. 169 170Key hierarchy 171============= 172 173Master Keys 174----------- 175 176Each encrypted directory tree is protected by a *master key*. Master 177keys can be up to 64 bytes long, and must be at least as long as the 178greater of the security strength of the contents and filenames 179encryption modes being used. For example, if any AES-256 mode is 180used, the master key must be at least 256 bits, i.e. 32 bytes. A 181stricter requirement applies if the key is used by a v1 encryption 182policy and AES-256-XTS is used; such keys must be 64 bytes. 183 184To "unlock" an encrypted directory tree, userspace must provide the 185appropriate master key. There can be any number of master keys, each 186of which protects any number of directory trees on any number of 187filesystems. 188 189Master keys must be real cryptographic keys, i.e. indistinguishable 190from random bytestrings of the same length. This implies that users 191**must not** directly use a password as a master key, zero-pad a 192shorter key, or repeat a shorter key. Security cannot be guaranteed 193if userspace makes any such error, as the cryptographic proofs and 194analysis would no longer apply. 195 196Instead, users should generate master keys either using a 197cryptographically secure random number generator, or by using a KDF 198(Key Derivation Function). The kernel does not do any key stretching; 199therefore, if userspace derives the key from a low-entropy secret such 200as a passphrase, it is critical that a KDF designed for this purpose 201be used, such as scrypt, PBKDF2, or Argon2. 202 203Key derivation function 204----------------------- 205 206With one exception, fscrypt never uses the master key(s) for 207encryption directly. Instead, they are only used as input to a KDF 208(Key Derivation Function) to derive the actual keys. 209 210The KDF used for a particular master key differs depending on whether 211the key is used for v1 encryption policies or for v2 encryption 212policies. Users **must not** use the same key for both v1 and v2 213encryption policies. (No real-world attack is currently known on this 214specific case of key reuse, but its security cannot be guaranteed 215since the cryptographic proofs and analysis would no longer apply.) 216 217For v1 encryption policies, the KDF only supports deriving per-file 218encryption keys. It works by encrypting the master key with 219AES-128-ECB, using the file's 16-byte nonce as the AES key. The 220resulting ciphertext is used as the derived key. If the ciphertext is 221longer than needed, then it is truncated to the needed length. 222 223For v2 encryption policies, the KDF is HKDF-SHA512. The master key is 224passed as the "input keying material", no salt is used, and a distinct 225"application-specific information string" is used for each distinct 226key to be derived. For example, when a per-file encryption key is 227derived, the application-specific information string is the file's 228nonce prefixed with "fscrypt\\0" and a context byte. Different 229context bytes are used for other types of derived keys. 230 231HKDF-SHA512 is preferred to the original AES-128-ECB based KDF because 232HKDF is more flexible, is nonreversible, and evenly distributes 233entropy from the master key. HKDF is also standardized and widely 234used by other software, whereas the AES-128-ECB based KDF is ad-hoc. 235 236Per-file encryption keys 237------------------------ 238 239Since each master key can protect many files, it is necessary to 240"tweak" the encryption of each file so that the same plaintext in two 241files doesn't map to the same ciphertext, or vice versa. In most 242cases, fscrypt does this by deriving per-file keys. When a new 243encrypted inode (regular file, directory, or symlink) is created, 244fscrypt randomly generates a 16-byte nonce and stores it in the 245inode's encryption xattr. Then, it uses a KDF (as described in `Key 246derivation function`_) to derive the file's key from the master key 247and nonce. 248 249Key derivation was chosen over key wrapping because wrapped keys would 250require larger xattrs which would be less likely to fit in-line in the 251filesystem's inode table, and there didn't appear to be any 252significant advantages to key wrapping. In particular, currently 253there is no requirement to support unlocking a file with multiple 254alternative master keys or to support rotating master keys. Instead, 255the master keys may be wrapped in userspace, e.g. as is done by the 256`fscrypt <https://github.com/google/fscrypt>`_ tool. 257 258DIRECT_KEY policies 259------------------- 260 261The Adiantum encryption mode (see `Encryption modes and usage`_) is 262suitable for both contents and filenames encryption, and it accepts 263long IVs --- long enough to hold both an 8-byte data unit index and a 26416-byte per-file nonce. Also, the overhead of each Adiantum key is 265greater than that of an AES-256-XTS key. 266 267Therefore, to improve performance and save memory, for Adiantum a 268"direct key" configuration is supported. When the user has enabled 269this by setting FSCRYPT_POLICY_FLAG_DIRECT_KEY in the fscrypt policy, 270per-file encryption keys are not used. Instead, whenever any data 271(contents or filenames) is encrypted, the file's 16-byte nonce is 272included in the IV. Moreover: 273 274- For v1 encryption policies, the encryption is done directly with the 275 master key. Because of this, users **must not** use the same master 276 key for any other purpose, even for other v1 policies. 277 278- For v2 encryption policies, the encryption is done with a per-mode 279 key derived using the KDF. Users may use the same master key for 280 other v2 encryption policies. 281 282IV_INO_LBLK_64 policies 283----------------------- 284 285When FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64 is set in the fscrypt policy, 286the encryption keys are derived from the master key, encryption mode 287number, and filesystem UUID. This normally results in all files 288protected by the same master key sharing a single contents encryption 289key and a single filenames encryption key. To still encrypt different 290files' data differently, inode numbers are included in the IVs. 291Consequently, shrinking the filesystem may not be allowed. 292 293This format is optimized for use with inline encryption hardware 294compliant with the UFS standard, which supports only 64 IV bits per 295I/O request and may have only a small number of keyslots. 296 297IV_INO_LBLK_32 policies 298----------------------- 299 300IV_INO_LBLK_32 policies work like IV_INO_LBLK_64, except that for 301IV_INO_LBLK_32, the inode number is hashed with SipHash-2-4 (where the 302SipHash key is derived from the master key) and added to the file data 303unit index mod 2^32 to produce a 32-bit IV. 304 305This format is optimized for use with inline encryption hardware 306compliant with the eMMC v5.2 standard, which supports only 32 IV bits 307per I/O request and may have only a small number of keyslots. This 308format results in some level of IV reuse, so it should only be used 309when necessary due to hardware limitations. 310 311Key identifiers 312--------------- 313 314For master keys used for v2 encryption policies, a unique 16-byte "key 315identifier" is also derived using the KDF. This value is stored in 316the clear, since it is needed to reliably identify the key itself. 317 318Dirhash keys 319------------ 320 321For directories that are indexed using a secret-keyed dirhash over the 322plaintext filenames, the KDF is also used to derive a 128-bit 323SipHash-2-4 key per directory in order to hash filenames. This works 324just like deriving a per-file encryption key, except that a different 325KDF context is used. Currently, only casefolded ("case-insensitive") 326encrypted directories use this style of hashing. 327 328Encryption modes and usage 329========================== 330 331fscrypt allows one encryption mode to be specified for file contents 332and one encryption mode to be specified for filenames. Different 333directory trees are permitted to use different encryption modes. 334 335Supported modes 336--------------- 337 338Currently, the following pairs of encryption modes are supported: 339 340- AES-256-XTS for contents and AES-256-CBC-CTS for filenames 341- AES-256-XTS for contents and AES-256-HCTR2 for filenames 342- Adiantum for both contents and filenames 343- AES-128-CBC-ESSIV for contents and AES-128-CBC-CTS for filenames 344- SM4-XTS for contents and SM4-CBC-CTS for filenames 345 346Note: in the API, "CBC" means CBC-ESSIV, and "CTS" means CBC-CTS. 347So, for example, FSCRYPT_MODE_AES_256_CTS means AES-256-CBC-CTS. 348 349Authenticated encryption modes are not currently supported because of 350the difficulty of dealing with ciphertext expansion. Therefore, 351contents encryption uses a block cipher in `XTS mode 352<https://en.wikipedia.org/wiki/Disk_encryption_theory#XTS>`_ or 353`CBC-ESSIV mode 354<https://en.wikipedia.org/wiki/Disk_encryption_theory#Encrypted_salt-sector_initialization_vector_(ESSIV)>`_, 355or a wide-block cipher. Filenames encryption uses a 356block cipher in `CBC-CTS mode 357<https://en.wikipedia.org/wiki/Ciphertext_stealing>`_ or a wide-block 358cipher. 359 360The (AES-256-XTS, AES-256-CBC-CTS) pair is the recommended default. 361It is also the only option that is *guaranteed* to always be supported 362if the kernel supports fscrypt at all; see `Kernel config options`_. 363 364The (AES-256-XTS, AES-256-HCTR2) pair is also a good choice that 365upgrades the filenames encryption to use a wide-block cipher. (A 366*wide-block cipher*, also called a tweakable super-pseudorandom 367permutation, has the property that changing one bit scrambles the 368entire result.) As described in `Filenames encryption`_, a wide-block 369cipher is the ideal mode for the problem domain, though CBC-CTS is the 370"least bad" choice among the alternatives. For more information about 371HCTR2, see `the HCTR2 paper <https://eprint.iacr.org/2021/1441.pdf>`_. 372 373Adiantum is recommended on systems where AES is too slow due to lack 374of hardware acceleration for AES. Adiantum is a wide-block cipher 375that uses XChaCha12 and AES-256 as its underlying components. Most of 376the work is done by XChaCha12, which is much faster than AES when AES 377acceleration is unavailable. For more information about Adiantum, see 378`the Adiantum paper <https://eprint.iacr.org/2018/720.pdf>`_. 379 380The (AES-128-CBC-ESSIV, AES-128-CBC-CTS) pair was added to try to 381provide a more efficient option for systems that lack AES instructions 382in the CPU but do have a non-inline crypto engine such as CAAM or CESA 383that supports AES-CBC (and not AES-XTS). This is deprecated. It has 384been shown that just doing AES on the CPU is actually faster. 385Moreover, Adiantum is faster still and is recommended on such systems. 386 387The remaining mode pairs are the "national pride ciphers": 388 389- (SM4-XTS, SM4-CBC-CTS) 390 391Generally speaking, these ciphers aren't "bad" per se, but they 392receive limited security review compared to the usual choices such as 393AES and ChaCha. They also don't bring much new to the table. It is 394suggested to only use these ciphers where their use is mandated. 395 396Kernel config options 397--------------------- 398 399Enabling fscrypt support (CONFIG_FS_ENCRYPTION) automatically pulls in 400only the basic support from the crypto API needed to use AES-256-XTS 401and AES-256-CBC-CTS encryption. For optimal performance, it is 402strongly recommended to also enable any available platform-specific 403kconfig options that provide acceleration for the algorithm(s) you 404wish to use. Support for any "non-default" encryption modes typically 405requires extra kconfig options as well. 406 407Below, some relevant options are listed by encryption mode. Note, 408acceleration options not listed below may be available for your 409platform; refer to the kconfig menus. File contents encryption can 410also be configured to use inline encryption hardware instead of the 411kernel crypto API (see `Inline encryption support`_); in that case, 412the file contents mode doesn't need to supported in the kernel crypto 413API, but the filenames mode still does. 414 415- AES-256-XTS and AES-256-CBC-CTS 416 - Recommended: 417 - arm64: CONFIG_CRYPTO_AES_ARM64_CE_BLK 418 - x86: CONFIG_CRYPTO_AES_NI_INTEL 419 420- AES-256-HCTR2 421 - Mandatory: 422 - CONFIG_CRYPTO_HCTR2 423 - Recommended: 424 - arm64: CONFIG_CRYPTO_AES_ARM64_CE_BLK 425 - arm64: CONFIG_CRYPTO_POLYVAL_ARM64_CE 426 - x86: CONFIG_CRYPTO_AES_NI_INTEL 427 - x86: CONFIG_CRYPTO_POLYVAL_CLMUL_NI 428 429- Adiantum 430 - Mandatory: 431 - CONFIG_CRYPTO_ADIANTUM 432 - Recommended: 433 - arm32: CONFIG_CRYPTO_CHACHA20_NEON 434 - arm32: CONFIG_CRYPTO_NHPOLY1305_NEON 435 - arm64: CONFIG_CRYPTO_CHACHA20_NEON 436 - arm64: CONFIG_CRYPTO_NHPOLY1305_NEON 437 - x86: CONFIG_CRYPTO_CHACHA20_X86_64 438 - x86: CONFIG_CRYPTO_NHPOLY1305_SSE2 439 - x86: CONFIG_CRYPTO_NHPOLY1305_AVX2 440 441- AES-128-CBC-ESSIV and AES-128-CBC-CTS: 442 - Mandatory: 443 - CONFIG_CRYPTO_ESSIV 444 - CONFIG_CRYPTO_SHA256 or another SHA-256 implementation 445 - Recommended: 446 - AES-CBC acceleration 447 448fscrypt also uses HMAC-SHA512 for key derivation, so enabling SHA-512 449acceleration is recommended: 450 451- SHA-512 452 - Recommended: 453 - arm64: CONFIG_CRYPTO_SHA512_ARM64_CE 454 - x86: CONFIG_CRYPTO_SHA512_SSSE3 455 456Contents encryption 457------------------- 458 459For contents encryption, each file's contents is divided into "data 460units". Each data unit is encrypted independently. The IV for each 461data unit incorporates the zero-based index of the data unit within 462the file. This ensures that each data unit within a file is encrypted 463differently, which is essential to prevent leaking information. 464 465Note: the encryption depending on the offset into the file means that 466operations like "collapse range" and "insert range" that rearrange the 467extent mapping of files are not supported on encrypted files. 468 469There are two cases for the sizes of the data units: 470 471* Fixed-size data units. This is how all filesystems other than UBIFS 472 work. A file's data units are all the same size; the last data unit 473 is zero-padded if needed. By default, the data unit size is equal 474 to the filesystem block size. On some filesystems, users can select 475 a sub-block data unit size via the ``log2_data_unit_size`` field of 476 the encryption policy; see `FS_IOC_SET_ENCRYPTION_POLICY`_. 477 478* Variable-size data units. This is what UBIFS does. Each "UBIFS 479 data node" is treated as a crypto data unit. Each contains variable 480 length, possibly compressed data, zero-padded to the next 16-byte 481 boundary. Users cannot select a sub-block data unit size on UBIFS. 482 483In the case of compression + encryption, the compressed data is 484encrypted. UBIFS compression works as described above. f2fs 485compression works a bit differently; it compresses a number of 486filesystem blocks into a smaller number of filesystem blocks. 487Therefore a f2fs-compressed file still uses fixed-size data units, and 488it is encrypted in a similar way to a file containing holes. 489 490As mentioned in `Key hierarchy`_, the default encryption setting uses 491per-file keys. In this case, the IV for each data unit is simply the 492index of the data unit in the file. However, users can select an 493encryption setting that does not use per-file keys. For these, some 494kind of file identifier is incorporated into the IVs as follows: 495 496- With `DIRECT_KEY policies`_, the data unit index is placed in bits 497 0-63 of the IV, and the file's nonce is placed in bits 64-191. 498 499- With `IV_INO_LBLK_64 policies`_, the data unit index is placed in 500 bits 0-31 of the IV, and the file's inode number is placed in bits 501 32-63. This setting is only allowed when data unit indices and 502 inode numbers fit in 32 bits. 503 504- With `IV_INO_LBLK_32 policies`_, the file's inode number is hashed 505 and added to the data unit index. The resulting value is truncated 506 to 32 bits and placed in bits 0-31 of the IV. This setting is only 507 allowed when data unit indices and inode numbers fit in 32 bits. 508 509The byte order of the IV is always little endian. 510 511If the user selects FSCRYPT_MODE_AES_128_CBC for the contents mode, an 512ESSIV layer is automatically included. In this case, before the IV is 513passed to AES-128-CBC, it is encrypted with AES-256 where the AES-256 514key is the SHA-256 hash of the file's contents encryption key. 515 516Filenames encryption 517-------------------- 518 519For filenames, each full filename is encrypted at once. Because of 520the requirements to retain support for efficient directory lookups and 521filenames of up to 255 bytes, the same IV is used for every filename 522in a directory. 523 524However, each encrypted directory still uses a unique key, or 525alternatively has the file's nonce (for `DIRECT_KEY policies`_) or 526inode number (for `IV_INO_LBLK_64 policies`_) included in the IVs. 527Thus, IV reuse is limited to within a single directory. 528 529With CBC-CTS, the IV reuse means that when the plaintext filenames share a 530common prefix at least as long as the cipher block size (16 bytes for AES), the 531corresponding encrypted filenames will also share a common prefix. This is 532undesirable. Adiantum and HCTR2 do not have this weakness, as they are 533wide-block encryption modes. 534 535All supported filenames encryption modes accept any plaintext length 536>= 16 bytes; cipher block alignment is not required. However, 537filenames shorter than 16 bytes are NUL-padded to 16 bytes before 538being encrypted. In addition, to reduce leakage of filename lengths 539via their ciphertexts, all filenames are NUL-padded to the next 4, 8, 54016, or 32-byte boundary (configurable). 32 is recommended since this 541provides the best confidentiality, at the cost of making directory 542entries consume slightly more space. Note that since NUL (``\0``) is 543not otherwise a valid character in filenames, the padding will never 544produce duplicate plaintexts. 545 546Symbolic link targets are considered a type of filename and are 547encrypted in the same way as filenames in directory entries, except 548that IV reuse is not a problem as each symlink has its own inode. 549 550User API 551======== 552 553Setting an encryption policy 554---------------------------- 555 556FS_IOC_SET_ENCRYPTION_POLICY 557~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 558 559The FS_IOC_SET_ENCRYPTION_POLICY ioctl sets an encryption policy on an 560empty directory or verifies that a directory or regular file already 561has the specified encryption policy. It takes in a pointer to 562struct fscrypt_policy_v1 or struct fscrypt_policy_v2, defined as 563follows:: 564 565 #define FSCRYPT_POLICY_V1 0 566 #define FSCRYPT_KEY_DESCRIPTOR_SIZE 8 567 struct fscrypt_policy_v1 { 568 __u8 version; 569 __u8 contents_encryption_mode; 570 __u8 filenames_encryption_mode; 571 __u8 flags; 572 __u8 master_key_descriptor[FSCRYPT_KEY_DESCRIPTOR_SIZE]; 573 }; 574 #define fscrypt_policy fscrypt_policy_v1 575 576 #define FSCRYPT_POLICY_V2 2 577 #define FSCRYPT_KEY_IDENTIFIER_SIZE 16 578 struct fscrypt_policy_v2 { 579 __u8 version; 580 __u8 contents_encryption_mode; 581 __u8 filenames_encryption_mode; 582 __u8 flags; 583 __u8 log2_data_unit_size; 584 __u8 __reserved[3]; 585 __u8 master_key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]; 586 }; 587 588This structure must be initialized as follows: 589 590- ``version`` must be FSCRYPT_POLICY_V1 (0) if 591 struct fscrypt_policy_v1 is used or FSCRYPT_POLICY_V2 (2) if 592 struct fscrypt_policy_v2 is used. (Note: we refer to the original 593 policy version as "v1", though its version code is really 0.) 594 For new encrypted directories, use v2 policies. 595 596- ``contents_encryption_mode`` and ``filenames_encryption_mode`` must 597 be set to constants from ``<linux/fscrypt.h>`` which identify the 598 encryption modes to use. If unsure, use FSCRYPT_MODE_AES_256_XTS 599 (1) for ``contents_encryption_mode`` and FSCRYPT_MODE_AES_256_CTS 600 (4) for ``filenames_encryption_mode``. For details, see `Encryption 601 modes and usage`_. 602 603 v1 encryption policies only support three combinations of modes: 604 (FSCRYPT_MODE_AES_256_XTS, FSCRYPT_MODE_AES_256_CTS), 605 (FSCRYPT_MODE_AES_128_CBC, FSCRYPT_MODE_AES_128_CTS), and 606 (FSCRYPT_MODE_ADIANTUM, FSCRYPT_MODE_ADIANTUM). v2 policies support 607 all combinations documented in `Supported modes`_. 608 609- ``flags`` contains optional flags from ``<linux/fscrypt.h>``: 610 611 - FSCRYPT_POLICY_FLAGS_PAD_*: The amount of NUL padding to use when 612 encrypting filenames. If unsure, use FSCRYPT_POLICY_FLAGS_PAD_32 613 (0x3). 614 - FSCRYPT_POLICY_FLAG_DIRECT_KEY: See `DIRECT_KEY policies`_. 615 - FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64: See `IV_INO_LBLK_64 616 policies`_. 617 - FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32: See `IV_INO_LBLK_32 618 policies`_. 619 620 v1 encryption policies only support the PAD_* and DIRECT_KEY flags. 621 The other flags are only supported by v2 encryption policies. 622 623 The DIRECT_KEY, IV_INO_LBLK_64, and IV_INO_LBLK_32 flags are 624 mutually exclusive. 625 626- ``log2_data_unit_size`` is the log2 of the data unit size in bytes, 627 or 0 to select the default data unit size. The data unit size is 628 the granularity of file contents encryption. For example, setting 629 ``log2_data_unit_size`` to 12 causes file contents be passed to the 630 underlying encryption algorithm (such as AES-256-XTS) in 4096-byte 631 data units, each with its own IV. 632 633 Not all filesystems support setting ``log2_data_unit_size``. ext4 634 and f2fs support it since Linux v6.7. On filesystems that support 635 it, the supported nonzero values are 9 through the log2 of the 636 filesystem block size, inclusively. The default value of 0 selects 637 the filesystem block size. 638 639 The main use case for ``log2_data_unit_size`` is for selecting a 640 data unit size smaller than the filesystem block size for 641 compatibility with inline encryption hardware that only supports 642 smaller data unit sizes. ``/sys/block/$disk/queue/crypto/`` may be 643 useful for checking which data unit sizes are supported by a 644 particular system's inline encryption hardware. 645 646 Leave this field zeroed unless you are certain you need it. Using 647 an unnecessarily small data unit size reduces performance. 648 649- For v2 encryption policies, ``__reserved`` must be zeroed. 650 651- For v1 encryption policies, ``master_key_descriptor`` specifies how 652 to find the master key in a keyring; see `Adding keys`_. It is up 653 to userspace to choose a unique ``master_key_descriptor`` for each 654 master key. The e4crypt and fscrypt tools use the first 8 bytes of 655 ``SHA-512(SHA-512(master_key))``, but this particular scheme is not 656 required. Also, the master key need not be in the keyring yet when 657 FS_IOC_SET_ENCRYPTION_POLICY is executed. However, it must be added 658 before any files can be created in the encrypted directory. 659 660 For v2 encryption policies, ``master_key_descriptor`` has been 661 replaced with ``master_key_identifier``, which is longer and cannot 662 be arbitrarily chosen. Instead, the key must first be added using 663 `FS_IOC_ADD_ENCRYPTION_KEY`_. Then, the ``key_spec.u.identifier`` 664 the kernel returned in the struct fscrypt_add_key_arg must 665 be used as the ``master_key_identifier`` in 666 struct fscrypt_policy_v2. 667 668If the file is not yet encrypted, then FS_IOC_SET_ENCRYPTION_POLICY 669verifies that the file is an empty directory. If so, the specified 670encryption policy is assigned to the directory, turning it into an 671encrypted directory. After that, and after providing the 672corresponding master key as described in `Adding keys`_, all regular 673files, directories (recursively), and symlinks created in the 674directory will be encrypted, inheriting the same encryption policy. 675The filenames in the directory's entries will be encrypted as well. 676 677Alternatively, if the file is already encrypted, then 678FS_IOC_SET_ENCRYPTION_POLICY validates that the specified encryption 679policy exactly matches the actual one. If they match, then the ioctl 680returns 0. Otherwise, it fails with EEXIST. This works on both 681regular files and directories, including nonempty directories. 682 683When a v2 encryption policy is assigned to a directory, it is also 684required that either the specified key has been added by the current 685user or that the caller has CAP_FOWNER in the initial user namespace. 686(This is needed to prevent a user from encrypting their data with 687another user's key.) The key must remain added while 688FS_IOC_SET_ENCRYPTION_POLICY is executing. However, if the new 689encrypted directory does not need to be accessed immediately, then the 690key can be removed right away afterwards. 691 692Note that the ext4 filesystem does not allow the root directory to be 693encrypted, even if it is empty. Users who want to encrypt an entire 694filesystem with one key should consider using dm-crypt instead. 695 696FS_IOC_SET_ENCRYPTION_POLICY can fail with the following errors: 697 698- ``EACCES``: the file is not owned by the process's uid, nor does the 699 process have the CAP_FOWNER capability in a namespace with the file 700 owner's uid mapped 701- ``EEXIST``: the file is already encrypted with an encryption policy 702 different from the one specified 703- ``EINVAL``: an invalid encryption policy was specified (invalid 704 version, mode(s), or flags; or reserved bits were set); or a v1 705 encryption policy was specified but the directory has the casefold 706 flag enabled (casefolding is incompatible with v1 policies). 707- ``ENOKEY``: a v2 encryption policy was specified, but the key with 708 the specified ``master_key_identifier`` has not been added, nor does 709 the process have the CAP_FOWNER capability in the initial user 710 namespace 711- ``ENOTDIR``: the file is unencrypted and is a regular file, not a 712 directory 713- ``ENOTEMPTY``: the file is unencrypted and is a nonempty directory 714- ``ENOTTY``: this type of filesystem does not implement encryption 715- ``EOPNOTSUPP``: the kernel was not configured with encryption 716 support for filesystems, or the filesystem superblock has not 717 had encryption enabled on it. (For example, to use encryption on an 718 ext4 filesystem, CONFIG_FS_ENCRYPTION must be enabled in the 719 kernel config, and the superblock must have had the "encrypt" 720 feature flag enabled using ``tune2fs -O encrypt`` or ``mkfs.ext4 -O 721 encrypt``.) 722- ``EPERM``: this directory may not be encrypted, e.g. because it is 723 the root directory of an ext4 filesystem 724- ``EROFS``: the filesystem is readonly 725 726Getting an encryption policy 727---------------------------- 728 729Two ioctls are available to get a file's encryption policy: 730 731- `FS_IOC_GET_ENCRYPTION_POLICY_EX`_ 732- `FS_IOC_GET_ENCRYPTION_POLICY`_ 733 734The extended (_EX) version of the ioctl is more general and is 735recommended to use when possible. However, on older kernels only the 736original ioctl is available. Applications should try the extended 737version, and if it fails with ENOTTY fall back to the original 738version. 739 740FS_IOC_GET_ENCRYPTION_POLICY_EX 741~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 742 743The FS_IOC_GET_ENCRYPTION_POLICY_EX ioctl retrieves the encryption 744policy, if any, for a directory or regular file. No additional 745permissions are required beyond the ability to open the file. It 746takes in a pointer to struct fscrypt_get_policy_ex_arg, 747defined as follows:: 748 749 struct fscrypt_get_policy_ex_arg { 750 __u64 policy_size; /* input/output */ 751 union { 752 __u8 version; 753 struct fscrypt_policy_v1 v1; 754 struct fscrypt_policy_v2 v2; 755 } policy; /* output */ 756 }; 757 758The caller must initialize ``policy_size`` to the size available for 759the policy struct, i.e. ``sizeof(arg.policy)``. 760 761On success, the policy struct is returned in ``policy``, and its 762actual size is returned in ``policy_size``. ``policy.version`` should 763be checked to determine the version of policy returned. Note that the 764version code for the "v1" policy is actually 0 (FSCRYPT_POLICY_V1). 765 766FS_IOC_GET_ENCRYPTION_POLICY_EX can fail with the following errors: 767 768- ``EINVAL``: the file is encrypted, but it uses an unrecognized 769 encryption policy version 770- ``ENODATA``: the file is not encrypted 771- ``ENOTTY``: this type of filesystem does not implement encryption, 772 or this kernel is too old to support FS_IOC_GET_ENCRYPTION_POLICY_EX 773 (try FS_IOC_GET_ENCRYPTION_POLICY instead) 774- ``EOPNOTSUPP``: the kernel was not configured with encryption 775 support for this filesystem, or the filesystem superblock has not 776 had encryption enabled on it 777- ``EOVERFLOW``: the file is encrypted and uses a recognized 778 encryption policy version, but the policy struct does not fit into 779 the provided buffer 780 781Note: if you only need to know whether a file is encrypted or not, on 782most filesystems it is also possible to use the FS_IOC_GETFLAGS ioctl 783and check for FS_ENCRYPT_FL, or to use the statx() system call and 784check for STATX_ATTR_ENCRYPTED in stx_attributes. 785 786FS_IOC_GET_ENCRYPTION_POLICY 787~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 788 789The FS_IOC_GET_ENCRYPTION_POLICY ioctl can also retrieve the 790encryption policy, if any, for a directory or regular file. However, 791unlike `FS_IOC_GET_ENCRYPTION_POLICY_EX`_, 792FS_IOC_GET_ENCRYPTION_POLICY only supports the original policy 793version. It takes in a pointer directly to struct fscrypt_policy_v1 794rather than struct fscrypt_get_policy_ex_arg. 795 796The error codes for FS_IOC_GET_ENCRYPTION_POLICY are the same as those 797for FS_IOC_GET_ENCRYPTION_POLICY_EX, except that 798FS_IOC_GET_ENCRYPTION_POLICY also returns ``EINVAL`` if the file is 799encrypted using a newer encryption policy version. 800 801Getting the per-filesystem salt 802------------------------------- 803 804Some filesystems, such as ext4 and F2FS, also support the deprecated 805ioctl FS_IOC_GET_ENCRYPTION_PWSALT. This ioctl retrieves a randomly 806generated 16-byte value stored in the filesystem superblock. This 807value is intended to used as a salt when deriving an encryption key 808from a passphrase or other low-entropy user credential. 809 810FS_IOC_GET_ENCRYPTION_PWSALT is deprecated. Instead, prefer to 811generate and manage any needed salt(s) in userspace. 812 813Getting a file's encryption nonce 814--------------------------------- 815 816Since Linux v5.7, the ioctl FS_IOC_GET_ENCRYPTION_NONCE is supported. 817On encrypted files and directories it gets the inode's 16-byte nonce. 818On unencrypted files and directories, it fails with ENODATA. 819 820This ioctl can be useful for automated tests which verify that the 821encryption is being done correctly. It is not needed for normal use 822of fscrypt. 823 824Adding keys 825----------- 826 827FS_IOC_ADD_ENCRYPTION_KEY 828~~~~~~~~~~~~~~~~~~~~~~~~~ 829 830The FS_IOC_ADD_ENCRYPTION_KEY ioctl adds a master encryption key to 831the filesystem, making all files on the filesystem which were 832encrypted using that key appear "unlocked", i.e. in plaintext form. 833It can be executed on any file or directory on the target filesystem, 834but using the filesystem's root directory is recommended. It takes in 835a pointer to struct fscrypt_add_key_arg, defined as follows:: 836 837 struct fscrypt_add_key_arg { 838 struct fscrypt_key_specifier key_spec; 839 __u32 raw_size; 840 __u32 key_id; 841 __u32 __reserved[8]; 842 __u8 raw[]; 843 }; 844 845 #define FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR 1 846 #define FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER 2 847 848 struct fscrypt_key_specifier { 849 __u32 type; /* one of FSCRYPT_KEY_SPEC_TYPE_* */ 850 __u32 __reserved; 851 union { 852 __u8 __reserved[32]; /* reserve some extra space */ 853 __u8 descriptor[FSCRYPT_KEY_DESCRIPTOR_SIZE]; 854 __u8 identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]; 855 } u; 856 }; 857 858 struct fscrypt_provisioning_key_payload { 859 __u32 type; 860 __u32 __reserved; 861 __u8 raw[]; 862 }; 863 864struct fscrypt_add_key_arg must be zeroed, then initialized 865as follows: 866 867- If the key is being added for use by v1 encryption policies, then 868 ``key_spec.type`` must contain FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR, and 869 ``key_spec.u.descriptor`` must contain the descriptor of the key 870 being added, corresponding to the value in the 871 ``master_key_descriptor`` field of struct fscrypt_policy_v1. 872 To add this type of key, the calling process must have the 873 CAP_SYS_ADMIN capability in the initial user namespace. 874 875 Alternatively, if the key is being added for use by v2 encryption 876 policies, then ``key_spec.type`` must contain 877 FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER, and ``key_spec.u.identifier`` is 878 an *output* field which the kernel fills in with a cryptographic 879 hash of the key. To add this type of key, the calling process does 880 not need any privileges. However, the number of keys that can be 881 added is limited by the user's quota for the keyrings service (see 882 ``Documentation/security/keys/core.rst``). 883 884- ``raw_size`` must be the size of the ``raw`` key provided, in bytes. 885 Alternatively, if ``key_id`` is nonzero, this field must be 0, since 886 in that case the size is implied by the specified Linux keyring key. 887 888- ``key_id`` is 0 if the raw key is given directly in the ``raw`` 889 field. Otherwise ``key_id`` is the ID of a Linux keyring key of 890 type "fscrypt-provisioning" whose payload is 891 struct fscrypt_provisioning_key_payload whose ``raw`` field contains 892 the raw key and whose ``type`` field matches ``key_spec.type``. 893 Since ``raw`` is variable-length, the total size of this key's 894 payload must be ``sizeof(struct fscrypt_provisioning_key_payload)`` 895 plus the raw key size. The process must have Search permission on 896 this key. 897 898 Most users should leave this 0 and specify the raw key directly. 899 The support for specifying a Linux keyring key is intended mainly to 900 allow re-adding keys after a filesystem is unmounted and re-mounted, 901 without having to store the raw keys in userspace memory. 902 903- ``raw`` is a variable-length field which must contain the actual 904 key, ``raw_size`` bytes long. Alternatively, if ``key_id`` is 905 nonzero, then this field is unused. 906 907For v2 policy keys, the kernel keeps track of which user (identified 908by effective user ID) added the key, and only allows the key to be 909removed by that user --- or by "root", if they use 910`FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS`_. 911 912However, if another user has added the key, it may be desirable to 913prevent that other user from unexpectedly removing it. Therefore, 914FS_IOC_ADD_ENCRYPTION_KEY may also be used to add a v2 policy key 915*again*, even if it's already added by other user(s). In this case, 916FS_IOC_ADD_ENCRYPTION_KEY will just install a claim to the key for the 917current user, rather than actually add the key again (but the raw key 918must still be provided, as a proof of knowledge). 919 920FS_IOC_ADD_ENCRYPTION_KEY returns 0 if either the key or a claim to 921the key was either added or already exists. 922 923FS_IOC_ADD_ENCRYPTION_KEY can fail with the following errors: 924 925- ``EACCES``: FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR was specified, but the 926 caller does not have the CAP_SYS_ADMIN capability in the initial 927 user namespace; or the raw key was specified by Linux key ID but the 928 process lacks Search permission on the key. 929- ``EDQUOT``: the key quota for this user would be exceeded by adding 930 the key 931- ``EINVAL``: invalid key size or key specifier type, or reserved bits 932 were set 933- ``EKEYREJECTED``: the raw key was specified by Linux key ID, but the 934 key has the wrong type 935- ``ENOKEY``: the raw key was specified by Linux key ID, but no key 936 exists with that ID 937- ``ENOTTY``: this type of filesystem does not implement encryption 938- ``EOPNOTSUPP``: the kernel was not configured with encryption 939 support for this filesystem, or the filesystem superblock has not 940 had encryption enabled on it 941 942Legacy method 943~~~~~~~~~~~~~ 944 945For v1 encryption policies, a master encryption key can also be 946provided by adding it to a process-subscribed keyring, e.g. to a 947session keyring, or to a user keyring if the user keyring is linked 948into the session keyring. 949 950This method is deprecated (and not supported for v2 encryption 951policies) for several reasons. First, it cannot be used in 952combination with FS_IOC_REMOVE_ENCRYPTION_KEY (see `Removing keys`_), 953so for removing a key a workaround such as keyctl_unlink() in 954combination with ``sync; echo 2 > /proc/sys/vm/drop_caches`` would 955have to be used. Second, it doesn't match the fact that the 956locked/unlocked status of encrypted files (i.e. whether they appear to 957be in plaintext form or in ciphertext form) is global. This mismatch 958has caused much confusion as well as real problems when processes 959running under different UIDs, such as a ``sudo`` command, need to 960access encrypted files. 961 962Nevertheless, to add a key to one of the process-subscribed keyrings, 963the add_key() system call can be used (see: 964``Documentation/security/keys/core.rst``). The key type must be 965"logon"; keys of this type are kept in kernel memory and cannot be 966read back by userspace. The key description must be "fscrypt:" 967followed by the 16-character lower case hex representation of the 968``master_key_descriptor`` that was set in the encryption policy. The 969key payload must conform to the following structure:: 970 971 #define FSCRYPT_MAX_KEY_SIZE 64 972 973 struct fscrypt_key { 974 __u32 mode; 975 __u8 raw[FSCRYPT_MAX_KEY_SIZE]; 976 __u32 size; 977 }; 978 979``mode`` is ignored; just set it to 0. The actual key is provided in 980``raw`` with ``size`` indicating its size in bytes. That is, the 981bytes ``raw[0..size-1]`` (inclusive) are the actual key. 982 983The key description prefix "fscrypt:" may alternatively be replaced 984with a filesystem-specific prefix such as "ext4:". However, the 985filesystem-specific prefixes are deprecated and should not be used in 986new programs. 987 988Removing keys 989------------- 990 991Two ioctls are available for removing a key that was added by 992`FS_IOC_ADD_ENCRYPTION_KEY`_: 993 994- `FS_IOC_REMOVE_ENCRYPTION_KEY`_ 995- `FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS`_ 996 997These two ioctls differ only in cases where v2 policy keys are added 998or removed by non-root users. 999 1000These ioctls don't work on keys that were added via the legacy 1001process-subscribed keyrings mechanism. 1002 1003Before using these ioctls, read the `Kernel memory compromise`_ 1004section for a discussion of the security goals and limitations of 1005these ioctls. 1006 1007FS_IOC_REMOVE_ENCRYPTION_KEY 1008~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1009 1010The FS_IOC_REMOVE_ENCRYPTION_KEY ioctl removes a claim to a master 1011encryption key from the filesystem, and possibly removes the key 1012itself. It can be executed on any file or directory on the target 1013filesystem, but using the filesystem's root directory is recommended. 1014It takes in a pointer to struct fscrypt_remove_key_arg, defined 1015as follows:: 1016 1017 struct fscrypt_remove_key_arg { 1018 struct fscrypt_key_specifier key_spec; 1019 #define FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY 0x00000001 1020 #define FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS 0x00000002 1021 __u32 removal_status_flags; /* output */ 1022 __u32 __reserved[5]; 1023 }; 1024 1025This structure must be zeroed, then initialized as follows: 1026 1027- The key to remove is specified by ``key_spec``: 1028 1029 - To remove a key used by v1 encryption policies, set 1030 ``key_spec.type`` to FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR and fill 1031 in ``key_spec.u.descriptor``. To remove this type of key, the 1032 calling process must have the CAP_SYS_ADMIN capability in the 1033 initial user namespace. 1034 1035 - To remove a key used by v2 encryption policies, set 1036 ``key_spec.type`` to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER and fill 1037 in ``key_spec.u.identifier``. 1038 1039For v2 policy keys, this ioctl is usable by non-root users. However, 1040to make this possible, it actually just removes the current user's 1041claim to the key, undoing a single call to FS_IOC_ADD_ENCRYPTION_KEY. 1042Only after all claims are removed is the key really removed. 1043 1044For example, if FS_IOC_ADD_ENCRYPTION_KEY was called with uid 1000, 1045then the key will be "claimed" by uid 1000, and 1046FS_IOC_REMOVE_ENCRYPTION_KEY will only succeed as uid 1000. Or, if 1047both uids 1000 and 2000 added the key, then for each uid 1048FS_IOC_REMOVE_ENCRYPTION_KEY will only remove their own claim. Only 1049once *both* are removed is the key really removed. (Think of it like 1050unlinking a file that may have hard links.) 1051 1052If FS_IOC_REMOVE_ENCRYPTION_KEY really removes the key, it will also 1053try to "lock" all files that had been unlocked with the key. It won't 1054lock files that are still in-use, so this ioctl is expected to be used 1055in cooperation with userspace ensuring that none of the files are 1056still open. However, if necessary, this ioctl can be executed again 1057later to retry locking any remaining files. 1058 1059FS_IOC_REMOVE_ENCRYPTION_KEY returns 0 if either the key was removed 1060(but may still have files remaining to be locked), the user's claim to 1061the key was removed, or the key was already removed but had files 1062remaining to be the locked so the ioctl retried locking them. In any 1063of these cases, ``removal_status_flags`` is filled in with the 1064following informational status flags: 1065 1066- ``FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY``: set if some file(s) 1067 are still in-use. Not guaranteed to be set in the case where only 1068 the user's claim to the key was removed. 1069- ``FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS``: set if only the 1070 user's claim to the key was removed, not the key itself 1071 1072FS_IOC_REMOVE_ENCRYPTION_KEY can fail with the following errors: 1073 1074- ``EACCES``: The FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR key specifier type 1075 was specified, but the caller does not have the CAP_SYS_ADMIN 1076 capability in the initial user namespace 1077- ``EINVAL``: invalid key specifier type, or reserved bits were set 1078- ``ENOKEY``: the key object was not found at all, i.e. it was never 1079 added in the first place or was already fully removed including all 1080 files locked; or, the user does not have a claim to the key (but 1081 someone else does). 1082- ``ENOTTY``: this type of filesystem does not implement encryption 1083- ``EOPNOTSUPP``: the kernel was not configured with encryption 1084 support for this filesystem, or the filesystem superblock has not 1085 had encryption enabled on it 1086 1087FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS 1088~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1089 1090FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS is exactly the same as 1091`FS_IOC_REMOVE_ENCRYPTION_KEY`_, except that for v2 policy keys, the 1092ALL_USERS version of the ioctl will remove all users' claims to the 1093key, not just the current user's. I.e., the key itself will always be 1094removed, no matter how many users have added it. This difference is 1095only meaningful if non-root users are adding and removing keys. 1096 1097Because of this, FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS also requires 1098"root", namely the CAP_SYS_ADMIN capability in the initial user 1099namespace. Otherwise it will fail with EACCES. 1100 1101Getting key status 1102------------------ 1103 1104FS_IOC_GET_ENCRYPTION_KEY_STATUS 1105~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1106 1107The FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl retrieves the status of a 1108master encryption key. It can be executed on any file or directory on 1109the target filesystem, but using the filesystem's root directory is 1110recommended. It takes in a pointer to 1111struct fscrypt_get_key_status_arg, defined as follows:: 1112 1113 struct fscrypt_get_key_status_arg { 1114 /* input */ 1115 struct fscrypt_key_specifier key_spec; 1116 __u32 __reserved[6]; 1117 1118 /* output */ 1119 #define FSCRYPT_KEY_STATUS_ABSENT 1 1120 #define FSCRYPT_KEY_STATUS_PRESENT 2 1121 #define FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED 3 1122 __u32 status; 1123 #define FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF 0x00000001 1124 __u32 status_flags; 1125 __u32 user_count; 1126 __u32 __out_reserved[13]; 1127 }; 1128 1129The caller must zero all input fields, then fill in ``key_spec``: 1130 1131 - To get the status of a key for v1 encryption policies, set 1132 ``key_spec.type`` to FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR and fill 1133 in ``key_spec.u.descriptor``. 1134 1135 - To get the status of a key for v2 encryption policies, set 1136 ``key_spec.type`` to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER and fill 1137 in ``key_spec.u.identifier``. 1138 1139On success, 0 is returned and the kernel fills in the output fields: 1140 1141- ``status`` indicates whether the key is absent, present, or 1142 incompletely removed. Incompletely removed means that removal has 1143 been initiated, but some files are still in use; i.e., 1144 `FS_IOC_REMOVE_ENCRYPTION_KEY`_ returned 0 but set the informational 1145 status flag FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY. 1146 1147- ``status_flags`` can contain the following flags: 1148 1149 - ``FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF`` indicates that the key 1150 has added by the current user. This is only set for keys 1151 identified by ``identifier`` rather than by ``descriptor``. 1152 1153- ``user_count`` specifies the number of users who have added the key. 1154 This is only set for keys identified by ``identifier`` rather than 1155 by ``descriptor``. 1156 1157FS_IOC_GET_ENCRYPTION_KEY_STATUS can fail with the following errors: 1158 1159- ``EINVAL``: invalid key specifier type, or reserved bits were set 1160- ``ENOTTY``: this type of filesystem does not implement encryption 1161- ``EOPNOTSUPP``: the kernel was not configured with encryption 1162 support for this filesystem, or the filesystem superblock has not 1163 had encryption enabled on it 1164 1165Among other use cases, FS_IOC_GET_ENCRYPTION_KEY_STATUS can be useful 1166for determining whether the key for a given encrypted directory needs 1167to be added before prompting the user for the passphrase needed to 1168derive the key. 1169 1170FS_IOC_GET_ENCRYPTION_KEY_STATUS can only get the status of keys in 1171the filesystem-level keyring, i.e. the keyring managed by 1172`FS_IOC_ADD_ENCRYPTION_KEY`_ and `FS_IOC_REMOVE_ENCRYPTION_KEY`_. It 1173cannot get the status of a key that has only been added for use by v1 1174encryption policies using the legacy mechanism involving 1175process-subscribed keyrings. 1176 1177Access semantics 1178================ 1179 1180With the key 1181------------ 1182 1183With the encryption key, encrypted regular files, directories, and 1184symlinks behave very similarly to their unencrypted counterparts --- 1185after all, the encryption is intended to be transparent. However, 1186astute users may notice some differences in behavior: 1187 1188- Unencrypted files, or files encrypted with a different encryption 1189 policy (i.e. different key, modes, or flags), cannot be renamed or 1190 linked into an encrypted directory; see `Encryption policy 1191 enforcement`_. Attempts to do so will fail with EXDEV. However, 1192 encrypted files can be renamed within an encrypted directory, or 1193 into an unencrypted directory. 1194 1195 Note: "moving" an unencrypted file into an encrypted directory, e.g. 1196 with the `mv` program, is implemented in userspace by a copy 1197 followed by a delete. Be aware that the original unencrypted data 1198 may remain recoverable from free space on the disk; prefer to keep 1199 all files encrypted from the very beginning. The `shred` program 1200 may be used to overwrite the source files but isn't guaranteed to be 1201 effective on all filesystems and storage devices. 1202 1203- Direct I/O is supported on encrypted files only under some 1204 circumstances. For details, see `Direct I/O support`_. 1205 1206- The fallocate operations FALLOC_FL_COLLAPSE_RANGE and 1207 FALLOC_FL_INSERT_RANGE are not supported on encrypted files and will 1208 fail with EOPNOTSUPP. 1209 1210- Online defragmentation of encrypted files is not supported. The 1211 EXT4_IOC_MOVE_EXT and F2FS_IOC_MOVE_RANGE ioctls will fail with 1212 EOPNOTSUPP. 1213 1214- The ext4 filesystem does not support data journaling with encrypted 1215 regular files. It will fall back to ordered data mode instead. 1216 1217- DAX (Direct Access) is not supported on encrypted files. 1218 1219- The maximum length of an encrypted symlink is 2 bytes shorter than 1220 the maximum length of an unencrypted symlink. For example, on an 1221 EXT4 filesystem with a 4K block size, unencrypted symlinks can be up 1222 to 4095 bytes long, while encrypted symlinks can only be up to 4093 1223 bytes long (both lengths excluding the terminating null). 1224 1225Note that mmap *is* supported. This is possible because the pagecache 1226for an encrypted file contains the plaintext, not the ciphertext. 1227 1228Without the key 1229--------------- 1230 1231Some filesystem operations may be performed on encrypted regular 1232files, directories, and symlinks even before their encryption key has 1233been added, or after their encryption key has been removed: 1234 1235- File metadata may be read, e.g. using stat(). 1236 1237- Directories may be listed, in which case the filenames will be 1238 listed in an encoded form derived from their ciphertext. The 1239 current encoding algorithm is described in `Filename hashing and 1240 encoding`_. The algorithm is subject to change, but it is 1241 guaranteed that the presented filenames will be no longer than 1242 NAME_MAX bytes, will not contain the ``/`` or ``\0`` characters, and 1243 will uniquely identify directory entries. 1244 1245 The ``.`` and ``..`` directory entries are special. They are always 1246 present and are not encrypted or encoded. 1247 1248- Files may be deleted. That is, nondirectory files may be deleted 1249 with unlink() as usual, and empty directories may be deleted with 1250 rmdir() as usual. Therefore, ``rm`` and ``rm -r`` will work as 1251 expected. 1252 1253- Symlink targets may be read and followed, but they will be presented 1254 in encrypted form, similar to filenames in directories. Hence, they 1255 are unlikely to point to anywhere useful. 1256 1257Without the key, regular files cannot be opened or truncated. 1258Attempts to do so will fail with ENOKEY. This implies that any 1259regular file operations that require a file descriptor, such as 1260read(), write(), mmap(), fallocate(), and ioctl(), are also forbidden. 1261 1262Also without the key, files of any type (including directories) cannot 1263be created or linked into an encrypted directory, nor can a name in an 1264encrypted directory be the source or target of a rename, nor can an 1265O_TMPFILE temporary file be created in an encrypted directory. All 1266such operations will fail with ENOKEY. 1267 1268It is not currently possible to backup and restore encrypted files 1269without the encryption key. This would require special APIs which 1270have not yet been implemented. 1271 1272Encryption policy enforcement 1273============================= 1274 1275After an encryption policy has been set on a directory, all regular 1276files, directories, and symbolic links created in that directory 1277(recursively) will inherit that encryption policy. Special files --- 1278that is, named pipes, device nodes, and UNIX domain sockets --- will 1279not be encrypted. 1280 1281Except for those special files, it is forbidden to have unencrypted 1282files, or files encrypted with a different encryption policy, in an 1283encrypted directory tree. Attempts to link or rename such a file into 1284an encrypted directory will fail with EXDEV. This is also enforced 1285during ->lookup() to provide limited protection against offline 1286attacks that try to disable or downgrade encryption in known locations 1287where applications may later write sensitive data. It is recommended 1288that systems implementing a form of "verified boot" take advantage of 1289this by validating all top-level encryption policies prior to access. 1290 1291Inline encryption support 1292========================= 1293 1294Many newer systems (especially mobile SoCs) have *inline encryption 1295hardware* that can encrypt/decrypt data while it is on its way to/from 1296the storage device. Linux supports inline encryption through a set of 1297extensions to the block layer called *blk-crypto*. blk-crypto allows 1298filesystems to attach encryption contexts to bios (I/O requests) to 1299specify how the data will be encrypted or decrypted in-line. For more 1300information about blk-crypto, see 1301:ref:`Documentation/block/inline-encryption.rst <inline_encryption>`. 1302 1303On supported filesystems (currently ext4 and f2fs), fscrypt can use 1304blk-crypto instead of the kernel crypto API to encrypt/decrypt file 1305contents. To enable this, set CONFIG_FS_ENCRYPTION_INLINE_CRYPT=y in 1306the kernel configuration, and specify the "inlinecrypt" mount option 1307when mounting the filesystem. 1308 1309Note that the "inlinecrypt" mount option just specifies to use inline 1310encryption when possible; it doesn't force its use. fscrypt will 1311still fall back to using the kernel crypto API on files where the 1312inline encryption hardware doesn't have the needed crypto capabilities 1313(e.g. support for the needed encryption algorithm and data unit size) 1314and where blk-crypto-fallback is unusable. (For blk-crypto-fallback 1315to be usable, it must be enabled in the kernel configuration with 1316CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y.) 1317 1318Currently fscrypt always uses the filesystem block size (which is 1319usually 4096 bytes) as the data unit size. Therefore, it can only use 1320inline encryption hardware that supports that data unit size. 1321 1322Inline encryption doesn't affect the ciphertext or other aspects of 1323the on-disk format, so users may freely switch back and forth between 1324using "inlinecrypt" and not using "inlinecrypt". 1325 1326Direct I/O support 1327================== 1328 1329For direct I/O on an encrypted file to work, the following conditions 1330must be met (in addition to the conditions for direct I/O on an 1331unencrypted file): 1332 1333* The file must be using inline encryption. Usually this means that 1334 the filesystem must be mounted with ``-o inlinecrypt`` and inline 1335 encryption hardware must be present. However, a software fallback 1336 is also available. For details, see `Inline encryption support`_. 1337 1338* The I/O request must be fully aligned to the filesystem block size. 1339 This means that the file position the I/O is targeting, the lengths 1340 of all I/O segments, and the memory addresses of all I/O buffers 1341 must be multiples of this value. Note that the filesystem block 1342 size may be greater than the logical block size of the block device. 1343 1344If either of the above conditions is not met, then direct I/O on the 1345encrypted file will fall back to buffered I/O. 1346 1347Implementation details 1348====================== 1349 1350Encryption context 1351------------------ 1352 1353An encryption policy is represented on-disk by 1354struct fscrypt_context_v1 or struct fscrypt_context_v2. It is up to 1355individual filesystems to decide where to store it, but normally it 1356would be stored in a hidden extended attribute. It should *not* be 1357exposed by the xattr-related system calls such as getxattr() and 1358setxattr() because of the special semantics of the encryption xattr. 1359(In particular, there would be much confusion if an encryption policy 1360were to be added to or removed from anything other than an empty 1361directory.) These structs are defined as follows:: 1362 1363 #define FSCRYPT_FILE_NONCE_SIZE 16 1364 1365 #define FSCRYPT_KEY_DESCRIPTOR_SIZE 8 1366 struct fscrypt_context_v1 { 1367 u8 version; 1368 u8 contents_encryption_mode; 1369 u8 filenames_encryption_mode; 1370 u8 flags; 1371 u8 master_key_descriptor[FSCRYPT_KEY_DESCRIPTOR_SIZE]; 1372 u8 nonce[FSCRYPT_FILE_NONCE_SIZE]; 1373 }; 1374 1375 #define FSCRYPT_KEY_IDENTIFIER_SIZE 16 1376 struct fscrypt_context_v2 { 1377 u8 version; 1378 u8 contents_encryption_mode; 1379 u8 filenames_encryption_mode; 1380 u8 flags; 1381 u8 log2_data_unit_size; 1382 u8 __reserved[3]; 1383 u8 master_key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]; 1384 u8 nonce[FSCRYPT_FILE_NONCE_SIZE]; 1385 }; 1386 1387The context structs contain the same information as the corresponding 1388policy structs (see `Setting an encryption policy`_), except that the 1389context structs also contain a nonce. The nonce is randomly generated 1390by the kernel and is used as KDF input or as a tweak to cause 1391different files to be encrypted differently; see `Per-file encryption 1392keys`_ and `DIRECT_KEY policies`_. 1393 1394Data path changes 1395----------------- 1396 1397When inline encryption is used, filesystems just need to associate 1398encryption contexts with bios to specify how the block layer or the 1399inline encryption hardware will encrypt/decrypt the file contents. 1400 1401When inline encryption isn't used, filesystems must encrypt/decrypt 1402the file contents themselves, as described below: 1403 1404For the read path (->read_folio()) of regular files, filesystems can 1405read the ciphertext into the page cache and decrypt it in-place. The 1406folio lock must be held until decryption has finished, to prevent the 1407folio from becoming visible to userspace prematurely. 1408 1409For the write path (->writepage()) of regular files, filesystems 1410cannot encrypt data in-place in the page cache, since the cached 1411plaintext must be preserved. Instead, filesystems must encrypt into a 1412temporary buffer or "bounce page", then write out the temporary 1413buffer. Some filesystems, such as UBIFS, already use temporary 1414buffers regardless of encryption. Other filesystems, such as ext4 and 1415F2FS, have to allocate bounce pages specially for encryption. 1416 1417Filename hashing and encoding 1418----------------------------- 1419 1420Modern filesystems accelerate directory lookups by using indexed 1421directories. An indexed directory is organized as a tree keyed by 1422filename hashes. When a ->lookup() is requested, the filesystem 1423normally hashes the filename being looked up so that it can quickly 1424find the corresponding directory entry, if any. 1425 1426With encryption, lookups must be supported and efficient both with and 1427without the encryption key. Clearly, it would not work to hash the 1428plaintext filenames, since the plaintext filenames are unavailable 1429without the key. (Hashing the plaintext filenames would also make it 1430impossible for the filesystem's fsck tool to optimize encrypted 1431directories.) Instead, filesystems hash the ciphertext filenames, 1432i.e. the bytes actually stored on-disk in the directory entries. When 1433asked to do a ->lookup() with the key, the filesystem just encrypts 1434the user-supplied name to get the ciphertext. 1435 1436Lookups without the key are more complicated. The raw ciphertext may 1437contain the ``\0`` and ``/`` characters, which are illegal in 1438filenames. Therefore, readdir() must base64url-encode the ciphertext 1439for presentation. For most filenames, this works fine; on ->lookup(), 1440the filesystem just base64url-decodes the user-supplied name to get 1441back to the raw ciphertext. 1442 1443However, for very long filenames, base64url encoding would cause the 1444filename length to exceed NAME_MAX. To prevent this, readdir() 1445actually presents long filenames in an abbreviated form which encodes 1446a strong "hash" of the ciphertext filename, along with the optional 1447filesystem-specific hash(es) needed for directory lookups. This 1448allows the filesystem to still, with a high degree of confidence, map 1449the filename given in ->lookup() back to a particular directory entry 1450that was previously listed by readdir(). See 1451struct fscrypt_nokey_name in the source for more details. 1452 1453Note that the precise way that filenames are presented to userspace 1454without the key is subject to change in the future. It is only meant 1455as a way to temporarily present valid filenames so that commands like 1456``rm -r`` work as expected on encrypted directories. 1457 1458Tests 1459===== 1460 1461To test fscrypt, use xfstests, which is Linux's de facto standard 1462filesystem test suite. First, run all the tests in the "encrypt" 1463group on the relevant filesystem(s). One can also run the tests 1464with the 'inlinecrypt' mount option to test the implementation for 1465inline encryption support. For example, to test ext4 and 1466f2fs encryption using `kvm-xfstests 1467<https://github.com/tytso/xfstests-bld/blob/master/Documentation/kvm-quickstart.md>`_:: 1468 1469 kvm-xfstests -c ext4,f2fs -g encrypt 1470 kvm-xfstests -c ext4,f2fs -g encrypt -m inlinecrypt 1471 1472UBIFS encryption can also be tested this way, but it should be done in 1473a separate command, and it takes some time for kvm-xfstests to set up 1474emulated UBI volumes:: 1475 1476 kvm-xfstests -c ubifs -g encrypt 1477 1478No tests should fail. However, tests that use non-default encryption 1479modes (e.g. generic/549 and generic/550) will be skipped if the needed 1480algorithms were not built into the kernel's crypto API. Also, tests 1481that access the raw block device (e.g. generic/399, generic/548, 1482generic/549, generic/550) will be skipped on UBIFS. 1483 1484Besides running the "encrypt" group tests, for ext4 and f2fs it's also 1485possible to run most xfstests with the "test_dummy_encryption" mount 1486option. This option causes all new files to be automatically 1487encrypted with a dummy key, without having to make any API calls. 1488This tests the encrypted I/O paths more thoroughly. To do this with 1489kvm-xfstests, use the "encrypt" filesystem configuration:: 1490 1491 kvm-xfstests -c ext4/encrypt,f2fs/encrypt -g auto 1492 kvm-xfstests -c ext4/encrypt,f2fs/encrypt -g auto -m inlinecrypt 1493 1494Because this runs many more tests than "-g encrypt" does, it takes 1495much longer to run; so also consider using `gce-xfstests 1496<https://github.com/tytso/xfstests-bld/blob/master/Documentation/gce-xfstests.md>`_ 1497instead of kvm-xfstests:: 1498 1499 gce-xfstests -c ext4/encrypt,f2fs/encrypt -g auto 1500 gce-xfstests -c ext4/encrypt,f2fs/encrypt -g auto -m inlinecrypt 1501