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