[BACK]Return to su.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / su

Annotation of src/usr.bin/su/su.c, Revision 1.73.2.2

1.73.2.2! tb          1: /*     $OpenBSD: su.c,v 1.73.2.1 2019/12/04 09:51:49 deraadt Exp $     */
1.4       deraadt     2:
1.1       deraadt     3: /*
                      4:  * Copyright (c) 1988 The Regents of the University of California.
                      5:  * All rights reserved.
                      6:  *
                      7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *    notice, this list of conditions and the following disclaimer in the
                     14:  *    documentation and/or other materials provided with the distribution.
1.52      millert    15:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    16:  *    may be used to endorse or promote products derived from this software
                     17:  *    without specific prior written permission.
                     18:  *
                     19:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     20:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     21:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     22:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     23:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     24:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     25:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     26:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     27:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     28:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     29:  * SUCH DAMAGE.
                     30:  */
                     31:
                     32: #include <sys/time.h>
                     33: #include <sys/resource.h>
1.8       millert    34:
                     35: #include <err.h>
                     36: #include <errno.h>
                     37: #include <grp.h>
1.33      millert    38: #include <login_cap.h>
1.8       millert    39: #include <paths.h>
                     40: #include <pwd.h>
1.1       deraadt    41: #include <stdio.h>
                     42: #include <stdlib.h>
                     43: #include <string.h>
1.8       millert    44: #include <syslog.h>
1.1       deraadt    45: #include <unistd.h>
1.66      deraadt    46: #include <limits.h>
1.47      millert    47: #include <utmp.h>
1.36      millert    48: #include <stdarg.h>
                     49: #include <bsd_auth.h>
                     50:
1.47      millert    51: char   *getloginname(void);
1.43      millert    52: char   *ontty(void);
1.53      millert    53: int    chshell(const char *);
1.47      millert    54: int    verify_user(char *, struct passwd *, char *, login_cap_t *,
                     55:            auth_session_t *);
1.43      millert    56: void   usage(void);
                     57: void   auth_err(auth_session_t *, int, const char *, ...);
                     58: void   auth_errx(auth_session_t *, int, const char *, ...);
1.1       deraadt    59:
                     60: int
1.47      millert    61: main(int argc, char **argv)
1.1       deraadt    62: {
1.54      deraadt    63:        int asme = 0, asthem = 0, ch, fastlogin = 0, emlogin = 0, prio;
1.65      robert     64:        int altshell = 0, homeless = 0;
1.45      deraadt    65:        char *user, *shell = NULL, *avshell, *username, **np;
1.47      millert    66:        char *class = NULL, *style = NULL, *p;
1.45      deraadt    67:        enum { UNSET, YES, NO } iscsh = UNSET;
1.66      deraadt    68:        char avshellbuf[PATH_MAX];
1.1       deraadt    69:        extern char **environ;
1.45      deraadt    70:        auth_session_t *as;
1.36      millert    71:        struct passwd *pwd;
1.45      deraadt    72:        login_cap_t *lc;
1.9       millert    73:        uid_t ruid;
1.54      deraadt    74:        u_int flags;
1.1       deraadt    75:
1.71      deraadt    76:        if (pledge("stdio unveil rpath getpw proc exec id", NULL) == -1)
1.68      deraadt    77:                err(1, "pledge");
                     78:
1.59      millert    79:        while ((ch = getopt(argc, argv, "a:c:fKLlms:-")) != -1)
1.45      deraadt    80:                switch (ch) {
1.36      millert    81:                case 'a':
                     82:                        if (style)
                     83:                                usage();
                     84:                        style = optarg;
1.1       deraadt    85:                        break;
1.33      millert    86:                case 'c':
1.36      millert    87:                        if (class)
                     88:                                usage();
1.33      millert    89:                        class = optarg;
                     90:                        break;
1.1       deraadt    91:                case 'f':
                     92:                        fastlogin = 1;
                     93:                        break;
1.36      millert    94:                case 'K':
                     95:                        if (style)
                     96:                                usage();
                     97:                        style = "passwd";
                     98:                        break;
1.47      millert    99:                case 'L':
                    100:                        emlogin = 1;
                    101:                        break;
                    102:                case 'l':
1.1       deraadt   103:                case '-':
                    104:                        asme = 0;
                    105:                        asthem = 1;
                    106:                        break;
                    107:                case 'm':
                    108:                        asme = 1;
                    109:                        asthem = 0;
                    110:                        break;
1.59      millert   111:                case 's':
                    112:                        altshell = 1;
                    113:                        shell = optarg;
                    114:                        break;
1.1       deraadt   115:                default:
1.36      millert   116:                        usage();
1.1       deraadt   117:                }
                    118:        argv += optind;
                    119:
                    120:        errno = 0;
                    121:        prio = getpriority(PRIO_PROCESS, 0);
                    122:        if (errno)
                    123:                prio = 0;
1.67      deraadt   124:        setpriority(PRIO_PROCESS, 0, -2);
1.1       deraadt   125:        openlog("su", LOG_CONS, 0);
                    126:
1.36      millert   127:        if ((as = auth_open()) == NULL) {
                    128:                syslog(LOG_ERR, "auth_open: %m");
1.39      millert   129:                err(1, "unable to initialize BSD authentication");
1.36      millert   130:        }
1.39      millert   131:        auth_setoption(as, "login", "yes");
1.36      millert   132:
1.1       deraadt   133:        /* get current login name and shell */
                    134:        ruid = getuid();
                    135:        username = getlogin();
1.40      hin       136:
1.47      millert   137:        if (ruid && class)
                    138:                auth_errx(as, 1, "only the superuser may specify a login class");
                    139:
1.59      millert   140:        if (ruid && altshell)
                    141:                auth_errx(as, 1, "only the superuser may specify a login shell");
                    142:
1.41      millert   143:        if (username != NULL)
1.40      hin       144:                auth_setoption(as, "invokinguser", username);
                    145:
1.1       deraadt   146:        if (username == NULL || (pwd = getpwnam(username)) == NULL ||
                    147:            pwd->pw_uid != ruid)
                    148:                pwd = getpwuid(ruid);
1.8       millert   149:        if (pwd == NULL)
1.36      millert   150:                auth_errx(as, 1, "who are you?");
1.9       millert   151:        if ((username = strdup(pwd->pw_name)) == NULL)
1.73.2.1  deraadt   152:                auth_err(as, 1, NULL);
1.59      millert   153:        if (asme && !altshell) {
1.10      millert   154:                if (pwd->pw_shell && *pwd->pw_shell) {
1.42      millert   155:                        if ((shell = strdup(pwd->pw_shell)) == NULL)
1.73.2.1  deraadt   156:                                auth_err(as, 1, NULL);
1.10      millert   157:                } else {
1.1       deraadt   158:                        shell = _PATH_BSHELL;
                    159:                        iscsh = NO;
                    160:                }
1.31      art       161:        }
1.1       deraadt   162:
1.71      deraadt   163:        if (unveil(_PATH_LOGIN_CONF, "r") == -1)
                    164:                err(1, "unveil");
                    165:        if (unveil(_PATH_AUTHPROGDIR, "x") == -1)
1.72      deraadt   166:                err(1, "unveil");
                    167:        if (unveil(_PATH_SHELLS, "r") == -1)
1.73      deraadt   168:                err(1, "unveil");
                    169:        if (unveil(_PATH_DEVDB, "r") == -1)
1.71      deraadt   170:                err(1, "unveil");
                    171:
1.47      millert   172:        for (;;) {
1.73.2.2! tb        173:                char *pw_class = class;
        !           174:
1.47      millert   175:                /* get target user, default to root unless in -L mode */
                    176:                if (*argv) {
                    177:                        user = *argv;
                    178:                } else if (emlogin) {
                    179:                        if ((user = getloginname()) == NULL) {
                    180:                                auth_close(as);
                    181:                                exit(1);
                    182:                        }
                    183:                } else {
                    184:                        user = "root";
                    185:                }
                    186:                /* style may be specified as part of the username */
                    187:                if ((p = strchr(user, ':')) != NULL) {
                    188:                        *p++ = '\0';
1.49      millert   189:                        style = p;      /* XXX overrides -a flag */
                    190:                }
1.65      robert    191:
1.36      millert   192:                /*
1.47      millert   193:                 * Clean and setup our current authentication session.
                    194:                 * Note that options *are* not cleared.
1.36      millert   195:                 */
1.47      millert   196:                auth_clean(as);
                    197:                if (auth_setitem(as, AUTHV_INTERACTIVE, "True") != 0 ||
                    198:                    auth_setitem(as, AUTHV_NAME, user) != 0)
1.73.2.1  deraadt   199:                        auth_err(as, 1, NULL);
1.47      millert   200:                if ((user = auth_getitem(as, AUTHV_NAME)) == NULL)
                    201:                        auth_errx(as, 1, "internal error");
                    202:                if (auth_setpwd(as, NULL) || (pwd = auth_getpwd(as)) == NULL) {
                    203:                        if (emlogin)
                    204:                                pwd = NULL;
                    205:                        else
                    206:                                auth_errx(as, 1, "unknown login %s", user);
1.1       deraadt   207:                }
1.36      millert   208:
1.47      millert   209:                /* If the user specified a login class, use it */
1.73.2.2! tb        210:                if (pw_class == NULL && pwd != NULL)
        !           211:                        pw_class = pwd->pw_class;
        !           212:                if ((lc = login_getclass(pw_class)) == NULL)
1.47      millert   213:                        auth_errx(as, 1, "no such login class: %s",
1.73.2.2! tb        214:                            pw_class ? pw_class : LOGIN_DEFCLASS);
1.47      millert   215:
                    216:                if ((ruid == 0 && !emlogin) ||
                    217:                    verify_user(username, pwd, style, lc, as) == 0)
                    218:                        break;
                    219:                syslog(LOG_AUTH|LOG_WARNING, "BAD SU %s to %s%s",
                    220:                    username, user, ontty());
                    221:                if (!emlogin) {
1.36      millert   222:                        fprintf(stderr, "Sorry\n");
                    223:                        auth_close(as);
                    224:                        exit(1);
1.1       deraadt   225:                }
1.47      millert   226:                fprintf(stderr, "Login incorrect\n");
1.1       deraadt   227:        }
1.73.2.1  deraadt   228:        if (pwd == NULL)
                    229:                auth_errx(as, 1, "internal error");
1.1       deraadt   230:
1.71      deraadt   231:        if (pledge("stdio unveil rpath getpw exec id", NULL) == -1)
1.70      miod      232:                err(1, "pledge");
                    233:
1.59      millert   234:        if (!altshell) {
                    235:                if (asme) {
                    236:                        /* if asme and non-std target shell, must be root */
                    237:                        if (ruid && !chshell(shell))
                    238:                                auth_errx(as, 1, "permission denied (shell).");
                    239:                } else if (pwd->pw_shell && *pwd->pw_shell) {
                    240:                        if ((shell = strdup(pwd->pw_shell)) == NULL)
1.73.2.1  deraadt   241:                                auth_err(as, 1, NULL);
1.59      millert   242:                        iscsh = UNSET;
                    243:                } else {
                    244:                        shell = _PATH_BSHELL;
                    245:                        iscsh = NO;
                    246:                }
1.1       deraadt   247:        }
                    248:
1.71      deraadt   249:        if (unveil(shell, "x") == -1)
                    250:                err(1, "unveil");
                    251:        if (unveil(pwd->pw_dir, "r") == -1)
                    252:                err(1, "unveil");
                    253:
1.30      deraadt   254:        if ((p = strrchr(shell, '/')))
1.1       deraadt   255:                avshell = p+1;
                    256:        else
                    257:                avshell = shell;
                    258:
                    259:        /* if we're forking a csh, we want to slightly muck the args */
                    260:        if (iscsh == UNSET)
                    261:                iscsh = strcmp(avshell, "csh") ? NO : YES;
                    262:
                    263:        if (!asme) {
                    264:                if (asthem) {
                    265:                        p = getenv("TERM");
1.23      deraadt   266:                        if ((environ = calloc(1, sizeof (char *))) == NULL)
1.36      millert   267:                                auth_errx(as, 1, "calloc");
1.33      millert   268:                        if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETPATH))
1.36      millert   269:                                auth_err(as, 1, "unable to set user context");
                    270:                        if (p && setenv("TERM", p, 1) == -1)
                    271:                                auth_err(as, 1, "unable to set environment");
1.5       deraadt   272:
1.57      deraadt   273:                        setegid(pwd->pw_gid);
1.5       deraadt   274:                        seteuid(pwd->pw_uid);
1.65      robert    275:
                    276:                        homeless = chdir(pwd->pw_dir);
                    277:                        if (homeless) {
                    278:                                if (login_getcapbool(lc, "requirehome", 0)) {
                    279:                                        auth_err(as, 1, "%s", pwd->pw_dir);
                    280:                                } else {
1.71      deraadt   281:                                        if (unveil("/", "r") == -1)
                    282:                                                err(1, "unveil");
1.67      deraadt   283:                                        printf("No home directory %s!\n", pwd->pw_dir);
                    284:                                        printf("Logging in with home = \"/\".\n");
1.65      robert    285:                                        if (chdir("/") < 0)
                    286:                                                auth_err(as, 1, "/");
                    287:                                }
                    288:                        }
1.57      deraadt   289:                        setegid(0);     /* XXX use a saved gid instead? */
1.5       deraadt   290:                        seteuid(0);
1.33      millert   291:                } else if (pwd->pw_uid == 0) {
                    292:                        if (setusercontext(lc,
                    293:                            pwd, pwd->pw_uid, LOGIN_SETPATH|LOGIN_SETUMASK))
1.36      millert   294:                                auth_err(as, 1, "unable to set user context");
1.1       deraadt   295:                }
1.15      millert   296:                if (asthem || pwd->pw_uid) {
1.34      deraadt   297:                        if (setenv("LOGNAME", pwd->pw_name, 1) == -1 ||
                    298:                            setenv("USER", pwd->pw_name, 1) == -1)
1.36      millert   299:                                auth_err(as, 1, "unable to set environment");
1.15      millert   300:                }
1.65      robert    301:                if (setenv("HOME", homeless ? "/" : pwd->pw_dir, 1) == -1 ||
1.34      deraadt   302:                    setenv("SHELL", shell, 1) == -1)
1.59      millert   303:                        auth_err(as, 1, "unable to set environment");
                    304:        } else if (altshell) {
                    305:                if (setenv("SHELL", shell, 1) == -1)
1.36      millert   306:                        auth_err(as, 1, "unable to set environment");
1.34      deraadt   307:        }
1.71      deraadt   308:        if (pledge("stdio rpath getpw exec id", NULL) == -1)
                    309:                err(1, "pledge");
1.28      deraadt   310:
1.47      millert   311:        np = *argv ? argv : argv - 1;
1.1       deraadt   312:        if (iscsh == YES) {
                    313:                if (fastlogin)
                    314:                        *np-- = "-f";
                    315:                if (asme)
                    316:                        *np-- = "-m";
                    317:        }
                    318:
                    319:        if (asthem) {
                    320:                avshellbuf[0] = '-';
1.36      millert   321:                strlcpy(avshellbuf+1, avshell, sizeof(avshellbuf) - 1);
1.1       deraadt   322:                avshell = avshellbuf;
                    323:        } else if (iscsh == YES) {
                    324:                /* csh strips the first character... */
                    325:                avshellbuf[0] = '_';
1.36      millert   326:                strlcpy(avshellbuf+1, avshell, sizeof(avshellbuf) - 1);
1.1       deraadt   327:                avshell = avshellbuf;
                    328:        }
1.45      deraadt   329:
1.1       deraadt   330:        *np = avshell;
                    331:
                    332:        if (ruid != 0)
                    333:                syslog(LOG_NOTICE|LOG_AUTH, "%s to %s%s",
                    334:                    username, user, ontty());
                    335:
1.67      deraadt   336:        setpriority(PRIO_PROCESS, 0, prio);
1.51      millert   337:        if (emlogin) {
1.48      millert   338:                flags = LOGIN_SETALL & ~LOGIN_SETPATH;
1.51      millert   339:                /*
1.55      miod      340:                 * Only call setlogin() if this process is a session leader.
1.51      millert   341:                 * In practice, this means the login name will be set only if
                    342:                 * we are exec'd by a shell.  This is important because
                    343:                 * otherwise the parent shell's login name would change too.
                    344:                 */
                    345:                if (getsid(0) != getpid())
                    346:                        flags &= ~LOGIN_SETLOGIN;
1.64      millert   347:        } else {
                    348:                flags = LOGIN_SETRESOURCES|LOGIN_SETGROUP|LOGIN_SETUSER;
                    349:                if (asthem)
                    350:                        flags |= LOGIN_SETENV|LOGIN_SETPRIORITY|LOGIN_SETUMASK;
                    351:        }
1.48      millert   352:        if (setusercontext(lc, pwd, pwd->pw_uid, flags) != 0)
1.36      millert   353:                auth_err(as, 1, "unable to set user context");
1.68      deraadt   354:
                    355:        if (pledge("stdio rpath exec", NULL) == -1)
                    356:                err(1, "pledge");
                    357:
1.36      millert   358:        if (pwd->pw_uid && auth_approval(as, lc, pwd->pw_name, "su") <= 0)
                    359:                auth_err(as, 1, "approval failure");
                    360:        auth_close(as);
1.1       deraadt   361:
                    362:        execv(shell, np);
1.32      millert   363:        err(1, "%s", shell);
1.1       deraadt   364: }
                    365:
                    366: int
1.47      millert   367: verify_user(char *from, struct passwd *pwd, char *style,
                    368:     login_cap_t *lc, auth_session_t *as)
                    369: {
                    370:        struct group *gr;
                    371:        char **g, *cp;
                    372:        int authok;
                    373:
                    374:        /*
                    375:         * If we are trying to become root and the default style
                    376:         * is being used, don't bother to look it up (we might be
                    377:         * be su'ing up to fix /etc/login.conf)
                    378:         */
                    379:        if ((pwd == NULL || pwd->pw_uid != 0 || style == NULL ||
                    380:            strcmp(style, LOGIN_DEFSTYLE) != 0) &&
                    381:            (style = login_getstyle(lc, style, "auth-su")) == NULL)
                    382:                auth_errx(as, 1, "invalid authentication type");
                    383:
                    384:        /*
                    385:         * Let the authentication program know whether they are
                    386:         * in group wheel or not (if trying to become super user)
                    387:         */
                    388:        if (pwd != NULL && pwd->pw_uid == 0 && (gr = getgrgid(0)) != NULL &&
                    389:            gr->gr_mem != NULL && *(gr->gr_mem) != NULL) {
                    390:                for (g = gr->gr_mem; *g; ++g) {
                    391:                        if (strcmp(from, *g) == 0) {
                    392:                                auth_setoption(as, "wheel", "yes");
                    393:                                break;
                    394:                        }
                    395:                }
                    396:                if (!*g)
                    397:                        auth_setoption(as, "wheel", "no");
                    398:        }
                    399:
                    400:        auth_verify(as, style, NULL, lc->lc_class, (char *)NULL);
                    401:        authok = auth_getstate(as);
                    402:        if ((authok & AUTH_ALLOW) == 0) {
                    403:                if ((cp = auth_getvalue(as, "errormsg")) != NULL)
                    404:                        fprintf(stderr, "%s\n", cp);
                    405:                return(1);
                    406:        }
                    407:        return(0);
                    408: }
                    409:
                    410: int
1.53      millert   411: chshell(const char *sh)
1.1       deraadt   412: {
1.36      millert   413:        char *cp;
1.53      millert   414:        int found = 0;
1.1       deraadt   415:
1.53      millert   416:        setusershell();
                    417:        while ((cp = getusershell()) != NULL) {
                    418:                if (strcmp(cp, sh) == 0) {
                    419:                        found = 1;
                    420:                        break;
                    421:                }
                    422:        }
                    423:        endusershell();
                    424:        return (found);
1.1       deraadt   425: }
                    426:
                    427: char *
1.47      millert   428: ontty(void)
1.1       deraadt   429: {
1.66      deraadt   430:        static char buf[PATH_MAX + 4];
1.36      millert   431:        char *p;
1.1       deraadt   432:
                    433:        buf[0] = 0;
1.30      deraadt   434:        if ((p = ttyname(STDERR_FILENO)))
1.8       millert   435:                snprintf(buf, sizeof(buf), " on %s", p);
1.1       deraadt   436:        return (buf);
                    437: }
                    438:
1.47      millert   439: /*
                    440:  * Allow for a '.' and 16 characters for any instance as well as
1.56      otto      441:  * space for a ':' and 16 characters defining the authentication type.
1.47      millert   442:  */
                    443: #define NBUFSIZ                (UT_NAMESIZE + 1 + 16 + 1 + 16)
                    444:
                    445: char *
                    446: getloginname(void)
                    447: {
                    448:        static char nbuf[NBUFSIZ], *p;
                    449:        int ch;
                    450:
                    451:        for (;;) {
1.67      deraadt   452:                printf("login: ");
1.47      millert   453:                for (p = nbuf; (ch = getchar()) != '\n'; ) {
                    454:                        if (ch == EOF)
                    455:                                return (NULL);
                    456:                        if (p < nbuf + (NBUFSIZ - 1))
                    457:                                *p++ = ch;
                    458:                }
                    459:                if (p > nbuf) {
                    460:                        if (nbuf[0] == '-') {
1.67      deraadt   461:                                fprintf(stderr,
1.47      millert   462:                                    "login names may not start with '-'.\n");
                    463:                        } else {
                    464:                                *p = '\0';
                    465:                                break;
                    466:                        }
                    467:                }
                    468:        }
                    469:        return (nbuf);
                    470: }
                    471:
1.36      millert   472: void
1.47      millert   473: usage(void)
1.1       deraadt   474: {
1.36      millert   475:        extern char *__progname;
1.1       deraadt   476:
1.47      millert   477:        fprintf(stderr, "usage: %s [-fKLlm] [-a auth-type] [-c login-class] "
1.61      sobrado   478:            "[-s login-shell]\n"
                    479:            "%-*s[login [shell arguments]]\n", __progname,
1.62      sobrado   480:            (int)strlen(__progname) + 8, "");
1.36      millert   481:        exit(1);
1.1       deraadt   482: }
                    483:
1.36      millert   484: void
                    485: auth_err(auth_session_t *as, int eval, const char *fmt, ...)
1.1       deraadt   486: {
1.36      millert   487:        va_list ap;
1.46      millert   488:
1.36      millert   489:        va_start(ap, fmt);
1.46      millert   490:        vwarn(fmt, ap);
                    491:        va_end(ap);
1.36      millert   492:        auth_close(as);
1.46      millert   493:        exit(eval);
1.28      deraadt   494: }
                    495:
1.36      millert   496: void
                    497: auth_errx(auth_session_t *as, int eval, const char *fmt, ...)
1.28      deraadt   498: {
1.36      millert   499:        va_list ap;
1.46      millert   500:
1.36      millert   501:        va_start(ap, fmt);
1.46      millert   502:        vwarnx(fmt, ap);
                    503:        va_end(ap);
1.36      millert   504:        auth_close(as);
1.46      millert   505:        exit(eval);
1.1       deraadt   506: }