diff options
author | Eric Biggers <ebiggers@google.com> | 2019-07-22 19:26:22 +0300 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2019-07-29 02:59:16 +0300 |
commit | 8a1d0f9cacc997bedc017056a94f35dc823394ed (patch) | |
tree | 90d55ad08622ed954361629d906d11469919abae /fs/verity/Makefile | |
parent | c1d9b584e2cf3f0562d8fcf34574c044d17853a1 (diff) | |
download | linux-8a1d0f9cacc997bedc017056a94f35dc823394ed.tar.xz |
fs-verity: add data verification hooks for ->readpages()
Add functions that verify data pages that have been read from a
fs-verity file, against that file's Merkle tree. These will be called
from filesystems' ->readpage() and ->readpages() methods.
Since data verification can block, a workqueue is provided for these
methods to enqueue verification work from their bio completion callback.
See the "Verifying data" section of
Documentation/filesystems/fsverity.rst for more information.
Reviewed-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'fs/verity/Makefile')
-rw-r--r-- | fs/verity/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/verity/Makefile b/fs/verity/Makefile index e6a8951c493a..7fa628cd5eba 100644 --- a/fs/verity/Makefile +++ b/fs/verity/Makefile @@ -2,4 +2,5 @@ obj-$(CONFIG_FS_VERITY) += hash_algs.o \ init.o \ - open.o + open.o \ + verify.o |