blob: 5783ed81171b80153ae15af3e8811afc92d02144 [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/slab.h>
14#include <linux/fs.h>
Al Viro914e2632006-10-18 13:55:46 -040015#include <linux/sched.h>
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090016#include <linux/time.h>
17#include <linux/crc32.h>
18#include <linux/jffs2.h>
19#include <linux/xattr.h>
20#include <linux/posix_acl_xattr.h>
21#include <linux/mtd/mtd.h>
22#include "nodelist.h"
23
24static size_t jffs2_acl_size(int count)
25{
26 if (count <= 4) {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090027 return sizeof(struct jffs2_acl_header)
28 + count * sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090029 } else {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090030 return sizeof(struct jffs2_acl_header)
31 + 4 * sizeof(struct jffs2_acl_entry_short)
32 + (count - 4) * sizeof(struct jffs2_acl_entry);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090033 }
34}
35
36static int jffs2_acl_count(size_t size)
37{
38 size_t s;
39
KaiGai Koheide1f72f2006-05-13 15:13:27 +090040 size -= sizeof(struct jffs2_acl_header);
Roel Kluinfc371a22009-03-04 12:01:41 -080041 if (size < 4 * sizeof(struct jffs2_acl_entry_short)) {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090042 if (size % sizeof(struct jffs2_acl_entry_short))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090043 return -1;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090044 return size / sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090045 } else {
Roel Kluinfc371a22009-03-04 12:01:41 -080046 s = size - 4 * sizeof(struct jffs2_acl_entry_short);
KaiGai Koheide1f72f2006-05-13 15:13:27 +090047 if (s % sizeof(struct jffs2_acl_entry))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090048 return -1;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090049 return s / sizeof(struct jffs2_acl_entry) + 4;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090050 }
51}
52
KaiGai Koheidea80132006-05-13 15:20:24 +090053static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090054{
KaiGai Koheidea80132006-05-13 15:20:24 +090055 void *end = value + size;
56 struct jffs2_acl_header *header = value;
57 struct jffs2_acl_entry *entry;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090058 struct posix_acl *acl;
59 uint32_t ver;
60 int i, count;
61
62 if (!value)
63 return NULL;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090064 if (size < sizeof(struct jffs2_acl_header))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090065 return ERR_PTR(-EINVAL);
KaiGai Koheidea80132006-05-13 15:20:24 +090066 ver = je32_to_cpu(header->a_version);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090067 if (ver != JFFS2_ACL_VERSION) {
68 JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver);
69 return ERR_PTR(-EINVAL);
70 }
71
KaiGai Koheidea80132006-05-13 15:20:24 +090072 value += sizeof(struct jffs2_acl_header);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090073 count = jffs2_acl_count(size);
74 if (count < 0)
75 return ERR_PTR(-EINVAL);
76 if (count == 0)
77 return NULL;
78
79 acl = posix_acl_alloc(count, GFP_KERNEL);
80 if (!acl)
81 return ERR_PTR(-ENOMEM);
82
83 for (i=0; i < count; i++) {
KaiGai Koheidea80132006-05-13 15:20:24 +090084 entry = value;
85 if (value + sizeof(struct jffs2_acl_entry_short) > end)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090086 goto fail;
87 acl->a_entries[i].e_tag = je16_to_cpu(entry->e_tag);
88 acl->a_entries[i].e_perm = je16_to_cpu(entry->e_perm);
89 switch (acl->a_entries[i].e_tag) {
90 case ACL_USER_OBJ:
91 case ACL_GROUP_OBJ:
92 case ACL_MASK:
93 case ACL_OTHER:
KaiGai Koheidea80132006-05-13 15:20:24 +090094 value += sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090095 acl->a_entries[i].e_id = ACL_UNDEFINED_ID;
96 break;
97
98 case ACL_USER:
99 case ACL_GROUP:
KaiGai Koheidea80132006-05-13 15:20:24 +0900100 value += sizeof(struct jffs2_acl_entry);
101 if (value > end)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900102 goto fail;
103 acl->a_entries[i].e_id = je32_to_cpu(entry->e_id);
104 break;
105
106 default:
107 goto fail;
108 }
109 }
110 if (value != end)
111 goto fail;
112 return acl;
113 fail:
114 posix_acl_release(acl);
115 return ERR_PTR(-EINVAL);
116}
117
118static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size)
119{
KaiGai Koheidea80132006-05-13 15:20:24 +0900120 struct jffs2_acl_header *header;
121 struct jffs2_acl_entry *entry;
122 void *e;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900123 size_t i;
124
125 *size = jffs2_acl_size(acl->a_count);
KaiGai Koheidea80132006-05-13 15:20:24 +0900126 header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL);
127 if (!header)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900128 return ERR_PTR(-ENOMEM);
KaiGai Koheidea80132006-05-13 15:20:24 +0900129 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
130 e = header + 1;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900131 for (i=0; i < acl->a_count; i++) {
KaiGai Koheidea80132006-05-13 15:20:24 +0900132 entry = e;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900133 entry->e_tag = cpu_to_je16(acl->a_entries[i].e_tag);
134 entry->e_perm = cpu_to_je16(acl->a_entries[i].e_perm);
135 switch(acl->a_entries[i].e_tag) {
136 case ACL_USER:
137 case ACL_GROUP:
138 entry->e_id = cpu_to_je32(acl->a_entries[i].e_id);
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900139 e += sizeof(struct jffs2_acl_entry);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900140 break;
141
142 case ACL_USER_OBJ:
143 case ACL_GROUP_OBJ:
144 case ACL_MASK:
145 case ACL_OTHER:
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900146 e += sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900147 break;
148
149 default:
150 goto fail;
151 }
152 }
KaiGai Koheidea80132006-05-13 15:20:24 +0900153 return header;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900154 fail:
KaiGai Koheidea80132006-05-13 15:20:24 +0900155 kfree(header);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900156 return ERR_PTR(-EINVAL);
157}
158
Adrian Bunk050416e2007-11-06 08:36:49 +0000159static struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900160{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900161 struct posix_acl *acl;
162 char *value = NULL;
163 int rc, xprefix;
164
Al Viro073aaa12009-06-09 12:11:54 -0400165 acl = get_cached_acl(inode, type);
166 if (acl != ACL_NOT_CACHED)
167 return acl;
168
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900169 switch (type) {
170 case ACL_TYPE_ACCESS:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900171 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
172 break;
173 case ACL_TYPE_DEFAULT:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900174 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
175 break;
176 default:
Al Viro073aaa12009-06-09 12:11:54 -0400177 BUG();
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900178 }
179 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
180 if (rc > 0) {
181 value = kmalloc(rc, GFP_KERNEL);
182 if (!value)
183 return ERR_PTR(-ENOMEM);
184 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
185 }
186 if (rc > 0) {
187 acl = jffs2_acl_from_medium(value, rc);
188 } else if (rc == -ENODATA || rc == -ENOSYS) {
189 acl = NULL;
190 } else {
191 acl = ERR_PTR(rc);
192 }
193 if (value)
194 kfree(value);
Al Viro073aaa12009-06-09 12:11:54 -0400195 if (!IS_ERR(acl))
196 set_cached_acl(inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900197 return acl;
198}
199
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900200static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl)
201{
202 char *value = NULL;
203 size_t size = 0;
204 int rc;
205
206 if (acl) {
207 value = jffs2_acl_to_medium(acl, &size);
208 if (IS_ERR(value))
209 return PTR_ERR(value);
210 }
211 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
212 if (!value && rc == -ENODATA)
213 rc = 0;
214 kfree(value);
215
216 return rc;
217}
218
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900219static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
220{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900221 int rc, xprefix;
222
223 if (S_ISLNK(inode->i_mode))
224 return -EOPNOTSUPP;
225
226 switch (type) {
227 case ACL_TYPE_ACCESS:
228 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
229 if (acl) {
230 mode_t mode = inode->i_mode;
231 rc = posix_acl_equiv_mode(acl, &mode);
232 if (rc < 0)
233 return rc;
234 if (inode->i_mode != mode) {
David Woodhouse9ed437c2007-08-22 12:39:19 +0100235 struct iattr attr;
236
Jan Kara1c24d062010-06-04 17:07:55 +0200237 attr.ia_valid = ATTR_MODE | ATTR_CTIME;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100238 attr.ia_mode = mode;
Jan Kara1c24d062010-06-04 17:07:55 +0200239 attr.ia_ctime = CURRENT_TIME_SEC;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100240 rc = jffs2_do_setattr(inode, &attr);
241 if (rc < 0)
242 return rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900243 }
244 if (rc == 0)
245 acl = NULL;
246 }
247 break;
248 case ACL_TYPE_DEFAULT:
249 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
250 if (!S_ISDIR(inode->i_mode))
251 return acl ? -EACCES : 0;
252 break;
253 default:
254 return -EINVAL;
255 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900256 rc = __jffs2_set_acl(inode, xprefix, acl);
Al Viro073aaa12009-06-09 12:11:54 -0400257 if (!rc)
258 set_cached_acl(inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900259 return rc;
260}
261
Al Viro7e401452011-06-20 19:12:17 -0400262int jffs2_check_acl(struct inode *inode, int mask)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900263{
264 struct posix_acl *acl;
265 int rc;
266
267 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
268 if (IS_ERR(acl))
269 return PTR_ERR(acl);
270 if (acl) {
271 rc = posix_acl_permission(inode, acl, mask);
272 posix_acl_release(acl);
273 return rc;
274 }
275 return -EAGAIN;
276}
277
Al Viro963945b2011-07-23 18:18:58 -0400278int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, mode_t *i_mode)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900279{
Al Viro826cae22011-07-23 03:10:32 -0400280 struct posix_acl *acl;
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900281 int rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900282
Al Viro72c04902009-06-24 16:58:48 -0400283 cache_no_acl(inode);
David Woodhouse9ed437c2007-08-22 12:39:19 +0100284
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900285 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 Viroce3b0f82009-03-29 19:08:22 -0400293 *i_mode &= ~current_umask();
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900294 } else {
295 if (S_ISDIR(*i_mode))
Al Viro073aaa12009-06-09 12:11:54 -0400296 set_cached_acl(inode, ACL_TYPE_DEFAULT, acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900297
Al Viro826cae22011-07-23 03:10:32 -0400298 rc = posix_acl_create(&acl, GFP_KERNEL, i_mode);
299 if (rc < 0)
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900300 return rc;
301 if (rc > 0)
Al Viro826cae22011-07-23 03:10:32 -0400302 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900303
Al Viro826cae22011-07-23 03:10:32 -0400304 posix_acl_release(acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900305 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900306 return 0;
307}
308
309int jffs2_init_acl_post(struct inode *inode)
310{
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900311 int rc;
312
Al Viro290c2632009-06-08 19:55:12 -0400313 if (inode->i_default_acl) {
314 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900315 if (rc)
316 return rc;
317 }
318
Al Viro290c2632009-06-08 19:55:12 -0400319 if (inode->i_acl) {
320 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900321 if (rc)
322 return rc;
323 }
324
David Woodhouse8d6ea582007-10-27 10:36:44 -0400325 return 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900326}
327
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900328int jffs2_acl_chmod(struct inode *inode)
329{
Al Virobc26ab52011-07-23 00:18:02 -0400330 struct posix_acl *acl;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900331 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 Virobc26ab52011-07-23 00:18:02 -0400338 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 Koheiaa98d7c2006-05-13 15:09:47 +0900342 posix_acl_release(acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900343 return rc;
344}
345
Christoph Hellwig431547b2009-11-13 09:52:56 +0000346static 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 Koheiaa98d7c2006-05-13 15:09:47 +0900348{
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 Hellwig431547b2009-11-13 09:52:56 +0000356static 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 Koheiaa98d7c2006-05-13 15:09:47 +0900358{
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 Hellwig431547b2009-11-13 09:52:56 +0000366static int jffs2_acl_getxattr(struct dentry *dentry, const char *name,
367 void *buffer, size_t size, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900368{
369 struct posix_acl *acl;
370 int rc;
371
Christoph Hellwig431547b2009-11-13 09:52:56 +0000372 if (name[0] != '\0')
373 return -EINVAL;
374
375 acl = jffs2_get_acl(dentry->d_inode, type);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900376 if (IS_ERR(acl))
377 return PTR_ERR(acl);
378 if (!acl)
379 return -ENODATA;
380 rc = posix_acl_to_xattr(acl, buffer, size);
381 posix_acl_release(acl);
382
383 return rc;
384}
385
Christoph Hellwig431547b2009-11-13 09:52:56 +0000386static int jffs2_acl_setxattr(struct dentry *dentry, const char *name,
387 const void *value, size_t size, int flags, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900388{
389 struct posix_acl *acl;
390 int rc;
391
Christoph Hellwig431547b2009-11-13 09:52:56 +0000392 if (name[0] != '\0')
393 return -EINVAL;
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700394 if (!inode_owner_or_capable(dentry->d_inode))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900395 return -EPERM;
396
397 if (value) {
398 acl = posix_acl_from_xattr(value, size);
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 Hellwig431547b2009-11-13 09:52:56 +0000409 rc = jffs2_set_acl(dentry->d_inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900410 out:
411 posix_acl_release(acl);
412 return rc;
413}
414
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700415const struct xattr_handler jffs2_acl_access_xattr_handler = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900416 .prefix = POSIX_ACL_XATTR_ACCESS,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000417 .flags = ACL_TYPE_DEFAULT,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900418 .list = jffs2_acl_access_listxattr,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000419 .get = jffs2_acl_getxattr,
420 .set = jffs2_acl_setxattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900421};
422
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700423const struct xattr_handler jffs2_acl_default_xattr_handler = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900424 .prefix = POSIX_ACL_XATTR_DEFAULT,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000425 .flags = ACL_TYPE_DEFAULT,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900426 .list = jffs2_acl_default_listxattr,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000427 .get = jffs2_acl_getxattr,
428 .set = jffs2_acl_setxattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900429};