|
Kmods SIG |
8b815c |
From 95dd8b2c1ed00c76aaf41b552041c90724749a53 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
Date: Tue, 5 Oct 2021 17:22:29 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 95dd8b2c1ed0] src: Remove unnecessary functions
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
We don't need ntfs_xattr_get_acl and ntfs_xattr_set_acl.
|
|
Kmods SIG |
8b815c |
There are ntfs_get_acl_ex and ntfs_set_acl_ex.
|
|
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 | 94 ------------------------------------------------
|
|
Kmods SIG |
8b815c |
1 file changed, 94 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/xattr.c b/src/xattr.c
|
|
Kmods SIG |
8b815c |
index cdc01877227a509398c9c8b203382ac2f9858a5e..2143099cffdf3a5377d964bd36463ea8f4af9c87 100644
|
|
Kmods SIG |
8b815c |
--- a/src/xattr.c
|
|
Kmods SIG |
8b815c |
+++ b/src/xattr.c
|
|
Kmods SIG |
8b815c |
@@ -616,67 +616,6 @@ int ntfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
|
|
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 |
- struct inode *inode, int type, void *buffer,
|
|
Kmods SIG |
8b815c |
- size_t size)
|
|
Kmods SIG |
8b815c |
-{
|
|
Kmods SIG |
8b815c |
- struct posix_acl *acl;
|
|
Kmods SIG |
8b815c |
- int err;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!(inode->i_sb->s_flags & SB_POSIXACL)) {
|
|
Kmods SIG |
8b815c |
- ntfs_inode_warn(inode, "add mount option \"acl\" to use acl");
|
|
Kmods SIG |
8b815c |
- return -EOPNOTSUPP;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- acl = ntfs_get_acl(inode, type);
|
|
Kmods SIG |
8b815c |
- if (IS_ERR(acl))
|
|
Kmods SIG |
8b815c |
- return PTR_ERR(acl);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!acl)
|
|
Kmods SIG |
8b815c |
- return -ENODATA;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- err = posix_acl_to_xattr(mnt_userns, acl, buffer, size);
|
|
Kmods SIG |
8b815c |
- posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- return err;
|
|
Kmods SIG |
8b815c |
-}
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
-static int ntfs_xattr_set_acl(struct user_namespace *mnt_userns,
|
|
Kmods SIG |
8b815c |
- struct inode *inode, int type, const void *value,
|
|
Kmods SIG |
8b815c |
- size_t size)
|
|
Kmods SIG |
8b815c |
-{
|
|
Kmods SIG |
8b815c |
- struct posix_acl *acl;
|
|
Kmods SIG |
8b815c |
- int err;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!(inode->i_sb->s_flags & SB_POSIXACL)) {
|
|
Kmods SIG |
8b815c |
- ntfs_inode_warn(inode, "add mount option \"acl\" to use acl");
|
|
Kmods SIG |
8b815c |
- return -EOPNOTSUPP;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!inode_owner_or_capable(mnt_userns, inode))
|
|
Kmods SIG |
8b815c |
- return -EPERM;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (!value) {
|
|
Kmods SIG |
8b815c |
- acl = NULL;
|
|
Kmods SIG |
8b815c |
- } else {
|
|
Kmods SIG |
8b815c |
- acl = posix_acl_from_xattr(mnt_userns, value, size);
|
|
Kmods SIG |
8b815c |
- if (IS_ERR(acl))
|
|
Kmods SIG |
8b815c |
- return PTR_ERR(acl);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- if (acl) {
|
|
Kmods SIG |
8b815c |
- err = posix_acl_valid(mnt_userns, acl);
|
|
Kmods SIG |
8b815c |
- if (err)
|
|
Kmods SIG |
8b815c |
- goto release_and_out;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
- err = ntfs_set_acl(mnt_userns, inode, acl, type);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
-release_and_out:
|
|
Kmods SIG |
8b815c |
- posix_acl_release(acl);
|
|
Kmods SIG |
8b815c |
- return err;
|
|
Kmods SIG |
8b815c |
-}
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
/*
|
|
Kmods SIG |
8b815c |
* ntfs_init_acl - Initialize the ACLs of a new inode.
|
|
Kmods SIG |
8b815c |
*
|
|
Kmods SIG |
8b815c |
@@ -843,23 +782,6 @@ static int ntfs_getxattr(const struct xattr_handler *handler, struct dentry *de,
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
-#ifdef CONFIG_NTFS3_FS_POSIX_ACL
|
|
Kmods SIG |
8b815c |
- if ((name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 &&
|
|
Kmods SIG |
8b815c |
- !memcmp(name, XATTR_NAME_POSIX_ACL_ACCESS,
|
|
Kmods SIG |
8b815c |
- sizeof(XATTR_NAME_POSIX_ACL_ACCESS))) ||
|
|
Kmods SIG |
8b815c |
- (name_len == sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1 &&
|
|
Kmods SIG |
8b815c |
- !memcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT,
|
|
Kmods SIG |
8b815c |
- sizeof(XATTR_NAME_POSIX_ACL_DEFAULT)))) {
|
|
Kmods SIG |
8b815c |
- /* TODO: init_user_ns? */
|
|
Kmods SIG |
8b815c |
- err = ntfs_xattr_get_acl(
|
|
Kmods SIG |
8b815c |
- &init_user_ns, inode,
|
|
Kmods SIG |
8b815c |
- name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1
|
|
Kmods SIG |
8b815c |
- ? ACL_TYPE_ACCESS
|
|
Kmods SIG |
8b815c |
- : ACL_TYPE_DEFAULT,
|
|
Kmods SIG |
8b815c |
- buffer, size);
|
|
Kmods SIG |
8b815c |
- goto out;
|
|
Kmods SIG |
8b815c |
- }
|
|
Kmods SIG |
8b815c |
-#endif
|
|
Kmods SIG |
8b815c |
/* Deal with NTFS extended attribute. */
|
|
Kmods SIG |
8b815c |
err = ntfs_get_ea(inode, name, name_len, buffer, size, NULL);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
@@ -972,22 +894,6 @@ static noinline int ntfs_setxattr(const struct xattr_handler *handler,
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
-#ifdef CONFIG_NTFS3_FS_POSIX_ACL
|
|
Kmods SIG |
8b815c |
- if ((name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 &&
|
|
Kmods SIG |
8b815c |
- !memcmp(name, XATTR_NAME_POSIX_ACL_ACCESS,
|
|
Kmods SIG |
8b815c |
- sizeof(XATTR_NAME_POSIX_ACL_ACCESS))) ||
|
|
Kmods SIG |
8b815c |
- (name_len == sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1 &&
|
|
Kmods SIG |
8b815c |
- !memcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT,
|
|
Kmods SIG |
8b815c |
- sizeof(XATTR_NAME_POSIX_ACL_DEFAULT)))) {
|
|
Kmods SIG |
8b815c |
- err = ntfs_xattr_set_acl(
|
|
Kmods SIG |
8b815c |
- mnt_userns, inode,
|
|
Kmods SIG |
8b815c |
- name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1
|
|
Kmods SIG |
8b815c |
- ? ACL_TYPE_ACCESS
|
|
Kmods SIG |
8b815c |
- : ACL_TYPE_DEFAULT,
|
|
Kmods SIG |
8b815c |
- value, size);
|
|
Kmods SIG |
8b815c |
- goto out;
|
|
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);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|