2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/reiserfs_fs.h>
|
2006-01-11 20:17:46 +00:00
|
|
|
#include <linux/capability.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#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
|
2005-07-13 03:21:28 +00:00
|
|
|
trusted_get(struct inode *inode, const char *name, void *buffer, size_t size)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-07-13 03:21:28 +00:00
|
|
|
if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
|
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
|
2005-07-13 03:21:28 +00:00
|
|
|
return -EPERM;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-07-13 03:21:28 +00:00
|
|
|
return reiserfs_xattr_get(inode, name, buffer, size);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-07-13 03:21:28 +00:00
|
|
|
trusted_set(struct inode *inode, const char *name, const void *buffer,
|
|
|
|
size_t size, int flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-07-13 03:21:28 +00:00
|
|
|
if (strlen(name) < sizeof(XATTR_TRUSTED_PREFIX))
|
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
|
2005-07-13 03:21:28 +00:00
|
|
|
return -EPERM;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-07-13 03:21:28 +00:00
|
|
|
return reiserfs_xattr_set(inode, name, buffer, size, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
static size_t trusted_list(struct inode *inode, char *list, size_t list_size,
|
|
|
|
const char *name, size_t name_len)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-03-30 18:02:38 +00:00
|
|
|
const size_t len = name_len + 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
|
2005-07-13 03:21:28 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
if (list && len <= list_size) {
|
|
|
|
memcpy(list, name, name_len);
|
|
|
|
list[name_len] = '\0';
|
|
|
|
}
|
2005-07-13 03:21:28 +00:00
|
|
|
return len;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-30 18:02:38 +00:00
|
|
|
struct xattr_handler reiserfs_xattr_trusted_handler = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.prefix = XATTR_TRUSTED_PREFIX,
|
|
|
|
.get = trusted_get,
|
|
|
|
.set = trusted_set,
|
|
|
|
.list = trusted_list,
|
|
|
|
};
|