Merge tag 'powerpc-4.4-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[deliverable/linux.git] / fs / jffs2 / xattr_trusted.c
CommitLineData
652ecc20
KK
1/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
aa98d7cf 3 *
c00c310e 4 * Copyright © 2006 NEC Corporation
aa98d7cf 5 *
652ecc20
KK
6 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
c00c310e 11
aa98d7cf
KK
12#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
d9a82a04
AG
19static int jffs2_trusted_getxattr(const struct xattr_handler *handler,
20 struct dentry *dentry, const char *name,
21 void *buffer, size_t size)
aa98d7cf
KK
22{
23 if (!strcmp(name, ""))
24 return -EINVAL;
2b0143b5 25 return do_jffs2_getxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED,
431547b3 26 name, buffer, size);
aa98d7cf
KK
27}
28
d9a82a04
AG
29static 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)
aa98d7cf
KK
32{
33 if (!strcmp(name, ""))
34 return -EINVAL;
2b0143b5 35 return do_jffs2_setxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED,
431547b3 36 name, buffer, size, flags);
aa98d7cf
KK
37}
38
d9a82a04
AG
39static 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)
aa98d7cf
KK
43{
44 size_t retlen = XATTR_TRUSTED_PREFIX_LEN + name_len + 1;
45
bf781714
AG
46 if (!capable(CAP_SYS_ADMIN))
47 return 0;
48
aa98d7cf
KK
49 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
365f0cb9 57const struct xattr_handler jffs2_trusted_xattr_handler = {
aa98d7cf
KK
58 .prefix = XATTR_TRUSTED_PREFIX,
59 .list = jffs2_trusted_listxattr,
60 .set = jffs2_trusted_setxattr,
61 .get = jffs2_trusted_getxattr
62};
This page took 0.6885 seconds and 5 git commands to generate.