lokinet/llarp/iwp/linklayer.cpp

136 lines
3.4 KiB
C++
Raw Normal View History

2019-03-29 15:17:49 +00:00
#include <iwp/linklayer.hpp>
2019-08-22 20:53:27 +00:00
#include <iwp/session.hpp>
#include <unordered_set>
2019-03-29 12:19:59 +00:00
namespace llarp
{
namespace iwp
{
2019-08-22 20:53:27 +00:00
LinkLayer::LinkLayer(const SecretKey& routerEncSecret, GetRCFunc getrc,
LinkMessageHandler h, SignBufferFunc sign,
SessionEstablishedHandler est,
SessionRenegotiateHandler reneg,
TimeoutHandler timeout, SessionClosedHandler closed,
PumpDoneHandler pumpDone, bool allowInbound)
2019-08-22 20:53:27 +00:00
: ILinkLayer(routerEncSecret, getrc, h, sign, est, reneg, timeout,
closed, pumpDone)
2019-08-22 20:53:27 +00:00
, permitInbound{allowInbound}
2019-03-29 12:19:59 +00:00
{
}
2019-09-05 17:39:09 +00:00
LinkLayer::~LinkLayer() = default;
2019-03-29 12:19:59 +00:00
void
LinkLayer::Pump()
{
std::unordered_set< RouterID, RouterID::Hash > sessions;
2019-08-23 11:32:52 +00:00
{
ACQUIRE_LOCK(Lock_t l, m_AuthedLinksMutex);
2019-08-23 11:32:52 +00:00
auto itr = m_AuthedLinks.begin();
while(itr != m_AuthedLinks.end())
{
const RouterID r{itr->first};
sessions.emplace(r);
2019-08-23 11:32:52 +00:00
++itr;
}
}
2019-03-29 12:19:59 +00:00
ILinkLayer::Pump();
2019-08-23 11:32:52 +00:00
{
ACQUIRE_LOCK(Lock_t l, m_AuthedLinksMutex);
2019-08-23 11:32:52 +00:00
for(const auto& pk : sessions)
{
if(m_AuthedLinks.count(pk) == 0)
{
// all sessions were removed
SessionClosed(pk);
}
}
}
2019-03-29 12:19:59 +00:00
}
const char*
LinkLayer::Name() const
{
return "iwp";
}
bool
LinkLayer::KeyGen(SecretKey& k)
{
k.Zero();
CryptoManager::instance()->encryption_keygen(k);
2019-03-29 12:19:59 +00:00
return !k.IsZero();
}
uint16_t
LinkLayer::Rank() const
{
return 2;
}
2019-09-05 14:57:01 +00:00
void
LinkLayer::QueueWork(std::function< void(void) > func)
{
2019-09-05 17:39:09 +00:00
m_Worker->addJob(func);
2019-03-29 12:19:59 +00:00
}
void
LinkLayer::RecvFrom(const Addr& from, ILinkSession::Packet_t pkt)
2019-03-29 12:19:59 +00:00
{
2019-08-22 20:53:27 +00:00
std::shared_ptr< ILinkSession > session;
auto itr = m_AuthedAddrs.find(from);
bool isNewSession = false;
2019-08-23 11:32:52 +00:00
if(itr == m_AuthedAddrs.end())
2019-03-29 12:19:59 +00:00
{
2019-10-02 13:06:14 +00:00
ACQUIRE_LOCK(Lock_t lock, m_PendingMutex);
2019-08-22 20:53:27 +00:00
if(m_Pending.count(from) == 0)
{
2019-08-23 11:32:52 +00:00
if(not permitInbound)
return;
isNewSession = true;
2019-08-22 20:53:27 +00:00
m_Pending.insert({from, std::make_shared< Session >(this, from)});
}
session = m_Pending.find(from)->second;
2019-03-29 12:19:59 +00:00
}
2019-08-23 11:32:52 +00:00
else
{
2019-10-02 13:06:14 +00:00
ACQUIRE_LOCK(Lock_t lock, m_AuthedLinksMutex);
2019-08-23 11:32:52 +00:00
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));
}
2019-08-23 11:32:52 +00:00
}
}
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);
2019-03-29 12:19:59 +00:00
}
2019-04-02 09:03:53 +00:00
std::shared_ptr< ILinkSession >
2019-03-29 12:19:59 +00:00
LinkLayer::NewOutboundSession(const RouterContact& rc,
const AddressInfo& ai)
{
2019-08-22 20:53:27 +00:00
return std::make_shared< Session >(this, rc, ai);
2019-03-29 12:19:59 +00:00
}
} // namespace iwp
} // namespace llarp