mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
752879d712
Refactors how quic packets get handled: the actual tunnels now live in tunnel.hpp's TunnelManager which holds and manages all the quic<->tcp tunnelling. service::Endpoint now holds a TunnelManager rather than a quic::Server. We only need one quic server, but we need a separate quic client instance per outgoing quic tunnel, and TunnelManager handles all that glue now. Adds QUIC packet handling to get to the right tunnel code. This required multiplexing incoming quic packets, as follows: Adds a very small quic tunnel packet header of 4 bytes: [1, SPORT, ECN] for client->server packets, where SPORT is our source "port" (really: just a uint16_t unique quic instance identifier) or [2, DPORT, ECN] for server->client packets where the DPORT is the SPORT from above. (This also reworks ECN bits to get properly carried over lokinet.) We don't need a destination/source port for the server-side because there is only ever one quic server (and we know we're going to it when the first byte of the header is 1). Removes the config option for quic exposing ports; a full lokinet will simply accept anything incoming on quic and tunnel it to the requested port on the the local endpoint IP (this handler will come in a following commit). Replace ConvoTags with full addresses: we need to carry the port, as well, which the ConvoTag can't give us, so change those to more general SockAddrs from which we can extract both the ConvoTag *and* the port. Add a pending connection queue along with new quic-side handlers to call when a stream becomes available (TunnelManager uses this to wire up pending incoming conns with quic streams as streams open up). Completely get rid of tunnel_server/tunnel_client.cpp code; it is now moved to tunnel.hpp. Add listen()/forget() methods in TunnelManager for setting up quic listening sockets (for liblokinet usage). Add open()/close() methods in TunnelManager for spinning up new quic clients for outgoing quic connections.
75 lines
2.0 KiB
C++
75 lines
2.0 KiB
C++
#include "server.hpp"
|
|
#include <llarp/util/logging/buffer.hpp>
|
|
#include <llarp/util/logging/logger.hpp>
|
|
|
|
#include <oxenmq/hex.h>
|
|
#include <oxenmq/variant.h>
|
|
#include <uvw/loop.h>
|
|
|
|
#include <stdexcept>
|
|
#include <tuple>
|
|
#include <variant>
|
|
|
|
namespace llarp::quic
|
|
{
|
|
std::shared_ptr<Connection>
|
|
Server::accept_initial_connection(const Packet& p)
|
|
{
|
|
LogDebug("Accepting new connection");
|
|
|
|
// This is a new incoming connection
|
|
ngtcp2_pkt_hd hd;
|
|
auto rv = ngtcp2_accept(&hd, u8data(p.data), p.data.size());
|
|
|
|
if (rv == -1)
|
|
{ // Invalid packet
|
|
LogWarn("Invalid packet received, length=", p.data.size());
|
|
LogTrace("packet body: ", buffer_printer{p.data});
|
|
return nullptr;
|
|
}
|
|
|
|
if (rv == 1)
|
|
{ // Invalid/unexpected version, send a version negotiation
|
|
LogDebug("Invalid/unsupported version; sending version negotiation");
|
|
send_version_negotiation(
|
|
version_info{hd.version, hd.dcid.data, hd.dcid.datalen, hd.scid.data, hd.scid.datalen},
|
|
p.path.remote);
|
|
return nullptr;
|
|
}
|
|
|
|
if (hd.type == NGTCP2_PKT_0RTT)
|
|
{
|
|
LogWarn("Received 0-RTT packet, which shouldn't happen in our implementation; dropping");
|
|
return nullptr;
|
|
}
|
|
|
|
if (hd.type == NGTCP2_PKT_INITIAL && hd.token.len)
|
|
{
|
|
// This is a normal QUIC thing, but we don't do it:
|
|
LogWarn("Unexpected token in initial packet");
|
|
}
|
|
|
|
// create and store Connection
|
|
for (;;)
|
|
{
|
|
if (auto [it, ins] = conns.emplace(ConnectionID::random(), primary_conn_ptr{}); ins)
|
|
{
|
|
auto connptr = std::make_shared<Connection>(*this, it->first, hd, p.path);
|
|
it->second = connptr;
|
|
LogDebug("Created local Connection ", it->first, " for incoming connection");
|
|
return connptr;
|
|
}
|
|
}
|
|
}
|
|
|
|
size_t
|
|
Server::write_packet_header(nuint16_t pport, uint8_t ecn)
|
|
{
|
|
buf_[0] = SERVER_TO_CLIENT;
|
|
std::memcpy(&buf_[1], &pport.n, 2); // remote quic pseudo-port (network order u16)
|
|
buf_[3] = std::byte{ecn};
|
|
return 4;
|
|
}
|
|
|
|
} // namespace llarp::quic
|