2021-03-26 13:16:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "llarp/service/address.hpp"
|
|
|
|
#include "llarp/service/convotag.hpp"
|
|
|
|
#include "llarp/service/protocol_type.hpp"
|
|
|
|
#include "router_id.hpp"
|
2021-04-06 12:25:46 +00:00
|
|
|
#include "llarp/ev/ev.hpp"
|
|
|
|
#include "llarp/dns/srv_data.hpp"
|
2021-03-26 13:16:43 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2021-03-29 16:31:55 +00:00
|
|
|
#include <tuple>
|
2021-03-26 13:16:43 +00:00
|
|
|
#include <optional>
|
2021-04-06 12:25:46 +00:00
|
|
|
#include <unordered_set>
|
|
|
|
#include <set>
|
2021-03-26 13:16:43 +00:00
|
|
|
#include "oxenmq/variant.h"
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2021-03-26 20:45:19 +00:00
|
|
|
namespace quic
|
|
|
|
{
|
|
|
|
class TunnelManager;
|
|
|
|
}
|
|
|
|
|
2021-03-26 13:16:43 +00:00
|
|
|
class EndpointBase
|
|
|
|
{
|
2021-04-06 12:25:46 +00:00
|
|
|
std::unordered_set<dns::SRVData> m_SRVRecords;
|
|
|
|
|
2021-03-26 13:16:43 +00:00
|
|
|
public:
|
|
|
|
virtual ~EndpointBase() = default;
|
|
|
|
|
|
|
|
using AddressVariant_t = std::variant<service::Address, RouterID>;
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
struct SendStat
|
|
|
|
{
|
|
|
|
/// how many routing messages we sent to them
|
|
|
|
uint64_t messagesSend;
|
|
|
|
/// how many routing messages we got from them
|
|
|
|
uint64_t messagesRecv;
|
|
|
|
/// how many convos have we had to this guy total?
|
|
|
|
size_t numTotalConvos;
|
|
|
|
/// current estimated rtt
|
|
|
|
Duration_t estimatedRTT;
|
|
|
|
/// last time point when we sent a message to them
|
|
|
|
Duration_t lastSendAt;
|
|
|
|
/// last time point when we got a message from them
|
|
|
|
Duration_t lastRecvAt;
|
|
|
|
};
|
|
|
|
|
2021-04-06 12:25:46 +00:00
|
|
|
/// info about a quic mapping
|
|
|
|
struct QUICMappingInfo
|
|
|
|
{
|
|
|
|
/// srv data if it was provided
|
|
|
|
std::optional<dns::SRVData> srv;
|
|
|
|
/// address we are bound on
|
|
|
|
SockAddr localAddr;
|
|
|
|
/// the remote's lns name if we have one
|
|
|
|
std::optional<std::string> remoteName;
|
|
|
|
/// the remote's address
|
|
|
|
AddressVariant_t remoteAddr;
|
|
|
|
/// the remote's port we are connecting to
|
|
|
|
uint16_t remotePort;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// maybe get quic mapping info given its stream id
|
|
|
|
/// returns std::nullopt if we have no stream given that id
|
|
|
|
std::optional<QUICMappingInfo>
|
|
|
|
GetQUICMappingInfoByID(int stream_id) const;
|
|
|
|
|
|
|
|
/// add an srv record to this endpoint's descriptor
|
|
|
|
void
|
|
|
|
PutSRVRecord(dns::SRVData srv);
|
|
|
|
|
|
|
|
/// called when srv data changes in some way
|
|
|
|
virtual void
|
|
|
|
SRVRecordsChanged() = 0;
|
|
|
|
|
|
|
|
/// remove srv records from this endpoint that match a filter
|
|
|
|
/// for each srv record call it with filter, remove if filter returns true
|
|
|
|
/// return if we removed any srv records
|
|
|
|
bool
|
|
|
|
DelSRVRecordIf(std::function<bool(const dns::SRVData&)> filter);
|
|
|
|
|
|
|
|
/// get copy of all srv records
|
|
|
|
std::set<dns::SRVData>
|
|
|
|
SRVRecords() const;
|
|
|
|
|
|
|
|
/// get statistics about how much traffic we sent and recv'd to a remote endpoint
|
|
|
|
virtual std::optional<SendStat>
|
|
|
|
GetStatFor(AddressVariant_t remote) const = 0;
|
|
|
|
|
|
|
|
/// list all remote endpoint addresses we have that are mapped
|
|
|
|
virtual std::unordered_set<AddressVariant_t>
|
|
|
|
AllRemoteEndpoints() const = 0;
|
2021-04-02 15:10:37 +00:00
|
|
|
|
|
|
|
/// get our local address
|
|
|
|
virtual AddressVariant_t
|
2021-03-27 18:54:09 +00:00
|
|
|
LocalAddress() const = 0;
|
|
|
|
|
2021-03-26 20:45:19 +00:00
|
|
|
virtual quic::TunnelManager*
|
|
|
|
GetQUICTunnel() = 0;
|
|
|
|
|
2021-03-26 13:16:43 +00:00
|
|
|
virtual std::optional<AddressVariant_t>
|
|
|
|
GetEndpointWithConvoTag(service::ConvoTag tag) const = 0;
|
|
|
|
|
|
|
|
virtual std::optional<service::ConvoTag>
|
|
|
|
GetBestConvoTagFor(AddressVariant_t addr) const = 0;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
EnsurePathTo(
|
|
|
|
AddressVariant_t addr,
|
|
|
|
std::function<void(std::optional<service::ConvoTag>)> hook,
|
|
|
|
llarp_time_t timeout) = 0;
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
LookupNameAsync(
|
|
|
|
std::string name, std::function<void(std::optional<AddressVariant_t>)> resultHandler) = 0;
|
|
|
|
|
|
|
|
virtual const EventLoop_ptr&
|
|
|
|
Loop() = 0;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
SendToOrQueue(
|
|
|
|
service::ConvoTag tag, const llarp_buffer_t& payload, service::ProtocolType t) = 0;
|
2021-04-12 11:39:07 +00:00
|
|
|
|
|
|
|
/// lookup srv records async
|
|
|
|
virtual void
|
|
|
|
LookupServiceAsync(
|
|
|
|
std::string name,
|
|
|
|
std::string service,
|
|
|
|
std::function<void(std::vector<dns::SRVData>)> resultHandler) = 0;
|
2021-03-26 13:16:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llarp
|