diff options
author | Eric Biggers <ebiggers@google.com> | 2020-12-03 03:20:37 +0100 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2020-12-03 03:25:01 +0100 |
commit | ec0caa974cd092549ab282deb8ec7ea73b36eba0 (patch) | |
tree | 9609384a2e6542df8862a9f2d903e62dbc4e10c8 /fs/ext4/namei.c | |
parent | ext4: don't call fscrypt_get_encryption_info() from dx_show_leaf() (diff) | |
download | linux-ec0caa974cd092549ab282deb8ec7ea73b36eba0.tar.xz linux-ec0caa974cd092549ab282deb8ec7ea73b36eba0.zip |
fscrypt: introduce fscrypt_prepare_readdir()
The last remaining use of fscrypt_get_encryption_info() from filesystems
is for readdir (->iterate_shared()). Every other call is now in
fs/crypto/ as part of some other higher-level operation.
We need to add a new argument to fscrypt_get_encryption_info() to
indicate whether the encryption policy is allowed to be unrecognized or
not. Doing this is easier if we can work with high-level operations
rather than direct filesystem use of fscrypt_get_encryption_info().
So add a function fscrypt_prepare_readdir() which wraps the call to
fscrypt_get_encryption_info() for the readdir use case.
Reviewed-by: Andreas Dilger <adilger@dilger.ca>
Link: https://lore.kernel.org/r/20201203022041.230976-6-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r-- | fs/ext4/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 7b31aea3e025..5fa8436cd5fa 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -1004,7 +1004,7 @@ static int htree_dirblock_to_tree(struct file *dir_file, EXT4_DIR_REC_LEN(0)); /* Check if the directory is encrypted */ if (IS_ENCRYPTED(dir)) { - err = fscrypt_get_encryption_info(dir); + err = fscrypt_prepare_readdir(dir); if (err < 0) { brelse(bh); return err; |