* [RFC PATCH 0/2] ceph: fscrypt: fix atomic open bug for encrypted directories
@ 2023-03-09 12:19 Luís Henriques
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
2023-03-09 12:19 ` [RFC PATCH 2/2] ceph: switch atomic open to use new fscrypt helper Luís Henriques
0 siblings, 2 replies; 8+ messages in thread
From: Luís Henriques @ 2023-03-09 12:19 UTC (permalink / raw)
To: Eric Biggers, Xiubo Li, Jeff Layton
Cc: Theodore Y. Ts'o, Jaegeuk Kim, Ilya Dryomov, linux-fscrypt,
ceph-devel, linux-kernel, Luís Henriques
Hi!
I started seeing fstest generic/123 failing in ceph fscrypt, when running it
with 'test_dummy_encryption'. This test is quite simple:
1. Creates a directory with write permissions for root only
2. Writes into a file in that directory
3. Uses 'su' to try to modify that file as a different user, and
gets -EPERM
All the test steps succeed, but the test fails to cleanup: 'rm -rf <dir>'
will fail with -ENOTEMPTY. 'strace' shows that calling unlinkat() to remove
the file got a -ENOENT and then -ENOTEMPTY for the directory.
This is because 'su' does a drop_caches ('su (874): drop_caches: 2' in
dmesg), and ceph's atomic open will do:
if (IS_ENCRYPTED(dir)) {
set_bit(CEPH_MDS_R_FSCRYPT_FILE, &req->r_req_flags);
if (!fscrypt_has_encryption_key(dir)) {
spin_lock(&dentry->d_lock);
dentry->d_flags |= DCACHE_NOKEY_NAME;
spin_unlock(&dentry->d_lock);
}
}
Although 'dir' has the encryption key available, fscrypt_has_encryption_key()
will return 'false' because fscrypt info isn't yet set after the cache
cleanup.
The first patch will add a new helper for the atomic_open that will force
the fscrypt info to be loaded into an inode that has been evicted recently
but for which the key is still available.
The second patch switches ceph atomic_open to use the new fscrypt helper.
Cheers,
--
Luís Henriques
Luís Henriques (2):
fscrypt: new helper function - __fscrypt_prepare_atomic_open()
ceph: switch atomic open to use new fscrypt helper
fs/ceph/file.c | 8 +++-----
fs/crypto/hooks.c | 14 ++++++++++++++
include/linux/fscrypt.h | 6 ++++++
3 files changed, 23 insertions(+), 5 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread* [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
2023-03-09 12:19 [RFC PATCH 0/2] ceph: fscrypt: fix atomic open bug for encrypted directories Luís Henriques
@ 2023-03-09 12:19 ` Luís Henriques
2023-03-09 13:37 ` kernel test robot
` (2 more replies)
2023-03-09 12:19 ` [RFC PATCH 2/2] ceph: switch atomic open to use new fscrypt helper Luís Henriques
1 sibling, 3 replies; 8+ messages in thread
From: Luís Henriques @ 2023-03-09 12:19 UTC (permalink / raw)
To: Eric Biggers, Xiubo Li, Jeff Layton
Cc: Theodore Y. Ts'o, Jaegeuk Kim, Ilya Dryomov, linux-fscrypt,
ceph-devel, linux-kernel, Luís Henriques
This patch introduces a new helper function which prepares an atomic_open.
Because atomic open can act as a lookup if handed a dentry that is negative,
we need to set DCACHE_NOKEY_NAME if the key for the parent isn't available.
The reason for getting the encryption info before checking if the directory
has the encryption key is because we may have the key available but the
encryption info isn't yet set (maybe due to a drop_caches). The regular
open path will use fscrypt_file_open for that but in the atomic open a
different approach is required.
Signed-off-by: Luís Henriques <lhenriques@suse.de>
---
fs/crypto/hooks.c | 14 ++++++++++++++
include/linux/fscrypt.h | 6 ++++++
2 files changed, 20 insertions(+)
diff --git a/fs/crypto/hooks.c b/fs/crypto/hooks.c
index 7b8c5a1104b5..cbb828ecc5eb 100644
--- a/fs/crypto/hooks.c
+++ b/fs/crypto/hooks.c
@@ -117,6 +117,20 @@ int __fscrypt_prepare_readdir(struct inode *dir)
}
EXPORT_SYMBOL_GPL(__fscrypt_prepare_readdir);
+int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
+{
+ int err = fscrypt_get_encryption_info(dir, true);
+
+ if (err || (!err && !fscrypt_has_encryption_key(dir))) {
+ spin_lock(&dentry->d_lock);
+ dentry->d_flags |= DCACHE_NOKEY_NAME;
+ spin_unlock(&dentry->d_lock);
+ }
+
+ return err;
+}
+EXPORT_SYMBOL_GPL(__fscrypt_prepare_atomic_open);
+
int __fscrypt_prepare_setattr(struct dentry *dentry, struct iattr *attr)
{
if (attr->ia_valid & ATTR_SIZE)
diff --git a/include/linux/fscrypt.h b/include/linux/fscrypt.h
index 4f5f8a651213..51c4b216a625 100644
--- a/include/linux/fscrypt.h
+++ b/include/linux/fscrypt.h
@@ -362,6 +362,7 @@ int __fscrypt_prepare_rename(struct inode *old_dir, struct dentry *old_dentry,
int __fscrypt_prepare_lookup(struct inode *dir, struct dentry *dentry,
struct fscrypt_name *fname);
int __fscrypt_prepare_readdir(struct inode *dir);
+int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry);
int __fscrypt_prepare_setattr(struct dentry *dentry, struct iattr *attr);
int fscrypt_prepare_setflags(struct inode *inode,
unsigned int oldflags, unsigned int flags);
@@ -688,6 +689,11 @@ static inline int __fscrypt_prepare_readdir(struct inode *dir)
return -EOPNOTSUPP;
}
+int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
+{
+ return -EOPNOTSUPP;
+}
+
static inline int __fscrypt_prepare_setattr(struct dentry *dentry,
struct iattr *attr)
{
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
@ 2023-03-09 13:37 ` kernel test robot
2023-03-09 16:02 ` Luís Henriques
2023-03-09 18:23 ` Eric Biggers
2023-03-09 21:31 ` kernel test robot
2 siblings, 1 reply; 8+ messages in thread
From: kernel test robot @ 2023-03-09 13:37 UTC (permalink / raw)
To: Luís Henriques; +Cc: oe-kbuild-all
Hi Luís,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on ceph-client/testing]
[also build test ERROR on ceph-client/for-linus linus/master v6.3-rc1 next-20230309]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Lu-s-Henriques/fscrypt-new-helper-function-__fscrypt_prepare_atomic_open/20230309-202021
base: https://github.com/ceph/ceph-client.git testing
patch link: https://lore.kernel.org/r/20230309121910.18939-2-lhenriques%40suse.de
patch subject: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
config: i386-tinyconfig (https://download.01.org/0day-ci/archive/20230309/202303092108.lUCfozm1-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/bc0e93e713bcb2b95af1bcb4ac369a7fe3a72863
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Lu-s-Henriques/fscrypt-new-helper-function-__fscrypt_prepare_atomic_open/20230309-202021
git checkout bc0e93e713bcb2b95af1bcb4ac369a7fe3a72863
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=i386 olddefconfig
make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303092108.lUCfozm1-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
In file included from fs/super.c:34:
>> include/linux/fscrypt.h:692:5: warning: no previous prototype for '__fscrypt_prepare_atomic_open' [-Wmissing-prototypes]
692 | int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
ld: fs/ioctl.o: in function `__fscrypt_prepare_atomic_open':
>> ioctl.c:(.text+0x10a): multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:super.c:(.text+0x461): first defined here
ld: fs/dcache.o: in function `__fscrypt_prepare_atomic_open':
dcache.c:(.text+0x897): multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:super.c:(.text+0x461): first defined here
ld: fs/libfs.o: in function `__fscrypt_prepare_atomic_open':
libfs.c:(.text+0x782): multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:super.c:(.text+0x461): first defined here
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
2023-03-09 13:37 ` kernel test robot
@ 2023-03-09 18:23 ` Eric Biggers
2023-03-10 12:05 ` Luís Henriques
2023-03-09 21:31 ` kernel test robot
2 siblings, 1 reply; 8+ messages in thread
From: Eric Biggers @ 2023-03-09 18:23 UTC (permalink / raw)
To: Luís Henriques
Cc: Xiubo Li, Jeff Layton, Theodore Y. Ts'o, Jaegeuk Kim,
Ilya Dryomov, linux-fscrypt, ceph-devel, linux-kernel
On Thu, Mar 09, 2023 at 12:19:09PM +0000, Luís Henriques wrote:
> This patch introduces a new helper function which prepares an atomic_open.
> Because atomic open can act as a lookup if handed a dentry that is negative,
> we need to set DCACHE_NOKEY_NAME if the key for the parent isn't available.
>
> The reason for getting the encryption info before checking if the directory
> has the encryption key is because we may have the key available but the
> encryption info isn't yet set (maybe due to a drop_caches). The regular
> open path will use fscrypt_file_open for that but in the atomic open a
> different approach is required.
>
> Signed-off-by: Luís Henriques <lhenriques@suse.de>
> ---
> fs/crypto/hooks.c | 14 ++++++++++++++
> include/linux/fscrypt.h | 6 ++++++
> 2 files changed, 20 insertions(+)
>
> diff --git a/fs/crypto/hooks.c b/fs/crypto/hooks.c
> index 7b8c5a1104b5..cbb828ecc5eb 100644
> --- a/fs/crypto/hooks.c
> +++ b/fs/crypto/hooks.c
> @@ -117,6 +117,20 @@ int __fscrypt_prepare_readdir(struct inode *dir)
> }
> EXPORT_SYMBOL_GPL(__fscrypt_prepare_readdir);
>
> +int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
Anything exported to filesystems should have a kerneldoc comment. That would be
a good place to put some of the explanation that you currently have only in the
commit message.
Also, double-underscored functions are not for use by filesystems directly.
Normally the pattern would be to make fscrypt_prepare_atomic_open() an inline
function that checks IS_ENCRYPTED() and calls an out-of-line function
__fscrypt_prepare_atomic_open(). But if it happens to be simpler to make the
caller handle the IS_ENCRYPTED() check in this case, then there should simply be
one function: fscrypt_prepare_atomic_open() (no leading underscores).
> +{
> + int err = fscrypt_get_encryption_info(dir, true);
> +
> + if (err || (!err && !fscrypt_has_encryption_key(dir))) {
> + spin_lock(&dentry->d_lock);
> + dentry->d_flags |= DCACHE_NOKEY_NAME;
> + spin_unlock(&dentry->d_lock);
> + }
Why does DCACHE_NOKEY_NAME need to be set on error?
Also note that the '!err &&' part has no effect.
- Eric
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
2023-03-09 18:23 ` Eric Biggers
@ 2023-03-10 12:05 ` Luís Henriques
0 siblings, 0 replies; 8+ messages in thread
From: Luís Henriques @ 2023-03-10 12:05 UTC (permalink / raw)
To: Eric Biggers
Cc: Xiubo Li, Jeff Layton, Theodore Y. Ts'o, Jaegeuk Kim,
Ilya Dryomov, linux-fscrypt, ceph-devel, linux-kernel
Eric Biggers <ebiggers@kernel.org> writes:
> On Thu, Mar 09, 2023 at 12:19:09PM +0000, Luís Henriques wrote:
>> This patch introduces a new helper function which prepares an atomic_open.
>> Because atomic open can act as a lookup if handed a dentry that is negative,
>> we need to set DCACHE_NOKEY_NAME if the key for the parent isn't available.
>>
>> The reason for getting the encryption info before checking if the directory
>> has the encryption key is because we may have the key available but the
>> encryption info isn't yet set (maybe due to a drop_caches). The regular
>> open path will use fscrypt_file_open for that but in the atomic open a
>> different approach is required.
>>
>> Signed-off-by: Luís Henriques <lhenriques@suse.de>
>> ---
>> fs/crypto/hooks.c | 14 ++++++++++++++
>> include/linux/fscrypt.h | 6 ++++++
>> 2 files changed, 20 insertions(+)
>>
>> diff --git a/fs/crypto/hooks.c b/fs/crypto/hooks.c
>> index 7b8c5a1104b5..cbb828ecc5eb 100644
>> --- a/fs/crypto/hooks.c
>> +++ b/fs/crypto/hooks.c
>> @@ -117,6 +117,20 @@ int __fscrypt_prepare_readdir(struct inode *dir)
>> }
>> EXPORT_SYMBOL_GPL(__fscrypt_prepare_readdir);
>>
>> +int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
>
> Anything exported to filesystems should have a kerneldoc comment. That would be
> a good place to put some of the explanation that you currently have only in the
> commit message.
>
> Also, double-underscored functions are not for use by filesystems directly.
> Normally the pattern would be to make fscrypt_prepare_atomic_open() an inline
> function that checks IS_ENCRYPTED() and calls an out-of-line function
> __fscrypt_prepare_atomic_open(). But if it happens to be simpler to make the
> caller handle the IS_ENCRYPTED() check in this case, then there should simply be
> one function: fscrypt_prepare_atomic_open() (no leading underscores).
Thank you, Eric. I'll make sure that next rev will take these comments
into account. It definitely makes sense to move (or duplicate) the
details as a kerneldoc comment.
>> +{
>> + int err = fscrypt_get_encryption_info(dir, true);
>> +
>> + if (err || (!err && !fscrypt_has_encryption_key(dir))) {
>> + spin_lock(&dentry->d_lock);
>> + dentry->d_flags |= DCACHE_NOKEY_NAME;
>> + spin_unlock(&dentry->d_lock);
>> + }
>
> Why does DCACHE_NOKEY_NAME need to be set on error?
>
> Also note that the '!err &&' part has no effect.
To be honest, I wasn't really sure that if the d_flags should be set on
error either. I'll drop that, and then the 'if' statement will make more
sense without the '||'.
Cheers
--
Luís
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
2023-03-09 13:37 ` kernel test robot
2023-03-09 18:23 ` Eric Biggers
@ 2023-03-09 21:31 ` kernel test robot
2 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2023-03-09 21:31 UTC (permalink / raw)
To: Luís Henriques; +Cc: oe-kbuild-all
Hi Luís,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on ceph-client/testing]
[also build test ERROR on ceph-client/for-linus linus/master v6.3-rc1 next-20230309]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Lu-s-Henriques/fscrypt-new-helper-function-__fscrypt_prepare_atomic_open/20230309-202021
base: https://github.com/ceph/ceph-client.git testing
patch link: https://lore.kernel.org/r/20230309121910.18939-2-lhenriques%40suse.de
patch subject: [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open()
config: um-i386_defconfig (https://download.01.org/0day-ci/archive/20230310/202303100501.8hd2Beo7-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/bc0e93e713bcb2b95af1bcb4ac369a7fe3a72863
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Lu-s-Henriques/fscrypt-new-helper-function-__fscrypt_prepare_atomic_open/20230309-202021
git checkout bc0e93e713bcb2b95af1bcb4ac369a7fe3a72863
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=um SUBARCH=i386 olddefconfig
make W=1 O=build_dir ARCH=um SUBARCH=i386 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303100501.8hd2Beo7-lkp@intel.com/
All errors (new ones prefixed by >>):
ld: fs/ioctl.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/dcache.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/libfs.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/buffer.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/iomap/direct-io.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/balloc.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/bitmap.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/block_validity.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/dir.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/ext4_jbd2.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/extents.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/extents_status.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/file.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/fsmap.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/fsync.o: in function `__fscrypt_prepare_atomic_open':
fs/ext4/fsync.c:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/hash.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/ialloc.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/indirect.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/inline.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/inode.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/ioctl.o: in function `__fscrypt_prepare_atomic_open':
>> include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/mballoc.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/migrate.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/mmp.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/move_extent.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/namei.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/page-io.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/readpage.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/resize.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/super.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/symlink.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/sysfs.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/xattr.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/xattr_hurd.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/xattr_trusted.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/xattr_user.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/fast_commit.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
ld: fs/ext4/orphan.o: in function `__fscrypt_prepare_atomic_open':
include/linux/fscrypt.h:695: multiple definition of `__fscrypt_prepare_atomic_open'; fs/super.o:include/linux/fscrypt.h:695: first defined here
vim +695 include/linux/fscrypt.h
691
692 int __fscrypt_prepare_atomic_open(struct inode *dir, struct dentry *dentry)
693 {
694 return -EOPNOTSUPP;
> 695 }
696
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
^ permalink raw reply [flat|nested] 8+ messages in thread
* [RFC PATCH 2/2] ceph: switch atomic open to use new fscrypt helper
2023-03-09 12:19 [RFC PATCH 0/2] ceph: fscrypt: fix atomic open bug for encrypted directories Luís Henriques
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
@ 2023-03-09 12:19 ` Luís Henriques
1 sibling, 0 replies; 8+ messages in thread
From: Luís Henriques @ 2023-03-09 12:19 UTC (permalink / raw)
To: Eric Biggers, Xiubo Li, Jeff Layton
Cc: Theodore Y. Ts'o, Jaegeuk Kim, Ilya Dryomov, linux-fscrypt,
ceph-devel, linux-kernel, Luís Henriques
Switch ceph atomic open to use __fscrypt_prepare_atomic_open(). This fixes
a bug where a dentry is incorrectly set with DCACHE_NOKEY_NAME. This
happens when 'dir' has been evicted but the key is still available (for
example, where there's a drop_caches).
Signed-off-by: Luís Henriques <lhenriques@suse.de>
---
fs/ceph/file.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index dee3b445f415..bdd7a7de7d9e 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -795,11 +795,9 @@ int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
ihold(dir);
if (IS_ENCRYPTED(dir)) {
set_bit(CEPH_MDS_R_FSCRYPT_FILE, &req->r_req_flags);
- if (!fscrypt_has_encryption_key(dir)) {
- spin_lock(&dentry->d_lock);
- dentry->d_flags |= DCACHE_NOKEY_NAME;
- spin_unlock(&dentry->d_lock);
- }
+ err = __fscrypt_prepare_atomic_open(dir, dentry);
+ if (err)
+ goto out_req;
}
if (flags & O_CREAT) {
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-03-10 12:05 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 12:19 [RFC PATCH 0/2] ceph: fscrypt: fix atomic open bug for encrypted directories Luís Henriques
2023-03-09 12:19 ` [RFC PATCH 1/2] fscrypt: new helper function - __fscrypt_prepare_atomic_open() Luís Henriques
2023-03-09 13:37 ` kernel test robot
2023-03-09 16:02 ` Luís Henriques
2023-03-09 18:23 ` Eric Biggers
2023-03-10 12:05 ` Luís Henriques
2023-03-09 21:31 ` kernel test robot
2023-03-09 12:19 ` [RFC PATCH 2/2] ceph: switch atomic open to use new fscrypt helper Luís Henriques
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.