xattr_trusted.c 1.4 KB
Newer Older
L
Linus Torvalds 已提交
1
#include <linux/reiserfs_fs.h>
2
#include <linux/capability.h>
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/pagemap.h>
#include <linux/xattr.h>
#include <linux/reiserfs_xattr.h>
#include <asm/uaccess.h>

static int
11 12
trusted_get(struct dentry *dentry, const char *name, void *buffer, size_t size,
	    int handler_flags)
L
Linus Torvalds 已提交
13
{
14 15
	if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
		return -EINVAL;
L
Linus Torvalds 已提交
16

17
	if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(dentry->d_inode))
18
		return -EPERM;
L
Linus Torvalds 已提交
19

20
	return reiserfs_xattr_get(dentry->d_inode, name, buffer, size);
L
Linus Torvalds 已提交
21 22 23
}

static int
24 25
trusted_set(struct dentry *dentry, const char *name, const void *buffer,
	    size_t size, int flags, int handler_flags)
L
Linus Torvalds 已提交
26
{
27 28
	if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
		return -EINVAL;
L
Linus Torvalds 已提交
29

30
	if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(dentry->d_inode))
31
		return -EPERM;
L
Linus Torvalds 已提交
32

33
	return reiserfs_xattr_set(dentry->d_inode, name, buffer, size, flags);
L
Linus Torvalds 已提交
34 35
}

36 37
static size_t trusted_list(struct dentry *dentry, char *list, size_t list_size,
			   const char *name, size_t name_len, int handler_flags)
L
Linus Torvalds 已提交
38
{
39
	const size_t len = name_len + 1;
L
Linus Torvalds 已提交
40

41
	if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(dentry->d_inode))
42
		return 0;
L
Linus Torvalds 已提交
43

44 45 46 47
	if (list && len <= list_size) {
		memcpy(list, name, name_len);
		list[name_len] = '\0';
	}
48
	return len;
L
Linus Torvalds 已提交
49 50
}

51
struct xattr_handler reiserfs_xattr_trusted_handler = {
L
Linus Torvalds 已提交
52 53 54 55 56
	.prefix = XATTR_TRUSTED_PREFIX,
	.get = trusted_get,
	.set = trusted_set,
	.list = trusted_list,
};