2 .\" Copyright (c) 2000, 2001, 2002 Robert N. M. Watson
3 .\" All rights reserved.
5 .\" This software was developed by Robert Watson for the TrustedBSD Project.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" $FreeBSD: src/lib/libc/posix1e/acl.3,v 1.22 2003/02/06 11:04:46 charnier Exp $
35 .Nd introduction to the POSIX.1e ACL security API
42 The system permits file systems to export Access Control Lists via the VFS, and
43 provides a library for userland access to and manipulation of these ACLs.
44 Not all file systems provide support for ACLs, and some may require that
45 ACL support be explicitly enabled by the administrator.
46 The library calls include routines to allocate, duplicate, retrieve, set,
47 and validate ACLs associated with file objects.
49 This implementation of the POSIX.1e library differs from the standard
50 in a number of non-portable ways in order to support the MacOS/Darwin
51 ACL semantic. Where possible, these differences are implemented using
52 the mechanisms provided in the standard for such extensions.
53 Where routines are non-standard, they are suffixed with _np to indicate that
54 they are not portable.
56 POSIX.1e describes a set of ACL manipulation routines to manage the
57 contents of ACLs, as well as their relationships with files; almost
58 all of these support routines are implemented.
60 Available functions, sorted by behavior, include:
61 .Bl -tag -width indent
63 This function is described in
65 and may be used to add permissions to a permission set.
66 .It Fn acl_clear_perms
67 This function is described in
68 .Xr acl_clear_perms 3 ,
69 and may be used to clear all permissions from a permission set.
71 This function is described in
72 .Xr acl_copy_entry 3 ,
73 and may be used to copy the contents of an ACL entry.
74 .It Fn acl_create_entry
75 This function is described in
76 .Xr acl_create_entry 3 ,
77 and may be used to create an empty entry in an ACL.
79 .Fn acl_delete_fd_np ,
80 .Fn acl_delete_file_np ,
81 .Fn acl_delete_link_np
83 These functions are described in
85 and may be used to delete ACLs from file system objects.
86 .It Fn acl_delete_entry
87 This function is described in
88 .Xr acl_delete_entry 3 ,
89 and may be used to delete an entry from an ACL.
90 .It Fn acl_delete_perm
91 This function is described in
92 .Xr acl_delete_perm 3 ,
93 and may be used to delete permissions from a permset.
95 This function is described in
97 and may be used to duplicate an ACL structure.
99 This function is described in
101 and may be used to free userland working ACL storage.
103 This function is described in
104 .Xr acl_from_text 3 ,
105 and may be used to convert a text-form ACL into working ACL state, if
106 the ACL has POSIX.1e semantics.
108 This function is described in
109 .Xr acl_get_entry 3 ,
110 and may be used to retrieve a designated ACL entry from an ACL.
117 These functions are described in
119 and may be used to retrieve ACLs from file system objects.
120 .It Fn acl_get_permset
121 This function is described in
122 .Xr acl_get_permset 3 ,
123 and may be used to retrieve a permset from an ACL entry.
124 .It Fn acl_get_qualifier
125 This function is described in
126 .Xr acl_get_qualifier 3 ,
127 and may be used to retrieve the qualifier from an ACL entry.
128 .It Fn acl_get_tag_type
129 This function is described in
130 .Xr acl_get_tag_type 3 ,
131 and may be used to retrieve the tag type from an ACL entry.
133 This function is described in
135 and may be used to allocate a fresh (empty) ACL structure.
142 These functions are described in
144 and may be used to assign an ACL to a file system object.
145 .It Fn acl_set_permset
146 This function is described in
147 .Xr acl_set_permset 3 ,
148 and may be used to set the permissions of an ACL entry from a permset.
149 .It Fn acl_set_qualifier
150 This function is described in
151 .Xr acl_set_qualifier 3 ,
152 and may be used to set the qualifier of an ACL.
153 .It Fn acl_set_tag_type
154 This function is described in
155 .Xr acl_set_tag_type 3 ,
156 and may be used to set the tag type of an ACL.
158 This function is described in
160 and may be used to generate a text-form of a POSIX.1e semantics ACL.
163 .Fn acl_valid_fd_np ,
164 .Fn acl_valid_file_np ,
165 .Fn acl_valid_link_np
167 These functions are described in
169 and may be used to validate an ACL as correct POSIX.1e-semantics, or
170 as appropriate for a particular file system object regardless of semantics.
173 Documentation of the internal kernel interfaces backing these calls may
176 The syscalls between the internal interfaces and the public library
177 routines may change over time, and as such are not documented.
178 They are not intended to be called directly without going through the
186 .Xr acl_clear_perms 3 ,
187 .Xr acl_copy_entry 3 ,
188 .Xr acl_create_entry 3 ,
189 .Xr acl_delete_entry 3 ,
190 .Xr acl_delete_perm 3 ,
193 .Xr acl_from_text 3 ,
195 .Xr acl_get_permset 3 ,
196 .Xr acl_get_qualifier 3 ,
197 .Xr acl_get_tag_type 3 ,
200 .Xr acl_set_permset 3 ,
201 .Xr acl_set_qualifier 3 ,
202 .Xr acl_set_tag_type 3 ,
207 .Sh UNSUPPORTED FUNCTIONS
208 .Xr acl_calc_mask 3 ,
209 .Fn acl_delete_def_file
211 POSIX.1e assigns security labels to all objects, extending the security
212 functionality described in POSIX.1.
213 These additional labels provide fine-grained discretionary access control,
214 fine-grained capabilities, and labels necessary for mandatory access
216 POSIX.2c describes a set of userland utilities for manipulating these
219 POSIX.1e is described in IEEE POSIX.1e draft 17.
221 This manpage is closely derived from the
224 .An Robert N M Watson
227 .An Robert N M Watson