diff options
author | Amir Goldstein <amir73il@gmail.com> | 2023-04-23 18:02:04 +0200 |
---|---|---|
committer | Amir Goldstein <amir73il@gmail.com> | 2023-08-12 18:02:47 +0200 |
commit | 16aac5ad1fa94894b798dd522c5c3a6a0628d7f0 (patch) | |
tree | 292889602a225cba9ad4399c6d9f63a5e14e04d5 /fs/overlayfs/ovl_entry.h | |
parent | ovl: Handle verity during copy-up (diff) | |
download | linux-16aac5ad1fa94894b798dd522c5c3a6a0628d7f0.tar.xz linux-16aac5ad1fa94894b798dd522c5c3a6a0628d7f0.zip |
ovl: support encoding non-decodable file handles
When all layers support file handles, we support encoding non-decodable
file handles (a.k.a. fid) even with nfs_export=off.
When file handles do not need to be decoded, we do not need to copy up
redirected lower directories on encode, and we encode also non-indexed
upper with lower file handle, so fid will not change on copy up.
This enables reporting fanotify events with file handles on overlayfs
with default config/mount options.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Diffstat (limited to 'fs/overlayfs/ovl_entry.h')
-rw-r--r-- | fs/overlayfs/ovl_entry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/overlayfs/ovl_entry.h b/fs/overlayfs/ovl_entry.h index e999c73fb0c3..7a5196c94d75 100644 --- a/fs/overlayfs/ovl_entry.h +++ b/fs/overlayfs/ovl_entry.h @@ -82,6 +82,7 @@ struct ovl_fs { const struct cred *creator_cred; bool tmpfile; bool noxattr; + bool nofh; /* Did we take the inuse lock? */ bool upperdir_locked; bool workdir_locked; |