2006-10-11 16:20:50 +08:00
|
|
|
/*
|
2006-10-11 16:20:53 +08:00
|
|
|
* linux/fs/ext4/xattr_user.c
|
2006-10-11 16:20:50 +08:00
|
|
|
* Handler for extended user attributes.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 by Andreas Gruenbacher, <a.gruenbacher@computer.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/fs.h>
|
2008-04-30 06:13:32 +08:00
|
|
|
#include "ext4_jbd2.h"
|
|
|
|
#include "ext4.h"
|
2006-10-11 16:20:50 +08:00
|
|
|
#include "xattr.h"
|
|
|
|
|
2015-12-02 21:44:43 +08:00
|
|
|
static bool
|
|
|
|
ext4_xattr_user_list(struct dentry *dentry)
|
2006-10-11 16:20:50 +08:00
|
|
|
{
|
2015-12-02 21:44:43 +08:00
|
|
|
return test_opt(dentry->d_sb, XATTR_USER);
|
2006-10-11 16:20:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-10-05 01:18:51 +08:00
|
|
|
ext4_xattr_user_get(const struct xattr_handler *handler,
|
|
|
|
struct dentry *dentry, const char *name,
|
|
|
|
void *buffer, size_t size)
|
2006-10-11 16:20:50 +08:00
|
|
|
{
|
2009-11-13 17:52:56 +08:00
|
|
|
if (!test_opt(dentry->d_sb, XATTR_USER))
|
2006-10-11 16:20:50 +08:00
|
|
|
return -EOPNOTSUPP;
|
2015-03-18 06:25:59 +08:00
|
|
|
return ext4_xattr_get(d_inode(dentry), EXT4_XATTR_INDEX_USER,
|
2009-11-13 17:52:56 +08:00
|
|
|
name, buffer, size);
|
2006-10-11 16:20:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-10-05 01:18:51 +08:00
|
|
|
ext4_xattr_user_set(const struct xattr_handler *handler,
|
|
|
|
struct dentry *dentry, const char *name,
|
|
|
|
const void *value, size_t size, int flags)
|
2006-10-11 16:20:50 +08:00
|
|
|
{
|
2009-11-13 17:52:56 +08:00
|
|
|
if (!test_opt(dentry->d_sb, XATTR_USER))
|
2006-10-11 16:20:50 +08:00
|
|
|
return -EOPNOTSUPP;
|
2015-03-18 06:25:59 +08:00
|
|
|
return ext4_xattr_set(d_inode(dentry), EXT4_XATTR_INDEX_USER,
|
2009-11-13 17:52:56 +08:00
|
|
|
name, value, size, flags);
|
2006-10-11 16:20:50 +08:00
|
|
|
}
|
|
|
|
|
2010-05-14 08:53:18 +08:00
|
|
|
const struct xattr_handler ext4_xattr_user_handler = {
|
2006-10-11 16:20:50 +08:00
|
|
|
.prefix = XATTR_USER_PREFIX,
|
2006-10-11 16:20:53 +08:00
|
|
|
.list = ext4_xattr_user_list,
|
|
|
|
.get = ext4_xattr_user_get,
|
|
|
|
.set = ext4_xattr_user_set,
|
2006-10-11 16:20:50 +08:00
|
|
|
};
|