blob: 1e29630f49c1bb81cd79f867d319d93044eb34e9 [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kimaf48b852012-11-02 17:12:17 +09002 * fs/f2fs/acl.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * Portions of this code from linux/fs/ext2/acl.c
8 *
9 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15#include <linux/f2fs_fs.h>
16#include "f2fs.h"
17#include "xattr.h"
18#include "acl.h"
19
Jaegeuk Kimaf48b852012-11-02 17:12:17 +090020static inline size_t f2fs_acl_size(int count)
21{
22 if (count <= 4) {
23 return sizeof(struct f2fs_acl_header) +
24 count * sizeof(struct f2fs_acl_entry_short);
25 } else {
26 return sizeof(struct f2fs_acl_header) +
27 4 * sizeof(struct f2fs_acl_entry_short) +
28 (count - 4) * sizeof(struct f2fs_acl_entry);
29 }
30}
31
32static inline int f2fs_acl_count(size_t size)
33{
34 ssize_t s;
35 size -= sizeof(struct f2fs_acl_header);
36 s = size - 4 * sizeof(struct f2fs_acl_entry_short);
37 if (s < 0) {
38 if (size % sizeof(struct f2fs_acl_entry_short))
39 return -1;
40 return size / sizeof(struct f2fs_acl_entry_short);
41 } else {
42 if (s % sizeof(struct f2fs_acl_entry))
43 return -1;
44 return s / sizeof(struct f2fs_acl_entry) + 4;
45 }
46}
47
48static struct posix_acl *f2fs_acl_from_disk(const char *value, size_t size)
49{
50 int i, count;
51 struct posix_acl *acl;
52 struct f2fs_acl_header *hdr = (struct f2fs_acl_header *)value;
53 struct f2fs_acl_entry *entry = (struct f2fs_acl_entry *)(hdr + 1);
54 const char *end = value + size;
55
56 if (hdr->a_version != cpu_to_le32(F2FS_ACL_VERSION))
57 return ERR_PTR(-EINVAL);
58
59 count = f2fs_acl_count(size);
60 if (count < 0)
61 return ERR_PTR(-EINVAL);
62 if (count == 0)
63 return NULL;
64
Jaegeuk Kimdd802402014-12-18 19:32:36 -080065 acl = posix_acl_alloc(count, GFP_NOFS);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +090066 if (!acl)
67 return ERR_PTR(-ENOMEM);
68
69 for (i = 0; i < count; i++) {
70
71 if ((char *)entry > end)
72 goto fail;
73
74 acl->a_entries[i].e_tag = le16_to_cpu(entry->e_tag);
75 acl->a_entries[i].e_perm = le16_to_cpu(entry->e_perm);
76
77 switch (acl->a_entries[i].e_tag) {
78 case ACL_USER_OBJ:
79 case ACL_GROUP_OBJ:
80 case ACL_MASK:
81 case ACL_OTHER:
Jaegeuk Kimaf48b852012-11-02 17:12:17 +090082 entry = (struct f2fs_acl_entry *)((char *)entry +
83 sizeof(struct f2fs_acl_entry_short));
84 break;
85
86 case ACL_USER:
87 acl->a_entries[i].e_uid =
88 make_kuid(&init_user_ns,
89 le32_to_cpu(entry->e_id));
90 entry = (struct f2fs_acl_entry *)((char *)entry +
91 sizeof(struct f2fs_acl_entry));
92 break;
93 case ACL_GROUP:
94 acl->a_entries[i].e_gid =
95 make_kgid(&init_user_ns,
96 le32_to_cpu(entry->e_id));
97 entry = (struct f2fs_acl_entry *)((char *)entry +
98 sizeof(struct f2fs_acl_entry));
99 break;
100 default:
101 goto fail;
102 }
103 }
104 if ((char *)entry != end)
105 goto fail;
106 return acl;
107fail:
108 posix_acl_release(acl);
109 return ERR_PTR(-EINVAL);
110}
111
Chao Yu1ecc0c52016-09-23 21:30:09 +0800112static void *f2fs_acl_to_disk(struct f2fs_sb_info *sbi,
113 const struct posix_acl *acl, size_t *size)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900114{
115 struct f2fs_acl_header *f2fs_acl;
116 struct f2fs_acl_entry *entry;
117 int i;
118
Chao Yu1ecc0c52016-09-23 21:30:09 +0800119 f2fs_acl = f2fs_kmalloc(sbi, sizeof(struct f2fs_acl_header) +
120 acl->a_count * sizeof(struct f2fs_acl_entry),
121 GFP_NOFS);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900122 if (!f2fs_acl)
123 return ERR_PTR(-ENOMEM);
124
125 f2fs_acl->a_version = cpu_to_le32(F2FS_ACL_VERSION);
126 entry = (struct f2fs_acl_entry *)(f2fs_acl + 1);
127
128 for (i = 0; i < acl->a_count; i++) {
129
130 entry->e_tag = cpu_to_le16(acl->a_entries[i].e_tag);
131 entry->e_perm = cpu_to_le16(acl->a_entries[i].e_perm);
132
133 switch (acl->a_entries[i].e_tag) {
134 case ACL_USER:
135 entry->e_id = cpu_to_le32(
136 from_kuid(&init_user_ns,
137 acl->a_entries[i].e_uid));
138 entry = (struct f2fs_acl_entry *)((char *)entry +
139 sizeof(struct f2fs_acl_entry));
140 break;
141 case ACL_GROUP:
142 entry->e_id = cpu_to_le32(
143 from_kgid(&init_user_ns,
144 acl->a_entries[i].e_gid));
145 entry = (struct f2fs_acl_entry *)((char *)entry +
146 sizeof(struct f2fs_acl_entry));
147 break;
148 case ACL_USER_OBJ:
149 case ACL_GROUP_OBJ:
150 case ACL_MASK:
151 case ACL_OTHER:
152 entry = (struct f2fs_acl_entry *)((char *)entry +
153 sizeof(struct f2fs_acl_entry_short));
154 break;
155 default:
156 goto fail;
157 }
158 }
159 *size = f2fs_acl_size(acl->a_count);
160 return (void *)f2fs_acl;
161
162fail:
163 kfree(f2fs_acl);
164 return ERR_PTR(-EINVAL);
165}
166
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700167static struct posix_acl *__f2fs_get_acl(struct inode *inode, int type,
168 struct page *dpage)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900169{
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900170 int name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT;
171 void *value = NULL;
172 struct posix_acl *acl;
173 int retval;
174
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900175 if (type == ACL_TYPE_ACCESS)
176 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;
177
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700178 retval = f2fs_getxattr(inode, name_index, "", NULL, 0, dpage);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900179 if (retval > 0) {
Chao Yu1ecc0c52016-09-23 21:30:09 +0800180 value = f2fs_kmalloc(F2FS_I_SB(inode), retval, GFP_F2FS_ZERO);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900181 if (!value)
182 return ERR_PTR(-ENOMEM);
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700183 retval = f2fs_getxattr(inode, name_index, "", value,
184 retval, dpage);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900185 }
186
Jaegeuk Kimc1b75ea2013-01-03 09:24:28 +0900187 if (retval > 0)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900188 acl = f2fs_acl_from_disk(value, retval);
Jaegeuk Kimc1b75ea2013-01-03 09:24:28 +0900189 else if (retval == -ENODATA)
190 acl = NULL;
191 else
192 acl = ERR_PTR(retval);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900193 kfree(value);
Jaegeuk Kimc1b75ea2013-01-03 09:24:28 +0900194
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900195 return acl;
196}
197
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700198struct posix_acl *f2fs_get_acl(struct inode *inode, int type)
199{
200 return __f2fs_get_acl(inode, type, NULL);
201}
202
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800203static int __f2fs_set_acl(struct inode *inode, int type,
Jaegeuk Kim2ed2d5b2013-10-28 13:17:54 +0900204 struct posix_acl *acl, struct page *ipage)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900205{
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900206 int name_index;
207 void *value = NULL;
208 size_t size = 0;
209 int error;
210
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900211 switch (type) {
212 case ACL_TYPE_ACCESS:
213 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;
214 if (acl) {
215 error = posix_acl_equiv_mode(acl, &inode->i_mode);
216 if (error < 0)
217 return error;
Jaegeuk Kim91942322016-05-20 10:13:22 -0700218 set_acl_inode(inode, inode->i_mode);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900219 if (error == 0)
220 acl = NULL;
221 }
222 break;
223
224 case ACL_TYPE_DEFAULT:
225 name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT;
226 if (!S_ISDIR(inode->i_mode))
227 return acl ? -EACCES : 0;
228 break;
229
230 default:
231 return -EINVAL;
232 }
233
234 if (acl) {
Chao Yu1ecc0c52016-09-23 21:30:09 +0800235 value = f2fs_acl_to_disk(F2FS_I_SB(inode), acl, &size);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900236 if (IS_ERR(value)) {
Jaegeuk Kim91942322016-05-20 10:13:22 -0700237 clear_inode_flag(inode, FI_ACL_MODE);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900238 return (int)PTR_ERR(value);
239 }
240 }
241
Jaegeuk Kimc02745e2014-04-23 12:23:14 +0900242 error = f2fs_setxattr(inode, name_index, "", value, size, ipage, 0);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900243
244 kfree(value);
245 if (!error)
246 set_cached_acl(inode, type, acl);
247
Jaegeuk Kim91942322016-05-20 10:13:22 -0700248 clear_inode_flag(inode, FI_ACL_MODE);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900249 return error;
250}
251
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800252int f2fs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900253{
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800254 return __f2fs_set_acl(inode, type, acl, NULL);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900255}
256
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700257/*
258 * Most part of f2fs_acl_clone, f2fs_acl_create_masq, f2fs_acl_create
259 * are copied from posix_acl.c
260 */
261static struct posix_acl *f2fs_acl_clone(const struct posix_acl *acl,
262 gfp_t flags)
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900263{
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700264 struct posix_acl *clone = NULL;
265
266 if (acl) {
267 int size = sizeof(struct posix_acl) + acl->a_count *
268 sizeof(struct posix_acl_entry);
269 clone = kmemdup(acl, size, flags);
270 if (clone)
271 atomic_set(&clone->a_refcount, 1);
272 }
273 return clone;
274}
275
276static int f2fs_acl_create_masq(struct posix_acl *acl, umode_t *mode_p)
277{
278 struct posix_acl_entry *pa, *pe;
279 struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL;
280 umode_t mode = *mode_p;
281 int not_equiv = 0;
282
283 /* assert(atomic_read(acl->a_refcount) == 1); */
284
285 FOREACH_ACL_ENTRY(pa, acl, pe) {
286 switch(pa->e_tag) {
287 case ACL_USER_OBJ:
288 pa->e_perm &= (mode >> 6) | ~S_IRWXO;
289 mode &= (pa->e_perm << 6) | ~S_IRWXU;
290 break;
291
292 case ACL_USER:
293 case ACL_GROUP:
294 not_equiv = 1;
295 break;
296
297 case ACL_GROUP_OBJ:
298 group_obj = pa;
299 break;
300
301 case ACL_OTHER:
302 pa->e_perm &= mode | ~S_IRWXO;
303 mode &= pa->e_perm | ~S_IRWXO;
304 break;
305
306 case ACL_MASK:
307 mask_obj = pa;
308 not_equiv = 1;
309 break;
310
311 default:
312 return -EIO;
313 }
314 }
315
316 if (mask_obj) {
317 mask_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
318 mode &= (mask_obj->e_perm << 3) | ~S_IRWXG;
319 } else {
320 if (!group_obj)
321 return -EIO;
322 group_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
323 mode &= (group_obj->e_perm << 3) | ~S_IRWXG;
324 }
325
326 *mode_p = (*mode_p & ~S_IRWXUGO) | mode;
327 return not_equiv;
328}
329
330static int f2fs_acl_create(struct inode *dir, umode_t *mode,
331 struct posix_acl **default_acl, struct posix_acl **acl,
332 struct page *dpage)
333{
334 struct posix_acl *p;
Chao Yu272e0832015-04-18 18:03:58 +0800335 struct posix_acl *clone;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700336 int ret;
337
Chao Yu272e0832015-04-18 18:03:58 +0800338 *acl = NULL;
339 *default_acl = NULL;
340
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700341 if (S_ISLNK(*mode) || !IS_POSIXACL(dir))
Chao Yu272e0832015-04-18 18:03:58 +0800342 return 0;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700343
344 p = __f2fs_get_acl(dir, ACL_TYPE_DEFAULT, dpage);
Chao Yu272e0832015-04-18 18:03:58 +0800345 if (!p || p == ERR_PTR(-EOPNOTSUPP)) {
346 *mode &= ~current_umask();
347 return 0;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700348 }
Chao Yu272e0832015-04-18 18:03:58 +0800349 if (IS_ERR(p))
350 return PTR_ERR(p);
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700351
Chao Yu272e0832015-04-18 18:03:58 +0800352 clone = f2fs_acl_clone(p, GFP_NOFS);
353 if (!clone)
Chao Yu83dfe532015-03-09 18:18:19 +0800354 goto no_mem;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700355
Chao Yu272e0832015-04-18 18:03:58 +0800356 ret = f2fs_acl_create_masq(clone, mode);
Chao Yu83dfe532015-03-09 18:18:19 +0800357 if (ret < 0)
358 goto no_mem_clone;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700359
Chao Yu272e0832015-04-18 18:03:58 +0800360 if (ret == 0)
361 posix_acl_release(clone);
362 else
363 *acl = clone;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700364
Chao Yu272e0832015-04-18 18:03:58 +0800365 if (!S_ISDIR(*mode))
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700366 posix_acl_release(p);
Chao Yu272e0832015-04-18 18:03:58 +0800367 else
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700368 *default_acl = p;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700369
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700370 return 0;
Chao Yu83dfe532015-03-09 18:18:19 +0800371
372no_mem_clone:
Chao Yu272e0832015-04-18 18:03:58 +0800373 posix_acl_release(clone);
Chao Yu83dfe532015-03-09 18:18:19 +0800374no_mem:
375 posix_acl_release(p);
376 return -ENOMEM;
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700377}
378
379int f2fs_init_acl(struct inode *inode, struct inode *dir, struct page *ipage,
380 struct page *dpage)
381{
382 struct posix_acl *default_acl = NULL, *acl = NULL;
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800383 int error = 0;
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900384
Jaegeuk Kimbce8d112014-10-13 19:42:53 -0700385 error = f2fs_acl_create(dir, &inode->i_mode, &default_acl, &acl, dpage);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900386 if (error)
387 return error;
Jaegeuk Kimb8b60e12013-10-28 13:12:09 +0900388
Jaegeuk Kimb56ab832016-06-30 19:09:37 -0700389 f2fs_mark_inode_dirty_sync(inode);
Jaegeuk Kim205b9822016-05-20 09:52:20 -0700390
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800391 if (default_acl) {
392 error = __f2fs_set_acl(inode, ACL_TYPE_DEFAULT, default_acl,
393 ipage);
394 posix_acl_release(default_acl);
395 }
396 if (acl) {
Kinglong Mee3b6709b2015-01-24 17:06:25 +0800397 if (!error)
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -0800398 error = __f2fs_set_acl(inode, ACL_TYPE_ACCESS, acl,
399 ipage);
400 posix_acl_release(acl);
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900401 }
402
Jaegeuk Kimaf48b852012-11-02 17:12:17 +0900403 return error;
404}