rcutil main

This commit is contained in:
Ryan Tharp 2018-05-21 12:51:10 +00:00
parent 9e1d8bd943
commit e04410a2a7
1 changed files with 291 additions and 0 deletions

291
daemon/rcutil.cpp Normal file
View File

@ -0,0 +1,291 @@
#include <llarp.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <pthread.h>
static void progress() {
printf(".");
fflush(stdout);
}
struct llarp_main
{
struct llarp_alloc mem;
struct llarp_crypto crypto;
struct llarp_router *router = nullptr;
struct llarp_threadpool *worker = nullptr;
struct llarp_threadpool *thread = nullptr;
struct llarp_logic *logic = nullptr;
struct llarp_config *config = nullptr;
struct llarp_nodedb *nodedb = nullptr;
struct llarp_ev_loop *mainloop = nullptr;
char nodedb_dir[256];
int exitcode;
int shutdown()
{
printf("Shutting down ");
progress();
if(mainloop)
llarp_ev_loop_stop(mainloop);
progress();
if(worker)
llarp_threadpool_stop(worker);
progress();
if(worker)
llarp_threadpool_join(worker);
progress();
if (logic)
llarp_logic_stop(logic);
progress();
if(router)
llarp_stop_router(router);
progress();
llarp_free_router(&router);
progress();
llarp_free_config(&config);
progress();
llarp_ev_loop_free(&mainloop);
progress();
llarp_free_threadpool(&worker);
progress();
llarp_free_logic(&logic);
progress();
printf("\n");
fflush(stdout);
return exitcode;
}
};
void iter_main_config(struct llarp_config_iterator *itr, const char *section,
const char *key, const char *val) {
llarp_main *m = static_cast<llarp_main *>(itr->user);
if (!strcmp(section, "router")) {
if (!strcmp(key, "threads")) {
int workers = atoi(val);
if (workers > 0 && m->worker == nullptr) {
m->worker = llarp_init_threadpool(workers, "llarp-worker");
}
}
}
if (!strcmp(section, "netdb")) {
if (!strcmp(key, "dir")) {
strncpy(m->nodedb_dir, val, sizeof(m->nodedb_dir));
}
}
}
llarp_main * sllarp = nullptr;
void run_net(void * user)
{
llarp_ev_loop_run(static_cast<llarp_ev_loop*>(user));
}
void handle_signal(int sig)
{
printf("\ninterrupted\n");
llarp_ev_loop_stop(sllarp->mainloop);
llarp_logic_stop(sllarp->logic);
}
#include <llarp/router_contact.h>
#include <llarp/time.h>
#include <getopt.h>
#include <fstream>
//#include <experimental/filesystem>
//namespace fs = std::experimental::filesystem;
int main(int argc, char *argv[]) {
// --generate-blank /path/to/file.signed
// --update-ifs /path/to/file.signed
// --key /path/to/long_term_identity.key
// --generate /path/to/file.signed
// --update /path/to/file.signed
//printf("has [%d]options\n", argc);
if (argc < 3) {
printf("please specify --generate or --update with a path to a router contact file\n");
return 0;
}
bool genMode;
bool updMode;
int c;
char *rcfname;
while(1)
{
static struct option long_options[] =
{
{"generate", required_argument, 0 , 'g'},
{"update", required_argument, 0 , 'u'},
{0, 0, 0, 0}
};
int option_index = 0;
c = getopt_long (argc, argv, "gu", long_options, &option_index);
if (c == -1)
break;
switch(c) {
case 0:
break;
case 'g':
//printf ("option -g with value `%s'\n", optarg);
rcfname = optarg;
genMode = true;
break;
case 'u':
//printf ("option -u with value `%s'\n", optarg);
rcfname = optarg;
updMode = true;
break;
default:
abort();
}
}
printf("parsed options\n");
if (!genMode && !updMode) {
printf("I don't know what to do, no generate or update parameter\n");
return 1;
}
sllarp = new llarp_main;
llarp_mem_jemalloc(&sllarp->mem);
auto mem = &sllarp->mem;
//llarp_new_config(&sllarp->config);
//llarp_ev_loop_alloc(&sllarp->mainloop);
llarp_crypto_libsodium_init(&sllarp->crypto);
llarp_rc tmp;
if (genMode) {
printf("Creating [%s]\n", rcfname);
// Jeff wanted tmp to be stack created
// do we still need to zero it out?
llarp_rc_clear(&tmp);
// if we zero it out then
// allocate fresh pointers that the bencoder can expect to be ready
tmp.addrs = llarp_ai_list_new(mem);
tmp.exits = llarp_xi_list_new(mem);
// set updated timestamp
tmp.last_updated = llarp_time_now_ms();
// load longterm identity
llarp_crypto crypt;
fs::path ident_keyfile = "identity.key";
llarp_seckey_t identity;
llarp_findOrCreateIdentity(&crypt, ident_keyfile, &identity);
// get identity public key
uint8_t *pubkey = llarp_seckey_topublic(identity);
llarp_rc_set_pubkey(&tmp, pubkey);
// this causes a segfault
//llarp_rc_sign(&crypt, &identity, &tmp);
// set filename
fs::path our_rc_file = rcfname;
// write file
llarp_rc_write(&tmp, our_rc_file);
// release memory for tmp lists
llarp_rc_free(&tmp);
}
if (updMode) {
printf("Loading [%s]\n", rcfname);
fs::path our_rc_file = rcfname;
std::error_code ec;
if(!fs::exists(our_rc_file, ec)) {
printf("File not found\n");
return 0;
}
std::ifstream f(our_rc_file, std::ios::binary);
if(!f.is_open()) {
printf("Can't open file\n");
return 0;
}
uint8_t tmpc[MAX_RC_SIZE];
llarp_buffer_t buf;
buf.base = (char*)tmpc;
buf.cur = (char*) tmpc;
buf.sz = sizeof(tmpc);
f.read((char*)tmpc, sizeof(MAX_RC_SIZE));
printf("contents[%s]\n", tmpc);
if (!llarp_rc_bdecode(mem, &tmp, &buf)) {
printf("Can't decode\n");
return 0;
}
// set updated timestamp
tmp.last_updated = llarp_time_now_ms();
// load longterm identity
llarp_crypto crypt;
fs::path ident_keyfile = "identity.key";
llarp_seckey_t identity;
llarp_findOrCreateIdentity(&crypt, ident_keyfile, &identity);
// get identity public key
uint8_t *pubkey = llarp_seckey_topublic(identity);
llarp_rc_set_pubkey(&tmp, pubkey);
// set filename
fs::path our_rc_file_out = "update_debug.rc";
// write file
llarp_rc_write(&tmp, our_rc_file_out);
// release memory for tmp lists
llarp_rc_free(&tmp);
}
/*
printf("%s loading config file %s\n", LLARP_VERSION, conffname);
if (!llarp_load_config(llarp->config, conffname)) {
llarp_config_iterator iter;
iter.user = llarp;
iter.visit = iter_main_config;
llarp_config_iter(llarp->config, &iter);
llarp->nodedb = llarp_nodedb_new(mem, &llarp->crypto);
if (llarp->nodedb_dir[0]) {
llarp->nodedb_dir[sizeof(llarp->nodedb_dir) - 1] = 0;
char *dir = llarp->nodedb_dir;
if (llarp_nodedb_ensure_dir(dir)) {
// ensure worker thread pool
if (!llarp->worker) llarp->worker = llarp_init_threadpool(2, "llarp-worker");
// ensure netio thread
llarp->thread = llarp_init_threadpool(1, "llarp-netio");
llarp->logic = llarp_init_logic(mem);
llarp->router = llarp_init_router(mem, llarp->worker, llarp->mainloop, llarp->logic);
if (llarp_configure_router(llarp->router, llarp->config)) {
signal(SIGINT, handle_signal);
printf("starting router\n");
llarp_run_router(llarp->router);
// run mainloop
llarp_threadpool_queue_job(llarp->thread, {llarp->mainloop, &run_net});
printf("running\n");
llarp->exitcode = 0;
llarp_logic_mainloop(llarp->logic);
} else
printf("Failed to configure router\n");
} else
printf("failed to initialize nodedb at %s\n", dir);
} else
printf("no nodedb defined\n");
return llarp->shutdown();
} else
printf("Failed to load config %s\n", conffname);
*/
delete sllarp;
return 1;
}