2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2006 NEC Corporation
6 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
8 * For licensing information, see the file 'LICENCE' in this directory.
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
15 #include <linux/sched.h>
16 #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>
24 static size_t jffs2_acl_size(int count)
27 return sizeof(struct jffs2_acl_header)
28 + count * sizeof(struct jffs2_acl_entry_short);
30 return sizeof(struct jffs2_acl_header)
31 + 4 * sizeof(struct jffs2_acl_entry_short)
32 + (count - 4) * sizeof(struct jffs2_acl_entry);
36 static int jffs2_acl_count(size_t size)
40 size -= sizeof(struct jffs2_acl_header);
41 if (size < 4 * sizeof(struct jffs2_acl_entry_short)) {
42 if (size % sizeof(struct jffs2_acl_entry_short))
44 return size / sizeof(struct jffs2_acl_entry_short);
46 s = size - 4 * sizeof(struct jffs2_acl_entry_short);
47 if (s % sizeof(struct jffs2_acl_entry))
49 return s / sizeof(struct jffs2_acl_entry) + 4;
53 static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size)
55 void *end = value + size;
56 struct jffs2_acl_header *header = value;
57 struct jffs2_acl_entry *entry;
58 struct posix_acl *acl;
64 if (size < sizeof(struct jffs2_acl_header))
65 return ERR_PTR(-EINVAL);
66 ver = je32_to_cpu(header->a_version);
67 if (ver != JFFS2_ACL_VERSION) {
68 JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver);
69 return ERR_PTR(-EINVAL);
72 value += sizeof(struct jffs2_acl_header);
73 count = jffs2_acl_count(size);
75 return ERR_PTR(-EINVAL);
79 acl = posix_acl_alloc(count, GFP_KERNEL);
81 return ERR_PTR(-ENOMEM);
83 for (i=0; i < count; i++) {
85 if (value + sizeof(struct jffs2_acl_entry_short) > end)
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) {
94 value += sizeof(struct jffs2_acl_entry_short);
95 acl->a_entries[i].e_id = ACL_UNDEFINED_ID;
100 value += sizeof(struct jffs2_acl_entry);
103 acl->a_entries[i].e_id = je32_to_cpu(entry->e_id);
114 posix_acl_release(acl);
115 return ERR_PTR(-EINVAL);
118 static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size)
120 struct jffs2_acl_header *header;
121 struct jffs2_acl_entry *entry;
125 *size = jffs2_acl_size(acl->a_count);
126 header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL);
128 return ERR_PTR(-ENOMEM);
129 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
131 for (i=0; i < acl->a_count; i++) {
133 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) {
138 entry->e_id = cpu_to_je32(acl->a_entries[i].e_id);
139 e += sizeof(struct jffs2_acl_entry);
146 e += sizeof(struct jffs2_acl_entry_short);
156 return ERR_PTR(-EINVAL);
159 static struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
161 struct posix_acl *acl;
165 acl = get_cached_acl(inode, type);
166 if (acl != ACL_NOT_CACHED)
170 case ACL_TYPE_ACCESS:
171 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
173 case ACL_TYPE_DEFAULT:
174 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
179 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
181 value = kmalloc(rc, GFP_KERNEL);
183 return ERR_PTR(-ENOMEM);
184 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
187 acl = jffs2_acl_from_medium(value, rc);
188 } else if (rc == -ENODATA || rc == -ENOSYS) {
196 set_cached_acl(inode, type, acl);
200 static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl)
207 value = jffs2_acl_to_medium(acl, &size);
209 return PTR_ERR(value);
211 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
212 if (!value && rc == -ENODATA)
219 static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
223 if (S_ISLNK(inode->i_mode))
227 case ACL_TYPE_ACCESS:
228 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
230 mode_t mode = inode->i_mode;
231 rc = posix_acl_equiv_mode(acl, &mode);
234 if (inode->i_mode != mode) {
237 attr.ia_valid = ATTR_MODE;
239 rc = jffs2_do_setattr(inode, &attr);
247 case ACL_TYPE_DEFAULT:
248 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
249 if (!S_ISDIR(inode->i_mode))
250 return acl ? -EACCES : 0;
255 rc = __jffs2_set_acl(inode, xprefix, acl);
257 set_cached_acl(inode, type, acl);
261 int jffs2_check_acl(struct inode *inode, int mask)
263 struct posix_acl *acl;
266 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
270 rc = posix_acl_permission(inode, acl, mask);
271 posix_acl_release(acl);
277 int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, int *i_mode)
279 struct posix_acl *acl, *clone;
284 if (S_ISLNK(*i_mode))
285 return 0; /* Symlink always has no-ACL */
287 acl = jffs2_get_acl(dir_i, ACL_TYPE_DEFAULT);
292 *i_mode &= ~current_umask();
294 if (S_ISDIR(*i_mode))
295 set_cached_acl(inode, ACL_TYPE_DEFAULT, acl);
297 clone = posix_acl_clone(acl, GFP_KERNEL);
300 rc = posix_acl_create_masq(clone, (mode_t *)i_mode);
302 posix_acl_release(clone);
306 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
308 posix_acl_release(clone);
313 int jffs2_init_acl_post(struct inode *inode)
317 if (inode->i_default_acl) {
318 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl);
324 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl);
332 int jffs2_acl_chmod(struct inode *inode)
334 struct posix_acl *acl, *clone;
337 if (S_ISLNK(inode->i_mode))
339 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
340 if (IS_ERR(acl) || !acl)
342 clone = posix_acl_clone(acl, GFP_KERNEL);
343 posix_acl_release(acl);
346 rc = posix_acl_chmod_masq(clone, inode->i_mode);
348 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
349 posix_acl_release(clone);
353 static size_t jffs2_acl_access_listxattr(struct dentry *dentry, char *list,
354 size_t list_size, const char *name, size_t name_len, int type)
356 const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS);
358 if (list && retlen <= list_size)
359 strcpy(list, POSIX_ACL_XATTR_ACCESS);
363 static size_t jffs2_acl_default_listxattr(struct dentry *dentry, char *list,
364 size_t list_size, const char *name, size_t name_len, int type)
366 const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT);
368 if (list && retlen <= list_size)
369 strcpy(list, POSIX_ACL_XATTR_DEFAULT);
373 static int jffs2_acl_getxattr(struct dentry *dentry, const char *name,
374 void *buffer, size_t size, int type)
376 struct posix_acl *acl;
382 acl = jffs2_get_acl(dentry->d_inode, type);
387 rc = posix_acl_to_xattr(acl, buffer, size);
388 posix_acl_release(acl);
393 static int jffs2_acl_setxattr(struct dentry *dentry, const char *name,
394 const void *value, size_t size, int flags, int type)
396 struct posix_acl *acl;
401 if (!is_owner_or_cap(dentry->d_inode))
405 acl = posix_acl_from_xattr(value, size);
409 rc = posix_acl_valid(acl);
416 rc = jffs2_set_acl(dentry->d_inode, type, acl);
418 posix_acl_release(acl);
422 struct xattr_handler jffs2_acl_access_xattr_handler = {
423 .prefix = POSIX_ACL_XATTR_ACCESS,
424 .flags = ACL_TYPE_DEFAULT,
425 .list = jffs2_acl_access_listxattr,
426 .get = jffs2_acl_getxattr,
427 .set = jffs2_acl_setxattr,
430 struct xattr_handler jffs2_acl_default_xattr_handler = {
431 .prefix = POSIX_ACL_XATTR_DEFAULT,
432 .flags = ACL_TYPE_DEFAULT,
433 .list = jffs2_acl_default_listxattr,
434 .get = jffs2_acl_getxattr,
435 .set = jffs2_acl_setxattr,