2018-06-12 16:45:12 +00:00
|
|
|
#include <deque>
|
2018-06-10 14:05:48 +00:00
|
|
|
#include <llarp/encrypted_frame.hpp>
|
|
|
|
#include <llarp/path.hpp>
|
2018-07-09 17:32:11 +00:00
|
|
|
#include <llarp/pathbuilder.hpp>
|
2018-09-02 18:25:42 +00:00
|
|
|
#include <llarp/messages/dht.hpp>
|
2018-09-11 15:28:36 +00:00
|
|
|
#include <llarp/messages/discard.hpp>
|
2018-06-22 00:25:30 +00:00
|
|
|
#include "buffer.hpp"
|
2018-06-10 14:05:48 +00:00
|
|
|
#include "router.hpp"
|
2018-11-29 21:19:20 +00:00
|
|
|
#include <llarp/endian.hpp>
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-25 15:12:08 +00:00
|
|
|
namespace path
|
2018-06-10 14:05:48 +00:00
|
|
|
{
|
2018-06-25 15:12:08 +00:00
|
|
|
PathContext::PathContext(llarp_router* router)
|
|
|
|
: m_Router(router), m_AllowTransit(false)
|
|
|
|
{
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
PathContext::~PathContext()
|
|
|
|
{
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
PathContext::AllowTransit()
|
|
|
|
{
|
|
|
|
m_AllowTransit = true;
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
PathContext::AllowingTransit() const
|
|
|
|
{
|
|
|
|
return m_AllowTransit;
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
llarp_threadpool*
|
|
|
|
PathContext::Worker()
|
|
|
|
{
|
|
|
|
return m_Router->tp;
|
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
llarp_crypto*
|
|
|
|
PathContext::Crypto()
|
|
|
|
{
|
|
|
|
return &m_Router->crypto;
|
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
llarp_logic*
|
|
|
|
PathContext::Logic()
|
|
|
|
{
|
|
|
|
return m_Router->logic;
|
|
|
|
}
|
2018-06-15 14:33:38 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
byte_t*
|
|
|
|
PathContext::EncryptionSecretKey()
|
|
|
|
{
|
|
|
|
return m_Router->encryption;
|
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
PathContext::HopIsUs(const PubKey& k) const
|
|
|
|
{
|
|
|
|
return memcmp(k, m_Router->pubkey(), PUBKEYSIZE) == 0;
|
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
PathContext::ForwardLRCM(const RouterID& nextHop,
|
2018-08-30 18:48:43 +00:00
|
|
|
const std::array< EncryptedFrame, 8 >& frames)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-07-20 04:50:28 +00:00
|
|
|
llarp::LogDebug("fowarding LRCM to ", nextHop);
|
2018-09-19 16:36:12 +00:00
|
|
|
LR_CommitMessage msg;
|
|
|
|
msg.frames = frames;
|
|
|
|
return m_Router->SendToOrQueue(nextHop, &msg);
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
|
|
|
template < typename Map_t, typename Key_t, typename CheckValue_t,
|
|
|
|
typename GetFunc_t >
|
|
|
|
IHopHandler*
|
|
|
|
MapGet(Map_t& map, const Key_t& k, CheckValue_t check, GetFunc_t get)
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-06-25 15:12:08 +00:00
|
|
|
auto range = map.second.equal_range(k);
|
|
|
|
for(auto i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
if(check(i->second))
|
|
|
|
return get(i->second);
|
|
|
|
}
|
|
|
|
return nullptr;
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
template < typename Map_t, typename Key_t, typename CheckValue_t >
|
|
|
|
bool
|
|
|
|
MapHas(Map_t& map, const Key_t& k, CheckValue_t check)
|
2018-06-18 22:03:50 +00:00
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-06-25 15:12:08 +00:00
|
|
|
auto range = map.second.equal_range(k);
|
|
|
|
for(auto i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
if(check(i->second))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2018-06-18 22:03:50 +00:00
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
template < typename Map_t, typename Key_t, typename Value_t >
|
|
|
|
void
|
|
|
|
MapPut(Map_t& map, const Key_t& k, const Value_t& v)
|
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-07-24 06:25:13 +00:00
|
|
|
map.second.insert(std::make_pair(k, v));
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
template < typename Map_t, typename Visit_t >
|
|
|
|
void
|
|
|
|
MapIter(Map_t& map, Visit_t v)
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-06-25 15:12:08 +00:00
|
|
|
for(const auto& item : map.second)
|
|
|
|
v(item);
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
template < typename Map_t, typename Key_t, typename Check_t >
|
|
|
|
void
|
|
|
|
MapDel(Map_t& map, const Key_t& k, Check_t check)
|
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-06-25 15:12:08 +00:00
|
|
|
auto range = map.second.equal_range(k);
|
|
|
|
for(auto i = range.first; i != range.second;)
|
|
|
|
{
|
|
|
|
if(check(i->second))
|
|
|
|
i = map.second.erase(i);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 17:11:24 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
PathContext::AddOwnPath(PathSet* set, Path* path)
|
|
|
|
{
|
|
|
|
set->AddPath(path);
|
|
|
|
MapPut(m_OurPaths, path->TXID(), set);
|
|
|
|
MapPut(m_OurPaths, path->RXID(), set);
|
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
PathContext::HasTransitHop(const TransitHopInfo& info)
|
|
|
|
{
|
2018-10-21 13:07:33 +00:00
|
|
|
return MapHas(m_TransitPaths, info.txID,
|
|
|
|
[info](const std::shared_ptr< TransitHop >& hop) -> bool {
|
|
|
|
return info == hop->info;
|
|
|
|
});
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-22 12:45:46 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
IHopHandler*
|
|
|
|
PathContext::GetByUpstream(const RouterID& remote, const PathID_t& id)
|
|
|
|
{
|
|
|
|
auto own = MapGet(m_OurPaths, id,
|
2018-11-07 15:30:22 +00:00
|
|
|
[](__attribute__((unused)) const PathSet* s) -> bool {
|
2018-06-25 15:12:08 +00:00
|
|
|
// TODO: is this right?
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
[remote, id](PathSet* p) -> IHopHandler* {
|
|
|
|
return p->GetByUpstream(remote, id);
|
|
|
|
});
|
|
|
|
if(own)
|
|
|
|
return own;
|
|
|
|
|
|
|
|
return MapGet(m_TransitPaths, id,
|
2018-10-21 13:07:33 +00:00
|
|
|
[remote](const std::shared_ptr< TransitHop >& hop) -> bool {
|
2018-06-25 15:12:08 +00:00
|
|
|
return hop->info.upstream == remote;
|
|
|
|
},
|
2018-10-21 13:07:33 +00:00
|
|
|
[](const std::shared_ptr< TransitHop >& h) -> IHopHandler* {
|
|
|
|
return h.get();
|
|
|
|
});
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
IHopHandler*
|
|
|
|
PathContext::GetByDownstream(const RouterID& remote, const PathID_t& id)
|
|
|
|
{
|
|
|
|
return MapGet(m_TransitPaths, id,
|
2018-10-21 13:07:33 +00:00
|
|
|
[remote](const std::shared_ptr< TransitHop >& hop) -> bool {
|
2018-06-25 15:12:08 +00:00
|
|
|
return hop->info.downstream == remote;
|
|
|
|
},
|
2018-10-21 13:07:33 +00:00
|
|
|
[](const std::shared_ptr< TransitHop >& h) -> IHopHandler* {
|
|
|
|
return h.get();
|
|
|
|
});
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
PathSet*
|
|
|
|
PathContext::GetLocalPathSet(const PathID_t& id)
|
|
|
|
{
|
|
|
|
auto& map = m_OurPaths;
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
2018-07-09 17:32:11 +00:00
|
|
|
auto itr = map.second.find(id);
|
|
|
|
if(itr != map.second.end())
|
|
|
|
{
|
|
|
|
return itr->second;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
const byte_t*
|
|
|
|
PathContext::OurRouterID() const
|
|
|
|
{
|
|
|
|
return m_Router->pubkey();
|
|
|
|
}
|
2018-06-18 22:03:50 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
llarp_router*
|
|
|
|
PathContext::Router()
|
|
|
|
{
|
|
|
|
return m_Router;
|
|
|
|
}
|
|
|
|
|
2018-10-09 17:09:45 +00:00
|
|
|
IHopHandler*
|
|
|
|
PathContext::GetPathForTransfer(const PathID_t& id)
|
2018-10-06 16:37:54 +00:00
|
|
|
{
|
|
|
|
RouterID us(OurRouterID());
|
|
|
|
auto& map = m_TransitPaths;
|
|
|
|
{
|
|
|
|
util::Lock lock(map.first);
|
|
|
|
auto range = map.second.equal_range(id);
|
|
|
|
for(auto i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
if(i->second->info.upstream == us)
|
2018-10-21 13:07:33 +00:00
|
|
|
return i->second.get();
|
2018-10-06 16:37:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-10-09 17:09:45 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
2018-10-21 13:07:33 +00:00
|
|
|
PathContext::PutTransitHop(std::shared_ptr< TransitHop > hop)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
|
|
|
MapPut(m_TransitPaths, hop->info.txID, hop);
|
|
|
|
MapPut(m_TransitPaths, hop->info.rxID, hop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-10-29 16:48:36 +00:00
|
|
|
PathContext::ExpirePaths(llarp_time_t now)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(m_TransitPaths.first);
|
2018-06-25 15:12:08 +00:00
|
|
|
auto& map = m_TransitPaths.second;
|
|
|
|
auto itr = map.begin();
|
|
|
|
while(itr != map.end())
|
|
|
|
{
|
|
|
|
if(itr->second->Expired(now))
|
|
|
|
{
|
2018-10-21 13:07:33 +00:00
|
|
|
itr = map.erase(itr);
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-10-21 13:07:33 +00:00
|
|
|
else
|
|
|
|
++itr;
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-10-21 13:07:33 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
for(auto& builder : m_PathBuilders)
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-08-17 19:49:58 +00:00
|
|
|
if(builder)
|
|
|
|
builder->ExpirePaths(now);
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-25 15:12:08 +00:00
|
|
|
|
|
|
|
void
|
2018-10-29 16:48:36 +00:00
|
|
|
PathContext::BuildPaths(llarp_time_t now)
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-06-25 15:12:08 +00:00
|
|
|
for(auto& builder : m_PathBuilders)
|
|
|
|
{
|
2018-10-29 16:48:36 +00:00
|
|
|
if(builder->ShouldBuildMore(now))
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
builder->BuildOne(ePathRoleAny);
|
|
|
|
}
|
|
|
|
if(builder->ShouldBuildMoreForRoles(now, ePathRoleExit))
|
|
|
|
{
|
|
|
|
builder->BuildOne(ePathRoleExit);
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-18 22:03:50 +00:00
|
|
|
}
|
2018-06-12 16:45:12 +00:00
|
|
|
|
2018-06-29 16:02:39 +00:00
|
|
|
void
|
2018-10-29 16:48:36 +00:00
|
|
|
PathContext::TickPaths(llarp_time_t now)
|
2018-06-29 16:02:39 +00:00
|
|
|
{
|
|
|
|
for(auto& builder : m_PathBuilders)
|
|
|
|
builder->Tick(now, m_Router);
|
|
|
|
}
|
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
routing::IMessageHandler*
|
|
|
|
PathContext::GetHandler(const PathID_t& id)
|
|
|
|
{
|
|
|
|
routing::IMessageHandler* h = nullptr;
|
|
|
|
auto pathset = GetLocalPathSet(id);
|
|
|
|
if(pathset)
|
|
|
|
{
|
|
|
|
h = pathset->GetPathByID(id);
|
|
|
|
}
|
|
|
|
if(h)
|
|
|
|
return h;
|
|
|
|
RouterID us(OurRouterID());
|
|
|
|
auto& map = m_TransitPaths;
|
|
|
|
{
|
2018-08-12 17:22:29 +00:00
|
|
|
util::Lock lock(map.first);
|
|
|
|
auto range = map.second.equal_range(id);
|
|
|
|
for(auto i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
if(i->second->info.upstream == us)
|
2018-10-21 13:07:33 +00:00
|
|
|
return i->second.get();
|
2018-08-12 17:22:29 +00:00
|
|
|
}
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
2018-08-30 18:48:43 +00:00
|
|
|
PathContext::AddPathBuilder(Builder* ctx)
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-06-25 15:12:08 +00:00
|
|
|
m_PathBuilders.push_back(ctx);
|
2018-06-22 12:45:46 +00:00
|
|
|
}
|
2018-06-25 15:12:08 +00:00
|
|
|
|
2018-08-18 14:01:21 +00:00
|
|
|
void
|
|
|
|
PathContext::RemovePathSet(PathSet* set)
|
|
|
|
{
|
|
|
|
util::Lock lock(m_OurPaths.first);
|
|
|
|
auto& map = m_OurPaths.second;
|
|
|
|
auto itr = map.begin();
|
|
|
|
while(itr != map.end())
|
|
|
|
{
|
|
|
|
if(itr->second == set)
|
|
|
|
itr = map.erase(itr);
|
|
|
|
else
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-08-30 18:48:43 +00:00
|
|
|
PathContext::RemovePathBuilder(Builder* ctx)
|
2018-08-18 14:01:21 +00:00
|
|
|
{
|
|
|
|
m_PathBuilders.remove(ctx);
|
|
|
|
RemovePathSet(ctx);
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
PathHopConfig::PathHopConfig()
|
2018-06-22 12:45:46 +00:00
|
|
|
{
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
PathHopConfig::~PathHopConfig()
|
|
|
|
{
|
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
Path::Path(const std::vector< RouterContact >& h, PathSet* parent,
|
|
|
|
PathRole startingRoles)
|
|
|
|
: m_PathSet(parent), _role(startingRoles)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-09-06 11:46:19 +00:00
|
|
|
hops.resize(h.size());
|
2018-08-30 18:48:43 +00:00
|
|
|
size_t hsz = h.size();
|
|
|
|
for(size_t idx = 0; idx < hsz; ++idx)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
hops[idx].rc = h[idx];
|
2018-06-25 15:12:08 +00:00
|
|
|
hops[idx].txID.Randomize();
|
|
|
|
hops[idx].rxID.Randomize();
|
|
|
|
}
|
2018-06-29 16:02:39 +00:00
|
|
|
|
2018-08-30 18:48:43 +00:00
|
|
|
for(size_t idx = 0; idx < hsz - 1; ++idx)
|
2018-06-26 14:52:19 +00:00
|
|
|
{
|
|
|
|
hops[idx].txID = hops[idx + 1].rxID;
|
|
|
|
}
|
2018-07-11 16:11:19 +00:00
|
|
|
// initialize parts of the introduction
|
2018-08-30 18:48:43 +00:00
|
|
|
intro.router = hops[hsz - 1].rc.pubkey;
|
2018-10-06 16:37:54 +00:00
|
|
|
intro.pathID = hops[hsz - 1].txID;
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathBuilding, parent->Now());
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
Path::SetBuildResultHook(BuildResultHookFunc func)
|
|
|
|
{
|
|
|
|
m_BuiltHook = func;
|
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
|
2018-07-23 07:38:29 +00:00
|
|
|
RouterID
|
|
|
|
Path::Endpoint() const
|
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
return hops[hops.size() - 1].rc.pubkey;
|
2018-07-23 07:38:29 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
const PathID_t&
|
|
|
|
Path::TXID() const
|
2018-06-22 00:25:30 +00:00
|
|
|
{
|
2018-06-25 15:12:08 +00:00
|
|
|
return hops[0].txID;
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
const PathID_t&
|
|
|
|
Path::RXID() const
|
|
|
|
{
|
|
|
|
return hops[0].rxID;
|
|
|
|
}
|
2018-06-19 17:11:24 +00:00
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
bool
|
|
|
|
Path::IsReady() const
|
|
|
|
{
|
2018-09-13 13:07:00 +00:00
|
|
|
return intro.latency > 0 && _status == ePathEstablished;
|
2018-07-11 16:11:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
RouterID
|
|
|
|
Path::Upstream() const
|
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
return hops[0].rc.pubkey;
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 14:50:37 +00:00
|
|
|
void
|
2018-10-29 16:48:36 +00:00
|
|
|
Path::EnterState(PathStatus st, llarp_time_t now)
|
2018-09-14 14:50:37 +00:00
|
|
|
{
|
|
|
|
if(st == ePathTimeout)
|
|
|
|
{
|
2018-09-26 13:04:25 +00:00
|
|
|
m_PathSet->HandlePathBuildTimeout(this);
|
2018-09-14 14:50:37 +00:00
|
|
|
}
|
|
|
|
else if(st == ePathBuilding)
|
|
|
|
{
|
|
|
|
llarp::LogInfo("path ", Name(), " is building");
|
2018-10-29 16:48:36 +00:00
|
|
|
buildStarted = now;
|
2018-09-14 14:50:37 +00:00
|
|
|
}
|
|
|
|
_status = st;
|
|
|
|
}
|
|
|
|
|
2018-06-29 16:02:39 +00:00
|
|
|
void
|
|
|
|
Path::Tick(llarp_time_t now, llarp_router* r)
|
|
|
|
{
|
2018-07-23 07:38:29 +00:00
|
|
|
if(Expired(now))
|
|
|
|
return;
|
2018-09-13 12:27:28 +00:00
|
|
|
|
2018-09-13 16:41:53 +00:00
|
|
|
if(_status == ePathBuilding)
|
|
|
|
{
|
|
|
|
if(now < buildStarted)
|
|
|
|
return;
|
|
|
|
auto dlt = now - buildStarted;
|
|
|
|
if(dlt >= PATH_BUILD_TIMEOUT)
|
|
|
|
{
|
2018-09-14 14:50:37 +00:00
|
|
|
r->routerProfiling.MarkPathFail(this);
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathTimeout, now);
|
2018-09-13 16:41:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 23:08:08 +00:00
|
|
|
if(now < m_LastLatencyTestTime)
|
|
|
|
return;
|
2018-06-29 16:02:39 +00:00
|
|
|
auto dlt = now - m_LastLatencyTestTime;
|
2018-07-03 13:54:43 +00:00
|
|
|
if(dlt > 5000 && m_LastLatencyTestID == 0)
|
2018-06-29 16:02:39 +00:00
|
|
|
{
|
|
|
|
llarp::routing::PathLatencyMessage latency;
|
2018-07-20 04:50:28 +00:00
|
|
|
latency.T = llarp_randint();
|
2018-06-29 16:02:39 +00:00
|
|
|
m_LastLatencyTestID = latency.T;
|
|
|
|
m_LastLatencyTestTime = now;
|
|
|
|
SendRoutingMessage(&latency, r);
|
|
|
|
}
|
2018-09-13 12:27:28 +00:00
|
|
|
// check to see if this path is dead
|
2018-09-24 14:44:23 +00:00
|
|
|
if(_status == ePathEstablished)
|
2018-09-13 12:27:28 +00:00
|
|
|
{
|
2018-11-21 12:31:36 +00:00
|
|
|
if(SupportsAnyRoles(ePathRoleExit | ePathRoleSVC))
|
2018-11-17 18:40:13 +00:00
|
|
|
{
|
|
|
|
if(m_LastRecvMessage && now > m_LastRecvMessage
|
|
|
|
&& now - m_LastRecvMessage > PATH_ALIVE_TIMEOUT)
|
|
|
|
{
|
2018-11-21 12:31:36 +00:00
|
|
|
// TODO: send close exit message
|
2018-11-17 18:40:13 +00:00
|
|
|
// r->routerProfiling.MarkPathFail(this);
|
|
|
|
// EnterState(ePathTimeout, now);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-09-24 14:44:23 +00:00
|
|
|
if(m_LastRecvMessage && now > m_LastRecvMessage
|
2018-10-04 16:48:26 +00:00
|
|
|
&& now - m_LastRecvMessage > PATH_ALIVE_TIMEOUT)
|
2018-09-13 16:41:53 +00:00
|
|
|
{
|
2018-09-24 14:44:23 +00:00
|
|
|
if(m_CheckForDead)
|
2018-09-14 14:50:37 +00:00
|
|
|
{
|
2018-09-24 14:44:23 +00:00
|
|
|
if(m_CheckForDead(this, dlt))
|
|
|
|
{
|
|
|
|
r->routerProfiling.MarkPathFail(this);
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathTimeout, now);
|
2018-09-24 14:44:23 +00:00
|
|
|
}
|
2018-09-14 14:50:37 +00:00
|
|
|
}
|
2018-10-04 16:48:26 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
r->routerProfiling.MarkPathFail(this);
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathTimeout, now);
|
2018-10-04 16:48:26 +00:00
|
|
|
}
|
2018-09-13 16:41:53 +00:00
|
|
|
}
|
2018-09-24 14:44:23 +00:00
|
|
|
else if(dlt >= 10000 && m_LastRecvMessage == 0)
|
2018-09-14 14:50:37 +00:00
|
|
|
{
|
|
|
|
r->routerProfiling.MarkPathFail(this);
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathTimeout, now);
|
2018-09-14 14:50:37 +00:00
|
|
|
}
|
2018-09-13 12:27:28 +00:00
|
|
|
}
|
2018-06-29 16:02:39 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
Path::HandleUpstream(llarp_buffer_t buf, const TunnelNonce& Y,
|
2018-06-22 00:25:30 +00:00
|
|
|
llarp_router* r)
|
2018-06-20 12:34:48 +00:00
|
|
|
{
|
2018-07-28 22:20:32 +00:00
|
|
|
TunnelNonce n = Y;
|
2018-06-25 15:12:08 +00:00
|
|
|
for(const auto& hop : hops)
|
|
|
|
{
|
2018-07-28 22:20:32 +00:00
|
|
|
r->crypto.xchacha20(buf, hop.shared, n);
|
|
|
|
n ^= hop.nonceXOR;
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-09-02 18:25:42 +00:00
|
|
|
RelayUpstreamMessage msg;
|
|
|
|
msg.X = buf;
|
|
|
|
msg.Y = Y;
|
|
|
|
msg.pathid = TXID();
|
|
|
|
if(r->SendToOrQueue(Upstream(), &msg))
|
2018-08-10 21:34:11 +00:00
|
|
|
return true;
|
|
|
|
llarp::LogError("send to ", Upstream(), " failed");
|
|
|
|
return false;
|
2018-06-20 12:34:48 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
Path::Expired(llarp_time_t now) const
|
|
|
|
{
|
2018-09-13 13:07:00 +00:00
|
|
|
if(_status == ePathEstablished)
|
2018-06-25 15:12:08 +00:00
|
|
|
return now - buildStarted > hops[0].lifetime;
|
2018-09-13 13:07:00 +00:00
|
|
|
else if(_status == ePathBuilding)
|
|
|
|
return false;
|
2018-06-25 15:12:08 +00:00
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
2018-06-23 00:00:44 +00:00
|
|
|
|
2018-09-13 13:07:00 +00:00
|
|
|
std::string
|
|
|
|
Path::Name() const
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "TX=" << TXID() << " RX=" << RXID();
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
Path::HandleDownstream(llarp_buffer_t buf, const TunnelNonce& Y,
|
|
|
|
llarp_router* r)
|
2018-06-22 13:59:28 +00:00
|
|
|
{
|
2018-07-28 22:20:32 +00:00
|
|
|
TunnelNonce n = Y;
|
2018-06-25 15:12:08 +00:00
|
|
|
for(const auto& hop : hops)
|
|
|
|
{
|
2018-07-28 22:20:32 +00:00
|
|
|
n ^= hop.nonceXOR;
|
|
|
|
r->crypto.xchacha20(buf, hop.shared, n);
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
|
|
|
return HandleRoutingMessage(buf, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Path::HandleRoutingMessage(llarp_buffer_t buf, llarp_router* r)
|
|
|
|
{
|
2018-07-18 20:58:16 +00:00
|
|
|
if(!m_InboundMessageParser.ParseMessageBuffer(buf, this, RXID(), r))
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogWarn("Failed to parse inbound routing message");
|
2018-06-25 15:12:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-11-14 12:23:08 +00:00
|
|
|
bool
|
|
|
|
Path::HandleUpdateExitVerifyMessage(
|
|
|
|
const llarp::routing::UpdateExitVerifyMessage* msg, llarp_router* r)
|
|
|
|
{
|
|
|
|
(void)r;
|
|
|
|
if(m_UpdateExitTX && msg->T == m_UpdateExitTX)
|
|
|
|
{
|
|
|
|
if(m_ExitUpdated)
|
|
|
|
return m_ExitUpdated(this);
|
|
|
|
}
|
|
|
|
if(m_CloseExitTX && msg->T == m_CloseExitTX)
|
|
|
|
{
|
|
|
|
if(m_ExitClosed)
|
|
|
|
return m_ExitClosed(this);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
2018-11-12 16:43:40 +00:00
|
|
|
Path::SendRoutingMessage(const llarp::routing::IMessage* msg,
|
|
|
|
llarp_router* r)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
|
|
|
byte_t tmp[MAX_LINK_MSG_SIZE / 2];
|
|
|
|
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
|
|
|
|
if(!msg->BEncode(&buf))
|
2018-08-10 21:34:11 +00:00
|
|
|
{
|
|
|
|
llarp::LogError("Bencode failed");
|
|
|
|
llarp::DumpBuffer(buf);
|
2018-06-25 15:12:08 +00:00
|
|
|
return false;
|
2018-08-10 21:34:11 +00:00
|
|
|
}
|
2018-06-25 15:12:08 +00:00
|
|
|
// make nonce
|
|
|
|
TunnelNonce N;
|
|
|
|
N.Randomize();
|
2018-07-23 22:36:46 +00:00
|
|
|
buf.sz = buf.cur - buf.base;
|
|
|
|
// pad smaller messages
|
|
|
|
if(buf.sz < MESSAGE_PAD_SIZE)
|
|
|
|
{
|
|
|
|
// randomize padding
|
|
|
|
r->crypto.randbytes(buf.cur, MESSAGE_PAD_SIZE - buf.sz);
|
|
|
|
buf.sz = MESSAGE_PAD_SIZE;
|
|
|
|
}
|
|
|
|
buf.cur = buf.base;
|
2018-06-25 15:12:08 +00:00
|
|
|
return HandleUpstream(buf, N, r);
|
|
|
|
}
|
|
|
|
|
2018-06-26 16:23:43 +00:00
|
|
|
bool
|
|
|
|
Path::HandlePathTransferMessage(
|
2018-11-07 15:30:22 +00:00
|
|
|
__attribute__((unused)) const llarp::routing::PathTransferMessage* msg,
|
|
|
|
__attribute__((unused)) llarp_router* r)
|
2018-06-26 16:23:43 +00:00
|
|
|
{
|
2018-11-07 15:30:22 +00:00
|
|
|
llarp::LogWarn("unwarranted path transfer message on tx=", TXID(),
|
2018-07-17 04:37:50 +00:00
|
|
|
" rx=", RXID());
|
2018-06-26 16:23:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-11 15:28:36 +00:00
|
|
|
bool
|
|
|
|
Path::HandleDataDiscardMessage(
|
2018-11-16 14:21:23 +00:00
|
|
|
const llarp::routing::DataDiscardMessage* msg, llarp_router* r)
|
2018-09-11 15:28:36 +00:00
|
|
|
{
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(r->Now());
|
2018-09-11 15:28:36 +00:00
|
|
|
if(m_DropHandler)
|
|
|
|
return m_DropHandler(this, msg->P, msg->S);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
Path::HandlePathConfirmMessage(
|
2018-11-07 15:30:22 +00:00
|
|
|
__attribute__((unused)) const llarp::routing::PathConfirmMessage* msg,
|
|
|
|
llarp_router* r)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-10-29 16:48:36 +00:00
|
|
|
auto now = r->Now();
|
2018-09-13 13:07:00 +00:00
|
|
|
if(_status == ePathBuilding)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-07-11 16:11:19 +00:00
|
|
|
// finish initializing introduction
|
|
|
|
intro.expiresAt = buildStarted + hops[0].lifetime;
|
2018-06-25 15:12:08 +00:00
|
|
|
// confirm that we build the path
|
2018-10-29 16:48:36 +00:00
|
|
|
EnterState(ePathEstablished, now);
|
2018-09-11 13:21:35 +00:00
|
|
|
llarp::LogInfo("path is confirmed tx=", TXID(), " rx=", RXID(),
|
2018-10-29 16:48:36 +00:00
|
|
|
" took ", now - buildStarted, " ms");
|
2018-06-25 15:12:08 +00:00
|
|
|
if(m_BuiltHook)
|
|
|
|
m_BuiltHook(this);
|
|
|
|
m_BuiltHook = nullptr;
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-09-14 14:50:37 +00:00
|
|
|
r->routerProfiling.MarkPathSuccess(this);
|
|
|
|
|
2018-08-23 14:35:29 +00:00
|
|
|
// persist session with upstream router until the path is done
|
|
|
|
r->PersistSessionUntil(Upstream(), intro.expiresAt);
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(now);
|
2018-08-23 14:35:29 +00:00
|
|
|
// send path latency test
|
2018-06-26 16:23:43 +00:00
|
|
|
llarp::routing::PathLatencyMessage latency;
|
2018-07-20 04:50:28 +00:00
|
|
|
latency.T = llarp_randint();
|
2018-06-26 16:23:43 +00:00
|
|
|
m_LastLatencyTestID = latency.T;
|
2018-10-29 16:48:36 +00:00
|
|
|
m_LastLatencyTestTime = now;
|
2018-06-26 16:23:43 +00:00
|
|
|
return SendRoutingMessage(&latency, r);
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogWarn("got unwarrented path confirm message on tx=", RXID(),
|
|
|
|
" rx=", RXID());
|
2018-06-22 00:25:30 +00:00
|
|
|
return false;
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 00:48:43 +00:00
|
|
|
bool
|
|
|
|
Path::HandleHiddenServiceFrame(const llarp::service::ProtocolFrame* frame)
|
|
|
|
{
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(m_PathSet->Now());
|
2018-11-16 14:22:52 +00:00
|
|
|
return m_DataHandler && m_DataHandler(this, frame);
|
2018-08-02 00:48:43 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
|
|
|
Path::HandlePathLatencyMessage(
|
2018-06-26 16:23:43 +00:00
|
|
|
const llarp::routing::PathLatencyMessage* msg, llarp_router* r)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-10-29 16:48:36 +00:00
|
|
|
auto now = r->Now();
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(now);
|
2018-11-14 18:02:27 +00:00
|
|
|
if(msg->L == m_LastLatencyTestID)
|
2018-06-26 16:23:43 +00:00
|
|
|
{
|
2018-09-24 12:56:07 +00:00
|
|
|
intro.latency = now - m_LastLatencyTestTime;
|
2018-09-16 12:09:21 +00:00
|
|
|
llarp::LogDebug("path latency is ", intro.latency,
|
|
|
|
" ms for tx=", TXID(), " rx=", RXID());
|
2018-07-03 13:54:43 +00:00
|
|
|
m_LastLatencyTestID = 0;
|
2018-11-14 18:02:27 +00:00
|
|
|
_status = ePathEstablished;
|
2018-11-16 14:21:23 +00:00
|
|
|
|
2018-07-23 07:38:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
llarp::LogWarn("unwarrented path latency message via ", Upstream());
|
|
|
|
return false;
|
2018-06-26 16:23:43 +00:00
|
|
|
}
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-06-19 17:11:24 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
bool
|
2018-06-26 16:23:43 +00:00
|
|
|
Path::HandleDHTMessage(const llarp::dht::IMessage* msg, llarp_router* r)
|
2018-06-25 15:12:08 +00:00
|
|
|
{
|
2018-09-02 18:25:42 +00:00
|
|
|
llarp::routing::DHTMessage reply;
|
|
|
|
if(!msg->HandleMessage(r->dht, reply.M))
|
|
|
|
return false;
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(r->Now());
|
2018-09-02 18:25:42 +00:00
|
|
|
if(reply.M.size())
|
|
|
|
return SendRoutingMessage(&reply, r);
|
|
|
|
return true;
|
2018-06-25 15:12:08 +00:00
|
|
|
}
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
bool
|
|
|
|
Path::HandleCloseExitMessage(const llarp::routing::CloseExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
/// allows exits to close from their end
|
2018-11-21 12:31:36 +00:00
|
|
|
if(SupportsAnyRoles(ePathRoleExit | ePathRoleSVC))
|
2018-11-14 18:02:27 +00:00
|
|
|
{
|
|
|
|
if(msg->Verify(&r->crypto, Endpoint()))
|
|
|
|
{
|
|
|
|
llarp::LogInfo(Name(), " had its exit closed");
|
|
|
|
_role &= ~ePathRoleExit;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
llarp::LogError(Name(), " CXM from exit with bad signature");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
llarp::LogError(Name(), " unwarrented CXM");
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-14 19:34:17 +00:00
|
|
|
bool
|
|
|
|
Path::SendExitRequest(const llarp::routing::ObtainExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
2018-11-14 20:47:43 +00:00
|
|
|
llarp::LogInfo(Name(), " sending exit request to ", Endpoint());
|
2018-11-14 19:34:17 +00:00
|
|
|
m_ExitObtainTX = msg->T;
|
|
|
|
return SendRoutingMessage(msg, r);
|
|
|
|
}
|
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
bool
|
|
|
|
Path::HandleObtainExitMessage(const llarp::routing::ObtainExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
|
|
|
(void)msg;
|
|
|
|
(void)r;
|
2018-11-14 18:02:27 +00:00
|
|
|
llarp::LogError(Name(), " got unwarrented OXM");
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Path::HandleUpdateExitMessage(const llarp::routing::UpdateExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
|
|
|
(void)msg;
|
|
|
|
(void)r;
|
2018-11-14 18:02:27 +00:00
|
|
|
llarp::LogError(Name(), " got unwarrented UXM");
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Path::HandleRejectExitMessage(const llarp::routing::RejectExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
if(m_ExitObtainTX && msg->T == m_ExitObtainTX)
|
|
|
|
{
|
|
|
|
if(!msg->Verify(&r->crypto, Endpoint()))
|
|
|
|
{
|
|
|
|
llarp::LogError(Name(), "RXM invalid signature");
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-14 20:47:43 +00:00
|
|
|
llarp::LogInfo(Name(), " ", Endpoint(), " Rejected exit");
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(r->Now());
|
2018-11-14 18:02:27 +00:00
|
|
|
return InformExitResult(msg->B);
|
|
|
|
}
|
|
|
|
llarp::LogError(Name(), " got unwarrented RXM");
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Path::HandleGrantExitMessage(const llarp::routing::GrantExitMessage* msg,
|
|
|
|
llarp_router* r)
|
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
if(m_ExitObtainTX && msg->T == m_ExitObtainTX)
|
|
|
|
{
|
|
|
|
if(!msg->Verify(&r->crypto, Endpoint()))
|
|
|
|
{
|
|
|
|
llarp::LogError(Name(), " GXM signature failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we now can send exit traffic
|
|
|
|
_role |= ePathRoleExit;
|
2018-11-14 20:47:43 +00:00
|
|
|
llarp::LogInfo(Name(), " ", Endpoint(), " Granted exit");
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(r->Now());
|
2018-11-14 18:02:27 +00:00
|
|
|
return InformExitResult(0);
|
|
|
|
}
|
|
|
|
llarp::LogError(Name(), " got unwarrented GXM");
|
2018-11-12 16:43:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
bool
|
|
|
|
Path::InformExitResult(llarp_time_t B)
|
|
|
|
{
|
|
|
|
bool result = true;
|
|
|
|
for(const auto& hook : m_ObtainedExitHooks)
|
|
|
|
result &= hook(this, B);
|
|
|
|
m_ObtainedExitHooks.clear();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
bool
|
|
|
|
Path::HandleTransferTrafficMessage(
|
|
|
|
const llarp::routing::TransferTrafficMessage* msg, llarp_router* r)
|
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
// check if we can handle exit data
|
2018-11-21 12:31:36 +00:00
|
|
|
if(!SupportsAnyRoles(ePathRoleExit | ePathRoleSVC))
|
2018-11-14 18:02:27 +00:00
|
|
|
return false;
|
2018-11-16 14:21:23 +00:00
|
|
|
MarkActive(r->Now());
|
2018-11-14 18:02:27 +00:00
|
|
|
// handle traffic if we have a handler
|
2018-11-28 17:58:46 +00:00
|
|
|
if(!m_ExitTrafficHandler)
|
|
|
|
return false;
|
|
|
|
bool sent = msg->X.size() > 0;
|
|
|
|
for(const auto & pkt : msg->X)
|
2018-11-29 21:19:20 +00:00
|
|
|
{
|
|
|
|
if(pkt.size() <= 8)
|
|
|
|
return false;
|
|
|
|
uint64_t counter = bufbe64toh(pkt.data());
|
|
|
|
m_ExitTrafficHandler(this, llarp::InitBuffer(pkt.data() +8, pkt.size()-8), counter);
|
|
|
|
}
|
2018-11-28 17:58:46 +00:00
|
|
|
return sent;
|
2018-11-12 16:43:40 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
} // namespace path
|
2018-06-21 09:31:53 +00:00
|
|
|
} // namespace llarp
|