Merge commit 'upstream/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     sudo_user.host_fqdn_queried = FALSE;
527     nohostname = gethostname(thost, sizeof(thost));
528     if (nohostname)
529         user_host = user_shost = "localhost";
530     else {
531         user_host = estrdup(thost);
532         if (def_fqdn) {
533             /* Defer call to set_fqdn() until log_error() is safe. */
534             user_shost = user_host;
535         } else {
536             user_shost = user_host;
537         }
538     }
539
540     if ((p = ttyname(STDIN_FILENO)) || (p = ttyname(STDOUT_FILENO))) {
541         user_tty = user_ttypath = estrdup(p);
542         if (strncmp(user_tty, _PATH_DEV, sizeof(_PATH_DEV) - 1) == 0)
543             user_tty += sizeof(_PATH_DEV) - 1;
544     } else
545         user_tty = "unknown";
546
547     for (ep = envp; *ep; ep++) {
548         switch (**ep) {
549             case 'P':
550                 if (strncmp("PATH=", *ep, 5) == 0)
551                     user_path = *ep + 5;
552                 break;
553             case 'S':
554                 if (strncmp("SHELL=", *ep, 6) == 0)
555                     user_shell = *ep + 6;
556                 else if (!user_prompt && strncmp("SUDO_PROMPT=", *ep, 12) == 0)
557                     user_prompt = *ep + 12;
558                 else if (strncmp("SUDO_USER=", *ep, 10) == 0)
559                     prev_user = *ep + 10;
560                 break;
561
562             }
563     }
564
565     /*
566      * Get a local copy of the user's struct passwd with the shadow password
567      * if necessary.  It is assumed that euid is 0 at this point so we
568      * can read the shadow passwd file if necessary.
569      */
570     if ((sudo_user.pw = sudo_getpwuid(getuid())) == NULL) {
571         /* Need to make a fake struct passwd for logging to work. */
572         struct passwd pw;
573         char pw_name[MAX_UID_T_LEN + 1];
574
575         pw.pw_uid = getuid();
576         (void) snprintf(pw_name, sizeof(pw_name), "%lu",
577             (unsigned long) pw.pw_uid);
578         pw.pw_name = pw_name;
579         sudo_user.pw = &pw;
580
581         /*
582          * If we are in -k/-K mode, just spew to stderr.  It is not unusual for
583          * users to place "sudo -k" in a .logout file which can cause sudo to
584          * be run during reboot after the YP/NIS/NIS+/LDAP/etc daemon has died.
585          */
586         if (sudo_mode & (MODE_INVALIDATE|MODE_KILL))
587             errx(1, "uid %s does not exist in the passwd file!", pw_name);
588         log_error(0, "uid %s does not exist in the passwd file!", pw_name);
589     }
590     if (user_shell == NULL || *user_shell == '\0')
591         user_shell = sudo_user.pw->pw_shell;
592
593     /* It is now safe to use log_error() and set_perms() */
594
595 #ifdef HAVE_GETGROUPS
596     if ((user_ngroups = getgroups(0, NULL)) > 0) {
597         user_groups = emalloc2(user_ngroups, sizeof(GETGROUPS_T));
598         if (getgroups(user_ngroups, user_groups) < 0)
599             log_error(USE_ERRNO|MSG_ONLY, "can't get group vector");
600     } else
601         user_ngroups = 0;
602 #endif
603
604     if (def_fqdn)
605         set_fqdn();                     /* may call log_error() */
606
607     if (nohostname)
608         log_error(USE_ERRNO|MSG_ONLY, "can't get hostname");
609
610     set_runaspw(*user_runas);           /* may call log_error() */
611     if (*user_runas[0] == '#' && runas_pw->pw_name && runas_pw->pw_name[0])
612         *user_runas = estrdup(runas_pw->pw_name);
613
614     /*
615      * Get current working directory.  Try as user, fall back to root.
616      */
617     set_perms(PERM_USER);
618     if (!getcwd(user_cwd, sizeof(user_cwd))) {
619         set_perms(PERM_ROOT);
620         if (!getcwd(user_cwd, sizeof(user_cwd))) {
621             warnx("cannot get working directory");
622             (void) strlcpy(user_cwd, "unknown", sizeof(user_cwd));
623         }
624     } else
625         set_perms(PERM_ROOT);
626
627     /*
628      * If we were given the '-e', '-i' or '-s' options we need to redo
629      * NewArgv and NewArgc.
630      */
631     if ((sudo_mode & (MODE_SHELL | MODE_EDIT))) {
632         char **dst, **src = NewArgv;
633
634         /* Allocate an extra slot for execve() failure (ENOEXEC). */
635         NewArgv = (char **) emalloc2((++NewArgc + 2), sizeof(char *));
636         NewArgv++;
637         if (ISSET(sudo_mode, MODE_EDIT))
638             NewArgv[0] = "sudoedit";
639         else if (ISSET(sudo_mode, MODE_LOGIN_SHELL))
640             NewArgv[0] = runas_pw->pw_shell;
641         else if (user_shell && *user_shell)
642             NewArgv[0] = user_shell;
643         else
644             errx(1, "unable to determine shell");
645
646         /* copy the args from NewArgv */
647         for (dst = NewArgv + 1; (*dst = *src) != NULL; ++src, ++dst)
648             continue;
649     }
650
651     /* Set login class if applicable. */
652     set_loginclass(sudo_user.pw);
653
654     /* Set project if applicable. */
655     set_project(runas_pw);
656
657     /* Resolve the path and return. */
658     rval = FOUND;
659     user_stat = emalloc(sizeof(struct stat));
660     if (sudo_mode & (MODE_RUN | MODE_EDIT)) {
661         if (ISSET(sudo_mode, MODE_RUN)) {
662             /* XXX - default_runas may be modified during parsing of sudoers */
663             set_perms(PERM_RUNAS);
664             rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
665             set_perms(PERM_ROOT);
666             if (rval != FOUND) {
667                 /* Failed as root, try as invoking user. */
668                 set_perms(PERM_USER);
669                 rval = find_path(NewArgv[0], &user_cmnd, user_stat, user_path);
670                 set_perms(PERM_ROOT);
671             }
672         }
673
674         /* set user_args */
675         if (NewArgc > 1) {
676             char *to, **from;
677             size_t size, n;
678
679             /* If we didn't realloc NewArgv it is contiguous so just count. */
680             if (!(sudo_mode & (MODE_SHELL | MODE_EDIT))) {
681                 size = (size_t) (NewArgv[NewArgc-1] - NewArgv[1]) +
682                         strlen(NewArgv[NewArgc-1]) + 1;
683             } else {
684                 for (size = 0, from = NewArgv + 1; *from; from++)
685                     size += strlen(*from) + 1;
686             }
687
688             /* Alloc and build up user_args. */
689             user_args = (char *) emalloc(size);
690             for (to = user_args, from = NewArgv + 1; *from; from++) {
691                 n = strlcpy(to, *from, size - (to - user_args));
692                 if (n >= size - (to - user_args))
693                     errx(1, "internal error, init_vars() overflow");
694                 to += n;
695                 *to++ = ' ';
696             }
697             *--to = '\0';
698         }
699     }
700     if ((user_base = strrchr(user_cmnd, '/')) != NULL)
701         user_base++;
702     else
703         user_base = user_cmnd;
704
705     return(rval);
706 }
707
708 /*
709  * Command line argument parsing, can't use getopt(3).
710  */
711 static int
712 parse_args(argc, argv)
713     int argc;
714     char **argv;
715 {
716     int rval = MODE_RUN;                /* what mode is sudo to be run in? */
717     int excl = 0;                       /* exclusive arg, no others allowed */
718
719     NewArgv = argv + 1;
720     NewArgc = argc - 1;
721
722     /* First, check to see if we were invoked as "sudoedit". */
723     if (strcmp(getprogname(), "sudoedit") == 0) {
724         rval = MODE_EDIT;
725         excl = 'e';
726     } else
727         rval = MODE_RUN;
728
729     while (NewArgc > 0) {
730         if (NewArgv[0][0] == '-') {
731             if (NewArgv[0][1] != '\0' && NewArgv[0][2] != '\0') {
732                 warnx("please use single character options");
733                 usage(1);
734             }
735
736             switch (NewArgv[0][1]) {
737                 case 'p':
738                     /* Must have an associated prompt. */
739                     if (NewArgv[1] == NULL)
740                         usage(1);
741
742                     user_prompt = NewArgv[1];
743                     def_passprompt_override = TRUE;
744
745                     NewArgc--;
746                     NewArgv++;
747                     break;
748                 case 'u':
749                     /* Must have an associated runas user. */
750                     if (NewArgv[1] == NULL)
751                         usage(1);
752
753                     user_runas = &NewArgv[1];
754
755                     NewArgc--;
756                     NewArgv++;
757                     break;
758 #ifdef HAVE_BSD_AUTH_H
759                 case 'a':
760                     /* Must have an associated authentication style. */
761                     if (NewArgv[1] == NULL)
762                         usage(1);
763
764                     login_style = NewArgv[1];
765
766                     NewArgc--;
767                     NewArgv++;
768                     break;
769 #endif
770 #ifdef HAVE_LOGIN_CAP_H
771                 case 'c':
772                     /* Must have an associated login class. */
773                     if (NewArgv[1] == NULL)
774                         usage(1);
775
776                     login_class = NewArgv[1];
777                     def_use_loginclass = TRUE;
778
779                     NewArgc--;
780                     NewArgv++;
781                     break;
782 #endif
783                 case 'b':
784                     SET(rval, MODE_BACKGROUND);
785                     break;
786                 case 'e':
787                     rval = MODE_EDIT;
788                     if (excl && excl != 'e')
789                         usage_excl(1);
790                     excl = 'e';
791                     break;
792                 case 'v':
793                     rval = MODE_VALIDATE;
794                     if (excl && excl != 'v')
795                         usage_excl(1);
796                     excl = 'v';
797                     break;
798                 case 'i':
799                     SET(rval, (MODE_LOGIN_SHELL | MODE_SHELL));
800                     def_env_reset = TRUE;
801                     if (excl && excl != 'i')
802                         usage_excl(1);
803                     excl = 'i';
804                     break;
805                 case 'k':
806                     rval = MODE_INVALIDATE;
807                     if (excl && excl != 'k')
808                         usage_excl(1);
809                     excl = 'k';
810                     break;
811                 case 'K':
812                     rval = MODE_KILL;
813                     if (excl && excl != 'K')
814                         usage_excl(1);
815                     excl = 'K';
816                     break;
817                 case 'L':
818                     rval = MODE_LISTDEFS;
819                     if (excl && excl != 'L')
820                         usage_excl(1);
821                     excl = 'L';
822                     break;
823                 case 'l':
824                     rval = MODE_LIST;
825                     if (excl && excl != 'l')
826                         usage_excl(1);
827                     excl = 'l';
828                     break;
829                 case 'V':
830                     rval = MODE_VERSION;
831                     if (excl && excl != 'V')
832                         usage_excl(1);
833                     excl = 'V';
834                     break;
835                 case 'h':
836                     rval = MODE_HELP;
837                     if (excl && excl != 'h')
838                         usage_excl(1);
839                     excl = 'h';
840                     break;
841                 case 's':
842                     SET(rval, MODE_SHELL);
843                     if (excl && excl != 's')
844                         usage_excl(1);
845                     excl = 's';
846                     break;
847                 case 'H':
848                     SET(rval, MODE_RESET_HOME);
849                     break;
850                 case 'P':
851                     SET(rval, MODE_PRESERVE_GROUPS);
852                     break;
853                 case 'S':
854                     SET(tgetpass_flags, TGP_STDIN);
855                     break;
856                 case 'E':
857                     SET(rval, MODE_PRESERVE_ENV);
858                     break;
859 #ifdef HAVE_SELINUX
860                 case 'r':
861                     /* Must have an associated SELinux role. */
862                     if (NewArgv[1] == NULL)
863                         usage(1);
864
865                     user_role = NewArgv[1];
866
867                     NewArgc--;
868                     NewArgv++;
869                     break;
870                 case 't':
871                     /* Must have an associated SELinux type. */
872                     if (NewArgv[1] == NULL)
873                         usage(1);
874
875                     user_type = NewArgv[1];
876
877                     NewArgc--;
878                     NewArgv++;
879                     break;
880 #endif
881                 case '-':
882                     NewArgc--;
883                     NewArgv++;
884                     goto args_done;
885                 case '\0':
886                     warnx("'-' requires an argument");
887                     usage(1);
888                 default:
889                     warnx("illegal option `%s'", NewArgv[0]);
890                     usage(1);
891             }
892         } else if (NewArgv[0][0] != '/' && strchr(NewArgv[0], '=') != NULL) {
893             /* Could be an environment variable. */
894             struct list_member *ev;
895             ev = emalloc(sizeof(*ev));
896             ev->value = NewArgv[0];
897             ev->next = sudo_user.env_vars;
898             sudo_user.env_vars = ev;
899         } else {
900             /* Not an arg */
901             break;
902         }
903         NewArgc--;
904         NewArgv++;
905     }
906 args_done:
907
908     if (ISSET(rval, MODE_EDIT) &&
909         (ISSET(rval, MODE_PRESERVE_ENV) || sudo_user.env_vars != NULL)) {
910         if (ISSET(rval, MODE_PRESERVE_ENV))
911             warnx("the `-E' option is not valid in edit mode");
912         if (sudo_user.env_vars != NULL)
913             warnx("you may not specify environment variables in edit mode");
914         usage(1);
915     }
916     if (ISSET(rval, MODE_PRESERVE_ENV) && ISSET(rval, MODE_LOGIN_SHELL)) {
917         warnx("you may not specify both the `-i' and `-E' options");
918         usage(1);
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 authenticate as.
1248  * By default, this is the user invoking sudo.  In the most common
1249  * case, this matches sudo_user.pw or runas_pw.
1250  */
1251 static struct passwd *
1252 get_authpw()
1253 {
1254     struct passwd *pw;
1255
1256     if (def_rootpw) {
1257         if (runas_pw->pw_uid == 0)
1258             pw = runas_pw;
1259         else if ((pw = sudo_getpwuid(0)) == NULL)
1260             log_error(0, "uid 0 does not exist in the passwd file!");
1261     } else if (def_runaspw) {
1262         if (strcmp(def_runas_default, *user_runas) == 0)
1263             pw = runas_pw;
1264         else if ((pw = sudo_getpwnam(def_runas_default)) == NULL)
1265             log_error(0, "user %s does not exist in the passwd file!",
1266                 def_runas_default);
1267     } else if (def_targetpw) {
1268         if (runas_pw->pw_name == NULL)
1269             log_error(NO_MAIL|MSG_ONLY, "no passwd entry for %lu!",
1270                 (unsigned long) runas_pw->pw_uid);
1271         pw = runas_pw;
1272     } else
1273         pw = sudo_user.pw;
1274
1275     return(pw);
1276 }
1277
1278 /*
1279  * Tell which options are mutually exclusive and exit.
1280  */
1281 static void
1282 usage_excl(exit_val)
1283     int exit_val;
1284 {
1285     warnx("Only one of the -e, -h, i, -k, -K, -l, -s, -v or -V options may be used");
1286     usage(exit_val);
1287 }
1288
1289 /*
1290  * Give usage message and exit.
1291  */
1292 static void
1293 usage(exit_val)
1294     int exit_val;
1295 {
1296     char **p, **uvec[4];
1297     int i, linelen, linemax, ulen, plen;
1298     static char *uvec1[] = {
1299         " -h |",
1300         " -K |",
1301         " -k |",
1302         " -L |",
1303         " -l |",
1304         " -V |",
1305         " -v",
1306         NULL
1307     };
1308     static char *uvec2[] = {
1309         " [-bEHPS]",
1310 #ifdef HAVE_BSD_AUTH_H
1311         " [-a auth_type]",
1312 #endif
1313 #ifdef HAVE_LOGIN_CAP_H
1314         " [-c class|-]",
1315 #endif
1316 #ifdef HAVE_SELINUX
1317         " [-r role]",
1318 #endif
1319         " [-p prompt]",
1320 #ifdef HAVE_SELINUX
1321         " [-t type]",
1322 #endif
1323         " [-u username|#uid]",
1324         " [VAR=value]",
1325         " {-i | -s | <command>}",
1326         NULL
1327     };
1328     static char *uvec3[] = {
1329         " -e",
1330         " [-S]",
1331 #ifdef HAVE_BSD_AUTH_H
1332         " [-a auth_type]",
1333 #endif
1334 #ifdef HAVE_LOGIN_CAP_H
1335         " [-c class|-]",
1336 #endif
1337         " [-p prompt]",
1338         " [-u username|#uid]",
1339         " file ...",
1340         NULL
1341     };
1342
1343     /*
1344      * Use usage vectors appropriate to the progname.
1345      */
1346     if (strcmp(getprogname(), "sudoedit") == 0) {
1347         uvec[0] = uvec3 + 1;
1348         uvec[1] = NULL;
1349     } else {
1350         uvec[0] = uvec1;
1351         uvec[1] = uvec2;
1352         uvec[2] = uvec3;
1353         uvec[3] = NULL;
1354     }
1355
1356     /*
1357      * Print usage and wrap lines as needed.
1358      * Assumes an 80-character wide terminal, which is kind of bogus...
1359      */
1360     ulen = (int)strlen(getprogname()) + 7;
1361     linemax = 80;
1362     for (i = 0; uvec[i] != NULL; i++) {
1363         printf("usage: %s", getprogname());
1364         linelen = linemax - ulen;
1365         for (p = uvec[i]; *p != NULL; p++) {
1366             plen = (int)strlen(*p);
1367             if (linelen >= plen || linelen == linemax - ulen) {
1368                 fputs(*p, stdout);
1369                 linelen -= plen;
1370             } else {
1371                 p--;
1372                 linelen = linemax - ulen;
1373                 printf("\n%*s", ulen, "");
1374             }
1375         }
1376         putchar('\n');
1377     }
1378     exit(exit_val);
1379 }