#include "nodedb.hpp" #include #include #include #include #include #include #include #include #include #include #include #if (__FreeBSD__) || (__OpenBSD__) || (__NetBSD__) #include #endif namespace llarp { bool Context::CallSafe(std::function f) { if (!loop) return false; loop->call_soon(std::move(f)); return true; } void Context::Configure(std::shared_ptr conf) { if (nullptr != config.get()) throw std::runtime_error("Config already exists"); config = std::move(conf); } bool Context::IsUp() const { return router && router->IsRunning(); } bool Context::LooksAlive() const { return router && router->LooksAlive(); } void Context::Setup(const RuntimeOptions& opts) { /// Call one of the Configure() methods before calling Setup() if (not config) throw std::runtime_error("Cannot call Setup() on context without a Config"); if (opts.showBanner) llarp::LogInfo(fmt::format("{}", llarp::LOKINET_VERSION_FULL)); if (!loop) { auto jobQueueSize = std::max(event_loop_queue_size, config->router.job_que_size); loop = EventLoop::create(jobQueueSize); } router = makeRouter(loop); nodedb = makeNodeDB(); if (!router->Configure(config, opts.isSNode, nodedb)) throw std::runtime_error("Failed to configure router"); } std::shared_ptr Context::makeNodeDB() { return std::make_shared( nodedb_dirname, [r = router.get()](auto call) { r->queue_disk_io(std::move(call)); }, router.get()); } std::shared_ptr Context::makeRouter(const EventLoop_ptr& loop) { return std::make_shared(loop, makeVPNPlatform()); } std::shared_ptr Context::makeVPNPlatform() { auto plat = vpn::MakeNativePlatform(this); if (plat == nullptr) throw std::runtime_error("vpn platform not supported"); return plat; } int Context::Run(const RuntimeOptions&) { if (router == nullptr) { // we are not set up so we should die llarp::LogError("cannot run non configured context"); return 1; } if (not router->Run()) return 2; // run net io thread llarp::LogInfo("running mainloop"); loop->run(); if (closeWaiter) { closeWaiter->set_value(); } Close(); return 0; } void Context::CloseAsync() { /// already closing if (IsStopping()) return; loop->call([this]() { HandleSignal(SIGTERM); }); closeWaiter = std::make_unique>(); } bool Context::IsStopping() const { return closeWaiter.operator bool(); } void Context::Wait() { if (closeWaiter) { closeWaiter->get_future().wait(); closeWaiter.reset(); } } void Context::HandleSignal(int sig) { llarp::log::debug(logcat, "Handling signal {}", sig); if (sig == SIGINT || sig == SIGTERM) { SigINT(); } #ifndef _WIN32 if (sig == SIGUSR1) { if (router and not router->is_service_node()) { LogInfo("SIGUSR1: resetting network state"); router->Thaw(); } } if (sig == SIGHUP) { Reload(); } #endif } void Context::Reload() {} void Context::SigINT() { if (router) { llarp::log::error(logcat, "Handling SIGINT"); /// async stop router on sigint router->Stop(); } } void Context::Close() { llarp::LogDebug("free config"); config.reset(); llarp::LogDebug("free nodedb"); nodedb.reset(); llarp::LogDebug("free router"); router.reset(); llarp::LogDebug("free loop"); loop.reset(); } Context::Context() { // service_manager is a global and context isnt llarp::sys::service_manager->give_context(this); } } // namespace llarp