blob: a562da0d6a26186dc2116d6b8a05795903a46897 [file] [log] [blame]
KaiGai Kohei652ecc22006-05-13 15:18:27 +09001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09003 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2006 NEC Corporation
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09005 *
KaiGai Kohei652ecc22006-05-13 15:18:27 +09006 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
David Woodhousec00c3102007-04-25 14:16:47 +010011
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090012#include <linux/kernel.h>
13#include <linux/fs.h>
14#include <linux/jffs2.h>
15#include <linux/xattr.h>
16#include <linux/mtd/mtd.h>
17#include "nodelist.h"
18
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020019static int jffs2_trusted_getxattr(const struct xattr_handler *handler,
20 struct dentry *dentry, const char *name,
21 void *buffer, size_t size)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090022{
23 if (!strcmp(name, ""))
24 return -EINVAL;
David Howells2b0143b2015-03-17 22:25:59 +000025 return do_jffs2_getxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED,
Christoph Hellwig431547b2009-11-13 09:52:56 +000026 name, buffer, size);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090027}
28
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020029static int jffs2_trusted_setxattr(const struct xattr_handler *handler,
30 struct dentry *dentry, const char *name,
31 const void *buffer, size_t size, int flags)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090032{
33 if (!strcmp(name, ""))
34 return -EINVAL;
David Howells2b0143b2015-03-17 22:25:59 +000035 return do_jffs2_setxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED,
Christoph Hellwig431547b2009-11-13 09:52:56 +000036 name, buffer, size, flags);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090037}
38
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020039static size_t jffs2_trusted_listxattr(const struct xattr_handler *handler,
40 struct dentry *dentry, char *list,
41 size_t list_size, const char *name,
42 size_t name_len)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090043{
44 size_t retlen = XATTR_TRUSTED_PREFIX_LEN + name_len + 1;
45
Andreas Gruenbacherbf781712015-10-04 19:18:50 +020046 if (!capable(CAP_SYS_ADMIN))
47 return 0;
48
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090049 if (list && retlen<=list_size) {
50 strcpy(list, XATTR_TRUSTED_PREFIX);
51 strcpy(list + XATTR_TRUSTED_PREFIX_LEN, name);
52 }
53
54 return retlen;
55}
56
Stephen Hemminger365f0cb2010-05-13 17:53:21 -070057const struct xattr_handler jffs2_trusted_xattr_handler = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090058 .prefix = XATTR_TRUSTED_PREFIX,
59 .list = jffs2_trusted_listxattr,
60 .set = jffs2_trusted_setxattr,
61 .get = jffs2_trusted_getxattr
62};