[RFC PATCH 2/2] init: support pinning the root image's fsverity digest

From: Eric Curtin

Date: Sat Jul 18 2026 - 15:17:06 EST


When the root filesystem is mounted from an image file with rootimage=,
the carrier filesystem holding the image is typically writable and
therefore untrusted. Systems that seal their root images with fsverity
currently need an initramfs for the sole purpose of checking that the
image carries the expected fsverity digest before mounting it.

Add rootimageverity=<hash algorithm>:<hex digest>, which requires the
rootimage= file to have fsverity enabled with exactly this file digest
and fails the boot otherwise, using the same fsverity_get_digest()
interface that IMA and overlayfs already use for digest pinning.

Combined with a trusted kernel command line (e.g. a signed unified
kernel image, or a TPM-measured bootloader configuration), this extends
the chain of trust to every byte of the root filesystem without any
userspace boot stage: the digest pins the image's Merkle tree, and
fsverity keeps verifying all data read from the image against it at
runtime, so post-boot tampering with the carrier filesystem is detected
as well. It is the file-backed counterpart of setting up a dm-verity
target for a partition-backed root via dm-mod.create=.

Verification is done on the file the kernel is about to mount: it is
opened before mounting (which also loads the fsverity information) and
kept open across the mount, and no userspace exists yet that could race
a replacement in between.

Assisted-by: opencode:claude-fable-5
Signed-off-by: Eric Curtin <ericcurtin17@xxxxxxxxx>
---
.../admin-guide/kernel-parameters.txt | 13 ++++
init/do_mounts.c | 63 +++++++++++++++++++
2 files changed, 76 insertions(+)

diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index 5dbd56098..105ebb171 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -6728,6 +6728,19 @@ Kernel parameters
root=) is moved to, instead of detaching it. Used
together with rootimage=.

+ rootimageverity= [KNL] Require the root image specified by
+ rootimage= to have fsverity enabled with this file
+ digest, given as <hash algorithm>:<hex digest>,
+ e.g. sha256:dd1b3fa9... The boot is aborted if the
+ image carries no or a different fsverity digest.
+ Because fsverity keeps verifying data read from the
+ image against its Merkle tree at runtime, a trusted
+ (e.g. signed or TPM-measured) kernel command line
+ extends the chain of trust to the complete root
+ filesystem contents without an initramfs. Requires
+ CONFIG_FS_VERITY and a carrier filesystem with
+ fsverity support.
+
rootwait [KNL] Wait (indefinitely) for root device to show up.
Useful for devices that are detected asynchronously
(e.g. USB and MMC devices).
diff --git a/init/do_mounts.c b/init/do_mounts.c
index 1b96ef30b..4eb792b27 100644
--- a/init/do_mounts.c
+++ b/init/do_mounts.c
@@ -24,6 +24,9 @@
#include <linux/nfs_fs_sb.h>
#include <linux/nfs_mount.h>
#include <linux/raid/detect.h>
+#include <linux/fsverity.h>
+#include <linux/hex.h>
+#include <crypto/hash_info.h>
#include <uapi/linux/mount.h>

#include "do_mounts.h"
@@ -155,10 +158,18 @@ static int __init root_image_srcdir_setup(char *str)
return 1;
}

+static char * __initdata root_image_verity;
+static int __init root_image_verity_setup(char *str)
+{
+ root_image_verity = str;
+ return 1;
+}
+
__setup("rootimage=", root_image_setup);
__setup("rootimagefstype=", root_image_fs_names_setup);
__setup("rootimageflags=", root_image_data_setup);
__setup("rootimagesrcdir=", root_image_srcdir_setup);
+__setup("rootimageverity=", root_image_verity_setup);

/* This can return zero length strings. Caller should check */
static int __init split_fs_names(char *page, size_t size, char *names)
@@ -442,6 +453,55 @@ void __init mount_root(char *root_device_name)
}
}

+#ifdef CONFIG_FS_VERITY
+/*
+ * Require the root image to carry the fsverity file digest given by
+ * rootimageverity=<hash algorithm>:<hex digest>. @file must have been
+ * opened so that its fsverity information is loaded. Any deviation
+ * fails the boot: with a trusted command line this pins the complete
+ * image contents, which fsverity keeps verifying against the image's
+ * Merkle tree as they are read.
+ */
+static void __init verify_root_image(struct file *file)
+{
+ u8 want[FS_VERITY_MAX_DIGEST_SIZE], got[FS_VERITY_MAX_DIGEST_SIZE];
+ enum hash_algo want_algo, got_algo;
+ int want_size, got_size, i;
+ char *hex;
+
+ hex = strchr(root_image_verity, ':');
+ if (!hex)
+ panic("VFS: rootimageverity= expects <algorithm>:<hex digest>");
+ *hex++ = '\0';
+ i = match_string(hash_algo_name, HASH_ALGO__LAST, root_image_verity);
+ if (i < 0)
+ panic("VFS: rootimageverity=: unknown hash algorithm \"%s\"",
+ root_image_verity);
+ want_algo = i;
+ want_size = hash_digest_size[want_algo];
+ if (strlen(hex) != 2 * want_size || hex2bin(want, hex, want_size))
+ panic("VFS: rootimageverity=: expected %d-byte hex digest",
+ want_size);
+
+ got_size = fsverity_get_digest(file_inode(file), got, NULL, &got_algo);
+ if (!got_size)
+ panic("VFS: root image does not have fsverity enabled");
+ if (got_algo != want_algo || got_size != want_size ||
+ memcmp(want, got, want_size))
+ panic("VFS: root image fsverity digest mismatch: expected %s:%*phN, got %s:%*phN",
+ hash_algo_name[want_algo], want_size, want,
+ hash_algo_name[got_algo], got_size, got);
+
+ pr_info("VFS: verified root image fsverity digest %s:%*phN\n",
+ hash_algo_name[want_algo], want_size, want);
+}
+#else /* !CONFIG_FS_VERITY */
+static void __init verify_root_image(struct file *file)
+{
+ panic("VFS: rootimageverity= requires CONFIG_FS_VERITY");
+}
+#endif /* !CONFIG_FS_VERITY */
+
/*
* Mount the actual root filesystem from the image file rootimage= on the
* filesystem that was just mounted from root= (the "carrier"), so that
@@ -481,6 +541,9 @@ static void __init mount_root_image(void)
panic("VFS: unable to open root image %s: error %ld",
root_image, PTR_ERR(file));

+ if (root_image_verity)
+ verify_root_image(file);
+
err = init_mkdir("/image", 0700);
if (err < 0 && err != -EEXIST)
panic("VFS: unable to create /image: error %d", err);
--
2.43.0