xref: /freebsd/sys/fs/ext2fs/ext2_acl.c (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
139999a69SPedro F. Giffuni /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
37abc09cdSPedro F. Giffuni  *
439999a69SPedro F. Giffuni  * Copyright (c) 2017, Fedor Uporov
539999a69SPedro F. Giffuni  * All rights reserved.
639999a69SPedro F. Giffuni  *
739999a69SPedro F. Giffuni  * Redistribution and use in source and binary forms, with or without
839999a69SPedro F. Giffuni  * modification, are permitted provided that the following conditions
939999a69SPedro F. Giffuni  * are met:
1039999a69SPedro F. Giffuni  * 1. Redistributions of source code must retain the above copyright
1139999a69SPedro F. Giffuni  *    notice, this list of conditions and the following disclaimer.
1239999a69SPedro F. Giffuni  * 2. Redistributions in binary form must reproduce the above copyright
1339999a69SPedro F. Giffuni  *    notice, this list of conditions and the following disclaimer in the
1439999a69SPedro F. Giffuni  *    documentation and/or other materials provided with the distribution.
1539999a69SPedro F. Giffuni  *
1639999a69SPedro F. Giffuni  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1739999a69SPedro F. Giffuni  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1839999a69SPedro F. Giffuni  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1939999a69SPedro F. Giffuni  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2039999a69SPedro F. Giffuni  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2139999a69SPedro F. Giffuni  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2239999a69SPedro F. Giffuni  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2339999a69SPedro F. Giffuni  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2439999a69SPedro F. Giffuni  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2539999a69SPedro F. Giffuni  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2639999a69SPedro F. Giffuni  * SUCH DAMAGE.
2739999a69SPedro F. Giffuni  */
2839999a69SPedro F. Giffuni 
2939999a69SPedro F. Giffuni #include <sys/param.h>
3039999a69SPedro F. Giffuni #include <sys/systm.h>
3139999a69SPedro F. Giffuni #include <sys/types.h>
3239999a69SPedro F. Giffuni #include <sys/stat.h>
3339999a69SPedro F. Giffuni #include <sys/kernel.h>
3439999a69SPedro F. Giffuni #include <sys/malloc.h>
3539999a69SPedro F. Giffuni #include <sys/vnode.h>
3639999a69SPedro F. Giffuni #include <sys/bio.h>
3739999a69SPedro F. Giffuni #include <sys/buf.h>
3839999a69SPedro F. Giffuni #include <sys/endian.h>
3939999a69SPedro F. Giffuni #include <sys/conf.h>
4039999a69SPedro F. Giffuni #include <sys/mount.h>
4139999a69SPedro F. Giffuni #include <sys/extattr.h>
4239999a69SPedro F. Giffuni 
4339999a69SPedro F. Giffuni #include <fs/ext2fs/fs.h>
4439999a69SPedro F. Giffuni #include <fs/ext2fs/ext2fs.h>
4539999a69SPedro F. Giffuni #include <fs/ext2fs/inode.h>
4639999a69SPedro F. Giffuni #include <fs/ext2fs/ext2_acl.h>
4739999a69SPedro F. Giffuni #include <fs/ext2fs/ext2_extattr.h>
4839999a69SPedro F. Giffuni #include <fs/ext2fs/ext2_extern.h>
4939999a69SPedro F. Giffuni #include <fs/ext2fs/ext2_dinode.h>
5039999a69SPedro F. Giffuni #include <fs/ext2fs/ext2_mount.h>
5139999a69SPedro F. Giffuni 
52b5f0918bSPedro F. Giffuni #ifdef UFS_ACL
53b5f0918bSPedro F. Giffuni 
5439999a69SPedro F. Giffuni void
ext2_sync_acl_from_inode(struct inode * ip,struct acl * acl)5539999a69SPedro F. Giffuni ext2_sync_acl_from_inode(struct inode *ip, struct acl *acl)
5639999a69SPedro F. Giffuni {
5739999a69SPedro F. Giffuni 	struct acl_entry	*acl_mask, *acl_group_obj;
5839999a69SPedro F. Giffuni 	int	i;
5939999a69SPedro F. Giffuni 
6039999a69SPedro F. Giffuni 	/*
6139999a69SPedro F. Giffuni 	 * Update ACL_USER_OBJ, ACL_OTHER, but simply identify ACL_MASK
6239999a69SPedro F. Giffuni 	 * and ACL_GROUP_OBJ for use after we know whether ACL_MASK is
6339999a69SPedro F. Giffuni 	 * present.
6439999a69SPedro F. Giffuni 	 */
6539999a69SPedro F. Giffuni 	acl_mask = NULL;
6639999a69SPedro F. Giffuni 	acl_group_obj = NULL;
6739999a69SPedro F. Giffuni 	for (i = 0; i < acl->acl_cnt; i++) {
6839999a69SPedro F. Giffuni 		switch (acl->acl_entry[i].ae_tag) {
6939999a69SPedro F. Giffuni 		case ACL_USER_OBJ:
7039999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_perm = acl_posix1e_mode_to_perm(
7139999a69SPedro F. Giffuni 			    ACL_USER_OBJ, ip->i_mode);
7239999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_id = ACL_UNDEFINED_ID;
7339999a69SPedro F. Giffuni 			break;
7439999a69SPedro F. Giffuni 
7539999a69SPedro F. Giffuni 		case ACL_GROUP_OBJ:
7639999a69SPedro F. Giffuni 			acl_group_obj = &acl->acl_entry[i];
7739999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_id = ACL_UNDEFINED_ID;
7839999a69SPedro F. Giffuni 			break;
7939999a69SPedro F. Giffuni 
8039999a69SPedro F. Giffuni 		case ACL_OTHER:
8139999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_perm = acl_posix1e_mode_to_perm(
8239999a69SPedro F. Giffuni 			    ACL_OTHER, ip->i_mode);
8339999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_id = ACL_UNDEFINED_ID;
8439999a69SPedro F. Giffuni 			break;
8539999a69SPedro F. Giffuni 
8639999a69SPedro F. Giffuni 		case ACL_MASK:
8739999a69SPedro F. Giffuni 			acl_mask = &acl->acl_entry[i];
8839999a69SPedro F. Giffuni 			acl->acl_entry[i].ae_id = ACL_UNDEFINED_ID;
8939999a69SPedro F. Giffuni 			break;
9039999a69SPedro F. Giffuni 
9139999a69SPedro F. Giffuni 		case ACL_USER:
9239999a69SPedro F. Giffuni 		case ACL_GROUP:
9339999a69SPedro F. Giffuni 			break;
9439999a69SPedro F. Giffuni 
9539999a69SPedro F. Giffuni 		default:
9639999a69SPedro F. Giffuni 			panic("ext2_sync_acl_from_inode(): bad ae_tag");
9739999a69SPedro F. Giffuni 		}
9839999a69SPedro F. Giffuni 	}
9939999a69SPedro F. Giffuni 
10039999a69SPedro F. Giffuni 	if (acl_group_obj == NULL)
10139999a69SPedro F. Giffuni 		panic("ext2_sync_acl_from_inode(): no ACL_GROUP_OBJ");
10239999a69SPedro F. Giffuni 
10339999a69SPedro F. Giffuni 	if (acl_mask == NULL) {
10439999a69SPedro F. Giffuni 		/*
10539999a69SPedro F. Giffuni 		 * There is no ACL_MASK, so update ACL_GROUP_OBJ.
10639999a69SPedro F. Giffuni 		 */
10739999a69SPedro F. Giffuni 		acl_group_obj->ae_perm = acl_posix1e_mode_to_perm(
10839999a69SPedro F. Giffuni 		    ACL_GROUP_OBJ, ip->i_mode);
10939999a69SPedro F. Giffuni 	} else {
11039999a69SPedro F. Giffuni 		/*
11139999a69SPedro F. Giffuni 		 * Update the ACL_MASK entry instead of ACL_GROUP_OBJ.
11239999a69SPedro F. Giffuni 		 */
11339999a69SPedro F. Giffuni 		acl_mask->ae_perm = acl_posix1e_mode_to_perm(ACL_GROUP_OBJ,
11439999a69SPedro F. Giffuni 		    ip->i_mode);
11539999a69SPedro F. Giffuni 	}
11639999a69SPedro F. Giffuni }
11739999a69SPedro F. Giffuni 
11839999a69SPedro F. Giffuni static void
ext2_sync_inode_from_acl(struct acl * acl,struct inode * ip)11939999a69SPedro F. Giffuni ext2_sync_inode_from_acl(struct acl *acl, struct inode *ip)
12039999a69SPedro F. Giffuni {
12139999a69SPedro F. Giffuni 
12239999a69SPedro F. Giffuni 	ip->i_mode &= ACL_PRESERVE_MASK;
12339999a69SPedro F. Giffuni 	ip->i_mode |= acl_posix1e_acl_to_mode(acl);
12439999a69SPedro F. Giffuni }
12539999a69SPedro F. Giffuni 
12639999a69SPedro F. Giffuni /*
12739999a69SPedro F. Giffuni  * Convert from filesystem to in-memory representation.
12839999a69SPedro F. Giffuni  */
12939999a69SPedro F. Giffuni static int
ext4_acl_from_disk(char * value,size_t size,struct acl * acl)13039999a69SPedro F. Giffuni ext4_acl_from_disk(char *value, size_t size, struct acl *acl)
13139999a69SPedro F. Giffuni {
132109f344bSConrad Meyer 	const char *end;
13339999a69SPedro F. Giffuni 	int n, count, s;
13439999a69SPedro F. Giffuni 
135109f344bSConrad Meyer 	if (value == NULL)
136109f344bSConrad Meyer 		return (EINVAL);
137109f344bSConrad Meyer 
138109f344bSConrad Meyer 	end = value + size;
139109f344bSConrad Meyer 
14039999a69SPedro F. Giffuni 	if (((struct ext2_acl_header *)value)->a_version != EXT4_ACL_VERSION)
14139999a69SPedro F. Giffuni 		return (EINVAL);
14239999a69SPedro F. Giffuni 
143109f344bSConrad Meyer 	if (size < sizeof(struct ext2_acl_header))
14439999a69SPedro F. Giffuni 		return (EINVAL);
14539999a69SPedro F. Giffuni 
14639999a69SPedro F. Giffuni 	s = size - sizeof(struct ext2_acl_header);
14739999a69SPedro F. Giffuni 	s -= 4 * sizeof(struct ext2_acl_entry_short);
14839999a69SPedro F. Giffuni 	if (s < 0)
14939999a69SPedro F. Giffuni 		if ((size - sizeof(struct ext2_acl_header)) %
15039999a69SPedro F. Giffuni 		    sizeof(struct ext2_acl_entry_short))
15139999a69SPedro F. Giffuni 			count = -1;
15239999a69SPedro F. Giffuni 		else
15339999a69SPedro F. Giffuni 			count = (size - sizeof(struct ext2_acl_header)) /
15439999a69SPedro F. Giffuni 			    sizeof(struct ext2_acl_entry_short);
15539999a69SPedro F. Giffuni 	else
15639999a69SPedro F. Giffuni 		if (s % sizeof(struct ext2_acl_entry))
15739999a69SPedro F. Giffuni 			count = -1;
15839999a69SPedro F. Giffuni 		else
15939999a69SPedro F. Giffuni 			count = s / sizeof(struct ext2_acl_entry) + 4;
16039999a69SPedro F. Giffuni 
16139999a69SPedro F. Giffuni 	if (count <= 0 || count > acl->acl_maxcnt)
16239999a69SPedro F. Giffuni 		return (EINVAL);
16339999a69SPedro F. Giffuni 
16439999a69SPedro F. Giffuni 	value = value + sizeof(struct ext2_acl_header);
16539999a69SPedro F. Giffuni 
16639999a69SPedro F. Giffuni 	for (n = 0; n < count; n++) {
16739999a69SPedro F. Giffuni 		struct ext2_acl_entry *entry = (struct ext2_acl_entry *)value;
16839999a69SPedro F. Giffuni 		if ((char *)value + sizeof(struct ext2_acl_entry_short) > end)
16939999a69SPedro F. Giffuni 			return (EINVAL);
17039999a69SPedro F. Giffuni 
17139999a69SPedro F. Giffuni 		acl->acl_entry[n].ae_tag  = entry->ae_tag;
17239999a69SPedro F. Giffuni 		acl->acl_entry[n].ae_perm = entry->ae_perm;
17339999a69SPedro F. Giffuni 
17439999a69SPedro F. Giffuni 		switch (acl->acl_entry[n].ae_tag) {
17539999a69SPedro F. Giffuni 		case ACL_USER_OBJ:
17639999a69SPedro F. Giffuni 		case ACL_GROUP_OBJ:
17739999a69SPedro F. Giffuni 		case ACL_MASK:
17839999a69SPedro F. Giffuni 		case ACL_OTHER:
17939999a69SPedro F. Giffuni 			value = (char *)value + sizeof(struct ext2_acl_entry_short);
18039999a69SPedro F. Giffuni 			break;
18139999a69SPedro F. Giffuni 
18239999a69SPedro F. Giffuni 		case ACL_USER:
18339999a69SPedro F. Giffuni 			value = (char *)value + sizeof(struct ext2_acl_entry);
18439999a69SPedro F. Giffuni 			if ((char *)value > end)
18539999a69SPedro F. Giffuni 				return (EINVAL);
18639999a69SPedro F. Giffuni 
18739999a69SPedro F. Giffuni 			acl->acl_entry[n].ae_id = entry->ae_id;
18839999a69SPedro F. Giffuni 			break;
18939999a69SPedro F. Giffuni 
19039999a69SPedro F. Giffuni 		case ACL_GROUP:
19139999a69SPedro F. Giffuni 			value = (char *)value + sizeof(struct ext2_acl_entry);
19239999a69SPedro F. Giffuni 			if ((char *)value > end)
19339999a69SPedro F. Giffuni 				return (EINVAL);
19439999a69SPedro F. Giffuni 
19539999a69SPedro F. Giffuni 			acl->acl_entry[n].ae_id = entry->ae_id;
19639999a69SPedro F. Giffuni 			break;
19739999a69SPedro F. Giffuni 
19839999a69SPedro F. Giffuni 		default:
19939999a69SPedro F. Giffuni 			return (EINVAL);
20039999a69SPedro F. Giffuni 		}
20139999a69SPedro F. Giffuni 	}
20239999a69SPedro F. Giffuni 
20339999a69SPedro F. Giffuni 	if (value != end)
20439999a69SPedro F. Giffuni 		return (EINVAL);
20539999a69SPedro F. Giffuni 
20639999a69SPedro F. Giffuni 	acl->acl_cnt = count;
20739999a69SPedro F. Giffuni 
20839999a69SPedro F. Giffuni 	return (0);
20939999a69SPedro F. Giffuni }
21039999a69SPedro F. Giffuni 
21139999a69SPedro F. Giffuni static int
ext2_getacl_posix1e(struct vop_getacl_args * ap)21239999a69SPedro F. Giffuni ext2_getacl_posix1e(struct vop_getacl_args *ap)
21339999a69SPedro F. Giffuni {
21439999a69SPedro F. Giffuni 	int attrnamespace;
21539999a69SPedro F. Giffuni 	const char *attrname;
21639999a69SPedro F. Giffuni 	char *value;
21739999a69SPedro F. Giffuni 	int len;
21839999a69SPedro F. Giffuni 	int error;
21939999a69SPedro F. Giffuni 
22039999a69SPedro F. Giffuni 	switch (ap->a_type) {
22139999a69SPedro F. Giffuni 	case ACL_TYPE_DEFAULT:
22239999a69SPedro F. Giffuni 		attrnamespace = POSIX1E_ACL_DEFAULT_EXTATTR_NAMESPACE;
22339999a69SPedro F. Giffuni 		attrname = POSIX1E_ACL_DEFAULT_EXTATTR_NAME;
22439999a69SPedro F. Giffuni 		break;
22539999a69SPedro F. Giffuni 	case ACL_TYPE_ACCESS:
22639999a69SPedro F. Giffuni 		attrnamespace = POSIX1E_ACL_ACCESS_EXTATTR_NAMESPACE;
22739999a69SPedro F. Giffuni 		attrname = POSIX1E_ACL_ACCESS_EXTATTR_NAME;
22839999a69SPedro F. Giffuni 		break;
22939999a69SPedro F. Giffuni 	default:
23039999a69SPedro F. Giffuni 		return (EINVAL);
23139999a69SPedro F. Giffuni 	}
23239999a69SPedro F. Giffuni 
23303222757SPedro F. Giffuni 	len = sizeof(*ap->a_aclp) + sizeof(struct ext2_acl_header);
23403222757SPedro F. Giffuni 	value = malloc(len, M_ACL, M_WAITOK);
23503222757SPedro F. Giffuni 
23639999a69SPedro F. Giffuni 	error = vn_extattr_get(ap->a_vp, IO_NODELOCKED, attrnamespace, attrname,
23739999a69SPedro F. Giffuni 	    &len, value, ap->a_td);
238109f344bSConrad Meyer 	if (error == ENOATTR) {
23939999a69SPedro F. Giffuni 		switch (ap->a_type) {
24039999a69SPedro F. Giffuni 		case ACL_TYPE_ACCESS:
24139999a69SPedro F. Giffuni 			ap->a_aclp->acl_cnt = 3;
24239999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[0].ae_tag = ACL_USER_OBJ;
24339999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[0].ae_id = ACL_UNDEFINED_ID;
24439999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[0].ae_perm = ACL_PERM_NONE;
24539999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[1].ae_tag = ACL_GROUP_OBJ;
24639999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[1].ae_id = ACL_UNDEFINED_ID;
24739999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[1].ae_perm = ACL_PERM_NONE;
24839999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[2].ae_tag = ACL_OTHER;
24939999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[2].ae_id = ACL_UNDEFINED_ID;
25039999a69SPedro F. Giffuni 			ap->a_aclp->acl_entry[2].ae_perm = ACL_PERM_NONE;
25139999a69SPedro F. Giffuni 			break;
25239999a69SPedro F. Giffuni 
25339999a69SPedro F. Giffuni 		case ACL_TYPE_DEFAULT:
25439999a69SPedro F. Giffuni 			ap->a_aclp->acl_cnt = 0;
25539999a69SPedro F. Giffuni 			break;
25639999a69SPedro F. Giffuni 		}
257109f344bSConrad Meyer 	} else if (error != 0)
258109f344bSConrad Meyer 		goto out;
259109f344bSConrad Meyer 
26039999a69SPedro F. Giffuni 	if (!error) {
26139999a69SPedro F. Giffuni 		error = ext4_acl_from_disk(value, len, ap->a_aclp);
26239999a69SPedro F. Giffuni 		if (error)
26339999a69SPedro F. Giffuni 			goto out;
26439999a69SPedro F. Giffuni 	}
26539999a69SPedro F. Giffuni 
26639999a69SPedro F. Giffuni 	if (error == ENOATTR)
26739999a69SPedro F. Giffuni 		error = 0;
26839999a69SPedro F. Giffuni 
26939999a69SPedro F. Giffuni 	if (ap->a_type == ACL_TYPE_ACCESS)
27039999a69SPedro F. Giffuni 		ext2_sync_acl_from_inode(VTOI(ap->a_vp), ap->a_aclp);
27139999a69SPedro F. Giffuni 
27239999a69SPedro F. Giffuni out:
27339999a69SPedro F. Giffuni 	free(value, M_TEMP);
27439999a69SPedro F. Giffuni 	return (error);
27539999a69SPedro F. Giffuni }
27639999a69SPedro F. Giffuni 
27739999a69SPedro F. Giffuni int
ext2_getacl(struct vop_getacl_args * ap)27839999a69SPedro F. Giffuni ext2_getacl(struct vop_getacl_args *ap)
27939999a69SPedro F. Giffuni {
28039999a69SPedro F. Giffuni 
28139999a69SPedro F. Giffuni 	if (((ap->a_vp->v_mount->mnt_flag & MNT_ACLS) == 0) ||
282a8b9a639SConrad Meyer 	    ((ap->a_vp->v_mount->mnt_flag & MNT_NFS4ACLS) != 0))
28339999a69SPedro F. Giffuni 		return (EOPNOTSUPP);
28439999a69SPedro F. Giffuni 
28539999a69SPedro F. Giffuni 	if (ap->a_type == ACL_TYPE_NFS4)
28639999a69SPedro F. Giffuni 		return (ENOTSUP);
28739999a69SPedro F. Giffuni 
28839999a69SPedro F. Giffuni 	return (ext2_getacl_posix1e(ap));
28939999a69SPedro F. Giffuni }
29039999a69SPedro F. Giffuni 
29139999a69SPedro F. Giffuni /*
29239999a69SPedro F. Giffuni  * Convert from in-memory to filesystem representation.
29339999a69SPedro F. Giffuni  */
29439999a69SPedro F. Giffuni static int
ext4_acl_to_disk(const struct acl * acl,size_t * size,char * value)29539999a69SPedro F. Giffuni ext4_acl_to_disk(const struct acl *acl, size_t *size, char *value)
29639999a69SPedro F. Giffuni {
29739999a69SPedro F. Giffuni 	struct ext2_acl_header *ext_acl;
29839999a69SPedro F. Giffuni 	int disk_size;
29939999a69SPedro F. Giffuni 	char *e;
30039999a69SPedro F. Giffuni 	size_t n;
30139999a69SPedro F. Giffuni 
30239999a69SPedro F. Giffuni 	if (acl->acl_cnt <= 4)
30339999a69SPedro F. Giffuni 		disk_size = sizeof(struct ext2_acl_header) +
30439999a69SPedro F. Giffuni 		   acl->acl_cnt * sizeof(struct ext2_acl_entry_short);
30539999a69SPedro F. Giffuni 	else
30639999a69SPedro F. Giffuni 		disk_size = sizeof(struct ext2_acl_header) +
30739999a69SPedro F. Giffuni 		    4 * sizeof(struct ext2_acl_entry_short) +
30839999a69SPedro F. Giffuni 		    (acl->acl_cnt - 4) * sizeof(struct ext2_acl_entry);
30939999a69SPedro F. Giffuni 
31039999a69SPedro F. Giffuni 	if (disk_size > *size)
31139999a69SPedro F. Giffuni 		return (EINVAL);
31239999a69SPedro F. Giffuni 
31339999a69SPedro F. Giffuni 	*size = disk_size;
31439999a69SPedro F. Giffuni 	ext_acl = (struct ext2_acl_header *)value;
31539999a69SPedro F. Giffuni 
31639999a69SPedro F. Giffuni 	ext_acl->a_version = EXT4_ACL_VERSION;
31739999a69SPedro F. Giffuni 	e = (char *)ext_acl + sizeof(struct ext2_acl_header);
31839999a69SPedro F. Giffuni 	for (n = 0; n < acl->acl_cnt; n++) {
31939999a69SPedro F. Giffuni 		const struct acl_entry *acl_e = &acl->acl_entry[n];
32039999a69SPedro F. Giffuni 		struct ext2_acl_entry *entry = (struct ext2_acl_entry *)e;
32139999a69SPedro F. Giffuni 		entry->ae_tag  = acl_e->ae_tag;
32239999a69SPedro F. Giffuni 		entry->ae_perm = acl_e->ae_perm;
32339999a69SPedro F. Giffuni 		switch (acl_e->ae_tag) {
32439999a69SPedro F. Giffuni 		case ACL_USER:
32539999a69SPedro F. Giffuni 			entry->ae_id = acl_e->ae_id;
32639999a69SPedro F. Giffuni 			e += sizeof(struct ext2_acl_entry);
32739999a69SPedro F. Giffuni 			break;
32839999a69SPedro F. Giffuni 
32939999a69SPedro F. Giffuni 		case ACL_GROUP:
33039999a69SPedro F. Giffuni 			entry->ae_id = acl_e->ae_id;
33139999a69SPedro F. Giffuni 			e += sizeof(struct ext2_acl_entry);
33239999a69SPedro F. Giffuni 			break;
33339999a69SPedro F. Giffuni 
33439999a69SPedro F. Giffuni 		case ACL_USER_OBJ:
33539999a69SPedro F. Giffuni 		case ACL_GROUP_OBJ:
33639999a69SPedro F. Giffuni 		case ACL_MASK:
33739999a69SPedro F. Giffuni 		case ACL_OTHER:
33839999a69SPedro F. Giffuni 			e += sizeof(struct ext2_acl_entry_short);
33939999a69SPedro F. Giffuni 			break;
34039999a69SPedro F. Giffuni 
34139999a69SPedro F. Giffuni 		default:
34239999a69SPedro F. Giffuni 			return (EINVAL);
34339999a69SPedro F. Giffuni 		}
34439999a69SPedro F. Giffuni 	}
34539999a69SPedro F. Giffuni 
34639999a69SPedro F. Giffuni 	return (0);
34739999a69SPedro F. Giffuni }
34839999a69SPedro F. Giffuni 
34939999a69SPedro F. Giffuni static int
ext2_setacl_posix1e(struct vop_setacl_args * ap)35039999a69SPedro F. Giffuni ext2_setacl_posix1e(struct vop_setacl_args *ap)
35139999a69SPedro F. Giffuni {
35239999a69SPedro F. Giffuni 	struct inode *ip = VTOI(ap->a_vp);
35339999a69SPedro F. Giffuni 	char *value;
35439999a69SPedro F. Giffuni 	size_t len;
35539999a69SPedro F. Giffuni 	int error;
35639999a69SPedro F. Giffuni 
35739999a69SPedro F. Giffuni 	if ((ap->a_vp->v_mount->mnt_flag & MNT_ACLS) == 0)
35839999a69SPedro F. Giffuni 		return (EINVAL);
35939999a69SPedro F. Giffuni 
36039999a69SPedro F. Giffuni 	/*
36139999a69SPedro F. Giffuni 	 * If this is a set operation rather than a delete operation,
36239999a69SPedro F. Giffuni 	 * invoke VOP_ACLCHECK() on the passed ACL to determine if it is
36339999a69SPedro F. Giffuni 	 * valid for the target.  This will include a check on ap->a_type.
36439999a69SPedro F. Giffuni 	 */
36539999a69SPedro F. Giffuni 	if (ap->a_aclp != NULL) {
36639999a69SPedro F. Giffuni 		/*
36739999a69SPedro F. Giffuni 		 * Set operation.
36839999a69SPedro F. Giffuni 		 */
36939999a69SPedro F. Giffuni 		error = VOP_ACLCHECK(ap->a_vp, ap->a_type, ap->a_aclp,
37039999a69SPedro F. Giffuni 		    ap->a_cred, ap->a_td);
37139999a69SPedro F. Giffuni 		if (error)
37239999a69SPedro F. Giffuni 			return (error);
37339999a69SPedro F. Giffuni 	} else {
37439999a69SPedro F. Giffuni 		/*
37539999a69SPedro F. Giffuni 		 * Delete operation.
37639999a69SPedro F. Giffuni 		 * POSIX.1e allows only deletion of the default ACL on a
37739999a69SPedro F. Giffuni 		 * directory (ACL_TYPE_DEFAULT).
37839999a69SPedro F. Giffuni 		 */
37939999a69SPedro F. Giffuni 		if (ap->a_type != ACL_TYPE_DEFAULT)
38039999a69SPedro F. Giffuni 			return (EINVAL);
38139999a69SPedro F. Giffuni 		if (ap->a_vp->v_type != VDIR)
38239999a69SPedro F. Giffuni 			return (ENOTDIR);
38339999a69SPedro F. Giffuni 	}
38439999a69SPedro F. Giffuni 
38539999a69SPedro F. Giffuni 	if (ap->a_vp->v_mount->mnt_flag & MNT_RDONLY)
38639999a69SPedro F. Giffuni 		return (EROFS);
38739999a69SPedro F. Giffuni 
38839999a69SPedro F. Giffuni 	/*
38939999a69SPedro F. Giffuni 	 * Authorize the ACL operation.
39039999a69SPedro F. Giffuni 	 */
39139999a69SPedro F. Giffuni 	if (ip->i_flags & (IMMUTABLE | APPEND))
39239999a69SPedro F. Giffuni 		return (EPERM);
39339999a69SPedro F. Giffuni 
39439999a69SPedro F. Giffuni 	/*
39539999a69SPedro F. Giffuni 	 * Must hold VADMIN (be file owner) or have appropriate privilege.
39639999a69SPedro F. Giffuni 	 */
39739999a69SPedro F. Giffuni 	if ((error = VOP_ACCESS(ap->a_vp, VADMIN, ap->a_cred, ap->a_td)))
39839999a69SPedro F. Giffuni 		return (error);
39939999a69SPedro F. Giffuni 
40039999a69SPedro F. Giffuni 	switch (ap->a_type) {
40139999a69SPedro F. Giffuni 	case ACL_TYPE_ACCESS:
40239999a69SPedro F. Giffuni 		len = sizeof(*ap->a_aclp) + sizeof(struct ext2_acl_header);
40339999a69SPedro F. Giffuni 		value = malloc(len, M_ACL, M_WAITOK | M_ZERO);
40439999a69SPedro F. Giffuni 		error = ext4_acl_to_disk(ap->a_aclp, &len, value);
40539999a69SPedro F. Giffuni 		if (error == 0)
40639999a69SPedro F. Giffuni 			error = vn_extattr_set(ap->a_vp, IO_NODELOCKED,
40739999a69SPedro F. Giffuni 			    POSIX1E_ACL_ACCESS_EXTATTR_NAMESPACE,
40839999a69SPedro F. Giffuni 			    POSIX1E_ACL_ACCESS_EXTATTR_NAME, len,
40939999a69SPedro F. Giffuni 			    value, ap->a_td);
41039999a69SPedro F. Giffuni 
41139999a69SPedro F. Giffuni 		free(value, M_ACL);
41239999a69SPedro F. Giffuni 		break;
41339999a69SPedro F. Giffuni 
41439999a69SPedro F. Giffuni 	case ACL_TYPE_DEFAULT:
41539999a69SPedro F. Giffuni 		if (ap->a_aclp == NULL) {
41639999a69SPedro F. Giffuni 			error = vn_extattr_rm(ap->a_vp, IO_NODELOCKED,
41739999a69SPedro F. Giffuni 			    POSIX1E_ACL_DEFAULT_EXTATTR_NAMESPACE,
41839999a69SPedro F. Giffuni 			    POSIX1E_ACL_DEFAULT_EXTATTR_NAME, ap->a_td);
41939999a69SPedro F. Giffuni 
42039999a69SPedro F. Giffuni 			/*
42139999a69SPedro F. Giffuni 			 * Attempting to delete a non-present default ACL
42239999a69SPedro F. Giffuni 			 * will return success for portability purposes.
42339999a69SPedro F. Giffuni 			 * (TRIX)
42439999a69SPedro F. Giffuni 			 *
42539999a69SPedro F. Giffuni 			 * XXX: Note that since we can't distinguish
42639999a69SPedro F. Giffuni 			 * "that EA is not supported" from "that EA is not
42739999a69SPedro F. Giffuni 			 * defined", the success case here overlaps the
42839999a69SPedro F. Giffuni 			 * the ENOATTR->EOPNOTSUPP case below.
42939999a69SPedro F. Giffuni 			 */
43039999a69SPedro F. Giffuni 			if (error == ENOATTR)
43139999a69SPedro F. Giffuni 				error = 0;
43239999a69SPedro F. Giffuni 		} else {
43339999a69SPedro F. Giffuni 			len = sizeof(*ap->a_aclp) + sizeof(struct ext2_acl_header);
43439999a69SPedro F. Giffuni 			value = malloc(len, M_ACL, M_WAITOK | M_ZERO);
43539999a69SPedro F. Giffuni 			error = ext4_acl_to_disk(ap->a_aclp, &len, value);
43639999a69SPedro F. Giffuni 			if (error == 0)
43739999a69SPedro F. Giffuni 				error = vn_extattr_set(ap->a_vp, IO_NODELOCKED,
43839999a69SPedro F. Giffuni 				    POSIX1E_ACL_DEFAULT_EXTATTR_NAMESPACE,
43939999a69SPedro F. Giffuni 				    POSIX1E_ACL_DEFAULT_EXTATTR_NAME, len,
44039999a69SPedro F. Giffuni 				    value, ap->a_td);
44139999a69SPedro F. Giffuni 
44239999a69SPedro F. Giffuni 			free(value, M_ACL);
44339999a69SPedro F. Giffuni 		}
44439999a69SPedro F. Giffuni 		break;
44539999a69SPedro F. Giffuni 
44639999a69SPedro F. Giffuni 	default:
44739999a69SPedro F. Giffuni 		error = EINVAL;
44839999a69SPedro F. Giffuni 	}
44939999a69SPedro F. Giffuni 
45039999a69SPedro F. Giffuni 	/*
45139999a69SPedro F. Giffuni 	 * Map lack of attribute definition in UFS_EXTATTR into lack of
45239999a69SPedro F. Giffuni 	 * support for ACLs on the filesystem.
45339999a69SPedro F. Giffuni 	 */
45439999a69SPedro F. Giffuni 	if (error == ENOATTR)
45539999a69SPedro F. Giffuni 		return (EOPNOTSUPP);
45639999a69SPedro F. Giffuni 
45739999a69SPedro F. Giffuni 	if (error != 0)
45839999a69SPedro F. Giffuni 		return (error);
45939999a69SPedro F. Giffuni 
46039999a69SPedro F. Giffuni 	if (ap->a_type == ACL_TYPE_ACCESS) {
46139999a69SPedro F. Giffuni 		/*
46239999a69SPedro F. Giffuni 		 * Now that the EA is successfully updated, update the
46339999a69SPedro F. Giffuni 		 * inode and mark it as changed.
46439999a69SPedro F. Giffuni 		 */
46539999a69SPedro F. Giffuni 		ext2_sync_inode_from_acl(ap->a_aclp, ip);
46639999a69SPedro F. Giffuni 		ip->i_flag |= IN_CHANGE;
46739999a69SPedro F. Giffuni 		error = ext2_update(ip->i_vnode, 1);
46839999a69SPedro F. Giffuni 	}
46939999a69SPedro F. Giffuni 
47039999a69SPedro F. Giffuni 	VN_KNOTE_UNLOCKED(ap->a_vp, NOTE_ATTRIB);
47139999a69SPedro F. Giffuni 
47239999a69SPedro F. Giffuni 	return (error);
47339999a69SPedro F. Giffuni }
47439999a69SPedro F. Giffuni 
47539999a69SPedro F. Giffuni int
ext2_setacl(struct vop_setacl_args * ap)47639999a69SPedro F. Giffuni ext2_setacl(struct vop_setacl_args *ap)
47739999a69SPedro F. Giffuni {
47839999a69SPedro F. Giffuni 	if (((ap->a_vp->v_mount->mnt_flag & MNT_ACLS) == 0) ||
479a8b9a639SConrad Meyer 	    ((ap->a_vp->v_mount->mnt_flag & MNT_NFS4ACLS) != 0))
48039999a69SPedro F. Giffuni 		return (EOPNOTSUPP);
48139999a69SPedro F. Giffuni 
48239999a69SPedro F. Giffuni 	if (ap->a_type == ACL_TYPE_NFS4)
48339999a69SPedro F. Giffuni 		return (ENOTSUP);
48439999a69SPedro F. Giffuni 
48539999a69SPedro F. Giffuni 	return (ext2_setacl_posix1e(ap));
48639999a69SPedro F. Giffuni }
48739999a69SPedro F. Giffuni 
48839999a69SPedro F. Giffuni /*
48939999a69SPedro F. Giffuni  * Check the validity of an ACL for a file.
49039999a69SPedro F. Giffuni  */
49139999a69SPedro F. Giffuni int
ext2_aclcheck(struct vop_aclcheck_args * ap)49239999a69SPedro F. Giffuni ext2_aclcheck(struct vop_aclcheck_args *ap)
49339999a69SPedro F. Giffuni {
49439999a69SPedro F. Giffuni 
49539999a69SPedro F. Giffuni 	if (((ap->a_vp->v_mount->mnt_flag & MNT_ACLS) == 0) ||
496a8b9a639SConrad Meyer 	    ((ap->a_vp->v_mount->mnt_flag & MNT_NFS4ACLS) != 0))
49739999a69SPedro F. Giffuni 		return (EOPNOTSUPP);
49839999a69SPedro F. Giffuni 
49939999a69SPedro F. Giffuni 	if (ap->a_type == ACL_TYPE_NFS4)
50039999a69SPedro F. Giffuni 		return (ENOTSUP);
50139999a69SPedro F. Giffuni 
50239999a69SPedro F. Giffuni 	if ((ap->a_vp->v_mount->mnt_flag & MNT_ACLS) == 0)
50339999a69SPedro F. Giffuni 		return (EINVAL);
50439999a69SPedro F. Giffuni 
50539999a69SPedro F. Giffuni 	/*
50639999a69SPedro F. Giffuni 	 * Verify we understand this type of ACL, and that it applies
50739999a69SPedro F. Giffuni 	 * to this kind of object.
50839999a69SPedro F. Giffuni 	 * Rely on the acl_posix1e_check() routine to verify the contents.
50939999a69SPedro F. Giffuni 	 */
51039999a69SPedro F. Giffuni 	switch (ap->a_type) {
51139999a69SPedro F. Giffuni 		case ACL_TYPE_ACCESS:
51239999a69SPedro F. Giffuni 		break;
51339999a69SPedro F. Giffuni 
51439999a69SPedro F. Giffuni 		case ACL_TYPE_DEFAULT:
51539999a69SPedro F. Giffuni 			if (ap->a_vp->v_type != VDIR)
51639999a69SPedro F. Giffuni 				return (EINVAL);
51739999a69SPedro F. Giffuni 		break;
51839999a69SPedro F. Giffuni 
51939999a69SPedro F. Giffuni 		default:
52039999a69SPedro F. Giffuni 			return (EINVAL);
52139999a69SPedro F. Giffuni 	}
52239999a69SPedro F. Giffuni 
52339999a69SPedro F. Giffuni 	return (acl_posix1e_check(ap->a_aclp));
52439999a69SPedro F. Giffuni }
525b5f0918bSPedro F. Giffuni 
526b5f0918bSPedro F. Giffuni #endif /* UFS_ACL */
527