blob: e945e348478803d4ec1aedac0d9c3459809edc91 [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 break;
98
99 case ACL_USER:
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800100 value += sizeof(struct jffs2_acl_entry);
101 if (value > end)
102 goto fail;
103 acl->a_entries[i].e_uid =
104 make_kuid(&init_user_ns,
105 je32_to_cpu(entry->e_id));
106 break;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900107 case ACL_GROUP:
KaiGai Koheidea80132006-05-13 15:20:24 +0900108 value += sizeof(struct jffs2_acl_entry);
109 if (value > end)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900110 goto fail;
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800111 acl->a_entries[i].e_gid =
112 make_kgid(&init_user_ns,
113 je32_to_cpu(entry->e_id));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900114 break;
115
116 default:
117 goto fail;
118 }
119 }
120 if (value != end)
121 goto fail;
122 return acl;
123 fail:
124 posix_acl_release(acl);
125 return ERR_PTR(-EINVAL);
126}
127
128static void *jffs2_acl_to_medium(const struct posix_acl *acl, size_t *size)
129{
KaiGai Koheidea80132006-05-13 15:20:24 +0900130 struct jffs2_acl_header *header;
131 struct jffs2_acl_entry *entry;
132 void *e;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900133 size_t i;
134
135 *size = jffs2_acl_size(acl->a_count);
Matthew Wilcoxa3ac9732018-06-07 07:57:19 -0700136 header = kmalloc(struct_size(header, a_entries, acl->a_count),
137 GFP_KERNEL);
KaiGai Koheidea80132006-05-13 15:20:24 +0900138 if (!header)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900139 return ERR_PTR(-ENOMEM);
KaiGai Koheidea80132006-05-13 15:20:24 +0900140 header->a_version = cpu_to_je32(JFFS2_ACL_VERSION);
141 e = header + 1;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900142 for (i=0; i < acl->a_count; i++) {
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800143 const struct posix_acl_entry *acl_e = &acl->a_entries[i];
KaiGai Koheidea80132006-05-13 15:20:24 +0900144 entry = e;
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800145 entry->e_tag = cpu_to_je16(acl_e->e_tag);
146 entry->e_perm = cpu_to_je16(acl_e->e_perm);
147 switch(acl_e->e_tag) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900148 case ACL_USER:
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800149 entry->e_id = cpu_to_je32(
150 from_kuid(&init_user_ns, acl_e->e_uid));
151 e += sizeof(struct jffs2_acl_entry);
152 break;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900153 case ACL_GROUP:
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -0800154 entry->e_id = cpu_to_je32(
155 from_kgid(&init_user_ns, acl_e->e_gid));
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900156 e += sizeof(struct jffs2_acl_entry);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900157 break;
158
159 case ACL_USER_OBJ:
160 case ACL_GROUP_OBJ:
161 case ACL_MASK:
162 case ACL_OTHER:
KaiGai Koheide1f72f2006-05-13 15:13:27 +0900163 e += sizeof(struct jffs2_acl_entry_short);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900164 break;
165
166 default:
167 goto fail;
168 }
169 }
KaiGai Koheidea80132006-05-13 15:20:24 +0900170 return header;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900171 fail:
KaiGai Koheidea80132006-05-13 15:20:24 +0900172 kfree(header);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900173 return ERR_PTR(-EINVAL);
174}
175
Miklos Szeredi0cad6242021-08-18 22:08:24 +0200176struct posix_acl *jffs2_get_acl(struct inode *inode, int type, bool rcu)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900177{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900178 struct posix_acl *acl;
179 char *value = NULL;
180 int rc, xprefix;
181
Miklos Szeredi0cad6242021-08-18 22:08:24 +0200182 if (rcu)
183 return ERR_PTR(-ECHILD);
184
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900185 switch (type) {
186 case ACL_TYPE_ACCESS:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900187 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
188 break;
189 case ACL_TYPE_DEFAULT:
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900190 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
191 break;
192 default:
Al Viro073aaa12009-06-09 12:11:54 -0400193 BUG();
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900194 }
195 rc = do_jffs2_getxattr(inode, xprefix, "", NULL, 0);
196 if (rc > 0) {
197 value = kmalloc(rc, GFP_KERNEL);
198 if (!value)
199 return ERR_PTR(-ENOMEM);
200 rc = do_jffs2_getxattr(inode, xprefix, "", value, rc);
201 }
202 if (rc > 0) {
203 acl = jffs2_acl_from_medium(value, rc);
204 } else if (rc == -ENODATA || rc == -ENOSYS) {
205 acl = NULL;
206 } else {
207 acl = ERR_PTR(rc);
208 }
Fabian Frederickb6861d02014-06-16 19:58:07 +0200209 kfree(value);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900210 return acl;
211}
212
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900213static int __jffs2_set_acl(struct inode *inode, int xprefix, struct posix_acl *acl)
214{
215 char *value = NULL;
216 size_t size = 0;
217 int rc;
218
219 if (acl) {
220 value = jffs2_acl_to_medium(acl, &size);
221 if (IS_ERR(value))
222 return PTR_ERR(value);
223 }
224 rc = do_jffs2_setxattr(inode, xprefix, "", value, size, 0);
225 if (!value && rc == -ENODATA)
226 rc = 0;
227 kfree(value);
228
229 return rc;
230}
231
Christian Brauner549c7292021-01-21 14:19:43 +0100232int jffs2_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
233 struct posix_acl *acl, int type)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900234{
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900235 int rc, xprefix;
236
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900237 switch (type) {
238 case ACL_TYPE_ACCESS:
239 xprefix = JFFS2_XPREFIX_ACL_ACCESS;
240 if (acl) {
Jan Kara07393102016-09-19 17:39:09 +0200241 umode_t mode;
242
Christian Braunere65ce2a2021-01-21 14:19:27 +0100243 rc = posix_acl_update_mode(&init_user_ns, inode, &mode,
244 &acl);
Jan Kara07393102016-09-19 17:39:09 +0200245 if (rc)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900246 return rc;
247 if (inode->i_mode != mode) {
David Woodhouse9ed437c2007-08-22 12:39:19 +0100248 struct iattr attr;
249
Jan Kara1c24d062010-06-04 17:07:55 +0200250 attr.ia_valid = ATTR_MODE | ATTR_CTIME;
David Woodhouse9ed437c2007-08-22 12:39:19 +0100251 attr.ia_mode = mode;
Deepa Dinamani02027d42016-09-14 07:48:05 -0700252 attr.ia_ctime = current_time(inode);
David Woodhouse9ed437c2007-08-22 12:39:19 +0100253 rc = jffs2_do_setattr(inode, &attr);
254 if (rc < 0)
255 return rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900256 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900257 }
258 break;
259 case ACL_TYPE_DEFAULT:
260 xprefix = JFFS2_XPREFIX_ACL_DEFAULT;
261 if (!S_ISDIR(inode->i_mode))
262 return acl ? -EACCES : 0;
263 break;
264 default:
265 return -EINVAL;
266 }
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900267 rc = __jffs2_set_acl(inode, xprefix, acl);
Al Viro073aaa12009-06-09 12:11:54 -0400268 if (!rc)
269 set_cached_acl(inode, type, acl);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900270 return rc;
271}
272
Al Virod3fb6122011-07-23 18:37:50 -0400273int jffs2_init_acl_pre(struct inode *dir_i, struct inode *inode, umode_t *i_mode)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900274{
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800275 struct posix_acl *default_acl, *acl;
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900276 int rc;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900277
Al Viro72c04902009-06-24 16:58:48 -0400278 cache_no_acl(inode);
David Woodhouse9ed437c2007-08-22 12:39:19 +0100279
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800280 rc = posix_acl_create(dir_i, i_mode, &default_acl, &acl);
281 if (rc)
282 return rc;
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900283
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800284 if (default_acl) {
285 set_cached_acl(inode, ACL_TYPE_DEFAULT, default_acl);
286 posix_acl_release(default_acl);
287 }
288 if (acl) {
289 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
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}