2 * Copyright (c) 2001-2002,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include "xfs_types.h"
25 #include "xfs_bmap_btree.h"
26 #include "xfs_alloc_btree.h"
27 #include "xfs_ialloc_btree.h"
28 #include "xfs_dir2_sf.h"
29 #include "xfs_attr_sf.h"
30 #include "xfs_dinode.h"
31 #include "xfs_inode.h"
32 #include "xfs_btree.h"
35 #include "xfs_vnodeops.h"
37 #include <linux/capability.h>
38 #include <linux/posix_acl_xattr.h>
40 STATIC int xfs_acl_setmode(bhv_vnode_t *, xfs_acl_t *, int *);
41 STATIC void xfs_acl_filter_mode(mode_t, xfs_acl_t *);
42 STATIC void xfs_acl_get_endian(xfs_acl_t *);
43 STATIC int xfs_acl_access(uid_t, gid_t, xfs_acl_t *, mode_t, cred_t *);
44 STATIC int xfs_acl_invalid(xfs_acl_t *);
45 STATIC void xfs_acl_sync_mode(mode_t, xfs_acl_t *);
46 STATIC void xfs_acl_get_attr(bhv_vnode_t *, xfs_acl_t *, int, int, int *);
47 STATIC void xfs_acl_set_attr(bhv_vnode_t *, xfs_acl_t *, int, int *);
48 STATIC int xfs_acl_allow_set(bhv_vnode_t *, int);
50 kmem_zone_t *xfs_acl_zone;
54 * Test for existence of access ACL attribute as efficiently as possible.
57 xfs_acl_vhasacl_access(
62 xfs_acl_get_attr(vp, NULL, _ACL_TYPE_ACCESS, ATTR_KERNOVAL, &error);
67 * Test for existence of default ACL attribute as efficiently as possible.
70 xfs_acl_vhasacl_default(
75 if (!S_ISDIR(vp->i_mode))
77 xfs_acl_get_attr(vp, NULL, _ACL_TYPE_DEFAULT, ATTR_KERNOVAL, &error);
82 * Convert from extended attribute representation to in-memory for XFS.
85 posix_acl_xattr_to_xfs(
86 posix_acl_xattr_header *src,
90 posix_acl_xattr_entry *src_entry;
91 xfs_acl_entry_t *dest_entry;
97 if (size < sizeof(posix_acl_xattr_header))
100 if (src->a_version != cpu_to_le32(POSIX_ACL_XATTR_VERSION))
103 memset(dest, 0, sizeof(xfs_acl_t));
104 dest->acl_cnt = posix_acl_xattr_count(size);
105 if (dest->acl_cnt < 0 || dest->acl_cnt > XFS_ACL_MAX_ENTRIES)
109 * acl_set_file(3) may request that we set default ACLs with
110 * zero length -- defend (gracefully) against that here.
115 src_entry = (posix_acl_xattr_entry *)((char *)src + sizeof(*src));
116 dest_entry = &dest->acl_entry[0];
118 for (n = 0; n < dest->acl_cnt; n++, src_entry++, dest_entry++) {
119 dest_entry->ae_perm = le16_to_cpu(src_entry->e_perm);
120 if (_ACL_PERM_INVALID(dest_entry->ae_perm))
122 dest_entry->ae_tag = le16_to_cpu(src_entry->e_tag);
123 switch(dest_entry->ae_tag) {
126 dest_entry->ae_id = le32_to_cpu(src_entry->e_id);
132 dest_entry->ae_id = ACL_UNDEFINED_ID;
138 if (xfs_acl_invalid(dest))
145 * Comparison function called from xfs_sort().
146 * Primary key is ae_tag, secondary key is ae_id.
149 xfs_acl_entry_compare(
153 xfs_acl_entry_t *a = (xfs_acl_entry_t *)va,
154 *b = (xfs_acl_entry_t *)vb;
156 if (a->ae_tag == b->ae_tag)
157 return (a->ae_id - b->ae_id);
158 return (a->ae_tag - b->ae_tag);
162 * Convert from in-memory XFS to extended attribute representation.
165 posix_acl_xfs_to_xattr(
167 posix_acl_xattr_header *dest,
171 size_t new_size = posix_acl_xattr_size(src->acl_cnt);
172 posix_acl_xattr_entry *dest_entry;
173 xfs_acl_entry_t *src_entry;
178 /* Need to sort src XFS ACL by <ae_tag,ae_id> */
179 xfs_sort(src->acl_entry, src->acl_cnt, sizeof(src->acl_entry[0]),
180 xfs_acl_entry_compare);
182 dest->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION);
183 dest_entry = &dest->a_entries[0];
184 src_entry = &src->acl_entry[0];
185 for (n = 0; n < src->acl_cnt; n++, dest_entry++, src_entry++) {
186 dest_entry->e_perm = cpu_to_le16(src_entry->ae_perm);
187 if (_ACL_PERM_INVALID(src_entry->ae_perm))
189 dest_entry->e_tag = cpu_to_le16(src_entry->ae_tag);
190 switch (src_entry->ae_tag) {
193 dest_entry->e_id = cpu_to_le32(src_entry->ae_id);
199 dest_entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
216 xfs_acl_t *xfs_acl = NULL;
217 posix_acl_xattr_header *ext_acl = acl;
222 if (!(_ACL_ALLOC(xfs_acl))) {
226 memset(xfs_acl, 0, sizeof(xfs_acl_t));
228 flags = ATTR_KERNOVAL;
230 xfs_acl_get_attr(vp, xfs_acl, kind, flags, &error);
235 error = -posix_acl_xattr_size(XFS_ACL_MAX_ENTRIES);
237 if (xfs_acl_invalid(xfs_acl)) {
241 if (kind == _ACL_TYPE_ACCESS)
242 xfs_acl_sync_mode(xfs_vtoi(vp)->i_d.di_mode, xfs_acl);
243 error = -posix_acl_xfs_to_xattr(xfs_acl, ext_acl, size);
260 error = xfs_acl_allow_set(vp, kind);
262 error = xfs_attr_remove(xfs_vtoi(vp),
263 kind == _ACL_TYPE_DEFAULT?
264 SGI_ACL_DEFAULT: SGI_ACL_FILE,
266 if (error == ENOATTR)
267 error = 0; /* 'scool */
280 posix_acl_xattr_header *ext_acl = acl;
283 int basicperms = 0; /* more than std unix perms? */
288 if (!(_ACL_ALLOC(xfs_acl)))
291 error = posix_acl_xattr_to_xfs(ext_acl, size, xfs_acl);
296 if (!xfs_acl->acl_cnt) {
302 error = xfs_acl_allow_set(vp, kind);
304 /* Incoming ACL exists, set file mode based on its value */
305 if (!error && kind == _ACL_TYPE_ACCESS)
306 error = xfs_acl_setmode(vp, xfs_acl, &basicperms);
312 * If we have more than std unix permissions, set up the actual attr.
313 * Otherwise, delete any existing attr. This prevents us from
314 * having actual attrs for permissions that can be stored in the
315 * standard permission bits.
318 xfs_acl_set_attr(vp, xfs_acl, kind, &error);
320 error = -xfs_acl_vremove(vp, _ACL_TYPE_ACCESS);
337 struct xfs_name acl_name = {SGI_ACL_FILE, SGI_ACL_FILE_SIZE};
339 if (!(_ACL_ALLOC(acl)))
342 /* If the file has no ACL return -1. */
343 rval = sizeof(xfs_acl_t);
344 if (xfs_attr_fetch(ip, &acl_name, (char *)acl, &rval,
345 ATTR_ROOT | ATTR_KERNACCESS)) {
349 xfs_acl_get_endian(acl);
351 /* If the file has an empty ACL return -1. */
352 if (acl->acl_cnt == XFS_ACL_NOT_PRESENT) {
357 /* Synchronize ACL with mode bits */
358 xfs_acl_sync_mode(ip->i_d.di_mode, acl);
360 rval = xfs_acl_access(ip->i_d.di_uid, ip->i_d.di_gid, acl, mode, cr);
370 if (vp->i_flags & (S_IMMUTABLE|S_APPEND))
372 if (kind == _ACL_TYPE_DEFAULT && !S_ISDIR(vp->i_mode))
374 if (vp->i_sb->s_flags & MS_RDONLY)
376 if (xfs_vtoi(vp)->i_d.di_uid != current->fsuid && !capable(CAP_FOWNER))
382 * Note: cr is only used here for the capability check if the ACL test fails.
383 * It is not used to find out the credentials uid or groups etc, as was
384 * done in IRIX. It is assumed that the uid and groups for the current
385 * thread are taken from "current" instead of the cr parameter.
395 xfs_acl_entry_t matched;
397 int maskallows = -1; /* true, but not 1, either */
398 int seen_userobj = 0;
400 matched.ae_tag = 0; /* Invalid type */
403 for (i = 0; i < fap->acl_cnt; i++) {
405 * Break out if we've got a user_obj entry or
406 * a user entry and the mask (and have processed USER_OBJ)
408 if (matched.ae_tag == ACL_USER_OBJ)
410 if (matched.ae_tag == ACL_USER) {
411 if (maskallows != -1 && seen_userobj)
413 if (fap->acl_entry[i].ae_tag != ACL_MASK &&
414 fap->acl_entry[i].ae_tag != ACL_USER_OBJ)
417 /* True if this entry allows the requested access */
418 allows = ((fap->acl_entry[i].ae_perm & md) == md);
420 switch (fap->acl_entry[i].ae_tag) {
423 if (fuid != current->fsuid)
425 matched.ae_tag = ACL_USER_OBJ;
426 matched.ae_perm = allows;
429 if (fap->acl_entry[i].ae_id != current->fsuid)
431 matched.ae_tag = ACL_USER;
432 matched.ae_perm = allows;
435 if ((matched.ae_tag == ACL_GROUP_OBJ ||
436 matched.ae_tag == ACL_GROUP) && !allows)
438 if (!in_group_p(fgid))
440 matched.ae_tag = ACL_GROUP_OBJ;
441 matched.ae_perm = allows;
444 if ((matched.ae_tag == ACL_GROUP_OBJ ||
445 matched.ae_tag == ACL_GROUP) && !allows)
447 if (!in_group_p(fap->acl_entry[i].ae_id))
449 matched.ae_tag = ACL_GROUP;
450 matched.ae_perm = allows;
456 if (matched.ae_tag != 0)
458 matched.ae_tag = ACL_OTHER;
459 matched.ae_perm = allows;
464 * First possibility is that no matched entry allows access.
465 * The capability to override DAC may exist, so check for it.
467 switch (matched.ae_tag) {
476 if (maskallows && matched.ae_perm)
483 /* EACCES tells generic_permission to check for capability overrides */
488 * ACL validity checker.
489 * This acl validation routine checks each ACL entry read in makes sense.
495 xfs_acl_entry_t *entry, *e;
496 int user = 0, group = 0, other = 0, mask = 0;
497 int mask_required = 0;
503 if (aclp->acl_cnt > XFS_ACL_MAX_ENTRIES)
506 for (i = 0; i < aclp->acl_cnt; i++) {
507 entry = &aclp->acl_entry[i];
508 switch (entry->ae_tag) {
523 for (j = i + 1; j < aclp->acl_cnt; j++) {
524 e = &aclp->acl_entry[j];
525 if (e->ae_id == entry->ae_id &&
526 e->ae_tag == entry->ae_tag)
539 if (!user || !group || !other || (mask_required && !mask))
548 * Do ACL endian conversion.
554 xfs_acl_entry_t *ace, *end;
556 INT_SET(aclp->acl_cnt, ARCH_CONVERT, aclp->acl_cnt);
557 end = &aclp->acl_entry[0]+aclp->acl_cnt;
558 for (ace = &aclp->acl_entry[0]; ace < end; ace++) {
559 INT_SET(ace->ae_tag, ARCH_CONVERT, ace->ae_tag);
560 INT_SET(ace->ae_id, ARCH_CONVERT, ace->ae_id);
561 INT_SET(ace->ae_perm, ARCH_CONVERT, ace->ae_perm);
566 * Get the ACL from the EA and do endian conversion.
576 int len = sizeof(xfs_acl_t);
578 ASSERT((flags & ATTR_KERNOVAL) ? (aclp == NULL) : 1);
580 *error = xfs_attr_get(xfs_vtoi(vp),
581 kind == _ACL_TYPE_ACCESS ?
582 SGI_ACL_FILE : SGI_ACL_DEFAULT,
583 (char *)aclp, &len, flags);
584 if (*error || (flags & ATTR_KERNOVAL))
586 xfs_acl_get_endian(aclp);
590 * Set the EA with the ACL and do endian conversion.
599 xfs_acl_entry_t *ace, *newace, *end;
603 if (!(_ACL_ALLOC(newacl))) {
608 len = sizeof(xfs_acl_t) -
609 (sizeof(xfs_acl_entry_t) * (XFS_ACL_MAX_ENTRIES - aclp->acl_cnt));
610 end = &aclp->acl_entry[0]+aclp->acl_cnt;
611 for (ace = &aclp->acl_entry[0], newace = &newacl->acl_entry[0];
614 INT_SET(newace->ae_tag, ARCH_CONVERT, ace->ae_tag);
615 INT_SET(newace->ae_id, ARCH_CONVERT, ace->ae_id);
616 INT_SET(newace->ae_perm, ARCH_CONVERT, ace->ae_perm);
618 INT_SET(newacl->acl_cnt, ARCH_CONVERT, aclp->acl_cnt);
619 *error = xfs_attr_set(xfs_vtoi(vp),
620 kind == _ACL_TYPE_ACCESS ?
621 SGI_ACL_FILE: SGI_ACL_DEFAULT,
622 (char *)newacl, len, ATTR_ROOT);
629 xfs_acl_t *access_acl,
630 xfs_acl_t *default_acl)
636 * Get the Access ACL and the mode. If either cannot
637 * be obtained for some reason, invalidate the access ACL.
639 xfs_acl_get_attr(vp, access_acl, _ACL_TYPE_ACCESS, 0, &error);
641 access_acl->acl_cnt = XFS_ACL_NOT_PRESENT;
642 else /* We have a good ACL and the file mode, synchronize. */
643 xfs_acl_sync_mode(xfs_vtoi(vp)->i_d.di_mode, access_acl);
647 xfs_acl_get_attr(vp, default_acl, _ACL_TYPE_DEFAULT, 0, &error);
649 default_acl->acl_cnt = XFS_ACL_NOT_PRESENT;
655 * This function retrieves the parent directory's acl, processes it
656 * and lets the child inherit the acl(s) that it should.
669 * If the parent does not have a default ACL, or it's an
670 * invalid ACL, we're done.
674 if (!pdaclp || xfs_acl_invalid(pdaclp))
678 * Copy the default ACL of the containing directory to
679 * the access ACL of the new file and use the mode that
680 * was passed in to set up the correct initial values for
681 * the u::,g::[m::], and o:: entries. This is what makes
682 * umask() "work" with ACL's.
685 if (!(_ACL_ALLOC(cacl)))
688 memcpy(cacl, pdaclp, sizeof(xfs_acl_t));
689 xfs_acl_filter_mode(mode, cacl);
690 error = xfs_acl_setmode(vp, cacl, &basicperms);
695 * Set the Default and Access ACL on the file. The mode is already
696 * set on the file, so we don't need to worry about that.
698 * If the new file is a directory, its default ACL is a copy of
699 * the containing directory's default ACL.
701 if (S_ISDIR(vp->i_mode))
702 xfs_acl_set_attr(vp, pdaclp, _ACL_TYPE_DEFAULT, &error);
703 if (!error && !basicperms)
704 xfs_acl_set_attr(vp, cacl, _ACL_TYPE_ACCESS, &error);
711 * Set up the correct mode on the file based on the supplied ACL. This
712 * makes sure that the mode on the file reflects the state of the
713 * u::,g::[m::], and o:: entries in the ACL. Since the mode is where
714 * the ACL is going to get the permissions for these entries, we must
715 * synchronize the mode whenever we set the ACL on a file.
725 xfs_acl_entry_t *gap = NULL;
730 if (acl->acl_cnt == XFS_ACL_NOT_PRESENT)
734 * Copy the u::, g::, o::, and m:: bits from the ACL into the
735 * mode. The m:: bits take precedence over the g:: bits.
737 va.va_mask = XFS_AT_MODE;
738 va.va_mode = xfs_vtoi(vp)->i_d.di_mode;
739 va.va_mode &= ~(S_IRWXU|S_IRWXG|S_IRWXO);
741 for (i = 0; i < acl->acl_cnt; ++i) {
742 switch (ap->ae_tag) {
744 va.va_mode |= ap->ae_perm << 6;
749 case ACL_MASK: /* more than just standard modes */
751 va.va_mode |= ap->ae_perm << 3;
755 va.va_mode |= ap->ae_perm;
757 default: /* more than just standard modes */
764 /* Set the group bits from ACL_GROUP_OBJ if there's no ACL_MASK */
766 va.va_mode |= gap->ae_perm << 3;
768 return xfs_setattr(xfs_vtoi(vp), &va, 0, sys_cred);
772 * The permissions for the special ACL entries (u::, g::[m::], o::) are
773 * actually stored in the file mode (if there is both a group and a mask,
774 * the group is stored in the ACL entry and the mask is stored on the file).
775 * This allows the mode to remain automatically in sync with the ACL without
776 * the need for a call-back to the ACL system at every point where the mode
777 * could change. This function takes the permissions from the specified mode
778 * and places it in the supplied ACL.
780 * This implementation draws its validity from the fact that, when the ACL
781 * was assigned, the mode was copied from the ACL.
782 * If the mode did not change, therefore, the mode remains exactly what was
783 * taken from the special ACL entries at assignment.
784 * If a subsequent chmod() was done, the POSIX spec says that the change in
785 * mode must cause an update to the ACL seen at user level and used for
786 * access checks. Before and after a mode change, therefore, the file mode
787 * most accurately reflects what the special ACL entries should permit/deny.
789 * CAVEAT: If someone sets the SGI_ACL_FILE attribute directly,
790 * the existing mode bits will override whatever is in the
791 * ACL. Similarly, if there is a pre-existing ACL that was
792 * never in sync with its mode (owing to a bug in 6.5 and
793 * before), it will now magically (or mystically) be
794 * synchronized. This could cause slight astonishment, but
795 * it is better than inconsistent permissions.
797 * The supplied ACL is a template that may contain any combination
798 * of special entries. These are treated as place holders when we fill
799 * out the ACL. This routine does not add or remove special entries, it
800 * simply unites each special entry with its associated set of permissions.
809 xfs_acl_entry_t *gap = NULL;
812 * Set ACL entries. POSIX1003.1eD16 requires that the MASK
813 * be set instead of the GROUP entry, if there is a MASK.
815 for (ap = acl->acl_entry, i = 0; i < acl->acl_cnt; ap++, i++) {
816 switch (ap->ae_tag) {
818 ap->ae_perm = (mode >> 6) & 0x7;
825 ap->ae_perm = (mode >> 3) & 0x7;
828 ap->ae_perm = mode & 0x7;
834 /* Set the ACL_GROUP_OBJ if there's no ACL_MASK */
836 gap->ae_perm = (mode >> 3) & 0x7;
840 * When inheriting an Access ACL from a directory Default ACL,
841 * the ACL bits are set to the intersection of the ACL default
842 * permission bits and the file permission bits in mode. If there
843 * are no permission bits on the file then we must not give them
844 * the ACL. This is what what makes umask() work with ACLs.
853 xfs_acl_entry_t *gap = NULL;
856 * Set ACL entries. POSIX1003.1eD16 requires that the MASK
857 * be merged with GROUP entry, if there is a MASK.
859 for (ap = acl->acl_entry, i = 0; i < acl->acl_cnt; ap++, i++) {
860 switch (ap->ae_tag) {
862 ap->ae_perm &= (mode >> 6) & 0x7;
869 ap->ae_perm &= (mode >> 3) & 0x7;
872 ap->ae_perm &= mode & 0x7;
878 /* Set the ACL_GROUP_OBJ if there's no ACL_MASK */
880 gap->ae_perm &= (mode >> 3) & 0x7;