]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/jffs2/acl.c
inline functions left without protection of ifdef (acl)
[mirror_ubuntu-artful-kernel.git] / fs / jffs2 / acl.c
CommitLineData
652ecc20
KK
1/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
aa98d7cf 3 *
c00c310e 4 * Copyright © 2006 NEC Corporation
aa98d7cf 5 *
652ecc20
KK
6 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
c00c310e 11
aa98d7cf
KK
12#include <linux/kernel.h>
13#include <linux/slab.h>
14#include <linux/fs.h>
914e2637 15#include <linux/sched.h>
aa98d7cf
KK
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>
22#include "nodelist.h"
23
24static size_t jffs2_acl_size(int count)
25{
26 if (count <= 4) {
de1f72fa
KK
27 return sizeof(struct jffs2_acl_header)
28 + count * sizeof(struct jffs2_acl_entry_short);
aa98d7cf 29 } else {
de1f72fa
KK
30 return sizeof(struct jffs2_acl_header)
31 + 4 * sizeof(struct jffs2_acl_entry_short)
32 + (count - 4) * sizeof(struct jffs2_acl_entry);
aa98d7cf
KK
33 }
34}
35
36static int jffs2_acl_count(size_t size)
37{
38 size_t s;
39
de1f72fa 40 size -= sizeof(struct jffs2_acl_header);
fc371a25 41 if (size < 4 * sizeof(struct jffs2_acl_entry_short)) {
de1f72fa 42 if (size % sizeof(struct jffs2_acl_entry_short))
aa98d7cf 43 return -1;
de1f72fa 44 return size / sizeof(struct jffs2_acl_entry_short);
aa98d7cf 45 } else {
fc371a25 46 s = size - 4 * sizeof(struct jffs2_acl_entry_short);
de1f72fa 47 if (s % sizeof(struct jffs2_acl_entry))
aa98d7cf 48 return -1;
de1f72fa 49 return s / sizeof(struct jffs2_acl_entry) + 4;
aa98d7cf
KK
50 }
51}
52
dea80134 53static struct posix_acl *jffs2_acl_from_medium(void *value, size_t size)
aa98d7cf 54{
dea80134
KK
55 void *end = value + size;
56 struct jffs2_acl_header *header = value;
57 struct jffs2_acl_entry *entry;
aa98d7cf
KK
58 struct posix_acl *acl;
59 uint32_t ver;
60 int i, count;
61
62 if (!value)
63 return NULL;
de1f72fa 64 if (size < sizeof(struct jffs2_acl_header))
aa98d7cf 65 return ERR_PTR(-EINVAL);
dea80134 66 ver = je32_to_cpu(header->a_version);
aa98d7cf
KK
67 if (ver != JFFS2_ACL_VERSION) {
68 JFFS2_WARNING("Invalid ACL version. (=%u)\n", ver);
69 return ERR_PTR(-EINVAL);
70 }
71
dea80134 72 value += sizeof(struct jffs2_acl_header);
aa98d7cf
KK
73 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++) {
dea80134
KK
84 entry = value;
85 if (value + sizeof(struct jffs2_acl_entry_short) > end)
aa98d7cf
KK
86 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:
dea80134 94 value += sizeof(struct jffs2_acl_entry_short);
aa98d7cf
KK
95 acl->a_entries[i].e_id = ACL_UNDEFINED_ID;
96 break;
97
98 case ACL_USER:
99 case ACL_GROUP:
dea80134
KK
100 value += sizeof(struct jffs2_acl_entry);
101 if (value > end)
aa98d7cf
KK
102 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{
dea80134
KK
120 struct jffs2_acl_header *header;
121 struct jffs2_acl_entry *entry;
122 void *e;
aa98d7cf
KK
123 size_t i;
124
125 *size = jffs2_acl_size(acl->a_count);
dea80134
KK
126 header = kmalloc(sizeof(*header) + acl->a_count * sizeof(*entry), GFP_KERNEL);
127 if (!header)
aa98d7cf 128 return ERR_PTR(-ENOMEM);
dea80134
KK
129 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
130 e = header + 1;
aa98d7cf 131 for (i=0; i < acl->a_count; i++) {
dea80134 132 entry = e;
aa98d7cf
KK
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) {
136 case ACL_USER:
137 case ACL_GROUP:
138 entry->e_id = cpu_to_je32(acl->a_entries[i].e_id);
de1f72fa 139 e += sizeof(struct jffs2_acl_entry);
aa98d7cf
KK
140 break;
141
142 case ACL_USER_OBJ:
143 case ACL_GROUP_OBJ:
144 case ACL_MASK:
145 case ACL_OTHER:
de1f72fa 146 e += sizeof(struct jffs2_acl_entry_short);
aa98d7cf
KK
147 break;
148
149 default:
150 goto fail;
151 }
152 }
dea80134 153 return header;
aa98d7cf 154 fail:
dea80134 155 kfree(header);
aa98d7cf
KK
156 return ERR_PTR(-EINVAL);
157}
158
050416e9 159static struct posix_acl *jffs2_get_acl(struct inode *inode, int type)
aa98d7cf 160{
aa98d7cf
KK
161 struct posix_acl *acl;
162 char *value = NULL;
163 int rc, xprefix;
164
073aaa1b
AV
165 acl = get_cached_acl(inode, type);
166 if (acl != ACL_NOT_CACHED)
167 return acl;
168
aa98d7cf
KK
169 switch (type) {
170 case ACL_TYPE_ACCESS:
aa98d7cf
KK
171 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
172 break;
173 case ACL_TYPE_DEFAULT:
aa98d7cf
KK
174 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
175 break;
176 default:
073aaa1b 177 BUG();
aa98d7cf
KK
178 }
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);
073aaa1b
AV
195 if (!IS_ERR(acl))
196 set_cached_acl(inode, type, acl);
aa98d7cf
KK
197 return acl;
198}
199
cfc8dc6f
KK
200static 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
aa98d7cf
KK
219static int jffs2_set_acl(struct inode *inode, int type, struct posix_acl *acl)
220{
aa98d7cf
KK
221 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) {
9ed437c5
DW
235 struct iattr attr;
236
237 attr.ia_valid = ATTR_MODE;
238 attr.ia_mode = mode;
239 rc = jffs2_do_setattr(inode, &attr);
240 if (rc < 0)
241 return rc;
aa98d7cf
KK
242 }
243 if (rc == 0)
244 acl = NULL;
245 }
246 break;
247 case ACL_TYPE_DEFAULT:
248 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
249 if (!S_ISDIR(inode->i_mode))
250 return acl ? -EACCES : 0;
251 break;
252 default:
253 return -EINVAL;
254 }
cfc8dc6f 255 rc = __jffs2_set_acl(inode, xprefix, acl);
073aaa1b
AV
256 if (!rc)
257 set_cached_acl(inode, type, acl);
aa98d7cf
KK
258 return rc;
259}
260
261static int jffs2_check_acl(struct inode *inode, int mask)
262{
263 struct posix_acl *acl;
264 int rc;
265
266 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
267 if (IS_ERR(acl))
268 return PTR_ERR(acl);
269 if (acl) {
270 rc = posix_acl_permission(inode, acl, mask);
271 posix_acl_release(acl);
272 return rc;
273 }
274 return -EAGAIN;
275}
276
e6305c43 277int jffs2_permission(struct inode *inode, int mask)
aa98d7cf
KK
278{
279 return generic_permission(inode, mask, jffs2_check_acl);
280}
281
cfc8dc6f 282int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, int *i_mode)
aa98d7cf 283{
cfc8dc6f
KK
284 struct posix_acl *acl, *clone;
285 int rc;
aa98d7cf 286
290c263b
AV
287 inode->i_default_acl = NULL;
288 inode->i_acl = NULL;
cfc8dc6f
KK
289
290 if (S_ISLNK(*i_mode))
291 return 0; /* Symlink always has no-ACL */
292
293 acl = jffs2_get_acl(dir_i, ACL_TYPE_DEFAULT);
294 if (IS_ERR(acl))
295 return PTR_ERR(acl);
296
297 if (!acl) {
ce3b0f8d 298 *i_mode &= ~current_umask();
cfc8dc6f
KK
299 } else {
300 if (S_ISDIR(*i_mode))
073aaa1b 301 set_cached_acl(inode, ACL_TYPE_DEFAULT, acl);
9ed437c5 302
aa98d7cf 303 clone = posix_acl_clone(acl, GFP_KERNEL);
aa98d7cf 304 if (!clone)
cfc8dc6f
KK
305 return -ENOMEM;
306 rc = posix_acl_create_masq(clone, (mode_t *)i_mode);
36f97bc6
JL
307 if (rc < 0) {
308 posix_acl_release(clone);
cfc8dc6f 309 return rc;
36f97bc6 310 }
cfc8dc6f 311 if (rc > 0)
073aaa1b 312 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
cfc8dc6f 313
aa98d7cf
KK
314 posix_acl_release(clone);
315 }
cfc8dc6f
KK
316 return 0;
317}
318
319int jffs2_init_acl_post(struct inode *inode)
320{
cfc8dc6f
KK
321 int rc;
322
290c263b
AV
323 if (inode->i_default_acl) {
324 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_DEFAULT, inode->i_default_acl);
cfc8dc6f
KK
325 if (rc)
326 return rc;
327 }
328
290c263b
AV
329 if (inode->i_acl) {
330 rc = __jffs2_set_acl(inode, JFFS2_XPREFIX_ACL_ACCESS, inode->i_acl);
cfc8dc6f
KK
331 if (rc)
332 return rc;
333 }
334
8d6ea587 335 return 0;
aa98d7cf
KK
336}
337
aa98d7cf
KK
338int jffs2_acl_chmod(struct inode *inode)
339{
340 struct posix_acl *acl, *clone;
341 int rc;
342
343 if (S_ISLNK(inode->i_mode))
344 return -EOPNOTSUPP;
345 acl = jffs2_get_acl(inode, ACL_TYPE_ACCESS);
346 if (IS_ERR(acl) || !acl)
347 return PTR_ERR(acl);
348 clone = posix_acl_clone(acl, GFP_KERNEL);
349 posix_acl_release(acl);
350 if (!clone)
351 return -ENOMEM;
352 rc = posix_acl_chmod_masq(clone, inode->i_mode);
353 if (!rc)
354 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
355 posix_acl_release(clone);
356 return rc;
357}
358
359static size_t jffs2_acl_access_listxattr(struct inode *inode, char *list, size_t list_size,
360 const char *name, size_t name_len)
361{
362 const int retlen = sizeof(POSIX_ACL_XATTR_ACCESS);
363
364 if (list && retlen <= list_size)
365 strcpy(list, POSIX_ACL_XATTR_ACCESS);
366 return retlen;
367}
368
369static size_t jffs2_acl_default_listxattr(struct inode *inode, char *list, size_t list_size,
370 const char *name, size_t name_len)
371{
372 const int retlen = sizeof(POSIX_ACL_XATTR_DEFAULT);
373
374 if (list && retlen <= list_size)
375 strcpy(list, POSIX_ACL_XATTR_DEFAULT);
376 return retlen;
377}
378
379static int jffs2_acl_getxattr(struct inode *inode, int type, void *buffer, size_t size)
380{
381 struct posix_acl *acl;
382 int rc;
383
384 acl = jffs2_get_acl(inode, type);
385 if (IS_ERR(acl))
386 return PTR_ERR(acl);
387 if (!acl)
388 return -ENODATA;
389 rc = posix_acl_to_xattr(acl, buffer, size);
390 posix_acl_release(acl);
391
392 return rc;
393}
394
395static int jffs2_acl_access_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
396{
397 if (name[0] != '\0')
398 return -EINVAL;
399 return jffs2_acl_getxattr(inode, ACL_TYPE_ACCESS, buffer, size);
400}
401
402static int jffs2_acl_default_getxattr(struct inode *inode, const char *name, void *buffer, size_t size)
403{
404 if (name[0] != '\0')
405 return -EINVAL;
406 return jffs2_acl_getxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
407}
408
409static int jffs2_acl_setxattr(struct inode *inode, int type, const void *value, size_t size)
410{
411 struct posix_acl *acl;
412 int rc;
413
3bd858ab 414 if (!is_owner_or_cap(inode))
aa98d7cf
KK
415 return -EPERM;
416
417 if (value) {
418 acl = posix_acl_from_xattr(value, size);
419 if (IS_ERR(acl))
420 return PTR_ERR(acl);
421 if (acl) {
422 rc = posix_acl_valid(acl);
423 if (rc)
424 goto out;
425 }
426 } else {
427 acl = NULL;
428 }
429 rc = jffs2_set_acl(inode, type, acl);
430 out:
431 posix_acl_release(acl);
432 return rc;
433}
434
435static int jffs2_acl_access_setxattr(struct inode *inode, const char *name,
436 const void *buffer, size_t size, int flags)
437{
438 if (name[0] != '\0')
439 return -EINVAL;
440 return jffs2_acl_setxattr(inode, ACL_TYPE_ACCESS, buffer, size);
441}
442
443static int jffs2_acl_default_setxattr(struct inode *inode, const char *name,
444 const void *buffer, size_t size, int flags)
445{
446 if (name[0] != '\0')
447 return -EINVAL;
448 return jffs2_acl_setxattr(inode, ACL_TYPE_DEFAULT, buffer, size);
449}
450
451struct xattr_handler jffs2_acl_access_xattr_handler = {
452 .prefix = POSIX_ACL_XATTR_ACCESS,
453 .list = jffs2_acl_access_listxattr,
454 .get = jffs2_acl_access_getxattr,
455 .set = jffs2_acl_access_setxattr,
456};
457
458struct xattr_handler jffs2_acl_default_xattr_handler = {
459 .prefix = POSIX_ACL_XATTR_DEFAULT,
460 .list = jffs2_acl_default_listxattr,
461 .get = jffs2_acl_default_getxattr,
462 .set = jffs2_acl_default_setxattr,
463};