2019-03-29 15:17:49 +00:00
|
|
|
#include <iwp/linklayer.hpp>
|
2019-08-22 20:53:27 +00:00
|
|
|
#include <iwp/session.hpp>
|
2019-12-03 17:58:53 +00:00
|
|
|
#include <config/key_manager.hpp>
|
|
|
|
#include <memory>
|
2019-09-16 16:12:05 +00:00
|
|
|
#include <unordered_set>
|
2019-03-29 12:19:59 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace iwp
|
|
|
|
{
|
2019-12-06 17:13:09 +00:00
|
|
|
LinkLayer::LinkLayer(std::shared_ptr< KeyManager > keyManager,
|
|
|
|
GetRCFunc getrc, LinkMessageHandler h,
|
|
|
|
SignBufferFunc sign, SessionEstablishedHandler est,
|
2019-08-22 20:53:27 +00:00
|
|
|
SessionRenegotiateHandler reneg,
|
|
|
|
TimeoutHandler timeout, SessionClosedHandler closed,
|
2019-11-04 18:49:08 +00:00
|
|
|
PumpDoneHandler pumpDone, bool allowInbound)
|
2019-12-06 17:13:09 +00:00
|
|
|
: ILinkLayer(keyManager, 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
|
|
|
|
|
|
|
const char*
|
|
|
|
LinkLayer::Name() const
|
|
|
|
{
|
|
|
|
return "iwp";
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2019-09-12 18:19:25 +00:00
|
|
|
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;
|
2019-11-19 16:24:29 +00:00
|
|
|
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;
|
2019-11-19 16:24:29 +00:00
|
|
|
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)
|
|
|
|
{
|
2019-11-19 16:24:29 +00:00
|
|
|
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
|