KaiGai Kohei | 652ecc2 | 2006-05-13 15:18:27 +0900 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2006 NEC Corporation |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 5 | * |
KaiGai Kohei | 652ecc2 | 2006-05-13 15:18:27 +0900 | [diff] [blame] | 6 | * Created by KaiGai Kohei <kaigai@ak.jp.nec.com> |
| 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in this directory. |
| 9 | * |
| 10 | */ |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 11 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 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 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame^] | 19 | static int jffs2_trusted_getxattr(const struct xattr_handler *handler, |
| 20 | struct dentry *dentry, const char *name, |
| 21 | void *buffer, size_t size) |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 22 | { |
| 23 | if (!strcmp(name, "")) |
| 24 | return -EINVAL; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 25 | return do_jffs2_getxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 26 | name, buffer, size); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 27 | } |
| 28 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame^] | 29 | static 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 32 | { |
| 33 | if (!strcmp(name, "")) |
| 34 | return -EINVAL; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 35 | return do_jffs2_setxattr(d_inode(dentry), JFFS2_XPREFIX_TRUSTED, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 36 | name, buffer, size, flags); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 37 | } |
| 38 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame^] | 39 | static 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 Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 43 | { |
| 44 | size_t retlen = XATTR_TRUSTED_PREFIX_LEN + name_len + 1; |
| 45 | |
Andreas Gruenbacher | bf78171 | 2015-10-04 19:18:50 +0200 | [diff] [blame] | 46 | if (!capable(CAP_SYS_ADMIN)) |
| 47 | return 0; |
| 48 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 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 | |
Stephen Hemminger | 365f0cb | 2010-05-13 17:53:21 -0700 | [diff] [blame] | 57 | const struct xattr_handler jffs2_trusted_xattr_handler = { |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 58 | .prefix = XATTR_TRUSTED_PREFIX, |
| 59 | .list = jffs2_trusted_listxattr, |
| 60 | .set = jffs2_trusted_setxattr, |
| 61 | .get = jffs2_trusted_getxattr |
| 62 | }; |