blob: a573ca45bacc7ff3443e67ad83efe6a7ce77df05 [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
Al Viro59301222016-05-27 10:19:30 -040021user_set(const struct xattr_handler *handler, struct dentry *unused,
22 struct inode *inode, const char *name, const void *buffer,
23 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Al Viro59301222016-05-27 10:19:30 -040025 if (!reiserfs_xattrs_user(inode->i_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070026 return -EOPNOTSUPP;
Al Viro59301222016-05-27 10:19:30 -040027 return reiserfs_xattr_set(inode,
Al Viro79a628d2016-04-10 18:50:48 -040028 xattr_full_name(handler, name),
29 buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070030}
31
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010032static bool user_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070033{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010034 return reiserfs_xattrs_user(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Stephen Hemminger94d09a92010-05-13 17:53:19 -070037const struct xattr_handler reiserfs_xattr_user_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 .prefix = XATTR_USER_PREFIX,
39 .get = user_get,
40 .set = user_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .list = user_list,
42};