174667Sjedgar/*
290781Sjedgar * Copyright (c) 2001-2002 Chris D. Faulhaber
374667Sjedgar * All rights reserved.
474667Sjedgar *
574667Sjedgar * Redistribution and use in source and binary forms, with or without
674667Sjedgar * modification, are permitted provided that the following conditions
774667Sjedgar * are met:
874667Sjedgar * 1. Redistributions of source code must retain the above copyright
974667Sjedgar *    notice, this list of conditions and the following disclaimer.
1074667Sjedgar * 2. Redistributions in binary form must reproduce the above copyright
1174667Sjedgar *    notice, this list of conditions and the following disclaimer in the
1274667Sjedgar *    documentation and/or other materials provided with the distribution.
1374667Sjedgar *
1474667Sjedgar * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1574667Sjedgar * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1674667Sjedgar * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1774667Sjedgar * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1874667Sjedgar * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1974667Sjedgar * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2074667Sjedgar * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2174667Sjedgar * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2274667Sjedgar * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2374667Sjedgar * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2474667Sjedgar * SUCH DAMAGE.
2574667Sjedgar */
2674667Sjedgar
2792986Sobrien#include <sys/cdefs.h>
2892986Sobrien__FBSDID("$FreeBSD$");
2992986Sobrien
3074667Sjedgar#include <sys/types.h>
3175185Stmm#include "namespace.h"
3274667Sjedgar#include <sys/acl.h>
3375185Stmm#include "un-namespace.h"
3474667Sjedgar
3574667Sjedgar#include <errno.h>
3674667Sjedgar#include <stdlib.h>
3774667Sjedgar
3875928Sjedgar/*
3975928Sjedgar * acl_create_entry() (23.4.7): create a new ACL entry in the ACL pointed
4075928Sjedgar * to by acl_p.
4175928Sjedgar */
4274667Sjedgarint
4374667Sjedgaracl_create_entry(acl_t *acl_p, acl_entry_t *entry_p)
4474667Sjedgar{
4575928Sjedgar	struct acl *acl_int;
4674667Sjedgar
4790781Sjedgar	if (acl_p == NULL) {
4874667Sjedgar		errno = EINVAL;
4990781Sjedgar		return (-1);
5074667Sjedgar	}
5174667Sjedgar
5275928Sjedgar	acl_int = &(*acl_p)->ats_acl;
5374667Sjedgar
54192966Strasz	/*
55192966Strasz	 * +1, because we are checking if there is space left for one more
56192966Strasz	 * entry.
57192966Strasz	 */
58208783Strasz	if (acl_int->acl_cnt + 1 >= ACL_MAX_ENTRIES) {
5975928Sjedgar		errno = EINVAL;
6090781Sjedgar		return (-1);
6175928Sjedgar	}
6274667Sjedgar
6375928Sjedgar	*entry_p = &acl_int->acl_entry[acl_int->acl_cnt++];
6475928Sjedgar
6574667Sjedgar	(**entry_p).ae_tag  = ACL_UNDEFINED_TAG;
6674667Sjedgar	(**entry_p).ae_id   = ACL_UNDEFINED_ID;
6774667Sjedgar	(**entry_p).ae_perm = ACL_PERM_NONE;
68192586Strasz	(**entry_p).ae_entry_type = 0;
69192586Strasz	(**entry_p).ae_flags = 0;
7074667Sjedgar
7175928Sjedgar	(*acl_p)->ats_cur_entry = 0;
7275928Sjedgar
7390781Sjedgar	return (0);
7474667Sjedgar}
7574667Sjedgar
76194955Straszint
77194955Straszacl_create_entry_np(acl_t *acl_p, acl_entry_t *entry_p, int offset)
78194955Strasz{
79194955Strasz	int i;
80194955Strasz	struct acl *acl_int;
81194955Strasz
82194955Strasz	if (acl_p == NULL) {
83194955Strasz		errno = EINVAL;
84194955Strasz		return (-1);
85194955Strasz	}
86194955Strasz
87194955Strasz	acl_int = &(*acl_p)->ats_acl;
88194955Strasz
89208782Strasz	if (acl_int->acl_cnt + 1 >= ACL_MAX_ENTRIES) {
90194955Strasz		errno = EINVAL;
91194955Strasz		return (-1);
92194955Strasz	}
93194955Strasz
94194955Strasz	if (offset < 0 || offset >= acl_int->acl_cnt) {
95194955Strasz		errno = EINVAL;
96194955Strasz		return (-1);
97194955Strasz	}
98194955Strasz
99194955Strasz	/* Make room for the new entry. */
100194955Strasz	for (i = acl_int->acl_cnt; i > offset; i--)
101194955Strasz		acl_int->acl_entry[i] = acl_int->acl_entry[i - 1];
102194955Strasz
103194955Strasz	acl_int->acl_cnt++;
104194955Strasz
105194955Strasz	*entry_p = &acl_int->acl_entry[offset];
106194955Strasz
107194955Strasz	(**entry_p).ae_tag  = ACL_UNDEFINED_TAG;
108194955Strasz	(**entry_p).ae_id   = ACL_UNDEFINED_ID;
109194955Strasz	(**entry_p).ae_perm = ACL_PERM_NONE;
110194955Strasz	(**entry_p).ae_entry_type = 0;
111194955Strasz	(**entry_p).ae_flags= 0;
112194955Strasz
113194955Strasz	(*acl_p)->ats_cur_entry = 0;
114194955Strasz
115194955Strasz	return (0);
116194955Strasz}
117194955Strasz
11875928Sjedgar/*
11975928Sjedgar * acl_get_entry() (23.4.14): returns an ACL entry from an ACL
12075928Sjedgar * indicated by entry_id.
12175928Sjedgar */
12274667Sjedgarint
12374667Sjedgaracl_get_entry(acl_t acl, int entry_id, acl_entry_t *entry_p)
12474667Sjedgar{
12575928Sjedgar	struct acl *acl_int;
12674667Sjedgar
12790781Sjedgar	if (acl == NULL) {
12875928Sjedgar		errno = EINVAL;
12990781Sjedgar		return (-1);
13075928Sjedgar	}
13175928Sjedgar	acl_int = &acl->ats_acl;
13275928Sjedgar
13375928Sjedgar	switch(entry_id) {
13475928Sjedgar	case ACL_FIRST_ENTRY:
13575928Sjedgar		acl->ats_cur_entry = 0;
13675928Sjedgar		/* PASSTHROUGH */
13775928Sjedgar	case ACL_NEXT_ENTRY:
13875928Sjedgar		if (acl->ats_cur_entry >= acl->ats_acl.acl_cnt)
13975928Sjedgar			return 0;
14075928Sjedgar		*entry_p = &acl_int->acl_entry[acl->ats_cur_entry++];
14190781Sjedgar		return (1);
14275928Sjedgar	}
14375928Sjedgar
14475928Sjedgar	errno = EINVAL;
14590781Sjedgar	return (-1);
14674667Sjedgar}
147