]> git.meshlink.io Git - meshlink/commitdiff
Correctly update our own host config file after meshlink_set_port().
authorGuus Sliepen <guus@meshlink.io>
Mon, 9 Sep 2019 19:35:14 +0000 (21:35 +0200)
committerGuus Sliepen <guus@meshlink.io>
Mon, 9 Sep 2019 20:15:21 +0000 (22:15 +0200)
We wrote the host config file before we updated mesh->self, causing the
old port number to remain in the host config file. This would cause
subsequent calls to meshlink_invite() to have the wrong port number in
the invitation.

src/meshlink.c
test/invite-join.c

index 164c993784b54e5401f19ba364732d304297c002..a9e1b551df18362848fc68a7b5e1f7a0f1192850 100644 (file)
@@ -2159,9 +2159,6 @@ bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
        free(mesh->myport);
        xasprintf(&mesh->myport, "%d", port);
 
        free(mesh->myport);
        xasprintf(&mesh->myport, "%d", port);
 
-       /* Write meshlink.conf with the updated port number */
-       write_main_config_files(mesh);
-
        /* Close down the network. This also deletes mesh->self. */
        close_network_connections(mesh);
 
        /* Close down the network. This also deletes mesh->self. */
        close_network_connections(mesh);
 
@@ -2182,6 +2179,17 @@ bool meshlink_set_port(meshlink_handle_t *mesh, int port) {
                rval = true;
        }
 
                rval = true;
        }
 
+       /* Rebuild our own list of recent addresses */
+       memset(mesh->self->recent, 0, sizeof(mesh->self->recent));
+       add_local_addresses(mesh);
+
+       /* Write meshlink.conf with the updated port number */
+       write_main_config_files(mesh);
+
+       if(!config_sync(mesh, "current")) {
+               return false;
+       }
+
 done:
        pthread_mutex_unlock(&(mesh->mesh_mutex));
 
 done:
        pthread_mutex_unlock(&(mesh->mesh_mutex));
 
index 52a922a89a9509695639dd88e90623255e039884..f76dc536fffeb57da76f7e69400ebec5924c8ba0 100644 (file)
@@ -3,6 +3,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sys/time.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/time.h>
+#include <assert.h>
 
 #include "meshlink.h"
 
 
 #include "meshlink.h"
 
@@ -183,6 +184,42 @@ int main() {
 
        free(corge_url);
 
 
        free(corge_url);
 
+       // Check that invitations work correctly after changing ports
+
+       meshlink_set_invitation_timeout(mesh1, 86400);
+       meshlink_stop(mesh1);
+       meshlink_stop(mesh3);
+
+       int oldport = meshlink_get_port(mesh1);
+       bool success;
+
+       for(int i = 0; i < 100; i++) {
+               success = meshlink_set_port(mesh1, 0x9000 + rand() % 0x1000);
+       }
+
+       assert(success);
+       int newport = meshlink_get_port(mesh1);
+       assert(oldport != newport);
+
+       assert(meshlink_start(mesh1));
+       quux_url = meshlink_invite(mesh1, NULL, "quux");
+       fprintf(stderr, "Invitation URL for quux: %s\n", quux_url);
+
+       // The old port should not be in the invitation URL
+
+       char portstr[10];
+       snprintf(portstr, sizeof(portstr), ":%d", oldport);
+       assert(!strstr(quux_url, portstr));
+
+       // The new port should be in the invitation URL
+
+       snprintf(portstr, sizeof(portstr), ":%d", newport);
+       assert(strstr(quux_url, portstr));
+
+       // The invitation should work
+
+       assert(meshlink_join(mesh3, quux_url));
+
        // Clean up.
 
        meshlink_close(mesh3);
        // Clean up.
 
        meshlink_close(mesh3);