]> git.meshlink.io Git - meshlink/blob - src/meshlink.c
Don't change the port in finalize_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 static FILE *fopenmask(const char *filename, const char *mode, mode_t perms) {
345         mode_t mask = umask(0);
346         perms &= ~mask;
347         umask(~perms);
348         FILE *f = fopen(filename, mode);
349 #ifdef HAVE_FCHMOD
350         if((perms & 0444) && f)
351                 fchmod(fileno(f), perms);
352 #endif
353         umask(mask);
354         return f;
355 }
356
357 static bool try_bind(int port) {
358         struct addrinfo *ai = NULL;
359         struct addrinfo hint = {
360                 .ai_flags = AI_PASSIVE,
361                 .ai_family = AF_UNSPEC,
362                 .ai_socktype = SOCK_STREAM,
363                 .ai_protocol = IPPROTO_TCP,
364         };
365
366         char portstr[16];
367         snprintf(portstr, sizeof portstr, "%d", port);
368
369         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai)
370                 return false;
371
372         while(ai) {
373                 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
374                 if(!fd)
375                         return false;
376                 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
377                 closesocket(fd);
378                 if(result)
379                         return false;
380                 ai = ai->ai_next;
381         }
382
383         return true;
384 }
385
386 static int check_port(meshlink_handle_t *mesh) {
387         if(try_bind(655))
388                 return 655;
389
390         fprintf(stderr, "Warning: could not bind to port 655.\n");
391
392         for(int i = 0; i < 100; i++) {
393                 int port = 0x1000 + (rand() & 0x7fff);
394                 if(try_bind(port)) {
395                         char filename[PATH_MAX];
396                         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
397                         FILE *f = fopen(filename, "a");
398                         if(!f) {
399                                 fprintf(stderr, "Please change MeshLink's Port manually.\n");
400                                 return 0;
401                         }
402
403                         fprintf(f, "Port = %d\n", port);
404                         fclose(f);
405                         fprintf(stderr, "MeshLink will instead listen on port %d.\n", port);
406                         return port;
407                 }
408         }
409
410         fprintf(stderr, "Please change MeshLink's Port manually.\n");
411         return 0;
412 }
413
414 static bool finalize_join(meshlink_handle_t *mesh) {
415         char *name = xstrdup(get_value(mesh->data, "Name"));
416         if(!name) {
417                 fprintf(stderr, "No Name found in invitation!\n");
418                 return false;
419         }
420
421         if(!check_id(name)) {
422                 fprintf(stderr, "Invalid Name found in invitation: %s!\n", name);
423                 return false;
424         }
425
426         char filename[PATH_MAX];
427         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
428
429         FILE *f = fopen(filename, "w");
430         if(!f) {
431                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
432                 return false;
433         }
434
435         fprintf(f, "Name = %s\n", name);
436
437         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
438         FILE *fh = fopen(filename, "w");
439         if(!fh) {
440                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
441                 return false;
442         }
443
444         // Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
445         // Other chunks go unfiltered to their respective host config files
446         const char *p = mesh->data;
447         char *l, *value;
448
449         while((l = get_line(&p))) {
450                 // Ignore comments
451                 if(*l == '#')
452                         continue;
453
454                 // Split line into variable and value
455                 int len = strcspn(l, "\t =");
456                 value = l + len;
457                 value += strspn(value, "\t ");
458                 if(*value == '=') {
459                         value++;
460                         value += strspn(value, "\t ");
461                 }
462                 l[len] = 0;
463
464                 // Is it a Name?
465                 if(!strcasecmp(l, "Name"))
466                         if(strcmp(value, name))
467                                 break;
468                         else
469                                 continue;
470                 else if(!strcasecmp(l, "NetName"))
471                         continue;
472
473                 // Check the list of known variables //TODO: most variables will not be available in meshlink, only name and key will be absolutely necessary
474                 bool found = false;
475                 int i;
476                 for(i = 0; variables[i].name; i++) {
477                         if(strcasecmp(l, variables[i].name))
478                                 continue;
479                         found = true;
480                         break;
481                 }
482
483                 // Ignore unknown and unsafe variables
484                 if(!found) {
485                         fprintf(stderr, "Ignoring unknown variable '%s' in invitation.\n", l);
486                         continue;
487                 } else if(!(variables[i].type & VAR_SAFE)) {
488                         fprintf(stderr, "Ignoring unsafe variable '%s' in invitation.\n", l);
489                         continue;
490                 }
491
492                 // Copy the safe variable to the right config file
493                 fprintf(variables[i].type & VAR_HOST ? fh : f, "%s = %s\n", l, value);
494         }
495
496         fclose(f);
497
498         while(l && !strcasecmp(l, "Name")) {
499                 if(!check_id(value)) {
500                         fprintf(stderr, "Invalid Name found in invitation.\n");
501                         return false;
502                 }
503
504                 if(!strcmp(value, name)) {
505                         fprintf(stderr, "Secondary chunk would overwrite our own host config file.\n");
506                         return false;
507                 }
508
509                 snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, value);
510                 f = fopen(filename, "w");
511
512                 if(!f) {
513                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
514                         return false;
515                 }
516
517                 while((l = get_line(&p))) {
518                         if(!strcmp(l, "#---------------------------------------------------------------#"))
519                                 continue;
520                         int len = strcspn(l, "\t =");
521                         if(len == 4 && !strncasecmp(l, "Name", 4)) {
522                                 value = l + len;
523                                 value += strspn(value, "\t ");
524                                 if(*value == '=') {
525                                         value++;
526                                         value += strspn(value, "\t ");
527                                 }
528                                 l[len] = 0;
529                                 break;
530                         }
531
532                         fputs(l, f);
533                         fputc('\n', f);
534                 }
535
536                 fclose(f);
537         }
538
539         // Generate our key and send a copy to the server
540         ecdsa_t *key = ecdsa_generate();
541         if(!key)
542                 return false;
543
544         char *b64key = ecdsa_get_base64_public_key(key);
545         if(!b64key)
546                 return false;
547
548         snprintf(filename, sizeof filename, "%s" SLASH "ecdsa_key.priv", mesh->confbase);
549         f = fopenmask(filename, "w", 0600);
550
551         if(!ecdsa_write_pem_private_key(key, f)) {
552                 fprintf(stderr, "Error writing private key!\n");
553                 ecdsa_free(key);
554                 fclose(f);
555                 return false;
556         }
557
558         fclose(f);
559
560         fprintf(fh, "ECDSAPublicKey = %s\n", b64key);
561         fprintf(fh, "Port = %s\n", mesh->myport);
562
563         fclose(fh);
564
565         sptps_send_record(&(mesh->sptps), 1, b64key, strlen(b64key));
566         free(b64key);
567
568         ecdsa_free(key);
569
570         fprintf(stderr, "Configuration stored in: %s\n", mesh->confbase);
571
572         return true;
573 }
574
575 static bool invitation_send(void *handle, uint8_t type, const char *data, size_t len) {
576         meshlink_handle_t* mesh = handle;
577         while(len) {
578                 int result = send(mesh->sock, data, len, 0);
579                 if(result == -1 && errno == EINTR)
580                         continue;
581                 else if(result <= 0)
582                         return false;
583                 data += result;
584                 len -= result;
585         }
586         return true;
587 }
588
589 static bool invitation_receive(void *handle, uint8_t type, const char *msg, uint16_t len) {
590         meshlink_handle_t* mesh = handle;
591         switch(type) {
592                 case SPTPS_HANDSHAKE:
593                         return sptps_send_record(&(mesh->sptps), 0, mesh->cookie, sizeof mesh->cookie);
594
595                 case 0:
596                         mesh->data = xrealloc(mesh->data, mesh->thedatalen + len + 1);
597                         memcpy(mesh->data + mesh->thedatalen, msg, len);
598                         mesh->thedatalen += len;
599                         mesh->data[mesh->thedatalen] = 0;
600                         break;
601
602                 case 1:
603                         return finalize_join(mesh);
604
605                 case 2:
606                         fprintf(stderr, "Invitation succesfully accepted.\n");
607                         shutdown(mesh->sock, SHUT_RDWR);
608                         mesh->success = true;
609                         break;
610
611                 default:
612                         return false;
613         }
614
615         return true;
616 }
617
618 static bool recvline(meshlink_handle_t* mesh, size_t len) {
619         char *newline = NULL;
620
621         if(!mesh->sock)
622                 abort();
623
624         while(!(newline = memchr(mesh->buffer, '\n', mesh->blen))) {
625                 int result = recv(mesh->sock, mesh->buffer + mesh->blen, sizeof mesh->buffer - mesh->blen, 0);
626                 if(result == -1 && errno == EINTR)
627                         continue;
628                 else if(result <= 0)
629                         return false;
630                 mesh->blen += result;
631         }
632
633         if(newline - mesh->buffer >= len)
634                 return false;
635
636         len = newline - mesh->buffer;
637
638         memcpy(mesh->line, mesh->buffer, len);
639         mesh->line[len] = 0;
640         memmove(mesh->buffer, newline + 1, mesh->blen - len - 1);
641         mesh->blen -= len + 1;
642
643         return true;
644 }
645 static bool sendline(int fd, char *format, ...) {
646         static char buffer[4096];
647         char *p = buffer;
648         int blen = 0;
649         va_list ap;
650
651         va_start(ap, format);
652         blen = vsnprintf(buffer, sizeof buffer, format, ap);
653         va_end(ap);
654
655         if(blen < 1 || blen >= sizeof buffer)
656                 return false;
657
658         buffer[blen] = '\n';
659         blen++;
660
661         while(blen) {
662                 int result = send(fd, p, blen, MSG_NOSIGNAL);
663                 if(result == -1 && errno == EINTR)
664                         continue;
665                 else if(result <= 0)
666                         return false;
667                 p += result;
668                 blen -= result;
669         }
670
671         return true;
672 }
673
674 static const char *errstr[] = {
675         [MESHLINK_OK] = "No error",
676         [MESHLINK_ENOMEM] = "Out of memory",
677         [MESHLINK_ENOENT] = "No such node",
678 };
679
680 const char *meshlink_strerror(meshlink_errno_t errno) {
681         return errstr[errno];
682 }
683
684 static bool ecdsa_keygen(meshlink_handle_t *mesh) {
685         ecdsa_t *key;
686         FILE *f;
687         char pubname[PATH_MAX], privname[PATH_MAX];
688
689         fprintf(stderr, "Generating ECDSA keypair:\n");
690
691         if(!(key = ecdsa_generate())) {
692                 fprintf(stderr, "Error during key generation!\n");
693                 return false;
694         } else
695                 fprintf(stderr, "Done.\n");
696
697         snprintf(privname, sizeof privname, "%s" SLASH "ecdsa_key.priv", mesh->confbase);
698         f = fopen(privname, "w");
699
700         if(!f)
701                 return false;
702
703 #ifdef HAVE_FCHMOD
704         fchmod(fileno(f), 0600);
705 #endif
706
707         if(!ecdsa_write_pem_private_key(key, f)) {
708                 fprintf(stderr, "Error writing private key!\n");
709                 ecdsa_free(key);
710                 fclose(f);
711                 return false;
712         }
713
714         fclose(f);
715
716
717         snprintf(pubname, sizeof pubname, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->name);
718         f = fopen(pubname, "a");
719
720         if(!f)
721                 return false;
722
723         char *pubkey = ecdsa_get_base64_public_key(key);
724         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
725         free(pubkey);
726
727         fclose(f);
728         ecdsa_free(key);
729
730         return true;
731 }
732
733 static bool meshlink_setup(meshlink_handle_t *mesh) {
734         if(mkdir(mesh->confbase, 0777) && errno != EEXIST) {
735                 fprintf(stderr, "Could not create directory %s: %s\n", mesh->confbase, strerror(errno));
736                 return false;
737         }
738
739         char filename[PATH_MAX];
740         snprintf(filename, sizeof filename, "%s" SLASH "hosts", mesh->confbase);
741
742         if(mkdir(filename, 0777) && errno != EEXIST) {
743                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
744                 return false;
745         }
746
747         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
748
749         if(!access(filename, F_OK)) {
750                 fprintf(stderr, "Configuration file %s already exists!\n", filename);
751                 return false;
752         }
753
754         FILE *f = fopen(filename, "w");
755         if(!f) {
756                 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
757                 return 1;
758         }
759
760         fprintf(f, "Name = %s\n", mesh->name);
761         fclose(f);
762
763         if(!ecdsa_keygen(mesh))
764                 return false;
765
766         check_port(mesh);
767
768         return true;
769 }
770
771 meshlink_handle_t *meshlink_open(const char *confbase, const char *name) {
772         // Validate arguments provided by the application
773
774         if(!confbase || !*confbase) {
775                 fprintf(stderr, "No confbase given!\n");
776                 return NULL;
777         }
778
779         if(!name || !*name) {
780                 fprintf(stderr, "No name given!\n");
781                 return NULL;
782         }
783
784         if(!check_id(name)) {
785                 fprintf(stderr, "Invalid name given!\n");
786                 return NULL;
787         }
788
789         meshlink_handle_t *mesh = xzalloc(sizeof *mesh);
790         mesh->confbase = xstrdup(confbase);
791         mesh->name = xstrdup(name);
792         event_loop_init(&mesh->loop);
793         mesh->loop.data = mesh;
794
795         // TODO: should be set by a function.
796         mesh->debug_level = 5;
797
798         // Check whether meshlink.conf already exists
799
800         char filename[PATH_MAX];
801         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", confbase);
802
803         if(access(filename, R_OK)) {
804                 if(errno == ENOENT) {
805                         // If not, create it
806                         meshlink_setup(mesh);
807                 } else {
808                         fprintf(stderr, "Cannot not read from %s: %s\n", filename, strerror(errno));
809                         return meshlink_close(mesh), NULL;
810                 }
811         }
812
813         // Read the configuration
814
815         init_configuration(&mesh->config);
816
817         if(!read_server_config(mesh))
818                 return meshlink_close(mesh), NULL;
819
820         // Setup up everything
821         // TODO: we should not open listening sockets yet
822
823         if(!setup_network(mesh))
824                 return meshlink_close(mesh), NULL;
825
826         return mesh;
827 }
828
829 void *meshlink_main_loop(void *arg) {
830         meshlink_handle_t *mesh = arg;
831
832         try_outgoing_connections(mesh);
833
834         main_loop(mesh);
835
836         return NULL;
837 }
838
839 bool meshlink_start(meshlink_handle_t *mesh) {
840         // TODO: open listening sockets first
841
842         // Start the main thread
843
844         if(pthread_create(&mesh->thread, NULL, meshlink_main_loop, mesh) != 0) {
845                 fprintf(stderr, "Could not start thread: %s\n", strerror(errno));
846                 memset(&mesh->thread, 0, sizeof mesh->thread);
847                 return false;
848         }
849
850         return true;
851 }
852
853 void meshlink_stop(meshlink_handle_t *mesh) {
854         // TODO: close the listening sockets to signal the main thread to shut down
855
856         // Wait for the main thread to finish
857
858         pthread_join(mesh->thread, NULL);
859 }
860
861 void meshlink_close(meshlink_handle_t *mesh) {
862         // Close and free all resources used.
863
864         close_network_connections(mesh);
865
866         logger(DEBUG_ALWAYS, LOG_NOTICE, "Terminating");
867
868         exit_configuration(&mesh->config);
869         event_loop_exit(&mesh->loop);
870 }
871
872 void meshlink_set_receive_cb(meshlink_handle_t *mesh, meshlink_receive_cb_t cb) {
873         mesh->receive_cb = cb;
874 }
875
876 void meshlink_set_node_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
877         mesh->node_status_cb = cb;
878 }
879
880 void meshlink_set_log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, meshlink_log_cb_t cb) {
881         mesh->log_cb = cb;
882         mesh->log_level = level;
883 }
884
885 bool meshlink_send(meshlink_handle_t *mesh, meshlink_node_t *destination, const void *data, unsigned int len) {
886         vpn_packet_t packet;
887         meshlink_packethdr_t *hdr = (meshlink_packethdr_t *)packet.data;
888         if (sizeof(meshlink_packethdr_t) + len > MAXSIZE) {
889                 //log something
890                 return false;
891         }
892
893         packet.probe = false;
894         memset(hdr, 0, sizeof *hdr);
895         memcpy(hdr->destination, destination->name, sizeof hdr->destination);
896         memcpy(hdr->source, mesh->self->name, sizeof hdr->source);
897
898         packet.len = sizeof *hdr + len;
899         memcpy(packet.data + sizeof *hdr, data, len);
900
901         mesh->self->in_packets++;
902         mesh->self->in_bytes += packet.len;
903         route(mesh, mesh->self, &packet);
904         return false;
905 }
906
907 meshlink_node_t *meshlink_get_node(meshlink_handle_t *mesh, const char *name) {
908         return (meshlink_node_t *)lookup_node(mesh, (char *)name); // TODO: make lookup_node() use const
909 }
910
911 size_t meshlink_get_all_nodes(meshlink_handle_t *mesh, meshlink_node_t **nodes, size_t nmemb) {
912         return 0;
913 }
914
915 char *meshlink_sign(meshlink_handle_t *mesh, const char *data, size_t len) {
916         return NULL;
917 }
918
919 bool meshlink_verify(meshlink_handle_t *mesh, meshlink_node_t *source, const char *data, size_t len, const char *signature) {
920         return false;
921 }
922
923 static bool refresh_invitation_key(meshlink_handle_t *mesh) {
924         char filename[PATH_MAX];
925
926         snprintf(filename, sizeof filename, "%s" SLASH "invitations", mesh->confbase);
927         if(mkdir(filename, 0700) && errno != EEXIST) {
928                 fprintf(stderr, "Could not create directory %s: %s\n", filename, strerror(errno));
929                 return NULL;
930         }
931
932         // Count the number of valid invitations, clean up old ones
933         DIR *dir = opendir(filename);
934         if(!dir) {
935                 fprintf(stderr, "Could not read directory %s: %s\n", filename, strerror(errno));
936                 return NULL;
937         }
938
939         errno = 0;
940         int count = 0;
941         struct dirent *ent;
942         time_t deadline = time(NULL) - 604800; // 1 week in the past
943
944         while((ent = readdir(dir))) {
945                 if(strlen(ent->d_name) != 24)
946                         continue;
947                 char invname[PATH_MAX];
948                 struct stat st;
949                 snprintf(invname, sizeof invname, "%s" SLASH "%s", filename, ent->d_name);
950                 if(!stat(invname, &st)) {
951                         if(mesh->invitation_key && deadline < st.st_mtime)
952                                 count++;
953                         else
954                                 unlink(invname);
955                 } else {
956                         fprintf(stderr, "Could not stat %s: %s\n", invname, strerror(errno));
957                         errno = 0;
958                 }
959         }
960
961         if(errno) {
962                 fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
963                 closedir(dir);
964                 return false;
965         }
966
967         closedir(dir);
968
969         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ecdsa_key.priv", mesh->confbase);
970
971         // Remove the key if there are no outstanding invitations.
972         if(!count) {
973                 unlink(filename);
974                 if(mesh->invitation_key) {
975                         ecdsa_free(mesh->invitation_key);
976                         mesh->invitation_key = NULL;
977                 }
978         }
979
980         if(mesh->invitation_key)
981                 return true;
982
983         // Create a new key if necessary.
984         FILE *f = fopen(filename, "r");
985         if(!f) {
986                 if(errno != ENOENT) {
987                         fprintf(stderr, "Could not read %s: %s\n", filename, strerror(errno));
988                         return NULL;
989                 }
990
991                 mesh->invitation_key = ecdsa_generate();
992                 if(!mesh->invitation_key) {
993                         fprintf(stderr, "Could not generate a new key!\n");
994                         return NULL;
995                 }
996                 f = fopen(filename, "w");
997                 if(!f) {
998                         fprintf(stderr, "Could not write %s: %s\n", filename, strerror(errno));
999                         return NULL;
1000                 }
1001                 chmod(filename, 0600);
1002                 ecdsa_write_pem_private_key(mesh->invitation_key, f);
1003                 fclose(f);
1004         } else {
1005                 mesh->invitation_key = ecdsa_read_pem_private_key(f);
1006                 fclose(f);
1007                 if(!mesh->invitation_key)
1008                         fprintf(stderr, "Could not read private key from %s\n", filename);
1009         }
1010
1011         return mesh->invitation_key;
1012 }
1013
1014 char *meshlink_invite(meshlink_handle_t *mesh, const char *name) {
1015         // Check validity of the new node's name
1016         if(!check_id(name)) {
1017                 fprintf(stderr, "Invalid name for node.\n");
1018                 return NULL;
1019         }
1020
1021         // Ensure no host configuration file with that name exists
1022         char filename[PATH_MAX];
1023         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, name);
1024         if(!access(filename, F_OK)) {
1025                 fprintf(stderr, "A host config file for %s already exists!\n", name);
1026                 return NULL;
1027         }
1028
1029         // Ensure no other nodes know about this name
1030         if(meshlink_get_node(mesh, name)) {
1031                 fprintf(stderr, "A node with name %s is already known!\n", name);
1032                 return NULL;
1033         }
1034
1035         if(!refresh_invitation_key(mesh))
1036                 return NULL;
1037
1038         char hash[64];
1039
1040         // Create a hash of the key.
1041         char *fingerprint = ecdsa_get_base64_public_key(mesh->invitation_key);
1042         sha512(fingerprint, strlen(fingerprint), hash);
1043         b64encode_urlsafe(hash, hash, 18);
1044
1045         // Create a random cookie for this invitation.
1046         char cookie[25];
1047         randomize(cookie, 18);
1048
1049         // Create a filename that doesn't reveal the cookie itself
1050         char buf[18 + strlen(fingerprint)];
1051         char cookiehash[64];
1052         memcpy(buf, cookie, 18);
1053         memcpy(buf + 18, fingerprint, sizeof buf - 18);
1054         sha512(buf, sizeof buf, cookiehash);
1055         b64encode_urlsafe(cookiehash, cookiehash, 18);
1056
1057         b64encode_urlsafe(cookie, cookie, 18);
1058
1059         // Create a file containing the details of the invitation.
1060         snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "%s", mesh->confbase, cookiehash);
1061         int ifd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
1062         if(!ifd) {
1063                 fprintf(stderr, "Could not create invitation file %s: %s\n", filename, strerror(errno));
1064                 return NULL;
1065         }
1066         FILE *f = fdopen(ifd, "w");
1067         if(!f)
1068                 abort();
1069
1070         // Get the local address
1071         char *address = get_my_hostname(mesh);
1072
1073         // Fill in the details.
1074         fprintf(f, "Name = %s\n", name);
1075         //if(netname)
1076         //      fprintf(f, "NetName = %s\n", netname);
1077         fprintf(f, "ConnectTo = %s\n", mesh->self->name);
1078
1079         // Copy Broadcast and Mode
1080         snprintf(filename, sizeof filename, "%s" SLASH "meshlink.conf", mesh->confbase);
1081         FILE *tc = fopen(filename,  "r");
1082         if(tc) {
1083                 char buf[1024];
1084                 while(fgets(buf, sizeof buf, tc)) {
1085                         if((!strncasecmp(buf, "Mode", 4) && strchr(" \t=", buf[4]))
1086                                         || (!strncasecmp(buf, "Broadcast", 9) && strchr(" \t=", buf[9]))) {
1087                                 fputs(buf, f);
1088                                 // Make sure there is a newline character.
1089                                 if(!strchr(buf, '\n'))
1090                                         fputc('\n', f);
1091                         }
1092                 }
1093                 fclose(tc);
1094         } else {
1095                 fprintf(stderr, "Could not create %s: %s\n", filename, strerror(errno));
1096                 return NULL;
1097         }
1098
1099         fprintf(f, "#---------------------------------------------------------------#\n");
1100         fprintf(f, "Name = %s\n", mesh->self->name);
1101
1102         snprintf(filename, sizeof filename, "%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
1103         fcopy(f, filename);
1104         fclose(f);
1105
1106         // Create an URL from the local address, key hash and cookie
1107         char *url;
1108         xasprintf(&url, "%s/%s%s", address, hash, cookie);
1109
1110         return url;
1111 }
1112
1113 bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
1114         //TODO: think of a better name for this variable, or of a different way to tokenize the invitation URL.
1115         char copy[strlen(invitation) + 1];
1116         strcpy(copy, invitation);
1117
1118         // Split the invitation URL into hostname, port, key hash and cookie.
1119
1120         char *slash = strchr(copy, '/');
1121         if(!slash)
1122                 goto invalid;
1123
1124         *slash++ = 0;
1125
1126         if(strlen(slash) != 48)
1127                 goto invalid;
1128
1129         char *address = copy;
1130         char *port = NULL;
1131         if(*address == '[') {
1132                 address++;
1133                 char *bracket = strchr(address, ']');
1134                 if(!bracket)
1135                         goto invalid;
1136                 *bracket = 0;
1137                 if(bracket[1] == ':')
1138                         port = bracket + 2;
1139         } else {
1140                 port = strchr(address, ':');
1141                 if(port)
1142                         *port++ = 0;
1143         }
1144
1145         if(!*port)
1146                 port = "655";
1147
1148         if(!b64decode(slash, mesh->hash, 18) || !b64decode(slash + 24, mesh->cookie, 18))
1149                 goto invalid;
1150
1151         // Generate a throw-away key for the invitation.
1152         ecdsa_t *key = ecdsa_generate();
1153         if(!key)
1154                 return false;
1155
1156         char *b64key = ecdsa_get_base64_public_key(key);
1157
1158         // Connect to the meshlink daemon mentioned in the URL.
1159         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
1160         if(!ai)
1161                 return false;
1162
1163         mesh->sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1164         if(mesh->sock <= 0) {
1165                 fprintf(stderr, "Could not open socket: %s\n", strerror(errno));
1166                 return false;
1167         }
1168
1169         if(connect(mesh->sock, ai->ai_addr, ai->ai_addrlen)) {
1170                 fprintf(stderr, "Could not connect to %s port %s: %s\n", address, port, strerror(errno));
1171                 closesocket(mesh->sock);
1172                 return false;
1173         }
1174
1175         fprintf(stderr, "Connected to %s port %s...\n", address, port);
1176
1177         // Tell him we have an invitation, and give him our throw-away key.
1178
1179         mesh->blen = 0;
1180
1181         if(!sendline(mesh->sock, "0 ?%s %d.%d", b64key, PROT_MAJOR, 1)) {
1182                 fprintf(stderr, "Error sending request to %s port %s: %s\n", address, port, strerror(errno));
1183                 closesocket(mesh->sock);
1184                 return false;
1185         }
1186
1187         char hisname[4096] = "";
1188         int code, hismajor, hisminor = 0;
1189
1190         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) {
1191                 fprintf(stderr, "Cannot read greeting from peer\n");
1192                 closesocket(mesh->sock);
1193                 return false;
1194         }
1195
1196         // Check if the hash of the key he gave us matches the hash in the URL.
1197         char *fingerprint = mesh->line + 2;
1198         char hishash[64];
1199         if(sha512(fingerprint, strlen(fingerprint), hishash)) {
1200                 fprintf(stderr, "Could not create hash\n%s\n", mesh->line + 2);
1201                 return false;
1202         }
1203         if(memcmp(hishash, mesh->hash, 18)) {
1204                 fprintf(stderr, "Peer has an invalid key!\n%s\n", mesh->line + 2);
1205                 return false;
1206
1207         }
1208
1209         ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
1210         if(!hiskey)
1211                 return false;
1212
1213         // Start an SPTPS session
1214         if(!sptps_start(&mesh->sptps, mesh, true, false, key, hiskey, "meshlink invitation", 15, invitation_send, invitation_receive))
1215                 return false;
1216
1217         // Feed rest of input buffer to SPTPS
1218         if(!sptps_receive_data(&mesh->sptps, mesh->buffer, mesh->blen))
1219                 return false;
1220
1221         int len;
1222
1223         while((len = recv(mesh->sock, mesh->line, sizeof mesh->line, 0))) {
1224                 if(len < 0) {
1225                         if(errno == EINTR)
1226                                 continue;
1227                         fprintf(stderr, "Error reading data from %s port %s: %s\n", address, port, strerror(errno));
1228                         return false;
1229                 }
1230
1231                 if(!sptps_receive_data(&mesh->sptps, mesh->line, len))
1232                         return false;
1233         }
1234
1235         sptps_stop(&mesh->sptps);
1236         ecdsa_free(hiskey);
1237         ecdsa_free(key);
1238         closesocket(mesh->sock);
1239
1240         if(!mesh->success) {
1241                 fprintf(stderr, "Connection closed by peer, invitation cancelled.\n");
1242                 return false;
1243         }
1244
1245         return true;
1246
1247 invalid:
1248         fprintf(stderr, "Invalid invitation URL.\n");
1249         return false;
1250 }
1251
1252 char *meshlink_export(meshlink_handle_t *mesh) {
1253         return NULL;
1254 }
1255
1256 bool meshlink_import(meshlink_handle_t *mesh, const char *data) {
1257         return false;
1258 }
1259
1260 void meshlink_blacklist(meshlink_handle_t *mesh, meshlink_node_t *node) {
1261 }
1262
1263 static void __attribute__((constructor)) meshlink_init(void) {
1264         crypto_init();
1265 }
1266
1267 static void __attribute__((destructor)) meshlink_exit(void) {
1268         crypto_exit();
1269 }