reiserfs: switch to generic_{get,set,remove}xattr()
[deliverable/linux.git] / fs / reiserfs / xattr_trusted.c
CommitLineData
f466c6fd 1#include "reiserfs.h"
16f7e0fe 2#include <linux/capability.h>
1da177e4
LT
3#include <linux/errno.h>
4#include <linux/fs.h>
5#include <linux/pagemap.h>
6#include <linux/xattr.h>
c45ac888 7#include "xattr.h"
17093991 8#include <linux/uaccess.h>
1da177e4 9
1da177e4 10static int
d9a82a04
AG
11trusted_get(const struct xattr_handler *handler, struct dentry *dentry,
12 const char *name, void *buffer, size_t size)
1da177e4 13{
2b0143b5 14 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(d_inode(dentry)))
bd4c625c 15 return -EPERM;
1da177e4 16
79a628d1
AV
17 return reiserfs_xattr_get(d_inode(dentry),
18 xattr_full_name(handler, name),
19 buffer, size);
1da177e4
LT
20}
21
22static int
d9a82a04
AG
23trusted_set(const struct xattr_handler *handler, struct dentry *dentry,
24 const char *name, const void *buffer, size_t size, int flags)
1da177e4 25{
2b0143b5 26 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(d_inode(dentry)))
bd4c625c 27 return -EPERM;
1da177e4 28
79a628d1
AV
29 return reiserfs_xattr_set(d_inode(dentry),
30 xattr_full_name(handler, name),
31 buffer, size, flags);
1da177e4
LT
32}
33
764a5c6b 34static bool trusted_list(struct dentry *dentry)
1da177e4 35{
764a5c6b 36 return capable(CAP_SYS_ADMIN) && !IS_PRIVATE(d_inode(dentry));
1da177e4
LT
37}
38
94d09a98 39const struct xattr_handler reiserfs_xattr_trusted_handler = {
1da177e4
LT
40 .prefix = XATTR_TRUSTED_PREFIX,
41 .get = trusted_get,
42 .set = trusted_set,
1da177e4
LT
43 .list = trusted_list,
44};
This page took 0.740501 seconds and 5 git commands to generate.