blob: f7c39731684bcf9cb39ff8b54f68981ab2aa440a [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 Frederick170939912014-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
Al Virob2968212016-04-10 20:48:24 -040010user_get(const struct xattr_handler *handler, struct dentry *unused,
11 struct inode *inode, const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012{
Al Virob2968212016-04-10 20:48:24 -040013 if (!reiserfs_xattrs_user(inode->i_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070014 return -EOPNOTSUPP;
Al Virob2968212016-04-10 20:48:24 -040015 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
Al Viro79a628d2016-04-10 18:50:48 -040016 buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017}
18
19static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020020user_set(const struct xattr_handler *handler, struct dentry *dentry,
21 const char *name, const void *buffer, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
Christoph Hellwig431547b2009-11-13 09:52:56 +000023 if (!reiserfs_xattrs_user(dentry->d_sb))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070024 return -EOPNOTSUPP;
Al Viro79a628d2016-04-10 18:50:48 -040025 return reiserfs_xattr_set(d_inode(dentry),
26 xattr_full_name(handler, name),
27 buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070028}
29
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010030static bool user_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070031{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010032 return reiserfs_xattrs_user(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
Stephen Hemminger94d09a92010-05-13 17:53:19 -070035const struct xattr_handler reiserfs_xattr_user_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .prefix = XATTR_USER_PREFIX,
37 .get = user_get,
38 .set = user_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .list = user_list,
40};