.
[gnulib.git] / lib / acl.c
blob74639cc0b034e36b41a1baecf51ea5ab44cb318c
1 /* acl.c - access control lists
3 Copyright (C) 2002 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 2, or (at your option)
8 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, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 Written by Paul Eggert. */
21 #if HAVE_CONFIG_H
22 # include <config.h>
23 #endif
25 #include <sys/stat.h>
26 #ifndef S_ISLNK
27 # define S_ISLNK(Mode) 0
28 #endif
30 #include "acl.h"
32 #include <errno.h>
33 #ifndef ENOSYS
34 # define ENOSYS (-1)
35 #endif
37 #ifndef MIN_ACL_ENTRIES
38 # define MIN_ACL_ENTRIES 4
39 #endif
41 /* Return 1 if PATH has a nontrivial access control list, 0 if not,
42 and -1 (setting errno) if an error is encountered. */
44 int
45 file_has_acl (char const *path, struct stat const *pathstat)
47 /* FIXME: This implementation should work on recent-enough versions
48 of HP-UX, Solaris, and Unixware, but it simply returns 0 with
49 POSIX 1003.1e (draft 17 -- abandoned), AIX, GNU/Linux, Irix, and
50 Tru64. Please see Samba's source/lib/sysacls.c file for
51 fix-related ideas. */
53 #if HAVE_ACL && defined GETACLCNT
54 if (! S_ISLNK (pathstat->st_mode))
56 int n = acl (path, GETACLCNT, 0, NULL);
57 return n < 0 ? (errno == ENOSYS ? 0 : -1) : (MIN_ACL_ENTRIES < n);
59 #endif
61 return 0;