[PATCH] make cap_ptrace enforce PTRACE_TRACME checks
[linux-2.6/mini2440.git] / fs / reiserfs / xattr_trusted.c
blob024a938ca60f1a77238703f648f78733f64f8df4
1 #include <linux/reiserfs_fs.h>
2 #include <linux/capability.h>
3 #include <linux/errno.h>
4 #include <linux/fs.h>
5 #include <linux/pagemap.h>
6 #include <linux/xattr.h>
7 #include <linux/reiserfs_xattr.h>
8 #include <asm/uaccess.h>
10 #define XATTR_TRUSTED_PREFIX "trusted."
12 static int
13 trusted_get(struct inode *inode, const char *name, void *buffer, size_t size)
15 if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
16 return -EINVAL;
18 if (!reiserfs_xattrs(inode->i_sb))
19 return -EOPNOTSUPP;
21 if (!(capable(CAP_SYS_ADMIN) || is_reiserfs_priv_object(inode)))
22 return -EPERM;
24 return reiserfs_xattr_get(inode, name, buffer, size);
27 static int
28 trusted_set(struct inode *inode, const char *name, const void *buffer,
29 size_t size, int flags)
31 if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
32 return -EINVAL;
34 if (!reiserfs_xattrs(inode->i_sb))
35 return -EOPNOTSUPP;
37 if (!(capable(CAP_SYS_ADMIN) || is_reiserfs_priv_object(inode)))
38 return -EPERM;
40 return reiserfs_xattr_set(inode, name, buffer, size, flags);
43 static int trusted_del(struct inode *inode, const char *name)
45 if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
46 return -EINVAL;
48 if (!reiserfs_xattrs(inode->i_sb))
49 return -EOPNOTSUPP;
51 if (!(capable(CAP_SYS_ADMIN) || is_reiserfs_priv_object(inode)))
52 return -EPERM;
54 return 0;
57 static int
58 trusted_list(struct inode *inode, const char *name, int namelen, char *out)
60 int len = namelen;
62 if (!reiserfs_xattrs(inode->i_sb))
63 return 0;
65 if (!(capable(CAP_SYS_ADMIN) || is_reiserfs_priv_object(inode)))
66 return 0;
68 if (out)
69 memcpy(out, name, len);
71 return len;
74 struct reiserfs_xattr_handler trusted_handler = {
75 .prefix = XATTR_TRUSTED_PREFIX,
76 .get = trusted_get,
77 .set = trusted_set,
78 .del = trusted_del,
79 .list = trusted_list,