root/regress/usr.bin/nc/client-tcp.c
/*      $OpenBSD: client-tcp.c,v 1.3 2021/07/06 11:50:34 bluhm Exp $    */

/*
 * Copyright (c) 2020 Alexander Bluhm <bluhm@openbsd.org>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <sys/types.h>
#include <sys/socket.h>

#include <err.h>
#include <errno.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "util.h"

void __dead usage(void);
int connect_socket(const char *, const char *);

void __dead
usage(void)
{
        fprintf(stderr, "client [-r rcvmsg] [-s sndmsg] host port\n"
        "    -E         wait for EOF\n"
        "    -N         shutdown write\n"
        "    -r rcvmsg  receive from server and check message\n"
        "    -s sndmsg  send message to server\n");
        exit(2);
}

int
main(int argc, char *argv[])
{
        const char *host, *port;
        struct task todo[100];
        size_t tlen = 0;
        int ch, s;

        while ((ch = getopt(argc, argv, "ENr:s:")) != -1) {
                switch (ch) {
                case 'E':
                case 'N':
                case 'r':
                case 's':
                        if (tlen >= sizeof(todo) / sizeof(todo[0]))
                                errx(1, "too many tasks");
                        task_enqueue(&todo[tlen], ch, optarg);
                        tlen++;
                        break;
                default:
                        usage();
                }
        }
        argc -= optind;
        argv += optind;

        if (argc == 2) {
                host = argv[0];
                port = argv[1];
        } else {
                usage();
        }

        alarm(10);
        s = connect_socket(host, port);
        print_sockname(s);
        print_peername(s);
        task_run(s, todo, tlen);
        if (close(s) == -1)
                err(1, "close");

        return 0;
}

int
connect_socket(const char *host, const char *port)
{
        struct addrinfo hints, *res, *res0;
        int error;
        int save_errno;
        int s;
        const char *cause = NULL;

        memset(&hints, 0, sizeof(hints));
        hints.ai_family = AF_UNSPEC;
        hints.ai_socktype = SOCK_STREAM;
        error = getaddrinfo(host, port, &hints, &res0);
        if (error)
                errx(1, "%s", gai_strerror(error));
        s = -1;
        for (res = res0; res; res = res->ai_next) {
                s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
                if (s == -1) {
                        cause = "socket";
                        continue;
                }
                if (connect(s, res->ai_addr, res->ai_addrlen) == -1) {
                        cause = "connect";
                        save_errno = errno;
                        close(s);
                        errno = save_errno;
                        s = -1;
                        continue;
                }
                break;  /* okay we got one */
        }
        if (s == -1)
                err(1, "%s", cause);
        freeaddrinfo(res0);

        return s;
}