Merge branch 'upstream'
[debian/sudo] / sudo.c
1 /*
2  * Copyright (c) 1993-1996,1998-2007 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 #ifdef HAVE_ERR_H
63 # include <err.h>
64 #else
65 # include "emul/err.h"
66 #endif /* HAVE_ERR_H */
67 #include <pwd.h>
68 #include <errno.h>
69 #include <fcntl.h>
70 #include <signal.h>
71 #include <grp.h>
72 #if TIME_WITH_SYS_TIME
73 # include <time.h>
74 #endif
75 #ifdef HAVE_SETLOCALE
76 # include <locale.h>
77 #endif
78 #include <netinet/in.h>
79 #include <netdb.h>
80 #if defined(HAVE_GETPRPWNAM) && defined(HAVE_SET_AUTH_PARAMETERS)
81 # ifdef __hpux
82 #  undef MAXINT
83 #  include <hpsecurity.h>
84 # else
85 #  include <sys/security.h>
86 # endif /* __hpux */
87 # include <prot.h>
88 #endif /* HAVE_GETPRPWNAM && HAVE_SET_AUTH_PARAMETERS */
89 #ifdef HAVE_LOGIN_CAP_H
90 # include <login_cap.h>
91 # ifndef LOGIN_DEFROOTCLASS
92 #  define LOGIN_DEFROOTCLASS    "daemon"
93 # endif
94 #endif
95 #ifdef HAVE_PROJECT_H
96 # include <project.h>
97 # include <sys/task.h>
98 #endif
99 #ifdef HAVE_SELINUX
100 # include <selinux/selinux.h>
101 #endif
102
103 #include "sudo.h"
104 #include "interfaces.h"
105 #include "version.h"
106
107 #ifndef lint
108 __unused __unused static const char rcsid[] = "$Sudo: sudo.c,v 1.369.2.39 2008/04/10 17:56:05 millert Exp $";
109 #endif /* lint */
110
111 /*
112  * Prototypes
113  */
114 static int init_vars                    __P((int, char **));
115 static int parse_args                   __P((int, char **));
116 static void check_sudoers               __P((void));
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 usage                       __P((int))
121                                             __attribute__((__noreturn__));
122 static void usage_excl                  __P((int))
123                                             __attribute__((__noreturn__));
124 static void usage_excl                  __P((int));
125 static struct passwd *get_authpw        __P((void));
126 extern int sudo_edit                    __P((int, char **, char **));
127 extern void list_matches                __P((void));
128 extern char **rebuild_env               __P((char **, int, int));
129 extern void validate_env_vars           __P((struct list_member *));
130 extern char **insert_env_vars           __P((char **, struct list_member *));
131 extern struct passwd *sudo_getpwnam     __P((const char *));
132 extern struct passwd *sudo_getpwuid     __P((uid_t));
133 extern struct passwd *sudo_pwdup        __P((const struct passwd *));
134
135 /*
136  * Globals
137  */
138 int Argc, NewArgc;
139 char **Argv, **NewArgv;
140 char *prev_user;
141 struct sudo_user sudo_user;
142 struct passwd *auth_pw;
143 FILE *sudoers_fp;
144 struct interface *interfaces;
145 int num_interfaces;
146 int tgetpass_flags;
147 uid_t timestamp_uid;
148 extern int errorlineno;
149 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
150 static struct rlimit corelimit;
151 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
152 #ifdef HAVE_LOGIN_CAP_H
153 login_cap_t *lc;
154 #endif /* HAVE_LOGIN_CAP_H */
155 #ifdef HAVE_BSD_AUTH_H
156 char *login_style;
157 #endif /* HAVE_BSD_AUTH_H */
158 sigaction_t saved_sa_int, saved_sa_quit, saved_sa_tstp, saved_sa_chld;
159
160
161 int
162 main(argc, argv, envp)
163     int argc;
164     char **argv;
165     char **envp;
166 {
167     int validated;
168     int fd;
169     int cmnd_status;
170     int sudo_mode;
171     int pwflag;
172     sigaction_t sa;
173     extern int printmatches;
174     extern char **environ;
175
176 #ifdef HAVE_SETLOCALE
177     setlocale(LC_ALL, "");
178 #endif
179
180     Argv = argv;
181     if ((Argc = argc) < 1)
182         usage(1);
183
184     /* Must be done as the first thing... */
185 #if defined(HAVE_GETPRPWNAM) && defined(HAVE_SET_AUTH_PARAMETERS)
186     (void) set_auth_parameters(Argc, Argv);
187 # ifdef HAVE_INITPRIVS
188     initprivs();
189 # endif
190 #endif /* HAVE_GETPRPWNAM && HAVE_SET_AUTH_PARAMETERS */
191
192     if (geteuid() != 0)
193         errx(1, "must be setuid root");
194
195     /*
196      * Signal setup:
197      *  Ignore keyboard-generated signals so the user cannot interrupt
198      *  us at some point and avoid the logging.
199      *  Install handler to wait for children when they exit.
200      */
201     sigemptyset(&sa.sa_mask);
202     sa.sa_flags = SA_RESTART;
203     sa.sa_handler = SIG_IGN;
204     (void) sigaction(SIGINT, &sa, &saved_sa_int);
205     (void) sigaction(SIGQUIT, &sa, &saved_sa_quit);
206     (void) sigaction(SIGTSTP, &sa, &saved_sa_tstp);
207     sa.sa_handler = reapchild;
208     (void) sigaction(SIGCHLD, &sa, &saved_sa_chld);
209
210     /*
211      * Turn off core dumps and close open files.
212      */
213     initial_setup();
214     setpwent();
215
216     /* Parse our arguments. */
217     sudo_mode = parse_args(Argc, Argv);
218
219     /* Setup defaults data structures. */
220     init_defaults();
221
222     /* Load the list of local ip addresses and netmasks.  */
223     load_interfaces();
224
225     pwflag = 0;
226     if (ISSET(sudo_mode, MODE_SHELL))
227         user_cmnd = "shell";
228     else if (ISSET(sudo_mode, MODE_EDIT))
229         user_cmnd = "sudoedit";
230     else
231         switch (sudo_mode) {
232             case MODE_VERSION:
233                 (void) printf("Sudo version %s\n", version);
234                 if (getuid() == 0) {
235                     putchar('\n');
236                     (void) printf("Sudoers path: %s\n", _PATH_SUDOERS);
237                     dump_auth_methods();
238                     dump_defaults();
239                     dump_interfaces();
240                 }
241                 exit(0);
242                 break;
243             case MODE_HELP:
244                 usage(0);
245                 break;
246             case MODE_VALIDATE:
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                 user_cmnd = "list";
261                 pwflag = I_LISTPW;
262                 printmatches = 1;
263                 break;
264         }
265
266     /* Must have a command to run... */
267     if (user_cmnd == NULL && NewArgc == 0)
268         usage(1);
269
270     cmnd_status = init_vars(sudo_mode, environ);
271
272 #ifdef HAVE_LDAP
273     validated = sudo_ldap_check(pwflag);
274
275     /* Skip reading /etc/sudoers if LDAP told us to */
276     if (!def_ignore_local_sudoers) {
277         int v;
278
279         check_sudoers();        /* check mode/owner on _PATH_SUDOERS */
280
281         /* Local sudoers file overrides LDAP if we have a match. */
282         v = sudoers_lookup(pwflag);
283         if (validated == VALIDATE_ERROR || ISSET(v, VALIDATE_OK))
284             validated = v;
285     }
286 #else
287     check_sudoers();    /* check mode/owner on _PATH_SUDOERS */
288
289     /* Validate the user but don't search for pseudo-commands. */
290     validated = sudoers_lookup(pwflag);
291 #endif
292     if (safe_cmnd == NULL)
293         safe_cmnd = estrdup(user_cmnd);
294
295     /*
296      * Look up the timestamp dir owner if one is specified.
297      */
298     if (def_timestampowner) {
299         struct passwd *pw;
300
301         if (*def_timestampowner == '#')
302             pw = getpwuid(atoi(def_timestampowner + 1));
303         else
304             pw = getpwnam(def_timestampowner);
305         if (!pw)
306             log_error(0, "timestamp owner (%s): No such user",
307                 def_timestampowner);
308         timestamp_uid = pw->pw_uid;
309     }
310
311     /* This goes after the sudoers parse since we honor sudoers options. */
312     if (sudo_mode == MODE_KILL || sudo_mode == MODE_INVALIDATE) {
313         remove_timestamp((sudo_mode == MODE_KILL));
314         exit(0);
315     }
316
317     if (ISSET(validated, VALIDATE_ERROR))
318         log_error(0, "parse error in %s near line %d", _PATH_SUDOERS,
319             errorlineno);
320
321     /* Is root even allowed to run sudo? */
322     if (user_uid == 0 && !def_root_sudo) {
323         (void) fprintf(stderr,
324             "Sorry, %s has been configured to not allow root to run it.\n",
325             getprogname());
326         exit(1);
327     }
328
329     /* If given the -P option, set the "preserve_groups" flag. */
330     if (ISSET(sudo_mode, MODE_PRESERVE_GROUPS))
331         def_preserve_groups = TRUE;
332
333     /* If no command line args and "set_home" is not set, error out. */
334     if (ISSET(sudo_mode, MODE_IMPLIED_SHELL) && !def_shell_noargs)
335         usage(1);
336
337     /* Bail if a tty is required and we don't have one.  */
338     if (def_requiretty) {
339         if ((fd = open(_PATH_TTY, O_RDWR|O_NOCTTY)) == -1)
340             log_error(NO_MAIL, "sorry, you must have a tty to run sudo");
341         else
342             (void) close(fd);
343     }
344
345     /* User may have overriden environment resetting via the -E flag. */
346     if (ISSET(sudo_mode, MODE_PRESERVE_ENV) && ISSET(validated, FLAG_SETENV))
347         def_env_reset = FALSE;
348
349     /* Build a new environment that avoids any nasty bits. */
350     environ = rebuild_env(environ, sudo_mode, ISSET(validated, FLAG_NOEXEC));
351
352     /* Fill in passwd struct based on user we are authenticating as.  */
353     auth_pw = get_authpw();
354
355     /* Require a password if sudoers says so.  */
356     if (!ISSET(validated, FLAG_NOPASS))
357         check_user(validated);
358
359     /* If run as root with SUDO_USER set, set sudo_user.pw to that user. */
360     if (user_uid == 0 && prev_user != NULL && strcmp(prev_user, "root") != 0) {
361             struct passwd *pw;
362
363             if ((pw = sudo_getpwnam(prev_user)) != NULL) {
364                     efree(sudo_user.pw);
365                     sudo_user.pw = pw;
366             }
367     }
368
369     if (ISSET(validated, VALIDATE_OK)) {
370         /* Finally tell the user if the command did not exist. */
371         if (cmnd_status == NOT_FOUND_DOT) {
372             warnx("ignoring `%s' found in '.'\nUse `sudo ./%s' if this is the `%s' you wish to run.", user_cmnd, user_cmnd, user_cmnd);
373             exit(1);
374         } else if (cmnd_status == NOT_FOUND) {
375             warnx("%s: command not found", user_cmnd);
376             exit(1);
377         }
378
379         /* If user specified env vars make sure sudoers allows it. */
380         if (ISSET(sudo_mode, MODE_RUN) && !ISSET(validated, FLAG_SETENV)) {
381             if (ISSET(sudo_mode, MODE_PRESERVE_ENV))
382                 log_error(NO_MAIL,
383                     "sorry, you are not allowed to preserve the environment");
384             else
385                 validate_env_vars(sudo_user.env_vars);
386         }
387
388         log_auth(validated, 1);
389         if (sudo_mode == MODE_VALIDATE)
390             exit(0);
391         else if (sudo_mode == MODE_LIST) {
392             list_matches();
393 #ifdef HAVE_LDAP
394             sudo_ldap_list_matches();
395 #endif
396             exit(0);
397         }
398
399         /* Override user's umask if configured to do so. */
400         if (def_umask != 0777)
401             (void) umask(def_umask);
402
403         /* Restore coredumpsize resource limit. */
404 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
405         (void) setrlimit(RLIMIT_CORE, &corelimit);
406 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
407
408         /* Become specified user or root if executing a command. */
409         if (ISSET(sudo_mode, MODE_RUN))
410             set_perms(PERM_FULL_RUNAS);
411
412         /* Close the password and group files */
413         endpwent();
414         endgrent();
415
416         if (ISSET(sudo_mode, MODE_LOGIN_SHELL)) {
417             char *p;
418
419             /* Convert /bin/sh -> -sh so shell knows it is a login shell */
420             if ((p = strrchr(NewArgv[0], '/')) == NULL)
421                 p = NewArgv[0];
422             *p = '-';
423             NewArgv[0] = p;
424
425             /* Change to target user's homedir. */
426             if (chdir(runas_pw->pw_dir) == -1)
427                 warn("unable to change directory to %s", runas_pw->pw_dir);
428         }
429
430         if (ISSET(sudo_mode, MODE_EDIT))
431             exit(sudo_edit(NewArgc, NewArgv, envp));
432
433         /* Insert user-specified environment variables. */
434         environ = insert_env_vars(environ, sudo_user.env_vars);
435
436         /* Restore signal handlers before we exec. */
437         (void) sigaction(SIGINT, &saved_sa_int, NULL);
438         (void) sigaction(SIGQUIT, &saved_sa_quit, NULL);
439         (void) sigaction(SIGTSTP, &saved_sa_tstp, NULL);
440         (void) sigaction(SIGCHLD, &saved_sa_chld, NULL);
441
442 #ifndef PROFILING
443         if (ISSET(sudo_mode, MODE_BACKGROUND) && fork() > 0)
444             exit(0);
445         else {
446 #ifdef HAVE_SELINUX
447             if (is_selinux_enabled() > 0 && user_role != NULL)
448                 selinux_exec(user_role, user_type, NewArgv, environ,
449                     ISSET(sudo_mode, MODE_LOGIN_SHELL));
450 #endif
451             execve(safe_cmnd, NewArgv, environ);
452         }
453 #else
454         exit(0);
455 #endif /* PROFILING */
456         /*
457          * If we got here then the exec() failed...
458          */
459         if (errno == ENOEXEC) {
460             NewArgv--;                  /* at least one extra slot... */
461             NewArgv[0] = "sh";
462             NewArgv[1] = safe_cmnd;
463             execve(_PATH_BSHELL, NewArgv, environ);
464         }
465         warn("unable to execute %s", safe_cmnd);
466         exit(127);
467     } else if (ISSET(validated, FLAG_NO_USER) || (validated & FLAG_NO_HOST)) {
468         log_auth(validated, 1);
469         exit(1);
470     } else if (ISSET(validated, VALIDATE_NOT_OK)) {
471         if (def_path_info) {
472             /*
473              * We'd like to not leak path info at all here, but that can
474              * *really* confuse the users.  To really close the leak we'd
475              * have to say "not allowed to run foo" even when the problem
476              * is just "no foo in path" since the user can trivially set
477              * their path to just contain a single dir.
478              */
479             log_auth(validated,
480                 !(cmnd_status == NOT_FOUND_DOT || cmnd_status == NOT_FOUND));
481             if (cmnd_status == NOT_FOUND)
482                 warnx("%s: command not found", user_cmnd);
483             else if (cmnd_status == NOT_FOUND_DOT)
484                 warnx("ignoring `%s' found in '.'\nUse `sudo ./%s' if this is the `%s' you wish to run.", user_cmnd, user_cmnd, user_cmnd);
485         } else {
486             /* Just tell the user they are not allowed to run foo. */
487             log_auth(validated, 1);
488         }
489         exit(1);
490     } else {
491         /* should never get here */
492         log_auth(validated, 1);
493         exit(1);
494     }
495     exit(0);    /* not reached */
496 }
497
498 /*
499  * Initialize timezone, set umask, fill in ``sudo_user'' struct and
500  * load the ``interfaces'' array.
501  */
502 static int
503 init_vars(sudo_mode, envp)
504     int sudo_mode;
505     char **envp;
506 {
507     char *p, **ep, thost[MAXHOSTNAMELEN];
508     int nohostname, rval;
509
510     /* Sanity check command from user. */
511     if (user_cmnd == NULL && strlen(NewArgv[0]) >= PATH_MAX)
512         errx(1, "%s: File name too long", NewArgv[0]);
513
514 #ifdef HAVE_TZSET
515     (void) tzset();             /* set the timezone if applicable */
516 #endif /* HAVE_TZSET */
517
518     /* Default value for cmnd and cwd, overridden later. */
519     if (user_cmnd == NULL)
520         user_cmnd = NewArgv[0];
521     (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
522
523     /*
524      * We avoid gethostbyname() if possible since we don't want
525      * sudo to block if DNS or NIS is hosed.
526      * "host" is the (possibly fully-qualified) hostname and
527      * "shost" is the unqualified form of the hostname.
528      */
529     sudo_user.host_fqdn_queried = FALSE;
530     nohostname = gethostname(thost, sizeof(thost));
531     if (nohostname)
532         user_host = user_shost = "localhost";
533     else {
534         user_host = estrdup(thost);
535         if (def_fqdn) {
536             /* Defer call to set_fqdn() until log_error() is safe. */
537             user_shost = user_host;
538         } else {
539             user_shost = user_host;
540         }
541     }
542
543     if ((p = ttyname(STDIN_FILENO)) || (p = ttyname(STDOUT_FILENO))) {
544         user_tty = user_ttypath = estrdup(p);
545         if (strncmp(user_tty, _PATH_DEV, sizeof(_PATH_DEV) - 1) == 0)
546             user_tty += sizeof(_PATH_DEV) - 1;
547     } else
548         user_tty = "unknown";
549
550     for (ep = envp; *ep; ep++) {
551         switch (**ep) {
552             case 'P':
553                 if (strncmp("PATH=", *ep, 5) == 0)
554                     user_path = *ep + 5;
555                 break;
556             case 'S':
557                 if (strncmp("SHELL=", *ep, 6) == 0)
558                     user_shell = *ep + 6;
559                 else if (!user_prompt && strncmp("SUDO_PROMPT=", *ep, 12) == 0)
560                     user_prompt = *ep + 12;
561                 else if (strncmp("SUDO_USER=", *ep, 10) == 0)
562                     prev_user = *ep + 10;
563                 break;
564
565             }
566     }
567
568     /*
569      * Get a local copy of the user's struct passwd with the shadow password
570      * if necessary.  It is assumed that euid is 0 at this point so we
571      * can read the shadow passwd file if necessary.
572      */
573     if ((sudo_user.pw = sudo_getpwuid(getuid())) == NULL) {
574         /* Need to make a fake struct passwd for logging to work. */
575         struct passwd pw;
576         char pw_name[MAX_UID_T_LEN + 1];
577
578         pw.pw_uid = getuid();
579         (void) snprintf(pw_name, sizeof(pw_name), "%lu",
580             (unsigned long) pw.pw_uid);
581         pw.pw_name = pw_name;
582         sudo_user.pw = &pw;
583
584         /*
585          * If we are in -k/-K mode, just spew to stderr.  It is not unusual for
586          * users to place "sudo -k" in a .logout file which can cause sudo to
587          * be run during reboot after the YP/NIS/NIS+/LDAP/etc daemon has died.
588          */
589         if (sudo_mode & (MODE_INVALIDATE|MODE_KILL))
590             errx(1, "uid %s does not exist in the passwd file!", pw_name);
591         log_error(0, "uid %s does not exist in the passwd file!", pw_name);
592     }
593     if (user_shell == NULL || *user_shell == '\0')
594         user_shell = sudo_user.pw->pw_shell;
595
596     /* It is now safe to use log_error() and set_perms() */
597
598 #ifdef HAVE_GETGROUPS
599     if ((user_ngroups = getgroups(0, NULL)) > 0) {
600         user_groups = emalloc2(user_ngroups, sizeof(GETGROUPS_T));
601         if (getgroups(user_ngroups, user_groups) < 0)
602             log_error(USE_ERRNO|MSG_ONLY, "can't get group vector");
603     } else
604         user_ngroups = 0;
605 #endif
606
607     if (def_fqdn)
608         set_fqdn();                     /* may call log_error() */
609
610     if (nohostname)
611         log_error(USE_ERRNO|MSG_ONLY, "can't get hostname");
612
613     set_runaspw(*user_runas);           /* may call log_error() */
614     if (*user_runas[0] == '#' && runas_pw->pw_name && runas_pw->pw_name[0])
615         *user_runas = estrdup(runas_pw->pw_name);
616
617     /*
618      * Get current working directory.  Try as user, fall back to root.
619      */
620     set_perms(PERM_USER);
621     if (!getcwd(user_cwd, sizeof(user_cwd))) {
622         set_perms(PERM_ROOT);
623         if (!getcwd(user_cwd, sizeof(user_cwd))) {
624             warnx("cannot get working directory");
625             (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
626         }
627     } else
628         set_perms(PERM_ROOT);
629
630     /*
631      * If we were given the '-e', '-i' or '-s' options we need to redo
632      * NewArgv and NewArgc.
633      */
634     if ((sudo_mode & (MODE_SHELL | MODE_EDIT))) {
635         char **dst, **src = NewArgv;
636
637         /* Allocate an extra slot for execve() failure (ENOEXEC). */
638         NewArgv = (char **) emalloc2((++NewArgc + 2), sizeof(char *));
639         NewArgv++;
640         if (ISSET(sudo_mode, MODE_EDIT))
641             NewArgv[0] = "sudoedit";
642         else if (ISSET(sudo_mode, MODE_LOGIN_SHELL))
643             NewArgv[0] = runas_pw->pw_shell;
644         else if (user_shell && *user_shell)
645             NewArgv[0] = user_shell;
646         else
647             errx(1, "unable to determine shell");
648
649         /* copy the args from NewArgv */
650         for (dst = NewArgv + 1; (*dst = *src) != NULL; ++src, ++dst)
651             continue;
652     }
653
654     /* Set login class if applicable. */
655     set_loginclass(sudo_user.pw);
656
657     /* Set project if applicable. */
658     set_project(runas_pw);
659
660     /* Resolve the path and return. */
661     rval = FOUND;
662     user_stat = emalloc(sizeof(struct stat));
663     if (sudo_mode & (MODE_RUN | MODE_EDIT)) {
664         if (ISSET(sudo_mode, MODE_RUN)) {
665             /* XXX - default_runas may be modified during parsing of sudoers */
666             set_perms(PERM_RUNAS);
667             rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
668             set_perms(PERM_ROOT);
669             if (rval != FOUND) {
670                 /* Failed as root, try as invoking user. */
671                 set_perms(PERM_USER);
672                 rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
673                 set_perms(PERM_ROOT);
674             }
675         }
676
677         /* set user_args */
678         if (NewArgc > 1) {
679             char *to, **from;
680             size_t size, n;
681
682             /* If we didn't realloc NewArgv it is contiguous so just count. */
683             if (!(sudo_mode & (MODE_SHELL | MODE_EDIT))) {
684                 size = (size_t) (NewArgv[NewArgc-1] - NewArgv[1]) +
685                         strlen(NewArgv[NewArgc-1]) + 1;
686             } else {
687                 for (size = 0, from = NewArgv + 1; *from; from++)
688                     size += strlen(*from) + 1;
689             }
690
691             /* Alloc and build up user_args. */
692             user_args = (char *) emalloc(size);
693             for (to = user_args, from = NewArgv + 1; *from; from++) {
694                 n = strlcpy(to, *from, size - (to - user_args));
695                 if (n >= size - (to - user_args))
696                     errx(1, "internal error, init_vars() overflow");
697                 to += n;
698                 *to++ = ' ';
699             }
700             *--to = '\0';
701         }
702     }
703     if ((user_base = strrchr(user_cmnd, '/')) != NULL)
704         user_base++;
705     else
706         user_base = user_cmnd;
707
708     return(rval);
709 }
710
711 /*
712  * Command line argument parsing, can't use getopt(3).
713  */
714 static int
715 parse_args(argc, argv)
716     int argc;
717     char **argv;
718 {
719     int rval = MODE_RUN;                /* what mode is sudo to be run in? */
720     int excl = 0;                       /* exclusive arg, no others allowed */
721
722     NewArgv = argv + 1;
723     NewArgc = argc - 1;
724
725     /* First, check to see if we were invoked as "sudoedit". */
726     if (strcmp(getprogname(), "sudoedit") == 0) {
727         rval = MODE_EDIT;
728         excl = 'e';
729     } else
730         rval = MODE_RUN;
731
732     while (NewArgc > 0) {
733         if (NewArgv[0][0] == '-') {
734             if (NewArgv[0][1] != '\0' && NewArgv[0][2] != '\0') {
735                 warnx("please use single character options");
736                 usage(1);
737             }
738
739             switch (NewArgv[0][1]) {
740                 case 'p':
741                     /* Must have an associated prompt. */
742                     if (NewArgv[1] == NULL)
743                         usage(1);
744
745                     user_prompt = NewArgv[1];
746                     def_passprompt_override = TRUE;
747
748                     NewArgc--;
749                     NewArgv++;
750                     break;
751                 case 'u':
752                     /* Must have an associated runas user. */
753                     if (NewArgv[1] == NULL)
754                         usage(1);
755
756                     user_runas = &NewArgv[1];
757
758                     NewArgc--;
759                     NewArgv++;
760                     break;
761 #ifdef HAVE_BSD_AUTH_H
762                 case 'a':
763                     /* Must have an associated authentication style. */
764                     if (NewArgv[1] == NULL)
765                         usage(1);
766
767                     login_style = NewArgv[1];
768
769                     NewArgc--;
770                     NewArgv++;
771                     break;
772 #endif
773 #ifdef HAVE_LOGIN_CAP_H
774                 case 'c':
775                     /* Must have an associated login class. */
776                     if (NewArgv[1] == NULL)
777                         usage(1);
778
779                     login_class = NewArgv[1];
780                     def_use_loginclass = TRUE;
781
782                     NewArgc--;
783                     NewArgv++;
784                     break;
785 #endif
786                 case 'b':
787                     SET(rval, MODE_BACKGROUND);
788                     break;
789                 case 'e':
790                     rval = MODE_EDIT;
791                     if (excl && excl != 'e')
792                         usage_excl(1);
793                     excl = 'e';
794                     break;
795                 case 'v':
796                     rval = MODE_VALIDATE;
797                     if (excl && excl != 'v')
798                         usage_excl(1);
799                     excl = 'v';
800                     break;
801                 case 'i':
802                     SET(rval, (MODE_LOGIN_SHELL | MODE_SHELL));
803                     def_env_reset = TRUE;
804                     if (excl && excl != 'i')
805                         usage_excl(1);
806                     excl = 'i';
807                     break;
808                 case 'k':
809                     rval = MODE_INVALIDATE;
810                     if (excl && excl != 'k')
811                         usage_excl(1);
812                     excl = 'k';
813                     break;
814                 case 'K':
815                     rval = MODE_KILL;
816                     if (excl && excl != 'K')
817                         usage_excl(1);
818                     excl = 'K';
819                     break;
820                 case 'L':
821                     rval = MODE_LISTDEFS;
822                     if (excl && excl != 'L')
823                         usage_excl(1);
824                     excl = 'L';
825                     break;
826                 case 'l':
827                     rval = MODE_LIST;
828                     if (excl && excl != 'l')
829                         usage_excl(1);
830                     excl = 'l';
831                     break;
832                 case 'V':
833                     rval = MODE_VERSION;
834                     if (excl && excl != 'V')
835                         usage_excl(1);
836                     excl = 'V';
837                     break;
838                 case 'h':
839                     rval = MODE_HELP;
840                     if (excl && excl != 'h')
841                         usage_excl(1);
842                     excl = 'h';
843                     break;
844                 case 's':
845                     SET(rval, MODE_SHELL);
846                     if (excl && excl != 's')
847                         usage_excl(1);
848                     excl = 's';
849                     break;
850                 case 'H':
851                     SET(rval, MODE_RESET_HOME);
852                     break;
853                 case 'P':
854                     SET(rval, MODE_PRESERVE_GROUPS);
855                     break;
856                 case 'S':
857                     SET(tgetpass_flags, TGP_STDIN);
858                     break;
859                 case 'E':
860                     SET(rval, MODE_PRESERVE_ENV);
861                     break;
862 #ifdef HAVE_SELINUX
863                 case 'r':
864                     /* Must have an associated SELinux role. */
865                     if (NewArgv[1] == NULL)
866                         usage(1);
867
868                     user_role = NewArgv[1];
869
870                     NewArgc--;
871                     NewArgv++;
872                     break;
873                 case 't':
874                     /* Must have an associated SELinux type. */
875                     if (NewArgv[1] == NULL)
876                         usage(1);
877
878                     user_type = NewArgv[1];
879
880                     NewArgc--;
881                     NewArgv++;
882                     break;
883 #endif
884                 case '-':
885                     NewArgc--;
886                     NewArgv++;
887                     goto args_done;
888                 case '\0':
889                     warnx("'-' requires an argument");
890                     usage(1);
891                 default:
892                     warnx("illegal option `%s'", NewArgv[0]);
893                     usage(1);
894             }
895         } else if (NewArgv[0][0] != '/' && strchr(NewArgv[0], '=') != NULL) {
896             /* Could be an environment variable. */
897             struct list_member *ev;
898             ev = emalloc(sizeof(*ev));
899             ev->value = NewArgv[0];
900             ev->next = sudo_user.env_vars;
901             sudo_user.env_vars = ev;
902         } else {
903             /* Not an arg */
904             break;
905         }
906         NewArgc--;
907         NewArgv++;
908     }
909 args_done:
910
911     if (ISSET(rval, MODE_EDIT) &&
912         (ISSET(rval, MODE_PRESERVE_ENV) || sudo_user.env_vars != NULL)) {
913         if (ISSET(rval, MODE_PRESERVE_ENV))
914             warnx("the `-E' option is not valid in edit mode");
915         if (sudo_user.env_vars != NULL)
916             warnx("you may not specify environment variables in edit mode");
917         usage(1);
918     }
919
920     if (user_runas != NULL && !ISSET(rval, (MODE_EDIT|MODE_RUN))) {
921         if (excl != '\0')
922             warnx("the `-u' and '-%c' options may not be used together", excl);
923         usage(1);
924     }
925     if ((NewArgc == 0 && (rval & MODE_EDIT)) ||
926         (NewArgc > 0 && !(rval & (MODE_RUN | MODE_EDIT))))
927         usage(1);
928     if (NewArgc == 0 && rval == MODE_RUN)
929         SET(rval, (MODE_IMPLIED_SHELL | MODE_SHELL));
930
931     return(rval);
932 }
933
934 /*
935  * Sanity check sudoers mode/owner/type.
936  * Leaves a file pointer to the sudoers file open in ``fp''.
937  */
938 static void
939 check_sudoers()
940 {
941     struct stat statbuf;
942     int rootstat, i;
943
944     /*
945      * Fix the mode and group on sudoers file from old default.
946      * Only works if file system is readable/writable by root.
947      */
948     if ((rootstat = stat_sudoers(_PATH_SUDOERS, &statbuf)) == 0 &&
949         SUDOERS_UID == statbuf.st_uid && SUDOERS_MODE != 0400 &&
950         (statbuf.st_mode & 0007777) == 0400) {
951
952         if (chmod(_PATH_SUDOERS, SUDOERS_MODE) == 0) {
953             warnx("fixed mode on %s", _PATH_SUDOERS);
954             SET(statbuf.st_mode, SUDOERS_MODE);
955             if (statbuf.st_gid != SUDOERS_GID) {
956                 if (!chown(_PATH_SUDOERS,(uid_t) -1,SUDOERS_GID)) {
957                     warnx("set group on %s", _PATH_SUDOERS);
958                     statbuf.st_gid = SUDOERS_GID;
959                 } else
960                     warn("unable to set group on %s", _PATH_SUDOERS);
961             }
962         } else
963             warn("unable to fix mode on %s", _PATH_SUDOERS);
964     }
965
966     /*
967      * Sanity checks on sudoers file.  Must be done as sudoers
968      * file owner.  We already did a stat as root, so use that
969      * data if we can't stat as sudoers file owner.
970      */
971     set_perms(PERM_SUDOERS);
972
973     if (rootstat != 0 && stat_sudoers(_PATH_SUDOERS, &statbuf) != 0)
974         log_error(USE_ERRNO, "can't stat %s", _PATH_SUDOERS);
975     else if (!S_ISREG(statbuf.st_mode))
976         log_error(0, "%s is not a regular file", _PATH_SUDOERS);
977     else if (statbuf.st_size == 0)
978         log_error(0, "%s is zero length", _PATH_SUDOERS);
979     else if ((statbuf.st_mode & 07777) != SUDOERS_MODE)
980         log_error(0, "%s is mode 0%o, should be 0%o", _PATH_SUDOERS,
981             (unsigned int) (statbuf.st_mode & 07777),
982             (unsigned int) SUDOERS_MODE);
983     else if (statbuf.st_uid != SUDOERS_UID)
984         log_error(0, "%s is owned by uid %lu, should be %lu", _PATH_SUDOERS,
985             (unsigned long) statbuf.st_uid, (unsigned long) SUDOERS_UID);
986     else if (statbuf.st_gid != SUDOERS_GID)
987         log_error(0, "%s is owned by gid %lu, should be %lu", _PATH_SUDOERS,
988             (unsigned long) statbuf.st_gid, (unsigned long) SUDOERS_GID);
989     else {
990         /* Solaris sometimes returns EAGAIN so try 10 times */
991         for (i = 0; i < 10 ; i++) {
992             errno = 0;
993             if ((sudoers_fp = fopen(_PATH_SUDOERS, "r")) == NULL ||
994                 fgetc(sudoers_fp) == EOF) {
995                 if (sudoers_fp != NULL)
996                     fclose(sudoers_fp);
997                 sudoers_fp = NULL;
998                 if (errno != EAGAIN && errno != EWOULDBLOCK)
999                     break;
1000             } else
1001                 break;
1002             sleep(1);
1003         }
1004         if (sudoers_fp == NULL)
1005             log_error(USE_ERRNO, "can't open %s", _PATH_SUDOERS);
1006     }
1007
1008     set_perms(PERM_ROOT);               /* change back to root */
1009 }
1010
1011 /*
1012  * Close all open files (except std*) and turn off core dumps.
1013  */
1014 static void
1015 initial_setup()
1016 {
1017     int miss[3], devnull = -1;
1018 #if defined(__linux__) || (defined(RLIMIT_CORE) && !defined(SUDO_DEVEL))
1019     struct rlimit rl;
1020 #endif
1021
1022 #if defined(__linux__)
1023     /*
1024      * Unlimit the number of processes since Linux's setuid() will
1025      * apply resource limits when changing uid and return EAGAIN if
1026      * nproc would be violated by the uid switch.
1027      */
1028     rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
1029     if (setrlimit(RLIMIT_NPROC, &rl)) {
1030         if (getrlimit(RLIMIT_NPROC, &rl) == 0) {
1031             rl.rlim_cur = rl.rlim_max;
1032             (void)setrlimit(RLIMIT_NPROC, &rl);
1033         }
1034     }
1035 #endif /* __linux__ */
1036 #if defined(RLIMIT_CORE) && !defined(SUDO_DEVEL)
1037     /*
1038      * Turn off core dumps.
1039      */
1040     (void) getrlimit(RLIMIT_CORE, &corelimit);
1041     memcpy(&rl, &corelimit, sizeof(struct rlimit));
1042     rl.rlim_cur = 0;
1043     (void) setrlimit(RLIMIT_CORE, &rl);
1044 #endif /* RLIMIT_CORE && !SUDO_DEVEL */
1045
1046     /*
1047      * stdin, stdout and stderr must be open; set them to /dev/null
1048      * if they are closed and close all other fds.
1049      */
1050     miss[STDIN_FILENO] = fcntl(STDIN_FILENO, F_GETFL, 0) == -1;
1051     miss[STDOUT_FILENO] = fcntl(STDOUT_FILENO, F_GETFL, 0) == -1;
1052     miss[STDERR_FILENO] = fcntl(STDERR_FILENO, F_GETFL, 0) == -1;
1053     if (miss[STDIN_FILENO] || miss[STDOUT_FILENO] || miss[STDERR_FILENO]) {
1054         if ((devnull = open(_PATH_DEVNULL, O_RDWR, 0644)) != -1) {
1055             if (miss[STDIN_FILENO])
1056                 (void) dup2(devnull, STDIN_FILENO);
1057             if (miss[STDOUT_FILENO])
1058                 (void) dup2(devnull, STDOUT_FILENO);
1059             if (miss[STDERR_FILENO])
1060                 (void) dup2(devnull, STDERR_FILENO);
1061         }
1062     }
1063     closefrom(STDERR_FILENO + 1);
1064 }
1065
1066 #ifdef HAVE_LOGIN_CAP_H
1067 static void
1068 set_loginclass(pw)
1069     struct passwd *pw;
1070 {
1071     int errflags;
1072
1073     /*
1074      * Don't make it a fatal error if the user didn't specify the login
1075      * class themselves.  We do this because if login.conf gets
1076      * corrupted we want the admin to be able to use sudo to fix it.
1077      */
1078     if (login_class)
1079         errflags = NO_MAIL|MSG_ONLY;
1080     else
1081         errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1082
1083     if (login_class && strcmp(login_class, "-") != 0) {
1084         if (strcmp(*user_runas, "root") != 0 && user_uid != 0)
1085             errx(1, "only root can use -c %s", login_class);
1086     } else {
1087         login_class = pw->pw_class;
1088         if (!login_class || !*login_class)
1089             login_class =
1090                 (pw->pw_uid == 0) ? LOGIN_DEFROOTCLASS : LOGIN_DEFCLASS;
1091     }
1092
1093     lc = login_getclass(login_class);
1094     if (!lc || !lc->lc_class || strcmp(lc->lc_class, login_class) != 0) {
1095         log_error(errflags, "unknown login class: %s", login_class);
1096         if (!lc)
1097             lc = login_getclass(NULL);  /* needed for login_getstyle() later */
1098     }
1099 }
1100 #else
1101 static void
1102 set_loginclass(pw)
1103     struct passwd *pw;
1104 {
1105 }
1106 #endif /* HAVE_LOGIN_CAP_H */
1107
1108 #ifdef HAVE_PROJECT_H
1109 static void
1110 set_project(pw)
1111     struct passwd *pw;
1112 {
1113     int errflags = NO_MAIL|MSG_ONLY|NO_EXIT;
1114     int errval;
1115     struct project proj;
1116     struct project *resultp = '\0';
1117     char buf[1024];
1118
1119     /*
1120      * Collect the default project for the user and settaskid
1121      */
1122     setprojent();
1123     if (resultp = getdefaultproj(pw->pw_name, &proj, buf, sizeof(buf))) {
1124         errval = setproject(resultp->pj_name, pw->pw_name, TASK_NORMAL);
1125         if (errval != 0) {
1126             switch(errval) {
1127             case SETPROJ_ERR_TASK:
1128                 if (errno == EAGAIN)
1129                     log_error(errflags, "resource control limit has been reached");
1130                 else if (errno == ESRCH)
1131                     log_error(errflags, "user \"%s\" is not a member of "
1132                         "project \"%s\"", pw->pw_name, resultp->pj_name);
1133                 else if (errno == EACCES)
1134                     log_error(errflags, "the invoking task is final");
1135                 else
1136                     log_error(errflags, "could not join project \"%s\"",
1137                         resultp->pj_name);
1138                 break;
1139             case SETPROJ_ERR_POOL:
1140                 if (errno == EACCES)
1141                     log_error(errflags, "no resource pool accepting "
1142                             "default bindings exists for project \"%s\"",
1143                             resultp->pj_name);
1144                 else if (errno == ESRCH)
1145                     log_error(errflags, "specified resource pool does "
1146                             "not exist for project \"%s\"", resultp->pj_name);
1147                 else
1148                     log_error(errflags, "could not bind to default "
1149                             "resource pool for project \"%s\"", resultp->pj_name);
1150                 break;
1151             default:
1152                 if (errval <= 0) {
1153                     log_error(errflags, "setproject failed for project \"%s\"",
1154                         resultp->pj_name);
1155                 } else {
1156                     log_error(errflags, "warning, resource control assignment "
1157                         "failed for project \"%s\"", resultp->pj_name);
1158                 }
1159             }
1160         }
1161     } else {
1162         log_error(errflags, "getdefaultproj() error: %s", strerror(errno));
1163     }
1164     endprojent();
1165 }
1166 #else
1167 static void
1168 set_project(pw)
1169     struct passwd *pw;
1170 {
1171 }
1172 #endif /* HAVE_PROJECT_H */
1173
1174 /*
1175  * Look up the fully qualified domain name and set user_host and user_shost.
1176  */
1177 void
1178 set_fqdn()
1179 {
1180 #ifdef HAVE_GETADDRINFO
1181     struct addrinfo *res0, hint;
1182 #else
1183     struct hostent *hp;
1184 #endif
1185     char *p;
1186
1187 #ifdef HAVE_GETADDRINFO
1188     memset(&hint, 0, sizeof(hint));
1189     hint.ai_family = PF_UNSPEC;
1190     hint.ai_flags = AI_CANONNAME;
1191     if (getaddrinfo(user_host, NULL, &hint, &res0) != 0) {
1192 #else
1193     if (!(hp = gethostbyname(user_host))) {
1194 #endif
1195         log_error(MSG_ONLY|NO_EXIT,
1196             "unable to resolve host %s", user_host);
1197     } else {
1198         if (user_shost != user_host)
1199             efree(user_shost);
1200         efree(user_host);
1201 #ifdef HAVE_GETADDRINFO
1202         user_host = estrdup(res0->ai_canonname);
1203         freeaddrinfo(res0);
1204 #else
1205         user_host = estrdup(hp->h_name);
1206 #endif
1207     }
1208     if ((p = strchr(user_host, '.'))) {
1209         *p = '\0';
1210         user_shost = estrdup(user_host);
1211         *p = '.';
1212     } else {
1213         user_shost = user_host;
1214     }
1215     sudo_user.host_fqdn_queried = TRUE;
1216 }
1217
1218 /*
1219  * Get passwd entry for the user we are going to run commands as.
1220  * By default, this is "root".  Updates runas_pw as a side effect.
1221  */
1222 int
1223 set_runaspw(user)
1224     char *user;
1225 {
1226     if (runas_pw != NULL) {
1227         if (user_runas != &def_runas_default)
1228             return(TRUE);               /* don't override -u option */
1229         efree(runas_pw);
1230     }
1231     if (*user == '#') {
1232         runas_pw = sudo_getpwuid(atoi(user + 1));
1233         if (runas_pw == NULL) {
1234             runas_pw = emalloc(sizeof(struct passwd));
1235             (void) memset((VOID *)runas_pw, 0, sizeof(struct passwd));
1236             runas_pw->pw_uid = atoi(user + 1);
1237         }
1238     } else {
1239         runas_pw = sudo_getpwnam(user);
1240         if (runas_pw == NULL)
1241             log_error(NO_MAIL|MSG_ONLY, "no passwd entry for %s!", user);
1242     }
1243     return(TRUE);
1244 }
1245
1246 /*
1247  * Get passwd entry for the user we are going to run commands as.
1248  * By default, this is "root".  Updates runas_pw as a side effect.
1249  */
1250 int
1251 set_runaspw(user)
1252     char *user;
1253 {
1254     if (runas_pw != NULL) {
1255         if (user_runas != &def_runas_default)
1256             return(TRUE);               /* don't override -u option */
1257         efree(runas_pw);
1258     }
1259     if (*user == '#') {
1260         runas_pw = sudo_getpwuid(atoi(user + 1));
1261         if (runas_pw == NULL) {
1262             runas_pw = emalloc(sizeof(struct passwd));
1263             (void) memset((VOID *)runas_pw, 0, sizeof(struct passwd));
1264             runas_pw->pw_uid = atoi(user + 1);
1265         }
1266     } else {
1267         runas_pw = sudo_getpwnam(user);
1268         if (runas_pw == NULL)
1269             log_error(NO_MAIL|MSG_ONLY, "no passwd entry for %s!", user);
1270     }
1271     return(TRUE);
1272 }
1273
1274 /*
1275  * Get passwd entry for the user we are going to authenticate as.
1276  * By default, this is the user invoking sudo.  In the most common
1277  * case, this matches sudo_user.pw or runas_pw.
1278  */
1279 static struct passwd *
1280 get_authpw()
1281 {
1282     struct passwd *pw;
1283
1284     if (def_rootpw) {
1285         if (runas_pw->pw_uid == 0)
1286             pw = runas_pw;
1287         else if ((pw = sudo_getpwuid(0)) == NULL)
1288             log_error(0, "uid 0 does not exist in the passwd file!");
1289     } else if (def_runaspw) {
1290         if (strcmp(def_runas_default, *user_runas) == 0)
1291             pw = runas_pw;
1292         else if ((pw = sudo_getpwnam(def_runas_default)) == NULL)
1293             log_error(0, "user %s does not exist in the passwd file!",
1294                 def_runas_default);
1295     } else if (def_targetpw) {
1296         if (runas_pw->pw_name == NULL)
1297             log_error(NO_MAIL|MSG_ONLY, "no passwd entry for %lu!",
1298                 (unsigned long) runas_pw->pw_uid);
1299         pw = runas_pw;
1300     } else
1301         pw = sudo_user.pw;
1302
1303     return(pw);
1304 }
1305
1306 /*
1307  * Tell which options are mutually exclusive and exit.
1308  */
1309 static void
1310 usage_excl(exit_val)
1311     int exit_val;
1312 {
1313     warnx("Only one of the -e, -h, i, -k, -K, -l, -s, -v or -V options may be used");
1314     usage(exit_val);
1315 }
1316
1317 /*
1318  * Give usage message and exit.
1319  */
1320 static void
1321 usage(exit_val)
1322     int exit_val;
1323 {
1324     char **p, **uvec[4];
1325     int i, linelen, linemax, ulen, plen;
1326     static char *uvec1[] = {
1327         " -h |",
1328         " -K |",
1329         " -k |",
1330         " -L |",
1331         " -l |",
1332         " -V |",
1333         " -v",
1334         NULL
1335     };
1336     static char *uvec2[] = {
1337         " [-bEHPS]",
1338 #ifdef HAVE_BSD_AUTH_H
1339         " [-a auth_type]",
1340 #endif
1341 #ifdef HAVE_LOGIN_CAP_H
1342         " [-c class|-]",
1343 #endif
1344 #ifdef HAVE_SELINUX
1345         " [-r role]",
1346 #endif
1347         " [-p prompt]",
1348 #ifdef HAVE_SELINUX
1349         " [-t type]",
1350 #endif
1351         " [-u username|#uid]",
1352         " [VAR=value]",
1353         " {-i | -s | <command>}",
1354         NULL
1355     };
1356     static char *uvec3[] = {
1357         " -e",
1358         " [-S]",
1359 #ifdef HAVE_BSD_AUTH_H
1360         " [-a auth_type]",
1361 #endif
1362 #ifdef HAVE_LOGIN_CAP_H
1363         " [-c class|-]",
1364 #endif
1365         " [-p prompt]",
1366         " [-u username|#uid]",
1367         " file ...",
1368         NULL
1369     };
1370
1371     /*
1372      * Use usage vectors appropriate to the progname.
1373      */
1374     if (strcmp(getprogname(), "sudoedit") == 0) {
1375         uvec[0] = uvec3 + 1;
1376         uvec[1] = NULL;
1377     } else {
1378         uvec[0] = uvec1;
1379         uvec[1] = uvec2;
1380         uvec[2] = uvec3;
1381         uvec[3] = NULL;
1382     }
1383
1384     /*
1385      * Print usage and wrap lines as needed.
1386      * Assumes an 80-character wide terminal, which is kind of bogus...
1387      */
1388     ulen = (int)strlen(getprogname()) + 7;
1389     linemax = 80;
1390     for (i = 0; uvec[i] != NULL; i++) {
1391         printf("usage: %s", getprogname());
1392         linelen = linemax - ulen;
1393         for (p = uvec[i]; *p != NULL; p++) {
1394             plen = (int)strlen(*p);
1395             if (linelen >= plen || linelen == linemax - ulen) {
1396                 fputs(*p, stdout);
1397                 linelen -= plen;
1398             } else {
1399                 p--;
1400                 linelen = linemax - ulen;
1401                 printf("\n%*s", ulen, "");
1402             }
1403         }
1404         putchar('\n');
1405     }
1406     exit(exit_val);
1407 }