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
148da572c5SEric Biggersof read-only files.  Currently, it is supported by the ext4, f2fs, and
158da572c5SEric Biggersbtrfs filesystems.  Like fscrypt, not too much filesystem-specific
168da572c5SEric Biggerscode is needed 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
30ed45e201SEric Biggersthe "fs-verity file digest", which is a hash that includes the Merkle
31ed45e201SEric Biggerstree root hash) that fs-verity is enforcing for the file.  This ioctl
32ed45e201SEric Biggersexecutes in constant 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
7302ee2316SMimi Zoharauthenticating the files may be done by:
7402ee2316SMimi Zohar
7502ee2316SMimi Zohar* Userspace-only
7602ee2316SMimi Zohar
7702ee2316SMimi Zohar* Builtin signature verification + userspace policy
7802ee2316SMimi Zohar
7902ee2316SMimi Zohar  fs-verity optionally supports a simple signature verification
8002ee2316SMimi Zohar  mechanism where users can configure the kernel to require that
8102ee2316SMimi Zohar  all fs-verity files be signed by a key loaded into a keyring;
8202ee2316SMimi Zohar  see `Built-in signature verification`_.
8302ee2316SMimi Zohar
8402ee2316SMimi Zohar* Integrity Measurement Architecture (IMA)
8502ee2316SMimi Zohar
8602ee2316SMimi Zohar  IMA supports including fs-verity file digests and signatures in the
8702ee2316SMimi Zohar  IMA measurement list and verifying fs-verity based file signatures
8802ee2316SMimi Zohar  stored as security.ima xattrs, based on policy.
8902ee2316SMimi Zohar
906ff2deb2SEric Biggers
916ff2deb2SEric BiggersUser API
926ff2deb2SEric Biggers========
936ff2deb2SEric Biggers
946ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY
956ff2deb2SEric Biggers--------------------
966ff2deb2SEric Biggers
976ff2deb2SEric BiggersThe FS_IOC_ENABLE_VERITY ioctl enables fs-verity on a file.  It takes
989303c9d5SMauro Carvalho Chehabin a pointer to a struct fsverity_enable_arg, defined as
996ff2deb2SEric Biggersfollows::
1006ff2deb2SEric Biggers
1016ff2deb2SEric Biggers    struct fsverity_enable_arg {
1026ff2deb2SEric Biggers            __u32 version;
1036ff2deb2SEric Biggers            __u32 hash_algorithm;
1046ff2deb2SEric Biggers            __u32 block_size;
1056ff2deb2SEric Biggers            __u32 salt_size;
1066ff2deb2SEric Biggers            __u64 salt_ptr;
1076ff2deb2SEric Biggers            __u32 sig_size;
1086ff2deb2SEric Biggers            __u32 __reserved1;
1096ff2deb2SEric Biggers            __u64 sig_ptr;
1106ff2deb2SEric Biggers            __u64 __reserved2[11];
1116ff2deb2SEric Biggers    };
1126ff2deb2SEric Biggers
1136ff2deb2SEric BiggersThis structure contains the parameters of the Merkle tree to build for
1146ff2deb2SEric Biggersthe file, and optionally contains a signature.  It must be initialized
1156ff2deb2SEric Biggersas follows:
1166ff2deb2SEric Biggers
1176ff2deb2SEric Biggers- ``version`` must be 1.
1186ff2deb2SEric Biggers- ``hash_algorithm`` must be the identifier for the hash algorithm to
1196ff2deb2SEric Biggers  use for the Merkle tree, such as FS_VERITY_HASH_ALG_SHA256.  See
1206ff2deb2SEric Biggers  ``include/uapi/linux/fsverity.h`` for the list of possible values.
12156124d6cSEric Biggers- ``block_size`` is the Merkle tree block size, in bytes.  In Linux
12256124d6cSEric Biggers  v6.3 and later, this can be any power of 2 between (inclusively)
12356124d6cSEric Biggers  1024 and the minimum of the system page size and the filesystem
12456124d6cSEric Biggers  block size.  In earlier versions, the page size was the only allowed
12556124d6cSEric Biggers  value.
1266ff2deb2SEric Biggers- ``salt_size`` is the size of the salt in bytes, or 0 if no salt is
1276ff2deb2SEric Biggers  provided.  The salt is a value that is prepended to every hashed
1286ff2deb2SEric Biggers  block; it can be used to personalize the hashing for a particular
1296ff2deb2SEric Biggers  file or device.  Currently the maximum salt size is 32 bytes.
1306ff2deb2SEric Biggers- ``salt_ptr`` is the pointer to the salt, or NULL if no salt is
1316ff2deb2SEric Biggers  provided.
1326ff2deb2SEric Biggers- ``sig_size`` is the size of the signature in bytes, or 0 if no
1336ff2deb2SEric Biggers  signature is provided.  Currently the signature is (somewhat
1346ff2deb2SEric Biggers  arbitrarily) limited to 16128 bytes.  See `Built-in signature
1356ff2deb2SEric Biggers  verification`_ for more information.
1366ff2deb2SEric Biggers- ``sig_ptr``  is the pointer to the signature, or NULL if no
1376ff2deb2SEric Biggers  signature is provided.
1386ff2deb2SEric Biggers- All reserved fields must be zeroed.
1396ff2deb2SEric Biggers
1406ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY causes the filesystem to build a Merkle tree for
1416ff2deb2SEric Biggersthe file and persist it to a filesystem-specific location associated
1426ff2deb2SEric Biggerswith the file, then mark the file as a verity file.  This ioctl may
1436ff2deb2SEric Biggerstake a long time to execute on large files, and it is interruptible by
1446ff2deb2SEric Biggersfatal signals.
1456ff2deb2SEric Biggers
1466ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY checks for write access to the inode.  However,
1476ff2deb2SEric Biggersit must be executed on an O_RDONLY file descriptor and no processes
1486ff2deb2SEric Biggerscan have the file open for writing.  Attempts to open the file for
1496ff2deb2SEric Biggerswriting while this ioctl is executing will fail with ETXTBSY.  (This
1506ff2deb2SEric Biggersis necessary to guarantee that no writable file descriptors will exist
1516ff2deb2SEric Biggersafter verity is enabled, and to guarantee that the file's contents are
1526ff2deb2SEric Biggersstable while the Merkle tree is being built over it.)
1536ff2deb2SEric Biggers
1546ff2deb2SEric BiggersOn success, FS_IOC_ENABLE_VERITY returns 0, and the file becomes a
1556ff2deb2SEric Biggersverity file.  On failure (including the case of interruption by a
1566ff2deb2SEric Biggersfatal signal), no changes are made to the file.
1576ff2deb2SEric Biggers
1586ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY can fail with the following errors:
1596ff2deb2SEric Biggers
1606ff2deb2SEric Biggers- ``EACCES``: the process does not have write access to the file
1616ff2deb2SEric Biggers- ``EBADMSG``: the signature is malformed
1626ff2deb2SEric Biggers- ``EBUSY``: this ioctl is already running on the file
1636ff2deb2SEric Biggers- ``EEXIST``: the file already has verity enabled
1646ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
16555eed69cSEric Biggers- ``EFBIG``: the file is too large to enable verity on
1666ff2deb2SEric Biggers- ``EINTR``: the operation was interrupted by a fatal signal
1676ff2deb2SEric Biggers- ``EINVAL``: unsupported version, hash algorithm, or block size; or
1686ff2deb2SEric Biggers  reserved bits are set; or the file descriptor refers to neither a
1696ff2deb2SEric Biggers  regular file nor a directory.
1706ff2deb2SEric Biggers- ``EISDIR``: the file descriptor refers to a directory
1716ff2deb2SEric Biggers- ``EKEYREJECTED``: the signature doesn't match the file
1726ff2deb2SEric Biggers- ``EMSGSIZE``: the salt or signature is too long
1736ff2deb2SEric Biggers- ``ENOKEY``: the fs-verity keyring doesn't contain the certificate
1746ff2deb2SEric Biggers  needed to verify the signature
1756ff2deb2SEric Biggers- ``ENOPKG``: fs-verity recognizes the hash algorithm, but it's not
1766ff2deb2SEric Biggers  available in the kernel's crypto API as currently configured (e.g.
1776ff2deb2SEric Biggers  for SHA-512, missing CONFIG_CRYPTO_SHA512).
1786ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
1796ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
1806ff2deb2SEric Biggers  support; or the filesystem superblock has not had the 'verity'
1816ff2deb2SEric Biggers  feature enabled on it; or the filesystem does not support fs-verity
1826ff2deb2SEric Biggers  on this file.  (See `Filesystem support`_.)
1836ff2deb2SEric Biggers- ``EPERM``: the file is append-only; or, a signature is required and
1846ff2deb2SEric Biggers  one was not provided.
1856ff2deb2SEric Biggers- ``EROFS``: the filesystem is read-only
1866ff2deb2SEric Biggers- ``ETXTBSY``: someone has the file open for writing.  This can be the
1876ff2deb2SEric Biggers  caller's file descriptor, another open file descriptor, or the file
1886ff2deb2SEric Biggers  reference held by a writable memory map.
1896ff2deb2SEric Biggers
1906ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY
1916ff2deb2SEric Biggers---------------------
1926ff2deb2SEric Biggers
193ed45e201SEric BiggersThe FS_IOC_MEASURE_VERITY ioctl retrieves the digest of a verity file.
194ed45e201SEric BiggersThe fs-verity file digest is a cryptographic digest that identifies
195ed45e201SEric Biggersthe file contents that are being enforced on reads; it is computed via
196ed45e201SEric Biggersa Merkle tree and is different from a traditional full-file digest.
1976ff2deb2SEric Biggers
1986ff2deb2SEric BiggersThis ioctl takes in a pointer to a variable-length structure::
1996ff2deb2SEric Biggers
2006ff2deb2SEric Biggers    struct fsverity_digest {
2016ff2deb2SEric Biggers            __u16 digest_algorithm;
2026ff2deb2SEric Biggers            __u16 digest_size; /* input/output */
2036ff2deb2SEric Biggers            __u8 digest[];
2046ff2deb2SEric Biggers    };
2056ff2deb2SEric Biggers
2066ff2deb2SEric Biggers``digest_size`` is an input/output field.  On input, it must be
2076ff2deb2SEric Biggersinitialized to the number of bytes allocated for the variable-length
2086ff2deb2SEric Biggers``digest`` field.
2096ff2deb2SEric Biggers
2106ff2deb2SEric BiggersOn success, 0 is returned and the kernel fills in the structure as
2116ff2deb2SEric Biggersfollows:
2126ff2deb2SEric Biggers
2136ff2deb2SEric Biggers- ``digest_algorithm`` will be the hash algorithm used for the file
214ed45e201SEric Biggers  digest.  It will match ``fsverity_enable_arg::hash_algorithm``.
2156ff2deb2SEric Biggers- ``digest_size`` will be the size of the digest in bytes, e.g. 32
2166ff2deb2SEric Biggers  for SHA-256.  (This can be redundant with ``digest_algorithm``.)
2176ff2deb2SEric Biggers- ``digest`` will be the actual bytes of the digest.
2186ff2deb2SEric Biggers
2196ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY is guaranteed to execute in constant time,
2206ff2deb2SEric Biggersregardless of the size of the file.
2216ff2deb2SEric Biggers
2226ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY can fail with the following errors:
2236ff2deb2SEric Biggers
2246ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
2256ff2deb2SEric Biggers- ``ENODATA``: the file is not a verity file
2266ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
2276ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
2286ff2deb2SEric Biggers  support, or the filesystem superblock has not had the 'verity'
2296ff2deb2SEric Biggers  feature enabled on it.  (See `Filesystem support`_.)
2306ff2deb2SEric Biggers- ``EOVERFLOW``: the digest is longer than the specified
2316ff2deb2SEric Biggers  ``digest_size`` bytes.  Try providing a larger buffer.
2326ff2deb2SEric Biggers
233e17fe657SEric BiggersFS_IOC_READ_VERITY_METADATA
234e17fe657SEric Biggers---------------------------
235e17fe657SEric Biggers
236e17fe657SEric BiggersThe FS_IOC_READ_VERITY_METADATA ioctl reads verity metadata from a
237e17fe657SEric Biggersverity file.  This ioctl is available since Linux v5.12.
238e17fe657SEric Biggers
239e17fe657SEric BiggersThis ioctl allows writing a server program that takes a verity file
240e17fe657SEric Biggersand serves it to a client program, such that the client can do its own
241e17fe657SEric Biggersfs-verity compatible verification of the file.  This only makes sense
242e17fe657SEric Biggersif the client doesn't trust the server and if the server needs to
243e17fe657SEric Biggersprovide the storage for the client.
244e17fe657SEric Biggers
245e17fe657SEric BiggersThis is a fairly specialized use case, and most fs-verity users won't
246e17fe657SEric Biggersneed this ioctl.
247e17fe657SEric Biggers
248e17fe657SEric BiggersThis ioctl takes in a pointer to the following structure::
249e17fe657SEric Biggers
250622699cfSEric Biggers   #define FS_VERITY_METADATA_TYPE_MERKLE_TREE     1
251947191acSEric Biggers   #define FS_VERITY_METADATA_TYPE_DESCRIPTOR      2
25207c99001SEric Biggers   #define FS_VERITY_METADATA_TYPE_SIGNATURE       3
253622699cfSEric Biggers
254e17fe657SEric Biggers   struct fsverity_read_metadata_arg {
255e17fe657SEric Biggers           __u64 metadata_type;
256e17fe657SEric Biggers           __u64 offset;
257e17fe657SEric Biggers           __u64 length;
258e17fe657SEric Biggers           __u64 buf_ptr;
259e17fe657SEric Biggers           __u64 __reserved;
260e17fe657SEric Biggers   };
261e17fe657SEric Biggers
262622699cfSEric Biggers``metadata_type`` specifies the type of metadata to read:
263622699cfSEric Biggers
264622699cfSEric Biggers- ``FS_VERITY_METADATA_TYPE_MERKLE_TREE`` reads the blocks of the
265622699cfSEric Biggers  Merkle tree.  The blocks are returned in order from the root level
266622699cfSEric Biggers  to the leaf level.  Within each level, the blocks are returned in
267622699cfSEric Biggers  the same order that their hashes are themselves hashed.
268622699cfSEric Biggers  See `Merkle tree`_ for more information.
269e17fe657SEric Biggers
270947191acSEric Biggers- ``FS_VERITY_METADATA_TYPE_DESCRIPTOR`` reads the fs-verity
271947191acSEric Biggers  descriptor.  See `fs-verity descriptor`_.
272947191acSEric Biggers
27307c99001SEric Biggers- ``FS_VERITY_METADATA_TYPE_SIGNATURE`` reads the signature which was
27407c99001SEric Biggers  passed to FS_IOC_ENABLE_VERITY, if any.  See `Built-in signature
27507c99001SEric Biggers  verification`_.
27607c99001SEric Biggers
277e17fe657SEric BiggersThe semantics are similar to those of ``pread()``.  ``offset``
278e17fe657SEric Biggersspecifies the offset in bytes into the metadata item to read from, and
279e17fe657SEric Biggers``length`` specifies the maximum number of bytes to read from the
280e17fe657SEric Biggersmetadata item.  ``buf_ptr`` is the pointer to the buffer to read into,
281e17fe657SEric Biggerscast to a 64-bit integer.  ``__reserved`` must be 0.  On success, the
282e17fe657SEric Biggersnumber of bytes read is returned.  0 is returned at the end of the
283e17fe657SEric Biggersmetadata item.  The returned length may be less than ``length``, for
284e17fe657SEric Biggersexample if the ioctl is interrupted.
285e17fe657SEric Biggers
286e17fe657SEric BiggersThe metadata returned by FS_IOC_READ_VERITY_METADATA isn't guaranteed
287e17fe657SEric Biggersto be authenticated against the file digest that would be returned by
288e17fe657SEric Biggers`FS_IOC_MEASURE_VERITY`_, as the metadata is expected to be used to
289e17fe657SEric Biggersimplement fs-verity compatible verification anyway (though absent a
290e17fe657SEric Biggersmalicious disk, the metadata will indeed match).  E.g. to implement
291e17fe657SEric Biggersthis ioctl, the filesystem is allowed to just read the Merkle tree
292e17fe657SEric Biggersblocks from disk without actually verifying the path to the root node.
293e17fe657SEric Biggers
294e17fe657SEric BiggersFS_IOC_READ_VERITY_METADATA can fail with the following errors:
295e17fe657SEric Biggers
296e17fe657SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
297e17fe657SEric Biggers- ``EINTR``: the ioctl was interrupted before any data was read
298e17fe657SEric Biggers- ``EINVAL``: reserved fields were set, or ``offset + length``
299e17fe657SEric Biggers  overflowed
30007c99001SEric Biggers- ``ENODATA``: the file is not a verity file, or
30107c99001SEric Biggers  FS_VERITY_METADATA_TYPE_SIGNATURE was requested but the file doesn't
30207c99001SEric Biggers  have a built-in signature
303e17fe657SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity, or
304e17fe657SEric Biggers  this ioctl is not yet implemented on it
305e17fe657SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
306e17fe657SEric Biggers  support, or the filesystem superblock has not had the 'verity'
307e17fe657SEric Biggers  feature enabled on it.  (See `Filesystem support`_.)
308e17fe657SEric Biggers
3096ff2deb2SEric BiggersFS_IOC_GETFLAGS
3106ff2deb2SEric Biggers---------------
3116ff2deb2SEric Biggers
3126ff2deb2SEric BiggersThe existing ioctl FS_IOC_GETFLAGS (which isn't specific to fs-verity)
3136ff2deb2SEric Biggerscan also be used to check whether a file has fs-verity enabled or not.
3146ff2deb2SEric BiggersTo do so, check for FS_VERITY_FL (0x00100000) in the returned flags.
3156ff2deb2SEric Biggers
3166ff2deb2SEric BiggersThe verity flag is not settable via FS_IOC_SETFLAGS.  You must use
3176ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY instead, since parameters must be provided.
3186ff2deb2SEric Biggers
31973f0ec02SEric Biggersstatx
32073f0ec02SEric Biggers-----
32173f0ec02SEric Biggers
32273f0ec02SEric BiggersSince Linux v5.5, the statx() system call sets STATX_ATTR_VERITY if
32373f0ec02SEric Biggersthe file has fs-verity enabled.  This can perform better than
32473f0ec02SEric BiggersFS_IOC_GETFLAGS and FS_IOC_MEASURE_VERITY because it doesn't require
32573f0ec02SEric Biggersopening the file, and opening verity files can be expensive.
32673f0ec02SEric Biggers
3276ff2deb2SEric BiggersAccessing verity files
3286ff2deb2SEric Biggers======================
3296ff2deb2SEric Biggers
3306ff2deb2SEric BiggersApplications can transparently access a verity file just like a
3316ff2deb2SEric Biggersnon-verity one, with the following exceptions:
3326ff2deb2SEric Biggers
3336ff2deb2SEric Biggers- Verity files are readonly.  They cannot be opened for writing or
3346ff2deb2SEric Biggers  truncate()d, even if the file mode bits allow it.  Attempts to do
3356ff2deb2SEric Biggers  one of these things will fail with EPERM.  However, changes to
3366ff2deb2SEric Biggers  metadata such as owner, mode, timestamps, and xattrs are still
3376ff2deb2SEric Biggers  allowed, since these are not measured by fs-verity.  Verity files
3386ff2deb2SEric Biggers  can also still be renamed, deleted, and linked to.
3396ff2deb2SEric Biggers
3406ff2deb2SEric Biggers- Direct I/O is not supported on verity files.  Attempts to use direct
3416ff2deb2SEric Biggers  I/O on such files will fall back to buffered I/O.
3426ff2deb2SEric Biggers
3436ff2deb2SEric Biggers- DAX (Direct Access) is not supported on verity files, because this
3446ff2deb2SEric Biggers  would circumvent the data verification.
3456ff2deb2SEric Biggers
3466ff2deb2SEric Biggers- Reads of data that doesn't match the verity Merkle tree will fail
3476ff2deb2SEric Biggers  with EIO (for read()) or SIGBUS (for mmap() reads).
3486ff2deb2SEric Biggers
3496ff2deb2SEric Biggers- If the sysctl "fs.verity.require_signatures" is set to 1 and the
350ed45e201SEric Biggers  file is not signed by a key in the fs-verity keyring, then opening
351ed45e201SEric Biggers  the file will fail.  See `Built-in signature verification`_.
3526ff2deb2SEric Biggers
3536ff2deb2SEric BiggersDirect access to the Merkle tree is not supported.  Therefore, if a
3546ff2deb2SEric Biggersverity file is copied, or is backed up and restored, then it will lose
3556ff2deb2SEric Biggersits "verity"-ness.  fs-verity is primarily meant for files like
3566ff2deb2SEric Biggersexecutables that are managed by a package manager.
3576ff2deb2SEric Biggers
358ed45e201SEric BiggersFile digest computation
359ed45e201SEric Biggers=======================
3606ff2deb2SEric Biggers
3616ff2deb2SEric BiggersThis section describes how fs-verity hashes the file contents using a
362ed45e201SEric BiggersMerkle tree to produce the digest which cryptographically identifies
363ed45e201SEric Biggersthe file contents.  This algorithm is the same for all filesystems
364ed45e201SEric Biggersthat support fs-verity.
3656ff2deb2SEric Biggers
3666ff2deb2SEric BiggersUserspace only needs to be aware of this algorithm if it needs to
367ed45e201SEric Biggerscompute fs-verity file digests itself, e.g. in order to sign files.
3686ff2deb2SEric Biggers
3696ff2deb2SEric Biggers.. _fsverity_merkle_tree:
3706ff2deb2SEric Biggers
3716ff2deb2SEric BiggersMerkle tree
3726ff2deb2SEric Biggers-----------
3736ff2deb2SEric Biggers
3746ff2deb2SEric BiggersThe file contents is divided into blocks, where the block size is
3756ff2deb2SEric Biggersconfigurable but is usually 4096 bytes.  The end of the last block is
3766ff2deb2SEric Biggerszero-padded if needed.  Each block is then hashed, producing the first
3776ff2deb2SEric Biggerslevel of hashes.  Then, the hashes in this first level are grouped
3786ff2deb2SEric Biggersinto 'blocksize'-byte blocks (zero-padding the ends as needed) and
3796ff2deb2SEric Biggersthese blocks are hashed, producing the second level of hashes.  This
3806ff2deb2SEric Biggersproceeds up the tree until only a single block remains.  The hash of
3816ff2deb2SEric Biggersthis block is the "Merkle tree root hash".
3826ff2deb2SEric Biggers
3836ff2deb2SEric BiggersIf the file fits in one block and is nonempty, then the "Merkle tree
3846ff2deb2SEric Biggersroot hash" is simply the hash of the single data block.  If the file
3856ff2deb2SEric Biggersis empty, then the "Merkle tree root hash" is all zeroes.
3866ff2deb2SEric Biggers
3876ff2deb2SEric BiggersThe "blocks" here are not necessarily the same as "filesystem blocks".
3886ff2deb2SEric Biggers
3896ff2deb2SEric BiggersIf a salt was specified, then it's zero-padded to the closest multiple
3906ff2deb2SEric Biggersof the input size of the hash algorithm's compression function, e.g.
3916ff2deb2SEric Biggers64 bytes for SHA-256 or 128 bytes for SHA-512.  The padded salt is
3926ff2deb2SEric Biggersprepended to every data or Merkle tree block that is hashed.
3936ff2deb2SEric Biggers
3946ff2deb2SEric BiggersThe purpose of the block padding is to cause every hash to be taken
3956ff2deb2SEric Biggersover the same amount of data, which simplifies the implementation and
3966ff2deb2SEric Biggerskeeps open more possibilities for hardware acceleration.  The purpose
3976ff2deb2SEric Biggersof the salt padding is to make the salting "free" when the salted hash
3986ff2deb2SEric Biggersstate is precomputed, then imported for each hash.
3996ff2deb2SEric Biggers
4006ff2deb2SEric BiggersExample: in the recommended configuration of SHA-256 and 4K blocks,
4016ff2deb2SEric Biggers128 hash values fit in each block.  Thus, each level of the Merkle
4026ff2deb2SEric Biggerstree is approximately 128 times smaller than the previous, and for
4036ff2deb2SEric Biggerslarge files the Merkle tree's size converges to approximately 1/127 of
4046ff2deb2SEric Biggersthe original file size.  However, for small files, the padding is
4056ff2deb2SEric Biggerssignificant, making the space overhead proportionally more.
4066ff2deb2SEric Biggers
4076ff2deb2SEric Biggers.. _fsverity_descriptor:
4086ff2deb2SEric Biggers
4096ff2deb2SEric Biggersfs-verity descriptor
4106ff2deb2SEric Biggers--------------------
4116ff2deb2SEric Biggers
4126ff2deb2SEric BiggersBy itself, the Merkle tree root hash is ambiguous.  For example, it
4136ff2deb2SEric Biggerscan't a distinguish a large file from a small second file whose data
4146ff2deb2SEric Biggersis exactly the top-level hash block of the first file.  Ambiguities
4156ff2deb2SEric Biggersalso arise from the convention of padding to the next block boundary.
4166ff2deb2SEric Biggers
417ed45e201SEric BiggersTo solve this problem, the fs-verity file digest is actually computed
418ed45e201SEric Biggersas a hash of the following structure, which contains the Merkle tree
419ed45e201SEric Biggersroot hash as well as other fields such as the file size::
4206ff2deb2SEric Biggers
4216ff2deb2SEric Biggers    struct fsverity_descriptor {
4226ff2deb2SEric Biggers            __u8 version;           /* must be 1 */
4236ff2deb2SEric Biggers            __u8 hash_algorithm;    /* Merkle tree hash algorithm */
4246ff2deb2SEric Biggers            __u8 log_blocksize;     /* log2 of size of data and tree blocks */
4256ff2deb2SEric Biggers            __u8 salt_size;         /* size of salt in bytes; 0 if none */
426bde49334SEric Biggers            __le32 __reserved_0x04; /* must be 0 */
4276ff2deb2SEric Biggers            __le64 data_size;       /* size of file the Merkle tree is built over */
4286ff2deb2SEric Biggers            __u8 root_hash[64];     /* Merkle tree root hash */
4296ff2deb2SEric Biggers            __u8 salt[32];          /* salt prepended to each hashed block */
4306ff2deb2SEric Biggers            __u8 __reserved[144];   /* must be 0's */
4316ff2deb2SEric Biggers    };
4326ff2deb2SEric Biggers
4336ff2deb2SEric BiggersBuilt-in signature verification
4346ff2deb2SEric Biggers===============================
4356ff2deb2SEric Biggers
4366ff2deb2SEric BiggersWith CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y, fs-verity supports putting
4376ff2deb2SEric Biggersa portion of an authentication policy (see `Use cases`_) in the
4386ff2deb2SEric Biggerskernel.  Specifically, it adds support for:
4396ff2deb2SEric Biggers
4406ff2deb2SEric Biggers1. At fs-verity module initialization time, a keyring ".fs-verity" is
4416ff2deb2SEric Biggers   created.  The root user can add trusted X.509 certificates to this
4426ff2deb2SEric Biggers   keyring using the add_key() system call, then (when done)
4436ff2deb2SEric Biggers   optionally use keyctl_restrict_keyring() to prevent additional
4446ff2deb2SEric Biggers   certificates from being added.
4456ff2deb2SEric Biggers
4466ff2deb2SEric Biggers2. `FS_IOC_ENABLE_VERITY`_ accepts a pointer to a PKCS#7 formatted
447ed45e201SEric Biggers   detached signature in DER format of the file's fs-verity digest.
448ed45e201SEric Biggers   On success, this signature is persisted alongside the Merkle tree.
4496ff2deb2SEric Biggers   Then, any time the file is opened, the kernel will verify the
450ed45e201SEric Biggers   file's actual digest against this signature, using the certificates
451ed45e201SEric Biggers   in the ".fs-verity" keyring.
4526ff2deb2SEric Biggers
4536ff2deb2SEric Biggers3. A new sysctl "fs.verity.require_signatures" is made available.
4546ff2deb2SEric Biggers   When set to 1, the kernel requires that all verity files have a
455ed45e201SEric Biggers   correctly signed digest as described in (2).
4566ff2deb2SEric Biggers
457ed45e201SEric Biggersfs-verity file digests must be signed in the following format, which
458ed45e201SEric Biggersis similar to the structure used by `FS_IOC_MEASURE_VERITY`_::
4596ff2deb2SEric Biggers
4609e90f30eSEric Biggers    struct fsverity_formatted_digest {
4616ff2deb2SEric Biggers            char magic[8];                  /* must be "FSVerity" */
4626ff2deb2SEric Biggers            __le16 digest_algorithm;
4636ff2deb2SEric Biggers            __le16 digest_size;
4646ff2deb2SEric Biggers            __u8 digest[];
4656ff2deb2SEric Biggers    };
4666ff2deb2SEric Biggers
4676ff2deb2SEric Biggersfs-verity's built-in signature verification support is meant as a
4686ff2deb2SEric Biggersrelatively simple mechanism that can be used to provide some level of
4696ff2deb2SEric Biggersauthenticity protection for verity files, as an alternative to doing
4706ff2deb2SEric Biggersthe signature verification in userspace or using IMA-appraisal.
4716ff2deb2SEric BiggersHowever, with this mechanism, userspace programs still need to check
4726ff2deb2SEric Biggersthat the verity bit is set, and there is no protection against verity
4736ff2deb2SEric Biggersfiles being swapped around.
4746ff2deb2SEric Biggers
4756ff2deb2SEric BiggersFilesystem support
4766ff2deb2SEric Biggers==================
4776ff2deb2SEric Biggers
4788da572c5SEric Biggersfs-verity is supported by several filesystems, described below.  The
4798da572c5SEric BiggersCONFIG_FS_VERITY kconfig option must be enabled to use fs-verity on
4808da572c5SEric Biggersany of these filesystems.
4816ff2deb2SEric Biggers
4826ff2deb2SEric Biggers``include/linux/fsverity.h`` declares the interface between the
4836ff2deb2SEric Biggers``fs/verity/`` support layer and filesystems.  Briefly, filesystems
4846ff2deb2SEric Biggersmust provide an ``fsverity_operations`` structure that provides
4856ff2deb2SEric Biggersmethods to read and write the verity metadata to a filesystem-specific
4866ff2deb2SEric Biggerslocation, including the Merkle tree blocks and
4876ff2deb2SEric Biggers``fsverity_descriptor``.  Filesystems must also call functions in
4886ff2deb2SEric Biggers``fs/verity/`` at certain times, such as when a file is opened or when
4896ff2deb2SEric Biggerspages have been read into the pagecache.  (See `Verifying data`_.)
4906ff2deb2SEric Biggers
4916ff2deb2SEric Biggersext4
4926ff2deb2SEric Biggers----
4936ff2deb2SEric Biggers
494c0d782a3SEric Biggersext4 supports fs-verity since Linux v5.4 and e2fsprogs v1.45.2.
4956ff2deb2SEric Biggers
4966ff2deb2SEric BiggersTo create verity files on an ext4 filesystem, the filesystem must have
4976ff2deb2SEric Biggersbeen formatted with ``-O verity`` or had ``tune2fs -O verity`` run on
4986ff2deb2SEric Biggersit.  "verity" is an RO_COMPAT filesystem feature, so once set, old
4996ff2deb2SEric Biggerskernels will only be able to mount the filesystem readonly, and old
500db85d14dSEric Biggersversions of e2fsck will be unable to check the filesystem.
501db85d14dSEric Biggers
502db85d14dSEric BiggersOriginally, an ext4 filesystem with the "verity" feature could only be
503db85d14dSEric Biggersmounted when its block size was equal to the system page size
504db85d14dSEric Biggers(typically 4096 bytes).  In Linux v6.3, this limitation was removed.
5056ff2deb2SEric Biggers
5066ff2deb2SEric Biggersext4 sets the EXT4_VERITY_FL on-disk inode flag on verity files.  It
5076ff2deb2SEric Biggerscan only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be cleared.
5086ff2deb2SEric Biggers
5096ff2deb2SEric Biggersext4 also supports encryption, which can be used simultaneously with
5106ff2deb2SEric Biggersfs-verity.  In this case, the plaintext data is verified rather than
511ed45e201SEric Biggersthe ciphertext.  This is necessary in order to make the fs-verity file
512ed45e201SEric Biggersdigest meaningful, since every file is encrypted differently.
5136ff2deb2SEric Biggers
5146ff2deb2SEric Biggersext4 stores the verity metadata (Merkle tree and fsverity_descriptor)
5156ff2deb2SEric Biggerspast the end of the file, starting at the first 64K boundary beyond
5166ff2deb2SEric Biggersi_size.  This approach works because (a) verity files are readonly,
5176ff2deb2SEric Biggersand (b) pages fully beyond i_size aren't visible to userspace but can
5186ff2deb2SEric Biggersbe read/written internally by ext4 with only some relatively small
5196ff2deb2SEric Biggerschanges to ext4.  This approach avoids having to depend on the
5206ff2deb2SEric BiggersEA_INODE feature and on rearchitecturing ext4's xattr support to
5216ff2deb2SEric Biggerssupport paging multi-gigabyte xattrs into memory, and to support
5226ff2deb2SEric Biggersencrypting xattrs.  Note that the verity metadata *must* be encrypted
5236ff2deb2SEric Biggerswhen the file is, since it contains hashes of the plaintext data.
5246ff2deb2SEric Biggers
52556124d6cSEric Biggersext4 only allows verity on extent-based files.
5266ff2deb2SEric Biggers
5276ff2deb2SEric Biggersf2fs
5286ff2deb2SEric Biggers----
5296ff2deb2SEric Biggers
530c0d782a3SEric Biggersf2fs supports fs-verity since Linux v5.4 and f2fs-tools v1.11.0.
5316ff2deb2SEric Biggers
5326ff2deb2SEric BiggersTo create verity files on an f2fs filesystem, the filesystem must have
5336ff2deb2SEric Biggersbeen formatted with ``-O verity``.
5346ff2deb2SEric Biggers
5356ff2deb2SEric Biggersf2fs sets the FADVISE_VERITY_BIT on-disk inode flag on verity files.
5366ff2deb2SEric BiggersIt can only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be
5376ff2deb2SEric Biggerscleared.
5386ff2deb2SEric Biggers
5396ff2deb2SEric BiggersLike ext4, f2fs stores the verity metadata (Merkle tree and
5406ff2deb2SEric Biggersfsverity_descriptor) past the end of the file, starting at the first
5416ff2deb2SEric Biggers64K boundary beyond i_size.  See explanation for ext4 above.
5426ff2deb2SEric BiggersMoreover, f2fs supports at most 4096 bytes of xattr entries per inode
54356124d6cSEric Biggerswhich usually wouldn't be enough for even a single Merkle tree block.
5446ff2deb2SEric Biggers
54556124d6cSEric Biggersf2fs doesn't support enabling verity on files that currently have
54656124d6cSEric Biggersatomic or volatile writes pending.
5476ff2deb2SEric Biggers
5488da572c5SEric Biggersbtrfs
5498da572c5SEric Biggers-----
5508da572c5SEric Biggers
5518da572c5SEric Biggersbtrfs supports fs-verity since Linux v5.15.  Verity-enabled inodes are
5528da572c5SEric Biggersmarked with a RO_COMPAT inode flag, and the verity metadata is stored
5538da572c5SEric Biggersin separate btree items.
5548da572c5SEric Biggers
5556ff2deb2SEric BiggersImplementation details
5566ff2deb2SEric Biggers======================
5576ff2deb2SEric Biggers
5586ff2deb2SEric BiggersVerifying data
5596ff2deb2SEric Biggers--------------
5606ff2deb2SEric Biggers
5616ff2deb2SEric Biggersfs-verity ensures that all reads of a verity file's data are verified,
5626ff2deb2SEric Biggersregardless of which syscall is used to do the read (e.g. mmap(),
5636ff2deb2SEric Biggersread(), pread()) and regardless of whether it's the first read or a
5646ff2deb2SEric Biggerslater read (unless the later read can return cached data that was
5656ff2deb2SEric Biggersalready verified).  Below, we describe how filesystems implement this.
5666ff2deb2SEric Biggers
5676ff2deb2SEric BiggersPagecache
5686ff2deb2SEric Biggers~~~~~~~~~
5696ff2deb2SEric Biggers
57008830c8bSMatthew Wilcox (Oracle)For filesystems using Linux's pagecache, the ``->read_folio()`` and
571*5d0f0e57SEric Biggers``->readahead()`` methods must be modified to verify folios before
572*5d0f0e57SEric Biggersthey are marked Uptodate.  Merely hooking ``->read_iter()`` would be
5736ff2deb2SEric Biggersinsufficient, since ``->read_iter()`` is not used for memory maps.
5746ff2deb2SEric Biggers
5755306892aSEric BiggersTherefore, fs/verity/ provides the function fsverity_verify_blocks()
5765306892aSEric Biggerswhich verifies data that has been read into the pagecache of a verity
577*5d0f0e57SEric Biggersinode.  The containing folio must still be locked and not Uptodate, so
5785306892aSEric Biggersit's not yet readable by userspace.  As needed to do the verification,
5795306892aSEric Biggersfsverity_verify_blocks() will call back into the filesystem to read
5805306892aSEric Biggershash blocks via fsverity_operations::read_merkle_tree_page().
5816ff2deb2SEric Biggers
5825306892aSEric Biggersfsverity_verify_blocks() returns false if verification failed; in this
583*5d0f0e57SEric Biggerscase, the filesystem must not set the folio Uptodate.  Following this,
5846ff2deb2SEric Biggersas per the usual Linux pagecache behavior, attempts by userspace to
585*5d0f0e57SEric Biggersread() from the part of the file containing the folio will fail with
586*5d0f0e57SEric BiggersEIO, and accesses to the folio within a memory map will raise SIGBUS.
5876ff2deb2SEric Biggers
5885306892aSEric BiggersIn principle, verifying a data block requires verifying the entire
5895306892aSEric Biggerspath in the Merkle tree from the data block to the root hash.
5905306892aSEric BiggersHowever, for efficiency the filesystem may cache the hash blocks.
5915306892aSEric BiggersTherefore, fsverity_verify_blocks() only ascends the tree reading hash
5925306892aSEric Biggersblocks until an already-verified hash block is seen.  It then verifies
5935306892aSEric Biggersthe path to that block.
5946ff2deb2SEric Biggers
5956ff2deb2SEric BiggersThis optimization, which is also used by dm-verity, results in
5966ff2deb2SEric Biggersexcellent sequential read performance.  This is because usually (e.g.
5975306892aSEric Biggers127 in 128 times for 4K blocks and SHA-256) the hash block from the
5986ff2deb2SEric Biggersbottom level of the tree will already be cached and checked from
5995306892aSEric Biggersreading a previous data block.  However, random reads perform worse.
6006ff2deb2SEric Biggers
6016ff2deb2SEric BiggersBlock device based filesystems
6026ff2deb2SEric Biggers~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6036ff2deb2SEric Biggers
6046ff2deb2SEric BiggersBlock device based filesystems (e.g. ext4 and f2fs) in Linux also use
6056ff2deb2SEric Biggersthe pagecache, so the above subsection applies too.  However, they
6065306892aSEric Biggersalso usually read many data blocks from a file at once, grouped into a
6076ff2deb2SEric Biggersstructure called a "bio".  To make it easier for these types of
6086ff2deb2SEric Biggersfilesystems to support fs-verity, fs/verity/ also provides a function
6095306892aSEric Biggersfsverity_verify_bio() which verifies all data blocks in a bio.
6106ff2deb2SEric Biggers
6116ff2deb2SEric Biggersext4 and f2fs also support encryption.  If a verity file is also
6125306892aSEric Biggersencrypted, the data must be decrypted before being verified.  To
6136ff2deb2SEric Biggerssupport this, these filesystems allocate a "post-read context" for
6146ff2deb2SEric Biggerseach bio and store it in ``->bi_private``::
6156ff2deb2SEric Biggers
6166ff2deb2SEric Biggers    struct bio_post_read_ctx {
6176ff2deb2SEric Biggers           struct bio *bio;
6186ff2deb2SEric Biggers           struct work_struct work;
6196ff2deb2SEric Biggers           unsigned int cur_step;
6206ff2deb2SEric Biggers           unsigned int enabled_steps;
6216ff2deb2SEric Biggers    };
6226ff2deb2SEric Biggers
6236ff2deb2SEric Biggers``enabled_steps`` is a bitmask that specifies whether decryption,
6246ff2deb2SEric Biggersverity, or both is enabled.  After the bio completes, for each needed
6256ff2deb2SEric Biggerspostprocessing step the filesystem enqueues the bio_post_read_ctx on a
6266ff2deb2SEric Biggersworkqueue, and then the workqueue work does the decryption or
627*5d0f0e57SEric Biggersverification.  Finally, folios where no decryption or verity error
628*5d0f0e57SEric Biggersoccurred are marked Uptodate, and the folios are unlocked.
6296ff2deb2SEric Biggers
6308da572c5SEric BiggersOn many filesystems, files can contain holes.  Normally,
6315306892aSEric Biggers``->readahead()`` simply zeroes hole blocks and considers the
6325306892aSEric Biggerscorresponding data to be up-to-date; no bios are issued.  To prevent
6335306892aSEric Biggersthis case from bypassing fs-verity, filesystems use
6345306892aSEric Biggersfsverity_verify_blocks() to verify hole blocks.
6356ff2deb2SEric Biggers
6368da572c5SEric BiggersFilesystems also disable direct I/O on verity files, since otherwise
6378da572c5SEric Biggersdirect I/O would bypass fs-verity.
6386ff2deb2SEric Biggers
6396ff2deb2SEric BiggersUserspace utility
6406ff2deb2SEric Biggers=================
6416ff2deb2SEric Biggers
6426ff2deb2SEric BiggersThis document focuses on the kernel, but a userspace utility for
6436ff2deb2SEric Biggersfs-verity can be found at:
6446ff2deb2SEric Biggers
645245edf44SEric Biggers	https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git
6466ff2deb2SEric Biggers
6476ff2deb2SEric BiggersSee the README.md file in the fsverity-utils source tree for details,
6486ff2deb2SEric Biggersincluding examples of setting up fs-verity protected files.
6496ff2deb2SEric Biggers
6506ff2deb2SEric BiggersTests
6516ff2deb2SEric Biggers=====
6526ff2deb2SEric Biggers
6536ff2deb2SEric BiggersTo test fs-verity, use xfstests.  For example, using `kvm-xfstests
6546ff2deb2SEric Biggers<https://github.com/tytso/xfstests-bld/blob/master/Documentation/kvm-quickstart.md>`_::
6556ff2deb2SEric Biggers
6568da572c5SEric Biggers    kvm-xfstests -c ext4,f2fs,btrfs -g verity
6576ff2deb2SEric Biggers
6586ff2deb2SEric BiggersFAQ
6596ff2deb2SEric Biggers===
6606ff2deb2SEric Biggers
6616ff2deb2SEric BiggersThis section answers frequently asked questions about fs-verity that
6626ff2deb2SEric Biggersweren't already directly answered in other parts of this document.
6636ff2deb2SEric Biggers
6646ff2deb2SEric Biggers:Q: Why isn't fs-verity part of IMA?
6656ff2deb2SEric Biggers:A: fs-verity and IMA (Integrity Measurement Architecture) have
6666ff2deb2SEric Biggers    different focuses.  fs-verity is a filesystem-level mechanism for
6676ff2deb2SEric Biggers    hashing individual files using a Merkle tree.  In contrast, IMA
6686ff2deb2SEric Biggers    specifies a system-wide policy that specifies which files are
6696ff2deb2SEric Biggers    hashed and what to do with those hashes, such as log them,
6706ff2deb2SEric Biggers    authenticate them, or add them to a measurement list.
6716ff2deb2SEric Biggers
67202ee2316SMimi Zohar    IMA supports the fs-verity hashing mechanism as an alternative
67302ee2316SMimi Zohar    to full file hashes, for those who want the performance and
67402ee2316SMimi Zohar    security benefits of the Merkle tree based hash.  However, it
67502ee2316SMimi Zohar    doesn't make sense to force all uses of fs-verity to be through
67602ee2316SMimi Zohar    IMA.  fs-verity already meets many users' needs even as a
67702ee2316SMimi Zohar    standalone filesystem feature, and it's testable like other
6786ff2deb2SEric Biggers    filesystem features e.g. with xfstests.
6796ff2deb2SEric Biggers
6806ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just modify the
6816ff2deb2SEric Biggers    hashes in the Merkle tree, which is stored on-disk?
6826ff2deb2SEric Biggers:A: To verify the authenticity of an fs-verity file you must verify
683ed45e201SEric Biggers    the authenticity of the "fs-verity file digest", which
684ed45e201SEric Biggers    incorporates the root hash of the Merkle tree.  See `Use cases`_.
6856ff2deb2SEric Biggers
6866ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just replace a
6876ff2deb2SEric Biggers    verity file with a non-verity one?
6886ff2deb2SEric Biggers:A: See `Use cases`_.  In the initial use case, it's really trusted
6896ff2deb2SEric Biggers    userspace code that authenticates the files; fs-verity is just a
6906ff2deb2SEric Biggers    tool to do this job efficiently and securely.  The trusted
6916ff2deb2SEric Biggers    userspace code will consider non-verity files to be inauthentic.
6926ff2deb2SEric Biggers
6936ff2deb2SEric Biggers:Q: Why does the Merkle tree need to be stored on-disk?  Couldn't you
6946ff2deb2SEric Biggers    store just the root hash?
6956ff2deb2SEric Biggers:A: If the Merkle tree wasn't stored on-disk, then you'd have to
6966ff2deb2SEric Biggers    compute the entire tree when the file is first accessed, even if
6976ff2deb2SEric Biggers    just one byte is being read.  This is a fundamental consequence of
6986ff2deb2SEric Biggers    how Merkle tree hashing works.  To verify a leaf node, you need to
6996ff2deb2SEric Biggers    verify the whole path to the root hash, including the root node
7006ff2deb2SEric Biggers    (the thing which the root hash is a hash of).  But if the root
7016ff2deb2SEric Biggers    node isn't stored on-disk, you have to compute it by hashing its
7026ff2deb2SEric Biggers    children, and so on until you've actually hashed the entire file.
7036ff2deb2SEric Biggers
7046ff2deb2SEric Biggers    That defeats most of the point of doing a Merkle tree-based hash,
7056ff2deb2SEric Biggers    since if you have to hash the whole file ahead of time anyway,
7066ff2deb2SEric Biggers    then you could simply do sha256(file) instead.  That would be much
7076ff2deb2SEric Biggers    simpler, and a bit faster too.
7086ff2deb2SEric Biggers
7096ff2deb2SEric Biggers    It's true that an in-memory Merkle tree could still provide the
7106ff2deb2SEric Biggers    advantage of verification on every read rather than just on the
7116ff2deb2SEric Biggers    first read.  However, it would be inefficient because every time a
7126ff2deb2SEric Biggers    hash page gets evicted (you can't pin the entire Merkle tree into
7136ff2deb2SEric Biggers    memory, since it may be very large), in order to restore it you
7146ff2deb2SEric Biggers    again need to hash everything below it in the tree.  This again
7156ff2deb2SEric Biggers    defeats most of the point of doing a Merkle tree-based hash, since
7166ff2deb2SEric Biggers    a single block read could trigger re-hashing gigabytes of data.
7176ff2deb2SEric Biggers
7186ff2deb2SEric Biggers:Q: But couldn't you store just the leaf nodes and compute the rest?
7196ff2deb2SEric Biggers:A: See previous answer; this really just moves up one level, since
7206ff2deb2SEric Biggers    one could alternatively interpret the data blocks as being the
7216ff2deb2SEric Biggers    leaf nodes of the Merkle tree.  It's true that the tree can be
7226ff2deb2SEric Biggers    computed much faster if the leaf level is stored rather than just
7236ff2deb2SEric Biggers    the data, but that's only because each level is less than 1% the
7246ff2deb2SEric Biggers    size of the level below (assuming the recommended settings of
7256ff2deb2SEric Biggers    SHA-256 and 4K blocks).  For the exact same reason, by storing
7266ff2deb2SEric Biggers    "just the leaf nodes" you'd already be storing over 99% of the
7276ff2deb2SEric Biggers    tree, so you might as well simply store the whole tree.
7286ff2deb2SEric Biggers
7296ff2deb2SEric Biggers:Q: Can the Merkle tree be built ahead of time, e.g. distributed as
7306ff2deb2SEric Biggers    part of a package that is installed to many computers?
7316ff2deb2SEric Biggers:A: This isn't currently supported.  It was part of the original
7326ff2deb2SEric Biggers    design, but was removed to simplify the kernel UAPI and because it
7336ff2deb2SEric Biggers    wasn't a critical use case.  Files are usually installed once and
7346ff2deb2SEric Biggers    used many times, and cryptographic hashing is somewhat fast on
7356ff2deb2SEric Biggers    most modern processors.
7366ff2deb2SEric Biggers
7376ff2deb2SEric Biggers:Q: Why doesn't fs-verity support writes?
7386ff2deb2SEric Biggers:A: Write support would be very difficult and would require a
7396ff2deb2SEric Biggers    completely different design, so it's well outside the scope of
7406ff2deb2SEric Biggers    fs-verity.  Write support would require:
7416ff2deb2SEric Biggers
7426ff2deb2SEric Biggers    - A way to maintain consistency between the data and hashes,
7436ff2deb2SEric Biggers      including all levels of hashes, since corruption after a crash
7446ff2deb2SEric Biggers      (especially of potentially the entire file!) is unacceptable.
7456ff2deb2SEric Biggers      The main options for solving this are data journalling,
7466ff2deb2SEric Biggers      copy-on-write, and log-structured volume.  But it's very hard to
7476ff2deb2SEric Biggers      retrofit existing filesystems with new consistency mechanisms.
7486ff2deb2SEric Biggers      Data journalling is available on ext4, but is very slow.
7496ff2deb2SEric Biggers
75059bc120eSRandy Dunlap    - Rebuilding the Merkle tree after every write, which would be
7516ff2deb2SEric Biggers      extremely inefficient.  Alternatively, a different authenticated
7526ff2deb2SEric Biggers      dictionary structure such as an "authenticated skiplist" could
7536ff2deb2SEric Biggers      be used.  However, this would be far more complex.
7546ff2deb2SEric Biggers
7556ff2deb2SEric Biggers    Compare it to dm-verity vs. dm-integrity.  dm-verity is very
7566ff2deb2SEric Biggers    simple: the kernel just verifies read-only data against a
7576ff2deb2SEric Biggers    read-only Merkle tree.  In contrast, dm-integrity supports writes
7586ff2deb2SEric Biggers    but is slow, is much more complex, and doesn't actually support
7596ff2deb2SEric Biggers    full-device authentication since it authenticates each sector
7606ff2deb2SEric Biggers    independently, i.e. there is no "root hash".  It doesn't really
7616ff2deb2SEric Biggers    make sense for the same device-mapper target to support these two
7626ff2deb2SEric Biggers    very different cases; the same applies to fs-verity.
7636ff2deb2SEric Biggers
7646ff2deb2SEric Biggers:Q: Since verity files are immutable, why isn't the immutable bit set?
7656ff2deb2SEric Biggers:A: The existing "immutable" bit (FS_IMMUTABLE_FL) already has a
7666ff2deb2SEric Biggers    specific set of semantics which not only make the file contents
7676ff2deb2SEric Biggers    read-only, but also prevent the file from being deleted, renamed,
7686ff2deb2SEric Biggers    linked to, or having its owner or mode changed.  These extra
7696ff2deb2SEric Biggers    properties are unwanted for fs-verity, so reusing the immutable
7706ff2deb2SEric Biggers    bit isn't appropriate.
7716ff2deb2SEric Biggers
7726ff2deb2SEric Biggers:Q: Why does the API use ioctls instead of setxattr() and getxattr()?
7736ff2deb2SEric Biggers:A: Abusing the xattr interface for basically arbitrary syscalls is
7746ff2deb2SEric Biggers    heavily frowned upon by most of the Linux filesystem developers.
7756ff2deb2SEric Biggers    An xattr should really just be an xattr on-disk, not an API to
7766ff2deb2SEric Biggers    e.g. magically trigger construction of a Merkle tree.
7776ff2deb2SEric Biggers
7786ff2deb2SEric Biggers:Q: Does fs-verity support remote filesystems?
7798da572c5SEric Biggers:A: So far all filesystems that have implemented fs-verity support are
7808da572c5SEric Biggers    local filesystems, but in principle any filesystem that can store
7818da572c5SEric Biggers    per-file verity metadata can support fs-verity, regardless of
7828da572c5SEric Biggers    whether it's local or remote.  Some filesystems may have fewer
7838da572c5SEric Biggers    options of where to store the verity metadata; one possibility is
7848da572c5SEric Biggers    to store it past the end of the file and "hide" it from userspace
7858da572c5SEric Biggers    by manipulating i_size.  The data verification functions provided
7868da572c5SEric Biggers    by ``fs/verity/`` also assume that the filesystem uses the Linux
7878da572c5SEric Biggers    pagecache, but both local and remote filesystems normally do so.
7886ff2deb2SEric Biggers
7896ff2deb2SEric Biggers:Q: Why is anything filesystem-specific at all?  Shouldn't fs-verity
7906ff2deb2SEric Biggers    be implemented entirely at the VFS level?
7916ff2deb2SEric Biggers:A: There are many reasons why this is not possible or would be very
7926ff2deb2SEric Biggers    difficult, including the following:
7936ff2deb2SEric Biggers
794*5d0f0e57SEric Biggers    - To prevent bypassing verification, folios must not be marked
7956ff2deb2SEric Biggers      Uptodate until they've been verified.  Currently, each
796*5d0f0e57SEric Biggers      filesystem is responsible for marking folios Uptodate via
797704528d8SMatthew Wilcox (Oracle)      ``->readahead()``.  Therefore, currently it's not possible for
7986ff2deb2SEric Biggers      the VFS to do the verification on its own.  Changing this would
7996ff2deb2SEric Biggers      require significant changes to the VFS and all filesystems.
8006ff2deb2SEric Biggers
8016ff2deb2SEric Biggers    - It would require defining a filesystem-independent way to store
8026ff2deb2SEric Biggers      the verity metadata.  Extended attributes don't work for this
8036ff2deb2SEric Biggers      because (a) the Merkle tree may be gigabytes, but many
8046ff2deb2SEric Biggers      filesystems assume that all xattrs fit into a single 4K
8056ff2deb2SEric Biggers      filesystem block, and (b) ext4 and f2fs encryption doesn't
8066ff2deb2SEric Biggers      encrypt xattrs, yet the Merkle tree *must* be encrypted when the
8076ff2deb2SEric Biggers      file contents are, because it stores hashes of the plaintext
8086ff2deb2SEric Biggers      file contents.
8096ff2deb2SEric Biggers
8106ff2deb2SEric Biggers      So the verity metadata would have to be stored in an actual
8116ff2deb2SEric Biggers      file.  Using a separate file would be very ugly, since the
8126ff2deb2SEric Biggers      metadata is fundamentally part of the file to be protected, and
8136ff2deb2SEric Biggers      it could cause problems where users could delete the real file
8146ff2deb2SEric Biggers      but not the metadata file or vice versa.  On the other hand,
8156ff2deb2SEric Biggers      having it be in the same file would break applications unless
8166ff2deb2SEric Biggers      filesystems' notion of i_size were divorced from the VFS's,
8176ff2deb2SEric Biggers      which would be complex and require changes to all filesystems.
8186ff2deb2SEric Biggers
8196ff2deb2SEric Biggers    - It's desirable that FS_IOC_ENABLE_VERITY uses the filesystem's
8206ff2deb2SEric Biggers      transaction mechanism so that either the file ends up with
8216ff2deb2SEric Biggers      verity enabled, or no changes were made.  Allowing intermediate
8226ff2deb2SEric Biggers      states to occur after a crash may cause problems.
823