16ff2deb2SEric Biggers.. SPDX-License-Identifier: GPL-2.0
26ff2deb2SEric Biggers
36ff2deb2SEric Biggers.. _fsverity:
46ff2deb2SEric Biggers
56ff2deb2SEric Biggers=======================================================
66ff2deb2SEric Biggersfs-verity: read-only file-based authenticity protection
76ff2deb2SEric Biggers=======================================================
86ff2deb2SEric Biggers
96ff2deb2SEric BiggersIntroduction
106ff2deb2SEric Biggers============
116ff2deb2SEric Biggers
126ff2deb2SEric Biggersfs-verity (``fs/verity/``) is a support layer that filesystems can
136ff2deb2SEric Biggershook into to support transparent integrity and authenticity protection
146ff2deb2SEric Biggersof read-only files.  Currently, it is supported by the ext4 and f2fs
156ff2deb2SEric Biggersfilesystems.  Like fscrypt, not too much filesystem-specific code is
166ff2deb2SEric Biggersneeded to support fs-verity.
176ff2deb2SEric Biggers
186ff2deb2SEric Biggersfs-verity is similar to `dm-verity
196ff2deb2SEric Biggers<https://www.kernel.org/doc/Documentation/device-mapper/verity.txt>`_
206ff2deb2SEric Biggersbut works on files rather than block devices.  On regular files on
216ff2deb2SEric Biggersfilesystems supporting fs-verity, userspace can execute an ioctl that
226ff2deb2SEric Biggerscauses the filesystem to build a Merkle tree for the file and persist
236ff2deb2SEric Biggersit to a filesystem-specific location associated with the file.
246ff2deb2SEric Biggers
256ff2deb2SEric BiggersAfter this, the file is made readonly, and all reads from the file are
266ff2deb2SEric Biggersautomatically verified against the file's Merkle tree.  Reads of any
276ff2deb2SEric Biggerscorrupted data, including mmap reads, will fail.
286ff2deb2SEric Biggers
296ff2deb2SEric BiggersUserspace can use another ioctl to retrieve the root hash (actually
306ff2deb2SEric Biggersthe "file measurement", which is a hash that includes the root hash)
316ff2deb2SEric Biggersthat fs-verity is enforcing for the file.  This ioctl executes in
326ff2deb2SEric Biggersconstant time, regardless of the file size.
336ff2deb2SEric Biggers
346ff2deb2SEric Biggersfs-verity is essentially a way to hash a file in constant time,
356ff2deb2SEric Biggerssubject to the caveat that reads which would violate the hash will
366ff2deb2SEric Biggersfail at runtime.
376ff2deb2SEric Biggers
386ff2deb2SEric BiggersUse cases
396ff2deb2SEric Biggers=========
406ff2deb2SEric Biggers
416ff2deb2SEric BiggersBy itself, the base fs-verity feature only provides integrity
426ff2deb2SEric Biggersprotection, i.e. detection of accidental (non-malicious) corruption.
436ff2deb2SEric Biggers
446ff2deb2SEric BiggersHowever, because fs-verity makes retrieving the file hash extremely
456ff2deb2SEric Biggersefficient, it's primarily meant to be used as a tool to support
466ff2deb2SEric Biggersauthentication (detection of malicious modifications) or auditing
476ff2deb2SEric Biggers(logging file hashes before use).
486ff2deb2SEric Biggers
496ff2deb2SEric BiggersTrusted userspace code (e.g. operating system code running on a
506ff2deb2SEric Biggersread-only partition that is itself authenticated by dm-verity) can
516ff2deb2SEric Biggersauthenticate the contents of an fs-verity file by using the
526ff2deb2SEric Biggers`FS_IOC_MEASURE_VERITY`_ ioctl to retrieve its hash, then verifying a
536ff2deb2SEric Biggersdigital signature of it.
546ff2deb2SEric Biggers
556ff2deb2SEric BiggersA standard file hash could be used instead of fs-verity.  However,
566ff2deb2SEric Biggersthis is inefficient if the file is large and only a small portion may
576ff2deb2SEric Biggersbe accessed.  This is often the case for Android application package
586ff2deb2SEric Biggers(APK) files, for example.  These typically contain many translations,
596ff2deb2SEric Biggersclasses, and other resources that are infrequently or even never
606ff2deb2SEric Biggersaccessed on a particular device.  It would be slow and wasteful to
616ff2deb2SEric Biggersread and hash the entire file before starting the application.
626ff2deb2SEric Biggers
636ff2deb2SEric BiggersUnlike an ahead-of-time hash, fs-verity also re-verifies data each
646ff2deb2SEric Biggerstime it's paged in.  This ensures that malicious disk firmware can't
656ff2deb2SEric Biggersundetectably change the contents of the file at runtime.
666ff2deb2SEric Biggers
676ff2deb2SEric Biggersfs-verity does not replace or obsolete dm-verity.  dm-verity should
686ff2deb2SEric Biggersstill be used on read-only filesystems.  fs-verity is for files that
696ff2deb2SEric Biggersmust live on a read-write filesystem because they are independently
706ff2deb2SEric Biggersupdated and potentially user-installed, so dm-verity cannot be used.
716ff2deb2SEric Biggers
726ff2deb2SEric BiggersThe base fs-verity feature is a hashing mechanism only; actually
736ff2deb2SEric Biggersauthenticating the files is up to userspace.  However, to meet some
746ff2deb2SEric Biggersusers' needs, fs-verity optionally supports a simple signature
756ff2deb2SEric Biggersverification mechanism where users can configure the kernel to require
766ff2deb2SEric Biggersthat all fs-verity files be signed by a key loaded into a keyring; see
776ff2deb2SEric Biggers`Built-in signature verification`_.  Support for fs-verity file hashes
786ff2deb2SEric Biggersin IMA (Integrity Measurement Architecture) policies is also planned.
796ff2deb2SEric Biggers
806ff2deb2SEric BiggersUser API
816ff2deb2SEric Biggers========
826ff2deb2SEric Biggers
836ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY
846ff2deb2SEric Biggers--------------------
856ff2deb2SEric Biggers
866ff2deb2SEric BiggersThe FS_IOC_ENABLE_VERITY ioctl enables fs-verity on a file.  It takes
876ff2deb2SEric Biggersin a pointer to a :c:type:`struct fsverity_enable_arg`, defined as
886ff2deb2SEric Biggersfollows::
896ff2deb2SEric Biggers
906ff2deb2SEric Biggers    struct fsverity_enable_arg {
916ff2deb2SEric Biggers            __u32 version;
926ff2deb2SEric Biggers            __u32 hash_algorithm;
936ff2deb2SEric Biggers            __u32 block_size;
946ff2deb2SEric Biggers            __u32 salt_size;
956ff2deb2SEric Biggers            __u64 salt_ptr;
966ff2deb2SEric Biggers            __u32 sig_size;
976ff2deb2SEric Biggers            __u32 __reserved1;
986ff2deb2SEric Biggers            __u64 sig_ptr;
996ff2deb2SEric Biggers            __u64 __reserved2[11];
1006ff2deb2SEric Biggers    };
1016ff2deb2SEric Biggers
1026ff2deb2SEric BiggersThis structure contains the parameters of the Merkle tree to build for
1036ff2deb2SEric Biggersthe file, and optionally contains a signature.  It must be initialized
1046ff2deb2SEric Biggersas follows:
1056ff2deb2SEric Biggers
1066ff2deb2SEric Biggers- ``version`` must be 1.
1076ff2deb2SEric Biggers- ``hash_algorithm`` must be the identifier for the hash algorithm to
1086ff2deb2SEric Biggers  use for the Merkle tree, such as FS_VERITY_HASH_ALG_SHA256.  See
1096ff2deb2SEric Biggers  ``include/uapi/linux/fsverity.h`` for the list of possible values.
1106ff2deb2SEric Biggers- ``block_size`` must be the Merkle tree block size.  Currently, this
1116ff2deb2SEric Biggers  must be equal to the system page size, which is usually 4096 bytes.
1126ff2deb2SEric Biggers  Other sizes may be supported in the future.  This value is not
1136ff2deb2SEric Biggers  necessarily the same as the filesystem block size.
1146ff2deb2SEric Biggers- ``salt_size`` is the size of the salt in bytes, or 0 if no salt is
1156ff2deb2SEric Biggers  provided.  The salt is a value that is prepended to every hashed
1166ff2deb2SEric Biggers  block; it can be used to personalize the hashing for a particular
1176ff2deb2SEric Biggers  file or device.  Currently the maximum salt size is 32 bytes.
1186ff2deb2SEric Biggers- ``salt_ptr`` is the pointer to the salt, or NULL if no salt is
1196ff2deb2SEric Biggers  provided.
1206ff2deb2SEric Biggers- ``sig_size`` is the size of the signature in bytes, or 0 if no
1216ff2deb2SEric Biggers  signature is provided.  Currently the signature is (somewhat
1226ff2deb2SEric Biggers  arbitrarily) limited to 16128 bytes.  See `Built-in signature
1236ff2deb2SEric Biggers  verification`_ for more information.
1246ff2deb2SEric Biggers- ``sig_ptr``  is the pointer to the signature, or NULL if no
1256ff2deb2SEric Biggers  signature is provided.
1266ff2deb2SEric Biggers- All reserved fields must be zeroed.
1276ff2deb2SEric Biggers
1286ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY causes the filesystem to build a Merkle tree for
1296ff2deb2SEric Biggersthe file and persist it to a filesystem-specific location associated
1306ff2deb2SEric Biggerswith the file, then mark the file as a verity file.  This ioctl may
1316ff2deb2SEric Biggerstake a long time to execute on large files, and it is interruptible by
1326ff2deb2SEric Biggersfatal signals.
1336ff2deb2SEric Biggers
1346ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY checks for write access to the inode.  However,
1356ff2deb2SEric Biggersit must be executed on an O_RDONLY file descriptor and no processes
1366ff2deb2SEric Biggerscan have the file open for writing.  Attempts to open the file for
1376ff2deb2SEric Biggerswriting while this ioctl is executing will fail with ETXTBSY.  (This
1386ff2deb2SEric Biggersis necessary to guarantee that no writable file descriptors will exist
1396ff2deb2SEric Biggersafter verity is enabled, and to guarantee that the file's contents are
1406ff2deb2SEric Biggersstable while the Merkle tree is being built over it.)
1416ff2deb2SEric Biggers
1426ff2deb2SEric BiggersOn success, FS_IOC_ENABLE_VERITY returns 0, and the file becomes a
1436ff2deb2SEric Biggersverity file.  On failure (including the case of interruption by a
1446ff2deb2SEric Biggersfatal signal), no changes are made to the file.
1456ff2deb2SEric Biggers
1466ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY can fail with the following errors:
1476ff2deb2SEric Biggers
1486ff2deb2SEric Biggers- ``EACCES``: the process does not have write access to the file
1496ff2deb2SEric Biggers- ``EBADMSG``: the signature is malformed
1506ff2deb2SEric Biggers- ``EBUSY``: this ioctl is already running on the file
1516ff2deb2SEric Biggers- ``EEXIST``: the file already has verity enabled
1526ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
1536ff2deb2SEric Biggers- ``EINTR``: the operation was interrupted by a fatal signal
1546ff2deb2SEric Biggers- ``EINVAL``: unsupported version, hash algorithm, or block size; or
1556ff2deb2SEric Biggers  reserved bits are set; or the file descriptor refers to neither a
1566ff2deb2SEric Biggers  regular file nor a directory.
1576ff2deb2SEric Biggers- ``EISDIR``: the file descriptor refers to a directory
1586ff2deb2SEric Biggers- ``EKEYREJECTED``: the signature doesn't match the file
1596ff2deb2SEric Biggers- ``EMSGSIZE``: the salt or signature is too long
1606ff2deb2SEric Biggers- ``ENOKEY``: the fs-verity keyring doesn't contain the certificate
1616ff2deb2SEric Biggers  needed to verify the signature
1626ff2deb2SEric Biggers- ``ENOPKG``: fs-verity recognizes the hash algorithm, but it's not
1636ff2deb2SEric Biggers  available in the kernel's crypto API as currently configured (e.g.
1646ff2deb2SEric Biggers  for SHA-512, missing CONFIG_CRYPTO_SHA512).
1656ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
1666ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
1676ff2deb2SEric Biggers  support; or the filesystem superblock has not had the 'verity'
1686ff2deb2SEric Biggers  feature enabled on it; or the filesystem does not support fs-verity
1696ff2deb2SEric Biggers  on this file.  (See `Filesystem support`_.)
1706ff2deb2SEric Biggers- ``EPERM``: the file is append-only; or, a signature is required and
1716ff2deb2SEric Biggers  one was not provided.
1726ff2deb2SEric Biggers- ``EROFS``: the filesystem is read-only
1736ff2deb2SEric Biggers- ``ETXTBSY``: someone has the file open for writing.  This can be the
1746ff2deb2SEric Biggers  caller's file descriptor, another open file descriptor, or the file
1756ff2deb2SEric Biggers  reference held by a writable memory map.
1766ff2deb2SEric Biggers
1776ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY
1786ff2deb2SEric Biggers---------------------
1796ff2deb2SEric Biggers
1806ff2deb2SEric BiggersThe FS_IOC_MEASURE_VERITY ioctl retrieves the measurement of a verity
1816ff2deb2SEric Biggersfile.  The file measurement is a digest that cryptographically
1826ff2deb2SEric Biggersidentifies the file contents that are being enforced on reads.
1836ff2deb2SEric Biggers
1846ff2deb2SEric BiggersThis ioctl takes in a pointer to a variable-length structure::
1856ff2deb2SEric Biggers
1866ff2deb2SEric Biggers    struct fsverity_digest {
1876ff2deb2SEric Biggers            __u16 digest_algorithm;
1886ff2deb2SEric Biggers            __u16 digest_size; /* input/output */
1896ff2deb2SEric Biggers            __u8 digest[];
1906ff2deb2SEric Biggers    };
1916ff2deb2SEric Biggers
1926ff2deb2SEric Biggers``digest_size`` is an input/output field.  On input, it must be
1936ff2deb2SEric Biggersinitialized to the number of bytes allocated for the variable-length
1946ff2deb2SEric Biggers``digest`` field.
1956ff2deb2SEric Biggers
1966ff2deb2SEric BiggersOn success, 0 is returned and the kernel fills in the structure as
1976ff2deb2SEric Biggersfollows:
1986ff2deb2SEric Biggers
1996ff2deb2SEric Biggers- ``digest_algorithm`` will be the hash algorithm used for the file
2006ff2deb2SEric Biggers  measurement.  It will match ``fsverity_enable_arg::hash_algorithm``.
2016ff2deb2SEric Biggers- ``digest_size`` will be the size of the digest in bytes, e.g. 32
2026ff2deb2SEric Biggers  for SHA-256.  (This can be redundant with ``digest_algorithm``.)
2036ff2deb2SEric Biggers- ``digest`` will be the actual bytes of the digest.
2046ff2deb2SEric Biggers
2056ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY is guaranteed to execute in constant time,
2066ff2deb2SEric Biggersregardless of the size of the file.
2076ff2deb2SEric Biggers
2086ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY can fail with the following errors:
2096ff2deb2SEric Biggers
2106ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
2116ff2deb2SEric Biggers- ``ENODATA``: the file is not a verity file
2126ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
2136ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
2146ff2deb2SEric Biggers  support, or the filesystem superblock has not had the 'verity'
2156ff2deb2SEric Biggers  feature enabled on it.  (See `Filesystem support`_.)
2166ff2deb2SEric Biggers- ``EOVERFLOW``: the digest is longer than the specified
2176ff2deb2SEric Biggers  ``digest_size`` bytes.  Try providing a larger buffer.
2186ff2deb2SEric Biggers
2196ff2deb2SEric BiggersFS_IOC_GETFLAGS
2206ff2deb2SEric Biggers---------------
2216ff2deb2SEric Biggers
2226ff2deb2SEric BiggersThe existing ioctl FS_IOC_GETFLAGS (which isn't specific to fs-verity)
2236ff2deb2SEric Biggerscan also be used to check whether a file has fs-verity enabled or not.
2246ff2deb2SEric BiggersTo do so, check for FS_VERITY_FL (0x00100000) in the returned flags.
2256ff2deb2SEric Biggers
2266ff2deb2SEric BiggersThe verity flag is not settable via FS_IOC_SETFLAGS.  You must use
2276ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY instead, since parameters must be provided.
2286ff2deb2SEric Biggers
2296ff2deb2SEric BiggersAccessing verity files
2306ff2deb2SEric Biggers======================
2316ff2deb2SEric Biggers
2326ff2deb2SEric BiggersApplications can transparently access a verity file just like a
2336ff2deb2SEric Biggersnon-verity one, with the following exceptions:
2346ff2deb2SEric Biggers
2356ff2deb2SEric Biggers- Verity files are readonly.  They cannot be opened for writing or
2366ff2deb2SEric Biggers  truncate()d, even if the file mode bits allow it.  Attempts to do
2376ff2deb2SEric Biggers  one of these things will fail with EPERM.  However, changes to
2386ff2deb2SEric Biggers  metadata such as owner, mode, timestamps, and xattrs are still
2396ff2deb2SEric Biggers  allowed, since these are not measured by fs-verity.  Verity files
2406ff2deb2SEric Biggers  can also still be renamed, deleted, and linked to.
2416ff2deb2SEric Biggers
2426ff2deb2SEric Biggers- Direct I/O is not supported on verity files.  Attempts to use direct
2436ff2deb2SEric Biggers  I/O on such files will fall back to buffered I/O.
2446ff2deb2SEric Biggers
2456ff2deb2SEric Biggers- DAX (Direct Access) is not supported on verity files, because this
2466ff2deb2SEric Biggers  would circumvent the data verification.
2476ff2deb2SEric Biggers
2486ff2deb2SEric Biggers- Reads of data that doesn't match the verity Merkle tree will fail
2496ff2deb2SEric Biggers  with EIO (for read()) or SIGBUS (for mmap() reads).
2506ff2deb2SEric Biggers
2516ff2deb2SEric Biggers- If the sysctl "fs.verity.require_signatures" is set to 1 and the
2526ff2deb2SEric Biggers  file's verity measurement is not signed by a key in the fs-verity
2536ff2deb2SEric Biggers  keyring, then opening the file will fail.  See `Built-in signature
2546ff2deb2SEric Biggers  verification`_.
2556ff2deb2SEric Biggers
2566ff2deb2SEric BiggersDirect access to the Merkle tree is not supported.  Therefore, if a
2576ff2deb2SEric Biggersverity file is copied, or is backed up and restored, then it will lose
2586ff2deb2SEric Biggersits "verity"-ness.  fs-verity is primarily meant for files like
2596ff2deb2SEric Biggersexecutables that are managed by a package manager.
2606ff2deb2SEric Biggers
2616ff2deb2SEric BiggersFile measurement computation
2626ff2deb2SEric Biggers============================
2636ff2deb2SEric Biggers
2646ff2deb2SEric BiggersThis section describes how fs-verity hashes the file contents using a
2656ff2deb2SEric BiggersMerkle tree to produce the "file measurement" which cryptographically
2666ff2deb2SEric Biggersidentifies the file contents.  This algorithm is the same for all
2676ff2deb2SEric Biggersfilesystems that support fs-verity.
2686ff2deb2SEric Biggers
2696ff2deb2SEric BiggersUserspace only needs to be aware of this algorithm if it needs to
2706ff2deb2SEric Biggerscompute the file measurement itself, e.g. in order to sign the file.
2716ff2deb2SEric Biggers
2726ff2deb2SEric Biggers.. _fsverity_merkle_tree:
2736ff2deb2SEric Biggers
2746ff2deb2SEric BiggersMerkle tree
2756ff2deb2SEric Biggers-----------
2766ff2deb2SEric Biggers
2776ff2deb2SEric BiggersThe file contents is divided into blocks, where the block size is
2786ff2deb2SEric Biggersconfigurable but is usually 4096 bytes.  The end of the last block is
2796ff2deb2SEric Biggerszero-padded if needed.  Each block is then hashed, producing the first
2806ff2deb2SEric Biggerslevel of hashes.  Then, the hashes in this first level are grouped
2816ff2deb2SEric Biggersinto 'blocksize'-byte blocks (zero-padding the ends as needed) and
2826ff2deb2SEric Biggersthese blocks are hashed, producing the second level of hashes.  This
2836ff2deb2SEric Biggersproceeds up the tree until only a single block remains.  The hash of
2846ff2deb2SEric Biggersthis block is the "Merkle tree root hash".
2856ff2deb2SEric Biggers
2866ff2deb2SEric BiggersIf the file fits in one block and is nonempty, then the "Merkle tree
2876ff2deb2SEric Biggersroot hash" is simply the hash of the single data block.  If the file
2886ff2deb2SEric Biggersis empty, then the "Merkle tree root hash" is all zeroes.
2896ff2deb2SEric Biggers
2906ff2deb2SEric BiggersThe "blocks" here are not necessarily the same as "filesystem blocks".
2916ff2deb2SEric Biggers
2926ff2deb2SEric BiggersIf a salt was specified, then it's zero-padded to the closest multiple
2936ff2deb2SEric Biggersof the input size of the hash algorithm's compression function, e.g.
2946ff2deb2SEric Biggers64 bytes for SHA-256 or 128 bytes for SHA-512.  The padded salt is
2956ff2deb2SEric Biggersprepended to every data or Merkle tree block that is hashed.
2966ff2deb2SEric Biggers
2976ff2deb2SEric BiggersThe purpose of the block padding is to cause every hash to be taken
2986ff2deb2SEric Biggersover the same amount of data, which simplifies the implementation and
2996ff2deb2SEric Biggerskeeps open more possibilities for hardware acceleration.  The purpose
3006ff2deb2SEric Biggersof the salt padding is to make the salting "free" when the salted hash
3016ff2deb2SEric Biggersstate is precomputed, then imported for each hash.
3026ff2deb2SEric Biggers
3036ff2deb2SEric BiggersExample: in the recommended configuration of SHA-256 and 4K blocks,
3046ff2deb2SEric Biggers128 hash values fit in each block.  Thus, each level of the Merkle
3056ff2deb2SEric Biggerstree is approximately 128 times smaller than the previous, and for
3066ff2deb2SEric Biggerslarge files the Merkle tree's size converges to approximately 1/127 of
3076ff2deb2SEric Biggersthe original file size.  However, for small files, the padding is
3086ff2deb2SEric Biggerssignificant, making the space overhead proportionally more.
3096ff2deb2SEric Biggers
3106ff2deb2SEric Biggers.. _fsverity_descriptor:
3116ff2deb2SEric Biggers
3126ff2deb2SEric Biggersfs-verity descriptor
3136ff2deb2SEric Biggers--------------------
3146ff2deb2SEric Biggers
3156ff2deb2SEric BiggersBy itself, the Merkle tree root hash is ambiguous.  For example, it
3166ff2deb2SEric Biggerscan't a distinguish a large file from a small second file whose data
3176ff2deb2SEric Biggersis exactly the top-level hash block of the first file.  Ambiguities
3186ff2deb2SEric Biggersalso arise from the convention of padding to the next block boundary.
3196ff2deb2SEric Biggers
3206ff2deb2SEric BiggersTo solve this problem, the verity file measurement is actually
3216ff2deb2SEric Biggerscomputed as a hash of the following structure, which contains the
3226ff2deb2SEric BiggersMerkle tree root hash as well as other fields such as the file size::
3236ff2deb2SEric Biggers
3246ff2deb2SEric Biggers    struct fsverity_descriptor {
3256ff2deb2SEric Biggers            __u8 version;           /* must be 1 */
3266ff2deb2SEric Biggers            __u8 hash_algorithm;    /* Merkle tree hash algorithm */
3276ff2deb2SEric Biggers            __u8 log_blocksize;     /* log2 of size of data and tree blocks */
3286ff2deb2SEric Biggers            __u8 salt_size;         /* size of salt in bytes; 0 if none */
3296ff2deb2SEric Biggers            __le32 sig_size;        /* must be 0 */
3306ff2deb2SEric Biggers            __le64 data_size;       /* size of file the Merkle tree is built over */
3316ff2deb2SEric Biggers            __u8 root_hash[64];     /* Merkle tree root hash */
3326ff2deb2SEric Biggers            __u8 salt[32];          /* salt prepended to each hashed block */
3336ff2deb2SEric Biggers            __u8 __reserved[144];   /* must be 0's */
3346ff2deb2SEric Biggers    };
3356ff2deb2SEric Biggers
3366ff2deb2SEric BiggersNote that the ``sig_size`` field must be set to 0 for the purpose of
3376ff2deb2SEric Biggerscomputing the file measurement, even if a signature was provided (or
3386ff2deb2SEric Biggerswill be provided) to `FS_IOC_ENABLE_VERITY`_.
3396ff2deb2SEric Biggers
3406ff2deb2SEric BiggersBuilt-in signature verification
3416ff2deb2SEric Biggers===============================
3426ff2deb2SEric Biggers
3436ff2deb2SEric BiggersWith CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y, fs-verity supports putting
3446ff2deb2SEric Biggersa portion of an authentication policy (see `Use cases`_) in the
3456ff2deb2SEric Biggerskernel.  Specifically, it adds support for:
3466ff2deb2SEric Biggers
3476ff2deb2SEric Biggers1. At fs-verity module initialization time, a keyring ".fs-verity" is
3486ff2deb2SEric Biggers   created.  The root user can add trusted X.509 certificates to this
3496ff2deb2SEric Biggers   keyring using the add_key() system call, then (when done)
3506ff2deb2SEric Biggers   optionally use keyctl_restrict_keyring() to prevent additional
3516ff2deb2SEric Biggers   certificates from being added.
3526ff2deb2SEric Biggers
3536ff2deb2SEric Biggers2. `FS_IOC_ENABLE_VERITY`_ accepts a pointer to a PKCS#7 formatted
3546ff2deb2SEric Biggers   detached signature in DER format of the file measurement.  On
3556ff2deb2SEric Biggers   success, this signature is persisted alongside the Merkle tree.
3566ff2deb2SEric Biggers   Then, any time the file is opened, the kernel will verify the
3576ff2deb2SEric Biggers   file's actual measurement against this signature, using the
3586ff2deb2SEric Biggers   certificates in the ".fs-verity" keyring.
3596ff2deb2SEric Biggers
3606ff2deb2SEric Biggers3. A new sysctl "fs.verity.require_signatures" is made available.
3616ff2deb2SEric Biggers   When set to 1, the kernel requires that all verity files have a
3626ff2deb2SEric Biggers   correctly signed file measurement as described in (2).
3636ff2deb2SEric Biggers
3646ff2deb2SEric BiggersFile measurements must be signed in the following format, which is
3656ff2deb2SEric Biggerssimilar to the structure used by `FS_IOC_MEASURE_VERITY`_::
3666ff2deb2SEric Biggers
3676ff2deb2SEric Biggers    struct fsverity_signed_digest {
3686ff2deb2SEric Biggers            char magic[8];                  /* must be "FSVerity" */
3696ff2deb2SEric Biggers            __le16 digest_algorithm;
3706ff2deb2SEric Biggers            __le16 digest_size;
3716ff2deb2SEric Biggers            __u8 digest[];
3726ff2deb2SEric Biggers    };
3736ff2deb2SEric Biggers
3746ff2deb2SEric Biggersfs-verity's built-in signature verification support is meant as a
3756ff2deb2SEric Biggersrelatively simple mechanism that can be used to provide some level of
3766ff2deb2SEric Biggersauthenticity protection for verity files, as an alternative to doing
3776ff2deb2SEric Biggersthe signature verification in userspace or using IMA-appraisal.
3786ff2deb2SEric BiggersHowever, with this mechanism, userspace programs still need to check
3796ff2deb2SEric Biggersthat the verity bit is set, and there is no protection against verity
3806ff2deb2SEric Biggersfiles being swapped around.
3816ff2deb2SEric Biggers
3826ff2deb2SEric BiggersFilesystem support
3836ff2deb2SEric Biggers==================
3846ff2deb2SEric Biggers
3856ff2deb2SEric Biggersfs-verity is currently supported by the ext4 and f2fs filesystems.
3866ff2deb2SEric BiggersThe CONFIG_FS_VERITY kconfig option must be enabled to use fs-verity
3876ff2deb2SEric Biggerson either filesystem.
3886ff2deb2SEric Biggers
3896ff2deb2SEric Biggers``include/linux/fsverity.h`` declares the interface between the
3906ff2deb2SEric Biggers``fs/verity/`` support layer and filesystems.  Briefly, filesystems
3916ff2deb2SEric Biggersmust provide an ``fsverity_operations`` structure that provides
3926ff2deb2SEric Biggersmethods to read and write the verity metadata to a filesystem-specific
3936ff2deb2SEric Biggerslocation, including the Merkle tree blocks and
3946ff2deb2SEric Biggers``fsverity_descriptor``.  Filesystems must also call functions in
3956ff2deb2SEric Biggers``fs/verity/`` at certain times, such as when a file is opened or when
3966ff2deb2SEric Biggerspages have been read into the pagecache.  (See `Verifying data`_.)
3976ff2deb2SEric Biggers
3986ff2deb2SEric Biggersext4
3996ff2deb2SEric Biggers----
4006ff2deb2SEric Biggers
4016ff2deb2SEric Biggersext4 supports fs-verity since Linux TODO and e2fsprogs v1.45.2.
4026ff2deb2SEric Biggers
4036ff2deb2SEric BiggersTo create verity files on an ext4 filesystem, the filesystem must have
4046ff2deb2SEric Biggersbeen formatted with ``-O verity`` or had ``tune2fs -O verity`` run on
4056ff2deb2SEric Biggersit.  "verity" is an RO_COMPAT filesystem feature, so once set, old
4066ff2deb2SEric Biggerskernels will only be able to mount the filesystem readonly, and old
4076ff2deb2SEric Biggersversions of e2fsck will be unable to check the filesystem.  Moreover,
4086ff2deb2SEric Biggerscurrently ext4 only supports mounting a filesystem with the "verity"
4096ff2deb2SEric Biggersfeature when its block size is equal to PAGE_SIZE (often 4096 bytes).
4106ff2deb2SEric Biggers
4116ff2deb2SEric Biggersext4 sets the EXT4_VERITY_FL on-disk inode flag on verity files.  It
4126ff2deb2SEric Biggerscan only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be cleared.
4136ff2deb2SEric Biggers
4146ff2deb2SEric Biggersext4 also supports encryption, which can be used simultaneously with
4156ff2deb2SEric Biggersfs-verity.  In this case, the plaintext data is verified rather than
4166ff2deb2SEric Biggersthe ciphertext.  This is necessary in order to make the file
4176ff2deb2SEric Biggersmeasurement meaningful, since every file is encrypted differently.
4186ff2deb2SEric Biggers
4196ff2deb2SEric Biggersext4 stores the verity metadata (Merkle tree and fsverity_descriptor)
4206ff2deb2SEric Biggerspast the end of the file, starting at the first 64K boundary beyond
4216ff2deb2SEric Biggersi_size.  This approach works because (a) verity files are readonly,
4226ff2deb2SEric Biggersand (b) pages fully beyond i_size aren't visible to userspace but can
4236ff2deb2SEric Biggersbe read/written internally by ext4 with only some relatively small
4246ff2deb2SEric Biggerschanges to ext4.  This approach avoids having to depend on the
4256ff2deb2SEric BiggersEA_INODE feature and on rearchitecturing ext4's xattr support to
4266ff2deb2SEric Biggerssupport paging multi-gigabyte xattrs into memory, and to support
4276ff2deb2SEric Biggersencrypting xattrs.  Note that the verity metadata *must* be encrypted
4286ff2deb2SEric Biggerswhen the file is, since it contains hashes of the plaintext data.
4296ff2deb2SEric Biggers
4306ff2deb2SEric BiggersCurrently, ext4 verity only supports the case where the Merkle tree
4316ff2deb2SEric Biggersblock size, filesystem block size, and page size are all the same.  It
4326ff2deb2SEric Biggersalso only supports extent-based files.
4336ff2deb2SEric Biggers
4346ff2deb2SEric Biggersf2fs
4356ff2deb2SEric Biggers----
4366ff2deb2SEric Biggers
4376ff2deb2SEric Biggersf2fs supports fs-verity since Linux TODO and f2fs-tools v1.11.0.
4386ff2deb2SEric Biggers
4396ff2deb2SEric BiggersTo create verity files on an f2fs filesystem, the filesystem must have
4406ff2deb2SEric Biggersbeen formatted with ``-O verity``.
4416ff2deb2SEric Biggers
4426ff2deb2SEric Biggersf2fs sets the FADVISE_VERITY_BIT on-disk inode flag on verity files.
4436ff2deb2SEric BiggersIt can only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be
4446ff2deb2SEric Biggerscleared.
4456ff2deb2SEric Biggers
4466ff2deb2SEric BiggersLike ext4, f2fs stores the verity metadata (Merkle tree and
4476ff2deb2SEric Biggersfsverity_descriptor) past the end of the file, starting at the first
4486ff2deb2SEric Biggers64K boundary beyond i_size.  See explanation for ext4 above.
4496ff2deb2SEric BiggersMoreover, f2fs supports at most 4096 bytes of xattr entries per inode
4506ff2deb2SEric Biggerswhich wouldn't be enough for even a single Merkle tree block.
4516ff2deb2SEric Biggers
4526ff2deb2SEric BiggersCurrently, f2fs verity only supports a Merkle tree block size of 4096.
4536ff2deb2SEric BiggersAlso, f2fs doesn't support enabling verity on files that currently
4546ff2deb2SEric Biggershave atomic or volatile writes pending.
4556ff2deb2SEric Biggers
4566ff2deb2SEric BiggersImplementation details
4576ff2deb2SEric Biggers======================
4586ff2deb2SEric Biggers
4596ff2deb2SEric BiggersVerifying data
4606ff2deb2SEric Biggers--------------
4616ff2deb2SEric Biggers
4626ff2deb2SEric Biggersfs-verity ensures that all reads of a verity file's data are verified,
4636ff2deb2SEric Biggersregardless of which syscall is used to do the read (e.g. mmap(),
4646ff2deb2SEric Biggersread(), pread()) and regardless of whether it's the first read or a
4656ff2deb2SEric Biggerslater read (unless the later read can return cached data that was
4666ff2deb2SEric Biggersalready verified).  Below, we describe how filesystems implement this.
4676ff2deb2SEric Biggers
4686ff2deb2SEric BiggersPagecache
4696ff2deb2SEric Biggers~~~~~~~~~
4706ff2deb2SEric Biggers
4716ff2deb2SEric BiggersFor filesystems using Linux's pagecache, the ``->readpage()`` and
4726ff2deb2SEric Biggers``->readpages()`` methods must be modified to verify pages before they
4736ff2deb2SEric Biggersare marked Uptodate.  Merely hooking ``->read_iter()`` would be
4746ff2deb2SEric Biggersinsufficient, since ``->read_iter()`` is not used for memory maps.
4756ff2deb2SEric Biggers
4766ff2deb2SEric BiggersTherefore, fs/verity/ provides a function fsverity_verify_page() which
4776ff2deb2SEric Biggersverifies a page that has been read into the pagecache of a verity
4786ff2deb2SEric Biggersinode, but is still locked and not Uptodate, so it's not yet readable
4796ff2deb2SEric Biggersby userspace.  As needed to do the verification,
4806ff2deb2SEric Biggersfsverity_verify_page() will call back into the filesystem to read
4816ff2deb2SEric BiggersMerkle tree pages via fsverity_operations::read_merkle_tree_page().
4826ff2deb2SEric Biggers
4836ff2deb2SEric Biggersfsverity_verify_page() returns false if verification failed; in this
4846ff2deb2SEric Biggerscase, the filesystem must not set the page Uptodate.  Following this,
4856ff2deb2SEric Biggersas per the usual Linux pagecache behavior, attempts by userspace to
4866ff2deb2SEric Biggersread() from the part of the file containing the page will fail with
4876ff2deb2SEric BiggersEIO, and accesses to the page within a memory map will raise SIGBUS.
4886ff2deb2SEric Biggers
4896ff2deb2SEric Biggersfsverity_verify_page() currently only supports the case where the
4906ff2deb2SEric BiggersMerkle tree block size is equal to PAGE_SIZE (often 4096 bytes).
4916ff2deb2SEric Biggers
4926ff2deb2SEric BiggersIn principle, fsverity_verify_page() verifies the entire path in the
4936ff2deb2SEric BiggersMerkle tree from the data page to the root hash.  However, for
4946ff2deb2SEric Biggersefficiency the filesystem may cache the hash pages.  Therefore,
4956ff2deb2SEric Biggersfsverity_verify_page() only ascends the tree reading hash pages until
4966ff2deb2SEric Biggersan already-verified hash page is seen, as indicated by the PageChecked
4976ff2deb2SEric Biggersbit being set.  It then verifies the path to that page.
4986ff2deb2SEric Biggers
4996ff2deb2SEric BiggersThis optimization, which is also used by dm-verity, results in
5006ff2deb2SEric Biggersexcellent sequential read performance.  This is because usually (e.g.
5016ff2deb2SEric Biggers127 in 128 times for 4K blocks and SHA-256) the hash page from the
5026ff2deb2SEric Biggersbottom level of the tree will already be cached and checked from
5036ff2deb2SEric Biggersreading a previous data page.  However, random reads perform worse.
5046ff2deb2SEric Biggers
5056ff2deb2SEric BiggersBlock device based filesystems
5066ff2deb2SEric Biggers~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5076ff2deb2SEric Biggers
5086ff2deb2SEric BiggersBlock device based filesystems (e.g. ext4 and f2fs) in Linux also use
5096ff2deb2SEric Biggersthe pagecache, so the above subsection applies too.  However, they
5106ff2deb2SEric Biggersalso usually read many pages from a file at once, grouped into a
5116ff2deb2SEric Biggersstructure called a "bio".  To make it easier for these types of
5126ff2deb2SEric Biggersfilesystems to support fs-verity, fs/verity/ also provides a function
5136ff2deb2SEric Biggersfsverity_verify_bio() which verifies all pages in a bio.
5146ff2deb2SEric Biggers
5156ff2deb2SEric Biggersext4 and f2fs also support encryption.  If a verity file is also
5166ff2deb2SEric Biggersencrypted, the pages must be decrypted before being verified.  To
5176ff2deb2SEric Biggerssupport this, these filesystems allocate a "post-read context" for
5186ff2deb2SEric Biggerseach bio and store it in ``->bi_private``::
5196ff2deb2SEric Biggers
5206ff2deb2SEric Biggers    struct bio_post_read_ctx {
5216ff2deb2SEric Biggers           struct bio *bio;
5226ff2deb2SEric Biggers           struct work_struct work;
5236ff2deb2SEric Biggers           unsigned int cur_step;
5246ff2deb2SEric Biggers           unsigned int enabled_steps;
5256ff2deb2SEric Biggers    };
5266ff2deb2SEric Biggers
5276ff2deb2SEric Biggers``enabled_steps`` is a bitmask that specifies whether decryption,
5286ff2deb2SEric Biggersverity, or both is enabled.  After the bio completes, for each needed
5296ff2deb2SEric Biggerspostprocessing step the filesystem enqueues the bio_post_read_ctx on a
5306ff2deb2SEric Biggersworkqueue, and then the workqueue work does the decryption or
5316ff2deb2SEric Biggersverification.  Finally, pages where no decryption or verity error
5326ff2deb2SEric Biggersoccurred are marked Uptodate, and the pages are unlocked.
5336ff2deb2SEric Biggers
5346ff2deb2SEric BiggersFiles on ext4 and f2fs may contain holes.  Normally, ``->readpages()``
5356ff2deb2SEric Biggerssimply zeroes holes and sets the corresponding pages Uptodate; no bios
5366ff2deb2SEric Biggersare issued.  To prevent this case from bypassing fs-verity, these
5376ff2deb2SEric Biggersfilesystems use fsverity_verify_page() to verify hole pages.
5386ff2deb2SEric Biggers
5396ff2deb2SEric Biggersext4 and f2fs disable direct I/O on verity files, since otherwise
5406ff2deb2SEric Biggersdirect I/O would bypass fs-verity.  (They also do the same for
5416ff2deb2SEric Biggersencrypted files.)
5426ff2deb2SEric Biggers
5436ff2deb2SEric BiggersUserspace utility
5446ff2deb2SEric Biggers=================
5456ff2deb2SEric Biggers
5466ff2deb2SEric BiggersThis document focuses on the kernel, but a userspace utility for
5476ff2deb2SEric Biggersfs-verity can be found at:
5486ff2deb2SEric Biggers
5496ff2deb2SEric Biggers	https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/fsverity-utils.git
5506ff2deb2SEric Biggers
5516ff2deb2SEric BiggersSee the README.md file in the fsverity-utils source tree for details,
5526ff2deb2SEric Biggersincluding examples of setting up fs-verity protected files.
5536ff2deb2SEric Biggers
5546ff2deb2SEric BiggersTests
5556ff2deb2SEric Biggers=====
5566ff2deb2SEric Biggers
5576ff2deb2SEric BiggersTo test fs-verity, use xfstests.  For example, using `kvm-xfstests
5586ff2deb2SEric Biggers<https://github.com/tytso/xfstests-bld/blob/master/Documentation/kvm-quickstart.md>`_::
5596ff2deb2SEric Biggers
5606ff2deb2SEric Biggers    kvm-xfstests -c ext4,f2fs -g verity
5616ff2deb2SEric Biggers
5626ff2deb2SEric BiggersFAQ
5636ff2deb2SEric Biggers===
5646ff2deb2SEric Biggers
5656ff2deb2SEric BiggersThis section answers frequently asked questions about fs-verity that
5666ff2deb2SEric Biggersweren't already directly answered in other parts of this document.
5676ff2deb2SEric Biggers
5686ff2deb2SEric Biggers:Q: Why isn't fs-verity part of IMA?
5696ff2deb2SEric Biggers:A: fs-verity and IMA (Integrity Measurement Architecture) have
5706ff2deb2SEric Biggers    different focuses.  fs-verity is a filesystem-level mechanism for
5716ff2deb2SEric Biggers    hashing individual files using a Merkle tree.  In contrast, IMA
5726ff2deb2SEric Biggers    specifies a system-wide policy that specifies which files are
5736ff2deb2SEric Biggers    hashed and what to do with those hashes, such as log them,
5746ff2deb2SEric Biggers    authenticate them, or add them to a measurement list.
5756ff2deb2SEric Biggers
5766ff2deb2SEric Biggers    IMA is planned to support the fs-verity hashing mechanism as an
5776ff2deb2SEric Biggers    alternative to doing full file hashes, for people who want the
5786ff2deb2SEric Biggers    performance and security benefits of the Merkle tree based hash.
5796ff2deb2SEric Biggers    But it doesn't make sense to force all uses of fs-verity to be
5806ff2deb2SEric Biggers    through IMA.  As a standalone filesystem feature, fs-verity
5816ff2deb2SEric Biggers    already meets many users' needs, and it's testable like other
5826ff2deb2SEric Biggers    filesystem features e.g. with xfstests.
5836ff2deb2SEric Biggers
5846ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just modify the
5856ff2deb2SEric Biggers    hashes in the Merkle tree, which is stored on-disk?
5866ff2deb2SEric Biggers:A: To verify the authenticity of an fs-verity file you must verify
5876ff2deb2SEric Biggers    the authenticity of the "file measurement", which is basically the
5886ff2deb2SEric Biggers    root hash of the Merkle tree.  See `Use cases`_.
5896ff2deb2SEric Biggers
5906ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just replace a
5916ff2deb2SEric Biggers    verity file with a non-verity one?
5926ff2deb2SEric Biggers:A: See `Use cases`_.  In the initial use case, it's really trusted
5936ff2deb2SEric Biggers    userspace code that authenticates the files; fs-verity is just a
5946ff2deb2SEric Biggers    tool to do this job efficiently and securely.  The trusted
5956ff2deb2SEric Biggers    userspace code will consider non-verity files to be inauthentic.
5966ff2deb2SEric Biggers
5976ff2deb2SEric Biggers:Q: Why does the Merkle tree need to be stored on-disk?  Couldn't you
5986ff2deb2SEric Biggers    store just the root hash?
5996ff2deb2SEric Biggers:A: If the Merkle tree wasn't stored on-disk, then you'd have to
6006ff2deb2SEric Biggers    compute the entire tree when the file is first accessed, even if
6016ff2deb2SEric Biggers    just one byte is being read.  This is a fundamental consequence of
6026ff2deb2SEric Biggers    how Merkle tree hashing works.  To verify a leaf node, you need to
6036ff2deb2SEric Biggers    verify the whole path to the root hash, including the root node
6046ff2deb2SEric Biggers    (the thing which the root hash is a hash of).  But if the root
6056ff2deb2SEric Biggers    node isn't stored on-disk, you have to compute it by hashing its
6066ff2deb2SEric Biggers    children, and so on until you've actually hashed the entire file.
6076ff2deb2SEric Biggers
6086ff2deb2SEric Biggers    That defeats most of the point of doing a Merkle tree-based hash,
6096ff2deb2SEric Biggers    since if you have to hash the whole file ahead of time anyway,
6106ff2deb2SEric Biggers    then you could simply do sha256(file) instead.  That would be much
6116ff2deb2SEric Biggers    simpler, and a bit faster too.
6126ff2deb2SEric Biggers
6136ff2deb2SEric Biggers    It's true that an in-memory Merkle tree could still provide the
6146ff2deb2SEric Biggers    advantage of verification on every read rather than just on the
6156ff2deb2SEric Biggers    first read.  However, it would be inefficient because every time a
6166ff2deb2SEric Biggers    hash page gets evicted (you can't pin the entire Merkle tree into
6176ff2deb2SEric Biggers    memory, since it may be very large), in order to restore it you
6186ff2deb2SEric Biggers    again need to hash everything below it in the tree.  This again
6196ff2deb2SEric Biggers    defeats most of the point of doing a Merkle tree-based hash, since
6206ff2deb2SEric Biggers    a single block read could trigger re-hashing gigabytes of data.
6216ff2deb2SEric Biggers
6226ff2deb2SEric Biggers:Q: But couldn't you store just the leaf nodes and compute the rest?
6236ff2deb2SEric Biggers:A: See previous answer; this really just moves up one level, since
6246ff2deb2SEric Biggers    one could alternatively interpret the data blocks as being the
6256ff2deb2SEric Biggers    leaf nodes of the Merkle tree.  It's true that the tree can be
6266ff2deb2SEric Biggers    computed much faster if the leaf level is stored rather than just
6276ff2deb2SEric Biggers    the data, but that's only because each level is less than 1% the
6286ff2deb2SEric Biggers    size of the level below (assuming the recommended settings of
6296ff2deb2SEric Biggers    SHA-256 and 4K blocks).  For the exact same reason, by storing
6306ff2deb2SEric Biggers    "just the leaf nodes" you'd already be storing over 99% of the
6316ff2deb2SEric Biggers    tree, so you might as well simply store the whole tree.
6326ff2deb2SEric Biggers
6336ff2deb2SEric Biggers:Q: Can the Merkle tree be built ahead of time, e.g. distributed as
6346ff2deb2SEric Biggers    part of a package that is installed to many computers?
6356ff2deb2SEric Biggers:A: This isn't currently supported.  It was part of the original
6366ff2deb2SEric Biggers    design, but was removed to simplify the kernel UAPI and because it
6376ff2deb2SEric Biggers    wasn't a critical use case.  Files are usually installed once and
6386ff2deb2SEric Biggers    used many times, and cryptographic hashing is somewhat fast on
6396ff2deb2SEric Biggers    most modern processors.
6406ff2deb2SEric Biggers
6416ff2deb2SEric Biggers:Q: Why doesn't fs-verity support writes?
6426ff2deb2SEric Biggers:A: Write support would be very difficult and would require a
6436ff2deb2SEric Biggers    completely different design, so it's well outside the scope of
6446ff2deb2SEric Biggers    fs-verity.  Write support would require:
6456ff2deb2SEric Biggers
6466ff2deb2SEric Biggers    - A way to maintain consistency between the data and hashes,
6476ff2deb2SEric Biggers      including all levels of hashes, since corruption after a crash
6486ff2deb2SEric Biggers      (especially of potentially the entire file!) is unacceptable.
6496ff2deb2SEric Biggers      The main options for solving this are data journalling,
6506ff2deb2SEric Biggers      copy-on-write, and log-structured volume.  But it's very hard to
6516ff2deb2SEric Biggers      retrofit existing filesystems with new consistency mechanisms.
6526ff2deb2SEric Biggers      Data journalling is available on ext4, but is very slow.
6536ff2deb2SEric Biggers
6546ff2deb2SEric Biggers    - Rebuilding the the Merkle tree after every write, which would be
6556ff2deb2SEric Biggers      extremely inefficient.  Alternatively, a different authenticated
6566ff2deb2SEric Biggers      dictionary structure such as an "authenticated skiplist" could
6576ff2deb2SEric Biggers      be used.  However, this would be far more complex.
6586ff2deb2SEric Biggers
6596ff2deb2SEric Biggers    Compare it to dm-verity vs. dm-integrity.  dm-verity is very
6606ff2deb2SEric Biggers    simple: the kernel just verifies read-only data against a
6616ff2deb2SEric Biggers    read-only Merkle tree.  In contrast, dm-integrity supports writes
6626ff2deb2SEric Biggers    but is slow, is much more complex, and doesn't actually support
6636ff2deb2SEric Biggers    full-device authentication since it authenticates each sector
6646ff2deb2SEric Biggers    independently, i.e. there is no "root hash".  It doesn't really
6656ff2deb2SEric Biggers    make sense for the same device-mapper target to support these two
6666ff2deb2SEric Biggers    very different cases; the same applies to fs-verity.
6676ff2deb2SEric Biggers
6686ff2deb2SEric Biggers:Q: Since verity files are immutable, why isn't the immutable bit set?
6696ff2deb2SEric Biggers:A: The existing "immutable" bit (FS_IMMUTABLE_FL) already has a
6706ff2deb2SEric Biggers    specific set of semantics which not only make the file contents
6716ff2deb2SEric Biggers    read-only, but also prevent the file from being deleted, renamed,
6726ff2deb2SEric Biggers    linked to, or having its owner or mode changed.  These extra
6736ff2deb2SEric Biggers    properties are unwanted for fs-verity, so reusing the immutable
6746ff2deb2SEric Biggers    bit isn't appropriate.
6756ff2deb2SEric Biggers
6766ff2deb2SEric Biggers:Q: Why does the API use ioctls instead of setxattr() and getxattr()?
6776ff2deb2SEric Biggers:A: Abusing the xattr interface for basically arbitrary syscalls is
6786ff2deb2SEric Biggers    heavily frowned upon by most of the Linux filesystem developers.
6796ff2deb2SEric Biggers    An xattr should really just be an xattr on-disk, not an API to
6806ff2deb2SEric Biggers    e.g. magically trigger construction of a Merkle tree.
6816ff2deb2SEric Biggers
6826ff2deb2SEric Biggers:Q: Does fs-verity support remote filesystems?
6836ff2deb2SEric Biggers:A: Only ext4 and f2fs support is implemented currently, but in
6846ff2deb2SEric Biggers    principle any filesystem that can store per-file verity metadata
6856ff2deb2SEric Biggers    can support fs-verity, regardless of whether it's local or remote.
6866ff2deb2SEric Biggers    Some filesystems may have fewer options of where to store the
6876ff2deb2SEric Biggers    verity metadata; one possibility is to store it past the end of
6886ff2deb2SEric Biggers    the file and "hide" it from userspace by manipulating i_size.  The
6896ff2deb2SEric Biggers    data verification functions provided by ``fs/verity/`` also assume
6906ff2deb2SEric Biggers    that the filesystem uses the Linux pagecache, but both local and
6916ff2deb2SEric Biggers    remote filesystems normally do so.
6926ff2deb2SEric Biggers
6936ff2deb2SEric Biggers:Q: Why is anything filesystem-specific at all?  Shouldn't fs-verity
6946ff2deb2SEric Biggers    be implemented entirely at the VFS level?
6956ff2deb2SEric Biggers:A: There are many reasons why this is not possible or would be very
6966ff2deb2SEric Biggers    difficult, including the following:
6976ff2deb2SEric Biggers
6986ff2deb2SEric Biggers    - To prevent bypassing verification, pages must not be marked
6996ff2deb2SEric Biggers      Uptodate until they've been verified.  Currently, each
7006ff2deb2SEric Biggers      filesystem is responsible for marking pages Uptodate via
7016ff2deb2SEric Biggers      ``->readpages()``.  Therefore, currently it's not possible for
7026ff2deb2SEric Biggers      the VFS to do the verification on its own.  Changing this would
7036ff2deb2SEric Biggers      require significant changes to the VFS and all filesystems.
7046ff2deb2SEric Biggers
7056ff2deb2SEric Biggers    - It would require defining a filesystem-independent way to store
7066ff2deb2SEric Biggers      the verity metadata.  Extended attributes don't work for this
7076ff2deb2SEric Biggers      because (a) the Merkle tree may be gigabytes, but many
7086ff2deb2SEric Biggers      filesystems assume that all xattrs fit into a single 4K
7096ff2deb2SEric Biggers      filesystem block, and (b) ext4 and f2fs encryption doesn't
7106ff2deb2SEric Biggers      encrypt xattrs, yet the Merkle tree *must* be encrypted when the
7116ff2deb2SEric Biggers      file contents are, because it stores hashes of the plaintext
7126ff2deb2SEric Biggers      file contents.
7136ff2deb2SEric Biggers
7146ff2deb2SEric Biggers      So the verity metadata would have to be stored in an actual
7156ff2deb2SEric Biggers      file.  Using a separate file would be very ugly, since the
7166ff2deb2SEric Biggers      metadata is fundamentally part of the file to be protected, and
7176ff2deb2SEric Biggers      it could cause problems where users could delete the real file
7186ff2deb2SEric Biggers      but not the metadata file or vice versa.  On the other hand,
7196ff2deb2SEric Biggers      having it be in the same file would break applications unless
7206ff2deb2SEric Biggers      filesystems' notion of i_size were divorced from the VFS's,
7216ff2deb2SEric Biggers      which would be complex and require changes to all filesystems.
7226ff2deb2SEric Biggers
7236ff2deb2SEric Biggers    - It's desirable that FS_IOC_ENABLE_VERITY uses the filesystem's
7246ff2deb2SEric Biggers      transaction mechanism so that either the file ends up with
7256ff2deb2SEric Biggers      verity enabled, or no changes were made.  Allowing intermediate
7266ff2deb2SEric Biggers      states to occur after a crash may cause problems.
727