blob: ac16589ebbd10b474c6f4e0228f46624fec151a5 [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
159static struct posix_acl *jffs2_iget_acl(struct inode *inode, struct posix_acl **i_acl)
160{
Al Viro290c2632009-06-08 19:55:12 -0400161 struct posix_acl *acl = ACL_NOT_CACHED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900162
163 spin_lock(&inode->i_lock);
Al Viro290c2632009-06-08 19:55:12 -0400164 if (*i_acl != ACL_NOT_CACHED)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900165 acl = posix_acl_dup(*i_acl);
166 spin_unlock(&inode->i_lock);
167 return acl;
168}
169
170static void jffs2_iset_acl(struct inode *inode, struct posix_acl **i_acl, struct posix_acl *acl)
171{
172 spin_lock(&inode->i_lock);
Al Viro290c2632009-06-08 19:55:12 -0400173 if (*i_acl != ACL_NOT_CACHED)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900174 posix_acl_release(*i_acl);
175 *i_acl = posix_acl_dup(acl);
176 spin_unlock(&inode->i_lock);
177}
178
Adrian Bunk050416e2007-11-06 08:36:49 +0000179static struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900180{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900181 struct posix_acl *acl;
182 char *value = NULL;
183 int rc, xprefix;
184
185 switch (type) {
186 case ACL_TYPE_ACCESS:
Al Viro290c2632009-06-08 19:55:12 -0400187 acl = jffs2_iget_acl(inode, &inode->i_acl);
188 if (acl != ACL_NOT_CACHED)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900189 return acl;
190 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
191 break;
192 case ACL_TYPE_DEFAULT:
Al Viro290c2632009-06-08 19:55:12 -0400193 acl = jffs2_iget_acl(inode, &inode->i_default_acl);
194 if (acl != ACL_NOT_CACHED)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900195 return acl;
196 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
197 break;
198 default:
199 return ERR_PTR(-EINVAL);
200 }
201 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
202 if (rc > 0) {
203 value = kmalloc(rc, GFP_KERNEL);
204 if (!value)
205 return ERR_PTR(-ENOMEM);
206 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
207 }
208 if (rc > 0) {
209 acl = jffs2_acl_from_medium(value, rc);
210 } else if (rc == -ENODATA || rc == -ENOSYS) {
211 acl = NULL;
212 } else {
213 acl = ERR_PTR(rc);
214 }
215 if (value)
216 kfree(value);
217 if (!IS_ERR(acl)) {
218 switch (type) {
219 case ACL_TYPE_ACCESS:
Al Viro290c2632009-06-08 19:55:12 -0400220 jffs2_iset_acl(inode, &inode->i_acl, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900221 break;
222 case ACL_TYPE_DEFAULT:
Al Viro290c2632009-06-08 19:55:12 -0400223 jffs2_iset_acl(inode, &inode->i_default_acl, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900224 break;
225 }
226 }
227 return acl;
228}
229
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900230static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl)
231{
232 char *value = NULL;
233 size_t size = 0;
234 int rc;
235
236 if (acl) {
237 value = jffs2_acl_to_medium(acl, &size);
238 if (IS_ERR(value))
239 return PTR_ERR(value);
240 }
241 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
242 if (!value && rc == -ENODATA)
243 rc = 0;
244 kfree(value);
245
246 return rc;
247}
248
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900249static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
250{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900251 int rc, xprefix;
252
253 if (S_ISLNK(inode->i_mode))
254 return -EOPNOTSUPP;
255
256 switch (type) {
257 case ACL_TYPE_ACCESS:
258 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
259 if (acl) {
260 mode_t mode = inode->i_mode;
261 rc = posix_acl_equiv_mode(acl, &mode);
262 if (rc < 0)
263 return rc;
264 if (inode->i_mode != mode) {
David Woodhouse9ed437c2007-08-22 12:39:19 +0100265 struct iattr attr;
266
267 attr.ia_valid = ATTR_MODE;
268 attr.ia_mode = mode;
269 rc = jffs2_do_setattr(inode, &attr);
270 if (rc < 0)
271 return rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900272 }
273 if (rc == 0)
274 acl = NULL;
275 }
276 break;
277 case ACL_TYPE_DEFAULT:
278 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
279 if (!S_ISDIR(inode->i_mode))
280 return acl ? -EACCES : 0;
281 break;
282 default:
283 return -EINVAL;
284 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900285 rc = __jffs2_set_acl(inode, xprefix, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900286 if (!rc) {
287 switch(type) {
288 case ACL_TYPE_ACCESS:
Al Viro290c2632009-06-08 19:55:12 -0400289 jffs2_iset_acl(inode, &inode->i_acl, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900290 break;
291 case ACL_TYPE_DEFAULT:
Al Viro290c2632009-06-08 19:55:12 -0400292 jffs2_iset_acl(inode, &inode->i_default_acl, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900293 break;
294 }
295 }
296 return rc;
297}
298
299static int jffs2_check_acl(struct inode *inode, int mask)
300{
301 struct posix_acl *acl;
302 int rc;
303
304 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
305 if (IS_ERR(acl))
306 return PTR_ERR(acl);
307 if (acl) {
308 rc = posix_acl_permission(inode, acl, mask);
309 posix_acl_release(acl);
310 return rc;
311 }
312 return -EAGAIN;
313}
314
Al Viroe6305c42008-07-15 21:03:57 -0400315int jffs2_permission(struct inode *inode, int mask)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900316{
317 return generic_permission(inode, mask, jffs2_check_acl);
318}
319
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900320int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, int *i_mode)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900321{
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900322 struct posix_acl *acl, *clone;
323 int rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900324
Al Viro290c2632009-06-08 19:55:12 -0400325 inode->i_default_acl = NULL;
326 inode->i_acl = NULL;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100327
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900328 if (S_ISLNK(*i_mode))
329 return 0; /* Symlink always has no-ACL */
330
331 acl = jffs2_get_acl(dir_i, ACL_TYPE_DEFAULT);
332 if (IS_ERR(acl))
333 return PTR_ERR(acl);
334
335 if (!acl) {
Al Viroce3b0f82009-03-29 19:08:22 -0400336 *i_mode &= ~current_umask();
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900337 } else {
338 if (S_ISDIR(*i_mode))
Al Viro290c2632009-06-08 19:55:12 -0400339 jffs2_iset_acl(inode, &inode->i_default_acl, acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900340
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900341 clone = posix_acl_clone(acl, GFP_KERNEL);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900342 if (!clone)
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900343 return -ENOMEM;
344 rc = posix_acl_create_masq(clone, (mode_t *)i_mode);
Julia Lawall36f97bc2008-01-06 17:50:34 +0100345 if (rc < 0) {
346 posix_acl_release(clone);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900347 return rc;
Julia Lawall36f97bc2008-01-06 17:50:34 +0100348 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900349 if (rc > 0)
Al Viro290c2632009-06-08 19:55:12 -0400350 jffs2_iset_acl(inode, &inode->i_acl, clone);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900351
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900352 posix_acl_release(clone);
353 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900354 return 0;
355}
356
357int jffs2_init_acl_post(struct inode *inode)
358{
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900359 int rc;
360
Al Viro290c2632009-06-08 19:55:12 -0400361 if (inode->i_default_acl) {
362 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900363 if (rc)
364 return rc;
365 }
366
Al Viro290c2632009-06-08 19:55:12 -0400367 if (inode->i_acl) {
368 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl);
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900369 if (rc)
370 return rc;
371 }
372
David Woodhouse8d6ea582007-10-27 10:36:44 -0400373 return 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900374}
375
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900376int jffs2_acl_chmod(struct inode *inode)
377{
378 struct posix_acl *acl, *clone;
379 int rc;
380
381 if (S_ISLNK(inode->i_mode))
382 return -EOPNOTSUPP;
383 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
384 if (IS_ERR(acl) || !acl)
385 return PTR_ERR(acl);
386 clone = posix_acl_clone(acl, GFP_KERNEL);
387 posix_acl_release(acl);
388 if (!clone)
389 return -ENOMEM;
390 rc = posix_acl_chmod_masq(clone, inode->i_mode);
391 if (!rc)
392 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
393 posix_acl_release(clone);
394 return rc;
395}
396
397static size_t jffs2_acl_access_listxattr(struct inode *inode, char *list, size_t list_size,
398 const char *name, size_t name_len)
399{
400 const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS);
401
402 if (list && retlen <= list_size)
403 strcpy(list, POSIX_ACL_XATTR_ACCESS);
404 return retlen;
405}
406
407static size_t jffs2_acl_default_listxattr(struct inode *inode, char *list, size_t list_size,
408 const char *name, size_t name_len)
409{
410 const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT);
411
412 if (list && retlen <= list_size)
413 strcpy(list, POSIX_ACL_XATTR_DEFAULT);
414 return retlen;
415}
416
417static int jffs2_acl_getxattr(struct inode *inode, int type, void *buffer, size_t size)
418{
419 struct posix_acl *acl;
420 int rc;
421
422 acl = jffs2_get_acl(inode, type);
423 if (IS_ERR(acl))
424 return PTR_ERR(acl);
425 if (!acl)
426 return -ENODATA;
427 rc = posix_acl_to_xattr(acl, buffer, size);
428 posix_acl_release(acl);
429
430 return rc;
431}
432
433static int jffs2_acl_access_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
434{
435 if (name[0] != '\0')
436 return -EINVAL;
437 return jffs2_acl_getxattr(inode, ACL_TYPE_ACCESS, buffer, size);
438}
439
440static int jffs2_acl_default_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
441{
442 if (name[0] != '\0')
443 return -EINVAL;
444 return jffs2_acl_getxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
445}
446
447static int jffs2_acl_setxattr(struct inode *inode, int type, const void *value, size_t size)
448{
449 struct posix_acl *acl;
450 int rc;
451
Satyam Sharma3bd858a2007-07-17 15:00:08 +0530452 if (!is_owner_or_cap(inode))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900453 return -EPERM;
454
455 if (value) {
456 acl = posix_acl_from_xattr(value, size);
457 if (IS_ERR(acl))
458 return PTR_ERR(acl);
459 if (acl) {
460 rc = posix_acl_valid(acl);
461 if (rc)
462 goto out;
463 }
464 } else {
465 acl = NULL;
466 }
467 rc = jffs2_set_acl(inode, type, acl);
468 out:
469 posix_acl_release(acl);
470 return rc;
471}
472
473static int jffs2_acl_access_setxattr(struct inode *inode, const char *name,
474 const void *buffer, size_t size, int flags)
475{
476 if (name[0] != '\0')
477 return -EINVAL;
478 return jffs2_acl_setxattr(inode, ACL_TYPE_ACCESS, buffer, size);
479}
480
481static int jffs2_acl_default_setxattr(struct inode *inode, const char *name,
482 const void *buffer, size_t size, int flags)
483{
484 if (name[0] != '\0')
485 return -EINVAL;
486 return jffs2_acl_setxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
487}
488
489struct xattr_handler jffs2_acl_access_xattr_handler = {
490 .prefix = POSIX_ACL_XATTR_ACCESS,
491 .list = jffs2_acl_access_listxattr,
492 .get = jffs2_acl_access_getxattr,
493 .set = jffs2_acl_access_setxattr,
494};
495
496struct xattr_handler jffs2_acl_default_xattr_handler = {
497 .prefix = POSIX_ACL_XATTR_DEFAULT,
498 .list = jffs2_acl_default_listxattr,
499 .get = jffs2_acl_default_getxattr,
500 .set = jffs2_acl_default_setxattr,
501};