2006-10-11 10:20:50 +02:00
|
|
|
/*
|
2006-10-11 10:20:53 +02:00
|
|
|
* linux/fs/ext4/xattr_trusted.c
|
2006-10-11 10:20:50 +02:00
|
|
|
* Handler for trusted extended attributes.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 by Andreas Gruenbacher, <a.gruenbacher@computer.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/capability.h>
|
|
|
|
#include <linux/fs.h>
|
2008-04-30 00:13:32 +02:00
|
|
|
#include "ext4_jbd2.h"
|
|
|
|
#include "ext4.h"
|
2006-10-11 10:20:50 +02:00
|
|
|
#include "xattr.h"
|
|
|
|
|
2015-12-02 14:44:43 +01:00
|
|
|
static bool
|
|
|
|
ext4_xattr_trusted_list(struct dentry *dentry)
|
2006-10-11 10:20:50 +02:00
|
|
|
{
|
2015-12-02 14:44:43 +01:00
|
|
|
return capable(CAP_SYS_ADMIN);
|
2006-10-11 10:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-10-04 19:18:51 +02:00
|
|
|
ext4_xattr_trusted_get(const struct xattr_handler *handler,
|
2016-04-11 02:48:24 +02:00
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *name, void *buffer, size_t size)
|
2006-10-11 10:20:50 +02:00
|
|
|
{
|
2016-04-11 02:48:24 +02:00
|
|
|
return ext4_xattr_get(inode, EXT4_XATTR_INDEX_TRUSTED,
|
2009-11-13 10:52:56 +01:00
|
|
|
name, buffer, size);
|
2006-10-11 10:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-10-04 19:18:51 +02:00
|
|
|
ext4_xattr_trusted_set(const struct xattr_handler *handler,
|
2016-05-27 16:19:30 +02:00
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *name, const void *value,
|
|
|
|
size_t size, int flags)
|
2006-10-11 10:20:50 +02:00
|
|
|
{
|
2016-05-27 16:19:30 +02:00
|
|
|
return ext4_xattr_set(inode, EXT4_XATTR_INDEX_TRUSTED,
|
2009-11-13 10:52:56 +01:00
|
|
|
name, value, size, flags);
|
2006-10-11 10:20:50 +02:00
|
|
|
}
|
|
|
|
|
2010-05-14 02:53:18 +02:00
|
|
|
const struct xattr_handler ext4_xattr_trusted_handler = {
|
2006-10-11 10:20:50 +02:00
|
|
|
.prefix = XATTR_TRUSTED_PREFIX,
|
2006-10-11 10:20:53 +02:00
|
|
|
.list = ext4_xattr_trusted_list,
|
|
|
|
.get = ext4_xattr_trusted_get,
|
|
|
|
.set = ext4_xattr_trusted_set,
|
2006-10-11 10:20:50 +02:00
|
|
|
};
|