blob: 65d9cd10a5ea8067150a55285b812e70088d812c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Al Virof466c6f2012-03-17 01:16:43 -04002#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <linux/errno.h>
4#include <linux/fs.h>
5#include <linux/pagemap.h>
6#include <linux/xattr.h>
Al Viroc45ac882012-03-17 00:59:06 -04007#include "xattr.h"
Fabian Frederick170939912014-08-08 14:21:12 -07008#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010static int
Al Virob2968212016-04-10 20:48:24 -040011user_get(const struct xattr_handler *handler, struct dentry *unused,
12 struct inode *inode, const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013{
Al Virob2968212016-04-10 20:48:24 -040014 if (!reiserfs_xattrs_user(inode->i_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070015 return -EOPNOTSUPP;
Al Virob2968212016-04-10 20:48:24 -040016 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
Al Viro79a628d2016-04-10 18:50:48 -040017 buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018}
19
20static int
Christian Braunere65ce2a2021-01-21 14:19:27 +010021user_set(const struct xattr_handler *handler, struct user_namespace *mnt_userns,
22 struct dentry *unused,
Al Viro59301222016-05-27 10:19:30 -040023 struct inode *inode, const char *name, const void *buffer,
24 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Al Viro59301222016-05-27 10:19:30 -040026 if (!reiserfs_xattrs_user(inode->i_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070027 return -EOPNOTSUPP;
Al Viro59301222016-05-27 10:19:30 -040028 return reiserfs_xattr_set(inode,
Al Viro79a628d2016-04-10 18:50:48 -040029 xattr_full_name(handler, name),
30 buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070031}
32
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010033static bool user_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070034{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010035 return reiserfs_xattrs_user(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
Stephen Hemminger94d09a92010-05-13 17:53:19 -070038const struct xattr_handler reiserfs_xattr_user_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .prefix = XATTR_USER_PREFIX,
40 .get = user_get,
41 .set = user_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 .list = user_list,
43};