]>
Commit | Line | Data |
---|---|---|
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 <[email protected]> |
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 | 19 | static int jffs2_trusted_getxattr(const struct xattr_handler *handler, |
b296821a AV |
20 | struct dentry *unused, struct inode *inode, |
21 | const char *name, void *buffer, size_t size) | |
aa98d7cf | 22 | { |
b296821a | 23 | return do_jffs2_getxattr(inode, JFFS2_XPREFIX_TRUSTED, |
431547b3 | 24 | name, buffer, size); |
aa98d7cf KK |
25 | } |
26 | ||
d9a82a04 | 27 | static int jffs2_trusted_setxattr(const struct xattr_handler *handler, |
59301226 AV |
28 | struct dentry *unused, struct inode *inode, |
29 | const char *name, const void *buffer, | |
30 | size_t size, int flags) | |
aa98d7cf | 31 | { |
59301226 | 32 | return do_jffs2_setxattr(inode, JFFS2_XPREFIX_TRUSTED, |
431547b3 | 33 | name, buffer, size, flags); |
aa98d7cf KK |
34 | } |
35 | ||
764a5c6b | 36 | static bool jffs2_trusted_listxattr(struct dentry *dentry) |
aa98d7cf | 37 | { |
764a5c6b | 38 | return capable(CAP_SYS_ADMIN); |
aa98d7cf KK |
39 | } |
40 | ||
365f0cb9 | 41 | const struct xattr_handler jffs2_trusted_xattr_handler = { |
aa98d7cf KK |
42 | .prefix = XATTR_TRUSTED_PREFIX, |
43 | .list = jffs2_trusted_listxattr, | |
44 | .set = jffs2_trusted_setxattr, | |
45 | .get = jffs2_trusted_getxattr | |
46 | }; |