X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnet_setup.c;h=e79550327d1ec5bf15cdc79a4f03a4bda6a3f5ad;hb=771c923ba3d6e2122d822cd1ebd38373020dc422;hp=64088b3af1877f1fbf88d4d6826fb805c265cd90;hpb=53522b1c11222273c7b41f72b374e759d13b2165;p=meshlink diff --git a/src/net_setup.c b/src/net_setup.c index 64088b3a..e7955032 100644 --- a/src/net_setup.c +++ b/src/net_setup.c @@ -36,7 +36,7 @@ /// Helper function to start parsing a host config file static bool node_get_config(meshlink_handle_t *mesh, node_t *n, config_t *config, packmsg_input_t *in) { - if(!config_read(mesh, n->name, config)) { + if(!config_read(mesh, "current", n->name, config, mesh->config_key)) { return false; } @@ -53,7 +53,7 @@ static bool node_get_config(meshlink_handle_t *mesh, node_t *n, config_t *config const char *name; uint32_t len = packmsg_get_str_raw(in, &name); - if(len != strlen(n->name) || strncmp(name, n->name, len)) { + if(len != strlen(n->name) || !name || strncmp(name, n->name, len)) { config_free(config); return false; } @@ -85,11 +85,11 @@ bool node_read_partial(meshlink_handle_t *mesh, node_t *n) { } } - int32_t devclass = packmsg_get_int32(&in); + dev_class_t devclass = packmsg_get_int32(&in); bool blacklisted = packmsg_get_bool(&in); config_free(&config); - if(!packmsg_input_ok(&in) || devclass < 0 || devclass > _DEV_CLASS_MAX) { + if(!packmsg_input_ok(&in) || devclass < 0 || devclass >= DEV_CLASS_COUNT) { return false; } @@ -228,6 +228,10 @@ bool node_read_from_config(meshlink_handle_t *mesh, node_t *n, const config_t *c } bool node_write_config(meshlink_handle_t *mesh, node_t *n) { + if(!mesh->confbase) { + return true; + } + uint8_t buf[4096]; packmsg_output_t out = {buf, sizeof(buf)}; @@ -266,18 +270,20 @@ bool node_write_config(meshlink_handle_t *mesh, node_t *n) { } config_t config = {buf, packmsg_output_size(&out, buf)}; - return config_write(mesh, n->name, &config); + return config_write(mesh, "current", n->name, &config, mesh->config_key); } -static void load_node(meshlink_handle_t *mesh, const char *name) { +static bool load_node(meshlink_handle_t *mesh, const char *name, void *priv) { + (void)priv; + if(!check_id(name)) { - return; + return true; } node_t *n = lookup_node(mesh, name); if(n) { - return; + return true; } n = new_node(); @@ -285,10 +291,12 @@ static void load_node(meshlink_handle_t *mesh, const char *name) { if(!node_read_partial(mesh, n)) { free_node(n); - return; + return true; } node_add(mesh, n); + + return true; } /* @@ -313,7 +321,7 @@ static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bind struct addrinfo *ai; struct addrinfo hint = { - .ai_family = addressfamily, + .ai_family = AF_UNSPEC, .ai_socktype = SOCK_STREAM, .ai_protocol = IPPROTO_TCP, .ai_flags = AI_PASSIVE, @@ -387,15 +395,11 @@ static bool add_listen_address(meshlink_handle_t *mesh, char *address, bool bind bool setup_myself(meshlink_handle_t *mesh) { /* Set some defaults */ - mesh->localdiscovery = true; - keylifetime = 3600; // TODO: check if this can be removed as well mesh->maxtimeout = 900; - mesh->self->options |= OPTION_PMTU_DISCOVERY; /* Done */ mesh->self->nexthop = mesh->self; - mesh->self->via = mesh->self; mesh->self->status.reachable = true; mesh->self->last_state_change = mesh->loop.now.tv_sec; @@ -403,7 +407,7 @@ bool setup_myself(meshlink_handle_t *mesh) { graph(mesh); - config_scan_all(mesh, load_node); + config_scan_all(mesh, "current", "hosts", load_node, NULL); /* Open sockets */ @@ -449,10 +453,6 @@ bool setup_network(meshlink_handle_t *mesh) { init_edges(mesh); init_requests(mesh); - mesh->pinginterval = 60; - mesh->pingtimeout = 5; - maxoutbufsize = 10 * MTU; - if(!setup_myself(mesh)) { return false; }