2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
|
|
|
#include "policy.hpp"
|
|
|
|
#include <llarp/handlers/exit.hpp>
|
2018-12-12 01:12:59 +00:00
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace exit
|
|
|
|
{
|
|
|
|
/// owner of all the exit endpoints
|
2019-04-19 15:10:26 +00:00
|
|
|
struct Context
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
Context(AbstractRouter* r);
|
2018-11-12 16:43:40 +00:00
|
|
|
~Context();
|
|
|
|
|
|
|
|
void
|
|
|
|
Tick(llarp_time_t now);
|
|
|
|
|
2018-11-15 21:47:05 +00:00
|
|
|
void
|
|
|
|
ClearAllEndpoints();
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
2019-04-19 15:10:26 +00:00
|
|
|
ExtractStatus() const;
|
2019-02-08 19:43:25 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// send close to all exit sessions and remove all sessions
|
|
|
|
void
|
|
|
|
Stop();
|
|
|
|
|
2020-04-28 14:22:04 +00:00
|
|
|
void
|
2020-04-27 15:24:05 +00:00
|
|
|
AddExitEndpoint(
|
|
|
|
const std::string& name, const NetworkConfig& networkConfig, const DnsConfig& dnsConfig);
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2018-11-14 12:23:08 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
ObtainNewExit(const PubKey& remote, const PathID_t& path, bool permitInternet);
|
2018-11-14 12:23:08 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
exit::Endpoint*
|
|
|
|
FindEndpointForPath(const PathID_t& path) const;
|
2018-11-14 12:23:08 +00:00
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
/// calculate (pk, tx, rx) for all exit traffic
|
2021-03-09 18:39:40 +00:00
|
|
|
using TrafficStats = std::unordered_map<PubKey, std::pair<uint64_t, uint64_t>>;
|
2018-11-14 18:02:27 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
CalculateExitTraffic(TrafficStats& stats);
|
2018-11-14 18:02:27 +00:00
|
|
|
|
2021-03-26 20:45:19 +00:00
|
|
|
std::shared_ptr<handlers::ExitEndpoint>
|
|
|
|
GetExitEndpoint(std::string name) const;
|
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
private:
|
2020-04-07 18:38:56 +00:00
|
|
|
AbstractRouter* m_Router;
|
|
|
|
std::unordered_map<std::string, std::shared_ptr<handlers::ExitEndpoint>> m_Exits;
|
|
|
|
std::list<std::shared_ptr<handlers::ExitEndpoint>> m_Closed;
|
2018-11-12 16:43:40 +00:00
|
|
|
};
|
|
|
|
} // namespace exit
|
|
|
|
} // namespace llarp
|