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

Annotation of src/usr.bin/nc/netcat.c, Revision 1.181

1.181   ! deraadt     1: /* $OpenBSD: netcat.c,v 1.180 2017/04/05 06:55:59 jmc Exp $ */
1.21      ericj       2: /*
                      3:  * Copyright (c) 2001 Eric Jackson <ericj@monkey.org>
1.133     beck        4:  * Copyright (c) 2015 Bob Beck.  All rights reserved.
1.7       deraadt     5:  *
1.21      ericj       6:  * Redistribution and use in source and binary forms, with or without
                      7:  * modification, are permitted provided that the following conditions
                      8:  * are met:
1.7       deraadt     9:  *
1.21      ericj      10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *   notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *   notice, this list of conditions and the following disclaimer in the
                     14:  *   documentation and/or other materials provided with the distribution.
                     15:  * 3. The name of the author may not be used to endorse or promote products
                     16:  *   derived from this software without specific prior written permission.
1.7       deraadt    17:  *
1.21      ericj      18:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     19:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     20:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     21:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     22:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     23:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     24:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     25:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     26:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     27:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     28:  */
1.1       deraadt    29:
1.24      ericj      30: /*
                     31:  * Re-written nc(1) for OpenBSD. Original implementation by
1.21      ericj      32:  * *Hobbit* <hobbit@avian.org>.
                     33:  */
1.1       deraadt    34:
1.7       deraadt    35: #include <sys/types.h>
1.21      ericj      36: #include <sys/socket.h>
1.113     djm        37: #include <sys/uio.h>
1.42      ericj      38: #include <sys/un.h>
1.21      ericj      39:
1.7       deraadt    40: #include <netinet/in.h>
1.65      markus     41: #include <netinet/tcp.h>
1.83      dtucker    42: #include <netinet/ip.h>
1.21      ericj      43: #include <arpa/telnet.h>
1.29      smart      44:
1.11      ericj      45: #include <err.h>
1.7       deraadt    46: #include <errno.h>
1.129     tobias     47: #include <limits.h>
1.21      ericj      48: #include <netdb.h>
                     49: #include <poll.h>
1.129     tobias     50: #include <signal.h>
1.13      ericj      51: #include <stdarg.h>
1.21      ericj      52: #include <stdio.h>
1.1       deraadt    53: #include <stdlib.h>
1.21      ericj      54: #include <string.h>
1.149     bcook      55: #include <time.h>
1.5       art        56: #include <unistd.h>
1.133     beck       57: #include <tls.h>
1.79      avsm       58: #include "atomicio.h"
1.51      vincent    59:
1.55      fgsch      60: #define PORT_MAX       65535
1.99      jeremy     61: #define UNIX_DG_TMP_SOCKET_SIZE        19
1.31      ericj      62:
1.125     tedu       63: #define POLL_STDIN 0
                     64: #define POLL_NETOUT 1
                     65: #define POLL_NETIN 2
                     66: #define POLL_STDOUT 3
1.126     tedu       67: #define BUFSIZE 16384
1.159     jsing      68: #define DEFAULT_CA_FILE "/etc/ssl/cert.pem"
1.133     beck       69:
1.170     beck       70: #define TLS_ALL        (1 << 1)
1.133     beck       71: #define TLS_NOVERIFY   (1 << 2)
                     72: #define TLS_NONAME     (1 << 3)
                     73: #define TLS_CCERT      (1 << 4)
1.167     beck       74: #define TLS_MUSTSTAPLE (1 << 5)
1.125     tedu       75:
1.21      ericj      76: /* Command Line Options */
1.68      tedu       77: int    dflag;                                  /* detached, no stdin */
1.113     djm        78: int    Fflag;                                  /* fdpass sock to stdout */
1.88      ray        79: unsigned int iflag;                            /* Interval Flag */
1.21      ericj      80: int    kflag;                                  /* More than one connect */
                     81: int    lflag;                                  /* Bind to local port */
1.111     sthen      82: int    Nflag;                                  /* shutdown() network socket */
1.67      jmc        83: int    nflag;                                  /* Don't do name look up */
1.86      djm        84: char   *Pflag;                                 /* Proxy username */
1.21      ericj      85: char   *pflag;                                 /* Localport flag */
                     86: int    rflag;                                  /* Random ports flag */
                     87: char   *sflag;                                 /* Source Address */
                     88: int    tflag;                                  /* Telnet Emulation */
                     89: int    uflag;                                  /* UDP - Default to TCP */
                     90: int    vflag;                                  /* Verbosity */
1.34      jakob      91: int    xflag;                                  /* Socks proxy */
1.21      ericj      92: int    zflag;                                  /* Port Scan Flag */
1.73      markus     93: int    Dflag;                                  /* sodebug */
1.90      djm        94: int    Iflag;                                  /* TCP receive buffer size */
                     95: int    Oflag;                                  /* TCP send buffer size */
1.65      markus     96: int    Sflag;                                  /* TCP MD5 signature option */
1.83      dtucker    97: int    Tflag = -1;                             /* IP Type of Service */
1.117     sthen      98: int    rtableid = -1;
1.21      ericj      99:
1.133     beck      100: int    usetls;                                 /* use TLS */
                    101: char    *Cflag;                                        /* Public cert file */
                    102: char    *Kflag;                                        /* Private key file */
1.168     beck      103: char    *oflag;                                        /* OCSP stapling file */
1.159     jsing     104: char    *Rflag = DEFAULT_CA_FILE;              /* Root CA file */
1.133     beck      105: int    tls_cachanged;                          /* Using non-default CA file */
                    106: int     TLSopt;                                        /* TLS options */
                    107: char   *tls_expectname;                        /* required name in peer cert */
                    108: char   *tls_expecthash;                        /* required hash of peer cert */
1.179     beck      109: FILE   *Zflag;                                 /* file to save peer cert */
1.133     beck      110:
1.49      hugh      111: int timeout = -1;
1.21      ericj     112: int family = AF_UNSPEC;
1.63      miod      113: char *portlist[PORT_MAX+1];
1.99      jeremy    114: char *unix_dg_tmp_socket;
1.156     jca       115: int ttl = -1;
                    116: int minttl = -1;
1.21      ericj     117:
1.40      millert   118: void   atelnet(int, unsigned char *, unsigned int);
                    119: void   build_ports(char *);
                    120: void   help(void);
                    121: int    local_listen(char *, char *, struct addrinfo);
1.133     beck      122: void   readwrite(int, struct tls *);
1.113     djm       123: void   fdpass(int nfd) __attribute__((noreturn));
1.77      otto      124: int    remote_connect(const char *, const char *, struct addrinfo);
1.175     bluhm     125: int    timeout_tls(int, struct tls *, int (*)(struct tls *));
1.103     fgsch     126: int    timeout_connect(int, const struct sockaddr *, socklen_t);
1.86      djm       127: int    socks_connect(const char *, const char *, struct addrinfo,
                    128:            const char *, const char *, struct addrinfo, int, const char *);
1.40      millert   129: int    udptest(int);
1.136     deraadt   130: int    unix_bind(char *, int);
1.42      ericj     131: int    unix_connect(char *);
                    132: int    unix_listen(char *);
1.127     jca       133: void   set_common_sockopts(int, int);
1.102     haesbaer  134: int    map_tos(char *, int *);
1.133     beck      135: int    map_tls(char *, int *);
1.179     beck      136: void    save_peer_cert(struct tls *_tls_ctx, FILE *_fp);
1.151     beck      137: void   report_connect(const struct sockaddr *, socklen_t, char *);
1.134     deraadt   138: void   report_tls(struct tls *tls_ctx, char * host, char *tls_expectname);
1.40      millert   139: void   usage(int);
1.133     beck      140: ssize_t drainbuf(int, unsigned char *, size_t *, struct tls *);
                    141: ssize_t fillbuf(int, unsigned char *, size_t *, struct tls *);
                    142: void   tls_setup_client(struct tls *, int, char *);
1.134     deraadt   143: struct tls *tls_setup_server(struct tls *, int, char *);
1.1       deraadt   144:
1.21      ericj     145: int
1.37      jakob     146: main(int argc, char *argv[])
1.21      ericj     147: {
1.154     deraadt   148:        int ch, s = -1, ret, socksv;
1.88      ray       149:        char *host, *uport;
1.21      ericj     150:        struct addrinfo hints;
1.29      smart     151:        struct servent *sv;
1.21      ericj     152:        socklen_t len;
1.76      hshoexer  153:        struct sockaddr_storage cliaddr;
1.172     jca       154:        char *proxy, *proxyport = NULL;
                    155:        const char *errstr;
1.34      jakob     156:        struct addrinfo proxyhints;
1.99      jeremy    157:        char unix_dg_tmp_socket_buf[UNIX_DG_TMP_SOCKET_SIZE];
1.133     beck      158:        struct tls_config *tls_cfg = NULL;
                    159:        struct tls *tls_ctx = NULL;
1.11      ericj     160:
1.29      smart     161:        ret = 1;
1.46      markus    162:        socksv = 5;
1.29      smart     163:        host = NULL;
                    164:        uport = NULL;
                    165:        sv = NULL;
1.129     tobias    166:
                    167:        signal(SIGPIPE, SIG_IGN);
1.29      smart     168:
1.80      mcbride   169:        while ((ch = getopt(argc, argv,
1.179     beck      170:            "46C:cDde:FH:hI:i:K:klM:m:NnO:o:P:p:R:rSs:T:tUuV:vw:X:x:Z:z")) != -1) {
1.21      ericj     171:                switch (ch) {
                    172:                case '4':
                    173:                        family = AF_INET;
                    174:                        break;
                    175:                case '6':
                    176:                        family = AF_INET6;
                    177:                        break;
1.42      ericj     178:                case 'U':
                    179:                        family = AF_UNIX;
                    180:                        break;
1.46      markus    181:                case 'X':
1.75      djm       182:                        if (strcasecmp(optarg, "connect") == 0)
                    183:                                socksv = -1; /* HTTP proxy CONNECT */
                    184:                        else if (strcmp(optarg, "4") == 0)
                    185:                                socksv = 4; /* SOCKS v.4 */
                    186:                        else if (strcmp(optarg, "5") == 0)
                    187:                                socksv = 5; /* SOCKS v.5 */
                    188:                        else
                    189:                                errx(1, "unsupported proxy protocol");
1.46      markus    190:                        break;
1.133     beck      191:                case 'C':
                    192:                        Cflag = optarg;
                    193:                        break;
                    194:                case 'c':
                    195:                        usetls = 1;
                    196:                        break;
1.68      tedu      197:                case 'd':
                    198:                        dflag = 1;
                    199:                        break;
1.133     beck      200:                case 'e':
                    201:                        tls_expectname = optarg;
                    202:                        break;
1.113     djm       203:                case 'F':
                    204:                        Fflag = 1;
                    205:                        break;
1.133     beck      206:                case 'H':
                    207:                        tls_expecthash = optarg;
                    208:                        break;
1.21      ericj     209:                case 'h':
                    210:                        help();
                    211:                        break;
                    212:                case 'i':
1.88      ray       213:                        iflag = strtonum(optarg, 0, UINT_MAX, &errstr);
                    214:                        if (errstr)
                    215:                                errx(1, "interval %s: %s", errstr, optarg);
1.21      ericj     216:                        break;
1.133     beck      217:                case 'K':
                    218:                        Kflag = optarg;
                    219:                        break;
1.21      ericj     220:                case 'k':
                    221:                        kflag = 1;
                    222:                        break;
                    223:                case 'l':
                    224:                        lflag = 1;
                    225:                        break;
1.156     jca       226:                case 'M':
                    227:                        ttl = strtonum(optarg, 0, 255, &errstr);
                    228:                        if (errstr)
                    229:                                errx(1, "ttl is %s", errstr);
                    230:                        break;
                    231:                case 'm':
                    232:                        minttl = strtonum(optarg, 0, 255, &errstr);
                    233:                        if (errstr)
                    234:                                errx(1, "minttl is %s", errstr);
                    235:                        break;
1.111     sthen     236:                case 'N':
                    237:                        Nflag = 1;
                    238:                        break;
1.21      ericj     239:                case 'n':
                    240:                        nflag = 1;
                    241:                        break;
1.86      djm       242:                case 'P':
                    243:                        Pflag = optarg;
                    244:                        break;
1.21      ericj     245:                case 'p':
                    246:                        pflag = optarg;
                    247:                        break;
1.133     beck      248:                case 'R':
                    249:                        tls_cachanged = 1;
                    250:                        Rflag = optarg;
                    251:                        break;
1.21      ericj     252:                case 'r':
                    253:                        rflag = 1;
                    254:                        break;
                    255:                case 's':
                    256:                        sflag = optarg;
                    257:                        break;
                    258:                case 't':
                    259:                        tflag = 1;
                    260:                        break;
                    261:                case 'u':
                    262:                        uflag = 1;
                    263:                        break;
1.93      claudio   264:                case 'V':
1.117     sthen     265:                        rtableid = (int)strtonum(optarg, 0,
1.93      claudio   266:                            RT_TABLEID_MAX, &errstr);
                    267:                        if (errstr)
1.98      guenther  268:                                errx(1, "rtable %s: %s", errstr, optarg);
1.93      claudio   269:                        break;
1.21      ericj     270:                case 'v':
                    271:                        vflag = 1;
                    272:                        break;
1.70      deraadt   273:                case 'w':
1.88      ray       274:                        timeout = strtonum(optarg, 0, INT_MAX / 1000, &errstr);
                    275:                        if (errstr)
                    276:                                errx(1, "timeout %s: %s", errstr, optarg);
1.49      hugh      277:                        timeout *= 1000;
1.21      ericj     278:                        break;
1.34      jakob     279:                case 'x':
                    280:                        xflag = 1;
1.64      deraadt   281:                        if ((proxy = strdup(optarg)) == NULL)
                    282:                                err(1, NULL);
1.34      jakob     283:                        break;
1.179     beck      284:                case 'Z':
                    285:                        if (strcmp(optarg, "-") == 0)
                    286:                                Zflag = stderr;
                    287:                        else if ((Zflag = fopen(optarg, "w")) == NULL)
                    288:                                err(1, "can't open %s", optarg);
                    289:                        break;
1.21      ericj     290:                case 'z':
                    291:                        zflag = 1;
                    292:                        break;
1.73      markus    293:                case 'D':
                    294:                        Dflag = 1;
                    295:                        break;
1.90      djm       296:                case 'I':
                    297:                        Iflag = strtonum(optarg, 1, 65536 << 14, &errstr);
                    298:                        if (errstr != NULL)
                    299:                                errx(1, "TCP receive window %s: %s",
                    300:                                    errstr, optarg);
                    301:                        break;
                    302:                case 'O':
                    303:                        Oflag = strtonum(optarg, 1, 65536 << 14, &errstr);
                    304:                        if (errstr != NULL)
                    305:                                errx(1, "TCP send window %s: %s",
                    306:                                    errstr, optarg);
                    307:                        break;
1.168     beck      308:                case 'o':
                    309:                        oflag = optarg;
                    310:                        break;
1.65      markus    311:                case 'S':
                    312:                        Sflag = 1;
                    313:                        break;
1.83      dtucker   314:                case 'T':
1.102     haesbaer  315:                        errstr = NULL;
                    316:                        errno = 0;
                    317:                        if (map_tos(optarg, &Tflag))
                    318:                                break;
1.133     beck      319:                        if (map_tls(optarg, &TLSopt))
                    320:                                break;
1.102     haesbaer  321:                        if (strlen(optarg) > 1 && optarg[0] == '0' &&
                    322:                            optarg[1] == 'x')
                    323:                                Tflag = (int)strtol(optarg, NULL, 16);
                    324:                        else
                    325:                                Tflag = (int)strtonum(optarg, 0, 255,
                    326:                                    &errstr);
                    327:                        if (Tflag < 0 || Tflag > 255 || errstr || errno)
1.133     beck      328:                                errx(1, "illegal tos/tls value %s", optarg);
1.83      dtucker   329:                        break;
1.21      ericj     330:                default:
                    331:                        usage(1);
                    332:                }
                    333:        }
                    334:        argc -= optind;
                    335:        argv += optind;
1.11      ericj     336:
1.143     deraadt   337:        if (rtableid >= 0)
1.142     benno     338:                if (setrtable(rtableid) == -1)
                    339:                        err(1, "setrtable");
1.143     deraadt   340:
1.142     benno     341:        if (family == AF_UNIX) {
1.140     beck      342:                if (pledge("stdio rpath wpath cpath tmppath unix", NULL) == -1)
                    343:                        err(1, "pledge");
1.143     deraadt   344:        } else if (Fflag) {
1.152     beck      345:                if (Pflag) {
                    346:                        if (pledge("stdio inet dns sendfd tty", NULL) == -1)
                    347:                                err(1, "pledge");
                    348:                } else if (pledge("stdio inet dns sendfd", NULL) == -1)
                    349:                        err(1, "pledge");
                    350:        } else if (Pflag) {
                    351:                if (pledge("stdio inet dns tty", NULL) == -1)
1.140     beck      352:                        err(1, "pledge");
1.143     deraadt   353:        } else if (usetls) {
1.140     beck      354:                if (pledge("stdio rpath inet dns", NULL) == -1)
                    355:                        err(1, "pledge");
1.143     deraadt   356:        } else if (pledge("stdio inet dns", NULL) == -1)
1.140     beck      357:                err(1, "pledge");
                    358:
1.21      ericj     359:        /* Cruft to make sure options are clean, and used properly. */
1.42      ericj     360:        if (argv[0] && !argv[1] && family == AF_UNIX) {
                    361:                host = argv[0];
                    362:                uport = NULL;
                    363:        } else if (argv[0] && !argv[1]) {
1.21      ericj     364:                if  (!lflag)
                    365:                        usage(1);
                    366:                uport = argv[0];
                    367:                host = NULL;
                    368:        } else if (argv[0] && argv[1]) {
                    369:                host = argv[0];
                    370:                uport = argv[1];
                    371:        } else
                    372:                usage(1);
1.1       deraadt   373:
1.21      ericj     374:        if (lflag && sflag)
                    375:                errx(1, "cannot use -s and -l");
                    376:        if (lflag && pflag)
                    377:                errx(1, "cannot use -p and -l");
                    378:        if (lflag && zflag)
1.32      ericj     379:                errx(1, "cannot use -z and -l");
1.21      ericj     380:        if (!lflag && kflag)
1.32      ericj     381:                errx(1, "must use -l with -k");
1.133     beck      382:        if (uflag && usetls)
                    383:                errx(1, "cannot use -c and -u");
                    384:        if ((family == AF_UNIX) && usetls)
                    385:                errx(1, "cannot use -c and -U");
1.140     beck      386:        if ((family == AF_UNIX) && Fflag)
                    387:                errx(1, "cannot use -F and -U");
                    388:        if (Fflag && usetls)
                    389:                errx(1, "cannot use -c and -F");
1.133     beck      390:        if (TLSopt && !usetls)
                    391:                errx(1, "you must specify -c to use TLS options");
                    392:        if (Cflag && !usetls)
                    393:                errx(1, "you must specify -c to use -C");
                    394:        if (Kflag && !usetls)
                    395:                errx(1, "you must specify -c to use -K");
1.179     beck      396:        if (Zflag && !usetls)
                    397:                errx(1, "you must specify -c to use -Z");
1.168     beck      398:        if (oflag && !Cflag)
                    399:                errx(1, "you must specify -C to use -o");
1.133     beck      400:        if (tls_cachanged && !usetls)
                    401:                errx(1, "you must specify -c to use -R");
                    402:        if (tls_expecthash && !usetls)
                    403:                errx(1, "you must specify -c to use -H");
                    404:        if (tls_expectname && !usetls)
                    405:                errx(1, "you must specify -c to use -e");
1.21      ericj     406:
1.99      jeremy    407:        /* Get name of temporary socket for unix datagram client */
                    408:        if ((family == AF_UNIX) && uflag && !lflag) {
                    409:                if (sflag) {
                    410:                        unix_dg_tmp_socket = sflag;
                    411:                } else {
                    412:                        strlcpy(unix_dg_tmp_socket_buf, "/tmp/nc.XXXXXXXXXX",
1.136     deraadt   413:                            UNIX_DG_TMP_SOCKET_SIZE);
1.99      jeremy    414:                        if (mktemp(unix_dg_tmp_socket_buf) == NULL)
                    415:                                err(1, "mktemp");
                    416:                        unix_dg_tmp_socket = unix_dg_tmp_socket_buf;
                    417:                }
                    418:        }
                    419:
1.67      jmc       420:        /* Initialize addrinfo structure. */
1.42      ericj     421:        if (family != AF_UNIX) {
                    422:                memset(&hints, 0, sizeof(struct addrinfo));
                    423:                hints.ai_family = family;
                    424:                hints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM;
                    425:                hints.ai_protocol = uflag ? IPPROTO_UDP : IPPROTO_TCP;
                    426:                if (nflag)
                    427:                        hints.ai_flags |= AI_NUMERICHOST;
                    428:        }
1.1       deraadt   429:
1.34      jakob     430:        if (xflag) {
                    431:                if (uflag)
                    432:                        errx(1, "no proxy support for UDP mode");
                    433:
                    434:                if (lflag)
                    435:                        errx(1, "no proxy support for listen");
                    436:
1.42      ericj     437:                if (family == AF_UNIX)
                    438:                        errx(1, "no proxy support for unix sockets");
                    439:
1.34      jakob     440:                if (sflag)
                    441:                        errx(1, "no proxy support for local source address");
                    442:
1.172     jca       443:                if (*proxy == '[') {
                    444:                        ++proxy;
                    445:                        proxyport = strchr(proxy, ']');
                    446:                        if (proxyport == NULL)
                    447:                                errx(1, "missing closing bracket in proxy");
                    448:                        *proxyport++ = '\0';
                    449:                        if (*proxyport == '\0')
                    450:                                /* Use default proxy port. */
                    451:                                proxyport = NULL;
                    452:                        else {
                    453:                                if (*proxyport == ':')
                    454:                                        ++proxyport;
                    455:                                else
                    456:                                        errx(1, "garbage proxy port delimiter");
                    457:                        }
                    458:                } else {
                    459:                        proxyport = strrchr(proxy, ':');
                    460:                        if (proxyport != NULL)
                    461:                                *proxyport++ = '\0';
                    462:                }
1.34      jakob     463:
                    464:                memset(&proxyhints, 0, sizeof(struct addrinfo));
                    465:                proxyhints.ai_family = family;
                    466:                proxyhints.ai_socktype = SOCK_STREAM;
                    467:                proxyhints.ai_protocol = IPPROTO_TCP;
                    468:                if (nflag)
                    469:                        proxyhints.ai_flags |= AI_NUMERICHOST;
                    470:        }
                    471:
1.133     beck      472:        if (usetls) {
1.152     beck      473:                if (Pflag) {
1.162     jsing     474:                        if (pledge("stdio inet dns tty rpath", NULL) == -1)
1.152     beck      475:                                err(1, "pledge");
1.162     jsing     476:                } else if (pledge("stdio inet dns rpath", NULL) == -1)
1.146     beck      477:                        err(1, "pledge");
                    478:
1.133     beck      479:                if (tls_init() == -1)
                    480:                        errx(1, "unable to initialize TLS");
                    481:                if ((tls_cfg = tls_config_new()) == NULL)
                    482:                        errx(1, "unable to allocate TLS config");
1.162     jsing     483:                if (Rflag && tls_config_set_ca_file(tls_cfg, Rflag) == -1)
                    484:                        errx(1, "%s", tls_config_error(tls_cfg));
                    485:                if (Cflag && tls_config_set_cert_file(tls_cfg, Cflag) == -1)
                    486:                        errx(1, "%s", tls_config_error(tls_cfg));
                    487:                if (Kflag && tls_config_set_key_file(tls_cfg, Kflag) == -1)
1.168     beck      488:                        errx(1, "%s", tls_config_error(tls_cfg));
                    489:                if (oflag && tls_config_set_ocsp_staple_file(tls_cfg, oflag) == -1)
1.162     jsing     490:                        errx(1, "%s", tls_config_error(tls_cfg));
1.170     beck      491:                if (TLSopt & TLS_ALL) {
1.171     mestre    492:                        if (tls_config_set_protocols(tls_cfg,
                    493:                            TLS_PROTOCOLS_ALL) != 0)
                    494:                                errx(1, "%s", tls_config_error(tls_cfg));
                    495:                        if (tls_config_set_ciphers(tls_cfg, "all") != 0)
                    496:                                errx(1, "%s", tls_config_error(tls_cfg));
1.133     beck      497:                }
                    498:                if (!lflag && (TLSopt & TLS_CCERT))
                    499:                        errx(1, "clientcert is only valid with -l");
                    500:                if (TLSopt & TLS_NONAME)
                    501:                        tls_config_insecure_noverifyname(tls_cfg);
                    502:                if (TLSopt & TLS_NOVERIFY) {
                    503:                        if (tls_expecthash != NULL)
                    504:                                errx(1, "-H and -T noverify may not be used"
                    505:                                    "together");
                    506:                        tls_config_insecure_noverifycert(tls_cfg);
                    507:                }
1.167     beck      508:                if (TLSopt & TLS_MUSTSTAPLE)
                    509:                        tls_config_ocsp_require_stapling(tls_cfg);
1.162     jsing     510:
                    511:                if (Pflag) {
                    512:                        if (pledge("stdio inet dns tty", NULL) == -1)
                    513:                                err(1, "pledge");
                    514:                } else if (pledge("stdio inet dns", NULL) == -1)
                    515:                        err(1, "pledge");
1.133     beck      516:        }
1.21      ericj     517:        if (lflag) {
1.133     beck      518:                struct tls *tls_cctx = NULL;
1.21      ericj     519:                int connfd;
1.27      ericj     520:                ret = 0;
1.1       deraadt   521:
1.99      jeremy    522:                if (family == AF_UNIX) {
                    523:                        if (uflag)
1.136     deraadt   524:                                s = unix_bind(host, 0);
1.99      jeremy    525:                        else
                    526:                                s = unix_listen(host);
                    527:                }
1.42      ericj     528:
1.133     beck      529:                if (usetls) {
                    530:                        tls_config_verify_client_optional(tls_cfg);
                    531:                        if ((tls_ctx = tls_server()) == NULL)
                    532:                                errx(1, "tls server creation failed");
                    533:                        if (tls_configure(tls_ctx, tls_cfg) == -1)
                    534:                                errx(1, "tls configuration failed (%s)",
                    535:                                    tls_error(tls_ctx));
                    536:                }
1.67      jmc       537:                /* Allow only one connection at a time, but stay alive. */
1.21      ericj     538:                for (;;) {
1.42      ericj     539:                        if (family != AF_UNIX)
                    540:                                s = local_listen(host, uport, hints);
                    541:                        if (s < 0)
1.30      smart     542:                                err(1, NULL);
1.181   ! deraadt   543:                        if (uflag && kflag) {
        !           544:                                /*
        !           545:                                 * For UDP and -k, don't connect the socket,
        !           546:                                 * let it receive datagrams from multiple
        !           547:                                 * socket pairs.
        !           548:                                 */
1.133     beck      549:                                readwrite(s, NULL);
1.181   ! deraadt   550:                        } else if (uflag && !kflag) {
        !           551:                                /*
        !           552:                                 * For UDP and not -k, we will use recvfrom()
        !           553:                                 * initially to wait for a caller, then use
        !           554:                                 * the regular functions to talk to the caller.
        !           555:                                 */
1.80      mcbride   556:                                int rv, plen;
1.97      nicm      557:                                char buf[16384];
1.21      ericj     558:                                struct sockaddr_storage z;
                    559:
                    560:                                len = sizeof(z);
1.106     dlg       561:                                plen = 2048;
1.80      mcbride   562:                                rv = recvfrom(s, buf, plen, MSG_PEEK,
1.37      jakob     563:                                    (struct sockaddr *)&z, &len);
1.23      ericj     564:                                if (rv < 0)
1.57      stevesk   565:                                        err(1, "recvfrom");
1.21      ericj     566:
1.37      jakob     567:                                rv = connect(s, (struct sockaddr *)&z, len);
1.23      ericj     568:                                if (rv < 0)
1.57      stevesk   569:                                        err(1, "connect");
1.1       deraadt   570:
1.108     haesbaer  571:                                if (vflag)
1.151     beck      572:                                        report_connect((struct sockaddr *)&z, len, NULL);
1.108     haesbaer  573:
1.133     beck      574:                                readwrite(s, NULL);
1.21      ericj     575:                        } else {
1.78      otto      576:                                len = sizeof(cliaddr);
1.132     bluhm     577:                                connfd = accept4(s, (struct sockaddr *)&cliaddr,
                    578:                                    &len, SOCK_NONBLOCK);
1.110     deraadt   579:                                if (connfd == -1) {
                    580:                                        /* For now, all errnos are fatal */
1.125     tedu      581:                                        err(1, "accept");
1.110     deraadt   582:                                }
1.108     haesbaer  583:                                if (vflag)
1.151     beck      584:                                        report_connect((struct sockaddr *)&cliaddr, len,
                    585:                                            family == AF_UNIX ? host : NULL);
1.133     beck      586:                                if ((usetls) &&
1.134     deraadt   587:                                    (tls_cctx = tls_setup_server(tls_ctx, connfd, host)))
1.133     beck      588:                                        readwrite(connfd, tls_cctx);
                    589:                                if (!usetls)
                    590:                                        readwrite(connfd, NULL);
                    591:                                if (tls_cctx) {
1.175     bluhm     592:                                        timeout_tls(s, tls_cctx, tls_close);
1.133     beck      593:                                        tls_free(tls_cctx);
                    594:                                        tls_cctx = NULL;
                    595:                                }
1.99      jeremy    596:                                close(connfd);
1.21      ericj     597:                        }
1.42      ericj     598:                        if (family != AF_UNIX)
                    599:                                close(s);
1.99      jeremy    600:                        else if (uflag) {
                    601:                                if (connect(s, NULL, 0) < 0)
                    602:                                        err(1, "connect");
                    603:                        }
1.27      ericj     604:
1.21      ericj     605:                        if (!kflag)
                    606:                                break;
1.11      ericj     607:                }
1.42      ericj     608:        } else if (family == AF_UNIX) {
                    609:                ret = 0;
                    610:
1.177     bluhm     611:                if ((s = unix_connect(host)) > 0) {
                    612:                        if (!zflag)
                    613:                                readwrite(s, NULL);
1.42      ericj     614:                        close(s);
                    615:                } else
                    616:                        ret = 1;
                    617:
1.99      jeremy    618:                if (uflag)
                    619:                        unlink(unix_dg_tmp_socket);
1.42      ericj     620:                exit(ret);
                    621:
1.21      ericj     622:        } else {
                    623:                int i = 0;
1.6       deraadt   624:
1.67      jmc       625:                /* Construct the portlist[] array. */
1.21      ericj     626:                build_ports(uport);
1.1       deraadt   627:
1.67      jmc       628:                /* Cycle through portlist, connecting to each port. */
1.154     deraadt   629:                for (s = -1, i = 0; portlist[i] != NULL; i++) {
                    630:                        if (s != -1)
1.21      ericj     631:                                close(s);
1.34      jakob     632:
1.133     beck      633:                        if (usetls) {
                    634:                                if ((tls_ctx = tls_client()) == NULL)
                    635:                                        errx(1, "tls client creation failed");
                    636:                                if (tls_configure(tls_ctx, tls_cfg) == -1)
                    637:                                        errx(1, "tls configuration failed (%s)",
                    638:                                            tls_error(tls_ctx));
                    639:                        }
1.34      jakob     640:                        if (xflag)
                    641:                                s = socks_connect(host, portlist[i], hints,
1.172     jca       642:                                    proxy, proxyport, proxyhints, socksv,
1.86      djm       643:                                    Pflag);
1.34      jakob     644:                        else
                    645:                                s = remote_connect(host, portlist[i], hints);
                    646:
1.154     deraadt   647:                        if (s == -1)
1.21      ericj     648:                                continue;
1.1       deraadt   649:
1.21      ericj     650:                        ret = 0;
                    651:                        if (vflag || zflag) {
1.67      jmc       652:                                /* For UDP, make sure we are connected. */
1.21      ericj     653:                                if (uflag) {
1.50      vincent   654:                                        if (udptest(s) == -1) {
1.21      ericj     655:                                                ret = 1;
                    656:                                                continue;
                    657:                                        }
                    658:                                }
1.1       deraadt   659:
1.67      jmc       660:                                /* Don't look up port if -n. */
1.21      ericj     661:                                if (nflag)
                    662:                                        sv = NULL;
                    663:                                else {
                    664:                                        sv = getservbyport(
1.37      jakob     665:                                            ntohs(atoi(portlist[i])),
                    666:                                            uflag ? "udp" : "tcp");
1.21      ericj     667:                                }
1.50      vincent   668:
1.94      mpf       669:                                fprintf(stderr,
                    670:                                    "Connection to %s %s port [%s/%s] "
                    671:                                    "succeeded!\n", host, portlist[i],
                    672:                                    uflag ? "udp" : "tcp",
1.37      jakob     673:                                    sv ? sv->s_name : "*");
1.21      ericj     674:                        }
1.113     djm       675:                        if (Fflag)
                    676:                                fdpass(s);
1.133     beck      677:                        else {
                    678:                                if (usetls)
                    679:                                        tls_setup_client(tls_ctx, s, host);
                    680:                                if (!zflag)
                    681:                                        readwrite(s, tls_ctx);
                    682:                                if (tls_ctx) {
1.175     bluhm     683:                                        timeout_tls(s, tls_ctx, tls_close);
1.133     beck      684:                                        tls_free(tls_ctx);
                    685:                                        tls_ctx = NULL;
                    686:                                }
                    687:                        }
1.7       deraadt   688:                }
1.11      ericj     689:        }
1.1       deraadt   690:
1.154     deraadt   691:        if (s != -1)
1.21      ericj     692:                close(s);
                    693:
1.133     beck      694:        tls_config_free(tls_cfg);
                    695:
1.21      ericj     696:        exit(ret);
1.7       deraadt   697: }
1.1       deraadt   698:
1.11      ericj     699: /*
1.99      jeremy    700:  * unix_bind()
                    701:  * Returns a unix socket bound to the given path
1.42      ericj     702:  */
                    703: int
1.136     deraadt   704: unix_bind(char *path, int flags)
1.42      ericj     705: {
1.144     bcook     706:        struct sockaddr_un s_un;
1.155     deraadt   707:        int s, save_errno;
1.42      ericj     708:
1.99      jeremy    709:        /* Create unix domain socket. */
1.136     deraadt   710:        if ((s = socket(AF_UNIX, flags | (uflag ? SOCK_DGRAM : SOCK_STREAM),
                    711:            0)) < 0)
1.50      vincent   712:                return (-1);
1.42      ericj     713:
1.144     bcook     714:        memset(&s_un, 0, sizeof(struct sockaddr_un));
                    715:        s_un.sun_family = AF_UNIX;
1.60      avsm      716:
1.144     bcook     717:        if (strlcpy(s_un.sun_path, path, sizeof(s_un.sun_path)) >=
                    718:            sizeof(s_un.sun_path)) {
1.60      avsm      719:                close(s);
                    720:                errno = ENAMETOOLONG;
                    721:                return (-1);
                    722:        }
1.99      jeremy    723:
1.144     bcook     724:        if (bind(s, (struct sockaddr *)&s_un, sizeof(s_un)) < 0) {
1.155     deraadt   725:                save_errno = errno;
1.50      vincent   726:                close(s);
1.155     deraadt   727:                errno = save_errno;
1.50      vincent   728:                return (-1);
1.42      ericj     729:        }
                    730:        return (s);
                    731: }
                    732:
1.173     bluhm     733: int
1.175     bluhm     734: timeout_tls(int s, struct tls *tls_ctx, int (*func)(struct tls *))
1.173     bluhm     735: {
                    736:        struct pollfd pfd;
                    737:        int ret;
                    738:
1.175     bluhm     739:        while ((ret = (*func)(tls_ctx)) != 0) {
1.173     bluhm     740:                if (ret == TLS_WANT_POLLIN)
                    741:                        pfd.events = POLLIN;
                    742:                else if (ret == TLS_WANT_POLLOUT)
                    743:                        pfd.events = POLLOUT;
                    744:                else
                    745:                        break;
                    746:                pfd.fd = s;
                    747:                if ((ret = poll(&pfd, 1, timeout)) == 1)
                    748:                        continue;
                    749:                else if (ret == 0) {
                    750:                        errno = ETIMEDOUT;
                    751:                        ret = -1;
                    752:                        break;
                    753:                } else
                    754:                        err(1, "poll failed");
                    755:        }
                    756:
                    757:        return (ret);
                    758: }
                    759:
1.133     beck      760: void
                    761: tls_setup_client(struct tls *tls_ctx, int s, char *host)
                    762: {
1.173     bluhm     763:        const char *errstr;
1.136     deraadt   764:
1.133     beck      765:        if (tls_connect_socket(tls_ctx, s,
                    766:                tls_expectname ? tls_expectname : host) == -1) {
                    767:                errx(1, "tls connection failed (%s)",
                    768:                    tls_error(tls_ctx));
                    769:        }
1.175     bluhm     770:        if (timeout_tls(s, tls_ctx, tls_handshake) == -1) {
1.173     bluhm     771:                if ((errstr = tls_error(tls_ctx)) == NULL)
                    772:                        errstr = strerror(errno);
                    773:                errx(1, "tls handshake failed (%s)", errstr);
                    774:        }
1.133     beck      775:        if (vflag)
                    776:                report_tls(tls_ctx, host, tls_expectname);
1.137     beck      777:        if (tls_expecthash && tls_peer_cert_hash(tls_ctx) &&
                    778:            strcmp(tls_expecthash, tls_peer_cert_hash(tls_ctx)) != 0)
1.133     beck      779:                errx(1, "peer certificate is not %s", tls_expecthash);
1.179     beck      780:        if (Zflag) {
                    781:                save_peer_cert(tls_ctx, Zflag);
                    782:                if (Zflag != stderr && (fclose(Zflag) != 0))
                    783:                        err(1, "fclose failed saving peer cert");
                    784:        }
1.133     beck      785: }
1.141     deraadt   786:
1.133     beck      787: struct tls *
                    788: tls_setup_server(struct tls *tls_ctx, int connfd, char *host)
                    789: {
                    790:        struct tls *tls_cctx;
1.173     bluhm     791:        const char *errstr;
1.136     deraadt   792:
1.173     bluhm     793:        if (tls_accept_socket(tls_ctx, &tls_cctx, connfd) == -1) {
                    794:                warnx("tls accept failed (%s)", tls_error(tls_ctx));
1.175     bluhm     795:        } else if (timeout_tls(connfd, tls_cctx, tls_handshake) == -1) {
1.178     bluhm     796:                if ((errstr = tls_error(tls_cctx)) == NULL)
1.173     bluhm     797:                        errstr = strerror(errno);
                    798:                warnx("tls handshake failed (%s)", errstr);
1.133     beck      799:        } else {
                    800:                int gotcert = tls_peer_cert_provided(tls_cctx);
1.136     deraadt   801:
1.133     beck      802:                if (vflag && gotcert)
                    803:                        report_tls(tls_cctx, host, tls_expectname);
                    804:                if ((TLSopt & TLS_CCERT) && !gotcert)
                    805:                        warnx("No client certificate provided");
1.137     beck      806:                else if (gotcert && tls_peer_cert_hash(tls_ctx) && tls_expecthash &&
                    807:                    strcmp(tls_expecthash, tls_peer_cert_hash(tls_ctx)) != 0)
1.133     beck      808:                        warnx("peer certificate is not %s", tls_expecthash);
                    809:                else if (gotcert && tls_expectname &&
1.134     deraadt   810:                    (!tls_peer_cert_contains_name(tls_cctx, tls_expectname)))
1.133     beck      811:                        warnx("name (%s) not found in client cert",
                    812:                            tls_expectname);
                    813:                else {
                    814:                        return tls_cctx;
                    815:                }
                    816:        }
                    817:        return NULL;
                    818: }
1.141     deraadt   819:
1.42      ericj     820: /*
1.99      jeremy    821:  * unix_connect()
                    822:  * Returns a socket connected to a local unix socket. Returns -1 on failure.
1.42      ericj     823:  */
                    824: int
1.99      jeremy    825: unix_connect(char *path)
1.42      ericj     826: {
1.144     bcook     827:        struct sockaddr_un s_un;
1.155     deraadt   828:        int s, save_errno;
1.42      ericj     829:
1.99      jeremy    830:        if (uflag) {
1.136     deraadt   831:                if ((s = unix_bind(unix_dg_tmp_socket, SOCK_CLOEXEC)) < 0)
1.99      jeremy    832:                        return (-1);
                    833:        } else {
1.136     deraadt   834:                if ((s = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0)) < 0)
1.99      jeremy    835:                        return (-1);
                    836:        }
1.42      ericj     837:
1.144     bcook     838:        memset(&s_un, 0, sizeof(struct sockaddr_un));
                    839:        s_un.sun_family = AF_UNIX;
1.60      avsm      840:
1.144     bcook     841:        if (strlcpy(s_un.sun_path, path, sizeof(s_un.sun_path)) >=
                    842:            sizeof(s_un.sun_path)) {
1.60      avsm      843:                close(s);
                    844:                errno = ENAMETOOLONG;
                    845:                return (-1);
                    846:        }
1.144     bcook     847:        if (connect(s, (struct sockaddr *)&s_un, sizeof(s_un)) < 0) {
1.155     deraadt   848:                save_errno = errno;
1.42      ericj     849:                close(s);
1.155     deraadt   850:                errno = save_errno;
1.42      ericj     851:                return (-1);
                    852:        }
1.99      jeremy    853:        return (s);
                    854:
                    855: }
                    856:
                    857: /*
                    858:  * unix_listen()
                    859:  * Create a unix domain socket, and listen on it.
                    860:  */
                    861: int
                    862: unix_listen(char *path)
                    863: {
                    864:        int s;
1.136     deraadt   865:        if ((s = unix_bind(path, 0)) < 0)
1.99      jeremy    866:                return (-1);
1.42      ericj     867:
                    868:        if (listen(s, 5) < 0) {
                    869:                close(s);
                    870:                return (-1);
                    871:        }
                    872:        return (s);
                    873: }
                    874:
                    875: /*
1.21      ericj     876:  * remote_connect()
1.67      jmc       877:  * Returns a socket connected to a remote host. Properly binds to a local
                    878:  * port or source address if needed. Returns -1 on failure.
1.11      ericj     879:  */
1.21      ericj     880: int
1.77      otto      881: remote_connect(const char *host, const char *port, struct addrinfo hints)
1.21      ericj     882: {
                    883:        struct addrinfo *res, *res0;
1.163     bcook     884:        int s = -1, error, on = 1, save_errno;
1.21      ericj     885:
1.161     halex     886:        if ((error = getaddrinfo(host, port, &hints, &res0)))
1.176     jca       887:                errx(1, "getaddrinfo for host \"%s\" port %s: %s", host,
                    888:                    port, gai_strerror(error));
1.21      ericj     889:
1.161     halex     890:        for (res = res0; res; res = res->ai_next) {
                    891:                if ((s = socket(res->ai_family, res->ai_socktype |
                    892:                    SOCK_NONBLOCK, res->ai_protocol)) < 0)
1.21      ericj     893:                        continue;
                    894:
1.67      jmc       895:                /* Bind to a local port or source address if specified. */
1.21      ericj     896:                if (sflag || pflag) {
                    897:                        struct addrinfo ahints, *ares;
1.6       deraadt   898:
1.91      markus    899:                        /* try SO_BINDANY, but don't insist */
                    900:                        setsockopt(s, SOL_SOCKET, SO_BINDANY, &on, sizeof(on));
1.21      ericj     901:                        memset(&ahints, 0, sizeof(struct addrinfo));
1.161     halex     902:                        ahints.ai_family = res->ai_family;
1.21      ericj     903:                        ahints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM;
                    904:                        ahints.ai_protocol = uflag ? IPPROTO_UDP : IPPROTO_TCP;
1.25      ericj     905:                        ahints.ai_flags = AI_PASSIVE;
1.38      jakob     906:                        if ((error = getaddrinfo(sflag, pflag, &ahints, &ares)))
1.56      stevesk   907:                                errx(1, "getaddrinfo: %s", gai_strerror(error));
1.21      ericj     908:
                    909:                        if (bind(s, (struct sockaddr *)ares->ai_addr,
1.62      millert   910:                            ares->ai_addrlen) < 0)
1.119     guenther  911:                                err(1, "bind failed");
1.21      ericj     912:                        freeaddrinfo(ares);
1.6       deraadt   913:                }
1.81      marius    914:
1.161     halex     915:                set_common_sockopts(s, res->ai_family);
1.6       deraadt   916:
1.161     halex     917:                if (timeout_connect(s, res->ai_addr, res->ai_addrlen) == 0)
1.6       deraadt   918:                        break;
1.143     deraadt   919:                if (vflag)
1.71      mcbride   920:                        warn("connect to %s port %s (%s) failed", host, port,
                    921:                            uflag ? "udp" : "tcp");
1.34      jakob     922:
1.155     deraadt   923:                save_errno = errno;
1.21      ericj     924:                close(s);
1.155     deraadt   925:                errno = save_errno;
1.21      ericj     926:                s = -1;
1.161     halex     927:        }
1.21      ericj     928:
1.161     halex     929:        freeaddrinfo(res0);
1.1       deraadt   930:
1.21      ericj     931:        return (s);
1.103     fgsch     932: }
                    933:
                    934: int
                    935: timeout_connect(int s, const struct sockaddr *name, socklen_t namelen)
                    936: {
                    937:        struct pollfd pfd;
                    938:        socklen_t optlen;
1.132     bluhm     939:        int optval;
1.103     fgsch     940:        int ret;
                    941:
                    942:        if ((ret = connect(s, name, namelen)) != 0 && errno == EINPROGRESS) {
                    943:                pfd.fd = s;
                    944:                pfd.events = POLLOUT;
                    945:                if ((ret = poll(&pfd, 1, timeout)) == 1) {
                    946:                        optlen = sizeof(optval);
                    947:                        if ((ret = getsockopt(s, SOL_SOCKET, SO_ERROR,
                    948:                            &optval, &optlen)) == 0) {
                    949:                                errno = optval;
                    950:                                ret = optval == 0 ? 0 : -1;
                    951:                        }
                    952:                } else if (ret == 0) {
                    953:                        errno = ETIMEDOUT;
                    954:                        ret = -1;
                    955:                } else
                    956:                        err(1, "poll failed");
                    957:        }
                    958:
                    959:        return (ret);
1.7       deraadt   960: }
1.1       deraadt   961:
1.11      ericj     962: /*
1.21      ericj     963:  * local_listen()
1.67      jmc       964:  * Returns a socket listening on a local port, binds to specified source
                    965:  * address. Returns -1 on failure.
1.11      ericj     966:  */
1.21      ericj     967: int
1.37      jakob     968: local_listen(char *host, char *port, struct addrinfo hints)
1.21      ericj     969: {
                    970:        struct addrinfo *res, *res0;
1.163     bcook     971:        int s = -1, ret, x = 1, save_errno;
1.21      ericj     972:        int error;
1.6       deraadt   973:
1.67      jmc       974:        /* Allow nodename to be null. */
1.21      ericj     975:        hints.ai_flags |= AI_PASSIVE;
1.7       deraadt   976:
1.21      ericj     977:        /*
                    978:         * In the case of binding to a wildcard address
                    979:         * default to binding to an ipv4 address.
                    980:         */
                    981:        if (host == NULL && hints.ai_family == AF_UNSPEC)
                    982:                hints.ai_family = AF_INET;
1.1       deraadt   983:
1.161     halex     984:        if ((error = getaddrinfo(host, port, &hints, &res0)))
1.70      deraadt   985:                errx(1, "getaddrinfo: %s", gai_strerror(error));
1.14      ericj     986:
1.161     halex     987:        for (res = res0; res; res = res->ai_next) {
                    988:                if ((s = socket(res->ai_family, res->ai_socktype,
                    989:                    res->ai_protocol)) < 0)
1.21      ericj     990:                        continue;
1.93      claudio   991:
1.21      ericj     992:                ret = setsockopt(s, SOL_SOCKET, SO_REUSEPORT, &x, sizeof(x));
                    993:                if (ret == -1)
1.30      smart     994:                        err(1, NULL);
1.81      marius    995:
1.161     halex     996:                set_common_sockopts(s, res->ai_family);
1.1       deraadt   997:
1.161     halex     998:                if (bind(s, (struct sockaddr *)res->ai_addr,
                    999:                    res->ai_addrlen) == 0)
1.21      ericj    1000:                        break;
1.1       deraadt  1001:
1.155     deraadt  1002:                save_errno = errno;
1.21      ericj    1003:                close(s);
1.155     deraadt  1004:                errno = save_errno;
1.21      ericj    1005:                s = -1;
1.161     halex    1006:        }
1.1       deraadt  1007:
1.47      ericj    1008:        if (!uflag && s != -1) {
1.21      ericj    1009:                if (listen(s, 1) < 0)
1.57      stevesk  1010:                        err(1, "listen");
1.12      ericj    1011:        }
1.1       deraadt  1012:
1.161     halex    1013:        freeaddrinfo(res0);
1.1       deraadt  1014:
1.21      ericj    1015:        return (s);
1.7       deraadt  1016: }
                   1017:
1.11      ericj    1018: /*
1.21      ericj    1019:  * readwrite()
                   1020:  * Loop that polls on the network file descriptor and stdin.
1.11      ericj    1021:  */
1.21      ericj    1022: void
1.133     beck     1023: readwrite(int net_fd, struct tls *tls_ctx)
1.6       deraadt  1024: {
1.125     tedu     1025:        struct pollfd pfd[4];
                   1026:        int stdin_fd = STDIN_FILENO;
                   1027:        int stdout_fd = STDOUT_FILENO;
                   1028:        unsigned char netinbuf[BUFSIZE];
                   1029:        size_t netinbufpos = 0;
                   1030:        unsigned char stdinbuf[BUFSIZE];
                   1031:        size_t stdinbufpos = 0;
1.130     chl      1032:        int n, num_fds;
1.125     tedu     1033:        ssize_t ret;
                   1034:
                   1035:        /* don't read from stdin if requested */
                   1036:        if (dflag)
                   1037:                stdin_fd = -1;
                   1038:
                   1039:        /* stdin */
                   1040:        pfd[POLL_STDIN].fd = stdin_fd;
                   1041:        pfd[POLL_STDIN].events = POLLIN;
                   1042:
                   1043:        /* network out */
                   1044:        pfd[POLL_NETOUT].fd = net_fd;
                   1045:        pfd[POLL_NETOUT].events = 0;
                   1046:
                   1047:        /* network in */
                   1048:        pfd[POLL_NETIN].fd = net_fd;
                   1049:        pfd[POLL_NETIN].events = POLLIN;
                   1050:
                   1051:        /* stdout */
                   1052:        pfd[POLL_STDOUT].fd = stdout_fd;
                   1053:        pfd[POLL_STDOUT].events = 0;
                   1054:
                   1055:        while (1) {
                   1056:                /* both inputs are gone, buffers are empty, we are done */
1.134     deraadt  1057:                if (pfd[POLL_STDIN].fd == -1 && pfd[POLL_NETIN].fd == -1 &&
1.174     bluhm    1058:                    stdinbufpos == 0 && netinbufpos == 0)
1.125     tedu     1059:                        return;
                   1060:                /* both outputs are gone, we can't continue */
1.174     bluhm    1061:                if (pfd[POLL_NETOUT].fd == -1 && pfd[POLL_STDOUT].fd == -1)
1.125     tedu     1062:                        return;
                   1063:                /* listen and net in gone, queues empty, done */
1.134     deraadt  1064:                if (lflag && pfd[POLL_NETIN].fd == -1 &&
1.174     bluhm    1065:                    stdinbufpos == 0 && netinbufpos == 0)
1.125     tedu     1066:                        return;
1.21      ericj    1067:
1.125     tedu     1068:                /* help says -i is for "wait between lines sent". We read and
                   1069:                 * write arbitrary amounts of data, and we don't want to start
                   1070:                 * scanning for newlines, so this is as good as it gets */
1.21      ericj    1071:                if (iflag)
                   1072:                        sleep(iflag);
                   1073:
1.125     tedu     1074:                /* poll */
                   1075:                num_fds = poll(pfd, 4, timeout);
                   1076:
                   1077:                /* treat poll errors */
1.174     bluhm    1078:                if (num_fds == -1)
1.125     tedu     1079:                        err(1, "polling error");
1.49      hugh     1080:
1.125     tedu     1081:                /* timeout happened */
                   1082:                if (num_fds == 0)
1.49      hugh     1083:                        return;
1.21      ericj    1084:
1.125     tedu     1085:                /* treat socket error conditions */
                   1086:                for (n = 0; n < 4; n++) {
                   1087:                        if (pfd[n].revents & (POLLERR|POLLNVAL)) {
                   1088:                                pfd[n].fd = -1;
1.6       deraadt  1089:                        }
1.21      ericj    1090:                }
1.125     tedu     1091:                /* reading is possible after HUP */
                   1092:                if (pfd[POLL_STDIN].events & POLLIN &&
                   1093:                    pfd[POLL_STDIN].revents & POLLHUP &&
1.134     deraadt  1094:                    !(pfd[POLL_STDIN].revents & POLLIN))
                   1095:                        pfd[POLL_STDIN].fd = -1;
1.125     tedu     1096:
                   1097:                if (pfd[POLL_NETIN].events & POLLIN &&
                   1098:                    pfd[POLL_NETIN].revents & POLLHUP &&
1.134     deraadt  1099:                    !(pfd[POLL_NETIN].revents & POLLIN))
                   1100:                        pfd[POLL_NETIN].fd = -1;
1.125     tedu     1101:
                   1102:                if (pfd[POLL_NETOUT].revents & POLLHUP) {
                   1103:                        if (Nflag)
                   1104:                                shutdown(pfd[POLL_NETOUT].fd, SHUT_WR);
                   1105:                        pfd[POLL_NETOUT].fd = -1;
                   1106:                }
                   1107:                /* if HUP, stop watching stdout */
                   1108:                if (pfd[POLL_STDOUT].revents & POLLHUP)
                   1109:                        pfd[POLL_STDOUT].fd = -1;
                   1110:                /* if no net out, stop watching stdin */
                   1111:                if (pfd[POLL_NETOUT].fd == -1)
                   1112:                        pfd[POLL_STDIN].fd = -1;
                   1113:                /* if no stdout, stop watching net in */
                   1114:                if (pfd[POLL_STDOUT].fd == -1) {
                   1115:                        if (pfd[POLL_NETIN].fd != -1)
                   1116:                                shutdown(pfd[POLL_NETIN].fd, SHUT_RD);
                   1117:                        pfd[POLL_NETIN].fd = -1;
                   1118:                }
1.21      ericj    1119:
1.125     tedu     1120:                /* try to read from stdin */
                   1121:                if (pfd[POLL_STDIN].revents & POLLIN && stdinbufpos < BUFSIZE) {
                   1122:                        ret = fillbuf(pfd[POLL_STDIN].fd, stdinbuf,
1.133     beck     1123:                            &stdinbufpos, NULL);
                   1124:                        if (ret == TLS_WANT_POLLIN)
                   1125:                                pfd[POLL_STDIN].events = POLLIN;
                   1126:                        else if (ret == TLS_WANT_POLLOUT)
                   1127:                                pfd[POLL_STDIN].events = POLLOUT;
                   1128:                        else if (ret == 0 || ret == -1)
1.125     tedu     1129:                                pfd[POLL_STDIN].fd = -1;
                   1130:                        /* read something - poll net out */
                   1131:                        if (stdinbufpos > 0)
                   1132:                                pfd[POLL_NETOUT].events = POLLOUT;
                   1133:                        /* filled buffer - remove self from polling */
                   1134:                        if (stdinbufpos == BUFSIZE)
                   1135:                                pfd[POLL_STDIN].events = 0;
                   1136:                }
                   1137:                /* try to write to network */
                   1138:                if (pfd[POLL_NETOUT].revents & POLLOUT && stdinbufpos > 0) {
                   1139:                        ret = drainbuf(pfd[POLL_NETOUT].fd, stdinbuf,
1.133     beck     1140:                            &stdinbufpos, tls_ctx);
                   1141:                        if (ret == TLS_WANT_POLLIN)
                   1142:                                pfd[POLL_NETOUT].events = POLLIN;
                   1143:                        else if (ret == TLS_WANT_POLLOUT)
                   1144:                                pfd[POLL_NETOUT].events = POLLOUT;
                   1145:                        else if (ret == -1)
1.125     tedu     1146:                                pfd[POLL_NETOUT].fd = -1;
                   1147:                        /* buffer empty - remove self from polling */
                   1148:                        if (stdinbufpos == 0)
                   1149:                                pfd[POLL_NETOUT].events = 0;
                   1150:                        /* buffer no longer full - poll stdin again */
                   1151:                        if (stdinbufpos < BUFSIZE)
                   1152:                                pfd[POLL_STDIN].events = POLLIN;
                   1153:                }
                   1154:                /* try to read from network */
                   1155:                if (pfd[POLL_NETIN].revents & POLLIN && netinbufpos < BUFSIZE) {
                   1156:                        ret = fillbuf(pfd[POLL_NETIN].fd, netinbuf,
1.133     beck     1157:                            &netinbufpos, tls_ctx);
                   1158:                        if (ret == TLS_WANT_POLLIN)
                   1159:                                pfd[POLL_NETIN].events = POLLIN;
                   1160:                        else if (ret == TLS_WANT_POLLOUT)
                   1161:                                pfd[POLL_NETIN].events = POLLOUT;
                   1162:                        else if (ret == -1)
1.125     tedu     1163:                                pfd[POLL_NETIN].fd = -1;
                   1164:                        /* eof on net in - remove from pfd */
                   1165:                        if (ret == 0) {
                   1166:                                shutdown(pfd[POLL_NETIN].fd, SHUT_RD);
                   1167:                                pfd[POLL_NETIN].fd = -1;
1.50      vincent  1168:                        }
1.125     tedu     1169:                        /* read something - poll stdout */
                   1170:                        if (netinbufpos > 0)
                   1171:                                pfd[POLL_STDOUT].events = POLLOUT;
                   1172:                        /* filled buffer - remove self from polling */
                   1173:                        if (netinbufpos == BUFSIZE)
                   1174:                                pfd[POLL_NETIN].events = 0;
                   1175:                        /* handle telnet */
                   1176:                        if (tflag)
                   1177:                                atelnet(pfd[POLL_NETIN].fd, netinbuf,
                   1178:                                    netinbufpos);
                   1179:                }
                   1180:                /* try to write to stdout */
                   1181:                if (pfd[POLL_STDOUT].revents & POLLOUT && netinbufpos > 0) {
                   1182:                        ret = drainbuf(pfd[POLL_STDOUT].fd, netinbuf,
1.133     beck     1183:                            &netinbufpos, NULL);
                   1184:                        if (ret == TLS_WANT_POLLIN)
                   1185:                                pfd[POLL_STDOUT].events = POLLIN;
                   1186:                        else if (ret == TLS_WANT_POLLOUT)
                   1187:                                pfd[POLL_STDOUT].events = POLLOUT;
                   1188:                        else if (ret == -1)
1.125     tedu     1189:                                pfd[POLL_STDOUT].fd = -1;
                   1190:                        /* buffer empty - remove self from polling */
                   1191:                        if (netinbufpos == 0)
                   1192:                                pfd[POLL_STDOUT].events = 0;
                   1193:                        /* buffer no longer full - poll net in again */
                   1194:                        if (netinbufpos < BUFSIZE)
                   1195:                                pfd[POLL_NETIN].events = POLLIN;
                   1196:                }
                   1197:
                   1198:                /* stdin gone and queue empty? */
                   1199:                if (pfd[POLL_STDIN].fd == -1 && stdinbufpos == 0) {
                   1200:                        if (pfd[POLL_NETOUT].fd != -1 && Nflag)
                   1201:                                shutdown(pfd[POLL_NETOUT].fd, SHUT_WR);
                   1202:                        pfd[POLL_NETOUT].fd = -1;
                   1203:                }
                   1204:                /* net in gone and queue empty? */
                   1205:                if (pfd[POLL_NETIN].fd == -1 && netinbufpos == 0) {
                   1206:                        pfd[POLL_STDOUT].fd = -1;
1.21      ericj    1207:                }
1.11      ericj    1208:        }
1.125     tedu     1209: }
                   1210:
                   1211: ssize_t
1.133     beck     1212: drainbuf(int fd, unsigned char *buf, size_t *bufpos, struct tls *tls)
1.125     tedu     1213: {
                   1214:        ssize_t n;
                   1215:        ssize_t adjust;
                   1216:
1.133     beck     1217:        if (tls)
                   1218:                n = tls_write(tls, buf, *bufpos);
                   1219:        else {
                   1220:                n = write(fd, buf, *bufpos);
                   1221:                /* don't treat EAGAIN, EINTR as error */
                   1222:                if (n == -1 && (errno == EAGAIN || errno == EINTR))
                   1223:                        n = TLS_WANT_POLLOUT;
                   1224:        }
1.125     tedu     1225:        if (n <= 0)
                   1226:                return n;
                   1227:        /* adjust buffer */
                   1228:        adjust = *bufpos - n;
                   1229:        if (adjust > 0)
                   1230:                memmove(buf, buf + n, adjust);
                   1231:        *bufpos -= n;
                   1232:        return n;
                   1233: }
                   1234:
                   1235: ssize_t
1.133     beck     1236: fillbuf(int fd, unsigned char *buf, size_t *bufpos, struct tls *tls)
1.125     tedu     1237: {
                   1238:        size_t num = BUFSIZE - *bufpos;
                   1239:        ssize_t n;
                   1240:
1.133     beck     1241:        if (tls)
                   1242:                n = tls_read(tls, buf + *bufpos, num);
                   1243:        else {
                   1244:                n = read(fd, buf + *bufpos, num);
                   1245:                /* don't treat EAGAIN, EINTR as error */
                   1246:                if (n == -1 && (errno == EAGAIN || errno == EINTR))
                   1247:                        n = TLS_WANT_POLLIN;
                   1248:        }
1.125     tedu     1249:        if (n <= 0)
                   1250:                return n;
                   1251:        *bufpos += n;
                   1252:        return n;
1.113     djm      1253: }
                   1254:
                   1255: /*
                   1256:  * fdpass()
                   1257:  * Pass the connected file descriptor to stdout and exit.
                   1258:  */
                   1259: void
                   1260: fdpass(int nfd)
                   1261: {
                   1262:        struct msghdr mh;
                   1263:        union {
                   1264:                struct cmsghdr hdr;
                   1265:                char buf[CMSG_SPACE(sizeof(int))];
                   1266:        } cmsgbuf;
                   1267:        struct cmsghdr *cmsg;
                   1268:        struct iovec iov;
                   1269:        char c = '\0';
                   1270:        ssize_t r;
                   1271:        struct pollfd pfd;
                   1272:
                   1273:        /* Avoid obvious stupidity */
                   1274:        if (isatty(STDOUT_FILENO))
                   1275:                errx(1, "Cannot pass file descriptor to tty");
                   1276:
                   1277:        bzero(&mh, sizeof(mh));
                   1278:        bzero(&cmsgbuf, sizeof(cmsgbuf));
                   1279:        bzero(&iov, sizeof(iov));
                   1280:
                   1281:        mh.msg_control = (caddr_t)&cmsgbuf.buf;
                   1282:        mh.msg_controllen = sizeof(cmsgbuf.buf);
                   1283:        cmsg = CMSG_FIRSTHDR(&mh);
                   1284:        cmsg->cmsg_len = CMSG_LEN(sizeof(int));
                   1285:        cmsg->cmsg_level = SOL_SOCKET;
                   1286:        cmsg->cmsg_type = SCM_RIGHTS;
                   1287:        *(int *)CMSG_DATA(cmsg) = nfd;
                   1288:
                   1289:        iov.iov_base = &c;
                   1290:        iov.iov_len = 1;
                   1291:        mh.msg_iov = &iov;
                   1292:        mh.msg_iovlen = 1;
                   1293:
                   1294:        bzero(&pfd, sizeof(pfd));
                   1295:        pfd.fd = STDOUT_FILENO;
1.128     tobias   1296:        pfd.events = POLLOUT;
1.113     djm      1297:        for (;;) {
                   1298:                r = sendmsg(STDOUT_FILENO, &mh, 0);
                   1299:                if (r == -1) {
                   1300:                        if (errno == EAGAIN || errno == EINTR) {
                   1301:                                if (poll(&pfd, 1, -1) == -1)
                   1302:                                        err(1, "poll");
                   1303:                                continue;
                   1304:                        }
                   1305:                        err(1, "sendmsg");
1.128     tobias   1306:                } else if (r != 1)
1.113     djm      1307:                        errx(1, "sendmsg: unexpected return value %zd", r);
                   1308:                else
                   1309:                        break;
                   1310:        }
                   1311:        exit(0);
1.7       deraadt  1312: }
1.50      vincent  1313:
1.67      jmc      1314: /* Deal with RFC 854 WILL/WONT DO/DONT negotiation. */
1.21      ericj    1315: void
1.37      jakob    1316: atelnet(int nfd, unsigned char *buf, unsigned int size)
1.6       deraadt  1317: {
1.24      ericj    1318:        unsigned char *p, *end;
                   1319:        unsigned char obuf[4];
                   1320:
1.95      nicm     1321:        if (size < 3)
                   1322:                return;
                   1323:        end = buf + size - 2;
1.24      ericj    1324:
                   1325:        for (p = buf; p < end; p++) {
1.21      ericj    1326:                if (*p != IAC)
1.95      nicm     1327:                        continue;
1.24      ericj    1328:
1.25      ericj    1329:                obuf[0] = IAC;
1.24      ericj    1330:                p++;
1.50      vincent  1331:                if ((*p == WILL) || (*p == WONT))
1.24      ericj    1332:                        obuf[1] = DONT;
1.95      nicm     1333:                else if ((*p == DO) || (*p == DONT))
1.24      ericj    1334:                        obuf[1] = WONT;
1.95      nicm     1335:                else
                   1336:                        continue;
                   1337:
                   1338:                p++;
                   1339:                obuf[2] = *p;
                   1340:                if (atomicio(vwrite, nfd, obuf, 3) != 3)
                   1341:                        warn("Write Error!");
1.11      ericj    1342:        }
1.7       deraadt  1343: }
                   1344:
1.153     beck     1345:
                   1346: int
                   1347: strtoport(char *portstr, int udp)
                   1348: {
                   1349:        struct servent *entry;
                   1350:        const char *errstr;
                   1351:        char *proto;
                   1352:        int port = -1;
                   1353:
                   1354:        proto = udp ? "udp" : "tcp";
                   1355:
                   1356:        port = strtonum(portstr, 1, PORT_MAX, &errstr);
                   1357:        if (errstr == NULL)
                   1358:                return port;
                   1359:        if (errno != EINVAL)
                   1360:                errx(1, "port number %s: %s", errstr, portstr);
                   1361:        if ((entry = getservbyname(portstr, proto)) == NULL)
                   1362:                errx(1, "service \"%s\" unknown", portstr);
                   1363:        return ntohs(entry->s_port);
                   1364: }
                   1365:
1.11      ericj    1366: /*
1.21      ericj    1367:  * build_ports()
1.105     lum      1368:  * Build an array of ports in portlist[], listing each port
1.67      jmc      1369:  * that we should try to connect to.
1.11      ericj    1370:  */
1.21      ericj    1371: void
1.37      jakob    1372: build_ports(char *p)
1.6       deraadt  1373: {
1.88      ray      1374:        char *n;
1.21      ericj    1375:        int hi, lo, cp;
                   1376:        int x = 0;
                   1377:
                   1378:        if ((n = strchr(p, '-')) != NULL) {
                   1379:                *n = '\0';
                   1380:                n++;
                   1381:
1.67      jmc      1382:                /* Make sure the ports are in order: lowest->highest. */
1.153     beck     1383:                hi = strtoport(n, uflag);
                   1384:                lo = strtoport(p, uflag);
1.21      ericj    1385:                if (lo > hi) {
                   1386:                        cp = hi;
                   1387:                        hi = lo;
                   1388:                        lo = cp;
                   1389:                }
                   1390:
1.145     tb       1391:                /*
                   1392:                 * Initialize portlist with a random permutation.  Based on
                   1393:                 * Knuth, as in ip_randomid() in sys/netinet/ip_id.c.
                   1394:                 */
1.21      ericj    1395:                if (rflag) {
1.145     tb       1396:                        for (x = 0; x <= hi - lo; x++) {
                   1397:                                cp = arc4random_uniform(x + 1);
                   1398:                                portlist[x] = portlist[cp];
                   1399:                                if (asprintf(&portlist[cp], "%d", x + lo) < 0)
                   1400:                                        err(1, "asprintf");
                   1401:                        }
                   1402:                } else { /* Load ports sequentially. */
                   1403:                        for (cp = lo; cp <= hi; cp++) {
                   1404:                                if (asprintf(&portlist[x], "%d", cp) < 0)
                   1405:                                        err(1, "asprintf");
                   1406:                                x++;
1.6       deraadt  1407:                        }
1.11      ericj    1408:                }
1.21      ericj    1409:        } else {
1.153     beck     1410:                char *tmp;
                   1411:
                   1412:                hi = strtoport(p, uflag);
                   1413:                if (asprintf(&tmp, "%d", hi) != -1)
                   1414:                        portlist[0] = tmp;
                   1415:                else
1.55      fgsch    1416:                        err(1, NULL);
1.11      ericj    1417:        }
1.13      ericj    1418: }
                   1419:
                   1420: /*
1.21      ericj    1421:  * udptest()
                   1422:  * Do a few writes to see if the UDP port is there.
1.105     lum      1423:  * Fails once PF state table is full.
1.13      ericj    1424:  */
1.21      ericj    1425: int
1.37      jakob    1426: udptest(int s)
1.13      ericj    1427: {
1.74      deraadt  1428:        int i, ret;
1.13      ericj    1429:
1.52      vincent  1430:        for (i = 0; i <= 3; i++) {
1.74      deraadt  1431:                if (write(s, "X", 1) == 1)
1.21      ericj    1432:                        ret = 1;
1.14      ericj    1433:                else
1.21      ericj    1434:                        ret = -1;
1.14      ericj    1435:        }
1.21      ericj    1436:        return (ret);
1.81      marius   1437: }
                   1438:
1.84      dtucker  1439: void
1.127     jca      1440: set_common_sockopts(int s, int af)
1.81      marius   1441: {
                   1442:        int x = 1;
                   1443:
                   1444:        if (Sflag) {
                   1445:                if (setsockopt(s, IPPROTO_TCP, TCP_MD5SIG,
                   1446:                        &x, sizeof(x)) == -1)
                   1447:                        err(1, NULL);
                   1448:        }
                   1449:        if (Dflag) {
                   1450:                if (setsockopt(s, SOL_SOCKET, SO_DEBUG,
                   1451:                        &x, sizeof(x)) == -1)
                   1452:                        err(1, NULL);
                   1453:        }
1.83      dtucker  1454:        if (Tflag != -1) {
1.157     bcook    1455:                if (af == AF_INET && setsockopt(s, IPPROTO_IP,
                   1456:                    IP_TOS, &Tflag, sizeof(Tflag)) == -1)
                   1457:                        err(1, "set IP ToS");
1.127     jca      1458:
1.157     bcook    1459:                else if (af == AF_INET6 && setsockopt(s, IPPROTO_IPV6,
                   1460:                    IPV6_TCLASS, &Tflag, sizeof(Tflag)) == -1)
                   1461:                        err(1, "set IPv6 traffic class");
1.83      dtucker  1462:        }
1.90      djm      1463:        if (Iflag) {
                   1464:                if (setsockopt(s, SOL_SOCKET, SO_RCVBUF,
                   1465:                    &Iflag, sizeof(Iflag)) == -1)
                   1466:                        err(1, "set TCP receive buffer size");
                   1467:        }
                   1468:        if (Oflag) {
                   1469:                if (setsockopt(s, SOL_SOCKET, SO_SNDBUF,
                   1470:                    &Oflag, sizeof(Oflag)) == -1)
                   1471:                        err(1, "set TCP send buffer size");
                   1472:        }
1.157     bcook    1473:
                   1474:        if (ttl != -1) {
                   1475:                if (af == AF_INET && setsockopt(s, IPPROTO_IP,
                   1476:                    IP_TTL, &ttl, sizeof(ttl)))
                   1477:                        err(1, "set IP TTL");
                   1478:
                   1479:                else if (af == AF_INET6 && setsockopt(s, IPPROTO_IPV6,
                   1480:                    IPV6_UNICAST_HOPS, &ttl, sizeof(ttl)))
                   1481:                        err(1, "set IPv6 unicast hops");
                   1482:        }
                   1483:
                   1484:        if (minttl != -1) {
                   1485:                if (af == AF_INET && setsockopt(s, IPPROTO_IP,
                   1486:                    IP_MINTTL, &minttl, sizeof(minttl)))
                   1487:                        err(1, "set IP min TTL");
                   1488:
                   1489:                else if (af == AF_INET6 && setsockopt(s, IPPROTO_IPV6,
                   1490:                    IPV6_MINHOPCOUNT, &minttl, sizeof(minttl)))
                   1491:                        err(1, "set IPv6 min hop count");
1.156     jca      1492:        }
1.83      dtucker  1493: }
                   1494:
                   1495: int
1.102     haesbaer 1496: map_tos(char *s, int *val)
1.83      dtucker  1497: {
1.102     haesbaer 1498:        /* DiffServ Codepoints and other TOS mappings */
                   1499:        const struct toskeywords {
                   1500:                const char      *keyword;
                   1501:                int              val;
                   1502:        } *t, toskeywords[] = {
                   1503:                { "af11",               IPTOS_DSCP_AF11 },
                   1504:                { "af12",               IPTOS_DSCP_AF12 },
                   1505:                { "af13",               IPTOS_DSCP_AF13 },
                   1506:                { "af21",               IPTOS_DSCP_AF21 },
                   1507:                { "af22",               IPTOS_DSCP_AF22 },
                   1508:                { "af23",               IPTOS_DSCP_AF23 },
                   1509:                { "af31",               IPTOS_DSCP_AF31 },
                   1510:                { "af32",               IPTOS_DSCP_AF32 },
                   1511:                { "af33",               IPTOS_DSCP_AF33 },
                   1512:                { "af41",               IPTOS_DSCP_AF41 },
                   1513:                { "af42",               IPTOS_DSCP_AF42 },
                   1514:                { "af43",               IPTOS_DSCP_AF43 },
                   1515:                { "critical",           IPTOS_PREC_CRITIC_ECP },
                   1516:                { "cs0",                IPTOS_DSCP_CS0 },
                   1517:                { "cs1",                IPTOS_DSCP_CS1 },
                   1518:                { "cs2",                IPTOS_DSCP_CS2 },
                   1519:                { "cs3",                IPTOS_DSCP_CS3 },
                   1520:                { "cs4",                IPTOS_DSCP_CS4 },
                   1521:                { "cs5",                IPTOS_DSCP_CS5 },
                   1522:                { "cs6",                IPTOS_DSCP_CS6 },
                   1523:                { "cs7",                IPTOS_DSCP_CS7 },
                   1524:                { "ef",                 IPTOS_DSCP_EF },
                   1525:                { "inetcontrol",        IPTOS_PREC_INTERNETCONTROL },
                   1526:                { "lowdelay",           IPTOS_LOWDELAY },
                   1527:                { "netcontrol",         IPTOS_PREC_NETCONTROL },
                   1528:                { "reliability",        IPTOS_RELIABILITY },
                   1529:                { "throughput",         IPTOS_THROUGHPUT },
1.134     deraadt  1530:                { NULL,                 -1 },
1.102     haesbaer 1531:        };
                   1532:
                   1533:        for (t = toskeywords; t->keyword != NULL; t++) {
                   1534:                if (strcmp(s, t->keyword) == 0) {
                   1535:                        *val = t->val;
                   1536:                        return (1);
                   1537:                }
                   1538:        }
1.83      dtucker  1539:
1.102     haesbaer 1540:        return (0);
1.108     haesbaer 1541: }
                   1542:
1.133     beck     1543: int
                   1544: map_tls(char *s, int *val)
                   1545: {
                   1546:        const struct tlskeywords {
                   1547:                const char      *keyword;
                   1548:                int              val;
                   1549:        } *t, tlskeywords[] = {
1.170     beck     1550:                { "tlsall",             TLS_ALL },
1.133     beck     1551:                { "noverify",           TLS_NOVERIFY },
                   1552:                { "noname",             TLS_NONAME },
                   1553:                { "clientcert",         TLS_CCERT},
1.167     beck     1554:                { "muststaple",         TLS_MUSTSTAPLE},
1.134     deraadt  1555:                { NULL,                 -1 },
1.133     beck     1556:        };
                   1557:
                   1558:        for (t = tlskeywords; t->keyword != NULL; t++) {
                   1559:                if (strcmp(s, t->keyword) == 0) {
                   1560:                        *val |= t->val;
                   1561:                        return (1);
                   1562:                }
                   1563:        }
                   1564:        return (0);
1.179     beck     1565: }
                   1566:
                   1567: void
                   1568: save_peer_cert(struct tls *tls_ctx, FILE *fp)
                   1569: {
                   1570:        const char *pem;
                   1571:        size_t plen;
                   1572:        FILE *out;
                   1573:
                   1574:        if ((pem = tls_peer_cert_chain_pem(tls_ctx, &plen)) == NULL)
                   1575:                errx(1, "Can't get peer certificate");
                   1576:        if (fprintf(fp, "%.*s", plen, pem) < 0)
                   1577:                err(1, "unable to save peer cert");
                   1578:        if (fflush(fp) != 0)
                   1579:                err(1, "unable to flush peer cert");
1.133     beck     1580: }
                   1581:
                   1582: void
                   1583: report_tls(struct tls * tls_ctx, char * host, char *tls_expectname)
                   1584: {
1.147     beck     1585:        time_t t;
1.164     beck     1586:        const char *ocsp_url;
                   1587:
1.138     beck     1588:        fprintf(stderr, "TLS handshake negotiated %s/%s with host %s\n",
                   1589:            tls_conn_version(tls_ctx), tls_conn_cipher(tls_ctx), host);
1.148     mmcc     1590:        fprintf(stderr, "Peer name: %s\n",
1.133     beck     1591:            tls_expectname ? tls_expectname : host);
1.137     beck     1592:        if (tls_peer_cert_subject(tls_ctx))
                   1593:                fprintf(stderr, "Subject: %s\n",
                   1594:                    tls_peer_cert_subject(tls_ctx));
                   1595:        if (tls_peer_cert_issuer(tls_ctx))
                   1596:                fprintf(stderr, "Issuer: %s\n",
                   1597:                    tls_peer_cert_issuer(tls_ctx));
1.147     beck     1598:        if ((t = tls_peer_cert_notbefore(tls_ctx)) != -1)
                   1599:                fprintf(stderr, "Valid From: %s", ctime(&t));
                   1600:        if ((t = tls_peer_cert_notafter(tls_ctx)) != -1)
                   1601:                fprintf(stderr, "Valid Until: %s", ctime(&t));
1.137     beck     1602:        if (tls_peer_cert_hash(tls_ctx))
                   1603:                fprintf(stderr, "Cert Hash: %s\n",
                   1604:                    tls_peer_cert_hash(tls_ctx));
1.164     beck     1605:        ocsp_url = tls_peer_ocsp_url(tls_ctx);
1.166     beck     1606:        if (ocsp_url != NULL)
                   1607:                fprintf(stderr, "OCSP URL: %s\n", ocsp_url);
1.164     beck     1608:        switch (tls_peer_ocsp_response_status(tls_ctx)) {
                   1609:        case TLS_OCSP_RESPONSE_SUCCESSFUL:
1.165     beck     1610:                fprintf(stderr, "OCSP Stapling: %s\n",
1.164     beck     1611:                    tls_peer_ocsp_result(tls_ctx) == NULL ?  "" :
                   1612:                    tls_peer_ocsp_result(tls_ctx));
                   1613:                fprintf(stderr,
                   1614:                    "  response_status=%d cert_status=%d crl_reason=%d\n",
                   1615:                    tls_peer_ocsp_response_status(tls_ctx),
                   1616:                    tls_peer_ocsp_cert_status(tls_ctx),
                   1617:                    tls_peer_ocsp_crl_reason(tls_ctx));
                   1618:                t = tls_peer_ocsp_this_update(tls_ctx);
                   1619:                fprintf(stderr, "  this update: %s",
                   1620:                    t != -1 ? ctime(&t) : "\n");
                   1621:                t =  tls_peer_ocsp_next_update(tls_ctx);
                   1622:                fprintf(stderr, "  next update: %s",
                   1623:                    t != -1 ? ctime(&t) : "\n");
                   1624:                t =  tls_peer_ocsp_revocation_time(tls_ctx);
                   1625:                fprintf(stderr, "  revocation: %s",
                   1626:                    t != -1 ? ctime(&t) : "\n");
                   1627:                break;
                   1628:        case -1:
                   1629:                break;
                   1630:        default:
1.165     beck     1631:                fprintf(stderr, "OCSP Stapling:  failure - response_status %d (%s)\n",
1.164     beck     1632:                    tls_peer_ocsp_response_status(tls_ctx),
                   1633:                    tls_peer_ocsp_result(tls_ctx) == NULL ?  "" :
                   1634:                    tls_peer_ocsp_result(tls_ctx));
                   1635:                break;
                   1636:
                   1637:        }
1.133     beck     1638: }
1.147     beck     1639:
1.108     haesbaer 1640: void
1.151     beck     1641: report_connect(const struct sockaddr *sa, socklen_t salen, char *path)
1.108     haesbaer 1642: {
                   1643:        char remote_host[NI_MAXHOST];
                   1644:        char remote_port[NI_MAXSERV];
                   1645:        int herr;
                   1646:        int flags = NI_NUMERICSERV;
1.151     beck     1647:
                   1648:        if (path != NULL) {
                   1649:                fprintf(stderr, "Connection on %s received!\n", path);
                   1650:                return;
                   1651:        }
1.134     deraadt  1652:
1.108     haesbaer 1653:        if (nflag)
                   1654:                flags |= NI_NUMERICHOST;
1.134     deraadt  1655:
1.108     haesbaer 1656:        if ((herr = getnameinfo(sa, salen,
                   1657:            remote_host, sizeof(remote_host),
                   1658:            remote_port, sizeof(remote_port),
                   1659:            flags)) != 0) {
                   1660:                if (herr == EAI_SYSTEM)
                   1661:                        err(1, "getnameinfo");
                   1662:                else
                   1663:                        errx(1, "getnameinfo: %s", gai_strerror(herr));
                   1664:        }
1.134     deraadt  1665:
1.108     haesbaer 1666:        fprintf(stderr,
                   1667:            "Connection from %s %s "
                   1668:            "received!\n", remote_host, remote_port);
1.7       deraadt  1669: }
1.1       deraadt  1670:
1.11      ericj    1671: void
1.58      deraadt  1672: help(void)
1.1       deraadt  1673: {
1.21      ericj    1674:        usage(0);
                   1675:        fprintf(stderr, "\tCommand Summary:\n\
                   1676:        \t-4            Use IPv4\n\
                   1677:        \t-6            Use IPv6\n\
1.135     jmc      1678:        \t-C certfile   Public key file\n\
                   1679:        \t-c            Use TLS\n\
1.73      markus   1680:        \t-D            Enable the debug socket option\n\
1.69      tedu     1681:        \t-d            Detach from stdin\n\
1.135     jmc      1682:        \t-e name\t     Required name in peer certificate\n\
1.114     jmc      1683:        \t-F            Pass socket fd\n\
1.135     jmc      1684:        \t-H hash\t     Hash string of peer certificate\n\
1.21      ericj    1685:        \t-h            This help text\n\
1.90      djm      1686:        \t-I length     TCP receive buffer length\n\
1.135     jmc      1687:        \t-i interval   Delay interval for lines sent, ports scanned\n\
                   1688:        \t-K keyfile    Private key file\n\
1.21      ericj    1689:        \t-k            Keep inbound sockets open for multiple connects\n\
                   1690:        \t-l            Listen mode, for inbound connects\n\
1.156     jca      1691:        \t-M ttl                Outgoing TTL / Hop Limit\n\
                   1692:        \t-m minttl     Minimum incoming TTL / Hop Limit\n\
1.111     sthen    1693:        \t-N            Shutdown the network socket after EOF on stdin\n\
1.22      jasoni   1694:        \t-n            Suppress name/port resolutions\n\
1.90      djm      1695:        \t-O length     TCP send buffer length\n\
1.169     jmc      1696:        \t-o staplefile Staple file\n\
1.86      djm      1697:        \t-P proxyuser\tUsername for proxy authentication\n\
1.36      jakob    1698:        \t-p port\t     Specify local port for remote connects\n\
1.135     jmc      1699:        \t-R CAfile     CA bundle\n\
1.21      ericj    1700:        \t-r            Randomize remote ports\n\
1.67      jmc      1701:        \t-S            Enable the TCP MD5 signature option\n\
1.135     jmc      1702:        \t-s source     Local source address\n\
                   1703:        \t-T keyword    TOS value or TLS options\n\
1.21      ericj    1704:        \t-t            Answer TELNET negotiation\n\
1.67      jmc      1705:        \t-U            Use UNIX domain socket\n\
1.21      ericj    1706:        \t-u            UDP mode\n\
1.98      guenther 1707:        \t-V rtable     Specify alternate routing table\n\
1.21      ericj    1708:        \t-v            Verbose\n\
1.135     jmc      1709:        \t-w timeout    Timeout for connects and final net reads\n\
1.75      djm      1710:        \t-X proto      Proxy protocol: \"4\", \"5\" (SOCKS) or \"connect\"\n\
                   1711:        \t-x addr[:port]\tSpecify proxy address and port\n\
1.180     jmc      1712:        \t-Z            Peer certificate file\n\
1.21      ericj    1713:        \t-z            Zero-I/O mode [used for scanning]\n\
                   1714:        Port numbers can be individual or ranges: lo-hi [inclusive]\n");
                   1715:        exit(1);
1.11      ericj    1716: }
                   1717:
                   1718: void
1.37      jakob    1719: usage(int ret)
1.11      ericj    1720: {
1.92      sobrado  1721:        fprintf(stderr,
1.135     jmc      1722:            "usage: nc [-46cDdFhklNnrStUuvz] [-C certfile] [-e name] "
                   1723:            "[-H hash] [-I length]\n"
1.156     jca      1724:            "\t  [-i interval] [-K keyfile] [-M ttl] [-m minttl] [-O length]\n"
1.169     jmc      1725:            "\t  [-o staplefile] [-P proxy_username] [-p source_port] "
                   1726:            "[-R CAfile]\n"
                   1727:            "\t  [-s source] [-T keyword] [-V rtable] [-w timeout] "
                   1728:            "[-X proxy_protocol]\n"
1.180     jmc      1729:            "\t  [-x proxy_address[:port]] [-Z peercertfile] "
                   1730:            "[destination] [port]\n");
1.21      ericj    1731:        if (ret)
                   1732:                exit(1);
1.7       deraadt  1733: }