2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright (C) 2006 NEC Corporation
6 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
8 * For licensing information, see the file 'LICENCE' in this directory.
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
14 #include <linux/time.h>
15 #include <linux/crc32.h>
16 #include <linux/jffs2.h>
17 #include <linux/xattr.h>
18 #include <linux/posix_acl_xattr.h>
19 #include <linux/mtd/mtd.h>
22 static size_t jffs2_acl_size(int count)
25 return sizeof(struct jffs2_acl_header)
26 + count * sizeof(struct jffs2_acl_entry_short);
28 return sizeof(struct jffs2_acl_header)
29 + 4 * sizeof(struct jffs2_acl_entry_short)
30 + (count - 4) * sizeof(struct jffs2_acl_entry);
34 static int jffs2_acl_count(size_t size)
38 size -= sizeof(struct jffs2_acl_header);
39 s = size - 4 * sizeof(struct jffs2_acl_entry_short);
41 if (size % sizeof(struct jffs2_acl_entry_short))
43 return size / sizeof(struct jffs2_acl_entry_short);
45 if (s % sizeof(struct jffs2_acl_entry))
47 return s / sizeof(struct jffs2_acl_entry) + 4;
51 static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size)
53 void *end = value + size;
54 struct jffs2_acl_header *header = value;
55 struct jffs2_acl_entry *entry;
56 struct posix_acl *acl;
62 if (size < sizeof(struct jffs2_acl_header))
63 return ERR_PTR(-EINVAL);
64 ver = je32_to_cpu(header->a_version);
65 if (ver != JFFS2_ACL_VERSION) {
66 JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver);
67 return ERR_PTR(-EINVAL);
70 value += sizeof(struct jffs2_acl_header);
71 count = jffs2_acl_count(size);
73 return ERR_PTR(-EINVAL);
77 acl = posix_acl_alloc(count, GFP_KERNEL);
79 return ERR_PTR(-ENOMEM);
81 for (i=0; i < count; i++) {
83 if (value + sizeof(struct jffs2_acl_entry_short) > end)
85 acl->a_entries[i].e_tag = je16_to_cpu(entry->e_tag);
86 acl->a_entries[i].e_perm = je16_to_cpu(entry->e_perm);
87 switch (acl->a_entries[i].e_tag) {
92 value += sizeof(struct jffs2_acl_entry_short);
93 acl->a_entries[i].e_id = ACL_UNDEFINED_ID;
98 value += sizeof(struct jffs2_acl_entry);
101 acl->a_entries[i].e_id = je32_to_cpu(entry->e_id);
112 posix_acl_release(acl);
113 return ERR_PTR(-EINVAL);
116 static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size)
118 struct jffs2_acl_header *header;
119 struct jffs2_acl_entry *entry;
123 *size = jffs2_acl_size(acl->a_count);
124 header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL);
126 return ERR_PTR(-ENOMEM);
127 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
129 for (i=0; i < acl->a_count; i++) {
131 entry->e_tag = cpu_to_je16(acl->a_entries[i].e_tag);
132 entry->e_perm = cpu_to_je16(acl->a_entries[i].e_perm);
133 switch(acl->a_entries[i].e_tag) {
136 entry->e_id = cpu_to_je32(acl->a_entries[i].e_id);
137 e += sizeof(struct jffs2_acl_entry);
144 e += sizeof(struct jffs2_acl_entry_short);
154 return ERR_PTR(-EINVAL);
157 static struct posix_acl *jffs2_iget_acl(struct inode *inode, struct posix_acl **i_acl)
159 struct posix_acl *acl = JFFS2_ACL_NOT_CACHED;
161 spin_lock(&inode->i_lock);
162 if (*i_acl != JFFS2_ACL_NOT_CACHED)
163 acl = posix_acl_dup(*i_acl);
164 spin_unlock(&inode->i_lock);
168 static void jffs2_iset_acl(struct inode *inode, struct posix_acl **i_acl, struct posix_acl *acl)
170 spin_lock(&inode->i_lock);
171 if (*i_acl != JFFS2_ACL_NOT_CACHED)
172 posix_acl_release(*i_acl);
173 *i_acl = posix_acl_dup(acl);
174 spin_unlock(&inode->i_lock);
177 static struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
179 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
180 struct posix_acl *acl;
185 case ACL_TYPE_ACCESS:
186 acl = jffs2_iget_acl(inode, &f->i_acl_access);
187 if (acl != JFFS2_ACL_NOT_CACHED)
189 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
191 case ACL_TYPE_DEFAULT:
192 acl = jffs2_iget_acl(inode, &f->i_acl_default);
193 if (acl != JFFS2_ACL_NOT_CACHED)
195 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
198 return ERR_PTR(-EINVAL);
200 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
202 value = kmalloc(rc, GFP_KERNEL);
204 return ERR_PTR(-ENOMEM);
205 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
208 acl = jffs2_acl_from_medium(value, rc);
209 } else if (rc == -ENODATA || rc == -ENOSYS) {
218 case ACL_TYPE_ACCESS:
219 jffs2_iset_acl(inode, &f->i_acl_access, acl);
221 case ACL_TYPE_DEFAULT:
222 jffs2_iset_acl(inode, &f->i_acl_default, acl);
229 static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
231 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
236 if (S_ISLNK(inode->i_mode))
240 case ACL_TYPE_ACCESS:
241 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
243 mode_t mode = inode->i_mode;
244 rc = posix_acl_equiv_mode(acl, &mode);
247 if (inode->i_mode != mode) {
248 inode->i_mode = mode;
249 jffs2_dirty_inode(inode);
255 case ACL_TYPE_DEFAULT:
256 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
257 if (!S_ISDIR(inode->i_mode))
258 return acl ? -EACCES : 0;
264 value = jffs2_acl_to_medium(acl, &size);
266 return PTR_ERR(value);
269 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
274 case ACL_TYPE_ACCESS:
275 jffs2_iset_acl(inode, &f->i_acl_access, acl);
277 case ACL_TYPE_DEFAULT:
278 jffs2_iset_acl(inode, &f->i_acl_default, acl);
285 static int jffs2_check_acl(struct inode *inode, int mask)
287 struct posix_acl *acl;
290 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
294 rc = posix_acl_permission(inode, acl, mask);
295 posix_acl_release(acl);
301 int jffs2_permission(struct inode *inode, int mask, struct nameidata *nd)
303 return generic_permission(inode, mask, jffs2_check_acl);
306 int jffs2_init_acl(struct inode *inode, struct inode *dir)
308 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
309 struct posix_acl *acl = NULL, *clone;
313 f->i_acl_access = JFFS2_ACL_NOT_CACHED;
314 f->i_acl_default = JFFS2_ACL_NOT_CACHED;
315 if (!S_ISLNK(inode->i_mode)) {
316 acl = jffs2_get_acl(dir, ACL_TYPE_DEFAULT);
320 inode->i_mode &= ~current->fs->umask;
323 if (S_ISDIR(inode->i_mode)) {
324 rc = jffs2_set_acl(inode, ACL_TYPE_DEFAULT, acl);
328 clone = posix_acl_clone(acl, GFP_KERNEL);
332 mode = inode->i_mode;
333 rc = posix_acl_create_masq(clone, &mode);
335 inode->i_mode = mode;
337 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
339 posix_acl_release(clone);
342 posix_acl_release(acl);
346 void jffs2_clear_acl(struct inode *inode)
348 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
350 if (f->i_acl_access && f->i_acl_access != JFFS2_ACL_NOT_CACHED) {
351 posix_acl_release(f->i_acl_access);
352 f->i_acl_access = JFFS2_ACL_NOT_CACHED;
354 if (f->i_acl_default && f->i_acl_default != JFFS2_ACL_NOT_CACHED) {
355 posix_acl_release(f->i_acl_default);
356 f->i_acl_default = JFFS2_ACL_NOT_CACHED;
360 int jffs2_acl_chmod(struct inode *inode)
362 struct posix_acl *acl, *clone;
365 if (S_ISLNK(inode->i_mode))
367 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
368 if (IS_ERR(acl) || !acl)
370 clone = posix_acl_clone(acl, GFP_KERNEL);
371 posix_acl_release(acl);
374 rc = posix_acl_chmod_masq(clone, inode->i_mode);
376 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
377 posix_acl_release(clone);
381 static size_t jffs2_acl_access_listxattr(struct inode *inode, char *list, size_t list_size,
382 const char *name, size_t name_len)
384 const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS);
386 if (list && retlen <= list_size)
387 strcpy(list, POSIX_ACL_XATTR_ACCESS);
391 static size_t jffs2_acl_default_listxattr(struct inode *inode, char *list, size_t list_size,
392 const char *name, size_t name_len)
394 const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT);
396 if (list && retlen <= list_size)
397 strcpy(list, POSIX_ACL_XATTR_DEFAULT);
401 static int jffs2_acl_getxattr(struct inode *inode, int type, void *buffer, size_t size)
403 struct posix_acl *acl;
406 acl = jffs2_get_acl(inode, type);
411 rc = posix_acl_to_xattr(acl, buffer, size);
412 posix_acl_release(acl);
417 static int jffs2_acl_access_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
421 return jffs2_acl_getxattr(inode, ACL_TYPE_ACCESS, buffer, size);
424 static int jffs2_acl_default_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
428 return jffs2_acl_getxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
431 static int jffs2_acl_setxattr(struct inode *inode, int type, const void *value, size_t size)
433 struct posix_acl *acl;
436 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
440 acl = posix_acl_from_xattr(value, size);
444 rc = posix_acl_valid(acl);
451 rc = jffs2_set_acl(inode, type, acl);
453 posix_acl_release(acl);
457 static int jffs2_acl_access_setxattr(struct inode *inode, const char *name,
458 const void *buffer, size_t size, int flags)
462 return jffs2_acl_setxattr(inode, ACL_TYPE_ACCESS, buffer, size);
465 static int jffs2_acl_default_setxattr(struct inode *inode, const char *name,
466 const void *buffer, size_t size, int flags)
470 return jffs2_acl_setxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
473 struct xattr_handler jffs2_acl_access_xattr_handler = {
474 .prefix = POSIX_ACL_XATTR_ACCESS,
475 .list = jffs2_acl_access_listxattr,
476 .get = jffs2_acl_access_getxattr,
477 .set = jffs2_acl_access_setxattr,
480 struct xattr_handler jffs2_acl_default_xattr_handler = {
481 .prefix = POSIX_ACL_XATTR_DEFAULT,
482 .list = jffs2_acl_default_listxattr,
483 .get = jffs2_acl_default_getxattr,
484 .set = jffs2_acl_default_setxattr,