2018-07-11 18:11:19 +02:00
|
|
|
#ifndef LLARP_SERVICE_CONTEXT_HPP
|
|
|
|
#define LLARP_SERVICE_CONTEXT_HPP
|
2018-12-12 03:15:08 +01:00
|
|
|
|
2018-12-12 02:12:59 +01:00
|
|
|
#include <handlers/tun.hpp>
|
2019-01-11 02:42:02 +01:00
|
|
|
#include <net/net.hpp>
|
2018-12-12 03:15:08 +01:00
|
|
|
#include <service/config.hpp>
|
|
|
|
#include <service/endpoint.hpp>
|
2018-12-12 02:12:59 +01:00
|
|
|
|
2018-07-11 18:11:19 +02:00
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
/// holds all the hidden service endpoints we own
|
2019-02-08 20:43:25 +01:00
|
|
|
struct Context : public util::IStateful
|
2018-07-11 18:11:19 +02:00
|
|
|
{
|
2018-12-10 17:26:46 +01:00
|
|
|
Context(llarp::Router *r);
|
2018-07-11 18:11:19 +02:00
|
|
|
~Context();
|
|
|
|
|
|
|
|
void
|
2018-11-12 17:43:40 +01:00
|
|
|
Tick(llarp_time_t now);
|
2018-07-11 18:11:19 +02:00
|
|
|
|
2018-12-24 17:09:05 +01:00
|
|
|
/// stop all held services
|
|
|
|
bool
|
|
|
|
StopAll();
|
|
|
|
|
2019-02-11 18:14:43 +01:00
|
|
|
util::StatusObject
|
|
|
|
ExtractStatus() const override;
|
2019-02-08 20:43:25 +01:00
|
|
|
|
2018-10-03 12:44:58 +02:00
|
|
|
bool
|
|
|
|
hasEndpoints();
|
|
|
|
|
2018-09-22 12:23:23 +02:00
|
|
|
/// DRY refactor
|
|
|
|
llarp::service::Endpoint *
|
|
|
|
getFirstEndpoint();
|
|
|
|
|
2018-10-23 23:28:01 +02:00
|
|
|
bool
|
2019-01-02 02:04:04 +01:00
|
|
|
FindBestAddressFor(const llarp::AlignedBuffer< 32 > &addr, bool isSNode,
|
|
|
|
huint32_t &);
|
2018-10-23 20:00:55 +02:00
|
|
|
|
2018-09-20 14:35:29 +02:00
|
|
|
/// DRY refactor
|
|
|
|
llarp::handlers::TunEndpoint *
|
|
|
|
getFirstTun();
|
|
|
|
|
|
|
|
/// punch a hole to get ip range from first tun endpoint
|
|
|
|
llarp_tun_io *
|
|
|
|
getRange();
|
|
|
|
|
2018-10-03 12:44:58 +02:00
|
|
|
struct mapAddressAll_context
|
|
|
|
{
|
|
|
|
llarp::service::Address serviceAddr;
|
|
|
|
llarp::Addr localPrivateIpAddr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct endpoint_iter
|
|
|
|
{
|
|
|
|
void *user;
|
|
|
|
llarp::service::Endpoint *endpoint;
|
|
|
|
size_t index;
|
|
|
|
bool (*visit)(struct endpoint_iter *);
|
|
|
|
};
|
|
|
|
|
2018-10-02 19:35:51 +02:00
|
|
|
bool
|
2018-10-03 12:44:58 +02:00
|
|
|
iterate(struct endpoint_iter &i);
|
|
|
|
|
2019-01-28 16:26:35 +01:00
|
|
|
/// function visitor returns false to prematurely break iteration
|
|
|
|
void
|
|
|
|
ForEachService(std::function< bool(const std::string &,
|
|
|
|
const std::unique_ptr< Endpoint > &) >
|
|
|
|
visit);
|
|
|
|
|
2018-09-21 14:53:20 +02:00
|
|
|
/// hint at possible path usage and trigger building early
|
|
|
|
bool
|
|
|
|
Prefetch(const llarp::service::Address &addr);
|
|
|
|
|
2018-10-03 12:44:58 +02:00
|
|
|
bool
|
|
|
|
MapAddressAll(const llarp::service::Address &addr,
|
|
|
|
llarp::Addr &localPrivateIpAddr);
|
|
|
|
|
2018-12-24 17:09:05 +01:00
|
|
|
/// add default endpoint with options
|
2018-10-03 12:44:58 +02:00
|
|
|
bool
|
2018-11-26 14:29:45 +01:00
|
|
|
AddDefaultEndpoint(
|
|
|
|
const std::unordered_multimap< std::string, std::string > &opts);
|
2018-10-03 12:44:58 +02:00
|
|
|
|
2018-12-24 17:09:05 +01:00
|
|
|
/// add endpoint via config
|
2018-07-11 18:11:19 +02:00
|
|
|
bool
|
2018-11-11 14:14:19 +01:00
|
|
|
AddEndpoint(const Config::section_t &conf, bool autostart = false);
|
|
|
|
|
2018-12-24 17:09:05 +01:00
|
|
|
/// stop and remove an endpoint by name
|
|
|
|
/// return false if we don't have the hidden service with that name
|
|
|
|
bool
|
|
|
|
RemoveEndpoint(const std::string &name);
|
|
|
|
|
2018-11-11 14:14:19 +01:00
|
|
|
bool
|
|
|
|
StartAll();
|
2018-07-11 18:11:19 +02:00
|
|
|
|
|
|
|
private:
|
2018-12-10 17:26:46 +01:00
|
|
|
llarp::Router *m_Router;
|
2018-08-17 21:49:58 +02:00
|
|
|
std::unordered_map< std::string, std::unique_ptr< Endpoint > >
|
|
|
|
m_Endpoints;
|
2018-12-24 17:09:05 +01:00
|
|
|
std::list< std::unique_ptr< Endpoint > > m_Stopped;
|
2018-07-11 18:11:19 +02:00
|
|
|
};
|
2018-07-17 06:37:50 +02:00
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|
2018-08-17 21:49:58 +02:00
|
|
|
#endif
|