]> git.meshlink.io Git - meshlink/blob - src/tincctl.c
Remove everything GPL that is not copyright Guus Sliepen, update copyright statements.
[meshlink] / src / tincctl.c
1 /*
2     tincctl.c -- Controlling a running tincd
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
20 #include "system.h"
21
22 #include <getopt.h>
23
24 #ifdef HAVE_READLINE
25 #include "readline/readline.h"
26 #include "readline/history.h"
27 #endif
28
29 #include "xalloc.h"
30 #include "protocol.h"
31 #include "control_common.h"
32 #include "crypto.h"
33 #include "ecdsagen.h"
34 #include "info.h"
35 #include "invitation.h"
36 #include "rsagen.h"
37 #include "utils.h"
38 #include "tincctl.h"
39 #include "top.h"
40
41 #ifndef MSG_NOSIGNAL
42 #define MSG_NOSIGNAL 0
43 #endif
44
45 static char **orig_argv;
46 static int orig_argc;
47
48 /* If nonzero, display usage information and exit. */
49 static bool show_help = false;
50
51 /* If nonzero, print the version on standard output and exit.  */
52 static bool show_version = false;
53
54 static char *name = NULL;
55 static char controlcookie[1025];
56 char *tinc_conf = NULL;
57 char *hosts_dir = NULL;
58 struct timeval now;
59
60 // Horrible global variables...
61 static int pid = 0;
62 int fd = -1;
63 char line[4096];
64 static int code;
65 static int req;
66 static int result;
67 static bool force = false;
68 bool tty = true;
69 bool confbasegiven = false;
70 bool netnamegiven = false;
71 char *scriptinterpreter = NULL;
72 char *scriptextension = "";
73 static char *prompt;
74
75 static struct option const long_options[] = {
76         {"config", required_argument, NULL, 'c'},
77         {"net", required_argument, NULL, 'n'},
78         {"help", no_argument, NULL, 1},
79         {"version", no_argument, NULL, 2},
80         {"pidfile", required_argument, NULL, 3},
81         {"force", no_argument, NULL, 4},
82         {NULL, 0, NULL, 0}
83 };
84
85 static void version(void) {
86         printf("%s version %s (built %s %s, protocol %d.%d)\n", PACKAGE,
87                    VERSION, __DATE__, __TIME__, PROT_MAJOR, PROT_MINOR);
88         printf("Copyright (C) 1998-2012 Ivo Timmermans, Guus Sliepen and others.\n"
89                         "See the AUTHORS file for a complete list.\n\n"
90                         "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
91                         "and you are welcome to redistribute it under certain conditions;\n"
92                         "see the file COPYING for details.\n");
93 }
94
95 static void usage(bool status) {
96         if(status) {
97                 fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
98         } else {
99                 printf("Usage: %s [options] command\n\n", program_name);
100                 printf("Valid options are:\n"
101                                 "  -c, --config=DIR        Read configuration options from DIR.\n"
102                                 "  -n, --net=NETNAME       Connect to net NETNAME.\n"
103                                 "      --pidfile=FILENAME  Read control cookie from FILENAME.\n"
104                                 "      --help              Display this help and exit.\n"
105                                 "      --version           Output version information and exit.\n"
106                                 "\n"
107                                 "Valid commands are:\n"
108                                 "  init [name]                Create initial configuration files.\n"
109                                 "  get VARIABLE               Print current value of VARIABLE\n"
110                                 "  set VARIABLE VALUE         Set VARIABLE to VALUE\n"
111                                 "  add VARIABLE VALUE         Add VARIABLE with the given VALUE\n"
112                                 "  del VARIABLE [VALUE]       Remove VARIABLE [only ones with watching VALUE]\n"
113                                 "  start [tincd options]      Start tincd.\n"
114                                 "  stop                       Stop tincd.\n"
115                                 "  restart [tincd options]    Restart tincd.\n"
116                                 "  reload                     Partially reload configuration of running tincd.\n"
117                                 "  pid                        Show PID of currently running tincd.\n"
118                                 "  generate-keys [bits]       Generate new RSA and ECDSA public/private keypairs.\n"
119                                 "  generate-rsa-keys [bits]   Generate a new RSA public/private keypair.\n"
120                                 "  generate-ecdsa-keys        Generate a new ECDSA public/private keypair.\n"
121                                 "  dump                       Dump a list of one of the following things:\n"
122                                 "    [reachable] nodes        - all known nodes in the VPN\n"
123                                 "    edges                    - all known connections in the VPN\n"
124                                 "    subnets                  - all known subnets in the VPN\n"
125                                 "    connections              - all meta connections with ourself\n"
126                                 "    [di]graph                - graph of the VPN in dotty format\n"
127                                 "  info NODE|SUBNET|ADDRESS   Give information about a particular NODE, SUBNET or ADDRESS.\n"
128                                 "  purge                      Purge unreachable nodes\n"
129                                 "  debug N                    Set debug level\n"
130                                 "  retry                      Retry all outgoing connections\n"
131                                 "  disconnect NODE            Close meta connection with NODE\n"
132 #ifdef HAVE_CURSES
133                                 "  top                        Show real-time statistics\n"
134 #endif
135                                 "  pcap [snaplen]             Dump traffic in pcap format [up to snaplen bytes per packet]\n"
136                                 "  log [level]                Dump log output [up to the specified level]\n"
137                                 "  export                     Export host configuration of local node to standard output\n"
138                                 "  export-all                 Export all host configuration files to standard output\n"
139                                 "  import [--force]           Import host configuration file(s) from standard input\n"
140                                 "  exchange [--force]         Same as export followed by import\n"
141                                 "  exchange-all [--force]     Same as export-all followed by import\n"
142                                 "  invite NODE [...]          Generate an invitation for NODE\n"
143                                 "  join INVITATION            Join a VPN using an INVITIATION\n"
144                                 "  network [NETNAME]          List all known networks, or switch to the one named NETNAME.\n"
145                                 "\n");
146                 printf("Report bugs to bugs@meshlink.io.\n");
147         }
148 }
149
150 static bool parse_options(int argc, char **argv) {
151         int r;
152         int option_index = 0;
153
154         while((r = getopt_long(argc, argv, "+c:n:", long_options, &option_index)) != EOF) {
155                 switch (r) {
156                         case 0:   /* long option */
157                                 break;
158
159                         case 'c': /* config file */
160                                 confbase = xstrdup(optarg);
161                                 confbasegiven = true;
162                                 break;
163
164                         case 'n': /* net name given */
165                                 netname = xstrdup(optarg);
166                                 break;
167
168                         case 1:   /* show help */
169                                 show_help = true;
170                                 break;
171
172                         case 2:   /* show version */
173                                 show_version = true;
174                                 break;
175
176                         case 3:   /* open control socket here */
177                                 pidfilename = xstrdup(optarg);
178                                 break;
179
180                         case 4:   /* force */
181                                 force = true;
182                                 break;
183
184                         case '?': /* wrong options */
185                                 usage(true);
186                                 return false;
187
188                         default:
189                                 break;
190                 }
191         }
192
193         if(!netname && (netname = getenv("NETNAME")))
194                 netname = xstrdup(netname);
195
196         /* netname "." is special: a "top-level name" */
197
198         if(netname && (!*netname || !strcmp(netname, "."))) {
199                 free(netname);
200                 netname = NULL;
201         }
202
203         if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
204                 fprintf(stderr, "Invalid character in netname!\n");
205                 return false;
206         }
207
208         return true;
209 }
210
211 /* Open a file with the desired permissions, minus the umask.
212    Also, if we want to create an executable file, we call fchmod()
213    to set the executable bits. */
214
215 FILE *fopenmask(const char *filename, const char *mode, mode_t perms) {
216         mode_t mask = umask(0);
217         perms &= ~mask;
218         umask(~perms);
219         FILE *f = fopen(filename, mode);
220 #ifdef HAVE_FCHMOD
221         if((perms & 0444) && f)
222                 fchmod(fileno(f), perms);
223 #endif
224         umask(mask);
225         return f;
226 }
227
228 static void disable_old_keys(const char *filename, const char *what) {
229         char tmpfile[PATH_MAX] = "";
230         char buf[1024];
231         bool disabled = false;
232         bool block = false;
233         bool error = false;
234         FILE *r, *w;
235
236         r = fopen(filename, "r");
237         if(!r)
238                 return;
239
240         snprintf(tmpfile, sizeof tmpfile, "%s.tmp", filename);
241
242         struct stat st = {.st_mode = 0600};
243         fstat(fileno(r), &st);
244         w = fopenmask(tmpfile, "w", st.st_mode);
245
246         while(fgets(buf, sizeof buf, r)) {
247                 if(!block && !strncmp(buf, "-----BEGIN ", 11)) {
248                         if((strstr(buf, " EC ") && strstr(what, "ECDSA")) || (strstr(buf, " RSA ") && strstr(what, "RSA"))) {
249                                 disabled = true;
250                                 block = true;
251                         }
252                 }
253
254                 bool ecdsapubkey = !strncasecmp(buf, "ECDSAPublicKey", 14) && strchr(" \t=", buf[14]) && strstr(what, "ECDSA");
255
256                 if(ecdsapubkey)
257                         disabled = true;
258
259                 if(w) {
260                         if(block || ecdsapubkey)
261                                 fputc('#', w);
262                         if(fputs(buf, w) < 0) {
263                                 error = true;
264                                 break;
265                         }
266                 }
267
268                 if(block && !strncmp(buf, "-----END ", 9))
269                         block = false;
270         }
271
272         if(w)
273                 if(fclose(w) < 0)
274                         error = true;
275         if(ferror(r) || fclose(r) < 0)
276                 error = true;
277
278         if(disabled) {
279                 if(!w || error) {
280                         fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
281                         if(w)
282                                 unlink(tmpfile);
283                         return;
284                 }
285
286 #ifdef HAVE_MINGW
287                 // We cannot atomically replace files on Windows.
288                 char bakfile[PATH_MAX] = "";
289                 snprintf(bakfile, sizeof bakfile, "%s.bak", filename);
290                 if(rename(filename, bakfile) || rename(tmpfile, filename)) {
291                         rename(bakfile, filename);
292 #else
293                 if(rename(tmpfile, filename)) {
294 #endif
295                         fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
296                 } else  {
297 #ifdef HAVE_MINGW
298                         unlink(bakfile);
299 #endif
300                         fprintf(stderr, "Warning: old key(s) found and disabled.\n");
301                 }
302         }
303
304         unlink(tmpfile);
305 }
306
307 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask, mode_t perms) {
308         FILE *r;
309         char *directory;
310         char buf[PATH_MAX];
311         char buf2[PATH_MAX];
312
313         /* Check stdin and stdout */
314         if(ask && tty) {
315                 /* Ask for a file and/or directory name. */
316                 fprintf(stderr, "Please enter a file to save %s to [%s]: ", what, filename);
317
318                 if(fgets(buf, sizeof buf, stdin) == NULL) {
319                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
320                         return NULL;
321                 }
322
323                 size_t len = strlen(buf);
324                 if(len)
325                         buf[--len] = 0;
326
327                 if(len)
328                         filename = buf;
329         }
330
331 #ifdef HAVE_MINGW
332         if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
333 #else
334         if(filename[0] != '/') {
335 #endif
336                 /* The directory is a relative path or a filename. */
337                 directory = get_current_dir_name();
338                 snprintf(buf2, sizeof buf2, "%s" SLASH "%s", directory, filename);
339                 filename = buf2;
340         }
341
342         disable_old_keys(filename, what);
343
344         /* Open it first to keep the inode busy */
345
346         r = fopenmask(filename, mode, perms);
347
348         if(!r) {
349                 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
350                 return NULL;
351         }
352
353         return r;
354 }
355
356 /*
357   Generate a public/private ECDSA keypair, and ask for a file to store
358   them in.
359 */
360 static bool ecdsa_keygen(bool ask) {
361         ecdsa_t *key;
362         FILE *f;
363         char *pubname, *privname;
364
365         fprintf(stderr, "Generating ECDSA keypair:\n");
366
367         if(!(key = ecdsa_generate())) {
368                 fprintf(stderr, "Error during key generation!\n");
369                 return false;
370         } else
371                 fprintf(stderr, "Done.\n");
372
373         xasprintf(&privname, "%s" SLASH "ecdsa_key.priv", confbase);
374         f = ask_and_open(privname, "private ECDSA key", "a", ask, 0600);
375         free(privname);
376
377         if(!f)
378                 return false;
379
380         if(!ecdsa_write_pem_private_key(key, f)) {
381                 fprintf(stderr, "Error writing private key!\n");
382                 ecdsa_free(key);
383                 fclose(f);
384                 return false;
385         }
386
387         fclose(f);
388
389         if(name)
390                 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
391         else
392                 xasprintf(&pubname, "%s" SLASH "ecdsa_key.pub", confbase);
393
394         f = ask_and_open(pubname, "public ECDSA key", "a", ask, 0666);
395         free(pubname);
396
397         if(!f)
398                 return false;
399
400         char *pubkey = ecdsa_get_base64_public_key(key);
401         fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
402         free(pubkey);
403
404         fclose(f);
405         ecdsa_free(key);
406
407         return true;
408 }
409
410 /*
411   Generate a public/private RSA keypair, and ask for a file to store
412   them in.
413 */
414 static bool rsa_keygen(int bits, bool ask) {
415         rsa_t *key;
416         FILE *f;
417         char *pubname, *privname;
418
419         fprintf(stderr, "Generating %d bits keys:\n", bits);
420
421         if(!(key = rsa_generate(bits, 0x10001))) {
422                 fprintf(stderr, "Error during key generation!\n");
423                 return false;
424         } else
425                 fprintf(stderr, "Done.\n");
426
427         xasprintf(&privname, "%s" SLASH "rsa_key.priv", confbase);
428         f = ask_and_open(privname, "private RSA key", "a", ask, 0600);
429         free(privname);
430
431         if(!f)
432                 return false;
433
434         if(!rsa_write_pem_private_key(key, f)) {
435                 fprintf(stderr, "Error writing private key!\n");
436                 fclose(f);
437                 rsa_free(key);
438                 return false;
439         }
440
441         fclose(f);
442
443         if(name)
444                 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
445         else
446                 xasprintf(&pubname, "%s" SLASH "rsa_key.pub", confbase);
447
448         f = ask_and_open(pubname, "public RSA key", "a", ask, 0666);
449         free(pubname);
450
451         if(!f)
452                 return false;
453
454         if(!rsa_write_pem_public_key(key, f)) {
455                 fprintf(stderr, "Error writing public key!\n");
456                 fclose(f);
457                 rsa_free(key);
458                 return false;
459         }
460
461         fclose(f);
462         rsa_free(key);
463
464         return true;
465 }
466
467 char buffer[4096];
468 size_t blen = 0;
469
470 bool recvline(int fd, char *line, size_t len) {
471         char *newline = NULL;
472
473         if(!fd)
474                 abort();
475
476         while(!(newline = memchr(buffer, '\n', blen))) {
477                 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
478                 if(result == -1 && errno == EINTR)
479                         continue;
480                 else if(result <= 0)
481                         return false;
482                 blen += result;
483         }
484
485         if(newline - buffer >= len)
486                 return false;
487
488         len = newline - buffer;
489
490         memcpy(line, buffer, len);
491         line[len] = 0;
492         memmove(buffer, newline + 1, blen - len - 1);
493         blen -= len + 1;
494
495         return true;
496 }
497
498 bool recvdata(int fd, char *data, size_t len) {
499         if(len == -1)
500                 len = blen;
501
502         while(blen < len) {
503                 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
504                 if(result == -1 && errno == EINTR)
505                         continue;
506                 else if(result <= 0)
507                         return false;
508                 blen += result;
509         }
510
511         memcpy(data, buffer, len);
512         memmove(buffer, buffer + len, blen - len);
513         blen -= len;
514
515         return true;
516 }
517
518 bool sendline(int fd, char *format, ...) {
519         static char buffer[4096];
520         char *p = buffer;
521         int blen = 0;
522         va_list ap;
523
524         va_start(ap, format);
525         blen = vsnprintf(buffer, sizeof buffer, format, ap);
526         va_end(ap);
527
528         if(blen < 1 || blen >= sizeof buffer)
529                 return false;
530
531         buffer[blen] = '\n';
532         blen++;
533
534         while(blen) {
535                 int result = send(fd, p, blen, MSG_NOSIGNAL);
536                 if(result == -1 && errno == EINTR)
537                         continue;
538                 else if(result <= 0)
539                         return false;
540                 p += result;
541                 blen -= result;
542         }
543
544         return true;
545 }
546
547 static void pcap(int fd, FILE *out, int snaplen) {
548         sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
549         char data[9018];
550
551         struct {
552                 uint32_t magic;
553                 uint16_t major;
554                 uint16_t minor;
555                 uint32_t tz_offset;
556                 uint32_t tz_accuracy;
557                 uint32_t snaplen;
558                 uint32_t ll_type;
559         } header = {
560                 0xa1b2c3d4,
561                 2, 4,
562                 0, 0,
563                 snaplen ?: sizeof data,
564                 1,
565         };
566
567         struct {
568                 uint32_t tv_sec;
569                 uint32_t tv_usec;
570                 uint32_t len;
571                 uint32_t origlen;
572         } packet;
573
574         struct timeval tv;
575
576         fwrite(&header, sizeof header, 1, out);
577         fflush(out);
578
579         char line[32];
580         while(recvline(fd, line, sizeof line)) {
581                 int code, req, len;
582                 int n = sscanf(line, "%d %d %d", &code, &req, &len);
583                 gettimeofday(&tv, NULL);
584                 if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || len > sizeof data)
585                         break;
586                 if(!recvdata(fd, data, len))
587                         break;
588                 packet.tv_sec = tv.tv_sec;
589                 packet.tv_usec = tv.tv_usec;
590                 packet.len = len;
591                 packet.origlen = len;
592                 fwrite(&packet, sizeof packet, 1, out);
593                 fwrite(data, len, 1, out);
594                 fflush(out);
595         }
596 }
597
598 static void logcontrol(int fd, FILE *out, int level) {
599         sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
600         char data[1024];
601         char line[32];
602
603         while(recvline(fd, line, sizeof line)) {
604                 int code, req, len;
605                 int n = sscanf(line, "%d %d %d", &code, &req, &len);
606                 if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || len > sizeof data)
607                         break;
608                 if(!recvdata(fd, data, len))
609                         break;
610                 fwrite(data, len, 1, out);
611                 fputc('\n', out);
612                 fflush(out);
613         }
614 }
615
616 #ifdef HAVE_MINGW
617 static bool remove_service(void) {
618         SC_HANDLE manager = NULL;
619         SC_HANDLE service = NULL;
620         SERVICE_STATUS status = {0};
621
622         manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
623         if(!manager) {
624                 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
625                 return false;
626         }
627
628         service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
629
630         if(!service) {
631                 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
632                 return false;
633         }
634
635         if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
636                 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
637         else
638                 fprintf(stderr, "%s service stopped\n", identname);
639
640         if(!DeleteService(service)) {
641                 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
642                 return false;
643         }
644
645         fprintf(stderr, "%s service removed\n", identname);
646
647         return true;
648 }
649 #endif
650
651 bool connect_tincd(bool verbose) {
652         if(fd >= 0) {
653                 fd_set r;
654                 FD_ZERO(&r);
655                 FD_SET(fd, &r);
656                 struct timeval tv = {0, 0};
657                 if(select(fd + 1, &r, NULL, NULL, &tv)) {
658                         fprintf(stderr, "Previous connection to tincd lost, reconnecting.\n");
659                         close(fd);
660                         fd = -1;
661                 } else {
662                         return true;
663                 }
664         }
665
666         FILE *f = fopen(pidfilename, "r");
667         if(!f) {
668                 if(verbose)
669                         fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
670                 return false;
671         }
672
673         char host[129];
674         char port[129];
675
676         if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
677                 if(verbose)
678                         fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
679                 fclose(f);
680                 return false;
681         }
682
683         fclose(f);
684
685 #ifndef HAVE_MINGW
686         struct sockaddr_un sa;
687         sa.sun_family = AF_UNIX;
688         strncpy(sa.sun_path, unixsocketname, sizeof sa.sun_path);
689
690         fd = socket(AF_UNIX, SOCK_STREAM, 0);
691         if(fd < 0) {
692                 if(verbose)
693                         fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
694                 return false;
695         }
696
697         if(connect(fd, (struct sockaddr *)&sa, sizeof sa) < 0) {
698                 if(verbose)
699                         fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
700                 close(fd);
701                 fd = -1;
702                 return false;
703         }
704 #else
705         struct addrinfo hints = {
706                 .ai_family = AF_UNSPEC,
707                 .ai_socktype = SOCK_STREAM,
708                 .ai_protocol = IPPROTO_TCP,
709                 .ai_flags = 0,
710         };
711
712         struct addrinfo *res = NULL;
713
714         if(getaddrinfo(host, port, &hints, &res) || !res) {
715                 if(verbose)
716                         fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
717                 return false;
718         }
719
720         fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
721         if(fd < 0) {
722                 if(verbose)
723                         fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
724                 return false;
725         }
726
727 #ifdef HAVE_MINGW
728         unsigned long arg = 0;
729
730         if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
731                 if(verbose)
732                         fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
733         }
734 #endif
735
736         if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
737                 if(verbose)
738                         fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
739                 close(fd);
740                 fd = -1;
741                 return false;
742         }
743
744         freeaddrinfo(res);
745 #endif
746
747 #ifdef SO_NOSIGPIPE
748         static const int one = 1;
749         setsockopt(c, SOL_SOCKET, SO_NOSIGPIPE, (void *)&one, sizeof one);
750 #endif
751
752         char data[4096];
753         int version;
754
755         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
756                 if(verbose)
757                         fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
758                 close(fd);
759                 fd = -1;
760                 return false;
761         }
762
763         sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
764
765         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
766                 if(verbose)
767                         fprintf(stderr, "Could not fully establish control socket connection\n");
768                 close(fd);
769                 fd = -1;
770                 return false;
771         }
772
773         return true;
774 }
775
776
777 static int cmd_start(int argc, char *argv[]) {
778         if(connect_tincd(false)) {
779                 if(netname)
780                         fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
781                 else
782                         fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
783                 return 0;
784         }
785
786         char *c;
787         char *slash = strrchr(program_name, '/');
788
789 #ifdef HAVE_MINGW
790         if ((c = strrchr(program_name, '\\')) > slash)
791                 slash = c;
792 #endif
793
794         if (slash++)
795                 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
796         else
797                 c = "tincd";
798
799         int nargc = 0;
800         char **nargv = xzalloc((optind + argc) * sizeof *nargv);
801
802         nargv[nargc++] = c;
803         for(int i = 1; i < optind; i++)
804                 nargv[nargc++] = orig_argv[i];
805         for(int i = 1; i < argc; i++)
806                 nargv[nargc++] = argv[i];
807
808 #ifdef HAVE_MINGW
809         execvp(c, nargv);
810         fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
811         return 1;
812 #else
813         pid_t pid = fork();
814         if(pid == -1) {
815                 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
816                 free(nargv);
817                 return 1;
818         }
819
820         if(!pid)
821                 exit(execvp(c, nargv));
822
823         free(nargv);
824
825         int status = -1, result;
826 #ifdef SIGINT
827         signal(SIGINT, SIG_IGN);
828 #endif
829         result = waitpid(pid, &status, 0);
830 #ifdef SIGINT
831         signal(SIGINT, SIG_DFL);
832 #endif
833
834         if(result != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
835                 fprintf(stderr, "Error starting %s\n", c);
836                 return 1;
837         }
838
839         return 0;
840 #endif
841 }
842
843 static int cmd_stop(int argc, char *argv[]) {
844         if(argc > 1) {
845                 fprintf(stderr, "Too many arguments!\n");
846                 return 1;
847         }
848
849 #ifndef HAVE_MINGW
850         if(!connect_tincd(true)) {
851                 if(pid) {
852                         if(kill(pid, SIGTERM)) {
853                                 fprintf(stderr, "Could not send TERM signal to process with PID %u: %s\n", pid, strerror(errno));
854                                 return 1;
855                         }
856
857                         fprintf(stderr, "Sent TERM signal to process with PID %u.\n", pid);
858                         waitpid(pid, NULL, 0);
859                         return 0;
860                 }
861
862                 return 1;
863         }
864
865         sendline(fd, "%d %d", CONTROL, REQ_STOP);
866
867         while(recvline(fd, line, sizeof line)) {
868                 // Wait for tincd to close the connection...
869         }
870 #else
871         if(!remove_service())
872                 return 1;
873 #endif
874         close(fd);
875         pid = 0;
876         fd = -1;
877
878         return 0;
879 }
880
881 static int cmd_restart(int argc, char *argv[]) {
882         cmd_stop(1, argv);
883         return cmd_start(argc, argv);
884 }
885
886 static int cmd_reload(int argc, char *argv[]) {
887         if(argc > 1) {
888                 fprintf(stderr, "Too many arguments!\n");
889                 return 1;
890         }
891
892         if(!connect_tincd(true))
893                 return 1;
894
895         sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
896         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RELOAD || result) {
897                 fprintf(stderr, "Could not reload configuration.\n");
898                 return 1;
899         }
900
901         return 0;
902
903 }
904
905 static int cmd_dump(int argc, char *argv[]) {
906         bool only_reachable = false;
907
908         if(argc > 2 && !strcasecmp(argv[1], "reachable")) {
909                 if(strcasecmp(argv[2], "nodes")) {
910                         fprintf(stderr, "`reachable' only supported for nodes.\n");
911                         usage(true);
912                         return 1;
913                 }
914                 only_reachable = true;
915                 argv++;
916                 argc--;
917         }
918
919         if(argc != 2) {
920                 fprintf(stderr, "Invalid number of arguments.\n");
921                 usage(true);
922                 return 1;
923         }
924
925         if(!connect_tincd(true))
926                 return 1;
927
928         int do_graph = 0;
929
930         if(!strcasecmp(argv[1], "nodes"))
931                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
932         else if(!strcasecmp(argv[1], "edges"))
933                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
934         else if(!strcasecmp(argv[1], "subnets"))
935                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
936         else if(!strcasecmp(argv[1], "connections"))
937                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
938         else if(!strcasecmp(argv[1], "graph")) {
939                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
940                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
941                 do_graph = 1;
942         } else if(!strcasecmp(argv[1], "digraph")) {
943                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
944                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
945                 do_graph = 2;
946         } else {
947                 fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
948                 usage(true);
949                 return 1;
950         }
951
952         if(do_graph == 1)
953                 printf("graph {\n");
954         else if(do_graph == 2)
955                 printf("digraph {\n");
956
957         while(recvline(fd, line, sizeof line)) {
958                 char node1[4096], node2[4096];
959                 int n = sscanf(line, "%d %d %s %s", &code, &req, node1, node2);
960                 if(n == 2) {
961                         if(do_graph && req == REQ_DUMP_NODES)
962                                 continue;
963                         else {
964                                 if(do_graph)
965                                         printf("}\n");
966                                 return 0;
967                         }
968                 }
969                 if(n < 2)
970                         break;
971
972                 char node[4096];
973                 char from[4096];
974                 char to[4096];
975                 char subnet[4096];
976                 char host[4096];
977                 char port[4096];
978                 char via[4096];
979                 char nexthop[4096];
980                 int cipher, digest, maclength, compression, distance, socket, weight;
981                 short int pmtu, minmtu, maxmtu;
982                 unsigned int options, status_int;
983                 node_status_t status;
984                 long int last_state_change;
985
986                 switch(req) {
987                         case REQ_DUMP_NODES: {
988                                 int n = sscanf(line, "%*d %*d %s %s port %s %d %d %d %d %x %x %s %s %d %hd %hd %hd %ld", node, host, port, &cipher, &digest, &maclength, &compression, &options, &status_int, nexthop, via, &distance, &pmtu, &minmtu, &maxmtu, &last_state_change);
989                                 if(n != 16) {
990                                         fprintf(stderr, "Unable to parse node dump from tincd: %s\n", line);
991                                         return 1;
992                                 }
993
994                                 memcpy(&status, &status_int, sizeof status);
995
996                                 if(do_graph) {
997                                         const char *color = "black";
998                                         if(!strcmp(host, "MYSELF"))
999                                                 color = "green";
1000                                         else if(!status.reachable)
1001                                                 color = "red";
1002                                         else if(strcmp(via, node))
1003                                                 color = "orange";
1004                                         else if(!status.validkey)
1005                                                 color = "black";
1006                                         else if(minmtu > 0)
1007                                                 color = "green";
1008                                         printf(" %s [label = \"%s\", color = \"%s\"%s];\n", node, node, color, strcmp(host, "MYSELF") ? "" : ", style = \"filled\"");
1009                                 } else {
1010                                         if(only_reachable && !status.reachable)
1011                                                 continue;
1012                                         printf("%s at %s port %s cipher %d digest %d maclength %d compression %d options %x status %04x nexthop %s via %s distance %d pmtu %hd (min %hd max %hd)\n",
1013                                                         node, host, port, cipher, digest, maclength, compression, options, status_int, nexthop, via, distance, pmtu, minmtu, maxmtu);
1014                                 }
1015                         } break;
1016
1017                         case REQ_DUMP_EDGES: {
1018                                 int n = sscanf(line, "%*d %*d %s %s %s port %s %x %d", from, to, host, port, &options, &weight);
1019                                 if(n != 6) {
1020                                         fprintf(stderr, "Unable to parse edge dump from tincd.\n");
1021                                         return 1;
1022                                 }
1023
1024                                 if(do_graph) {
1025                                         float w = 1 + 65536.0 / weight;
1026                                         if(do_graph == 1 && strcmp(node1, node2) > 0)
1027                                                 printf(" %s -- %s [w = %f, weight = %f];\n", node1, node2, w, w);
1028                                         else if(do_graph == 2)
1029                                                 printf(" %s -> %s [w = %f, weight = %f];\n", node1, node2, w, w);
1030                                 } else {
1031                                         printf("%s to %s at %s port %s options %x weight %d\n", from, to, host, port, options, weight);
1032                                 }
1033                         } break;
1034
1035                         case REQ_DUMP_SUBNETS: {
1036                                 int n = sscanf(line, "%*d %*d %s %s", subnet, node);
1037                                 if(n != 2) {
1038                                         fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
1039                                         return 1;
1040                                 }
1041                                 printf("%s owner %s\n", strip_weight(subnet), node);
1042                         } break;
1043
1044                         case REQ_DUMP_CONNECTIONS: {
1045                                 int n = sscanf(line, "%*d %*d %s %s port %s %x %d %x", node, host, port, &options, &socket, &status_int);
1046                                 if(n != 6) {
1047                                         fprintf(stderr, "Unable to parse connection dump from tincd.\n");
1048                                         return 1;
1049                                 }
1050                                 printf("%s at %s port %s options %x socket %d status %x\n", node, host, port, options, socket, status_int);
1051                         } break;
1052
1053                         default:
1054                                 fprintf(stderr, "Unable to parse dump from tincd.\n");
1055                                 return 1;
1056                 }
1057         }
1058
1059         fprintf(stderr, "Error receiving dump.\n");
1060         return 1;
1061 }
1062
1063 static int cmd_purge(int argc, char *argv[]) {
1064         if(argc > 1) {
1065                 fprintf(stderr, "Too many arguments!\n");
1066                 return 1;
1067         }
1068
1069         if(!connect_tincd(true))
1070                 return 1;
1071
1072         sendline(fd, "%d %d", CONTROL, REQ_PURGE);
1073         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_PURGE || result) {
1074                 fprintf(stderr, "Could not purge old information.\n");
1075                 return 1;
1076         }
1077
1078         return 0;
1079 }
1080
1081 static int cmd_debug(int argc, char *argv[]) {
1082         if(argc != 2) {
1083                 fprintf(stderr, "Invalid number of arguments.\n");
1084                 return 1;
1085         }
1086
1087         if(!connect_tincd(true))
1088                 return 1;
1089
1090         int debuglevel = atoi(argv[1]);
1091         int origlevel;
1092
1093         sendline(fd, "%d %d %d", CONTROL, REQ_SET_DEBUG, debuglevel);
1094         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &origlevel) != 3 || code != CONTROL || req != REQ_SET_DEBUG) {
1095                 fprintf(stderr, "Could not set debug level.\n");
1096                 return 1;
1097         }
1098
1099         fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
1100         return 0;
1101 }
1102
1103 static int cmd_retry(int argc, char *argv[]) {
1104         if(argc > 1) {
1105                 fprintf(stderr, "Too many arguments!\n");
1106                 return 1;
1107         }
1108
1109         if(!connect_tincd(true))
1110                 return 1;
1111
1112         sendline(fd, "%d %d", CONTROL, REQ_RETRY);
1113         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RETRY || result) {
1114                 fprintf(stderr, "Could not retry outgoing connections.\n");
1115                 return 1;
1116         }
1117
1118         return 0;
1119 }
1120
1121 static int cmd_connect(int argc, char *argv[]) {
1122         if(argc != 2) {
1123                 fprintf(stderr, "Invalid number of arguments.\n");
1124                 return 1;
1125         }
1126
1127         if(!check_id(argv[1])) {
1128                 fprintf(stderr, "Invalid name for node.\n");
1129                 return 1;
1130         }
1131
1132         if(!connect_tincd(true))
1133                 return 1;
1134
1135         sendline(fd, "%d %d %s", CONTROL, REQ_CONNECT, argv[1]);
1136         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_CONNECT || result) {
1137                 fprintf(stderr, "Could not connect to %s.\n", argv[1]);
1138                 return 1;
1139         }
1140
1141         return 0;
1142 }
1143
1144 static int cmd_disconnect(int argc, char *argv[]) {
1145         if(argc != 2) {
1146                 fprintf(stderr, "Invalid number of arguments.\n");
1147                 return 1;
1148         }
1149
1150         if(!check_id(argv[1])) {
1151                 fprintf(stderr, "Invalid name for node.\n");
1152                 return 1;
1153         }
1154
1155         if(!connect_tincd(true))
1156                 return 1;
1157
1158         sendline(fd, "%d %d %s", CONTROL, REQ_DISCONNECT, argv[1]);
1159         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_DISCONNECT || result) {
1160                 fprintf(stderr, "Could not disconnect %s.\n", argv[1]);
1161                 return 1;
1162         }
1163
1164         return 0;
1165 }
1166
1167 static int cmd_top(int argc, char *argv[]) {
1168         if(argc > 1) {
1169                 fprintf(stderr, "Too many arguments!\n");
1170                 return 1;
1171         }
1172
1173 #ifdef HAVE_CURSES
1174         if(!connect_tincd(true))
1175                 return 1;
1176
1177         top(fd);
1178         return 0;
1179 #else
1180         fprintf(stderr, "This version of tinc was compiled without support for the curses library.\n");
1181         return 1;
1182 #endif
1183 }
1184
1185 static int cmd_pcap(int argc, char *argv[]) {
1186         if(argc > 2) {
1187                 fprintf(stderr, "Too many arguments!\n");
1188                 return 1;
1189         }
1190
1191         if(!connect_tincd(true))
1192                 return 1;
1193
1194         pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
1195         return 0;
1196 }
1197
1198 #ifdef SIGINT
1199 static void sigint_handler(int sig) {
1200         fprintf(stderr, "\n");
1201         shutdown(fd, SHUT_RDWR);
1202 }
1203 #endif
1204
1205 static int cmd_log(int argc, char *argv[]) {
1206         if(argc > 2) {
1207                 fprintf(stderr, "Too many arguments!\n");
1208                 return 1;
1209         }
1210
1211         if(!connect_tincd(true))
1212                 return 1;
1213
1214 #ifdef SIGINT
1215         signal(SIGINT, sigint_handler);
1216 #endif
1217
1218         logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
1219
1220 #ifdef SIGINT
1221         signal(SIGINT, SIG_DFL);
1222 #endif
1223
1224         close(fd);
1225         fd = -1;
1226         return 0;
1227 }
1228
1229 static int cmd_pid(int argc, char *argv[]) {
1230         if(argc > 1) {
1231                 fprintf(stderr, "Too many arguments!\n");
1232                 return 1;
1233         }
1234
1235         if(!connect_tincd(true) && !pid)
1236                 return 1;
1237
1238         printf("%d\n", pid);
1239         return 0;
1240 }
1241
1242 int rstrip(char *value) {
1243         int len = strlen(value);
1244         while(len && strchr("\t\r\n ", value[len - 1]))
1245                 value[--len] = 0;
1246         return len;
1247 }
1248
1249 char *get_my_name(bool verbose) {
1250         FILE *f = fopen(tinc_conf, "r");
1251         if(!f) {
1252                 if(verbose)
1253                         fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
1254                 return NULL;
1255         }
1256
1257         char buf[4096];
1258         char *value;
1259         while(fgets(buf, sizeof buf, f)) {
1260                 int len = strcspn(buf, "\t =");
1261                 value = buf + len;
1262                 value += strspn(value, "\t ");
1263                 if(*value == '=') {
1264                         value++;
1265                         value += strspn(value, "\t ");
1266                 }
1267                 if(!rstrip(value))
1268                         continue;
1269                 buf[len] = 0;
1270                 if(strcasecmp(buf, "Name"))
1271                         continue;
1272                 if(*value) {
1273                         fclose(f);
1274                         return strdup(value);
1275                 }
1276         }
1277
1278         fclose(f);
1279         if(verbose)
1280                 fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
1281         return NULL;
1282 }
1283
1284 const var_t variables[] = {
1285         /* Server configuration */
1286         {"AddressFamily", VAR_SERVER},
1287         {"AutoConnect", VAR_SERVER | VAR_SAFE},
1288         {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
1289         {"BindToInterface", VAR_SERVER},
1290         {"Broadcast", VAR_SERVER | VAR_SAFE},
1291         {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
1292         {"DecrementTTL", VAR_SERVER},
1293         {"Device", VAR_SERVER},
1294         {"DeviceType", VAR_SERVER},
1295         {"DirectOnly", VAR_SERVER},
1296         {"ECDSAPrivateKeyFile", VAR_SERVER},
1297         {"ExperimentalProtocol", VAR_SERVER},
1298         {"Forwarding", VAR_SERVER},
1299         {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
1300         {"Hostnames", VAR_SERVER},
1301         {"IffOneQueue", VAR_SERVER},
1302         {"Interface", VAR_SERVER},
1303         {"KeyExpire", VAR_SERVER},
1304         {"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
1305         {"LocalDiscovery", VAR_SERVER},
1306         {"MACExpire", VAR_SERVER},
1307         {"MaxConnectionBurst", VAR_SERVER},
1308         {"MaxOutputBufferSize", VAR_SERVER},
1309         {"MaxTimeout", VAR_SERVER},
1310         {"Mode", VAR_SERVER | VAR_SAFE},
1311         {"Name", VAR_SERVER},
1312         {"PingInterval", VAR_SERVER},
1313         {"PingTimeout", VAR_SERVER},
1314         {"PriorityInheritance", VAR_SERVER},
1315         {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
1316         {"PrivateKeyFile", VAR_SERVER},
1317         {"ProcessPriority", VAR_SERVER},
1318         {"Proxy", VAR_SERVER},
1319         {"ReplayWindow", VAR_SERVER},
1320         {"ScriptsExtension", VAR_SERVER},
1321         {"ScriptsInterpreter", VAR_SERVER},
1322         {"StrictSubnets", VAR_SERVER},
1323         {"TunnelServer", VAR_SERVER},
1324         {"VDEGroup", VAR_SERVER},
1325         {"VDEPort", VAR_SERVER},
1326         /* Host configuration */
1327         {"Address", VAR_HOST | VAR_MULTIPLE},
1328         {"Cipher", VAR_SERVER | VAR_HOST},
1329         {"ClampMSS", VAR_SERVER | VAR_HOST},
1330         {"Compression", VAR_SERVER | VAR_HOST},
1331         {"Digest", VAR_SERVER | VAR_HOST},
1332         {"ECDSAPublicKey", VAR_HOST},
1333         {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
1334         {"IndirectData", VAR_SERVER | VAR_HOST},
1335         {"MACLength", VAR_SERVER | VAR_HOST},
1336         {"PMTU", VAR_SERVER | VAR_HOST},
1337         {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
1338         {"Port", VAR_HOST},
1339         {"PublicKey", VAR_HOST | VAR_OBSOLETE},
1340         {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
1341         {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
1342         {"TCPOnly", VAR_SERVER | VAR_HOST},
1343         {"Weight", VAR_HOST | VAR_SAFE},
1344         {NULL, 0}
1345 };
1346
1347 static int cmd_config(int argc, char *argv[]) {
1348         if(argc < 2) {
1349                 fprintf(stderr, "Invalid number of arguments.\n");
1350                 return 1;
1351         }
1352
1353         if(strcasecmp(argv[0], "config"))
1354                 argv--, argc++;
1355
1356         int action = -2;
1357         if(!strcasecmp(argv[1], "get")) {
1358                 argv++, argc--;
1359         } else if(!strcasecmp(argv[1], "add")) {
1360                 argv++, argc--, action = 1;
1361         } else if(!strcasecmp(argv[1], "del")) {
1362                 argv++, argc--, action = -1;
1363         } else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
1364                 argv++, argc--, action = 0;
1365         }
1366
1367         if(argc < 2) {
1368                 fprintf(stderr, "Invalid number of arguments.\n");
1369                 return 1;
1370         }
1371
1372         // Concatenate the rest of the command line
1373         strncpy(line, argv[1], sizeof line - 1);
1374         for(int i = 2; i < argc; i++) {
1375                 strncat(line, " ", sizeof line - 1 - strlen(line));
1376                 strncat(line, argv[i], sizeof line - 1 - strlen(line));
1377         }
1378
1379         // Liberal parsing into node name, variable name and value.
1380         char *node = NULL;
1381         char *variable;
1382         char *value;
1383         int len;
1384
1385         len = strcspn(line, "\t =");
1386         value = line + len;
1387         value += strspn(value, "\t ");
1388         if(*value == '=') {
1389                 value++;
1390                 value += strspn(value, "\t ");
1391         }
1392         line[len] = '\0';
1393         variable = strchr(line, '.');
1394         if(variable) {
1395                 node = line;
1396                 *variable++ = 0;
1397         } else {
1398                 variable = line;
1399         }
1400
1401         if(!*variable) {
1402                 fprintf(stderr, "No variable given.\n");
1403                 return 1;
1404         }
1405
1406         if(action >= 0 && !*value) {
1407                 fprintf(stderr, "No value for variable given.\n");
1408                 return 1;
1409         }
1410
1411         if(action < -1 && *value)
1412                 action = 0;
1413
1414         /* Some simple checks. */
1415         bool found = false;
1416         bool warnonremove = false;
1417
1418         for(int i = 0; variables[i].name; i++) {
1419                 if(strcasecmp(variables[i].name, variable))
1420                         continue;
1421
1422                 found = true;
1423                 variable = (char *)variables[i].name;
1424
1425                 /* Discourage use of obsolete variables. */
1426
1427                 if(variables[i].type & VAR_OBSOLETE && action >= 0) {
1428                         if(force) {
1429                                 fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
1430                         } else {
1431                                 fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
1432                                 return 1;
1433                         }
1434                 }
1435
1436                 /* Don't put server variables in host config files */
1437
1438                 if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
1439                         if(force) {
1440                                 fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
1441                         } else {
1442                                 fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
1443                                 return 1;
1444                         }
1445                 }
1446
1447                 /* Should this go into our own host config file? */
1448
1449                 if(!node && !(variables[i].type & VAR_SERVER)) {
1450                         node = get_my_name(true);
1451                         if(!node)
1452                                 return 1;
1453                 }
1454
1455                 /* Change "add" into "set" for variables that do not allow multiple occurences.
1456                    Turn on warnings when it seems variables might be removed unintentionally. */
1457
1458                 if(action == 1 && !(variables[i].type & VAR_MULTIPLE)) {
1459                         warnonremove = true;
1460                         action = 0;
1461                 } else if(action == 0 && (variables[i].type & VAR_MULTIPLE)) {
1462                         warnonremove = true;
1463                 }
1464
1465                 break;
1466         }
1467
1468         if(node && !check_id(node)) {
1469                 fprintf(stderr, "Invalid name for node.\n");
1470                 return 1;
1471         }
1472
1473         if(!found) {
1474                 if(force || action < 0) {
1475                         fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1476                 } else {
1477                         fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1478                         return 1;
1479                 }
1480         }
1481
1482         // Open the right configuration file.
1483         char *filename;
1484         if(node)
1485                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, node);
1486         else
1487                 filename = tinc_conf;
1488
1489         FILE *f = fopen(filename, "r");
1490         if(!f) {
1491                 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1492                 return 1;
1493         }
1494
1495         char *tmpfile = NULL;
1496         FILE *tf = NULL;
1497
1498         if(action >= -1) {
1499                 xasprintf(&tmpfile, "%s.config.tmp", filename);
1500                 tf = fopen(tmpfile, "w");
1501                 if(!tf) {
1502                         fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1503                         fclose(f);
1504                         return 1;
1505                 }
1506         }
1507
1508         // Copy the file, making modifications on the fly, unless we are just getting a value.
1509         char buf1[4096];
1510         char buf2[4096];
1511         bool set = false;
1512         bool removed = false;
1513         found = false;
1514
1515         while(fgets(buf1, sizeof buf1, f)) {
1516                 buf1[sizeof buf1 - 1] = 0;
1517                 strncpy(buf2, buf1, sizeof buf2);
1518
1519                 // Parse line in a simple way
1520                 char *bvalue;
1521                 int len;
1522
1523                 len = strcspn(buf2, "\t =");
1524                 bvalue = buf2 + len;
1525                 bvalue += strspn(bvalue, "\t ");
1526                 if(*bvalue == '=') {
1527                         bvalue++;
1528                         bvalue += strspn(bvalue, "\t ");
1529                 }
1530                 rstrip(bvalue);
1531                 buf2[len] = '\0';
1532
1533                 // Did it match?
1534                 if(!strcasecmp(buf2, variable)) {
1535                         // Get
1536                         if(action < -1) {
1537                                 found = true;
1538                                 printf("%s\n", bvalue);
1539                         // Del
1540                         } else if(action == -1) {
1541                                 if(!*value || !strcasecmp(bvalue, value)) {
1542                                         removed = true;
1543                                         continue;
1544                                 }
1545                         // Set
1546                         } else if(action == 0) {
1547                                 // Warn if "set" was used for variables that can occur multiple times
1548                                 if(warnonremove && strcasecmp(bvalue, value))
1549                                         fprintf(stderr, "Warning: removing %s = %s\n", variable, bvalue);
1550
1551                                 // Already set? Delete the rest...
1552                                 if(set)
1553                                         continue;
1554
1555                                 // Otherwise, replace.
1556                                 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1557                                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1558                                         return 1;
1559                                 }
1560                                 set = true;
1561                                 continue;
1562                         }
1563                 }
1564
1565                 if(action >= -1) {
1566                         // Copy original line...
1567                         if(fputs(buf1, tf) < 0) {
1568                                 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1569                                 return 1;
1570                         }
1571
1572                         // Add newline if it is missing...
1573                         if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
1574                                 if(fputc('\n', tf) < 0) {
1575                                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1576                                         return 1;
1577                                 }
1578                         }
1579                 }
1580         }
1581
1582         // Make sure we read everything...
1583         if(ferror(f) || !feof(f)) {
1584                 fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
1585                 return 1;
1586         }
1587
1588         if(fclose(f)) {
1589                 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
1590                 return 1;
1591         }
1592
1593         // Add new variable if necessary.
1594         if(action > 0 || (action == 0 && !set)) {
1595                 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1596                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1597                         return 1;
1598                 }
1599         }
1600
1601         if(action < -1) {
1602                 if(!found)
1603                         fprintf(stderr, "No matching configuration variables found.\n");
1604                 return 0;
1605         }
1606
1607         // Make sure we wrote everything...
1608         if(fclose(tf)) {
1609                 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1610                 return 1;
1611         }
1612
1613         // Could we find what we had to remove?
1614         if(action < 0 && !removed) {
1615                 remove(tmpfile);
1616                 fprintf(stderr, "No configuration variables deleted.\n");
1617                 return *value != 0;
1618         }
1619
1620         // Replace the configuration file with the new one
1621 #ifdef HAVE_MINGW
1622         if(remove(filename)) {
1623                 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1624                 return 1;
1625         }
1626 #endif
1627         if(rename(tmpfile, filename)) {
1628                 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1629                 return 1;
1630         }
1631
1632         // Silently try notifying a running tincd of changes.
1633         if(connect_tincd(false))
1634                 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1635
1636         return 0;
1637 }
1638
1639 bool check_id(const char *name) {
1640         if(!name || !*name)
1641                 return false;
1642
1643         for(int i = 0; i < strlen(name); i++) {
1644                 if(!isalnum(name[i]) && name[i] != '_')
1645                         return false;
1646         }
1647
1648         return true;
1649 }
1650
1651 static bool try_bind(int port) {
1652         struct addrinfo *ai = NULL;
1653         struct addrinfo hint = {
1654                 .ai_flags = AI_PASSIVE,
1655                 .ai_family = AF_UNSPEC,
1656                 .ai_socktype = SOCK_STREAM,
1657                 .ai_protocol = IPPROTO_TCP,
1658         };
1659
1660         char portstr[16];
1661         snprintf(portstr, sizeof portstr, "%d", port);
1662
1663         if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai)
1664                 return false;
1665
1666         while(ai) {
1667                 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
1668                 if(!fd)
1669                         return false;
1670                 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
1671                 closesocket(fd);
1672                 if(result)
1673                         return false;
1674                 ai = ai->ai_next;
1675         }
1676
1677         return true;
1678 }
1679
1680 int check_port(char *name) {
1681         if(try_bind(655))
1682                 return 655;
1683
1684         fprintf(stderr, "Warning: could not bind to port 655. ");
1685
1686         for(int i = 0; i < 100; i++) {
1687                 int port = 0x1000 + (rand() & 0x7fff);
1688                 if(try_bind(port)) {
1689                         char *filename;
1690                         xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, name);
1691                         FILE *f = fopen(filename, "a");
1692                         free(filename);
1693                         if(!f) {
1694                                 fprintf(stderr, "Please change tinc's Port manually.\n");
1695                                 return 0;
1696                         }
1697
1698                         fprintf(f, "Port = %d\n", port);
1699                         fclose(f);
1700                         fprintf(stderr, "Tinc will instead listen on port %d.\n", port);
1701                         return port;
1702                 }
1703         }
1704
1705         fprintf(stderr, "Please change tinc's Port manually.\n");
1706         return 0;
1707 }
1708
1709 static int cmd_init(int argc, char *argv[]) {
1710         if(!access(tinc_conf, F_OK)) {
1711                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1712                 return 1;
1713         }
1714
1715         if(argc > 2) {
1716                 fprintf(stderr, "Too many arguments!\n");
1717                 return 1;
1718         } else if(argc < 2) {
1719                 if(tty) {
1720                         char buf[1024];
1721                         fprintf(stderr, "Enter the Name you want your tinc node to have: ");
1722                         if(!fgets(buf, sizeof buf, stdin)) {
1723                                 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1724                                 return 1;
1725                         }
1726                         int len = rstrip(buf);
1727                         if(!len) {
1728                                 fprintf(stderr, "No name given!\n");
1729                                 return 1;
1730                         }
1731                         name = strdup(buf);
1732                 } else {
1733                         fprintf(stderr, "No Name given!\n");
1734                         return 1;
1735                 }
1736         } else {
1737                 name = strdup(argv[1]);
1738                 if(!*name) {
1739                         fprintf(stderr, "No Name given!\n");
1740                         return 1;
1741                 }
1742         }
1743
1744         if(!check_id(name)) {
1745                 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1746                 return 1;
1747         }
1748
1749         if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
1750                 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
1751                 return 1;
1752         }
1753
1754         if(mkdir(confbase, 0777) && errno != EEXIST) {
1755                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1756                 return 1;
1757         }
1758
1759         if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
1760                 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1761                 return 1;
1762         }
1763
1764         FILE *f = fopen(tinc_conf, "w");
1765         if(!f) {
1766                 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1767                 return 1;
1768         }
1769
1770         fprintf(f, "Name = %s\n", name);
1771         fclose(f);
1772
1773         if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1774                 return 1;
1775
1776         check_port(name);
1777
1778 #ifndef HAVE_MINGW
1779         char *filename;
1780         xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1781         if(access(filename, F_OK)) {
1782                 FILE *f = fopenmask(filename, "w", 0777);
1783                 if(!f) {
1784                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1785                         return 1;
1786                 }
1787                 fprintf(f, "#!/bin/sh\n\necho 'Unconfigured tinc-up script, please edit '$0'!'\n\n#ifconfig $INTERFACE <your vpn IP address> netmask <netmask of whole VPN>\n");
1788                 fclose(f);
1789         }
1790 #endif
1791
1792         return 0;
1793
1794 }
1795
1796 static int cmd_generate_keys(int argc, char *argv[]) {
1797         if(argc > 2) {
1798                 fprintf(stderr, "Too many arguments!\n");
1799                 return 1;
1800         }
1801
1802         if(!name)
1803                 name = get_my_name(false);
1804
1805         return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1806 }
1807
1808 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1809         if(argc > 2) {
1810                 fprintf(stderr, "Too many arguments!\n");
1811                 return 1;
1812         }
1813
1814         if(!name)
1815                 name = get_my_name(false);
1816
1817         return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1818 }
1819
1820 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1821         if(argc > 1) {
1822                 fprintf(stderr, "Too many arguments!\n");
1823                 return 1;
1824         }
1825
1826         if(!name)
1827                 name = get_my_name(false);
1828
1829         return !ecdsa_keygen(true);
1830 }
1831
1832 static int cmd_help(int argc, char *argv[]) {
1833         usage(false);
1834         return 0;
1835 }
1836
1837 static int cmd_version(int argc, char *argv[]) {
1838         if(argc > 1) {
1839                 fprintf(stderr, "Too many arguments!\n");
1840                 return 1;
1841         }
1842
1843         version();
1844         return 0;
1845 }
1846
1847 static int cmd_info(int argc, char *argv[]) {
1848         if(argc != 2) {
1849                 fprintf(stderr, "Invalid number of arguments.\n");
1850                 return 1;
1851         }
1852
1853         if(!connect_tincd(true))
1854                 return 1;
1855
1856         return info(fd, argv[1]);
1857 }
1858
1859 static const char *conffiles[] = {
1860         "tinc.conf",
1861         "tinc-up",
1862         "tinc-down",
1863         "subnet-up",
1864         "subnet-down",
1865         "host-up",
1866         "host-down",
1867         NULL,
1868 };
1869
1870 static int cmd_edit(int argc, char *argv[]) {
1871         if(argc != 2) {
1872                 fprintf(stderr, "Invalid number of arguments.\n");
1873                 return 1;
1874         }
1875
1876         char *filename = NULL;
1877
1878         if(strncmp(argv[1], "hosts" SLASH, 6)) {
1879                 for(int i = 0; conffiles[i]; i++) {
1880                         if(!strcmp(argv[1], conffiles[i])) {
1881                                 xasprintf(&filename, "%s" SLASH "%s", confbase, argv[1]);
1882                                 break;
1883                         }
1884                 }
1885         } else {
1886                 argv[1] += 6;
1887         }
1888
1889         if(!filename) {
1890                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1891                 char *dash = strchr(argv[1], '-');
1892                 if(dash) {
1893                         *dash++ = 0;
1894                         if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1895                                 fprintf(stderr, "Invalid configuration filename.\n");
1896                                 return 1;
1897                         }
1898                 }
1899         }
1900
1901         char *command;
1902 #ifndef HAVE_MINGW
1903         xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1904 #else
1905         xasprintf(&command, "edit \"%s\"", filename);
1906 #endif
1907         int result = system(command);
1908         if(result)
1909                 return result;
1910
1911         // Silently try notifying a running tincd of changes.
1912         if(connect_tincd(false))
1913                 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1914
1915         return 0;
1916 }
1917
1918 static int export(const char *name, FILE *out) {
1919         char *filename;
1920         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1921         FILE *in = fopen(filename, "r");
1922         if(!in) {
1923                 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1924                 return 1;
1925         }
1926
1927         fprintf(out, "Name = %s\n", name);
1928         char buf[4096];
1929         while(fgets(buf, sizeof buf, in)) {
1930                 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1931                         fputs(buf, out);
1932         }
1933
1934         if(ferror(in)) {
1935                 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1936                 fclose(in);
1937                 return 1;
1938         }
1939
1940         fclose(in);
1941         return 0;
1942 }
1943
1944 static int cmd_export(int argc, char *argv[]) {
1945         if(argc > 1) {
1946                 fprintf(stderr, "Too many arguments!\n");
1947                 return 1;
1948         }
1949
1950         char *name = get_my_name(true);
1951         if(!name)
1952                 return 1;
1953
1954         int result = export(name, stdout);
1955         if(!tty)
1956                 fclose(stdout);
1957
1958         free(name);
1959         return result;
1960 }
1961
1962 static int cmd_export_all(int argc, char *argv[]) {
1963         if(argc > 1) {
1964                 fprintf(stderr, "Too many arguments!\n");
1965                 return 1;
1966         }
1967
1968         DIR *dir = opendir(hosts_dir);
1969         if(!dir) {
1970                 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1971                 return 1;
1972         }
1973
1974         bool first = true;
1975         int result = 0;
1976         struct dirent *ent;
1977
1978         while((ent = readdir(dir))) {
1979                 if(!check_id(ent->d_name))
1980                         continue;
1981
1982                 if(first)
1983                         first = false;
1984                 else
1985                         printf("#---------------------------------------------------------------#\n");
1986
1987                 result |= export(ent->d_name, stdout);
1988         }
1989
1990         closedir(dir);
1991         if(!tty)
1992                 fclose(stdout);
1993         return result;
1994 }
1995
1996 static int cmd_import(int argc, char *argv[]) {
1997         if(argc > 1) {
1998                 fprintf(stderr, "Too many arguments!\n");
1999                 return 1;
2000         }
2001
2002         FILE *in = stdin;
2003         FILE *out = NULL;
2004
2005         char buf[4096];
2006         char name[4096];
2007         char *filename = NULL;
2008         int count = 0;
2009         bool firstline = true;
2010
2011         while(fgets(buf, sizeof buf, in)) {
2012                 if(sscanf(buf, "Name = %s", name) == 1) {
2013                         firstline = false;
2014
2015                         if(!check_id(name)) {
2016                                 fprintf(stderr, "Invalid Name in input!\n");
2017                                 return 1;
2018                         }
2019
2020                         if(out)
2021                                 fclose(out);
2022
2023                         free(filename);
2024                         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
2025
2026                         if(!force && !access(filename, F_OK)) {
2027                                 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
2028                                 out = NULL;
2029                                 continue;
2030                         }
2031
2032                         out = fopen(filename, "w");
2033                         if(!out) {
2034                                 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
2035                                 return 1;
2036                         }
2037
2038                         count++;
2039                         continue;
2040                 } else if(firstline) {
2041                         fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
2042                         firstline = false;
2043                 }
2044
2045
2046                 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
2047                         continue;
2048
2049                 if(out) {
2050                         if(fputs(buf, out) < 0) {
2051                                 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
2052                                 return 1;
2053                         }
2054                 }
2055         }
2056
2057         if(out)
2058                 fclose(out);
2059
2060         if(count) {
2061                 fprintf(stderr, "Imported %d host configuration files.\n", count);
2062                 return 0;
2063         } else {
2064                 fprintf(stderr, "No host configuration files imported.\n");
2065                 return 1;
2066         }
2067 }
2068
2069 static int cmd_exchange(int argc, char *argv[]) {
2070         return cmd_export(argc, argv) ?: cmd_import(argc, argv);
2071 }
2072
2073 static int cmd_exchange_all(int argc, char *argv[]) {
2074         return cmd_export_all(argc, argv) ?: cmd_import(argc, argv);
2075 }
2076
2077 static int switch_network(char *name) {
2078         if(fd >= 0) {
2079                 close(fd);
2080                 fd = -1;
2081         }
2082
2083         free(confbase);
2084         confbase = NULL;
2085         free(pidfilename);
2086         pidfilename = NULL;
2087         free(logfilename);
2088         logfilename = NULL;
2089         free(unixsocketname);
2090         unixsocketname = NULL;
2091         free(tinc_conf);
2092         free(hosts_dir);
2093         free(prompt);
2094
2095         free(netname);
2096         netname = strcmp(name, ".") ? xstrdup(name) : NULL;
2097
2098         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2099         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2100         xasprintf(&prompt, "%s> ", identname);
2101
2102         return 0;
2103 }
2104
2105 static int cmd_network(int argc, char *argv[]) {
2106         if(argc > 2) {
2107                 fprintf(stderr, "Too many arguments!\n");
2108                 return 1;
2109         }
2110
2111         if(argc == 2)
2112                 return switch_network(argv[1]);
2113
2114         DIR *dir = opendir(confdir);
2115         if(!dir) {
2116                 fprintf(stderr, "Could not read directory %s: %s\n", confdir, strerror(errno));
2117                 return 1;
2118         }
2119
2120         struct dirent *ent;
2121         while((ent = readdir(dir))) {
2122                 if(*ent->d_name == '.')
2123                         continue;
2124
2125                 if(!strcmp(ent->d_name, "tinc.conf")) {
2126                         printf(".\n");
2127                         continue;
2128                 }
2129
2130                 char *fname;
2131                 xasprintf(&fname, "%s/%s/tinc.conf", confdir, ent->d_name);
2132                 if(!access(fname, R_OK))
2133                         printf("%s\n", ent->d_name);
2134                 free(fname);
2135         }
2136
2137         return 0;
2138 }
2139
2140 static const struct {
2141         const char *command;
2142         int (*function)(int argc, char *argv[]);
2143         bool hidden;
2144 } commands[] = {
2145         {"start", cmd_start},
2146         {"stop", cmd_stop},
2147         {"restart", cmd_restart},
2148         {"reload", cmd_reload},
2149         {"dump", cmd_dump},
2150         {"purge", cmd_purge},
2151         {"debug", cmd_debug},
2152         {"retry", cmd_retry},
2153         {"connect", cmd_connect},
2154         {"disconnect", cmd_disconnect},
2155         {"top", cmd_top},
2156         {"pcap", cmd_pcap},
2157         {"log", cmd_log},
2158         {"pid", cmd_pid},
2159         {"config", cmd_config, true},
2160         {"add", cmd_config},
2161         {"del", cmd_config},
2162         {"get", cmd_config},
2163         {"set", cmd_config},
2164         {"init", cmd_init},
2165         {"generate-keys", cmd_generate_keys},
2166         {"generate-rsa-keys", cmd_generate_rsa_keys},
2167         {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
2168         {"help", cmd_help},
2169         {"version", cmd_version},
2170         {"info", cmd_info},
2171         {"edit", cmd_edit},
2172         {"export", cmd_export},
2173         {"export-all", cmd_export_all},
2174         {"import", cmd_import},
2175         {"exchange", cmd_exchange},
2176         {"exchange-all", cmd_exchange_all},
2177         {"invite", cmd_invite},
2178         {"join", cmd_join},
2179         {"network", cmd_network},
2180         {NULL, NULL},
2181 };
2182
2183 #ifdef HAVE_READLINE
2184 static char *complete_command(const char *text, int state) {
2185         static int i;
2186
2187         if(!state)
2188                 i = 0;
2189         else
2190                 i++;
2191
2192         while(commands[i].command) {
2193                 if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text)))
2194                         return xstrdup(commands[i].command);
2195                 i++;
2196         }
2197
2198         return NULL;
2199 }
2200
2201 static char *complete_dump(const char *text, int state) {
2202         const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
2203         static int i;
2204
2205         if(!state)
2206                 i = 0;
2207         else
2208                 i++;
2209
2210         while(matches[i]) {
2211                 if(!strncasecmp(matches[i], text, strlen(text)))
2212                         return xstrdup(matches[i]);
2213                 i++;
2214         }
2215
2216         return NULL;
2217 }
2218
2219 static char *complete_config(const char *text, int state) {
2220         static int i;
2221
2222         if(!state)
2223                 i = 0;
2224         else
2225                 i++;
2226
2227         while(variables[i].name) {
2228                 char *dot = strchr(text, '.');
2229                 if(dot) {
2230                         if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
2231                                 char *match;
2232                                 xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
2233                                 return match;
2234                         }
2235                 } else {
2236                         if(!strncasecmp(variables[i].name, text, strlen(text)))
2237                                 return xstrdup(variables[i].name);
2238                 }
2239                 i++;
2240         }
2241
2242         return NULL;
2243 }
2244
2245 static char *complete_info(const char *text, int state) {
2246         static int i;
2247         if(!state) {
2248                 i = 0;
2249                 if(!connect_tincd(false))
2250                         return NULL;
2251                 // Check the list of nodes
2252                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
2253                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
2254         }
2255
2256         while(recvline(fd, line, sizeof line)) {
2257                 char item[4096];
2258                 int n = sscanf(line, "%d %d %s", &code, &req, item);
2259                 if(n == 2) {
2260                         i++;
2261                         if(i >= 2)
2262                                 break;
2263                         else
2264                                 continue;
2265                 }
2266
2267                 if(n != 3) {
2268                         fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
2269                         break;
2270                 }
2271
2272                 if(!strncmp(item, text, strlen(text)))
2273                         return xstrdup(strip_weight(item));
2274         }
2275
2276         return NULL;
2277 }
2278
2279 static char *complete_nothing(const char *text, int state) {
2280         return NULL;
2281 }
2282
2283 static char **completion (const char *text, int start, int end) {
2284         char **matches = NULL;
2285
2286         if(!start)
2287                 matches = rl_completion_matches(text, complete_command);
2288         else if(!strncasecmp(rl_line_buffer, "dump ", 5))
2289                 matches = rl_completion_matches(text, complete_dump);
2290         else if(!strncasecmp(rl_line_buffer, "add ", 4))
2291                 matches = rl_completion_matches(text, complete_config);
2292         else if(!strncasecmp(rl_line_buffer, "del ", 4))
2293                 matches = rl_completion_matches(text, complete_config);
2294         else if(!strncasecmp(rl_line_buffer, "get ", 4))
2295                 matches = rl_completion_matches(text, complete_config);
2296         else if(!strncasecmp(rl_line_buffer, "set ", 4))
2297                 matches = rl_completion_matches(text, complete_config);
2298         else if(!strncasecmp(rl_line_buffer, "info ", 5))
2299                 matches = rl_completion_matches(text, complete_info);
2300
2301         return matches;
2302 }
2303 #endif
2304
2305 static int cmd_shell(int argc, char *argv[]) {
2306         xasprintf(&prompt, "%s> ", identname);
2307         int result = 0;
2308         char buf[4096];
2309         char *line = NULL;
2310         int maxargs = argc + 16;
2311         char **nargv = xmalloc(maxargs * sizeof *nargv);
2312
2313         for(int i = 0; i < argc; i++)
2314                 nargv[i] = argv[i];
2315
2316 #ifdef HAVE_READLINE
2317         rl_readline_name = "tinc";
2318         rl_completion_entry_function = complete_nothing;
2319         rl_attempted_completion_function = completion;
2320         rl_filename_completion_desired = 0;
2321         char *copy = NULL;
2322 #endif
2323
2324         while(true) {
2325 #ifdef HAVE_READLINE
2326                 if(tty) {
2327                         free(copy);
2328                         free(line);
2329                         rl_basic_word_break_characters = "\t\n ";
2330                         line = readline(prompt);
2331                         if(line)
2332                                 copy = xstrdup(line);
2333                 } else {
2334                         line = fgets(buf, sizeof buf, stdin);
2335                 }
2336 #else
2337                 if(tty)
2338                         fputs(prompt, stdout);
2339
2340                 line = fgets(buf, sizeof buf, stdin);
2341 #endif
2342
2343                 if(!line)
2344                         break;
2345
2346                 /* Ignore comments */
2347
2348                 if(*line == '#')
2349                         continue;
2350
2351                 /* Split */
2352
2353                 int nargc = argc;
2354                 char *p = line + strspn(line, " \t\n");
2355                 char *next = strtok(p, " \t\n");
2356
2357                 while(p && *p) {
2358                         if(nargc >= maxargs) {
2359                                 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
2360                                 abort();
2361                                 maxargs *= 2;
2362                                 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
2363                         }
2364
2365                         nargv[nargc++] = p;
2366                         p = next;
2367                         next = strtok(NULL, " \t\n");
2368                 }
2369
2370                 if(nargc == argc)
2371                         continue;
2372
2373                 if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit"))
2374                         return result;
2375
2376                 bool found = false;
2377
2378                 for(int i = 0; commands[i].command; i++) {
2379                         if(!strcasecmp(nargv[argc], commands[i].command)) {
2380                                 result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
2381                                 found = true;
2382                                 break;
2383                         }
2384                 }
2385
2386 #ifdef HAVE_READLINE
2387                 if(tty && found)
2388                         add_history(copy);
2389 #endif
2390
2391                 if(!found) {
2392                         fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
2393                         result |= 1;
2394                 }
2395         }
2396
2397         free(nargv);
2398
2399         if(tty)
2400                 printf("\n");
2401         return result;
2402 }
2403
2404
2405 int main(int argc, char *argv[]) {
2406         program_name = argv[0];
2407         orig_argv = argv;
2408         orig_argc = argc;
2409
2410         if(!parse_options(argc, argv))
2411                 return 1;
2412
2413         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2414         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2415
2416         if(show_version) {
2417                 version();
2418                 return 0;
2419         }
2420
2421         if(show_help) {
2422                 usage(false);
2423                 return 0;
2424         }
2425
2426 #ifdef HAVE_MINGW
2427         static struct WSAData wsa_state;
2428
2429         if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
2430                 fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
2431                 return false;
2432         }
2433 #endif
2434
2435         srand(time(NULL));
2436         crypto_init();
2437
2438         tty = isatty(0) && isatty(1);
2439
2440         if(optind >= argc)
2441                 return cmd_shell(argc, argv);
2442
2443         for(int i = 0; commands[i].command; i++) {
2444                 if(!strcasecmp(argv[optind], commands[i].command))
2445                         return commands[i].function(argc - optind, argv + optind);
2446         }
2447
2448         fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);
2449         usage(true);
2450         return 1;
2451 }