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
41672d6ef4SEric BiggersBy itself, fs-verity only provides integrity protection, i.e.
42672d6ef4SEric Biggersdetection 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 BiggersA standard file hash could be used instead of fs-verity.  However,
506ff2deb2SEric Biggersthis is inefficient if the file is large and only a small portion may
516ff2deb2SEric Biggersbe accessed.  This is often the case for Android application package
526ff2deb2SEric Biggers(APK) files, for example.  These typically contain many translations,
536ff2deb2SEric Biggersclasses, and other resources that are infrequently or even never
546ff2deb2SEric Biggersaccessed on a particular device.  It would be slow and wasteful to
556ff2deb2SEric Biggersread and hash the entire file before starting the application.
566ff2deb2SEric Biggers
576ff2deb2SEric BiggersUnlike an ahead-of-time hash, fs-verity also re-verifies data each
586ff2deb2SEric Biggerstime it's paged in.  This ensures that malicious disk firmware can't
596ff2deb2SEric Biggersundetectably change the contents of the file at runtime.
606ff2deb2SEric Biggers
616ff2deb2SEric Biggersfs-verity does not replace or obsolete dm-verity.  dm-verity should
626ff2deb2SEric Biggersstill be used on read-only filesystems.  fs-verity is for files that
636ff2deb2SEric Biggersmust live on a read-write filesystem because they are independently
646ff2deb2SEric Biggersupdated and potentially user-installed, so dm-verity cannot be used.
656ff2deb2SEric Biggers
66672d6ef4SEric Biggersfs-verity does not mandate a particular scheme for authenticating its
67672d6ef4SEric Biggersfile hashes.  (Similarly, dm-verity does not mandate a particular
68672d6ef4SEric Biggersscheme for authenticating its block device root hashes.)  Options for
69672d6ef4SEric Biggersauthenticating fs-verity file hashes include:
7002ee2316SMimi Zohar
71672d6ef4SEric Biggers- Trusted userspace code.  Often, the userspace code that accesses
72672d6ef4SEric Biggers  files can be trusted to authenticate them.  Consider e.g. an
73672d6ef4SEric Biggers  application that wants to authenticate data files before using them,
74672d6ef4SEric Biggers  or an application loader that is part of the operating system (which
75672d6ef4SEric Biggers  is already authenticated in a different way, such as by being loaded
76672d6ef4SEric Biggers  from a read-only partition that uses dm-verity) and that wants to
77672d6ef4SEric Biggers  authenticate applications before loading them.  In these cases, this
78672d6ef4SEric Biggers  trusted userspace code can authenticate a file's contents by
79672d6ef4SEric Biggers  retrieving its fs-verity digest using `FS_IOC_MEASURE_VERITY`_, then
80672d6ef4SEric Biggers  verifying a signature of it using any userspace cryptographic
81672d6ef4SEric Biggers  library that supports digital signatures.
8202ee2316SMimi Zohar
83672d6ef4SEric Biggers- Integrity Measurement Architecture (IMA).  IMA supports fs-verity
84672d6ef4SEric Biggers  file digests as an alternative to its traditional full file digests.
85672d6ef4SEric Biggers  "IMA appraisal" enforces that files contain a valid, matching
86672d6ef4SEric Biggers  signature in their "security.ima" extended attribute, as controlled
87672d6ef4SEric Biggers  by the IMA policy.  For more information, see the IMA documentation.
8802ee2316SMimi Zohar
89672d6ef4SEric Biggers- Trusted userspace code in combination with `Built-in signature
90672d6ef4SEric Biggers  verification`_.  This approach should be used only with great care.
916ff2deb2SEric Biggers
926ff2deb2SEric BiggersUser API
936ff2deb2SEric Biggers========
946ff2deb2SEric Biggers
956ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY
966ff2deb2SEric Biggers--------------------
976ff2deb2SEric Biggers
986ff2deb2SEric BiggersThe FS_IOC_ENABLE_VERITY ioctl enables fs-verity on a file.  It takes
999303c9d5SMauro Carvalho Chehabin a pointer to a struct fsverity_enable_arg, defined as
1006ff2deb2SEric Biggersfollows::
1016ff2deb2SEric Biggers
1026ff2deb2SEric Biggers    struct fsverity_enable_arg {
1036ff2deb2SEric Biggers            __u32 version;
1046ff2deb2SEric Biggers            __u32 hash_algorithm;
1056ff2deb2SEric Biggers            __u32 block_size;
1066ff2deb2SEric Biggers            __u32 salt_size;
1076ff2deb2SEric Biggers            __u64 salt_ptr;
1086ff2deb2SEric Biggers            __u32 sig_size;
1096ff2deb2SEric Biggers            __u32 __reserved1;
1106ff2deb2SEric Biggers            __u64 sig_ptr;
1116ff2deb2SEric Biggers            __u64 __reserved2[11];
1126ff2deb2SEric Biggers    };
1136ff2deb2SEric Biggers
1146ff2deb2SEric BiggersThis structure contains the parameters of the Merkle tree to build for
115672d6ef4SEric Biggersthe file.  It must be initialized as 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.
132672d6ef4SEric Biggers- ``sig_size`` is the size of the builtin signature in bytes, or 0 if no
133672d6ef4SEric Biggers  builtin signature is provided.  Currently the builtin signature is
134672d6ef4SEric Biggers  (somewhat arbitrarily) limited to 16128 bytes.
135672d6ef4SEric Biggers- ``sig_ptr``  is the pointer to the builtin signature, or NULL if no
136672d6ef4SEric Biggers  builtin signature is provided.  A builtin signature is only needed
137672d6ef4SEric Biggers  if the `Built-in signature verification`_ feature is being used.  It
138672d6ef4SEric Biggers  is not needed for IMA appraisal, and it is not needed if the file
139672d6ef4SEric Biggers  signature is being handled entirely in userspace.
1406ff2deb2SEric Biggers- All reserved fields must be zeroed.
1416ff2deb2SEric Biggers
1426ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY causes the filesystem to build a Merkle tree for
1436ff2deb2SEric Biggersthe file and persist it to a filesystem-specific location associated
1446ff2deb2SEric Biggerswith the file, then mark the file as a verity file.  This ioctl may
1456ff2deb2SEric Biggerstake a long time to execute on large files, and it is interruptible by
1466ff2deb2SEric Biggersfatal signals.
1476ff2deb2SEric Biggers
1486ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY checks for write access to the inode.  However,
1496ff2deb2SEric Biggersit must be executed on an O_RDONLY file descriptor and no processes
1506ff2deb2SEric Biggerscan have the file open for writing.  Attempts to open the file for
1516ff2deb2SEric Biggerswriting while this ioctl is executing will fail with ETXTBSY.  (This
1526ff2deb2SEric Biggersis necessary to guarantee that no writable file descriptors will exist
1536ff2deb2SEric Biggersafter verity is enabled, and to guarantee that the file's contents are
1546ff2deb2SEric Biggersstable while the Merkle tree is being built over it.)
1556ff2deb2SEric Biggers
1566ff2deb2SEric BiggersOn success, FS_IOC_ENABLE_VERITY returns 0, and the file becomes a
1576ff2deb2SEric Biggersverity file.  On failure (including the case of interruption by a
1586ff2deb2SEric Biggersfatal signal), no changes are made to the file.
1596ff2deb2SEric Biggers
1606ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY can fail with the following errors:
1616ff2deb2SEric Biggers
1626ff2deb2SEric Biggers- ``EACCES``: the process does not have write access to the file
163672d6ef4SEric Biggers- ``EBADMSG``: the builtin signature is malformed
1646ff2deb2SEric Biggers- ``EBUSY``: this ioctl is already running on the file
1656ff2deb2SEric Biggers- ``EEXIST``: the file already has verity enabled
1666ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
16755eed69cSEric Biggers- ``EFBIG``: the file is too large to enable verity on
1686ff2deb2SEric Biggers- ``EINTR``: the operation was interrupted by a fatal signal
1696ff2deb2SEric Biggers- ``EINVAL``: unsupported version, hash algorithm, or block size; or
1706ff2deb2SEric Biggers  reserved bits are set; or the file descriptor refers to neither a
1716ff2deb2SEric Biggers  regular file nor a directory.
1726ff2deb2SEric Biggers- ``EISDIR``: the file descriptor refers to a directory
173672d6ef4SEric Biggers- ``EKEYREJECTED``: the builtin signature doesn't match the file
174672d6ef4SEric Biggers- ``EMSGSIZE``: the salt or builtin signature is too long
175672d6ef4SEric Biggers- ``ENOKEY``: the ".fs-verity" keyring doesn't contain the certificate
176672d6ef4SEric Biggers  needed to verify the builtin signature
1776ff2deb2SEric Biggers- ``ENOPKG``: fs-verity recognizes the hash algorithm, but it's not
1786ff2deb2SEric Biggers  available in the kernel's crypto API as currently configured (e.g.
1796ff2deb2SEric Biggers  for SHA-512, missing CONFIG_CRYPTO_SHA512).
1806ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
1816ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
1826ff2deb2SEric Biggers  support; or the filesystem superblock has not had the 'verity'
1836ff2deb2SEric Biggers  feature enabled on it; or the filesystem does not support fs-verity
1846ff2deb2SEric Biggers  on this file.  (See `Filesystem support`_.)
185672d6ef4SEric Biggers- ``EPERM``: the file is append-only; or, a builtin signature is
186672d6ef4SEric Biggers  required and one was not provided.
1876ff2deb2SEric Biggers- ``EROFS``: the filesystem is read-only
1886ff2deb2SEric Biggers- ``ETXTBSY``: someone has the file open for writing.  This can be the
1896ff2deb2SEric Biggers  caller's file descriptor, another open file descriptor, or the file
1906ff2deb2SEric Biggers  reference held by a writable memory map.
1916ff2deb2SEric Biggers
1926ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY
1936ff2deb2SEric Biggers---------------------
1946ff2deb2SEric Biggers
195ed45e201SEric BiggersThe FS_IOC_MEASURE_VERITY ioctl retrieves the digest of a verity file.
196ed45e201SEric BiggersThe fs-verity file digest is a cryptographic digest that identifies
197ed45e201SEric Biggersthe file contents that are being enforced on reads; it is computed via
198ed45e201SEric Biggersa Merkle tree and is different from a traditional full-file digest.
1996ff2deb2SEric Biggers
2006ff2deb2SEric BiggersThis ioctl takes in a pointer to a variable-length structure::
2016ff2deb2SEric Biggers
2026ff2deb2SEric Biggers    struct fsverity_digest {
2036ff2deb2SEric Biggers            __u16 digest_algorithm;
2046ff2deb2SEric Biggers            __u16 digest_size; /* input/output */
2056ff2deb2SEric Biggers            __u8 digest[];
2066ff2deb2SEric Biggers    };
2076ff2deb2SEric Biggers
2086ff2deb2SEric Biggers``digest_size`` is an input/output field.  On input, it must be
2096ff2deb2SEric Biggersinitialized to the number of bytes allocated for the variable-length
2106ff2deb2SEric Biggers``digest`` field.
2116ff2deb2SEric Biggers
2126ff2deb2SEric BiggersOn success, 0 is returned and the kernel fills in the structure as
2136ff2deb2SEric Biggersfollows:
2146ff2deb2SEric Biggers
2156ff2deb2SEric Biggers- ``digest_algorithm`` will be the hash algorithm used for the file
216ed45e201SEric Biggers  digest.  It will match ``fsverity_enable_arg::hash_algorithm``.
2176ff2deb2SEric Biggers- ``digest_size`` will be the size of the digest in bytes, e.g. 32
2186ff2deb2SEric Biggers  for SHA-256.  (This can be redundant with ``digest_algorithm``.)
2196ff2deb2SEric Biggers- ``digest`` will be the actual bytes of the digest.
2206ff2deb2SEric Biggers
2216ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY is guaranteed to execute in constant time,
2226ff2deb2SEric Biggersregardless of the size of the file.
2236ff2deb2SEric Biggers
2246ff2deb2SEric BiggersFS_IOC_MEASURE_VERITY can fail with the following errors:
2256ff2deb2SEric Biggers
2266ff2deb2SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
2276ff2deb2SEric Biggers- ``ENODATA``: the file is not a verity file
2286ff2deb2SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity
2296ff2deb2SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
2306ff2deb2SEric Biggers  support, or the filesystem superblock has not had the 'verity'
2316ff2deb2SEric Biggers  feature enabled on it.  (See `Filesystem support`_.)
2326ff2deb2SEric Biggers- ``EOVERFLOW``: the digest is longer than the specified
2336ff2deb2SEric Biggers  ``digest_size`` bytes.  Try providing a larger buffer.
2346ff2deb2SEric Biggers
235e17fe657SEric BiggersFS_IOC_READ_VERITY_METADATA
236e17fe657SEric Biggers---------------------------
237e17fe657SEric Biggers
238e17fe657SEric BiggersThe FS_IOC_READ_VERITY_METADATA ioctl reads verity metadata from a
239e17fe657SEric Biggersverity file.  This ioctl is available since Linux v5.12.
240e17fe657SEric Biggers
241e17fe657SEric BiggersThis ioctl allows writing a server program that takes a verity file
242e17fe657SEric Biggersand serves it to a client program, such that the client can do its own
243e17fe657SEric Biggersfs-verity compatible verification of the file.  This only makes sense
244e17fe657SEric Biggersif the client doesn't trust the server and if the server needs to
245e17fe657SEric Biggersprovide the storage for the client.
246e17fe657SEric Biggers
247e17fe657SEric BiggersThis is a fairly specialized use case, and most fs-verity users won't
248e17fe657SEric Biggersneed this ioctl.
249e17fe657SEric Biggers
250e17fe657SEric BiggersThis ioctl takes in a pointer to the following structure::
251e17fe657SEric Biggers
252622699cfSEric Biggers   #define FS_VERITY_METADATA_TYPE_MERKLE_TREE     1
253947191acSEric Biggers   #define FS_VERITY_METADATA_TYPE_DESCRIPTOR      2
25407c99001SEric Biggers   #define FS_VERITY_METADATA_TYPE_SIGNATURE       3
255622699cfSEric Biggers
256e17fe657SEric Biggers   struct fsverity_read_metadata_arg {
257e17fe657SEric Biggers           __u64 metadata_type;
258e17fe657SEric Biggers           __u64 offset;
259e17fe657SEric Biggers           __u64 length;
260e17fe657SEric Biggers           __u64 buf_ptr;
261e17fe657SEric Biggers           __u64 __reserved;
262e17fe657SEric Biggers   };
263e17fe657SEric Biggers
264622699cfSEric Biggers``metadata_type`` specifies the type of metadata to read:
265622699cfSEric Biggers
266622699cfSEric Biggers- ``FS_VERITY_METADATA_TYPE_MERKLE_TREE`` reads the blocks of the
267622699cfSEric Biggers  Merkle tree.  The blocks are returned in order from the root level
268622699cfSEric Biggers  to the leaf level.  Within each level, the blocks are returned in
269622699cfSEric Biggers  the same order that their hashes are themselves hashed.
270622699cfSEric Biggers  See `Merkle tree`_ for more information.
271e17fe657SEric Biggers
272947191acSEric Biggers- ``FS_VERITY_METADATA_TYPE_DESCRIPTOR`` reads the fs-verity
273947191acSEric Biggers  descriptor.  See `fs-verity descriptor`_.
274947191acSEric Biggers
275672d6ef4SEric Biggers- ``FS_VERITY_METADATA_TYPE_SIGNATURE`` reads the builtin signature
276672d6ef4SEric Biggers  which was passed to FS_IOC_ENABLE_VERITY, if any.  See `Built-in
277672d6ef4SEric Biggers  signature verification`_.
27807c99001SEric Biggers
279e17fe657SEric BiggersThe semantics are similar to those of ``pread()``.  ``offset``
280e17fe657SEric Biggersspecifies the offset in bytes into the metadata item to read from, and
281e17fe657SEric Biggers``length`` specifies the maximum number of bytes to read from the
282e17fe657SEric Biggersmetadata item.  ``buf_ptr`` is the pointer to the buffer to read into,
283e17fe657SEric Biggerscast to a 64-bit integer.  ``__reserved`` must be 0.  On success, the
284e17fe657SEric Biggersnumber of bytes read is returned.  0 is returned at the end of the
285e17fe657SEric Biggersmetadata item.  The returned length may be less than ``length``, for
286e17fe657SEric Biggersexample if the ioctl is interrupted.
287e17fe657SEric Biggers
288e17fe657SEric BiggersThe metadata returned by FS_IOC_READ_VERITY_METADATA isn't guaranteed
289e17fe657SEric Biggersto be authenticated against the file digest that would be returned by
290e17fe657SEric Biggers`FS_IOC_MEASURE_VERITY`_, as the metadata is expected to be used to
291e17fe657SEric Biggersimplement fs-verity compatible verification anyway (though absent a
292e17fe657SEric Biggersmalicious disk, the metadata will indeed match).  E.g. to implement
293e17fe657SEric Biggersthis ioctl, the filesystem is allowed to just read the Merkle tree
294e17fe657SEric Biggersblocks from disk without actually verifying the path to the root node.
295e17fe657SEric Biggers
296e17fe657SEric BiggersFS_IOC_READ_VERITY_METADATA can fail with the following errors:
297e17fe657SEric Biggers
298e17fe657SEric Biggers- ``EFAULT``: the caller provided inaccessible memory
299e17fe657SEric Biggers- ``EINTR``: the ioctl was interrupted before any data was read
300e17fe657SEric Biggers- ``EINVAL``: reserved fields were set, or ``offset + length``
301e17fe657SEric Biggers  overflowed
30207c99001SEric Biggers- ``ENODATA``: the file is not a verity file, or
30307c99001SEric Biggers  FS_VERITY_METADATA_TYPE_SIGNATURE was requested but the file doesn't
304672d6ef4SEric Biggers  have a builtin signature
305e17fe657SEric Biggers- ``ENOTTY``: this type of filesystem does not implement fs-verity, or
306e17fe657SEric Biggers  this ioctl is not yet implemented on it
307e17fe657SEric Biggers- ``EOPNOTSUPP``: the kernel was not configured with fs-verity
308e17fe657SEric Biggers  support, or the filesystem superblock has not had the 'verity'
309e17fe657SEric Biggers  feature enabled on it.  (See `Filesystem support`_.)
310e17fe657SEric Biggers
3116ff2deb2SEric BiggersFS_IOC_GETFLAGS
3126ff2deb2SEric Biggers---------------
3136ff2deb2SEric Biggers
3146ff2deb2SEric BiggersThe existing ioctl FS_IOC_GETFLAGS (which isn't specific to fs-verity)
3156ff2deb2SEric Biggerscan also be used to check whether a file has fs-verity enabled or not.
3166ff2deb2SEric BiggersTo do so, check for FS_VERITY_FL (0x00100000) in the returned flags.
3176ff2deb2SEric Biggers
3186ff2deb2SEric BiggersThe verity flag is not settable via FS_IOC_SETFLAGS.  You must use
3196ff2deb2SEric BiggersFS_IOC_ENABLE_VERITY instead, since parameters must be provided.
3206ff2deb2SEric Biggers
32173f0ec02SEric Biggersstatx
32273f0ec02SEric Biggers-----
32373f0ec02SEric Biggers
32473f0ec02SEric BiggersSince Linux v5.5, the statx() system call sets STATX_ATTR_VERITY if
32573f0ec02SEric Biggersthe file has fs-verity enabled.  This can perform better than
32673f0ec02SEric BiggersFS_IOC_GETFLAGS and FS_IOC_MEASURE_VERITY because it doesn't require
32773f0ec02SEric Biggersopening the file, and opening verity files can be expensive.
32873f0ec02SEric Biggers
329*ae8cba40SAlexander Larsson.. _accessing_verity_files:
330*ae8cba40SAlexander Larsson
3316ff2deb2SEric BiggersAccessing verity files
3326ff2deb2SEric Biggers======================
3336ff2deb2SEric Biggers
3346ff2deb2SEric BiggersApplications can transparently access a verity file just like a
3356ff2deb2SEric Biggersnon-verity one, with the following exceptions:
3366ff2deb2SEric Biggers
3376ff2deb2SEric Biggers- Verity files are readonly.  They cannot be opened for writing or
3386ff2deb2SEric Biggers  truncate()d, even if the file mode bits allow it.  Attempts to do
3396ff2deb2SEric Biggers  one of these things will fail with EPERM.  However, changes to
3406ff2deb2SEric Biggers  metadata such as owner, mode, timestamps, and xattrs are still
3416ff2deb2SEric Biggers  allowed, since these are not measured by fs-verity.  Verity files
3426ff2deb2SEric Biggers  can also still be renamed, deleted, and linked to.
3436ff2deb2SEric Biggers
3446ff2deb2SEric Biggers- Direct I/O is not supported on verity files.  Attempts to use direct
3456ff2deb2SEric Biggers  I/O on such files will fall back to buffered I/O.
3466ff2deb2SEric Biggers
3476ff2deb2SEric Biggers- DAX (Direct Access) is not supported on verity files, because this
3486ff2deb2SEric Biggers  would circumvent the data verification.
3496ff2deb2SEric Biggers
3506ff2deb2SEric Biggers- Reads of data that doesn't match the verity Merkle tree will fail
3516ff2deb2SEric Biggers  with EIO (for read()) or SIGBUS (for mmap() reads).
3526ff2deb2SEric Biggers
3536ff2deb2SEric Biggers- If the sysctl "fs.verity.require_signatures" is set to 1 and the
354672d6ef4SEric Biggers  file is not signed by a key in the ".fs-verity" keyring, then
355672d6ef4SEric Biggers  opening the file will fail.  See `Built-in signature verification`_.
3566ff2deb2SEric Biggers
3576ff2deb2SEric BiggersDirect access to the Merkle tree is not supported.  Therefore, if a
3586ff2deb2SEric Biggersverity file is copied, or is backed up and restored, then it will lose
3596ff2deb2SEric Biggersits "verity"-ness.  fs-verity is primarily meant for files like
3606ff2deb2SEric Biggersexecutables that are managed by a package manager.
3616ff2deb2SEric Biggers
362ed45e201SEric BiggersFile digest computation
363ed45e201SEric Biggers=======================
3646ff2deb2SEric Biggers
3656ff2deb2SEric BiggersThis section describes how fs-verity hashes the file contents using a
366ed45e201SEric BiggersMerkle tree to produce the digest which cryptographically identifies
367ed45e201SEric Biggersthe file contents.  This algorithm is the same for all filesystems
368ed45e201SEric Biggersthat support fs-verity.
3696ff2deb2SEric Biggers
3706ff2deb2SEric BiggersUserspace only needs to be aware of this algorithm if it needs to
371ed45e201SEric Biggerscompute fs-verity file digests itself, e.g. in order to sign files.
3726ff2deb2SEric Biggers
3736ff2deb2SEric Biggers.. _fsverity_merkle_tree:
3746ff2deb2SEric Biggers
3756ff2deb2SEric BiggersMerkle tree
3766ff2deb2SEric Biggers-----------
3776ff2deb2SEric Biggers
3786ff2deb2SEric BiggersThe file contents is divided into blocks, where the block size is
3796ff2deb2SEric Biggersconfigurable but is usually 4096 bytes.  The end of the last block is
3806ff2deb2SEric Biggerszero-padded if needed.  Each block is then hashed, producing the first
3816ff2deb2SEric Biggerslevel of hashes.  Then, the hashes in this first level are grouped
3826ff2deb2SEric Biggersinto 'blocksize'-byte blocks (zero-padding the ends as needed) and
3836ff2deb2SEric Biggersthese blocks are hashed, producing the second level of hashes.  This
3846ff2deb2SEric Biggersproceeds up the tree until only a single block remains.  The hash of
3856ff2deb2SEric Biggersthis block is the "Merkle tree root hash".
3866ff2deb2SEric Biggers
3876ff2deb2SEric BiggersIf the file fits in one block and is nonempty, then the "Merkle tree
3886ff2deb2SEric Biggersroot hash" is simply the hash of the single data block.  If the file
3896ff2deb2SEric Biggersis empty, then the "Merkle tree root hash" is all zeroes.
3906ff2deb2SEric Biggers
3916ff2deb2SEric BiggersThe "blocks" here are not necessarily the same as "filesystem blocks".
3926ff2deb2SEric Biggers
3936ff2deb2SEric BiggersIf a salt was specified, then it's zero-padded to the closest multiple
3946ff2deb2SEric Biggersof the input size of the hash algorithm's compression function, e.g.
3956ff2deb2SEric Biggers64 bytes for SHA-256 or 128 bytes for SHA-512.  The padded salt is
3966ff2deb2SEric Biggersprepended to every data or Merkle tree block that is hashed.
3976ff2deb2SEric Biggers
3986ff2deb2SEric BiggersThe purpose of the block padding is to cause every hash to be taken
3996ff2deb2SEric Biggersover the same amount of data, which simplifies the implementation and
4006ff2deb2SEric Biggerskeeps open more possibilities for hardware acceleration.  The purpose
4016ff2deb2SEric Biggersof the salt padding is to make the salting "free" when the salted hash
4026ff2deb2SEric Biggersstate is precomputed, then imported for each hash.
4036ff2deb2SEric Biggers
4046ff2deb2SEric BiggersExample: in the recommended configuration of SHA-256 and 4K blocks,
4056ff2deb2SEric Biggers128 hash values fit in each block.  Thus, each level of the Merkle
4066ff2deb2SEric Biggerstree is approximately 128 times smaller than the previous, and for
4076ff2deb2SEric Biggerslarge files the Merkle tree's size converges to approximately 1/127 of
4086ff2deb2SEric Biggersthe original file size.  However, for small files, the padding is
4096ff2deb2SEric Biggerssignificant, making the space overhead proportionally more.
4106ff2deb2SEric Biggers
4116ff2deb2SEric Biggers.. _fsverity_descriptor:
4126ff2deb2SEric Biggers
4136ff2deb2SEric Biggersfs-verity descriptor
4146ff2deb2SEric Biggers--------------------
4156ff2deb2SEric Biggers
4166ff2deb2SEric BiggersBy itself, the Merkle tree root hash is ambiguous.  For example, it
4176ff2deb2SEric Biggerscan't a distinguish a large file from a small second file whose data
4186ff2deb2SEric Biggersis exactly the top-level hash block of the first file.  Ambiguities
4196ff2deb2SEric Biggersalso arise from the convention of padding to the next block boundary.
4206ff2deb2SEric Biggers
421ed45e201SEric BiggersTo solve this problem, the fs-verity file digest is actually computed
422ed45e201SEric Biggersas a hash of the following structure, which contains the Merkle tree
423ed45e201SEric Biggersroot hash as well as other fields such as the file size::
4246ff2deb2SEric Biggers
4256ff2deb2SEric Biggers    struct fsverity_descriptor {
4266ff2deb2SEric Biggers            __u8 version;           /* must be 1 */
4276ff2deb2SEric Biggers            __u8 hash_algorithm;    /* Merkle tree hash algorithm */
4286ff2deb2SEric Biggers            __u8 log_blocksize;     /* log2 of size of data and tree blocks */
4296ff2deb2SEric Biggers            __u8 salt_size;         /* size of salt in bytes; 0 if none */
430bde49334SEric Biggers            __le32 __reserved_0x04; /* must be 0 */
4316ff2deb2SEric Biggers            __le64 data_size;       /* size of file the Merkle tree is built over */
4326ff2deb2SEric Biggers            __u8 root_hash[64];     /* Merkle tree root hash */
4336ff2deb2SEric Biggers            __u8 salt[32];          /* salt prepended to each hashed block */
4346ff2deb2SEric Biggers            __u8 __reserved[144];   /* must be 0's */
4356ff2deb2SEric Biggers    };
4366ff2deb2SEric Biggers
4376ff2deb2SEric BiggersBuilt-in signature verification
4386ff2deb2SEric Biggers===============================
4396ff2deb2SEric Biggers
440672d6ef4SEric BiggersCONFIG_FS_VERITY_BUILTIN_SIGNATURES=y adds supports for in-kernel
441672d6ef4SEric Biggersverification of fs-verity builtin signatures.
4426ff2deb2SEric Biggers
443672d6ef4SEric Biggers**IMPORTANT**!  Please take great care before using this feature.
444672d6ef4SEric BiggersIt is not the only way to do signatures with fs-verity, and the
445672d6ef4SEric Biggersalternatives (such as userspace signature verification, and IMA
446672d6ef4SEric Biggersappraisal) can be much better.  It's also easy to fall into a trap
447672d6ef4SEric Biggersof thinking this feature solves more problems than it actually does.
448672d6ef4SEric Biggers
449672d6ef4SEric BiggersEnabling this option adds the following:
450672d6ef4SEric Biggers
451672d6ef4SEric Biggers1. At boot time, the kernel creates a keyring named ".fs-verity".  The
452672d6ef4SEric Biggers   root user can add trusted X.509 certificates to this keyring using
453672d6ef4SEric Biggers   the add_key() system call.
4546ff2deb2SEric Biggers
4556ff2deb2SEric Biggers2. `FS_IOC_ENABLE_VERITY`_ accepts a pointer to a PKCS#7 formatted
456ed45e201SEric Biggers   detached signature in DER format of the file's fs-verity digest.
457672d6ef4SEric Biggers   On success, the ioctl persists the signature alongside the Merkle
458672d6ef4SEric Biggers   tree.  Then, any time the file is opened, the kernel verifies the
459ed45e201SEric Biggers   file's actual digest against this signature, using the certificates
460ed45e201SEric Biggers   in the ".fs-verity" keyring.
4616ff2deb2SEric Biggers
4626ff2deb2SEric Biggers3. A new sysctl "fs.verity.require_signatures" is made available.
4636ff2deb2SEric Biggers   When set to 1, the kernel requires that all verity files have a
464ed45e201SEric Biggers   correctly signed digest as described in (2).
4656ff2deb2SEric Biggers
466672d6ef4SEric BiggersThe data that the signature as described in (2) must be a signature of
467672d6ef4SEric Biggersis the fs-verity file digest in the following format::
4686ff2deb2SEric Biggers
4699e90f30eSEric Biggers    struct fsverity_formatted_digest {
4706ff2deb2SEric Biggers            char magic[8];                  /* must be "FSVerity" */
4716ff2deb2SEric Biggers            __le16 digest_algorithm;
4726ff2deb2SEric Biggers            __le16 digest_size;
4736ff2deb2SEric Biggers            __u8 digest[];
4746ff2deb2SEric Biggers    };
4756ff2deb2SEric Biggers
476672d6ef4SEric BiggersThat's it.  It should be emphasized again that fs-verity builtin
477672d6ef4SEric Biggerssignatures are not the only way to do signatures with fs-verity.  See
478672d6ef4SEric Biggers`Use cases`_ for an overview of ways in which fs-verity can be used.
479672d6ef4SEric Biggersfs-verity builtin signatures have some major limitations that should
480672d6ef4SEric Biggersbe carefully considered before using them:
481672d6ef4SEric Biggers
482672d6ef4SEric Biggers- Builtin signature verification does *not* make the kernel enforce
483672d6ef4SEric Biggers  that any files actually have fs-verity enabled.  Thus, it is not a
484672d6ef4SEric Biggers  complete authentication policy.  Currently, if it is used, the only
485672d6ef4SEric Biggers  way to complete the authentication policy is for trusted userspace
486672d6ef4SEric Biggers  code to explicitly check whether files have fs-verity enabled with a
487672d6ef4SEric Biggers  signature before they are accessed.  (With
488672d6ef4SEric Biggers  fs.verity.require_signatures=1, just checking whether fs-verity is
489672d6ef4SEric Biggers  enabled suffices.)  But, in this case the trusted userspace code
490672d6ef4SEric Biggers  could just store the signature alongside the file and verify it
491672d6ef4SEric Biggers  itself using a cryptographic library, instead of using this feature.
492672d6ef4SEric Biggers
493672d6ef4SEric Biggers- A file's builtin signature can only be set at the same time that
494672d6ef4SEric Biggers  fs-verity is being enabled on the file.  Changing or deleting the
495672d6ef4SEric Biggers  builtin signature later requires re-creating the file.
496672d6ef4SEric Biggers
497672d6ef4SEric Biggers- Builtin signature verification uses the same set of public keys for
498672d6ef4SEric Biggers  all fs-verity enabled files on the system.  Different keys cannot be
499672d6ef4SEric Biggers  trusted for different files; each key is all or nothing.
500672d6ef4SEric Biggers
501672d6ef4SEric Biggers- The sysctl fs.verity.require_signatures applies system-wide.
502672d6ef4SEric Biggers  Setting it to 1 only works when all users of fs-verity on the system
503672d6ef4SEric Biggers  agree that it should be set to 1.  This limitation can prevent
504672d6ef4SEric Biggers  fs-verity from being used in cases where it would be helpful.
505672d6ef4SEric Biggers
506672d6ef4SEric Biggers- Builtin signature verification can only use signature algorithms
507672d6ef4SEric Biggers  that are supported by the kernel.  For example, the kernel does not
508672d6ef4SEric Biggers  yet support Ed25519, even though this is often the signature
509672d6ef4SEric Biggers  algorithm that is recommended for new cryptographic designs.
510672d6ef4SEric Biggers
511672d6ef4SEric Biggers- fs-verity builtin signatures are in PKCS#7 format, and the public
512672d6ef4SEric Biggers  keys are in X.509 format.  These formats are commonly used,
513672d6ef4SEric Biggers  including by some other kernel features (which is why the fs-verity
514672d6ef4SEric Biggers  builtin signatures use them), and are very feature rich.
515672d6ef4SEric Biggers  Unfortunately, history has shown that code that parses and handles
516672d6ef4SEric Biggers  these formats (which are from the 1990s and are based on ASN.1)
517672d6ef4SEric Biggers  often has vulnerabilities as a result of their complexity.  This
518672d6ef4SEric Biggers  complexity is not inherent to the cryptography itself.
519672d6ef4SEric Biggers
520672d6ef4SEric Biggers  fs-verity users who do not need advanced features of X.509 and
521672d6ef4SEric Biggers  PKCS#7 should strongly consider using simpler formats, such as plain
522672d6ef4SEric Biggers  Ed25519 keys and signatures, and verifying signatures in userspace.
523672d6ef4SEric Biggers
524672d6ef4SEric Biggers  fs-verity users who choose to use X.509 and PKCS#7 anyway should
525672d6ef4SEric Biggers  still consider that verifying those signatures in userspace is more
526672d6ef4SEric Biggers  flexible (for other reasons mentioned earlier in this document) and
527672d6ef4SEric Biggers  eliminates the need to enable CONFIG_FS_VERITY_BUILTIN_SIGNATURES
528672d6ef4SEric Biggers  and its associated increase in kernel attack surface.  In some cases
529672d6ef4SEric Biggers  it can even be necessary, since advanced X.509 and PKCS#7 features
530672d6ef4SEric Biggers  do not always work as intended with the kernel.  For example, the
531672d6ef4SEric Biggers  kernel does not check X.509 certificate validity times.
532672d6ef4SEric Biggers
533672d6ef4SEric Biggers  Note: IMA appraisal, which supports fs-verity, does not use PKCS#7
534672d6ef4SEric Biggers  for its signatures, so it partially avoids the issues discussed
535672d6ef4SEric Biggers  here.  IMA appraisal does use X.509.
5366ff2deb2SEric Biggers
5376ff2deb2SEric BiggersFilesystem support
5386ff2deb2SEric Biggers==================
5396ff2deb2SEric Biggers
5408da572c5SEric Biggersfs-verity is supported by several filesystems, described below.  The
5418da572c5SEric BiggersCONFIG_FS_VERITY kconfig option must be enabled to use fs-verity on
5428da572c5SEric Biggersany of these filesystems.
5436ff2deb2SEric Biggers
5446ff2deb2SEric Biggers``include/linux/fsverity.h`` declares the interface between the
5456ff2deb2SEric Biggers``fs/verity/`` support layer and filesystems.  Briefly, filesystems
5466ff2deb2SEric Biggersmust provide an ``fsverity_operations`` structure that provides
5476ff2deb2SEric Biggersmethods to read and write the verity metadata to a filesystem-specific
5486ff2deb2SEric Biggerslocation, including the Merkle tree blocks and
5496ff2deb2SEric Biggers``fsverity_descriptor``.  Filesystems must also call functions in
5506ff2deb2SEric Biggers``fs/verity/`` at certain times, such as when a file is opened or when
5516ff2deb2SEric Biggerspages have been read into the pagecache.  (See `Verifying data`_.)
5526ff2deb2SEric Biggers
5536ff2deb2SEric Biggersext4
5546ff2deb2SEric Biggers----
5556ff2deb2SEric Biggers
556c0d782a3SEric Biggersext4 supports fs-verity since Linux v5.4 and e2fsprogs v1.45.2.
5576ff2deb2SEric Biggers
5586ff2deb2SEric BiggersTo create verity files on an ext4 filesystem, the filesystem must have
5596ff2deb2SEric Biggersbeen formatted with ``-O verity`` or had ``tune2fs -O verity`` run on
5606ff2deb2SEric Biggersit.  "verity" is an RO_COMPAT filesystem feature, so once set, old
5616ff2deb2SEric Biggerskernels will only be able to mount the filesystem readonly, and old
562db85d14dSEric Biggersversions of e2fsck will be unable to check the filesystem.
563db85d14dSEric Biggers
564db85d14dSEric BiggersOriginally, an ext4 filesystem with the "verity" feature could only be
565db85d14dSEric Biggersmounted when its block size was equal to the system page size
566db85d14dSEric Biggers(typically 4096 bytes).  In Linux v6.3, this limitation was removed.
5676ff2deb2SEric Biggers
5686ff2deb2SEric Biggersext4 sets the EXT4_VERITY_FL on-disk inode flag on verity files.  It
5696ff2deb2SEric Biggerscan only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be cleared.
5706ff2deb2SEric Biggers
5716ff2deb2SEric Biggersext4 also supports encryption, which can be used simultaneously with
5726ff2deb2SEric Biggersfs-verity.  In this case, the plaintext data is verified rather than
573ed45e201SEric Biggersthe ciphertext.  This is necessary in order to make the fs-verity file
574ed45e201SEric Biggersdigest meaningful, since every file is encrypted differently.
5756ff2deb2SEric Biggers
5766ff2deb2SEric Biggersext4 stores the verity metadata (Merkle tree and fsverity_descriptor)
5776ff2deb2SEric Biggerspast the end of the file, starting at the first 64K boundary beyond
5786ff2deb2SEric Biggersi_size.  This approach works because (a) verity files are readonly,
5796ff2deb2SEric Biggersand (b) pages fully beyond i_size aren't visible to userspace but can
5806ff2deb2SEric Biggersbe read/written internally by ext4 with only some relatively small
5816ff2deb2SEric Biggerschanges to ext4.  This approach avoids having to depend on the
5826ff2deb2SEric BiggersEA_INODE feature and on rearchitecturing ext4's xattr support to
5836ff2deb2SEric Biggerssupport paging multi-gigabyte xattrs into memory, and to support
5846ff2deb2SEric Biggersencrypting xattrs.  Note that the verity metadata *must* be encrypted
5856ff2deb2SEric Biggerswhen the file is, since it contains hashes of the plaintext data.
5866ff2deb2SEric Biggers
58756124d6cSEric Biggersext4 only allows verity on extent-based files.
5886ff2deb2SEric Biggers
5896ff2deb2SEric Biggersf2fs
5906ff2deb2SEric Biggers----
5916ff2deb2SEric Biggers
592c0d782a3SEric Biggersf2fs supports fs-verity since Linux v5.4 and f2fs-tools v1.11.0.
5936ff2deb2SEric Biggers
5946ff2deb2SEric BiggersTo create verity files on an f2fs filesystem, the filesystem must have
5956ff2deb2SEric Biggersbeen formatted with ``-O verity``.
5966ff2deb2SEric Biggers
5976ff2deb2SEric Biggersf2fs sets the FADVISE_VERITY_BIT on-disk inode flag on verity files.
5986ff2deb2SEric BiggersIt can only be set by `FS_IOC_ENABLE_VERITY`_, and it cannot be
5996ff2deb2SEric Biggerscleared.
6006ff2deb2SEric Biggers
6016ff2deb2SEric BiggersLike ext4, f2fs stores the verity metadata (Merkle tree and
6026ff2deb2SEric Biggersfsverity_descriptor) past the end of the file, starting at the first
6036ff2deb2SEric Biggers64K boundary beyond i_size.  See explanation for ext4 above.
6046ff2deb2SEric BiggersMoreover, f2fs supports at most 4096 bytes of xattr entries per inode
60556124d6cSEric Biggerswhich usually wouldn't be enough for even a single Merkle tree block.
6066ff2deb2SEric Biggers
60756124d6cSEric Biggersf2fs doesn't support enabling verity on files that currently have
60856124d6cSEric Biggersatomic or volatile writes pending.
6096ff2deb2SEric Biggers
6108da572c5SEric Biggersbtrfs
6118da572c5SEric Biggers-----
6128da572c5SEric Biggers
6138da572c5SEric Biggersbtrfs supports fs-verity since Linux v5.15.  Verity-enabled inodes are
6148da572c5SEric Biggersmarked with a RO_COMPAT inode flag, and the verity metadata is stored
6158da572c5SEric Biggersin separate btree items.
6168da572c5SEric Biggers
6176ff2deb2SEric BiggersImplementation details
6186ff2deb2SEric Biggers======================
6196ff2deb2SEric Biggers
6206ff2deb2SEric BiggersVerifying data
6216ff2deb2SEric Biggers--------------
6226ff2deb2SEric Biggers
6236ff2deb2SEric Biggersfs-verity ensures that all reads of a verity file's data are verified,
6246ff2deb2SEric Biggersregardless of which syscall is used to do the read (e.g. mmap(),
6256ff2deb2SEric Biggersread(), pread()) and regardless of whether it's the first read or a
6266ff2deb2SEric Biggerslater read (unless the later read can return cached data that was
6276ff2deb2SEric Biggersalready verified).  Below, we describe how filesystems implement this.
6286ff2deb2SEric Biggers
6296ff2deb2SEric BiggersPagecache
6306ff2deb2SEric Biggers~~~~~~~~~
6316ff2deb2SEric Biggers
63208830c8bSMatthew Wilcox (Oracle)For filesystems using Linux's pagecache, the ``->read_folio()`` and
6335d0f0e57SEric Biggers``->readahead()`` methods must be modified to verify folios before
6345d0f0e57SEric Biggersthey are marked Uptodate.  Merely hooking ``->read_iter()`` would be
6356ff2deb2SEric Biggersinsufficient, since ``->read_iter()`` is not used for memory maps.
6366ff2deb2SEric Biggers
6375306892aSEric BiggersTherefore, fs/verity/ provides the function fsverity_verify_blocks()
6385306892aSEric Biggerswhich verifies data that has been read into the pagecache of a verity
6395d0f0e57SEric Biggersinode.  The containing folio must still be locked and not Uptodate, so
6405306892aSEric Biggersit's not yet readable by userspace.  As needed to do the verification,
6415306892aSEric Biggersfsverity_verify_blocks() will call back into the filesystem to read
6425306892aSEric Biggershash blocks via fsverity_operations::read_merkle_tree_page().
6436ff2deb2SEric Biggers
6445306892aSEric Biggersfsverity_verify_blocks() returns false if verification failed; in this
6455d0f0e57SEric Biggerscase, the filesystem must not set the folio Uptodate.  Following this,
6466ff2deb2SEric Biggersas per the usual Linux pagecache behavior, attempts by userspace to
6475d0f0e57SEric Biggersread() from the part of the file containing the folio will fail with
6485d0f0e57SEric BiggersEIO, and accesses to the folio within a memory map will raise SIGBUS.
6496ff2deb2SEric Biggers
6505306892aSEric BiggersIn principle, verifying a data block requires verifying the entire
6515306892aSEric Biggerspath in the Merkle tree from the data block to the root hash.
6525306892aSEric BiggersHowever, for efficiency the filesystem may cache the hash blocks.
6535306892aSEric BiggersTherefore, fsverity_verify_blocks() only ascends the tree reading hash
6545306892aSEric Biggersblocks until an already-verified hash block is seen.  It then verifies
6555306892aSEric Biggersthe path to that block.
6566ff2deb2SEric Biggers
6576ff2deb2SEric BiggersThis optimization, which is also used by dm-verity, results in
6586ff2deb2SEric Biggersexcellent sequential read performance.  This is because usually (e.g.
6595306892aSEric Biggers127 in 128 times for 4K blocks and SHA-256) the hash block from the
6606ff2deb2SEric Biggersbottom level of the tree will already be cached and checked from
6615306892aSEric Biggersreading a previous data block.  However, random reads perform worse.
6626ff2deb2SEric Biggers
6636ff2deb2SEric BiggersBlock device based filesystems
6646ff2deb2SEric Biggers~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6656ff2deb2SEric Biggers
6666ff2deb2SEric BiggersBlock device based filesystems (e.g. ext4 and f2fs) in Linux also use
6676ff2deb2SEric Biggersthe pagecache, so the above subsection applies too.  However, they
6685306892aSEric Biggersalso usually read many data blocks from a file at once, grouped into a
6696ff2deb2SEric Biggersstructure called a "bio".  To make it easier for these types of
6706ff2deb2SEric Biggersfilesystems to support fs-verity, fs/verity/ also provides a function
6715306892aSEric Biggersfsverity_verify_bio() which verifies all data blocks in a bio.
6726ff2deb2SEric Biggers
6736ff2deb2SEric Biggersext4 and f2fs also support encryption.  If a verity file is also
6745306892aSEric Biggersencrypted, the data must be decrypted before being verified.  To
6756ff2deb2SEric Biggerssupport this, these filesystems allocate a "post-read context" for
6766ff2deb2SEric Biggerseach bio and store it in ``->bi_private``::
6776ff2deb2SEric Biggers
6786ff2deb2SEric Biggers    struct bio_post_read_ctx {
6796ff2deb2SEric Biggers           struct bio *bio;
6806ff2deb2SEric Biggers           struct work_struct work;
6816ff2deb2SEric Biggers           unsigned int cur_step;
6826ff2deb2SEric Biggers           unsigned int enabled_steps;
6836ff2deb2SEric Biggers    };
6846ff2deb2SEric Biggers
6856ff2deb2SEric Biggers``enabled_steps`` is a bitmask that specifies whether decryption,
6866ff2deb2SEric Biggersverity, or both is enabled.  After the bio completes, for each needed
6876ff2deb2SEric Biggerspostprocessing step the filesystem enqueues the bio_post_read_ctx on a
6886ff2deb2SEric Biggersworkqueue, and then the workqueue work does the decryption or
6895d0f0e57SEric Biggersverification.  Finally, folios where no decryption or verity error
6905d0f0e57SEric Biggersoccurred are marked Uptodate, and the folios are unlocked.
6916ff2deb2SEric Biggers
6928da572c5SEric BiggersOn many filesystems, files can contain holes.  Normally,
6935306892aSEric Biggers``->readahead()`` simply zeroes hole blocks and considers the
6945306892aSEric Biggerscorresponding data to be up-to-date; no bios are issued.  To prevent
6955306892aSEric Biggersthis case from bypassing fs-verity, filesystems use
6965306892aSEric Biggersfsverity_verify_blocks() to verify hole blocks.
6976ff2deb2SEric Biggers
6988da572c5SEric BiggersFilesystems also disable direct I/O on verity files, since otherwise
6998da572c5SEric Biggersdirect I/O would bypass fs-verity.
7006ff2deb2SEric Biggers
7016ff2deb2SEric BiggersUserspace utility
7026ff2deb2SEric Biggers=================
7036ff2deb2SEric Biggers
7046ff2deb2SEric BiggersThis document focuses on the kernel, but a userspace utility for
7056ff2deb2SEric Biggersfs-verity can be found at:
7066ff2deb2SEric Biggers
707245edf44SEric Biggers	https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git
7086ff2deb2SEric Biggers
7096ff2deb2SEric BiggersSee the README.md file in the fsverity-utils source tree for details,
7106ff2deb2SEric Biggersincluding examples of setting up fs-verity protected files.
7116ff2deb2SEric Biggers
7126ff2deb2SEric BiggersTests
7136ff2deb2SEric Biggers=====
7146ff2deb2SEric Biggers
7156ff2deb2SEric BiggersTo test fs-verity, use xfstests.  For example, using `kvm-xfstests
7166ff2deb2SEric Biggers<https://github.com/tytso/xfstests-bld/blob/master/Documentation/kvm-quickstart.md>`_::
7176ff2deb2SEric Biggers
7188da572c5SEric Biggers    kvm-xfstests -c ext4,f2fs,btrfs -g verity
7196ff2deb2SEric Biggers
7206ff2deb2SEric BiggersFAQ
7216ff2deb2SEric Biggers===
7226ff2deb2SEric Biggers
7236ff2deb2SEric BiggersThis section answers frequently asked questions about fs-verity that
7246ff2deb2SEric Biggersweren't already directly answered in other parts of this document.
7256ff2deb2SEric Biggers
7266ff2deb2SEric Biggers:Q: Why isn't fs-verity part of IMA?
7276ff2deb2SEric Biggers:A: fs-verity and IMA (Integrity Measurement Architecture) have
7286ff2deb2SEric Biggers    different focuses.  fs-verity is a filesystem-level mechanism for
7296ff2deb2SEric Biggers    hashing individual files using a Merkle tree.  In contrast, IMA
7306ff2deb2SEric Biggers    specifies a system-wide policy that specifies which files are
7316ff2deb2SEric Biggers    hashed and what to do with those hashes, such as log them,
7326ff2deb2SEric Biggers    authenticate them, or add them to a measurement list.
7336ff2deb2SEric Biggers
73402ee2316SMimi Zohar    IMA supports the fs-verity hashing mechanism as an alternative
73502ee2316SMimi Zohar    to full file hashes, for those who want the performance and
73602ee2316SMimi Zohar    security benefits of the Merkle tree based hash.  However, it
73702ee2316SMimi Zohar    doesn't make sense to force all uses of fs-verity to be through
73802ee2316SMimi Zohar    IMA.  fs-verity already meets many users' needs even as a
73902ee2316SMimi Zohar    standalone filesystem feature, and it's testable like other
7406ff2deb2SEric Biggers    filesystem features e.g. with xfstests.
7416ff2deb2SEric Biggers
7426ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just modify the
7436ff2deb2SEric Biggers    hashes in the Merkle tree, which is stored on-disk?
7446ff2deb2SEric Biggers:A: To verify the authenticity of an fs-verity file you must verify
745ed45e201SEric Biggers    the authenticity of the "fs-verity file digest", which
746ed45e201SEric Biggers    incorporates the root hash of the Merkle tree.  See `Use cases`_.
7476ff2deb2SEric Biggers
7486ff2deb2SEric Biggers:Q: Isn't fs-verity useless because the attacker can just replace a
7496ff2deb2SEric Biggers    verity file with a non-verity one?
7506ff2deb2SEric Biggers:A: See `Use cases`_.  In the initial use case, it's really trusted
7516ff2deb2SEric Biggers    userspace code that authenticates the files; fs-verity is just a
7526ff2deb2SEric Biggers    tool to do this job efficiently and securely.  The trusted
7536ff2deb2SEric Biggers    userspace code will consider non-verity files to be inauthentic.
7546ff2deb2SEric Biggers
7556ff2deb2SEric Biggers:Q: Why does the Merkle tree need to be stored on-disk?  Couldn't you
7566ff2deb2SEric Biggers    store just the root hash?
7576ff2deb2SEric Biggers:A: If the Merkle tree wasn't stored on-disk, then you'd have to
7586ff2deb2SEric Biggers    compute the entire tree when the file is first accessed, even if
7596ff2deb2SEric Biggers    just one byte is being read.  This is a fundamental consequence of
7606ff2deb2SEric Biggers    how Merkle tree hashing works.  To verify a leaf node, you need to
7616ff2deb2SEric Biggers    verify the whole path to the root hash, including the root node
7626ff2deb2SEric Biggers    (the thing which the root hash is a hash of).  But if the root
7636ff2deb2SEric Biggers    node isn't stored on-disk, you have to compute it by hashing its
7646ff2deb2SEric Biggers    children, and so on until you've actually hashed the entire file.
7656ff2deb2SEric Biggers
7666ff2deb2SEric Biggers    That defeats most of the point of doing a Merkle tree-based hash,
7676ff2deb2SEric Biggers    since if you have to hash the whole file ahead of time anyway,
7686ff2deb2SEric Biggers    then you could simply do sha256(file) instead.  That would be much
7696ff2deb2SEric Biggers    simpler, and a bit faster too.
7706ff2deb2SEric Biggers
7716ff2deb2SEric Biggers    It's true that an in-memory Merkle tree could still provide the
7726ff2deb2SEric Biggers    advantage of verification on every read rather than just on the
7736ff2deb2SEric Biggers    first read.  However, it would be inefficient because every time a
7746ff2deb2SEric Biggers    hash page gets evicted (you can't pin the entire Merkle tree into
7756ff2deb2SEric Biggers    memory, since it may be very large), in order to restore it you
7766ff2deb2SEric Biggers    again need to hash everything below it in the tree.  This again
7776ff2deb2SEric Biggers    defeats most of the point of doing a Merkle tree-based hash, since
7786ff2deb2SEric Biggers    a single block read could trigger re-hashing gigabytes of data.
7796ff2deb2SEric Biggers
7806ff2deb2SEric Biggers:Q: But couldn't you store just the leaf nodes and compute the rest?
7816ff2deb2SEric Biggers:A: See previous answer; this really just moves up one level, since
7826ff2deb2SEric Biggers    one could alternatively interpret the data blocks as being the
7836ff2deb2SEric Biggers    leaf nodes of the Merkle tree.  It's true that the tree can be
7846ff2deb2SEric Biggers    computed much faster if the leaf level is stored rather than just
7856ff2deb2SEric Biggers    the data, but that's only because each level is less than 1% the
7866ff2deb2SEric Biggers    size of the level below (assuming the recommended settings of
7876ff2deb2SEric Biggers    SHA-256 and 4K blocks).  For the exact same reason, by storing
7886ff2deb2SEric Biggers    "just the leaf nodes" you'd already be storing over 99% of the
7896ff2deb2SEric Biggers    tree, so you might as well simply store the whole tree.
7906ff2deb2SEric Biggers
7916ff2deb2SEric Biggers:Q: Can the Merkle tree be built ahead of time, e.g. distributed as
7926ff2deb2SEric Biggers    part of a package that is installed to many computers?
7936ff2deb2SEric Biggers:A: This isn't currently supported.  It was part of the original
7946ff2deb2SEric Biggers    design, but was removed to simplify the kernel UAPI and because it
7956ff2deb2SEric Biggers    wasn't a critical use case.  Files are usually installed once and
7966ff2deb2SEric Biggers    used many times, and cryptographic hashing is somewhat fast on
7976ff2deb2SEric Biggers    most modern processors.
7986ff2deb2SEric Biggers
7996ff2deb2SEric Biggers:Q: Why doesn't fs-verity support writes?
8006ff2deb2SEric Biggers:A: Write support would be very difficult and would require a
8016ff2deb2SEric Biggers    completely different design, so it's well outside the scope of
8026ff2deb2SEric Biggers    fs-verity.  Write support would require:
8036ff2deb2SEric Biggers
8046ff2deb2SEric Biggers    - A way to maintain consistency between the data and hashes,
8056ff2deb2SEric Biggers      including all levels of hashes, since corruption after a crash
8066ff2deb2SEric Biggers      (especially of potentially the entire file!) is unacceptable.
8076ff2deb2SEric Biggers      The main options for solving this are data journalling,
8086ff2deb2SEric Biggers      copy-on-write, and log-structured volume.  But it's very hard to
8096ff2deb2SEric Biggers      retrofit existing filesystems with new consistency mechanisms.
8106ff2deb2SEric Biggers      Data journalling is available on ext4, but is very slow.
8116ff2deb2SEric Biggers
81259bc120eSRandy Dunlap    - Rebuilding the Merkle tree after every write, which would be
8136ff2deb2SEric Biggers      extremely inefficient.  Alternatively, a different authenticated
8146ff2deb2SEric Biggers      dictionary structure such as an "authenticated skiplist" could
8156ff2deb2SEric Biggers      be used.  However, this would be far more complex.
8166ff2deb2SEric Biggers
8176ff2deb2SEric Biggers    Compare it to dm-verity vs. dm-integrity.  dm-verity is very
8186ff2deb2SEric Biggers    simple: the kernel just verifies read-only data against a
8196ff2deb2SEric Biggers    read-only Merkle tree.  In contrast, dm-integrity supports writes
8206ff2deb2SEric Biggers    but is slow, is much more complex, and doesn't actually support
8216ff2deb2SEric Biggers    full-device authentication since it authenticates each sector
8226ff2deb2SEric Biggers    independently, i.e. there is no "root hash".  It doesn't really
8236ff2deb2SEric Biggers    make sense for the same device-mapper target to support these two
8246ff2deb2SEric Biggers    very different cases; the same applies to fs-verity.
8256ff2deb2SEric Biggers
8266ff2deb2SEric Biggers:Q: Since verity files are immutable, why isn't the immutable bit set?
8276ff2deb2SEric Biggers:A: The existing "immutable" bit (FS_IMMUTABLE_FL) already has a
8286ff2deb2SEric Biggers    specific set of semantics which not only make the file contents
8296ff2deb2SEric Biggers    read-only, but also prevent the file from being deleted, renamed,
8306ff2deb2SEric Biggers    linked to, or having its owner or mode changed.  These extra
8316ff2deb2SEric Biggers    properties are unwanted for fs-verity, so reusing the immutable
8326ff2deb2SEric Biggers    bit isn't appropriate.
8336ff2deb2SEric Biggers
8346ff2deb2SEric Biggers:Q: Why does the API use ioctls instead of setxattr() and getxattr()?
8356ff2deb2SEric Biggers:A: Abusing the xattr interface for basically arbitrary syscalls is
8366ff2deb2SEric Biggers    heavily frowned upon by most of the Linux filesystem developers.
8376ff2deb2SEric Biggers    An xattr should really just be an xattr on-disk, not an API to
8386ff2deb2SEric Biggers    e.g. magically trigger construction of a Merkle tree.
8396ff2deb2SEric Biggers
8406ff2deb2SEric Biggers:Q: Does fs-verity support remote filesystems?
8418da572c5SEric Biggers:A: So far all filesystems that have implemented fs-verity support are
8428da572c5SEric Biggers    local filesystems, but in principle any filesystem that can store
8438da572c5SEric Biggers    per-file verity metadata can support fs-verity, regardless of
8448da572c5SEric Biggers    whether it's local or remote.  Some filesystems may have fewer
8458da572c5SEric Biggers    options of where to store the verity metadata; one possibility is
8468da572c5SEric Biggers    to store it past the end of the file and "hide" it from userspace
8478da572c5SEric Biggers    by manipulating i_size.  The data verification functions provided
8488da572c5SEric Biggers    by ``fs/verity/`` also assume that the filesystem uses the Linux
8498da572c5SEric Biggers    pagecache, but both local and remote filesystems normally do so.
8506ff2deb2SEric Biggers
8516ff2deb2SEric Biggers:Q: Why is anything filesystem-specific at all?  Shouldn't fs-verity
8526ff2deb2SEric Biggers    be implemented entirely at the VFS level?
8536ff2deb2SEric Biggers:A: There are many reasons why this is not possible or would be very
8546ff2deb2SEric Biggers    difficult, including the following:
8556ff2deb2SEric Biggers
8565d0f0e57SEric Biggers    - To prevent bypassing verification, folios must not be marked
8576ff2deb2SEric Biggers      Uptodate until they've been verified.  Currently, each
8585d0f0e57SEric Biggers      filesystem is responsible for marking folios Uptodate via
859704528d8SMatthew Wilcox (Oracle)      ``->readahead()``.  Therefore, currently it's not possible for
8606ff2deb2SEric Biggers      the VFS to do the verification on its own.  Changing this would
8616ff2deb2SEric Biggers      require significant changes to the VFS and all filesystems.
8626ff2deb2SEric Biggers
8636ff2deb2SEric Biggers    - It would require defining a filesystem-independent way to store
8646ff2deb2SEric Biggers      the verity metadata.  Extended attributes don't work for this
8656ff2deb2SEric Biggers      because (a) the Merkle tree may be gigabytes, but many
8666ff2deb2SEric Biggers      filesystems assume that all xattrs fit into a single 4K
8676ff2deb2SEric Biggers      filesystem block, and (b) ext4 and f2fs encryption doesn't
8686ff2deb2SEric Biggers      encrypt xattrs, yet the Merkle tree *must* be encrypted when the
8696ff2deb2SEric Biggers      file contents are, because it stores hashes of the plaintext
8706ff2deb2SEric Biggers      file contents.
8716ff2deb2SEric Biggers
8726ff2deb2SEric Biggers      So the verity metadata would have to be stored in an actual
8736ff2deb2SEric Biggers      file.  Using a separate file would be very ugly, since the
8746ff2deb2SEric Biggers      metadata is fundamentally part of the file to be protected, and
8756ff2deb2SEric Biggers      it could cause problems where users could delete the real file
8766ff2deb2SEric Biggers      but not the metadata file or vice versa.  On the other hand,
8776ff2deb2SEric Biggers      having it be in the same file would break applications unless
8786ff2deb2SEric Biggers      filesystems' notion of i_size were divorced from the VFS's,
8796ff2deb2SEric Biggers      which would be complex and require changes to all filesystems.
8806ff2deb2SEric Biggers
8816ff2deb2SEric Biggers    - It's desirable that FS_IOC_ENABLE_VERITY uses the filesystem's
8826ff2deb2SEric Biggers      transaction mechanism so that either the file ends up with
8836ff2deb2SEric Biggers      verity enabled, or no changes were made.  Allowing intermediate
8846ff2deb2SEric Biggers      states to occur after a crash may cause problems.
885