switch from rcS.d to rc[0-6].d
[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         user_tty = user_ttypath = estrdup(p);
648         if (strncmp(user_tty, _PATH_DEV, sizeof(_PATH_DEV) - 1) == 0)
649             user_tty += sizeof(_PATH_DEV) - 1;
650     } else
651         user_tty = "unknown";
652
653     for (ep = envp; *ep; ep++) {
654         /* XXX - don't fill in if empty string */
655         switch (**ep) {
656             case 'D':
657                 if (strncmp("DISPLAY=", *ep, 8) == 0)
658                     user_display = *ep + 8;
659                 break;
660             case 'K':
661                 if (strncmp("KRB5CCNAME=", *ep, 11) == 0)
662                     user_ccname = *ep + 11;
663                 break;
664             case 'P':
665                 if (strncmp("PATH=", *ep, 5) == 0)
666                     user_path = *ep + 5;
667                 break;
668             case 'S':
669                 if (strncmp("SHELL=", *ep, 6) == 0)
670                     user_shell = *ep + 6;
671                 else if (!user_prompt && strncmp("SUDO_PROMPT=", *ep, 12) == 0)
672                     user_prompt = *ep + 12;
673                 else if (strncmp("SUDO_USER=", *ep, 10) == 0)
674                     prev_user = *ep + 10;
675                 else if (strncmp("SUDO_ASKPASS=", *ep, 13) == 0)
676                     user_askpass = *ep + 13;
677                 break;
678             }
679     }
680
681     /*
682      * Get a local copy of the user's struct passwd with the shadow password
683      * if necessary.  It is assumed that euid is 0 at this point so we
684      * can read the shadow passwd file if necessary.
685      */
686     if ((sudo_user.pw = sudo_getpwuid(getuid())) == NULL) {
687         /* Need to make a fake struct passwd for logging to work. */
688         struct passwd pw;
689         char pw_name[MAX_UID_T_LEN + 1];
690
691         pw.pw_uid = getuid();
692         (void) snprintf(pw_name, sizeof(pw_name), "%lu",
693             (unsigned long) pw.pw_uid);
694         pw.pw_name = pw_name;
695         sudo_user.pw = &pw;
696
697         /*
698          * If we are in -k/-K mode, just spew to stderr.  It is not unusual for
699          * users to place "sudo -k" in a .logout file which can cause sudo to
700          * be run during reboot after the YP/NIS/NIS+/LDAP/etc daemon has died.
701          */
702         if (sudo_mode == MODE_KILL || sudo_mode == MODE_INVALIDATE)
703             errorx(1, "unknown uid: %s", pw_name);
704         log_error(0, "unknown uid: %s", pw_name);
705     }
706     if (user_shell == NULL || *user_shell == '\0')
707         user_shell = estrdup(sudo_user.pw->pw_shell);
708
709     /* It is now safe to use log_error() and set_perms() */
710
711 #ifdef HAVE_GETGROUPS
712     if ((user_ngroups = getgroups(0, NULL)) > 0) {
713         user_groups = emalloc2(user_ngroups, sizeof(GETGROUPS_T));
714         if (getgroups(user_ngroups, user_groups) < 0)
715             log_error(USE_ERRNO|MSG_ONLY, "can't get group vector");
716     } else
717         user_ngroups = 0;
718 #endif
719
720     if (def_fqdn)
721         set_fqdn();                     /* may call log_error() */
722
723     if (nohostname)
724         log_error(USE_ERRNO|MSG_ONLY, "can't get hostname");
725
726     /*
727      * Get current working directory.  Try as user, fall back to root.
728      */
729     set_perms(PERM_USER);
730     if (!getcwd(user_cwd, sizeof(user_cwd))) {
731         set_perms(PERM_ROOT);
732         if (!getcwd(user_cwd, sizeof(user_cwd))) {
733             warningx("cannot get working directory");
734             (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
735         }
736     } else
737         set_perms(PERM_ROOT);
738
739     /*
740      * If we were given the '-e', '-i' or '-s' options we need to redo
741      * NewArgv and NewArgc.
742      */
743     if (ISSET(sudo_mode, MODE_EDIT)) {
744         NewArgv--;
745         NewArgc++;
746         NewArgv[0] = "sudoedit";
747     } else if (ISSET(sudo_mode, MODE_SHELL)) {
748         char **av;
749
750         /* Allocate an extra slot for execve() failure (ENOEXEC). */
751         av = (char **) emalloc2(5, sizeof(char *));
752         av++;
753
754         av[0] = user_shell;     /* may be updated later */
755         if (NewArgc > 0) {
756             size_t size;
757             char *cmnd, *src, *dst, *end;
758             size = (size_t) (NewArgv[NewArgc - 1] - NewArgv[0]) +
759                     strlen(NewArgv[NewArgc - 1]) + 1;
760             cmnd = emalloc(size);
761             src = NewArgv[0];
762             dst = cmnd;
763             for (end = src + size - 1; src < end; src++, dst++)
764                 *dst = *src == 0 ? ' ' : *src;
765             *dst = '\0';
766             av[1] = "-c";
767             av[2] = cmnd;
768             NewArgc = 2;
769         }
770         av[++NewArgc] = NULL;
771         NewArgv = av;
772     }
773 }
774
775 /*
776  * Fill in user_cmnd, user_args, user_base and user_stat variables
777  * and apply any command-specific defaults entries.
778  */
779 static int
780 set_cmnd(sudo_mode)
781     int sudo_mode;
782 {
783     int rval;
784
785     /* Set project if applicable. */
786     set_project(runas_pw);
787
788     /* Resolve the path and return. */
789     rval = FOUND;
790     user_stat = emalloc(sizeof(struct stat));
791     if (sudo_mode & (MODE_RUN | MODE_EDIT | MODE_CHECK)) {
792         if (ISSET(sudo_mode, MODE_RUN | MODE_CHECK)) {
793             set_perms(PERM_RUNAS);
794             rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
795             set_perms(PERM_ROOT);
796             if (rval != FOUND) {
797                 /* Failed as root, try as invoking user. */
798                 set_perms(PERM_USER);
799                 rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
800                 set_perms(PERM_ROOT);
801             }
802         }
803
804         /* set user_args */
805         if (NewArgc > 1) {
806             char *to, **from;
807             size_t size, n;
808
809             /* If we didn't realloc NewArgv it is contiguous so just count. */
810             if (!ISSET(sudo_mode, MODE_SHELL)) {
811                 size = (size_t) (NewArgv[NewArgc-1] - NewArgv[1]) +
812                         strlen(NewArgv[NewArgc-1]) + 1;
813             } else {
814                 for (size = 0, from = NewArgv + 1; *from; from++)
815                     size += strlen(*from) + 1;
816             }
817
818             /* Alloc and build up user_args. */
819             user_args = (char *) emalloc(size);
820             for (to = user_args, from = NewArgv + 1; *from; from++) {
821                 n = strlcpy(to, *from, size - (to - user_args));
822                 if (n >= size - (to - user_args))
823                     errorx(1, "internal error, init_vars() overflow");
824                 to += n;
825                 *to++ = ' ';
826             }
827             *--to = '\0';
828         }
829     }
830     if ((user_base = strrchr(user_cmnd, '/')) != NULL)
831         user_base++;
832     else
833         user_base = user_cmnd;
834
835     if (!update_defaults(SETDEF_CMND))
836         log_error(NO_STDERR|NO_EXIT, "problem with defaults entries");
837
838     if (!runas_user && !runas_group)
839         set_runaspw(def_runas_default); /* may have been updated above */
840
841     return(rval);
842 }
843
844 /*
845  * Command line argument parsing.
846  * Sets NewArgc and NewArgv which corresponds to the argc/argv we'll use
847  * for the command to be run (if we are running one).
848  */
849 static int
850 parse_args(argc, argv)
851     int argc;
852     char **argv;
853 {
854     int mode = 0;               /* what mode is sudo to be run in? */
855     int flags = 0;              /* mode flags */
856     int valid_flags, ch;
857
858     /* First, check to see if we were invoked as "sudoedit". */
859     if (strcmp(getprogname(), "sudoedit") == 0)
860         mode = MODE_EDIT;
861
862     /* Returns true if the last option string was "--" */
863 #define got_end_of_args (optind > 1 && argv[optind - 1][0] == '-' && \
864             argv[optind - 1][1] == '-' && argv[optind - 1][2] == '\0')
865
866     /* Returns true if next option is an environment variable */
867 #define is_envar (optind < argc && argv[optind][0] != '/' && \
868             strchr(argv[optind], '=') != NULL)
869
870     /* Flags allowed when running a command */
871     valid_flags = MODE_BACKGROUND|MODE_PRESERVE_ENV|MODE_RESET_HOME|
872                   MODE_LOGIN_SHELL|MODE_INVALIDATE|MODE_NONINTERACTIVE|
873                   MODE_PRESERVE_GROUPS|MODE_SHELL;
874     for (;;) {
875         /*
876          * We disable arg permutation for GNU getopt().
877          * Some trickiness is required to allow environment variables
878          * to be interspersed with command line options.
879          */
880         if ((ch = getopt(argc, argv, "+Aa:bC:c:Eeg:HhiKkLlnPp:r:Sst:U:u:Vv")) != -1) {
881             switch (ch) {
882                 case 'A':
883                     SET(tgetpass_flags, TGP_ASKPASS);
884                     break;
885 #ifdef HAVE_BSD_AUTH_H
886                 case 'a':
887                     login_style = optarg;
888                     break;
889 #endif
890                 case 'b':
891                     SET(flags, MODE_BACKGROUND);
892                     break;
893                 case 'C':
894                     if ((user_closefrom = atoi(optarg)) < 3) {
895                         warningx("the argument to -C must be at least 3");
896                         usage(1);
897                     }
898                     break;
899 #ifdef HAVE_LOGIN_CAP_H
900                 case 'c':
901                     login_class = optarg;
902                     def_use_loginclass = TRUE;
903                     break;
904 #endif
905                 case 'E':
906                     SET(flags, MODE_PRESERVE_ENV);
907                     break;
908                 case 'e':
909                     if (mode && mode != MODE_EDIT)
910                         usage_excl(1);
911                     mode = MODE_EDIT;
912                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
913                     break;
914                 case 'g':
915                     runas_group = optarg;
916                     break;
917                 case 'H':
918                     SET(flags, MODE_RESET_HOME);
919                     break;
920                 case 'h':
921                     if (mode && mode != MODE_HELP) {
922                         if (strcmp(getprogname(), "sudoedit") != 0)
923                             usage_excl(1);
924                     }
925                     mode = MODE_HELP;
926                     valid_flags = 0;
927                     break;
928                 case 'i':
929                     SET(flags, MODE_LOGIN_SHELL);
930                     def_env_reset = TRUE;
931                     break;
932                 case 'k':
933                     SET(flags, MODE_INVALIDATE);
934                     break;
935                 case 'K':
936                     if (mode && mode != MODE_KILL)
937                         usage_excl(1);
938                     mode = MODE_KILL;
939                     valid_flags = 0;
940                     break;
941                 case 'L':
942                     if (mode && mode != MODE_LISTDEFS)
943                         usage_excl(1);
944                     mode = MODE_LISTDEFS;
945                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
946                     break;
947                 case 'l':
948                     if (mode) {
949                         if (mode == MODE_LIST)
950                             long_list = 1;
951                         else
952                             usage_excl(1);
953                     }
954                     mode = MODE_LIST;
955                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
956                     break;
957                 case 'n':
958                     SET(flags, MODE_NONINTERACTIVE);
959                     break;
960                 case 'P':
961                     SET(flags, MODE_PRESERVE_GROUPS);
962                     break;
963                 case 'p':
964                     user_prompt = optarg;
965                     def_passprompt_override = TRUE;
966                     break;
967 #ifdef HAVE_SELINUX
968                 case 'r':
969                     user_role = optarg;
970                     break;
971                 case 't':
972                     user_type = optarg;
973                     break;
974 #endif
975                 case 'S':
976                     SET(tgetpass_flags, TGP_STDIN);
977                     break;
978                 case 's':
979                     SET(flags, MODE_SHELL);
980                     break;
981                 case 'U':
982                     if ((list_pw = sudo_getpwnam(optarg)) == NULL)
983                         errorx(1, "unknown user: %s", optarg);
984                     break;
985                 case 'u':
986                     runas_user = optarg;
987                     break;
988                 case 'v':
989                     if (mode && mode != MODE_VALIDATE)
990                         usage_excl(1);
991                     mode = MODE_VALIDATE;
992                     valid_flags = MODE_INVALIDATE|MODE_NONINTERACTIVE;
993                     break;
994                 case 'V':
995                     if (mode && mode != MODE_VERSION)
996                         usage_excl(1);
997                     mode = MODE_VERSION;
998                     valid_flags = 0;
999                     break;
1000                 default:
1001                     usage(1);
1002             }
1003         } else if (!got_end_of_args && is_envar) {
1004             struct list_member *ev;
1005
1006             /* Store environment variable. */
1007             ev = emalloc(sizeof(*ev));
1008             ev->value = argv[optind];
1009             ev->next = sudo_user.env_vars;
1010             sudo_user.env_vars = ev;
1011
1012             /* Crank optind and resume getopt. */
1013             optind++;
1014         } else {
1015             /* Not an option or an environment variable -- we're done. */
1016             break;
1017         }
1018     }
1019
1020     NewArgc = argc - optind;
1021     NewArgv = argv + optind;
1022
1023     if (!mode) {
1024         /* Defer -k mode setting until we know whether it is a flag or not */
1025         if (ISSET(flags, MODE_INVALIDATE) && NewArgc == 0) {
1026             mode = MODE_INVALIDATE;     /* -k by itself */
1027             CLR(flags, MODE_INVALIDATE);
1028             valid_flags = 0;
1029         } else {
1030             mode = MODE_RUN;            /* running a command */
1031         }
1032     }
1033
1034     if (NewArgc > 0 && mode == MODE_LIST)
1035         mode = MODE_CHECK;
1036
1037     if (ISSET(flags, MODE_LOGIN_SHELL)) {
1038         if (ISSET(flags, MODE_SHELL)) {
1039             warningx("you may not specify both the `-i' and `-s' options");
1040             usage(1);
1041         }
1042         if (ISSET(flags, MODE_PRESERVE_ENV)) {
1043             warningx("you may not specify both the `-i' and `-E' options");
1044             usage(1);
1045         }
1046         SET(flags, MODE_SHELL);
1047     }
1048     if ((flags & valid_flags) != flags)
1049         usage(1);
1050     if (mode == MODE_EDIT &&
1051        (ISSET(flags, MODE_PRESERVE_ENV) || sudo_user.env_vars != NULL)) {
1052         if (ISSET(mode, MODE_PRESERVE_ENV))
1053             warningx("the `-E' option is not valid in edit mode");
1054         if (sudo_user.env_vars != NULL)
1055             warningx("you may not specify environment variables in edit mode");
1056         usage(1);
1057     }
1058     if ((runas_user != NULL || runas_group != NULL) &&
1059         !ISSET(mode, MODE_EDIT | MODE_RUN | MODE_CHECK)) {
1060         usage(1);
1061     }
1062     if (list_pw != NULL && mode != MODE_LIST && mode != MODE_CHECK) {
1063         warningx("the `-U' option may only be used with the `-l' option");
1064         usage(1);
1065     }
1066     if (ISSET(tgetpass_flags, TGP_STDIN) && ISSET(tgetpass_flags, TGP_ASKPASS)) {
1067         warningx("the `-A' and `-S' options may not be used together");
1068         usage(1);
1069     }
1070     if ((NewArgc == 0 && mode == MODE_EDIT) ||
1071         (NewArgc > 0 && !ISSET(mode, MODE_RUN | MODE_EDIT | MODE_CHECK)))
1072         usage(1);
1073     if (NewArgc == 0 && mode == MODE_RUN && !ISSET(flags, MODE_SHELL))
1074         SET(flags, (MODE_IMPLIED_SHELL | MODE_SHELL));
1075
1076     return(mode | flags);
1077 }
1078
1079 /*
1080  * Open sudoers and sanity check mode/owner/type.
1081  * Returns a handle to the sudoers file or NULL on error.
1082  */
1083 FILE *
1084 open_sudoers(sudoers, doedit, keepopen)
1085     const char *sudoers;
1086     int doedit;
1087     int *keepopen;
1088 {
1089     struct stat statbuf;
1090     FILE *fp = NULL;
1091     int rootstat;
1092
1093     /*
1094      * Fix the mode and group on sudoers file from old default.
1095      * Only works if file system is readable/writable by root.
1096      */
1097     if ((rootstat = stat_sudoers(sudoers, &statbuf)) == 0 &&
1098         SUDOERS_UID == statbuf.st_uid && SUDOERS_MODE != 0400 &&
1099         (statbuf.st_mode & 0007777) == 0400) {
1100
1101         if (chmod(sudoers, SUDOERS_MODE) == 0) {
1102             warningx("fixed mode on %s", sudoers);
1103             SET(statbuf.st_mode, SUDOERS_MODE);
1104             if (statbuf.st_gid != SUDOERS_GID) {
1105                 if (chown(sudoers, (uid_t) -1, SUDOERS_GID) == 0) {
1106                     warningx("set group on %s", sudoers);
1107                     statbuf.st_gid = SUDOERS_GID;
1108                 } else
1109                     warning("unable to set group on %s", sudoers);
1110             }
1111         } else
1112             warning("unable to fix mode on %s", sudoers);
1113     }
1114
1115     /*
1116      * Sanity checks on sudoers file.  Must be done as sudoers
1117      * file owner.  We already did a stat as root, so use that
1118      * data if we can't stat as sudoers file owner.
1119      */
1120     set_perms(PERM_SUDOERS);
1121
1122     if (rootstat != 0 && stat_sudoers(sudoers, &statbuf) != 0)
1123         log_error(USE_ERRNO|NO_EXIT, "can't stat %s", sudoers);
1124     else if (!S_ISREG(statbuf.st_mode))
1125         log_error(NO_EXIT, "%s is not a regular file", sudoers);
1126     else if ((statbuf.st_mode & 07777) != SUDOERS_MODE)
1127         log_error(NO_EXIT, "%s is mode 0%o, should be 0%o", sudoers,
1128             (unsigned int) (statbuf.st_mode & 07777),
1129             (unsigned int) SUDOERS_MODE);
1130     else if (statbuf.st_uid != SUDOERS_UID)
1131         log_error(NO_EXIT, "%s is owned by uid %lu, should be %lu", sudoers,
1132             (unsigned long) statbuf.st_uid, (unsigned long) SUDOERS_UID);
1133     else if (statbuf.st_gid != SUDOERS_GID)
1134         log_error(NO_EXIT, "%s is owned by gid %lu, should be %lu", sudoers,
1135             (unsigned long) statbuf.st_gid, (unsigned long) SUDOERS_GID);
1136     else if ((fp = fopen(sudoers, "r")) == NULL)
1137         log_error(USE_ERRNO, "can't open %s", sudoers);
1138     else {
1139         /*
1140          * Make sure we can actually read sudoers so we can present the
1141          * user with a reasonable error message (unlike the lexer).
1142          */
1143         if (statbuf.st_size != 0) {
1144             if (fgetc(fp) == EOF)
1145                 log_error(USE_ERRNO, "can't read %s", sudoers);
1146             rewind(fp);
1147         }
1148         (void) fcntl(fileno(fp), F_SETFD, 1);
1149     }
1150
1151     set_perms(PERM_ROOT);               /* change back to root */
1152     return(fp);
1153 }
1154
1155 /*
1156  * Close all open files (except std*) and turn off core dumps.
1157  * Also sets the set_perms() pointer to the correct function.
1158  */
1159 static void
1160 initial_setup()
1161 {
1162     int miss[3], devnull = -1;
1163 #if defined(__linux__) || (defined(RLIMIT_CORE) && !defined(SUDO_DEVEL))
1164     struct rlimit rl;
1165 #endif
1166
1167 #if defined(__linux__)
1168     /*
1169      * Unlimit the number of processes since Linux's setuid() will
1170      * apply resource limits when changing uid and return EAGAIN if
1171      * nproc would be violated by the uid switch.
1172      */
1173     rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
1174     if (setrlimit(RLIMIT_NPROC, &rl)) {
1175         if (getrlimit(RLIMIT_NPROC, &rl) == 0) {
1176             rl.rlim_cur = rl.rlim_max;
1177             (void)setrlimit(RLIMIT_NPROC, &rl);
1178         }
1179     }
1180 #endif /* __linux__ */
1181 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
1182     /*
1183      * Turn off core dumps.
1184      */
1185     (void) getrlimit(RLIMIT_CORE, &corelimit);
1186     memcpy(&rl, &corelimit, sizeof(struct rlimit));
1187     rl.rlim_cur = 0;
1188     (void) setrlimit(RLIMIT_CORE, &rl);
1189 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
1190
1191     /*
1192      * stdin, stdout and stderr must be open; set them to /dev/null
1193      * if they are closed and close all other fds.
1194      */
1195     miss[STDIN_FILENO] = fcntl(STDIN_FILENO, F_GETFL, 0) == -1;
1196     miss[STDOUT_FILENO] = fcntl(STDOUT_FILENO, F_GETFL, 0) == -1;
1197     miss[STDERR_FILENO] = fcntl(STDERR_FILENO, F_GETFL, 0) == -1;
1198     if (miss[STDIN_FILENO] || miss[STDOUT_FILENO] || miss[STDERR_FILENO]) {
1199         if ((devnull = open(_PATH_DEVNULL, O_RDWR, 0644)) != -1) {
1200             if (miss[STDIN_FILENO])
1201                 (void) dup2(devnull, STDIN_FILENO);
1202             if (miss[STDOUT_FILENO])
1203                 (void) dup2(devnull, STDOUT_FILENO);
1204             if (miss[STDERR_FILENO])
1205                 (void) dup2(devnull, STDERR_FILENO);
1206             if (devnull > STDERR_FILENO)
1207                 close(devnull);
1208         }
1209     }
1210 }
1211
1212 #ifdef HAVE_LOGIN_CAP_H
1213 static void
1214 set_loginclass(pw)
1215     struct passwd *pw;
1216 {
1217     int errflags;
1218
1219     /*
1220      * Don't make it a fatal error if the user didn't specify the login
1221      * class themselves.  We do this because if login.conf gets
1222      * corrupted we want the admin to be able to use sudo to fix it.
1223      */
1224     if (login_class)
1225         errflags = NO_MAIL|MSG_ONLY;
1226     else
1227         errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1228
1229     if (login_class && strcmp(login_class, "-") != 0) {
1230         if (user_uid != 0 &&
1231             strcmp(runas_user ? runas_user : def_runas_default, "root") != 0)
1232             errorx(1, "only root can use -c %s", login_class);
1233     } else {
1234         login_class = pw->pw_class;
1235         if (!login_class || !*login_class)
1236             login_class =
1237                 (pw->pw_uid == 0) ? LOGIN_DEFROOTCLASS : LOGIN_DEFCLASS;
1238     }
1239
1240     lc = login_getclass(login_class);
1241     if (!lc || !lc->lc_class || strcmp(lc->lc_class, login_class) != 0) {
1242         log_error(errflags, "unknown login class: %s", login_class);
1243         if (!lc)
1244             lc = login_getclass(NULL);  /* needed for login_getstyle() later */
1245     }
1246 }
1247 #else
1248 static void
1249 set_loginclass(pw)
1250     struct passwd *pw;
1251 {
1252 }
1253 #endif /* HAVE_LOGIN_CAP_H */
1254
1255 #ifdef HAVE_PROJECT_H
1256 static void
1257 set_project(pw)
1258     struct passwd *pw;
1259 {
1260     int errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1261     int errval;
1262     struct project proj;
1263     struct project *resultp = '\0';
1264     char buf[1024];
1265
1266     /*
1267      * Collect the default project for the user and settaskid
1268      */
1269     setprojent();
1270     if (resultp = getdefaultproj(pw->pw_name, &proj, buf, sizeof(buf))) {
1271         errval = setproject(resultp->pj_name, pw->pw_name, TASK_NORMAL);
1272         if (errval != 0) {
1273             switch(errval) {
1274             case SETPROJ_ERR_TASK:
1275                 if (errno == EAGAIN)
1276                     log_error(errflags, "resource control limit has been reached");
1277                 else if (errno == ESRCH)
1278                     log_error(errflags, "user \"%s\" is not a member of "
1279                         "project \"%s\"", pw->pw_name, resultp->pj_name);
1280                 else if (errno == EACCES)
1281                     log_error(errflags, "the invoking task is final");
1282                 else
1283                     log_error(errflags, "could not join project \"%s\"",
1284                         resultp->pj_name);
1285                 break;
1286             case SETPROJ_ERR_POOL:
1287                 if (errno == EACCES)
1288                     log_error(errflags, "no resource pool accepting "
1289                             "default bindings exists for project \"%s\"",
1290                             resultp->pj_name);
1291                 else if (errno == ESRCH)
1292                     log_error(errflags, "specified resource pool does "
1293                             "not exist for project \"%s\"", resultp->pj_name);
1294                 else
1295                     log_error(errflags, "could not bind to default "
1296                             "resource pool for project \"%s\"", resultp->pj_name);
1297                 break;
1298             default:
1299                 if (errval <= 0) {
1300                     log_error(errflags, "setproject failed for project \"%s\"",
1301                         resultp->pj_name);
1302                 } else {
1303                     log_error(errflags, "warning, resource control assignment "
1304                         "failed for project \"%s\"", resultp->pj_name);
1305                 }
1306             }
1307         }
1308     } else {
1309         log_error(errflags, "getdefaultproj() error: %s", strerror(errno));
1310     }
1311     endprojent();
1312 }
1313 #else
1314 static void
1315 set_project(pw)
1316     struct passwd *pw;
1317 {
1318 }
1319 #endif /* HAVE_PROJECT_H */
1320
1321 /*
1322  * Look up the fully qualified domain name and set user_host and user_shost.
1323  */
1324 void
1325 set_fqdn()
1326 {
1327 #ifdef HAVE_GETADDRINFO
1328     struct addrinfo *res0, hint;
1329 #else
1330     struct hostent *hp;
1331 #endif
1332     char *p;
1333
1334 #ifdef HAVE_GETADDRINFO
1335     zero_bytes(&hint, sizeof(hint));
1336     hint.ai_family = PF_UNSPEC;
1337     hint.ai_flags = AI_CANONNAME;
1338     if (getaddrinfo(user_host, NULL, &hint, &res0) != 0) {
1339 #else
1340     if (!(hp = gethostbyname(user_host))) {
1341 #endif
1342         log_error(MSG_ONLY|NO_EXIT,
1343             "unable to resolve host %s", user_host);
1344     } else {
1345         if (user_shost != user_host)
1346             efree(user_shost);
1347         efree(user_host);
1348 #ifdef HAVE_GETADDRINFO
1349         user_host = estrdup(res0->ai_canonname);
1350         freeaddrinfo(res0);
1351 #else
1352         user_host = estrdup(hp->h_name);
1353 #endif
1354     }
1355     if ((p = strchr(user_host, '.'))) {
1356         *p = '\0';
1357         user_shost = estrdup(user_host);
1358         *p = '.';
1359     } else {
1360         user_shost = user_host;
1361     }
1362     sudo_user.host_fqdn_queried = TRUE;
1363 }
1364
1365 /*
1366  * Get passwd entry for the user we are going to run commands as.
1367  * By default, this is "root".  Updates runas_pw as a side effect.
1368  */
1369 static void
1370 set_runaspw(user)
1371     char *user;
1372 {
1373     if (*user == '#') {
1374         if ((runas_pw = sudo_getpwuid(atoi(user + 1))) == NULL)
1375             runas_pw = sudo_fakepwnam(user, runas_gr ? runas_gr->gr_gid : 0);
1376     } else {
1377         if ((runas_pw = sudo_getpwnam(user)) == NULL) {
1378             audit_failure(NewArgv, "unknown user: %s", user);
1379             log_error(NO_MAIL|MSG_ONLY, "unknown user: %s", user);
1380         }
1381     }
1382 }
1383
1384 /*
1385  * Get group entry for the group we are going to run commands as.
1386  * Updates runas_pw as a side effect.
1387  */
1388 static void
1389 set_runasgr(group)
1390     char *group;
1391 {
1392     if (*group == '#') {
1393         if ((runas_gr = sudo_getgrgid(atoi(group + 1))) == NULL)
1394             runas_gr = sudo_fakegrnam(group);
1395     } else {
1396         if ((runas_gr = sudo_getgrnam(group)) == NULL)
1397             log_error(NO_MAIL|MSG_ONLY, "unknown group: %s", group);
1398     }
1399 }
1400
1401 /*
1402  * Get passwd entry for the user we are going to authenticate as.
1403  * By default, this is the user invoking sudo.  In the most common
1404  * case, this matches sudo_user.pw or runas_pw.
1405  */
1406 static struct passwd *
1407 get_authpw()
1408 {
1409     struct passwd *pw;
1410
1411     if (def_rootpw) {
1412         if ((pw = sudo_getpwuid(0)) == NULL)
1413             log_error(0, "unknown uid: 0");
1414     } else if (def_runaspw) {
1415         if ((pw = sudo_getpwnam(def_runas_default)) == NULL)
1416             log_error(0, "unknown user: %s", def_runas_default);
1417     } else if (def_targetpw) {
1418         if (runas_pw->pw_name == NULL)
1419             log_error(NO_MAIL|MSG_ONLY, "unknown uid: %lu",
1420                 (unsigned long) runas_pw->pw_uid);
1421         pw = runas_pw;
1422     } else
1423         pw = sudo_user.pw;
1424
1425     return(pw);
1426 }
1427
1428 /*
1429  * Cleanup hook for error()/errorx()
1430  */
1431 void
1432 cleanup(gotsignal)
1433     int gotsignal;
1434 {
1435     struct sudo_nss *nss;
1436
1437     if (!gotsignal) {
1438         if (snl != NULL) {
1439             tq_foreach_fwd(snl, nss)
1440                 nss->close(nss);
1441         }
1442         sudo_endpwent();
1443         sudo_endgrent();
1444     }
1445 }
1446
1447 static void
1448 show_version()
1449 {
1450     (void) printf("Sudo version %s\n", PACKAGE_VERSION);
1451     if (getuid() == 0) {
1452         putchar('\n');
1453         (void) printf("Sudoers path: %s\n", _PATH_SUDOERS);
1454 #ifdef HAVE_LDAP
1455 # ifdef _PATH_NSSWITCH_CONF
1456         (void) printf("nsswitch path: %s\n", _PATH_NSSWITCH_CONF);
1457 # endif
1458         (void) printf("ldap.conf path: %s\n", _PATH_LDAP_CONF);
1459         (void) printf("ldap.secret path: %s\n", _PATH_LDAP_SECRET);
1460 #endif
1461         dump_auth_methods();
1462         dump_defaults();
1463         dump_interfaces();
1464     }
1465     exit(0);
1466 }
1467
1468 /*
1469  * Tell which options are mutually exclusive and exit.
1470  */
1471 static void
1472 usage_excl(exit_val)
1473     int exit_val;
1474 {
1475     warningx("Only one of the -e, -h, -i, -K, -l, -s, -v or -V options may be specified");
1476     usage(exit_val);
1477 }
1478
1479 /*
1480  * Give usage message and exit.
1481  * The actual usage strings are in sudo_usage.h for configure substitution.
1482  */
1483 static void
1484 usage(exit_val)
1485     int exit_val;
1486 {
1487     struct lbuf lbuf;
1488     char *uvec[6];
1489     int i, ulen;
1490
1491     /*
1492      * Use usage vectors appropriate to the progname.
1493      */
1494     if (strcmp(getprogname(), "sudoedit") == 0) {
1495         uvec[0] = SUDO_USAGE5 + 3;
1496         uvec[1] = NULL;
1497     } else {
1498         uvec[0] = SUDO_USAGE1;
1499         uvec[1] = SUDO_USAGE2;
1500         uvec[2] = SUDO_USAGE3;
1501         uvec[3] = SUDO_USAGE4;
1502         uvec[4] = SUDO_USAGE5;
1503         uvec[5] = NULL;
1504     }
1505
1506     /*
1507      * Print usage and wrap lines as needed, depending on the
1508      * tty width.
1509      */
1510     ulen = (int)strlen(getprogname()) + 8;
1511     lbuf_init(&lbuf, NULL, ulen, 0);
1512     for (i = 0; uvec[i] != NULL; i++) {
1513         lbuf_append(&lbuf, "usage: ", getprogname(), uvec[i], NULL);
1514         lbuf_print(&lbuf);
1515     }
1516     lbuf_destroy(&lbuf);
1517     exit(exit_val);
1518 }