| 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 |  | 
| Joe Perches | 5a52895 | 2012-02-15 15:56:45 -0800 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 
|  | 13 |  | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 14 | #include <linux/kernel.h> | 
|  | 15 | #include <linux/slab.h> | 
|  | 16 | #include <linux/fs.h> | 
| Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 17 | #include <linux/sched.h> | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 18 | #include <linux/time.h> | 
|  | 19 | #include <linux/crc32.h> | 
|  | 20 | #include <linux/jffs2.h> | 
|  | 21 | #include <linux/xattr.h> | 
|  | 22 | #include <linux/posix_acl_xattr.h> | 
|  | 23 | #include <linux/mtd/mtd.h> | 
|  | 24 | #include "nodelist.h" | 
|  | 25 |  | 
|  | 26 | static size_t jffs2_acl_size(int count) | 
|  | 27 | { | 
|  | 28 | if (count <= 4) { | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 29 | return sizeof(struct jffs2_acl_header) | 
|  | 30 | + count * sizeof(struct jffs2_acl_entry_short); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 31 | } else { | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 32 | return sizeof(struct jffs2_acl_header) | 
|  | 33 | + 4 * sizeof(struct jffs2_acl_entry_short) | 
|  | 34 | + (count - 4) * sizeof(struct jffs2_acl_entry); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 35 | } | 
|  | 36 | } | 
|  | 37 |  | 
|  | 38 | static int jffs2_acl_count(size_t size) | 
|  | 39 | { | 
|  | 40 | size_t s; | 
|  | 41 |  | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 42 | size -= sizeof(struct jffs2_acl_header); | 
| Roel Kluin | fc371a2 | 2009-03-04 12:01:41 -0800 | [diff] [blame] | 43 | if (size < 4 * sizeof(struct jffs2_acl_entry_short)) { | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 44 | if (size % sizeof(struct jffs2_acl_entry_short)) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 45 | return -1; | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 46 | return size / sizeof(struct jffs2_acl_entry_short); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 47 | } else { | 
| Roel Kluin | fc371a2 | 2009-03-04 12:01:41 -0800 | [diff] [blame] | 48 | s = size - 4 * sizeof(struct jffs2_acl_entry_short); | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 49 | if (s % sizeof(struct jffs2_acl_entry)) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 50 | return -1; | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 51 | return s / sizeof(struct jffs2_acl_entry) + 4; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 52 | } | 
|  | 53 | } | 
|  | 54 |  | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 55 | static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 56 | { | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 57 | void *end = value + size; | 
|  | 58 | struct jffs2_acl_header *header = value; | 
|  | 59 | struct jffs2_acl_entry *entry; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 60 | struct posix_acl *acl; | 
|  | 61 | uint32_t ver; | 
|  | 62 | int i, count; | 
|  | 63 |  | 
|  | 64 | if (!value) | 
|  | 65 | return NULL; | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 66 | if (size < sizeof(struct jffs2_acl_header)) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 67 | return ERR_PTR(-EINVAL); | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 68 | ver = je32_to_cpu(header->a_version); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 69 | if (ver != JFFS2_ACL_VERSION) { | 
|  | 70 | JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver); | 
|  | 71 | return ERR_PTR(-EINVAL); | 
|  | 72 | } | 
|  | 73 |  | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 74 | value += sizeof(struct jffs2_acl_header); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 75 | count = jffs2_acl_count(size); | 
|  | 76 | if (count < 0) | 
|  | 77 | return ERR_PTR(-EINVAL); | 
|  | 78 | if (count == 0) | 
|  | 79 | return NULL; | 
|  | 80 |  | 
|  | 81 | acl = posix_acl_alloc(count, GFP_KERNEL); | 
|  | 82 | if (!acl) | 
|  | 83 | return ERR_PTR(-ENOMEM); | 
|  | 84 |  | 
|  | 85 | for (i=0; i < count; i++) { | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 86 | entry = value; | 
|  | 87 | if (value + sizeof(struct jffs2_acl_entry_short) > end) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 88 | goto fail; | 
|  | 89 | acl->a_entries[i].e_tag = je16_to_cpu(entry->e_tag); | 
|  | 90 | acl->a_entries[i].e_perm = je16_to_cpu(entry->e_perm); | 
|  | 91 | switch (acl->a_entries[i].e_tag) { | 
|  | 92 | case ACL_USER_OBJ: | 
|  | 93 | case ACL_GROUP_OBJ: | 
|  | 94 | case ACL_MASK: | 
|  | 95 | case ACL_OTHER: | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 96 | value += sizeof(struct jffs2_acl_entry_short); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 97 | break; | 
|  | 98 |  | 
|  | 99 | case ACL_USER: | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 100 | value += sizeof(struct jffs2_acl_entry); | 
|  | 101 | if (value > end) | 
|  | 102 | goto fail; | 
|  | 103 | acl->a_entries[i].e_uid = | 
|  | 104 | make_kuid(&init_user_ns, | 
|  | 105 | je32_to_cpu(entry->e_id)); | 
|  | 106 | break; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 107 | case ACL_GROUP: | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 108 | value += sizeof(struct jffs2_acl_entry); | 
|  | 109 | if (value > end) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 110 | goto fail; | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 111 | acl->a_entries[i].e_gid = | 
|  | 112 | make_kgid(&init_user_ns, | 
|  | 113 | je32_to_cpu(entry->e_id)); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 114 | break; | 
|  | 115 |  | 
|  | 116 | default: | 
|  | 117 | goto fail; | 
|  | 118 | } | 
|  | 119 | } | 
|  | 120 | if (value != end) | 
|  | 121 | goto fail; | 
|  | 122 | return acl; | 
|  | 123 | fail: | 
|  | 124 | posix_acl_release(acl); | 
|  | 125 | return ERR_PTR(-EINVAL); | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size) | 
|  | 129 | { | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 130 | struct jffs2_acl_header *header; | 
|  | 131 | struct jffs2_acl_entry *entry; | 
|  | 132 | void *e; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 133 | size_t i; | 
|  | 134 |  | 
|  | 135 | *size = jffs2_acl_size(acl->a_count); | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 136 | header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL); | 
|  | 137 | if (!header) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 138 | return ERR_PTR(-ENOMEM); | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 139 | header->a_version = cpu_to_je32(JFFS2_ACL_VERSION); | 
|  | 140 | e = header + 1; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 141 | for (i=0; i < acl->a_count; i++) { | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 142 | const struct posix_acl_entry *acl_e = &acl->a_entries[i]; | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 143 | entry = e; | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 144 | entry->e_tag = cpu_to_je16(acl_e->e_tag); | 
|  | 145 | entry->e_perm = cpu_to_je16(acl_e->e_perm); | 
|  | 146 | switch(acl_e->e_tag) { | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 147 | case ACL_USER: | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 148 | entry->e_id = cpu_to_je32( | 
|  | 149 | from_kuid(&init_user_ns, acl_e->e_uid)); | 
|  | 150 | e += sizeof(struct jffs2_acl_entry); | 
|  | 151 | break; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 152 | case ACL_GROUP: | 
| Eric W. Biederman | 0cfe53d | 2012-02-07 16:28:39 -0800 | [diff] [blame] | 153 | entry->e_id = cpu_to_je32( | 
|  | 154 | from_kgid(&init_user_ns, acl_e->e_gid)); | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 155 | e += sizeof(struct jffs2_acl_entry); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 156 | break; | 
|  | 157 |  | 
|  | 158 | case ACL_USER_OBJ: | 
|  | 159 | case ACL_GROUP_OBJ: | 
|  | 160 | case ACL_MASK: | 
|  | 161 | case ACL_OTHER: | 
| KaiGai Kohei | de1f72f | 2006-05-13 15:13:27 +0900 | [diff] [blame] | 162 | e += sizeof(struct jffs2_acl_entry_short); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 163 | break; | 
|  | 164 |  | 
|  | 165 | default: | 
|  | 166 | goto fail; | 
|  | 167 | } | 
|  | 168 | } | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 169 | return header; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 170 | fail: | 
| KaiGai Kohei | dea8013 | 2006-05-13 15:20:24 +0900 | [diff] [blame] | 171 | kfree(header); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 172 | return ERR_PTR(-EINVAL); | 
|  | 173 | } | 
|  | 174 |  | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 175 | struct posix_acl *jffs2_get_acl(struct inode *inode, int type) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 176 | { | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 177 | struct posix_acl *acl; | 
|  | 178 | char *value = NULL; | 
|  | 179 | int rc, xprefix; | 
|  | 180 |  | 
| Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 181 | acl = get_cached_acl(inode, type); | 
|  | 182 | if (acl != ACL_NOT_CACHED) | 
|  | 183 | return acl; | 
|  | 184 |  | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 185 | switch (type) { | 
|  | 186 | case ACL_TYPE_ACCESS: | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 187 | xprefix = JFFS2_XPREFIX_ACL_ACCESS; | 
|  | 188 | break; | 
|  | 189 | case ACL_TYPE_DEFAULT: | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 190 | xprefix = JFFS2_XPREFIX_ACL_DEFAULT; | 
|  | 191 | break; | 
|  | 192 | default: | 
| Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 193 | BUG(); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 194 | } | 
|  | 195 | rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0); | 
|  | 196 | if (rc > 0) { | 
|  | 197 | value = kmalloc(rc, GFP_KERNEL); | 
|  | 198 | if (!value) | 
|  | 199 | return ERR_PTR(-ENOMEM); | 
|  | 200 | rc = do_jffs2_getxattr(inode, xprefix, "", value, rc); | 
|  | 201 | } | 
|  | 202 | if (rc > 0) { | 
|  | 203 | acl = jffs2_acl_from_medium(value, rc); | 
|  | 204 | } else if (rc == -ENODATA || rc == -ENOSYS) { | 
|  | 205 | acl = NULL; | 
|  | 206 | } else { | 
|  | 207 | acl = ERR_PTR(rc); | 
|  | 208 | } | 
|  | 209 | if (value) | 
|  | 210 | kfree(value); | 
| Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 211 | if (!IS_ERR(acl)) | 
|  | 212 | set_cached_acl(inode, type, acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 213 | return acl; | 
|  | 214 | } | 
|  | 215 |  | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 216 | static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl) | 
|  | 217 | { | 
|  | 218 | char *value = NULL; | 
|  | 219 | size_t size = 0; | 
|  | 220 | int rc; | 
|  | 221 |  | 
|  | 222 | if (acl) { | 
|  | 223 | value = jffs2_acl_to_medium(acl, &size); | 
|  | 224 | if (IS_ERR(value)) | 
|  | 225 | return PTR_ERR(value); | 
|  | 226 | } | 
|  | 227 | rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0); | 
|  | 228 | if (!value && rc == -ENODATA) | 
|  | 229 | rc = 0; | 
|  | 230 | kfree(value); | 
|  | 231 |  | 
|  | 232 | return rc; | 
|  | 233 | } | 
|  | 234 |  | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 235 | static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl) | 
|  | 236 | { | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 237 | int rc, xprefix; | 
|  | 238 |  | 
|  | 239 | if (S_ISLNK(inode->i_mode)) | 
|  | 240 | return -EOPNOTSUPP; | 
|  | 241 |  | 
|  | 242 | switch (type) { | 
|  | 243 | case ACL_TYPE_ACCESS: | 
|  | 244 | xprefix = JFFS2_XPREFIX_ACL_ACCESS; | 
|  | 245 | if (acl) { | 
| Al Viro | d695212 | 2011-07-23 18:56:36 -0400 | [diff] [blame] | 246 | umode_t mode = inode->i_mode; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 247 | rc = posix_acl_equiv_mode(acl, &mode); | 
|  | 248 | if (rc < 0) | 
|  | 249 | return rc; | 
|  | 250 | if (inode->i_mode != mode) { | 
| David Woodhouse | 9ed437c | 2007-08-22 12:39:19 +0100 | [diff] [blame] | 251 | struct iattr attr; | 
|  | 252 |  | 
| Jan Kara | 1c24d06 | 2010-06-04 17:07:55 +0200 | [diff] [blame] | 253 | attr.ia_valid = ATTR_MODE | ATTR_CTIME; | 
| David Woodhouse | 9ed437c | 2007-08-22 12:39:19 +0100 | [diff] [blame] | 254 | attr.ia_mode = mode; | 
| Jan Kara | 1c24d06 | 2010-06-04 17:07:55 +0200 | [diff] [blame] | 255 | attr.ia_ctime = CURRENT_TIME_SEC; | 
| David Woodhouse | 9ed437c | 2007-08-22 12:39:19 +0100 | [diff] [blame] | 256 | rc = jffs2_do_setattr(inode, &attr); | 
|  | 257 | if (rc < 0) | 
|  | 258 | return rc; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 259 | } | 
|  | 260 | if (rc == 0) | 
|  | 261 | acl = NULL; | 
|  | 262 | } | 
|  | 263 | break; | 
|  | 264 | case ACL_TYPE_DEFAULT: | 
|  | 265 | xprefix = JFFS2_XPREFIX_ACL_DEFAULT; | 
|  | 266 | if (!S_ISDIR(inode->i_mode)) | 
|  | 267 | return acl ? -EACCES : 0; | 
|  | 268 | break; | 
|  | 269 | default: | 
|  | 270 | return -EINVAL; | 
|  | 271 | } | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 272 | rc = __jffs2_set_acl(inode, xprefix, acl); | 
| Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 273 | if (!rc) | 
|  | 274 | set_cached_acl(inode, type, acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 275 | return rc; | 
|  | 276 | } | 
|  | 277 |  | 
| Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 278 | int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, umode_t *i_mode) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 279 | { | 
| Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 280 | struct posix_acl *acl; | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 281 | int rc; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 282 |  | 
| Al Viro | 72c0490 | 2009-06-24 16:58:48 -0400 | [diff] [blame] | 283 | cache_no_acl(inode); | 
| David Woodhouse | 9ed437c | 2007-08-22 12:39:19 +0100 | [diff] [blame] | 284 |  | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 285 | if (S_ISLNK(*i_mode)) | 
|  | 286 | return 0;	/* Symlink always has no-ACL */ | 
|  | 287 |  | 
|  | 288 | acl = jffs2_get_acl(dir_i, ACL_TYPE_DEFAULT); | 
|  | 289 | if (IS_ERR(acl)) | 
|  | 290 | return PTR_ERR(acl); | 
|  | 291 |  | 
|  | 292 | if (!acl) { | 
| Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 293 | *i_mode &= ~current_umask(); | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 294 | } else { | 
|  | 295 | if (S_ISDIR(*i_mode)) | 
| Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 296 | set_cached_acl(inode, ACL_TYPE_DEFAULT, acl); | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 297 |  | 
| Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 298 | rc = posix_acl_create(&acl, GFP_KERNEL, i_mode); | 
|  | 299 | if (rc < 0) | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 300 | return rc; | 
|  | 301 | if (rc > 0) | 
| Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 302 | set_cached_acl(inode, ACL_TYPE_ACCESS, acl); | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 303 |  | 
| Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 304 | posix_acl_release(acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 305 | } | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 306 | return 0; | 
|  | 307 | } | 
|  | 308 |  | 
|  | 309 | int jffs2_init_acl_post(struct inode *inode) | 
|  | 310 | { | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 311 | int rc; | 
|  | 312 |  | 
| Al Viro | 290c263 | 2009-06-08 19:55:12 -0400 | [diff] [blame] | 313 | if (inode->i_default_acl) { | 
|  | 314 | rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl); | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 315 | if (rc) | 
|  | 316 | return rc; | 
|  | 317 | } | 
|  | 318 |  | 
| Al Viro | 290c263 | 2009-06-08 19:55:12 -0400 | [diff] [blame] | 319 | if (inode->i_acl) { | 
|  | 320 | rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl); | 
| KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 321 | if (rc) | 
|  | 322 | return rc; | 
|  | 323 | } | 
|  | 324 |  | 
| David Woodhouse | 8d6ea58 | 2007-10-27 10:36:44 -0400 | [diff] [blame] | 325 | return 0; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 326 | } | 
|  | 327 |  | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 328 | int jffs2_acl_chmod(struct inode *inode) | 
|  | 329 | { | 
| Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 330 | struct posix_acl *acl; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 331 | int rc; | 
|  | 332 |  | 
|  | 333 | if (S_ISLNK(inode->i_mode)) | 
|  | 334 | return -EOPNOTSUPP; | 
|  | 335 | acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS); | 
|  | 336 | if (IS_ERR(acl) || !acl) | 
|  | 337 | return PTR_ERR(acl); | 
| Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 338 | rc = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode); | 
|  | 339 | if (rc) | 
|  | 340 | return rc; | 
|  | 341 | rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 342 | posix_acl_release(acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 343 | return rc; | 
|  | 344 | } | 
|  | 345 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 346 | static size_t jffs2_acl_access_listxattr(struct dentry *dentry, char *list, | 
|  | 347 | size_t list_size, const char *name, size_t name_len, int type) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 348 | { | 
|  | 349 | const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS); | 
|  | 350 |  | 
|  | 351 | if (list && retlen <= list_size) | 
|  | 352 | strcpy(list, POSIX_ACL_XATTR_ACCESS); | 
|  | 353 | return retlen; | 
|  | 354 | } | 
|  | 355 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 356 | static size_t jffs2_acl_default_listxattr(struct dentry *dentry, char *list, | 
|  | 357 | size_t list_size, const char *name, size_t name_len, int type) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 358 | { | 
|  | 359 | const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT); | 
|  | 360 |  | 
|  | 361 | if (list && retlen <= list_size) | 
|  | 362 | strcpy(list, POSIX_ACL_XATTR_DEFAULT); | 
|  | 363 | return retlen; | 
|  | 364 | } | 
|  | 365 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 366 | static int jffs2_acl_getxattr(struct dentry *dentry, const char *name, | 
|  | 367 | void *buffer, size_t size, int type) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 368 | { | 
|  | 369 | struct posix_acl *acl; | 
|  | 370 | int rc; | 
|  | 371 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 372 | if (name[0] != '\0') | 
|  | 373 | return -EINVAL; | 
|  | 374 |  | 
|  | 375 | acl = jffs2_get_acl(dentry->d_inode, type); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 376 | if (IS_ERR(acl)) | 
|  | 377 | return PTR_ERR(acl); | 
|  | 378 | if (!acl) | 
|  | 379 | return -ENODATA; | 
| Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 380 | rc = posix_acl_to_xattr(&init_user_ns, acl, buffer, size); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 381 | posix_acl_release(acl); | 
|  | 382 |  | 
|  | 383 | return rc; | 
|  | 384 | } | 
|  | 385 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 386 | static int jffs2_acl_setxattr(struct dentry *dentry, const char *name, | 
|  | 387 | const void *value, size_t size, int flags, int type) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 388 | { | 
|  | 389 | struct posix_acl *acl; | 
|  | 390 | int rc; | 
|  | 391 |  | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 392 | if (name[0] != '\0') | 
|  | 393 | return -EINVAL; | 
| Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 394 | if (!inode_owner_or_capable(dentry->d_inode)) | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 395 | return -EPERM; | 
|  | 396 |  | 
|  | 397 | if (value) { | 
| Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 398 | acl = posix_acl_from_xattr(&init_user_ns, value, size); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 399 | if (IS_ERR(acl)) | 
|  | 400 | return PTR_ERR(acl); | 
|  | 401 | if (acl) { | 
|  | 402 | rc = posix_acl_valid(acl); | 
|  | 403 | if (rc) | 
|  | 404 | goto out; | 
|  | 405 | } | 
|  | 406 | } else { | 
|  | 407 | acl = NULL; | 
|  | 408 | } | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 409 | rc = jffs2_set_acl(dentry->d_inode, type, acl); | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 410 | out: | 
|  | 411 | posix_acl_release(acl); | 
|  | 412 | return rc; | 
|  | 413 | } | 
|  | 414 |  | 
| Stephen Hemminger | 365f0cb | 2010-05-13 17:53:21 -0700 | [diff] [blame] | 415 | const struct xattr_handler jffs2_acl_access_xattr_handler = { | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 416 | .prefix	= POSIX_ACL_XATTR_ACCESS, | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 417 | .flags	= ACL_TYPE_DEFAULT, | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 418 | .list	= jffs2_acl_access_listxattr, | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 419 | .get	= jffs2_acl_getxattr, | 
|  | 420 | .set	= jffs2_acl_setxattr, | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 421 | }; | 
|  | 422 |  | 
| Stephen Hemminger | 365f0cb | 2010-05-13 17:53:21 -0700 | [diff] [blame] | 423 | const struct xattr_handler jffs2_acl_default_xattr_handler = { | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 424 | .prefix	= POSIX_ACL_XATTR_DEFAULT, | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 425 | .flags	= ACL_TYPE_DEFAULT, | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 426 | .list	= jffs2_acl_default_listxattr, | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 427 | .get	= jffs2_acl_getxattr, | 
|  | 428 | .set	= jffs2_acl_setxattr, | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 429 | }; |