x86/irq: Prevent force migration of irqs which are not in the vector domain
[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
b296821a
AV
11trusted_get(const struct xattr_handler *handler, struct dentry *unused,
12 struct inode *inode, const char *name, void *buffer, size_t size)
1da177e4 13{
b296821a 14 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
bd4c625c 15 return -EPERM;
1da177e4 16
b296821a 17 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
79a628d1 18 buffer, size);
1da177e4
LT
19}
20
21static int
59301226
AV
22trusted_set(const struct xattr_handler *handler, struct dentry *unused,
23 struct inode *inode, const char *name, const void *buffer,
24 size_t size, int flags)
1da177e4 25{
59301226 26 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
bd4c625c 27 return -EPERM;
1da177e4 28
59301226 29 return reiserfs_xattr_set(inode,
79a628d1
AV
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.803007 seconds and 5 git commands to generate.