//
|
// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech>
|
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
|
// Copyright 2018 Devolutions <info@devolutions.net>
|
//
|
// This software is supplied under the terms of the MIT License, a
|
// copy of which should be located in the distribution where this
|
// file was obtained (LICENSE.txt). A copy of the license may also be
|
// found online at https://opensource.org/licenses/MIT.
|
//
|
|
#include "core/nng_impl.h"
|
|
#include "win_tcp.h"
|
|
#include <malloc.h>
|
#include <stdio.h>
|
|
struct nni_tcp_dialer {
|
LPFN_CONNECTEX connectex; // looked up name via ioctl
|
nni_list aios; // in flight connections
|
bool closed;
|
bool nodelay; // initial value for child conns
|
bool keepalive; // initial value for child conns
|
SOCKADDR_STORAGE src; // source address
|
size_t srclen;
|
nni_mtx mtx;
|
nni_reap_node reap;
|
};
|
|
int
|
nni_tcp_dialer_init(nni_tcp_dialer **dp)
|
{
|
nni_tcp_dialer *d;
|
int rv;
|
SOCKET s;
|
DWORD nbytes;
|
GUID guid = WSAID_CONNECTEX;
|
|
if ((d = NNI_ALLOC_STRUCT(d)) == NULL) {
|
return (NNG_ENOMEM);
|
}
|
ZeroMemory(d, sizeof(*d));
|
nni_mtx_init(&d->mtx);
|
nni_aio_list_init(&d->aios);
|
|
// Create a scratch socket for use with ioctl.
|
s = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
|
if (s == INVALID_SOCKET) {
|
rv = nni_win_error(GetLastError());
|
nni_tcp_dialer_fini(d);
|
return (rv);
|
}
|
|
// Look up the function pointer.
|
if (WSAIoctl(s, SIO_GET_EXTENSION_FUNCTION_POINTER, &guid,
|
sizeof(guid), &d->connectex, sizeof(d->connectex), &nbytes,
|
NULL, NULL) == SOCKET_ERROR) {
|
rv = nni_win_error(GetLastError());
|
closesocket(s);
|
nni_tcp_dialer_fini(d);
|
return (rv);
|
}
|
|
closesocket(s);
|
|
*dp = d;
|
return (0);
|
}
|
|
void
|
nni_tcp_dialer_close(nni_tcp_dialer *d)
|
{
|
nni_mtx_lock(&d->mtx);
|
if (!d->closed) {
|
nni_aio *aio;
|
d->closed = true;
|
|
NNI_LIST_FOREACH (&d->aios, aio) {
|
nni_tcp_conn *c;
|
|
if ((c = nni_aio_get_prov_extra(aio, 0)) != NULL) {
|
c->conn_rv = NNG_ECLOSED;
|
CancelIoEx((HANDLE) c->s, &c->conn_io.olpd);
|
}
|
}
|
}
|
nni_mtx_unlock(&d->mtx);
|
}
|
|
static nni_reap_list tcp_dialer_reap_list = {
|
.rl_offset = offsetof(nni_tcp_dialer, reap),
|
.rl_func = (nni_cb) nni_tcp_dialer_fini,
|
};
|
|
void
|
nni_tcp_dialer_fini(nni_tcp_dialer *d)
|
{
|
nni_tcp_dialer_close(d);
|
nni_mtx_lock(&d->mtx);
|
if (!nni_list_empty(&d->aios)) {
|
nni_mtx_unlock(&d->mtx);
|
nni_reap(&tcp_dialer_reap_list, nni_tcp_dialer_fini);
|
return;
|
}
|
nni_mtx_unlock(&d->mtx);
|
|
nni_mtx_fini(&d->mtx);
|
NNI_FREE_STRUCT(d);
|
}
|
|
static void
|
tcp_dial_cancel(nni_aio *aio, void *arg, int rv)
|
{
|
nni_tcp_dialer *d = arg;
|
nni_tcp_conn * c;
|
|
nni_mtx_lock(&d->mtx);
|
if ((c = nni_aio_get_prov_extra(aio, 0)) != NULL) {
|
if (c->conn_rv == 0) {
|
c->conn_rv = rv;
|
}
|
CancelIoEx((HANDLE) c->s, &c->conn_io.olpd);
|
}
|
nni_mtx_unlock(&d->mtx);
|
}
|
|
static void
|
tcp_dial_cb(nni_win_io *io, int rv, size_t cnt)
|
{
|
nni_tcp_conn * c = io->ptr;
|
nni_tcp_dialer *d = c->dialer;
|
nni_aio * aio = c->conn_aio;
|
BOOL ka;
|
BOOL nd;
|
|
NNI_ARG_UNUSED(cnt);
|
|
nni_mtx_lock(&d->mtx);
|
if ((aio = c->conn_aio) == NULL) {
|
// This should never occur.
|
nni_mtx_unlock(&d->mtx);
|
return;
|
}
|
|
c->conn_aio = NULL;
|
nni_aio_set_prov_extra(aio, 0, NULL);
|
nni_aio_list_remove(aio);
|
if (c->conn_rv != 0) {
|
rv = c->conn_rv;
|
}
|
nd = d->nodelay ? TRUE : FALSE;
|
ka = d->keepalive ? TRUE : FALSE;
|
nni_mtx_unlock(&d->mtx);
|
|
if (rv != 0) {
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, rv);
|
} else {
|
DWORD yes = 1;
|
int len;
|
|
(void) setsockopt(c->s, SOL_SOCKET, SO_UPDATE_CONNECT_CONTEXT,
|
(char *) &yes, sizeof(yes));
|
|
(void) setsockopt(
|
c->s, SOL_SOCKET, SO_KEEPALIVE, (char *) &ka, sizeof(ka));
|
|
(void) setsockopt(
|
c->s, IPPROTO_TCP, TCP_NODELAY, (char *) &nd, sizeof(nd));
|
|
len = sizeof(SOCKADDR_STORAGE);
|
(void) getsockname(c->s, (SOCKADDR *) &c->sockname, &len);
|
|
nni_aio_set_output(aio, 0, c);
|
nni_aio_finish(aio, 0, 0);
|
}
|
}
|
|
void
|
nni_tcp_dial(nni_tcp_dialer *d, const nni_sockaddr *sa, nni_aio *aio)
|
{
|
SOCKET s;
|
SOCKADDR_STORAGE ss;
|
int len;
|
nni_tcp_conn * c;
|
int rv;
|
|
if (nni_aio_begin(aio) != 0) {
|
return;
|
}
|
|
if ((len = nni_win_nn2sockaddr(&ss, sa)) <= 0) {
|
nni_aio_finish_error(aio, NNG_EADDRINVAL);
|
return;
|
}
|
|
if ((s = socket(ss.ss_family, SOCK_STREAM, 0)) == INVALID_SOCKET) {
|
nni_aio_finish_error(aio, nni_win_error(GetLastError()));
|
return;
|
}
|
|
if ((rv = nni_win_tcp_init(&c, s)) != 0) {
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, rv);
|
return;
|
}
|
|
c->peername = ss;
|
|
if ((rv = nni_win_io_init(&c->conn_io, tcp_dial_cb, c)) != 0) {
|
nni_aio_finish_error(aio, rv);
|
return;
|
}
|
|
nni_mtx_lock(&d->mtx);
|
if (d->closed) {
|
nni_mtx_unlock(&d->mtx);
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, NNG_ECLOSED);
|
return;
|
}
|
|
// Windows ConnectEx requires the socket to be bound
|
// first. We just bind to an ephemeral address in the
|
// same family, unless a different default was requested.
|
if (d->srclen != 0) {
|
len = (int) d->srclen;
|
memcpy(&c->sockname, &d->src, len);
|
} else {
|
ZeroMemory(&c->sockname, sizeof(c->sockname));
|
c->sockname.ss_family = ss.ss_family;
|
}
|
if (bind(s, (SOCKADDR *) &c->sockname, len) != 0) {
|
rv = nni_win_error(GetLastError());
|
nni_mtx_unlock(&d->mtx);
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, rv);
|
return;
|
}
|
|
c->dialer = d;
|
nni_aio_set_prov_extra(aio, 0, c);
|
if ((rv = nni_aio_schedule(aio, tcp_dial_cancel, d)) != 0) {
|
nni_mtx_unlock(&d->mtx);
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, rv);
|
return;
|
}
|
c->conn_aio = aio;
|
nni_aio_list_append(&d->aios, aio);
|
|
// dialing is concurrent.
|
if (!d->connectex(s, (struct sockaddr *) &c->peername, len, NULL, 0,
|
NULL, &c->conn_io.olpd)) {
|
if ((rv = GetLastError()) != ERROR_IO_PENDING) {
|
nni_aio_list_remove(aio);
|
nni_mtx_unlock(&d->mtx);
|
nng_stream_free(&c->ops);
|
nni_aio_finish_error(aio, rv);
|
return;
|
}
|
}
|
nni_mtx_unlock(&d->mtx);
|
}
|
|
static int
|
tcp_dialer_set_nodelay(void *arg, const void *buf, size_t sz, nni_type t)
|
{
|
nni_tcp_dialer *d = arg;
|
int rv;
|
bool b;
|
|
if (((rv = nni_copyin_bool(&b, buf, sz, t)) != 0) || (d == NULL)) {
|
return (rv);
|
}
|
nni_mtx_lock(&d->mtx);
|
d->nodelay = b;
|
nni_mtx_unlock(&d->mtx);
|
return (0);
|
}
|
|
static int
|
tcp_dialer_get_nodelay(void *arg, void *buf, size_t *szp, nni_type t)
|
{
|
bool b;
|
nni_tcp_dialer *d = arg;
|
nni_mtx_lock(&d->mtx);
|
b = d->nodelay;
|
nni_mtx_unlock(&d->mtx);
|
return (nni_copyout_bool(b, buf, szp, t));
|
}
|
|
static int
|
tcp_dialer_set_keepalive(void *arg, const void *buf, size_t sz, nni_type t)
|
{
|
nni_tcp_dialer *d = arg;
|
int rv;
|
bool b;
|
|
if (((rv = nni_copyin_bool(&b, buf, sz, t)) != 0) || (d == NULL)) {
|
return (rv);
|
}
|
nni_mtx_lock(&d->mtx);
|
d->keepalive = b;
|
nni_mtx_unlock(&d->mtx);
|
return (0);
|
}
|
|
static int
|
tcp_dialer_get_keepalive(void *arg, void *buf, size_t *szp, nni_type t)
|
{
|
bool b;
|
nni_tcp_dialer *d = arg;
|
nni_mtx_lock(&d->mtx);
|
b = d->keepalive;
|
nni_mtx_unlock(&d->mtx);
|
return (nni_copyout_bool(b, buf, szp, t));
|
}
|
|
static int
|
tcp_dialer_get_locaddr(void *arg, void *buf, size_t *szp, nni_type t)
|
{
|
nni_tcp_dialer *d = arg;
|
nng_sockaddr sa;
|
|
nni_mtx_lock(&d->mtx);
|
if (nni_win_sockaddr2nn(&sa, &d->src) != 0) {
|
sa.s_family = NNG_AF_UNSPEC;
|
}
|
nni_mtx_unlock(&d->mtx);
|
return (nni_copyout_sockaddr(&sa, buf, szp, t));
|
}
|
|
static int
|
tcp_dialer_set_locaddr(void *arg, const void *buf, size_t sz, nni_type t)
|
{
|
nni_tcp_dialer * d = arg;
|
nng_sockaddr sa;
|
SOCKADDR_STORAGE ss;
|
struct sockaddr_in * sin;
|
struct sockaddr_in6 *sin6;
|
size_t sslen;
|
int rv;
|
|
if ((rv = nni_copyin_sockaddr(&sa, buf, sz, t)) != 0) {
|
return (rv);
|
}
|
if ((sslen = nni_win_nn2sockaddr(&ss, &sa)) == 0) {
|
return (NNG_EADDRINVAL);
|
}
|
// Ensure we are either IPv4 or IPv6, and port is not set. (We
|
// do not allow binding to a specific port.)
|
switch (ss.ss_family) {
|
case AF_INET:
|
sin = (void *) &ss;
|
if (sin->sin_port != 0) {
|
return (NNG_EADDRINVAL);
|
}
|
break;
|
case AF_INET6:
|
sin6 = (void *) &ss;
|
if (sin6->sin6_port != 0) {
|
return (NNG_EADDRINVAL);
|
}
|
break;
|
default:
|
return (NNG_EADDRINVAL);
|
}
|
if (d != NULL) {
|
nni_mtx_lock(&d->mtx);
|
if (d->closed) {
|
nni_mtx_unlock(&d->mtx);
|
return (NNG_ECLOSED);
|
}
|
d->src = ss;
|
d->srclen = sslen;
|
nni_mtx_unlock(&d->mtx);
|
}
|
return (0);
|
}
|
|
static const nni_option tcp_dialer_options[] = {
|
{
|
.o_name = NNG_OPT_LOCADDR,
|
.o_get = tcp_dialer_get_locaddr,
|
.o_set = tcp_dialer_set_locaddr,
|
},
|
{
|
.o_name = NNG_OPT_TCP_NODELAY,
|
.o_get = tcp_dialer_get_nodelay,
|
.o_set = tcp_dialer_set_nodelay,
|
},
|
{
|
.o_name = NNG_OPT_TCP_KEEPALIVE,
|
.o_get = tcp_dialer_get_keepalive,
|
.o_set = tcp_dialer_set_keepalive,
|
},
|
{
|
.o_name = NULL,
|
},
|
};
|
|
int
|
nni_tcp_dialer_get(
|
nni_tcp_dialer *d, const char *name, void *buf, size_t *szp, nni_type t)
|
{
|
return (nni_getopt(tcp_dialer_options, name, d, buf, szp, t));
|
}
|
|
int
|
nni_tcp_dialer_set(nni_tcp_dialer *d, const char *name, const void *buf,
|
size_t sz, nni_type t)
|
{
|
return (nni_setopt(tcp_dialer_options, name, d, buf, sz, t));
|
}
|