acl_support.h revision 75928
1107120Sjulian/*-
2107120Sjulian * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson
3107120Sjulian * All rights reserved.
4107120Sjulian *
5107120Sjulian * Redistribution and use in source and binary forms, with or without
6107120Sjulian * modification, are permitted provided that the following conditions
7107120Sjulian * are met:
8107120Sjulian * 1. Redistributions of source code must retain the above copyright
9107120Sjulian *    notice, this list of conditions and the following disclaimer.
10107120Sjulian * 2. Redistributions in binary form must reproduce the above copyright
11107120Sjulian *    notice, this list of conditions and the following disclaimer in the
12107120Sjulian *    documentation and/or other materials provided with the distribution.
13107120Sjulian *
14107120Sjulian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15107120Sjulian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16107120Sjulian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17107120Sjulian * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18107120Sjulian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19107120Sjulian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20107120Sjulian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21107120Sjulian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22107120Sjulian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23107120Sjulian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24107120Sjulian * SUCH DAMAGE.
25107120Sjulian *
26107120Sjulian * $FreeBSD: head/lib/libc/posix1e/acl_support.h 75928 2001-04-24 22:45:41Z jedgar $
27107120Sjulian */
28121054Semax/*
29107120Sjulian * Support functionality for the POSIX.1e ACL interface
30107120Sjulian * These calls are intended only to be called within the library.
31107120Sjulian */
32121054Semax#ifndef _ACL_SUPPORT_H
33107120Sjulian#define _ACL_SUPPORT_H
34107120Sjulian
35107120Sjulian#define _POSIX1E_ACL_STRING_PERM_MAXSIZE 3       /* read, write, exec */
36107120Sjulian
37107120Sjulianint	_posix1e_acl_check(acl_t acl);
38128079Semaxint	_posix1e_acl_sort(acl_t acl);
39107120Sjulianint	_posix1e_acl(acl_t acl, acl_type_t type);
40107120Sjulianint	_posix1e_acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len,
41107120Sjulian	    char *buf);
42107120Sjulianint	_posix1e_acl_name_to_id(acl_tag_t tag, char *name, uid_t *id);
43107120Sjulianint	_posix1e_acl_perm_to_string(acl_perm_t perm, ssize_t buf_len,
44107120Sjulian	    char *buf);
45162529Semaxint	_posix1e_acl_string_to_perm(char *string, acl_perm_t *perm);
46107120Sjulianint	_posix1e_acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id,
47107120Sjulian	    acl_perm_t perm);
48107120Sjulian
49107120Sjulian#endif
50107120Sjulian