Merge commit 'upstream/1.7.2p2'
[debian/sudo] / sudo.c
1 /*
2  * Copyright (c) 1993-1996, 1998-2009 Todd C. Miller <Todd.Miller@courtesan.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  *
16  * Sponsored in part by the Defense Advanced Research Projects
17  * Agency (DARPA) and Air Force Research Laboratory, Air Force
18  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
19  *
20  * For a brief history of sudo, please see the HISTORY file included
21  * with this distribution.
22  */
23
24 #define _SUDO_MAIN
25
26 #ifdef __TANDEM
27 # include <floss.h>
28 #endif
29
30 #include <config.h>
31
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <sys/param.h>
35 #include <sys/socket.h>
36 #ifdef HAVE_SETRLIMIT
37 # include <sys/time.h>
38 # include <sys/resource.h>
39 #endif
40 #include <stdio.h>
41 #ifdef STDC_HEADERS
42 # include <stdlib.h>
43 # include <stddef.h>
44 #else
45 # ifdef HAVE_STDLIB_H
46 #  include <stdlib.h>
47 # endif
48 #endif /* STDC_HEADERS */
49 #ifdef HAVE_STRING_H
50 # if defined(HAVE_MEMORY_H) && !defined(STDC_HEADERS)
51 #  include <memory.h>
52 # endif
53 # include <string.h>
54 #else
55 # ifdef HAVE_STRINGS_H
56 #  include <strings.h>
57 # endif
58 #endif /* HAVE_STRING_H */
59 #ifdef HAVE_UNISTD_H
60 # include <unistd.h>
61 #endif /* HAVE_UNISTD_H */
62 #include <pwd.h>
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <signal.h>
66 #include <grp.h>
67 #if TIME_WITH_SYS_TIME
68 # include <time.h>
69 #endif
70 #ifdef HAVE_SETLOCALE
71 # include <locale.h>
72 #endif
73 #include <netinet/in.h>
74 #include <netdb.h>
75 #if defined(HAVE_GETPRPWNAM) && defined(HAVE_SET_AUTH_PARAMETERS)
76 # ifdef __hpux
77 #  undef MAXINT
78 #  include <hpsecurity.h>
79 # else
80 #  include <sys/security.h>
81 # endif /* __hpux */
82 # include <prot.h>
83 #endif /* HAVE_GETPRPWNAM && HAVE_SET_AUTH_PARAMETERS */
84 #ifdef HAVE_LOGIN_CAP_H
85 # include <login_cap.h>
86 # ifndef LOGIN_DEFROOTCLASS
87 #  define LOGIN_DEFROOTCLASS    "daemon"
88 # endif
89 #endif
90 #ifdef HAVE_PROJECT_H
91 # include <project.h>
92 # include <sys/task.h>
93 #endif
94 #ifdef HAVE_SELINUX
95 # include <selinux/selinux.h>
96 #endif
97
98 #include <sudo_usage.h>
99 #include "sudo.h"
100 #include "lbuf.h"
101 #include "interfaces.h"
102
103 #ifdef USING_NONUNIX_GROUPS
104 # include "nonunix.h"
105 #endif
106
107 #ifndef lint
108 __unused static const char rcsid[] = "$Sudo: sudo.c,v 1.517 2009/05/27 00:49:07 millert Exp $";
109 #endif /* lint */
110
111 /*
112  * Prototypes
113  */
114 static void init_vars                   __P((int, char **));
115 static int set_cmnd                     __P((int));
116 static int parse_args                   __P((int, char **));
117 static void initial_setup               __P((void));
118 static void set_loginclass              __P((struct passwd *));
119 static void set_project                 __P((struct passwd *));
120 static void set_runasgr                 __P((char *));
121 static void set_runaspw                 __P((char *));
122 static void show_version                __P((void));
123 static void usage                       __P((int))
124                                             __attribute__((__noreturn__));
125 static void usage_excl                  __P((int))
126                                             __attribute__((__noreturn__));
127 static struct passwd *get_authpw        __P((void));
128 extern int sudo_edit                    __P((int, char **, char **));
129 extern void rebuild_env                 __P((int, int));
130 void validate_env_vars                  __P((struct list_member *));
131 void insert_env_vars                    __P((struct list_member *));
132
133 /*
134  * Globals
135  */
136 int Argc, NewArgc;
137 char **Argv, **NewArgv;
138 char *prev_user;
139 static int user_closefrom = -1;
140 struct sudo_user sudo_user;
141 struct passwd *auth_pw, *list_pw;
142 struct interface *interfaces;
143 int num_interfaces;
144 int tgetpass_flags;
145 int long_list;
146 uid_t timestamp_uid;
147 extern int errorlineno;
148 extern int parse_error;
149 extern char *errorfile;
150 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
151 static struct rlimit corelimit;
152 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
153 #ifdef HAVE_LOGIN_CAP_H
154 login_cap_t *lc;
155 #endif /* HAVE_LOGIN_CAP_H */
156 #ifdef HAVE_BSD_AUTH_H
157 char *login_style;
158 #endif /* HAVE_BSD_AUTH_H */
159 sigaction_t saved_sa_int, saved_sa_quit, saved_sa_tstp;
160 static char *runas_user;
161 static char *runas_group;
162 static struct sudo_nss_list *snl;
163
164 /* For getopt(3) */
165 extern char *optarg;
166 extern int optind;
167
168 int
169 main(argc, argv, envp)
170     int argc;
171     char **argv;
172     char **envp;
173 {
174     int sources = 0, validated;
175     int fd, cmnd_status, sudo_mode, pwflag, rc = 0;
176     sigaction_t sa;
177     struct sudo_nss *nss;
178 #if defined(SUDO_DEVEL) && defined(__OpenBSD__)
179     extern char *malloc_options;
180     malloc_options = "AFGJPR";
181 #endif
182
183 #ifdef HAVE_SETLOCALE
184     setlocale(LC_ALL, "");
185 #endif
186
187     Argv = argv;
188     if ((Argc = argc) < 1)
189         usage(1);
190
191     /* Must be done as the first thing... */
192 #if defined(HAVE_GETPRPWNAM) && defined(HAVE_SET_AUTH_PARAMETERS)
193     (void) set_auth_parameters(Argc, Argv);
194 # ifdef HAVE_INITPRIVS
195     initprivs();
196 # endif
197 #endif /* HAVE_GETPRPWNAM && HAVE_SET_AUTH_PARAMETERS */
198
199     if (geteuid() != 0)
200         errorx(1, "must be setuid root");
201
202     /*
203      * Signal setup:
204      *  Ignore keyboard-generated signals so the user cannot interrupt
205      *  us at some point and avoid the logging.
206      *  Install handler to wait for children when they exit.
207      */
208     zero_bytes(&sa, sizeof(sa));
209     sigemptyset(&sa.sa_mask);
210     sa.sa_flags = SA_RESTART;
211     sa.sa_handler = SIG_IGN;
212     (void) sigaction(SIGINT, &sa, &saved_sa_int);
213     (void) sigaction(SIGQUIT, &sa, &saved_sa_quit);
214     (void) sigaction(SIGTSTP, &sa, &saved_sa_tstp);
215
216     /*
217      * Turn off core dumps and make sure fds 0-2 are open.
218      */
219     initial_setup();
220     sudo_setpwent();
221     sudo_setgrent();
222
223     /* Parse our arguments. */
224     sudo_mode = parse_args(Argc, Argv);
225
226     /* Setup defaults data structures. */
227     init_defaults();
228
229     /* Load the list of local ip addresses and netmasks.  */
230     load_interfaces();
231
232     pwflag = 0;
233     if (ISSET(sudo_mode, MODE_SHELL))
234         user_cmnd = "shell";
235     else if (ISSET(sudo_mode, MODE_EDIT))
236         user_cmnd = "sudoedit";
237     else {
238         switch (sudo_mode) {
239             case MODE_VERSION:
240                 show_version();
241                 break;
242             case MODE_HELP:
243                 usage(0);
244                 break;
245             case MODE_VALIDATE:
246             case MODE_VALIDATE|MODE_INVALIDATE:
247                 user_cmnd = "validate";
248                 pwflag = I_VERIFYPW;
249                 break;
250             case MODE_KILL:
251             case MODE_INVALIDATE:
252                 user_cmnd = "kill";
253                 pwflag = -1;
254                 break;
255             case MODE_LISTDEFS:
256                 list_options();
257                 exit(0);
258                 break;
259             case MODE_LIST:
260             case MODE_LIST|MODE_INVALIDATE:
261                 user_cmnd = "list";
262                 pwflag = I_LISTPW;
263                 break;
264             case MODE_CHECK:
265             case MODE_CHECK|MODE_INVALIDATE:
266                 pwflag = I_LISTPW;
267                 break;
268         }
269     }
270
271     /* Must have a command to run... */
272     if (user_cmnd == NULL && NewArgc == 0)
273         usage(1);
274
275     init_vars(sudo_mode, envp);         /* XXX - move this later? */
276
277 #ifdef USING_NONUNIX_GROUPS
278     sudo_nonunix_groupcheck_init();     /* initialise nonunix groups impl */
279 #endif /* USING_NONUNIX_GROUPS */
280
281     /* Parse nsswitch.conf for sudoers order. */
282     snl = sudo_read_nss();
283
284     /* Open and parse sudoers, set global defaults */
285     tq_foreach_fwd(snl, nss) {
286         if (nss->open(nss) == 0 && nss->parse(nss) == 0) {
287             sources++;
288             nss->setdefs(nss);
289         }
290     }
291     if (sources == 0)
292         log_error(0, "no valid sudoers sources found, quitting");
293
294     /* XXX - collect post-sudoers parse settings into a function */
295
296     /*
297      * Set runas passwd/group entries based on command line or sudoers.
298      * Note that if runas_group was specified without runas_user we
299      * defer setting runas_pw so the match routines know to ignore it.
300      */
301     if (runas_group != NULL) {
302         set_runasgr(runas_group);
303         if (runas_user != NULL)
304             set_runaspw(runas_user);
305     } else
306         set_runaspw(runas_user ? runas_user : def_runas_default);
307
308     if (!update_defaults(SETDEF_RUNAS))
309         log_error(NO_STDERR|NO_EXIT, "problem with defaults entries");
310
311     /* Set login class if applicable. */
312     set_loginclass(sudo_user.pw);
313
314     /* Update initial shell now that runas is set. */
315     if (ISSET(sudo_mode, MODE_LOGIN_SHELL))
316         NewArgv[0] = runas_pw->pw_shell;
317
318     /* This goes after sudoers is parsed since it may have timestamp options. */
319     if (sudo_mode == MODE_KILL || sudo_mode == MODE_INVALIDATE) {
320         remove_timestamp((sudo_mode == MODE_KILL));
321         cleanup(0);
322         exit(0);
323     }
324
325     /* Is root even allowed to run sudo? */
326     if (user_uid == 0 && !def_root_sudo) {
327         (void) fprintf(stderr,
328             "Sorry, %s has been configured to not allow root to run it.\n",
329             getprogname());
330         exit(1);
331     }
332
333     /* Check for -C overriding def_closefrom. */
334     if (user_closefrom >= 0 && user_closefrom != def_closefrom) {
335         if (!def_closefrom_override)
336             errorx(1, "you are not permitted to use the -C option");
337         else
338             def_closefrom = user_closefrom;
339     }
340
341     cmnd_status = set_cmnd(sudo_mode);
342
343 #ifdef HAVE_SETLOCALE
344     if (!setlocale(LC_ALL, def_sudoers_locale)) {
345         warningx("unable to set locale to \"%s\", using \"C\"",
346             def_sudoers_locale);
347         setlocale(LC_ALL, "C");
348     }
349 #endif
350
351     validated = FLAG_NO_USER | FLAG_NO_HOST;
352     tq_foreach_fwd(snl, nss) {
353         validated = nss->lookup(nss, validated, pwflag);
354
355         if (ISSET(validated, VALIDATE_OK)) {
356             /* Handle "= auth" in netsvc.conf */
357             if (nss->ret_if_found)
358                 break;
359         } else {
360             /* Handle [NOTFOUND=return] */
361             if (nss->ret_if_notfound)
362                 break;
363         }
364     }
365
366 #ifdef USING_NONUNIX_GROUPS
367     /* Finished with the groupcheck code */
368     sudo_nonunix_groupcheck_cleanup();
369 #endif
370
371     if (safe_cmnd == NULL)
372         safe_cmnd = estrdup(user_cmnd);
373
374 #ifdef HAVE_SETLOCALE
375     setlocale(LC_ALL, "");
376 #endif
377
378     /* If only a group was specified, set runas_pw based on invoking user. */
379     if (runas_pw == NULL)
380         set_runaspw(user_name);
381
382     /*
383      * Look up the timestamp dir owner if one is specified.
384      */
385     if (def_timestampowner) {
386         struct passwd *pw;
387
388         if (*def_timestampowner == '#')
389             pw = sudo_getpwuid(atoi(def_timestampowner + 1));
390         else
391             pw = sudo_getpwnam(def_timestampowner);
392         if (!pw)
393             log_error(0, "timestamp owner (%s): No such user",
394                 def_timestampowner);
395         timestamp_uid = pw->pw_uid;
396     }
397
398     /* If given the -P option, set the "preserve_groups" flag. */
399     if (ISSET(sudo_mode, MODE_PRESERVE_GROUPS))
400         def_preserve_groups = TRUE;
401
402     /* If no command line args and "set_home" is not set, error out. */
403     if (ISSET(sudo_mode, MODE_IMPLIED_SHELL) && !def_shell_noargs)
404         usage(1);
405
406     /* Bail if a tty is required and we don't have one.  */
407     if (def_requiretty) {
408         if ((fd = open(_PATH_TTY, O_RDWR|O_NOCTTY)) == -1) {
409             audit_failure(NewArgv, "no tty");
410             log_error(NO_MAIL, "sorry, you must have a tty to run sudo");
411         } else
412             (void) close(fd);
413     }
414
415     /* Use askpass value from sudoers unless user specified their own. */
416     if (def_askpass && !user_askpass)
417         user_askpass = def_askpass;
418
419     /* User may have overridden environment resetting via the -E flag. */
420     if (ISSET(sudo_mode, MODE_PRESERVE_ENV) && def_setenv)
421         def_env_reset = FALSE;
422
423     /* Build a new environment that avoids any nasty bits. */
424     rebuild_env(sudo_mode, def_noexec);
425
426     /* Fill in passwd struct based on user we are authenticating as.  */
427     auth_pw = get_authpw();
428
429     /* Require a password if sudoers says so.  */
430     if (def_authenticate)
431         check_user(validated, sudo_mode);
432
433     /* If run as root with SUDO_USER set, set sudo_user.pw to that user. */
434     /* XXX - causes confusion when root is not listed in sudoers */
435     if (sudo_mode & (MODE_RUN | MODE_EDIT) && prev_user != NULL) {
436         if (user_uid == 0 && strcmp(prev_user, "root") != 0) {
437             struct passwd *pw;
438
439             if ((pw = sudo_getpwnam(prev_user)) != NULL)
440                     sudo_user.pw = pw;
441         }
442     }
443
444     if (ISSET(validated, VALIDATE_OK)) {
445         /* Finally tell the user if the command did not exist. */
446         if (cmnd_status == NOT_FOUND_DOT) {
447             audit_failure(NewArgv, "command in current directory");
448             errorx(1, "ignoring `%s' found in '.'\nUse `sudo ./%s' if this is the `%s' you wish to run.", user_cmnd, user_cmnd, user_cmnd);
449         } else if (cmnd_status == NOT_FOUND) {
450             audit_failure(NewArgv, "%s: command not found", user_cmnd);
451             errorx(1, "%s: command not found", user_cmnd);
452         }
453
454         /* If user specified env vars make sure sudoers allows it. */
455         if (ISSET(sudo_mode, MODE_RUN) && !def_setenv) {
456             if (ISSET(sudo_mode, MODE_PRESERVE_ENV))
457                 log_error(NO_MAIL,
458                     "sorry, you are not allowed to preserve the environment");
459             else
460                 validate_env_vars(sudo_user.env_vars);
461         }
462
463         log_allowed(validated);
464         if (ISSET(sudo_mode, MODE_CHECK))
465             rc = display_cmnd(snl, list_pw ? list_pw : sudo_user.pw);
466         else if (ISSET(sudo_mode, MODE_LIST))
467             display_privs(snl, list_pw ? list_pw : sudo_user.pw);
468
469         /* Cleanup sudoers sources */
470         tq_foreach_fwd(snl, nss)
471             nss->close(nss);
472
473         /* Deferred exit due to sudo_ldap_close() */
474         if (ISSET(sudo_mode, (MODE_VALIDATE|MODE_CHECK|MODE_LIST)))
475             exit(rc);
476
477         /*
478          * Set umask based on sudoers.
479          * If user's umask is more restrictive, OR in those bits too
480          * unless umask_override is set.
481          */
482         if (def_umask != 0777) {
483             if (def_umask_override) {
484                 umask(def_umask);
485             } else {
486                 mode_t mask = umask(def_umask);
487                 mask |= def_umask;
488                 if (mask != def_umask)
489                     umask(mask);
490             }
491         }
492
493         /* Restore coredumpsize resource limit. */
494 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
495         (void) setrlimit(RLIMIT_CORE, &corelimit);
496 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
497
498         /* Must audit before uid change. */
499         audit_success(NewArgv);
500
501         /* Become specified user or root if executing a command. */
502         if (ISSET(sudo_mode, MODE_RUN))
503             set_perms(PERM_FULL_RUNAS);
504
505         if (ISSET(sudo_mode, MODE_LOGIN_SHELL)) {
506             char *p;
507
508             /* Convert /bin/sh -> -sh so shell knows it is a login shell */
509             if ((p = strrchr(NewArgv[0], '/')) == NULL)
510                 p = NewArgv[0];
511             *p = '-';
512             NewArgv[0] = p;
513
514             /* Change to target user's homedir. */
515             if (chdir(runas_pw->pw_dir) == -1)
516                 warning("unable to change directory to %s", runas_pw->pw_dir);
517
518 #if defined(__linux__) || defined(_AIX)
519             /* Insert system-wide environment variables. */
520             read_env_file(_PATH_ENVIRONMENT, TRUE);
521 #endif
522         }
523
524         if (ISSET(sudo_mode, MODE_EDIT))
525             exit(sudo_edit(NewArgc, NewArgv, envp));
526
527         /* Insert system-wide environment variables. */
528         if (def_env_file)
529             read_env_file(def_env_file, FALSE);
530
531         /* Insert user-specified environment variables. */
532         insert_env_vars(sudo_user.env_vars);
533
534         /* Restore signal handlers before we exec. */
535         (void) sigaction(SIGINT, &saved_sa_int, NULL);
536         (void) sigaction(SIGQUIT, &saved_sa_quit, NULL);
537         (void) sigaction(SIGTSTP, &saved_sa_tstp, NULL);
538
539         /* Close the password and group files and free up memory. */
540         sudo_endpwent();
541         sudo_endgrent();
542
543         closefrom(def_closefrom + 1);
544
545 #ifndef PROFILING
546         if (ISSET(sudo_mode, MODE_BACKGROUND) && fork() > 0) {
547             syslog(LOG_AUTH|LOG_ERR, "fork");
548             exit(0);
549         } else {
550 #ifdef HAVE_SELINUX
551             if (is_selinux_enabled() > 0 && user_role != NULL)
552                 selinux_exec(user_role, user_type, NewArgv,
553                     ISSET(sudo_mode, MODE_LOGIN_SHELL));
554 #endif
555             execv(safe_cmnd, NewArgv);
556         }
557 #else
558         exit(0);
559 #endif /* PROFILING */
560         /*
561          * If we got here then execve() failed...
562          */
563         if (errno == ENOEXEC) {
564             NewArgv--;                  /* at least one extra slot... */
565             NewArgv[0] = "sh";
566             NewArgv[1] = safe_cmnd;
567             execv(_PATH_BSHELL, NewArgv);
568         }
569         warning("unable to execute %s", safe_cmnd);
570         exit(127);
571     } else if (ISSET(validated, FLAG_NO_USER | FLAG_NO_HOST)) {
572         audit_failure(NewArgv, "No user or host");
573         log_denial(validated, 1);
574         exit(1);
575     } else {
576         if (def_path_info) {
577             /*
578              * We'd like to not leak path info at all here, but that can
579              * *really* confuse the users.  To really close the leak we'd
580              * have to say "not allowed to run foo" even when the problem
581              * is just "no foo in path" since the user can trivially set
582              * their path to just contain a single dir.
583              */
584             log_denial(validated,
585                 !(cmnd_status == NOT_FOUND_DOT || cmnd_status == NOT_FOUND));
586             if (cmnd_status == NOT_FOUND)
587                 warningx("%s: command not found", user_cmnd);
588             else if (cmnd_status == NOT_FOUND_DOT)
589                 warningx("ignoring `%s' found in '.'\nUse `sudo ./%s' if this is the `%s' you wish to run.", user_cmnd, user_cmnd, user_cmnd);
590         } else {
591             /* Just tell the user they are not allowed to run foo. */
592             log_denial(validated, 1);
593         }
594         audit_failure(NewArgv, "validation failure");
595         exit(1);
596     }
597     exit(0);    /* not reached */
598 }
599
600 /*
601  * Initialize timezone, set umask, fill in ``sudo_user'' struct and
602  * load the ``interfaces'' array.
603  */
604 static void
605 init_vars(sudo_mode, envp)
606     int sudo_mode;
607     char **envp;
608 {
609     char *p, **ep, thost[MAXHOSTNAMELEN + 1];
610     int nohostname;
611
612     /* Sanity check command from user. */
613     if (user_cmnd == NULL && strlen(NewArgv[0]) >= PATH_MAX)
614         errorx(1, "%s: File name too long", NewArgv[0]);
615
616 #ifdef HAVE_TZSET
617     (void) tzset();             /* set the timezone if applicable */
618 #endif /* HAVE_TZSET */
619
620     /* Default value for cmnd and cwd, overridden later. */
621     if (user_cmnd == NULL)
622         user_cmnd = NewArgv[0];
623     (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
624
625     /*
626      * We avoid gethostbyname() if possible since we don't want
627      * sudo to block if DNS or NIS is hosed.
628      * "host" is the (possibly fully-qualified) hostname and
629      * "shost" is the unqualified form of the hostname.
630      */
631     sudo_user.host_fqdn_queried = FALSE;
632     nohostname = gethostname(thost, sizeof(thost));
633     if (nohostname)
634         user_host = user_shost = "localhost";
635     else {
636         thost[sizeof(thost) - 1] = '\0';
637         user_host = estrdup(thost);
638         if (def_fqdn) {
639             /* Defer call to set_fqdn() until log_error() is safe. */
640             user_shost = user_host;
641         } else {
642             user_shost = user_host;
643         }
644     }
645
646     if ((p = ttyname(STDIN_FILENO)) || (p = ttyname(STDOUT_FILENO)) ||
647         (p = ttyname(STDERR_FILENO))) {
648         user_tty = user_ttypath = estrdup(p);
649         if (strncmp(user_tty, _PATH_DEV, sizeof(_PATH_DEV) - 1) == 0)
650             user_tty += sizeof(_PATH_DEV) - 1;
651     } else
652         user_tty = "unknown";
653
654     for (ep = envp; *ep; ep++) {
655         /* XXX - don't fill in if empty string */
656         switch (**ep) {
657             case 'D':
658                 if (strncmp("DISPLAY=", *ep, 8) == 0)
659                     user_display = *ep + 8;
660                 break;
661             case 'K':
662                 if (strncmp("KRB5CCNAME=", *ep, 11) == 0)
663                     user_ccname = *ep + 11;
664                 break;
665             case 'P':
666                 if (strncmp("PATH=", *ep, 5) == 0)
667                     user_path = *ep + 5;
668                 break;
669             case 'S':
670                 if (strncmp("SHELL=", *ep, 6) == 0)
671                     user_shell = *ep + 6;
672                 else if (!user_prompt && strncmp("SUDO_PROMPT=", *ep, 12) == 0)
673                     user_prompt = *ep + 12;
674                 else if (strncmp("SUDO_USER=", *ep, 10) == 0)
675                     prev_user = *ep + 10;
676                 else if (strncmp("SUDO_ASKPASS=", *ep, 13) == 0)
677                     user_askpass = *ep + 13;
678                 break;
679             }
680     }
681
682     /*
683      * Get a local copy of the user's struct passwd with the shadow password
684      * if necessary.  It is assumed that euid is 0 at this point so we
685      * can read the shadow passwd file if necessary.
686      */
687     if ((sudo_user.pw = sudo_getpwuid(getuid())) == NULL) {
688         /* Need to make a fake struct passwd for logging to work. */
689         struct passwd pw;
690         char pw_name[MAX_UID_T_LEN + 1];
691
692         pw.pw_uid = getuid();
693         (void) snprintf(pw_name, sizeof(pw_name), "%lu",
694             (unsigned long) pw.pw_uid);
695         pw.pw_name = pw_name;
696         sudo_user.pw = &pw;
697
698         /*
699          * If we are in -k/-K mode, just spew to stderr.  It is not unusual for
700          * users to place "sudo -k" in a .logout file which can cause sudo to
701          * be run during reboot after the YP/NIS/NIS+/LDAP/etc daemon has died.
702          */
703         if (sudo_mode == MODE_KILL || sudo_mode == MODE_INVALIDATE)
704             errorx(1, "unknown uid: %s", pw_name);
705         log_error(0, "unknown uid: %s", pw_name);
706     }
707     if (user_shell == NULL || *user_shell == '\0')
708         user_shell = estrdup(sudo_user.pw->pw_shell);
709
710     /* It is now safe to use log_error() and set_perms() */
711
712 #ifdef HAVE_GETGROUPS
713     if ((user_ngroups = getgroups(0, NULL)) > 0) {
714         user_groups = emalloc2(user_ngroups, sizeof(GETGROUPS_T));
715         if (getgroups(user_ngroups, user_groups) < 0)
716             log_error(USE_ERRNO|MSG_ONLY, "can't get group vector");
717     } else
718         user_ngroups = 0;
719 #endif
720
721     if (def_fqdn)
722         set_fqdn();                     /* may call log_error() */
723
724     if (nohostname)
725         log_error(USE_ERRNO|MSG_ONLY, "can't get hostname");
726
727     /*
728      * Get current working directory.  Try as user, fall back to root.
729      */
730     set_perms(PERM_USER);
731     if (!getcwd(user_cwd, sizeof(user_cwd))) {
732         set_perms(PERM_ROOT);
733         if (!getcwd(user_cwd, sizeof(user_cwd))) {
734             warningx("cannot get working directory");
735             (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
736         }
737     } else
738         set_perms(PERM_ROOT);
739
740     /*
741      * If we were given the '-e', '-i' or '-s' options we need to redo
742      * NewArgv and NewArgc.
743      */
744     if (ISSET(sudo_mode, MODE_EDIT)) {
745         NewArgv--;
746         NewArgc++;
747         NewArgv[0] = "sudoedit";
748     } else if (ISSET(sudo_mode, MODE_SHELL)) {
749         char **av;
750
751         /* Allocate an extra slot for execve() failure (ENOEXEC). */
752         av = (char **) emalloc2(5, sizeof(char *));
753         av++;
754
755         av[0] = user_shell;     /* may be updated later */
756         if (NewArgc > 0) {
757             size_t size;
758             char *cmnd, *src, *dst, *end;
759             size = (size_t) (NewArgv[NewArgc - 1] - NewArgv[0]) +
760                     strlen(NewArgv[NewArgc - 1]) + 1;
761             cmnd = emalloc(size);
762             src = NewArgv[0];
763             dst = cmnd;
764             for (end = src + size - 1; src < end; src++, dst++)
765                 *dst = *src == 0 ? ' ' : *src;
766             *dst = '\0';
767             av[1] = "-c";
768             av[2] = cmnd;
769             NewArgc = 2;
770         }
771         av[++NewArgc] = NULL;
772         NewArgv = av;
773     }
774 }
775
776 /*
777  * Fill in user_cmnd, user_args, user_base and user_stat variables
778  * and apply any command-specific defaults entries.
779  */
780 static int
781 set_cmnd(sudo_mode)
782     int sudo_mode;
783 {
784     int rval;
785
786     /* Set project if applicable. */
787     set_project(runas_pw);
788
789     /* Resolve the path and return. */
790     rval = FOUND;
791     user_stat = emalloc(sizeof(struct stat));
792     if (sudo_mode & (MODE_RUN | MODE_EDIT | MODE_CHECK)) {
793         if (ISSET(sudo_mode, MODE_RUN | MODE_CHECK)) {
794             set_perms(PERM_RUNAS);
795             rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
796             set_perms(PERM_ROOT);
797             if (rval != FOUND) {
798                 /* Failed as root, try as invoking user. */
799                 set_perms(PERM_USER);
800                 rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
801                 set_perms(PERM_ROOT);
802             }
803         }
804
805         /* set user_args */
806         if (NewArgc > 1) {
807             char *to, **from;
808             size_t size, n;
809
810             /* If we didn't realloc NewArgv it is contiguous so just count. */
811             if (!ISSET(sudo_mode, MODE_SHELL)) {
812                 size = (size_t) (NewArgv[NewArgc-1] - NewArgv[1]) +
813                         strlen(NewArgv[NewArgc-1]) + 1;
814             } else {
815                 for (size = 0, from = NewArgv + 1; *from; from++)
816                     size += strlen(*from) + 1;
817             }
818
819             /* Alloc and build up user_args. */
820             user_args = (char *) emalloc(size);
821             for (to = user_args, from = NewArgv + 1; *from; from++) {
822                 n = strlcpy(to, *from, size - (to - user_args));
823                 if (n >= size - (to - user_args))
824                     errorx(1, "internal error, init_vars() overflow");
825                 to += n;
826                 *to++ = ' ';
827             }
828             *--to = '\0';
829         }
830     }
831     if ((user_base = strrchr(user_cmnd, '/')) != NULL)
832         user_base++;
833     else
834         user_base = user_cmnd;
835
836     if (!update_defaults(SETDEF_CMND))
837         log_error(NO_STDERR|NO_EXIT, "problem with defaults entries");
838
839     if (!runas_user && !runas_group)
840         set_runaspw(def_runas_default); /* may have been updated above */
841
842     return(rval);
843 }
844
845 /*
846  * Command line argument parsing.
847  * Sets NewArgc and NewArgv which corresponds to the argc/argv we'll use
848  * for the command to be run (if we are running one).
849  */
850 static int
851 parse_args(argc, argv)
852     int argc;
853     char **argv;
854 {
855     int mode = 0;               /* what mode is sudo to be run in? */
856     int flags = 0;              /* mode flags */
857     int valid_flags, ch;
858
859     /* First, check to see if we were invoked as "sudoedit". */
860     if (strcmp(getprogname(), "sudoedit") == 0)
861         mode = MODE_EDIT;
862
863     /* Returns true if the last option string was "--" */
864 #define got_end_of_args (optind > 1 && argv[optind - 1][0] == '-' && \
865             argv[optind - 1][1] == '-' && argv[optind - 1][2] == '\0')
866
867     /* Returns true if next option is an environment variable */
868 #define is_envar (optind < argc && argv[optind][0] != '/' && \
869             strchr(argv[optind], '=') != NULL)
870
871     /* Flags allowed when running a command */
872     valid_flags = MODE_BACKGROUND|MODE_PRESERVE_ENV|MODE_RESET_HOME|
873                   MODE_LOGIN_SHELL|MODE_INVALIDATE|MODE_NONINTERACTIVE|
874                   MODE_PRESERVE_GROUPS|MODE_SHELL;
875     for (;;) {
876         /*
877          * We disable arg permutation for GNU getopt().
878          * Some trickiness is required to allow environment variables
879          * to be interspersed with command line options.
880          */
881         if ((ch = getopt(argc, argv, "+Aa:bC:c:Eeg:HhiKkLlnPp:r:Sst:U:u:Vv")) != -1) {
882             switch (ch) {
883                 case 'A':
884                     SET(tgetpass_flags, TGP_ASKPASS);
885                     break;
886 #ifdef HAVE_BSD_AUTH_H
887                 case 'a':
888                     login_style = optarg;
889                     break;
890 #endif
891                 case 'b':
892                     SET(flags, MODE_BACKGROUND);
893                     break;
894                 case 'C':
895                     if ((user_closefrom = atoi(optarg)) < 3) {
896                         warningx("the argument to -C must be at least 3");
897                         usage(1);
898                     }
899                     break;
900 #ifdef HAVE_LOGIN_CAP_H
901                 case 'c':
902                     login_class = optarg;
903                     def_use_loginclass = TRUE;
904                     break;
905 #endif
906                 case 'E':
907                     SET(flags, MODE_PRESERVE_ENV);
908                     break;
909                 case 'e':
910                     if (mode && mode != MODE_EDIT)
911                         usage_excl(1);
912                     mode = MODE_EDIT;
913                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
914                     break;
915                 case 'g':
916                     runas_group = optarg;
917                     break;
918                 case 'H':
919                     SET(flags, MODE_RESET_HOME);
920                     break;
921                 case 'h':
922                     if (mode && mode != MODE_HELP) {
923                         if (strcmp(getprogname(), "sudoedit") != 0)
924                             usage_excl(1);
925                     }
926                     mode = MODE_HELP;
927                     valid_flags = 0;
928                     break;
929                 case 'i':
930                     SET(flags, MODE_LOGIN_SHELL);
931                     def_env_reset = TRUE;
932                     break;
933                 case 'k':
934                     SET(flags, MODE_INVALIDATE);
935                     break;
936                 case 'K':
937                     if (mode && mode != MODE_KILL)
938                         usage_excl(1);
939                     mode = MODE_KILL;
940                     valid_flags = 0;
941                     break;
942                 case 'L':
943                     if (mode && mode != MODE_LISTDEFS)
944                         usage_excl(1);
945                     mode = MODE_LISTDEFS;
946                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
947                     break;
948                 case 'l':
949                     if (mode) {
950                         if (mode == MODE_LIST)
951                             long_list = 1;
952                         else
953                             usage_excl(1);
954                     }
955                     mode = MODE_LIST;
956                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
957                     break;
958                 case 'n':
959                     SET(flags, MODE_NONINTERACTIVE);
960                     break;
961                 case 'P':
962                     SET(flags, MODE_PRESERVE_GROUPS);
963                     break;
964                 case 'p':
965                     user_prompt = optarg;
966                     def_passprompt_override = TRUE;
967                     break;
968 #ifdef HAVE_SELINUX
969                 case 'r':
970                     user_role = optarg;
971                     break;
972                 case 't':
973                     user_type = optarg;
974                     break;
975 #endif
976                 case 'S':
977                     SET(tgetpass_flags, TGP_STDIN);
978                     break;
979                 case 's':
980                     SET(flags, MODE_SHELL);
981                     break;
982                 case 'U':
983                     if ((list_pw = sudo_getpwnam(optarg)) == NULL)
984                         errorx(1, "unknown user: %s", optarg);
985                     break;
986                 case 'u':
987                     runas_user = optarg;
988                     break;
989                 case 'v':
990                     if (mode && mode != MODE_VALIDATE)
991                         usage_excl(1);
992                     mode = MODE_VALIDATE;
993                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
994                     break;
995                 case 'V':
996                     if (mode && mode != MODE_VERSION)
997                         usage_excl(1);
998                     mode = MODE_VERSION;
999                     valid_flags = 0;
1000                     break;
1001                 default:
1002                     usage(1);
1003             }
1004         } else if (!got_end_of_args && is_envar) {
1005             struct list_member *ev;
1006
1007             /* Store environment variable. */
1008             ev = emalloc(sizeof(*ev));
1009             ev->value = argv[optind];
1010             ev->next = sudo_user.env_vars;
1011             sudo_user.env_vars = ev;
1012
1013             /* Crank optind and resume getopt. */
1014             optind++;
1015         } else {
1016             /* Not an option or an environment variable -- we're done. */
1017             break;
1018         }
1019     }
1020
1021     NewArgc = argc - optind;
1022     NewArgv = argv + optind;
1023
1024     if (!mode) {
1025         /* Defer -k mode setting until we know whether it is a flag or not */
1026         if (ISSET(flags, MODE_INVALIDATE) && NewArgc == 0) {
1027             mode = MODE_INVALIDATE;     /* -k by itself */
1028             CLR(flags, MODE_INVALIDATE);
1029             valid_flags = 0;
1030         } else {
1031             mode = MODE_RUN;            /* running a command */
1032         }
1033     }
1034
1035     if (NewArgc > 0 && mode == MODE_LIST)
1036         mode = MODE_CHECK;
1037
1038     if (ISSET(flags, MODE_LOGIN_SHELL)) {
1039         if (ISSET(flags, MODE_SHELL)) {
1040             warningx("you may not specify both the `-i' and `-s' options");
1041             usage(1);
1042         }
1043         if (ISSET(flags, MODE_PRESERVE_ENV)) {
1044             warningx("you may not specify both the `-i' and `-E' options");
1045             usage(1);
1046         }
1047         SET(flags, MODE_SHELL);
1048     }
1049     if ((flags & valid_flags) != flags)
1050         usage(1);
1051     if (mode == MODE_EDIT &&
1052        (ISSET(flags, MODE_PRESERVE_ENV) || sudo_user.env_vars != NULL)) {
1053         if (ISSET(mode, MODE_PRESERVE_ENV))
1054             warningx("the `-E' option is not valid in edit mode");
1055         if (sudo_user.env_vars != NULL)
1056             warningx("you may not specify environment variables in edit mode");
1057         usage(1);
1058     }
1059     if ((runas_user != NULL || runas_group != NULL) &&
1060         !ISSET(mode, MODE_EDIT | MODE_RUN | MODE_CHECK)) {
1061         usage(1);
1062     }
1063     if (list_pw != NULL && mode != MODE_LIST && mode != MODE_CHECK) {
1064         warningx("the `-U' option may only be used with the `-l' option");
1065         usage(1);
1066     }
1067     if (ISSET(tgetpass_flags, TGP_STDIN) && ISSET(tgetpass_flags, TGP_ASKPASS)) {
1068         warningx("the `-A' and `-S' options may not be used together");
1069         usage(1);
1070     }
1071     if ((NewArgc == 0 && mode == MODE_EDIT) ||
1072         (NewArgc > 0 && !ISSET(mode, MODE_RUN | MODE_EDIT | MODE_CHECK)))
1073         usage(1);
1074     if (NewArgc == 0 && mode == MODE_RUN && !ISSET(flags, MODE_SHELL))
1075         SET(flags, (MODE_IMPLIED_SHELL | MODE_SHELL));
1076
1077     return(mode | flags);
1078 }
1079
1080 /*
1081  * Open sudoers and sanity check mode/owner/type.
1082  * Returns a handle to the sudoers file or NULL on error.
1083  */
1084 FILE *
1085 open_sudoers(sudoers, doedit, keepopen)
1086     const char *sudoers;
1087     int doedit;
1088     int *keepopen;
1089 {
1090     struct stat statbuf;
1091     FILE *fp = NULL;
1092     int rootstat;
1093
1094     /*
1095      * Fix the mode and group on sudoers file from old default.
1096      * Only works if file system is readable/writable by root.
1097      */
1098     if ((rootstat = stat_sudoers(sudoers, &statbuf)) == 0 &&
1099         SUDOERS_UID == statbuf.st_uid && SUDOERS_MODE != 0400 &&
1100         (statbuf.st_mode & 0007777) == 0400) {
1101
1102         if (chmod(sudoers, SUDOERS_MODE) == 0) {
1103             warningx("fixed mode on %s", sudoers);
1104             SET(statbuf.st_mode, SUDOERS_MODE);
1105             if (statbuf.st_gid != SUDOERS_GID) {
1106                 if (chown(sudoers, (uid_t) -1, SUDOERS_GID) == 0) {
1107                     warningx("set group on %s", sudoers);
1108                     statbuf.st_gid = SUDOERS_GID;
1109                 } else
1110                     warning("unable to set group on %s", sudoers);
1111             }
1112         } else
1113             warning("unable to fix mode on %s", sudoers);
1114     }
1115
1116     /*
1117      * Sanity checks on sudoers file.  Must be done as sudoers
1118      * file owner.  We already did a stat as root, so use that
1119      * data if we can't stat as sudoers file owner.
1120      */
1121     set_perms(PERM_SUDOERS);
1122
1123     if (rootstat != 0 && stat_sudoers(sudoers, &statbuf) != 0)
1124         log_error(USE_ERRNO|NO_EXIT, "can't stat %s", sudoers);
1125     else if (!S_ISREG(statbuf.st_mode))
1126         log_error(NO_EXIT, "%s is not a regular file", sudoers);
1127     else if ((statbuf.st_mode & 07777) != SUDOERS_MODE)
1128         log_error(NO_EXIT, "%s is mode 0%o, should be 0%o", sudoers,
1129             (unsigned int) (statbuf.st_mode & 07777),
1130             (unsigned int) SUDOERS_MODE);
1131     else if (statbuf.st_uid != SUDOERS_UID)
1132         log_error(NO_EXIT, "%s is owned by uid %lu, should be %lu", sudoers,
1133             (unsigned long) statbuf.st_uid, (unsigned long) SUDOERS_UID);
1134     else if (statbuf.st_gid != SUDOERS_GID)
1135         log_error(NO_EXIT, "%s is owned by gid %lu, should be %lu", sudoers,
1136             (unsigned long) statbuf.st_gid, (unsigned long) SUDOERS_GID);
1137     else if ((fp = fopen(sudoers, "r")) == NULL)
1138         log_error(USE_ERRNO|NO_EXIT, "can't open %s", sudoers);
1139     else {
1140         /*
1141          * Make sure we can actually read sudoers so we can present the
1142          * user with a reasonable error message (unlike the lexer).
1143          */
1144         if (statbuf.st_size != 0 && fgetc(fp) == EOF) {
1145             log_error(USE_ERRNO|NO_EXIT, "can't read %s", sudoers);
1146             fclose(fp);
1147             fp = NULL;
1148         }
1149     }
1150
1151     if (fp != NULL) {
1152         rewind(fp);
1153         (void) fcntl(fileno(fp), F_SETFD, 1);
1154     }
1155
1156     set_perms(PERM_ROOT);               /* change back to root */
1157     return(fp);
1158 }
1159
1160 /*
1161  * Close all open files (except std*) and turn off core dumps.
1162  * Also sets the set_perms() pointer to the correct function.
1163  */
1164 static void
1165 initial_setup()
1166 {
1167     int miss[3], devnull = -1;
1168 #if defined(__linux__) || (defined(RLIMIT_CORE) && !defined(SUDO_DEVEL))
1169     struct rlimit rl;
1170 #endif
1171
1172 #if defined(__linux__)
1173     /*
1174      * Unlimit the number of processes since Linux's setuid() will
1175      * apply resource limits when changing uid and return EAGAIN if
1176      * nproc would be violated by the uid switch.
1177      */
1178     rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
1179     if (setrlimit(RLIMIT_NPROC, &rl)) {
1180         if (getrlimit(RLIMIT_NPROC, &rl) == 0) {
1181             rl.rlim_cur = rl.rlim_max;
1182             (void)setrlimit(RLIMIT_NPROC, &rl);
1183         }
1184     }
1185 #endif /* __linux__ */
1186 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
1187     /*
1188      * Turn off core dumps.
1189      */
1190     (void) getrlimit(RLIMIT_CORE, &corelimit);
1191     memcpy(&rl, &corelimit, sizeof(struct rlimit));
1192     rl.rlim_cur = 0;
1193     (void) setrlimit(RLIMIT_CORE, &rl);
1194 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
1195
1196     /*
1197      * stdin, stdout and stderr must be open; set them to /dev/null
1198      * if they are closed and close all other fds.
1199      */
1200     miss[STDIN_FILENO] = fcntl(STDIN_FILENO, F_GETFL, 0) == -1;
1201     miss[STDOUT_FILENO] = fcntl(STDOUT_FILENO, F_GETFL, 0) == -1;
1202     miss[STDERR_FILENO] = fcntl(STDERR_FILENO, F_GETFL, 0) == -1;
1203     if (miss[STDIN_FILENO] || miss[STDOUT_FILENO] || miss[STDERR_FILENO]) {
1204         if ((devnull = open(_PATH_DEVNULL, O_RDWR, 0644)) != -1) {
1205             if (miss[STDIN_FILENO])
1206                 (void) dup2(devnull, STDIN_FILENO);
1207             if (miss[STDOUT_FILENO])
1208                 (void) dup2(devnull, STDOUT_FILENO);
1209             if (miss[STDERR_FILENO])
1210                 (void) dup2(devnull, STDERR_FILENO);
1211             if (devnull > STDERR_FILENO)
1212                 close(devnull);
1213         }
1214     }
1215 }
1216
1217 #ifdef HAVE_LOGIN_CAP_H
1218 static void
1219 set_loginclass(pw)
1220     struct passwd *pw;
1221 {
1222     int errflags;
1223
1224     /*
1225      * Don't make it a fatal error if the user didn't specify the login
1226      * class themselves.  We do this because if login.conf gets
1227      * corrupted we want the admin to be able to use sudo to fix it.
1228      */
1229     if (login_class)
1230         errflags = NO_MAIL|MSG_ONLY;
1231     else
1232         errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1233
1234     if (login_class && strcmp(login_class, "-") != 0) {
1235         if (user_uid != 0 &&
1236             strcmp(runas_user ? runas_user : def_runas_default, "root") != 0)
1237             errorx(1, "only root can use -c %s", login_class);
1238     } else {
1239         login_class = pw->pw_class;
1240         if (!login_class || !*login_class)
1241             login_class =
1242                 (pw->pw_uid == 0) ? LOGIN_DEFROOTCLASS : LOGIN_DEFCLASS;
1243     }
1244
1245     lc = login_getclass(login_class);
1246     if (!lc || !lc->lc_class || strcmp(lc->lc_class, login_class) != 0) {
1247         log_error(errflags, "unknown login class: %s", login_class);
1248         if (!lc)
1249             lc = login_getclass(NULL);  /* needed for login_getstyle() later */
1250     }
1251 }
1252 #else
1253 static void
1254 set_loginclass(pw)
1255     struct passwd *pw;
1256 {
1257 }
1258 #endif /* HAVE_LOGIN_CAP_H */
1259
1260 #ifdef HAVE_PROJECT_H
1261 static void
1262 set_project(pw)
1263     struct passwd *pw;
1264 {
1265     int errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1266     int errval;
1267     struct project proj;
1268     struct project *resultp = '\0';
1269     char buf[1024];
1270
1271     /*
1272      * Collect the default project for the user and settaskid
1273      */
1274     setprojent();
1275     if (resultp = getdefaultproj(pw->pw_name, &proj, buf, sizeof(buf))) {
1276         errval = setproject(resultp->pj_name, pw->pw_name, TASK_NORMAL);
1277         if (errval != 0) {
1278             switch(errval) {
1279             case SETPROJ_ERR_TASK:
1280                 if (errno == EAGAIN)
1281                     log_error(errflags, "resource control limit has been reached");
1282                 else if (errno == ESRCH)
1283                     log_error(errflags, "user \"%s\" is not a member of "
1284                         "project \"%s\"", pw->pw_name, resultp->pj_name);
1285                 else if (errno == EACCES)
1286                     log_error(errflags, "the invoking task is final");
1287                 else
1288                     log_error(errflags, "could not join project \"%s\"",
1289                         resultp->pj_name);
1290                 break;
1291             case SETPROJ_ERR_POOL:
1292                 if (errno == EACCES)
1293                     log_error(errflags, "no resource pool accepting "
1294                             "default bindings exists for project \"%s\"",
1295                             resultp->pj_name);
1296                 else if (errno == ESRCH)
1297                     log_error(errflags, "specified resource pool does "
1298                             "not exist for project \"%s\"", resultp->pj_name);
1299                 else
1300                     log_error(errflags, "could not bind to default "
1301                             "resource pool for project \"%s\"", resultp->pj_name);
1302                 break;
1303             default:
1304                 if (errval <= 0) {
1305                     log_error(errflags, "setproject failed for project \"%s\"",
1306                         resultp->pj_name);
1307                 } else {
1308                     log_error(errflags, "warning, resource control assignment "
1309                         "failed for project \"%s\"", resultp->pj_name);
1310                 }
1311             }
1312         }
1313     } else {
1314         log_error(errflags, "getdefaultproj() error: %s", strerror(errno));
1315     }
1316     endprojent();
1317 }
1318 #else
1319 static void
1320 set_project(pw)
1321     struct passwd *pw;
1322 {
1323 }
1324 #endif /* HAVE_PROJECT_H */
1325
1326 /*
1327  * Look up the fully qualified domain name and set user_host and user_shost.
1328  */
1329 void
1330 set_fqdn()
1331 {
1332 #ifdef HAVE_GETADDRINFO
1333     struct addrinfo *res0, hint;
1334 #else
1335     struct hostent *hp;
1336 #endif
1337     char *p;
1338
1339 #ifdef HAVE_GETADDRINFO
1340     zero_bytes(&hint, sizeof(hint));
1341     hint.ai_family = PF_UNSPEC;
1342     hint.ai_flags = AI_CANONNAME;
1343     if (getaddrinfo(user_host, NULL, &hint, &res0) != 0) {
1344 #else
1345     if (!(hp = gethostbyname(user_host))) {
1346 #endif
1347         log_error(MSG_ONLY|NO_EXIT,
1348             "unable to resolve host %s", user_host);
1349     } else {
1350         if (user_shost != user_host)
1351             efree(user_shost);
1352         efree(user_host);
1353 #ifdef HAVE_GETADDRINFO
1354         user_host = estrdup(res0->ai_canonname);
1355         freeaddrinfo(res0);
1356 #else
1357         user_host = estrdup(hp->h_name);
1358 #endif
1359     }
1360     if ((p = strchr(user_host, '.'))) {
1361         *p = '\0';
1362         user_shost = estrdup(user_host);
1363         *p = '.';
1364     } else {
1365         user_shost = user_host;
1366     }
1367     sudo_user.host_fqdn_queried = TRUE;
1368 }
1369
1370 /*
1371  * Get passwd entry for the user we are going to run commands as.
1372  * By default, this is "root".  Updates runas_pw as a side effect.
1373  */
1374 static void
1375 set_runaspw(user)
1376     char *user;
1377 {
1378     if (*user == '#') {
1379         if ((runas_pw = sudo_getpwuid(atoi(user + 1))) == NULL)
1380             runas_pw = sudo_fakepwnam(user, runas_gr ? runas_gr->gr_gid : 0);
1381     } else {
1382         if ((runas_pw = sudo_getpwnam(user)) == NULL) {
1383             audit_failure(NewArgv, "unknown user: %s", user);
1384             log_error(NO_MAIL|MSG_ONLY, "unknown user: %s", user);
1385         }
1386     }
1387 }
1388
1389 /*
1390  * Get group entry for the group we are going to run commands as.
1391  * Updates runas_pw as a side effect.
1392  */
1393 static void
1394 set_runasgr(group)
1395     char *group;
1396 {
1397     if (*group == '#') {
1398         if ((runas_gr = sudo_getgrgid(atoi(group + 1))) == NULL)
1399             runas_gr = sudo_fakegrnam(group);
1400     } else {
1401         if ((runas_gr = sudo_getgrnam(group)) == NULL)
1402             log_error(NO_MAIL|MSG_ONLY, "unknown group: %s", group);
1403     }
1404 }
1405
1406 /*
1407  * Get passwd entry for the user we are going to authenticate as.
1408  * By default, this is the user invoking sudo.  In the most common
1409  * case, this matches sudo_user.pw or runas_pw.
1410  */
1411 static struct passwd *
1412 get_authpw()
1413 {
1414     struct passwd *pw;
1415
1416     if (def_rootpw) {
1417         if ((pw = sudo_getpwuid(0)) == NULL)
1418             log_error(0, "unknown uid: 0");
1419     } else if (def_runaspw) {
1420         if ((pw = sudo_getpwnam(def_runas_default)) == NULL)
1421             log_error(0, "unknown user: %s", def_runas_default);
1422     } else if (def_targetpw) {
1423         if (runas_pw->pw_name == NULL)
1424             log_error(NO_MAIL|MSG_ONLY, "unknown uid: %lu",
1425                 (unsigned long) runas_pw->pw_uid);
1426         pw = runas_pw;
1427     } else
1428         pw = sudo_user.pw;
1429
1430     return(pw);
1431 }
1432
1433 /*
1434  * Cleanup hook for error()/errorx()
1435  */
1436 void
1437 cleanup(gotsignal)
1438     int gotsignal;
1439 {
1440     struct sudo_nss *nss;
1441
1442     if (!gotsignal) {
1443         if (snl != NULL) {
1444             tq_foreach_fwd(snl, nss)
1445                 nss->close(nss);
1446         }
1447         sudo_endpwent();
1448         sudo_endgrent();
1449     }
1450 }
1451
1452 static void
1453 show_version()
1454 {
1455     (void) printf("Sudo version %s\n", PACKAGE_VERSION);
1456     if (getuid() == 0) {
1457         putchar('\n');
1458         (void) printf("Sudoers path: %s\n", _PATH_SUDOERS);
1459 #ifdef HAVE_LDAP
1460 # ifdef _PATH_NSSWITCH_CONF
1461         (void) printf("nsswitch path: %s\n", _PATH_NSSWITCH_CONF);
1462 # endif
1463         (void) printf("ldap.conf path: %s\n", _PATH_LDAP_CONF);
1464         (void) printf("ldap.secret path: %s\n", _PATH_LDAP_SECRET);
1465 #endif
1466         dump_auth_methods();
1467         dump_defaults();
1468         dump_interfaces();
1469     }
1470     exit(0);
1471 }
1472
1473 /*
1474  * Tell which options are mutually exclusive and exit.
1475  */
1476 static void
1477 usage_excl(exit_val)
1478     int exit_val;
1479 {
1480     warningx("Only one of the -e, -h, -i, -K, -l, -s, -v or -V options may be specified");
1481     usage(exit_val);
1482 }
1483
1484 /*
1485  * Give usage message and exit.
1486  * The actual usage strings are in sudo_usage.h for configure substitution.
1487  */
1488 static void
1489 usage(exit_val)
1490     int exit_val;
1491 {
1492     struct lbuf lbuf;
1493     char *uvec[6];
1494     int i, ulen;
1495
1496     /*
1497      * Use usage vectors appropriate to the progname.
1498      */
1499     if (strcmp(getprogname(), "sudoedit") == 0) {
1500         uvec[0] = SUDO_USAGE5 + 3;
1501         uvec[1] = NULL;
1502     } else {
1503         uvec[0] = SUDO_USAGE1;
1504         uvec[1] = SUDO_USAGE2;
1505         uvec[2] = SUDO_USAGE3;
1506         uvec[3] = SUDO_USAGE4;
1507         uvec[4] = SUDO_USAGE5;
1508         uvec[5] = NULL;
1509     }
1510
1511     /*
1512      * Print usage and wrap lines as needed, depending on the
1513      * tty width.
1514      */
1515     ulen = (int)strlen(getprogname()) + 8;
1516     lbuf_init(&lbuf, NULL, ulen, 0);
1517     for (i = 0; uvec[i] != NULL; i++) {
1518         lbuf_append(&lbuf, "usage: ", getprogname(), uvec[i], NULL);
1519         lbuf_print(&lbuf);
1520     }
1521     lbuf_destroy(&lbuf);
1522     exit(exit_val);
1523 }