1 /* Internal implementation of access control lists.
3 Copyright (C) 2002-2003, 2005-2013 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 Written by Paul Eggert, Andreas Grünbacher, and Bruno Haible. */
25 /* All systems define the ACL related API in <sys/acl.h>. */
29 #if defined HAVE_FACL && ! defined GETACLCNT && defined ACL_CNT
30 # define GETACLCNT ACL_CNT
33 /* On Linux, additional ACL related API is available in <acl/libacl.h>. */
34 #ifdef HAVE_ACL_LIBACL_H
35 # include <acl/libacl.h>
38 /* On HP-UX >= 11.11, additional ACL API is available in <aclv.h>. */
40 # include <sys/types.h>
42 /* HP-UX 11.11 lacks these declarations. */
43 extern int acl (char *, int, int, struct acl
*);
44 extern int aclsort (int, int, struct acl
*);
51 # define MIN(a,b) ((a) < (b) ? (a) : (b))
55 # define SIZE_MAX ((size_t) -1)
59 # define HAVE_FCHMOD false
60 # define fchmod(fd, mode) (-1)
63 _GL_INLINE_HEADER_BEGIN
64 #ifndef ACL_INTERNAL_INLINE
65 # define ACL_INTERNAL_INLINE _GL_INLINE
70 # if HAVE_ACL_GET_FILE
71 /* POSIX 1003.1e (draft 17 -- abandoned) specific version. */
72 /* Linux, FreeBSD, Mac OS X, IRIX, Tru64 */
74 # ifndef MIN_ACL_ENTRIES
75 # define MIN_ACL_ENTRIES 4
78 /* POSIX 1003.1e (draft 17) */
79 # ifdef HAVE_ACL_GET_FD
80 /* Most platforms have a 1-argument acl_get_fd, only OSF/1 has a 2-argument
82 # if HAVE_ACL_FREE_TEXT /* OSF/1 */
83 ACL_INTERNAL_INLINE acl_t
84 rpl_acl_get_fd (int fd
)
86 return acl_get_fd (fd
, ACL_TYPE_ACCESS
);
89 # define acl_get_fd rpl_acl_get_fd
92 # define HAVE_ACL_GET_FD false
94 # define acl_get_fd(fd) (NULL)
97 /* POSIX 1003.1e (draft 17) */
98 # ifdef HAVE_ACL_SET_FD
99 /* Most platforms have a 2-argument acl_set_fd, only OSF/1 has a 3-argument
101 # if HAVE_ACL_FREE_TEXT /* OSF/1 */
102 ACL_INTERNAL_INLINE
int
103 rpl_acl_set_fd (int fd
, acl_t acl
)
105 return acl_set_fd (fd
, ACL_TYPE_ACCESS
, acl
);
108 # define acl_set_fd rpl_acl_set_fd
111 # define HAVE_ACL_SET_FD false
113 # define acl_set_fd(fd, acl) (-1)
116 /* POSIX 1003.1e (draft 13) */
117 # if ! HAVE_ACL_FREE_TEXT
118 # define acl_free_text(buf) acl_free (buf)
122 # ifndef HAVE_ACL_EXTENDED_FILE
123 # define HAVE_ACL_EXTENDED_FILE false
124 # define acl_extended_file(name) (-1)
128 # ifndef HAVE_ACL_FROM_MODE
129 # define HAVE_ACL_FROM_MODE false
130 # define acl_from_mode(mode) (NULL)
133 /* Set to 1 if a file's mode is implicit by the ACL.
134 Set to 0 if a file's mode is stored independently from the ACL. */
135 # if (HAVE_ACL_COPY_EXT_NATIVE && HAVE_ACL_CREATE_ENTRY_NP) || defined __sgi /* Mac OS X, IRIX */
136 # define MODE_INSIDE_ACL 0
138 # define MODE_INSIDE_ACL 1
141 /* Return the number of entries in ACL.
142 Return -1 and set errno upon failure to determine it. */
143 /* Define a replacement for acl_entries if needed. (Only Linux has it.) */
144 # if !HAVE_ACL_ENTRIES
145 # define acl_entries rpl_acl_entries
146 extern int acl_entries (acl_t
);
149 # if HAVE_ACL_TYPE_EXTENDED /* Mac OS X */
150 /* ACL is an ACL, from a file, stored as type ACL_TYPE_EXTENDED.
151 Return 1 if the given ACL is non-trivial.
152 Return 0 if it is trivial. */
153 extern int acl_extended_nontrivial (acl_t
);
155 /* ACL is an ACL, from a file, stored as type ACL_TYPE_ACCESS.
156 Return 1 if the given ACL is non-trivial.
157 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.
158 Return -1 and set errno upon failure to determine it. */
159 extern int acl_access_nontrivial (acl_t
);
162 # elif HAVE_FACL && defined GETACL /* Solaris, Cygwin, not HP-UX */
164 /* Set to 1 if a file's mode is implicit by the ACL.
165 Set to 0 if a file's mode is stored independently from the ACL. */
166 # if defined __CYGWIN__ /* Cygwin */
167 # define MODE_INSIDE_ACL 0
169 # define MODE_INSIDE_ACL 1
172 /* Return 1 if the given ACL is non-trivial.
173 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
174 extern int acl_nontrivial (int count
, aclent_t
*entries
);
176 # ifdef ACE_GETACL /* Solaris 10 */
178 /* Test an ACL retrieved with ACE_GETACL.
179 Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
180 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
181 extern int acl_ace_nontrivial (int count
, ace_t
*entries
);
183 /* Definitions for when the built executable is executed on Solaris 10
184 (newer version) or Solaris 11. */
188 # define NEW_ACE_ACCESS_ALLOWED_ACE_TYPE 0 /* replaces ALLOW */
189 # define NEW_ACE_ACCESS_DENIED_ACE_TYPE 1 /* replaces DENY */
191 # define OLD_ACE_OWNER 0x0100
192 # define OLD_ACE_GROUP 0x0200
193 # define OLD_ACE_OTHER 0x0400
194 # define NEW_ACE_OWNER 0x1000
195 # define NEW_ACE_GROUP 0x2000
196 # define NEW_ACE_IDENTIFIER_GROUP 0x0040
197 # define NEW_ACE_EVERYONE 0x4000
198 /* For a_access_mask. */
199 # define NEW_ACE_READ_DATA 0x001 /* corresponds to 'r' */
200 # define NEW_ACE_WRITE_DATA 0x002 /* corresponds to 'w' */
201 # define NEW_ACE_APPEND_DATA 0x004
202 # define NEW_ACE_READ_NAMED_ATTRS 0x008
203 # define NEW_ACE_WRITE_NAMED_ATTRS 0x010
204 # define NEW_ACE_EXECUTE 0x020
205 # define NEW_ACE_DELETE_CHILD 0x040
206 # define NEW_ACE_READ_ATTRIBUTES 0x080
207 # define NEW_ACE_WRITE_ATTRIBUTES 0x100
208 # define NEW_ACE_DELETE 0x10000
209 # define NEW_ACE_READ_ACL 0x20000
210 # define NEW_ACE_WRITE_ACL 0x40000
211 # define NEW_ACE_WRITE_OWNER 0x80000
212 # define NEW_ACE_SYNCHRONIZE 0x100000
216 # elif HAVE_GETACL /* HP-UX */
218 /* Return 1 if the given ACL is non-trivial.
219 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
220 extern int acl_nontrivial (int count
, struct acl_entry
*entries
, struct stat
*sb
);
222 # if HAVE_ACLV_H /* HP-UX >= 11.11 */
224 /* Return 1 if the given ACL is non-trivial.
225 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
226 extern int aclv_nontrivial (int count
, struct acl
*entries
);
230 # elif HAVE_ACLX_GET && 0 /* AIX */
234 # elif HAVE_STATACL /* older AIX */
236 /* Return 1 if the given ACL is non-trivial.
237 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
238 extern int acl_nontrivial (struct acl
*a
);
240 # elif HAVE_ACLSORT /* NonStop Kernel */
242 /* Return 1 if the given ACL is non-trivial.
243 Return 0 if it is trivial, i.e. equivalent to a simple stat() mode. */
244 extern int acl_nontrivial (int count
, struct acl
*entries
);
250 _GL_INLINE_HEADER_END