mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
108 lines
2.7 KiB
C++
108 lines
2.7 KiB
C++
#include <iwp/linklayer.hpp>
|
|
#include <iwp/session.hpp>
|
|
#include <unordered_set>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace iwp
|
|
{
|
|
LinkLayer::LinkLayer(const SecretKey& routerEncSecret, GetRCFunc getrc,
|
|
LinkMessageHandler h, SignBufferFunc sign,
|
|
SessionEstablishedHandler est,
|
|
SessionRenegotiateHandler reneg,
|
|
TimeoutHandler timeout, SessionClosedHandler closed,
|
|
PumpDoneHandler pumpDone, bool allowInbound)
|
|
: ILinkLayer(routerEncSecret, getrc, h, sign, est, reneg, timeout,
|
|
closed, pumpDone)
|
|
, permitInbound{allowInbound}
|
|
{
|
|
}
|
|
|
|
LinkLayer::~LinkLayer() = default;
|
|
|
|
const char*
|
|
LinkLayer::Name() const
|
|
{
|
|
return "iwp";
|
|
}
|
|
|
|
bool
|
|
LinkLayer::KeyGen(SecretKey& k)
|
|
{
|
|
k.Zero();
|
|
CryptoManager::instance()->encryption_keygen(k);
|
|
return !k.IsZero();
|
|
}
|
|
|
|
uint16_t
|
|
LinkLayer::Rank() const
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
void
|
|
LinkLayer::QueueWork(std::function< void(void) > func)
|
|
{
|
|
m_Worker->addJob(func);
|
|
}
|
|
|
|
void
|
|
LinkLayer::RecvFrom(const Addr& from, ILinkSession::Packet_t pkt)
|
|
{
|
|
std::shared_ptr< ILinkSession > session;
|
|
auto itr = m_AuthedAddrs.find(from);
|
|
bool isNewSession = false;
|
|
if(itr == m_AuthedAddrs.end())
|
|
{
|
|
ACQUIRE_LOCK(Lock_t lock, m_PendingMutex);
|
|
if(m_Pending.count(from) == 0)
|
|
{
|
|
if(not permitInbound)
|
|
return;
|
|
isNewSession = true;
|
|
m_Pending.insert({from, std::make_shared< Session >(this, from)});
|
|
}
|
|
session = m_Pending.find(from)->second;
|
|
}
|
|
else
|
|
{
|
|
ACQUIRE_LOCK(Lock_t lock, m_AuthedLinksMutex);
|
|
auto range = m_AuthedLinks.equal_range(itr->second);
|
|
session = range.first->second;
|
|
}
|
|
if(session)
|
|
{
|
|
bool success = session->Recv_LL(std::move(pkt));
|
|
if(!success and isNewSession)
|
|
{
|
|
LogWarn(
|
|
"Brand new session failed; removing from pending sessions list");
|
|
m_Pending.erase(m_Pending.find(from));
|
|
}
|
|
}
|
|
}
|
|
|
|
bool
|
|
LinkLayer::MapAddr(const RouterID& r, ILinkSession* s)
|
|
{
|
|
if(!ILinkLayer::MapAddr(r, s))
|
|
return false;
|
|
m_AuthedAddrs.emplace(s->GetRemoteEndpoint(), r);
|
|
return true;
|
|
}
|
|
|
|
void
|
|
LinkLayer::UnmapAddr(const Addr& a)
|
|
{
|
|
m_AuthedAddrs.erase(a);
|
|
}
|
|
|
|
std::shared_ptr< ILinkSession >
|
|
LinkLayer::NewOutboundSession(const RouterContact& rc,
|
|
const AddressInfo& ai)
|
|
{
|
|
return std::make_shared< Session >(this, rc, ai);
|
|
}
|
|
} // namespace iwp
|
|
} // namespace llarp
|