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

static int
11 12
trusted_get(const struct xattr_handler *handler, struct dentry *dentry,
	    const char *name, void *buffer, size_t size)
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(d_inode(dentry)))
18
		return -EPERM;
L
Linus Torvalds 已提交
19

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

static int
24 25
trusted_set(const struct xattr_handler *handler, struct dentry *dentry,
	    const char *name, const void *buffer, size_t size, int 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(d_inode(dentry)))
31
		return -EPERM;
L
Linus Torvalds 已提交
32

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

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

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

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

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