No longer include safe-l?stat.h.
[gnulib.git] / lib / euidaccess.c
1 /* euidaccess -- check if effective user id can access file
2    Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Written by David MacKenzie and Torbjorn Granlund. */
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26
27 #ifdef S_IEXEC
28 #ifndef S_IXUSR
29 #define S_IXUSR S_IEXEC
30 #endif
31 #ifndef S_IXGRP
32 #define S_IXGRP (S_IEXEC >> 3)
33 #endif
34 #ifndef S_IXOTH
35 #define S_IXOTH (S_IEXEC >> 6)
36 #endif
37 #endif /* S_IEXEC */
38
39 #ifdef HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42
43 #ifdef _POSIX_VERSION
44 #include <limits.h>
45 #if !defined(NGROUPS_MAX) || NGROUPS_MAX < 1
46 #undef NGROUPS_MAX
47 #define NGROUPS_MAX sysconf (_SC_NGROUPS_MAX)
48 #endif /* NGROUPS_MAX */
49
50 #else /* not _POSIX_VERSION */
51 uid_t getuid ();
52 gid_t getgid ();
53 uid_t geteuid ();
54 gid_t getegid ();
55 #include <sys/param.h>
56 #if !defined(NGROUPS_MAX) && defined(NGROUPS)
57 #define NGROUPS_MAX NGROUPS
58 #endif /* not NGROUPS_MAX and NGROUPS */
59 #endif /* not POSIX_VERSION */
60
61 #include <errno.h>
62 #ifndef errno
63 extern int errno;
64 #endif
65
66 #if defined(EACCES) && !defined(EACCESS)
67 #define EACCESS EACCES
68 #endif
69
70 #ifndef F_OK
71 #define F_OK 0
72 #define X_OK 1
73 #define W_OK 2
74 #define R_OK 4
75 #endif
76
77 /* The user's real user id. */
78 static uid_t uid;
79
80 /* The user's real group id. */
81 static gid_t gid;
82
83 /* The user's effective user id. */
84 static uid_t euid;
85
86 /* The user's effective group id. */
87 static gid_t egid;
88
89 int group_member ();
90
91 /* Nonzero if UID, GID, EUID, and EGID have valid values. */
92 static int have_ids = 0;
93
94 /* Like euidaccess, except that a pointer to a filled-in stat structure
95    describing the file is provided instead of a filename.
96    Because this function is almost guaranteed to fail on systems that
97    use ACLs, a third argument *PATH may be used.  If it is non-NULL,
98    it is assumed to be the name of the file corresponding to STATP.
99    Then, if the user is not running set-uid or set-gid, use access
100    instead of attempting a manual and non-portable comparison.  */
101
102 int
103 eaccess_stat (statp, mode, path)
104      const struct stat *statp;
105      int mode;
106      const char *path;
107 {
108   int granted;
109
110   mode &= (X_OK | W_OK | R_OK); /* Clear any bogus bits. */
111
112   if (mode == F_OK)
113     return 0;                   /* The file exists. */
114
115   if (have_ids == 0)
116     {
117       have_ids = 1;
118       uid = getuid ();
119       gid = getgid ();
120       euid = geteuid ();
121       egid = getegid ();
122     }
123
124   if (path && uid == euid && gid == egid)
125     {
126       return access (path, mode);
127     }
128
129   /* The super-user can read and write any file, and execute any file
130      that anyone can execute. */
131   if (euid == 0 && ((mode & X_OK) == 0
132                     || (statp->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))))
133     return 0;
134
135   if (euid == statp->st_uid)
136     granted = (unsigned) (statp->st_mode & (mode << 6)) >> 6;
137   else if (egid == statp->st_gid
138 #ifdef HAVE_GETGROUPS
139            || group_member (statp->st_gid)
140 #endif
141            )
142     granted = (unsigned) (statp->st_mode & (mode << 3)) >> 3;
143   else
144     granted = (statp->st_mode & mode);
145   if (granted == mode)
146     return 0;
147   errno = EACCESS;
148   return -1;
149 }
150
151 /* Return 0 if the user has permission of type MODE on file PATH;
152    otherwise, return -1 and set `errno' to EACCESS.
153    Like access, except that it uses the effective user and group
154    id's instead of the real ones, and it does not check for read-only
155    filesystem, text busy, etc. */
156
157 int
158 euidaccess (path, mode)
159      const char *path;
160      int mode;
161 {
162   struct stat stats;
163
164   if (have_ids == 0)
165     {
166       have_ids = 1;
167       uid = getuid ();
168       gid = getgid ();
169       euid = geteuid ();
170       egid = getegid ();
171     }
172
173   if (uid == euid && gid == egid)
174     {
175       return access (path, mode);
176     }
177
178   if (stat (path, &stats))
179     return -1;
180
181   return eaccess_stat (&stats, mode, path);
182 }
183
184 #ifdef TEST
185 #include <stdio.h>
186 #include <errno.h>
187
188 void error ();
189
190 char *program_name;
191
192 int
193 main (argc, argv)
194      int argc;
195      char **argv;
196 {
197   char *file;
198   int mode;
199   int err;
200
201   program_name = argv[0];
202   if (argc < 3)
203     abort ();
204   file = argv[1];
205   mode = atoi (argv[2]);
206
207   err = euidaccess (file, mode);
208   printf ("%d\n", err);
209   if (err != 0)
210     error (0, errno, "%s", file);
211   exit (0);
212 }
213 #endif