]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Immediately try connecting to the mesh after a succesful join.
[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 tinc.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 typedef struct {
25         const char *name;
26         int type;
27 } var_t;
28
29 #include "system.h"
30 #include <pthread.h>
31
32 #include "crypto.h"
33 #include "ecdsagen.h"
34 #include "meshlink_internal.h"
35 #include "netutl.h"
36 #include "node.h"
37 #include "protocol.h"
38 #include "route.h"
39 #include "utils.h"
40 #include "xalloc.h"
41 #include "ed25519/sha512.h"
42
43
44 //TODO: this can go away completely
45 const var_t variables[] = {
46         /* Server configuration */
47         {"AddressFamily", VAR_SERVER},
48         {"AutoConnect", VAR_SERVER | VAR_SAFE},
49         {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
50         {"BindToInterface", VAR_SERVER},
51         {"Broadcast", VAR_SERVER | VAR_SAFE},
52         {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
53         {"DecrementTTL", VAR_SERVER},
54         {"Device", VAR_SERVER},
55         {"DeviceType", VAR_SERVER},
56         {"DirectOnly", VAR_SERVER},
57         {"ECDSAPrivateKeyFile", VAR_SERVER},
58         {"ExperimentalProtocol", VAR_SERVER},
59         {"Forwarding", VAR_SERVER},
60         {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
61         {"Hostnames", VAR_SERVER},
62         {"IffOneQueue", VAR_SERVER},
63         {"Interface", VAR_SERVER},
64         {"KeyExpire", VAR_SERVER},
65         {"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
66         {"LocalDiscovery", VAR_SERVER},
67         {"MACExpire", VAR_SERVER},
68         {"MaxConnectionBurst", VAR_SERVER},
69         {"MaxOutputBufferSize", VAR_SERVER},
70         {"MaxTimeout", VAR_SERVER},
71         {"Mode", VAR_SERVER | VAR_SAFE},
72         {"Name", VAR_SERVER},
73         {"PingInterval", VAR_SERVER},
74         {"PingTimeout", VAR_SERVER},
75         {"PriorityInheritance", VAR_SERVER},
76         {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
77         {"PrivateKeyFile", VAR_SERVER},
78         {"ProcessPriority", VAR_SERVER},
79         {"Proxy", VAR_SERVER},
80         {"ReplayWindow", VAR_SERVER},
81         {"ScriptsExtension", VAR_SERVER},
82         {"ScriptsInterpreter", VAR_SERVER},
83         {"StrictSubnets", VAR_SERVER},
84         {"TunnelServer", VAR_SERVER},
85         {"VDEGroup", VAR_SERVER},
86         {"VDEPort", VAR_SERVER},
87         /* Host configuration */
88         {"Address", VAR_HOST | VAR_MULTIPLE},
89         {"Cipher", VAR_SERVER | VAR_HOST},
90         {"ClampMSS", VAR_SERVER | VAR_HOST},
91         {"Compression", VAR_SERVER | VAR_HOST},
92         {"Digest", VAR_SERVER | VAR_HOST},
93         {"ECDSAPublicKey", VAR_HOST},
94         {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
95         {"IndirectData", VAR_SERVER | VAR_HOST},
96         {"MACLength", VAR_SERVER | VAR_HOST},
97         {"PMTU", VAR_SERVER | VAR_HOST},
98         {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
99         {"Port", VAR_HOST},
100         {"PublicKey", VAR_HOST | VAR_OBSOLETE},
101         {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
102         {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
103         {"TCPOnly", VAR_SERVER | VAR_HOST},
104         {"Weight", VAR_HOST | VAR_SAFE},
105         {NULL, 0}
106 };
107
108 static bool fcopy(FILE *out, const char *filename) {
109         FILE *in = fopen(filename, "r");
110         if(!in) {
111                 fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
112                 return false;
113         }
114
115         char buf[1024];
116         size_t len;
117         while((len = fread(buf, 1, sizeof buf, in)))
118                 fwrite(buf, len, 1, out);
119         fclose(in);
120         return true;
121 }
122
123 static int rstrip(char *value) {
124         int len = strlen(value);
125         while(len && strchr("\t\r\n ", value[len - 1]))
126                 value[--len] = 0;
127         return len;
128 }
129
130 static void scan_for_hostname(const char *filename, char **hostname, char **port) {
131         char line[4096];
132         if(!filename || (*hostname && *port))
133                 return;
134
135         FILE *f = fopen(filename, "r");
136         if(!f)
137                 return;
138
139         while(fgets(line, sizeof line, f)) {
140                 if(!rstrip(line))
141                         continue;
142                 char *p = line, *q;
143                 p += strcspn(p, "\t =");
144                 if(!*p)
145                         continue;
146                 q = p + strspn(p, "\t ");
147                 if(*q == '=')
148                         q += 1 + strspn(q + 1, "\t ");
149                 *p = 0;
150                 p = q + strcspn(q, "\t ");
151                 if(*p)
152                         *p++ = 0;
153                 p += strspn(p, "\t ");
154                 p[strcspn(p, "\t ")] = 0;
155
156                 if(!*port && !strcasecmp(line, "Port")) {
157                         *port = xstrdup(q);
158                 } else if(!*hostname && !strcasecmp(line, "Address")) {
159                         *hostname = xstrdup(q);
160                         if(*p) {
161                                 free(*port);
162                                 *port = xstrdup(p);
163                         }
164                 }
165
166                 if(*hostname && *port)
167                         break;
168         }
169
170         fclose(f);
171 }
172 static char *get_my_hostname(meshlink_handle_t* mesh) {
173         char *hostname = NULL;
174         char *port = NULL;
175         char *hostport = NULL;
176         char *name = mesh->self->name;
177         char filename[PATH_MAX] = "";
178         char line[4096];
179         FILE *f;
180
181         // Use first Address statement in own host config file
182         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
183         scan_for_hostname(filename, &hostname, &port);
184
185         if(hostname)
186                 goto done;
187
188         // If that doesn't work, guess externally visible hostname
189         fprintf(stderr, "Trying to discover externally visible hostname...\n");
190         struct addrinfo *ai = str2addrinfo("tinc-vpn.org", "80", SOCK_STREAM);
191         struct addrinfo *aip = ai;
192         static const char request[] = "GET http://tinc-vpn.org/host.cgi HTTP/1.0\r\n\r\n";
193
194         while(aip) {
195                 int s = socket(aip->ai_family, aip->ai_socktype, aip->ai_protocol);
196                 if(s >= 0) {
197                         if(connect(s, aip->ai_addr, aip->ai_addrlen)) {
198                                 closesocket(s);
199                                 s = -1;
200                         }
201                 }
202                 if(s >= 0) {
203                         send(s, request, sizeof request - 1, 0);
204                         int len = recv(s, line, sizeof line - 1, MSG_WAITALL);
205                         if(len > 0) {
206                                 line[len] = 0;
207                                 if(line[len - 1] == '\n')
208                                         line[--len] = 0;
209                                 char *p = strrchr(line, '\n');
210                                 if(p && p[1])
211                                         hostname = xstrdup(p + 1);
212                         }
213                         closesocket(s);
214                         if(hostname)
215                                 break;
216                 }
217                 aip = aip->ai_next;
218                 continue;
219         }
220
221         if(ai)
222                 freeaddrinfo(ai);
223
224         // Check that the hostname is reasonable
225         if(hostname) {
226                 for(char *p = hostname; *p; p++) {
227                         if(isalnum(*p) || *p == '-' || *p == '.' || *p == ':')
228                                 continue;
229                         // If not, forget it.
230                         free(hostname);
231                         hostname = NULL;
232                         break;
233                 }
234         }
235
236         //if(!tty) {
237         //      if(!hostname) {
238         //              fprintf(stderr, "Could not determine the external address or hostname. Please set Address manually.\n");
239         //              return NULL;
240         //      }
241         //      goto save;
242         //}
243
244 again:
245         fprintf(stderr, "Please enter your host's external address or hostname");
246         if(hostname)
247                 fprintf(stderr, " [%s]", hostname);
248         fprintf(stderr, ": ");
249
250         if(!fgets(line, sizeof line, stdin)) {
251                 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
252                 free(hostname);
253                 return NULL;
254         }
255
256         if(!rstrip(line)) {
257                 if(hostname)
258                         goto save;
259                 else
260                         goto again;
261         }
262
263         for(char *p = line; *p; p++) {
264                 if(isalnum(*p) || *p == '-' || *p == '.')
265                         continue;
266                 fprintf(stderr, "Invalid address or hostname.\n");
267                 goto again;
268         }
269
270         free(hostname);
271         hostname = xstrdup(line);
272
273 save:
274         f = fopen(filename, "a");
275         if(f) {
276                 fprintf(f, "\nAddress = %s\n", hostname);
277                 fclose(f);
278         } else {
279                 fprintf(stderr, "Could not append Address to %s: %s\n", filename, strerror(errno));
280         }
281
282 done:
283         if(port) {
284                 if(strchr(hostname, ':'))
285                         xasprintf(&hostport, "[%s]:%s", hostname, port);
286                 else
287                         xasprintf(&hostport, "%s:%s", hostname, port);
288         } else {
289                 if(strchr(hostname, ':'))
290                         xasprintf(&hostport, "[%s]", hostname);
291                 else
292                         hostport = xstrdup(hostname);
293         }
294
295         free(hostname);
296         free(port);
297         return hostport;
298 }
299
300 static char *get_line(const char **data) {
301         if(!data || !*data)
302                 return NULL;
303
304         if(!**data) {
305                 *data = NULL;
306                 return NULL;
307         }
308
309         static char line[1024];
310         const char *end = strchr(*data, '\n');
311         size_t len = end ? end - *data : strlen(*data);
312         if(len >= sizeof line) {
313                 fprintf(stderr, "Maximum line length exceeded!\n");
314                 return NULL;
315         }
316         if(len && !isprint(**data))
317                 abort();
318
319         memcpy(line, *data, len);
320         line[len] = 0;
321
322         if(end)
323                 *data = end + 1;
324         else
325                 *data = NULL;
326
327         return line;
328 }
329
330 static char *get_value(const char *data, const char *var) {
331         char *line = get_line(&data);
332         if(!line)
333                 return NULL;
334
335         char *sep = line + strcspn(line, " \t=");
336         char *val = sep + strspn(sep, " \t");
337         if(*val == '=')
338                 val += 1 + strspn(val + 1, " \t");
339         *sep = 0;
340         if(strcasecmp(line, var))
341                 return NULL;
342         return val;
343 }
344
345 static bool try_bind(int port) {
346         struct addrinfo *ai = NULL;
347         struct addrinfo hint = {
348                 .ai_flags = AI_PASSIVE,
349                 .ai_family = AF_UNSPEC,
350                 .ai_socktype = SOCK_STREAM,
351                 .ai_protocol = IPPROTO_TCP,
352         };
353
354         char portstr[16];
355         snprintf(portstr, sizeof portstr, "%d", port);
356
357         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai)
358                 return false;
359
360         while(ai) {
361                 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
362                 if(!fd)
363                         return false;
364                 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
365                 closesocket(fd);
366                 if(result)
367                         return false;
368                 ai = ai->ai_next;
369         }
370
371         return true;
372 }
373
374 static int check_port(meshlink_handle_t *mesh) {
375         if(try_bind(655))
376                 return 655;
377
378         fprintf(stderr, "Warning: could not bind to port 655.\n");
379
380         for(int i = 0; i < 100; i++) {
381                 int port = 0x1000 + (rand() & 0x7fff);
382                 if(try_bind(port)) {
383                         char filename[PATH_MAX];
384                         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
385                         FILE *f = fopen(filename, "a");
386                         if(!f) {
387                                 fprintf(stderr, "Please change MeshLink's Port manually.\n");
388                                 return 0;
389                         }
390
391                         fprintf(f, "Port = %d\n", port);
392                         fclose(f);
393                         fprintf(stderr, "MeshLink will instead listen on port %d.\n", port);
394                         return port;
395                 }
396         }
397
398         fprintf(stderr, "Please change MeshLink's Port manually.\n");
399         return 0;
400 }
401
402 static bool finalize_join(meshlink_handle_t *mesh) {
403         char *name = xstrdup(get_value(mesh->data, "Name"));
404         if(!name) {
405                 fprintf(stderr, "No Name found in invitation!\n");
406                 return false;
407         }
408
409         if(!check_id(name)) {
410                 fprintf(stderr, "Invalid Name found in invitation: %s!\n", name);
411                 return false;
412         }
413
414         char filename[PATH_MAX];
415         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
416
417         FILE *f = fopen(filename, "w");
418         if(!f) {
419                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
420                 return false;
421         }
422
423         fprintf(f, "Name = %s\n", name);
424
425         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
426         FILE *fh = fopen(filename, "w");
427         if(!fh) {
428                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
429                 return false;
430         }
431
432         // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
433         // Other chunks go unfiltered to their respective host config files
434         const char *p = mesh->data;
435         char *l, *value;
436
437         while((l = get_line(&p))) {
438                 // Ignore comments
439                 if(*l == '#')
440                         continue;
441
442                 // Split line into variable and value
443                 int len = strcspn(l, "\t =");
444                 value = l + len;
445                 value += strspn(value, "\t ");
446                 if(*value == '=') {
447                         value++;
448                         value += strspn(value, "\t ");
449                 }
450                 l[len] = 0;
451
452                 // Is it a Name?
453                 if(!strcasecmp(l, "Name"))
454                         if(strcmp(value, name))
455                                 break;
456                         else
457                                 continue;
458                 else if(!strcasecmp(l, "NetName"))
459                         continue;
460
461                 // Check the list of known variables //TODO: most variables will not be available in meshlink, only name and key will be absolutely necessary
462                 bool found = false;
463                 int i;
464                 for(i = 0; variables[i].name; i++) {
465                         if(strcasecmp(l, variables[i].name))
466                                 continue;
467                         found = true;
468                         break;
469                 }
470
471                 // Ignore unknown and unsafe variables
472                 if(!found) {
473                         fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
474                         continue;
475                 } else if(!(variables[i].type & VAR_SAFE)) {
476                         fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
477                         continue;
478                 }
479
480                 // Copy the safe variable to the right config file
481                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
482         }
483
484         fclose(f);
485
486         while(l && !strcasecmp(l, "Name")) {
487                 if(!check_id(value)) {
488                         fprintf(stderr, "Invalid Name found in invitation.\n");
489                         return false;
490                 }
491
492                 if(!strcmp(value, name)) {
493                         fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
494                         return false;
495                 }
496
497                 snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, value);
498                 f = fopen(filename, "w");
499
500                 if(!f) {
501                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
502                         return false;
503                 }
504
505                 while((l = get_line(&p))) {
506                         if(!strcmp(l, "#---------------------------------------------------------------#"))
507                                 continue;
508                         int len = strcspn(l, "\t =");
509                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
510                                 value = l + len;
511                                 value += strspn(value, "\t ");
512                                 if(*value == '=') {
513                                         value++;
514                                         value += strspn(value, "\t ");
515                                 }
516                                 l[len] = 0;
517                                 break;
518                         }
519
520                         fputs(l, f);
521                         fputc('\n', f);
522                 }
523
524                 fclose(f);
525         }
526
527         char *b64key = ecdsa_get_base64_public_key(mesh->self->connection->ecdsa);
528         if(!b64key)
529                 return false;
530
531         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
532         fprintf(fh, "Port = %s\n", mesh->myport);
533
534         fclose(fh);
535
536         sptps_send_record(&(mesh->sptps), 1, b64key, strlen(b64key));
537         free(b64key);
538
539         free(mesh->self->name);
540         free(mesh->self->connection->name);
541         mesh->self->name = xstrdup(name);
542         mesh->self->connection->name = xstrdup(name);
543
544         fprintf(stderr, "Configuration stored in: %s\n", mesh->confbase);
545
546         load_all_nodes(mesh);
547
548         return true;
549 }
550
551 static bool invitation_send(void *handle, uint8_t type, const char *data, size_t len) {
552         meshlink_handle_t* mesh = handle;
553         while(len) {
554                 int result = send(mesh->sock, data, len, 0);
555                 if(result == -1 && errno == EINTR)
556                         continue;
557                 else if(result <= 0)
558                         return false;
559                 data += result;
560                 len -= result;
561         }
562         return true;
563 }
564
565 static bool invitation_receive(void *handle, uint8_t type, const char *msg, uint16_t len) {
566         meshlink_handle_t* mesh = handle;
567         switch(type) {
568                 case SPTPS_HANDSHAKE:
569                         return sptps_send_record(&(mesh->sptps), 0, mesh->cookie, sizeof mesh->cookie);
570
571                 case 0:
572                         mesh->data = xrealloc(mesh->data, mesh->thedatalen + len + 1);
573                         memcpy(mesh->data + mesh->thedatalen, msg, len);
574                         mesh->thedatalen += len;
575                         mesh->data[mesh->thedatalen] = 0;
576                         break;
577
578                 case 1:
579                         return finalize_join(mesh);
580
581                 case 2:
582                         fprintf(stderr, "Invitation succesfully accepted.\n");
583                         shutdown(mesh->sock, SHUT_RDWR);
584                         mesh->success = true;
585                         break;
586
587                 default:
588                         return false;
589         }
590
591         return true;
592 }
593
594 static bool recvline(meshlink_handle_t* mesh, size_t len) {
595         char *newline = NULL;
596
597         if(!mesh->sock)
598                 abort();
599
600         while(!(newline = memchr(mesh->buffer, '\n', mesh->blen))) {
601                 int result = recv(mesh->sock, mesh->buffer + mesh->blen, sizeof mesh->buffer - mesh->blen, 0);
602                 if(result == -1 && errno == EINTR)
603                         continue;
604                 else if(result <= 0)
605                         return false;
606                 mesh->blen += result;
607         }
608
609         if(newline - mesh->buffer >= len)
610                 return false;
611
612         len = newline - mesh->buffer;
613
614         memcpy(mesh->line, mesh->buffer, len);
615         mesh->line[len] = 0;
616         memmove(mesh->buffer, newline + 1, mesh->blen - len - 1);
617         mesh->blen -= len + 1;
618
619         return true;
620 }
621 static bool sendline(int fd, char *format, ...) {
622         static char buffer[4096];
623         char *p = buffer;
624         int blen = 0;
625         va_list ap;
626
627         va_start(ap, format);
628         blen = vsnprintf(buffer, sizeof buffer, format, ap);
629         va_end(ap);
630
631         if(blen < 1 || blen >= sizeof buffer)
632                 return false;
633
634         buffer[blen] = '\n';
635         blen++;
636
637         while(blen) {
638                 int result = send(fd, p, blen, MSG_NOSIGNAL);
639                 if(result == -1 && errno == EINTR)
640                         continue;
641                 else if(result <= 0)
642                         return false;
643                 p += result;
644                 blen -= result;
645         }
646
647         return true;
648 }
649
650 static const char *errstr[] = {
651         [MESHLINK_OK] = "No error",
652         [MESHLINK_ENOMEM] = "Out of memory",
653         [MESHLINK_ENOENT] = "No such node",
654 };
655
656 const char *meshlink_strerror(meshlink_errno_t errno) {
657         return errstr[errno];
658 }
659
660 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
661         ecdsa_t *key;
662         FILE *f;
663         char pubname[PATH_MAX], privname[PATH_MAX];
664
665         fprintf(stderr, "Generating ECDSA keypair:\n");
666
667         if(!(key = ecdsa_generate())) {
668                 fprintf(stderr, "Error during key generation!\n");
669                 return false;
670         } else
671                 fprintf(stderr, "Done.\n");
672
673         snprintf(privname, sizeof privname, "%s" SLASH "ecdsa_key.priv", mesh->confbase);
674         f = fopen(privname, "w");
675
676         if(!f)
677                 return false;
678
679 #ifdef HAVE_FCHMOD
680         fchmod(fileno(f), 0600);
681 #endif
682
683         if(!ecdsa_write_pem_private_key(key, f)) {
684                 fprintf(stderr, "Error writing private key!\n");
685                 ecdsa_free(key);
686                 fclose(f);
687                 return false;
688         }
689
690         fclose(f);
691
692
693         snprintf(pubname, sizeof pubname, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
694         f = fopen(pubname, "a");
695
696         if(!f)
697                 return false;
698
699         char *pubkey = ecdsa_get_base64_public_key(key);
700         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
701         free(pubkey);
702
703         fclose(f);
704         ecdsa_free(key);
705
706         return true;
707 }
708
709 static bool meshlink_setup(meshlink_handle_t *mesh) {
710         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
711                 fprintf(stderr, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
712                 return false;
713         }
714
715         char filename[PATH_MAX];
716         snprintf(filename, sizeof filename, "%s" SLASH "hosts", mesh->confbase);
717
718         if(mkdir(filename, 0777) && errno != EEXIST) {
719                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
720                 return false;
721         }
722
723         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
724
725         if(!access(filename, F_OK)) {
726                 fprintf(stderr, "Configuration file %s already exists!\n", filename);
727                 return false;
728         }
729
730         FILE *f = fopen(filename, "w");
731         if(!f) {
732                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
733                 return 1;
734         }
735
736         fprintf(f, "Name = %s\n", mesh->name);
737         fclose(f);
738
739         if(!ecdsa_keygen(mesh))
740                 return false;
741
742         check_port(mesh);
743
744         return true;
745 }
746
747 meshlink_handle_t *meshlink_open(const char *confbase, const char *name) {
748         // Validate arguments provided by the application
749
750         if(!confbase || !*confbase) {
751                 fprintf(stderr, "No confbase given!\n");
752                 return NULL;
753         }
754
755         if(!name || !*name) {
756                 fprintf(stderr, "No name given!\n");
757                 return NULL;
758         }
759
760         if(!check_id(name)) {
761                 fprintf(stderr, "Invalid name given!\n");
762                 return NULL;
763         }
764
765         meshlink_handle_t *mesh = xzalloc(sizeof *mesh);
766         mesh->confbase = xstrdup(confbase);
767         mesh->name = xstrdup(name);
768         event_loop_init(&mesh->loop);
769         mesh->loop.data = mesh;
770
771         // TODO: should be set by a function.
772         mesh->debug_level = 5;
773
774         // Check whether meshlink.conf already exists
775
776         char filename[PATH_MAX];
777         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", confbase);
778
779         if(access(filename, R_OK)) {
780                 if(errno == ENOENT) {
781                         // If not, create it
782                         meshlink_setup(mesh);
783                 } else {
784                         fprintf(stderr, "Cannot not read from %s: %s\n", filename, strerror(errno));
785                         return meshlink_close(mesh), NULL;
786                 }
787         }
788
789         // Read the configuration
790
791         init_configuration(&mesh->config);
792
793         if(!read_server_config(mesh))
794                 return meshlink_close(mesh), NULL;
795
796         // Setup up everything
797         // TODO: we should not open listening sockets yet
798
799         if(!setup_network(mesh))
800                 return meshlink_close(mesh), NULL;
801
802         return mesh;
803 }
804
805 void *meshlink_main_loop(void *arg) {
806         meshlink_handle_t *mesh = arg;
807
808         try_outgoing_connections(mesh);
809
810         main_loop(mesh);
811
812         return NULL;
813 }
814
815 bool meshlink_start(meshlink_handle_t *mesh) {
816         // TODO: open listening sockets first
817
818         // Start the main thread
819
820         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
821                 fprintf(stderr, "Could not start thread: %s\n", strerror(errno));
822                 memset(&mesh->thread, 0, sizeof mesh->thread);
823                 return false;
824         }
825
826         return true;
827 }
828
829 void meshlink_stop(meshlink_handle_t *mesh) {
830         // TODO: close the listening sockets to signal the main thread to shut down
831
832         // Wait for the main thread to finish
833
834         pthread_join(mesh->thread, NULL);
835 }
836
837 void meshlink_close(meshlink_handle_t *mesh) {
838         // Close and free all resources used.
839
840         close_network_connections(mesh);
841
842         logger(DEBUG_ALWAYS, LOG_NOTICE, "Terminating");
843
844         exit_configuration(&mesh->config);
845         event_loop_exit(&mesh->loop);
846 }
847
848 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
849         mesh->receive_cb = cb;
850 }
851
852 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
853         mesh->node_status_cb = cb;
854 }
855
856 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
857         mesh->log_cb = cb;
858         mesh->log_level = level;
859 }
860
861 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, unsigned int len) {
862         vpn_packet_t packet;
863         meshlink_packethdr_t *hdr = (meshlink_packethdr_t *)packet.data;
864         if (sizeof(meshlink_packethdr_t) + len > MAXSIZE) {
865                 //log something
866                 return false;
867         }
868
869         packet.probe = false;
870         memset(hdr, 0, sizeof *hdr);
871         memcpy(hdr->destination, destination->name, sizeof hdr->destination);
872         memcpy(hdr->source, mesh->self->name, sizeof hdr->source);
873
874         packet.len = sizeof *hdr + len;
875         memcpy(packet.data + sizeof *hdr, data, len);
876
877         mesh->self->in_packets++;
878         mesh->self->in_bytes += packet.len;
879         route(mesh, mesh->self, &packet);
880         return false;
881 }
882
883 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
884         return (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
885 }
886
887 size_t meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t nmemb) {
888         return 0;
889 }
890
891 char *meshlink_sign(meshlink_handle_t *mesh, const char *data, size_t len) {
892         return NULL;
893 }
894
895 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const char *data, size_t len, const char *signature) {
896         return false;
897 }
898
899 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
900         char filename[PATH_MAX];
901
902         snprintf(filename, sizeof filename, "%s" SLASH "invitations", mesh->confbase);
903         if(mkdir(filename, 0700) && errno != EEXIST) {
904                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
905                 return NULL;
906         }
907
908         // Count the number of valid invitations, clean up old ones
909         DIR *dir = opendir(filename);
910         if(!dir) {
911                 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
912                 return NULL;
913         }
914
915         errno = 0;
916         int count = 0;
917         struct dirent *ent;
918         time_t deadline = time(NULL) - 604800; // 1 week in the past
919
920         while((ent = readdir(dir))) {
921                 if(strlen(ent->d_name) != 24)
922                         continue;
923                 char invname[PATH_MAX];
924                 struct stat st;
925                 snprintf(invname, sizeof invname, "%s" SLASH "%s", filename, ent->d_name);
926                 if(!stat(invname, &st)) {
927                         if(mesh->invitation_key && deadline < st.st_mtime)
928                                 count++;
929                         else
930                                 unlink(invname);
931                 } else {
932                         fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
933                         errno = 0;
934                 }
935         }
936
937         if(errno) {
938                 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
939                 closedir(dir);
940                 return false;
941         }
942
943         closedir(dir);
944
945         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
946
947         // Remove the key if there are no outstanding invitations.
948         if(!count) {
949                 unlink(filename);
950                 if(mesh->invitation_key) {
951                         ecdsa_free(mesh->invitation_key);
952                         mesh->invitation_key = NULL;
953                 }
954         }
955
956         if(mesh->invitation_key)
957                 return true;
958
959         // Create a new key if necessary.
960         FILE *f = fopen(filename, "r");
961         if(!f) {
962                 if(errno != ENOENT) {
963                         fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
964                         return NULL;
965                 }
966
967                 mesh->invitation_key = ecdsa_generate();
968                 if(!mesh->invitation_key) {
969                         fprintf(stderr, "Could not generate a new key!\n");
970                         return NULL;
971                 }
972                 f = fopen(filename, "w");
973                 if(!f) {
974                         fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
975                         return NULL;
976                 }
977                 chmod(filename, 0600);
978                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
979                 fclose(f);
980         } else {
981                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
982                 fclose(f);
983                 if(!mesh->invitation_key)
984                         fprintf(stderr, "Could not read private key from %s\n", filename);
985         }
986
987         return mesh->invitation_key;
988 }
989
990 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
991         // Check validity of the new node's name
992         if(!check_id(name)) {
993                 fprintf(stderr, "Invalid name for node.\n");
994                 return NULL;
995         }
996
997         // Ensure no host configuration file with that name exists
998         char filename[PATH_MAX];
999         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1000         if(!access(filename, F_OK)) {
1001                 fprintf(stderr, "A host config file for %s already exists!\n", name);
1002                 return NULL;
1003         }
1004
1005         // Ensure no other nodes know about this name
1006         if(meshlink_get_node(mesh, name)) {
1007                 fprintf(stderr, "A node with name %s is already known!\n", name);
1008                 return NULL;
1009         }
1010
1011         if(!refresh_invitation_key(mesh))
1012                 return NULL;
1013
1014         char hash[64];
1015
1016         // Create a hash of the key.
1017         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1018         sha512(fingerprint, strlen(fingerprint), hash);
1019         b64encode_urlsafe(hash, hash, 18);
1020
1021         // Create a random cookie for this invitation.
1022         char cookie[25];
1023         randomize(cookie, 18);
1024
1025         // Create a filename that doesn't reveal the cookie itself
1026         char buf[18 + strlen(fingerprint)];
1027         char cookiehash[64];
1028         memcpy(buf, cookie, 18);
1029         memcpy(buf + 18, fingerprint, sizeof buf - 18);
1030         sha512(buf, sizeof buf, cookiehash);
1031         b64encode_urlsafe(cookiehash, cookiehash, 18);
1032
1033         b64encode_urlsafe(cookie, cookie, 18);
1034
1035         // Create a file containing the details of the invitation.
1036         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1037         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1038         if(!ifd) {
1039                 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1040                 return NULL;
1041         }
1042         FILE *f = fdopen(ifd, "w");
1043         if(!f)
1044                 abort();
1045
1046         // Get the local address
1047         char *address = get_my_hostname(mesh);
1048
1049         // Fill in the details.
1050         fprintf(f, "Name = %s\n", name);
1051         //if(netname)
1052         //      fprintf(f, "NetName = %s\n", netname);
1053         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1054
1055         // Copy Broadcast and Mode
1056         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
1057         FILE *tc = fopen(filename,  "r");
1058         if(tc) {
1059                 char buf[1024];
1060                 while(fgets(buf, sizeof buf, tc)) {
1061                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1062                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1063                                 fputs(buf, f);
1064                                 // Make sure there is a newline character.
1065                                 if(!strchr(buf, '\n'))
1066                                         fputc('\n', f);
1067                         }
1068                 }
1069                 fclose(tc);
1070         } else {
1071                 fprintf(stderr, "Could not create %s: %s\n", filename, strerror(errno));
1072                 return NULL;
1073         }
1074
1075         fprintf(f, "#---------------------------------------------------------------#\n");
1076         fprintf(f, "Name = %s\n", mesh->self->name);
1077
1078         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1079         fcopy(f, filename);
1080         fclose(f);
1081
1082         // Create an URL from the local address, key hash and cookie
1083         char *url;
1084         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1085
1086         return url;
1087 }
1088
1089 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1090         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1091         char copy[strlen(invitation) + 1];
1092         strcpy(copy, invitation);
1093
1094         // Split the invitation URL into hostname, port, key hash and cookie.
1095
1096         char *slash = strchr(copy, '/');
1097         if(!slash)
1098                 goto invalid;
1099
1100         *slash++ = 0;
1101
1102         if(strlen(slash) != 48)
1103                 goto invalid;
1104
1105         char *address = copy;
1106         char *port = NULL;
1107         if(*address == '[') {
1108                 address++;
1109                 char *bracket = strchr(address, ']');
1110                 if(!bracket)
1111                         goto invalid;
1112                 *bracket = 0;
1113                 if(bracket[1] == ':')
1114                         port = bracket + 2;
1115         } else {
1116                 port = strchr(address, ':');
1117                 if(port)
1118                         *port++ = 0;
1119         }
1120
1121         if(!*port)
1122                 port = "655";
1123
1124         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1125                 goto invalid;
1126
1127         // Generate a throw-away key for the invitation.
1128         ecdsa_t *key = ecdsa_generate();
1129         if(!key)
1130                 return false;
1131
1132         char *b64key = ecdsa_get_base64_public_key(key);
1133
1134         // Connect to the meshlink daemon mentioned in the URL.
1135         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1136         if(!ai)
1137                 return false;
1138
1139         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1140         if(mesh->sock <= 0) {
1141                 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
1142                 return false;
1143         }
1144
1145         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1146                 fprintf(stderr, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1147                 closesocket(mesh->sock);
1148                 return false;
1149         }
1150
1151         fprintf(stderr, "Connected to %s port %s...\n", address, port);
1152
1153         // Tell him we have an invitation, and give him our throw-away key.
1154
1155         mesh->blen = 0;
1156
1157         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1158                 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1159                 closesocket(mesh->sock);
1160                 return false;
1161         }
1162
1163         char hisname[4096] = "";
1164         int code, hismajor, hisminor = 0;
1165
1166         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) {
1167                 fprintf(stderr, "Cannot read greeting from peer\n");
1168                 closesocket(mesh->sock);
1169                 return false;
1170         }
1171
1172         // Check if the hash of the key he gave us matches the hash in the URL.
1173         char *fingerprint = mesh->line + 2;
1174         char hishash[64];
1175         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1176                 fprintf(stderr, "Could not create hash\n%s\n", mesh->line + 2);
1177                 return false;
1178         }
1179         if(memcmp(hishash, mesh->hash, 18)) {
1180                 fprintf(stderr, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1181                 return false;
1182
1183         }
1184
1185         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1186         if(!hiskey)
1187                 return false;
1188
1189         // Start an SPTPS session
1190         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, "meshlink invitation", 15, invitation_send, invitation_receive))
1191                 return false;
1192
1193         // Feed rest of input buffer to SPTPS
1194         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen))
1195                 return false;
1196
1197         int len;
1198
1199         while((len = recv(mesh->sock, mesh->line, sizeof mesh->line, 0))) {
1200                 if(len < 0) {
1201                         if(errno == EINTR)
1202                                 continue;
1203                         fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1204                         return false;
1205                 }
1206
1207                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len))
1208                         return false;
1209         }
1210
1211         sptps_stop(&mesh->sptps);
1212         ecdsa_free(hiskey);
1213         ecdsa_free(key);
1214         closesocket(mesh->sock);
1215
1216         if(!mesh->success) {
1217                 fprintf(stderr, "Connection closed by peer, invitation cancelled.\n");
1218                 return false;
1219         }
1220
1221         return true;
1222
1223 invalid:
1224         fprintf(stderr, "Invalid invitation URL.\n");
1225         return false;
1226 }
1227
1228 char *meshlink_export(meshlink_handle_t *mesh) {
1229         return NULL;
1230 }
1231
1232 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1233         return false;
1234 }
1235
1236 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1237 }
1238
1239 static void __attribute__((constructor)) meshlink_init(void) {
1240         crypto_init();
1241 }
1242
1243 static void __attribute__((destructor)) meshlink_exit(void) {
1244         crypto_exit();
1245 }