]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libc/posix1e/acl_get_entry.3
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libc / posix1e / acl_get_entry.3
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 AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
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
42 The
43 .Fn acl_get_entry
44 function
45 is a POSIX.1e call that retrieves a descriptor for an ACL entry
46 specified by the argument
47 .Fa entry_d
48 within the ACL indicated by the argument
49 .Fa acl .
50 .Pp
51 If the value of
52 .Fa entry_id
53 is
54 .Dv ACL_FIRST_ENTRY ,
55 then the function will return in
56 .Fa entry_p
57 a descriptor for the first ACL entry within
58 .Fa acl .
59 If a call is made to
60 .Fn acl_get_entry
61 with
62 .Fa entry_id
63 set to
64 .Dv ACL_NEXT_ENTRY
65 when there has not been either an initial successful call to
66 .Fn acl_get_entry ,
67 or a previous successful 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 ,
76 or
77 .Fn acl_valid ,
78 then the result is unspecified.
79 .Sh RETURN VALUES
80 If the
81 .Fn acl_get_entry
82 function successfully obtains an ACL entry, a value of 1 is returned.
83 If the ACL has no ACL entries, the
84 .Fn acl_get_entry
85 returns a value of 0.
86 If the value of
87 .Fa entry_id
88 is
89 .Dv ACL_NEXT_ENTRY
90 and the last ACL entry in the ACL has already been returned by a
91 previous call to
92 .Fn acl_get_entry ,
93 a value of 0 will be returned until a successful call with
94 .Fa entry_id
95 of
96 .Dv ACL_FIRST_ENTRY
97 is made.
98 Otherwise, a value of -1 will be returned and
99 the global variable
100 .Va errno
101 will be set to indicate the error.
102 .Sh ERRORS
103 The
104 .Fn acl_get_entry
105 fails if:
106 .Bl -tag -width Er
107 .It Bq Er EINVAL
108 Argument
109 .Fa acl
110 does not point to a valid ACL.
111 Argument
112 .Fa entry_id
113 is neither
114 .Dv ACL_FIRST_ENTRY
115 nor
116 .Dv ACL_NEXT_ENTRY .
117 .El
118 .Sh SEE ALSO
119 .Xr acl 3 ,
120 .Xr acl_calc_mask 3 ,
121 .Xr acl_create_entry 3 ,
122 .Xr acl_delete_entry 3 ,
123 .Xr acl_dup 3 ,
124 .Xr acl_from_text 3 ,
125 .Xr acl_get_fd 3 ,
126 .Xr acl_get_file 3 ,
127 .Xr acl_init 3 ,
128 .Xr acl_set_fd 3 ,
129 .Xr acl_set_file 3 ,
130 .Xr acl_valid 3 ,
131 .Xr posix1e 3
132 .Sh STANDARDS
133 POSIX.1e is described in IEEE POSIX.1e draft 17.
134 .Sh HISTORY
135 POSIX.1e support was introduced in
136 .Fx 4.0 .
137 The
138 .Fn acl_get_entry
139 function was added in
140 .Fx 5.0 .
141 .Sh AUTHORS
142 The
143 .Fn acl_get_entry
144 function was written by
145 .An Chris D. Faulhaber Aq jedgar@fxp.org .