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