2019-01-11 00:12:43 +00:00
|
|
|
#include <llarp.hpp>
|
|
|
|
#include <llarp.h>
|
|
|
|
|
2019-02-11 14:43:48 +00:00
|
|
|
#include <config.hpp>
|
2019-01-26 15:40:58 +00:00
|
|
|
#include <crypto/crypto_libsodium.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <dht/context.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <dns/dotlokilookup.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <dnsd.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <ev/ev.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <nodedb.hpp>
|
2019-01-14 21:46:07 +00:00
|
|
|
#include <router/router.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <util/logger.h>
|
2019-01-11 00:12:43 +00:00
|
|
|
|
|
|
|
#include <getopt.h>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <signal.h>
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <sys/param.h> // for MIN
|
2018-08-09 11:22:57 +00:00
|
|
|
|
2018-07-26 01:00:15 +00:00
|
|
|
#if(__FreeBSD__) || (__OpenBSD__) || (__NetBSD__)
|
2018-05-29 12:13:33 +00:00
|
|
|
#include <pthread_np.h>
|
|
|
|
#endif
|
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
Context::~Context()
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
llarp_ev_loop *ptr = mainloop.release();
|
|
|
|
llarp_ev_loop_free(&ptr);
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::progress()
|
|
|
|
{
|
2018-07-24 06:33:22 +00:00
|
|
|
std::cout << "." << std::flush;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-12-24 16:09:05 +00:00
|
|
|
Context::Configure()
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("loading config at ", configfile);
|
2019-02-12 00:33:19 +00:00
|
|
|
if(!config->Load(configfile.c_str()))
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
config.release();
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("failed to load config file ", configfile);
|
2018-06-19 09:44:53 +00:00
|
|
|
return false;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2019-02-11 14:43:48 +00:00
|
|
|
using namespace std::placeholders;
|
|
|
|
config->visit(std::bind(&Context::iter_config, this, _1, _2, _3));
|
2018-12-24 16:09:05 +00:00
|
|
|
return true;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-02-11 14:43:48 +00:00
|
|
|
Context::iter_config(const char *section, const char *key, const char *val)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2019-01-18 13:24:33 +00:00
|
|
|
if(!strcmp(section, "system"))
|
|
|
|
{
|
|
|
|
if(!strcmp(key, "pidfile"))
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
SetPIDFile(val);
|
2019-01-18 13:24:33 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-27 17:44:01 +00:00
|
|
|
if(!strcmp(section, "router"))
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
if(!strcmp(key, "worker-threads") && !singleThreaded)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
|
|
|
int workers = atoi(val);
|
2019-02-11 14:43:48 +00:00
|
|
|
if(workers > 0 && worker == nullptr)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
worker.reset(llarp_init_threadpool(workers, "llarp-worker"));
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-06-29 12:15:15 +00:00
|
|
|
}
|
|
|
|
else if(!strcmp(key, "net-threads"))
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
num_nethreads = atoi(val);
|
|
|
|
if(num_nethreads <= 0)
|
|
|
|
num_nethreads = 1;
|
|
|
|
if(singleThreaded)
|
|
|
|
num_nethreads = 0;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!strcmp(section, "netdb"))
|
|
|
|
{
|
|
|
|
if(!strcmp(key, "dir"))
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
nodedb_dir = val;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-21 15:45:18 +00:00
|
|
|
void
|
|
|
|
Context::SetPIDFile(const std::string &fname)
|
2019-01-18 13:24:33 +00:00
|
|
|
{
|
|
|
|
pidfile = fname;
|
|
|
|
}
|
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
int
|
2018-06-19 09:44:53 +00:00
|
|
|
Context::LoadDatabase()
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2019-01-26 15:40:58 +00:00
|
|
|
crypto = std::make_unique< sodium::CryptoLibSodium >();
|
2019-02-22 16:21:05 +00:00
|
|
|
nodedb =
|
|
|
|
std::make_unique< llarp_nodedb >(crypto.get(), router->diskworker());
|
2018-06-13 11:40:49 +00:00
|
|
|
|
2018-12-10 23:29:58 +00:00
|
|
|
if(!llarp_nodedb::ensure_dir(nodedb_dir.c_str()))
|
2018-06-13 11:40:49 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("nodedb_dir is incorrect");
|
2018-06-13 11:40:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("nodedb_dir [", nodedb_dir, "] configured!");
|
2018-12-10 23:29:58 +00:00
|
|
|
ssize_t loaded = nodedb->load_dir(nodedb_dir.c_str());
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("nodedb_dir loaded ", loaded, " RCs from [", nodedb_dir,
|
|
|
|
"]");
|
2018-06-17 15:26:00 +00:00
|
|
|
if(loaded < 0)
|
2018-06-13 11:40:49 +00:00
|
|
|
{
|
|
|
|
// shouldn't be possible
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("nodedb_dir directory doesn't exist");
|
2018-06-13 11:40:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2019-01-11 00:12:43 +00:00
|
|
|
Context::IterateDatabase(llarp_nodedb_iter &i)
|
2018-06-19 09:44:53 +00:00
|
|
|
{
|
2018-12-10 23:29:58 +00:00
|
|
|
return nodedb->iterate_all(i);
|
2018-06-19 09:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-11-07 15:30:22 +00:00
|
|
|
Context::PutDatabase(__attribute__((unused)) struct llarp::RouterContact &rc)
|
2018-06-19 09:44:53 +00:00
|
|
|
{
|
2018-09-19 12:22:34 +00:00
|
|
|
// FIXME
|
2018-09-22 10:23:23 +00:00
|
|
|
// return llarp_nodedb_put_rc(nodedb, rc);
|
2018-09-19 12:22:34 +00:00
|
|
|
return false;
|
2018-06-19 09:44:53 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 12:22:34 +00:00
|
|
|
llarp::RouterContact *
|
2018-11-07 15:30:22 +00:00
|
|
|
Context::GetDatabase(__attribute__((unused)) const byte_t *pk)
|
2018-06-21 11:11:55 +00:00
|
|
|
{
|
2018-09-19 12:22:34 +00:00
|
|
|
// FIXME
|
2018-09-22 10:23:23 +00:00
|
|
|
// return llarp_nodedb_get_rc(nodedb, pk);
|
2018-09-19 12:22:34 +00:00
|
|
|
return nullptr;
|
2018-06-21 11:11:55 +00:00
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
|
|
|
|
int
|
2018-06-23 14:56:59 +00:00
|
|
|
Context::Setup()
|
2018-06-19 09:44:53 +00:00
|
|
|
{
|
2018-07-24 06:37:12 +00:00
|
|
|
llarp::LogInfo(LLARP_VERSION, " ", LLARP_RELEASE_MOTTO);
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("starting up");
|
2019-02-11 14:43:48 +00:00
|
|
|
mainloop = llarp_make_ev_loop();
|
2018-06-13 11:40:49 +00:00
|
|
|
|
2018-06-06 17:02:57 +00:00
|
|
|
// ensure worker thread pool
|
|
|
|
if(!worker && !singleThreaded)
|
2019-02-11 14:43:48 +00:00
|
|
|
worker.reset(llarp_init_threadpool(2, "llarp-worker"));
|
2018-06-06 17:02:57 +00:00
|
|
|
else if(singleThreaded)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("running in single threaded mode");
|
2019-02-11 14:43:48 +00:00
|
|
|
worker.reset(llarp_init_same_process_threadpool());
|
2018-06-06 17:02:57 +00:00
|
|
|
}
|
|
|
|
// ensure netio thread
|
|
|
|
if(singleThreaded)
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
logic = std::make_unique< Logic >(worker.get());
|
2018-06-06 17:02:57 +00:00
|
|
|
}
|
|
|
|
else
|
2019-02-11 14:43:48 +00:00
|
|
|
logic = std::make_unique< Logic >();
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2019-02-11 14:43:48 +00:00
|
|
|
router =
|
|
|
|
std::make_unique< Router >(worker.get(), mainloop.get(), logic.get());
|
|
|
|
if(!router->Configure(config.get()))
|
2018-06-06 17:02:57 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("Failed to configure router");
|
2018-06-23 14:56:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-12-28 15:34:41 +00:00
|
|
|
// must be done after router is made so we can use its disk io worker
|
|
|
|
// must also be done after configure so that netid is properly set if it is
|
|
|
|
// provided by config
|
|
|
|
if(!this->LoadDatabase())
|
|
|
|
return 1;
|
2018-11-26 22:46:22 +00:00
|
|
|
return 0;
|
2018-06-23 14:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Context::Run()
|
|
|
|
{
|
2018-12-02 18:07:07 +00:00
|
|
|
if(router == nullptr)
|
2018-06-23 14:56:59 +00:00
|
|
|
{
|
2018-12-02 18:07:07 +00:00
|
|
|
// we are not set up so we should die
|
|
|
|
llarp::LogError("cannot run non configured context");
|
|
|
|
return 1;
|
2018-06-23 14:56:59 +00:00
|
|
|
}
|
2019-01-18 13:24:33 +00:00
|
|
|
if(!WritePIDFile())
|
|
|
|
return 1;
|
2018-11-26 22:46:22 +00:00
|
|
|
// run
|
2019-02-11 14:43:48 +00:00
|
|
|
if(!router->Run(nodedb.get()))
|
2018-12-02 18:07:07 +00:00
|
|
|
return 1;
|
2019-01-21 15:45:18 +00:00
|
|
|
|
2018-06-23 14:56:59 +00:00
|
|
|
// run net io thread
|
2018-09-21 12:30:57 +00:00
|
|
|
llarp::LogInfo("running mainloop");
|
2019-02-11 14:43:48 +00:00
|
|
|
llarp_ev_loop_run_single_process(mainloop.get(), worker.get(), logic.get());
|
2018-12-24 16:09:05 +00:00
|
|
|
// waits for router graceful stop
|
2018-06-23 14:56:59 +00:00
|
|
|
return 0;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-18 13:24:33 +00:00
|
|
|
bool
|
|
|
|
Context::WritePIDFile() const
|
|
|
|
{
|
|
|
|
if(pidfile.size())
|
|
|
|
{
|
|
|
|
std::ofstream f(pidfile);
|
|
|
|
f << std::to_string(getpid());
|
|
|
|
return f.good();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::RemovePIDFile() const
|
|
|
|
{
|
|
|
|
if(pidfile.size())
|
|
|
|
{
|
|
|
|
fs::path f = pidfile;
|
|
|
|
std::error_code ex;
|
|
|
|
if(fs::exists(f, ex))
|
|
|
|
{
|
|
|
|
if(!ex)
|
|
|
|
fs::remove(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
void
|
|
|
|
Context::HandleSignal(int sig)
|
|
|
|
{
|
2018-11-29 13:12:28 +00:00
|
|
|
if(sig == SIGINT || sig == SIGTERM)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
|
|
|
SigINT();
|
|
|
|
}
|
2018-08-09 11:22:57 +00:00
|
|
|
// TODO(despair): implement hot-reloading config on NT
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
2018-05-27 17:44:01 +00:00
|
|
|
if(sig == SIGHUP)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("SIGHUP");
|
2018-12-24 16:09:05 +00:00
|
|
|
if(router)
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
Config newconfig;
|
|
|
|
if(newconfig.Load(configfile.c_str()))
|
2018-12-24 16:09:05 +00:00
|
|
|
{
|
|
|
|
llarp::LogError("failed to load config file ", configfile);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// validate config
|
2019-02-11 14:43:48 +00:00
|
|
|
if(!router->ValidateConfig(&newconfig))
|
2018-12-24 16:09:05 +00:00
|
|
|
{
|
|
|
|
llarp::LogWarn("new configuration is invalid");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// reconfigure
|
2019-02-11 14:43:48 +00:00
|
|
|
if(!router->Reconfigure(&newconfig))
|
2018-12-24 16:09:05 +00:00
|
|
|
{
|
|
|
|
llarp::LogError("Failed to reconfigure so we will stop.");
|
|
|
|
router->Stop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
llarp::LogInfo("router reconfigured");
|
|
|
|
}
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::SigINT()
|
|
|
|
{
|
2018-12-24 16:09:05 +00:00
|
|
|
if(router)
|
|
|
|
{
|
|
|
|
/// async stop router on sigint
|
|
|
|
router->Stop();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(logic)
|
|
|
|
logic->stop();
|
2019-02-11 14:43:48 +00:00
|
|
|
llarp_ev_loop_stop(mainloop.get());
|
2018-12-24 16:09:05 +00:00
|
|
|
Close();
|
|
|
|
}
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::Close()
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("stop workers");
|
2018-05-27 17:44:01 +00:00
|
|
|
if(worker)
|
2019-02-11 14:43:48 +00:00
|
|
|
llarp_threadpool_stop(worker.get());
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("join workers");
|
2018-05-27 17:44:01 +00:00
|
|
|
if(worker)
|
2019-02-11 14:43:48 +00:00
|
|
|
llarp_threadpool_join(worker.get());
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free config");
|
2019-02-11 14:43:48 +00:00
|
|
|
config.release();
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free workers");
|
2019-02-11 14:43:48 +00:00
|
|
|
worker.release();
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free nodedb");
|
2019-02-11 14:43:48 +00:00
|
|
|
nodedb.release();
|
|
|
|
|
|
|
|
llarp::LogDebug("free router");
|
|
|
|
router.release();
|
|
|
|
|
|
|
|
llarp::LogDebug("free logic");
|
|
|
|
logic.release();
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2019-01-18 13:24:33 +00:00
|
|
|
RemovePIDFile();
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Context::LoadConfig(const std::string &fname)
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
config = std::make_unique< Config >();
|
2018-05-27 17:44:01 +00:00
|
|
|
configfile = fname;
|
2018-12-24 16:09:05 +00:00
|
|
|
return Configure();
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
} // namespace llarp
|
2018-05-27 18:03:10 +00:00
|
|
|
|
|
|
|
struct llarp_main
|
|
|
|
{
|
|
|
|
std::unique_ptr< llarp::Context > ctx;
|
|
|
|
};
|
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
extern "C"
|
2018-05-27 18:03:10 +00:00
|
|
|
{
|
2018-07-27 03:41:55 +00:00
|
|
|
struct llarp_main *
|
|
|
|
llarp_main_init(const char *fname, bool multiProcess)
|
2018-07-12 13:43:37 +00:00
|
|
|
{
|
2018-08-09 11:22:57 +00:00
|
|
|
if(!fname)
|
|
|
|
fname = "daemon.ini";
|
|
|
|
char *var = getenv("LLARP_DEBUG");
|
|
|
|
if(var && *var == '1')
|
|
|
|
{
|
|
|
|
cSetLogLevel(eLogDebug);
|
|
|
|
}
|
|
|
|
llarp_main *m = new llarp_main;
|
|
|
|
m->ctx.reset(new llarp::Context());
|
|
|
|
m->ctx->singleThreaded = !multiProcess;
|
|
|
|
if(!m->ctx->LoadConfig(fname))
|
|
|
|
{
|
|
|
|
m->ctx->Close();
|
|
|
|
delete m;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return m;
|
2018-07-12 13:43:37 +00:00
|
|
|
}
|
2018-07-27 03:41:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
llarp_main_signal(struct llarp_main *ptr, int sig)
|
2018-05-27 18:03:10 +00:00
|
|
|
{
|
2018-08-09 11:22:57 +00:00
|
|
|
ptr->ctx->HandleSignal(sig);
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 18:07:07 +00:00
|
|
|
void
|
|
|
|
llarp_main_inject_vpn_fd(struct llarp_main *ptr, int fd)
|
2018-11-26 22:46:22 +00:00
|
|
|
{
|
2018-12-02 18:07:07 +00:00
|
|
|
llarp::handlers::TunEndpoint *tun =
|
2019-02-22 16:21:05 +00:00
|
|
|
ptr->ctx->router->hiddenServiceContext().getFirstTun();
|
2018-11-26 22:46:22 +00:00
|
|
|
if(!tun)
|
|
|
|
return;
|
|
|
|
if(!tun->Promise)
|
|
|
|
return;
|
|
|
|
tun->Promise->Set(fd);
|
|
|
|
}
|
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
int
|
|
|
|
llarp_main_setup(struct llarp_main *ptr)
|
|
|
|
{
|
2018-08-09 11:22:57 +00:00
|
|
|
return ptr->ctx->Setup();
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-23 14:56:59 +00:00
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
int
|
|
|
|
llarp_main_run(struct llarp_main *ptr)
|
|
|
|
{
|
2018-10-03 11:00:47 +00:00
|
|
|
if(!ptr)
|
|
|
|
{
|
|
|
|
llarp::LogError("No ptr passed in");
|
2018-11-26 22:46:22 +00:00
|
|
|
return 1;
|
2018-10-03 11:00:47 +00:00
|
|
|
}
|
2018-08-09 11:22:57 +00:00
|
|
|
return ptr->ctx->Run();
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-05-27 18:03:10 +00:00
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
void
|
|
|
|
llarp_main_abort(struct llarp_main *ptr)
|
|
|
|
{
|
2019-01-29 02:16:31 +00:00
|
|
|
ptr->ctx->router->logic()->stop_timer();
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-07-03 11:25:36 +00:00
|
|
|
|
2018-09-19 12:22:34 +00:00
|
|
|
void
|
|
|
|
llarp_main_queryDHT_RC(struct llarp_main *ptr,
|
|
|
|
struct llarp_router_lookup_job *job)
|
2018-07-27 03:41:55 +00:00
|
|
|
{
|
2019-01-29 02:16:31 +00:00
|
|
|
llarp_dht_lookup_router(ptr->ctx->router->dht(), job);
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
bool
|
2018-09-19 12:22:34 +00:00
|
|
|
llarp_main_init_dnsd(struct llarp_main *ptr, struct dnsd_context *dnsd,
|
2018-09-29 10:27:38 +00:00
|
|
|
const llarp::Addr &dnsd_sockaddr,
|
|
|
|
const llarp::Addr &dnsc_sockaddr)
|
2018-07-27 03:41:55 +00:00
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
return llarp_dnsd_init(dnsd, ptr->ctx->logic.get(),
|
|
|
|
ptr->ctx->mainloop.get(), dnsd_sockaddr,
|
|
|
|
dnsc_sockaddr);
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
bool
|
|
|
|
llarp_main_init_dotLokiLookup(struct llarp_main *ptr,
|
|
|
|
struct dotLokiLookup *dll)
|
|
|
|
{
|
2018-12-03 22:22:59 +00:00
|
|
|
(void)ptr;
|
|
|
|
(void)dll;
|
2019-02-11 14:43:48 +00:00
|
|
|
// TODO: gut me
|
2018-12-03 22:22:59 +00:00
|
|
|
return false;
|
2018-09-22 10:23:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
void
|
|
|
|
llarp_main_free(struct llarp_main *ptr)
|
|
|
|
{
|
2018-08-08 17:43:46 +00:00
|
|
|
delete ptr;
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-29 12:15:15 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
int
|
|
|
|
llarp_main_loadDatabase(struct llarp_main *ptr)
|
|
|
|
{
|
|
|
|
return ptr->ctx->LoadDatabase();
|
|
|
|
}
|
2018-09-19 12:22:34 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
int
|
|
|
|
llarp_main_iterateDatabase(struct llarp_main *ptr, struct llarp_nodedb_iter i)
|
|
|
|
{
|
|
|
|
return ptr->ctx->IterateDatabase(i);
|
|
|
|
}
|
2018-09-19 12:22:34 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
bool
|
2018-09-24 13:10:36 +00:00
|
|
|
llarp_main_putDatabase(struct llarp_main *ptr, llarp::RouterContact &rc)
|
2018-09-22 10:23:23 +00:00
|
|
|
{
|
|
|
|
return ptr->ctx->PutDatabase(rc);
|
|
|
|
}
|
2018-09-19 12:22:34 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
llarp::RouterContact *
|
|
|
|
llarp_main_getDatabase(struct llarp_main *ptr, byte_t *pk)
|
|
|
|
{
|
|
|
|
return ptr->ctx->GetDatabase(pk);
|
|
|
|
}
|
2018-09-19 12:22:34 +00:00
|
|
|
|
|
|
|
llarp::RouterContact *
|
2018-11-07 15:30:22 +00:00
|
|
|
llarp_main_getLocalRC(__attribute__((unused)) struct llarp_main *ptr)
|
2018-07-27 03:41:55 +00:00
|
|
|
{
|
2018-09-22 10:23:23 +00:00
|
|
|
return nullptr;
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-28 11:32:26 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
void
|
2018-11-07 15:30:22 +00:00
|
|
|
llarp_main_checkOnline(void *u, __attribute__((unused)) uint64_t orig,
|
|
|
|
uint64_t left)
|
2018-09-22 10:23:23 +00:00
|
|
|
{
|
|
|
|
// llarp::Info("checkOnline - check ", left);
|
|
|
|
if(left)
|
|
|
|
return;
|
|
|
|
struct check_online_request *request =
|
|
|
|
static_cast< struct check_online_request * >(u);
|
|
|
|
// llarp::Debug("checkOnline - running");
|
|
|
|
// llarp::Info("checkOnline - DHT nodes ",
|
|
|
|
// request->ptr->ctx->router->dht->impl.nodes->nodes.size());
|
|
|
|
request->online = false;
|
2019-02-22 15:08:00 +00:00
|
|
|
request->nodes =
|
|
|
|
request->ptr->ctx->router->dht()->impl->Nodes()->nodes.size();
|
|
|
|
if(request->ptr->ctx->router->dht()->impl->Nodes()->nodes.size())
|
2018-09-22 10:23:23 +00:00
|
|
|
{
|
|
|
|
// llarp::Info("checkOnline - Going to say we're online");
|
|
|
|
request->online = true;
|
|
|
|
}
|
|
|
|
request->hook(request);
|
|
|
|
// reschedue our self
|
|
|
|
llarp_main_queryDHT(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_main_queryDHT_online(struct check_online_request *request)
|
2018-08-09 11:22:57 +00:00
|
|
|
{
|
2018-09-22 10:23:23 +00:00
|
|
|
// Info("llarp_main_queryDHT_online: ", request->online ? "online" :
|
|
|
|
// "offline");
|
|
|
|
if(request->online && !request->first)
|
|
|
|
{
|
|
|
|
request->first = true;
|
|
|
|
llarp::LogInfo("llarp_main_queryDHT_online - We're online");
|
|
|
|
llarp::LogInfo("llarp_main_queryDHT_online - Querying DHT");
|
2019-01-29 02:16:31 +00:00
|
|
|
llarp_dht_lookup_router(request->ptr->ctx->router->dht(), request->job);
|
2018-09-22 10:23:23 +00:00
|
|
|
}
|
2018-07-27 03:41:55 +00:00
|
|
|
}
|
2018-06-23 14:56:59 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
void
|
|
|
|
llarp_main_queryDHT(struct check_online_request *request)
|
|
|
|
{
|
|
|
|
// llarp::Info("llarp_main_queryDHT - setting up timer");
|
|
|
|
request->hook = &llarp_main_queryDHT_online;
|
2019-01-29 02:16:31 +00:00
|
|
|
request->ptr->ctx->router->logic()->call_later(
|
2018-12-10 14:14:55 +00:00
|
|
|
{1000, request, &llarp_main_checkOnline});
|
2018-09-22 10:23:23 +00:00
|
|
|
// llarp_dht_lookup_router(ptr->ctx->router->dht, job);
|
|
|
|
}
|
2018-09-20 12:34:53 +00:00
|
|
|
|
2018-09-22 10:23:23 +00:00
|
|
|
bool
|
|
|
|
main_router_prefetch(struct llarp_main *ptr,
|
|
|
|
const llarp::service::Address &addr)
|
|
|
|
{
|
2019-02-22 16:21:05 +00:00
|
|
|
auto &endpoint = ptr->ctx->router->hiddenServiceContext();
|
|
|
|
return endpoint.Prefetch(addr);
|
2018-09-22 10:23:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
llarp::handlers::TunEndpoint *
|
|
|
|
main_router_getFirstTunEndpoint(struct llarp_main *ptr)
|
|
|
|
{
|
2018-11-26 22:46:22 +00:00
|
|
|
if(ptr && ptr->ctx && ptr->ctx->router)
|
2019-02-22 16:21:05 +00:00
|
|
|
return ptr->ctx->router->hiddenServiceContext().getFirstTun();
|
2018-11-26 22:46:22 +00:00
|
|
|
return nullptr;
|
2018-10-03 11:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
main_router_endpoint_iterator(
|
|
|
|
struct llarp_main *ptr, struct llarp::service::Context::endpoint_iter &i)
|
|
|
|
{
|
2019-02-22 16:21:05 +00:00
|
|
|
return ptr->ctx->router->hiddenServiceContext().iterate(i);
|
2018-09-22 10:23:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
llarp_tun_io *
|
|
|
|
main_router_getRange(struct llarp_main *ptr)
|
|
|
|
{
|
2019-02-22 16:21:05 +00:00
|
|
|
return ptr->ctx->router->hiddenServiceContext().getRange();
|
2018-09-22 10:23:23 +00:00
|
|
|
}
|
2018-09-20 12:34:53 +00:00
|
|
|
|
2018-07-27 03:41:55 +00:00
|
|
|
const char *
|
|
|
|
handleBaseCmdLineArgs(int argc, char *argv[])
|
2018-07-26 10:52:23 +00:00
|
|
|
{
|
2018-08-09 11:22:57 +00:00
|
|
|
const char *conffname = "daemon.ini";
|
|
|
|
int c;
|
|
|
|
while(1)
|
2018-07-26 10:52:23 +00:00
|
|
|
{
|
2018-08-09 11:22:57 +00:00
|
|
|
static struct option long_options[] = {
|
|
|
|
{"config", required_argument, 0, 'c'},
|
|
|
|
{"logLevel", required_argument, 0, 'o'},
|
|
|
|
{0, 0, 0, 0}};
|
|
|
|
int option_index = 0;
|
|
|
|
c = getopt_long(argc, argv, "c:o:", long_options, &option_index);
|
|
|
|
if(c == -1)
|
2018-07-30 04:38:14 +00:00
|
|
|
break;
|
2018-08-09 11:22:57 +00:00
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
conffname = optarg;
|
|
|
|
break;
|
|
|
|
case 'o':
|
2018-11-06 14:06:09 +00:00
|
|
|
if(strncmp(optarg, "debug", std::min(strlen(optarg), size_t(5))) == 0)
|
2018-08-09 11:22:57 +00:00
|
|
|
{
|
|
|
|
cSetLogLevel(eLogDebug);
|
|
|
|
}
|
2018-11-06 14:06:09 +00:00
|
|
|
else if(strncmp(optarg, "info", std::min(strlen(optarg), size_t(4)))
|
2018-08-09 11:22:57 +00:00
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
cSetLogLevel(eLogInfo);
|
|
|
|
}
|
2018-11-06 14:06:09 +00:00
|
|
|
else if(strncmp(optarg, "warn", std::min(strlen(optarg), size_t(4)))
|
2018-08-09 11:22:57 +00:00
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
cSetLogLevel(eLogWarn);
|
|
|
|
}
|
2018-11-06 14:06:09 +00:00
|
|
|
else if(strncmp(optarg, "error", std::min(strlen(optarg), size_t(5)))
|
2018-08-09 11:22:57 +00:00
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
cSetLogLevel(eLogError);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2018-07-26 10:52:23 +00:00
|
|
|
}
|
2018-08-09 11:22:57 +00:00
|
|
|
return conffname;
|
2018-07-26 10:52:23 +00:00
|
|
|
}
|
|
|
|
}
|