Skip to content

Commit 7420332

Browse files
committed
fs: add new get acl method
The current way of setting and getting posix acls through the generic xattr interface is error prone and type unsafe. The vfs needs to interpret and fixup posix acls before storing or reporting it to userspace. Various hacks exist to make this work. The code is hard to understand and difficult to maintain in it's current form. Instead of making this work by hacking posix acls through xattr handlers we are building a dedicated posix acl api around the get and set inode operations. This removes a lot of hackiness and makes the codepaths easier to maintain. A lot of background can be found in [1]. Since some filesystem rely on the dentry being available to them when setting posix acls (e.g., 9p and cifs) they cannot rely on the old get acl inode operation to retrieve posix acl and need to implement their own custom handlers because of that. In a previous patch we renamed the old get acl inode operation to ->get_inode_acl(). We decided to rename it and implement a new one since ->get_inode_acl() is called generic_permission() and inode_permission() both of which can be called during an filesystem's ->permission() handler. So simply passing a dentry argument to ->get_acl() would have amounted to also having to pass a dentry argument to ->permission(). We avoided that change. This adds a new ->get_acl() inode operations which takes a dentry argument which filesystems such as 9p, cifs, and overlayfs can implement to get posix acls. Link: https://lore.kernel.org/all/[email protected] [1] Signed-off-by: Christian Brauner (Microsoft) <[email protected]>
1 parent cac2f8b commit 7420332

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Documentation/filesystems/locking.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ prototypes::
8484
int (*fileattr_set)(struct user_namespace *mnt_userns,
8585
struct dentry *dentry, struct fileattr *fa);
8686
int (*fileattr_get)(struct dentry *dentry, struct fileattr *fa);
87+
struct posix_acl * (*get_acl)(struct user_namespace *, struct dentry *, int);
8788

8889
locking rules:
8990
all may block
@@ -105,6 +106,7 @@ get_link: no
105106
setattr: exclusive
106107
permission: no (may not block if called in rcu-walk mode)
107108
get_inode_acl: no
109+
get_acl: no
108110
getattr: no
109111
listxattr: no
110112
fiemap: no

Documentation/filesystems/vfs.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,7 @@ As of kernel 2.6.22, the following members are defined:
443443
int (*atomic_open)(struct inode *, struct dentry *, struct file *,
444444
unsigned open_flag, umode_t create_mode);
445445
int (*tmpfile) (struct user_namespace *, struct inode *, struct file *, umode_t);
446+
struct posix_acl * (*get_acl)(struct user_namespace *, struct dentry *, int);
446447
int (*set_acl)(struct user_namespace *, struct dentry *, struct posix_acl *, int);
447448
int (*fileattr_set)(struct user_namespace *mnt_userns,
448449
struct dentry *dentry, struct fileattr *fa);

include/linux/fs.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2172,6 +2172,8 @@ struct inode_operations {
21722172
umode_t create_mode);
21732173
int (*tmpfile) (struct user_namespace *, struct inode *,
21742174
struct file *, umode_t);
2175+
struct posix_acl *(*get_acl)(struct user_namespace *, struct dentry *,
2176+
int);
21752177
int (*set_acl)(struct user_namespace *, struct dentry *,
21762178
struct posix_acl *, int);
21772179
int (*fileattr_set)(struct user_namespace *mnt_userns,

0 commit comments

Comments
 (0)