lokinet/llarp/service/context.cpp

334 lines
8.6 KiB
C++
Raw Normal View History

2018-12-12 01:12:59 +00:00
#include <handlers/null.hpp>
2018-12-12 02:15:08 +00:00
#include <handlers/tun.hpp>
#include <service/context.hpp>
#include <service/endpoint.hpp>
2018-12-19 17:48:29 +00:00
#include <router.hpp>
namespace llarp
{
namespace service
{
Context::Context(llarp::Router *r) : m_Router(r)
{
}
Context::~Context()
{
}
bool
Context::StopAll()
{
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
itr->second->Stop();
m_Stopped.emplace_back(std::move(itr->second));
itr = m_Endpoints.erase(itr);
}
return true;
}
bool
Context::RemoveEndpoint(const std::string &name)
{
auto itr = m_Endpoints.find(name);
if(itr == m_Endpoints.end())
return false;
std::unique_ptr< Endpoint > ep = std::move(itr->second);
m_Endpoints.erase(itr);
ep->Stop();
m_Stopped.emplace_back(std::move(ep));
return true;
}
void
Context::Tick(llarp_time_t now)
{
// erase stopped endpoints that are done
{
auto itr = m_Stopped.begin();
while(itr != m_Stopped.end())
{
if((*itr)->ShouldRemove())
itr = m_Stopped.erase(itr);
else
++itr;
}
}
// tick active endpoints
{
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
itr->second->Tick(now);
++itr;
}
}
2018-12-19 17:48:29 +00:00
m_Router->nodedb->visit([&](const RouterContact &rc) -> bool {
if(rc.IsExpired(now))
getFirstEndpoint()->LookupRouterAnon(rc.pubkey);
return true;
});
}
bool
Context::hasEndpoints()
{
return m_Endpoints.size() ? true : false;
}
2018-09-22 10:23:23 +00:00
llarp::service::Endpoint *
Context::getFirstEndpoint()
{
2018-09-22 10:23:23 +00:00
if(!m_Endpoints.size())
{
llarp::LogError("No endpoints found");
return nullptr;
}
auto itr = m_Endpoints.begin();
if(itr == m_Endpoints.end())
return nullptr;
return itr->second.get();
2018-09-22 10:23:23 +00:00
}
bool
Context::iterate(struct endpoint_iter &i)
{
if(!m_Endpoints.size())
{
llarp::LogError("No endpoints found");
return false;
}
i.index = 0;
// llarp::util::Lock lock(access);
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
i.endpoint = itr->second.get();
if(!i.visit(&i))
return false;
// advance
i.index++;
itr++;
}
return true;
}
2018-09-22 10:23:23 +00:00
llarp::handlers::TunEndpoint *
Context::getFirstTun()
{
llarp::service::Endpoint *endpointer = this->getFirstEndpoint();
if(!endpointer)
{
return nullptr;
}
llarp::handlers::TunEndpoint *tunEndpoint =
2018-11-06 14:27:25 +00:00
static_cast< llarp::handlers::TunEndpoint * >(endpointer);
return tunEndpoint;
}
llarp_tun_io *
Context::getRange()
{
llarp::handlers::TunEndpoint *tunEndpoint = this->getFirstTun();
2018-09-22 10:23:23 +00:00
if(!tunEndpoint)
{
llarp::LogError("No tunnel endpoint found");
return nullptr;
}
return &tunEndpoint->tunif;
}
2018-10-23 21:28:01 +00:00
bool
Context::FindBestAddressFor(const llarp::AlignedBuffer< 32 > &addr,
bool isSNode, huint32_t &ip)
{
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
2018-11-29 14:01:13 +00:00
if(itr->second->HasAddress(addr))
{
2018-11-29 14:01:13 +00:00
ip = itr->second->ObtainIPForAddr(addr, isSNode);
2018-10-23 21:28:01 +00:00
return true;
}
++itr;
}
2018-10-23 21:28:01 +00:00
itr = m_Endpoints.find("default");
if(itr != m_Endpoints.end())
{
2018-11-29 14:01:13 +00:00
ip = itr->second->ObtainIPForAddr(addr, isSNode);
2018-10-23 21:28:01 +00:00
return true;
}
return false;
}
2018-09-21 12:53:20 +00:00
bool
Context::Prefetch(const llarp::service::Address &addr)
{
llarp::handlers::TunEndpoint *tunEndpoint = this->getFirstTun();
2018-09-22 10:23:23 +00:00
if(!tunEndpoint)
2018-09-21 12:53:20 +00:00
{
llarp::LogError("No tunnel endpoint found");
return false;
}
2018-09-22 10:23:23 +00:00
// HiddenServiceAddresslookup *lookup = new
// HiddenServiceEndpoint(tunEndpoint, callback, addr,
// tunEndpoint->GenTXID());
return tunEndpoint->EnsurePathToService(
addr,
[](__attribute__((unused)) Address addr,
__attribute__((unused)) void *ctx) {},
10000);
2018-09-21 12:53:20 +00:00
}
bool
MapAddressAllIter(struct Context::endpoint_iter *endpointCfg)
{
Context::mapAddressAll_context *context =
(Context::mapAddressAll_context *)endpointCfg->user;
llarp::handlers::TunEndpoint *tunEndpoint =
(llarp::handlers::TunEndpoint *)endpointCfg->endpoint;
if(!tunEndpoint)
{
llarp::LogError("No tunnel endpoint found");
return true; // still continue
}
return tunEndpoint->MapAddress(
context->serviceAddr, context->localPrivateIpAddr.xtohl(), false);
}
bool
Context::MapAddressAll(const llarp::service::Address &addr,
llarp::Addr &localPrivateIpAddr)
{
struct Context::mapAddressAll_context context;
context.serviceAddr = addr;
context.localPrivateIpAddr = localPrivateIpAddr;
struct Context::endpoint_iter i;
i.user = &context;
i.index = 0;
i.visit = &MapAddressAllIter;
return this->iterate(i);
}
bool
2018-11-26 13:29:45 +00:00
Context::AddDefaultEndpoint(
const std::unordered_multimap< std::string, std::string > &opts)
{
2018-11-26 13:29:45 +00:00
Config::section_values_t configOpts;
configOpts.push_back({"type", "tun"});
{
auto itr = opts.begin();
while(itr != opts.end())
{
configOpts.push_back({itr->first, itr->second});
++itr;
}
}
return AddEndpoint({"default", configOpts});
}
bool
2018-11-11 13:14:19 +00:00
Context::StartAll()
{
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
if(!itr->second->Start())
{
llarp::LogError(itr->first, " failed to start");
return false;
}
llarp::LogInfo(itr->first, " started");
++itr;
}
return true;
}
bool
Context::AddEndpoint(const Config::section_t &conf, bool autostart)
{
{
2018-08-23 14:07:53 +00:00
auto itr = m_Endpoints.find(conf.first);
if(itr != m_Endpoints.end())
{
llarp::LogError("cannot add hidden service with duplicate name: ",
conf.first);
return false;
}
}
2018-08-23 14:07:53 +00:00
// extract type
std::string endpointType = "tun";
for(const auto &option : conf.second)
{
if(option.first == "type")
endpointType = option.second;
}
std::unique_ptr< llarp::service::Endpoint > service;
static std::map< std::string,
std::function< llarp::service::Endpoint *(
const std::string &, llarp::Router *) > >
2018-08-23 14:07:53 +00:00
endpointConstructors = {
{"tun",
[](const std::string &nick,
llarp::Router *r) -> llarp::service::Endpoint * {
2018-08-23 14:07:53 +00:00
return new llarp::handlers::TunEndpoint(nick, r);
}},
{"null",
[](const std::string &nick,
llarp::Router *r) -> llarp::service::Endpoint * {
2018-11-29 13:12:35 +00:00
return new llarp::handlers::NullEndpoint(nick, r);
2018-08-23 14:07:53 +00:00
}}};
2018-08-23 14:07:53 +00:00
{
// detect type
auto itr = endpointConstructors.find(endpointType);
if(itr == endpointConstructors.end())
{
llarp::LogError("no such endpoint type: ", endpointType);
return false;
}
// construct
service.reset(itr->second(conf.first, m_Router));
2018-08-23 14:07:53 +00:00
}
// configure
for(const auto &option : conf.second)
{
auto &k = option.first;
2018-08-23 14:07:53 +00:00
if(k == "type")
continue;
auto &v = option.second;
if(!service->SetOption(k, v))
{
llarp::LogError("failed to set ", k, "=", v,
" for hidden service endpoint ", conf.first);
return false;
}
}
2018-11-11 13:14:19 +00:00
if(autostart)
{
// start
if(service->Start())
{
llarp::LogInfo("autostarting hidden service endpoint ",
service->Name());
m_Endpoints.insert(std::make_pair(conf.first, std::move(service)));
return true;
}
llarp::LogError("failed to start hidden service endpoint ", conf.first);
return false;
}
else
{
2018-07-29 23:29:36 +00:00
llarp::LogInfo("added hidden service endpoint ", service->Name());
m_Endpoints.insert(std::make_pair(conf.first, std::move(service)));
return true;
}
}
2018-07-17 04:37:50 +00:00
} // namespace service
} // namespace llarp