mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
159 lines
3.1 KiB
C++
159 lines
3.1 KiB
C++
#ifndef LLARP_LINK_SERVER_HPP
|
|
#define LLARP_LINK_SERVER_HPP
|
|
#include <unordered_map>
|
|
#include <llarp/threading.hpp>
|
|
#include <llarp/router_contact.hpp>
|
|
#include <llarp/crypto.hpp>
|
|
#include <llarp/net.hpp>
|
|
#include <llarp/ev.h>
|
|
#include <llarp/link/session.hpp>
|
|
#include <llarp/logic.h>
|
|
#include <llarp/time.h>
|
|
#include <list>
|
|
|
|
struct llarp_router;
|
|
|
|
namespace llarp
|
|
{
|
|
struct ILinkLayer
|
|
{
|
|
virtual ~ILinkLayer();
|
|
/// get current time via event loop
|
|
llarp_time_t
|
|
now() const
|
|
{
|
|
return llarp_ev_loop_time_now_ms(m_Loop);
|
|
}
|
|
bool
|
|
HasSessionTo(const PubKey& pk);
|
|
|
|
bool
|
|
HasSessionVia(const Addr& addr);
|
|
|
|
void
|
|
ForEachSession(std::function< void(const ILinkSession*) > visit) const;
|
|
|
|
static void
|
|
udp_tick(llarp_udp_io* udp)
|
|
{
|
|
static_cast< ILinkLayer* >(udp->user)->Pump();
|
|
}
|
|
|
|
static void
|
|
udp_recv_from(llarp_udp_io* udp, const sockaddr* from, const void* buf,
|
|
const ssize_t sz)
|
|
{
|
|
if(!udp)
|
|
{
|
|
llarp::LogWarn("no udp set");
|
|
return;
|
|
}
|
|
// maybe chekc from too?
|
|
static_cast< ILinkLayer* >(udp->user)->RecvFrom(*from, buf, sz);
|
|
}
|
|
|
|
bool
|
|
Configure(llarp_ev_loop* loop, const std::string& ifname, int af,
|
|
uint16_t port);
|
|
|
|
virtual ILinkSession*
|
|
NewOutboundSession(const RouterContact& rc, const AddressInfo& ai) = 0;
|
|
|
|
virtual void
|
|
Pump();
|
|
|
|
virtual void
|
|
RecvFrom(const Addr& from, const void* buf, size_t sz) = 0;
|
|
|
|
bool
|
|
PickAddress(const RouterContact& rc, AddressInfo& picked) const;
|
|
|
|
void
|
|
TryEstablishTo(const RouterContact& rc);
|
|
|
|
bool
|
|
Start(llarp_logic* l);
|
|
|
|
void
|
|
Stop();
|
|
|
|
virtual const char*
|
|
Name() const = 0;
|
|
|
|
void
|
|
CloseSessionTo(const PubKey& remote);
|
|
|
|
void
|
|
KeepAliveSessionTo(const PubKey& remote);
|
|
|
|
bool
|
|
SendTo(const PubKey& remote, llarp_buffer_t buf);
|
|
|
|
bool
|
|
GetOurAddressInfo(AddressInfo& addr) const;
|
|
|
|
virtual uint16_t
|
|
Rank() const = 0;
|
|
|
|
virtual bool
|
|
KeyGen(SecretKey&) = 0;
|
|
|
|
const byte_t*
|
|
TransportPubKey() const;
|
|
|
|
const byte_t*
|
|
TransportSecretKey() const;
|
|
|
|
bool
|
|
EnsureKeys(const char* fpath);
|
|
|
|
void
|
|
MapAddr(const PubKey& pk, ILinkSession* s);
|
|
|
|
virtual void
|
|
Tick(llarp_time_t now)
|
|
{
|
|
}
|
|
|
|
private:
|
|
static void
|
|
on_timer_tick(void* user, uint64_t orig, uint64_t left)
|
|
{
|
|
// timer cancelled
|
|
if(left)
|
|
return;
|
|
static_cast< ILinkLayer* >(user)->OnTick(orig);
|
|
}
|
|
|
|
void
|
|
OnTick(uint64_t interval);
|
|
|
|
void
|
|
ScheduleTick(uint64_t interval);
|
|
|
|
uint32_t tick_id;
|
|
|
|
protected:
|
|
typedef util::NullLock Lock;
|
|
typedef util::NullMutex Mutex;
|
|
|
|
void
|
|
PutSession(ILinkSession* s);
|
|
|
|
llarp_logic* m_Logic = nullptr;
|
|
llarp_ev_loop* m_Loop = nullptr;
|
|
Addr m_ourAddr;
|
|
llarp_udp_io m_udp;
|
|
SecretKey m_SecretKey;
|
|
|
|
Mutex m_AuthedLinksMutex;
|
|
std::unordered_multimap< PubKey, std::unique_ptr< ILinkSession >,
|
|
PubKey::Hash >
|
|
m_AuthedLinks;
|
|
Mutex m_PendingMutex;
|
|
std::list< std::unique_ptr< ILinkSession > > m_Pending;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|