2 tincctl.c -- Controlling a running tincd
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
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.
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.
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.
25 #include "readline/readline.h"
26 #include "readline/history.h"
31 #include "control_common.h"
35 #include "invitation.h"
42 #define MSG_NOSIGNAL 0
45 static char **orig_argv;
48 /* If nonzero, display usage information and exit. */
49 static bool show_help = false;
51 /* If nonzero, print the version on standard output and exit. */
52 static bool show_version = false;
54 static char *name = NULL;
55 static char controlcookie[1025];
56 char *tinc_conf = NULL;
57 char *hosts_dir = NULL;
60 // Horrible global variables...
67 static bool force = false;
69 bool confbasegiven = false;
70 bool netnamegiven = false;
71 char *scriptinterpreter = NULL;
72 char *scriptextension = "";
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},
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");
95 static void usage(bool status) {
97 fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
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"
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"
133 " top Show real-time statistics\n"
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"
146 printf("Report bugs to bugs@meshlink.io.\n");
150 static bool parse_options(int argc, char **argv) {
152 int option_index = 0;
154 while((r = getopt_long(argc, argv, "+c:n:", long_options, &option_index)) != EOF) {
156 case 0: /* long option */
159 case 'c': /* config file */
160 confbase = xstrdup(optarg);
161 confbasegiven = true;
164 case 'n': /* net name given */
165 netname = xstrdup(optarg);
168 case 1: /* show help */
172 case 2: /* show version */
176 case 3: /* open control socket here */
177 pidfilename = xstrdup(optarg);
184 case '?': /* wrong options */
193 if(!netname && (netname = getenv("NETNAME")))
194 netname = xstrdup(netname);
196 /* netname "." is special: a "top-level name" */
198 if(netname && (!*netname || !strcmp(netname, "."))) {
203 if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
204 fprintf(stderr, "Invalid character in netname!\n");
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. */
215 FILE *fopenmask(const char *filename, const char *mode, mode_t perms) {
216 mode_t mask = umask(0);
219 FILE *f = fopen(filename, mode);
221 if((perms & 0444) && f)
222 fchmod(fileno(f), perms);
228 static void disable_old_keys(const char *filename, const char *what) {
229 char tmpfile[PATH_MAX] = "";
231 bool disabled = false;
236 r = fopen(filename, "r");
240 snprintf(tmpfile, sizeof tmpfile, "%s.tmp", filename);
242 struct stat st = {.st_mode = 0600};
243 fstat(fileno(r), &st);
244 w = fopenmask(tmpfile, "w", st.st_mode);
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"))) {
254 bool ecdsapubkey = !strncasecmp(buf, "ECDSAPublicKey", 14) && strchr(" \t=", buf[14]) && strstr(what, "ECDSA");
260 if(block || ecdsapubkey)
262 if(fputs(buf, w) < 0) {
268 if(block && !strncmp(buf, "-----END ", 9))
275 if(ferror(r) || fclose(r) < 0)
280 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
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);
293 if(rename(tmpfile, filename)) {
295 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
300 fprintf(stderr, "Warning: old key(s) found and disabled.\n");
307 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask, mode_t perms) {
313 /* Check stdin and stdout */
315 /* Ask for a file and/or directory name. */
316 fprintf(stderr, "Please enter a file to save %s to [%s]: ", what, filename);
318 if(fgets(buf, sizeof buf, stdin) == NULL) {
319 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
323 size_t len = strlen(buf);
332 if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
334 if(filename[0] != '/') {
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);
342 disable_old_keys(filename, what);
344 /* Open it first to keep the inode busy */
346 r = fopenmask(filename, mode, perms);
349 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
357 Generate a public/private ECDSA keypair, and ask for a file to store
360 static bool ecdsa_keygen(bool ask) {
363 char pubname[PATH_MAX], privname[PATH_MAX];
365 fprintf(stderr, "Generating ECDSA keypair:\n");
367 if(!(key = ecdsa_generate())) {
368 fprintf(stderr, "Error during key generation!\n");
371 fprintf(stderr, "Done.\n");
373 snprintf(privname,PATH_MAX, "%s" SLASH "ecdsa_key.priv", confbase);
374 f = ask_and_open(privname, "private ECDSA key", "a", ask, 0600);
379 if(!ecdsa_write_pem_private_key(key, f)) {
380 fprintf(stderr, "Error writing private key!\n");
389 snprintf(pubname, PATH_MAX,"%s" SLASH "hosts" SLASH "%s", confbase, name);
391 snprintf(pubname, PATH_MAX,"%s" SLASH "ecdsa_key.pub", confbase);
393 f = ask_and_open(pubname, "public ECDSA key", "a", ask, 0666);
398 char *pubkey = ecdsa_get_base64_public_key(key);
399 fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
408 Generate a public/private RSA keypair, and ask for a file to store
411 static bool rsa_keygen(int bits, bool ask) {
414 char pubname[PATH_MAX], privname[PATH_MAX];
416 fprintf(stderr, "Generating %d bits keys:\n", bits);
418 if(!(key = rsa_generate(bits, 0x10001))) {
419 fprintf(stderr, "Error during key generation!\n");
422 fprintf(stderr, "Done.\n");
424 snprintf(privname,PATH_MAX, "%s" SLASH "rsa_key.priv", confbase);
425 f = ask_and_open(privname, "private RSA key", "a", ask, 0600);
430 if(!rsa_write_pem_private_key(key, f)) {
431 fprintf(stderr, "Error writing private key!\n");
440 snprintf(pubname,PATH_MAX,"%s" SLASH "hosts" SLASH "%s", confbase, name);
442 snprintf(pubname,PATH_MAX,"%s" SLASH "rsa_key.pub", confbase);
444 f = ask_and_open(pubname, "public RSA key", "a", ask, 0666);
449 if(!rsa_write_pem_public_key(key, f)) {
450 fprintf(stderr, "Error writing public key!\n");
465 bool recvline(int fd, char *line, size_t len) {
466 char *newline = NULL;
471 while(!(newline = memchr(buffer, '\n', blen))) {
472 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
473 if(result == -1 && errno == EINTR)
480 if(newline - buffer >= len)
483 len = newline - buffer;
485 memcpy(line, buffer, len);
487 memmove(buffer, newline + 1, blen - len - 1);
493 bool recvdata(int fd, char *data, size_t len) {
498 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
499 if(result == -1 && errno == EINTR)
506 memcpy(data, buffer, len);
507 memmove(buffer, buffer + len, blen - len);
513 bool sendline(int fd, char *format, ...) {
514 static char buffer[4096];
519 va_start(ap, format);
520 blen = vsnprintf(buffer, sizeof buffer, format, ap);
523 if(blen < 1 || blen >= sizeof buffer)
530 int result = send(fd, p, blen, MSG_NOSIGNAL);
531 if(result == -1 && errno == EINTR)
542 static void pcap(int fd, FILE *out, int snaplen) {
543 sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
551 uint32_t tz_accuracy;
558 snaplen ?: sizeof data,
571 fwrite(&header, sizeof header, 1, out);
575 while(recvline(fd, line, sizeof line)) {
577 int n = sscanf(line, "%d %d %d", &code, &req, &len);
578 gettimeofday(&tv, NULL);
579 if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || len > sizeof data)
581 if(!recvdata(fd, data, len))
583 packet.tv_sec = tv.tv_sec;
584 packet.tv_usec = tv.tv_usec;
586 packet.origlen = len;
587 fwrite(&packet, sizeof packet, 1, out);
588 fwrite(data, len, 1, out);
593 static void logcontrol(int fd, FILE *out, int level) {
594 sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
598 while(recvline(fd, line, sizeof line)) {
600 int n = sscanf(line, "%d %d %d", &code, &req, &len);
601 if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || len > sizeof data)
603 if(!recvdata(fd, data, len))
605 fwrite(data, len, 1, out);
612 static bool remove_service(void) {
613 SC_HANDLE manager = NULL;
614 SC_HANDLE service = NULL;
615 SERVICE_STATUS status = {0};
617 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
619 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
623 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
626 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
630 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
631 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
633 fprintf(stderr, "%s service stopped\n", identname);
635 if(!DeleteService(service)) {
636 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
640 fprintf(stderr, "%s service removed\n", identname);
646 bool connect_tincd(bool verbose) {
651 struct timeval tv = {0, 0};
652 if(select(fd + 1, &r, NULL, NULL, &tv)) {
653 fprintf(stderr, "Previous connection to tincd lost, reconnecting.\n");
661 FILE *f = fopen(pidfilename, "r");
664 fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
671 if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
673 fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
681 struct sockaddr_un sa;
682 sa.sun_family = AF_UNIX;
683 strncpy(sa.sun_path, unixsocketname, sizeof sa.sun_path);
685 fd = socket(AF_UNIX, SOCK_STREAM, 0);
688 fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
692 if(connect(fd, (struct sockaddr *)&sa, sizeof sa) < 0) {
694 fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
700 struct addrinfo hints = {
701 .ai_family = AF_UNSPEC,
702 .ai_socktype = SOCK_STREAM,
703 .ai_protocol = IPPROTO_TCP,
707 struct addrinfo *res = NULL;
709 if(getaddrinfo(host, port, &hints, &res) || !res) {
711 fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
715 fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
718 fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
723 unsigned long arg = 0;
725 if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
727 fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
731 if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
733 fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
743 static const int one = 1;
744 setsockopt(c, SOL_SOCKET, SO_NOSIGPIPE, (void *)&one, sizeof one);
750 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
752 fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
758 sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
760 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
762 fprintf(stderr, "Could not fully establish control socket connection\n");
772 static int cmd_start(int argc, char *argv[]) {
773 if(connect_tincd(false)) {
775 fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
777 fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
782 char *slash = strrchr(program_name, '/');
785 if ((c = strrchr(program_name, '\\')) > slash)
790 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
795 char **nargv = xzalloc((optind + argc) * sizeof *nargv);
798 for(int i = 1; i < optind; i++)
799 nargv[nargc++] = orig_argv[i];
800 for(int i = 1; i < argc; i++)
801 nargv[nargc++] = argv[i];
805 fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
810 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
816 exit(execvp(c, nargv));
820 int status = -1, result;
822 signal(SIGINT, SIG_IGN);
824 result = waitpid(pid, &status, 0);
826 signal(SIGINT, SIG_DFL);
829 if(result != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
830 fprintf(stderr, "Error starting %s\n", c);
838 static int cmd_stop(int argc, char *argv[]) {
840 fprintf(stderr, "Too many arguments!\n");
845 if(!connect_tincd(true)) {
847 if(kill(pid, SIGTERM)) {
848 fprintf(stderr, "Could not send TERM signal to process with PID %u: %s\n", pid, strerror(errno));
852 fprintf(stderr, "Sent TERM signal to process with PID %u.\n", pid);
853 waitpid(pid, NULL, 0);
860 sendline(fd, "%d %d", CONTROL, REQ_STOP);
862 while(recvline(fd, line, sizeof line)) {
863 // Wait for tincd to close the connection...
866 if(!remove_service())
876 static int cmd_restart(int argc, char *argv[]) {
878 return cmd_start(argc, argv);
881 static int cmd_reload(int argc, char *argv[]) {
883 fprintf(stderr, "Too many arguments!\n");
887 if(!connect_tincd(true))
890 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
891 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RELOAD || result) {
892 fprintf(stderr, "Could not reload configuration.\n");
900 static int cmd_dump(int argc, char *argv[]) {
901 bool only_reachable = false;
903 if(argc > 2 && !strcasecmp(argv[1], "reachable")) {
904 if(strcasecmp(argv[2], "nodes")) {
905 fprintf(stderr, "`reachable' only supported for nodes.\n");
909 only_reachable = true;
915 fprintf(stderr, "Invalid number of arguments.\n");
920 if(!connect_tincd(true))
925 if(!strcasecmp(argv[1], "nodes"))
926 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
927 else if(!strcasecmp(argv[1], "edges"))
928 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
929 else if(!strcasecmp(argv[1], "subnets"))
930 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
931 else if(!strcasecmp(argv[1], "connections"))
932 sendline(fd, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
933 else if(!strcasecmp(argv[1], "graph")) {
934 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
935 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
937 } else if(!strcasecmp(argv[1], "digraph")) {
938 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
939 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
942 fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
949 else if(do_graph == 2)
950 printf("digraph {\n");
952 while(recvline(fd, line, sizeof line)) {
953 char node1[4096], node2[4096];
954 int n = sscanf(line, "%d %d %s %s", &code, &req, node1, node2);
956 if(do_graph && req == REQ_DUMP_NODES)
975 int cipher, digest, maclength, compression, distance, socket, weight;
976 short int pmtu, minmtu, maxmtu;
977 unsigned int options, status_int;
978 node_status_t status;
979 long int last_state_change;
982 case REQ_DUMP_NODES: {
983 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);
985 fprintf(stderr, "Unable to parse node dump from tincd: %s\n", line);
989 memcpy(&status, &status_int, sizeof status);
992 const char *color = "black";
993 if(!strcmp(host, "MYSELF"))
995 else if(!status.reachable)
997 else if(strcmp(via, node))
999 else if(!status.validkey)
1003 printf(" %s [label = \"%s\", color = \"%s\"%s];\n", node, node, color, strcmp(host, "MYSELF") ? "" : ", style = \"filled\"");
1005 if(only_reachable && !status.reachable)
1007 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",
1008 node, host, port, cipher, digest, maclength, compression, options, status_int, nexthop, via, distance, pmtu, minmtu, maxmtu);
1012 case REQ_DUMP_EDGES: {
1013 int n = sscanf(line, "%*d %*d %s %s %s port %s %x %d", from, to, host, port, &options, &weight);
1015 fprintf(stderr, "Unable to parse edge dump from tincd.\n");
1020 float w = 1 + 65536.0 / weight;
1021 if(do_graph == 1 && strcmp(node1, node2) > 0)
1022 printf(" %s -- %s [w = %f, weight = %f];\n", node1, node2, w, w);
1023 else if(do_graph == 2)
1024 printf(" %s -> %s [w = %f, weight = %f];\n", node1, node2, w, w);
1026 printf("%s to %s at %s port %s options %x weight %d\n", from, to, host, port, options, weight);
1030 case REQ_DUMP_SUBNETS: {
1031 int n = sscanf(line, "%*d %*d %s %s", subnet, node);
1033 fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
1036 printf("%s owner %s\n", strip_weight(subnet), node);
1039 case REQ_DUMP_CONNECTIONS: {
1040 int n = sscanf(line, "%*d %*d %s %s port %s %x %d %x", node, host, port, &options, &socket, &status_int);
1042 fprintf(stderr, "Unable to parse connection dump from tincd.\n");
1045 printf("%s at %s port %s options %x socket %d status %x\n", node, host, port, options, socket, status_int);
1049 fprintf(stderr, "Unable to parse dump from tincd.\n");
1054 fprintf(stderr, "Error receiving dump.\n");
1058 static int cmd_purge(int argc, char *argv[]) {
1060 fprintf(stderr, "Too many arguments!\n");
1064 if(!connect_tincd(true))
1067 sendline(fd, "%d %d", CONTROL, REQ_PURGE);
1068 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_PURGE || result) {
1069 fprintf(stderr, "Could not purge old information.\n");
1076 static int cmd_debug(int argc, char *argv[]) {
1078 fprintf(stderr, "Invalid number of arguments.\n");
1082 if(!connect_tincd(true))
1085 int debuglevel = atoi(argv[1]);
1088 sendline(fd, "%d %d %d", CONTROL, REQ_SET_DEBUG, debuglevel);
1089 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &origlevel) != 3 || code != CONTROL || req != REQ_SET_DEBUG) {
1090 fprintf(stderr, "Could not set debug level.\n");
1094 fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
1098 static int cmd_retry(int argc, char *argv[]) {
1100 fprintf(stderr, "Too many arguments!\n");
1104 if(!connect_tincd(true))
1107 sendline(fd, "%d %d", CONTROL, REQ_RETRY);
1108 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RETRY || result) {
1109 fprintf(stderr, "Could not retry outgoing connections.\n");
1116 static int cmd_connect(int argc, char *argv[]) {
1118 fprintf(stderr, "Invalid number of arguments.\n");
1122 if(!check_id(argv[1])) {
1123 fprintf(stderr, "Invalid name for node.\n");
1127 if(!connect_tincd(true))
1130 sendline(fd, "%d %d %s", CONTROL, REQ_CONNECT, argv[1]);
1131 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_CONNECT || result) {
1132 fprintf(stderr, "Could not connect to %s.\n", argv[1]);
1139 static int cmd_disconnect(int argc, char *argv[]) {
1141 fprintf(stderr, "Invalid number of arguments.\n");
1145 if(!check_id(argv[1])) {
1146 fprintf(stderr, "Invalid name for node.\n");
1150 if(!connect_tincd(true))
1153 sendline(fd, "%d %d %s", CONTROL, REQ_DISCONNECT, argv[1]);
1154 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_DISCONNECT || result) {
1155 fprintf(stderr, "Could not disconnect %s.\n", argv[1]);
1162 static int cmd_top(int argc, char *argv[]) {
1164 fprintf(stderr, "Too many arguments!\n");
1169 if(!connect_tincd(true))
1175 fprintf(stderr, "This version of tinc was compiled without support for the curses library.\n");
1180 static int cmd_pcap(int argc, char *argv[]) {
1182 fprintf(stderr, "Too many arguments!\n");
1186 if(!connect_tincd(true))
1189 pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
1194 static void sigint_handler(int sig) {
1195 fprintf(stderr, "\n");
1196 shutdown(fd, SHUT_RDWR);
1200 static int cmd_log(int argc, char *argv[]) {
1202 fprintf(stderr, "Too many arguments!\n");
1206 if(!connect_tincd(true))
1210 signal(SIGINT, sigint_handler);
1213 logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
1216 signal(SIGINT, SIG_DFL);
1224 static int cmd_pid(int argc, char *argv[]) {
1226 fprintf(stderr, "Too many arguments!\n");
1230 if(!connect_tincd(true) && !pid)
1233 printf("%d\n", pid);
1237 int rstrip(char *value) {
1238 int len = strlen(value);
1239 while(len && strchr("\t\r\n ", value[len - 1]))
1244 char *get_my_name(bool verbose) {
1245 FILE *f = fopen(tinc_conf, "r");
1248 fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
1254 while(fgets(buf, sizeof buf, f)) {
1255 int len = strcspn(buf, "\t =");
1257 value += strspn(value, "\t ");
1260 value += strspn(value, "\t ");
1265 if(strcasecmp(buf, "Name"))
1269 return strdup(value);
1275 fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
1279 const var_t variables[] = {
1280 /* Server configuration */
1281 {"AddressFamily", VAR_SERVER},
1282 {"AutoConnect", VAR_SERVER | VAR_SAFE},
1283 {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
1284 {"BindToInterface", VAR_SERVER},
1285 {"Broadcast", VAR_SERVER | VAR_SAFE},
1286 {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
1287 {"DecrementTTL", VAR_SERVER},
1288 {"Device", VAR_SERVER},
1289 {"DeviceType", VAR_SERVER},
1290 {"DirectOnly", VAR_SERVER},
1291 {"ECDSAPrivateKeyFile", VAR_SERVER},
1292 {"ExperimentalProtocol", VAR_SERVER},
1293 {"Forwarding", VAR_SERVER},
1294 {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
1295 {"Hostnames", VAR_SERVER},
1296 {"IffOneQueue", VAR_SERVER},
1297 {"Interface", VAR_SERVER},
1298 {"KeyExpire", VAR_SERVER},
1299 {"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
1300 {"LocalDiscovery", VAR_SERVER},
1301 {"MACExpire", VAR_SERVER},
1302 {"MaxConnectionBurst", VAR_SERVER},
1303 {"MaxOutputBufferSize", VAR_SERVER},
1304 {"MaxTimeout", VAR_SERVER},
1305 {"Mode", VAR_SERVER | VAR_SAFE},
1306 {"Name", VAR_SERVER},
1307 {"PingInterval", VAR_SERVER},
1308 {"PingTimeout", VAR_SERVER},
1309 {"PriorityInheritance", VAR_SERVER},
1310 {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
1311 {"PrivateKeyFile", VAR_SERVER},
1312 {"ProcessPriority", VAR_SERVER},
1313 {"Proxy", VAR_SERVER},
1314 {"ReplayWindow", VAR_SERVER},
1315 {"ScriptsExtension", VAR_SERVER},
1316 {"ScriptsInterpreter", VAR_SERVER},
1317 {"StrictSubnets", VAR_SERVER},
1318 {"TunnelServer", VAR_SERVER},
1319 {"VDEGroup", VAR_SERVER},
1320 {"VDEPort", VAR_SERVER},
1321 /* Host configuration */
1322 {"Address", VAR_HOST | VAR_MULTIPLE},
1323 {"Cipher", VAR_SERVER | VAR_HOST},
1324 {"ClampMSS", VAR_SERVER | VAR_HOST},
1325 {"Compression", VAR_SERVER | VAR_HOST},
1326 {"Digest", VAR_SERVER | VAR_HOST},
1327 {"ECDSAPublicKey", VAR_HOST},
1328 {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
1329 {"IndirectData", VAR_SERVER | VAR_HOST},
1330 {"MACLength", VAR_SERVER | VAR_HOST},
1331 {"PMTU", VAR_SERVER | VAR_HOST},
1332 {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
1334 {"PublicKey", VAR_HOST | VAR_OBSOLETE},
1335 {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
1336 {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
1337 {"TCPOnly", VAR_SERVER | VAR_HOST},
1338 {"Weight", VAR_HOST | VAR_SAFE},
1342 static int cmd_config(int argc, char *argv[]) {
1344 fprintf(stderr, "Invalid number of arguments.\n");
1348 if(strcasecmp(argv[0], "config"))
1352 if(!strcasecmp(argv[1], "get")) {
1354 } else if(!strcasecmp(argv[1], "add")) {
1355 argv++, argc--, action = 1;
1356 } else if(!strcasecmp(argv[1], "del")) {
1357 argv++, argc--, action = -1;
1358 } else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
1359 argv++, argc--, action = 0;
1363 fprintf(stderr, "Invalid number of arguments.\n");
1367 // Concatenate the rest of the command line
1368 strncpy(line, argv[1], sizeof line - 1);
1369 for(int i = 2; i < argc; i++) {
1370 strncat(line, " ", sizeof line - 1 - strlen(line));
1371 strncat(line, argv[i], sizeof line - 1 - strlen(line));
1374 // Liberal parsing into node name, variable name and value.
1380 len = strcspn(line, "\t =");
1382 value += strspn(value, "\t ");
1385 value += strspn(value, "\t ");
1388 variable = strchr(line, '.');
1397 fprintf(stderr, "No variable given.\n");
1401 if(action >= 0 && !*value) {
1402 fprintf(stderr, "No value for variable given.\n");
1406 if(action < -1 && *value)
1409 /* Some simple checks. */
1411 bool warnonremove = false;
1413 for(int i = 0; variables[i].name; i++) {
1414 if(strcasecmp(variables[i].name, variable))
1418 variable = (char *)variables[i].name;
1420 /* Discourage use of obsolete variables. */
1422 if(variables[i].type & VAR_OBSOLETE && action >= 0) {
1424 fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
1426 fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
1431 /* Don't put server variables in host config files */
1433 if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
1435 fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
1437 fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
1442 /* Should this go into our own host config file? */
1444 if(!node && !(variables[i].type & VAR_SERVER)) {
1445 node = get_my_name(true);
1450 /* Change "add" into "set" for variables that do not allow multiple occurences.
1451 Turn on warnings when it seems variables might be removed unintentionally. */
1453 if(action == 1 && !(variables[i].type & VAR_MULTIPLE)) {
1454 warnonremove = true;
1456 } else if(action == 0 && (variables[i].type & VAR_MULTIPLE)) {
1457 warnonremove = true;
1463 if(node && !check_id(node)) {
1464 fprintf(stderr, "Invalid name for node.\n");
1469 if(force || action < 0) {
1470 fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1472 fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1477 // Open the right configuration file.
1478 char filename[PATH_MAX];
1480 snprintf(filename,PATH_MAX "%s" SLASH "%s", hosts_dir, node);
1482 filename = tinc_conf;
1484 FILE *f = fopen(filename, "r");
1486 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1490 char tmpfile[PATH_MAX];
1494 snprintf(tmpfile,PATH_MAX, "%s.config.tmp", filename);
1495 tf = fopen(tmpfile, "w");
1497 fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1503 // Copy the file, making modifications on the fly, unless we are just getting a value.
1507 bool removed = false;
1510 while(fgets(buf1, sizeof buf1, f)) {
1511 buf1[sizeof buf1 - 1] = 0;
1512 strncpy(buf2, buf1, sizeof buf2);
1514 // Parse line in a simple way
1518 len = strcspn(buf2, "\t =");
1519 bvalue = buf2 + len;
1520 bvalue += strspn(bvalue, "\t ");
1521 if(*bvalue == '=') {
1523 bvalue += strspn(bvalue, "\t ");
1529 if(!strcasecmp(buf2, variable)) {
1533 printf("%s\n", bvalue);
1535 } else if(action == -1) {
1536 if(!*value || !strcasecmp(bvalue, value)) {
1541 } else if(action == 0) {
1542 // Warn if "set" was used for variables that can occur multiple times
1543 if(warnonremove && strcasecmp(bvalue, value))
1544 fprintf(stderr, "Warning: removing %s = %s\n", variable, bvalue);
1546 // Already set? Delete the rest...
1550 // Otherwise, replace.
1551 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1552 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1561 // Copy original line...
1562 if(fputs(buf1, tf) < 0) {
1563 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1567 // Add newline if it is missing...
1568 if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
1569 if(fputc('\n', tf) < 0) {
1570 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1577 // Make sure we read everything...
1578 if(ferror(f) || !feof(f)) {
1579 fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
1584 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
1588 // Add new variable if necessary.
1589 if(action > 0 || (action == 0 && !set)) {
1590 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1591 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1598 fprintf(stderr, "No matching configuration variables found.\n");
1602 // Make sure we wrote everything...
1604 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1608 // Could we find what we had to remove?
1609 if(action < 0 && !removed) {
1611 fprintf(stderr, "No configuration variables deleted.\n");
1615 // Replace the configuration file with the new one
1617 if(remove(filename)) {
1618 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1622 if(rename(tmpfile, filename)) {
1623 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1627 // Silently try notifying a running tincd of changes.
1628 if(connect_tincd(false))
1629 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1634 bool check_id(const char *name) {
1638 for(int i = 0; i < strlen(name); i++) {
1639 if(!isalnum(name[i]) && name[i] != '_')
1646 static bool try_bind(int port) {
1647 struct addrinfo *ai = NULL;
1648 struct addrinfo hint = {
1649 .ai_flags = AI_PASSIVE,
1650 .ai_family = AF_UNSPEC,
1651 .ai_socktype = SOCK_STREAM,
1652 .ai_protocol = IPPROTO_TCP,
1656 snprintf(portstr, sizeof portstr, "%d", port);
1658 if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai)
1662 int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
1665 int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
1675 int check_port(char *name) {
1679 fprintf(stderr, "Warning: could not bind to port 655. ");
1681 for(int i = 0; i < 100; i++) {
1682 int port = 0x1000 + (rand() & 0x7fff);
1683 if(try_bind(port)) {
1684 char filename[PATH_MAX];
1685 snprintf(filename,PATH_MAX "%s" SLASH "hosts" SLASH "%s", confbase, name);
1686 FILE *f = fopen(filename, "a");
1688 fprintf(stderr, "Please change tinc's Port manually.\n");
1692 fprintf(f, "Port = %d\n", port);
1694 fprintf(stderr, "Tinc will instead listen on port %d.\n", port);
1699 fprintf(stderr, "Please change tinc's Port manually.\n");
1703 static int cmd_init(int argc, char *argv[]) {
1704 if(!access(tinc_conf, F_OK)) {
1705 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1710 fprintf(stderr, "Too many arguments!\n");
1712 } else if(argc < 2) {
1715 fprintf(stderr, "Enter the Name you want your tinc node to have: ");
1716 if(!fgets(buf, sizeof buf, stdin)) {
1717 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1720 int len = rstrip(buf);
1722 fprintf(stderr, "No name given!\n");
1727 fprintf(stderr, "No Name given!\n");
1731 name = strdup(argv[1]);
1733 fprintf(stderr, "No Name given!\n");
1738 if(!check_id(name)) {
1739 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1743 if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
1744 fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
1748 if(mkdir(confbase, 0777) && errno != EEXIST) {
1749 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1753 if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
1754 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1758 FILE *f = fopen(tinc_conf, "w");
1760 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1764 fprintf(f, "Name = %s\n", name);
1767 if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1774 xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1775 if(access(filename, F_OK)) {
1776 FILE *f = fopenmask(filename, "w", 0777);
1778 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1781 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");
1790 static int cmd_generate_keys(int argc, char *argv[]) {
1792 fprintf(stderr, "Too many arguments!\n");
1797 name = get_my_name(false);
1799 return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1802 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1804 fprintf(stderr, "Too many arguments!\n");
1809 name = get_my_name(false);
1811 return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1814 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1816 fprintf(stderr, "Too many arguments!\n");
1821 name = get_my_name(false);
1823 return !ecdsa_keygen(true);
1826 static int cmd_help(int argc, char *argv[]) {
1831 static int cmd_version(int argc, char *argv[]) {
1833 fprintf(stderr, "Too many arguments!\n");
1841 static int cmd_info(int argc, char *argv[]) {
1843 fprintf(stderr, "Invalid number of arguments.\n");
1847 if(!connect_tincd(true))
1850 return info(fd, argv[1]);
1853 static const char *conffiles[] = {
1864 static int cmd_edit(int argc, char *argv[]) {
1866 fprintf(stderr, "Invalid number of arguments.\n");
1870 char *filename = NULL;
1872 if(strncmp(argv[1], "hosts" SLASH, 6)) {
1873 for(int i = 0; conffiles[i]; i++) {
1874 if(!strcmp(argv[1], conffiles[i])) {
1875 xasprintf(&filename, "%s" SLASH "%s", confbase, argv[1]);
1884 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1885 char *dash = strchr(argv[1], '-');
1888 if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1889 fprintf(stderr, "Invalid configuration filename.\n");
1897 xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1899 xasprintf(&command, "edit \"%s\"", filename);
1901 int result = system(command);
1905 // Silently try notifying a running tincd of changes.
1906 if(connect_tincd(false))
1907 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1912 static int export(const char *name, FILE *out) {
1914 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1915 FILE *in = fopen(filename, "r");
1917 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1921 fprintf(out, "Name = %s\n", name);
1923 while(fgets(buf, sizeof buf, in)) {
1924 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1929 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1938 static int cmd_export(int argc, char *argv[]) {
1940 fprintf(stderr, "Too many arguments!\n");
1944 char *name = get_my_name(true);
1948 int result = export(name, stdout);
1956 static int cmd_export_all(int argc, char *argv[]) {
1958 fprintf(stderr, "Too many arguments!\n");
1962 DIR *dir = opendir(hosts_dir);
1964 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1972 while((ent = readdir(dir))) {
1973 if(!check_id(ent->d_name))
1979 printf("#---------------------------------------------------------------#\n");
1981 result |= export(ent->d_name, stdout);
1990 static int cmd_import(int argc, char *argv[]) {
1992 fprintf(stderr, "Too many arguments!\n");
2001 char *filename = NULL;
2003 bool firstline = true;
2005 while(fgets(buf, sizeof buf, in)) {
2006 if(sscanf(buf, "Name = %s", name) == 1) {
2009 if(!check_id(name)) {
2010 fprintf(stderr, "Invalid Name in input!\n");
2018 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
2020 if(!force && !access(filename, F_OK)) {
2021 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
2026 out = fopen(filename, "w");
2028 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
2034 } else if(firstline) {
2035 fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
2040 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
2044 if(fputs(buf, out) < 0) {
2045 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
2055 fprintf(stderr, "Imported %d host configuration files.\n", count);
2058 fprintf(stderr, "No host configuration files imported.\n");
2063 static int cmd_exchange(int argc, char *argv[]) {
2064 return cmd_export(argc, argv) ?: cmd_import(argc, argv);
2067 static int cmd_exchange_all(int argc, char *argv[]) {
2068 return cmd_export_all(argc, argv) ?: cmd_import(argc, argv);
2071 static int switch_network(char *name) {
2083 free(unixsocketname);
2084 unixsocketname = NULL;
2090 netname = strcmp(name, ".") ? xstrdup(name) : NULL;
2092 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2093 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2094 xasprintf(&prompt, "%s> ", identname);
2099 static int cmd_network(int argc, char *argv[]) {
2101 fprintf(stderr, "Too many arguments!\n");
2106 return switch_network(argv[1]);
2108 DIR *dir = opendir(confdir);
2110 fprintf(stderr, "Could not read directory %s: %s\n", confdir, strerror(errno));
2115 while((ent = readdir(dir))) {
2116 if(*ent->d_name == '.')
2119 if(!strcmp(ent->d_name, "tinc.conf")) {
2125 xasprintf(&fname, "%s/%s/tinc.conf", confdir, ent->d_name);
2126 if(!access(fname, R_OK))
2127 printf("%s\n", ent->d_name);
2134 static const struct {
2135 const char *command;
2136 int (*function)(int argc, char *argv[]);
2139 {"start", cmd_start},
2141 {"restart", cmd_restart},
2142 {"reload", cmd_reload},
2144 {"purge", cmd_purge},
2145 {"debug", cmd_debug},
2146 {"retry", cmd_retry},
2147 {"connect", cmd_connect},
2148 {"disconnect", cmd_disconnect},
2153 {"config", cmd_config, true},
2154 {"add", cmd_config},
2155 {"del", cmd_config},
2156 {"get", cmd_config},
2157 {"set", cmd_config},
2159 {"generate-keys", cmd_generate_keys},
2160 {"generate-rsa-keys", cmd_generate_rsa_keys},
2161 {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
2163 {"version", cmd_version},
2166 {"export", cmd_export},
2167 {"export-all", cmd_export_all},
2168 {"import", cmd_import},
2169 {"exchange", cmd_exchange},
2170 {"exchange-all", cmd_exchange_all},
2171 {"invite", cmd_invite},
2173 {"network", cmd_network},
2177 #ifdef HAVE_READLINE
2178 static char *complete_command(const char *text, int state) {
2186 while(commands[i].command) {
2187 if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text)))
2188 return xstrdup(commands[i].command);
2195 static char *complete_dump(const char *text, int state) {
2196 const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
2205 if(!strncasecmp(matches[i], text, strlen(text)))
2206 return xstrdup(matches[i]);
2213 static char *complete_config(const char *text, int state) {
2221 while(variables[i].name) {
2222 char *dot = strchr(text, '.');
2224 if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
2226 xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
2230 if(!strncasecmp(variables[i].name, text, strlen(text)))
2231 return xstrdup(variables[i].name);
2239 static char *complete_info(const char *text, int state) {
2243 if(!connect_tincd(false))
2245 // Check the list of nodes
2246 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
2247 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
2250 while(recvline(fd, line, sizeof line)) {
2252 int n = sscanf(line, "%d %d %s", &code, &req, item);
2262 fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
2266 if(!strncmp(item, text, strlen(text)))
2267 return xstrdup(strip_weight(item));
2273 static char *complete_nothing(const char *text, int state) {
2277 static char **completion (const char *text, int start, int end) {
2278 char **matches = NULL;
2281 matches = rl_completion_matches(text, complete_command);
2282 else if(!strncasecmp(rl_line_buffer, "dump ", 5))
2283 matches = rl_completion_matches(text, complete_dump);
2284 else if(!strncasecmp(rl_line_buffer, "add ", 4))
2285 matches = rl_completion_matches(text, complete_config);
2286 else if(!strncasecmp(rl_line_buffer, "del ", 4))
2287 matches = rl_completion_matches(text, complete_config);
2288 else if(!strncasecmp(rl_line_buffer, "get ", 4))
2289 matches = rl_completion_matches(text, complete_config);
2290 else if(!strncasecmp(rl_line_buffer, "set ", 4))
2291 matches = rl_completion_matches(text, complete_config);
2292 else if(!strncasecmp(rl_line_buffer, "info ", 5))
2293 matches = rl_completion_matches(text, complete_info);
2299 static int cmd_shell(int argc, char *argv[]) {
2300 xasprintf(&prompt, "%s> ", identname);
2304 int maxargs = argc + 16;
2305 char **nargv = xmalloc(maxargs * sizeof *nargv);
2307 for(int i = 0; i < argc; i++)
2310 #ifdef HAVE_READLINE
2311 rl_readline_name = "tinc";
2312 rl_completion_entry_function = complete_nothing;
2313 rl_attempted_completion_function = completion;
2314 rl_filename_completion_desired = 0;
2319 #ifdef HAVE_READLINE
2323 rl_basic_word_break_characters = "\t\n ";
2324 line = readline(prompt);
2326 copy = xstrdup(line);
2328 line = fgets(buf, sizeof buf, stdin);
2332 fputs(prompt, stdout);
2334 line = fgets(buf, sizeof buf, stdin);
2340 /* Ignore comments */
2348 char *p = line + strspn(line, " \t\n");
2349 char *next = strtok(p, " \t\n");
2352 if(nargc >= maxargs) {
2353 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
2356 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
2361 next = strtok(NULL, " \t\n");
2367 if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit"))
2372 for(int i = 0; commands[i].command; i++) {
2373 if(!strcasecmp(nargv[argc], commands[i].command)) {
2374 result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
2380 #ifdef HAVE_READLINE
2386 fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
2399 int main(int argc, char *argv[]) {
2400 program_name = argv[0];
2404 if(!parse_options(argc, argv))
2407 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2408 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2421 static struct WSAData wsa_state;
2423 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
2424 fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
2432 tty = isatty(0) && isatty(1);
2435 return cmd_shell(argc, argv);
2437 for(int i = 0; commands[i].command; i++) {
2438 if(!strcasecmp(argv[optind], commands[i].command))
2439 return commands[i].function(argc - optind, argv + optind);
2442 fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);