acl_support.h revision 75928
1184588Sdfr/*-
2184588Sdfr * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson
3184588Sdfr * All rights reserved.
4184588Sdfr *
5184588Sdfr * Redistribution and use in source and binary forms, with or without
6184588Sdfr * modification, are permitted provided that the following conditions
7184588Sdfr * are met:
8184588Sdfr * 1. Redistributions of source code must retain the above copyright
9184588Sdfr *    notice, this list of conditions and the following disclaimer.
10184588Sdfr * 2. Redistributions in binary form must reproduce the above copyright
11184588Sdfr *    notice, this list of conditions and the following disclaimer in the
12184588Sdfr *    documentation and/or other materials provided with the distribution.
13184588Sdfr *
14184588Sdfr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15184588Sdfr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16184588Sdfr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17184588Sdfr * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18184588Sdfr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19184588Sdfr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20184588Sdfr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21184588Sdfr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22184588Sdfr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23184588Sdfr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24184588Sdfr * SUCH DAMAGE.
25184588Sdfr *
26184588Sdfr * $FreeBSD: head/lib/libc/posix1e/acl_support.h 75928 2001-04-24 22:45:41Z jedgar $
27184588Sdfr */
28184588Sdfr/*
29184588Sdfr * Support functionality for the POSIX.1e ACL interface
30184588Sdfr * These calls are intended only to be called within the library.
31184588Sdfr */
32184588Sdfr#ifndef _ACL_SUPPORT_H
33184588Sdfr#define _ACL_SUPPORT_H
34184588Sdfr
35184588Sdfr#define _POSIX1E_ACL_STRING_PERM_MAXSIZE 3       /* read, write, exec */
36184588Sdfr
37184588Sdfrint	_posix1e_acl_check(acl_t acl);
38184588Sdfrint	_posix1e_acl_sort(acl_t acl);
39184588Sdfrint	_posix1e_acl(acl_t acl, acl_type_t type);
40184588Sdfrint	_posix1e_acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len,
41184588Sdfr	    char *buf);
42184588Sdfrint	_posix1e_acl_name_to_id(acl_tag_t tag, char *name, uid_t *id);
43184588Sdfrint	_posix1e_acl_perm_to_string(acl_perm_t perm, ssize_t buf_len,
44184588Sdfr	    char *buf);
45184588Sdfrint	_posix1e_acl_string_to_perm(char *string, acl_perm_t *perm);
46184588Sdfrint	_posix1e_acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id,
47184588Sdfr	    acl_perm_t perm);
48184588Sdfr
49184588Sdfr#endif
50184588Sdfr