X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fmeshlink.c;h=185f6689af767d6e3ab207816619962ede74e4fe;hb=1442d234fb6681e32b10348a6c7b226c11629203;hp=134abd83da5e548c3640a1dc056ec107ea189063;hpb=53522b1c11222273c7b41f72b374e759d13b2165;p=meshlink diff --git a/src/meshlink.c b/src/meshlink.c index 134abd83..185f6689 100644 --- a/src/meshlink.c +++ b/src/meshlink.c @@ -531,6 +531,10 @@ int check_port(meshlink_handle_t *mesh) { } static bool write_main_config_files(meshlink_handle_t *mesh) { + if(!mesh->confbase) { + return true; + } + uint8_t buf[4096]; /* Write the main config file */ @@ -548,7 +552,7 @@ static bool write_main_config_files(meshlink_handle_t *mesh) { config_t config = {buf, packmsg_output_size(&out, buf)}; - if(!main_config_write(mesh, &config)) { + if(!main_config_write(mesh, "current", &config, mesh->config_key)) { return false; } @@ -598,7 +602,7 @@ static bool finalize_join(meshlink_handle_t *mesh, const void *buf, uint16_t len mesh->self->devclass = devclass; // Initialize configuration directory - if(!config_init(mesh)) { + if(!config_init(mesh, "current")) { return false; } @@ -652,7 +656,7 @@ static bool finalize_join(meshlink_handle_t *mesh, const void *buf, uint16_t len node_add(mesh, n); - if(!config_write(mesh, n->name, &config)) { + if(!config_write(mesh, "current", n->name, &config, mesh->config_key)) { return false; } } @@ -856,8 +860,8 @@ static void add_local_addresses(meshlink_handle_t *mesh) { } static bool meshlink_setup(meshlink_handle_t *mesh) { - if(!config_init(mesh)) { - logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s: %s\n", mesh->confbase, strerror(errno)); + if(!config_init(mesh, "current")) { + logger(mesh, MESHLINK_ERROR, "Could not set up configuration in %s/current: %s\n", mesh->confbase, strerror(errno)); meshlink_errno = MESHLINK_ESTORAGE; return false; } @@ -880,6 +884,8 @@ static bool meshlink_setup(meshlink_handle_t *mesh) { mesh->self->ecdsa = ecdsa_set_public_key(ecdsa_get_public_key(mesh->private_key)); if(!write_main_config_files(mesh)) { + logger(mesh, MESHLINK_ERROR, "Could not write main config files into %s/current: %s\n", mesh->confbase, strerror(errno)); + meshlink_errno = MESHLINK_ESTORAGE; return false; } @@ -902,7 +908,7 @@ static bool meshlink_read_config(meshlink_handle_t *mesh) { config_t config; - if(!main_config_read(mesh, &config)) { + if(!main_config_read(mesh, "current", &config, mesh->config_key)) { logger(NULL, MESHLINK_ERROR, "Could not read main configuration file!"); return false; } @@ -1051,6 +1057,22 @@ bool meshlink_open_params_set_storage_key(meshlink_open_params_t *params, const return true; } +bool meshlink_encrypted_key_rotate(meshlink_handle_t *mesh, const void *new_key, size_t new_keylen) { + + // While copying old config files to new config files + devtool_keyrotate_probe(1); + // After completed creating new config files in confbase/new/ + devtool_keyrotate_probe(2); + // Rename confbase/current to confbase/old/ + devtool_keyrotate_probe(3); + // Rename confbase/new/ to confbase/current + devtool_keyrotate_probe(4); + // Before deleting old sub-directory + devtool_keyrotate_probe(5); + + return false; +} + void meshlink_open_params_free(meshlink_open_params_t *params) { if(!params) { meshlink_errno = MESHLINK_EINVAL; @@ -1206,7 +1228,7 @@ meshlink_handle_t *meshlink_open_ex(const meshlink_open_params_t *params) { // If no configuration exists yet, create it. - if(!main_config_exists(mesh)) { + if(!meshlink_confbase_exists(mesh)) { if(!meshlink_setup(mesh)) { logger(NULL, MESHLINK_ERROR, "Cannot create initial configuration\n"); meshlink_close(mesh); @@ -1508,7 +1530,21 @@ bool meshlink_destroy(const char *confbase) { return false; } - return config_destroy(confbase); + if(!config_destroy(confbase, "current")) { + logger(NULL, MESHLINK_ERROR, "Cannot remove confbase sub-directories %s: %s\n", confbase, strerror(errno)); + return false; + } + + config_destroy(confbase, "new"); + config_destroy(confbase, "old"); + + if(rmdir(confbase) && errno != ENOENT) { + logger(NULL, MESHLINK_ERROR, "Cannot remove directory %s: %s\n", confbase, strerror(errno)); + meshlink_errno = MESHLINK_ESTORAGE; + return false; + } + + return true; } void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) { @@ -1799,7 +1835,7 @@ static meshlink_node_t **meshlink_get_all_nodes_by_condition(meshlink_handle_t * static bool search_node_by_dev_class(const node_t *node, const void *condition) { dev_class_t *devclass = (dev_class_t *)condition; - if(*devclass == node->devclass) { + if(*devclass == (dev_class_t)node->devclass) { return true; } @@ -2043,6 +2079,7 @@ bool meshlink_set_port(meshlink_handle_t *mesh, int port) { mesh->self = new_node(); mesh->self->name = xstrdup(mesh->name); mesh->self->devclass = mesh->devclass; + xasprintf(&mesh->myport, "%d", port); if(!node_read_public_key(mesh, mesh->self)) { logger(NULL, MESHLINK_ERROR, "Could not read our host configuration file!"); @@ -2096,7 +2133,7 @@ char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, c } // Ensure no host configuration file with that name exists - if(config_exists(mesh, name)) { + if(config_exists(mesh, "current", name)) { logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name); meshlink_errno = MESHLINK_EEXIST; pthread_mutex_unlock(&(mesh->mesh_mutex)); @@ -2166,7 +2203,7 @@ char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, c config_t configs[5] = {NULL}; int count = 0; - if(config_read(mesh, mesh->self->name, &configs[count])) { + if(config_read(mesh, "current", mesh->self->name, &configs[count], mesh->config_key)) { count++; } @@ -2180,7 +2217,7 @@ char *meshlink_invite_ex(meshlink_handle_t *mesh, meshlink_submesh_t *submesh, c config_t config = {outbuf, packmsg_output_size(&inv, outbuf)}; - if(!invitation_write(mesh, cookiehash, &config)) { + if(!invitation_write(mesh, "current", cookiehash, &config, mesh->config_key)) { logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", cookiehash, strerror(errno)); meshlink_errno = MESHLINK_ESTORAGE; pthread_mutex_unlock(&(mesh->mesh_mutex)); @@ -2574,7 +2611,7 @@ bool meshlink_import(meshlink_handle_t *mesh, const char *data) { break; } - config_write(mesh, n->name, &config); + config_write(mesh, "current", n->name, &config, mesh->config_key); node_add(mesh, n); }