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

Annotation of src/usr.bin/ssh/misc.c, Revision 1.169

1.169   ! djm         1: /* $OpenBSD: misc.c,v 1.168 2021/07/12 06:22:57 dtucker Exp $ */
1.1       markus      2: /*
                      3:  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
1.148     djm         4:  * Copyright (c) 2005-2020 Damien Miller.  All rights reserved.
                      5:  * Copyright (c) 2004 Henning Brauer <henning@openbsd.org>
1.1       markus      6:  *
1.148     djm         7:  * Permission to use, copy, modify, and distribute this software for any
                      8:  * purpose with or without fee is hereby granted, provided that the above
                      9:  * copyright notice and this permission notice appear in all copies.
1.1       markus     10:  *
1.148     djm        11:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     12:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     13:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     14:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     15:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     16:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     17:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       markus     18:  */
                     19:
1.148     djm        20:
1.64      deraadt    21: #include <sys/types.h>
1.45      stevesk    22: #include <sys/ioctl.h>
1.53      stevesk    23: #include <sys/socket.h>
1.112     djm        24: #include <sys/stat.h>
1.101     dtucker    25: #include <sys/time.h>
1.112     djm        26: #include <sys/wait.h>
1.94      millert    27: #include <sys/un.h>
1.38      stevesk    28:
                     29: #include <net/if.h>
1.53      stevesk    30: #include <netinet/in.h>
1.83      djm        31: #include <netinet/ip.h>
1.44      stevesk    32: #include <netinet/tcp.h>
1.133     naddy      33: #include <arpa/inet.h>
1.43      stevesk    34:
1.92      djm        35: #include <ctype.h>
1.58      stevesk    36: #include <errno.h>
1.55      stevesk    37: #include <fcntl.h>
1.66      dtucker    38: #include <netdb.h>
1.43      stevesk    39: #include <paths.h>
1.54      stevesk    40: #include <pwd.h>
1.112     djm        41: #include <libgen.h>
1.96      deraadt    42: #include <limits.h>
1.136     djm        43: #include <poll.h>
1.112     djm        44: #include <signal.h>
1.57      stevesk    45: #include <stdarg.h>
1.63      stevesk    46: #include <stdio.h>
1.62      stevesk    47: #include <stdlib.h>
1.60      stevesk    48: #include <string.h>
1.59      stevesk    49: #include <unistd.h>
1.1       markus     50:
1.64      deraadt    51: #include "xmalloc.h"
1.1       markus     52: #include "misc.h"
                     53: #include "log.h"
1.56      dtucker    54: #include "ssh.h"
1.112     djm        55: #include "sshbuf.h"
                     56: #include "ssherr.h"
1.1       markus     57:
1.12      markus     58: /* remove newline at end of string */
1.1       markus     59: char *
                     60: chop(char *s)
                     61: {
                     62:        char *t = s;
                     63:        while (*t) {
1.13      deraadt    64:                if (*t == '\n' || *t == '\r') {
1.1       markus     65:                        *t = '\0';
                     66:                        return s;
                     67:                }
                     68:                t++;
                     69:        }
                     70:        return s;
                     71:
                     72: }
                     73:
1.166     djm        74: /* remove whitespace from end of string */
                     75: void
                     76: rtrim(char *s)
                     77: {
                     78:        size_t i;
                     79:
                     80:        if ((i = strlen(s)) == 0)
                     81:                return;
                     82:        for (i--; i > 0; i--) {
                     83:                if (isspace((int)s[i]))
                     84:                        s[i] = '\0';
                     85:        }
                     86: }
                     87:
1.12      markus     88: /* set/unset filedescriptor to non-blocking */
1.24      djm        89: int
1.1       markus     90: set_nonblock(int fd)
                     91: {
                     92:        int val;
1.8       markus     93:
1.103     krw        94:        val = fcntl(fd, F_GETFL);
1.139     deraadt    95:        if (val == -1) {
1.103     krw        96:                error("fcntl(%d, F_GETFL): %s", fd, strerror(errno));
1.24      djm        97:                return (-1);
1.1       markus     98:        }
                     99:        if (val & O_NONBLOCK) {
1.24      djm       100:                debug3("fd %d is O_NONBLOCK", fd);
                    101:                return (0);
1.1       markus    102:        }
1.21      markus    103:        debug2("fd %d setting O_NONBLOCK", fd);
1.1       markus    104:        val |= O_NONBLOCK;
1.24      djm       105:        if (fcntl(fd, F_SETFL, val) == -1) {
                    106:                debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s", fd,
                    107:                    strerror(errno));
                    108:                return (-1);
                    109:        }
                    110:        return (0);
1.8       markus    111: }
                    112:
1.24      djm       113: int
1.8       markus    114: unset_nonblock(int fd)
                    115: {
                    116:        int val;
                    117:
1.103     krw       118:        val = fcntl(fd, F_GETFL);
1.139     deraadt   119:        if (val == -1) {
1.103     krw       120:                error("fcntl(%d, F_GETFL): %s", fd, strerror(errno));
1.24      djm       121:                return (-1);
1.8       markus    122:        }
                    123:        if (!(val & O_NONBLOCK)) {
1.24      djm       124:                debug3("fd %d is not O_NONBLOCK", fd);
                    125:                return (0);
1.8       markus    126:        }
1.10      markus    127:        debug("fd %d clearing O_NONBLOCK", fd);
1.8       markus    128:        val &= ~O_NONBLOCK;
1.24      djm       129:        if (fcntl(fd, F_SETFL, val) == -1) {
                    130:                debug("fcntl(%d, F_SETFL, ~O_NONBLOCK): %s",
1.18      markus    131:                    fd, strerror(errno));
1.24      djm       132:                return (-1);
                    133:        }
                    134:        return (0);
1.66      dtucker   135: }
                    136:
                    137: const char *
                    138: ssh_gai_strerror(int gaierr)
                    139: {
1.91      djm       140:        if (gaierr == EAI_SYSTEM && errno != 0)
1.67      dtucker   141:                return strerror(errno);
                    142:        return gai_strerror(gaierr);
1.15      stevesk   143: }
                    144:
                    145: /* disable nagle on socket */
                    146: void
                    147: set_nodelay(int fd)
                    148: {
1.17      stevesk   149:        int opt;
                    150:        socklen_t optlen;
1.15      stevesk   151:
1.16      stevesk   152:        optlen = sizeof opt;
                    153:        if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
1.23      markus    154:                debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
1.16      stevesk   155:                return;
                    156:        }
                    157:        if (opt == 1) {
                    158:                debug2("fd %d is TCP_NODELAY", fd);
                    159:                return;
                    160:        }
                    161:        opt = 1;
1.20      markus    162:        debug2("fd %d setting TCP_NODELAY", fd);
1.16      stevesk   163:        if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
1.15      stevesk   164:                error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
1.117     djm       165: }
                    166:
                    167: /* Allow local port reuse in TIME_WAIT */
                    168: int
                    169: set_reuseaddr(int fd)
                    170: {
                    171:        int on = 1;
                    172:
                    173:        if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1) {
                    174:                error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
                    175:                return -1;
                    176:        }
                    177:        return 0;
                    178: }
                    179:
1.118     djm       180: /* Get/set routing domain */
                    181: char *
                    182: get_rdomain(int fd)
                    183: {
                    184:        int rtable;
                    185:        char *ret;
                    186:        socklen_t len = sizeof(rtable);
                    187:
                    188:        if (getsockopt(fd, SOL_SOCKET, SO_RTABLE, &rtable, &len) == -1) {
                    189:                error("Failed to get routing domain for fd %d: %s",
                    190:                    fd, strerror(errno));
                    191:                return NULL;
                    192:        }
                    193:        xasprintf(&ret, "%d", rtable);
                    194:        return ret;
                    195: }
                    196:
1.117     djm       197: int
                    198: set_rdomain(int fd, const char *name)
                    199: {
                    200:        int rtable;
                    201:        const char *errstr;
                    202:
                    203:        if (name == NULL)
                    204:                return 0; /* default table */
                    205:
                    206:        rtable = (int)strtonum(name, 0, 255, &errstr);
                    207:        if (errstr != NULL) {
                    208:                /* Shouldn't happen */
                    209:                error("Invalid routing domain \"%s\": %s", name, errstr);
                    210:                return -1;
                    211:        }
                    212:        if (setsockopt(fd, SOL_SOCKET, SO_RTABLE,
                    213:            &rtable, sizeof(rtable)) == -1) {
                    214:                error("Failed to set routing domain %d on fd %d: %s",
                    215:                    rtable, fd, strerror(errno));
                    216:                return -1;
                    217:        }
1.136     djm       218:        return 0;
1.156     djm       219: }
                    220:
                    221: int
                    222: get_sock_af(int fd)
                    223: {
                    224:        struct sockaddr_storage to;
                    225:        socklen_t tolen = sizeof(to);
                    226:
                    227:        memset(&to, 0, sizeof(to));
                    228:        if (getsockname(fd, (struct sockaddr *)&to, &tolen) == -1)
                    229:                return -1;
                    230:        return to.ss_family;
                    231: }
                    232:
                    233: void
                    234: set_sock_tos(int fd, int tos)
                    235: {
                    236:        int af;
                    237:
                    238:        switch ((af = get_sock_af(fd))) {
                    239:        case -1:
                    240:                /* assume not a socket */
                    241:                break;
                    242:        case AF_INET:
                    243:                debug3_f("set socket %d IP_TOS 0x%02x", fd, tos);
                    244:                if (setsockopt(fd, IPPROTO_IP, IP_TOS,
                    245:                    &tos, sizeof(tos)) == -1) {
                    246:                        error("setsockopt socket %d IP_TOS %d: %s:",
                    247:                            fd, tos, strerror(errno));
                    248:                }
                    249:                break;
                    250:        case AF_INET6:
                    251:                debug3_f("set socket %d IPV6_TCLASS 0x%02x", fd, tos);
                    252:                if (setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS,
                    253:                    &tos, sizeof(tos)) == -1) {
                    254:                        error("setsockopt socket %d IPV6_TCLASS %d: %.100s:",
                    255:                            fd, tos, strerror(errno));
                    256:                }
                    257:                break;
                    258:        default:
                    259:                debug2_f("unsupported socket family %d", af);
                    260:                break;
                    261:        }
1.136     djm       262: }
                    263:
                    264: /*
1.143     dtucker   265:  * Wait up to *timeoutp milliseconds for events on fd. Updates
1.136     djm       266:  * *timeoutp with time remaining.
                    267:  * Returns 0 if fd ready or -1 on timeout or error (see errno).
                    268:  */
1.143     dtucker   269: static int
                    270: waitfd(int fd, int *timeoutp, short events)
1.136     djm       271: {
                    272:        struct pollfd pfd;
                    273:        struct timeval t_start;
                    274:        int oerrno, r;
                    275:
                    276:        pfd.fd = fd;
1.143     dtucker   277:        pfd.events = events;
1.136     djm       278:        for (; *timeoutp >= 0;) {
1.159     dtucker   279:                monotime_tv(&t_start);
1.136     djm       280:                r = poll(&pfd, 1, *timeoutp);
                    281:                oerrno = errno;
                    282:                ms_subtract_diff(&t_start, timeoutp);
                    283:                errno = oerrno;
                    284:                if (r > 0)
                    285:                        return 0;
1.153     djm       286:                else if (r == -1 && errno != EAGAIN && errno != EINTR)
1.136     djm       287:                        return -1;
                    288:                else if (r == 0)
                    289:                        break;
                    290:        }
                    291:        /* timeout */
                    292:        errno = ETIMEDOUT;
                    293:        return -1;
                    294: }
                    295:
                    296: /*
1.143     dtucker   297:  * Wait up to *timeoutp milliseconds for fd to be readable. Updates
                    298:  * *timeoutp with time remaining.
                    299:  * Returns 0 if fd ready or -1 on timeout or error (see errno).
                    300:  */
                    301: int
                    302: waitrfd(int fd, int *timeoutp) {
                    303:        return waitfd(fd, timeoutp, POLLIN);
                    304: }
                    305:
                    306: /*
1.136     djm       307:  * Attempt a non-blocking connect(2) to the specified address, waiting up to
                    308:  * *timeoutp milliseconds for the connection to complete. If the timeout is
                    309:  * <=0, then wait indefinitely.
                    310:  *
                    311:  * Returns 0 on success or -1 on failure.
                    312:  */
                    313: int
                    314: timeout_connect(int sockfd, const struct sockaddr *serv_addr,
                    315:     socklen_t addrlen, int *timeoutp)
                    316: {
                    317:        int optval = 0;
                    318:        socklen_t optlen = sizeof(optval);
                    319:
                    320:        /* No timeout: just do a blocking connect() */
                    321:        if (timeoutp == NULL || *timeoutp <= 0)
                    322:                return connect(sockfd, serv_addr, addrlen);
                    323:
                    324:        set_nonblock(sockfd);
1.153     djm       325:        for (;;) {
                    326:                if (connect(sockfd, serv_addr, addrlen) == 0) {
                    327:                        /* Succeeded already? */
                    328:                        unset_nonblock(sockfd);
                    329:                        return 0;
                    330:                } else if (errno == EINTR)
                    331:                        continue;
                    332:                else if (errno != EINPROGRESS)
                    333:                        return -1;
                    334:                break;
                    335:        }
1.136     djm       336:
1.143     dtucker   337:        if (waitfd(sockfd, timeoutp, POLLIN | POLLOUT) == -1)
1.136     djm       338:                return -1;
                    339:
                    340:        /* Completed or failed */
                    341:        if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) {
                    342:                debug("getsockopt: %s", strerror(errno));
                    343:                return -1;
                    344:        }
                    345:        if (optval != 0) {
                    346:                errno = optval;
                    347:                return -1;
                    348:        }
                    349:        unset_nonblock(sockfd);
1.117     djm       350:        return 0;
1.72      reyk      351: }
                    352:
1.1       markus    353: /* Characters considered whitespace in strsep calls. */
                    354: #define WHITESPACE " \t\r\n"
1.46      dtucker   355: #define QUOTE  "\""
1.1       markus    356:
1.12      markus    357: /* return next token in configuration line */
1.129     djm       358: static char *
                    359: strdelim_internal(char **s, int split_equals)
1.1       markus    360: {
1.126     djm       361:        char *old;
1.1       markus    362:        int wspace = 0;
                    363:
                    364:        if (*s == NULL)
                    365:                return NULL;
                    366:
                    367:        old = *s;
                    368:
1.129     djm       369:        *s = strpbrk(*s,
                    370:            split_equals ? WHITESPACE QUOTE "=" : WHITESPACE QUOTE);
1.1       markus    371:        if (*s == NULL)
                    372:                return (old);
                    373:
1.46      dtucker   374:        if (*s[0] == '\"') {
                    375:                memmove(*s, *s + 1, strlen(*s)); /* move nul too */
                    376:                /* Find matching quote */
1.126     djm       377:                if ((*s = strpbrk(*s, QUOTE)) == NULL) {
                    378:                        return (NULL);          /* no matching quote */
                    379:                } else {
                    380:                        *s[0] = '\0';
                    381:                        *s += strspn(*s + 1, WHITESPACE) + 1;
                    382:                        return (old);
1.46      dtucker   383:                }
                    384:        }
                    385:
1.1       markus    386:        /* Allow only one '=' to be skipped */
1.129     djm       387:        if (split_equals && *s[0] == '=')
1.1       markus    388:                wspace = 1;
                    389:        *s[0] = '\0';
                    390:
1.46      dtucker   391:        /* Skip any extra whitespace after first token */
1.1       markus    392:        *s += strspn(*s + 1, WHITESPACE) + 1;
1.129     djm       393:        if (split_equals && *s[0] == '=' && !wspace)
1.1       markus    394:                *s += strspn(*s + 1, WHITESPACE) + 1;
                    395:
                    396:        return (old);
1.129     djm       397: }
                    398:
                    399: /*
                    400:  * Return next token in configuration line; splts on whitespace or a
                    401:  * single '=' character.
                    402:  */
                    403: char *
                    404: strdelim(char **s)
                    405: {
                    406:        return strdelim_internal(s, 1);
                    407: }
                    408:
                    409: /*
                    410:  * Return next token in configuration line; splts on whitespace only.
                    411:  */
                    412: char *
                    413: strdelimw(char **s)
                    414: {
                    415:        return strdelim_internal(s, 0);
1.2       markus    416: }
                    417:
                    418: struct passwd *
                    419: pwcopy(struct passwd *pw)
                    420: {
1.49      djm       421:        struct passwd *copy = xcalloc(1, sizeof(*copy));
1.4       deraadt   422:
1.2       markus    423:        copy->pw_name = xstrdup(pw->pw_name);
                    424:        copy->pw_passwd = xstrdup(pw->pw_passwd);
1.4       deraadt   425:        copy->pw_gecos = xstrdup(pw->pw_gecos);
1.2       markus    426:        copy->pw_uid = pw->pw_uid;
                    427:        copy->pw_gid = pw->pw_gid;
1.11      markus    428:        copy->pw_expire = pw->pw_expire;
                    429:        copy->pw_change = pw->pw_change;
1.2       markus    430:        copy->pw_class = xstrdup(pw->pw_class);
                    431:        copy->pw_dir = xstrdup(pw->pw_dir);
                    432:        copy->pw_shell = xstrdup(pw->pw_shell);
                    433:        return copy;
1.5       stevesk   434: }
                    435:
1.12      markus    436: /*
                    437:  * Convert ASCII string to TCP/IP port number.
1.70      djm       438:  * Port must be >=0 and <=65535.
                    439:  * Return -1 if invalid.
1.12      markus    440:  */
                    441: int
                    442: a2port(const char *s)
1.5       stevesk   443: {
1.133     naddy     444:        struct servent *se;
1.70      djm       445:        long long port;
                    446:        const char *errstr;
1.5       stevesk   447:
1.70      djm       448:        port = strtonum(s, 0, 65535, &errstr);
1.133     naddy     449:        if (errstr == NULL)
                    450:                return (int)port;
                    451:        if ((se = getservbyname(s, "tcp")) != NULL)
                    452:                return ntohs(se->s_port);
                    453:        return -1;
1.9       stevesk   454: }
                    455:
1.36      reyk      456: int
                    457: a2tun(const char *s, int *remote)
                    458: {
                    459:        const char *errstr = NULL;
                    460:        char *sp, *ep;
                    461:        int tun;
                    462:
                    463:        if (remote != NULL) {
1.37      reyk      464:                *remote = SSH_TUNID_ANY;
1.36      reyk      465:                sp = xstrdup(s);
                    466:                if ((ep = strchr(sp, ':')) == NULL) {
1.89      djm       467:                        free(sp);
1.36      reyk      468:                        return (a2tun(s, NULL));
                    469:                }
                    470:                ep[0] = '\0'; ep++;
                    471:                *remote = a2tun(ep, NULL);
                    472:                tun = a2tun(sp, NULL);
1.89      djm       473:                free(sp);
1.37      reyk      474:                return (*remote == SSH_TUNID_ERR ? *remote : tun);
1.36      reyk      475:        }
                    476:
                    477:        if (strcasecmp(s, "any") == 0)
1.37      reyk      478:                return (SSH_TUNID_ANY);
1.36      reyk      479:
1.37      reyk      480:        tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
                    481:        if (errstr != NULL)
                    482:                return (SSH_TUNID_ERR);
1.36      reyk      483:
                    484:        return (tun);
                    485: }
                    486:
1.9       stevesk   487: #define SECONDS                1
                    488: #define MINUTES                (SECONDS * 60)
                    489: #define HOURS          (MINUTES * 60)
                    490: #define DAYS           (HOURS * 24)
                    491: #define WEEKS          (DAYS * 7)
                    492:
1.12      markus    493: /*
                    494:  * Convert a time string into seconds; format is
                    495:  * a sequence of:
                    496:  *      time[qualifier]
                    497:  *
                    498:  * Valid time qualifiers are:
                    499:  *      <none>  seconds
                    500:  *      s|S     seconds
                    501:  *      m|M     minutes
                    502:  *      h|H     hours
                    503:  *      d|D     days
                    504:  *      w|W     weeks
                    505:  *
                    506:  * Examples:
                    507:  *      90m     90 minutes
                    508:  *      1h30m   90 minutes
                    509:  *      2d      2 days
                    510:  *      1w      1 week
                    511:  *
                    512:  * Return -1 if time string is invalid.
                    513:  */
1.158     dtucker   514: int
1.12      markus    515: convtime(const char *s)
1.9       stevesk   516: {
1.149     dtucker   517:        long total, secs, multiplier;
1.9       stevesk   518:        const char *p;
                    519:        char *endp;
                    520:
                    521:        errno = 0;
                    522:        total = 0;
                    523:        p = s;
                    524:
                    525:        if (p == NULL || *p == '\0')
                    526:                return -1;
                    527:
                    528:        while (*p) {
                    529:                secs = strtol(p, &endp, 10);
                    530:                if (p == endp ||
1.158     dtucker   531:                    (errno == ERANGE && (secs == INT_MIN || secs == INT_MAX)) ||
1.9       stevesk   532:                    secs < 0)
                    533:                        return -1;
                    534:
1.149     dtucker   535:                multiplier = 1;
1.9       stevesk   536:                switch (*endp++) {
                    537:                case '\0':
                    538:                        endp--;
1.48      deraadt   539:                        break;
1.9       stevesk   540:                case 's':
                    541:                case 'S':
                    542:                        break;
                    543:                case 'm':
                    544:                case 'M':
1.108     dtucker   545:                        multiplier = MINUTES;
1.9       stevesk   546:                        break;
                    547:                case 'h':
                    548:                case 'H':
1.108     dtucker   549:                        multiplier = HOURS;
1.9       stevesk   550:                        break;
                    551:                case 'd':
                    552:                case 'D':
1.108     dtucker   553:                        multiplier = DAYS;
1.9       stevesk   554:                        break;
                    555:                case 'w':
                    556:                case 'W':
1.108     dtucker   557:                        multiplier = WEEKS;
1.9       stevesk   558:                        break;
                    559:                default:
                    560:                        return -1;
                    561:                }
1.160     dtucker   562:                if (secs > INT_MAX / multiplier)
1.108     dtucker   563:                        return -1;
                    564:                secs *= multiplier;
1.160     dtucker   565:                if  (total > INT_MAX - secs)
1.108     dtucker   566:                        return -1;
1.9       stevesk   567:                total += secs;
                    568:                if (total < 0)
                    569:                        return -1;
                    570:                p = endp;
                    571:        }
                    572:
                    573:        return total;
1.148     djm       574: }
                    575:
                    576: #define TF_BUFS        8
                    577: #define TF_LEN 9
                    578:
                    579: const char *
                    580: fmt_timeframe(time_t t)
                    581: {
                    582:        char            *buf;
                    583:        static char      tfbuf[TF_BUFS][TF_LEN];        /* ring buffer */
                    584:        static int       idx = 0;
                    585:        unsigned int     sec, min, hrs, day;
                    586:        unsigned long long      week;
                    587:
                    588:        buf = tfbuf[idx++];
                    589:        if (idx == TF_BUFS)
                    590:                idx = 0;
                    591:
                    592:        week = t;
                    593:
                    594:        sec = week % 60;
                    595:        week /= 60;
                    596:        min = week % 60;
                    597:        week /= 60;
                    598:        hrs = week % 24;
                    599:        week /= 24;
                    600:        day = week % 7;
                    601:        week /= 7;
                    602:
                    603:        if (week > 0)
                    604:                snprintf(buf, TF_LEN, "%02lluw%01ud%02uh", week, day, hrs);
                    605:        else if (day > 0)
                    606:                snprintf(buf, TF_LEN, "%01ud%02uh%02um", day, hrs, min);
                    607:        else
                    608:                snprintf(buf, TF_LEN, "%02u:%02u:%02u", hrs, min, sec);
                    609:
                    610:        return (buf);
1.56      dtucker   611: }
                    612:
                    613: /*
                    614:  * Returns a standardized host+port identifier string.
                    615:  * Caller must free returned string.
                    616:  */
                    617: char *
                    618: put_host_port(const char *host, u_short port)
                    619: {
                    620:        char *hoststr;
                    621:
                    622:        if (port == 0 || port == SSH_DEFAULT_PORT)
                    623:                return(xstrdup(host));
1.138     deraadt   624:        if (asprintf(&hoststr, "[%s]:%d", host, (int)port) == -1)
1.56      dtucker   625:                fatal("put_host_port: asprintf: %s", strerror(errno));
                    626:        debug3("put_host_port: %s", hoststr);
                    627:        return hoststr;
1.28      djm       628: }
                    629:
                    630: /*
                    631:  * Search for next delimiter between hostnames/addresses and ports.
                    632:  * Argument may be modified (for termination).
                    633:  * Returns *cp if parsing succeeds.
1.114     millert   634:  * *cp is set to the start of the next field, if one was found.
                    635:  * The delimiter char, if present, is stored in delim.
1.28      djm       636:  * If this is the last field, *cp is set to NULL.
                    637:  */
1.137     dtucker   638: char *
1.114     millert   639: hpdelim2(char **cp, char *delim)
1.28      djm       640: {
                    641:        char *s, *old;
                    642:
                    643:        if (cp == NULL || *cp == NULL)
                    644:                return NULL;
                    645:
                    646:        old = s = *cp;
                    647:        if (*s == '[') {
                    648:                if ((s = strchr(s, ']')) == NULL)
                    649:                        return NULL;
                    650:                else
                    651:                        s++;
                    652:        } else if ((s = strpbrk(s, ":/")) == NULL)
                    653:                s = *cp + strlen(*cp); /* skip to end (see first case below) */
                    654:
                    655:        switch (*s) {
                    656:        case '\0':
                    657:                *cp = NULL;     /* no more fields*/
                    658:                break;
1.29      deraadt   659:
1.28      djm       660:        case ':':
                    661:        case '/':
1.114     millert   662:                if (delim != NULL)
                    663:                        *delim = *s;
1.28      djm       664:                *s = '\0';      /* terminate */
                    665:                *cp = s + 1;
                    666:                break;
1.29      deraadt   667:
1.28      djm       668:        default:
                    669:                return NULL;
                    670:        }
                    671:
                    672:        return old;
1.6       mouring   673: }
                    674:
                    675: char *
1.114     millert   676: hpdelim(char **cp)
                    677: {
                    678:        return hpdelim2(cp, NULL);
                    679: }
                    680:
                    681: char *
1.6       mouring   682: cleanhostname(char *host)
                    683: {
                    684:        if (*host == '[' && host[strlen(host) - 1] == ']') {
                    685:                host[strlen(host) - 1] = '\0';
                    686:                return (host + 1);
                    687:        } else
                    688:                return host;
                    689: }
                    690:
                    691: char *
                    692: colon(char *cp)
                    693: {
                    694:        int flag = 0;
                    695:
                    696:        if (*cp == ':')         /* Leading colon is part of file name. */
1.76      djm       697:                return NULL;
1.6       mouring   698:        if (*cp == '[')
                    699:                flag = 1;
                    700:
                    701:        for (; *cp; ++cp) {
                    702:                if (*cp == '@' && *(cp+1) == '[')
                    703:                        flag = 1;
                    704:                if (*cp == ']' && *(cp+1) == ':' && flag)
                    705:                        return (cp+1);
                    706:                if (*cp == ':' && !flag)
                    707:                        return (cp);
                    708:                if (*cp == '/')
1.76      djm       709:                        return NULL;
1.6       mouring   710:        }
1.76      djm       711:        return NULL;
1.105     djm       712: }
                    713:
                    714: /*
1.114     millert   715:  * Parse a [user@]host:[path] string.
                    716:  * Caller must free returned user, host and path.
                    717:  * Any of the pointer return arguments may be NULL (useful for syntax checking).
                    718:  * If user was not specified then *userp will be set to NULL.
                    719:  * If host was not specified then *hostp will be set to NULL.
                    720:  * If path was not specified then *pathp will be set to ".".
                    721:  * Returns 0 on success, -1 on failure.
                    722:  */
                    723: int
                    724: parse_user_host_path(const char *s, char **userp, char **hostp, char **pathp)
                    725: {
                    726:        char *user = NULL, *host = NULL, *path = NULL;
                    727:        char *sdup, *tmp;
                    728:        int ret = -1;
                    729:
                    730:        if (userp != NULL)
                    731:                *userp = NULL;
                    732:        if (hostp != NULL)
                    733:                *hostp = NULL;
                    734:        if (pathp != NULL)
                    735:                *pathp = NULL;
                    736:
1.116     millert   737:        sdup = xstrdup(s);
1.114     millert   738:
                    739:        /* Check for remote syntax: [user@]host:[path] */
                    740:        if ((tmp = colon(sdup)) == NULL)
                    741:                goto out;
                    742:
                    743:        /* Extract optional path */
                    744:        *tmp++ = '\0';
                    745:        if (*tmp == '\0')
                    746:                tmp = ".";
                    747:        path = xstrdup(tmp);
                    748:
                    749:        /* Extract optional user and mandatory host */
                    750:        tmp = strrchr(sdup, '@');
                    751:        if (tmp != NULL) {
                    752:                *tmp++ = '\0';
                    753:                host = xstrdup(cleanhostname(tmp));
                    754:                if (*sdup != '\0')
                    755:                        user = xstrdup(sdup);
                    756:        } else {
                    757:                host = xstrdup(cleanhostname(sdup));
                    758:                user = NULL;
                    759:        }
                    760:
                    761:        /* Success */
                    762:        if (userp != NULL) {
                    763:                *userp = user;
                    764:                user = NULL;
                    765:        }
                    766:        if (hostp != NULL) {
                    767:                *hostp = host;
                    768:                host = NULL;
1.116     millert   769:        }
1.114     millert   770:        if (pathp != NULL) {
                    771:                *pathp = path;
                    772:                path = NULL;
1.116     millert   773:        }
1.114     millert   774:        ret = 0;
                    775: out:
                    776:        free(sdup);
                    777:        free(user);
                    778:        free(host);
                    779:        free(path);
                    780:        return ret;
                    781: }
                    782:
                    783: /*
1.105     djm       784:  * Parse a [user@]host[:port] string.
                    785:  * Caller must free returned user and host.
                    786:  * Any of the pointer return arguments may be NULL (useful for syntax checking).
                    787:  * If user was not specified then *userp will be set to NULL.
                    788:  * If port was not specified then *portp will be -1.
                    789:  * Returns 0 on success, -1 on failure.
                    790:  */
                    791: int
                    792: parse_user_host_port(const char *s, char **userp, char **hostp, int *portp)
                    793: {
                    794:        char *sdup, *cp, *tmp;
                    795:        char *user = NULL, *host = NULL;
                    796:        int port = -1, ret = -1;
                    797:
                    798:        if (userp != NULL)
                    799:                *userp = NULL;
                    800:        if (hostp != NULL)
                    801:                *hostp = NULL;
                    802:        if (portp != NULL)
                    803:                *portp = -1;
                    804:
                    805:        if ((sdup = tmp = strdup(s)) == NULL)
                    806:                return -1;
                    807:        /* Extract optional username */
1.114     millert   808:        if ((cp = strrchr(tmp, '@')) != NULL) {
1.105     djm       809:                *cp = '\0';
                    810:                if (*tmp == '\0')
                    811:                        goto out;
                    812:                if ((user = strdup(tmp)) == NULL)
                    813:                        goto out;
                    814:                tmp = cp + 1;
                    815:        }
                    816:        /* Extract mandatory hostname */
                    817:        if ((cp = hpdelim(&tmp)) == NULL || *cp == '\0')
                    818:                goto out;
                    819:        host = xstrdup(cleanhostname(cp));
                    820:        /* Convert and verify optional port */
                    821:        if (tmp != NULL && *tmp != '\0') {
                    822:                if ((port = a2port(tmp)) <= 0)
                    823:                        goto out;
                    824:        }
                    825:        /* Success */
                    826:        if (userp != NULL) {
                    827:                *userp = user;
                    828:                user = NULL;
                    829:        }
                    830:        if (hostp != NULL) {
                    831:                *hostp = host;
                    832:                host = NULL;
                    833:        }
                    834:        if (portp != NULL)
                    835:                *portp = port;
                    836:        ret = 0;
                    837:  out:
                    838:        free(sdup);
                    839:        free(user);
                    840:        free(host);
                    841:        return ret;
1.7       mouring   842: }
                    843:
1.114     millert   844: /*
                    845:  * Converts a two-byte hex string to decimal.
                    846:  * Returns the decimal value or -1 for invalid input.
                    847:  */
                    848: static int
                    849: hexchar(const char *s)
                    850: {
                    851:        unsigned char result[2];
                    852:        int i;
                    853:
                    854:        for (i = 0; i < 2; i++) {
                    855:                if (s[i] >= '0' && s[i] <= '9')
                    856:                        result[i] = (unsigned char)(s[i] - '0');
                    857:                else if (s[i] >= 'a' && s[i] <= 'f')
                    858:                        result[i] = (unsigned char)(s[i] - 'a') + 10;
                    859:                else if (s[i] >= 'A' && s[i] <= 'F')
                    860:                        result[i] = (unsigned char)(s[i] - 'A') + 10;
                    861:                else
                    862:                        return -1;
                    863:        }
                    864:        return (result[0] << 4) | result[1];
                    865: }
                    866:
                    867: /*
                    868:  * Decode an url-encoded string.
                    869:  * Returns a newly allocated string on success or NULL on failure.
                    870:  */
                    871: static char *
                    872: urldecode(const char *src)
                    873: {
                    874:        char *ret, *dst;
                    875:        int ch;
                    876:
                    877:        ret = xmalloc(strlen(src) + 1);
                    878:        for (dst = ret; *src != '\0'; src++) {
                    879:                switch (*src) {
                    880:                case '+':
                    881:                        *dst++ = ' ';
                    882:                        break;
                    883:                case '%':
                    884:                        if (!isxdigit((unsigned char)src[1]) ||
                    885:                            !isxdigit((unsigned char)src[2]) ||
                    886:                            (ch = hexchar(src + 1)) == -1) {
                    887:                                free(ret);
                    888:                                return NULL;
                    889:                        }
                    890:                        *dst++ = ch;
                    891:                        src += 2;
                    892:                        break;
                    893:                default:
                    894:                        *dst++ = *src;
                    895:                        break;
                    896:                }
                    897:        }
                    898:        *dst = '\0';
                    899:
                    900:        return ret;
                    901: }
                    902:
                    903: /*
                    904:  * Parse an (scp|ssh|sftp)://[user@]host[:port][/path] URI.
                    905:  * See https://tools.ietf.org/html/draft-ietf-secsh-scp-sftp-ssh-uri-04
                    906:  * Either user or path may be url-encoded (but not host or port).
                    907:  * Caller must free returned user, host and path.
                    908:  * Any of the pointer return arguments may be NULL (useful for syntax checking)
                    909:  * but the scheme must always be specified.
                    910:  * If user was not specified then *userp will be set to NULL.
                    911:  * If port was not specified then *portp will be -1.
                    912:  * If path was not specified then *pathp will be set to NULL.
                    913:  * Returns 0 on success, 1 if non-uri/wrong scheme, -1 on error/invalid uri.
                    914:  */
                    915: int
                    916: parse_uri(const char *scheme, const char *uri, char **userp, char **hostp,
                    917:     int *portp, char **pathp)
                    918: {
                    919:        char *uridup, *cp, *tmp, ch;
                    920:        char *user = NULL, *host = NULL, *path = NULL;
                    921:        int port = -1, ret = -1;
                    922:        size_t len;
                    923:
                    924:        len = strlen(scheme);
                    925:        if (strncmp(uri, scheme, len) != 0 || strncmp(uri + len, "://", 3) != 0)
                    926:                return 1;
                    927:        uri += len + 3;
                    928:
                    929:        if (userp != NULL)
                    930:                *userp = NULL;
                    931:        if (hostp != NULL)
                    932:                *hostp = NULL;
                    933:        if (portp != NULL)
                    934:                *portp = -1;
                    935:        if (pathp != NULL)
                    936:                *pathp = NULL;
                    937:
                    938:        uridup = tmp = xstrdup(uri);
                    939:
                    940:        /* Extract optional ssh-info (username + connection params) */
                    941:        if ((cp = strchr(tmp, '@')) != NULL) {
                    942:                char *delim;
                    943:
                    944:                *cp = '\0';
                    945:                /* Extract username and connection params */
                    946:                if ((delim = strchr(tmp, ';')) != NULL) {
                    947:                        /* Just ignore connection params for now */
                    948:                        *delim = '\0';
                    949:                }
                    950:                if (*tmp == '\0') {
                    951:                        /* Empty username */
                    952:                        goto out;
                    953:                }
                    954:                if ((user = urldecode(tmp)) == NULL)
                    955:                        goto out;
                    956:                tmp = cp + 1;
                    957:        }
                    958:
                    959:        /* Extract mandatory hostname */
                    960:        if ((cp = hpdelim2(&tmp, &ch)) == NULL || *cp == '\0')
                    961:                goto out;
                    962:        host = xstrdup(cleanhostname(cp));
                    963:        if (!valid_domain(host, 0, NULL))
                    964:                goto out;
                    965:
                    966:        if (tmp != NULL && *tmp != '\0') {
                    967:                if (ch == ':') {
                    968:                        /* Convert and verify port. */
                    969:                        if ((cp = strchr(tmp, '/')) != NULL)
                    970:                                *cp = '\0';
                    971:                        if ((port = a2port(tmp)) <= 0)
                    972:                                goto out;
                    973:                        tmp = cp ? cp + 1 : NULL;
                    974:                }
                    975:                if (tmp != NULL && *tmp != '\0') {
                    976:                        /* Extract optional path */
                    977:                        if ((path = urldecode(tmp)) == NULL)
                    978:                                goto out;
                    979:                }
                    980:        }
                    981:
                    982:        /* Success */
                    983:        if (userp != NULL) {
                    984:                *userp = user;
                    985:                user = NULL;
                    986:        }
                    987:        if (hostp != NULL) {
                    988:                *hostp = host;
                    989:                host = NULL;
                    990:        }
                    991:        if (portp != NULL)
                    992:                *portp = port;
                    993:        if (pathp != NULL) {
                    994:                *pathp = path;
                    995:                path = NULL;
                    996:        }
                    997:        ret = 0;
                    998:  out:
                    999:        free(uridup);
                   1000:        free(user);
                   1001:        free(host);
                   1002:        free(path);
                   1003:        return ret;
                   1004: }
                   1005:
1.12      markus   1006: /* function to assist building execv() arguments */
1.7       mouring  1007: void
                   1008: addargs(arglist *args, char *fmt, ...)
                   1009: {
                   1010:        va_list ap;
1.42      djm      1011:        char *cp;
1.25      avsm     1012:        u_int nalloc;
1.42      djm      1013:        int r;
1.7       mouring  1014:
                   1015:        va_start(ap, fmt);
1.42      djm      1016:        r = vasprintf(&cp, fmt, ap);
1.7       mouring  1017:        va_end(ap);
1.42      djm      1018:        if (r == -1)
                   1019:                fatal("addargs: argument too long");
1.7       mouring  1020:
1.22      markus   1021:        nalloc = args->nalloc;
1.7       mouring  1022:        if (args->list == NULL) {
1.22      markus   1023:                nalloc = 32;
1.7       mouring  1024:                args->num = 0;
1.22      markus   1025:        } else if (args->num+2 >= nalloc)
                   1026:                nalloc *= 2;
1.7       mouring  1027:
1.110     deraadt  1028:        args->list = xrecallocarray(args->list, args->nalloc, nalloc, sizeof(char *));
1.22      markus   1029:        args->nalloc = nalloc;
1.42      djm      1030:        args->list[args->num++] = cp;
1.7       mouring  1031:        args->list[args->num] = NULL;
1.42      djm      1032: }
                   1033:
                   1034: void
                   1035: replacearg(arglist *args, u_int which, char *fmt, ...)
                   1036: {
                   1037:        va_list ap;
                   1038:        char *cp;
                   1039:        int r;
                   1040:
                   1041:        va_start(ap, fmt);
                   1042:        r = vasprintf(&cp, fmt, ap);
                   1043:        va_end(ap);
                   1044:        if (r == -1)
                   1045:                fatal("replacearg: argument too long");
                   1046:
                   1047:        if (which >= args->num)
                   1048:                fatal("replacearg: tried to replace invalid arg %d >= %d",
                   1049:                    which, args->num);
1.89      djm      1050:        free(args->list[which]);
1.42      djm      1051:        args->list[which] = cp;
                   1052: }
                   1053:
                   1054: void
                   1055: freeargs(arglist *args)
                   1056: {
                   1057:        u_int i;
                   1058:
                   1059:        if (args->list != NULL) {
                   1060:                for (i = 0; i < args->num; i++)
1.89      djm      1061:                        free(args->list[i]);
                   1062:                free(args->list);
1.42      djm      1063:                args->nalloc = args->num = 0;
                   1064:                args->list = NULL;
                   1065:        }
1.30      djm      1066: }
                   1067:
                   1068: /*
                   1069:  * Expands tildes in the file name.  Returns data allocated by xmalloc.
                   1070:  * Warning: this calls getpw*.
                   1071:  */
1.169   ! djm      1072: int
        !          1073: tilde_expand(const char *filename, uid_t uid, char **retp)
1.30      djm      1074: {
1.87      tedu     1075:        const char *path, *sep;
                   1076:        char user[128], *ret;
1.30      djm      1077:        struct passwd *pw;
1.32      djm      1078:        u_int len, slash;
1.30      djm      1079:
1.169   ! djm      1080:        if (*filename != '~') {
        !          1081:                *retp = xstrdup(filename);
        !          1082:                return 0;
        !          1083:        }
1.30      djm      1084:        filename++;
                   1085:
                   1086:        path = strchr(filename, '/');
                   1087:        if (path != NULL && path > filename) {          /* ~user/path */
1.32      djm      1088:                slash = path - filename;
1.169   ! djm      1089:                if (slash > sizeof(user) - 1) {
        !          1090:                        error_f("~username too long");
        !          1091:                        return -1;
        !          1092:                }
1.32      djm      1093:                memcpy(user, filename, slash);
                   1094:                user[slash] = '\0';
1.169   ! djm      1095:                if ((pw = getpwnam(user)) == NULL) {
        !          1096:                        error_f("No such user %s", user);
        !          1097:                        return -1;
        !          1098:                }
        !          1099:        } else if ((pw = getpwuid(uid)) == NULL) {      /* ~/path */
        !          1100:                error_f("No such uid %ld", (long)uid);
        !          1101:                return -1;
        !          1102:        }
1.30      djm      1103:
                   1104:        /* Make sure directory has a trailing '/' */
                   1105:        len = strlen(pw->pw_dir);
1.88      tedu     1106:        if (len == 0 || pw->pw_dir[len - 1] != '/')
1.87      tedu     1107:                sep = "/";
                   1108:        else
                   1109:                sep = "";
1.30      djm      1110:
                   1111:        /* Skip leading '/' from specified path */
                   1112:        if (path != NULL)
                   1113:                filename = path + 1;
1.87      tedu     1114:
1.169   ! djm      1115:        if (xasprintf(&ret, "%s%s%s", pw->pw_dir, sep, filename) >= PATH_MAX) {
        !          1116:                error_f("Path too long");
        !          1117:                return -1;
        !          1118:        }
        !          1119:
        !          1120:        *retp = ret;
        !          1121:        return 0;
        !          1122: }
        !          1123:
        !          1124: char *
        !          1125: tilde_expand_filename(const char *filename, uid_t uid)
        !          1126: {
        !          1127:        char *ret;
1.30      djm      1128:
1.169   ! djm      1129:        if (tilde_expand(filename, uid, &ret) != 0)
        !          1130:                cleanup_exit(255);
        !          1131:        return ret;
1.31      djm      1132: }
                   1133:
                   1134: /*
1.150     dtucker  1135:  * Expand a string with a set of %[char] escapes and/or ${ENVIRONMENT}
                   1136:  * substitutions.  A number of escapes may be specified as
                   1137:  * (char *escape_chars, char *replacement) pairs. The list must be terminated
                   1138:  * by a NULL escape_char. Returns replaced string in memory allocated by
                   1139:  * xmalloc which the caller must free.
1.31      djm      1140:  */
1.150     dtucker  1141: static char *
                   1142: vdollar_percent_expand(int *parseerror, int dollar, int percent,
                   1143:     const char *string, va_list ap)
1.31      djm      1144: {
                   1145: #define EXPAND_MAX_KEYS        16
1.150     dtucker  1146:        u_int num_keys = 0, i;
1.31      djm      1147:        struct {
                   1148:                const char *key;
                   1149:                const char *repl;
                   1150:        } keys[EXPAND_MAX_KEYS];
1.140     djm      1151:        struct sshbuf *buf;
1.150     dtucker  1152:        int r, missingvar = 0;
                   1153:        char *ret = NULL, *var, *varend, *val;
                   1154:        size_t len;
1.140     djm      1155:
                   1156:        if ((buf = sshbuf_new()) == NULL)
1.155     djm      1157:                fatal_f("sshbuf_new failed");
1.150     dtucker  1158:        if (parseerror == NULL)
1.155     djm      1159:                fatal_f("null parseerror arg");
1.150     dtucker  1160:        *parseerror = 1;
                   1161:
                   1162:        /* Gather keys if we're doing percent expansion. */
                   1163:        if (percent) {
                   1164:                for (num_keys = 0; num_keys < EXPAND_MAX_KEYS; num_keys++) {
                   1165:                        keys[num_keys].key = va_arg(ap, char *);
                   1166:                        if (keys[num_keys].key == NULL)
                   1167:                                break;
                   1168:                        keys[num_keys].repl = va_arg(ap, char *);
1.155     djm      1169:                        if (keys[num_keys].repl == NULL) {
                   1170:                                fatal_f("NULL replacement for token %s",
                   1171:                                    keys[num_keys].key);
                   1172:                        }
1.150     dtucker  1173:                }
                   1174:                if (num_keys == EXPAND_MAX_KEYS && va_arg(ap, char *) != NULL)
1.155     djm      1175:                        fatal_f("too many keys");
1.150     dtucker  1176:                if (num_keys == 0)
1.155     djm      1177:                        fatal_f("percent expansion without token list");
1.31      djm      1178:        }
                   1179:
                   1180:        /* Expand string */
                   1181:        for (i = 0; *string != '\0'; string++) {
1.150     dtucker  1182:                /* Optionally process ${ENVIRONMENT} expansions. */
                   1183:                if (dollar && string[0] == '$' && string[1] == '{') {
                   1184:                        string += 2;  /* skip over '${' */
                   1185:                        if ((varend = strchr(string, '}')) == NULL) {
1.155     djm      1186:                                error_f("environment variable '%s' missing "
1.164     djm      1187:                                    "closing '}'", string);
1.150     dtucker  1188:                                goto out;
                   1189:                        }
                   1190:                        len = varend - string;
                   1191:                        if (len == 0) {
1.155     djm      1192:                                error_f("zero-length environment variable");
1.150     dtucker  1193:                                goto out;
                   1194:                        }
                   1195:                        var = xmalloc(len + 1);
                   1196:                        (void)strlcpy(var, string, len + 1);
                   1197:                        if ((val = getenv(var)) == NULL) {
1.155     djm      1198:                                error_f("env var ${%s} has no value", var);
1.150     dtucker  1199:                                missingvar = 1;
                   1200:                        } else {
1.155     djm      1201:                                debug3_f("expand ${%s} -> '%s'", var, val);
1.150     dtucker  1202:                                if ((r = sshbuf_put(buf, val, strlen(val))) !=0)
1.155     djm      1203:                                        fatal_fr(r, "sshbuf_put ${}");
1.150     dtucker  1204:                        }
                   1205:                        free(var);
                   1206:                        string += len;
                   1207:                        continue;
                   1208:                }
                   1209:
                   1210:                /*
                   1211:                 * Process percent expansions if we have a list of TOKENs.
                   1212:                 * If we're not doing percent expansion everything just gets
                   1213:                 * appended here.
                   1214:                 */
                   1215:                if (*string != '%' || !percent) {
1.31      djm      1216:  append:
1.155     djm      1217:                        if ((r = sshbuf_put_u8(buf, *string)) != 0)
                   1218:                                fatal_fr(r, "sshbuf_put_u8 %%");
1.31      djm      1219:                        continue;
                   1220:                }
                   1221:                string++;
1.73      djm      1222:                /* %% case */
1.31      djm      1223:                if (*string == '%')
                   1224:                        goto append;
1.150     dtucker  1225:                if (*string == '\0') {
1.155     djm      1226:                        error_f("invalid format");
1.150     dtucker  1227:                        goto out;
                   1228:                }
1.140     djm      1229:                for (i = 0; i < num_keys; i++) {
                   1230:                        if (strchr(keys[i].key, *string) != NULL) {
                   1231:                                if ((r = sshbuf_put(buf, keys[i].repl,
1.155     djm      1232:                                    strlen(keys[i].repl))) != 0)
                   1233:                                        fatal_fr(r, "sshbuf_put %%-repl");
1.31      djm      1234:                                break;
                   1235:                        }
                   1236:                }
1.150     dtucker  1237:                if (i >= num_keys) {
1.155     djm      1238:                        error_f("unknown key %%%c", *string);
1.150     dtucker  1239:                        goto out;
                   1240:                }
1.31      djm      1241:        }
1.150     dtucker  1242:        if (!missingvar && (ret = sshbuf_dup_string(buf)) == NULL)
1.155     djm      1243:                fatal_f("sshbuf_dup_string failed");
1.150     dtucker  1244:        *parseerror = 0;
                   1245:  out:
1.140     djm      1246:        sshbuf_free(buf);
1.150     dtucker  1247:        return *parseerror ? NULL : ret;
                   1248: #undef EXPAND_MAX_KEYS
                   1249: }
                   1250:
1.152     dtucker  1251: /*
                   1252:  * Expand only environment variables.
                   1253:  * Note that although this function is variadic like the other similar
                   1254:  * functions, any such arguments will be unused.
                   1255:  */
                   1256:
1.150     dtucker  1257: char *
1.152     dtucker  1258: dollar_expand(int *parseerr, const char *string, ...)
1.150     dtucker  1259: {
                   1260:        char *ret;
                   1261:        int err;
1.152     dtucker  1262:        va_list ap;
1.150     dtucker  1263:
1.152     dtucker  1264:        va_start(ap, string);
                   1265:        ret = vdollar_percent_expand(&err, 1, 0, string, ap);
                   1266:        va_end(ap);
1.150     dtucker  1267:        if (parseerr != NULL)
                   1268:                *parseerr = err;
                   1269:        return ret;
                   1270: }
                   1271:
                   1272: /*
                   1273:  * Returns expanded string or NULL if a specified environment variable is
                   1274:  * not defined, or calls fatal if the string is invalid.
                   1275:  */
                   1276: char *
                   1277: percent_expand(const char *string, ...)
                   1278: {
                   1279:        char *ret;
                   1280:        int err;
                   1281:        va_list ap;
                   1282:
                   1283:        va_start(ap, string);
                   1284:        ret = vdollar_percent_expand(&err, 0, 1, string, ap);
                   1285:        va_end(ap);
                   1286:        if (err)
1.155     djm      1287:                fatal_f("failed");
1.150     dtucker  1288:        return ret;
                   1289: }
                   1290:
                   1291: /*
                   1292:  * Returns expanded string or NULL if a specified environment variable is
                   1293:  * not defined, or calls fatal if the string is invalid.
                   1294:  */
                   1295: char *
                   1296: percent_dollar_expand(const char *string, ...)
                   1297: {
                   1298:        char *ret;
                   1299:        int err;
                   1300:        va_list ap;
                   1301:
                   1302:        va_start(ap, string);
                   1303:        ret = vdollar_percent_expand(&err, 1, 1, string, ap);
                   1304:        va_end(ap);
                   1305:        if (err)
1.155     djm      1306:                fatal_f("failed");
1.140     djm      1307:        return ret;
1.36      reyk     1308: }
                   1309:
                   1310: int
1.115     djm      1311: tun_open(int tun, int mode, char **ifname)
1.36      reyk     1312: {
1.37      reyk     1313:        struct ifreq ifr;
1.36      reyk     1314:        char name[100];
1.37      reyk     1315:        int fd = -1, sock;
1.99      sthen    1316:        const char *tunbase = "tun";
                   1317:
1.115     djm      1318:        if (ifname != NULL)
                   1319:                *ifname = NULL;
                   1320:
1.99      sthen    1321:        if (mode == SSH_TUNMODE_ETHERNET)
                   1322:                tunbase = "tap";
1.36      reyk     1323:
1.37      reyk     1324:        /* Open the tunnel device */
                   1325:        if (tun <= SSH_TUNID_MAX) {
1.99      sthen    1326:                snprintf(name, sizeof(name), "/dev/%s%d", tunbase, tun);
1.37      reyk     1327:                fd = open(name, O_RDWR);
                   1328:        } else if (tun == SSH_TUNID_ANY) {
                   1329:                for (tun = 100; tun >= 0; tun--) {
1.99      sthen    1330:                        snprintf(name, sizeof(name), "/dev/%s%d",
                   1331:                            tunbase, tun);
1.37      reyk     1332:                        if ((fd = open(name, O_RDWR)) >= 0)
                   1333:                                break;
1.36      reyk     1334:                }
                   1335:        } else {
1.155     djm      1336:                debug_f("invalid tunnel %u", tun);
1.98      djm      1337:                return -1;
1.37      reyk     1338:        }
                   1339:
1.139     deraadt  1340:        if (fd == -1) {
1.155     djm      1341:                debug_f("%s open: %s", name, strerror(errno));
1.98      djm      1342:                return -1;
1.36      reyk     1343:        }
1.37      reyk     1344:
1.155     djm      1345:        debug_f("%s mode %d fd %d", name, mode, fd);
1.37      reyk     1346:
1.99      sthen    1347:        /* Bring interface up if it is not already */
                   1348:        snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s%d", tunbase, tun);
                   1349:        if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
1.37      reyk     1350:                goto failed;
                   1351:
1.98      djm      1352:        if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1) {
1.155     djm      1353:                debug_f("get interface %s flags: %s", ifr.ifr_name,
                   1354:                    strerror(errno));
1.37      reyk     1355:                goto failed;
1.98      djm      1356:        }
1.40      reyk     1357:
1.98      djm      1358:        if (!(ifr.ifr_flags & IFF_UP)) {
                   1359:                ifr.ifr_flags |= IFF_UP;
                   1360:                if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1) {
1.155     djm      1361:                        debug_f("activate interface %s: %s", ifr.ifr_name,
                   1362:                            strerror(errno));
1.98      djm      1363:                        goto failed;
                   1364:                }
                   1365:        }
1.115     djm      1366:
                   1367:        if (ifname != NULL)
                   1368:                *ifname = xstrdup(ifr.ifr_name);
1.37      reyk     1369:
                   1370:        close(sock);
1.98      djm      1371:        return fd;
1.37      reyk     1372:
                   1373:  failed:
                   1374:        if (fd >= 0)
                   1375:                close(fd);
                   1376:        if (sock >= 0)
                   1377:                close(sock);
1.98      djm      1378:        return -1;
1.35      djm      1379: }
                   1380:
                   1381: void
                   1382: sanitise_stdfd(void)
                   1383: {
1.41      djm      1384:        int nullfd, dupfd;
1.35      djm      1385:
1.41      djm      1386:        if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1.71      tobias   1387:                fprintf(stderr, "Couldn't open /dev/null: %s\n",
                   1388:                    strerror(errno));
1.35      djm      1389:                exit(1);
                   1390:        }
1.103     krw      1391:        while (++dupfd <= STDERR_FILENO) {
                   1392:                /* Only populate closed fds. */
                   1393:                if (fcntl(dupfd, F_GETFL) == -1 && errno == EBADF) {
                   1394:                        if (dup2(nullfd, dupfd) == -1) {
                   1395:                                fprintf(stderr, "dup2: %s\n", strerror(errno));
                   1396:                                exit(1);
                   1397:                        }
1.35      djm      1398:                }
                   1399:        }
1.103     krw      1400:        if (nullfd > STDERR_FILENO)
1.35      djm      1401:                close(nullfd);
1.1       markus   1402: }
1.33      djm      1403:
                   1404: char *
1.52      djm      1405: tohex(const void *vp, size_t l)
1.33      djm      1406: {
1.52      djm      1407:        const u_char *p = (const u_char *)vp;
1.33      djm      1408:        char b[3], *r;
1.52      djm      1409:        size_t i, hl;
                   1410:
                   1411:        if (l > 65536)
                   1412:                return xstrdup("tohex: length > 65536");
1.33      djm      1413:
                   1414:        hl = l * 2 + 1;
1.49      djm      1415:        r = xcalloc(1, hl);
1.33      djm      1416:        for (i = 0; i < l; i++) {
1.52      djm      1417:                snprintf(b, sizeof(b), "%02x", p[i]);
1.33      djm      1418:                strlcat(r, b, hl);
                   1419:        }
                   1420:        return (r);
                   1421: }
1.145     djm      1422:
                   1423: /*
                   1424:  * Extend string *sp by the specified format. If *sp is not NULL (or empty),
                   1425:  * then the separator 'sep' will be prepended before the formatted arguments.
                   1426:  * Extended strings are heap allocated.
                   1427:  */
                   1428: void
                   1429: xextendf(char **sp, const char *sep, const char *fmt, ...)
                   1430: {
                   1431:        va_list ap;
                   1432:        char *tmp1, *tmp2;
                   1433:
                   1434:        va_start(ap, fmt);
                   1435:        xvasprintf(&tmp1, fmt, ap);
                   1436:        va_end(ap);
                   1437:
                   1438:        if (*sp == NULL || **sp == '\0') {
                   1439:                free(*sp);
                   1440:                *sp = tmp1;
                   1441:                return;
                   1442:        }
                   1443:        xasprintf(&tmp2, "%s%s%s", *sp, sep == NULL ? "" : sep, tmp1);
                   1444:        free(tmp1);
                   1445:        free(*sp);
                   1446:        *sp = tmp2;
                   1447: }
                   1448:
1.33      djm      1449:
1.52      djm      1450: u_int64_t
                   1451: get_u64(const void *vp)
                   1452: {
                   1453:        const u_char *p = (const u_char *)vp;
                   1454:        u_int64_t v;
                   1455:
                   1456:        v  = (u_int64_t)p[0] << 56;
                   1457:        v |= (u_int64_t)p[1] << 48;
                   1458:        v |= (u_int64_t)p[2] << 40;
                   1459:        v |= (u_int64_t)p[3] << 32;
                   1460:        v |= (u_int64_t)p[4] << 24;
                   1461:        v |= (u_int64_t)p[5] << 16;
                   1462:        v |= (u_int64_t)p[6] << 8;
                   1463:        v |= (u_int64_t)p[7];
                   1464:
                   1465:        return (v);
                   1466: }
                   1467:
                   1468: u_int32_t
                   1469: get_u32(const void *vp)
                   1470: {
                   1471:        const u_char *p = (const u_char *)vp;
                   1472:        u_int32_t v;
                   1473:
                   1474:        v  = (u_int32_t)p[0] << 24;
                   1475:        v |= (u_int32_t)p[1] << 16;
                   1476:        v |= (u_int32_t)p[2] << 8;
                   1477:        v |= (u_int32_t)p[3];
                   1478:
                   1479:        return (v);
                   1480: }
                   1481:
1.93      djm      1482: u_int32_t
                   1483: get_u32_le(const void *vp)
                   1484: {
                   1485:        const u_char *p = (const u_char *)vp;
                   1486:        u_int32_t v;
                   1487:
                   1488:        v  = (u_int32_t)p[0];
                   1489:        v |= (u_int32_t)p[1] << 8;
                   1490:        v |= (u_int32_t)p[2] << 16;
                   1491:        v |= (u_int32_t)p[3] << 24;
                   1492:
                   1493:        return (v);
                   1494: }
                   1495:
1.52      djm      1496: u_int16_t
                   1497: get_u16(const void *vp)
                   1498: {
                   1499:        const u_char *p = (const u_char *)vp;
                   1500:        u_int16_t v;
                   1501:
                   1502:        v  = (u_int16_t)p[0] << 8;
                   1503:        v |= (u_int16_t)p[1];
                   1504:
                   1505:        return (v);
                   1506: }
                   1507:
                   1508: void
                   1509: put_u64(void *vp, u_int64_t v)
                   1510: {
                   1511:        u_char *p = (u_char *)vp;
                   1512:
                   1513:        p[0] = (u_char)(v >> 56) & 0xff;
                   1514:        p[1] = (u_char)(v >> 48) & 0xff;
                   1515:        p[2] = (u_char)(v >> 40) & 0xff;
                   1516:        p[3] = (u_char)(v >> 32) & 0xff;
                   1517:        p[4] = (u_char)(v >> 24) & 0xff;
                   1518:        p[5] = (u_char)(v >> 16) & 0xff;
                   1519:        p[6] = (u_char)(v >> 8) & 0xff;
                   1520:        p[7] = (u_char)v & 0xff;
                   1521: }
                   1522:
                   1523: void
                   1524: put_u32(void *vp, u_int32_t v)
                   1525: {
                   1526:        u_char *p = (u_char *)vp;
                   1527:
                   1528:        p[0] = (u_char)(v >> 24) & 0xff;
                   1529:        p[1] = (u_char)(v >> 16) & 0xff;
                   1530:        p[2] = (u_char)(v >> 8) & 0xff;
                   1531:        p[3] = (u_char)v & 0xff;
                   1532: }
                   1533:
1.93      djm      1534: void
                   1535: put_u32_le(void *vp, u_int32_t v)
                   1536: {
                   1537:        u_char *p = (u_char *)vp;
                   1538:
                   1539:        p[0] = (u_char)v & 0xff;
                   1540:        p[1] = (u_char)(v >> 8) & 0xff;
                   1541:        p[2] = (u_char)(v >> 16) & 0xff;
                   1542:        p[3] = (u_char)(v >> 24) & 0xff;
                   1543: }
1.52      djm      1544:
                   1545: void
                   1546: put_u16(void *vp, u_int16_t v)
                   1547: {
                   1548:        u_char *p = (u_char *)vp;
                   1549:
                   1550:        p[0] = (u_char)(v >> 8) & 0xff;
                   1551:        p[1] = (u_char)v & 0xff;
                   1552: }
1.68      dtucker  1553:
                   1554: void
                   1555: ms_subtract_diff(struct timeval *start, int *ms)
                   1556: {
                   1557:        struct timeval diff, finish;
                   1558:
1.119     dtucker  1559:        monotime_tv(&finish);
                   1560:        timersub(&finish, start, &diff);
1.68      dtucker  1561:        *ms -= (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
                   1562: }
                   1563:
                   1564: void
                   1565: ms_to_timeval(struct timeval *tv, int ms)
                   1566: {
                   1567:        if (ms < 0)
                   1568:                ms = 0;
                   1569:        tv->tv_sec = ms / 1000;
                   1570:        tv->tv_usec = (ms % 1000) * 1000;
1.90      dtucker  1571: }
                   1572:
1.119     dtucker  1573: void
                   1574: monotime_ts(struct timespec *ts)
                   1575: {
                   1576:        if (clock_gettime(CLOCK_MONOTONIC, ts) != 0)
                   1577:                fatal("clock_gettime: %s", strerror(errno));
                   1578: }
                   1579:
                   1580: void
                   1581: monotime_tv(struct timeval *tv)
                   1582: {
                   1583:        struct timespec ts;
                   1584:
                   1585:        monotime_ts(&ts);
                   1586:        tv->tv_sec = ts.tv_sec;
                   1587:        tv->tv_usec = ts.tv_nsec / 1000;
                   1588: }
                   1589:
1.90      dtucker  1590: time_t
                   1591: monotime(void)
                   1592: {
                   1593:        struct timespec ts;
                   1594:
1.119     dtucker  1595:        monotime_ts(&ts);
1.90      dtucker  1596:        return (ts.tv_sec);
1.102     dtucker  1597: }
                   1598:
                   1599: double
                   1600: monotime_double(void)
                   1601: {
                   1602:        struct timespec ts;
                   1603:
1.119     dtucker  1604:        monotime_ts(&ts);
                   1605:        return (double)ts.tv_sec + (double)ts.tv_nsec / 1000000000.0;
1.81      djm      1606: }
                   1607:
                   1608: void
                   1609: bandwidth_limit_init(struct bwlimit *bw, u_int64_t kbps, size_t buflen)
                   1610: {
                   1611:        bw->buflen = buflen;
                   1612:        bw->rate = kbps;
1.135     dtucker  1613:        bw->thresh = buflen;
1.81      djm      1614:        bw->lamt = 0;
                   1615:        timerclear(&bw->bwstart);
                   1616:        timerclear(&bw->bwend);
1.135     dtucker  1617: }
1.81      djm      1618:
                   1619: /* Callback from read/write loop to insert bandwidth-limiting delays */
                   1620: void
                   1621: bandwidth_limit(struct bwlimit *bw, size_t read_len)
                   1622: {
                   1623:        u_int64_t waitlen;
                   1624:        struct timespec ts, rm;
                   1625:
1.135     dtucker  1626:        bw->lamt += read_len;
1.81      djm      1627:        if (!timerisset(&bw->bwstart)) {
1.119     dtucker  1628:                monotime_tv(&bw->bwstart);
1.81      djm      1629:                return;
                   1630:        }
                   1631:        if (bw->lamt < bw->thresh)
                   1632:                return;
                   1633:
1.119     dtucker  1634:        monotime_tv(&bw->bwend);
1.81      djm      1635:        timersub(&bw->bwend, &bw->bwstart, &bw->bwend);
                   1636:        if (!timerisset(&bw->bwend))
                   1637:                return;
                   1638:
                   1639:        bw->lamt *= 8;
                   1640:        waitlen = (double)1000000L * bw->lamt / bw->rate;
                   1641:
                   1642:        bw->bwstart.tv_sec = waitlen / 1000000L;
                   1643:        bw->bwstart.tv_usec = waitlen % 1000000L;
                   1644:
                   1645:        if (timercmp(&bw->bwstart, &bw->bwend, >)) {
                   1646:                timersub(&bw->bwstart, &bw->bwend, &bw->bwend);
                   1647:
                   1648:                /* Adjust the wait time */
                   1649:                if (bw->bwend.tv_sec) {
                   1650:                        bw->thresh /= 2;
                   1651:                        if (bw->thresh < bw->buflen / 4)
                   1652:                                bw->thresh = bw->buflen / 4;
                   1653:                } else if (bw->bwend.tv_usec < 10000) {
                   1654:                        bw->thresh *= 2;
                   1655:                        if (bw->thresh > bw->buflen * 8)
                   1656:                                bw->thresh = bw->buflen * 8;
                   1657:                }
                   1658:
                   1659:                TIMEVAL_TO_TIMESPEC(&bw->bwend, &ts);
                   1660:                while (nanosleep(&ts, &rm) == -1) {
                   1661:                        if (errno != EINTR)
                   1662:                                break;
                   1663:                        ts = rm;
                   1664:                }
                   1665:        }
                   1666:
                   1667:        bw->lamt = 0;
1.119     dtucker  1668:        monotime_tv(&bw->bwstart);
1.84      djm      1669: }
                   1670:
                   1671: /* Make a template filename for mk[sd]temp() */
                   1672: void
                   1673: mktemp_proto(char *s, size_t len)
                   1674: {
                   1675:        const char *tmpdir;
                   1676:        int r;
                   1677:
                   1678:        if ((tmpdir = getenv("TMPDIR")) != NULL) {
                   1679:                r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
                   1680:                if (r > 0 && (size_t)r < len)
                   1681:                        return;
                   1682:        }
                   1683:        r = snprintf(s, len, "/tmp/ssh-XXXXXXXXXXXX");
                   1684:        if (r < 0 || (size_t)r >= len)
1.155     djm      1685:                fatal_f("template string too short");
1.68      dtucker  1686: }
1.83      djm      1687:
                   1688: static const struct {
                   1689:        const char *name;
                   1690:        int value;
                   1691: } ipqos[] = {
1.111     djm      1692:        { "none", INT_MAX },            /* can't use 0 here; that's CS0 */
1.83      djm      1693:        { "af11", IPTOS_DSCP_AF11 },
                   1694:        { "af12", IPTOS_DSCP_AF12 },
                   1695:        { "af13", IPTOS_DSCP_AF13 },
1.86      djm      1696:        { "af21", IPTOS_DSCP_AF21 },
1.83      djm      1697:        { "af22", IPTOS_DSCP_AF22 },
                   1698:        { "af23", IPTOS_DSCP_AF23 },
                   1699:        { "af31", IPTOS_DSCP_AF31 },
                   1700:        { "af32", IPTOS_DSCP_AF32 },
                   1701:        { "af33", IPTOS_DSCP_AF33 },
                   1702:        { "af41", IPTOS_DSCP_AF41 },
                   1703:        { "af42", IPTOS_DSCP_AF42 },
                   1704:        { "af43", IPTOS_DSCP_AF43 },
                   1705:        { "cs0", IPTOS_DSCP_CS0 },
                   1706:        { "cs1", IPTOS_DSCP_CS1 },
                   1707:        { "cs2", IPTOS_DSCP_CS2 },
                   1708:        { "cs3", IPTOS_DSCP_CS3 },
                   1709:        { "cs4", IPTOS_DSCP_CS4 },
                   1710:        { "cs5", IPTOS_DSCP_CS5 },
                   1711:        { "cs6", IPTOS_DSCP_CS6 },
                   1712:        { "cs7", IPTOS_DSCP_CS7 },
                   1713:        { "ef", IPTOS_DSCP_EF },
1.146     djm      1714:        { "le", IPTOS_DSCP_LE },
1.83      djm      1715:        { "lowdelay", IPTOS_LOWDELAY },
                   1716:        { "throughput", IPTOS_THROUGHPUT },
                   1717:        { "reliability", IPTOS_RELIABILITY },
                   1718:        { NULL, -1 }
                   1719: };
                   1720:
                   1721: int
                   1722: parse_ipqos(const char *cp)
                   1723: {
                   1724:        u_int i;
                   1725:        char *ep;
                   1726:        long val;
                   1727:
                   1728:        if (cp == NULL)
                   1729:                return -1;
                   1730:        for (i = 0; ipqos[i].name != NULL; i++) {
                   1731:                if (strcasecmp(cp, ipqos[i].name) == 0)
                   1732:                        return ipqos[i].value;
                   1733:        }
                   1734:        /* Try parsing as an integer */
                   1735:        val = strtol(cp, &ep, 0);
                   1736:        if (*cp == '\0' || *ep != '\0' || val < 0 || val > 255)
                   1737:                return -1;
                   1738:        return val;
                   1739: }
                   1740:
1.85      stevesk  1741: const char *
                   1742: iptos2str(int iptos)
                   1743: {
                   1744:        int i;
                   1745:        static char iptos_str[sizeof "0xff"];
                   1746:
                   1747:        for (i = 0; ipqos[i].name != NULL; i++) {
                   1748:                if (ipqos[i].value == iptos)
                   1749:                        return ipqos[i].name;
                   1750:        }
                   1751:        snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
                   1752:        return iptos_str;
1.92      djm      1753: }
                   1754:
                   1755: void
                   1756: lowercase(char *s)
                   1757: {
                   1758:        for (; *s; s++)
                   1759:                *s = tolower((u_char)*s);
1.94      millert  1760: }
                   1761:
                   1762: int
                   1763: unix_listener(const char *path, int backlog, int unlink_first)
                   1764: {
                   1765:        struct sockaddr_un sunaddr;
                   1766:        int saved_errno, sock;
                   1767:
                   1768:        memset(&sunaddr, 0, sizeof(sunaddr));
                   1769:        sunaddr.sun_family = AF_UNIX;
1.121     djm      1770:        if (strlcpy(sunaddr.sun_path, path,
                   1771:            sizeof(sunaddr.sun_path)) >= sizeof(sunaddr.sun_path)) {
1.155     djm      1772:                error_f("path \"%s\" too long for Unix domain socket", path);
1.94      millert  1773:                errno = ENAMETOOLONG;
                   1774:                return -1;
                   1775:        }
                   1776:
                   1777:        sock = socket(PF_UNIX, SOCK_STREAM, 0);
1.139     deraadt  1778:        if (sock == -1) {
1.94      millert  1779:                saved_errno = errno;
1.155     djm      1780:                error_f("socket: %.100s", strerror(errno));
1.94      millert  1781:                errno = saved_errno;
                   1782:                return -1;
                   1783:        }
                   1784:        if (unlink_first == 1) {
                   1785:                if (unlink(path) != 0 && errno != ENOENT)
                   1786:                        error("unlink(%s): %.100s", path, strerror(errno));
                   1787:        }
1.139     deraadt  1788:        if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) {
1.94      millert  1789:                saved_errno = errno;
1.155     djm      1790:                error_f("cannot bind to path %s: %s", path, strerror(errno));
1.122     djm      1791:                close(sock);
1.94      millert  1792:                errno = saved_errno;
                   1793:                return -1;
                   1794:        }
1.139     deraadt  1795:        if (listen(sock, backlog) == -1) {
1.94      millert  1796:                saved_errno = errno;
1.155     djm      1797:                error_f("cannot listen on path %s: %s", path, strerror(errno));
1.94      millert  1798:                close(sock);
                   1799:                unlink(path);
                   1800:                errno = saved_errno;
                   1801:                return -1;
                   1802:        }
                   1803:        return sock;
1.85      stevesk  1804: }
1.104     djm      1805:
                   1806: /*
                   1807:  * Compares two strings that maybe be NULL. Returns non-zero if strings
                   1808:  * are both NULL or are identical, returns zero otherwise.
                   1809:  */
                   1810: static int
                   1811: strcmp_maybe_null(const char *a, const char *b)
                   1812: {
                   1813:        if ((a == NULL && b != NULL) || (a != NULL && b == NULL))
                   1814:                return 0;
                   1815:        if (a != NULL && strcmp(a, b) != 0)
                   1816:                return 0;
                   1817:        return 1;
                   1818: }
                   1819:
                   1820: /*
                   1821:  * Compare two forwards, returning non-zero if they are identical or
                   1822:  * zero otherwise.
                   1823:  */
                   1824: int
                   1825: forward_equals(const struct Forward *a, const struct Forward *b)
                   1826: {
                   1827:        if (strcmp_maybe_null(a->listen_host, b->listen_host) == 0)
                   1828:                return 0;
                   1829:        if (a->listen_port != b->listen_port)
                   1830:                return 0;
                   1831:        if (strcmp_maybe_null(a->listen_path, b->listen_path) == 0)
                   1832:                return 0;
                   1833:        if (strcmp_maybe_null(a->connect_host, b->connect_host) == 0)
                   1834:                return 0;
                   1835:        if (a->connect_port != b->connect_port)
                   1836:                return 0;
                   1837:        if (strcmp_maybe_null(a->connect_path, b->connect_path) == 0)
                   1838:                return 0;
                   1839:        /* allocated_port and handle are not checked */
1.107     dtucker  1840:        return 1;
                   1841: }
                   1842:
                   1843: /* returns 1 if process is already daemonized, 0 otherwise */
                   1844: int
                   1845: daemonized(void)
                   1846: {
                   1847:        int fd;
                   1848:
                   1849:        if ((fd = open(_PATH_TTY, O_RDONLY | O_NOCTTY)) >= 0) {
                   1850:                close(fd);
                   1851:                return 0;       /* have controlling terminal */
                   1852:        }
                   1853:        if (getppid() != 1)
                   1854:                return 0;       /* parent is not init */
                   1855:        if (getsid(0) != getpid())
                   1856:                return 0;       /* not session leader */
                   1857:        debug3("already daemonized");
1.106     dtucker  1858:        return 1;
                   1859: }
1.112     djm      1860:
                   1861: /*
                   1862:  * Splits 's' into an argument vector. Handles quoted string and basic
                   1863:  * escape characters (\\, \", \'). Caller must free the argument vector
                   1864:  * and its members.
                   1865:  */
                   1866: int
1.166     djm      1867: argv_split(const char *s, int *argcp, char ***argvp, int terminate_on_comment)
1.112     djm      1868: {
                   1869:        int r = SSH_ERR_INTERNAL_ERROR;
                   1870:        int argc = 0, quote, i, j;
                   1871:        char *arg, **argv = xcalloc(1, sizeof(*argv));
                   1872:
                   1873:        *argvp = NULL;
                   1874:        *argcp = 0;
                   1875:
                   1876:        for (i = 0; s[i] != '\0'; i++) {
                   1877:                /* Skip leading whitespace */
                   1878:                if (s[i] == ' ' || s[i] == '\t')
                   1879:                        continue;
1.166     djm      1880:                if (terminate_on_comment && s[i] == '#')
                   1881:                        break;
1.112     djm      1882:                /* Start of a token */
                   1883:                quote = 0;
                   1884:
                   1885:                argv = xreallocarray(argv, (argc + 2), sizeof(*argv));
                   1886:                arg = argv[argc++] = xcalloc(1, strlen(s + i) + 1);
                   1887:                argv[argc] = NULL;
                   1888:
                   1889:                /* Copy the token in, removing escapes */
                   1890:                for (j = 0; s[i] != '\0'; i++) {
                   1891:                        if (s[i] == '\\') {
                   1892:                                if (s[i + 1] == '\'' ||
                   1893:                                    s[i + 1] == '\"' ||
1.166     djm      1894:                                    s[i + 1] == '\\' ||
                   1895:                                    (quote == 0 && s[i + 1] == ' ')) {
1.112     djm      1896:                                        i++; /* Skip '\' */
                   1897:                                        arg[j++] = s[i];
                   1898:                                } else {
                   1899:                                        /* Unrecognised escape */
                   1900:                                        arg[j++] = s[i];
                   1901:                                }
                   1902:                        } else if (quote == 0 && (s[i] == ' ' || s[i] == '\t'))
                   1903:                                break; /* done */
1.163     djm      1904:                        else if (quote == 0 && (s[i] == '\"' || s[i] == '\''))
                   1905:                                quote = s[i]; /* quote start */
1.112     djm      1906:                        else if (quote != 0 && s[i] == quote)
1.163     djm      1907:                                quote = 0; /* quote end */
1.112     djm      1908:                        else
                   1909:                                arg[j++] = s[i];
                   1910:                }
                   1911:                if (s[i] == '\0') {
                   1912:                        if (quote != 0) {
                   1913:                                /* Ran out of string looking for close quote */
                   1914:                                r = SSH_ERR_INVALID_FORMAT;
                   1915:                                goto out;
                   1916:                        }
                   1917:                        break;
                   1918:                }
                   1919:        }
                   1920:        /* Success */
                   1921:        *argcp = argc;
                   1922:        *argvp = argv;
                   1923:        argc = 0;
                   1924:        argv = NULL;
                   1925:        r = 0;
                   1926:  out:
                   1927:        if (argc != 0 && argv != NULL) {
                   1928:                for (i = 0; i < argc; i++)
                   1929:                        free(argv[i]);
                   1930:                free(argv);
                   1931:        }
                   1932:        return r;
                   1933: }
                   1934:
                   1935: /*
                   1936:  * Reassemble an argument vector into a string, quoting and escaping as
                   1937:  * necessary. Caller must free returned string.
                   1938:  */
                   1939: char *
                   1940: argv_assemble(int argc, char **argv)
                   1941: {
                   1942:        int i, j, ws, r;
                   1943:        char c, *ret;
                   1944:        struct sshbuf *buf, *arg;
                   1945:
                   1946:        if ((buf = sshbuf_new()) == NULL || (arg = sshbuf_new()) == NULL)
1.155     djm      1947:                fatal_f("sshbuf_new failed");
1.112     djm      1948:
                   1949:        for (i = 0; i < argc; i++) {
                   1950:                ws = 0;
                   1951:                sshbuf_reset(arg);
                   1952:                for (j = 0; argv[i][j] != '\0'; j++) {
                   1953:                        r = 0;
                   1954:                        c = argv[i][j];
                   1955:                        switch (c) {
                   1956:                        case ' ':
                   1957:                        case '\t':
                   1958:                                ws = 1;
                   1959:                                r = sshbuf_put_u8(arg, c);
                   1960:                                break;
                   1961:                        case '\\':
                   1962:                        case '\'':
                   1963:                        case '"':
                   1964:                                if ((r = sshbuf_put_u8(arg, '\\')) != 0)
                   1965:                                        break;
                   1966:                                /* FALLTHROUGH */
                   1967:                        default:
                   1968:                                r = sshbuf_put_u8(arg, c);
                   1969:                                break;
                   1970:                        }
                   1971:                        if (r != 0)
1.155     djm      1972:                                fatal_fr(r, "sshbuf_put_u8");
1.112     djm      1973:                }
                   1974:                if ((i != 0 && (r = sshbuf_put_u8(buf, ' ')) != 0) ||
                   1975:                    (ws != 0 && (r = sshbuf_put_u8(buf, '"')) != 0) ||
                   1976:                    (r = sshbuf_putb(buf, arg)) != 0 ||
                   1977:                    (ws != 0 && (r = sshbuf_put_u8(buf, '"')) != 0))
1.155     djm      1978:                        fatal_fr(r, "assemble");
1.112     djm      1979:        }
                   1980:        if ((ret = malloc(sshbuf_len(buf) + 1)) == NULL)
1.155     djm      1981:                fatal_f("malloc failed");
1.112     djm      1982:        memcpy(ret, sshbuf_ptr(buf), sshbuf_len(buf));
                   1983:        ret[sshbuf_len(buf)] = '\0';
                   1984:        sshbuf_free(buf);
                   1985:        sshbuf_free(arg);
                   1986:        return ret;
1.166     djm      1987: }
                   1988:
                   1989: char *
                   1990: argv_next(int *argcp, char ***argvp)
                   1991: {
                   1992:        char *ret = (*argvp)[0];
                   1993:
                   1994:        if (*argcp > 0 && ret != NULL) {
                   1995:                (*argcp)--;
                   1996:                (*argvp)++;
                   1997:        }
                   1998:        return ret;
                   1999: }
                   2000:
                   2001: void
                   2002: argv_consume(int *argcp)
                   2003: {
                   2004:        *argcp = 0;
                   2005: }
                   2006:
                   2007: void
                   2008: argv_free(char **av, int ac)
                   2009: {
                   2010:        int i;
                   2011:
                   2012:        if (av == NULL)
                   2013:                return;
                   2014:        for (i = 0; i < ac; i++)
                   2015:                free(av[i]);
                   2016:        free(av);
1.112     djm      2017: }
                   2018:
                   2019: /* Returns 0 if pid exited cleanly, non-zero otherwise */
                   2020: int
1.113     djm      2021: exited_cleanly(pid_t pid, const char *tag, const char *cmd, int quiet)
1.112     djm      2022: {
                   2023:        int status;
                   2024:
                   2025:        while (waitpid(pid, &status, 0) == -1) {
                   2026:                if (errno != EINTR) {
1.155     djm      2027:                        error("%s waitpid: %s", tag, strerror(errno));
1.112     djm      2028:                        return -1;
                   2029:                }
                   2030:        }
                   2031:        if (WIFSIGNALED(status)) {
                   2032:                error("%s %s exited on signal %d", tag, cmd, WTERMSIG(status));
                   2033:                return -1;
                   2034:        } else if (WEXITSTATUS(status) != 0) {
1.113     djm      2035:                do_log2(quiet ? SYSLOG_LEVEL_DEBUG1 : SYSLOG_LEVEL_INFO,
                   2036:                    "%s %s failed, status %d", tag, cmd, WEXITSTATUS(status));
1.112     djm      2037:                return -1;
                   2038:        }
                   2039:        return 0;
                   2040: }
                   2041:
                   2042: /*
                   2043:  * Check a given path for security. This is defined as all components
                   2044:  * of the path to the file must be owned by either the owner of
                   2045:  * of the file or root and no directories must be group or world writable.
                   2046:  *
                   2047:  * XXX Should any specific check be done for sym links ?
                   2048:  *
                   2049:  * Takes a file name, its stat information (preferably from fstat() to
                   2050:  * avoid races), the uid of the expected owner, their home directory and an
                   2051:  * error buffer plus max size as arguments.
                   2052:  *
                   2053:  * Returns 0 on success and -1 on failure
                   2054:  */
                   2055: int
                   2056: safe_path(const char *name, struct stat *stp, const char *pw_dir,
                   2057:     uid_t uid, char *err, size_t errlen)
                   2058: {
                   2059:        char buf[PATH_MAX], homedir[PATH_MAX];
                   2060:        char *cp;
                   2061:        int comparehome = 0;
                   2062:        struct stat st;
                   2063:
                   2064:        if (realpath(name, buf) == NULL) {
                   2065:                snprintf(err, errlen, "realpath %s failed: %s", name,
                   2066:                    strerror(errno));
                   2067:                return -1;
                   2068:        }
                   2069:        if (pw_dir != NULL && realpath(pw_dir, homedir) != NULL)
                   2070:                comparehome = 1;
                   2071:
                   2072:        if (!S_ISREG(stp->st_mode)) {
                   2073:                snprintf(err, errlen, "%s is not a regular file", buf);
                   2074:                return -1;
                   2075:        }
                   2076:        if ((stp->st_uid != 0 && stp->st_uid != uid) ||
                   2077:            (stp->st_mode & 022) != 0) {
                   2078:                snprintf(err, errlen, "bad ownership or modes for file %s",
                   2079:                    buf);
                   2080:                return -1;
                   2081:        }
                   2082:
                   2083:        /* for each component of the canonical path, walking upwards */
                   2084:        for (;;) {
                   2085:                if ((cp = dirname(buf)) == NULL) {
                   2086:                        snprintf(err, errlen, "dirname() failed");
                   2087:                        return -1;
                   2088:                }
                   2089:                strlcpy(buf, cp, sizeof(buf));
                   2090:
1.139     deraadt  2091:                if (stat(buf, &st) == -1 ||
1.112     djm      2092:                    (st.st_uid != 0 && st.st_uid != uid) ||
                   2093:                    (st.st_mode & 022) != 0) {
                   2094:                        snprintf(err, errlen,
                   2095:                            "bad ownership or modes for directory %s", buf);
                   2096:                        return -1;
                   2097:                }
                   2098:
                   2099:                /* If are past the homedir then we can stop */
                   2100:                if (comparehome && strcmp(homedir, buf) == 0)
                   2101:                        break;
                   2102:
                   2103:                /*
                   2104:                 * dirname should always complete with a "/" path,
                   2105:                 * but we can be paranoid and check for "." too
                   2106:                 */
                   2107:                if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
                   2108:                        break;
                   2109:        }
                   2110:        return 0;
                   2111: }
                   2112:
                   2113: /*
                   2114:  * Version of safe_path() that accepts an open file descriptor to
                   2115:  * avoid races.
                   2116:  *
                   2117:  * Returns 0 on success and -1 on failure
                   2118:  */
                   2119: int
                   2120: safe_path_fd(int fd, const char *file, struct passwd *pw,
                   2121:     char *err, size_t errlen)
                   2122: {
                   2123:        struct stat st;
                   2124:
                   2125:        /* check the open file to avoid races */
1.139     deraadt  2126:        if (fstat(fd, &st) == -1) {
1.112     djm      2127:                snprintf(err, errlen, "cannot stat file %s: %s",
                   2128:                    file, strerror(errno));
                   2129:                return -1;
                   2130:        }
                   2131:        return safe_path(file, &st, pw->pw_dir, pw->pw_uid, err, errlen);
                   2132: }
                   2133:
                   2134: /*
                   2135:  * Sets the value of the given variable in the environment.  If the variable
                   2136:  * already exists, its value is overridden.
                   2137:  */
                   2138: void
                   2139: child_set_env(char ***envp, u_int *envsizep, const char *name,
                   2140:        const char *value)
                   2141: {
                   2142:        char **env;
                   2143:        u_int envsize;
                   2144:        u_int i, namelen;
                   2145:
                   2146:        if (strchr(name, '=') != NULL) {
                   2147:                error("Invalid environment variable \"%.100s\"", name);
                   2148:                return;
                   2149:        }
                   2150:
                   2151:        /*
                   2152:         * Find the slot where the value should be stored.  If the variable
                   2153:         * already exists, we reuse the slot; otherwise we append a new slot
                   2154:         * at the end of the array, expanding if necessary.
                   2155:         */
                   2156:        env = *envp;
                   2157:        namelen = strlen(name);
                   2158:        for (i = 0; env[i]; i++)
                   2159:                if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
                   2160:                        break;
                   2161:        if (env[i]) {
                   2162:                /* Reuse the slot. */
                   2163:                free(env[i]);
                   2164:        } else {
                   2165:                /* New variable.  Expand if necessary. */
                   2166:                envsize = *envsizep;
                   2167:                if (i >= envsize - 1) {
                   2168:                        if (envsize >= 1000)
                   2169:                                fatal("child_set_env: too many env vars");
                   2170:                        envsize += 50;
                   2171:                        env = (*envp) = xreallocarray(env, envsize, sizeof(char *));
                   2172:                        *envsizep = envsize;
                   2173:                }
                   2174:                /* Need to set the NULL pointer at end of array beyond the new slot. */
                   2175:                env[i + 1] = NULL;
                   2176:        }
                   2177:
                   2178:        /* Allocate space and format the variable in the appropriate slot. */
1.125     djm      2179:        /* XXX xasprintf */
1.112     djm      2180:        env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
                   2181:        snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
                   2182: }
                   2183:
1.114     millert  2184: /*
                   2185:  * Check and optionally lowercase a domain name, also removes trailing '.'
                   2186:  * Returns 1 on success and 0 on failure, storing an error message in errstr.
                   2187:  */
                   2188: int
                   2189: valid_domain(char *name, int makelower, const char **errstr)
                   2190: {
                   2191:        size_t i, l = strlen(name);
                   2192:        u_char c, last = '\0';
                   2193:        static char errbuf[256];
                   2194:
                   2195:        if (l == 0) {
                   2196:                strlcpy(errbuf, "empty domain name", sizeof(errbuf));
                   2197:                goto bad;
                   2198:        }
                   2199:        if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0])) {
                   2200:                snprintf(errbuf, sizeof(errbuf), "domain name \"%.100s\" "
                   2201:                    "starts with invalid character", name);
                   2202:                goto bad;
                   2203:        }
                   2204:        for (i = 0; i < l; i++) {
                   2205:                c = tolower((u_char)name[i]);
                   2206:                if (makelower)
                   2207:                        name[i] = (char)c;
                   2208:                if (last == '.' && c == '.') {
                   2209:                        snprintf(errbuf, sizeof(errbuf), "domain name "
                   2210:                            "\"%.100s\" contains consecutive separators", name);
                   2211:                        goto bad;
                   2212:                }
                   2213:                if (c != '.' && c != '-' && !isalnum(c) &&
                   2214:                    c != '_') /* technically invalid, but common */ {
                   2215:                        snprintf(errbuf, sizeof(errbuf), "domain name "
                   2216:                            "\"%.100s\" contains invalid characters", name);
                   2217:                        goto bad;
                   2218:                }
                   2219:                last = c;
                   2220:        }
                   2221:        if (name[l - 1] == '.')
                   2222:                name[l - 1] = '\0';
                   2223:        if (errstr != NULL)
                   2224:                *errstr = NULL;
                   2225:        return 1;
                   2226: bad:
                   2227:        if (errstr != NULL)
                   2228:                *errstr = errbuf;
                   2229:        return 0;
1.132     djm      2230: }
                   2231:
                   2232: /*
                   2233:  * Verify that a environment variable name (not including initial '$') is
                   2234:  * valid; consisting of one or more alphanumeric or underscore characters only.
                   2235:  * Returns 1 on valid, 0 otherwise.
                   2236:  */
                   2237: int
                   2238: valid_env_name(const char *name)
                   2239: {
                   2240:        const char *cp;
                   2241:
                   2242:        if (name[0] == '\0')
                   2243:                return 0;
                   2244:        for (cp = name; *cp != '\0'; cp++) {
                   2245:                if (!isalnum((u_char)*cp) && *cp != '_')
                   2246:                        return 0;
                   2247:        }
                   2248:        return 1;
1.120     dtucker  2249: }
                   2250:
                   2251: const char *
                   2252: atoi_err(const char *nptr, int *val)
                   2253: {
                   2254:        const char *errstr = NULL;
                   2255:        long long num;
                   2256:
                   2257:        if (nptr == NULL || *nptr == '\0')
                   2258:                return "missing";
                   2259:        num = strtonum(nptr, 0, INT_MAX, &errstr);
                   2260:        if (errstr == NULL)
                   2261:                *val = (int)num;
                   2262:        return errstr;
1.127     djm      2263: }
                   2264:
                   2265: int
                   2266: parse_absolute_time(const char *s, uint64_t *tp)
                   2267: {
                   2268:        struct tm tm;
                   2269:        time_t tt;
                   2270:        char buf[32], *fmt;
                   2271:
                   2272:        *tp = 0;
                   2273:
                   2274:        /*
                   2275:         * POSIX strptime says "The application shall ensure that there
                   2276:         * is white-space or other non-alphanumeric characters between
                   2277:         * any two conversion specifications" so arrange things this way.
                   2278:         */
                   2279:        switch (strlen(s)) {
                   2280:        case 8: /* YYYYMMDD */
                   2281:                fmt = "%Y-%m-%d";
                   2282:                snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
                   2283:                break;
                   2284:        case 12: /* YYYYMMDDHHMM */
                   2285:                fmt = "%Y-%m-%dT%H:%M";
                   2286:                snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s",
                   2287:                    s, s + 4, s + 6, s + 8, s + 10);
                   2288:                break;
                   2289:        case 14: /* YYYYMMDDHHMMSS */
                   2290:                fmt = "%Y-%m-%dT%H:%M:%S";
                   2291:                snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
                   2292:                    s, s + 4, s + 6, s + 8, s + 10, s + 12);
                   2293:                break;
                   2294:        default:
                   2295:                return SSH_ERR_INVALID_FORMAT;
                   2296:        }
                   2297:
                   2298:        memset(&tm, 0, sizeof(tm));
                   2299:        if (strptime(buf, fmt, &tm) == NULL)
                   2300:                return SSH_ERR_INVALID_FORMAT;
                   2301:        if ((tt = mktime(&tm)) < 0)
                   2302:                return SSH_ERR_INVALID_FORMAT;
                   2303:        /* success */
                   2304:        *tp = (uint64_t)tt;
                   2305:        return 0;
                   2306: }
                   2307:
1.167     dtucker  2308: /* On OpenBSD time_t is int64_t which is long long. */
1.168     dtucker  2309: #define SSH_TIME_T_MAX LLONG_MAX
1.167     dtucker  2310:
1.127     djm      2311: void
                   2312: format_absolute_time(uint64_t t, char *buf, size_t len)
                   2313: {
1.167     dtucker  2314:        time_t tt = t > SSH_TIME_T_MAX ? SSH_TIME_T_MAX : t;
1.127     djm      2315:        struct tm tm;
                   2316:
                   2317:        localtime_r(&tt, &tm);
                   2318:        strftime(buf, len, "%Y-%m-%dT%H:%M:%S", &tm);
1.134     djm      2319: }
                   2320:
                   2321: /* check if path is absolute */
                   2322: int
                   2323: path_absolute(const char *path)
                   2324: {
                   2325:        return (*path == '/') ? 1 : 0;
1.141     djm      2326: }
                   2327:
                   2328: void
                   2329: skip_space(char **cpp)
                   2330: {
                   2331:        char *cp;
                   2332:
                   2333:        for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
                   2334:                ;
                   2335:        *cpp = cp;
1.114     millert  2336: }
1.142     djm      2337:
                   2338: /* authorized_key-style options parsing helpers */
                   2339:
                   2340: /*
                   2341:  * Match flag 'opt' in *optsp, and if allow_negate is set then also match
                   2342:  * 'no-opt'. Returns -1 if option not matched, 1 if option matches or 0
                   2343:  * if negated option matches.
                   2344:  * If the option or negated option matches, then *optsp is updated to
                   2345:  * point to the first character after the option.
                   2346:  */
                   2347: int
                   2348: opt_flag(const char *opt, int allow_negate, const char **optsp)
                   2349: {
                   2350:        size_t opt_len = strlen(opt);
                   2351:        const char *opts = *optsp;
                   2352:        int negate = 0;
                   2353:
                   2354:        if (allow_negate && strncasecmp(opts, "no-", 3) == 0) {
                   2355:                opts += 3;
                   2356:                negate = 1;
                   2357:        }
                   2358:        if (strncasecmp(opts, opt, opt_len) == 0) {
                   2359:                *optsp = opts + opt_len;
                   2360:                return negate ? 0 : 1;
                   2361:        }
                   2362:        return -1;
                   2363: }
                   2364:
                   2365: char *
                   2366: opt_dequote(const char **sp, const char **errstrp)
                   2367: {
                   2368:        const char *s = *sp;
                   2369:        char *ret;
                   2370:        size_t i;
                   2371:
                   2372:        *errstrp = NULL;
                   2373:        if (*s != '"') {
                   2374:                *errstrp = "missing start quote";
                   2375:                return NULL;
                   2376:        }
                   2377:        s++;
                   2378:        if ((ret = malloc(strlen((s)) + 1)) == NULL) {
                   2379:                *errstrp = "memory allocation failed";
                   2380:                return NULL;
                   2381:        }
                   2382:        for (i = 0; *s != '\0' && *s != '"';) {
                   2383:                if (s[0] == '\\' && s[1] == '"')
                   2384:                        s++;
                   2385:                ret[i++] = *s++;
                   2386:        }
                   2387:        if (*s == '\0') {
                   2388:                *errstrp = "missing end quote";
                   2389:                free(ret);
                   2390:                return NULL;
                   2391:        }
                   2392:        ret[i] = '\0';
                   2393:        s++;
                   2394:        *sp = s;
                   2395:        return ret;
                   2396: }
                   2397:
                   2398: int
                   2399: opt_match(const char **opts, const char *term)
                   2400: {
                   2401:        if (strncasecmp((*opts), term, strlen(term)) == 0 &&
                   2402:            (*opts)[strlen(term)] == '=') {
                   2403:                *opts += strlen(term) + 1;
                   2404:                return 1;
                   2405:        }
                   2406:        return 0;
1.161     markus   2407: }
                   2408:
                   2409: void
                   2410: opt_array_append2(const char *file, const int line, const char *directive,
                   2411:     char ***array, int **iarray, u_int *lp, const char *s, int i)
                   2412: {
                   2413:
                   2414:        if (*lp >= INT_MAX)
                   2415:                fatal("%s line %d: Too many %s entries", file, line, directive);
                   2416:
                   2417:        if (iarray != NULL) {
                   2418:                *iarray = xrecallocarray(*iarray, *lp, *lp + 1,
                   2419:                    sizeof(**iarray));
                   2420:                (*iarray)[*lp] = i;
                   2421:        }
                   2422:
                   2423:        *array = xrecallocarray(*array, *lp, *lp + 1, sizeof(**array));
                   2424:        (*array)[*lp] = xstrdup(s);
                   2425:        (*lp)++;
                   2426: }
                   2427:
                   2428: void
                   2429: opt_array_append(const char *file, const int line, const char *directive,
                   2430:     char ***array, u_int *lp, const char *s)
                   2431: {
                   2432:        opt_array_append2(file, line, directive, array, NULL, lp, s, 0);
1.142     djm      2433: }
                   2434:
1.144     dtucker  2435: sshsig_t
                   2436: ssh_signal(int signum, sshsig_t handler)
                   2437: {
                   2438:        struct sigaction sa, osa;
                   2439:
                   2440:        /* mask all other signals while in handler */
1.147     dtucker  2441:        memset(&sa, 0, sizeof(sa));
1.144     dtucker  2442:        sa.sa_handler = handler;
                   2443:        sigfillset(&sa.sa_mask);
                   2444:        if (signum != SIGALRM)
                   2445:                sa.sa_flags = SA_RESTART;
                   2446:        if (sigaction(signum, &sa, &osa) == -1) {
                   2447:                debug3("sigaction(%s): %s", strsignal(signum), strerror(errno));
                   2448:                return SIG_ERR;
                   2449:        }
                   2450:        return osa.sa_handler;
1.154     djm      2451: }
                   2452:
                   2453: int
                   2454: stdfd_devnull(int do_stdin, int do_stdout, int do_stderr)
                   2455: {
                   2456:        int devnull, ret = 0;
                   2457:
                   2458:        if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1.155     djm      2459:                error_f("open %s: %s", _PATH_DEVNULL,
1.154     djm      2460:                    strerror(errno));
                   2461:                return -1;
                   2462:        }
                   2463:        if ((do_stdin && dup2(devnull, STDIN_FILENO) == -1) ||
                   2464:            (do_stdout && dup2(devnull, STDOUT_FILENO) == -1) ||
                   2465:            (do_stderr && dup2(devnull, STDERR_FILENO) == -1)) {
1.155     djm      2466:                error_f("dup2: %s", strerror(errno));
1.154     djm      2467:                ret = -1;
                   2468:        }
                   2469:        if (devnull > STDERR_FILENO)
                   2470:                close(devnull);
                   2471:        return ret;
1.157     djm      2472: }
                   2473:
                   2474: /*
                   2475:  * Runs command in a subprocess with a minimal environment.
                   2476:  * Returns pid on success, 0 on failure.
                   2477:  * The child stdout and stderr maybe captured, left attached or sent to
                   2478:  * /dev/null depending on the contents of flags.
                   2479:  * "tag" is prepended to log messages.
                   2480:  * NB. "command" is only used for logging; the actual command executed is
                   2481:  * av[0].
                   2482:  */
                   2483: pid_t
                   2484: subprocess(const char *tag, const char *command,
                   2485:     int ac, char **av, FILE **child, u_int flags,
                   2486:     struct passwd *pw, privdrop_fn *drop_privs, privrestore_fn *restore_privs)
                   2487: {
                   2488:        FILE *f = NULL;
                   2489:        struct stat st;
                   2490:        int fd, devnull, p[2], i;
                   2491:        pid_t pid;
                   2492:        char *cp, errmsg[512];
                   2493:        u_int nenv = 0;
                   2494:        char **env = NULL;
                   2495:
                   2496:        /* If dropping privs, then must specify user and restore function */
                   2497:        if (drop_privs != NULL && (pw == NULL || restore_privs == NULL)) {
                   2498:                error("%s: inconsistent arguments", tag); /* XXX fatal? */
                   2499:                return 0;
                   2500:        }
                   2501:        if (pw == NULL && (pw = getpwuid(getuid())) == NULL) {
                   2502:                error("%s: no user for current uid", tag);
                   2503:                return 0;
                   2504:        }
                   2505:        if (child != NULL)
                   2506:                *child = NULL;
                   2507:
                   2508:        debug3_f("%s command \"%s\" running as %s (flags 0x%x)",
                   2509:            tag, command, pw->pw_name, flags);
                   2510:
                   2511:        /* Check consistency */
                   2512:        if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
                   2513:            (flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0) {
                   2514:                error_f("inconsistent flags");
                   2515:                return 0;
                   2516:        }
                   2517:        if (((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0) != (child == NULL)) {
                   2518:                error_f("inconsistent flags/output");
                   2519:                return 0;
                   2520:        }
                   2521:
                   2522:        /*
                   2523:         * If executing an explicit binary, then verify the it exists
                   2524:         * and appears safe-ish to execute
                   2525:         */
                   2526:        if (!path_absolute(av[0])) {
                   2527:                error("%s path is not absolute", tag);
                   2528:                return 0;
                   2529:        }
                   2530:        if (drop_privs != NULL)
                   2531:                drop_privs(pw);
                   2532:        if (stat(av[0], &st) == -1) {
                   2533:                error("Could not stat %s \"%s\": %s", tag,
                   2534:                    av[0], strerror(errno));
                   2535:                goto restore_return;
                   2536:        }
                   2537:        if ((flags & SSH_SUBPROCESS_UNSAFE_PATH) == 0 &&
                   2538:            safe_path(av[0], &st, NULL, 0, errmsg, sizeof(errmsg)) != 0) {
                   2539:                error("Unsafe %s \"%s\": %s", tag, av[0], errmsg);
                   2540:                goto restore_return;
                   2541:        }
                   2542:        /* Prepare to keep the child's stdout if requested */
                   2543:        if (pipe(p) == -1) {
                   2544:                error("%s: pipe: %s", tag, strerror(errno));
                   2545:  restore_return:
                   2546:                if (restore_privs != NULL)
                   2547:                        restore_privs();
                   2548:                return 0;
                   2549:        }
                   2550:        if (restore_privs != NULL)
                   2551:                restore_privs();
                   2552:
                   2553:        switch ((pid = fork())) {
                   2554:        case -1: /* error */
                   2555:                error("%s: fork: %s", tag, strerror(errno));
                   2556:                close(p[0]);
                   2557:                close(p[1]);
                   2558:                return 0;
                   2559:        case 0: /* child */
                   2560:                /* Prepare a minimal environment for the child. */
                   2561:                if ((flags & SSH_SUBPROCESS_PRESERVE_ENV) == 0) {
                   2562:                        nenv = 5;
                   2563:                        env = xcalloc(sizeof(*env), nenv);
                   2564:                        child_set_env(&env, &nenv, "PATH", _PATH_STDPATH);
                   2565:                        child_set_env(&env, &nenv, "USER", pw->pw_name);
                   2566:                        child_set_env(&env, &nenv, "LOGNAME", pw->pw_name);
                   2567:                        child_set_env(&env, &nenv, "HOME", pw->pw_dir);
                   2568:                        if ((cp = getenv("LANG")) != NULL)
                   2569:                                child_set_env(&env, &nenv, "LANG", cp);
                   2570:                }
                   2571:
1.162     dtucker  2572:                for (i = 1; i < NSIG; i++)
1.157     djm      2573:                        ssh_signal(i, SIG_DFL);
                   2574:
                   2575:                if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
                   2576:                        error("%s: open %s: %s", tag, _PATH_DEVNULL,
                   2577:                            strerror(errno));
                   2578:                        _exit(1);
                   2579:                }
                   2580:                if (dup2(devnull, STDIN_FILENO) == -1) {
                   2581:                        error("%s: dup2: %s", tag, strerror(errno));
                   2582:                        _exit(1);
                   2583:                }
                   2584:
                   2585:                /* Set up stdout as requested; leave stderr in place for now. */
                   2586:                fd = -1;
                   2587:                if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0)
                   2588:                        fd = p[1];
                   2589:                else if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0)
                   2590:                        fd = devnull;
                   2591:                if (fd != -1 && dup2(fd, STDOUT_FILENO) == -1) {
                   2592:                        error("%s: dup2: %s", tag, strerror(errno));
                   2593:                        _exit(1);
                   2594:                }
                   2595:                closefrom(STDERR_FILENO + 1);
                   2596:
                   2597:                if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) == -1) {
                   2598:                        error("%s: setresgid %u: %s", tag, (u_int)pw->pw_gid,
                   2599:                            strerror(errno));
                   2600:                        _exit(1);
                   2601:                }
                   2602:                if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1) {
                   2603:                        error("%s: setresuid %u: %s", tag, (u_int)pw->pw_uid,
                   2604:                            strerror(errno));
                   2605:                        _exit(1);
                   2606:                }
                   2607:                /* stdin is pointed to /dev/null at this point */
                   2608:                if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
                   2609:                    dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
                   2610:                        error("%s: dup2: %s", tag, strerror(errno));
                   2611:                        _exit(1);
                   2612:                }
                   2613:                if (env != NULL)
                   2614:                        execve(av[0], av, env);
                   2615:                else
                   2616:                        execv(av[0], av);
                   2617:                error("%s %s \"%s\": %s", tag, env == NULL ? "execv" : "execve",
                   2618:                    command, strerror(errno));
                   2619:                _exit(127);
                   2620:        default: /* parent */
                   2621:                break;
                   2622:        }
                   2623:
                   2624:        close(p[1]);
                   2625:        if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0)
                   2626:                close(p[0]);
                   2627:        else if ((f = fdopen(p[0], "r")) == NULL) {
                   2628:                error("%s: fdopen: %s", tag, strerror(errno));
                   2629:                close(p[0]);
                   2630:                /* Don't leave zombie child */
                   2631:                kill(pid, SIGTERM);
                   2632:                while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
                   2633:                        ;
                   2634:                return 0;
                   2635:        }
                   2636:        /* Success */
                   2637:        debug3_f("%s pid %ld", tag, (long)pid);
                   2638:        if (child != NULL)
                   2639:                *child = f;
                   2640:        return pid;
1.165     djm      2641: }
                   2642:
                   2643: const char *
                   2644: lookup_env_in_list(const char *env, char * const *envs, size_t nenvs)
                   2645: {
                   2646:        size_t i, envlen;
                   2647:
                   2648:        envlen = strlen(env);
                   2649:        for (i = 0; i < nenvs; i++) {
                   2650:                if (strncmp(envs[i], env, envlen) == 0 &&
                   2651:                    envs[i][envlen] == '=') {
                   2652:                        return envs[i] + envlen + 1;
                   2653:                }
                   2654:        }
                   2655:        return NULL;
1.144     dtucker  2656: }