|
Kmods SIG |
8b815c |
From 66019837a5563e1f80a4228b7d110d8c52bfdd8b Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
Date: Wed, 22 Sep 2021 18:50:58 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 66019837a556] src: Refactoring lock in ntfs_init_acl
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
This is possible because of moving lock into ntfs_create_inode.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/xattr.c | 55 ++++++++++++------------------------------------
|
|
Kmods SIG |
8b815c |
1 file changed, 14 insertions(+), 41 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index 59ec5e61a2390511a633c39b4e8ae3b01a2b9840..83bbee277e12ec795dde29cf279b7eb96af961bc 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -693,54 +693,27 @@ int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
Kmods SIG |
8b815c |
struct posix_acl *default_acl, *acl;
|
|
Kmods SIG |
8b815c |
int err;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- /*
|
|
Kmods SIG |
8b815c |
- * TODO: Refactoring lock.
|
|
Kmods SIG |
8b815c |
- * ni_lock(dir) ... -> posix_acl_create(dir,...) -> ntfs_get_acl -> ni_lock(dir)
|
|
Kmods SIG |
8b815c |
- */
|
|
Kmods SIG |
8b815c |
- inode->i_default_acl = NULL;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- default_acl = ntfs_get_acl_ex(mnt_userns, dir, ACL_TYPE_DEFAULT, 1);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!default_acl || default_acl == ERR_PTR(-EOPNOTSUPP)) {
|
|
Kmods SIG |
8b815c |
- inode->i_mode &= ~current_umask();
|
|
Kmods SIG |
8b815c |
- err = 0;
|
|
Kmods SIG |
8b815c |
- goto out;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (IS_ERR(default_acl)) {
|
|
Kmods SIG |
8b815c |
- err = PTR_ERR(default_acl);
|
|
Kmods SIG |
8b815c |
- goto out;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- acl = default_acl;
|
|
Kmods SIG |
8b815c |
- err = __posix_acl_create(&acl, GFP_NOFS, &inode->i_mode);
|
|
Kmods SIG |
8b815c |
- if (err < 0)
|
|
Kmods SIG |
8b815c |
- goto out1;
|
|
Kmods SIG |
8b815c |
- if (!err) {
|
|
Kmods SIG |
8b815c |
- posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
- acl = NULL;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!S_ISDIR(inode->i_mode)) {
|
|
Kmods SIG |
8b815c |
- posix_acl_release(default_acl);
|
|
Kmods SIG |
8b815c |
- default_acl = NULL;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
+ err = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl;;
|
|
Kmods SIG |
8b815c |
+ if (err)
|
|
Kmods SIG |
8b815c |
+ return err;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- if (default_acl)
|
|
Kmods SIG |
8b815c |
+ if (default_acl) {
|
|
Kmods SIG |
8b815c |
err = ntfs_set_acl_ex(mnt_userns, inode, default_acl,
|
|
Kmods SIG |
8b815c |
ACL_TYPE_DEFAULT, 1);
|
|
Kmods SIG |
8b815c |
+ posix_acl_release(default_acl);
|
|
Kmods SIG |
8b815c |
+ } else {
|
|
Kmods SIG |
8b815c |
+ inode->i_default_acl = NULL;
|
|
Kmods SIG |
8b815c |
+ }
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
if (!acl)
|
|
Kmods SIG |
8b815c |
inode->i_acl = NULL;
|
|
Kmods SIG |
8b815c |
- else if (!err)
|
|
Kmods SIG |
8b815c |
- err = ntfs_set_acl_ex(mnt_userns, inode, acl, ACL_TYPE_ACCESS,
|
|
Kmods SIG |
8b815c |
- 1);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
-out1:
|
|
Kmods SIG |
8b815c |
- posix_acl_release(default_acl);
|
|
Kmods SIG |
8b815c |
+ else {
|
|
Kmods SIG |
8b815c |
+ if (!err)
|
|
Kmods SIG |
8b815c |
+ err = ntfs_set_acl_ex(mnt_userns, inode, acl,
|
|
Kmods SIG |
8b815c |
+ ACL_TYPE_ACCESS, 1);
|
|
Kmods SIG |
8b815c |
+ posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
+ }
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
-out:
|
|
Kmods SIG |
8b815c |
return err;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
#endif
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|