]> git.saurik.com Git - apple/libc.git/blame - posix1e/acl_get_entry.3
Libc-391.5.22.tar.gz
[apple/libc.git] / posix1e / acl_get_entry.3
CommitLineData
3d9156a7
A
1.\"-
2.\" Copyright (c) 2001 Chris D. Faulhaber
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR THE VOICES IN HIS HEAD BE
18.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24.\" POSSIBILITY OF SUCH DAMAGE.
25.\"
26.\" $FreeBSD: src/lib/libc/posix1e/acl_get_entry.3,v 1.6 2002/12/18 12:45:09 ru Exp $
27.\"
28.Dd April 13, 2001
29.Dt ACL_GET_ENTRY 3
30.Os
31.Sh NAME
32.Nm acl_get_entry
33.Nd retrieve an ACL entry from an ACL
34.Sh LIBRARY
35.Lb libc
36.Sh SYNOPSIS
37.In sys/types.h
38.In sys/acl.h
39.Ft int
40.Fn acl_get_entry "acl_t acl" "int entry_id" "acl_entry_t *entry_p"
41.Sh DESCRIPTION
42The
43.Fn acl_get_entry
44function
45is a POSIX.1e call that retrieves a descriptor for an ACL entry
46specified by the argument
47.Fa entry_d
48within the ACL indicated by the argument
49.Fa acl .
50.Pp
51If the value of
52.Fa entry_id
53is
54.Dv ACL_FIRST_ENTRY ,
55then the function will return in
56.Fa entry_p
57a descriptor for the first ACL entry within
58.Fa acl .
59If a call is made to
60.Fn acl_get_entry
61with
62.Fa entry_id
63set to
64.Dv ACL_NEXT_ENTRY
65when there has not been either an initial successful call to
66.Fn acl_get_entry ,
67or a previous successfull call to
68.Fn acl_create_entry ,
69.Fn acl_delete_entry ,
70.Fn acl_dup ,
71.Fn acl_from_text ,
72.Fn acl_get_fd ,
73.Fn acl_get_file ,
74.Fn acl_set_fd ,
75.Fn acl_set_file ,
76or
77.Fn acl_valid ,
78then the result is unspecified.
79.Pp
80The caller may also set
81.Fa entry_id
82to the index of the desired entry within the ACL. This is a non-portable
83extension. A subsequent call with
84.Fa entry_id
85set to
86.Dv ACL_NEXT_ENTRY
87will return the entry following the previously nominated entry and so forth.
88.Sh RETURN VALUES
89If the
90.Fn acl_get_entry
91function successfully obtains an ACL entry, a value of 1 is returned.
92If the ACL has no ACL entries, the
93.Fn acl_get_entry
94returns a value of 0. If the value of
95.Fa entry_id
96is
97.Dv ACL_NEXT_ENTRY
98and the last ACL entry in the ACL has already been returned by a
99previous call to
100.Fn acl_get_entry ,
101a value of 0 will be returned until a successful call with
102.Fa entry_id
103of
104.Dv ACL_FIRST_ENTRY
105is made. Otherwise, a value of -1 will be returned and
106the global variable
107.Va errno
108will be set to indicate the error.
109.Sh ERRORS
110The
111.Fn acl_get_entry
112fails if:
113.Bl -tag -width Er
114.It Bq Er EINVAL
115Argument
116.Fa acl
117does not point to a valid ACL. Argument
118.Fa entry_id
119is neither
120.Dv ACL_FIRST_ENTRY ,
121.Dv ACL_NEXT_ENTRY
122or a valid entry index.
123.El
124.Sh SEE ALSO
125.Xr acl 3 ,
126.Xr acl_calc_mask 3 ,
127.Xr acl_create_entry 3 ,
128.Xr acl_delete_entry 3 ,
129.Xr acl_dup 3 ,
130.Xr acl_from_text 3 ,
131.Xr acl_get_fd 3 ,
132.Xr acl_get_file 3 ,
133.Xr acl_init 3 ,
134.Xr acl_set_fd 3 ,
135.Xr acl_set_file 3 ,
136.Xr acl_valid 3 ,
137.Xr posix1e 3
138.Sh STANDARDS
139POSIX.1e is described in IEEE POSIX.1e draft 17.
140.Sh AUTHORS
141.An Michael Smith
142.An Chris D. Faulhaber