]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/reiserfs/xattr_acl.c
userns: Convert jfs to use kuid/kgid where appropriate
[mirror_ubuntu-zesty-kernel.git] / fs / reiserfs / xattr_acl.c
CommitLineData
16f7e0fe 1#include <linux/capability.h>
1da177e4
LT
2#include <linux/fs.h>
3#include <linux/posix_acl.h>
f466c6fd 4#include "reiserfs.h"
1da177e4
LT
5#include <linux/errno.h>
6#include <linux/pagemap.h>
7#include <linux/xattr.h>
5a0e3ad6 8#include <linux/slab.h>
9a59f452 9#include <linux/posix_acl_xattr.h>
c45ac888 10#include "xattr.h"
a3063ab8 11#include "acl.h"
1da177e4
LT
12#include <asm/uaccess.h>
13
0ab2621e
JM
14static int reiserfs_set_acl(struct reiserfs_transaction_handle *th,
15 struct inode *inode, int type,
bd4c625c 16 struct posix_acl *acl);
1da177e4
LT
17
18static int
431547b3
CH
19posix_acl_set(struct dentry *dentry, const char *name, const void *value,
20 size_t size, int flags, int type)
1da177e4 21{
431547b3 22 struct inode *inode = dentry->d_inode;
1da177e4 23 struct posix_acl *acl;
0ab2621e
JM
24 int error, error2;
25 struct reiserfs_transaction_handle th;
26 size_t jcreate_blocks;
1da177e4
LT
27 if (!reiserfs_posixacl(inode->i_sb))
28 return -EOPNOTSUPP;
2e149670 29 if (!inode_owner_or_capable(inode))
1da177e4
LT
30 return -EPERM;
31
32 if (value) {
5f3a4a28 33 acl = posix_acl_from_xattr(&init_user_ns, value, size);
1da177e4
LT
34 if (IS_ERR(acl)) {
35 return PTR_ERR(acl);
36 } else if (acl) {
37 error = posix_acl_valid(acl);
38 if (error)
39 goto release_and_out;
40 }
41 } else
42 acl = NULL;
43
0ab2621e
JM
44 /* Pessimism: We can't assume that anything from the xattr root up
45 * has been created. */
46
47 jcreate_blocks = reiserfs_xattr_jcreate_nblocks(inode) +
48 reiserfs_xattr_nblocks(inode, size) * 2;
49
50 reiserfs_write_lock(inode->i_sb);
51 error = journal_begin(&th, inode->i_sb, jcreate_blocks);
52 if (error == 0) {
53 error = reiserfs_set_acl(&th, inode, type, acl);
54 error2 = journal_end(&th, inode->i_sb, jcreate_blocks);
55 if (error2)
56 error = error2;
57 }
58 reiserfs_write_unlock(inode->i_sb);
1da177e4 59
bd4c625c 60 release_and_out:
1da177e4
LT
61 posix_acl_release(acl);
62 return error;
63}
64
1da177e4 65static int
431547b3
CH
66posix_acl_get(struct dentry *dentry, const char *name, void *buffer,
67 size_t size, int type)
1da177e4
LT
68{
69 struct posix_acl *acl;
70 int error;
71
431547b3 72 if (!reiserfs_posixacl(dentry->d_sb))
1da177e4
LT
73 return -EOPNOTSUPP;
74
431547b3 75 acl = reiserfs_get_acl(dentry->d_inode, type);
1da177e4
LT
76 if (IS_ERR(acl))
77 return PTR_ERR(acl);
78 if (acl == NULL)
79 return -ENODATA;
5f3a4a28 80 error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
1da177e4
LT
81 posix_acl_release(acl);
82
83 return error;
84}
85
1da177e4
LT
86/*
87 * Convert from filesystem to in-memory representation.
88 */
bd4c625c 89static struct posix_acl *posix_acl_from_disk(const void *value, size_t size)
1da177e4
LT
90{
91 const char *end = (char *)value + size;
92 int n, count;
93 struct posix_acl *acl;
94
95 if (!value)
96 return NULL;
97 if (size < sizeof(reiserfs_acl_header))
bd4c625c
LT
98 return ERR_PTR(-EINVAL);
99 if (((reiserfs_acl_header *) value)->a_version !=
1da177e4
LT
100 cpu_to_le32(REISERFS_ACL_VERSION))
101 return ERR_PTR(-EINVAL);
102 value = (char *)value + sizeof(reiserfs_acl_header);
103 count = reiserfs_acl_count(size);
104 if (count < 0)
105 return ERR_PTR(-EINVAL);
106 if (count == 0)
107 return NULL;
108 acl = posix_acl_alloc(count, GFP_NOFS);
109 if (!acl)
110 return ERR_PTR(-ENOMEM);
bd4c625c
LT
111 for (n = 0; n < count; n++) {
112 reiserfs_acl_entry *entry = (reiserfs_acl_entry *) value;
1da177e4
LT
113 if ((char *)value + sizeof(reiserfs_acl_entry_short) > end)
114 goto fail;
bd4c625c 115 acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag);
1da177e4 116 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
bd4c625c
LT
117 switch (acl->a_entries[n].e_tag) {
118 case ACL_USER_OBJ:
119 case ACL_GROUP_OBJ:
120 case ACL_MASK:
121 case ACL_OTHER:
122 value = (char *)value +
123 sizeof(reiserfs_acl_entry_short);
124 acl->a_entries[n].e_id = ACL_UNDEFINED_ID;
125 break;
126
127 case ACL_USER:
128 case ACL_GROUP:
129 value = (char *)value + sizeof(reiserfs_acl_entry);
130 if ((char *)value > end)
1da177e4 131 goto fail;
bd4c625c
LT
132 acl->a_entries[n].e_id = le32_to_cpu(entry->e_id);
133 break;
134
135 default:
136 goto fail;
1da177e4
LT
137 }
138 }
139 if (value != end)
140 goto fail;
141 return acl;
142
bd4c625c 143 fail:
1da177e4
LT
144 posix_acl_release(acl);
145 return ERR_PTR(-EINVAL);
146}
147
148/*
149 * Convert from in-memory to filesystem representation.
150 */
bd4c625c 151static void *posix_acl_to_disk(const struct posix_acl *acl, size_t * size)
1da177e4
LT
152{
153 reiserfs_acl_header *ext_acl;
154 char *e;
155 int n;
156
157 *size = reiserfs_acl_size(acl->a_count);
5cbded58 158 ext_acl = kmalloc(sizeof(reiserfs_acl_header) +
bd4c625c
LT
159 acl->a_count *
160 sizeof(reiserfs_acl_entry),
161 GFP_NOFS);
1da177e4
LT
162 if (!ext_acl)
163 return ERR_PTR(-ENOMEM);
164 ext_acl->a_version = cpu_to_le32(REISERFS_ACL_VERSION);
165 e = (char *)ext_acl + sizeof(reiserfs_acl_header);
bd4c625c
LT
166 for (n = 0; n < acl->a_count; n++) {
167 reiserfs_acl_entry *entry = (reiserfs_acl_entry *) e;
168 entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
1da177e4 169 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
bd4c625c
LT
170 switch (acl->a_entries[n].e_tag) {
171 case ACL_USER:
172 case ACL_GROUP:
173 entry->e_id = cpu_to_le32(acl->a_entries[n].e_id);
174 e += sizeof(reiserfs_acl_entry);
175 break;
176
177 case ACL_USER_OBJ:
178 case ACL_GROUP_OBJ:
179 case ACL_MASK:
180 case ACL_OTHER:
181 e += sizeof(reiserfs_acl_entry_short);
182 break;
183
184 default:
185 goto fail;
1da177e4
LT
186 }
187 }
188 return (char *)ext_acl;
189
bd4c625c 190 fail:
1da177e4
LT
191 kfree(ext_acl);
192 return ERR_PTR(-EINVAL);
193}
194
195/*
196 * Inode operation get_posix_acl().
197 *
1b1dcc1b 198 * inode->i_mutex: down
1da177e4
LT
199 * BKL held [before 2.5.x]
200 */
bd4c625c 201struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
1da177e4
LT
202{
203 char *name, *value;
073aaa1b 204 struct posix_acl *acl;
3cdc409c 205 int size;
1da177e4 206 int retval;
bd4c625c 207
073aaa1b
AV
208 acl = get_cached_acl(inode, type);
209 if (acl != ACL_NOT_CACHED)
210 return acl;
211
bd4c625c
LT
212 switch (type) {
213 case ACL_TYPE_ACCESS:
214 name = POSIX_ACL_XATTR_ACCESS;
bd4c625c
LT
215 break;
216 case ACL_TYPE_DEFAULT:
217 name = POSIX_ACL_XATTR_DEFAULT;
bd4c625c
LT
218 break;
219 default:
073aaa1b 220 BUG();
bd4c625c
LT
221 }
222
bd4c625c 223 size = reiserfs_xattr_get(inode, name, NULL, 0);
3cdc409c 224 if (size < 0) {
bd4c625c 225 if (size == -ENODATA || size == -ENOSYS) {
073aaa1b 226 set_cached_acl(inode, type, NULL);
bd4c625c
LT
227 return NULL;
228 }
229 return ERR_PTR(size);
230 }
1da177e4 231
bd4c625c
LT
232 value = kmalloc(size, GFP_NOFS);
233 if (!value)
234 return ERR_PTR(-ENOMEM);
1da177e4
LT
235
236 retval = reiserfs_xattr_get(inode, name, value, size);
237 if (retval == -ENODATA || retval == -ENOSYS) {
238 /* This shouldn't actually happen as it should have
239 been caught above.. but just in case */
240 acl = NULL;
bd4c625c 241 } else if (retval < 0) {
1da177e4
LT
242 acl = ERR_PTR(retval);
243 } else {
244 acl = posix_acl_from_disk(value, retval);
bd4c625c 245 }
073aaa1b
AV
246 if (!IS_ERR(acl))
247 set_cached_acl(inode, type, acl);
1da177e4
LT
248
249 kfree(value);
250 return acl;
251}
252
253/*
254 * Inode operation set_posix_acl().
255 *
1b1dcc1b 256 * inode->i_mutex: down
1da177e4
LT
257 * BKL held [before 2.5.x]
258 */
259static int
0ab2621e
JM
260reiserfs_set_acl(struct reiserfs_transaction_handle *th, struct inode *inode,
261 int type, struct posix_acl *acl)
1da177e4 262{
bd4c625c 263 char *name;
1da177e4 264 void *value = NULL;
48b32a35 265 size_t size = 0;
1da177e4 266 int error;
1da177e4
LT
267
268 if (S_ISLNK(inode->i_mode))
269 return -EOPNOTSUPP;
270
bd4c625c
LT
271 switch (type) {
272 case ACL_TYPE_ACCESS:
273 name = POSIX_ACL_XATTR_ACCESS;
bd4c625c 274 if (acl) {
d6952123 275 error = posix_acl_equiv_mode(acl, &inode->i_mode);
bd4c625c
LT
276 if (error < 0)
277 return error;
278 else {
bd4c625c
LT
279 if (error == 0)
280 acl = NULL;
281 }
282 }
283 break;
284 case ACL_TYPE_DEFAULT:
285 name = POSIX_ACL_XATTR_DEFAULT;
bd4c625c
LT
286 if (!S_ISDIR(inode->i_mode))
287 return acl ? -EACCES : 0;
288 break;
289 default:
290 return -EINVAL;
291 }
292
293 if (acl) {
294 value = posix_acl_to_disk(acl, &size);
295 if (IS_ERR(value))
296 return (int)PTR_ERR(value);
48b32a35
JM
297 }
298
0ab2621e 299 error = reiserfs_xattr_set_handle(th, inode, name, value, size, 0);
48b32a35
JM
300
301 /*
302 * Ensure that the inode gets dirtied if we're only using
303 * the mode bits and an old ACL didn't exist. We don't need
304 * to check if the inode is hashed here since we won't get
305 * called by reiserfs_inherit_default_acl().
306 */
307 if (error == -ENODATA) {
308 error = 0;
309 if (type == ACL_TYPE_ACCESS) {
310 inode->i_ctime = CURRENT_TIME_SEC;
bd4c625c 311 mark_inode_dirty(inode);
bd4c625c
LT
312 }
313 }
1da177e4 314
833d304b 315 kfree(value);
1da177e4 316
d984561b 317 if (!error)
073aaa1b 318 set_cached_acl(inode, type, acl);
1da177e4
LT
319
320 return error;
321}
322
1b1dcc1b 323/* dir->i_mutex: locked,
1da177e4
LT
324 * inode is new and not released into the wild yet */
325int
0ab2621e
JM
326reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th,
327 struct inode *dir, struct dentry *dentry,
bd4c625c 328 struct inode *inode)
1da177e4 329{
bd4c625c
LT
330 struct posix_acl *acl;
331 int err = 0;
332
333 /* ACLs only get applied to files and directories */
334 if (S_ISLNK(inode->i_mode))
335 return 0;
336
337 /* ACLs can only be used on "new" objects, so if it's an old object
338 * there is nothing to inherit from */
339 if (get_inode_sd_version(dir) == STAT_DATA_V1)
340 goto apply_umask;
341
342 /* Don't apply ACLs to objects in the .reiserfs_priv tree.. This
343 * would be useless since permissions are ignored, and a pain because
344 * it introduces locking cycles */
6dfede69
JM
345 if (IS_PRIVATE(dir)) {
346 inode->i_flags |= S_PRIVATE;
bd4c625c
LT
347 goto apply_umask;
348 }
349
350 acl = reiserfs_get_acl(dir, ACL_TYPE_DEFAULT);
7a77b15d 351 if (IS_ERR(acl))
bd4c625c 352 return PTR_ERR(acl);
bd4c625c
LT
353
354 if (acl) {
bd4c625c
LT
355 /* Copy the default ACL to the default ACL of a new directory */
356 if (S_ISDIR(inode->i_mode)) {
0ab2621e
JM
357 err = reiserfs_set_acl(th, inode, ACL_TYPE_DEFAULT,
358 acl);
bd4c625c
LT
359 if (err)
360 goto cleanup;
361 }
362
363 /* Now we reconcile the new ACL and the mode,
364 potentially modifying both */
d3fb6120 365 err = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode);
826cae2f
AV
366 if (err < 0)
367 return err;
bd4c625c 368
826cae2f
AV
369 /* If we need an ACL.. */
370 if (err > 0)
371 err = reiserfs_set_acl(th, inode, ACL_TYPE_ACCESS, acl);
bd4c625c
LT
372 cleanup:
373 posix_acl_release(acl);
374 } else {
375 apply_umask:
376 /* no ACL, apply umask */
ce3b0f8d 377 inode->i_mode &= ~current_umask();
bd4c625c
LT
378 }
379
380 return err;
1da177e4
LT
381}
382
0ab2621e
JM
383/* This is used to cache the default acl before a new object is created.
384 * The biggest reason for this is to get an idea of how many blocks will
385 * actually be required for the create operation if we must inherit an ACL.
386 * An ACL write can add up to 3 object creations and an additional file write
387 * so we'd prefer not to reserve that many blocks in the journal if we can.
388 * It also has the advantage of not loading the ACL with a transaction open,
389 * this may seem silly, but if the owner of the directory is doing the
390 * creation, the ACL may not be loaded since the permissions wouldn't require
391 * it.
392 * We return the number of blocks required for the transaction.
393 */
bd4c625c 394int reiserfs_cache_default_acl(struct inode *inode)
1da177e4 395{
0ab2621e
JM
396 struct posix_acl *acl;
397 int nblocks = 0;
398
399 if (IS_PRIVATE(inode))
400 return 0;
401
402 acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT);
403
404 if (acl && !IS_ERR(acl)) {
405 int size = reiserfs_acl_size(acl->a_count);
406
407 /* Other xattrs can be created during inode creation. We don't
408 * want to claim too many blocks, so we check to see if we
409 * we need to create the tree to the xattrs, and then we
410 * just want two files. */
411 nblocks = reiserfs_xattr_jcreate_nblocks(inode);
412 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
413
414 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
415
416 /* We need to account for writes + bitmaps for two files */
417 nblocks += reiserfs_xattr_nblocks(inode, size) * 4;
418 posix_acl_release(acl);
bd4c625c
LT
419 }
420
0ab2621e 421 return nblocks;
1da177e4
LT
422}
423
bd4c625c 424int reiserfs_acl_chmod(struct inode *inode)
1da177e4 425{
bc26ab5f
AV
426 struct reiserfs_transaction_handle th;
427 struct posix_acl *acl;
428 size_t size;
429 int depth;
bd4c625c 430 int error;
1da177e4 431
bd4c625c
LT
432 if (S_ISLNK(inode->i_mode))
433 return -EOPNOTSUPP;
1da177e4 434
bd4c625c
LT
435 if (get_inode_sd_version(inode) == STAT_DATA_V1 ||
436 !reiserfs_posixacl(inode->i_sb)) {
437 return 0;
1da177e4
LT
438 }
439
6c287054 440 reiserfs_write_unlock(inode->i_sb);
bd4c625c 441 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
6c287054 442 reiserfs_write_lock(inode->i_sb);
bd4c625c
LT
443 if (!acl)
444 return 0;
445 if (IS_ERR(acl))
446 return PTR_ERR(acl);
bc26ab5f
AV
447 error = posix_acl_chmod(&acl, GFP_NOFS, inode->i_mode);
448 if (error)
449 return error;
450
451 size = reiserfs_xattr_nblocks(inode, reiserfs_acl_size(acl->a_count));
452 depth = reiserfs_write_lock_once(inode->i_sb);
453 error = journal_begin(&th, inode->i_sb, size * 2);
0ab2621e 454 if (!error) {
bc26ab5f
AV
455 int error2;
456 error = reiserfs_set_acl(&th, inode, ACL_TYPE_ACCESS, acl);
457 error2 = journal_end(&th, inode->i_sb, size * 2);
458 if (error2)
459 error = error2;
0ab2621e 460 }
bc26ab5f
AV
461 reiserfs_write_unlock_once(inode->i_sb, depth);
462 posix_acl_release(acl);
bd4c625c 463 return error;
1da177e4
LT
464}
465
431547b3 466static size_t posix_acl_access_list(struct dentry *dentry, char *list,
48b32a35 467 size_t list_size, const char *name,
431547b3 468 size_t name_len, int type)
1da177e4 469{
48b32a35 470 const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS);
431547b3 471 if (!reiserfs_posixacl(dentry->d_sb))
bd4c625c 472 return 0;
48b32a35
JM
473 if (list && size <= list_size)
474 memcpy(list, POSIX_ACL_XATTR_ACCESS, size);
475 return size;
1da177e4
LT
476}
477
94d09a98 478const struct xattr_handler reiserfs_posix_acl_access_handler = {
9a59f452 479 .prefix = POSIX_ACL_XATTR_ACCESS,
431547b3
CH
480 .flags = ACL_TYPE_ACCESS,
481 .get = posix_acl_get,
482 .set = posix_acl_set,
1da177e4
LT
483 .list = posix_acl_access_list,
484};
485
431547b3 486static size_t posix_acl_default_list(struct dentry *dentry, char *list,
48b32a35 487 size_t list_size, const char *name,
431547b3 488 size_t name_len, int type)
1da177e4 489{
48b32a35 490 const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT);
431547b3 491 if (!reiserfs_posixacl(dentry->d_sb))
bd4c625c 492 return 0;
48b32a35
JM
493 if (list && size <= list_size)
494 memcpy(list, POSIX_ACL_XATTR_DEFAULT, size);
495 return size;
1da177e4
LT
496}
497
94d09a98 498const struct xattr_handler reiserfs_posix_acl_default_handler = {
9a59f452 499 .prefix = POSIX_ACL_XATTR_DEFAULT,
431547b3
CH
500 .flags = ACL_TYPE_DEFAULT,
501 .get = posix_acl_get,
502 .set = posix_acl_set,
1da177e4
LT
503 .list = posix_acl_default_list,
504};