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