blob: 12e6306f562a3f9ff1cddbf3b2818d5ae134127e [file] [log] [blame]
Al Virof466c6f2012-03-17 01:16:43 -04001#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/errno.h>
3#include <linux/fs.h>
4#include <linux/pagemap.h>
5#include <linux/xattr.h>
Al Viroc45ac882012-03-17 00:59:06 -04006#include "xattr.h"
Fabian Frederick17093992014-08-08 14:21:12 -07007#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020010user_get(const struct xattr_handler *handler, struct dentry *dentry,
11 const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012{
13
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070014 if (strlen(name) < sizeof(XATTR_USER_PREFIX))
15 return -EINVAL;
Christoph Hellwig431547b2009-11-13 09:52:56 +000016 if (!reiserfs_xattrs_user(dentry->d_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070017 return -EOPNOTSUPP;
David Howells2b0143b2015-03-17 22:25:59 +000018 return reiserfs_xattr_get(d_inode(dentry), name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019}
20
21static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020022user_set(const struct xattr_handler *handler, struct dentry *dentry,
23 const char *name, const void *buffer, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070025 if (strlen(name) < sizeof(XATTR_USER_PREFIX))
26 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Christoph Hellwig431547b2009-11-13 09:52:56 +000028 if (!reiserfs_xattrs_user(dentry->d_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070029 return -EOPNOTSUPP;
David Howells2b0143b2015-03-17 22:25:59 +000030 return reiserfs_xattr_set(d_inode(dentry), name, 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};