0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00
construct/ircd/net.cc

3888 lines
76 KiB
C++
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
2017-09-30 08:04:41 +02:00
#include <ircd/asio.h>
namespace ircd::net
{
ctx::dock dock;
void wait_close_sockets();
}
void
ircd::net::wait_close_sockets()
{
2018-05-12 06:25:50 +02:00
while(socket::instances)
2018-03-27 01:52:14 +02:00
if(!dock.wait_for(seconds(2)))
log::warning
{
log, "Waiting for %zu sockets to destruct", socket::instances
};
}
///////////////////////////////////////////////////////////////////////////////
//
// init
//
/// Network subsystem initialization
ircd::net::init::init()
{
sslv23_client.set_verify_mode(asio::ssl::verify_peer);
sslv23_client.set_default_verify_paths();
}
/// Network subsystem shutdown
ircd::net::init::~init()
noexcept
{
wait_close_sockets();
}
2017-09-30 08:04:41 +02:00
///////////////////////////////////////////////////////////////////////////////
//
2017-10-19 10:30:19 +02:00
// net/net.h
2017-09-30 08:04:41 +02:00
//
2018-01-04 22:34:07 +01:00
/// Network subsystem log facility with dedicated SNOMASK.
struct ircd::log::log
ircd::net::log
{
"net", 'N'
};
ircd::string_view
ircd::net::peer_cert_der_sha256_b64(const mutable_buffer &buf,
const socket &socket)
{
thread_local char shabuf[sha256::digest_size];
const auto hash
{
peer_cert_der_sha256(shabuf, socket)
};
return b64encode_unpadded(buf, hash);
}
ircd::const_buffer
ircd::net::peer_cert_der_sha256(const mutable_buffer &buf,
const socket &socket)
{
thread_local char derbuf[16384];
sha256
{
buf, peer_cert_der(derbuf, socket)
};
return
{
data(buf), sha256::digest_size
};
}
ircd::const_buffer
ircd::net::peer_cert_der(const mutable_buffer &buf,
const socket &socket)
{
const SSL &ssl(socket);
const X509 &cert
{
openssl::peer_cert(ssl)
};
return openssl::i2d(buf, cert);
}
std::pair<size_t, size_t>
ircd::net::calls(const socket &socket)
noexcept
{
return
{
socket.in.calls, socket.out.calls
};
}
std::pair<size_t, size_t>
ircd::net::bytes(const socket &socket)
noexcept
{
return
{
socket.in.bytes, socket.out.bytes
};
}
ircd::string_view
ircd::net::loghead(const socket &socket)
{
thread_local char buf[512];
return loghead(buf, socket);
}
ircd::string_view
ircd::net::loghead(const mutable_buffer &out,
const socket &socket)
{
thread_local char buf[2][128];
return fmt::sprintf
{
out, "socket:%lu local[%s] remote[%s]",
id(socket),
string(buf[0], local_ipport(socket)),
string(buf[1], remote_ipport(socket)),
};
}
ircd::net::ipport
ircd::net::remote_ipport(const socket &socket)
2018-01-02 01:16:39 +01:00
noexcept try
{
const auto &ep(socket.remote());
return make_ipport(ep);
2018-01-02 01:16:39 +01:00
}
catch(...)
2018-01-02 01:16:39 +01:00
{
return {};
}
ircd::net::ipport
ircd::net::local_ipport(const socket &socket)
noexcept try
{
const auto &ep(socket.local());
return make_ipport(ep);
}
catch(...)
{
return {};
}
size_t
ircd::net::available(const socket &socket)
noexcept
{
const ip::tcp::socket &sd(socket);
boost::system::error_code ec;
return sd.available(ec);
}
size_t
ircd::net::readable(const socket &socket)
{
ip::tcp::socket &sd(const_cast<net::socket &>(socket));
ip::tcp::socket::bytes_readable command{true};
sd.io_control(command);
return command.get();
}
bool
ircd::net::opened(const socket &socket)
noexcept try
{
const ip::tcp::socket &sd(socket);
return sd.is_open();
}
catch(...)
{
return false;
2017-09-30 08:04:41 +02:00
}
const uint64_t &
ircd::net::id(const socket &socket)
{
return socket.id;
}
///////////////////////////////////////////////////////////////////////////////
//
// net/write.h
//
void
ircd::net::flush(socket &socket)
2017-09-30 08:04:41 +02:00
{
if(nodelay(socket))
return;
nodelay(socket, true);
nodelay(socket, false);
2017-09-30 08:04:41 +02:00
}
/// Yields ircd::ctx until all buffers are sent.
///
/// This is blocking behavior; use this if the following are true:
///
/// * You put a timer on the socket so if the remote slows us down the data
/// will not occupy the daemon's memory for a long time. Remember, *all* of
/// the data will be sitting in memory even after some of it was ack'ed by
/// the remote.
///
/// * You are willing to dedicate the ircd::ctx to sending all the data to
/// the remote. The ircd::ctx will be yielding until everything is sent.
///
2017-09-30 08:04:41 +02:00
size_t
ircd::net::write_all(socket &socket,
const vector_view<const const_buffer> &buffers)
2017-09-30 08:04:41 +02:00
{
return socket.write_all(buffers);
2017-09-30 08:04:41 +02:00
}
/// Yields ircd::ctx until at least some buffers are sent.
///
/// This is blocking behavior; use this if the following are true:
///
/// * You put a timer on the socket so if the remote slows us down the data
/// will not occupy the daemon's memory for a long time.
///
/// * You are willing to dedicate the ircd::ctx to sending the data to
/// the remote. The ircd::ctx will be yielding until the kernel has at least
/// some space to consume at least something from the supplied buffers.
///
size_t
ircd::net::write_few(socket &socket,
const vector_view<const const_buffer> &buffers)
{
return socket.write_few(buffers);
}
/// Writes as much as possible until one of the following is true:
///
/// * The kernel buffer for the socket is full.
/// * The user buffer is exhausted.
///
/// This is non-blocking behavior. No yielding will take place; no timer is
/// needed. Multiple syscalls will be composed to fulfill the above points.
///
2017-09-30 08:04:41 +02:00
size_t
ircd::net::write_any(socket &socket,
const vector_view<const const_buffer> &buffers)
2017-09-30 08:04:41 +02:00
{
return socket.write_any(buffers);
2017-09-30 08:04:41 +02:00
}
/// Writes one "unit" of data or less; never more. The size of that unit
/// is determined by the system. Less may be written if one of the following
/// is true:
///
/// * The kernel buffer for the socket is full.
/// * The user buffer is exhausted.
///
/// If neither are true, more can be written using additional calls;
/// alternatively, use other variants of write_ for that.
///
/// This is non-blocking behavior. No yielding will take place; no timer is
/// needed. Only one syscall will occur.
///
2017-09-30 08:04:41 +02:00
size_t
ircd::net::write_one(socket &socket,
const vector_view<const const_buffer> &buffers)
2017-09-30 08:04:41 +02:00
{
return socket.write_one(buffers);
2017-09-30 08:04:41 +02:00
}
///////////////////////////////////////////////////////////////////////////////
//
// net/read.h
//
/// Yields ircd::ctx until len bytes have been received and discarded from the
/// socket.
///
size_t
ircd::net::discard_all(socket &socket,
const size_t &len)
{
static char buffer[512] alignas(16);
size_t remain{len}; while(remain)
{
const mutable_buffer mb
{
buffer, std::min(remain, sizeof(buffer))
};
__builtin_prefetch(data(mb), 1, 0); // 1 = write, 0 = no cache
2018-01-14 04:19:29 +01:00
remain -= read_all(socket, mb);
}
return len;
}
/// Non-blocking discard of up to len bytes. The amount of bytes discarded
/// is returned. Zero is only returned if len==0 because the EAGAIN is
/// thrown. If any bytes have been discarded any EAGAIN encountered in
/// this function's internal loop is not thrown, but used to exit the loop.
///
size_t
ircd::net::discard_any(socket &socket,
const size_t &len)
{
static char buffer[512] alignas(16);
size_t remain{len}; while(remain) try
{
const mutable_buffer mb
{
buffer, std::min(remain, sizeof(buffer))
};
__builtin_prefetch(data(mb), 1, 0); // 1 = write, 0 = no cache
remain -= read_one(socket, mb);
}
catch(const std::system_error &e)
{
if(e.code() == std::errc::resource_unavailable_try_again)
if(remain <= len)
break;
throw;
}
return len - remain;
}
/// Yields ircd::ctx until buffers are full.
///
/// Use this only if the following are true:
///
/// * You know the remote has made a guarantee to send you a specific amount
/// of data.
///
/// * You put a timer on the socket so that if the remote runs short this
/// call doesn't hang the ircd::ctx forever, otherwise it will until cancel.
///
/// * You are willing to dedicate the ircd::ctx to just this operation for
/// that amount of time.
///
size_t
ircd::net::read_all(socket &socket,
const vector_view<const mutable_buffer> &buffers)
{
return socket.read_all(buffers);
}
/// Yields ircd::ctx until remote has sent at least one frame. The buffers may
/// be filled with any amount of data depending on what has accumulated.
///
/// Use this if the following are true:
///
/// * You know there is data to be read; you can do this asynchronously with
/// other features of the socket. Otherwise this will hang the ircd::ctx.
///
/// * You are willing to dedicate the ircd::ctx to just this operation,
/// which is non-blocking if data is known to be available, but may be
/// blocking if this call is made in the blind.
///
size_t
ircd::net::read_few(socket &socket,
const vector_view<const mutable_buffer> &buffers)
{
return socket.read_few(buffers);
}
/// Reads as much as possible. Non-blocking behavior.
///
/// This is intended for lowest-level/custom control and not preferred by
/// default for most users on an ircd::ctx.
///
size_t
ircd::net::read_any(socket &socket,
const vector_view<const mutable_buffer> &buffers)
{
return socket.read_any(buffers);
}
2018-01-08 21:41:22 +01:00
/// Reads one message or less in a single syscall. Non-blocking behavior.
///
/// This is intended for lowest-level/custom control and not preferred by
/// default for most users on an ircd::ctx.
2018-01-08 21:41:22 +01:00
///
size_t
ircd::net::read_one(socket &socket,
const vector_view<const mutable_buffer> &buffers)
{
return socket.read_one(buffers);
}
///////////////////////////////////////////////////////////////////////////////
//
// net/check.h
//
void
ircd::net::check(socket &socket,
const ready &type)
{
socket.check(type);
}
std::error_code
ircd::net::check(std::nothrow_t,
socket &socket,
const ready &type)
noexcept
{
return socket.check(std::nothrow, type);
}
///////////////////////////////////////////////////////////////////////////////
//
// net/wait.h
//
ircd::net::wait_opts
const ircd::net::wait_opts_default;
/// Wait for socket to become "ready" using a ctx::future.
ircd::ctx::future<void>
ircd::net::wait(use_future_t,
socket &socket,
const wait_opts &wait_opts)
{
ctx::promise<void> p;
ctx::future<void> f{p};
wait(socket, wait_opts, [p(std::move(p))]
(std::exception_ptr eptr)
mutable
{
if(eptr)
p.set_exception(std::move(eptr));
else
p.set_value();
});
return f;
}
/// Wait for socket to become "ready"; yields ircd::ctx returning code.
std::error_code
ircd::net::wait(nothrow_t,
socket &socket,
const wait_opts &wait_opts)
try
{
wait(socket, wait_opts);
return {};
}
catch(const std::system_error &e)
{
return e.code();
}
/// Wait for socket to become "ready"; yields ircd::ctx; throws errors.
void
ircd::net::wait(socket &socket,
const wait_opts &wait_opts)
{
socket.wait(wait_opts);
}
/// Wait for socket to become "ready"; callback with exception_ptr
void
ircd::net::wait(socket &socket,
const wait_opts &wait_opts,
wait_callback_eptr callback)
{
socket.wait(wait_opts, std::move(callback));
}
void
ircd::net::wait(socket &socket,
const wait_opts &wait_opts,
wait_callback_ec callback)
{
socket.wait(wait_opts, std::move(callback));
}
ircd::string_view
ircd::net::reflect(const ready &type)
{
switch(type)
{
case ready::ANY: return "ANY"_sv;
case ready::READ: return "READ"_sv;
case ready::WRITE: return "WRITE"_sv;
case ready::ERROR: return "ERROR"_sv;
}
return "????"_sv;
}
///////////////////////////////////////////////////////////////////////////////
//
// net/close.h
//
decltype(ircd::net::close_opts::default_timeout)
ircd::net::close_opts::default_timeout
{
{ "name", "ircd.net.close.timeout" },
{ "default", 7500L },
};
/// Static instance of default close options.
ircd::net::close_opts
const ircd::net::close_opts_default
2018-01-02 01:16:39 +01:00
{
};
2018-01-02 01:16:39 +01:00
/// Static helper callback which may be passed to the callback-based overload
/// of close(). This callback does nothing.
ircd::net::close_callback
const ircd::net::close_ignore{[]
(std::exception_ptr eptr)
2018-01-02 01:16:39 +01:00
{
return;
}};
2018-01-02 01:16:39 +01:00
ircd::ctx::future<void>
ircd::net::close(socket &socket,
const close_opts &opts)
2018-01-02 01:16:39 +01:00
{
ctx::promise<void> p;
ctx::future<void> f(p);
close(socket, opts, [p(std::move(p))]
(std::exception_ptr eptr)
mutable
{
if(eptr)
p.set_exception(std::move(eptr));
else
p.set_value();
});
return f;
2018-01-02 01:16:39 +01:00
}
void
ircd::net::close(socket &socket,
const close_opts &opts,
close_callback callback)
2017-09-30 08:04:41 +02:00
{
socket.disconnect(opts, std::move(callback));
2018-01-02 01:16:39 +01:00
}
///////////////////////////////////////////////////////////////////////////////
//
// net/open.h
//
decltype(ircd::net::open_opts::default_connect_timeout)
ircd::net::open_opts::default_connect_timeout
{
{ "name", "ircd.net.open.connect_timeout" },
{ "default", 7500L },
};
decltype(ircd::net::open_opts::default_handshake_timeout)
ircd::net::open_opts::default_handshake_timeout
{
{ "name", "ircd.net.open.handshake_timeout" },
{ "default", 7500L },
};
decltype(ircd::net::open_opts::default_verify_certificate)
ircd::net::open_opts::default_verify_certificate
{
{ "name", "ircd.net.open.verify_certificate" },
{ "default", true },
};
decltype(ircd::net::open_opts::default_allow_self_signed)
ircd::net::open_opts::default_allow_self_signed
{
{ "name", "ircd.net.open.allow_self_signed" },
{ "default", false },
};
decltype(ircd::net::open_opts::default_allow_self_chain)
ircd::net::open_opts::default_allow_self_chain
{
{ "name", "ircd.net.open.allow_self_chain" },
{ "default", false },
};
decltype(ircd::net::open_opts::default_allow_expired)
ircd::net::open_opts::default_allow_expired
{
{ "name", "ircd.net.open.allow_expired" },
{ "default", false },
};
/// Open new socket with future-based report.
///
ircd::ctx::future<std::shared_ptr<ircd::net::socket>>
ircd::net::open(const open_opts &opts)
{
ctx::promise<std::shared_ptr<socket>> p;
ctx::future<std::shared_ptr<socket>> f(p);
auto s{std::make_shared<socket>()};
open(*s, opts, [s, p(std::move(p))]
(std::exception_ptr eptr)
mutable
{
if(eptr)
p.set_exception(std::move(eptr));
else
p.set_value(s);
});
return f;
}
/// Open existing socket with callback-based report.
///
std::shared_ptr<ircd::net::socket>
ircd::net::open(const open_opts &opts,
open_callback handler)
{
auto s{std::make_shared<socket>()};
open(*s, opts, std::move(handler));
return s;
}
/// Open existing socket with callback-based report.
///
void
ircd::net::open(socket &socket,
const open_opts &opts,
open_callback handler)
{
auto complete{[s(shared_from(socket)), handler(std::move(handler))]
(std::exception_ptr eptr)
{
if(eptr && !s->fini)
close(*s, dc::RST);
handler(std::move(eptr));
}};
auto connector{[&socket, opts, complete(std::move(complete))]
(std::exception_ptr eptr, const hostport &hp, const ipport &ipport)
{
if(eptr)
return complete(std::move(eptr));
const auto ep{make_endpoint(ipport)};
socket.connect(ep, opts, std::move(complete));
}};
if(!opts.ipport)
dns::resolve(opts.hostport, std::move(connector));
else
connector({}, opts.hostport, opts.ipport);
}
///////////////////////////////////////////////////////////////////////////////
//
// net/sopts.h
//
/// Construct sock_opts with the current options from socket argument
ircd::net::sock_opts::sock_opts(const socket &socket)
:blocking{net::blocking(socket)}
,nodelay{net::nodelay(socket)}
,keepalive{net::keepalive(socket)}
,linger{net::linger(socket)}
,read_bufsz{ssize_t(net::read_bufsz(socket))}
,write_bufsz{ssize_t(net::write_bufsz(socket))}
,read_lowat{ssize_t(net::read_lowat(socket))}
,write_lowat{ssize_t(net::write_lowat(socket))}
{
}
/// Updates the socket with provided options. Defaulted / -1'ed options are
/// ignored for updating.
void
ircd::net::set(socket &socket,
const sock_opts &opts)
{
if(opts.blocking != opts.IGN)
net::blocking(socket, opts.blocking);
if(opts.nodelay != opts.IGN)
net::nodelay(socket, opts.nodelay);
if(opts.keepalive != opts.IGN)
net::keepalive(socket, opts.keepalive);
if(opts.linger != opts.IGN)
net::linger(socket, opts.linger);
if(opts.read_bufsz != opts.IGN)
net::read_bufsz(socket, opts.read_bufsz);
if(opts.write_bufsz != opts.IGN)
net::write_bufsz(socket, opts.write_bufsz);
if(opts.read_lowat != opts.IGN)
net::read_lowat(socket, opts.read_lowat);
if(opts.write_lowat != opts.IGN)
net::write_lowat(socket, opts.write_lowat);
}
void
ircd::net::write_lowat(socket &socket,
const size_t &bytes)
{
assert(bytes <= std::numeric_limits<int>::max());
ip::tcp::socket::send_low_watermark option
{
int(bytes)
};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::read_lowat(socket &socket,
const size_t &bytes)
{
assert(bytes <= std::numeric_limits<int>::max());
ip::tcp::socket::receive_low_watermark option
{
int(bytes)
};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::write_bufsz(socket &socket,
const size_t &bytes)
{
assert(bytes <= std::numeric_limits<int>::max());
ip::tcp::socket::send_buffer_size option
{
int(bytes)
};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::read_bufsz(socket &socket,
const size_t &bytes)
{
assert(bytes <= std::numeric_limits<int>::max());
ip::tcp::socket::receive_buffer_size option
{
int(bytes)
};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::linger(socket &socket,
const time_t &t)
{
assert(t >= std::numeric_limits<int>::min());
assert(t <= std::numeric_limits<int>::max());
ip::tcp::socket::linger option
{
t >= 0, // ON / OFF boolean
t >= 0? int(t) : 0 // Uses 0 when OFF
};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::keepalive(socket &socket,
const bool &b)
{
ip::tcp::socket::keep_alive option{b};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
void
ircd::net::nodelay(socket &socket,
const bool &b)
{
ip::tcp::no_delay option{b};
ip::tcp::socket &sd(socket);
sd.set_option(option);
}
/// Toggles the behavior of non-async asio calls.
///
/// This option affects very little in practice and only sets a flag in
/// userspace in asio, not an actual ioctl(). Specifically:
///
/// * All sockets are already set by asio to FIONBIO=1 no matter what, thus
/// nothing really blocks the event loop ever by default unless you try hard.
///
/// * All asio::async_ and sd.async_ and ssl.async_ calls will always do what
/// the synchronous/blocking alternative would have accomplished but using
/// the async methodology. i.e if a buffer is full you will always wait
/// asynchronously: async_write() will wait for everything, async_write_some()
/// will wait for something, etc -- but there will never be true non-blocking
/// _effective behavior_ from these calls.
///
/// * All asio non-async calls conduct blocking by (on linux) poll()'ing the
/// socket to get a real kernel-blocking operation out of it (this is the
/// try-hard part).
///
/// This flag only controls the behavior of the last bullet. In practice,
/// in this project there is never a reason to ever set this to true,
/// however, sockets do get constructed by asio in blocking mode by default
/// so we mostly use this function to set it to non-blocking.
///
void
ircd::net::blocking(socket &socket,
const bool &b)
{
ip::tcp::socket &sd(socket);
sd.non_blocking(!b);
}
size_t
ircd::net::write_lowat(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::send_low_watermark option{};
sd.get_option(option);
return option.value();
}
size_t
ircd::net::read_lowat(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::receive_low_watermark option{};
sd.get_option(option);
return option.value();
}
size_t
ircd::net::write_bufsz(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::send_buffer_size option{};
sd.get_option(option);
return option.value();
}
size_t
ircd::net::read_bufsz(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::receive_buffer_size option{};
sd.get_option(option);
return option.value();
}
time_t
ircd::net::linger(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::linger option;
sd.get_option(option);
return option.enabled()? option.timeout() : -1;
}
bool
ircd::net::keepalive(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::socket::keep_alive option;
sd.get_option(option);
return option.value();
}
bool
ircd::net::nodelay(const socket &socket)
{
const ip::tcp::socket &sd(socket);
ip::tcp::no_delay option;
sd.get_option(option);
return option.value();
}
bool
ircd::net::blocking(const socket &socket)
2018-01-02 01:16:39 +01:00
{
const ip::tcp::socket &sd(socket);
return !sd.non_blocking();
2017-09-30 08:04:41 +02:00
}
2017-10-19 10:30:19 +02:00
///////////////////////////////////////////////////////////////////////////////
//
// net/listener.h
//
/// Option to indicate if any listener sockets should be allowed to bind. If
/// false then no listeners should bind. This is only effective on startup
/// unless a conf item updated function is implemented here.
decltype(ircd::net::listen)
ircd::net::listen
{
{ "name", "ircd.net.listen" },
{ "default", true },
{ "persist", false },
};
2018-07-08 06:33:23 +02:00
//
// listener
//
std::string
ircd::net::cipher_list(const acceptor &a)
{
auto &ssl(const_cast<acceptor &>(a).ssl);
return openssl::cipher_list(*ssl.native_handle());
}
std::ostream &
ircd::net::operator<<(std::ostream &s, const listener &a)
{
s << *a.acceptor;
return s;
}
//
// listener::listener
//
ircd::net::listener::listener(const string_view &name,
const std::string &opts,
callback cb,
proffer pcb)
:listener
{
name, json::object{opts}, std::move(cb), std::move(pcb)
}
{
}
ircd::net::listener::listener(const string_view &name,
const json::object &opts,
callback cb,
proffer pcb)
:acceptor
{
std::make_shared<struct acceptor>(*this, name, opts, std::move(cb), std::move(pcb))
}
{
}
/// Cancels all pending accepts and handshakes and waits (yields ircd::ctx)
/// until report.
///
ircd::net::listener::~listener()
noexcept
{
if(acceptor)
acceptor->close();
}
ircd::string_view
ircd::net::listener::name()
const
{
const net::acceptor &a(*this);
return net::name(a);
}
ircd::net::listener::operator
ircd::json::object()
const
{
const net::acceptor &a(*this);
return net::config(a);
}
ircd::net::listener::operator
net::acceptor &()
{
assert(acceptor);
return *acceptor;
}
ircd::net::listener::operator
const net::acceptor &()
const
{
assert(acceptor);
return *acceptor;
}
2018-07-08 06:33:23 +02:00
//
// listener_udp
//
std::ostream &
ircd::net::operator<<(std::ostream &s, const listener_udp &a)
{
s << *a.acceptor;
return s;
}
//
// listener_udp::listener_udp
//
2018-07-08 06:33:23 +02:00
ircd::net::listener_udp::listener_udp(const string_view &name,
const std::string &opts)
:listener_udp
{
name, json::object{opts}
}
{
}
ircd::net::listener_udp::listener_udp(const string_view &name,
const json::object &opts)
:acceptor
{
std::make_unique<net::acceptor_udp>(name, opts)
2018-07-08 06:33:23 +02:00
}
{
}
ircd::net::listener_udp::~listener_udp()
noexcept
{
if(acceptor)
acceptor->join();
}
ircd::net::listener_udp::datagram &
ircd::net::listener_udp::operator()(datagram &datagram)
{
assert(acceptor);
return acceptor->operator()(datagram);
}
ircd::string_view
ircd::net::listener_udp::name()
const
{
assert(acceptor);
return acceptor->name;
}
ircd::net::listener_udp::operator
ircd::json::object()
const
{
assert(acceptor);
return acceptor->opts;
}
///////////////////////////////////////////////////////////////////////////////
2017-09-30 08:04:41 +02:00
//
// net/acceptor.h
2017-09-30 08:04:41 +02:00
//
namespace ircd::net
{
thread_local char logheadbuf[512];
}
2018-07-08 06:33:23 +02:00
//
// acceptor
2018-07-08 06:33:23 +02:00
//
decltype(ircd::net::acceptor::log)
ircd::net::acceptor::log
2017-09-30 08:04:41 +02:00
{
"net.listen"
2017-09-30 08:04:41 +02:00
};
decltype(ircd::net::acceptor::timeout)
ircd::net::acceptor::timeout
{
{ "name", "ircd.net.acceptor.timeout" },
{ "default", 12000L },
};
decltype(ircd::net::acceptor::ssl_cipher_list)
ircd::net::acceptor::ssl_cipher_list
{
{ "name", "ircd.net.acceptor.ssl.cipher.list" },
{ "default", string_view{} },
};
decltype(ircd::net::acceptor::ssl_cipher_blacklist)
ircd::net::acceptor::ssl_cipher_blacklist
{
{ "name", "ircd.net.acceptor.ssl.cipher.blacklist" },
{ "default", string_view{} },
};
bool
ircd::net::start(acceptor &a)
{
if(!a.a.is_open())
a.open();
if(!a.handle_set)
a.set_handle();
return true;
}
bool
ircd::net::stop(acceptor &a)
{
a.close();
return true;
}
ircd::json::object
ircd::net::config(const acceptor &a)
{
return a.opts;
}
ircd::string_view
ircd::net::name(const acceptor &a)
{
return a.name;
}
std::ostream &
ircd::net::operator<<(std::ostream &s, const acceptor &a)
{
thread_local char addrbuf[128];
s << "'" << a.name << "' @ [" << string(addrbuf, a.ep.address()) << "]:" << a.ep.port();
return s;
}
2018-07-08 06:33:23 +02:00
//
// acceptor::acceptor
2018-07-08 06:33:23 +02:00
//
ircd::net::acceptor::acceptor(net::listener &listener,
const string_view &name,
const json::object &opts,
listener::callback cb,
listener::proffer pcb)
2017-09-30 08:04:41 +02:00
try
:listener_
{
&listener
}
,name
2017-09-30 08:04:41 +02:00
{
name
2017-09-30 08:04:41 +02:00
}
,opts
{
opts
}
2017-09-30 08:04:41 +02:00
,backlog
{
//TODO: XXX
//boost::asio::ip::tcp::socket::max_connections <-- linkage failed?
std::min(opts.get<uint>("backlog", SOMAXCONN), uint(SOMAXCONN))
2017-09-30 08:04:41 +02:00
}
,cb
{
std::move(cb)
}
,pcb
{
std::move(pcb)
}
2017-09-30 08:04:41 +02:00
,ssl
{
asio::ssl::context::method::sslv23_server
}
,ep
{
ip::address::from_string(unquote(opts.get("host", "0.0.0.0"s))),
opts.get<uint16_t>("port", 8448L)
2017-09-30 08:04:41 +02:00
}
,a
{
ios::get()
2017-09-30 08:04:41 +02:00
}
{
configure(opts);
log::debug
{
log, "%s configured listener SSL", string(logheadbuf, *this)
};
open();
}
catch(const boost::system::system_error &e)
{
throw_system_error(e);
}
ircd::net::acceptor::~acceptor()
noexcept
{
if(accepting || handshaking)
log::critical
{
"The acceptor must not have clients during destruction!"
" (accepting:%zu handshaking:%zu)",
accepting,
handshaking
};
}
void
ircd::net::acceptor::open()
2017-09-30 08:04:41 +02:00
{
static const auto &max_connections
{
//TODO: XXX
//boost::asio::ip::tcp::socket::max_connections <-- linkage failed?
std::min(json::object(opts).get<uint>("max_connections", SOMAXCONN), uint(SOMAXCONN))
};
static const ip::tcp::acceptor::reuse_address reuse_address
{
true
};
2017-09-30 08:04:41 +02:00
assert(!interrupting);
interrupting = false;
2017-09-30 08:04:41 +02:00
a.open(ep.protocol());
a.set_option(reuse_address);
log::debug
{
log, "%s opened listener socket", string(logheadbuf, *this)
};
2017-09-30 08:04:41 +02:00
a.bind(ep);
log::debug
{
log, "%s bound listener socket", string(logheadbuf, *this)
};
2017-09-30 08:04:41 +02:00
a.listen(backlog);
log::debug
{
log, "%s listening (backlog: %lu, max connections: %zu)",
string(logheadbuf, *this),
backlog,
max_connections
};
2017-09-30 08:04:41 +02:00
}
void
ircd::net::acceptor::close()
2017-09-30 08:04:41 +02:00
{
if(!interrupting)
interrupt();
if(a.is_open())
a.close();
join();
log::debug
{
log, "%s listener finished", string(logheadbuf, *this)
};
2017-09-30 08:04:41 +02:00
}
void
ircd::net::acceptor::join()
noexcept try
{
if(!interrupting)
interrupt();
if(!ctx::current)
return;
joining.wait([this]
{
return !accepting && !handshaking;
});
interrupting = false;
}
catch(const std::exception &e)
{
2018-09-02 07:11:09 +02:00
log::error
{
log, "acceptor(%p) join: %s",
this,
e.what()
};
}
bool
ircd::net::acceptor::interrupt()
noexcept try
{
if(interrupting)
return false;
interrupting = true;
a.cancel();
return true;
}
catch(const boost::system::system_error &e)
{
2018-09-02 07:11:09 +02:00
log::error
{
log, "acceptor(%p) interrupt: %s",
this,
string(e)
};
return false;
}
/// Sets the next asynchronous handler to start the next accept sequence.
/// Each call to next() sets one handler which handles the connect for one
/// socket. After the connect, an asynchronous SSL handshake handler is set
/// for the socket.
bool
ircd::net::acceptor::set_handle()
2017-09-30 08:04:41 +02:00
try
{
assert(!handle_set);
handle_set = true;
auto sock
{
std::make_shared<ircd::socket>(ssl)
};
++accepting;
ip::tcp::socket &sd(*sock);
a.async_accept(sd, std::bind(&acceptor::accept, this, ph::_1, sock, weak_from(*this)));
return true;
2017-09-30 08:04:41 +02:00
}
catch(const std::exception &e)
{
throw panic
{
"%s: %s", string(logheadbuf, *this), e.what()
};
2017-09-30 08:04:41 +02:00
}
/// Callback for a socket connected. This handler then invokes the
/// asynchronous SSL handshake sequence.
///
2017-09-30 08:04:41 +02:00
void
ircd::net::acceptor::accept(const error_code &ec,
const std::shared_ptr<socket> sock,
const std::weak_ptr<acceptor> a)
2017-09-30 08:04:41 +02:00
noexcept try
{
if(unlikely(a.expired()))
2017-09-30 08:04:41 +02:00
return;
assert(bool(sock));
assert(handle_set);
assert(accepting > 0);
handle_set = false;
--accepting;
2018-09-02 07:11:09 +02:00
log::debug
{
log, "%s: accepted(%zu) %s %s",
string(logheadbuf, *this),
2018-09-02 07:11:09 +02:00
accepting,
loghead(*sock),
2018-09-02 07:11:09 +02:00
string(ec)
};
if(!check_accept_error(ec, *sock))
return;
2017-09-30 08:04:41 +02:00
// Call the proffer-callback if available. This allows the application
// to check whether to allow or deny this remote before the handshake.
if(pcb && !pcb(*listener_, remote_ipport(*sock)))
{
net::close(*sock, dc::RST, close_ignore);
return;
}
// Toggles the behavior of non-async functions; see func comment
blocking(*sock, false);
static const socket::handshake_type handshake_type
2017-09-30 08:04:41 +02:00
{
socket::handshake_type::server
};
auto handshake
{
std::bind(&acceptor::handshake, this, ph::_1, sock, a)
2017-09-30 08:04:41 +02:00
};
++handshaking;
sock->set_timeout(milliseconds(timeout));
sock->ssl.async_handshake(handshake_type, std::move(handshake));
}
catch(const ctx::interrupted &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::debug
{
log, "%s: acceptor interrupted %s %s",
string(logheadbuf, *this),
loghead(*sock),
2018-09-02 07:11:09 +02:00
string(ec)
};
error_code ec_;
sock->sd.close(ec_);
assert(!ec_);
joining.notify_all();
2017-09-30 08:04:41 +02:00
}
catch(const std::system_error &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::derror
{
log, "%s: %s in accept(): %s",
string(logheadbuf, *this),
loghead(*sock),
e.what()
2018-09-02 07:11:09 +02:00
};
error_code ec_;
sock->sd.close(ec_);
assert(!ec_);
joining.notify_all();
}
2017-09-30 08:04:41 +02:00
catch(const std::exception &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::error
{
log, "%s: %s in accept(): %s",
string(logheadbuf, *this),
loghead(*sock),
2018-09-02 07:11:09 +02:00
e.what()
};
error_code ec_;
sock->sd.close(ec_);
assert(!ec_);
joining.notify_all();
2017-09-30 08:04:41 +02:00
}
/// Error handler for the accept socket callback. This handler determines
/// whether or not the handler should return or continue processing the
/// result.
///
bool
ircd::net::acceptor::check_accept_error(const error_code &ec,
socket &sock)
2017-09-30 08:04:41 +02:00
{
using std::errc;
if(unlikely(interrupting))
throw ctx::interrupted();
if(likely(!ec))
return true;
if(system_category(ec)) switch(ec.value())
2017-09-30 08:04:41 +02:00
{
case int(errc::operation_canceled):
return false;
2017-09-30 08:04:41 +02:00
default:
break;
2017-09-30 08:04:41 +02:00
}
throw_system_error(ec);
2017-09-30 08:04:41 +02:00
}
void
ircd::net::acceptor::handshake(const error_code &ec,
const std::shared_ptr<socket> sock,
const std::weak_ptr<acceptor> a)
2017-09-30 08:04:41 +02:00
noexcept try
{
if(unlikely(a.expired()))
return;
--handshaking;
assert(bool(sock));
#ifdef RB_DEBUG
const auto &current_cipher
{
openssl::current_cipher(*sock)
};
2018-09-02 07:11:09 +02:00
log::debug
{
log, "%s handshook(%zu) cipher:%s %s",
loghead(*sock),
2018-09-02 07:11:09 +02:00
handshaking,
current_cipher?
openssl::name(*current_cipher):
"<NO CIPHER>"_sv,
2018-09-02 07:11:09 +02:00
string(ec)
};
#endif
2017-09-30 08:04:41 +02:00
check_handshake_error(ec, *sock);
sock->cancel_timeout();
assert(bool(cb));
cb(*listener_, sock);
2017-09-30 08:04:41 +02:00
}
catch(const ctx::interrupted &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::debug
{
log, "%s: SSL handshake interrupted %s %s",
string(logheadbuf, *this),
loghead(*sock),
2018-09-02 07:11:09 +02:00
string(ec)
};
net::close(*sock, dc::RST, close_ignore);
joining.notify_all();
}
catch(const std::system_error &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::derror
{
log, "%s: %s in handshake(): %s",
string(logheadbuf, *this),
loghead(*sock),
e.what()
2018-09-02 07:11:09 +02:00
};
net::close(*sock, dc::RST, close_ignore);
joining.notify_all();
}
2017-09-30 08:04:41 +02:00
catch(const std::exception &e)
{
assert(bool(sock));
2018-09-02 07:11:09 +02:00
log::error
{
log, "%s: %s in handshake(): %s",
string(logheadbuf, *this),
loghead(*sock),
2018-09-02 07:11:09 +02:00
e.what()
};
net::close(*sock, dc::RST, close_ignore);
joining.notify_all();
2017-09-30 08:04:41 +02:00
}
/// Error handler for the SSL handshake callback. This handler determines
/// whether or not the handler should return or continue processing the
/// result.
///
void
ircd::net::acceptor::check_handshake_error(const error_code &ec,
socket &sock)
2017-09-30 08:04:41 +02:00
{
using std::errc;
if(unlikely(interrupting))
throw ctx::interrupted();
if(likely(system_category(ec))) switch(ec.value())
2017-09-30 08:04:41 +02:00
{
case 0:
return;
case int(errc::operation_canceled):
if(sock.timedout)
throw_system_error(errc::timed_out);
else
break;
2017-09-30 08:04:41 +02:00
default:
break;
2017-09-30 08:04:41 +02:00
}
throw_system_error(ec);
2017-09-30 08:04:41 +02:00
}
bool
ircd::net::acceptor::handle_sni(SSL &ssl,
int &client_server)
try
{
const string_view &name
{
openssl::server_name(ssl)
};
log::debug
{
log, "%s offered SNI '%s'",
string(logheadbuf, *this),
name
};
return true;
}
catch(const sni_warning &e)
{
log::warning
{
log, "%s during SNI :%s",
string(logheadbuf, *this),
e.what()
};
throw;
}
catch(const std::exception &e)
{
log::error
{
log, "%s during SNI :%s",
string(logheadbuf, *this),
e.what()
};
throw;
}
static int
ircd_net_acceptor_handle_sni(SSL *const s,
int *const i,
void *const a)
noexcept try
{
if(unlikely(!s || !i || !a))
throw ircd::panic
{
"Missing arguments to callback s:%p i:%p a:%p", s, i, a
};
auto &acceptor
{
*reinterpret_cast<ircd::net::acceptor *>(a)
};
return acceptor.handle_sni(*s, *i)?
SSL_TLSEXT_ERR_OK:
SSL_TLSEXT_ERR_NOACK;
}
catch(const ircd::net::acceptor::sni_warning &)
{
return SSL_TLSEXT_ERR_ALERT_WARNING;
}
catch(const std::exception &)
{
return SSL_TLSEXT_ERR_ALERT_FATAL;
}
catch(...)
{
ircd::log::critical
{
ircd::net::acceptor::log,
"Acceptor SNI callback unhandled."
};
throw;
}
2017-09-30 08:04:41 +02:00
void
ircd::net::acceptor::configure(const json::object &opts)
2017-09-30 08:04:41 +02:00
{
log::debug
{
log, "%s preparing listener socket configuration...", string(logheadbuf, *this)
};
ulong flags(0);
if(opts.get<bool>("ssl_default_workarounds", false))
flags |= ssl.default_workarounds;
2017-09-30 08:04:41 +02:00
if(opts.get<bool>("ssl_single_dh_use", false))
flags |= ssl.single_dh_use;
if(opts.get<bool>("ssl_no_sslv2", false))
flags |= ssl.no_sslv2;
if(opts.get<bool>("ssl_no_sslv3", false))
flags |= ssl.no_sslv3;
if(opts.get<bool>("ssl_no_tlsv1", false))
flags |= ssl.no_tlsv1;
if(opts.get<bool>("ssl_no_tlsv1_1", false))
flags |= ssl.no_tlsv1_1;
if(opts.get<bool>("ssl_no_tlsv1_2", false))
flags |= ssl.no_tlsv1_2;
ssl.set_options(flags);
2017-09-30 08:04:41 +02:00
if(!empty(unquote(opts["ssl_cipher_list"])))
{
const json::string &list
{
opts["ssl_cipher_list"]
};
assert(ssl.native_handle());
openssl::set_cipher_list(*ssl.native_handle(), list);
}
else if(!empty(string_view(ssl_cipher_list)))
{
assert(ssl.native_handle());
const string_view &list(ssl_cipher_list);
openssl::set_cipher_list(*ssl.native_handle(), list);
}
else if(!empty(string_view(ssl_cipher_blacklist)))
{
assert(ssl.native_handle());
std::stringstream res;
const string_view &blacklist(ssl_cipher_blacklist);
const auto ciphers(openssl::cipher_list(*ssl.native_handle(), 0));
ircd::tokens(ciphers, ':', [&res, &blacklist]
(const string_view &cipher)
{
if(!has(blacklist, cipher))
res << cipher << ':';
});
std::string list(res.str());
assert(list.empty() || list.back() == ':');
list.pop_back();
openssl::set_cipher_list(*ssl.native_handle(), list);
}
if(!empty(unquote(opts["ssl_curve_list"])))
{
const json::string &list
{
opts["ssl_curve_list"]
};
assert(ssl.native_handle());
openssl::set_curves(*ssl.native_handle(), list);
}
if(!empty(unquote(opts["certificate_chain_path"])))
2017-09-30 08:04:41 +02:00
{
const std::string filename
{
unquote(opts["certificate_chain_path"])
2017-09-30 08:04:41 +02:00
};
if(!fs::exists(filename))
throw error
{
"%s: SSL certificate chain file @ `%s' not found",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
ssl.use_certificate_chain_file(filename);
log::info
{
log, "%s using certificate chain file '%s'",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
}
if(!empty(unquote(opts["certificate_pem_path"])))
2017-09-30 08:04:41 +02:00
{
const std::string filename
{
unquote(opts.get("certificate_pem_path", name + ".crt"))
2017-09-30 08:04:41 +02:00
};
if(!fs::exists(filename))
throw error
{
"%s: SSL certificate pem file @ `%s' not found",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
ssl.use_certificate_file(filename, asio::ssl::context::pem);
log::info
{
log, "%s using certificate file '%s'",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
}
if(!empty(unquote(opts["private_key_pem_path"])))
2017-09-30 08:04:41 +02:00
{
const std::string filename
{
unquote(opts.get("private_key_pem_path", name + ".crt.key"))
2017-09-30 08:04:41 +02:00
};
if(!fs::exists(filename))
throw error
{
"%s: SSL private key file @ `%s' not found",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
ssl.use_private_key_file(filename, asio::ssl::context::pem);
log::info
{
log, "%s using private key file '%s'",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
}
if(!empty(unquote(opts["tmp_dh_path"])))
2017-09-30 08:04:41 +02:00
{
const std::string filename
{
unquote(opts.at("tmp_dh_path"))
2017-09-30 08:04:41 +02:00
};
if(!fs::exists(filename))
throw error
{
"%s: SSL tmp dh file @ `%s' not found",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
ssl.use_tmp_dh_file(filename);
log::info
{
log, "%s using tmp dh file '%s'",
string(logheadbuf, *this),
filename
};
2017-09-30 08:04:41 +02:00
}
else if(!empty(unquote(opts["tmp_dh"])))
{
const const_buffer buf
{
unquote(opts.at("tmp_dh"))
};
ssl.use_tmp_dh(buf);
log::info
{
log, "%s using DH params supplied in options (%zu bytes)",
string(logheadbuf, *this),
size(buf)
};
}
else
{
assert(ssl.native_handle());
openssl::set_ecdh_auto(*ssl.native_handle(), true);
}
//TODO: XXX
ssl.set_password_callback([this]
(const auto &size, const auto &purpose)
{
log::notice
{
log, "%s asking for password with purpose '%s' (size: %zu)",
string(logheadbuf, *this),
purpose,
size
};
//XXX: TODO
assert(0);
return "foobar";
});
SSL_CTX_set_tlsext_servername_callback(ssl.native_handle(), ircd_net_acceptor_handle_sni);
SSL_CTX_set_tlsext_servername_arg(ssl.native_handle(), this);
2017-09-30 08:04:41 +02:00
}
2018-07-08 06:33:23 +02:00
//
// acceptor_udp
2018-07-08 06:33:23 +02:00
//
std::ostream &
ircd::net::operator<<(std::ostream &s, const acceptor_udp &a)
2018-07-08 06:33:23 +02:00
{
s << "'" << a.name << "' @ [" << string(a.ep.address()) << "]:" << a.ep.port();
return s;
}
//
// acceptor_udp::acceptor
2018-07-08 06:33:23 +02:00
//
ircd::net::acceptor_udp::acceptor_udp(const string_view &name,
const json::object &opts)
2018-07-08 06:33:23 +02:00
try
:name
{
name
}
,opts
{
opts
}
,ep
{
ip::address::from_string(unquote(opts.get("host", "0.0.0.0"s))),
opts.get<uint16_t>("port", 8448L)
}
,a
{
ios::get()
2018-07-08 06:33:23 +02:00
}
{
static const ip::udp::socket::reuse_address reuse_address
{
true
};
a.open(ep.protocol());
a.set_option(reuse_address);
log::debug
{
log, "%s opened listener socket", string(logheadbuf, *this)
2018-07-08 06:33:23 +02:00
};
a.bind(ep);
log::debug
{
log, "%s bound listener socket", string(logheadbuf, *this)
2018-07-08 06:33:23 +02:00
};
}
catch(const boost::system::system_error &e)
{
throw_system_error(e);
2018-07-08 06:33:23 +02:00
}
ircd::net::acceptor_udp::~acceptor_udp()
2018-07-08 06:33:23 +02:00
noexcept
{
}
void
ircd::net::acceptor_udp::join()
2018-07-08 06:33:23 +02:00
noexcept try
{
interrupt();
joining.wait([this]
{
return waiting == 0;
});
}
catch(const std::exception &e)
{
log::error
{
log, "acceptor(%p) join: %s", this, e.what()
};
}
bool
ircd::net::acceptor_udp::interrupt()
2018-07-08 06:33:23 +02:00
noexcept try
{
a.cancel();
return true;
}
catch(const boost::system::system_error &e)
{
log::error
{
log, "acceptor(%p) interrupt: %s", this, string(e)
};
return false;
}
ircd::net::listener_udp::datagram &
ircd::net::acceptor_udp::operator()(datagram &datagram)
2018-07-08 06:33:23 +02:00
{
assert(ctx::current);
const auto flags
{
this->flags(datagram.flag)
};
const auto interruption{[this]
(ctx::ctx *const &)
{
this->interrupt();
}};
const scope_count waiting
2018-07-08 06:33:23 +02:00
{
this->waiting
};
2018-07-08 06:33:23 +02:00
ip::udp::endpoint ep;
size_t rlen; continuation
2018-07-08 06:33:23 +02:00
{
continuation::asio_predicate, interruption, [this, &rlen, &datagram, &ep, &flags]
(auto &yield)
{
rlen = a.async_receive_from(datagram.mbufs, ep, flags, yield);
}
2018-07-08 06:33:23 +02:00
};
datagram.remote = make_ipport(ep);
datagram.mbuf = {data(datagram.mbuf), rlen};
2018-07-08 06:33:23 +02:00
return datagram;
}
boost::asio::ip::udp::socket::message_flags
ircd::net::acceptor_udp::flags(const flag &flag)
2018-07-08 06:33:23 +02:00
{
ip::udp::socket::message_flags ret{0};
if(flag & flag::PEEK)
ret |= ip::udp::socket::message_peek;
return ret;
}
//
// listener_udp::datagram
//
ircd::net::listener_udp::datagram::datagram(const const_buffer &buf,
const ipport &remote,
const enum flag &flag)
:cbuf{buf}
,cbufs{&cbuf, 1}
,remote{remote}
,flag{flag}
{}
ircd::net::listener_udp::datagram::datagram(const mutable_buffer &buf,
const enum flag &flag)
:mbuf{buf}
,mbufs{&mbuf, 1}
,flag{flag}
{}
///////////////////////////////////////////////////////////////////////////////
//
// net/scope_timeout.h
//
ircd::net::scope_timeout::scope_timeout(socket &socket,
const milliseconds &timeout)
:s
{
timeout < 0ms? nullptr : &socket
}
{
if(timeout < 0ms)
return;
socket.set_timeout(timeout);
}
ircd::net::scope_timeout::scope_timeout(socket &socket,
const milliseconds &timeout,
handler callback)
:s
{
timeout < 0ms? nullptr : &socket
}
{
if(timeout < 0ms)
return;
socket.set_timeout(timeout, [callback(std::move(callback))]
(const error_code &ec)
{
const bool &timed_out{!ec}; // success = timeout
callback(timed_out);
});
}
ircd::net::scope_timeout::scope_timeout(scope_timeout &&other)
noexcept
:s{std::move(other.s)}
{
other.s = nullptr;
}
ircd::net::scope_timeout &
ircd::net::scope_timeout::operator=(scope_timeout &&other)
noexcept
{
this->~scope_timeout();
s = std::move(other.s);
return *this;
}
ircd::net::scope_timeout::~scope_timeout()
noexcept
{
cancel();
}
bool
ircd::net::scope_timeout::cancel()
noexcept try
{
if(!this->s)
return false;
auto *const s{this->s};
this->s = nullptr;
s->cancel_timeout();
return true;
}
catch(const std::exception &e)
{
log::error
{
log, "socket(%p) scope_timeout::cancel: %s",
(const void *)s,
e.what()
};
return false;
}
bool
ircd::net::scope_timeout::release()
{
const auto s{this->s};
this->s = nullptr;
return s != nullptr;
}
2017-09-30 08:04:41 +02:00
///////////////////////////////////////////////////////////////////////////////
//
2017-10-19 10:30:19 +02:00
// net/socket.h
2017-09-30 08:04:41 +02:00
//
boost::asio::ssl::context
ircd::net::sslv23_client
{
boost::asio::ssl::context::method::sslv23_client
};
decltype(ircd::net::socket::count)
ircd::net::socket::count
{};
decltype(ircd::net::socket::instances)
ircd::net::socket::instances
{};
2017-09-30 08:04:41 +02:00
//
// socket
2017-09-30 08:04:41 +02:00
//
ircd::net::socket::socket(asio::ssl::context &ssl,
boost::asio::io_service &ios)
:sd
{
ios
}
,ssl
2017-09-30 08:04:41 +02:00
{
this->sd, ssl
2017-09-30 08:04:41 +02:00
}
,timer
2017-09-30 08:04:41 +02:00
{
ios
2017-09-30 08:04:41 +02:00
}
{
++instances;
2017-09-30 08:04:41 +02:00
}
/// The dtor asserts that the socket is not open/connected requiring a
/// an SSL close_notify. There's no more room for async callbacks via
/// shared_ptr after this dtor.
2017-09-30 08:04:41 +02:00
ircd::net::socket::~socket()
noexcept try
{
assert(instances > 0);
if(unlikely(--instances == 0))
net::dock.notify_all();
if(unlikely(RB_DEBUG_LEVEL && opened(*this)))
throw panic
{
"Failed to ensure socket(%p) is disconnected from %s before dtor.",
this,
string(remote())
};
}
catch(const std::exception &e)
2017-09-30 08:04:41 +02:00
{
log::critical
{
log, "socket(%p) close: %s",
this,
e.what()
};
return;
2017-09-30 08:04:41 +02:00
}
void
ircd::net::socket::connect(const endpoint &ep,
const open_opts &opts,
eptr_handler callback)
2017-09-30 08:04:41 +02:00
{
log::debug
{
log, "socket:%lu attempting connect remote[%s] to:%ld$ms",
this->id,
string(ep),
opts.connect_timeout.count()
};
2017-10-25 19:02:45 +02:00
auto connect_handler
{
std::bind(&socket::handle_connect, this, weak_from(*this), opts, std::move(callback), ph::_1)
};
set_timeout(opts.connect_timeout);
sd.async_connect(ep, std::move(connect_handler));
}
void
ircd::net::socket::handshake(const open_opts &opts,
eptr_handler callback)
{
log::debug
{
log, "%s handshaking to '%s' for '%s' to:%ld$ms",
loghead(*this),
opts.send_sni?
server_name(opts):
"<no sni>"_sv,
common_name(opts),
opts.handshake_timeout.count()
};
auto handshake_handler
{
std::bind(&socket::handle_handshake, this, weak_from(*this), std::move(callback), ph::_1)
};
auto verify_handler
{
std::bind(&socket::handle_verify, this, ph::_1, ph::_2, opts)
};
set_timeout(opts.handshake_timeout);
if(opts.send_sni)
openssl::server_name(*this, server_name(opts));
ssl.set_verify_callback(std::move(verify_handler));
ssl.async_handshake(handshake_type::client, std::move(handshake_handler));
}
void
ircd::net::socket::disconnect(const close_opts &opts,
eptr_handler callback)
try
2017-09-30 08:04:41 +02:00
{
if(!sd.is_open())
{
call_user(callback, {});
return;
}
2017-09-30 08:04:41 +02:00
log::debug
{
log, "%s disconnect type:%d user: in:%zu out:%zu",
loghead(*this),
uint(opts.type),
in.bytes,
out.bytes
};
assert(!fini);
fini = true;
cancel();
if(opts.sopts)
set(*this, *opts.sopts);
switch(opts.type)
2017-09-30 08:04:41 +02:00
{
case dc::RST:
sd.close();
break;
case dc::FIN:
sd.shutdown(ip::tcp::socket::shutdown_both);
break;
case dc::FIN_SEND:
sd.shutdown(ip::tcp::socket::shutdown_send);
break;
case dc::FIN_RECV:
sd.shutdown(ip::tcp::socket::shutdown_receive);
break;
2017-09-30 08:04:41 +02:00
case dc::SSL_NOTIFY:
{
auto disconnect_handler
2017-09-30 08:04:41 +02:00
{
std::bind(&socket::handle_disconnect, this, shared_from(*this), std::move(callback), ph::_1)
};
set_timeout(opts.timeout);
ssl.async_shutdown(std::move(disconnect_handler));
return;
2017-09-30 08:04:41 +02:00
}
}
call_user(callback, {});
2017-09-30 08:04:41 +02:00
}
catch(const boost::system::system_error &e)
{
log::derror
{
log, "socket:%lu disconnect type:%d :%s",
this->id,
uint(opts.type),
e.what()
};
call_user(callback, make_error_code(e));
}
catch(const std::exception &e)
{
throw panic
{
"socket:%lu disconnect: type: %d: %s",
this->id,
uint(opts.type),
e.what()
};
}
2017-09-30 08:04:41 +02:00
void
2017-09-30 08:04:41 +02:00
ircd::net::socket::cancel()
noexcept
2017-09-30 08:04:41 +02:00
{
cancel_timeout();
boost::system::error_code ec;
sd.cancel(ec);
if(likely(!ec))
return;
log::dwarning
{
log, "socket:%lu cancel :%s",
this->id,
string(ec)
};
2017-09-30 08:04:41 +02:00
}
void
ircd::net::socket::wait(const wait_opts &opts,
wait_callback_eptr callback)
2017-09-30 08:04:41 +02:00
{
wait(opts, [callback(std::move(callback))]
(const error_code &ec)
{
if(likely(!ec))
return callback(std::exception_ptr{});
callback(make_system_eptr(ec));
});
2017-09-30 08:04:41 +02:00
}
/// Asynchronous callback when the socket is ready
///
/// Overload for operator() without a timeout. see: operator()
2017-09-30 08:04:41 +02:00
///
void
ircd::net::socket::wait(const wait_opts &opts)
try
2017-09-30 08:04:41 +02:00
{
const auto interruption{[this]
(ctx::ctx *const &)
{
this->cancel();
}};
const scope_timeout timeout
2017-09-30 08:04:41 +02:00
{
*this, opts.timeout
2017-09-30 08:04:41 +02:00
};
switch(opts.type)
2018-01-01 10:42:00 +01:00
{
case ready::READ: continuation
{
continuation::asio_predicate, interruption, [this]
(auto &yield)
{
sd.async_wait(wait_type::wait_read, yield);
}
};
break;
case ready::WRITE: continuation
{
continuation::asio_predicate, interruption, [this]
(auto &yield)
{
sd.async_wait(wait_type::wait_write, yield);
}
};
break;
2018-01-01 10:42:00 +01:00
case ready::ERROR: continuation
{
continuation::asio_predicate, interruption, [this]
(auto &yield)
{
sd.async_wait(wait_type::wait_error, yield);
}
};
break;
default:
throw ircd::not_implemented{};
2018-01-01 10:42:00 +01:00
}
}
catch(const boost::system::system_error &e)
{
if(e.code() == boost::system::errc::operation_canceled && timedout)
throw_system_error(std::errc::timed_out);
throw_system_error(e);
}
/// Asynchronous callback when the socket is ready
///
/// This function calls back the handler when the socket is ready
/// for the operation of the specified type.
///
void
ircd::net::socket::wait(const wait_opts &opts,
wait_callback_ec callback)
try
{
set_timeout(opts.timeout);
switch(opts.type)
{
case ready::ERROR:
{
auto handle
{
std::bind(&socket::handle_ready, this, weak_from(*this), opts.type, std::move(callback), ph::_1, 0UL)
};
sd.async_wait(wait_type::wait_error, std::move(handle));
break;
}
case ready::WRITE:
{
auto handle
{
std::bind(&socket::handle_ready, this, weak_from(*this), opts.type, std::move(callback), ph::_1, 0UL)
};
sd.async_wait(wait_type::wait_write, std::move(handle));
break;
}
case ready::READ:
{
static char buf[1] alignas(16);
static const ilist<mutable_buffer> bufs{buf};
__builtin_prefetch(buf, 1, 0); // 1 = write, 0 = no cache
auto handle
{
std::bind(&socket::handle_ready, this, weak_from(*this), opts.type, std::move(callback), ph::_1, ph::_2)
};
// The problem here is that waiting on the sd doesn't account for bytes
// read into SSL that we didn't consume yet. If something is stuck in
// those userspace buffers, the socket won't know about it and perform
// the wait. ASIO should fix this by adding a ssl::stream.wait() method
// which will bail out immediately in this case before passing up to the
// real socket wait.
if(SSL_peek(ssl.native_handle(), buf, sizeof(buf)) >= ssize_t(sizeof(buf)))
{
ircd::post([handle(std::move(handle))]
{
handle(error_code{}, 1UL);
});
break;
}
// The problem here is that the wait operation gives ec=success on both a
// socket error and when data is actually available. We then have to check
// using a non-blocking peek in the handler. By doing it this way here we
// just get the error in the handler's ec.
sd.async_receive(bufs, sd.message_peek, std::move(handle));
//sd.async_wait(wait_type::wait_read, std::move(handle));
break;
}
default:
throw ircd::not_implemented{};
}
2017-09-30 08:04:41 +02:00
}
catch(const boost::system::system_error &e)
{
cancel_timeout();
throw_system_error(e);
}
catch(...)
{
cancel_timeout();
throw;
}
2017-09-30 08:04:41 +02:00
void
ircd::net::socket::check(const ready &type)
{
const error_code ec
{
check(std::nothrow, type)
};
if(ec.value())
throw_system_error(ec);
}
std::error_code
ircd::net::socket::check(std::nothrow_t,
const ready &type)
noexcept
{
assert(type == ready::ERROR);
static char buf[1] alignas(16);
static const ilist<mutable_buffer> bufs{buf};
static const std::error_code eof
{
make_error_code(boost::system::error_code
{
boost::asio::error::eof, boost::asio::error::get_misc_category()
})
};
std::error_code ret;
if(SSL_peek(ssl.native_handle(), buf, sizeof(buf)) >= ssize_t(sizeof(buf)))
return ret;
assert(!blocking(*this));
boost::system::error_code ec;
if(sd.receive(bufs, sd.message_peek, ec) >= ssize_t(sizeof(buf)))
{
assert(!ec.value());
return ret;
}
if(ec.value())
ret = make_error_code(ec);
else
ret = eof;
if(ret == std::errc::resource_unavailable_try_again)
ret = {};
return ret;
}
2017-09-30 08:04:41 +02:00
void
ircd::net::socket::handle_ready(const std::weak_ptr<socket> wp,
const net::ready type,
const ec_handler callback,
error_code ec,
const size_t bytes)
noexcept try
2017-09-30 08:04:41 +02:00
{
using std::errc;
2018-01-01 10:42:00 +01:00
// After life_guard is constructed it is safe to use *this in this frame.
const life_guard<socket> s{wp};
if(!timedout && !is(ec, errc::operation_canceled) && !fini)
cancel_timeout();
if(timedout && is(ec, errc::operation_canceled))
ec = make_error_code(errc::timed_out);
if(unlikely(!ec && !sd.is_open()))
ec = make_error_code(errc::bad_file_descriptor);
if(type == ready::READ && !ec && bytes == 0)
ec = error_code{asio::error::eof, asio::error::get_misc_category()};
log::debug
{
log, "%s ready %s %s avail:%zu:%zu:%d",
loghead(*this),
reflect(type),
string(ec),
type == ready::READ? bytes : 0UL,
type == ready::READ? available(*this) : 0UL,
SSL_pending(ssl.native_handle())
};
2017-09-30 08:04:41 +02:00
call_user(callback, ec);
}
catch(const std::bad_weak_ptr &e)
{
// This handler may still be registered with asio after the socket destructs, so
// the weak_ptr will indicate that fact. However, this is never intended and is
// a debug assertion which should be corrected.
log::warning
{
log, "socket(%p) belated callback to handler... (%s)",
this,
e.what()
};
assert(0);
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) handle: %s",
this,
e.what()
};
assert(0);
call_user(callback, ec);
2017-09-30 08:04:41 +02:00
}
void
ircd::net::socket::handle_timeout(const std::weak_ptr<socket> wp,
ec_handler callback,
error_code ec)
noexcept try
{
if(unlikely(wp.expired()))
return;
// We increment our end of the timer semaphore. If the count is still
// behind the other end of the semaphore, this callback was sitting in
// the ios queue while the timer was given a new task; any effects here
// will be erroneously bleeding into the next timeout. However the callback
// is still invoked to satisfy the user's expectation for receiving it.
assert(timer_sem[0] < timer_sem[1]);
if(++timer_sem[0] == timer_sem[1] && timer_set) switch(ec.value())
{
// A 'success' for this handler means there was a timeout on the socket
case 0:
{
assert(timedout == false);
timedout = true;
sd.cancel();
break;
}
// A cancelation means there was no timeout.
case int(std::errc::operation_canceled):
{
assert(ec.category() == std::system_category());
assert(timedout == false);
break;
}
// All other errors are unexpected, logged and ignored here.
default: throw panic
{
"socket(%p): unexpected: %s\n", (const void *)this, string(ec)
};
}
else ec = make_error_code(std::errc::operation_canceled);
if(callback)
call_user(callback, ec);
}
catch(const boost::system::system_error &e)
{
using std::errc;
const auto &ec_(e.code());
if(system_category(ec_)) switch(ec_.value())
{
case int(errc::bad_file_descriptor):
{
if(fini)
break;
2019-02-16 01:47:00 +01:00
[[fallthrough]];
}
default:
{
assert(0);
log::critical
{
log, "socket(%p) handle timeout: %s",
(const void *)this,
string(e)
};
break;
}
}
if(callback)
call_user(callback, ec_);
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) handle timeout: %s",
(const void *)this,
e.what()
};
assert(0);
if(callback)
call_user(callback, ec);
}
void
ircd::net::socket::handle_connect(std::weak_ptr<socket> wp,
const open_opts opts,
eptr_handler callback,
error_code ec)
noexcept try
{
using std::errc;
const life_guard<socket> s{wp};
log::debug
{
log, "%s connect %s",
loghead(*this),
string(ec)
};
// The timer was set by socket::connect() and may need to be canceled.
if(!timedout && !is(ec, errc::operation_canceled) && !fini)
cancel_timeout();
if(timedout && is(ec, errc::operation_canceled))
ec = make_error_code(errc::timed_out);
// A connect error; abort here by calling the user back with error.
if(ec)
return call_user(callback, ec);
// Toggles the behavior of non-async functions; see func comment
blocking(*this, false);
// Try to set the user's socket options now; if something fails we can
// invoke their callback with the error from the exception handler.
if(opts.sopts)
set(*this, *opts.sopts);
// The user can opt out of performing the handshake here.
if(!opts.handshake)
return call_user(callback, ec);
handshake(opts, std::move(callback));
}
catch(const std::bad_weak_ptr &e)
{
log::warning
{
log, "socket(%p) belated callback to handle_connect... (%s)",
this,
e.what()
};
assert(0);
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) handle_connect: %s",
this,
e.what()
};
assert(0);
call_user(callback, ec);
}
void
ircd::net::socket::handle_disconnect(std::shared_ptr<socket> s,
eptr_handler callback,
error_code ec)
noexcept try
{
using std::errc;
assert(fini);
if(!timedout && ec != errc::operation_canceled)
cancel_timeout();
if(timedout && ec == errc::operation_canceled)
ec = make_error_code(errc::timed_out);
log::debug
{
log, "%s disconnect %s",
loghead(*this),
string(ec)
};
// This ignores EOF and turns it into a success to alleviate user concern.
if(ec.category() == asio::error::get_misc_category())
if(ec.value() == asio::error::eof)
ec = error_code{};
sd.close();
call_user(callback, ec);
}
catch(const boost::system::system_error &e)
{
log::error
{
log, "socket(%p) disconnect: %s",
this,
e.what()
};
assert(0);
call_user(callback, e.code());
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) disconnect: %s",
this,
e.what()
};
assert(0);
call_user(callback, ec);
}
void
ircd::net::socket::handle_handshake(std::weak_ptr<socket> wp,
eptr_handler callback,
error_code ec)
noexcept try
{
using std::errc;
const life_guard<socket> s{wp};
if(!timedout && ec != errc::operation_canceled && !fini)
cancel_timeout();
if(timedout && ec == errc::operation_canceled)
ec = make_error_code(errc::timed_out);
#ifdef RB_DEBUG
const auto &current_cipher
{
openssl::current_cipher(*this)
};
log::debug
{
log, "%s handshake cipher:%s %s",
loghead(*this),
current_cipher?
openssl::name(*current_cipher):
"<NO CIPHER>"_sv,
string(ec)
};
#endif
// This is the end of the asynchronous call chain; the user is called
// back with or without error here.
call_user(callback, ec);
}
catch(const boost::system::system_error &e)
{
log::error
{
log, "socket(%p) after handshake: %s",
this,
e.what()
};
assert(0);
call_user(callback, e.code());
}
catch(const std::bad_weak_ptr &e)
{
log::warning
{
log, "socket(%p) belated callback to handle_handshake... (%s)",
this,
e.what()
};
assert(0);
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) handle_handshake: %s",
this,
e.what()
};
assert(0);
call_user(callback, ec);
}
bool
ircd::net::socket::handle_verify(const bool valid,
asio::ssl::verify_context &vc,
const open_opts &opts)
noexcept try
{
// `valid` indicates whether or not there's an anomaly with the
// certificate; if so, it is usually enumerated by the `switch()`
// statement below. If `valid` is false, this function can return
// true to continue but it appears this function will be called a
// second time with `valid=true`.
//
// TODO: XXX: This behavior must be confirmed since we return true
// TODO: XXX: early on recoverable errors and skip other checks
// TODO: XXX: expecting a second call..
//
// The user can set this option to bypass verification.
if(!opts.verify_certificate)
return true;
// X509_STORE_CTX &
assert(vc.native_handle());
const auto &stctx{*vc.native_handle()};
const auto &cert{openssl::current_cert(stctx)};
const auto reject{[&stctx, &opts]
{
throw inauthentic
{
"%s #%ld: %s",
common_name(opts),
openssl::get_error(stctx),
openssl::get_error_string(stctx)
};
}};
if(!valid)
{
thread_local char buf[4_KiB];
2018-01-12 03:41:27 +01:00
const critical_assertion ca;
log::warning
{
log, "verify[%s]: %s :%s",
common_name(opts),
openssl::get_error_string(stctx),
openssl::print_subject(buf, cert)
};
}
const auto err
{
openssl::get_error(stctx)
};
if(!valid) switch(err)
{
case X509_V_OK:
assert(0);
default:
reject();
break;
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
assert(openssl::get_error_depth(stctx) == 0);
if(opts.allow_self_signed)
return true;
reject();
break;
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
if(opts.allow_self_signed || opts.allow_self_chain)
return true;
reject();
break;
case X509_V_ERR_CERT_HAS_EXPIRED:
if(opts.allow_expired)
return true;
reject();
break;
}
const bool verify_common_name
{
opts.verify_common_name &&
(opts.verify_self_signed_common_name && err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
};
if(verify_common_name)
{
if(unlikely(empty(common_name(opts))))
throw inauthentic
{
"No common name specified in connection options"
};
//TODO: this object makes an std::string
boost::asio::ssl::rfc2818_verification verifier
{
std::string(common_name(opts))
};
if(!verifier(true, vc))
{
thread_local char buf[rfc1035::NAME_BUF_SIZE];
2018-01-12 03:41:27 +01:00
const critical_assertion ca;
throw inauthentic
{
"/CN=%s does not match target host %s :%s",
openssl::subject_common_name(buf, cert),
common_name(opts),
openssl::get_error_string(stctx)
};
}
}
2018-01-12 03:41:27 +01:00
{
thread_local char buf[4_KiB];
2018-01-12 03:41:27 +01:00
const critical_assertion ca;
log::debug
{
log, "verify[%s]: %s",
common_name(opts),
openssl::print_subject(buf, cert)
};
2018-01-12 03:41:27 +01:00
}
return true;
}
catch(const inauthentic &e)
{
log::error
{
log, "Certificate rejected: %s", e.what()
};
return false;
}
catch(const std::exception &e)
{
log::critical
{
log, "Certificate error: %s", e.what()
};
return false;
}
2018-01-01 10:42:00 +01:00
void
ircd::net::socket::call_user(const ec_handler &callback,
2018-01-01 10:42:00 +01:00
const error_code &ec)
noexcept try
{
callback(ec);
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) async handler: unhandled exception: %s",
this,
e.what()
};
close(*this, dc::RST, close_ignore);
2018-01-01 10:42:00 +01:00
}
void
ircd::net::socket::call_user(const eptr_handler &callback,
const error_code &ec)
noexcept try
{
if(likely(!ec))
return callback(std::exception_ptr{});
callback(make_system_eptr(ec));
}
catch(const std::exception &e)
{
log::critical
{
log, "socket(%p) async handler: unhandled exception: %s",
this,
e.what()
};
}
ircd::milliseconds
ircd::net::socket::cancel_timeout()
noexcept
{
const auto exp
{
timer.expires_from_now()
};
const auto ret
{
duration_cast<milliseconds>(exp)
};
timer_set = false;
timedout = false;
boost::system::error_code ec;
timer.cancel(ec);
assert(!ec);
return ret;
}
2017-09-30 08:04:41 +02:00
void
ircd::net::socket::set_timeout(const milliseconds &t)
{
set_timeout(t, nullptr);
2017-09-30 08:04:41 +02:00
}
void
ircd::net::socket::set_timeout(const milliseconds &t,
ec_handler callback)
2017-09-30 08:04:41 +02:00
{
cancel_timeout();
2017-09-30 08:04:41 +02:00
if(t < milliseconds(0))
return;
auto handler
{
std::bind(&socket::handle_timeout, this, weak_from(*this), std::move(callback), ph::_1)
};
// The sending-side of the semaphore is incremented here to invalidate any
// pending/queued callbacks to handle_timeout as to not conflict now. The
// required companion boolean timer_set is also lit here.
assert(timer_sem[0] <= timer_sem[1]);
assert(timer_set == false);
assert(timedout == false);
++timer_sem[1];
timer_set = true;
2017-09-30 08:04:41 +02:00
timer.expires_from_now(t);
timer.async_wait(std::move(handler));
2017-09-30 08:04:41 +02:00
}
boost::asio::ip::tcp::endpoint
ircd::net::socket::local()
const
{
return sd.local_endpoint();
}
boost::asio::ip::tcp::endpoint
ircd::net::socket::remote()
const
{
return sd.remote_endpoint();
}
ircd::net::socket::operator
SSL &()
{
assert(ssl.native_handle());
return *ssl.native_handle();
}
ircd::net::socket::operator
const SSL &()
const
{
using type = typename std::remove_const<decltype(socket::ssl)>::type;
auto &ssl(const_cast<type &>(this->ssl));
assert(ssl.native_handle());
return *ssl.native_handle();
}
///////////////////////////////////////////////////////////////////////////////
//
// net/dns.h
//
decltype(ircd::net::dns::log)
ircd::net::dns::log
{
"net.dns"
};
/// Linkage for default opts
decltype(ircd::net::dns::opts_default)
ircd::net::dns::opts_default;
decltype(ircd::net::dns::prefetch_ipport)
ircd::net::dns::prefetch_ipport{[]
(std::exception_ptr, const auto &hostport, const auto &record)
{
// Do nothing; cache already updated if necessary
}};
decltype(ircd::net::dns::prefetch_SRV)
ircd::net::dns::prefetch_SRV{[]
(std::exception_ptr, const auto &hostport, const auto &record)
{
// Do nothing; cache already updated if necessary
}};
decltype(ircd::net::dns::prefetch_A)
ircd::net::dns::prefetch_A{[]
(std::exception_ptr, const auto &hostport, const auto &record)
{
// Do nothing; cache already updated if necessary
}};
/// Convenience composition with a single ipport callback. This is the result of
/// an automatic chain of queries such as SRV and A/AAAA based on the input and
/// intermediate results.
void
ircd::net::dns::resolve(const hostport &hp,
const opts &op,
callback_ipport_one cb)
{
using prototype = void (const hostport &, opts, callback_ipport_one);
static mods::import<prototype> function
{
"s_dns", "_resolve_ipport"
};
function(hp, op, std::move(cb));
}
/// Convenience callback with a single SRV record which was selected from
/// the vector with stochastic respect for weighting and priority.
2018-01-04 22:34:07 +01:00
void
ircd::net::dns::resolve(const hostport &hp,
const opts &op,
callback_SRV_one cb)
{
using prototype = void (const hostport &, opts, callback_SRV_one);
static mods::import<prototype> function
{
"s_dns", "_resolve__SRV"
};
function(hp, op, std::move(cb));
}
/// Convenience callback with a single A record which was selected from
/// the vector randomly.
2018-01-04 22:34:07 +01:00
void
ircd::net::dns::resolve(const hostport &hp,
const opts &op,
callback_A_one cb)
{
using prototype = void (const hostport &, opts, callback_A_one);
static mods::import<prototype> function
{
"s_dns", "_resolve__A"
};
function(hp, op, std::move(cb));
}
/// Fundamental callback with a vector of abstract resource records.
void
ircd::net::dns::resolve(const hostport &hp,
const opts &op,
callback cb)
{
using prototype = void (const hostport &, const opts &, callback);
static mods::import<prototype> function
{
"s_dns", "_resolve__"
};
function(hp, op, std::move(cb));
}
/// Really assumptional and hacky right now. We're just assuming the SRV
/// key is the first two elements of a dot-delimited string which start
/// with underscores. If that isn't good enough in the future this will rot
/// and become a regression hazard.
ircd::string_view
ircd::net::dns::unmake_SRV_key(const string_view &key)
{
if(token_count(key, '.') < 3)
return key;
if(!startswith(token(key, '.', 0), '_'))
return key;
if(!startswith(token(key, '.', 1), '_'))
return key;
return tokens_after(key, '.', 1);
}
ircd::string_view
ircd::net::dns::make_SRV_key(const mutable_buffer &out,
const hostport &hp,
const opts &opts)
{
if(!opts.srv)
return fmt::sprintf
{
out, "_%s._%s.%s", service(hp), opts.proto, host(hp)
};
else
return fmt::sprintf
{
out, "%s%s", opts.srv, host(hp)
};
}
//
// cache
//
ircd::rfc1035::record *
ircd::net::dns::cache::put_error(const rfc1035::question &question,
const uint &code)
try
{
using prototype = rfc1035::record *(const rfc1035::question &, const uint &);
static mods::import<prototype> function
{
"s_dns", "_put_error"
};
return function(question, code);
}
catch(const mods::unavailable &e)
{
log::dwarning
{
log, "Failed to put error for '%s' in DNS cache :%s",
question.name,
e.what()
};
return nullptr;
}
ircd::rfc1035::record *
ircd::net::dns::cache::put(const rfc1035::question &question,
const rfc1035::answer &answer)
try
{
using prototype = rfc1035::record *(const rfc1035::question &, const rfc1035::answer &);
static mods::import<prototype> function
{
"s_dns", "_put"
};
return function(question, answer);
}
catch(const mods::unavailable &e)
{
log::dwarning
{
log, "Failed to put '%s' in DNS cache :%s",
question.name,
e.what()
};
return nullptr;
}
/// This function has an opportunity to respond from the DNS cache. If it
/// returns true, that indicates it responded by calling back the user and
/// nothing further should be done for them. If it returns false, that
/// indicates it did not respond and to proceed normally. The response can
/// be of a cached successful result, or a cached error. Both will return
/// true.
2018-03-02 08:08:22 +01:00
bool
ircd::net::dns::cache::get(const hostport &hp,
const opts &o,
const callback &cb)
try
2018-03-02 08:08:22 +01:00
{
using prototype = bool (const hostport &, const opts &, const callback &);
static mods::import<prototype> function
2018-03-02 08:08:22 +01:00
{
"s_dns", "_get"
};
2018-03-02 08:08:22 +01:00
return function(hp, o, cb);
}
catch(const mods::unavailable &e)
{
thread_local char buf[128];
log::dwarning
{
log, "Failed to get '%s' from DNS cache :%s",
string(buf, hp),
e.what()
};
return false;
}
bool
ircd::net::dns::cache::for_each(const string_view &type,
const closure &closure)
{
return for_each(rfc1035::qtype.at(type), closure);
}
2018-03-02 08:08:22 +01:00
bool
ircd::net::dns::cache::for_each(const uint16_t &type,
const closure &c)
{
using prototype = bool (const uint16_t &, const closure &);
2018-03-02 08:08:22 +01:00
static mods::import<prototype> function
{
"s_dns", "_for_each"
};
return function(type, c);
2018-03-02 08:08:22 +01:00
}
2018-01-07 22:48:03 +01:00
///////////////////////////////////////////////////////////////////////////////
2017-12-30 06:42:39 +01:00
//
2018-01-07 22:48:03 +01:00
// net/ipport.h
2017-12-30 06:42:39 +01:00
//
2018-01-07 22:48:03 +01:00
std::ostream &
ircd::net::operator<<(std::ostream &s, const ipport &t)
{
2018-01-12 03:41:27 +01:00
thread_local char buf[256];
const critical_assertion ca;
s << net::string(buf, t);
2018-01-07 22:48:03 +01:00
return s;
}
2017-12-30 06:42:39 +01:00
ircd::string_view
ircd::net::string(const mutable_buffer &buf,
const ipport &ipp)
{
const auto len
{
is_v4(ipp)? fmt::sprintf
{
buf, "%s:%u",
ip::address_v4{host4(ipp)}.to_string(),
port(ipp)
}:
is_v6(ipp)? fmt::sprintf
{
buf, "%s:%u",
ip::address_v6{std::get<ipp.IP>(ipp).byte}.to_string(),
port(ipp)
}:
2017-12-30 06:42:39 +01:00
0
};
return { data(buf), size_t(len) };
}
ircd::net::ipport
ircd::net::make_ipport(const boost::asio::ip::udp::endpoint &ep)
{
return ipport
{
ep.address(), ep.port()
};
}
2017-12-30 06:42:39 +01:00
ircd::net::ipport
ircd::net::make_ipport(const boost::asio::ip::tcp::endpoint &ep)
{
return ipport
{
ep.address(), ep.port()
};
}
boost::asio::ip::udp::endpoint
ircd::net::make_endpoint_udp(const ipport &ipport)
{
return
{
is_v6(ipport)? ip::udp::endpoint
{
asio::ip::address_v6 { std::get<ipport.IP>(ipport).byte }, port(ipport)
}
: ip::udp::endpoint
{
asio::ip::address_v4 { host4(ipport) }, port(ipport)
},
};
}
2017-12-30 06:42:39 +01:00
boost::asio::ip::tcp::endpoint
ircd::net::make_endpoint(const ipport &ipport)
{
return
{
is_v6(ipport)? ip::tcp::endpoint
{
asio::ip::address_v6 { std::get<ipport.IP>(ipport).byte }, port(ipport)
2017-12-30 06:42:39 +01:00
}
: ip::tcp::endpoint
{
asio::ip::address_v4 { host4(ipport) }, port(ipport)
},
};
}
bool
ircd::net::ipport::cmp_ip::operator()(const ipport &a, const ipport &b)
const
{
if(is_v4(a) && is_v6(b))
return true;
if(is_v6(a) && is_v4(b))
return false;
assert((is_v4(a) && is_v4(b)) || (is_v6(a) && is_v6(b)));
return std::get<a.IP>(a).byte < std::get<b.IP>(b).byte;
}
bool
ircd::net::ipport::cmp_port::operator()(const ipport &a, const ipport &b)
const
{
return std::get<a.PORT>(a) < std::get<b.PORT>(b);
}
2018-01-07 22:48:03 +01:00
//
2018-09-30 01:31:27 +02:00
// ipport::ipport
2018-01-07 22:48:03 +01:00
//
2018-01-08 02:44:49 +01:00
ircd::net::ipport::ipport(const string_view &ip,
const string_view &port)
:ipport
{
ip, lex_cast<uint16_t>(port)
}
{
}
ircd::net::ipport::ipport(const string_view &ip,
const uint16_t &port)
:ipport
{
asio::ip::make_address(ip), port
}
{
}
ircd::net::ipport::ipport(const rfc1035::record::A &rr,
const uint16_t &port)
:ipport
{
rr.ip4, port
}
{
}
ircd::net::ipport::ipport(const rfc1035::record::AAAA &rr,
const uint16_t &port)
:ipport
{
rr.ip6, port
}
{
}
2017-12-30 06:42:39 +01:00
ircd::net::ipport::ipport(const boost::asio::ip::address &address,
const uint16_t &port)
{
std::get<TYPE>(*this) = address.is_v6();
2018-01-08 02:44:49 +01:00
std::get<PORT>(*this) = port;
2017-12-30 06:42:39 +01:00
if(is_v6(*this))
{
std::get<IP>(*this).byte = address.to_v6().to_bytes();
std::reverse(std::get<IP>(*this).byte.begin(), std::get<IP>(*this).byte.end());
2017-12-30 06:42:39 +01:00
}
else host4(*this) = address.to_v4().to_ulong();
}
2018-09-30 01:31:27 +02:00
ircd::net::ipport::ipport(const uint32_t &ip,
const uint16_t &p)
{
std::get<TYPE>(*this) = false;
host6(*this) = 0;
host4(*this) = ip;
port(*this) = p;
}
ircd::net::ipport::ipport(const uint128_t &ip,
const uint16_t &p)
{
std::get<TYPE>(*this) = true;
host6(*this) = ip;
port(*this) = p;
}
///////////////////////////////////////////////////////////////////////////////
//
// net/ipaddr.h
//
ircd::string_view
ircd::net::string(const mutable_buffer &buf,
const ipaddr &ipaddr)
{
throw not_implemented
{
"string(ipaddr): not implemented yet"
};
}
ircd::string_view
ircd::net::string_ip4(const mutable_buffer &buf,
const uint32_t &ip)
{
const auto len
{
ip::address_v4{ip}.to_string().copy(data(buf), size(buf))
};
return { data(buf), size_t(len) };
}
ircd::string_view
ircd::net::string_ip6(const mutable_buffer &buf,
const uint128_t &ip)
{
const auto &pun
{
reinterpret_cast<const uint8_t (&)[16]>(ip)
};
const auto &punpun
{
reinterpret_cast<const std::array<uint8_t, 16> &>(pun)
};
const auto len
{
ip::address_v6{punpun}.to_string().copy(data(buf), size(buf))
};
return { data(buf), size_t(len) };
}
2018-01-07 22:48:03 +01:00
///////////////////////////////////////////////////////////////////////////////
//
2018-01-07 22:48:03 +01:00
// net/hostport.h
//
decltype(ircd::net::canon_port)
ircd::net::canon_port
{
8448
};
decltype(ircd::net::canon_service)
ircd::net::canon_service
{
"matrix"
};
std::ostream &
ircd::net::operator<<(std::ostream &s, const hostport &t)
{
2018-01-12 03:41:27 +01:00
thread_local char buf[256];
const critical_assertion ca;
s << string(buf, t);
return s;
}
std::string
ircd::net::canonize(const hostport &hp,
const uint16_t &port)
{
const size_t len
{
size(host(hp)) + 1 + 5 + 1 // optimistic ':' + portnum
};
return ircd::string(len, [&hp, &port]
(const mutable_buffer &buf)
{
return canonize(buf, hp, port);
});
}
ircd::string_view
ircd::net::canonize(const mutable_buffer &buf,
const hostport &hp,
const uint16_t &port)
{
if(net::port(hp) == 0 || net::port(hp) == port)
return fmt::sprintf
{
buf, "%s", host(hp)
};
return fmt::sprintf
{
buf, "%s:%u", host(hp), net::port(hp)
};
}
2018-01-07 22:48:03 +01:00
ircd::string_view
ircd::net::string(const mutable_buffer &buf,
const hostport &hp)
{
if(empty(service(hp)))
return fmt::sprintf
2018-01-07 22:48:03 +01:00
{
buf, "%s:%u", host(hp), port(hp)
};
2018-01-07 22:48:03 +01:00
if(port(hp) == 0)
return fmt::sprintf
{
buf, "%s (%s)", host(hp), service(hp)
};
return fmt::sprintf
{
buf, "%s:%u (%s)", host(hp), port(hp), service(hp)
};
2018-01-07 22:48:03 +01:00
}
2017-12-30 06:45:15 +01:00
///////////////////////////////////////////////////////////////////////////////
//
// net/asio.h
//
std::string
ircd::net::string(const ip::address &addr)
{
return addr.to_string();
}
std::string
ircd::net::string(const ip::tcp::endpoint &ep)
{
std::string ret(128, char{});
2017-12-30 06:45:15 +01:00
const auto addr{string(net::addr(ep))};
const auto data{const_cast<char *>(ret.data())};
ret.resize(snprintf(data, ret.size(), "%s:%u", addr.c_str(), port(ep)));
return ret;
}
std::string
ircd::net::host(const ip::tcp::endpoint &ep)
{
return string(addr(ep));
}
boost::asio::ip::address
ircd::net::addr(const ip::tcp::endpoint &ep)
{
return ep.address();
}
uint16_t
ircd::net::port(const ip::tcp::endpoint &ep)
{
return ep.port();
}
2017-09-30 08:04:41 +02:00
///////////////////////////////////////////////////////////////////////////////
//
// buffer.h - provide definition for the null buffers and asio conversion
//
const ircd::buffer::mutable_buffer
ircd::buffer::null_buffer
{
2018-01-01 23:27:11 +01:00
nullptr, nullptr
2017-09-30 08:04:41 +02:00
};
const ircd::ilist<ircd::buffer::mutable_buffer>
ircd::buffer::null_buffers
{{
2018-01-01 23:27:11 +01:00
null_buffer
2017-09-30 08:04:41 +02:00
}};
ircd::buffer::mutable_buffer::operator
boost::asio::mutable_buffer()
const
{
return boost::asio::mutable_buffer
{
data(*this), size(*this)
};
}
ircd::buffer::const_buffer::operator
boost::asio::const_buffer()
const
{
return boost::asio::const_buffer
{
data(*this), size(*this)
};
}