1a889d1fbSRobert Watson.\"- 2963b8cdcSRobert Watson.\" Copyright (c) 2000, 2001, 2002 Robert N. M. Watson 3a889d1fbSRobert Watson.\" All rights reserved. 4a889d1fbSRobert Watson.\" 56394f703SRobert Watson.\" This software was developed by Robert Watson for the TrustedBSD Project. 66394f703SRobert Watson.\" 7a889d1fbSRobert Watson.\" Redistribution and use in source and binary forms, with or without 8a889d1fbSRobert Watson.\" modification, are permitted provided that the following conditions 9a889d1fbSRobert Watson.\" are met: 10a889d1fbSRobert Watson.\" 1. Redistributions of source code must retain the above copyright 11a889d1fbSRobert Watson.\" notice, this list of conditions and the following disclaimer. 12a889d1fbSRobert Watson.\" 2. Redistributions in binary form must reproduce the above copyright 13a889d1fbSRobert Watson.\" notice, this list of conditions and the following disclaimer in the 14a889d1fbSRobert Watson.\" documentation and/or other materials provided with the distribution. 15a889d1fbSRobert Watson.\" 16a889d1fbSRobert Watson.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17a889d1fbSRobert Watson.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18a889d1fbSRobert Watson.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19a889d1fbSRobert Watson.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20a889d1fbSRobert Watson.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21a889d1fbSRobert Watson.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22a889d1fbSRobert Watson.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23a889d1fbSRobert Watson.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24a889d1fbSRobert Watson.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25a889d1fbSRobert Watson.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26a889d1fbSRobert Watson.\" SUCH DAMAGE. 27a889d1fbSRobert Watson.\" 28*b653faaaSDag-Erling Smørgrav.Dd September 21, 2023 29a889d1fbSRobert Watson.Dt ACL 3 30a307d598SRuslan Ermilov.Os 31a889d1fbSRobert Watson.Sh NAME 32c32381adSMike Pritchard.Nm acl 3362bf3533SEdward Tomasz Napierala.Nd introduction to the POSIX.1e/NFSv4 ACL security API 34f75b050cSAlexey Zelkin.Sh LIBRARY 3531acc836SRuslan Ermilov.Lb libc 36a889d1fbSRobert Watson.Sh SYNOPSIS 3732eef9aeSRuslan Ermilov.In sys/types.h 3832eef9aeSRuslan Ermilov.In sys/acl.h 39a889d1fbSRobert Watson.Sh DESCRIPTION 40a21c3aa0SRobert Watson.Fx 41a21c3aa0SRobert Watsonpermits file systems to export Access Control Lists via the VFS, and 42a21c3aa0SRobert Watsonprovides a library for userland access to and manipulation of these ACLs. 4362bf3533SEdward Tomasz Napierala.Fx 4462bf3533SEdward Tomasz Napieralasupports POSIX.1e and NFSv4 ACLs, but 4562bf3533SEdward Tomasz Napieralanot all file systems provide support for ACLs, and some may require that 4657bd0fc6SJens SchweikhardtACL support be explicitly enabled by the administrator. 47a21c3aa0SRobert WatsonThe library calls include routines to allocate, duplicate, retrieve, set, 48a21c3aa0SRobert Watsonand validate ACLs associated with file objects. 49a889d1fbSRobert WatsonAs well as the POSIX.1e routines, there are a number of non-portable 5062bf3533SEdward Tomasz Napieralaextensions defined that allow for ACL semantics alternative to 5162bf3533SEdward Tomasz NapieralaPOSIX.1e, such as NFSv4. 52a21c3aa0SRobert WatsonWhere routines are non-standard, they are suffixed with _np to indicate that 53a889d1fbSRobert Watsonthey are not portable. 5442635956SRuslan Ermilov.Pp 55a889d1fbSRobert WatsonPOSIX.1e describes a set of ACL manipulation routines to manage the 56a21c3aa0SRobert Watsoncontents of ACLs, as well as their relationships with files; almost 57a21c3aa0SRobert Watsonall of these support routines are implemented in 58a21c3aa0SRobert Watson.Fx . 5942635956SRuslan Ermilov.Pp 60a889d1fbSRobert WatsonAvailable functions, sorted by behavior, include: 61336ee39aSRuslan Ermilov.Bl -tag -width indent 62aa015c8eSEdward Tomasz Napierala.It Fn acl_add_flag_np 63aa015c8eSEdward Tomasz NapieralaThis function is described in 64aa015c8eSEdward Tomasz Napierala.Xr acl_add_flag_np 3 , 65aa015c8eSEdward Tomasz Napieralaand may be used to add flags to a flagset. 66336ee39aSRuslan Ermilov.It Fn acl_add_perm 676822f9dfSChris D. FaulhaberThis function is described in 686822f9dfSChris D. Faulhaber.Xr acl_add_perm 3 , 696822f9dfSChris D. Faulhaberand may be used to add permissions to a permission set. 70336ee39aSRuslan Ermilov.It Fn acl_calc_mask 716822f9dfSChris D. FaulhaberThis function is described in 726822f9dfSChris D. Faulhaber.Xr acl_calc_mask 3 , 736822f9dfSChris D. Faulhaberand may be used to calculate and set the permissions associated with 74336ee39aSRuslan Ermilovthe 75336ee39aSRuslan Ermilov.Dv ACL_MASK 76336ee39aSRuslan Ermiloventry. 77aa015c8eSEdward Tomasz Napierala.It Fn acl_clear_flags_np 78aa015c8eSEdward Tomasz NapieralaThis function is described in 79aa015c8eSEdward Tomasz Napierala.Xr acl_clear_flags_np 3 , 80aa015c8eSEdward Tomasz Napieralaand may be used to clear all flags from a flagset. 81336ee39aSRuslan Ermilov.It Fn acl_clear_perms 826822f9dfSChris D. FaulhaberThis function is described in 836822f9dfSChris D. Faulhaber.Xr acl_clear_perms 3 , 846822f9dfSChris D. Faulhaberand may be used to clear all permissions from a permission set. 85336ee39aSRuslan Ermilov.It Fn acl_copy_entry 866822f9dfSChris D. FaulhaberThis function is described in 876822f9dfSChris D. Faulhaber.Xr acl_copy_entry 3 , 886822f9dfSChris D. Faulhaberand may be used to copy the contents of an ACL entry. 89aa015c8eSEdward Tomasz Napierala.It Xo 90aa015c8eSEdward Tomasz Napierala.Fn acl_create_entry , 91aa015c8eSEdward Tomasz Napierala.Fn acl_create_entry_np 92aa015c8eSEdward Tomasz Napierala.Xc 93aa015c8eSEdward Tomasz NapieralaThese functions are described in 946822f9dfSChris D. Faulhaber.Xr acl_create_entry 3 , 956822f9dfSChris D. Faulhaberand may be used to create an empty entry in an ACL. 96336ee39aSRuslan Ermilov.It Xo 97a889d1fbSRobert Watson.Fn acl_delete_def_file , 986394f703SRobert Watson.Fn acl_delete_def_link_np , 996394f703SRobert Watson.Fn acl_delete_fd_np , 100a889d1fbSRobert Watson.Fn acl_delete_file_np , 1016394f703SRobert Watson.Fn acl_delete_link_np 102336ee39aSRuslan Ermilov.Xc 103a889d1fbSRobert WatsonThese functions are described in 104a889d1fbSRobert Watson.Xr acl_delete 3 , 105a889d1fbSRobert Watsonand may be used to delete ACLs from file system objects. 106aa015c8eSEdward Tomasz Napierala.It Xo 107aa015c8eSEdward Tomasz Napierala.Fn acl_delete_entry , 108aa015c8eSEdward Tomasz Napierala.Fn acl_delete_entry_np , 109aa015c8eSEdward Tomasz Napierala.Xc 110aa015c8eSEdward Tomasz NapieralaThis functions are described in 1116822f9dfSChris D. Faulhaber.Xr acl_delete_entry 3 , 1126822f9dfSChris D. Faulhaberand may be used to delete an entry from an ACL. 113aa015c8eSEdward Tomasz Napierala.It Fn acl_delete_flag_np 114aa015c8eSEdward Tomasz NapieralaThis function is described in 115aa015c8eSEdward Tomasz Napierala.Xr acl_delete_flag_np 3 , 116aa015c8eSEdward Tomasz Napieralaand may be used to delete flags from a flagset. 117336ee39aSRuslan Ermilov.It Fn acl_delete_perm 1186822f9dfSChris D. FaulhaberThis function is described in 1196822f9dfSChris D. Faulhaber.Xr acl_delete_perm 3 , 1206822f9dfSChris D. Faulhaberand may be used to delete permissions from a permset. 121336ee39aSRuslan Ermilov.It Fn acl_dup 1226822f9dfSChris D. FaulhaberThis function is described in 1236822f9dfSChris D. Faulhaber.Xr acl_dup 3 , 1246822f9dfSChris D. Faulhaberand may be used to duplicate an ACL structure. 125336ee39aSRuslan Ermilov.It Fn acl_free 126a889d1fbSRobert WatsonThis function is described in 127a889d1fbSRobert Watson.Xr acl_free 3 , 128a889d1fbSRobert Watsonand may be used to free userland working ACL storage. 129336ee39aSRuslan Ermilov.It Fn acl_from_text 130a889d1fbSRobert WatsonThis function is described in 131a889d1fbSRobert Watson.Xr acl_from_text 3 , 132a889d1fbSRobert Watsonand may be used to convert a text-form ACL into working ACL state, if 133b372d0d8SEdward Tomasz Napieralathe ACL has POSIX.1e or NFSv4 semantics. 134ce157d5cSEdward Tomasz Napierala.It Fn acl_get_brand_np 135ce157d5cSEdward Tomasz NapieralaThis function is described in 136ce157d5cSEdward Tomasz Napierala.Xr acl_get_brand_np 3 137ce157d5cSEdward Tomasz Napieralaand may be used to determine whether the ACL has POSIX.1e or NFSv4 semantics. 13821aaa49cSChris D. Faulhaber.It Fn acl_get_entry 13921aaa49cSChris D. FaulhaberThis function is described in 14021aaa49cSChris D. Faulhaber.Xr acl_get_entry 3 , 14121aaa49cSChris D. Faulhaberand may be used to retrieve a designated ACL entry from an ACL. 142336ee39aSRuslan Ermilov.It Xo 143a889d1fbSRobert Watson.Fn acl_get_fd , 1446394f703SRobert Watson.Fn acl_get_fd_np , 1456394f703SRobert Watson.Fn acl_get_file , 1466394f703SRobert Watson.Fn acl_get_link_np 147336ee39aSRuslan Ermilov.Xc 148a889d1fbSRobert WatsonThese functions are described in 149a889d1fbSRobert Watson.Xr acl_get 3 , 150a889d1fbSRobert Watsonand may be used to retrieve ACLs from file system objects. 151aa015c8eSEdward Tomasz Napierala.It Fn acl_get_entry_type_np 152aa015c8eSEdward Tomasz NapieralaThis function is described in 153aa015c8eSEdward Tomasz Napierala.Xr acl_get_entry_type_np 3 , 154aa015c8eSEdward Tomasz Napieralaand may be used to retrieve an ACL type from an ACL entry. 155aa015c8eSEdward Tomasz Napierala.It Fn acl_get_flagset_np 156aa015c8eSEdward Tomasz NapieralaThis function is described in 157aa015c8eSEdward Tomasz Napierala.Xr acl_get_flagset_np 3 , 158aa015c8eSEdward Tomasz Napieralaand may be used to retrieve a flagset from an ACL entry. 15920c61a7cSKyle Evans.It Fn acl_get_perm_np 16020c61a7cSKyle EvansThis function is described in 16120c61a7cSKyle Evans.Xr acl_get_perm_np 3 , 16220c61a7cSKyle Evansand may be used to check if a permission is set in a permset. 163336ee39aSRuslan Ermilov.It Fn acl_get_permset 1646822f9dfSChris D. FaulhaberThis function is described in 1656822f9dfSChris D. Faulhaber.Xr acl_get_permset 3 , 1666822f9dfSChris D. Faulhaberand may be used to retrieve a permset from an ACL entry. 167336ee39aSRuslan Ermilov.It Fn acl_get_qualifier 1686822f9dfSChris D. FaulhaberThis function is described in 1696822f9dfSChris D. Faulhaber.Xr acl_get_qualifier 3 , 1706822f9dfSChris D. Faulhaberand may be used to retrieve the qualifier from an ACL entry. 171336ee39aSRuslan Ermilov.It Fn acl_get_tag_type 1726822f9dfSChris D. FaulhaberThis function is described in 1736822f9dfSChris D. Faulhaber.Xr acl_get_tag_type 3 , 1746822f9dfSChris D. Faulhaberand may be used to retrieve the tag type from an ACL entry. 175336ee39aSRuslan Ermilov.It Fn acl_init 176a889d1fbSRobert WatsonThis function is described in 177a889d1fbSRobert Watson.Xr acl_init 3 , 178a889d1fbSRobert Watsonand may be used to allocate a fresh (empty) ACL structure. 179aa015c8eSEdward Tomasz Napierala.It Fn acl_is_trivial_np 180aa015c8eSEdward Tomasz NapieralaThis function is described in 181aa015c8eSEdward Tomasz Napierala.Xr acl_is_trivial_np 3 , 182aa015c8eSEdward Tomasz Napieralaand may be used to find out whether ACL is trivial. 183336ee39aSRuslan Ermilov.It Xo 184a889d1fbSRobert Watson.Fn acl_set_fd , 1856394f703SRobert Watson.Fn acl_set_fd_np , 1866394f703SRobert Watson.Fn acl_set_file , 1876394f703SRobert Watson.Fn acl_set_link_np 188336ee39aSRuslan Ermilov.Xc 189c32381adSMike PritchardThese functions are described in 190a889d1fbSRobert Watson.Xr acl_set 3 , 191a889d1fbSRobert Watsonand may be used to assign an ACL to a file system object. 192aa015c8eSEdward Tomasz Napierala.It Fn acl_set_entry_type_np 193aa015c8eSEdward Tomasz NapieralaThis function is described in 194aa015c8eSEdward Tomasz Napierala.Xr acl_set_entry_type_np 3 , 195aa015c8eSEdward Tomasz Napieralaand may be used to set the ACL type of an ACL entry. 196aa015c8eSEdward Tomasz Napierala.It Fn acl_set_flagset_np 197aa015c8eSEdward Tomasz NapieralaThis function is described in 198aa015c8eSEdward Tomasz Napierala.Xr acl_set_flagset_np 3 , 199aa015c8eSEdward Tomasz Napieralaand may be used to set the flags of an ACL entry from a flagset. 200336ee39aSRuslan Ermilov.It Fn acl_set_permset 2016822f9dfSChris D. FaulhaberThis function is described in 2026822f9dfSChris D. Faulhaber.Xr acl_set_permset 3 , 2036822f9dfSChris D. Faulhaberand may be used to set the permissions of an ACL entry from a permset. 204336ee39aSRuslan Ermilov.It Fn acl_set_qualifier 2056822f9dfSChris D. FaulhaberThis function is described in 2066822f9dfSChris D. Faulhaber.Xr acl_set_qualifier 3 , 2076822f9dfSChris D. Faulhaberand may be used to set the qualifier of an ACL. 208336ee39aSRuslan Ermilov.It Fn acl_set_tag_type 2096822f9dfSChris D. FaulhaberThis function is described in 2106822f9dfSChris D. Faulhaber.Xr acl_set_tag_type 3 , 2116822f9dfSChris D. Faulhaberand may be used to set the tag type of an ACL. 212aa015c8eSEdward Tomasz Napierala.It Fn acl_strip_np 213a889d1fbSRobert WatsonThis function is described in 214de19f226SEdward Tomasz Napierala.Xr acl_strip_np 3 , 215aa015c8eSEdward Tomasz Napieralaand may be used to remove extended entries from an ACL. 216aa015c8eSEdward Tomasz Napierala.It Xo 217aa015c8eSEdward Tomasz Napierala.Fn acl_to_text , 218aa015c8eSEdward Tomasz Napierala.Fn acl_to_text_np 219aa015c8eSEdward Tomasz Napierala.Xc 220aa015c8eSEdward Tomasz NapieralaThese functions are described in 221a889d1fbSRobert Watson.Xr acl_to_text 3 , 222b372d0d8SEdward Tomasz Napieralaand may be used to generate a text-form of a POSIX.1e or NFSv4 semantics ACL. 223336ee39aSRuslan Ermilov.It Xo 224a889d1fbSRobert Watson.Fn acl_valid , 2256394f703SRobert Watson.Fn acl_valid_fd_np , 226a889d1fbSRobert Watson.Fn acl_valid_file_np , 2276394f703SRobert Watson.Fn acl_valid_link_np 228336ee39aSRuslan Ermilov.Xc 229336ee39aSRuslan ErmilovThese functions are described in 230a889d1fbSRobert Watson.Xr acl_valid 3 , 231a889d1fbSRobert Watsonand may be used to validate an ACL as correct POSIX.1e-semantics, or 232a889d1fbSRobert Watsonas appropriate for a particular file system object regardless of semantics. 233336ee39aSRuslan Ermilov.El 23442635956SRuslan Ermilov.Pp 235a889d1fbSRobert WatsonDocumentation of the internal kernel interfaces backing these calls may 236a889d1fbSRobert Watsonbe found in 237a889d1fbSRobert Watson.Xr acl 9 . 238a889d1fbSRobert WatsonThe syscalls between the internal interfaces and the public library 239a21c3aa0SRobert Watsonroutines may change over time, and as such are not documented. 240a21c3aa0SRobert WatsonThey are not intended to be called directly without going through the 241a21c3aa0SRobert Watsonlibrary. 2426822f9dfSChris D. Faulhaber.Sh SEE ALSO 243963b8cdcSRobert Watson.Xr getfacl 1 , 244963b8cdcSRobert Watson.Xr setfacl 1 , 245aa015c8eSEdward Tomasz Napierala.Xr acl_add_flag_np 3 , 2466822f9dfSChris D. Faulhaber.Xr acl_add_perm 3 , 2476822f9dfSChris D. Faulhaber.Xr acl_calc_mask 3 , 248aa015c8eSEdward Tomasz Napierala.Xr acl_clear_flags_np 3 , 2496822f9dfSChris D. Faulhaber.Xr acl_clear_perms 3 , 2506822f9dfSChris D. Faulhaber.Xr acl_copy_entry 3 , 2516822f9dfSChris D. Faulhaber.Xr acl_create_entry 3 , 2526822f9dfSChris D. Faulhaber.Xr acl_delete_entry 3 , 253aa015c8eSEdward Tomasz Napierala.Xr acl_delete_flag_np 3 , 2546822f9dfSChris D. Faulhaber.Xr acl_delete_perm 3 , 2556822f9dfSChris D. Faulhaber.Xr acl_dup 3 , 2566822f9dfSChris D. Faulhaber.Xr acl_free 3 , 2576822f9dfSChris D. Faulhaber.Xr acl_from_text 3 , 2586822f9dfSChris D. Faulhaber.Xr acl_get 3 , 259ce157d5cSEdward Tomasz Napierala.Xr acl_get_brand_np 3 , 260aa015c8eSEdward Tomasz Napierala.Xr acl_get_entry_type_np 3 , 261aa015c8eSEdward Tomasz Napierala.Xr acl_get_flagset_np 3 , 26220c61a7cSKyle Evans.Xr acl_get_perm_np 3 , 2636822f9dfSChris D. Faulhaber.Xr acl_get_permset 3 , 2646822f9dfSChris D. Faulhaber.Xr acl_get_qualifier 3 , 2656822f9dfSChris D. Faulhaber.Xr acl_get_tag_type 3 , 2666822f9dfSChris D. Faulhaber.Xr acl_init 3 , 267aa015c8eSEdward Tomasz Napierala.Xr acl_is_trivial_np 3 , 2686822f9dfSChris D. Faulhaber.Xr acl_set 3 , 269aa015c8eSEdward Tomasz Napierala.Xr acl_set_entry_type_np 3 , 270aa015c8eSEdward Tomasz Napierala.Xr acl_set_flagset_np 3 , 2716822f9dfSChris D. Faulhaber.Xr acl_set_permset 3 , 2726822f9dfSChris D. Faulhaber.Xr acl_set_qualifier 3 , 2736822f9dfSChris D. Faulhaber.Xr acl_set_tag_type 3 , 274aa015c8eSEdward Tomasz Napierala.Xr acl_strip_np 3 , 2756822f9dfSChris D. Faulhaber.Xr acl_to_text 3 , 2766822f9dfSChris D. Faulhaber.Xr acl_valid 3 , 2775521ff5aSRuslan Ermilov.Xr posix1e 3 , 2785521ff5aSRuslan Ermilov.Xr acl 9 2796822f9dfSChris D. Faulhaber.Sh STANDARDS 280a889d1fbSRobert WatsonPOSIX.1e assigns security labels to all objects, extending the security 281a21c3aa0SRobert Watsonfunctionality described in POSIX.1. 282a21c3aa0SRobert WatsonThese additional labels provide fine-grained discretionary access control, 283a21c3aa0SRobert Watsonfine-grained capabilities, and labels necessary for mandatory access 284a21c3aa0SRobert Watsoncontrol. 285a21c3aa0SRobert WatsonPOSIX.2c describes a set of userland utilities for manipulating these 286a21c3aa0SRobert Watsonlabels. 2876822f9dfSChris D. Faulhaber.Pp 288a21c3aa0SRobert WatsonPOSIX.1e is described in IEEE POSIX.1e draft 17. 289a889d1fbSRobert Watson.Sh HISTORY 290c32381adSMike PritchardPOSIX.1e support was introduced in 291a21c3aa0SRobert Watson.Fx 4.0 ; 292a21c3aa0SRobert Watson.Fx 5.0 293a21c3aa0SRobert Watsonwas the first version to include a complete ACL implementation based 294963b8cdcSRobert Watsonon extended attributes for the UFS and UFS2 file systems. 29562bf3533SEdward Tomasz NapieralaNFSv4 ACL support was introduced in 29662bf3533SEdward Tomasz Napierala.Fx 8.0 . 297963b8cdcSRobert Watson.Pp 298d6498251SPhilippe CharnierThe 299963b8cdcSRobert Watson.Xr getfacl 1 300963b8cdcSRobert Watsonand 301963b8cdcSRobert Watson.Xr setfacl 1 302d6498251SPhilippe Charnierutilities describe the user tools that permit direct manipulation of complete 303d6498251SPhilippe Charnierfile ACLs. 304a889d1fbSRobert Watson.Sh AUTHORS 305c32381adSMike Pritchard.An Robert N M Watson 306