import PULS_20180308
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / f2fs / acl.c
1 /*
2 * 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
20 #define get_inode_mode(i) ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
21 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
22
23 static inline size_t f2fs_acl_size(int count)
24 {
25 if (count <= 4) {
26 return sizeof(struct f2fs_acl_header) +
27 count * sizeof(struct f2fs_acl_entry_short);
28 } else {
29 return sizeof(struct f2fs_acl_header) +
30 4 * sizeof(struct f2fs_acl_entry_short) +
31 (count - 4) * sizeof(struct f2fs_acl_entry);
32 }
33 }
34
35 static inline int f2fs_acl_count(size_t size)
36 {
37 ssize_t s;
38 size -= sizeof(struct f2fs_acl_header);
39 s = size - 4 * sizeof(struct f2fs_acl_entry_short);
40 if (s < 0) {
41 if (size % sizeof(struct f2fs_acl_entry_short))
42 return -1;
43 return size / sizeof(struct f2fs_acl_entry_short);
44 } else {
45 if (s % sizeof(struct f2fs_acl_entry))
46 return -1;
47 return s / sizeof(struct f2fs_acl_entry) + 4;
48 }
49 }
50
51 static struct posix_acl *f2fs_acl_from_disk(const char *value, size_t size)
52 {
53 int i, count;
54 struct posix_acl *acl;
55 struct f2fs_acl_header *hdr = (struct f2fs_acl_header *)value;
56 struct f2fs_acl_entry *entry = (struct f2fs_acl_entry *)(hdr + 1);
57 const char *end = value + size;
58
59 if (hdr->a_version != cpu_to_le32(F2FS_ACL_VERSION))
60 return ERR_PTR(-EINVAL);
61
62 count = f2fs_acl_count(size);
63 if (count < 0)
64 return ERR_PTR(-EINVAL);
65 if (count == 0)
66 return NULL;
67
68 acl = posix_acl_alloc(count, GFP_KERNEL);
69 if (!acl)
70 return ERR_PTR(-ENOMEM);
71
72 for (i = 0; i < count; i++) {
73
74 if ((char *)entry > end)
75 goto fail;
76
77 acl->a_entries[i].e_tag = le16_to_cpu(entry->e_tag);
78 acl->a_entries[i].e_perm = le16_to_cpu(entry->e_perm);
79
80 switch (acl->a_entries[i].e_tag) {
81 case ACL_USER_OBJ:
82 case ACL_GROUP_OBJ:
83 case ACL_MASK:
84 case ACL_OTHER:
85 entry = (struct f2fs_acl_entry *)((char *)entry +
86 sizeof(struct f2fs_acl_entry_short));
87 break;
88
89 case ACL_USER:
90 acl->a_entries[i].e_uid =
91 make_kuid(&init_user_ns,
92 le32_to_cpu(entry->e_id));
93 entry = (struct f2fs_acl_entry *)((char *)entry +
94 sizeof(struct f2fs_acl_entry));
95 break;
96 case ACL_GROUP:
97 acl->a_entries[i].e_gid =
98 make_kgid(&init_user_ns,
99 le32_to_cpu(entry->e_id));
100 entry = (struct f2fs_acl_entry *)((char *)entry +
101 sizeof(struct f2fs_acl_entry));
102 break;
103 default:
104 goto fail;
105 }
106 }
107 if ((char *)entry != end)
108 goto fail;
109 return acl;
110 fail:
111 posix_acl_release(acl);
112 return ERR_PTR(-EINVAL);
113 }
114
115 static void *f2fs_acl_to_disk(const struct posix_acl *acl, size_t *size)
116 {
117 struct f2fs_acl_header *f2fs_acl;
118 struct f2fs_acl_entry *entry;
119 int i;
120
121 f2fs_acl = kmalloc(sizeof(struct f2fs_acl_header) + acl->a_count *
122 sizeof(struct f2fs_acl_entry), GFP_KERNEL);
123 if (!f2fs_acl)
124 return ERR_PTR(-ENOMEM);
125
126 f2fs_acl->a_version = cpu_to_le32(F2FS_ACL_VERSION);
127 entry = (struct f2fs_acl_entry *)(f2fs_acl + 1);
128
129 for (i = 0; i < acl->a_count; i++) {
130
131 entry->e_tag = cpu_to_le16(acl->a_entries[i].e_tag);
132 entry->e_perm = cpu_to_le16(acl->a_entries[i].e_perm);
133
134 switch (acl->a_entries[i].e_tag) {
135 case ACL_USER:
136 entry->e_id = cpu_to_le32(
137 from_kuid(&init_user_ns,
138 acl->a_entries[i].e_uid));
139 entry = (struct f2fs_acl_entry *)((char *)entry +
140 sizeof(struct f2fs_acl_entry));
141 break;
142 case ACL_GROUP:
143 entry->e_id = cpu_to_le32(
144 from_kgid(&init_user_ns,
145 acl->a_entries[i].e_gid));
146 entry = (struct f2fs_acl_entry *)((char *)entry +
147 sizeof(struct f2fs_acl_entry));
148 break;
149 case ACL_USER_OBJ:
150 case ACL_GROUP_OBJ:
151 case ACL_MASK:
152 case ACL_OTHER:
153 entry = (struct f2fs_acl_entry *)((char *)entry +
154 sizeof(struct f2fs_acl_entry_short));
155 break;
156 default:
157 goto fail;
158 }
159 }
160 *size = f2fs_acl_size(acl->a_count);
161 return (void *)f2fs_acl;
162
163 fail:
164 kfree(f2fs_acl);
165 return ERR_PTR(-EINVAL);
166 }
167
168 struct posix_acl *f2fs_get_acl(struct inode *inode, int type)
169 {
170 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
171 int name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT;
172 void *value = NULL;
173 struct posix_acl *acl;
174 int retval;
175
176 if (!test_opt(sbi, POSIX_ACL))
177 return NULL;
178
179 acl = get_cached_acl(inode, type);
180 if (acl != ACL_NOT_CACHED)
181 return acl;
182
183 if (type == ACL_TYPE_ACCESS)
184 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;
185
186 retval = f2fs_getxattr(inode, name_index, "", NULL, 0);
187 if (retval > 0) {
188 value = kmalloc(retval, GFP_KERNEL);
189 if (!value)
190 return ERR_PTR(-ENOMEM);
191 retval = f2fs_getxattr(inode, name_index, "", value, retval);
192 }
193
194 if (retval > 0)
195 acl = f2fs_acl_from_disk(value, retval);
196 else if (retval == -ENODATA)
197 acl = NULL;
198 else
199 acl = ERR_PTR(retval);
200 kfree(value);
201
202 if (!IS_ERR(acl))
203 set_cached_acl(inode, type, acl);
204
205 return acl;
206 }
207
208 static int f2fs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
209 {
210 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
211 struct f2fs_inode_info *fi = F2FS_I(inode);
212 int name_index;
213 void *value = NULL;
214 size_t size = 0;
215 int error;
216
217 if (!test_opt(sbi, POSIX_ACL))
218 return 0;
219 if (S_ISLNK(inode->i_mode))
220 return -EOPNOTSUPP;
221
222 switch (type) {
223 case ACL_TYPE_ACCESS:
224 name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;
225 if (acl) {
226 error = posix_acl_update_mode(inode, &inode->i_mode, &acl);
227 if (error)
228 return error;
229 set_acl_inode(fi, inode->i_mode);
230 }
231 break;
232
233 case ACL_TYPE_DEFAULT:
234 name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT;
235 if (!S_ISDIR(inode->i_mode))
236 return acl ? -EACCES : 0;
237 break;
238
239 default:
240 return -EINVAL;
241 }
242
243 if (acl) {
244 value = f2fs_acl_to_disk(acl, &size);
245 if (IS_ERR(value)) {
246 cond_clear_inode_flag(fi, FI_ACL_MODE);
247 return (int)PTR_ERR(value);
248 }
249 }
250
251 error = f2fs_setxattr(inode, name_index, "", value, size);
252
253 kfree(value);
254 if (!error)
255 set_cached_acl(inode, type, acl);
256
257 cond_clear_inode_flag(fi, FI_ACL_MODE);
258 return error;
259 }
260
261 int f2fs_init_acl(struct inode *inode, struct inode *dir)
262 {
263 struct posix_acl *acl = NULL;
264 struct f2fs_sb_info *sbi = F2FS_SB(dir->i_sb);
265 int error = 0;
266
267 if (!S_ISLNK(inode->i_mode)) {
268 if (test_opt(sbi, POSIX_ACL)) {
269 acl = f2fs_get_acl(dir, ACL_TYPE_DEFAULT);
270 if (IS_ERR(acl))
271 return PTR_ERR(acl);
272 }
273 if (!acl)
274 inode->i_mode &= ~current_umask();
275 }
276
277 if (test_opt(sbi, POSIX_ACL) && acl) {
278
279 if (S_ISDIR(inode->i_mode)) {
280 error = f2fs_set_acl(inode, ACL_TYPE_DEFAULT, acl);
281 if (error)
282 goto cleanup;
283 }
284 error = posix_acl_create(&acl, GFP_KERNEL, &inode->i_mode);
285 if (error < 0)
286 return error;
287 if (error > 0)
288 error = f2fs_set_acl(inode, ACL_TYPE_ACCESS, acl);
289 }
290 cleanup:
291 posix_acl_release(acl);
292 return error;
293 }
294
295 int f2fs_acl_chmod(struct inode *inode)
296 {
297 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
298 struct posix_acl *acl;
299 int error;
300 umode_t mode = get_inode_mode(inode);
301
302 if (!test_opt(sbi, POSIX_ACL))
303 return 0;
304 if (S_ISLNK(mode))
305 return -EOPNOTSUPP;
306
307 acl = f2fs_get_acl(inode, ACL_TYPE_ACCESS);
308 if (IS_ERR(acl) || !acl)
309 return PTR_ERR(acl);
310
311 error = posix_acl_chmod(&acl, GFP_KERNEL, mode);
312 if (error)
313 return error;
314 error = f2fs_set_acl(inode, ACL_TYPE_ACCESS, acl);
315 posix_acl_release(acl);
316 return error;
317 }
318
319 static size_t f2fs_xattr_list_acl(struct dentry *dentry, char *list,
320 size_t list_size, const char *name, size_t name_len, int type)
321 {
322 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
323 const char *xname = POSIX_ACL_XATTR_DEFAULT;
324 size_t size;
325
326 if (!test_opt(sbi, POSIX_ACL))
327 return 0;
328
329 if (type == ACL_TYPE_ACCESS)
330 xname = POSIX_ACL_XATTR_ACCESS;
331
332 size = strlen(xname) + 1;
333 if (list && size <= list_size)
334 memcpy(list, xname, size);
335 return size;
336 }
337
338 static int f2fs_xattr_get_acl(struct dentry *dentry, const char *name,
339 void *buffer, size_t size, int type)
340 {
341 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
342 struct posix_acl *acl;
343 int error;
344
345 if (strcmp(name, "") != 0)
346 return -EINVAL;
347 if (!test_opt(sbi, POSIX_ACL))
348 return -EOPNOTSUPP;
349
350 acl = f2fs_get_acl(dentry->d_inode, type);
351 if (IS_ERR(acl))
352 return PTR_ERR(acl);
353 if (!acl)
354 return -ENODATA;
355 error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
356 posix_acl_release(acl);
357
358 return error;
359 }
360
361 static int f2fs_xattr_set_acl(struct dentry *dentry, const char *name,
362 const void *value, size_t size, int flags, int type)
363 {
364 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
365 struct inode *inode = dentry->d_inode;
366 struct posix_acl *acl = NULL;
367 int error;
368
369 if (strcmp(name, "") != 0)
370 return -EINVAL;
371 if (!test_opt(sbi, POSIX_ACL))
372 return -EOPNOTSUPP;
373 if (!inode_owner_or_capable(inode))
374 return -EPERM;
375
376 if (value) {
377 acl = posix_acl_from_xattr(&init_user_ns, value, size);
378 if (IS_ERR(acl))
379 return PTR_ERR(acl);
380 if (acl) {
381 error = posix_acl_valid(acl);
382 if (error)
383 goto release_and_out;
384 }
385 } else {
386 acl = NULL;
387 }
388
389 error = f2fs_set_acl(inode, type, acl);
390
391 release_and_out:
392 posix_acl_release(acl);
393 return error;
394 }
395
396 const struct xattr_handler f2fs_xattr_acl_default_handler = {
397 .prefix = POSIX_ACL_XATTR_DEFAULT,
398 .flags = ACL_TYPE_DEFAULT,
399 .list = f2fs_xattr_list_acl,
400 .get = f2fs_xattr_get_acl,
401 .set = f2fs_xattr_set_acl,
402 };
403
404 const struct xattr_handler f2fs_xattr_acl_access_handler = {
405 .prefix = POSIX_ACL_XATTR_ACCESS,
406 .flags = ACL_TYPE_ACCESS,
407 .list = f2fs_xattr_list_acl,
408 .get = f2fs_xattr_get_acl,
409 .set = f2fs_xattr_set_acl,
410 };