2 #include <linux/capability.h>
3 #include <linux/errno.h>
5 #include <linux/pagemap.h>
6 #include <linux/xattr.h>
8 #include <linux/uaccess.h>
11 trusted_get(const struct xattr_handler
*handler
, struct dentry
*dentry
,
12 const char *name
, void *buffer
, size_t size
)
14 if (!capable(CAP_SYS_ADMIN
) || IS_PRIVATE(d_inode(dentry
)))
17 return reiserfs_xattr_get(d_inode(dentry
),
18 xattr_full_name(handler
, name
),
23 trusted_set(const struct xattr_handler
*handler
, struct dentry
*dentry
,
24 const char *name
, const void *buffer
, size_t size
, int flags
)
26 if (!capable(CAP_SYS_ADMIN
) || IS_PRIVATE(d_inode(dentry
)))
29 return reiserfs_xattr_set(d_inode(dentry
),
30 xattr_full_name(handler
, name
),
34 static size_t trusted_list(const struct xattr_handler
*handler
,
35 struct dentry
*dentry
, char *list
, size_t list_size
,
36 const char *name
, size_t name_len
)
38 const size_t len
= name_len
+ 1;
40 if (!capable(CAP_SYS_ADMIN
) || IS_PRIVATE(d_inode(dentry
)))
43 if (list
&& len
<= list_size
) {
44 memcpy(list
, name
, name_len
);
45 list
[name_len
] = '\0';
50 const struct xattr_handler reiserfs_xattr_trusted_handler
= {
51 .prefix
= XATTR_TRUSTED_PREFIX
,