1 /* SPDX-License-Identifier: GPL-2.0 */
3 File: linux/posix_acl_xattr.h
5 Extended attribute system call representation of Access Control Lists.
10 #ifndef _POSIX_ACL_XATTR_H
11 #define _POSIX_ACL_XATTR_H
13 #include <uapi/linux/xattr.h>
14 #include <uapi/linux/posix_acl_xattr.h>
15 #include <linux/posix_acl.h>
18 posix_acl_xattr_size(int count)
20 return (sizeof(struct posix_acl_xattr_header) +
21 (count * sizeof(struct posix_acl_xattr_entry)));
25 posix_acl_xattr_count(size_t size)
27 if (size < sizeof(struct posix_acl_xattr_header))
29 size -= sizeof(struct posix_acl_xattr_header);
30 if (size % sizeof(struct posix_acl_xattr_entry))
32 return size / sizeof(struct posix_acl_xattr_entry);
35 #ifdef CONFIG_FS_POSIX_ACL
36 void posix_acl_fix_xattr_from_user(void *value, size_t size);
37 void posix_acl_fix_xattr_to_user(void *value, size_t size);
38 void posix_acl_getxattr_idmapped_mnt(struct user_namespace *mnt_userns,
39 const struct inode *inode,
40 void *value, size_t size);
42 static inline void posix_acl_fix_xattr_from_user(void *value, size_t size)
45 static inline void posix_acl_fix_xattr_to_user(void *value, size_t size)
49 posix_acl_getxattr_idmapped_mnt(struct user_namespace *mnt_userns,
50 const struct inode *inode, void *value,
56 struct posix_acl *posix_acl_from_xattr(struct user_namespace *user_ns,
57 const void *value, size_t size);
58 int posix_acl_to_xattr(struct user_namespace *user_ns,
59 const struct posix_acl *acl, void *buffer, size_t size);
60 struct posix_acl *vfs_set_acl_prepare(struct user_namespace *mnt_userns,
61 struct user_namespace *fs_userns,
62 const void *value, size_t size);
64 extern const struct xattr_handler posix_acl_access_xattr_handler;
65 extern const struct xattr_handler posix_acl_default_xattr_handler;
67 #endif /* _POSIX_ACL_XATTR_H */