]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Send a UDP packet to ourself instead of doing a dummy connect().
[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         // Send ourselves a UDP packet to kick the event loop
1003         listen_socket_t *s = &mesh->listen_socket[0];
1004         if(sendto(s->udp.fd, "", 1, MSG_NOSIGNAL, &s->sa.sa, SALEN(s->sa.sa)) == -1)
1005                 logger(mesh, MESHLINK_ERROR, "Could not send a UDP packet to ourself");
1006
1007         // Wait for the main thread to finish
1008         pthread_mutex_unlock(&(mesh->mesh_mutex));
1009         pthread_join(mesh->thread, NULL);
1010         pthread_mutex_lock(&(mesh->mesh_mutex));
1011
1012         mesh->threadstarted = false;
1013
1014         pthread_mutex_unlock(&(mesh->mesh_mutex));
1015 }
1016
1017 void meshlink_close(meshlink_handle_t *mesh) {
1018         if(!mesh || !mesh->confbase) {
1019                 meshlink_errno = MESHLINK_EINVAL;
1020                 return;
1021         }
1022
1023         // stop can be called even if mesh has not been started
1024         meshlink_stop(mesh);
1025
1026         // lock is not released after this
1027         pthread_mutex_lock(&(mesh->mesh_mutex));
1028
1029         // Close and free all resources used.
1030
1031         close_network_connections(mesh);
1032
1033         logger(mesh, MESHLINK_INFO, "Terminating");
1034
1035         exit_configuration(&mesh->config);
1036         event_loop_exit(&mesh->loop);
1037
1038 #ifdef HAVE_MINGW
1039         if(mesh->confbase)
1040                 WSACleanup();
1041 #endif
1042
1043         ecdsa_free(mesh->invitation_key);
1044
1045         free(mesh->name);
1046         free(mesh->appname);
1047         free(mesh->confbase);
1048         pthread_mutex_destroy(&(mesh->mesh_mutex));
1049
1050         memset(mesh, 0, sizeof *mesh);
1051
1052         free(mesh);
1053 }
1054
1055 static void deltree(const char *dirname) {
1056         DIR *d = opendir(dirname);
1057         if(d) {
1058                 struct dirent *ent;
1059                 while((ent = readdir(d))) {
1060                         if(ent->d_name[0] == '.')
1061                                 continue;
1062                         char filename[PATH_MAX];
1063                         snprintf(filename, sizeof filename, "%s" SLASH "%s", dirname, ent->d_name);
1064                         if(unlink(filename))
1065                                 deltree(filename);
1066                 }
1067                 closedir(d);
1068         }
1069         rmdir(dirname);
1070         return;
1071 }
1072
1073 bool meshlink_destroy(const char *confbase) {
1074         if(!confbase) {
1075                 meshlink_errno = MESHLINK_EINVAL;
1076                 return false;
1077         }
1078
1079         char filename[PATH_MAX];
1080         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", confbase);
1081
1082         if(unlink(filename)) {
1083                 if(errno == ENOENT) {
1084                         meshlink_errno = MESHLINK_ENOENT;
1085                         return false;
1086                 } else {
1087                         logger(NULL, MESHLINK_ERROR, "Cannot delete %s: %s\n", filename, strerror(errno));
1088                         meshlink_errno = MESHLINK_ESTORAGE;
1089                         return false;
1090                 }
1091         }
1092
1093         deltree(confbase);
1094
1095         return true;
1096 }
1097
1098 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
1099         if(!mesh) {
1100                 meshlink_errno = MESHLINK_EINVAL;
1101                 return;
1102         }
1103
1104         pthread_mutex_lock(&(mesh->mesh_mutex));
1105         mesh->receive_cb = cb;
1106         pthread_mutex_unlock(&(mesh->mesh_mutex));
1107 }
1108
1109 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
1110         if(!mesh) {
1111                 meshlink_errno = MESHLINK_EINVAL;
1112                 return;
1113         }
1114
1115         pthread_mutex_lock(&(mesh->mesh_mutex));
1116         mesh->node_status_cb = cb;
1117         pthread_mutex_unlock(&(mesh->mesh_mutex));
1118 }
1119
1120 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
1121         if(mesh) {
1122                 pthread_mutex_lock(&(mesh->mesh_mutex));
1123                 mesh->log_cb = cb;
1124                 mesh->log_level = cb ? level : 0;
1125                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1126         } else {
1127                 global_log_cb = cb;
1128                 global_log_level = cb ? level : 0;
1129         }
1130 }
1131
1132 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, size_t len) {
1133         meshlink_packethdr_t *hdr;
1134
1135         // Validate arguments
1136         if(!mesh || !destination || len >= MAXSIZE - sizeof *hdr) {
1137                 meshlink_errno = MESHLINK_EINVAL;
1138                 return false;
1139         }
1140
1141         if(!len)
1142                 return true;
1143
1144         if(!data) {
1145                 meshlink_errno = MESHLINK_EINVAL;
1146                 return false;
1147         }
1148
1149         // Prepare the packet
1150         vpn_packet_t *packet = malloc(sizeof *packet);
1151         if(!packet) {
1152                 meshlink_errno = MESHLINK_ENOMEM;
1153                 return false;
1154         }
1155
1156         packet->probe = false;
1157         packet->tcp = false;
1158         packet->len = len + sizeof *hdr;
1159
1160         hdr = (meshlink_packethdr_t *)packet->data;
1161         memset(hdr, 0, sizeof *hdr);
1162         // leave the last byte as 0 to make sure strings are always
1163         // null-terminated if they are longer than the buffer
1164         strncpy(hdr->destination, destination->name, (sizeof hdr->destination) - 1);
1165         strncpy(hdr->source, mesh->self->name, (sizeof hdr->source) -1 );
1166
1167         memcpy(packet->data + sizeof *hdr, data, len);
1168
1169         // Queue it
1170         if(!meshlink_queue_push(&mesh->outpacketqueue, packet)) {
1171                 free(packet);
1172                 meshlink_errno = MESHLINK_ENOMEM;
1173                 return false;
1174         }
1175
1176         // Notify event loop
1177         signal_trigger(&(mesh->loop),&(mesh->datafromapp));
1178         
1179         return true;
1180 }
1181
1182 void meshlink_send_from_queue(event_loop_t *loop, meshlink_handle_t *mesh) {
1183         vpn_packet_t *packet = meshlink_queue_pop(&mesh->outpacketqueue);
1184         if(!packet)
1185                 return;
1186
1187         mesh->self->in_packets++;
1188         mesh->self->in_bytes += packet->len;
1189         route(mesh, mesh->self, packet);
1190 }
1191
1192 ssize_t meshlink_get_pmtu(meshlink_handle_t *mesh, meshlink_node_t *destination) {
1193         if(!mesh || !destination) {
1194                 meshlink_errno = MESHLINK_EINVAL;
1195                 return -1;
1196         }
1197         pthread_mutex_lock(&(mesh->mesh_mutex));
1198
1199         node_t *n = (node_t *)destination;
1200         if(!n->status.reachable) {
1201                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1202                 return 0;
1203         
1204         }
1205         else if(n->mtuprobes > 30 && n->minmtu) {
1206                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1207                 return n->minmtu;
1208         }
1209         else {
1210                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1211                 return MTU;
1212         }
1213 }
1214
1215 char *meshlink_get_fingerprint(meshlink_handle_t *mesh, meshlink_node_t *node) {
1216         if(!mesh || !node) {
1217                 meshlink_errno = MESHLINK_EINVAL;
1218                 return NULL;
1219         }
1220         pthread_mutex_lock(&(mesh->mesh_mutex));
1221
1222         node_t *n = (node_t *)node;
1223
1224         if(!node_read_ecdsa_public_key(mesh, n) || !n->ecdsa) {
1225                 meshlink_errno = MESHLINK_EINTERNAL;
1226                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1227                 return false;
1228         }
1229
1230         char *fingerprint = ecdsa_get_base64_public_key(n->ecdsa);
1231
1232         if(!fingerprint)
1233                 meshlink_errno = MESHLINK_EINTERNAL;
1234
1235         pthread_mutex_unlock(&(mesh->mesh_mutex));
1236         return fingerprint;
1237 }
1238
1239 meshlink_node_t *meshlink_get_self(meshlink_handle_t *mesh) {
1240         if(!mesh) {
1241                 meshlink_errno = MESHLINK_EINVAL;
1242                 return NULL;
1243         }
1244
1245         return (meshlink_node_t *)mesh->self;
1246 }
1247
1248 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
1249         if(!mesh || !name) {
1250                 meshlink_errno = MESHLINK_EINVAL;
1251                 return NULL;
1252         }
1253
1254         meshlink_node_t *node = NULL;
1255
1256         pthread_mutex_lock(&(mesh->mesh_mutex));
1257         node = (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
1258         pthread_mutex_unlock(&(mesh->mesh_mutex));
1259         return node;
1260 }
1261
1262 meshlink_node_t **meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t *nmemb) {
1263         if(!mesh || !nmemb || (*nmemb && !nodes)) {
1264                 meshlink_errno = MESHLINK_EINVAL;
1265                 return NULL;
1266         }
1267
1268         meshlink_node_t **result;
1269
1270         //lock mesh->nodes
1271         pthread_mutex_lock(&(mesh->mesh_mutex));
1272
1273         *nmemb = mesh->nodes->count;
1274         result = realloc(nodes, *nmemb * sizeof *nodes);
1275
1276         if(result) {
1277                 meshlink_node_t **p = result;
1278                 for splay_each(node_t, n, mesh->nodes)
1279                         *p++ = (meshlink_node_t *)n;
1280         } else {
1281                 *nmemb = 0;
1282                 free(nodes);
1283                 meshlink_errno = MESHLINK_ENOMEM;
1284         }
1285
1286         pthread_mutex_unlock(&(mesh->mesh_mutex));
1287
1288         return result;
1289 }
1290
1291 bool meshlink_sign(meshlink_handle_t *mesh, const void *data, size_t len, void *signature, size_t *siglen) {
1292         if(!mesh || !data || !len || !signature || !siglen) {
1293                 meshlink_errno = MESHLINK_EINVAL;
1294                 return false;
1295         }
1296
1297         if(*siglen < MESHLINK_SIGLEN) {
1298                 meshlink_errno = MESHLINK_EINVAL;
1299                 return false;
1300         }
1301
1302         pthread_mutex_lock(&(mesh->mesh_mutex));
1303
1304         if(!ecdsa_sign(mesh->self->connection->ecdsa, data, len, signature)) {
1305                 meshlink_errno = MESHLINK_EINTERNAL;
1306                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1307                 return false;
1308         }
1309
1310         *siglen = MESHLINK_SIGLEN;
1311         pthread_mutex_unlock(&(mesh->mesh_mutex));
1312         return true;
1313 }
1314
1315 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len, const void *signature, size_t siglen) {
1316         if(!mesh || !data || !len || !signature) {
1317                 meshlink_errno = MESHLINK_EINVAL;
1318                 return false;
1319         }
1320
1321         if(siglen != MESHLINK_SIGLEN) {
1322                 meshlink_errno = MESHLINK_EINVAL;
1323                 return false;
1324         }
1325
1326         pthread_mutex_lock(&(mesh->mesh_mutex));
1327
1328         bool rval = false;
1329
1330         struct node_t *n = (struct node_t *)source;
1331         node_read_ecdsa_public_key(mesh, n);
1332         if(!n->ecdsa) {
1333                 meshlink_errno = MESHLINK_EINTERNAL;
1334                 rval = false;
1335         } else {
1336                 rval = ecdsa_verify(((struct node_t *)source)->ecdsa, data, len, signature);
1337         }
1338         pthread_mutex_unlock(&(mesh->mesh_mutex));
1339         return rval;
1340 }
1341
1342 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
1343         char filename[PATH_MAX];
1344         
1345         pthread_mutex_lock(&(mesh->mesh_mutex));
1346
1347         snprintf(filename, sizeof filename, "%s" SLASH "invitations", mesh->confbase);
1348         if(mkdir(filename, 0700) && errno != EEXIST) {
1349                 logger(mesh, MESHLINK_DEBUG, "Could not create directory %s: %s\n", filename, strerror(errno));
1350                 meshlink_errno = MESHLINK_ESTORAGE;
1351                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1352                 return false;
1353         }
1354
1355         // Count the number of valid invitations, clean up old ones
1356         DIR *dir = opendir(filename);
1357         if(!dir) {
1358                 logger(mesh, MESHLINK_DEBUG, "Could not read directory %s: %s\n", filename, strerror(errno));
1359                 meshlink_errno = MESHLINK_ESTORAGE;
1360                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1361                 return false;
1362         }
1363
1364         errno = 0;
1365         int count = 0;
1366         struct dirent *ent;
1367         time_t deadline = time(NULL) - 604800; // 1 week in the past
1368
1369         while((ent = readdir(dir))) {
1370                 if(strlen(ent->d_name) != 24)
1371                         continue;
1372                 char invname[PATH_MAX];
1373                 struct stat st;
1374                 snprintf(invname, sizeof invname, "%s" SLASH "%s", filename, ent->d_name);
1375                 if(!stat(invname, &st)) {
1376                         if(mesh->invitation_key && deadline < st.st_mtime)
1377                                 count++;
1378                         else
1379                                 unlink(invname);
1380                 } else {
1381                         logger(mesh, MESHLINK_DEBUG, "Could not stat %s: %s\n", invname, strerror(errno));
1382                         errno = 0;
1383                 }
1384         }
1385
1386         if(errno) {
1387                 logger(mesh, MESHLINK_DEBUG, "Error while reading directory %s: %s\n", filename, strerror(errno));
1388                 closedir(dir);
1389                 meshlink_errno = MESHLINK_ESTORAGE;
1390                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1391                 return false;
1392         }
1393
1394         closedir(dir);
1395
1396         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
1397
1398         // Remove the key if there are no outstanding invitations.
1399         if(!count) {
1400                 unlink(filename);
1401                 if(mesh->invitation_key) {
1402                         ecdsa_free(mesh->invitation_key);
1403                         mesh->invitation_key = NULL;
1404                 }
1405         }
1406
1407         if(mesh->invitation_key) {
1408                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1409                 return true;
1410         }
1411
1412         // Create a new key if necessary.
1413         FILE *f = fopen(filename, "rb");
1414         if(!f) {
1415                 if(errno != ENOENT) {
1416                         logger(mesh, MESHLINK_DEBUG, "Could not read %s: %s\n", filename, strerror(errno));
1417                         meshlink_errno = MESHLINK_ESTORAGE;
1418                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1419                         return false;
1420                 }
1421
1422                 mesh->invitation_key = ecdsa_generate();
1423                 if(!mesh->invitation_key) {
1424                         logger(mesh, MESHLINK_DEBUG, "Could not generate a new key!\n");
1425                         meshlink_errno = MESHLINK_EINTERNAL;
1426                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1427                         return false;
1428                 }
1429                 f = fopen(filename, "wb");
1430                 if(!f) {
1431                         logger(mesh, MESHLINK_DEBUG, "Could not write %s: %s\n", filename, strerror(errno));
1432                         meshlink_errno = MESHLINK_ESTORAGE;
1433                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1434                         return false;
1435                 }
1436                 chmod(filename, 0600);
1437                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1438                 fclose(f);
1439         } else {
1440                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1441                 fclose(f);
1442                 if(!mesh->invitation_key) {
1443                         logger(mesh, MESHLINK_DEBUG, "Could not read private key from %s\n", filename);
1444                         meshlink_errno = MESHLINK_ESTORAGE;
1445                 }
1446         }
1447
1448         pthread_mutex_unlock(&(mesh->mesh_mutex));
1449         return mesh->invitation_key;
1450 }
1451
1452 bool meshlink_add_address(meshlink_handle_t *mesh, const char *address) {
1453         if(!mesh || !address) {
1454                 meshlink_errno = MESHLINK_EINVAL;
1455                 return false;
1456         }
1457         
1458         bool rval = false;
1459
1460         pthread_mutex_lock(&(mesh->mesh_mutex));
1461
1462         for(const char *p = address; *p; p++) {
1463                 if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
1464                         continue;
1465                 logger(mesh, MESHLINK_DEBUG, "Invalid character in address: %s\n", address);
1466                 meshlink_errno = MESHLINK_EINVAL;
1467                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1468                 return false;
1469         }
1470
1471         rval = append_config_file(mesh, mesh->self->name, "Address", address);
1472         pthread_mutex_unlock(&(mesh->mesh_mutex));
1473         return rval;
1474 }
1475
1476 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1477         if(!mesh) {
1478                 meshlink_errno = MESHLINK_EINVAL;
1479                 return NULL;
1480         }
1481         
1482         pthread_mutex_lock(&(mesh->mesh_mutex));
1483
1484         // Check validity of the new node's name
1485         if(!check_id(name)) {
1486                 logger(mesh, MESHLINK_DEBUG, "Invalid name for node.\n");
1487                 meshlink_errno = MESHLINK_EINVAL;
1488                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1489                 return NULL;
1490         }
1491
1492         // Ensure no host configuration file with that name exists
1493         char filename[PATH_MAX];
1494         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1495         if(!access(filename, F_OK)) {
1496                 logger(mesh, MESHLINK_DEBUG, "A host config file for %s already exists!\n", name);
1497                 meshlink_errno = MESHLINK_EEXIST;
1498                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1499                 return NULL;
1500         }
1501
1502         // Ensure no other nodes know about this name
1503         if(meshlink_get_node(mesh, name)) {
1504                 logger(mesh, MESHLINK_DEBUG, "A node with name %s is already known!\n", name);
1505                 meshlink_errno = MESHLINK_EEXIST;
1506                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1507                 return NULL;
1508         }
1509
1510         // Get the local address
1511         char *address = get_my_hostname(mesh);
1512         if(!address) {
1513                 logger(mesh, MESHLINK_DEBUG, "No Address known for ourselves!\n");
1514                 meshlink_errno = MESHLINK_ERESOLV;
1515                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1516                 return NULL;
1517         }
1518
1519         if(!refresh_invitation_key(mesh)) {
1520                 meshlink_errno = MESHLINK_EINTERNAL;
1521                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1522                 return NULL;
1523         }
1524
1525         char hash[64];
1526
1527         // Create a hash of the key.
1528         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1529         sha512(fingerprint, strlen(fingerprint), hash);
1530         b64encode_urlsafe(hash, hash, 18);
1531
1532         // Create a random cookie for this invitation.
1533         char cookie[25];
1534         randomize(cookie, 18);
1535
1536         // Create a filename that doesn't reveal the cookie itself
1537         char buf[18 + strlen(fingerprint)];
1538         char cookiehash[64];
1539         memcpy(buf, cookie, 18);
1540         memcpy(buf + 18, fingerprint, sizeof buf - 18);
1541         sha512(buf, sizeof buf, cookiehash);
1542         b64encode_urlsafe(cookiehash, cookiehash, 18);
1543
1544         b64encode_urlsafe(cookie, cookie, 18);
1545
1546         free(fingerprint);
1547
1548         // Create a file containing the details of the invitation.
1549         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1550         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1551         if(!ifd) {
1552                 logger(mesh, MESHLINK_DEBUG, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1553                 meshlink_errno = MESHLINK_ESTORAGE;
1554                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1555                 return NULL;
1556         }
1557         FILE *f = fdopen(ifd, "w");
1558         if(!f)
1559                 abort();
1560
1561         // Fill in the details.
1562         fprintf(f, "Name = %s\n", name);
1563         //if(netname)
1564         //      fprintf(f, "NetName = %s\n", netname);
1565         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1566
1567         // Copy Broadcast and Mode
1568         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
1569         FILE *tc = fopen(filename,  "r");
1570         if(tc) {
1571                 char buf[1024];
1572                 while(fgets(buf, sizeof buf, tc)) {
1573                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1574                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1575                                 fputs(buf, f);
1576                                 // Make sure there is a newline character.
1577                                 if(!strchr(buf, '\n'))
1578                                         fputc('\n', f);
1579                         }
1580                 }
1581                 fclose(tc);
1582         } else {
1583                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1584                 meshlink_errno = MESHLINK_ESTORAGE;
1585                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1586                 return NULL;
1587         }
1588
1589         fprintf(f, "#---------------------------------------------------------------#\n");
1590         fprintf(f, "Name = %s\n", mesh->self->name);
1591
1592         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1593         fcopy(f, filename);
1594         fclose(f);
1595
1596         // Create an URL from the local address, key hash and cookie
1597         char *url;
1598         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1599         free(address);
1600
1601         pthread_mutex_unlock(&(mesh->mesh_mutex));
1602         return url;
1603 }
1604
1605 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1606         if(!mesh || !invitation) {
1607                 meshlink_errno = MESHLINK_EINVAL;
1608                 return false;
1609         }
1610         
1611         pthread_mutex_lock(&(mesh->mesh_mutex));
1612
1613         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1614         char copy[strlen(invitation) + 1];
1615         strcpy(copy, invitation);
1616
1617         // Split the invitation URL into hostname, port, key hash and cookie.
1618
1619         char *slash = strchr(copy, '/');
1620         if(!slash)
1621                 goto invalid;
1622
1623         *slash++ = 0;
1624
1625         if(strlen(slash) != 48)
1626                 goto invalid;
1627
1628         char *address = copy;
1629         char *port = NULL;
1630         if(*address == '[') {
1631                 address++;
1632                 char *bracket = strchr(address, ']');
1633                 if(!bracket)
1634                         goto invalid;
1635                 *bracket = 0;
1636                 if(bracket[1] == ':')
1637                         port = bracket + 2;
1638         } else {
1639                 port = strchr(address, ':');
1640                 if(port)
1641                         *port++ = 0;
1642         }
1643
1644         if(!port)
1645                 goto invalid;
1646
1647         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1648                 goto invalid;
1649
1650         // Generate a throw-away key for the invitation.
1651         ecdsa_t *key = ecdsa_generate();
1652         if(!key) {
1653                 meshlink_errno = MESHLINK_EINTERNAL;
1654                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1655                 return false;
1656         }
1657
1658         char *b64key = ecdsa_get_base64_public_key(key);
1659
1660         //Before doing meshlink_join make sure we are not connected to another mesh
1661         if ( mesh->threadstarted ){
1662                 goto invalid;
1663         }
1664
1665         // Connect to the meshlink daemon mentioned in the URL.
1666         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1667         if(!ai) {
1668                 meshlink_errno = MESHLINK_ERESOLV;
1669                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1670                 return false;
1671         }
1672
1673         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1674         if(mesh->sock <= 0) {
1675                 logger(mesh, MESHLINK_DEBUG, "Could not open socket: %s\n", strerror(errno));
1676                 freeaddrinfo(ai);
1677                 meshlink_errno = MESHLINK_ENETWORK;
1678                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1679                 return false;
1680         }
1681
1682         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1683                 logger(mesh, MESHLINK_DEBUG, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1684                 closesocket(mesh->sock);
1685                 freeaddrinfo(ai);
1686                 meshlink_errno = MESHLINK_ENETWORK;
1687                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1688                 return false;
1689         }
1690
1691         freeaddrinfo(ai);
1692
1693         logger(mesh, MESHLINK_DEBUG, "Connected to %s port %s...\n", address, port);
1694
1695         // Tell him we have an invitation, and give him our throw-away key.
1696
1697         mesh->blen = 0;
1698
1699         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1700                 logger(mesh, MESHLINK_DEBUG, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1701                 closesocket(mesh->sock);
1702                 meshlink_errno = MESHLINK_ENETWORK;
1703                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1704                 return false;
1705         }
1706
1707         free(b64key);
1708
1709         char hisname[4096] = "";
1710         int code, hismajor, hisminor = 0;
1711
1712         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) {
1713                 logger(mesh, MESHLINK_DEBUG, "Cannot read greeting from peer\n");
1714                 closesocket(mesh->sock);
1715                 meshlink_errno = MESHLINK_ENETWORK;
1716                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1717                 return false;
1718         }
1719
1720         // Check if the hash of the key he gave us matches the hash in the URL.
1721         char *fingerprint = mesh->line + 2;
1722         char hishash[64];
1723         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1724                 logger(mesh, MESHLINK_DEBUG, "Could not create hash\n%s\n", mesh->line + 2);
1725                 meshlink_errno = MESHLINK_EINTERNAL;
1726                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1727                 return false;
1728         }
1729         if(memcmp(hishash, mesh->hash, 18)) {
1730                 logger(mesh, MESHLINK_DEBUG, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1731                 meshlink_errno = MESHLINK_EPEER;
1732                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1733                 return false;
1734
1735         }
1736
1737         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1738         if(!hiskey) {
1739                 meshlink_errno = MESHLINK_EINTERNAL;
1740                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1741                 return false;
1742         }
1743
1744         // Start an SPTPS session
1745         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, "meshlink invitation", 15, invitation_send, invitation_receive)) {
1746                 meshlink_errno = MESHLINK_EINTERNAL;
1747                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1748                 return false;
1749         }
1750
1751         // Feed rest of input buffer to SPTPS
1752         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen)) {
1753                 meshlink_errno = MESHLINK_EPEER;
1754                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1755                 return false;
1756         }
1757
1758         int len;
1759
1760         while((len = recv(mesh->sock, mesh->line, sizeof mesh->line, 0))) {
1761                 if(len < 0) {
1762                         if(errno == EINTR)
1763                                 continue;
1764                         logger(mesh, MESHLINK_DEBUG, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1765                         meshlink_errno = MESHLINK_ENETWORK;
1766                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1767                         return false;
1768                 }
1769
1770                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len)) {
1771                         meshlink_errno = MESHLINK_EPEER;
1772                         pthread_mutex_unlock(&(mesh->mesh_mutex));
1773                         return false;
1774                 }
1775         }
1776
1777         sptps_stop(&mesh->sptps);
1778         ecdsa_free(hiskey);
1779         ecdsa_free(key);
1780         closesocket(mesh->sock);
1781
1782         if(!mesh->success) {
1783                 logger(mesh, MESHLINK_DEBUG, "Connection closed by peer, invitation cancelled.\n");
1784                 meshlink_errno = MESHLINK_EPEER;
1785                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1786                 return false;
1787         }
1788
1789         pthread_mutex_unlock(&(mesh->mesh_mutex));
1790         return true;
1791
1792 invalid:
1793         logger(mesh, MESHLINK_DEBUG, "Invalid invitation URL or you are already connected to a Mesh ?\n");
1794         meshlink_errno = MESHLINK_EINVAL;
1795         pthread_mutex_unlock(&(mesh->mesh_mutex));
1796         return false;
1797 }
1798
1799 char *meshlink_export(meshlink_handle_t *mesh) {
1800         if(!mesh) {
1801                 meshlink_errno = MESHLINK_EINVAL;
1802                 return NULL;
1803         }
1804
1805         pthread_mutex_lock(&(mesh->mesh_mutex));
1806         
1807         char filename[PATH_MAX];
1808         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1809         FILE *f = fopen(filename, "r");
1810         if(!f) {
1811                 logger(mesh, MESHLINK_DEBUG, "Could not open %s: %s\n", filename, strerror(errno));
1812                 meshlink_errno = MESHLINK_ESTORAGE;
1813                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1814                 return NULL;
1815         }
1816
1817         fseek(f, 0, SEEK_END);
1818         int fsize = ftell(f);
1819         rewind(f);
1820
1821         size_t len = fsize + 9 + strlen(mesh->self->name);
1822         char *buf = xmalloc(len);
1823         snprintf(buf, len, "Name = %s\n", mesh->self->name);
1824         if(fread(buf + len - fsize - 1, fsize, 1, f) != 1) {
1825                 logger(mesh, MESHLINK_DEBUG, "Error reading from %s: %s\n", filename, strerror(errno));
1826                 fclose(f);
1827                 meshlink_errno = MESHLINK_ESTORAGE;
1828                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1829                 return NULL;
1830         }
1831
1832         fclose(f);
1833         buf[len - 1] = 0;
1834         
1835         pthread_mutex_unlock(&(mesh->mesh_mutex));
1836         return buf;
1837 }
1838
1839 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1840         if(!mesh || !data) {
1841                 meshlink_errno = MESHLINK_EINVAL;
1842                 return false;
1843         }
1844         
1845         pthread_mutex_lock(&(mesh->mesh_mutex));
1846
1847         if(strncmp(data, "Name = ", 7)) {
1848                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1849                 meshlink_errno = MESHLINK_EPEER;
1850                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1851                 return false;
1852         }
1853
1854         char *end = strchr(data + 7, '\n');
1855         if(!end) {
1856                 logger(mesh, MESHLINK_DEBUG, "Invalid data\n");
1857                 meshlink_errno = MESHLINK_EPEER;
1858                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1859                 return false;
1860         }
1861
1862         int len = end - (data + 7);
1863         char name[len + 1];
1864         memcpy(name, data + 7, len);
1865         name[len] = 0;
1866         if(!check_id(name)) {
1867                 logger(mesh, MESHLINK_DEBUG, "Invalid Name\n");
1868                 meshlink_errno = MESHLINK_EPEER;
1869                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1870                 return false;
1871         }
1872
1873         char filename[PATH_MAX];
1874         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1875         if(!access(filename, F_OK)) {
1876                 logger(mesh, MESHLINK_DEBUG, "File %s already exists, not importing\n", filename);
1877                 meshlink_errno = MESHLINK_EEXIST;
1878                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1879                 return false;
1880         }
1881
1882         if(errno != ENOENT) {
1883                 logger(mesh, MESHLINK_DEBUG, "Error accessing %s: %s\n", filename, strerror(errno));
1884                 meshlink_errno = MESHLINK_ESTORAGE;
1885                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1886                 return false;
1887         }
1888
1889         FILE *f = fopen(filename, "w");
1890         if(!f) {
1891                 logger(mesh, MESHLINK_DEBUG, "Could not create %s: %s\n", filename, strerror(errno));
1892                 meshlink_errno = MESHLINK_ESTORAGE;
1893                 pthread_mutex_unlock(&(mesh->mesh_mutex));
1894                 return false;
1895         }
1896
1897         fwrite(end + 1, strlen(end + 1), 1, f);
1898         fclose(f);
1899
1900         load_all_nodes(mesh);
1901
1902         pthread_mutex_unlock(&(mesh->mesh_mutex));
1903         return true;
1904 }
1905
1906 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1907         if(!mesh || !node) {
1908                 meshlink_errno = MESHLINK_EINVAL;
1909                 return;
1910         }
1911
1912         pthread_mutex_lock(&(mesh->mesh_mutex));
1913         
1914         node_t *n;
1915         n = (node_t*)node;
1916         n->status.blacklisted=true;
1917         logger(mesh, MESHLINK_DEBUG, "Blacklisted %s.\n",node->name);
1918
1919         //Make blacklisting persistent in the config file
1920         append_config_file(mesh, n->name, "blacklisted", "yes");
1921
1922         pthread_mutex_unlock(&(mesh->mesh_mutex));
1923         return;
1924 }
1925
1926 void meshlink_whitelist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1927         if(!mesh || !node) {
1928                 meshlink_errno = MESHLINK_EINVAL;
1929                 return;
1930         }
1931
1932         pthread_mutex_lock(&(mesh->mesh_mutex));
1933         
1934         node_t *n = (node_t *)node;
1935         n->status.blacklisted = false;
1936
1937         //TODO: remove blacklisted = yes from the config file
1938
1939         pthread_mutex_unlock(&(mesh->mesh_mutex));
1940         return;
1941 }
1942
1943 void meshlink_set_default_blacklist(meshlink_handle_t *mesh, bool blacklist) {
1944         mesh->default_blacklist = blacklist;
1945 }
1946
1947 /* Hint that a hostname may be found at an address
1948  * See header file for detailed comment.
1949  */
1950 void meshlink_hint_address(meshlink_handle_t *mesh, meshlink_node_t *node, const struct sockaddr *addr) {
1951         if(!mesh || !node || !addr)
1952                 return;
1953
1954         // Ignore hints about ourself.
1955         if((node_t *)node == mesh->self)
1956                 return;
1957         
1958         pthread_mutex_lock(&(mesh->mesh_mutex));
1959         
1960         char *host = NULL, *port = NULL, *str = NULL;
1961         sockaddr2str((const sockaddr_t *)addr, &host, &port);
1962
1963         if(host && port) {
1964                 xasprintf(&str, "%s %s", host, port);
1965                 if ( (strncmp ("fe80",host,4) != 0) && ( strncmp("127.",host,4) != 0 ) && ( strcmp("localhost",host) !=0 ) )
1966                         append_config_file(mesh, node->name, "Address", str);
1967                 else
1968                         logger(mesh, MESHLINK_DEBUG, "Not adding Link Local IPv6 Address to config\n");
1969         }
1970
1971         free(str);
1972         free(host);
1973         free(port);
1974
1975         pthread_mutex_unlock(&(mesh->mesh_mutex));
1976         // @TODO do we want to fire off a connection attempt right away?
1977 }
1978
1979 /* Return an array of edges in the current network graph.
1980  * Data captures the current state and will not be updated.
1981  * Caller must deallocate data when done.
1982  */
1983 meshlink_edge_t **meshlink_get_all_edges_state(meshlink_handle_t *mesh, meshlink_edge_t **edges, size_t *nmemb) {
1984         if(!mesh || !nmemb || (*nmemb && !edges)) {
1985                 meshlink_errno = MESHLINK_EINVAL;
1986                 return NULL;
1987         }
1988
1989         pthread_mutex_lock(&(mesh->mesh_mutex));
1990         
1991         meshlink_edge_t **result = NULL;
1992         meshlink_edge_t *copy = NULL;
1993         int result_size = 0;
1994
1995         result_size = mesh->edges->count;
1996
1997         // if result is smaller than edges, we have to dealloc all the excess meshlink_edge_t
1998         if(result_size > *nmemb) {
1999                 result = realloc(edges, result_size * sizeof (meshlink_edge_t*));
2000         } else {
2001                 result = edges;
2002         }
2003
2004         if(result) {
2005                 meshlink_edge_t **p = result;
2006                 int n = 0;
2007                 for splay_each(edge_t, e, mesh->edges) {
2008                         // skip edges that do not represent a two-directional connection
2009                         if((!e->reverse) || (e->reverse->to != e->from)) {
2010                                 result_size--;
2011                                 continue;
2012                         }
2013                         n++;
2014                         // the first *nmemb members of result can be re-used
2015                         if(n > *nmemb) {
2016                                 copy = xzalloc(sizeof *copy);
2017                         }
2018                         else {
2019                                 copy = *p;
2020                         }
2021                         copy->from = (meshlink_node_t*)e->from;
2022                         copy->to = (meshlink_node_t*)e->to;
2023                         copy->address = e->address.storage;
2024                         copy->options = e->options;
2025                         copy->weight = e->weight;
2026                         *p++ = copy;
2027                 }
2028                 // shrink result to the actual amount of memory used
2029                 for(int i = *nmemb; i > result_size; i--) {
2030                         free(result[i - 1]);
2031                 }
2032                 result = realloc(result, result_size * sizeof (meshlink_edge_t*));
2033                 *nmemb = result_size;
2034         } else {
2035                 *nmemb = 0;
2036                 free(result);
2037                 meshlink_errno = MESHLINK_ENOMEM;
2038         }
2039
2040         pthread_mutex_unlock(&(mesh->mesh_mutex));
2041
2042         return result;
2043 }
2044
2045 static bool channel_pre_accept(struct utcp *utcp, uint16_t port) {
2046         //TODO: implement
2047         return true;
2048 }
2049
2050 static ssize_t channel_recv(struct utcp_connection *connection, const void *data, size_t len) {
2051         meshlink_channel_t *channel = connection->priv;
2052         if(!channel)
2053                 abort();
2054         node_t *n = channel->node;
2055         meshlink_handle_t *mesh = n->mesh;
2056         if(!channel->receive_cb)
2057                 return -1;
2058         else {
2059                 channel->receive_cb(mesh, channel, data, len);
2060                 return len;
2061         }
2062 }
2063
2064 static void channel_accept(struct utcp_connection *utcp_connection, uint16_t port) {
2065         node_t *n = utcp_connection->utcp->priv;
2066         if(!n)
2067                 abort();
2068         meshlink_handle_t *mesh = n->mesh;
2069         if(!mesh->channel_accept_cb)
2070                 return;
2071         meshlink_channel_t *channel = xzalloc(sizeof *channel);
2072         channel->node = n;
2073         channel->c = utcp_connection;
2074         if(mesh->channel_accept_cb(mesh, channel, port, NULL, 0))
2075                 utcp_accept(utcp_connection, channel_recv, channel);
2076         else
2077                 free(channel);
2078 }
2079
2080 static ssize_t channel_send(struct utcp *utcp, const void *data, size_t len) {
2081         node_t *n = utcp->priv;
2082         meshlink_handle_t *mesh = n->mesh;
2083         char hex[len * 2 + 1];
2084         bin2hex(data, hex, len);
2085         logger(mesh, MESHLINK_WARNING, "channel_send(%p, %p, %zu): %s\n", utcp, data, len, hex);
2086         return meshlink_send(mesh, (meshlink_node_t *)n, data, len) ? len : -1;
2087 }
2088
2089 void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb) {
2090         if(!mesh || !channel) {
2091                 meshlink_errno = MESHLINK_EINVAL;
2092                 return;
2093         }
2094
2095         channel->receive_cb = cb;
2096 }
2097
2098 static void channel_receive(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
2099         node_t *n = (node_t *)source;
2100         if(!n->utcp)
2101                 abort();
2102         char hex[len * 2 + 1];
2103         bin2hex(data, hex, len);
2104         logger(mesh, MESHLINK_WARNING, "channel_receive(%p, %p, %zu): %s\n", n->utcp, data, len, hex);
2105         utcp_recv(n->utcp, data, len);
2106 }
2107
2108 static void channel_poll(struct utcp_connection *connection, size_t len) {
2109         meshlink_channel_t *channel = connection->priv;
2110         if(!channel)
2111                 abort();
2112         node_t *n = channel->node;
2113         meshlink_handle_t *mesh = n->mesh;
2114         if(channel->poll_cb)
2115                 channel->poll_cb(mesh, channel, len);
2116 }
2117
2118 void meshlink_set_channel_poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_poll_cb_t cb) {
2119         channel->poll_cb = cb;
2120         utcp_set_poll_cb(channel->c, cb ? channel_poll : NULL);
2121 }
2122
2123 void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_channel_accept_cb_t cb) {
2124         if(!mesh) {
2125                 meshlink_errno = MESHLINK_EINVAL;
2126                 return;
2127         }
2128
2129         pthread_mutex_lock(&mesh->mesh_mutex);
2130         mesh->channel_accept_cb = cb;
2131         mesh->receive_cb = channel_receive;
2132         for splay_each(node_t, n, mesh->nodes) {
2133                 if(!n->utcp && n != mesh->self) {
2134                         logger(mesh, MESHLINK_WARNING, "utcp_init on node %s", n->name);
2135                         n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2136                 }
2137         }
2138         pthread_mutex_unlock(&mesh->mesh_mutex);
2139 }
2140
2141 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) {
2142         if(!mesh || !node) {
2143                 meshlink_errno = MESHLINK_EINVAL;
2144                 return NULL;
2145         }
2146
2147         logger(mesh, MESHLINK_WARNING, "meshlink_channel_open(%p, %s, %u, %p, %p, %zu)\n", mesh, node->name, port, cb, data, len);
2148         node_t *n = (node_t *)node;
2149         if(!n->utcp) {
2150                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2151                 mesh->receive_cb = channel_receive;
2152                 if(!n->utcp) {
2153                         meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2154                         return NULL;
2155                 }
2156         }
2157         meshlink_channel_t *channel = xzalloc(sizeof *channel);
2158         channel->node = n;
2159         channel->receive_cb = cb;
2160         channel->c = utcp_connect(n->utcp, port, channel_recv, channel);
2161         if(!channel->c) {
2162                 meshlink_errno = errno == ENOMEM ? MESHLINK_ENOMEM : MESHLINK_EINTERNAL;
2163                 free(channel);
2164                 return NULL;
2165         }
2166         return channel;
2167 }
2168
2169 void meshlink_channel_shutdown(meshlink_handle_t *mesh, meshlink_channel_t *channel, int direction) {
2170         if(!mesh || !channel) {
2171                 meshlink_errno = MESHLINK_EINVAL;
2172                 return;
2173         }
2174
2175         utcp_shutdown(channel->c, direction);
2176 }
2177
2178 void meshlink_channel_close(meshlink_handle_t *mesh, meshlink_channel_t *channel) {
2179         if(!mesh || !channel) {
2180                 meshlink_errno = MESHLINK_EINVAL;
2181                 return;
2182         }
2183
2184         utcp_close(channel->c);
2185         free(channel);
2186 }
2187
2188 ssize_t meshlink_channel_send(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
2189         if(!mesh || !channel) {
2190                 meshlink_errno = MESHLINK_EINVAL;
2191                 return -1;
2192         }
2193
2194         if(!len)
2195                 return 0;
2196
2197         if(!data) {
2198                 meshlink_errno = MESHLINK_EINVAL;
2199                 return -1;
2200         }
2201
2202         // TODO: more finegrained locking.
2203         // Ideally we want to put the data into the UTCP connection's send buffer.
2204         // Then, preferrably only if there is room in the receiver window,
2205         // kick the meshlink thread to go send packets.
2206
2207         pthread_mutex_lock(&mesh->mesh_mutex);
2208         ssize_t retval = utcp_send(channel->c, data, len);
2209         pthread_mutex_unlock(&mesh->mesh_mutex);
2210
2211         if(retval < 0)
2212                 meshlink_errno = MESHLINK_ENETWORK;
2213         return retval;
2214 }
2215
2216 void update_node_status(meshlink_handle_t *mesh, node_t *n) {
2217         if(n->status.reachable && mesh->channel_accept_cb && !n->utcp)
2218                 n->utcp = utcp_init(channel_accept, channel_pre_accept, channel_send, n);
2219         if(mesh->node_status_cb)
2220                 mesh->node_status_cb(mesh, (meshlink_node_t *)n, n->status.reachable);
2221 }
2222
2223 static void __attribute__((constructor)) meshlink_init(void) {
2224         crypto_init();
2225 }
2226
2227 static void __attribute__((destructor)) meshlink_exit(void) {
2228         crypto_exit();
2229 }
2230
2231 /// Device class traits
2232 dev_class_traits_t dev_class_traits[_DEV_CLASS_MAX +1] = {
2233         { .min_connects = 3, .max_connects = 10000, .edge_weight = 1 }, // DEV_CLASS_BACKBONE
2234         { .min_connects = 3, .max_connects = 100, .edge_weight = 3 },   // DEV_CLASS_STATIONARY
2235         { .min_connects = 3, .max_connects = 3, .edge_weight = 6 },             // DEV_CLASS_PORTABLE
2236         { .min_connects = 1, .max_connects = 1, .edge_weight = 9 },             // DEV_CLASS_UNKNOWN
2237 };