mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Bend zpl_set_acl to permit the new userns* parameter
Just like #12087, the set_acl signature changed with all the bolted-on *userns parameters, which disabled set_acl usage, and caused #12076. Turn zpl_set_acl into zpl_set_acl and zpl_set_acl_impl, and add a new configure test for the new version. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Rich Ercolani <rincebrain@gmail.com> Closes #12076 Closes #12093
This commit is contained in:
committed by
Tony Hutter
parent
88891b804b
commit
8f93ab53d4
@@ -926,11 +926,8 @@ xattr_handler_t zpl_xattr_security_handler = {
|
||||
* attribute implemented by filesystems in the kernel." - xattr(7)
|
||||
*/
|
||||
#ifdef CONFIG_FS_POSIX_ACL
|
||||
#ifndef HAVE_SET_ACL
|
||||
static
|
||||
#endif
|
||||
int
|
||||
zpl_set_acl(struct inode *ip, struct posix_acl *acl, int type)
|
||||
static int
|
||||
zpl_set_acl_impl(struct inode *ip, struct posix_acl *acl, int type)
|
||||
{
|
||||
char *name, *value = NULL;
|
||||
int error = 0;
|
||||
@@ -1002,6 +999,19 @@ zpl_set_acl(struct inode *ip, struct posix_acl *acl, int type)
|
||||
return (error);
|
||||
}
|
||||
|
||||
#ifdef HAVE_SET_ACL
|
||||
int
|
||||
#ifdef HAVE_SET_ACL_USERNS
|
||||
zpl_set_acl(struct user_namespace *userns, struct inode *ip,
|
||||
struct posix_acl *acl, int type)
|
||||
#else
|
||||
zpl_set_acl(struct inode *ip, struct posix_acl *acl, int type)
|
||||
#endif /* HAVE_SET_ACL_USERNS */
|
||||
{
|
||||
return (zpl_set_acl_impl(ip, acl, type));
|
||||
}
|
||||
#endif /* HAVE_SET_ACL */
|
||||
|
||||
struct posix_acl *
|
||||
zpl_get_acl(struct inode *ip, int type)
|
||||
{
|
||||
@@ -1083,7 +1093,7 @@ zpl_init_acl(struct inode *ip, struct inode *dir)
|
||||
umode_t mode;
|
||||
|
||||
if (S_ISDIR(ip->i_mode)) {
|
||||
error = zpl_set_acl(ip, acl, ACL_TYPE_DEFAULT);
|
||||
error = zpl_set_acl_impl(ip, acl, ACL_TYPE_DEFAULT);
|
||||
if (error)
|
||||
goto out;
|
||||
}
|
||||
@@ -1093,8 +1103,10 @@ zpl_init_acl(struct inode *ip, struct inode *dir)
|
||||
if (error >= 0) {
|
||||
ip->i_mode = mode;
|
||||
zfs_mark_inode_dirty(ip);
|
||||
if (error > 0)
|
||||
error = zpl_set_acl(ip, acl, ACL_TYPE_ACCESS);
|
||||
if (error > 0) {
|
||||
error = zpl_set_acl_impl(ip, acl,
|
||||
ACL_TYPE_ACCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
out:
|
||||
@@ -1121,7 +1133,7 @@ zpl_chmod_acl(struct inode *ip)
|
||||
|
||||
error = __posix_acl_chmod(&acl, GFP_KERNEL, ip->i_mode);
|
||||
if (!error)
|
||||
error = zpl_set_acl(ip, acl, ACL_TYPE_ACCESS);
|
||||
error = zpl_set_acl_impl(ip, acl, ACL_TYPE_ACCESS);
|
||||
|
||||
zpl_posix_acl_release(acl);
|
||||
|
||||
@@ -1250,8 +1262,7 @@ __zpl_xattr_acl_set_access(struct inode *ip, const char *name,
|
||||
} else {
|
||||
acl = NULL;
|
||||
}
|
||||
|
||||
error = zpl_set_acl(ip, acl, type);
|
||||
error = zpl_set_acl_impl(ip, acl, type);
|
||||
zpl_posix_acl_release(acl);
|
||||
|
||||
return (error);
|
||||
@@ -1291,7 +1302,7 @@ __zpl_xattr_acl_set_default(struct inode *ip, const char *name,
|
||||
acl = NULL;
|
||||
}
|
||||
|
||||
error = zpl_set_acl(ip, acl, type);
|
||||
error = zpl_set_acl_impl(ip, acl, type);
|
||||
zpl_posix_acl_release(acl);
|
||||
|
||||
return (error);
|
||||
|
||||
Reference in New Issue
Block a user