]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/reiserfs/xattr_trusted.c
getxattr: use correct xattr length
[mirror_ubuntu-bionic-kernel.git] / fs / reiserfs / xattr_trusted.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
f466c6fd 2#include "reiserfs.h"
16f7e0fe 3#include <linux/capability.h>
1da177e4
LT
4#include <linux/errno.h>
5#include <linux/fs.h>
6#include <linux/pagemap.h>
7#include <linux/xattr.h>
c45ac888 8#include "xattr.h"
17093991 9#include <linux/uaccess.h>
1da177e4 10
1da177e4 11static int
b296821a
AV
12trusted_get(const struct xattr_handler *handler, struct dentry *unused,
13 struct inode *inode, const char *name, void *buffer, size_t size)
1da177e4 14{
b296821a 15 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
bd4c625c 16 return -EPERM;
1da177e4 17
b296821a 18 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
79a628d1 19 buffer, size);
1da177e4
LT
20}
21
22static int
59301226
AV
23trusted_set(const struct xattr_handler *handler, struct dentry *unused,
24 struct inode *inode, const char *name, const void *buffer,
25 size_t size, int flags)
1da177e4 26{
59301226 27 if (!capable(CAP_SYS_ADMIN) || IS_PRIVATE(inode))
bd4c625c 28 return -EPERM;
1da177e4 29
59301226 30 return reiserfs_xattr_set(inode,
79a628d1
AV
31 xattr_full_name(handler, name),
32 buffer, size, flags);
1da177e4
LT
33}
34
764a5c6b 35static bool trusted_list(struct dentry *dentry)
1da177e4 36{
764a5c6b 37 return capable(CAP_SYS_ADMIN) && !IS_PRIVATE(d_inode(dentry));
1da177e4
LT
38}
39
94d09a98 40const struct xattr_handler reiserfs_xattr_trusted_handler = {
1da177e4
LT
41 .prefix = XATTR_TRUSTED_PREFIX,
42 .get = trusted_get,
43 .set = trusted_set,
1da177e4
LT
44 .list = trusted_list,
45};