2006-05-13 08:18:27 +02:00
|
|
|
/*
|
|
|
|
* JFFS2 -- Journalling Flash File System, Version 2.
|
2006-05-13 08:09:47 +02:00
|
|
|
*
|
2007-04-25 15:16:47 +02:00
|
|
|
* Copyright © 2006 NEC Corporation
|
2006-05-13 08:09:47 +02:00
|
|
|
*
|
2006-05-13 08:18:27 +02:00
|
|
|
* Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
|
|
|
|
*
|
|
|
|
* For licensing information, see the file 'LICENCE' in this directory.
|
|
|
|
*
|
|
|
|
*/
|
2007-04-25 15:16:47 +02:00
|
|
|
|
2006-05-13 08:09:47 +02:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/jffs2.h>
|
|
|
|
#include <linux/xattr.h>
|
|
|
|
#include <linux/mtd/mtd.h>
|
|
|
|
#include "nodelist.h"
|
|
|
|
|
2015-10-04 19:18:51 +02:00
|
|
|
static int jffs2_trusted_getxattr(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-05-13 08:09:47 +02:00
|
|
|
{
|
2016-04-11 02:48:24 +02:00
|
|
|
return do_jffs2_getxattr(inode, JFFS2_XPREFIX_TRUSTED,
|
2009-11-13 10:52:56 +01:00
|
|
|
name, buffer, size);
|
2006-05-13 08:09:47 +02:00
|
|
|
}
|
|
|
|
|
2015-10-04 19:18:51 +02:00
|
|
|
static int jffs2_trusted_setxattr(const struct xattr_handler *handler,
|
2016-05-27 16:19:30 +02:00
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *name, const void *buffer,
|
|
|
|
size_t size, int flags)
|
2006-05-13 08:09:47 +02:00
|
|
|
{
|
2016-05-27 16:19:30 +02:00
|
|
|
return do_jffs2_setxattr(inode, JFFS2_XPREFIX_TRUSTED,
|
2009-11-13 10:52:56 +01:00
|
|
|
name, buffer, size, flags);
|
2006-05-13 08:09:47 +02:00
|
|
|
}
|
|
|
|
|
2015-12-02 14:44:43 +01:00
|
|
|
static bool jffs2_trusted_listxattr(struct dentry *dentry)
|
2006-05-13 08:09:47 +02:00
|
|
|
{
|
2015-12-02 14:44:43 +01:00
|
|
|
return capable(CAP_SYS_ADMIN);
|
2006-05-13 08:09:47 +02:00
|
|
|
}
|
|
|
|
|
2010-05-14 02:53:21 +02:00
|
|
|
const struct xattr_handler jffs2_trusted_xattr_handler = {
|
2006-05-13 08:09:47 +02:00
|
|
|
.prefix = XATTR_TRUSTED_PREFIX,
|
|
|
|
.list = jffs2_trusted_listxattr,
|
|
|
|
.set = jffs2_trusted_setxattr,
|
|
|
|
.get = jffs2_trusted_getxattr
|
|
|
|
};
|