drm/vkms: Switch to dynamic allocation for CRTC
[drm/drm-misc.git] / fs / posix_acl.c
blob4050942ab52f95741da2df13d191ade5c5ca12a2
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2002,2003 by Andreas Gruenbacher <a.gruenbacher@computer.org>
5 * Fixes from William Schumacher incorporated on 15 March 2001.
6 * (Reported by Charles Bertsch, <CBertsch@microtest.com>).
7 */
9 /*
10 * This file contains generic functions for manipulating
11 * POSIX 1003.1e draft standard 17 ACLs.
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/atomic.h>
17 #include <linux/fs.h>
18 #include <linux/sched.h>
19 #include <linux/cred.h>
20 #include <linux/posix_acl.h>
21 #include <linux/posix_acl_xattr.h>
22 #include <linux/xattr.h>
23 #include <linux/export.h>
24 #include <linux/user_namespace.h>
25 #include <linux/namei.h>
26 #include <linux/mnt_idmapping.h>
27 #include <linux/iversion.h>
28 #include <linux/security.h>
29 #include <linux/fsnotify.h>
30 #include <linux/filelock.h>
32 #include "internal.h"
34 static struct posix_acl **acl_by_type(struct inode *inode, int type)
36 switch (type) {
37 case ACL_TYPE_ACCESS:
38 return &inode->i_acl;
39 case ACL_TYPE_DEFAULT:
40 return &inode->i_default_acl;
41 default:
42 BUG();
46 struct posix_acl *get_cached_acl(struct inode *inode, int type)
48 struct posix_acl **p = acl_by_type(inode, type);
49 struct posix_acl *acl;
51 for (;;) {
52 rcu_read_lock();
53 acl = rcu_dereference(*p);
54 if (!acl || is_uncached_acl(acl) ||
55 refcount_inc_not_zero(&acl->a_refcount))
56 break;
57 rcu_read_unlock();
58 cpu_relax();
60 rcu_read_unlock();
61 return acl;
63 EXPORT_SYMBOL(get_cached_acl);
65 struct posix_acl *get_cached_acl_rcu(struct inode *inode, int type)
67 struct posix_acl *acl = rcu_dereference(*acl_by_type(inode, type));
69 if (acl == ACL_DONT_CACHE) {
70 struct posix_acl *ret;
72 ret = inode->i_op->get_inode_acl(inode, type, LOOKUP_RCU);
73 if (!IS_ERR(ret))
74 acl = ret;
77 return acl;
79 EXPORT_SYMBOL(get_cached_acl_rcu);
81 void set_cached_acl(struct inode *inode, int type, struct posix_acl *acl)
83 struct posix_acl **p = acl_by_type(inode, type);
84 struct posix_acl *old;
86 old = xchg(p, posix_acl_dup(acl));
87 if (!is_uncached_acl(old))
88 posix_acl_release(old);
90 EXPORT_SYMBOL(set_cached_acl);
92 static void __forget_cached_acl(struct posix_acl **p)
94 struct posix_acl *old;
96 old = xchg(p, ACL_NOT_CACHED);
97 if (!is_uncached_acl(old))
98 posix_acl_release(old);
101 void forget_cached_acl(struct inode *inode, int type)
103 __forget_cached_acl(acl_by_type(inode, type));
105 EXPORT_SYMBOL(forget_cached_acl);
107 void forget_all_cached_acls(struct inode *inode)
109 __forget_cached_acl(&inode->i_acl);
110 __forget_cached_acl(&inode->i_default_acl);
112 EXPORT_SYMBOL(forget_all_cached_acls);
114 static struct posix_acl *__get_acl(struct mnt_idmap *idmap,
115 struct dentry *dentry, struct inode *inode,
116 int type)
118 struct posix_acl *sentinel;
119 struct posix_acl **p;
120 struct posix_acl *acl;
123 * The sentinel is used to detect when another operation like
124 * set_cached_acl() or forget_cached_acl() races with get_inode_acl().
125 * It is guaranteed that is_uncached_acl(sentinel) is true.
128 acl = get_cached_acl(inode, type);
129 if (!is_uncached_acl(acl))
130 return acl;
132 if (!IS_POSIXACL(inode))
133 return NULL;
135 sentinel = uncached_acl_sentinel(current);
136 p = acl_by_type(inode, type);
139 * If the ACL isn't being read yet, set our sentinel. Otherwise, the
140 * current value of the ACL will not be ACL_NOT_CACHED and so our own
141 * sentinel will not be set; another task will update the cache. We
142 * could wait for that other task to complete its job, but it's easier
143 * to just call ->get_inode_acl to fetch the ACL ourself. (This is
144 * going to be an unlikely race.)
146 cmpxchg(p, ACL_NOT_CACHED, sentinel);
149 * Normally, the ACL returned by ->get{_inode}_acl will be cached.
150 * A filesystem can prevent that by calling
151 * forget_cached_acl(inode, type) in ->get{_inode}_acl.
153 * If the filesystem doesn't have a get{_inode}_ acl() function at all,
154 * we'll just create the negative cache entry.
156 if (dentry && inode->i_op->get_acl) {
157 acl = inode->i_op->get_acl(idmap, dentry, type);
158 } else if (inode->i_op->get_inode_acl) {
159 acl = inode->i_op->get_inode_acl(inode, type, false);
160 } else {
161 set_cached_acl(inode, type, NULL);
162 return NULL;
164 if (IS_ERR(acl)) {
166 * Remove our sentinel so that we don't block future attempts
167 * to cache the ACL.
169 cmpxchg(p, sentinel, ACL_NOT_CACHED);
170 return acl;
174 * Cache the result, but only if our sentinel is still in place.
176 posix_acl_dup(acl);
177 if (unlikely(!try_cmpxchg(p, &sentinel, acl)))
178 posix_acl_release(acl);
179 return acl;
182 struct posix_acl *get_inode_acl(struct inode *inode, int type)
184 return __get_acl(&nop_mnt_idmap, NULL, inode, type);
186 EXPORT_SYMBOL(get_inode_acl);
189 * Init a fresh posix_acl
191 void
192 posix_acl_init(struct posix_acl *acl, int count)
194 refcount_set(&acl->a_refcount, 1);
195 acl->a_count = count;
197 EXPORT_SYMBOL(posix_acl_init);
200 * Allocate a new ACL with the specified number of entries.
202 struct posix_acl *
203 posix_acl_alloc(unsigned int count, gfp_t flags)
205 struct posix_acl *acl;
207 acl = kmalloc(struct_size(acl, a_entries, count), flags);
208 if (acl)
209 posix_acl_init(acl, count);
210 return acl;
212 EXPORT_SYMBOL(posix_acl_alloc);
215 * Clone an ACL.
217 struct posix_acl *
218 posix_acl_clone(const struct posix_acl *acl, gfp_t flags)
220 struct posix_acl *clone = NULL;
222 if (acl) {
223 clone = kmemdup(acl, struct_size(acl, a_entries, acl->a_count),
224 flags);
225 if (clone)
226 refcount_set(&clone->a_refcount, 1);
228 return clone;
230 EXPORT_SYMBOL_GPL(posix_acl_clone);
233 * Check if an acl is valid. Returns 0 if it is, or -E... otherwise.
236 posix_acl_valid(struct user_namespace *user_ns, const struct posix_acl *acl)
238 const struct posix_acl_entry *pa, *pe;
239 int state = ACL_USER_OBJ;
240 int needs_mask = 0;
242 FOREACH_ACL_ENTRY(pa, acl, pe) {
243 if (pa->e_perm & ~(ACL_READ|ACL_WRITE|ACL_EXECUTE))
244 return -EINVAL;
245 switch (pa->e_tag) {
246 case ACL_USER_OBJ:
247 if (state == ACL_USER_OBJ) {
248 state = ACL_USER;
249 break;
251 return -EINVAL;
253 case ACL_USER:
254 if (state != ACL_USER)
255 return -EINVAL;
256 if (!kuid_has_mapping(user_ns, pa->e_uid))
257 return -EINVAL;
258 needs_mask = 1;
259 break;
261 case ACL_GROUP_OBJ:
262 if (state == ACL_USER) {
263 state = ACL_GROUP;
264 break;
266 return -EINVAL;
268 case ACL_GROUP:
269 if (state != ACL_GROUP)
270 return -EINVAL;
271 if (!kgid_has_mapping(user_ns, pa->e_gid))
272 return -EINVAL;
273 needs_mask = 1;
274 break;
276 case ACL_MASK:
277 if (state != ACL_GROUP)
278 return -EINVAL;
279 state = ACL_OTHER;
280 break;
282 case ACL_OTHER:
283 if (state == ACL_OTHER ||
284 (state == ACL_GROUP && !needs_mask)) {
285 state = 0;
286 break;
288 return -EINVAL;
290 default:
291 return -EINVAL;
294 if (state == 0)
295 return 0;
296 return -EINVAL;
298 EXPORT_SYMBOL(posix_acl_valid);
301 * Returns 0 if the acl can be exactly represented in the traditional
302 * file mode permission bits, or else 1. Returns -E... on error.
305 posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
307 const struct posix_acl_entry *pa, *pe;
308 umode_t mode = 0;
309 int not_equiv = 0;
312 * A null ACL can always be presented as mode bits.
314 if (!acl)
315 return 0;
317 FOREACH_ACL_ENTRY(pa, acl, pe) {
318 switch (pa->e_tag) {
319 case ACL_USER_OBJ:
320 mode |= (pa->e_perm & S_IRWXO) << 6;
321 break;
322 case ACL_GROUP_OBJ:
323 mode |= (pa->e_perm & S_IRWXO) << 3;
324 break;
325 case ACL_OTHER:
326 mode |= pa->e_perm & S_IRWXO;
327 break;
328 case ACL_MASK:
329 mode = (mode & ~S_IRWXG) |
330 ((pa->e_perm & S_IRWXO) << 3);
331 not_equiv = 1;
332 break;
333 case ACL_USER:
334 case ACL_GROUP:
335 not_equiv = 1;
336 break;
337 default:
338 return -EINVAL;
341 if (mode_p)
342 *mode_p = (*mode_p & ~S_IRWXUGO) | mode;
343 return not_equiv;
345 EXPORT_SYMBOL(posix_acl_equiv_mode);
348 * Create an ACL representing the file mode permission bits of an inode.
350 struct posix_acl *
351 posix_acl_from_mode(umode_t mode, gfp_t flags)
353 struct posix_acl *acl = posix_acl_alloc(3, flags);
354 if (!acl)
355 return ERR_PTR(-ENOMEM);
357 acl->a_entries[0].e_tag = ACL_USER_OBJ;
358 acl->a_entries[0].e_perm = (mode & S_IRWXU) >> 6;
360 acl->a_entries[1].e_tag = ACL_GROUP_OBJ;
361 acl->a_entries[1].e_perm = (mode & S_IRWXG) >> 3;
363 acl->a_entries[2].e_tag = ACL_OTHER;
364 acl->a_entries[2].e_perm = (mode & S_IRWXO);
365 return acl;
367 EXPORT_SYMBOL(posix_acl_from_mode);
370 * Return 0 if current is granted want access to the inode
371 * by the acl. Returns -E... otherwise.
374 posix_acl_permission(struct mnt_idmap *idmap, struct inode *inode,
375 const struct posix_acl *acl, int want)
377 const struct posix_acl_entry *pa, *pe, *mask_obj;
378 struct user_namespace *fs_userns = i_user_ns(inode);
379 int found = 0;
380 vfsuid_t vfsuid;
381 vfsgid_t vfsgid;
383 want &= MAY_READ | MAY_WRITE | MAY_EXEC;
385 FOREACH_ACL_ENTRY(pa, acl, pe) {
386 switch(pa->e_tag) {
387 case ACL_USER_OBJ:
388 /* (May have been checked already) */
389 vfsuid = i_uid_into_vfsuid(idmap, inode);
390 if (vfsuid_eq_kuid(vfsuid, current_fsuid()))
391 goto check_perm;
392 break;
393 case ACL_USER:
394 vfsuid = make_vfsuid(idmap, fs_userns,
395 pa->e_uid);
396 if (vfsuid_eq_kuid(vfsuid, current_fsuid()))
397 goto mask;
398 break;
399 case ACL_GROUP_OBJ:
400 vfsgid = i_gid_into_vfsgid(idmap, inode);
401 if (vfsgid_in_group_p(vfsgid)) {
402 found = 1;
403 if ((pa->e_perm & want) == want)
404 goto mask;
406 break;
407 case ACL_GROUP:
408 vfsgid = make_vfsgid(idmap, fs_userns,
409 pa->e_gid);
410 if (vfsgid_in_group_p(vfsgid)) {
411 found = 1;
412 if ((pa->e_perm & want) == want)
413 goto mask;
415 break;
416 case ACL_MASK:
417 break;
418 case ACL_OTHER:
419 if (found)
420 return -EACCES;
421 else
422 goto check_perm;
423 default:
424 return -EIO;
427 return -EIO;
429 mask:
430 for (mask_obj = pa+1; mask_obj != pe; mask_obj++) {
431 if (mask_obj->e_tag == ACL_MASK) {
432 if ((pa->e_perm & mask_obj->e_perm & want) == want)
433 return 0;
434 return -EACCES;
438 check_perm:
439 if ((pa->e_perm & want) == want)
440 return 0;
441 return -EACCES;
445 * Modify acl when creating a new inode. The caller must ensure the acl is
446 * only referenced once.
448 * mode_p initially must contain the mode parameter to the open() / creat()
449 * system calls. All permissions that are not granted by the acl are removed.
450 * The permissions in the acl are changed to reflect the mode_p parameter.
452 static int posix_acl_create_masq(struct posix_acl *acl, umode_t *mode_p)
454 struct posix_acl_entry *pa, *pe;
455 struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL;
456 umode_t mode = *mode_p;
457 int not_equiv = 0;
459 /* assert(atomic_read(acl->a_refcount) == 1); */
461 FOREACH_ACL_ENTRY(pa, acl, pe) {
462 switch(pa->e_tag) {
463 case ACL_USER_OBJ:
464 pa->e_perm &= (mode >> 6) | ~S_IRWXO;
465 mode &= (pa->e_perm << 6) | ~S_IRWXU;
466 break;
468 case ACL_USER:
469 case ACL_GROUP:
470 not_equiv = 1;
471 break;
473 case ACL_GROUP_OBJ:
474 group_obj = pa;
475 break;
477 case ACL_OTHER:
478 pa->e_perm &= mode | ~S_IRWXO;
479 mode &= pa->e_perm | ~S_IRWXO;
480 break;
482 case ACL_MASK:
483 mask_obj = pa;
484 not_equiv = 1;
485 break;
487 default:
488 return -EIO;
492 if (mask_obj) {
493 mask_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
494 mode &= (mask_obj->e_perm << 3) | ~S_IRWXG;
495 } else {
496 if (!group_obj)
497 return -EIO;
498 group_obj->e_perm &= (mode >> 3) | ~S_IRWXO;
499 mode &= (group_obj->e_perm << 3) | ~S_IRWXG;
502 *mode_p = (*mode_p & ~S_IRWXUGO) | mode;
503 return not_equiv;
507 * Modify the ACL for the chmod syscall.
509 static int __posix_acl_chmod_masq(struct posix_acl *acl, umode_t mode)
511 struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL;
512 struct posix_acl_entry *pa, *pe;
514 /* assert(atomic_read(acl->a_refcount) == 1); */
516 FOREACH_ACL_ENTRY(pa, acl, pe) {
517 switch(pa->e_tag) {
518 case ACL_USER_OBJ:
519 pa->e_perm = (mode & S_IRWXU) >> 6;
520 break;
522 case ACL_USER:
523 case ACL_GROUP:
524 break;
526 case ACL_GROUP_OBJ:
527 group_obj = pa;
528 break;
530 case ACL_MASK:
531 mask_obj = pa;
532 break;
534 case ACL_OTHER:
535 pa->e_perm = (mode & S_IRWXO);
536 break;
538 default:
539 return -EIO;
543 if (mask_obj) {
544 mask_obj->e_perm = (mode & S_IRWXG) >> 3;
545 } else {
546 if (!group_obj)
547 return -EIO;
548 group_obj->e_perm = (mode & S_IRWXG) >> 3;
551 return 0;
555 __posix_acl_create(struct posix_acl **acl, gfp_t gfp, umode_t *mode_p)
557 struct posix_acl *clone = posix_acl_clone(*acl, gfp);
558 int err = -ENOMEM;
559 if (clone) {
560 err = posix_acl_create_masq(clone, mode_p);
561 if (err < 0) {
562 posix_acl_release(clone);
563 clone = NULL;
566 posix_acl_release(*acl);
567 *acl = clone;
568 return err;
570 EXPORT_SYMBOL(__posix_acl_create);
573 __posix_acl_chmod(struct posix_acl **acl, gfp_t gfp, umode_t mode)
575 struct posix_acl *clone = posix_acl_clone(*acl, gfp);
576 int err = -ENOMEM;
577 if (clone) {
578 err = __posix_acl_chmod_masq(clone, mode);
579 if (err) {
580 posix_acl_release(clone);
581 clone = NULL;
584 posix_acl_release(*acl);
585 *acl = clone;
586 return err;
588 EXPORT_SYMBOL(__posix_acl_chmod);
591 * posix_acl_chmod - chmod a posix acl
593 * @idmap: idmap of the mount @inode was found from
594 * @dentry: dentry to check permissions on
595 * @mode: the new mode of @inode
597 * If the dentry has been found through an idmapped mount the idmap of
598 * the vfsmount must be passed through @idmap. This function will then
599 * take care to map the inode according to @idmap before checking
600 * permissions. On non-idmapped mounts or if permission checking is to be
601 * performed on the raw inode simply pass @nop_mnt_idmap.
604 posix_acl_chmod(struct mnt_idmap *idmap, struct dentry *dentry,
605 umode_t mode)
607 struct inode *inode = d_inode(dentry);
608 struct posix_acl *acl;
609 int ret = 0;
611 if (!IS_POSIXACL(inode))
612 return 0;
613 if (!inode->i_op->set_acl)
614 return -EOPNOTSUPP;
616 acl = get_inode_acl(inode, ACL_TYPE_ACCESS);
617 if (IS_ERR_OR_NULL(acl)) {
618 if (acl == ERR_PTR(-EOPNOTSUPP))
619 return 0;
620 return PTR_ERR(acl);
623 ret = __posix_acl_chmod(&acl, GFP_KERNEL, mode);
624 if (ret)
625 return ret;
626 ret = inode->i_op->set_acl(idmap, dentry, acl, ACL_TYPE_ACCESS);
627 posix_acl_release(acl);
628 return ret;
630 EXPORT_SYMBOL(posix_acl_chmod);
633 posix_acl_create(struct inode *dir, umode_t *mode,
634 struct posix_acl **default_acl, struct posix_acl **acl)
636 struct posix_acl *p;
637 struct posix_acl *clone;
638 int ret;
640 *acl = NULL;
641 *default_acl = NULL;
643 if (S_ISLNK(*mode) || !IS_POSIXACL(dir))
644 return 0;
646 p = get_inode_acl(dir, ACL_TYPE_DEFAULT);
647 if (!p || p == ERR_PTR(-EOPNOTSUPP)) {
648 *mode &= ~current_umask();
649 return 0;
651 if (IS_ERR(p))
652 return PTR_ERR(p);
654 ret = -ENOMEM;
655 clone = posix_acl_clone(p, GFP_NOFS);
656 if (!clone)
657 goto err_release;
659 ret = posix_acl_create_masq(clone, mode);
660 if (ret < 0)
661 goto err_release_clone;
663 if (ret == 0)
664 posix_acl_release(clone);
665 else
666 *acl = clone;
668 if (!S_ISDIR(*mode))
669 posix_acl_release(p);
670 else
671 *default_acl = p;
673 return 0;
675 err_release_clone:
676 posix_acl_release(clone);
677 err_release:
678 posix_acl_release(p);
679 return ret;
681 EXPORT_SYMBOL_GPL(posix_acl_create);
684 * posix_acl_update_mode - update mode in set_acl
685 * @idmap: idmap of the mount @inode was found from
686 * @inode: target inode
687 * @mode_p: mode (pointer) for update
688 * @acl: acl pointer
690 * Update the file mode when setting an ACL: compute the new file permission
691 * bits based on the ACL. In addition, if the ACL is equivalent to the new
692 * file mode, set *@acl to NULL to indicate that no ACL should be set.
694 * As with chmod, clear the setgid bit if the caller is not in the owning group
695 * or capable of CAP_FSETID (see inode_change_ok).
697 * If the inode has been found through an idmapped mount the idmap of
698 * the vfsmount must be passed through @idmap. This function will then
699 * take care to map the inode according to @idmap before checking
700 * permissions. On non-idmapped mounts or if permission checking is to be
701 * performed on the raw inode simply pass @nop_mnt_idmap.
703 * Called from set_acl inode operations.
705 int posix_acl_update_mode(struct mnt_idmap *idmap,
706 struct inode *inode, umode_t *mode_p,
707 struct posix_acl **acl)
709 umode_t mode = inode->i_mode;
710 int error;
712 error = posix_acl_equiv_mode(*acl, &mode);
713 if (error < 0)
714 return error;
715 if (error == 0)
716 *acl = NULL;
717 if (!in_group_or_capable(idmap, inode,
718 i_gid_into_vfsgid(idmap, inode)))
719 mode &= ~S_ISGID;
720 *mode_p = mode;
721 return 0;
723 EXPORT_SYMBOL(posix_acl_update_mode);
726 * Fix up the uids and gids in posix acl extended attributes in place.
728 static int posix_acl_fix_xattr_common(const void *value, size_t size)
730 const struct posix_acl_xattr_header *header = value;
731 int count;
733 if (!header)
734 return -EINVAL;
735 if (size < sizeof(struct posix_acl_xattr_header))
736 return -EINVAL;
737 if (header->a_version != cpu_to_le32(POSIX_ACL_XATTR_VERSION))
738 return -EOPNOTSUPP;
740 count = posix_acl_xattr_count(size);
741 if (count < 0)
742 return -EINVAL;
743 if (count == 0)
744 return 0;
746 return count;
750 * posix_acl_from_xattr - convert POSIX ACLs from backing store to VFS format
751 * @userns: the filesystem's idmapping
752 * @value: the uapi representation of POSIX ACLs
753 * @size: the size of @void
755 * Filesystems that store POSIX ACLs in the unaltered uapi format should use
756 * posix_acl_from_xattr() when reading them from the backing store and
757 * converting them into the struct posix_acl VFS format. The helper is
758 * specifically intended to be called from the acl inode operation.
760 * The posix_acl_from_xattr() function will map the raw {g,u}id values stored
761 * in ACL_{GROUP,USER} entries into idmapping in @userns.
763 * Note that posix_acl_from_xattr() does not take idmapped mounts into account.
764 * If it did it calling it from the get acl inode operation would return POSIX
765 * ACLs mapped according to an idmapped mount which would mean that the value
766 * couldn't be cached for the filesystem. Idmapped mounts are taken into
767 * account on the fly during permission checking or right at the VFS -
768 * userspace boundary before reporting them to the user.
770 * Return: Allocated struct posix_acl on success, NULL for a valid header but
771 * without actual POSIX ACL entries, or ERR_PTR() encoded error code.
773 struct posix_acl *posix_acl_from_xattr(struct user_namespace *userns,
774 const void *value, size_t size)
776 const struct posix_acl_xattr_header *header = value;
777 const struct posix_acl_xattr_entry *entry = (const void *)(header + 1), *end;
778 int count;
779 struct posix_acl *acl;
780 struct posix_acl_entry *acl_e;
782 count = posix_acl_fix_xattr_common(value, size);
783 if (count < 0)
784 return ERR_PTR(count);
785 if (count == 0)
786 return NULL;
788 acl = posix_acl_alloc(count, GFP_NOFS);
789 if (!acl)
790 return ERR_PTR(-ENOMEM);
791 acl_e = acl->a_entries;
793 for (end = entry + count; entry != end; acl_e++, entry++) {
794 acl_e->e_tag = le16_to_cpu(entry->e_tag);
795 acl_e->e_perm = le16_to_cpu(entry->e_perm);
797 switch(acl_e->e_tag) {
798 case ACL_USER_OBJ:
799 case ACL_GROUP_OBJ:
800 case ACL_MASK:
801 case ACL_OTHER:
802 break;
804 case ACL_USER:
805 acl_e->e_uid = make_kuid(userns,
806 le32_to_cpu(entry->e_id));
807 if (!uid_valid(acl_e->e_uid))
808 goto fail;
809 break;
810 case ACL_GROUP:
811 acl_e->e_gid = make_kgid(userns,
812 le32_to_cpu(entry->e_id));
813 if (!gid_valid(acl_e->e_gid))
814 goto fail;
815 break;
817 default:
818 goto fail;
821 return acl;
823 fail:
824 posix_acl_release(acl);
825 return ERR_PTR(-EINVAL);
827 EXPORT_SYMBOL (posix_acl_from_xattr);
830 * Convert from in-memory to extended attribute representation.
833 posix_acl_to_xattr(struct user_namespace *user_ns, const struct posix_acl *acl,
834 void *buffer, size_t size)
836 struct posix_acl_xattr_header *ext_acl = buffer;
837 struct posix_acl_xattr_entry *ext_entry;
838 int real_size, n;
840 real_size = posix_acl_xattr_size(acl->a_count);
841 if (!buffer)
842 return real_size;
843 if (real_size > size)
844 return -ERANGE;
846 ext_entry = (void *)(ext_acl + 1);
847 ext_acl->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION);
849 for (n=0; n < acl->a_count; n++, ext_entry++) {
850 const struct posix_acl_entry *acl_e = &acl->a_entries[n];
851 ext_entry->e_tag = cpu_to_le16(acl_e->e_tag);
852 ext_entry->e_perm = cpu_to_le16(acl_e->e_perm);
853 switch(acl_e->e_tag) {
854 case ACL_USER:
855 ext_entry->e_id =
856 cpu_to_le32(from_kuid(user_ns, acl_e->e_uid));
857 break;
858 case ACL_GROUP:
859 ext_entry->e_id =
860 cpu_to_le32(from_kgid(user_ns, acl_e->e_gid));
861 break;
862 default:
863 ext_entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
864 break;
867 return real_size;
869 EXPORT_SYMBOL (posix_acl_to_xattr);
872 * vfs_posix_acl_to_xattr - convert from kernel to userspace representation
873 * @idmap: idmap of the mount
874 * @inode: inode the posix acls are set on
875 * @acl: the posix acls as represented by the vfs
876 * @buffer: the buffer into which to convert @acl
877 * @size: size of @buffer
879 * This converts @acl from the VFS representation in the filesystem idmapping
880 * to the uapi form reportable to userspace. And mount and caller idmappings
881 * are handled appropriately.
883 * Return: On success, the size of the stored uapi posix acls, on error a
884 * negative errno.
886 static ssize_t vfs_posix_acl_to_xattr(struct mnt_idmap *idmap,
887 struct inode *inode,
888 const struct posix_acl *acl, void *buffer,
889 size_t size)
892 struct posix_acl_xattr_header *ext_acl = buffer;
893 struct posix_acl_xattr_entry *ext_entry;
894 struct user_namespace *fs_userns, *caller_userns;
895 ssize_t real_size, n;
896 vfsuid_t vfsuid;
897 vfsgid_t vfsgid;
899 real_size = posix_acl_xattr_size(acl->a_count);
900 if (!buffer)
901 return real_size;
902 if (real_size > size)
903 return -ERANGE;
905 ext_entry = (void *)(ext_acl + 1);
906 ext_acl->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION);
908 fs_userns = i_user_ns(inode);
909 caller_userns = current_user_ns();
910 for (n=0; n < acl->a_count; n++, ext_entry++) {
911 const struct posix_acl_entry *acl_e = &acl->a_entries[n];
912 ext_entry->e_tag = cpu_to_le16(acl_e->e_tag);
913 ext_entry->e_perm = cpu_to_le16(acl_e->e_perm);
914 switch(acl_e->e_tag) {
915 case ACL_USER:
916 vfsuid = make_vfsuid(idmap, fs_userns, acl_e->e_uid);
917 ext_entry->e_id = cpu_to_le32(from_kuid(
918 caller_userns, vfsuid_into_kuid(vfsuid)));
919 break;
920 case ACL_GROUP:
921 vfsgid = make_vfsgid(idmap, fs_userns, acl_e->e_gid);
922 ext_entry->e_id = cpu_to_le32(from_kgid(
923 caller_userns, vfsgid_into_kgid(vfsgid)));
924 break;
925 default:
926 ext_entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
927 break;
930 return real_size;
934 set_posix_acl(struct mnt_idmap *idmap, struct dentry *dentry,
935 int type, struct posix_acl *acl)
937 struct inode *inode = d_inode(dentry);
939 if (!IS_POSIXACL(inode))
940 return -EOPNOTSUPP;
941 if (!inode->i_op->set_acl)
942 return -EOPNOTSUPP;
944 if (type == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode))
945 return acl ? -EACCES : 0;
946 if (!inode_owner_or_capable(idmap, inode))
947 return -EPERM;
949 if (acl) {
950 int ret = posix_acl_valid(inode->i_sb->s_user_ns, acl);
951 if (ret)
952 return ret;
954 return inode->i_op->set_acl(idmap, dentry, acl, type);
956 EXPORT_SYMBOL(set_posix_acl);
958 int posix_acl_listxattr(struct inode *inode, char **buffer,
959 ssize_t *remaining_size)
961 int err;
963 if (!IS_POSIXACL(inode))
964 return 0;
966 if (inode->i_acl) {
967 err = xattr_list_one(buffer, remaining_size,
968 XATTR_NAME_POSIX_ACL_ACCESS);
969 if (err)
970 return err;
973 if (inode->i_default_acl) {
974 err = xattr_list_one(buffer, remaining_size,
975 XATTR_NAME_POSIX_ACL_DEFAULT);
976 if (err)
977 return err;
980 return 0;
983 static bool
984 posix_acl_xattr_list(struct dentry *dentry)
986 return IS_POSIXACL(d_backing_inode(dentry));
990 * nop_posix_acl_access - legacy xattr handler for access POSIX ACLs
992 * This is the legacy POSIX ACL access xattr handler. It is used by some
993 * filesystems to implement their ->listxattr() inode operation. New code
994 * should never use them.
996 const struct xattr_handler nop_posix_acl_access = {
997 .name = XATTR_NAME_POSIX_ACL_ACCESS,
998 .list = posix_acl_xattr_list,
1000 EXPORT_SYMBOL_GPL(nop_posix_acl_access);
1003 * nop_posix_acl_default - legacy xattr handler for default POSIX ACLs
1005 * This is the legacy POSIX ACL default xattr handler. It is used by some
1006 * filesystems to implement their ->listxattr() inode operation. New code
1007 * should never use them.
1009 const struct xattr_handler nop_posix_acl_default = {
1010 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
1011 .list = posix_acl_xattr_list,
1013 EXPORT_SYMBOL_GPL(nop_posix_acl_default);
1015 int simple_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
1016 struct posix_acl *acl, int type)
1018 int error;
1019 struct inode *inode = d_inode(dentry);
1021 if (type == ACL_TYPE_ACCESS) {
1022 error = posix_acl_update_mode(idmap, inode,
1023 &inode->i_mode, &acl);
1024 if (error)
1025 return error;
1028 inode_set_ctime_current(inode);
1029 if (IS_I_VERSION(inode))
1030 inode_inc_iversion(inode);
1031 set_cached_acl(inode, type, acl);
1032 return 0;
1035 int simple_acl_create(struct inode *dir, struct inode *inode)
1037 struct posix_acl *default_acl, *acl;
1038 int error;
1040 error = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
1041 if (error)
1042 return error;
1044 set_cached_acl(inode, ACL_TYPE_DEFAULT, default_acl);
1045 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
1047 if (default_acl)
1048 posix_acl_release(default_acl);
1049 if (acl)
1050 posix_acl_release(acl);
1051 return 0;
1054 static int vfs_set_acl_idmapped_mnt(struct mnt_idmap *idmap,
1055 struct user_namespace *fs_userns,
1056 struct posix_acl *acl)
1058 for (int n = 0; n < acl->a_count; n++) {
1059 struct posix_acl_entry *acl_e = &acl->a_entries[n];
1061 switch (acl_e->e_tag) {
1062 case ACL_USER:
1063 acl_e->e_uid = from_vfsuid(idmap, fs_userns,
1064 VFSUIDT_INIT(acl_e->e_uid));
1065 break;
1066 case ACL_GROUP:
1067 acl_e->e_gid = from_vfsgid(idmap, fs_userns,
1068 VFSGIDT_INIT(acl_e->e_gid));
1069 break;
1073 return 0;
1077 * vfs_set_acl - set posix acls
1078 * @idmap: idmap of the mount
1079 * @dentry: the dentry based on which to set the posix acls
1080 * @acl_name: the name of the posix acl
1081 * @kacl: the posix acls in the appropriate VFS format
1083 * This function sets @kacl. The caller must all posix_acl_release() on @kacl
1084 * afterwards.
1086 * Return: On success 0, on error negative errno.
1088 int vfs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
1089 const char *acl_name, struct posix_acl *kacl)
1091 int acl_type;
1092 int error;
1093 struct inode *inode = d_inode(dentry);
1094 struct inode *delegated_inode = NULL;
1096 acl_type = posix_acl_type(acl_name);
1097 if (acl_type < 0)
1098 return -EINVAL;
1100 if (kacl) {
1102 * If we're on an idmapped mount translate from mount specific
1103 * vfs{g,u}id_t into global filesystem k{g,u}id_t.
1104 * Afterwards we can cache the POSIX ACLs filesystem wide and -
1105 * if this is a filesystem with a backing store - ultimately
1106 * translate them to backing store values.
1108 error = vfs_set_acl_idmapped_mnt(idmap, i_user_ns(inode), kacl);
1109 if (error)
1110 return error;
1113 retry_deleg:
1114 inode_lock(inode);
1117 * We only care about restrictions the inode struct itself places upon
1118 * us otherwise POSIX ACLs aren't subject to any VFS restrictions.
1120 error = may_write_xattr(idmap, inode);
1121 if (error)
1122 goto out_inode_unlock;
1124 error = security_inode_set_acl(idmap, dentry, acl_name, kacl);
1125 if (error)
1126 goto out_inode_unlock;
1128 error = try_break_deleg(inode, &delegated_inode);
1129 if (error)
1130 goto out_inode_unlock;
1132 if (likely(!is_bad_inode(inode)))
1133 error = set_posix_acl(idmap, dentry, acl_type, kacl);
1134 else
1135 error = -EIO;
1136 if (!error) {
1137 fsnotify_xattr(dentry);
1138 security_inode_post_set_acl(dentry, acl_name, kacl);
1141 out_inode_unlock:
1142 inode_unlock(inode);
1144 if (delegated_inode) {
1145 error = break_deleg_wait(&delegated_inode);
1146 if (!error)
1147 goto retry_deleg;
1150 return error;
1152 EXPORT_SYMBOL_GPL(vfs_set_acl);
1155 * vfs_get_acl - get posix acls
1156 * @idmap: idmap of the mount
1157 * @dentry: the dentry based on which to retrieve the posix acls
1158 * @acl_name: the name of the posix acl
1160 * This function retrieves @kacl from the filesystem. The caller must all
1161 * posix_acl_release() on @kacl.
1163 * Return: On success POSIX ACLs in VFS format, on error negative errno.
1165 struct posix_acl *vfs_get_acl(struct mnt_idmap *idmap,
1166 struct dentry *dentry, const char *acl_name)
1168 struct inode *inode = d_inode(dentry);
1169 struct posix_acl *acl;
1170 int acl_type, error;
1172 acl_type = posix_acl_type(acl_name);
1173 if (acl_type < 0)
1174 return ERR_PTR(-EINVAL);
1177 * The VFS has no restrictions on reading POSIX ACLs so calling
1178 * something like xattr_permission() isn't needed. Only LSMs get a say.
1180 error = security_inode_get_acl(idmap, dentry, acl_name);
1181 if (error)
1182 return ERR_PTR(error);
1184 if (!IS_POSIXACL(inode))
1185 return ERR_PTR(-EOPNOTSUPP);
1186 if (S_ISLNK(inode->i_mode))
1187 return ERR_PTR(-EOPNOTSUPP);
1189 acl = __get_acl(idmap, dentry, inode, acl_type);
1190 if (IS_ERR(acl))
1191 return acl;
1192 if (!acl)
1193 return ERR_PTR(-ENODATA);
1195 return acl;
1197 EXPORT_SYMBOL_GPL(vfs_get_acl);
1200 * vfs_remove_acl - remove posix acls
1201 * @idmap: idmap of the mount
1202 * @dentry: the dentry based on which to retrieve the posix acls
1203 * @acl_name: the name of the posix acl
1205 * This function removes posix acls.
1207 * Return: On success 0, on error negative errno.
1209 int vfs_remove_acl(struct mnt_idmap *idmap, struct dentry *dentry,
1210 const char *acl_name)
1212 int acl_type;
1213 int error;
1214 struct inode *inode = d_inode(dentry);
1215 struct inode *delegated_inode = NULL;
1217 acl_type = posix_acl_type(acl_name);
1218 if (acl_type < 0)
1219 return -EINVAL;
1221 retry_deleg:
1222 inode_lock(inode);
1225 * We only care about restrictions the inode struct itself places upon
1226 * us otherwise POSIX ACLs aren't subject to any VFS restrictions.
1228 error = may_write_xattr(idmap, inode);
1229 if (error)
1230 goto out_inode_unlock;
1232 error = security_inode_remove_acl(idmap, dentry, acl_name);
1233 if (error)
1234 goto out_inode_unlock;
1236 error = try_break_deleg(inode, &delegated_inode);
1237 if (error)
1238 goto out_inode_unlock;
1240 if (likely(!is_bad_inode(inode)))
1241 error = set_posix_acl(idmap, dentry, acl_type, NULL);
1242 else
1243 error = -EIO;
1244 if (!error) {
1245 fsnotify_xattr(dentry);
1246 security_inode_post_remove_acl(idmap, dentry, acl_name);
1249 out_inode_unlock:
1250 inode_unlock(inode);
1252 if (delegated_inode) {
1253 error = break_deleg_wait(&delegated_inode);
1254 if (!error)
1255 goto retry_deleg;
1258 return error;
1260 EXPORT_SYMBOL_GPL(vfs_remove_acl);
1262 int do_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
1263 const char *acl_name, const void *kvalue, size_t size)
1265 int error;
1266 struct posix_acl *acl = NULL;
1268 if (size) {
1270 * Note that posix_acl_from_xattr() uses GFP_NOFS when it
1271 * probably doesn't need to here.
1273 acl = posix_acl_from_xattr(current_user_ns(), kvalue, size);
1274 if (IS_ERR(acl))
1275 return PTR_ERR(acl);
1278 error = vfs_set_acl(idmap, dentry, acl_name, acl);
1279 posix_acl_release(acl);
1280 return error;
1283 ssize_t do_get_acl(struct mnt_idmap *idmap, struct dentry *dentry,
1284 const char *acl_name, void *kvalue, size_t size)
1286 ssize_t error;
1287 struct posix_acl *acl;
1289 acl = vfs_get_acl(idmap, dentry, acl_name);
1290 if (IS_ERR(acl))
1291 return PTR_ERR(acl);
1293 error = vfs_posix_acl_to_xattr(idmap, d_inode(dentry),
1294 acl, kvalue, size);
1295 posix_acl_release(acl);
1296 return error;