|
Kmods SIG |
8b815c |
From d81e06be921f90d5f1bada59d4549ca6f1bedc61 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
Date: Fri, 24 Sep 2021 17:50:22 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport d81e06be921f] src: Remove locked argument in
|
|
Kmods SIG |
8b815c |
ntfs_set_ea
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
We always need to lock now, because locks became smaller
|
|
Kmods SIG |
8b815c |
(see d562e901f25d
|
|
Kmods SIG |
8b815c |
"src: Move ni_lock_dir and ni_unlock into ntfs_create_inode").
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/xattr.c | 29 ++++++++++++++---------------
|
|
Kmods SIG |
8b815c |
1 file changed, 14 insertions(+), 15 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index 253a07d9aa7b359fcb0296e859a57b0dc5492c30..29f571b53083ea86d3091834749b8d87dec9d69c 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -257,7 +257,7 @@ static int ntfs_get_ea(struct inode *inode, const char *name, size_t name_len,
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
static noinline int ntfs_set_ea(struct inode *inode, const char *name,
|
|
Kmods SIG |
8b815c |
size_t name_len, const void *value,
|
|
Kmods SIG |
8b815c |
- size_t val_size, int flags, int locked)
|
|
Kmods SIG |
8b815c |
+ size_t val_size, int flags)
|
|
Kmods SIG |
8b815c |
{
|
|
Kmods SIG |
8b815c |
struct ntfs_inode *ni = ntfs_i(inode);
|
|
Kmods SIG |
8b815c |
struct ntfs_sb_info *sbi = ni->mi.sbi;
|
|
Kmods SIG |
8b815c |
@@ -276,8 +276,7 @@ static noinline int ntfs_set_ea(struct inode *inode, const char *name,
|
|
Kmods SIG |
8b815c |
u64 new_sz;
|
|
Kmods SIG |
8b815c |
void *p;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- if (!locked)
|
|
Kmods SIG |
8b815c |
- ni_lock(ni);
|
|
Kmods SIG |
8b815c |
+ ni_lock(ni);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
run_init(&ea_run);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
@@ -465,8 +464,7 @@ static noinline int ntfs_set_ea(struct inode *inode, const char *name,
|
|
Kmods SIG |
8b815c |
mark_inode_dirty(&ni->vfs_inode);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
out:
|
|
Kmods SIG |
8b815c |
- if (!locked)
|
|
Kmods SIG |
8b815c |
- ni_unlock(ni);
|
|
Kmods SIG |
8b815c |
+ ni_unlock(ni);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
run_close(&ea_run);
|
|
Kmods SIG |
8b815c |
kfree(ea_all);
|
|
Kmods SIG |
8b815c |
@@ -537,7 +535,7 @@ struct posix_acl *ntfs_get_acl(struct inode *inode, int type)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
static noinline int ntfs_set_acl_ex(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
struct inode *inode, struct posix_acl *acl,
|
|
Kmods SIG |
8b815c |
- int type, int locked)
|
|
Kmods SIG |
8b815c |
+ int type)
|
|
Kmods SIG |
8b815c |
{
|
|
Kmods SIG |
8b815c |
const char *name;
|
|
Kmods SIG |
8b815c |
size_t size, name_len;
|
|
Kmods SIG |
8b815c |
@@ -594,7 +592,7 @@ static noinline int ntfs_set_acl_ex(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
flags = 0;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- err = ntfs_set_ea(inode, name, name_len, value, size, flags, locked);
|
|
Kmods SIG |
8b815c |
+ err = ntfs_set_ea(inode, name, name_len, value, size, flags);
|
|
Kmods SIG |
8b815c |
if (err == -ENODATA && !size)
|
|
Kmods SIG |
8b815c |
err = 0; /* Removing non existed xattr. */
|
|
Kmods SIG |
8b815c |
if (!err)
|
|
Kmods SIG |
8b815c |
@@ -612,7 +610,7 @@ static noinline int ntfs_set_acl_ex(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
int ntfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
Kmods SIG |
8b815c |
struct posix_acl *acl, int type)
|
|
Kmods SIG |
8b815c |
{
|
|
Kmods SIG |
8b815c |
- return ntfs_set_acl_ex(mnt_userns, inode, acl, type, 0);
|
|
Kmods SIG |
8b815c |
+ return ntfs_set_acl_ex(mnt_userns, inode, acl, type);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
static int ntfs_xattr_get_acl(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
@@ -693,7 +691,7 @@ int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
Kmods SIG |
8b815c |
|
|
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 |
+ ACL_TYPE_DEFAULT);
|
|
Kmods SIG |
8b815c |
posix_acl_release(default_acl);
|
|
Kmods SIG |
8b815c |
} else {
|
|
Kmods SIG |
8b815c |
inode->i_default_acl = NULL;
|
|
Kmods SIG |
8b815c |
@@ -704,7 +702,7 @@ int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
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 |
+ ACL_TYPE_ACCESS);
|
|
Kmods SIG |
8b815c |
posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
@@ -988,7 +986,7 @@ static noinline int ntfs_setxattr(const struct xattr_handler *handler,
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
#endif
|
|
Kmods SIG |
8b815c |
/* Deal with NTFS extended attribute. */
|
|
Kmods SIG |
8b815c |
- err = ntfs_set_ea(inode, name, name_len, value, size, flags, 0);
|
|
Kmods SIG |
8b815c |
+ err = ntfs_set_ea(inode, name, name_len, value, size, flags);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
out:
|
|
Kmods SIG |
8b815c |
return err;
|
|
Kmods SIG |
8b815c |
@@ -1004,28 +1002,29 @@ int ntfs_save_wsl_perm(struct inode *inode)
|
|
Kmods SIG |
8b815c |
int err;
|
|
Kmods SIG |
8b815c |
__le32 value;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
+ /* TODO: refactor this, so we don't lock 4 times in ntfs_set_ea */
|
|
Kmods SIG |
8b815c |
value = cpu_to_le32(i_uid_read(inode));
|
|
Kmods SIG |
8b815c |
err = ntfs_set_ea(inode, "$LXUID", sizeof("$LXUID") - 1, &value,
|
|
Kmods SIG |
8b815c |
- sizeof(value), 0, 0);
|
|
Kmods SIG |
8b815c |
+ sizeof(value), 0);
|
|
Kmods SIG |
8b815c |
if (err)
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
value = cpu_to_le32(i_gid_read(inode));
|
|
Kmods SIG |
8b815c |
err = ntfs_set_ea(inode, "$LXGID", sizeof("$LXGID") - 1, &value,
|
|
Kmods SIG |
8b815c |
- sizeof(value), 0, 0);
|
|
Kmods SIG |
8b815c |
+ sizeof(value), 0);
|
|
Kmods SIG |
8b815c |
if (err)
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
value = cpu_to_le32(inode->i_mode);
|
|
Kmods SIG |
8b815c |
err = ntfs_set_ea(inode, "$LXMOD", sizeof("$LXMOD") - 1, &value,
|
|
Kmods SIG |
8b815c |
- sizeof(value), 0, 0);
|
|
Kmods SIG |
8b815c |
+ sizeof(value), 0);
|
|
Kmods SIG |
8b815c |
if (err)
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
|
|
Kmods SIG |
8b815c |
value = cpu_to_le32(inode->i_rdev);
|
|
Kmods SIG |
8b815c |
err = ntfs_set_ea(inode, "$LXDEV", sizeof("$LXDEV") - 1, &value,
|
|
Kmods SIG |
8b815c |
- sizeof(value), 0, 0);
|
|
Kmods SIG |
8b815c |
+ sizeof(value), 0);
|
|
Kmods SIG |
8b815c |
if (err)
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|