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