xref: /freebsd/share/man/man9/acl.9 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
132900e82SRobert Watson.\"-
28a2d4f51SChris D. Faulhaber.\" Copyright (c) 1999-2001 Robert N. M. Watson
332900e82SRobert Watson.\" All rights reserved.
432900e82SRobert Watson.\"
532900e82SRobert Watson.\" Redistribution and use in source and binary forms, with or without
632900e82SRobert Watson.\" modification, are permitted provided that the following conditions
732900e82SRobert Watson.\" are met:
832900e82SRobert Watson.\" 1. Redistributions of source code must retain the above copyright
932900e82SRobert Watson.\"    notice, this list of conditions and the following disclaimer.
1032900e82SRobert Watson.\" 2. Redistributions in binary form must reproduce the above copyright
1132900e82SRobert Watson.\"    notice, this list of conditions and the following disclaimer in the
1232900e82SRobert Watson.\"    documentation and/or other materials provided with the distribution.
1332900e82SRobert Watson.\"
1432900e82SRobert Watson.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1532900e82SRobert Watson.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1632900e82SRobert Watson.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1732900e82SRobert Watson.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1832900e82SRobert Watson.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1932900e82SRobert Watson.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2032900e82SRobert Watson.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2132900e82SRobert Watson.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2232900e82SRobert Watson.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2332900e82SRobert Watson.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2432900e82SRobert Watson.\" SUCH DAMAGE.
2532900e82SRobert Watson.\"
26*28ffe927SXin LI.Dd September 4, 2015
2732900e82SRobert Watson.Dt ACL 9
28aa12cea2SUlrich Spörlein.Os
2932900e82SRobert Watson.Sh NAME
3032900e82SRobert Watson.Nm acl
3132900e82SRobert Watson.Nd virtual file system access control lists
3232900e82SRobert Watson.Sh SYNOPSIS
3332eef9aeSRuslan Ermilov.In sys/param.h
3432eef9aeSRuslan Ermilov.In sys/vnode.h
3532eef9aeSRuslan Ermilov.In sys/acl.h
3632900e82SRobert Watson.Pp
37cae2a33cSChris CostelloIn the kernel configuration file:
38cae2a33cSChris Costello.Cd "options UFS_ACL"
39cae2a33cSChris Costello.Sh DESCRIPTION
40cae2a33cSChris CostelloAccess control lists, or ACLs,
41cae2a33cSChris Costelloallow fine-grained specification of rights
42cae2a33cSChris Costellofor vnodes representing files and directories.
43cae2a33cSChris CostelloHowever, as there are a plethora of file systems with differing ACL semantics,
44cae2a33cSChris Costellothe vnode interface is aware only of the syntax of ACLs,
45cae2a33cSChris Costellorelying on the underlying file system to implement the details.
46cae2a33cSChris CostelloDepending on the underlying file system, each file or directory
47cae2a33cSChris Costellomay have zero or more ACLs associated with it, named using the
48cae2a33cSChris Costello.Fa type
49cae2a33cSChris Costellofield of the appropriate vnode ACL calls:
50cae2a33cSChris Costello.Xr VOP_ACLCHECK 9 ,
51cae2a33cSChris Costello.Xr VOP_GETACL 9 ,
52cae2a33cSChris Costelloand
53cae2a33cSChris Costello.Xr VOP_SETACL 9 .
54cae2a33cSChris Costello.Pp
55cae2a33cSChris CostelloCurrently, each ACL is represented in-kernel by a fixed-size
56cae2a33cSChris Costello.Vt acl
57cae2a33cSChris Costellostructure, defined as follows:
58cae2a33cSChris Costello.Bd -literal -offset indent
59cae2a33cSChris Costellostruct acl {
603f8cd45fSEdward Tomasz Napierala        unsigned int            acl_maxcnt;
613f8cd45fSEdward Tomasz Napierala        unsigned int            acl_cnt;
623f8cd45fSEdward Tomasz Napierala        int                     acl_spare[4];
63cae2a33cSChris Costello        struct acl_entry        acl_entry[ACL_MAX_ENTRIES];
6432900e82SRobert Watson};
65cae2a33cSChris Costello.Ed
66cae2a33cSChris Costello.Pp
67cae2a33cSChris CostelloAn ACL is constructed from a fixed size array of ACL entries,
68cae2a33cSChris Costelloeach of which consists of a set of permissions, principal namespace,
69cae2a33cSChris Costelloand principal identifier.
703f8cd45fSEdward Tomasz NapieralaIn this implementation, the
713f8cd45fSEdward Tomasz Napierala.Vt acl_maxcnt
723f8cd45fSEdward Tomasz Napieralafield is always set to
733f8cd45fSEdward Tomasz Napierala.Dv ACL_MAX_ENTRIES .
74cae2a33cSChris Costello.Pp
75cae2a33cSChris CostelloEach individual ACL entry is of the type
76cae2a33cSChris Costello.Vt acl_entry_t ,
77cae2a33cSChris Costellowhich is a structure with the following members:
783f640b03SRuslan Ermilov.Bl -tag -width 2n
79cae2a33cSChris Costello.It Vt acl_tag_t Va ae_tag
80cae2a33cSChris CostelloThe following is a list of definitions of ACL types
81cae2a33cSChris Costelloto be set in
82cae2a33cSChris Costello.Va ae_tag :
83cae2a33cSChris Costello.Pp
843f640b03SRuslan Ermilov.Bl -tag -width ".Dv ACL_UNDEFINED_FIELD" -offset indent -compact
85cae2a33cSChris Costello.It Dv ACL_UNDEFINED_FIELD
86cae2a33cSChris CostelloUndefined ACL type.
87cae2a33cSChris Costello.It Dv ACL_USER_OBJ
88cae2a33cSChris CostelloDiscretionary access rights for processes whose effective user ID
89cae2a33cSChris Costellomatches the user ID of the file's owner.
90cae2a33cSChris Costello.It Dv ACL_USER
91cae2a33cSChris CostelloDiscretionary access rights for processes whose effective user ID
92cae2a33cSChris Costellomatches the ACL entry qualifier.
93cae2a33cSChris Costello.It Dv ACL_GROUP_OBJ
94cae2a33cSChris CostelloDiscretionary access rights for processes whose effective group ID
95cae2a33cSChris Costelloor any supplemental groups
96cae2a33cSChris Costellomatch the group ID of the file's owner.
97cae2a33cSChris Costello.It Dv ACL_GROUP
98cae2a33cSChris CostelloDiscretionary access rights for processes whose effective group ID
99cae2a33cSChris Costelloor any supplemental groups
100cae2a33cSChris Costellomatch the ACL entry qualifier.
101cae2a33cSChris Costello.It Dv ACL_MASK
102cae2a33cSChris CostelloThe maximum discretionary access rights that can be granted
103cae2a33cSChris Costelloto a process in the file group class.
1043f8cd45fSEdward Tomasz NapieralaThis is only valid for POSIX.1e ACLs.
105cae2a33cSChris Costello.It Dv ACL_OTHER
106cae2a33cSChris CostelloDiscretionary access rights for processes not covered by any other ACL
107cae2a33cSChris Costelloentry.
1083f8cd45fSEdward Tomasz NapieralaThis is only valid for POSIX.1e ACLs.
109cae2a33cSChris Costello.It Dv ACL_OTHER_OBJ
110cae2a33cSChris CostelloSame as
111cae2a33cSChris Costello.Dv ACL_OTHER .
1123f8cd45fSEdward Tomasz Napierala.It Dv ACL_EVERYONE
1133f8cd45fSEdward Tomasz NapieralaDiscretionary access rights for all users.
1143f8cd45fSEdward Tomasz NapieralaThis is only valid for NFSv4 ACLs.
1153f8cd45fSEdward Tomasz Napierala.El
1163f8cd45fSEdward Tomasz Napierala.Pp
1173f8cd45fSEdward Tomasz NapieralaEach POSIX.1e ACL must contain exactly one
118cae2a33cSChris Costello.Dv ACL_USER_OBJ ,
119cae2a33cSChris Costelloone
120cae2a33cSChris Costello.Dv ACL_GROUP_OBJ ,
121cae2a33cSChris Costelloand one
122cae2a33cSChris Costello.Dv ACL_OTHER .
123cae2a33cSChris CostelloIf any of
124cae2a33cSChris Costello.Dv ACL_USER ,
125cae2a33cSChris Costello.Dv ACL_GROUP ,
126cae2a33cSChris Costelloor
127cae2a33cSChris Costello.Dv ACL_OTHER
128cae2a33cSChris Costelloare present, then exactly one
129cae2a33cSChris Costello.Dv ACL_MASK
130cae2a33cSChris Costelloentry should be present.
131cae2a33cSChris Costello.It Vt uid_t Va ae_id
132cae2a33cSChris CostelloThe ID of user for whom this ACL describes access permissions.
1333f8cd45fSEdward Tomasz NapieralaFor entries other than
1343f8cd45fSEdward Tomasz Napierala.Dv ACL_USER
1353f8cd45fSEdward Tomasz Napieralaand
1363f8cd45fSEdward Tomasz Napierala.Dv ACL_GROUP ,
1373f8cd45fSEdward Tomasz Napieralathis field should be set to
1383f8cd45fSEdward Tomasz Napierala.Dv ACL_UNDEFINED_ID .
139cae2a33cSChris Costello.It Vt acl_perm_t Va ae_perm
140cae2a33cSChris CostelloThis field defines what kind of access the process matching this ACL has
141cae2a33cSChris Costellofor accessing the associated file.
1423f8cd45fSEdward Tomasz NapieralaFor POSIX.1e ACLs, the following are valid:
1433f8cd45fSEdward Tomasz Napierala.Bl -tag -width ".Dv ACL_WRITE_NAMED_ATTRS"
144cae2a33cSChris Costello.It Dv ACL_EXECUTE
145cae2a33cSChris CostelloThe process may execute the associated file.
146cae2a33cSChris Costello.It Dv ACL_WRITE
147cae2a33cSChris CostelloThe process may write to the associated file.
148cae2a33cSChris Costello.It Dv ACL_READ
149cae2a33cSChris CostelloThe process may read from the associated file.
150cae2a33cSChris Costello.It Dv ACL_PERM_NONE
151cae2a33cSChris CostelloThe process has no read, write or execute permissions
152cae2a33cSChris Costelloto the associated file.
153cae2a33cSChris Costello.El
1543f8cd45fSEdward Tomasz Napierala.Pp
1553f8cd45fSEdward Tomasz NapieralaFor NFSv4 ACLs, the following are valid:
1563f8cd45fSEdward Tomasz Napierala.Bl -tag -width ".Dv ACL_WRITE_NAMED_ATTRS"
1573f8cd45fSEdward Tomasz Napierala.It Dv ACL_READ_DATA
1583f8cd45fSEdward Tomasz NapieralaThe process may read from the associated file.
1593f8cd45fSEdward Tomasz Napierala.It Dv ACL_LIST_DIRECTORY
1603f8cd45fSEdward Tomasz NapieralaSame as
1613f8cd45fSEdward Tomasz Napierala.Dv ACL_READ_DATA .
1623f8cd45fSEdward Tomasz Napierala.It Dv ACL_WRITE_DATA
1633f8cd45fSEdward Tomasz NapieralaThe process may write to the associated file.
1643f8cd45fSEdward Tomasz Napierala.It Dv ACL_ADD_FILE
1653f8cd45fSEdward Tomasz NapieralaSame as
1663f8cd45fSEdward Tomasz Napierala.Dv ACL_ACL_WRITE_DATA .
1673f8cd45fSEdward Tomasz Napierala.It Dv ACL_APPEND_DATA
1683f8cd45fSEdward Tomasz Napierala.It Dv ACL_ADD_SUBDIRECTORY
1693f8cd45fSEdward Tomasz NapieralaSame as
1703f8cd45fSEdward Tomasz Napierala.Dv ACL_APPEND_DATA .
1713f8cd45fSEdward Tomasz Napierala.It Dv ACL_READ_NAMED_ATTRS
1723f8cd45fSEdward Tomasz NapieralaIgnored.
1733f8cd45fSEdward Tomasz Napierala.It Dv ACL_WRITE_NAMED_ATTRS
1743f8cd45fSEdward Tomasz NapieralaIgnored.
1753f8cd45fSEdward Tomasz Napierala.It Dv ACL_EXECUTE
1763f8cd45fSEdward Tomasz NapieralaThe process may execute the associated file.
1773f8cd45fSEdward Tomasz Napierala.It Dv ACL_DELETE_CHILD
1783f8cd45fSEdward Tomasz Napierala.It Dv ACL_READ_ATTRIBUTES
1793f8cd45fSEdward Tomasz Napierala.It Dv ACL_WRITE_ATTRIBUTES
1803f8cd45fSEdward Tomasz Napierala.It Dv ACL_DELETE
1813f8cd45fSEdward Tomasz Napierala.It Dv ACL_READ_ACL
1823f8cd45fSEdward Tomasz Napierala.It Dv ACL_WRITE_ACL
1833f8cd45fSEdward Tomasz Napierala.It Dv ACL_WRITE_OWNER
1843f8cd45fSEdward Tomasz Napierala.It Dv ACL_SYNCHRONIZE
1853f8cd45fSEdward Tomasz NapieralaIgnored.
1863f8cd45fSEdward Tomasz Napierala.El
1873f8cd45fSEdward Tomasz Napierala.It Vt acl_entry_type_t Va ae_entry_type
1883f8cd45fSEdward Tomasz NapieralaThis field defines the type of NFSv4 ACL entry.
1893f8cd45fSEdward Tomasz NapieralaIt is not used with POSIX.1e ACLs.
1903f8cd45fSEdward Tomasz NapieralaThe following values are valid:
1913f8cd45fSEdward Tomasz Napierala.Bl -tag -width ".Dv ACL_WRITE_NAMED_ATTRS"
1923f8cd45fSEdward Tomasz Napierala.It Dv ACL_ENTRY_TYPE_ALLOW
1933f8cd45fSEdward Tomasz Napierala.It Dv ACL_ENTRY_TYPE_DENY
1943f8cd45fSEdward Tomasz Napierala.El
1953f8cd45fSEdward Tomasz Napierala.It Vt acl_flag_t Va ae_flags
1963f8cd45fSEdward Tomasz NapieralaThis field defines the inheritance flags of NFSv4 ACL entry.
1973f8cd45fSEdward Tomasz NapieralaIt is not used with POSIX.1e ACLs.
1983f8cd45fSEdward Tomasz NapieralaThe following values are valid:
1993f8cd45fSEdward Tomasz Napierala.Bl -tag -width ".Dv ACL_ENTRY_DIRECTORY_INHERIT"
2003f8cd45fSEdward Tomasz Napierala.It Dv ACL_ENTRY_FILE_INHERIT
2013f8cd45fSEdward Tomasz Napierala.It Dv ACL_ENTRY_DIRECTORY_INHERIT
2024a486705SEdward Tomasz Napierala.It Dv ACL_ENTRY_NO_PROPAGATE_INHERIT
2033f8cd45fSEdward Tomasz Napierala.It Dv ACL_ENTRY_INHERIT_ONLY
204*28ffe927SXin LI.It Dv ACL_ENTRY_INHERITED
2053f8cd45fSEdward Tomasz Napierala.El
206*28ffe927SXin LIThe
207*28ffe927SXin LI.Dv ACL_ENTRY_INHERITED
208*28ffe927SXin LIflag is set on an ACE that has been inherited from its parent.
209*28ffe927SXin LIIt may also be set programmatically, and is valid on both files
210*28ffe927SXin LIand directories.
211cae2a33cSChris Costello.El
21232900e82SRobert Watson.Sh SEE ALSO
21367ea1c24SChris Costello.Xr acl 3 ,
2141e9469d1SChristian Brueffer.Xr vaccess 9 ,
215a9315ddeSEdward Tomasz Napierala.Xr vaccess_acl_nfs4 9 ,
21667ea1c24SChris Costello.Xr vaccess_acl_posix1e 9 ,
21732900e82SRobert Watson.Xr VFS 9 ,
21832900e82SRobert Watson.Xr VOP_ACLCHECK 9 ,
21932900e82SRobert Watson.Xr VOP_GETACL 9 ,
2206fe89339SBen Smithurst.Xr VOP_SETACL 9
22132900e82SRobert Watson.Sh AUTHORS
222571dba6eSHiten PandyaThis manual page was written by
22332900e82SRobert Watson.An Robert Watson .
224