blob: 922f146e42354fb34d7ed68f225901b44e5db77d [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
Joe Perches5a528952012-02-15 15:56:45 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090014#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/fs.h>
Al Viro914e2632006-10-18 13:55:46 -040017#include <linux/sched.h>
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090018#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
26static size_t jffs2_acl_size(int count)
27{
28 if (count <= 4) {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090029 return sizeof(struct jffs2_acl_header)
30 + count * sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090031 } else {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090032 return sizeof(struct jffs2_acl_header)
33 + 4 * sizeof(struct jffs2_acl_entry_short)
34 + (count - 4) * sizeof(struct jffs2_acl_entry);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090035 }
36}
37
38static int jffs2_acl_count(size_t size)
39{
40 size_t s;
41
KaiGai Koheide1f72f2006-05-13 15:13:27 +090042 size -= sizeof(struct jffs2_acl_header);
Roel Kluinfc371a22009-03-04 12:01:41 -080043 if (size < 4 * sizeof(struct jffs2_acl_entry_short)) {
KaiGai Koheide1f72f2006-05-13 15:13:27 +090044 if (size % sizeof(struct jffs2_acl_entry_short))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090045 return -1;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090046 return size / sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090047 } else {
Roel Kluinfc371a22009-03-04 12:01:41 -080048 s = size - 4 * sizeof(struct jffs2_acl_entry_short);
KaiGai Koheide1f72f2006-05-13 15:13:27 +090049 if (s % sizeof(struct jffs2_acl_entry))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090050 return -1;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090051 return s / sizeof(struct jffs2_acl_entry) + 4;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090052 }
53}
54
KaiGai Koheidea80132006-05-13 15:20:24 +090055static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090056{
KaiGai Koheidea80132006-05-13 15:20:24 +090057 void *end = value + size;
58 struct jffs2_acl_header *header = value;
59 struct jffs2_acl_entry *entry;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090060 struct posix_acl *acl;
61 uint32_t ver;
62 int i, count;
63
64 if (!value)
65 return NULL;
KaiGai Koheide1f72f2006-05-13 15:13:27 +090066 if (size < sizeof(struct jffs2_acl_header))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090067 return ERR_PTR(-EINVAL);
KaiGai Koheidea80132006-05-13 15:20:24 +090068 ver = je32_to_cpu(header->a_version);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090069 if (ver != JFFS2_ACL_VERSION) {
70 JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver);
71 return ERR_PTR(-EINVAL);
72 }
73
KaiGai Koheidea80132006-05-13 15:20:24 +090074 value += sizeof(struct jffs2_acl_header);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090075 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 Koheidea80132006-05-13 15:20:24 +090086 entry = value;
87 if (value + sizeof(struct jffs2_acl_entry_short) > end)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090088 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 Koheidea80132006-05-13 15:20:24 +090096 value += sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090097 acl->a_entries[i].e_id = ACL_UNDEFINED_ID;
98 break;
99
100 case ACL_USER:
101 case ACL_GROUP:
KaiGai Koheidea80132006-05-13 15:20:24 +0900102 value += sizeof(struct jffs2_acl_entry);
103 if (value > end)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900104 goto fail;
105 acl->a_entries[i].e_id = je32_to_cpu(entry->e_id);
106 break;
107
108 default:
109 goto fail;
110 }
111 }
112 if (value != end)
113 goto fail;
114 return acl;
115 fail:
116 posix_acl_release(acl);
117 return ERR_PTR(-EINVAL);
118}
119
120static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size)
121{
KaiGai Koheidea80132006-05-13 15:20:24 +0900122 struct jffs2_acl_header *header;
123 struct jffs2_acl_entry *entry;
124 void *e;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900125 size_t i;
126
127 *size = jffs2_acl_size(acl->a_count);
KaiGai Koheidea80132006-05-13 15:20:24 +0900128 header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL);
129 if (!header)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900130 return ERR_PTR(-ENOMEM);
KaiGai Koheidea80132006-05-13 15:20:24 +0900131 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
132 e = header + 1;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900133 for (i=0; i < acl->a_count; i++) {
KaiGai Koheidea80132006-05-13 15:20:24 +0900134 entry = e;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900135 entry->e_tag = cpu_to_je16(acl->a_entries[i].e_tag);
136 entry->e_perm = cpu_to_je16(acl->a_entries[i].e_perm);
137 switch(acl->a_entries[i].e_tag) {
138 case ACL_USER:
139 case ACL_GROUP:
140 entry->e_id = cpu_to_je32(acl->a_entries[i].e_id);
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900141 e += sizeof(struct jffs2_acl_entry);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900142 break;
143
144 case ACL_USER_OBJ:
145 case ACL_GROUP_OBJ:
146 case ACL_MASK:
147 case ACL_OTHER:
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900148 e += sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900149 break;
150
151 default:
152 goto fail;
153 }
154 }
KaiGai Koheidea80132006-05-13 15:20:24 +0900155 return header;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900156 fail:
KaiGai Koheidea80132006-05-13 15:20:24 +0900157 kfree(header);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900158 return ERR_PTR(-EINVAL);
159}
160
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200161struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900162{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900163 struct posix_acl *acl;
164 char *value = NULL;
165 int rc, xprefix;
166
Al Viro073aaa12009-06-09 12:11:54 -0400167 acl = get_cached_acl(inode, type);
168 if (acl != ACL_NOT_CACHED)
169 return acl;
170
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900171 switch (type) {
172 case ACL_TYPE_ACCESS:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900173 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
174 break;
175 case ACL_TYPE_DEFAULT:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900176 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
177 break;
178 default:
Al Viro073aaa12009-06-09 12:11:54 -0400179 BUG();
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900180 }
181 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
182 if (rc > 0) {
183 value = kmalloc(rc, GFP_KERNEL);
184 if (!value)
185 return ERR_PTR(-ENOMEM);
186 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
187 }
188 if (rc > 0) {
189 acl = jffs2_acl_from_medium(value, rc);
190 } else if (rc == -ENODATA || rc == -ENOSYS) {
191 acl = NULL;
192 } else {
193 acl = ERR_PTR(rc);
194 }
195 if (value)
196 kfree(value);
Al Viro073aaa12009-06-09 12:11:54 -0400197 if (!IS_ERR(acl))
198 set_cached_acl(inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900199 return acl;
200}
201
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900202static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl)
203{
204 char *value = NULL;
205 size_t size = 0;
206 int rc;
207
208 if (acl) {
209 value = jffs2_acl_to_medium(acl, &size);
210 if (IS_ERR(value))
211 return PTR_ERR(value);
212 }
213 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
214 if (!value && rc == -ENODATA)
215 rc = 0;
216 kfree(value);
217
218 return rc;
219}
220
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900221static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
222{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900223 int rc, xprefix;
224
225 if (S_ISLNK(inode->i_mode))
226 return -EOPNOTSUPP;
227
228 switch (type) {
229 case ACL_TYPE_ACCESS:
230 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
231 if (acl) {
Al Virod6952122011-07-23 18:56:36 -0400232 umode_t mode = inode->i_mode;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900233 rc = posix_acl_equiv_mode(acl, &mode);
234 if (rc < 0)
235 return rc;
236 if (inode->i_mode != mode) {
David Woodhouse9ed437c2007-08-22 12:39:19 +0100237 struct iattr attr;
238
Jan Kara1c24d062010-06-04 17:07:55 +0200239 attr.ia_valid = ATTR_MODE | ATTR_CTIME;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100240 attr.ia_mode = mode;
Jan Kara1c24d062010-06-04 17:07:55 +0200241 attr.ia_ctime = CURRENT_TIME_SEC;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100242 rc = jffs2_do_setattr(inode, &attr);
243 if (rc < 0)
244 return rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900245 }
246 if (rc == 0)
247 acl = NULL;
248 }
249 break;
250 case ACL_TYPE_DEFAULT:
251 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
252 if (!S_ISDIR(inode->i_mode))
253 return acl ? -EACCES : 0;
254 break;
255 default:
256 return -EINVAL;
257 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900258 rc = __jffs2_set_acl(inode, xprefix, acl);
Al Viro073aaa12009-06-09 12:11:54 -0400259 if (!rc)
260 set_cached_acl(inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900261 return rc;
262}
263
Al Virod3fb6122011-07-23 18:37:50 -0400264int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, umode_t *i_mode)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900265{
Al Viro826cae22011-07-23 03:10:32 -0400266 struct posix_acl *acl;
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900267 int rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900268
Al Viro72c04902009-06-24 16:58:48 -0400269 cache_no_acl(inode);
David Woodhouse9ed437c2007-08-22 12:39:19 +0100270
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900271 if (S_ISLNK(*i_mode))
272 return 0; /* Symlink always has no-ACL */
273
274 acl = jffs2_get_acl(dir_i, ACL_TYPE_DEFAULT);
275 if (IS_ERR(acl))
276 return PTR_ERR(acl);
277
278 if (!acl) {
Al Viroce3b0f82009-03-29 19:08:22 -0400279 *i_mode &= ~current_umask();
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900280 } else {
281 if (S_ISDIR(*i_mode))
Al Viro073aaa12009-06-09 12:11:54 -0400282 set_cached_acl(inode, ACL_TYPE_DEFAULT, acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900283
Al Viro826cae22011-07-23 03:10:32 -0400284 rc = posix_acl_create(&acl, GFP_KERNEL, i_mode);
285 if (rc < 0)
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900286 return rc;
287 if (rc > 0)
Al Viro826cae22011-07-23 03:10:32 -0400288 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900289
Al Viro826cae22011-07-23 03:10:32 -0400290 posix_acl_release(acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900291 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900292 return 0;
293}
294
295int jffs2_init_acl_post(struct inode *inode)
296{
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900297 int rc;
298
Al Viro290c2632009-06-08 19:55:12 -0400299 if (inode->i_default_acl) {
300 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900301 if (rc)
302 return rc;
303 }
304
Al Viro290c2632009-06-08 19:55:12 -0400305 if (inode->i_acl) {
306 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900307 if (rc)
308 return rc;
309 }
310
David Woodhouse8d6ea582007-10-27 10:36:44 -0400311 return 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900312}
313
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900314int jffs2_acl_chmod(struct inode *inode)
315{
Al Virobc26ab52011-07-23 00:18:02 -0400316 struct posix_acl *acl;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900317 int rc;
318
319 if (S_ISLNK(inode->i_mode))
320 return -EOPNOTSUPP;
321 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
322 if (IS_ERR(acl) || !acl)
323 return PTR_ERR(acl);
Al Virobc26ab52011-07-23 00:18:02 -0400324 rc = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
325 if (rc)
326 return rc;
327 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900328 posix_acl_release(acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900329 return rc;
330}
331
Christoph Hellwig431547b2009-11-13 09:52:56 +0000332static size_t jffs2_acl_access_listxattr(struct dentry *dentry, char *list,
333 size_t list_size, const char *name, size_t name_len, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900334{
335 const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS);
336
337 if (list && retlen <= list_size)
338 strcpy(list, POSIX_ACL_XATTR_ACCESS);
339 return retlen;
340}
341
Christoph Hellwig431547b2009-11-13 09:52:56 +0000342static size_t jffs2_acl_default_listxattr(struct dentry *dentry, char *list,
343 size_t list_size, const char *name, size_t name_len, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900344{
345 const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT);
346
347 if (list && retlen <= list_size)
348 strcpy(list, POSIX_ACL_XATTR_DEFAULT);
349 return retlen;
350}
351
Christoph Hellwig431547b2009-11-13 09:52:56 +0000352static int jffs2_acl_getxattr(struct dentry *dentry, const char *name,
353 void *buffer, size_t size, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900354{
355 struct posix_acl *acl;
356 int rc;
357
Christoph Hellwig431547b2009-11-13 09:52:56 +0000358 if (name[0] != '\0')
359 return -EINVAL;
360
361 acl = jffs2_get_acl(dentry->d_inode, type);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900362 if (IS_ERR(acl))
363 return PTR_ERR(acl);
364 if (!acl)
365 return -ENODATA;
366 rc = posix_acl_to_xattr(acl, buffer, size);
367 posix_acl_release(acl);
368
369 return rc;
370}
371
Christoph Hellwig431547b2009-11-13 09:52:56 +0000372static int jffs2_acl_setxattr(struct dentry *dentry, const char *name,
373 const void *value, size_t size, int flags, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900374{
375 struct posix_acl *acl;
376 int rc;
377
Christoph Hellwig431547b2009-11-13 09:52:56 +0000378 if (name[0] != '\0')
379 return -EINVAL;
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700380 if (!inode_owner_or_capable(dentry->d_inode))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900381 return -EPERM;
382
383 if (value) {
384 acl = posix_acl_from_xattr(value, size);
385 if (IS_ERR(acl))
386 return PTR_ERR(acl);
387 if (acl) {
388 rc = posix_acl_valid(acl);
389 if (rc)
390 goto out;
391 }
392 } else {
393 acl = NULL;
394 }
Christoph Hellwig431547b2009-11-13 09:52:56 +0000395 rc = jffs2_set_acl(dentry->d_inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900396 out:
397 posix_acl_release(acl);
398 return rc;
399}
400
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700401const struct xattr_handler jffs2_acl_access_xattr_handler = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900402 .prefix = POSIX_ACL_XATTR_ACCESS,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000403 .flags = ACL_TYPE_DEFAULT,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900404 .list = jffs2_acl_access_listxattr,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000405 .get = jffs2_acl_getxattr,
406 .set = jffs2_acl_setxattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900407};
408
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700409const struct xattr_handler jffs2_acl_default_xattr_handler = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900410 .prefix = POSIX_ACL_XATTR_DEFAULT,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000411 .flags = ACL_TYPE_DEFAULT,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900412 .list = jffs2_acl_default_listxattr,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000413 .get = jffs2_acl_getxattr,
414 .set = jffs2_acl_setxattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900415};