more work moving to quilt for patch management
[debian/sudo] / sudo.h
1 /*
2  * Copyright (c) 1993-1996, 1998-2005, 2007-2009
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * Sponsored in part by the Defense Advanced Research Projects
18  * Agency (DARPA) and Air Force Research Laboratory, Air Force
19  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
20  *
21  * $Sudo: sudo.h,v 1.273 2009/05/25 12:02:41 millert Exp $
22  */
23
24 #ifndef _SUDO_SUDO_H
25 #define _SUDO_SUDO_H
26
27 #include <pathnames.h>
28 #include <limits.h>
29 #include "compat.h"
30 #include "defaults.h"
31 #include "error.h"
32 #include "list.h"
33 #include "logging.h"
34 #include "sudo_nss.h"
35
36 /*
37  * Info pertaining to the invoking user.
38  */
39 struct sudo_user {
40     struct passwd *pw;
41     struct passwd *_runas_pw;
42     struct group *_runas_gr;
43     struct stat *cmnd_stat;
44     char *path;
45     char *shell;
46     char *tty;
47     char *ttypath;
48     char *host;
49     char *shost;
50     char *prompt;
51     char *cmnd;
52     char *cmnd_args;
53     char *cmnd_base;
54     char *cmnd_safe;
55     char *class_name;
56     char *krb5_ccname;
57     char *display;
58     char *askpass;
59     int   ngroups;
60     GETGROUPS_T *groups;
61     struct list_member *env_vars;
62 #ifdef HAVE_SELINUX
63     char *role;
64     char *type;
65 #endif
66     char  cwd[PATH_MAX];
67 };
68
69 /*
70  * Return values for sudoers_lookup(), also used as arguments for log_auth()
71  * Note: cannot use '0' as a value here.
72  */
73 /* XXX - VALIDATE_SUCCESS and VALIDATE_FAILURE instead? */
74 #define VALIDATE_ERROR          0x001
75 #define VALIDATE_OK             0x002
76 #define VALIDATE_NOT_OK         0x004
77 #define FLAG_CHECK_USER         0x010
78 #define FLAG_NO_USER            0x020
79 #define FLAG_NO_HOST            0x040
80 #define FLAG_NO_CHECK           0x080
81
82 /*
83  * Pseudo-boolean values
84  */
85 #undef TRUE
86 #define TRUE                     1
87 #undef FALSE
88 #define FALSE                    0
89
90 /*
91  * find_path()/load_cmnd() return values
92  */
93 #define FOUND                    1
94 #define NOT_FOUND                0
95 #define NOT_FOUND_DOT           -1
96
97 /*
98  * Various modes sudo can be in (based on arguments) in hex
99  */
100 #define MODE_RUN                0x00000001
101 #define MODE_EDIT               0x00000002
102 #define MODE_VALIDATE           0x00000004
103 #define MODE_INVALIDATE         0x00000008
104 #define MODE_KILL               0x00000010
105 #define MODE_VERSION            0x00000020
106 #define MODE_HELP               0x00000040
107 #define MODE_LIST               0x00000080
108 #define MODE_CHECK              0x00000100
109 #define MODE_LISTDEFS           0x00000200
110 #define MODE_MASK               0x0000ffff
111
112 /* Mode flags */
113 #define MODE_BACKGROUND         0x00010000
114 #define MODE_SHELL              0x00020000
115 #define MODE_LOGIN_SHELL        0x00040000
116 #define MODE_IMPLIED_SHELL      0x00080000
117 #define MODE_RESET_HOME         0x00100000
118 #define MODE_PRESERVE_GROUPS    0x00200000
119 #define MODE_PRESERVE_ENV       0x00400000
120 #define MODE_NONINTERACTIVE     0x00800000
121
122 /*
123  * Used with set_perms()
124  */
125 #define PERM_ROOT                0x00
126 #define PERM_USER                0x01
127 #define PERM_FULL_USER           0x02
128 #define PERM_SUDOERS             0x03
129 #define PERM_RUNAS               0x04
130 #define PERM_FULL_RUNAS          0x05
131 #define PERM_TIMESTAMP           0x06
132 #define PERM_NOEXIT              0x10 /* flag */
133 #define PERM_MASK                0xf0
134
135 /*
136  * Shortcuts for sudo_user contents.
137  */
138 #define user_name               (sudo_user.pw->pw_name)
139 #define user_passwd             (sudo_user.pw->pw_passwd)
140 #define user_uid                (sudo_user.pw->pw_uid)
141 #define user_gid                (sudo_user.pw->pw_gid)
142 #define user_dir                (sudo_user.pw->pw_dir)
143 #define user_shell              (sudo_user.shell)
144 #define user_ngroups            (sudo_user.ngroups)
145 #define user_groups             (sudo_user.groups)
146 #define user_tty                (sudo_user.tty)
147 #define user_ttypath            (sudo_user.ttypath)
148 #define user_cwd                (sudo_user.cwd)
149 #define user_cmnd               (sudo_user.cmnd)
150 #define user_args               (sudo_user.cmnd_args)
151 #define user_base               (sudo_user.cmnd_base)
152 #define user_stat               (sudo_user.cmnd_stat)
153 #define user_path               (sudo_user.path)
154 #define user_prompt             (sudo_user.prompt)
155 #define user_host               (sudo_user.host)
156 #define user_shost              (sudo_user.shost)
157 #define user_ccname             (sudo_user.krb5_ccname)
158 #define user_display            (sudo_user.display)
159 #define user_askpass            (sudo_user.askpass)
160 #define safe_cmnd               (sudo_user.cmnd_safe)
161 #define login_class             (sudo_user.class_name)
162 #define runas_pw                (sudo_user._runas_pw)
163 #define runas_gr                (sudo_user._runas_gr)
164 #define user_role               (sudo_user.role)
165 #define user_type               (sudo_user.type)
166
167 /*
168  * We used to use the system definition of PASS_MAX or _PASSWD_LEN,
169  * but that caused problems with various alternate authentication
170  * methods.  So, we just define our own and assume that it is >= the
171  * system max.
172  */
173 #define SUDO_PASS_MAX   256
174
175 /*
176  * Flags for lock_file()
177  */
178 #define SUDO_LOCK       1               /* lock a file */
179 #define SUDO_TLOCK      2               /* test & lock a file (non-blocking) */
180 #define SUDO_UNLOCK     4               /* unlock a file */
181
182 /*
183  * Flags for tgetpass()
184  */
185 #define TGP_ECHO        0x01            /* leave echo on when reading passwd */
186 #define TGP_STDIN       0x02            /* read from stdin, not /dev/tty */
187 #define TGP_ASKPASS     0x04            /* read from askpass helper program */
188
189 struct lbuf;
190 struct passwd;
191 struct timespec;
192 struct timeval;
193
194 /*
195  * Function prototypes
196  */
197 #define YY_DECL int yylex __P((void))
198
199 #ifndef HAVE_CLOSEFROM
200 void closefrom          __P((int));
201 #endif
202 #ifndef HAVE_GETCWD
203 char *getcwd            __P((char *, size_t size));
204 #endif
205 #ifndef HAVE_UTIMES
206 int utimes              __P((const char *, const struct timeval *));
207 #endif
208 #ifdef HAVE_FUTIME
209 int futimes             __P((int, const struct timeval *));
210 #endif
211 #ifndef HAVE_SNPRINTF
212 int snprintf            __P((char *, size_t, const char *, ...))
213                             __printflike(3, 4);
214 #endif
215 #ifndef HAVE_VSNPRINTF
216 int vsnprintf           __P((char *, size_t, const char *, va_list))
217                             __printflike(3, 0);
218 #endif
219 #ifndef HAVE_ASPRINTF
220 int asprintf            __P((char **, const char *, ...))
221                             __printflike(2, 3);
222 #endif
223 #ifndef HAVE_VASPRINTF
224 int vasprintf           __P((char **, const char *, va_list))
225                             __printflike(2, 0);
226 #endif
227 #ifndef HAVE_STRCASECMP
228 int strcasecmp          __P((const char *, const char *));
229 #endif
230 #ifndef HAVE_STRLCAT
231 size_t strlcat          __P((char *, const char *, size_t));
232 #endif
233 #ifndef HAVE_STRLCPY
234 size_t strlcpy          __P((char *, const char *, size_t));
235 #endif
236 #ifndef HAVE_MEMRCHR
237 void *memrchr           __P((const void *, int, size_t));
238 #endif
239 #ifndef HAVE_MKSTEMP
240 int mkstemp             __P((char *));
241 #endif
242 #ifndef HAVE_SETENV
243 int setenv              __P((const char *, const char *, int));
244 #endif
245 #ifndef HAVE_UNSETENV
246 int unsetenv            __P((const char *));
247 #endif
248 char *sudo_goodpath     __P((const char *, struct stat *));
249 char *tgetpass          __P((const char *, int, int));
250 int find_path           __P((char *, char **, struct stat *, char *));
251 int tty_present         __P((void));
252 void check_user         __P((int, int));
253 void verify_user        __P((struct passwd *, char *));
254 #ifdef HAVE_LDAP
255 int sudo_ldap_open      __P((struct sudo_nss *));
256 int sudo_ldap_close     __P((struct sudo_nss *));
257 int sudo_ldap_setdefs   __P((struct sudo_nss *));
258 int sudo_ldap_lookup    __P((struct sudo_nss *, int, int));
259 int sudo_ldap_parse     __P((struct sudo_nss *));
260 int sudo_ldap_display_cmnd __P((struct sudo_nss *, struct passwd *));
261 int sudo_ldap_display_defaults __P((struct sudo_nss *, struct passwd *, struct lbuf *));
262 int sudo_ldap_display_bound_defaults __P((struct sudo_nss *, struct passwd *, struct lbuf *));
263 int sudo_ldap_display_privs __P((struct sudo_nss *, struct passwd *, struct lbuf *));
264 #endif
265 int sudo_file_open      __P((struct sudo_nss *));
266 int sudo_file_close     __P((struct sudo_nss *));
267 int sudo_file_setdefs   __P((struct sudo_nss *));
268 int sudo_file_lookup    __P((struct sudo_nss *, int, int));
269 int sudo_file_parse     __P((struct sudo_nss *));
270 int sudo_file_display_cmnd __P((struct sudo_nss *, struct passwd *));
271 int sudo_file_display_defaults __P((struct sudo_nss *, struct passwd *, struct lbuf *));
272 int sudo_file_display_bound_defaults __P((struct sudo_nss *, struct passwd *, struct lbuf *));
273 int sudo_file_display_privs __P((struct sudo_nss *, struct passwd *, struct lbuf *));
274 int set_perms           __P((int));
275 void remove_timestamp   __P((int));
276 int check_secureware    __P((char *));
277 void sia_attempt_auth   __P((void));
278 void pam_attempt_auth   __P((void));
279 int yyparse             __P((void));
280 void pass_warn          __P((FILE *));
281 void *emalloc           __P((size_t));
282 void *emalloc2          __P((size_t, size_t));
283 void *erealloc          __P((void *, size_t));
284 void *erealloc3         __P((void *, size_t, size_t));
285 char *estrdup           __P((const char *));
286 int easprintf           __P((char **, const char *, ...))
287                             __printflike(2, 3);
288 int evasprintf          __P((char **, const char *, va_list))
289                             __printflike(2, 0);
290 void efree              __P((void *));
291 void dump_defaults      __P((void));
292 void dump_auth_methods  __P((void));
293 void init_envtables     __P((void));
294 void read_env_file      __P((const char *, int));
295 int lock_file           __P((int, int));
296 int touch               __P((int, char *, struct timespec *));
297 int user_is_exempt      __P((void));
298 void set_fqdn           __P((void));
299 char *sudo_getepw       __P((const struct passwd *));
300 int pam_prep_user       __P((struct passwd *));
301 void zero_bytes         __P((volatile void *, size_t));
302 int gettime             __P((struct timespec *));
303 FILE *open_sudoers      __P((const char *, int, int *));
304 void display_privs      __P((struct sudo_nss_list *, struct passwd *));
305 int display_cmnd        __P((struct sudo_nss_list *, struct passwd *));
306 int get_ttycols         __P((void));
307 char *sudo_parseln      __P((FILE *));
308 void sudo_setgrent      __P((void));
309 void sudo_endgrent      __P((void));
310 void sudo_setpwent      __P((void));
311 void sudo_endpwent      __P((void));
312 void sudo_setspent      __P((void));
313 void sudo_endspent      __P((void));
314 void cleanup            __P((int));
315 struct passwd *sudo_getpwnam __P((const char *));
316 struct passwd *sudo_fakepwnam __P((const char *, gid_t));
317 struct passwd *sudo_getpwuid __P((uid_t));
318 struct group *sudo_getgrnam __P((const char *));
319 struct group *sudo_fakegrnam __P((const char *));
320 struct group *sudo_getgrgid __P((gid_t));
321 #ifdef HAVE_SELINUX
322 void selinux_exec __P((char *, char *, char **, int));
323 #endif
324 #ifdef HAVE_GETUSERATTR
325 void aix_setlimits __P((char *));
326 #endif
327 YY_DECL;
328
329 /* Only provide extern declarations outside of sudo.c. */
330 #ifndef _SUDO_MAIN
331 extern struct sudo_user sudo_user;
332 extern struct passwd *auth_pw, *list_pw;
333
334 extern int tgetpass_flags;
335 extern int long_list;
336 extern uid_t timestamp_uid;
337 #endif
338 #ifndef errno
339 extern int errno;
340 #endif
341
342 #endif /* _SUDO_SUDO_H */