]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Merge branch 'mesh_topology_output' into roles
[meshlink] / src / meshlink.c
1 /*
2     meshlink.c -- Implementation of the MeshLink API.
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 #define VAR_SERVER 1    /* Should be in meshlink.conf */
20 #define VAR_HOST 2      /* Can be in host config file */
21 #define VAR_MULTIPLE 4  /* Multiple statements allowed */
22 #define VAR_OBSOLETE 8  /* Should not be used anymore */
23 #define VAR_SAFE 16     /* Variable is safe when accepting invitations */
24 #define MAX_ADDRESS_LENGTH 45 /* Max length of an (IPv6) address */
25 #define MAX_PORT_LENGTH 5 /* 0-65535 */
26 typedef struct {
27         const char *name;
28         int type;
29 } var_t;
30
31 #include "system.h"
32 #include <pthread.h>
33
34 #include "crypto.h"
35 #include "ecdsagen.h"
36 #include "logger.h"
37 #include "meshlink_internal.h"
38 #include "netutl.h"
39 #include "node.h"
40 #include "protocol.h"
41 #include "route.h"
42 #include "utils.h"
43 #include "xalloc.h"
44 #include "ed25519/sha512.h"
45 #include "discovery.h"
46
47 #ifndef MSG_NOSIGNAL
48 #define MSG_NOSIGNAL 0
49 #endif
50
51 static pthread_mutex_t global_mutex;
52
53 __thread meshlink_errno_t meshlink_errno;
54 meshlink_log_cb_t global_log_cb;
55 meshlink_log_level_t global_log_level;
56
57 //TODO: this can go away completely
58 const var_t variables[] = {
59         /* Server configuration */
60         {"AddressFamily", VAR_SERVER},
61         {"AutoConnect", VAR_SERVER | VAR_SAFE},
62         {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
63         {"BindToInterface", VAR_SERVER},
64         {"Broadcast", VAR_SERVER | VAR_SAFE},
65         {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
66         {"DecrementTTL", VAR_SERVER},
67         {"Device", VAR_SERVER},
68         {"DeviceType", VAR_SERVER},
69         {"DirectOnly", VAR_SERVER},
70         {"ECDSAPrivateKeyFile", VAR_SERVER},
71         {"ExperimentalProtocol", VAR_SERVER},
72         {"Forwarding", VAR_SERVER},
73         {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
74         {"Hostnames", VAR_SERVER},
75         {"IffOneQueue", VAR_SERVER},
76         {"Interface", VAR_SERVER},
77         {"KeyExpire", VAR_SERVER},
78         {"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
79         {"LocalDiscovery", VAR_SERVER},
80         {"MACExpire", VAR_SERVER},
81         {"MaxConnectionBurst", VAR_SERVER},
82         {"MaxOutputBufferSize", VAR_SERVER},
83         {"MaxTimeout", VAR_SERVER},
84         {"Mode", VAR_SERVER | VAR_SAFE},
85         {"Name", VAR_SERVER},
86         {"PingInterval", VAR_SERVER},
87         {"PingTimeout", VAR_SERVER},
88         {"PriorityInheritance", VAR_SERVER},
89         {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
90         {"PrivateKeyFile", VAR_SERVER},
91         {"ProcessPriority", VAR_SERVER},
92         {"Proxy", VAR_SERVER},
93         {"ReplayWindow", VAR_SERVER},
94         {"ScriptsExtension", VAR_SERVER},
95         {"ScriptsInterpreter", VAR_SERVER},
96         {"StrictSubnets", VAR_SERVER},
97         {"TunnelServer", VAR_SERVER},
98         {"VDEGroup", VAR_SERVER},
99         {"VDEPort", VAR_SERVER},
100         /* Host configuration */
101         {"Address", VAR_HOST | VAR_MULTIPLE},
102         {"Cipher", VAR_SERVER | VAR_HOST},
103         {"ClampMSS", VAR_SERVER | VAR_HOST},
104         {"Compression", VAR_SERVER | VAR_HOST},
105         {"Digest", VAR_SERVER | VAR_HOST},
106         {"ECDSAPublicKey", VAR_HOST},
107         {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
108         {"IndirectData", VAR_SERVER | VAR_HOST},
109         {"MACLength", VAR_SERVER | VAR_HOST},
110         {"PMTU", VAR_SERVER | VAR_HOST},
111         {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
112         {"Port", VAR_HOST},
113         {"PublicKey", VAR_HOST | VAR_OBSOLETE},
114         {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
115         {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
116         {"TCPOnly", VAR_SERVER | VAR_HOST},
117         {"Weight", VAR_HOST | VAR_SAFE},
118         {NULL, 0}
119 };
120
121 static bool fcopy(FILE *out, const char *filename) {
122         FILE *in = fopen(filename, "r");
123         if(!in) {
124                 logger(NULL, MESHLINK_ERROR, "Could not open %s: %s\n", filename, strerror(errno));
125                 return false;
126         }
127
128         char buf[1024];
129         size_t len;
130         while((len = fread(buf, 1, sizeof buf, in)))
131                 fwrite(buf, len, 1, out);
132         fclose(in);
133         return true;
134 }
135
136 static int rstrip(char *value) {
137         int len = strlen(value);
138         while(len && strchr("\t\r\n ", value[len - 1]))
139                 value[--len] = 0;
140         return len;
141 }
142
143 static void scan_for_hostname(const char *filename, char **hostname, char **port) {
144         char line[4096];
145         if(!filename || (*hostname && *port))
146                 return;
147
148         FILE *f = fopen(filename, "r");
149         if(!f)
150                 return;
151
152         while(fgets(line, sizeof line, f)) {
153                 if(!rstrip(line))
154                         continue;
155                 char *p = line, *q;
156                 p += strcspn(p, "\t =");
157                 if(!*p)
158                         continue;
159                 q = p + strspn(p, "\t ");
160                 if(*q == '=')
161                         q += 1 + strspn(q + 1, "\t ");
162                 *p = 0;
163                 p = q + strcspn(q, "\t ");
164                 if(*p)
165                         *p++ = 0;
166                 p += strspn(p, "\t ");
167                 p[strcspn(p, "\t ")] = 0;
168
169                 if(!*port && !strcasecmp(line, "Port")) {
170                         *port = xstrdup(q);
171                 } else if(!*hostname && !strcasecmp(line, "Address")) {
172                         *hostname = xstrdup(q);
173                         if(*p) {
174                                 free(*port);
175                                 *port = xstrdup(p);
176                         }
177                 }
178
179                 if(*hostname && *port)
180                         break;
181         }
182
183         fclose(f);
184 }
185 static char *get_my_hostname(meshlink_handle_t* mesh) {
186         char *hostname = NULL;
187         char *port = NULL;
188         char *hostport = NULL;
189         char *name = mesh->self->name;
190         char filename[PATH_MAX] = "";
191         char line[4096];
192         FILE *f;
193
194         // Use first Address statement in own host config file
195         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
196         scan_for_hostname(filename, &hostname, &port);
197
198         if(hostname)
199                 goto done;
200
201         // If that doesn't work, guess externally visible hostname
202         logger(mesh, MESHLINK_DEBUG, "Trying to discover externally visible hostname...\n");
203         struct addrinfo *ai = str2addrinfo("meshlink.io", "80", SOCK_STREAM);
204         struct addrinfo *aip = ai;
205         static const char request[] = "GET http://www.meshlink.io/host.cgi HTTP/1.0\r\n\r\n";
206
207         while(aip) {
208                 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
209                 if(s >= 0) {
210                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
211                                 closesocket(s);
212                                 s = -1;
213                         }
214                 }
215                 if(s >= 0) {
216                         send(s, request, sizeof request - 1, 0);
217                         int len = recv(s, line, sizeof line - 1, MSG_WAITALL);
218                         if(len > 0) {
219                                 line[len] = 0;
220                                 if(line[len - 1] == '\n')
221                                         line[--len] = 0;
222                                 char *p = strrchr(line, '\n');
223                                 if(p && p[1])
224                                         hostname = xstrdup(p + 1);
225                         }
226                         closesocket(s);
227                         if(hostname)
228                                 break;
229                 }
230                 aip = aip->ai_next;
231                 continue;
232         }
233
234         if(ai)
235                 freeaddrinfo(ai);
236
237         // Check that the hostname is reasonable
238         if(hostname) {
239                 for(char *p = hostname; *p; p++) {
240                         if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
241                                 continue;
242                         // If not, forget it.
243                         free(hostname);
244                         hostname = NULL;
245                         break;
246                 }
247         }
248
249         if(!hostname)
250                 return NULL;
251
252         f = fopen(filename, "a");
253         if(f) {
254                 fprintf(f, "\nAddress = %s\n", hostname);
255                 fclose(f);
256         } else {
257                 logger(mesh, MESHLINK_DEBUG, "Could not append Address to %s: %s\n", filename, strerror(errno));
258         }
259
260 done:
261         if(port) {
262                 if(strchr(hostname, ':'))
263                         xasprintf(&hostport, "[%s]:%s", hostname, port);
264                 else
265                         xasprintf(&hostport, "%s:%s", hostname, port);
266         } else {
267                 if(strchr(hostname, ':'))
268                         xasprintf(&hostport, "[%s]", hostname);
269                 else
270                         hostport = xstrdup(hostname);
271         }
272
273         free(hostname);
274         free(port);
275         return hostport;
276 }
277
278 static char *get_line(const char **data) {
279         if(!data || !*data)
280                 return NULL;
281
282         if(!**data) {
283                 *data = NULL;
284                 return NULL;
285         }
286
287         static char line[1024];
288         const char *end = strchr(*data, '\n');
289         size_t len = end ? end - *data : strlen(*data);
290         if(len >= sizeof line) {
291                 logger(NULL, MESHLINK_ERROR, "Maximum line length exceeded!\n");
292                 return NULL;
293         }
294         if(len && !isprint(**data))
295                 abort();
296
297         memcpy(line, *data, len);
298         line[len] = 0;
299
300         if(end)
301                 *data = end + 1;
302         else
303                 *data = NULL;
304
305         return line;
306 }
307
308 static char *get_value(const char *data, const char *var) {
309         char *line = get_line(&data);
310         if(!line)
311                 return NULL;
312
313         char *sep = line + strcspn(line, " \t=");
314         char *val = sep + strspn(sep, " \t");
315         if(*val == '=')
316                 val += 1 + strspn(val + 1, " \t");
317         *sep = 0;
318         if(strcasecmp(line, var))
319                 return NULL;
320         return val;
321 }
322
323 static bool try_bind(int port) {
324         struct addrinfo *ai = NULL;
325         struct addrinfo hint = {
326                 .ai_flags = AI_PASSIVE,
327                 .ai_family = AF_UNSPEC,
328                 .ai_socktype = SOCK_STREAM,
329                 .ai_protocol = IPPROTO_TCP,
330         };
331
332         char portstr[16];
333         snprintf(portstr, sizeof portstr, "%d", port);
334
335         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai)
336                 return false;
337
338         while(ai) {
339                 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
340                 if(!fd) {
341                         freeaddrinfo(ai);
342                         return false;
343                 }
344                 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
345                 closesocket(fd);
346                 if(result) {
347                         freeaddrinfo(ai);
348                         return false;
349                 }
350                 ai = ai->ai_next;
351         }
352
353         freeaddrinfo(ai);
354         return true;
355 }
356
357 static int check_port(meshlink_handle_t *mesh) {
358         for(int i = 0; i < 1000; i++) {
359                 int port = 0x1000 + (rand() & 0x7fff);
360                 if(try_bind(port)) {
361                         char filename[PATH_MAX];
362                         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
363                         FILE *f = fopen(filename, "a");
364                         if(!f) {
365                                 logger(mesh, MESHLINK_DEBUG, "Please change MeshLink's Port manually.\n");
366                                 return 0;
367                         }
368
369                         fprintf(f, "Port = %d\n", port);
370                         fclose(f);
371                         return port;
372                 }
373         }
374
375         logger(mesh, MESHLINK_DEBUG, "Please change MeshLink's Port manually.\n");
376         return 0;
377 }
378
379 static bool finalize_join(meshlink_handle_t *mesh) {
380         char *name = xstrdup(get_value(mesh->data, "Name"));
381         if(!name) {
382                 logger(mesh, MESHLINK_DEBUG, "No Name found in invitation!\n");
383                 return false;
384         }
385
386         if(!check_id(name)) {
387                 logger(mesh, MESHLINK_DEBUG, "Invalid Name found in invitation: %s!\n", name);
388                 return false;
389         }
390
391         char filename[PATH_MAX];
392         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
393
394         FILE *f = fopen(filename, "w");
395         if(!f) {
396                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
397                 return false;
398         }
399
400         fprintf(f, "Name = %s\n", name);
401
402         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
403         FILE *fh = fopen(filename, "w");
404         if(!fh) {
405                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
406                 fclose(f);
407                 return false;
408         }
409
410         // Filter first chunk on approved keywords, split between meshlink.conf and hosts/Name
411         // Other chunks go unfiltered to their respective host config files
412         const char *p = mesh->data;
413         char *l, *value;
414
415         while((l = get_line(&p))) {
416                 // Ignore comments
417                 if(*l == '#')
418                         continue;
419
420                 // Split line into variable and value
421                 int len = strcspn(l, "\t =");
422                 value = l + len;
423                 value += strspn(value, "\t ");
424                 if(*value == '=') {
425                         value++;
426                         value += strspn(value, "\t ");
427                 }
428                 l[len] = 0;
429
430                 // Is it a Name?
431                 if(!strcasecmp(l, "Name"))
432                         if(strcmp(value, name))
433                                 break;
434                         else
435                                 continue;
436                 else if(!strcasecmp(l, "NetName"))
437                         continue;
438
439                 // Check the list of known variables //TODO: most variables will not be available in meshlink, only name and key will be absolutely necessary
440                 bool found = false;
441                 int i;
442                 for(i = 0; variables[i].name; i++) {
443                         if(strcasecmp(l, variables[i].name))
444                                 continue;
445                         found = true;
446                         break;
447                 }
448
449                 // Ignore unknown and unsafe variables
450                 if(!found) {
451                         logger(mesh, MESHLINK_DEBUG, "Ignoring unknown variable '%s' in invitation.\n", l);
452                         continue;
453                 } else if(!(variables[i].type & VAR_SAFE)) {
454                         logger(mesh, MESHLINK_DEBUG, "Ignoring unsafe variable '%s' in invitation.\n", l);
455                         continue;
456                 }
457
458                 // Copy the safe variable to the right config file
459                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
460         }
461
462         fclose(f);
463
464         while(l && !strcasecmp(l, "Name")) {
465                 if(!check_id(value)) {
466                         logger(mesh, MESHLINK_DEBUG, "Invalid Name found in invitation.\n");
467                         return false;
468                 }
469
470                 if(!strcmp(value, name)) {
471                         logger(mesh, MESHLINK_DEBUG, "Secondary chunk would overwrite our own host config file.\n");
472                         return false;
473                 }
474
475                 snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, value);
476                 f = fopen(filename, "w");
477
478                 if(!f) {
479                         logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
480                         return false;
481                 }
482
483                 while((l = get_line(&p))) {
484                         if(!strcmp(l, "#---------------------------------------------------------------#"))
485                                 continue;
486                         int len = strcspn(l, "\t =");
487                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
488                                 value = l + len;
489                                 value += strspn(value, "\t ");
490                                 if(*value == '=') {
491                                         value++;
492                                         value += strspn(value, "\t ");
493                                 }
494                                 l[len] = 0;
495                                 break;
496                         }
497
498                         fputs(l, f);
499                         fputc('\n', f);
500                 }
501
502                 fclose(f);
503         }
504
505         char *b64key = ecdsa_get_base64_public_key(mesh->self->connection->ecdsa);
506         if(!b64key)
507                 return false;
508
509         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
510         fprintf(fh, "Port = %s\n", mesh->myport);
511
512         fclose(fh);
513
514         sptps_send_record(&(mesh->sptps), 1, b64key, strlen(b64key));
515         free(b64key);
516
517         free(mesh->self->name);
518         free(mesh->self->connection->name);
519         mesh->self->name = xstrdup(name);
520         mesh->self->connection->name = name;
521
522         logger(mesh, MESHLINK_DEBUG, "Configuration stored in: %s\n", mesh->confbase);
523
524         load_all_nodes(mesh);
525
526         return true;
527 }
528
529 static bool invitation_send(void *handle, uint8_t type, const void *data, size_t len) {
530         meshlink_handle_t* mesh = handle;
531         while(len) {
532                 int result = send(mesh->sock, data, len, 0);
533                 if(result == -1 && errno == EINTR)
534                         continue;
535                 else if(result <= 0)
536                         return false;
537                 data += result;
538                 len -= result;
539         }
540         return true;
541 }
542
543 static bool invitation_receive(void *handle, uint8_t type, const void *msg, uint16_t len) {
544         meshlink_handle_t* mesh = handle;
545         switch(type) {
546                 case SPTPS_HANDSHAKE:
547                         return sptps_send_record(&(mesh->sptps), 0, mesh->cookie, sizeof mesh->cookie);
548
549                 case 0:
550                         mesh->data = xrealloc(mesh->data, mesh->thedatalen + len + 1);
551                         memcpy(mesh->data + mesh->thedatalen, msg, len);
552                         mesh->thedatalen += len;
553                         mesh->data[mesh->thedatalen] = 0;
554                         break;
555
556                 case 1:
557                         return finalize_join(mesh);
558
559                 case 2:
560                         logger(mesh, MESHLINK_DEBUG, "Invitation succesfully accepted.\n");
561                         shutdown(mesh->sock, SHUT_RDWR);
562                         mesh->success = true;
563                         break;
564
565                 default:
566                         return false;
567         }
568
569         return true;
570 }
571
572 static bool recvline(meshlink_handle_t* mesh, size_t len) {
573         char *newline = NULL;
574
575         if(!mesh->sock)
576                 abort();
577
578         while(!(newline = memchr(mesh->buffer, '\n', mesh->blen))) {
579                 int result = recv(mesh->sock, mesh->buffer + mesh->blen, sizeof mesh->buffer - mesh->blen, 0);
580                 if(result == -1 && errno == EINTR)
581                         continue;
582                 else if(result <= 0)
583                         return false;
584                 mesh->blen += result;
585         }
586
587         if(newline - mesh->buffer >= len)
588                 return false;
589
590         len = newline - mesh->buffer;
591
592         memcpy(mesh->line, mesh->buffer, len);
593         mesh->line[len] = 0;
594         memmove(mesh->buffer, newline + 1, mesh->blen - len - 1);
595         mesh->blen -= len + 1;
596
597         return true;
598 }
599 static bool sendline(int fd, char *format, ...) {
600         static char buffer[4096];
601         char *p = buffer;
602         int blen = 0;
603         va_list ap;
604
605         va_start(ap, format);
606         blen = vsnprintf(buffer, sizeof buffer, format, ap);
607         va_end(ap);
608
609         if(blen < 1 || blen >= sizeof buffer)
610                 return false;
611
612         buffer[blen] = '\n';
613         blen++;
614
615         while(blen) {
616                 int result = send(fd, p, blen, MSG_NOSIGNAL);
617                 if(result == -1 && errno == EINTR)
618                         continue;
619                 else if(result <= 0)
620                         return false;
621                 p += result;
622                 blen -= result;
623         }
624
625         return true;
626 }
627
628 static const char *errstr[] = {
629         [MESHLINK_OK] = "No error",
630         [MESHLINK_EINVAL] = "Invalid argument",
631         [MESHLINK_ENOMEM] = "Out of memory",
632         [MESHLINK_ENOENT] = "No such node",
633         [MESHLINK_EEXIST] = "Node already exists",
634         [MESHLINK_EINTERNAL] = "Internal error",
635         [MESHLINK_ERESOLV] = "Could not resolve hostname",
636         [MESHLINK_ESTORAGE] = "Storage error",
637         [MESHLINK_ENETWORK] = "Network error",
638         [MESHLINK_EPEER] = "Error communicating with peer",
639 };
640
641 const char *meshlink_strerror(meshlink_errno_t err) {
642         if(err < 0 || err >= sizeof errstr / sizeof *errstr)
643                 return "Invalid error code";
644         return errstr[err];
645 }
646
647 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
648         ecdsa_t *key;
649         FILE *f;
650         char pubname[PATH_MAX], privname[PATH_MAX];
651
652         logger(mesh, MESHLINK_DEBUG, "Generating ECDSA keypair:\n");
653
654         if(!(key = ecdsa_generate())) {
655                 logger(mesh, MESHLINK_DEBUG, "Error during key generation!\n");
656                 meshlink_errno = MESHLINK_EINTERNAL;
657                 return false;
658         } else
659                 logger(mesh, MESHLINK_DEBUG, "Done.\n");
660
661         snprintf(privname, sizeof privname, "%s" SLASH "ecdsa_key.priv", mesh->confbase);
662         f = fopen(privname, "w");
663
664         if(!f) {
665                 meshlink_errno = MESHLINK_ESTORAGE;
666                 return false;
667         }
668
669 #ifdef HAVE_FCHMOD
670         fchmod(fileno(f), 0600);
671 #endif
672
673         if(!ecdsa_write_pem_private_key(key, f)) {
674                 logger(mesh, MESHLINK_DEBUG, "Error writing private key!\n");
675                 ecdsa_free(key);
676                 fclose(f);
677                 meshlink_errno = MESHLINK_EINTERNAL;
678                 return false;
679         }
680
681         fclose(f);
682
683         snprintf(pubname, sizeof pubname, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
684         f = fopen(pubname, "a");
685
686         if(!f) {
687                 meshlink_errno = MESHLINK_ESTORAGE;
688                 return false;
689         }
690
691         char *pubkey = ecdsa_get_base64_public_key(key);
692         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
693         free(pubkey);
694
695         fclose(f);
696         ecdsa_free(key);
697
698         return true;
699 }
700
701 static bool meshlink_setup(meshlink_handle_t *mesh) {
702         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
703                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
704                 meshlink_errno = MESHLINK_ESTORAGE;
705                 return false;
706         }
707
708         char filename[PATH_MAX];
709         snprintf(filename, sizeof filename, "%s" SLASH "hosts", mesh->confbase);
710
711         if(mkdir(filename, 0777) && errno != EEXIST) {
712                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
713                 meshlink_errno = MESHLINK_ESTORAGE;
714                 return false;
715         }
716
717         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
718
719         if(!access(filename, F_OK)) {
720                 logger(mesh, MESHLINK_DEBUG, "Configuration file %s already exists!\n", filename);
721                 meshlink_errno = MESHLINK_EEXIST;
722                 return false;
723         }
724
725         FILE *f = fopen(filename, "w");
726         if(!f) {
727                 logger(mesh, MESHLINK_DEBUG, "Could not create file %s: %s\n", filename, strerror(errno));
728                 meshlink_errno = MESHLINK_ESTORAGE;
729                 return false;
730         }
731
732         fprintf(f, "Name = %s\n", mesh->name);
733         fclose(f);
734
735         if(!ecdsa_keygen(mesh)) {
736                 meshlink_errno = MESHLINK_EINTERNAL;
737                 return false;
738         }
739
740         check_port(mesh);
741
742         return true;
743 }
744
745 meshlink_handle_t *meshlink_open(const char *confbase, const char *name, const char* appname, dev_class_t devclass) {
746         return meshlink_open_with_size(confbase, name, appname, devclass, sizeof(meshlink_handle_t));
747 }
748
749 meshlink_handle_t *meshlink_open_with_size(const char *confbase, const char *name, const char* appname, dev_class_t devclass, size_t size) {
750
751         // Validate arguments provided by the application
752         bool usingname = false;
753         
754         logger(NULL, MESHLINK_DEBUG, "meshlink_open called\n");
755
756         if(!confbase || !*confbase) {
757                 logger(NULL, MESHLINK_ERROR, "No confbase given!\n");
758                 meshlink_errno = MESHLINK_EINVAL;
759                 return NULL;
760         }
761
762         if(!appname || !*appname) {
763                 logger(NULL, MESHLINK_ERROR, "No appname given!\n");
764                 meshlink_errno = MESHLINK_EINVAL;
765                 return NULL;
766         }
767
768         if(!name || !*name) {
769                 logger(NULL, MESHLINK_ERROR, "No name given!\n");
770                 //return NULL;
771         }
772         else { //check name only if there is a name != NULL
773
774                 if(!check_id(name)) {
775                         logger(NULL, MESHLINK_ERROR, "Invalid name given!\n");
776                         meshlink_errno = MESHLINK_EINVAL;
777                         return NULL;
778                 } else { usingname = true;}
779         }
780
781         if(devclass < 0 || devclass > _DEV_CLASS_MAX) {
782                 logger(NULL, MESHLINK_ERROR, "Invalid devclass given!\n");
783                 meshlink_errno = MESHLINK_EINVAL;
784                 return NULL;
785         }
786
787         meshlink_handle_t *mesh = xzalloc(size);
788         mesh->confbase = xstrdup(confbase);
789         mesh->appname = xstrdup(appname);
790         mesh->devclass = devclass;
791         if (usingname) mesh->name = xstrdup(name);
792
793         // initialize mutex
794         pthread_mutexattr_t attr;
795         pthread_mutexattr_init(&attr);
796         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
797         pthread_mutex_init(&(mesh->mesh_mutex), &attr);
798         
799         mesh->threadstarted = false;
800         event_loop_init(&mesh->loop);
801         mesh->loop.data = mesh;
802
803         // Check whether meshlink.conf already exists
804
805         char filename[PATH_MAX];
806         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", confbase);
807
808         if(access(filename, R_OK)) {
809                 if(errno == ENOENT) {
810                         // If not, create it
811                         if(!meshlink_setup(mesh)) {
812                                 // meshlink_errno is set by meshlink_setup()
813                                 return NULL;
814                         }
815                 } else {
816                         logger(NULL, MESHLINK_ERROR, "Cannot not read from %s: %s\n", filename, strerror(errno));
817                         meshlink_close(mesh);
818                         meshlink_errno = MESHLINK_ESTORAGE;
819                         return NULL;
820                 }
821         }
822
823         // Read the configuration
824
825         init_configuration(&mesh->config);
826
827         if(!read_server_config(mesh)) {
828                 meshlink_close(mesh);
829                 meshlink_errno = MESHLINK_ESTORAGE;
830                 return NULL;
831         };
832
833 #ifdef HAVE_MINGW
834         struct WSAData wsa_state;
835         WSAStartup(MAKEWORD(2, 2), &wsa_state);
836 #endif
837
838         // Setup up everything
839         // TODO: we should not open listening sockets yet
840
841         if(!setup_network(mesh)) {
842                 meshlink_close(mesh);
843                 meshlink_errno = MESHLINK_ENETWORK;
844                 return NULL;
845         }
846
847         logger(NULL, MESHLINK_DEBUG, "meshlink_open returning\n");
848         return mesh;
849 }
850
851 static void *meshlink_main_loop(void *arg) {
852         meshlink_handle_t *mesh = arg;
853
854         pthread_mutex_lock(&(mesh->mesh_mutex));
855
856         try_outgoing_connections(mesh);
857
858         logger(mesh, MESHLINK_DEBUG, "Starting main_loop...\n");
859         main_loop(mesh);
860         logger(mesh, MESHLINK_DEBUG, "main_loop returned.\n");
861
862         pthread_mutex_unlock(&(mesh->mesh_mutex));
863         return NULL;
864 }
865
866 bool meshlink_start(meshlink_handle_t *mesh) {
867         if(!mesh) {
868                 meshlink_errno = MESHLINK_EINVAL;
869                 return false;
870         }
871         pthread_mutex_lock(&(mesh->mesh_mutex));
872         
873         logger(mesh, MESHLINK_DEBUG, "meshlink_start called\n");
874
875         // TODO: open listening sockets first
876
877         //Check that a valid name is set
878         if(!mesh->name ) {
879                 logger(mesh, MESHLINK_DEBUG, "No name given!\n");
880                 meshlink_errno = MESHLINK_EINVAL;
881                 pthread_mutex_unlock(&(mesh->mesh_mutex));
882                 return false;
883         }
884
885         // Start the main thread
886
887         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
888                 logger(mesh, MESHLINK_DEBUG, "Could not start thread: %s\n", strerror(errno));
889                 memset(&mesh->thread, 0, sizeof mesh->thread);
890                 meshlink_errno = MESHLINK_EINTERNAL;
891                 pthread_mutex_unlock(&(mesh->mesh_mutex));
892                 return false;
893         }
894
895         mesh->threadstarted=true;
896
897         discovery_start(mesh);
898
899         pthread_mutex_unlock(&(mesh->mesh_mutex));
900         return true;
901 }
902
903 void meshlink_stop(meshlink_handle_t *mesh) {
904         if(!mesh) {
905                 meshlink_errno = MESHLINK_EINVAL;
906                 return;
907         }
908
909         pthread_mutex_lock(&(mesh->mesh_mutex));
910         logger(mesh, MESHLINK_DEBUG, "meshlink_stop called\n");
911
912         // Stop discovery
913         discovery_stop(mesh);
914
915         // Shut down a listening socket to signal the main thread to shut down
916
917         listen_socket_t *s = &mesh->listen_socket[0];
918         shutdown(s->tcp.fd, SHUT_RDWR);
919
920         // Wait for the main thread to finish
921         pthread_mutex_unlock(&(mesh->mesh_mutex));
922         pthread_join(mesh->thread, NULL);
923         pthread_mutex_lock(&(mesh->mesh_mutex));
924
925         mesh->threadstarted = false;
926
927         // Fix the socket
928         
929         closesocket(s->tcp.fd);
930         io_del(&mesh->loop, &s->tcp);
931         s->tcp.fd = setup_listen_socket(&s->sa);
932         if(s->tcp.fd < 0)
933                 logger(mesh, MESHLINK_ERROR, "Could not repair listenen socket!");
934         else
935                 io_add(&mesh->loop, &s->tcp, handle_new_meta_connection, s, s->tcp.fd, IO_READ);
936         
937         pthread_mutex_unlock(&(mesh->mesh_mutex));
938 }
939
940 void meshlink_close(meshlink_handle_t *mesh) {
941         if(!mesh || !mesh->confbase) {
942                 meshlink_errno = MESHLINK_EINVAL;
943                 return;
944         }
945
946         // lock is not released after this
947         pthread_mutex_lock(&(mesh->mesh_mutex));
948
949         // Close and free all resources used.
950
951         close_network_connections(mesh);
952
953         logger(mesh, MESHLINK_INFO, "Terminating");
954
955         exit_configuration(&mesh->config);
956         event_loop_exit(&mesh->loop);
957
958 #ifdef HAVE_MINGW
959         if(mesh->confbase)
960                 WSACleanup();
961 #endif
962
963         ecdsa_free(mesh->invitation_key);
964
965         free(mesh->name);
966         free(mesh->appname);
967         free(mesh->confbase);
968         pthread_mutex_destroy(&(mesh->mesh_mutex));
969
970         memset(mesh, 0, sizeof *mesh);
971
972         free(mesh);
973 }
974
975 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
976         if(!mesh) {
977                 meshlink_errno = MESHLINK_EINVAL;
978                 return;
979         }
980
981         pthread_mutex_lock(&(mesh->mesh_mutex));
982         mesh->receive_cb = cb;
983         pthread_mutex_unlock(&(mesh->mesh_mutex));
984 }
985
986 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
987         if(!mesh) {
988                 meshlink_errno = MESHLINK_EINVAL;
989                 return;
990         }
991
992         pthread_mutex_lock(&(mesh->mesh_mutex));
993         mesh->node_status_cb = cb;
994         pthread_mutex_unlock(&(mesh->mesh_mutex));
995 }
996
997 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
998         if(mesh) {
999                 pthread_mutex_lock(&(mesh->mesh_mutex));
1000                 mesh->log_cb = cb;
1001                 mesh->log_level = cb ? level : 0;
1002                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1003         } else {
1004                 global_log_cb = cb;
1005                 global_log_level = cb ? level : 0;
1006         }
1007 }
1008
1009 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1010         if(!mesh || !destination) {
1011                 meshlink_errno = MESHLINK_EINVAL;
1012                 return false;
1013         }
1014
1015         if(!len)
1016                 return true;
1017
1018         if(!data) {
1019                 meshlink_errno = MESHLINK_EINVAL;
1020                 return false;
1021         }
1022
1023         pthread_mutex_lock(&(mesh->mesh_mutex));
1024
1025         //add packet to the queue
1026         outpacketqueue_t *packet_in_queue = xzalloc(sizeof *packet_in_queue);
1027         packet_in_queue->destination=destination;
1028         packet_in_queue->data=data;
1029         packet_in_queue->len=len;
1030         if(!meshlink_queue_push(&mesh->outpacketqueue, packet_in_queue)) {
1031                 free(packet_in_queue);
1032                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1033                 return false;
1034         }
1035
1036         //notify event loop
1037         signal_trigger(&(mesh->loop),&(mesh->datafromapp));
1038         
1039         pthread_mutex_unlock(&(mesh->mesh_mutex));
1040         return true;
1041 }
1042
1043 void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh) {
1044         pthread_mutex_lock(&(mesh->mesh_mutex));
1045         
1046         vpn_packet_t packet;
1047         meshlink_packethdr_t *hdr = (meshlink_packethdr_t *)packet.data;
1048
1049         outpacketqueue_t* p = meshlink_queue_pop(&mesh->outpacketqueue);
1050         if(!p)
1051         {
1052                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1053                 return;
1054         }
1055
1056         if (sizeof(meshlink_packethdr_t) + p->len > MAXSIZE) {
1057                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1058                 //log something
1059                 return;
1060         }
1061
1062         packet.probe = false;
1063         memset(hdr, 0, sizeof *hdr);
1064         memcpy(hdr->destination, p->destination->name, sizeof hdr->destination);
1065         memcpy(hdr->source, mesh->self->name, sizeof hdr->source);
1066
1067         packet.len = sizeof *hdr + p->len;
1068         memcpy(packet.data + sizeof *hdr, p->data, p->len);
1069
1070         mesh->self->in_packets++;
1071         mesh->self->in_bytes += packet.len;
1072         route(mesh, mesh->self, &packet);
1073         
1074         pthread_mutex_unlock(&(mesh->mesh_mutex));
1075         return ;
1076 }
1077
1078 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
1079         if(!mesh || !destination) {
1080                 meshlink_errno = MESHLINK_EINVAL;
1081                 return -1;
1082         }
1083         pthread_mutex_lock(&(mesh->mesh_mutex));
1084
1085         node_t *n = (node_t *)destination;
1086         if(!n->status.reachable) {
1087                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1088                 return 0;
1089         
1090         }
1091         else if(n->mtuprobes > 30 && n->minmtu) {
1092                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1093                 return n->minmtu;
1094         }
1095         else {
1096                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1097                 return MTU;
1098         }
1099 }
1100
1101 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
1102         if(!mesh || !node) {
1103                 meshlink_errno = MESHLINK_EINVAL;
1104                 return NULL;
1105         }
1106         pthread_mutex_lock(&(mesh->mesh_mutex));
1107
1108         node_t *n = (node_t *)node;
1109
1110         if(!node_read_ecdsa_public_key(mesh, n) || !n->ecdsa) {
1111                 meshlink_errno = MESHLINK_EINTERNAL;
1112                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1113                 return false;
1114         }
1115
1116         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
1117
1118         if(!fingerprint)
1119                 meshlink_errno = MESHLINK_EINTERNAL;
1120
1121         pthread_mutex_unlock(&(mesh->mesh_mutex));
1122         return fingerprint;
1123 }
1124
1125 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
1126         if(!mesh || !name) {
1127                 meshlink_errno = MESHLINK_EINVAL;
1128                 return NULL;
1129         }
1130
1131         meshlink_node_t *node = NULL;
1132
1133         pthread_mutex_lock(&(mesh->mesh_mutex));
1134         node = (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
1135         pthread_mutex_unlock(&(mesh->mesh_mutex));
1136         return node;
1137 }
1138
1139 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
1140         if(!mesh || !nmemb || (*nmemb && !nodes)) {
1141                 meshlink_errno = MESHLINK_EINVAL;
1142                 return NULL;
1143         }
1144
1145         meshlink_node_t **result;
1146
1147         //lock mesh->nodes
1148         pthread_mutex_lock(&(mesh->mesh_mutex));
1149
1150         *nmemb = mesh->nodes->count;
1151         result = realloc(nodes, *nmemb * sizeof *nodes);
1152
1153         if(result) {
1154                 meshlink_node_t **p = result;
1155                 for splay_each(node_t, n, mesh->nodes)
1156                         *p++ = (meshlink_node_t *)n;
1157         } else {
1158                 *nmemb = 0;
1159                 free(nodes);
1160                 meshlink_errno = MESHLINK_ENOMEM;
1161         }
1162
1163         pthread_mutex_unlock(&(mesh->mesh_mutex));
1164
1165         return result;
1166 }
1167
1168 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
1169         if(!mesh || !data || !len || !signature || !siglen) {
1170                 meshlink_errno = MESHLINK_EINVAL;
1171                 return false;
1172         }
1173
1174         if(*siglen < MESHLINK_SIGLEN) {
1175                 meshlink_errno = MESHLINK_EINVAL;
1176                 return false;
1177         }
1178
1179         pthread_mutex_lock(&(mesh->mesh_mutex));
1180
1181         if(!ecdsa_sign(mesh->self->connection->ecdsa, data, len, signature)) {
1182                 meshlink_errno = MESHLINK_EINTERNAL;
1183                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1184                 return false;
1185         }
1186
1187         *siglen = MESHLINK_SIGLEN;
1188         pthread_mutex_unlock(&(mesh->mesh_mutex));
1189         return true;
1190 }
1191
1192 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
1193         if(!mesh || !data || !len || !signature) {
1194                 meshlink_errno = MESHLINK_EINVAL;
1195                 return false;
1196         }
1197
1198         if(siglen != MESHLINK_SIGLEN) {
1199                 meshlink_errno = MESHLINK_EINVAL;
1200                 return false;
1201         }
1202
1203         pthread_mutex_lock(&(mesh->mesh_mutex));
1204
1205         bool rval = false;
1206
1207         struct node_t *n = (struct node_t *)source;
1208         node_read_ecdsa_public_key(mesh, n);
1209         if(!n->ecdsa) {
1210                 meshlink_errno = MESHLINK_EINTERNAL;
1211                 rval = false;
1212         } else {
1213                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
1214         }
1215         pthread_mutex_unlock(&(mesh->mesh_mutex));
1216         return rval;
1217 }
1218
1219 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
1220         char filename[PATH_MAX];
1221         
1222         pthread_mutex_lock(&(mesh->mesh_mutex));
1223
1224         snprintf(filename, sizeof filename, "%s" SLASH "invitations", mesh->confbase);
1225         if(mkdir(filename, 0700) && errno != EEXIST) {
1226                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
1227                 meshlink_errno = MESHLINK_ESTORAGE;
1228                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1229                 return false;
1230         }
1231
1232         // Count the number of valid invitations, clean up old ones
1233         DIR *dir = opendir(filename);
1234         if(!dir) {
1235                 logger(mesh, MESHLINK_DEBUG, "Could not read directory %s: %s\n", filename, strerror(errno));
1236                 meshlink_errno = MESHLINK_ESTORAGE;
1237                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1238                 return false;
1239         }
1240
1241         errno = 0;
1242         int count = 0;
1243         struct dirent *ent;
1244         time_t deadline = time(NULL) - 604800; // 1 week in the past
1245
1246         while((ent = readdir(dir))) {
1247                 if(strlen(ent->d_name) != 24)
1248                         continue;
1249                 char invname[PATH_MAX];
1250                 struct stat st;
1251                 snprintf(invname, sizeof invname, "%s" SLASH "%s", filename, ent->d_name);
1252                 if(!stat(invname, &st)) {
1253                         if(mesh->invitation_key && deadline < st.st_mtime)
1254                                 count++;
1255                         else
1256                                 unlink(invname);
1257                 } else {
1258                         logger(mesh, MESHLINK_DEBUG, "Could not stat %s: %s\n", invname, strerror(errno));
1259                         errno = 0;
1260                 }
1261         }
1262
1263         if(errno) {
1264                 logger(mesh, MESHLINK_DEBUG, "Error while reading directory %s: %s\n", filename, strerror(errno));
1265                 closedir(dir);
1266                 meshlink_errno = MESHLINK_ESTORAGE;
1267                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1268                 return false;
1269         }
1270
1271         closedir(dir);
1272
1273         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
1274
1275         // Remove the key if there are no outstanding invitations.
1276         if(!count) {
1277                 unlink(filename);
1278                 if(mesh->invitation_key) {
1279                         ecdsa_free(mesh->invitation_key);
1280                         mesh->invitation_key = NULL;
1281                 }
1282         }
1283
1284         if(mesh->invitation_key) {
1285                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1286                 return true;
1287         }
1288
1289         // Create a new key if necessary.
1290         FILE *f = fopen(filename, "r");
1291         if(!f) {
1292                 if(errno != ENOENT) {
1293                         logger(mesh, MESHLINK_DEBUG, "Could not read %s: %s\n", filename, strerror(errno));
1294                         meshlink_errno = MESHLINK_ESTORAGE;
1295                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1296                         return false;
1297                 }
1298
1299                 mesh->invitation_key = ecdsa_generate();
1300                 if(!mesh->invitation_key) {
1301                         logger(mesh, MESHLINK_DEBUG, "Could not generate a new key!\n");
1302                         meshlink_errno = MESHLINK_EINTERNAL;
1303                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1304                         return false;
1305                 }
1306                 f = fopen(filename, "w");
1307                 if(!f) {
1308                         logger(mesh, MESHLINK_DEBUG, "Could not write %s: %s\n", filename, strerror(errno));
1309                         meshlink_errno = MESHLINK_ESTORAGE;
1310                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1311                         return false;
1312                 }
1313                 chmod(filename, 0600);
1314                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1315                 fclose(f);
1316         } else {
1317                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1318                 fclose(f);
1319                 if(!mesh->invitation_key) {
1320                         logger(mesh, MESHLINK_DEBUG, "Could not read private key from %s\n", filename);
1321                         meshlink_errno = MESHLINK_ESTORAGE;
1322                 }
1323         }
1324
1325         pthread_mutex_unlock(&(mesh->mesh_mutex));
1326         return mesh->invitation_key;
1327 }
1328
1329 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
1330         if(!mesh || !address) {
1331                 meshlink_errno = MESHLINK_EINVAL;
1332                 return false;
1333         }
1334         
1335         bool rval = false;
1336
1337         pthread_mutex_lock(&(mesh->mesh_mutex));
1338
1339         for(const char *p = address; *p; p++) {
1340                 if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
1341                         continue;
1342                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
1343                 meshlink_errno = MESHLINK_EINVAL;
1344                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1345                 return false;
1346         }
1347
1348         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1349         pthread_mutex_unlock(&(mesh->mesh_mutex));
1350         return rval;
1351 }
1352
1353 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1354         if(!mesh) {
1355                 meshlink_errno = MESHLINK_EINVAL;
1356                 return NULL;
1357         }
1358         
1359         pthread_mutex_lock(&(mesh->mesh_mutex));
1360
1361         // Check validity of the new node's name
1362         if(!check_id(name)) {
1363                 logger(mesh, MESHLINK_DEBUG, "Invalid name for node.\n");
1364                 meshlink_errno = MESHLINK_EINVAL;
1365                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1366                 return NULL;
1367         }
1368
1369         // Ensure no host configuration file with that name exists
1370         char filename[PATH_MAX];
1371         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1372         if(!access(filename, F_OK)) {
1373                 logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name);
1374                 meshlink_errno = MESHLINK_EEXIST;
1375                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1376                 return NULL;
1377         }
1378
1379         // Ensure no other nodes know about this name
1380         if(meshlink_get_node(mesh, name)) {
1381                 logger(mesh, MESHLINK_DEBUG, "A node with name %s is already known!\n", name);
1382                 meshlink_errno = MESHLINK_EEXIST;
1383                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1384                 return NULL;
1385         }
1386
1387         // Get the local address
1388         char *address = get_my_hostname(mesh);
1389         if(!address) {
1390                 logger(mesh, MESHLINK_DEBUG, "No Address known for ourselves!\n");
1391                 meshlink_errno = MESHLINK_ERESOLV;
1392                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1393                 return NULL;
1394         }
1395
1396         if(!refresh_invitation_key(mesh)) {
1397                 meshlink_errno = MESHLINK_EINTERNAL;
1398                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1399                 return NULL;
1400         }
1401
1402         char hash[64];
1403
1404         // Create a hash of the key.
1405         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1406         sha512(fingerprint, strlen(fingerprint), hash);
1407         b64encode_urlsafe(hash, hash, 18);
1408
1409         // Create a random cookie for this invitation.
1410         char cookie[25];
1411         randomize(cookie, 18);
1412
1413         // Create a filename that doesn't reveal the cookie itself
1414         char buf[18 + strlen(fingerprint)];
1415         char cookiehash[64];
1416         memcpy(buf, cookie, 18);
1417         memcpy(buf + 18, fingerprint, sizeof buf - 18);
1418         sha512(buf, sizeof buf, cookiehash);
1419         b64encode_urlsafe(cookiehash, cookiehash, 18);
1420
1421         b64encode_urlsafe(cookie, cookie, 18);
1422
1423         free(fingerprint);
1424
1425         // Create a file containing the details of the invitation.
1426         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1427         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1428         if(!ifd) {
1429                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1430                 meshlink_errno = MESHLINK_ESTORAGE;
1431                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1432                 return NULL;
1433         }
1434         FILE *f = fdopen(ifd, "w");
1435         if(!f)
1436                 abort();
1437
1438         // Fill in the details.
1439         fprintf(f, "Name = %s\n", name);
1440         //if(netname)
1441         //      fprintf(f, "NetName = %s\n", netname);
1442         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1443
1444         // Copy Broadcast and Mode
1445         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
1446         FILE *tc = fopen(filename,  "r");
1447         if(tc) {
1448                 char buf[1024];
1449                 while(fgets(buf, sizeof buf, tc)) {
1450                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1451                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1452                                 fputs(buf, f);
1453                                 // Make sure there is a newline character.
1454                                 if(!strchr(buf, '\n'))
1455                                         fputc('\n', f);
1456                         }
1457                 }
1458                 fclose(tc);
1459         } else {
1460                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1461                 meshlink_errno = MESHLINK_ESTORAGE;
1462                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1463                 return NULL;
1464         }
1465
1466         fprintf(f, "#---------------------------------------------------------------#\n");
1467         fprintf(f, "Name = %s\n", mesh->self->name);
1468
1469         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1470         fcopy(f, filename);
1471         fclose(f);
1472
1473         // Create an URL from the local address, key hash and cookie
1474         char *url;
1475         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1476         free(address);
1477
1478         pthread_mutex_unlock(&(mesh->mesh_mutex));
1479         return url;
1480 }
1481
1482 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1483         if(!mesh || !invitation) {
1484                 meshlink_errno = MESHLINK_EINVAL;
1485                 return false;
1486         }
1487         
1488         pthread_mutex_lock(&(mesh->mesh_mutex));
1489
1490         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1491         char copy[strlen(invitation) + 1];
1492         strcpy(copy, invitation);
1493
1494         // Split the invitation URL into hostname, port, key hash and cookie.
1495
1496         char *slash = strchr(copy, '/');
1497         if(!slash)
1498                 goto invalid;
1499
1500         *slash++ = 0;
1501
1502         if(strlen(slash) != 48)
1503                 goto invalid;
1504
1505         char *address = copy;
1506         char *port = NULL;
1507         if(*address == '[') {
1508                 address++;
1509                 char *bracket = strchr(address, ']');
1510                 if(!bracket)
1511                         goto invalid;
1512                 *bracket = 0;
1513                 if(bracket[1] == ':')
1514                         port = bracket + 2;
1515         } else {
1516                 port = strchr(address, ':');
1517                 if(port)
1518                         *port++ = 0;
1519         }
1520
1521         if(!port)
1522                 goto invalid;
1523
1524         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1525                 goto invalid;
1526
1527         // Generate a throw-away key for the invitation.
1528         ecdsa_t *key = ecdsa_generate();
1529         if(!key) {
1530                 meshlink_errno = MESHLINK_EINTERNAL;
1531                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1532                 return false;
1533         }
1534
1535         char *b64key = ecdsa_get_base64_public_key(key);
1536
1537         //Before doing meshlink_join make sure we are not connected to another mesh
1538         if ( mesh->threadstarted ){
1539                 goto invalid;
1540         }
1541
1542         // Connect to the meshlink daemon mentioned in the URL.
1543         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1544         if(!ai) {
1545                 meshlink_errno = MESHLINK_ERESOLV;
1546                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1547                 return false;
1548         }
1549
1550         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1551         if(mesh->sock <= 0) {
1552                 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
1553                 freeaddrinfo(ai);
1554                 meshlink_errno = MESHLINK_ENETWORK;
1555                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1556                 return false;
1557         }
1558
1559         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1560                 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1561                 closesocket(mesh->sock);
1562                 freeaddrinfo(ai);
1563                 meshlink_errno = MESHLINK_ENETWORK;
1564                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1565                 return false;
1566         }
1567
1568         freeaddrinfo(ai);
1569
1570         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
1571
1572         // Tell him we have an invitation, and give him our throw-away key.
1573
1574         mesh->blen = 0;
1575
1576         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1577                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1578                 closesocket(mesh->sock);
1579                 meshlink_errno = MESHLINK_ENETWORK;
1580                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1581                 return false;
1582         }
1583
1584         free(b64key);
1585
1586         char hisname[4096] = "";
1587         int code, hismajor, hisminor = 0;
1588
1589         if(!recvline(mesh, sizeof mesh->line) || sscanf(mesh->line, "%d %s %d.%d", &code, hisname, &hismajor, &hisminor) < 3 || code != 0 || hismajor != PROT_MAJOR || !check_id(hisname) || !recvline(mesh, sizeof mesh->line) || !rstrip(mesh->line) || sscanf(mesh->line, "%d ", &code) != 1 || code != ACK || strlen(mesh->line) < 3) {
1590                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
1591                 closesocket(mesh->sock);
1592                 meshlink_errno = MESHLINK_ENETWORK;
1593                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1594                 return false;
1595         }
1596
1597         // Check if the hash of the key he gave us matches the hash in the URL.
1598         char *fingerprint = mesh->line + 2;
1599         char hishash[64];
1600         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1601                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", mesh->line + 2);
1602                 meshlink_errno = MESHLINK_EINTERNAL;
1603                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1604                 return false;
1605         }
1606         if(memcmp(hishash, mesh->hash, 18)) {
1607                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1608                 meshlink_errno = MESHLINK_EPEER;
1609                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1610                 return false;
1611
1612         }
1613
1614         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1615         if(!hiskey) {
1616                 meshlink_errno = MESHLINK_EINTERNAL;
1617                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1618                 return false;
1619         }
1620
1621         // Start an SPTPS session
1622         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, "meshlink invitation", 15, invitation_send, invitation_receive)) {
1623                 meshlink_errno = MESHLINK_EINTERNAL;
1624                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1625                 return false;
1626         }
1627
1628         // Feed rest of input buffer to SPTPS
1629         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen)) {
1630                 meshlink_errno = MESHLINK_EPEER;
1631                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1632                 return false;
1633         }
1634
1635         int len;
1636
1637         while((len = recv(mesh->sock, mesh->line, sizeof mesh->line, 0))) {
1638                 if(len < 0) {
1639                         if(errno == EINTR)
1640                                 continue;
1641                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1642                         meshlink_errno = MESHLINK_ENETWORK;
1643                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1644                         return false;
1645                 }
1646
1647                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len)) {
1648                         meshlink_errno = MESHLINK_EPEER;
1649                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1650                         return false;
1651                 }
1652         }
1653
1654         sptps_stop(&mesh->sptps);
1655         ecdsa_free(hiskey);
1656         ecdsa_free(key);
1657         closesocket(mesh->sock);
1658
1659         if(!mesh->success) {
1660                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
1661                 meshlink_errno = MESHLINK_EPEER;
1662                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1663                 return false;
1664         }
1665
1666         pthread_mutex_unlock(&(mesh->mesh_mutex));
1667         return true;
1668
1669 invalid:
1670         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL or you are already connected to a Mesh ?\n");
1671         meshlink_errno = MESHLINK_EINVAL;
1672         pthread_mutex_unlock(&(mesh->mesh_mutex));
1673         return false;
1674 }
1675
1676 char *meshlink_export(meshlink_handle_t *mesh) {
1677         if(!mesh) {
1678                 meshlink_errno = MESHLINK_EINVAL;
1679                 return NULL;
1680         }
1681
1682         pthread_mutex_lock(&(mesh->mesh_mutex));
1683         
1684         char filename[PATH_MAX];
1685         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1686         FILE *f = fopen(filename, "r");
1687         if(!f) {
1688                 logger(mesh, MESHLINK_DEBUG, "Could not open %s: %s\n", filename, strerror(errno));
1689                 meshlink_errno = MESHLINK_ESTORAGE;
1690                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1691                 return NULL;
1692         }
1693
1694         fseek(f, 0, SEEK_END);
1695         int fsize = ftell(f);
1696         rewind(f);
1697
1698         size_t len = fsize + 9 + strlen(mesh->self->name);
1699         char *buf = xmalloc(len);
1700         snprintf(buf, len, "Name = %s\n", mesh->self->name);
1701         if(fread(buf + len - fsize - 1, fsize, 1, f) != 1) {
1702                 logger(mesh, MESHLINK_DEBUG, "Error reading from %s: %s\n", filename, strerror(errno));
1703                 fclose(f);
1704                 meshlink_errno = MESHLINK_ESTORAGE;
1705                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1706                 return NULL;
1707         }
1708
1709         fclose(f);
1710         buf[len - 1] = 0;
1711         
1712         pthread_mutex_lock(&(mesh->mesh_mutex));
1713         return buf;
1714 }
1715
1716 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1717         if(!mesh || !data) {
1718                 meshlink_errno = MESHLINK_EINVAL;
1719                 return false;
1720         }
1721         
1722         pthread_mutex_lock(&(mesh->mesh_mutex));
1723
1724         if(strncmp(data, "Name = ", 7)) {
1725                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1726                 meshlink_errno = MESHLINK_EPEER;
1727                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1728                 return false;
1729         }
1730
1731         char *end = strchr(data + 7, '\n');
1732         if(!end) {
1733                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1734                 meshlink_errno = MESHLINK_EPEER;
1735                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1736                 return false;
1737         }
1738
1739         int len = end - (data + 7);
1740         char name[len + 1];
1741         memcpy(name, data + 7, len);
1742         name[len] = 0;
1743         if(!check_id(name)) {
1744                 logger(mesh, MESHLINK_DEBUG, "Invalid Name\n");
1745                 meshlink_errno = MESHLINK_EPEER;
1746                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1747                 return false;
1748         }
1749
1750         char filename[PATH_MAX];
1751         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1752         if(!access(filename, F_OK)) {
1753                 logger(mesh, MESHLINK_DEBUG, "File %s already exists, not importing\n", filename);
1754                 meshlink_errno = MESHLINK_EEXIST;
1755                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1756                 return false;
1757         }
1758
1759         if(errno != ENOENT) {
1760                 logger(mesh, MESHLINK_DEBUG, "Error accessing %s: %s\n", filename, strerror(errno));
1761                 meshlink_errno = MESHLINK_ESTORAGE;
1762                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1763                 return false;
1764         }
1765
1766         FILE *f = fopen(filename, "w");
1767         if(!f) {
1768                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1769                 meshlink_errno = MESHLINK_ESTORAGE;
1770                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1771                 return false;
1772         }
1773
1774         fwrite(end + 1, strlen(end + 1), 1, f);
1775         fclose(f);
1776
1777         load_all_nodes(mesh);
1778
1779         pthread_mutex_unlock(&(mesh->mesh_mutex));
1780         return true;
1781 }
1782
1783 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1784         if(!mesh || !node) {
1785                 meshlink_errno = MESHLINK_EINVAL;
1786                 return;
1787         }
1788
1789         pthread_mutex_lock(&(mesh->mesh_mutex));
1790         
1791         node_t *n;
1792         n = (node_t*)node;
1793         n->status.blacklisted=true;
1794         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n",node->name);
1795
1796         //Make blacklisting persistent in the config file
1797         append_config_file(mesh, n->name, "blacklisted", "yes");
1798
1799         pthread_mutex_unlock(&(mesh->mesh_mutex));
1800         return;
1801 }
1802
1803 void meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1804         if(!mesh || !node) {
1805                 meshlink_errno = MESHLINK_EINVAL;
1806                 return;
1807         }
1808
1809         pthread_mutex_lock(&(mesh->mesh_mutex));
1810         
1811         node_t *n = (node_t *)node;
1812         n->status.blacklisted = false;
1813
1814         //TODO: remove blacklisted = yes from the config file
1815
1816         pthread_mutex_unlock(&(mesh->mesh_mutex));
1817         return;
1818 }
1819
1820 /* Hint that a hostname may be found at an address
1821  * See header file for detailed comment.
1822  */
1823 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
1824         if(!mesh || !node || !addr)
1825                 return;
1826         
1827         pthread_mutex_lock(&(mesh->mesh_mutex));
1828         
1829         char *host = NULL, *port = NULL, *str = NULL;
1830         sockaddr2str((const sockaddr_t *)addr, &host, &port);
1831
1832         if(host && port) {
1833                 xasprintf(&str, "%s %s", host, port);
1834                 append_config_file(mesh, node->name, "Address", str);
1835         }
1836
1837         free(str);
1838         free(host);
1839         free(port);
1840
1841         pthread_mutex_unlock(&(mesh->mesh_mutex));
1842         // @TODO do we want to fire off a connection attempt right away?
1843 }
1844
1845 /* Return an array of edges in the current network graph.
1846  * Data captures the current state and will not be updated.
1847  * Caller must deallocate data when done.
1848  */
1849 meshlink_edge_t **meshlink_get_all_edges_state(meshlink_handle_t *mesh, meshlink_edge_t **edges, size_t *nmemb) {
1850         if(!mesh || !nmemb || (*nmemb && !edges)) {
1851                 meshlink_errno = MESHLINK_EINVAL;
1852                 return NULL;
1853         }
1854
1855         pthread_mutex_lock(&(mesh->mesh_mutex));
1856         
1857         meshlink_edge_t **result = NULL;
1858         meshlink_edge_t *copy = NULL;
1859         int result_size = 0;
1860
1861         result_size = mesh->edges->count;
1862
1863         // if result is smaller than edges, we have to dealloc all the excess meshlink_edge_t
1864         if(result_size > *nmemb) {
1865                 result = realloc(edges, result_size * sizeof (meshlink_edge_t*));
1866         } else {
1867                 result = edges;
1868         }
1869
1870         if(result) {
1871                 meshlink_edge_t **p = result;
1872                 int n = 0;
1873                 for splay_each(edge_t, e, mesh->edges) {
1874                         // skip edges that do not represent a two-directional connection
1875                         if((!e->reverse) || (e->reverse->to != e->from)) {
1876                                 result_size--;
1877                                 continue;
1878                         }
1879                         n++;
1880                         // the first *nmemb members of result can be re-used
1881                         if(n > *nmemb) {
1882                                 copy = xzalloc(sizeof *copy);
1883                         }
1884                         else {
1885                                 copy = *p;
1886                         }
1887                         copy->from = (meshlink_node_t*)e->from;
1888                         copy->to = (meshlink_node_t*)e->to;
1889                         copy->address = e->address.storage;
1890                         copy->options = e->options;
1891                         copy->weight = e->weight;
1892                         *p++ = copy;
1893                 }
1894                 // shrink result to the actual amount of memory used
1895                 for(int i = *nmemb; i > result_size; i--) {
1896                         free(result[i - 1]);
1897                 }
1898                 result = realloc(result, result_size * sizeof (meshlink_edge_t*));
1899                 *nmemb = result_size;
1900         } else {
1901                 *nmemb = 0;
1902                 free(result);
1903                 meshlink_errno = MESHLINK_ENOMEM;
1904         }
1905
1906         pthread_mutex_unlock(&(mesh->mesh_mutex));
1907
1908         return result;
1909 }
1910
1911 static void __attribute__((constructor)) meshlink_init(void) {
1912         crypto_init();
1913 }
1914
1915 static void __attribute__((destructor)) meshlink_exit(void) {
1916         crypto_exit();
1917 }
1918
1919
1920 /// Device class traits
1921 dev_class_traits_t dev_class_traits[_DEV_CLASS_MAX +1] = {
1922         { .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
1923         { .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
1924         { .min_connects = 3, .max_connects = 3, .edge_weight = 6 },             // DEV_CLASS_PORTABLE
1925         { .min_connects = 1, .max_connects = 1, .edge_weight = 9 },             // DEV_CLASS_UNKNOWN
1926 };