Honour umask, let temporary key files inherit original's permissions.
[tinc] / src / tincctl.c
1 /*
2     tincctl.c -- Controlling a running tincd
3     Copyright (C) 2007-2013 Guus Sliepen <guus@tinc-vpn.org>
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 "names.h"
37 #include "rsagen.h"
38 #include "utils.h"
39 #include "tincctl.h"
40 #include "top.h"
41
42 #ifdef HAVE_MINGW
43 #define SCRIPTEXTENSION ".bat"
44 #else
45 #define SCRIPTEXTENSION ""
46 #endif
47
48 static char **orig_argv;
49 static int orig_argc;
50
51 /* If nonzero, display usage information and exit. */
52 static bool show_help = false;
53
54 /* If nonzero, print the version on standard output and exit.  */
55 static bool show_version = false;
56
57 static char *name = NULL;
58 static char controlcookie[1025];
59 char *tinc_conf = NULL;
60 char *hosts_dir = NULL;
61 struct timeval now;
62
63 // Horrible global variables...
64 static int pid = 0;
65 int fd = -1;
66 char line[4096];
67 static int code;
68 static int req;
69 static int result;
70 static bool force = false;
71 bool tty = true;
72 bool confbasegiven = false;
73 bool netnamegiven = false;
74
75 #ifdef HAVE_MINGW
76 static struct WSAData wsa_state;
77 #endif
78
79 static struct option const long_options[] = {
80         {"config", required_argument, NULL, 'c'},
81         {"net", required_argument, NULL, 'n'},
82         {"help", no_argument, NULL, 1},
83         {"version", no_argument, NULL, 2},
84         {"pidfile", required_argument, NULL, 3},
85         {"force", no_argument, NULL, 4},
86         {NULL, 0, NULL, 0}
87 };
88
89 static void version(void) {
90         printf("%s version %s (built %s %s, protocol %d.%d)\n", PACKAGE,
91                    VERSION, __DATE__, __TIME__, PROT_MAJOR, PROT_MINOR);
92         printf("Copyright (C) 1998-2012 Ivo Timmermans, Guus Sliepen and others.\n"
93                         "See the AUTHORS file for a complete list.\n\n"
94                         "tinc comes with ABSOLUTELY NO WARRANTY.  This is free software,\n"
95                         "and you are welcome to redistribute it under certain conditions;\n"
96                         "see the file COPYING for details.\n");
97 }
98
99 static void usage(bool status) {
100         if(status) {
101                 fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
102         } else {
103                 printf("Usage: %s [options] command\n\n", program_name);
104                 printf("Valid options are:\n"
105                                 "  -c, --config=DIR        Read configuration options from DIR.\n"
106                                 "  -n, --net=NETNAME       Connect to net NETNAME.\n"
107                                 "      --pidfile=FILENAME  Read control cookie from FILENAME.\n"
108                                 "      --help              Display this help and exit.\n"
109                                 "      --version           Output version information and exit.\n"
110                                 "\n"
111                                 "Valid commands are:\n"
112                                 "  init [name]                Create initial configuration files.\n"
113                                 "  get VARIABLE               Print current value of VARIABLE\n"
114                                 "  set VARIABLE VALUE         Set VARIABLE to VALUE\n"
115                                 "  add VARIABLE VALUE         Add VARIABLE with the given VALUE\n"
116                                 "  del VARIABLE [VALUE]       Remove VARIABLE [only ones with watching VALUE]\n"
117                                 "  start [tincd options]      Start tincd.\n"
118                                 "  stop                       Stop tincd.\n"
119                                 "  restart [tincd options]    Restart tincd.\n"
120                                 "  reload                     Partially reload configuration of running tincd.\n"
121                                 "  pid                        Show PID of currently running tincd.\n"
122                                 "  generate-keys [bits]       Generate new RSA and ECDSA public/private keypairs.\n"
123                                 "  generate-rsa-keys [bits]   Generate a new RSA public/private keypair.\n"
124                                 "  generate-ecdsa-keys        Generate a new ECDSA public/private keypair.\n"
125                                 "  dump                       Dump a list of one of the following things:\n"
126                                 "    [reachable] nodes        - all known nodes in the VPN\n"
127                                 "    edges                    - all known connections in the VPN\n"
128                                 "    subnets                  - all known subnets in the VPN\n"
129                                 "    connections              - all meta connections with ourself\n"
130                                 "    [di]graph                - graph of the VPN in dotty format\n"
131                                 "  info NODE|SUBNET|ADDRESS   Give information about a particular NODE, SUBNET or ADDRESS.\n"
132                                 "  purge                      Purge unreachable nodes\n"
133                                 "  debug N                    Set debug level\n"
134                                 "  retry                      Retry all outgoing connections\n"
135                                 "  disconnect NODE            Close meta connection with NODE\n"
136 #ifdef HAVE_CURSES
137                                 "  top                        Show real-time statistics\n"
138 #endif
139                                 "  pcap [snaplen]             Dump traffic in pcap format [up to snaplen bytes per packet]\n"
140                                 "  log [level]                Dump log output [up to the specified level]\n"
141                                 "  export                     Export host configuration of local node to standard output\n"
142                                 "  export-all                 Export all host configuration files to standard output\n"
143                                 "  import [--force]           Import host configuration file(s) from standard input\n"
144                                 "  exchange [--force]         Same as export followed by import\n"
145                                 "  exchange-all [--force]     Same as export-all followed by import\n"
146                                 "  invite NODE [...]          Generate an invitation for NODE\n"
147                                 "  join INVITATION            Join a VPN using an INVITIATION\n"
148                                 "\n");
149                 printf("Report bugs to tinc@tinc-vpn.org.\n");
150         }
151 }
152
153 static bool parse_options(int argc, char **argv) {
154         int r;
155         int option_index = 0;
156
157         while((r = getopt_long(argc, argv, "+c:n:", long_options, &option_index)) != EOF) {
158                 switch (r) {
159                         case 0:   /* long option */
160                                 break;
161
162                         case 'c': /* config file */
163                                 confbase = xstrdup(optarg);
164                                 confbasegiven = true;
165                                 break;
166
167                         case 'n': /* net name given */
168                                 netname = xstrdup(optarg);
169                                 break;
170
171                         case 1:   /* show help */
172                                 show_help = true;
173                                 break;
174
175                         case 2:   /* show version */
176                                 show_version = true;
177                                 break;
178
179                         case 3:   /* open control socket here */
180                                 pidfilename = xstrdup(optarg);
181                                 break;
182
183                         case 4:   /* force */
184                                 force = true;
185                                 break;
186
187                         case '?': /* wrong options */
188                                 usage(true);
189                                 return false;
190
191                         default:
192                                 break;
193                 }
194         }
195
196         if(!netname && (netname = getenv("NETNAME")))
197                 netname = xstrdup(netname);
198
199         /* netname "." is special: a "top-level name" */
200
201         if(netname && (!*netname || !strcmp(netname, "."))) {
202                 free(netname);
203                 netname = NULL;
204         }
205
206         if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
207                 fprintf(stderr, "Invalid character in netname!\n");
208                 return false;
209         }
210
211         return true;
212 }
213
214 static void disable_old_keys(const char *filename, const char *what) {
215         char tmpfile[PATH_MAX] = "";
216         char buf[1024];
217         bool disabled = false;
218         bool block = false;
219         bool error = false;
220         FILE *r, *w;
221
222         r = fopen(filename, "r");
223         if(!r)
224                 return;
225
226         snprintf(tmpfile, sizeof tmpfile, "%s.tmp", filename);
227
228         w = fopen(tmpfile, "w");
229
230 #ifdef HAVE_FCHMOD
231         /* Let the temporary file have the same permissions as the original. */
232
233         if(w) {
234                 struct stat st = {.st_mode = 0600};
235                 fstat(fileno(r), &st);
236                 fchmod(fileno(w), st.st_mode);
237         }
238 #endif
239
240         while(fgets(buf, sizeof buf, r)) {
241                 if(!block && !strncmp(buf, "-----BEGIN ", 11)) {
242                         if((strstr(buf, " EC ") && strstr(what, "ECDSA")) || (strstr(buf, " RSA ") && strstr(what, "RSA"))) {
243                                 disabled = true;
244                                 block = true;
245                         }
246                 }
247
248                 bool ecdsapubkey = !strncasecmp(buf, "ECDSAPublicKey", 14) && strchr(" \t=", buf[14]) && strstr(what, "ECDSA");
249
250                 if(ecdsapubkey)
251                         disabled = true;
252
253                 if(w) {
254                         if(block || ecdsapubkey)
255                                 fputc('#', w);
256                         if(fputs(buf, w) < 0) {
257                                 error = true;
258                                 break;
259                         }
260                 }
261
262                 if(block && !strncmp(buf, "-----END ", 9))
263                         block = false;
264         }
265
266         if(w)
267                 if(fclose(w) < 0)
268                         error = true;
269         if(ferror(r) || fclose(r) < 0)
270                 error = true;
271
272         if(disabled) {
273                 if(!w || error) {
274                         fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
275                         if(w)
276                                 unlink(tmpfile);
277                         return;
278                 }
279
280 #ifdef HAVE_MINGW
281                 // We cannot atomically replace files on Windows.
282                 char bakfile[PATH_MAX] = "";
283                 snprintf(bakfile, sizeof bakfile, "%s.bak", filename);
284                 if(rename(filename, bakfile) || rename(tmpfile, filename)) {
285                         rename(bakfile, filename);
286 #else
287                 if(rename(tmpfile, filename)) {
288 #endif
289                         fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
290                 } else  {
291 #ifdef HAVE_MINGW
292                         unlink(bakfile);
293 #endif
294                         fprintf(stderr, "Warning: old key(s) found and disabled.\n");
295                 }
296         }
297
298         unlink(tmpfile);
299 }
300
301 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask) {
302         FILE *r;
303         char *directory;
304         char buf[PATH_MAX];
305         char buf2[PATH_MAX];
306
307         /* Check stdin and stdout */
308         if(ask && tty) {
309                 /* Ask for a file and/or directory name. */
310                 fprintf(stdout, "Please enter a file to save %s to [%s]: ", what, filename);
311                 fflush(stdout);
312
313                 if(fgets(buf, sizeof buf, stdin) == NULL) {
314                         fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
315                         return NULL;
316                 }
317
318                 size_t len = strlen(buf);
319                 if(len)
320                         buf[--len] = 0;
321
322                 if(len)
323                         filename = buf;
324         }
325
326 #ifdef HAVE_MINGW
327         if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
328 #else
329         if(filename[0] != '/') {
330 #endif
331                 /* The directory is a relative path or a filename. */
332                 directory = get_current_dir_name();
333                 snprintf(buf2, sizeof buf2, "%s" SLASH "%s", directory, filename);
334                 filename = buf2;
335         }
336
337         disable_old_keys(filename, what);
338
339         /* Open it first to keep the inode busy */
340
341         r = fopen(filename, mode);
342
343         if(!r) {
344                 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
345                 return NULL;
346         }
347
348         return r;
349 }
350
351 /*
352   Generate a public/private ECDSA keypair, and ask for a file to store
353   them in.
354 */
355 static bool ecdsa_keygen(bool ask) {
356         ecdsa_t *key;
357         FILE *f;
358         char *pubname, *privname;
359
360         fprintf(stderr, "Generating ECDSA keypair:\n");
361
362         if(!(key = ecdsa_generate())) {
363                 fprintf(stderr, "Error during key generation!\n");
364                 return false;
365         } else
366                 fprintf(stderr, "Done.\n");
367
368         xasprintf(&privname, "%s" SLASH "ecdsa_key.priv", confbase);
369         f = ask_and_open(privname, "private ECDSA key", "a", ask);
370         free(privname);
371
372         if(!f)
373                 return false;
374
375 #ifdef HAVE_FCHMOD
376         /* Make it unreadable for others. */
377         fchmod(fileno(f), 0600);
378 #endif
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);
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);
429         free(privname);
430
431         if(!f)
432                 return false;
433
434 #ifdef HAVE_FCHMOD
435         /* Make it unreadable for others. */
436         fchmod(fileno(f), 0600);
437 #endif
438
439         if(!rsa_write_pem_private_key(key, f)) {
440                 fprintf(stderr, "Error writing private key!\n");
441                 fclose(f);
442                 rsa_free(key);
443                 return false;
444         }
445
446         fclose(f);
447
448         if(name)
449                 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
450         else
451                 xasprintf(&pubname, "%s" SLASH "rsa_key.pub", confbase);
452
453         f = ask_and_open(pubname, "public RSA key", "a", ask);
454         free(pubname);
455
456         if(!f)
457                 return false;
458
459         if(!rsa_write_pem_public_key(key, f)) {
460                 fprintf(stderr, "Error writing public key!\n");
461                 fclose(f);
462                 rsa_free(key);
463                 return false;
464         }
465
466         fclose(f);
467         rsa_free(key);
468
469         return true;
470 }
471
472 char buffer[4096];
473 size_t blen = 0;
474
475 bool recvline(int fd, char *line, size_t len) {
476         char *newline = NULL;
477
478         if(!fd)
479                 abort();
480
481         while(!(newline = memchr(buffer, '\n', blen))) {
482                 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
483                 if(result == -1 && errno == EINTR)
484                         continue;
485                 else if(result <= 0)
486                         return false;
487                 blen += result;
488         }
489
490         if(newline - buffer >= len)
491                 return false;
492
493         len = newline - buffer;
494
495         memcpy(line, buffer, len);
496         line[len] = 0;
497         memmove(buffer, newline + 1, blen - len - 1);
498         blen -= len + 1;
499
500         return true;
501 }
502
503 bool recvdata(int fd, char *data, size_t len) {
504         if(len == -1)
505                 len = blen;
506
507         while(blen < len) {
508                 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
509                 if(result == -1 && errno == EINTR)
510                         continue;
511                 else if(result <= 0)
512                         return false;
513                 blen += result;
514         }
515
516         memcpy(data, buffer, len);
517         memmove(buffer, buffer + len, blen - len);
518         blen -= len;
519
520         return true;
521 }
522
523 bool sendline(int fd, char *format, ...) {
524         static char buffer[4096];
525         char *p = buffer;
526         int blen = 0;
527         va_list ap;
528
529         va_start(ap, format);
530         blen = vsnprintf(buffer, sizeof buffer, format, ap);
531         va_end(ap);
532
533         if(blen < 1 || blen >= sizeof buffer)
534                 return false;
535
536         buffer[blen] = '\n';
537         blen++;
538
539         while(blen) {
540                 int result = send(fd, p, blen, 0);
541                 if(result == -1 && errno == EINTR)
542                         continue;
543                 else if(result <= 0)
544                         return false;
545                 p += result;
546                 blen -= result;
547         }
548
549         return true;
550 }
551
552 static void pcap(int fd, FILE *out, int snaplen) {
553         sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
554         char data[9018];
555
556         struct {
557                 uint32_t magic;
558                 uint16_t major;
559                 uint16_t minor;
560                 uint32_t tz_offset;
561                 uint32_t tz_accuracy;
562                 uint32_t snaplen;
563                 uint32_t ll_type;
564         } header = {
565                 0xa1b2c3d4,
566                 2, 4,
567                 0, 0,
568                 snaplen ?: sizeof data,
569                 1,
570         };
571
572         struct {
573                 uint32_t tv_sec;
574                 uint32_t tv_usec;
575                 uint32_t len;
576                 uint32_t origlen;
577         } packet;
578
579         struct timeval tv;
580
581         fwrite(&header, sizeof header, 1, out);
582         fflush(out);
583
584         char line[32];
585         while(recvline(fd, line, sizeof line)) {
586                 int code, req, len;
587                 int n = sscanf(line, "%d %d %d", &code, &req, &len);
588                 gettimeofday(&tv, NULL);
589                 if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || len > sizeof data)
590                         break;
591                 if(!recvdata(fd, data, len))
592                         break;
593                 packet.tv_sec = tv.tv_sec;
594                 packet.tv_usec = tv.tv_usec;
595                 packet.len = len;
596                 packet.origlen = len;
597                 fwrite(&packet, sizeof packet, 1, out);
598                 fwrite(data, len, 1, out);
599                 fflush(out);
600         }
601 }
602
603 static void logcontrol(int fd, FILE *out, int level) {
604         sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
605         char data[1024];
606         char line[32];
607
608         while(recvline(fd, line, sizeof line)) {
609                 int code, req, len;
610                 int n = sscanf(line, "%d %d %d", &code, &req, &len);
611                 if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || len > sizeof data)
612                         break;
613                 if(!recvdata(fd, data, len))
614                         break;
615                 fwrite(data, len, 1, out);
616                 fputc('\n', out);
617                 fflush(out);
618         }
619 }
620
621 #ifdef HAVE_MINGW
622 static bool remove_service(void) {
623         SC_HANDLE manager = NULL;
624         SC_HANDLE service = NULL;
625         SERVICE_STATUS status = {0};
626
627         manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
628         if(!manager) {
629                 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
630                 return false;
631         }
632
633         service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
634
635         if(!service) {
636                 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
637                 return false;
638         }
639
640         if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
641                 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
642         else
643                 fprintf(stderr, "%s service stopped\n", identname);
644
645         if(!DeleteService(service)) {
646                 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
647                 return false;
648         }
649
650         fprintf(stderr, "%s service removed\n", identname);
651
652         return true;
653 }
654 #endif
655
656 bool connect_tincd(bool verbose) {
657         if(fd >= 0) {
658                 fd_set r;
659                 FD_ZERO(&r);
660                 FD_SET(fd, &r);
661                 struct timeval tv = {0, 0};
662                 if(select(fd + 1, &r, NULL, NULL, &tv)) {
663                         fprintf(stderr, "Previous connection to tincd lost, reconnecting.\n");
664                         close(fd);
665                         fd = -1;
666                 } else {
667                         return true;
668                 }
669         }
670
671         FILE *f = fopen(pidfilename, "r");
672         if(!f) {
673                 if(verbose)
674                         fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
675                 return false;
676         }
677
678         char host[129];
679         char port[129];
680
681         if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
682                 if(verbose)
683                         fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
684                 fclose(f);
685                 return false;
686         }
687
688         fclose(f);
689
690 #ifdef HAVE_MINGW
691         if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
692                 if(verbose)
693                         fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
694                 return false;
695         }
696 #endif
697
698 #ifndef HAVE_MINGW
699         struct sockaddr_un sa;
700         sa.sun_family = AF_UNIX;
701         strncpy(sa.sun_path, unixsocketname, sizeof sa.sun_path);
702
703         fd = socket(AF_UNIX, SOCK_STREAM, 0);
704         if(fd < 0) {
705                 if(verbose)
706                         fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
707                 return false;
708         }
709
710         if(connect(fd, (struct sockaddr *)&sa, sizeof sa) < 0) {
711                 if(verbose)
712                         fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
713                 close(fd);
714                 fd = -1;
715                 return false;
716         }
717 #else
718         struct addrinfo hints = {
719                 .ai_family = AF_UNSPEC,
720                 .ai_socktype = SOCK_STREAM,
721                 .ai_protocol = IPPROTO_TCP,
722                 .ai_flags = 0,
723         };
724
725         struct addrinfo *res = NULL;
726
727         if(getaddrinfo(host, port, &hints, &res) || !res) {
728                 if(verbose)
729                         fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
730                 return false;
731         }
732
733         fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
734         if(fd < 0) {
735                 if(verbose)
736                         fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
737                 return false;
738         }
739
740 #ifdef HAVE_MINGW
741         unsigned long arg = 0;
742
743         if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
744                 if(verbose)
745                         fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
746         }
747 #endif
748
749         if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
750                 if(verbose)
751                         fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
752                 close(fd);
753                 fd = -1;
754                 return false;
755         }
756
757         freeaddrinfo(res);
758 #endif
759
760         char data[4096];
761         int version;
762
763         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
764                 if(verbose)
765                         fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
766                 close(fd);
767                 fd = -1;
768                 return false;
769         }
770
771         sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
772
773         if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
774                 if(verbose)
775                         fprintf(stderr, "Could not fully establish control socket connection\n");
776                 close(fd);
777                 fd = -1;
778                 return false;
779         }
780
781         return true;
782 }
783
784
785 static int cmd_start(int argc, char *argv[]) {
786         if(connect_tincd(false)) {
787                 if(netname)
788                         fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
789                 else
790                         fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
791                 return 0;
792         }
793
794         char *c;
795         char *slash = strrchr(program_name, '/');
796
797 #ifdef HAVE_MINGW
798         if ((c = strrchr(program_name, '\\')) > slash)
799                 slash = c;
800 #endif
801
802         if (slash++)
803                 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
804         else
805                 c = "tincd";
806
807         int nargc = 0;
808         char **nargv = xzalloc((optind + argc) * sizeof *nargv);
809
810         nargv[nargc++] = c;
811         for(int i = 1; i < optind; i++)
812                 nargv[nargc++] = orig_argv[i];
813         for(int i = 1; i < argc; i++)
814                 nargv[nargc++] = argv[i];
815
816 #ifdef HAVE_MINGW
817         execvp(c, nargv);
818         fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
819         return 1;
820 #else
821         pid_t pid = fork();
822         if(pid == -1) {
823                 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
824                 free(nargv);
825                 return 1;
826         }
827
828         if(!pid)
829                 exit(execvp(c, nargv));
830
831         free(nargv);
832
833         int status = -1;
834         if(waitpid(pid, &status, 0) != 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         {"LocalDiscovery", VAR_SERVER},
1305         {"MACExpire", VAR_SERVER},
1306         {"MaxConnectionBurst", VAR_SERVER},
1307         {"MaxOutputBufferSize", VAR_SERVER},
1308         {"MaxTimeout", VAR_SERVER},
1309         {"Mode", VAR_SERVER | VAR_SAFE},
1310         {"Name", VAR_SERVER},
1311         {"PingInterval", VAR_SERVER},
1312         {"PingTimeout", VAR_SERVER},
1313         {"PriorityInheritance", VAR_SERVER},
1314         {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
1315         {"PrivateKeyFile", VAR_SERVER},
1316         {"ProcessPriority", VAR_SERVER},
1317         {"Proxy", VAR_SERVER},
1318         {"ReplayWindow", VAR_SERVER},
1319         {"ScriptsExtension", VAR_SERVER},
1320         {"ScriptsInterpreter", VAR_SERVER},
1321         {"StrictSubnets", VAR_SERVER},
1322         {"TunnelServer", VAR_SERVER},
1323         {"UDPRcvBuf", VAR_SERVER},
1324         {"UDPSndBuf", VAR_SERVER},
1325         {"VDEGroup", VAR_SERVER},
1326         {"VDEPort", VAR_SERVER},
1327         /* Host configuration */
1328         {"Address", VAR_HOST | VAR_MULTIPLE},
1329         {"Cipher", VAR_SERVER | VAR_HOST},
1330         {"ClampMSS", VAR_SERVER | VAR_HOST},
1331         {"Compression", VAR_SERVER | VAR_HOST},
1332         {"Digest", VAR_SERVER | VAR_HOST},
1333         {"ECDSAPublicKey", VAR_HOST},
1334         {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
1335         {"IndirectData", VAR_SERVER | VAR_HOST},
1336         {"MACLength", VAR_SERVER | VAR_HOST},
1337         {"PMTU", VAR_SERVER | VAR_HOST},
1338         {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
1339         {"Port", VAR_HOST},
1340         {"PublicKey", VAR_HOST | VAR_OBSOLETE},
1341         {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
1342         {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
1343         {"TCPOnly", VAR_SERVER | VAR_HOST},
1344         {"Weight", VAR_HOST | VAR_SAFE},
1345         {NULL, 0}
1346 };
1347
1348 static int cmd_config(int argc, char *argv[]) {
1349         if(argc < 2) {
1350                 fprintf(stderr, "Invalid number of arguments.\n");
1351                 return 1;
1352         }
1353
1354         if(strcasecmp(argv[0], "config"))
1355                 argv--, argc++;
1356
1357         int action = -2;
1358         if(!strcasecmp(argv[1], "get")) {
1359                 argv++, argc--;
1360         } else if(!strcasecmp(argv[1], "add")) {
1361                 argv++, argc--, action = 1;
1362         } else if(!strcasecmp(argv[1], "del")) {
1363                 argv++, argc--, action = -1;
1364         } else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
1365                 argv++, argc--, action = 0;
1366         }
1367
1368         if(argc < 2) {
1369                 fprintf(stderr, "Invalid number of arguments.\n");
1370                 return 1;
1371         }
1372
1373         // Concatenate the rest of the command line
1374         strncpy(line, argv[1], sizeof line - 1);
1375         for(int i = 2; i < argc; i++) {
1376                 strncat(line, " ", sizeof line - 1 - strlen(line));
1377                 strncat(line, argv[i], sizeof line - 1 - strlen(line));
1378         }
1379
1380         // Liberal parsing into node name, variable name and value.
1381         char *node = NULL;
1382         char *variable;
1383         char *value;
1384         int len;
1385
1386         len = strcspn(line, "\t =");
1387         value = line + len;
1388         value += strspn(value, "\t ");
1389         if(*value == '=') {
1390                 value++;
1391                 value += strspn(value, "\t ");
1392         }
1393         line[len] = '\0';
1394         variable = strchr(line, '.');
1395         if(variable) {
1396                 node = line;
1397                 *variable++ = 0;
1398         } else {
1399                 variable = line;
1400         }
1401
1402         if(!*variable) {
1403                 fprintf(stderr, "No variable given.\n");
1404                 return 1;
1405         }
1406
1407         if(action >= 0 && !*value) {
1408                 fprintf(stderr, "No value for variable given.\n");
1409                 return 1;
1410         }
1411
1412         if(action < -1 && *value)
1413                 action = 0;
1414
1415         /* Some simple checks. */
1416         bool found = 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                 break;
1456         }
1457
1458         if(node && !check_id(node)) {
1459                 fprintf(stderr, "Invalid name for node.\n");
1460                 return 1;
1461         }
1462
1463         if(!found) {
1464                 if(force || action < 0) {
1465                         fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1466                 } else {
1467                         fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1468                         return 1;
1469                 }
1470         }
1471
1472         // Open the right configuration file.
1473         char *filename;
1474         if(node)
1475                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, node);
1476         else
1477                 filename = tinc_conf;
1478
1479         FILE *f = fopen(filename, "r");
1480         if(!f) {
1481                 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1482                 return 1;
1483         }
1484
1485         char *tmpfile = NULL;
1486         FILE *tf = NULL;
1487
1488         if(action >= -1) {
1489                 xasprintf(&tmpfile, "%s.config.tmp", filename);
1490                 tf = fopen(tmpfile, "w");
1491                 if(!tf) {
1492                         fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1493                         fclose(f);
1494                         return 1;
1495                 }
1496         }
1497
1498         // Copy the file, making modifications on the fly, unless we are just getting a value.
1499         char buf1[4096];
1500         char buf2[4096];
1501         bool set = false;
1502         bool removed = false;
1503         found = false;
1504
1505         while(fgets(buf1, sizeof buf1, f)) {
1506                 buf1[sizeof buf1 - 1] = 0;
1507                 strncpy(buf2, buf1, sizeof buf2);
1508
1509                 // Parse line in a simple way
1510                 char *bvalue;
1511                 int len;
1512
1513                 len = strcspn(buf2, "\t =");
1514                 bvalue = buf2 + len;
1515                 bvalue += strspn(bvalue, "\t ");
1516                 if(*bvalue == '=') {
1517                         bvalue++;
1518                         bvalue += strspn(bvalue, "\t ");
1519                 }
1520                 rstrip(bvalue);
1521                 buf2[len] = '\0';
1522
1523                 // Did it match?
1524                 if(!strcasecmp(buf2, variable)) {
1525                         // Get
1526                         if(action < -1) {
1527                                 found = true;
1528                                 printf("%s\n", bvalue);
1529                         // Del
1530                         } else if(action == -1) {
1531                                 if(!*value || !strcasecmp(bvalue, value)) {
1532                                         removed = true;
1533                                         continue;
1534                                 }
1535                         // Set
1536                         } else if(action == 0) {
1537                                 // Already set? Delete the rest...
1538                                 if(set)
1539                                         continue;
1540                                 // Otherwise, replace.
1541                                 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1542                                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1543                                         return 1;
1544                                 }
1545                                 set = true;
1546                                 continue;
1547                         }
1548                 }
1549
1550                 if(action >= -1) {
1551                         // Copy original line...
1552                         if(fputs(buf1, tf) < 0) {
1553                                 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1554                                 return 1;
1555                         }
1556
1557                         // Add newline if it is missing...
1558                         if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
1559                                 if(fputc('\n', tf) < 0) {
1560                                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1561                                         return 1;
1562                                 }
1563                         }
1564                 }
1565         }
1566
1567         // Make sure we read everything...
1568         if(ferror(f) || !feof(f)) {
1569                 fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
1570                 return 1;
1571         }
1572
1573         if(fclose(f)) {
1574                 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
1575                 return 1;
1576         }
1577
1578         // Add new variable if necessary.
1579         if(action > 0 || (action == 0 && !set)) {
1580                 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1581                         fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1582                         return 1;
1583                 }
1584         }
1585
1586         if(action < -1) {
1587                 if(!found)
1588                         fprintf(stderr, "No matching configuration variables found.\n");
1589                 return 0;
1590         }
1591
1592         // Make sure we wrote everything...
1593         if(fclose(tf)) {
1594                 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1595                 return 1;
1596         }
1597
1598         // Could we find what we had to remove?
1599         if(action < 0 && !removed) {
1600                 remove(tmpfile);
1601                 fprintf(stderr, "No configuration variables deleted.\n");
1602                 return *value;
1603         }
1604
1605         // Replace the configuration file with the new one
1606 #ifdef HAVE_MINGW
1607         if(remove(filename)) {
1608                 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1609                 return 1;
1610         }
1611 #endif
1612         if(rename(tmpfile, filename)) {
1613                 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1614                 return 1;
1615         }
1616
1617         // Silently try notifying a running tincd of changes.
1618         if(connect_tincd(false))
1619                 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1620
1621         return 0;
1622 }
1623
1624 bool check_id(const char *name) {
1625         if(!name || !*name)
1626                 return false;
1627
1628         for(int i = 0; i < strlen(name); i++) {
1629                 if(!isalnum(name[i]) && name[i] != '_')
1630                         return false;
1631         }
1632
1633         return true;
1634 }
1635
1636 static int cmd_init(int argc, char *argv[]) {
1637         if(!access(tinc_conf, F_OK)) {
1638                 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1639                 return 1;
1640         }
1641
1642         if(argc > 2) {
1643                 fprintf(stderr, "Too many arguments!\n");
1644                 return 1;
1645         } else if(argc < 2) {
1646                 if(tty) {
1647                         char buf[1024];
1648                         fprintf(stdout, "Enter the Name you want your tinc node to have: ");
1649                         fflush(stdout);
1650                         if(!fgets(buf, sizeof buf, stdin)) {
1651                                 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1652                                 return 1;
1653                         }
1654                         int len = rstrip(buf);
1655                         if(!len) {
1656                                 fprintf(stderr, "No name given!\n");
1657                                 return 1;
1658                         }
1659                         name = strdup(buf);
1660                 } else {
1661                         fprintf(stderr, "No Name given!\n");
1662                         return 1;
1663                 }
1664         } else {
1665                 name = strdup(argv[1]);
1666                 if(!*name) {
1667                         fprintf(stderr, "No Name given!\n");
1668                         return 1;
1669                 }
1670         }
1671
1672         if(!check_id(name)) {
1673                 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1674                 return 1;
1675         }
1676
1677         if(mkdir(confdir, 0755) && errno != EEXIST) {
1678                 fprintf(stderr, "Could not create directory %s: %s\n", CONFDIR, strerror(errno));
1679                 return 1;
1680         }
1681
1682         if(mkdir(confbase, 0755) && errno != EEXIST) {
1683                 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1684                 return 1;
1685         }
1686
1687         if(mkdir(hosts_dir, 0755) && errno != EEXIST) {
1688                 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1689                 return 1;
1690         }
1691
1692         FILE *f = fopen(tinc_conf, "w");
1693         if(!f) {
1694                 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1695                 return 1;
1696         }
1697
1698         fprintf(f, "Name = %s\n", name);
1699         fclose(f);
1700
1701         if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1702                 return 1;
1703
1704 #ifndef HAVE_MINGW
1705         char *filename;
1706         xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1707         if(access(filename, F_OK)) {
1708                 FILE *f = fopen(filename, "w");
1709                 if(!f) {
1710                         fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1711                         return 1;
1712                 }
1713                 mode_t mask = umask(0);
1714                 umask(mask);
1715                 fchmod(fileno(f), 0755 & ~mask);
1716                 fprintf(f, "#!/bin/sh\n\necho 'Unconfigured tinc-up script, please edit!'\n\n#ifconfig $INTERFACE <your vpn IP address> netmask <netmask of whole VPN>\n");
1717                 fclose(f);
1718         }
1719 #endif
1720
1721         return 0;
1722
1723 }
1724
1725 static int cmd_generate_keys(int argc, char *argv[]) {
1726         if(argc > 2) {
1727                 fprintf(stderr, "Too many arguments!\n");
1728                 return 1;
1729         }
1730
1731         if(!name)
1732                 name = get_my_name(false);
1733
1734         return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1735 }
1736
1737 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1738         if(argc > 2) {
1739                 fprintf(stderr, "Too many arguments!\n");
1740                 return 1;
1741         }
1742
1743         if(!name)
1744                 name = get_my_name(false);
1745
1746         return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1747 }
1748
1749 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1750         if(argc > 1) {
1751                 fprintf(stderr, "Too many arguments!\n");
1752                 return 1;
1753         }
1754
1755         if(!name)
1756                 name = get_my_name(false);
1757
1758         return !ecdsa_keygen(true);
1759 }
1760
1761 static int cmd_help(int argc, char *argv[]) {
1762         usage(false);
1763         return 0;
1764 }
1765
1766 static int cmd_version(int argc, char *argv[]) {
1767         if(argc > 1) {
1768                 fprintf(stderr, "Too many arguments!\n");
1769                 return 1;
1770         }
1771
1772         version();
1773         return 0;
1774 }
1775
1776 static int cmd_info(int argc, char *argv[]) {
1777         if(argc != 2) {
1778                 fprintf(stderr, "Invalid number of arguments.\n");
1779                 return 1;
1780         }
1781
1782         if(!connect_tincd(true))
1783                 return 1;
1784
1785         return info(fd, argv[1]);
1786 }
1787
1788 static const char *conffiles[] = {
1789         "tinc.conf",
1790         "tinc-up",
1791         "tinc-down",
1792         "subnet-up",
1793         "subnet-down",
1794         "host-up",
1795         "host-down",
1796         NULL,
1797 };
1798
1799 static int cmd_edit(int argc, char *argv[]) {
1800         if(argc != 2) {
1801                 fprintf(stderr, "Invalid number of arguments.\n");
1802                 return 1;
1803         }
1804
1805         char *filename = NULL;
1806
1807         if(strncmp(argv[1], "hosts" SLASH, 6)) {
1808                 for(int i = 0; conffiles[i]; i++) {
1809                         if(!strcmp(argv[1], conffiles[i])) {
1810                                 xasprintf(&filename, "%s" SLASH "%s", confbase, argv[1]);
1811                                 break;
1812                         }
1813                 }
1814         } else {
1815                 argv[1] += 6;
1816         }
1817
1818         if(!filename) {
1819                 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1820                 char *dash = strchr(argv[1], '-');
1821                 if(dash) {
1822                         *dash++ = 0;
1823                         if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1824                                 fprintf(stderr, "Invalid configuration filename.\n");
1825                                 return 1;
1826                         }
1827                 }
1828         }
1829
1830         char *command;
1831 #ifndef HAVE_MINGW
1832         xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1833 #else
1834         xasprintf(&command, "edit \"%s\"", filename);
1835 #endif
1836         int result = system(command);
1837         if(result)
1838                 return result;
1839
1840         // Silently try notifying a running tincd of changes.
1841         if(connect_tincd(false))
1842                 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1843
1844         return 0;
1845 }
1846
1847 static int export(const char *name, FILE *out) {
1848         char *filename;
1849         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1850         FILE *in = fopen(filename, "r");
1851         if(!in) {
1852                 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1853                 return 1;
1854         }
1855
1856         fprintf(out, "Name = %s\n", name);
1857         char buf[4096];
1858         while(fgets(buf, sizeof buf, in)) {
1859                 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1860                         fputs(buf, out);
1861         }
1862
1863         if(ferror(in)) {
1864                 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1865                 fclose(in);
1866                 return 1;
1867         }
1868
1869         fclose(in);
1870         return 0;
1871 }
1872
1873 static int cmd_export(int argc, char *argv[]) {
1874         if(argc > 1) {
1875                 fprintf(stderr, "Too many arguments!\n");
1876                 return 1;
1877         }
1878
1879         char *name = get_my_name(true);
1880         if(!name)
1881                 return 1;
1882
1883         int result = export(name, stdout);
1884         if(!tty)
1885                 fclose(stdout);
1886
1887         free(name);
1888         return result;
1889 }
1890
1891 static int cmd_export_all(int argc, char *argv[]) {
1892         if(argc > 1) {
1893                 fprintf(stderr, "Too many arguments!\n");
1894                 return 1;
1895         }
1896
1897         DIR *dir = opendir(hosts_dir);
1898         if(!dir) {
1899                 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1900                 return 1;
1901         }
1902
1903         bool first = true;
1904         int result = 0;
1905         struct dirent *ent;
1906
1907         while((ent = readdir(dir))) {
1908                 if(!check_id(ent->d_name))
1909                         continue;
1910
1911                 if(first)
1912                         first = false;
1913                 else
1914                         printf("#---------------------------------------------------------------#\n");
1915
1916                 result |= export(ent->d_name, stdout);
1917         }
1918
1919         closedir(dir);
1920         if(!tty)
1921                 fclose(stdout);
1922         return result;
1923 }
1924
1925 static int cmd_import(int argc, char *argv[]) {
1926         if(argc > 1) {
1927                 fprintf(stderr, "Too many arguments!\n");
1928                 return 1;
1929         }
1930
1931         FILE *in = stdin;
1932         FILE *out = NULL;
1933
1934         char buf[4096];
1935         char name[4096];
1936         char *filename = NULL;
1937         int count = 0;
1938         bool firstline = true;
1939
1940         while(fgets(buf, sizeof buf, in)) {
1941                 if(sscanf(buf, "Name = %s", name) == 1) {
1942                         firstline = false;
1943
1944                         if(!check_id(name)) {
1945                                 fprintf(stderr, "Invalid Name in input!\n");
1946                                 return 1;
1947                         }
1948
1949                         if(out)
1950                                 fclose(out);
1951
1952                         free(filename);
1953                         xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1954
1955                         if(!force && !access(filename, F_OK)) {
1956                                 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
1957                                 out = NULL;
1958                                 continue;
1959                         }
1960
1961                         out = fopen(filename, "w");
1962                         if(!out) {
1963                                 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
1964                                 return 1;
1965                         }
1966
1967                         count++;
1968                         continue;
1969                 } else if(firstline) {
1970                         fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
1971                         firstline = false;
1972                 }
1973
1974
1975                 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
1976                         continue;
1977
1978                 if(out) {
1979                         if(fputs(buf, out) < 0) {
1980                                 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
1981                                 return 1;
1982                         }
1983                 }
1984         }
1985
1986         if(out)
1987                 fclose(out);
1988
1989         if(count) {
1990                 fprintf(stderr, "Imported %d host configuration files.\n", count);
1991                 return 0;
1992         } else {
1993                 fprintf(stderr, "No host configuration files imported.\n");
1994                 return 1;
1995         }
1996 }
1997
1998 static int cmd_exchange(int argc, char *argv[]) {
1999         return cmd_export(argc, argv) ?: cmd_import(argc, argv);
2000 }
2001
2002 static int cmd_exchange_all(int argc, char *argv[]) {
2003         return cmd_export_all(argc, argv) ?: cmd_import(argc, argv);
2004 }
2005
2006 static const struct {
2007         const char *command;
2008         int (*function)(int argc, char *argv[]);
2009         bool hidden;
2010 } commands[] = {
2011         {"start", cmd_start},
2012         {"stop", cmd_stop},
2013         {"restart", cmd_restart},
2014         {"reload", cmd_reload},
2015         {"dump", cmd_dump},
2016         {"purge", cmd_purge},
2017         {"debug", cmd_debug},
2018         {"retry", cmd_retry},
2019         {"connect", cmd_connect},
2020         {"disconnect", cmd_disconnect},
2021         {"top", cmd_top},
2022         {"pcap", cmd_pcap},
2023         {"log", cmd_log},
2024         {"pid", cmd_pid},
2025         {"config", cmd_config, true},
2026         {"add", cmd_config},
2027         {"del", cmd_config},
2028         {"get", cmd_config},
2029         {"set", cmd_config},
2030         {"init", cmd_init},
2031         {"generate-keys", cmd_generate_keys},
2032         {"generate-rsa-keys", cmd_generate_rsa_keys},
2033         {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
2034         {"help", cmd_help},
2035         {"version", cmd_version},
2036         {"info", cmd_info},
2037         {"edit", cmd_edit},
2038         {"export", cmd_export},
2039         {"export-all", cmd_export_all},
2040         {"import", cmd_import},
2041         {"exchange", cmd_exchange},
2042         {"exchange-all", cmd_exchange_all},
2043         {"invite", cmd_invite},
2044         {"join", cmd_join},
2045         {NULL, NULL},
2046 };
2047
2048 #ifdef HAVE_READLINE
2049 static char *complete_command(const char *text, int state) {
2050         static int i;
2051
2052         if(!state)
2053                 i = 0;
2054         else
2055                 i++;
2056
2057         while(commands[i].command) {
2058                 if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text)))
2059                         return xstrdup(commands[i].command);
2060                 i++;
2061         }
2062
2063         return NULL;
2064 }
2065
2066 static char *complete_dump(const char *text, int state) {
2067         const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
2068         static int i;
2069
2070         if(!state)
2071                 i = 0;
2072         else
2073                 i++;
2074
2075         while(matches[i]) {
2076                 if(!strncasecmp(matches[i], text, strlen(text)))
2077                         return xstrdup(matches[i]);
2078                 i++;
2079         }
2080
2081         return NULL;
2082 }
2083
2084 static char *complete_config(const char *text, int state) {
2085         static int i;
2086
2087         if(!state)
2088                 i = 0;
2089         else
2090                 i++;
2091
2092         while(variables[i].name) {
2093                 char *dot = strchr(text, '.');
2094                 if(dot) {
2095                         if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
2096                                 char *match;
2097                                 xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
2098                                 return match;
2099                         }
2100                 } else {
2101                         if(!strncasecmp(variables[i].name, text, strlen(text)))
2102                                 return xstrdup(variables[i].name);
2103                 }
2104                 i++;
2105         }
2106
2107         return NULL;
2108 }
2109
2110 static char *complete_info(const char *text, int state) {
2111         static int i;
2112         if(!state) {
2113                 i = 0;
2114                 if(!connect_tincd(false))
2115                         return NULL;
2116                 // Check the list of nodes
2117                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
2118                 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
2119         }
2120
2121         while(recvline(fd, line, sizeof line)) {
2122                 char item[4096];
2123                 int n = sscanf(line, "%d %d %s", &code, &req, item);
2124                 if(n == 2) {
2125                         i++;
2126                         if(i >= 2)
2127                                 break;
2128                         else
2129                                 continue;
2130                 }
2131
2132                 if(n != 3) {
2133                         fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
2134                         break;
2135                 }
2136
2137                 if(!strncmp(item, text, strlen(text)))
2138                         return xstrdup(strip_weight(item));
2139         }
2140
2141         return NULL;
2142 }
2143
2144 static char *complete_nothing(const char *text, int state) {
2145         return NULL;
2146 }
2147
2148 static char **completion (const char *text, int start, int end) {
2149         char **matches = NULL;
2150
2151         if(!start)
2152                 matches = rl_completion_matches(text, complete_command);
2153         else if(!strncasecmp(rl_line_buffer, "dump ", 5))
2154                 matches = rl_completion_matches(text, complete_dump);
2155         else if(!strncasecmp(rl_line_buffer, "add ", 4))
2156                 matches = rl_completion_matches(text, complete_config);
2157         else if(!strncasecmp(rl_line_buffer, "del ", 4))
2158                 matches = rl_completion_matches(text, complete_config);
2159         else if(!strncasecmp(rl_line_buffer, "get ", 4))
2160                 matches = rl_completion_matches(text, complete_config);
2161         else if(!strncasecmp(rl_line_buffer, "set ", 4))
2162                 matches = rl_completion_matches(text, complete_config);
2163         else if(!strncasecmp(rl_line_buffer, "info ", 5))
2164                 matches = rl_completion_matches(text, complete_info);
2165
2166         return matches;
2167 }
2168 #endif
2169
2170 static int cmd_shell(int argc, char *argv[]) {
2171         char *prompt;
2172         xasprintf(&prompt, "%s> ", identname);
2173         int result = 0;
2174         char buf[4096];
2175         char *line = NULL;
2176         int maxargs = argc + 16;
2177         char **nargv = xmalloc(maxargs * sizeof *nargv);
2178
2179         for(int i = 0; i < argc; i++)
2180                 nargv[i] = argv[i];
2181
2182 #ifdef HAVE_READLINE
2183         rl_readline_name = "tinc";
2184         rl_completion_entry_function = complete_nothing;
2185         rl_attempted_completion_function = completion;
2186         rl_filename_completion_desired = 0;
2187         char *copy = NULL;
2188 #endif
2189
2190         while(true) {
2191 #ifdef HAVE_READLINE
2192                 if(tty) {
2193                         free(copy);
2194                         free(line);
2195                         rl_basic_word_break_characters = "\t\n ";
2196                         line = readline(prompt);
2197                         if(line)
2198                                 copy = xstrdup(line);
2199                 } else {
2200                         line = fgets(buf, sizeof buf, stdin);
2201                 }
2202 #else
2203                 if(tty)
2204                         fputs(prompt, stdout);
2205
2206                 line = fgets(buf, sizeof buf, stdin);
2207 #endif
2208
2209                 if(!line)
2210                         break;
2211
2212                 /* Ignore comments */
2213
2214                 if(*line == '#')
2215                         continue;
2216
2217                 /* Split */
2218
2219                 int nargc = argc;
2220                 char *p = line + strspn(line, " \t\n");
2221                 char *next = strtok(p, " \t\n");
2222
2223                 while(p && *p) {
2224                         if(nargc >= maxargs) {
2225                                 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
2226                                 abort();
2227                                 maxargs *= 2;
2228                                 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
2229                         }
2230
2231                         nargv[nargc++] = p;
2232                         p = next;
2233                         next = strtok(NULL, " \t\n");
2234                 }
2235
2236                 if(nargc == argc)
2237                         continue;
2238
2239                 if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit"))
2240                         return result;
2241
2242                 bool found = false;
2243
2244                 for(int i = 0; commands[i].command; i++) {
2245                         if(!strcasecmp(nargv[argc], commands[i].command)) {
2246                                 result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
2247                                 found = true;
2248                                 break;
2249                         }
2250                 }
2251
2252 #ifdef HAVE_READLINE
2253                 if(tty && found)
2254                         add_history(copy);
2255 #endif
2256
2257                 if(!found) {
2258                         fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
2259                         result |= 1;
2260                 }
2261         }
2262
2263         free(nargv);
2264
2265         if(tty)
2266                 printf("\n");
2267         return result;
2268 }
2269
2270
2271 int main(int argc, char *argv[]) {
2272         program_name = argv[0];
2273         orig_argv = argv;
2274         orig_argc = argc;
2275
2276         if(!parse_options(argc, argv))
2277                 return 1;
2278
2279         make_names();
2280         xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2281         xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2282
2283         if(show_version) {
2284                 version();
2285                 return 0;
2286         }
2287
2288         if(show_help) {
2289                 usage(false);
2290                 return 0;
2291         }
2292
2293         crypto_init();
2294
2295         tty = isatty(0) && isatty(1);
2296
2297         if(optind >= argc)
2298                 return cmd_shell(argc, argv);
2299
2300         for(int i = 0; commands[i].command; i++) {
2301                 if(!strcasecmp(argv[optind], commands[i].command))
2302                         return commands[i].function(argc - optind, argv + optind);
2303         }
2304
2305         fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);
2306         usage(true);
2307         return 1;
2308 }