2 tincctl.c -- Controlling a running tincd
3 Copyright (C) 2007-2013 Guus Sliepen <guus@tinc-vpn.org>
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"
43 #define SCRIPTEXTENSION ".bat"
45 #define SCRIPTEXTENSION ""
48 static char **orig_argv;
51 /* If nonzero, display usage information and exit. */
52 static bool show_help = false;
54 /* If nonzero, print the version on standard output and exit. */
55 static bool show_version = false;
57 static char *name = NULL;
58 static char controlcookie[1025];
59 char *tinc_conf = NULL;
60 char *hosts_dir = NULL;
63 // Horrible global variables...
70 static bool force = false;
72 bool confbasegiven = false;
73 bool netnamegiven = false;
76 static struct WSAData wsa_state;
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},
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");
99 static void usage(bool status) {
101 fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
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"
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"
137 " top Show real-time statistics\n"
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"
149 printf("Report bugs to tinc@tinc-vpn.org.\n");
153 static bool parse_options(int argc, char **argv) {
155 int option_index = 0;
157 while((r = getopt_long(argc, argv, "+c:n:", long_options, &option_index)) != EOF) {
159 case 0: /* long option */
162 case 'c': /* config file */
163 confbase = xstrdup(optarg);
164 confbasegiven = true;
167 case 'n': /* net name given */
168 netname = xstrdup(optarg);
171 case 1: /* show help */
175 case 2: /* show version */
179 case 3: /* open control socket here */
180 pidfilename = xstrdup(optarg);
187 case '?': /* wrong options */
196 if(!netname && (netname = getenv("NETNAME")))
197 netname = xstrdup(netname);
199 /* netname "." is special: a "top-level name" */
201 if(netname && (!*netname || !strcmp(netname, "."))) {
206 if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
207 fprintf(stderr, "Invalid character in netname!\n");
214 static void disable_old_keys(const char *filename, const char *what) {
215 char tmpfile[PATH_MAX] = "";
217 bool disabled = false;
222 r = fopen(filename, "r");
226 snprintf(tmpfile, sizeof tmpfile, "%s.tmp", filename);
228 w = fopen(tmpfile, "w");
231 /* Let the temporary file have the same permissions as the original. */
234 struct stat st = {.st_mode = 0600};
235 fstat(fileno(r), &st);
236 fchmod(fileno(w), st.st_mode);
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"))) {
248 bool ecdsapubkey = !strncasecmp(buf, "ECDSAPublicKey", 14) && strchr(" \t=", buf[14]) && strstr(what, "ECDSA");
254 if(block || ecdsapubkey)
256 if(fputs(buf, w) < 0) {
262 if(block && !strncmp(buf, "-----END ", 9))
269 if(ferror(r) || fclose(r) < 0)
274 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
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);
287 if(rename(tmpfile, filename)) {
289 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
294 fprintf(stderr, "Warning: old key(s) found and disabled.\n");
301 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask) {
307 /* Check stdin and stdout */
309 /* Ask for a file and/or directory name. */
310 fprintf(stdout, "Please enter a file to save %s to [%s]: ", what, filename);
313 if(fgets(buf, sizeof buf, stdin) == NULL) {
314 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
318 size_t len = strlen(buf);
327 if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
329 if(filename[0] != '/') {
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);
337 disable_old_keys(filename, what);
339 /* Open it first to keep the inode busy */
341 r = fopen(filename, mode);
344 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
352 Generate a public/private ECDSA keypair, and ask for a file to store
355 static bool ecdsa_keygen(bool ask) {
358 char *pubname, *privname;
360 fprintf(stderr, "Generating ECDSA keypair:\n");
362 if(!(key = ecdsa_generate())) {
363 fprintf(stderr, "Error during key generation!\n");
366 fprintf(stderr, "Done.\n");
368 xasprintf(&privname, "%s" SLASH "ecdsa_key.priv", confbase);
369 f = ask_and_open(privname, "private ECDSA key", "a", ask);
376 /* Make it unreadable for others. */
377 fchmod(fileno(f), 0600);
380 if(!ecdsa_write_pem_private_key(key, f)) {
381 fprintf(stderr, "Error writing private key!\n");
390 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
392 xasprintf(&pubname, "%s" SLASH "ecdsa_key.pub", confbase);
394 f = ask_and_open(pubname, "public ECDSA key", "a", ask);
400 char *pubkey = ecdsa_get_base64_public_key(key);
401 fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
411 Generate a public/private RSA keypair, and ask for a file to store
414 static bool rsa_keygen(int bits, bool ask) {
417 char *pubname, *privname;
419 fprintf(stderr, "Generating %d bits keys:\n", bits);
421 if(!(key = rsa_generate(bits, 0x10001))) {
422 fprintf(stderr, "Error during key generation!\n");
425 fprintf(stderr, "Done.\n");
427 xasprintf(&privname, "%s" SLASH "rsa_key.priv", confbase);
428 f = ask_and_open(privname, "private RSA key", "a", ask);
435 /* Make it unreadable for others. */
436 fchmod(fileno(f), 0600);
439 if(!rsa_write_pem_private_key(key, f)) {
440 fprintf(stderr, "Error writing private key!\n");
449 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
451 xasprintf(&pubname, "%s" SLASH "rsa_key.pub", confbase);
453 f = ask_and_open(pubname, "public RSA key", "a", ask);
459 if(!rsa_write_pem_public_key(key, f)) {
460 fprintf(stderr, "Error writing public key!\n");
475 bool recvline(int fd, char *line, size_t len) {
476 char *newline = NULL;
481 while(!(newline = memchr(buffer, '\n', blen))) {
482 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
483 if(result == -1 && errno == EINTR)
490 if(newline - buffer >= len)
493 len = newline - buffer;
495 memcpy(line, buffer, len);
497 memmove(buffer, newline + 1, blen - len - 1);
503 bool recvdata(int fd, char *data, size_t len) {
508 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
509 if(result == -1 && errno == EINTR)
516 memcpy(data, buffer, len);
517 memmove(buffer, buffer + len, blen - len);
523 bool sendline(int fd, char *format, ...) {
524 static char buffer[4096];
529 va_start(ap, format);
530 blen = vsnprintf(buffer, sizeof buffer, format, ap);
533 if(blen < 1 || blen >= sizeof buffer)
540 int result = send(fd, p, blen, 0);
541 if(result == -1 && errno == EINTR)
552 static void pcap(int fd, FILE *out, int snaplen) {
553 sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
561 uint32_t tz_accuracy;
568 snaplen ?: sizeof data,
581 fwrite(&header, sizeof header, 1, out);
585 while(recvline(fd, line, sizeof line)) {
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)
591 if(!recvdata(fd, data, len))
593 packet.tv_sec = tv.tv_sec;
594 packet.tv_usec = tv.tv_usec;
596 packet.origlen = len;
597 fwrite(&packet, sizeof packet, 1, out);
598 fwrite(data, len, 1, out);
603 static void logcontrol(int fd, FILE *out, int level) {
604 sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
608 while(recvline(fd, line, sizeof line)) {
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)
613 if(!recvdata(fd, data, len))
615 fwrite(data, len, 1, out);
622 static bool remove_service(void) {
623 SC_HANDLE manager = NULL;
624 SC_HANDLE service = NULL;
625 SERVICE_STATUS status = {0};
627 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
629 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
633 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
636 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
640 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
641 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
643 fprintf(stderr, "%s service stopped\n", identname);
645 if(!DeleteService(service)) {
646 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
650 fprintf(stderr, "%s service removed\n", identname);
656 bool connect_tincd(bool verbose) {
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");
671 FILE *f = fopen(pidfilename, "r");
674 fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
681 if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
683 fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
691 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
693 fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
699 struct sockaddr_un sa;
700 sa.sun_family = AF_UNIX;
701 strncpy(sa.sun_path, unixsocketname, sizeof sa.sun_path);
703 fd = socket(AF_UNIX, SOCK_STREAM, 0);
706 fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
710 if(connect(fd, (struct sockaddr *)&sa, sizeof sa) < 0) {
712 fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
718 struct addrinfo hints = {
719 .ai_family = AF_UNSPEC,
720 .ai_socktype = SOCK_STREAM,
721 .ai_protocol = IPPROTO_TCP,
725 struct addrinfo *res = NULL;
727 if(getaddrinfo(host, port, &hints, &res) || !res) {
729 fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
733 fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
736 fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
741 unsigned long arg = 0;
743 if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
745 fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
749 if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
751 fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
763 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
765 fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
771 sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
773 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
775 fprintf(stderr, "Could not fully establish control socket connection\n");
785 static int cmd_start(int argc, char *argv[]) {
786 if(connect_tincd(false)) {
788 fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
790 fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
795 char *slash = strrchr(program_name, '/');
798 if ((c = strrchr(program_name, '\\')) > slash)
803 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
808 char **nargv = xzalloc((optind + argc) * sizeof *nargv);
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];
818 fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
823 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
829 exit(execvp(c, nargv));
834 if(waitpid(pid, &status, 0) != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
835 fprintf(stderr, "Error starting %s\n", c);
843 static int cmd_stop(int argc, char *argv[]) {
845 fprintf(stderr, "Too many arguments!\n");
850 if(!connect_tincd(true)) {
852 if(kill(pid, SIGTERM)) {
853 fprintf(stderr, "Could not send TERM signal to process with PID %u: %s\n", pid, strerror(errno));
857 fprintf(stderr, "Sent TERM signal to process with PID %u.\n", pid);
858 waitpid(pid, NULL, 0);
865 sendline(fd, "%d %d", CONTROL, REQ_STOP);
867 while(recvline(fd, line, sizeof line)) {
868 // Wait for tincd to close the connection...
871 if(!remove_service())
881 static int cmd_restart(int argc, char *argv[]) {
883 return cmd_start(argc, argv);
886 static int cmd_reload(int argc, char *argv[]) {
888 fprintf(stderr, "Too many arguments!\n");
892 if(!connect_tincd(true))
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");
905 static int cmd_dump(int argc, char *argv[]) {
906 bool only_reachable = false;
908 if(argc > 2 && !strcasecmp(argv[1], "reachable")) {
909 if(strcasecmp(argv[2], "nodes")) {
910 fprintf(stderr, "`reachable' only supported for nodes.\n");
914 only_reachable = true;
920 fprintf(stderr, "Invalid number of arguments.\n");
925 if(!connect_tincd(true))
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);
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);
947 fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
954 else if(do_graph == 2)
955 printf("digraph {\n");
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);
961 if(do_graph && req == REQ_DUMP_NODES)
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;
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);
990 fprintf(stderr, "Unable to parse node dump from tincd: %s\n", line);
994 memcpy(&status, &status_int, sizeof status);
997 const char *color = "black";
998 if(!strcmp(host, "MYSELF"))
1000 else if(!status.reachable)
1002 else if(strcmp(via, node))
1004 else if(!status.validkey)
1008 printf(" %s [label = \"%s\", color = \"%s\"%s];\n", node, node, color, strcmp(host, "MYSELF") ? "" : ", style = \"filled\"");
1010 if(only_reachable && !status.reachable)
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);
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);
1020 fprintf(stderr, "Unable to parse edge dump from tincd.\n");
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);
1031 printf("%s to %s at %s port %s options %x weight %d\n", from, to, host, port, options, weight);
1035 case REQ_DUMP_SUBNETS: {
1036 int n = sscanf(line, "%*d %*d %s %s", subnet, node);
1038 fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
1041 printf("%s owner %s\n", strip_weight(subnet), node);
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);
1047 fprintf(stderr, "Unable to parse connection dump from tincd.\n");
1050 printf("%s at %s port %s options %x socket %d status %x\n", node, host, port, options, socket, status_int);
1054 fprintf(stderr, "Unable to parse dump from tincd.\n");
1059 fprintf(stderr, "Error receiving dump.\n");
1063 static int cmd_purge(int argc, char *argv[]) {
1065 fprintf(stderr, "Too many arguments!\n");
1069 if(!connect_tincd(true))
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");
1081 static int cmd_debug(int argc, char *argv[]) {
1083 fprintf(stderr, "Invalid number of arguments.\n");
1087 if(!connect_tincd(true))
1090 int debuglevel = atoi(argv[1]);
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");
1099 fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
1103 static int cmd_retry(int argc, char *argv[]) {
1105 fprintf(stderr, "Too many arguments!\n");
1109 if(!connect_tincd(true))
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");
1121 static int cmd_connect(int argc, char *argv[]) {
1123 fprintf(stderr, "Invalid number of arguments.\n");
1127 if(!check_id(argv[1])) {
1128 fprintf(stderr, "Invalid name for node.\n");
1132 if(!connect_tincd(true))
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]);
1144 static int cmd_disconnect(int argc, char *argv[]) {
1146 fprintf(stderr, "Invalid number of arguments.\n");
1150 if(!check_id(argv[1])) {
1151 fprintf(stderr, "Invalid name for node.\n");
1155 if(!connect_tincd(true))
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]);
1167 static int cmd_top(int argc, char *argv[]) {
1169 fprintf(stderr, "Too many arguments!\n");
1174 if(!connect_tincd(true))
1180 fprintf(stderr, "This version of tinc was compiled without support for the curses library.\n");
1185 static int cmd_pcap(int argc, char *argv[]) {
1187 fprintf(stderr, "Too many arguments!\n");
1191 if(!connect_tincd(true))
1194 pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
1199 static void sigint_handler(int sig) {
1200 fprintf(stderr, "\n");
1201 shutdown(fd, SHUT_RDWR);
1205 static int cmd_log(int argc, char *argv[]) {
1207 fprintf(stderr, "Too many arguments!\n");
1211 if(!connect_tincd(true))
1215 signal(SIGINT, sigint_handler);
1218 logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
1221 signal(SIGINT, SIG_DFL);
1229 static int cmd_pid(int argc, char *argv[]) {
1231 fprintf(stderr, "Too many arguments!\n");
1235 if(!connect_tincd(true) && !pid)
1238 printf("%d\n", pid);
1242 int rstrip(char *value) {
1243 int len = strlen(value);
1244 while(len && strchr("\t\r\n ", value[len - 1]))
1249 char *get_my_name(bool verbose) {
1250 FILE *f = fopen(tinc_conf, "r");
1253 fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
1259 while(fgets(buf, sizeof buf, f)) {
1260 int len = strcspn(buf, "\t =");
1262 value += strspn(value, "\t ");
1265 value += strspn(value, "\t ");
1270 if(strcasecmp(buf, "Name"))
1274 return strdup(value);
1280 fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
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},
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},
1348 static int cmd_config(int argc, char *argv[]) {
1350 fprintf(stderr, "Invalid number of arguments.\n");
1354 if(strcasecmp(argv[0], "config"))
1358 if(!strcasecmp(argv[1], "get")) {
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;
1369 fprintf(stderr, "Invalid number of arguments.\n");
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));
1380 // Liberal parsing into node name, variable name and value.
1386 len = strcspn(line, "\t =");
1388 value += strspn(value, "\t ");
1391 value += strspn(value, "\t ");
1394 variable = strchr(line, '.');
1403 fprintf(stderr, "No variable given.\n");
1407 if(action >= 0 && !*value) {
1408 fprintf(stderr, "No value for variable given.\n");
1412 if(action < -1 && *value)
1415 /* Some simple checks. */
1418 for(int i = 0; variables[i].name; i++) {
1419 if(strcasecmp(variables[i].name, variable))
1423 variable = (char *)variables[i].name;
1425 /* Discourage use of obsolete variables. */
1427 if(variables[i].type & VAR_OBSOLETE && action >= 0) {
1429 fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
1431 fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
1436 /* Don't put server variables in host config files */
1438 if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
1440 fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
1442 fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
1447 /* Should this go into our own host config file? */
1449 if(!node && !(variables[i].type & VAR_SERVER)) {
1450 node = get_my_name(true);
1458 if(node && !check_id(node)) {
1459 fprintf(stderr, "Invalid name for node.\n");
1464 if(force || action < 0) {
1465 fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1467 fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1472 // Open the right configuration file.
1475 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, node);
1477 filename = tinc_conf;
1479 FILE *f = fopen(filename, "r");
1481 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1485 char *tmpfile = NULL;
1489 xasprintf(&tmpfile, "%s.config.tmp", filename);
1490 tf = fopen(tmpfile, "w");
1492 fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1498 // Copy the file, making modifications on the fly, unless we are just getting a value.
1502 bool removed = false;
1505 while(fgets(buf1, sizeof buf1, f)) {
1506 buf1[sizeof buf1 - 1] = 0;
1507 strncpy(buf2, buf1, sizeof buf2);
1509 // Parse line in a simple way
1513 len = strcspn(buf2, "\t =");
1514 bvalue = buf2 + len;
1515 bvalue += strspn(bvalue, "\t ");
1516 if(*bvalue == '=') {
1518 bvalue += strspn(bvalue, "\t ");
1524 if(!strcasecmp(buf2, variable)) {
1528 printf("%s\n", bvalue);
1530 } else if(action == -1) {
1531 if(!*value || !strcasecmp(bvalue, value)) {
1536 } else if(action == 0) {
1537 // Already set? Delete the rest...
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));
1551 // Copy original line...
1552 if(fputs(buf1, tf) < 0) {
1553 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
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));
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));
1574 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
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));
1588 fprintf(stderr, "No matching configuration variables found.\n");
1592 // Make sure we wrote everything...
1594 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1598 // Could we find what we had to remove?
1599 if(action < 0 && !removed) {
1601 fprintf(stderr, "No configuration variables deleted.\n");
1605 // Replace the configuration file with the new one
1607 if(remove(filename)) {
1608 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1612 if(rename(tmpfile, filename)) {
1613 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1617 // Silently try notifying a running tincd of changes.
1618 if(connect_tincd(false))
1619 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1624 bool check_id(const char *name) {
1628 for(int i = 0; i < strlen(name); i++) {
1629 if(!isalnum(name[i]) && name[i] != '_')
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);
1643 fprintf(stderr, "Too many arguments!\n");
1645 } else if(argc < 2) {
1648 fprintf(stdout, "Enter the Name you want your tinc node to have: ");
1650 if(!fgets(buf, sizeof buf, stdin)) {
1651 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1654 int len = rstrip(buf);
1656 fprintf(stderr, "No name given!\n");
1661 fprintf(stderr, "No Name given!\n");
1665 name = strdup(argv[1]);
1667 fprintf(stderr, "No Name given!\n");
1672 if(!check_id(name)) {
1673 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1677 if(mkdir(confdir, 0755) && errno != EEXIST) {
1678 fprintf(stderr, "Could not create directory %s: %s\n", CONFDIR, strerror(errno));
1682 if(mkdir(confbase, 0755) && errno != EEXIST) {
1683 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1687 if(mkdir(hosts_dir, 0755) && errno != EEXIST) {
1688 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1692 FILE *f = fopen(tinc_conf, "w");
1694 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1698 fprintf(f, "Name = %s\n", name);
1701 if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1706 xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1707 if(access(filename, F_OK)) {
1708 FILE *f = fopen(filename, "w");
1710 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1713 mode_t mask = umask(0);
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");
1725 static int cmd_generate_keys(int argc, char *argv[]) {
1727 fprintf(stderr, "Too many arguments!\n");
1732 name = get_my_name(false);
1734 return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1737 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1739 fprintf(stderr, "Too many arguments!\n");
1744 name = get_my_name(false);
1746 return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1749 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1751 fprintf(stderr, "Too many arguments!\n");
1756 name = get_my_name(false);
1758 return !ecdsa_keygen(true);
1761 static int cmd_help(int argc, char *argv[]) {
1766 static int cmd_version(int argc, char *argv[]) {
1768 fprintf(stderr, "Too many arguments!\n");
1776 static int cmd_info(int argc, char *argv[]) {
1778 fprintf(stderr, "Invalid number of arguments.\n");
1782 if(!connect_tincd(true))
1785 return info(fd, argv[1]);
1788 static const char *conffiles[] = {
1799 static int cmd_edit(int argc, char *argv[]) {
1801 fprintf(stderr, "Invalid number of arguments.\n");
1805 char *filename = NULL;
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]);
1819 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1820 char *dash = strchr(argv[1], '-');
1823 if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1824 fprintf(stderr, "Invalid configuration filename.\n");
1832 xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1834 xasprintf(&command, "edit \"%s\"", filename);
1836 int result = system(command);
1840 // Silently try notifying a running tincd of changes.
1841 if(connect_tincd(false))
1842 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1847 static int export(const char *name, FILE *out) {
1849 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1850 FILE *in = fopen(filename, "r");
1852 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1856 fprintf(out, "Name = %s\n", name);
1858 while(fgets(buf, sizeof buf, in)) {
1859 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1864 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1873 static int cmd_export(int argc, char *argv[]) {
1875 fprintf(stderr, "Too many arguments!\n");
1879 char *name = get_my_name(true);
1883 int result = export(name, stdout);
1891 static int cmd_export_all(int argc, char *argv[]) {
1893 fprintf(stderr, "Too many arguments!\n");
1897 DIR *dir = opendir(hosts_dir);
1899 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1907 while((ent = readdir(dir))) {
1908 if(!check_id(ent->d_name))
1914 printf("#---------------------------------------------------------------#\n");
1916 result |= export(ent->d_name, stdout);
1925 static int cmd_import(int argc, char *argv[]) {
1927 fprintf(stderr, "Too many arguments!\n");
1936 char *filename = NULL;
1938 bool firstline = true;
1940 while(fgets(buf, sizeof buf, in)) {
1941 if(sscanf(buf, "Name = %s", name) == 1) {
1944 if(!check_id(name)) {
1945 fprintf(stderr, "Invalid Name in input!\n");
1953 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1955 if(!force && !access(filename, F_OK)) {
1956 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
1961 out = fopen(filename, "w");
1963 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
1969 } else if(firstline) {
1970 fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
1975 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
1979 if(fputs(buf, out) < 0) {
1980 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
1990 fprintf(stderr, "Imported %d host configuration files.\n", count);
1993 fprintf(stderr, "No host configuration files imported.\n");
1998 static int cmd_exchange(int argc, char *argv[]) {
1999 return cmd_export(argc, argv) ?: cmd_import(argc, argv);
2002 static int cmd_exchange_all(int argc, char *argv[]) {
2003 return cmd_export_all(argc, argv) ?: cmd_import(argc, argv);
2006 static const struct {
2007 const char *command;
2008 int (*function)(int argc, char *argv[]);
2011 {"start", cmd_start},
2013 {"restart", cmd_restart},
2014 {"reload", cmd_reload},
2016 {"purge", cmd_purge},
2017 {"debug", cmd_debug},
2018 {"retry", cmd_retry},
2019 {"connect", cmd_connect},
2020 {"disconnect", cmd_disconnect},
2025 {"config", cmd_config, true},
2026 {"add", cmd_config},
2027 {"del", cmd_config},
2028 {"get", cmd_config},
2029 {"set", cmd_config},
2031 {"generate-keys", cmd_generate_keys},
2032 {"generate-rsa-keys", cmd_generate_rsa_keys},
2033 {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
2035 {"version", cmd_version},
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},
2048 #ifdef HAVE_READLINE
2049 static char *complete_command(const char *text, int state) {
2057 while(commands[i].command) {
2058 if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text)))
2059 return xstrdup(commands[i].command);
2066 static char *complete_dump(const char *text, int state) {
2067 const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
2076 if(!strncasecmp(matches[i], text, strlen(text)))
2077 return xstrdup(matches[i]);
2084 static char *complete_config(const char *text, int state) {
2092 while(variables[i].name) {
2093 char *dot = strchr(text, '.');
2095 if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
2097 xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
2101 if(!strncasecmp(variables[i].name, text, strlen(text)))
2102 return xstrdup(variables[i].name);
2110 static char *complete_info(const char *text, int state) {
2114 if(!connect_tincd(false))
2116 // Check the list of nodes
2117 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
2118 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
2121 while(recvline(fd, line, sizeof line)) {
2123 int n = sscanf(line, "%d %d %s", &code, &req, item);
2133 fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
2137 if(!strncmp(item, text, strlen(text)))
2138 return xstrdup(strip_weight(item));
2144 static char *complete_nothing(const char *text, int state) {
2148 static char **completion (const char *text, int start, int end) {
2149 char **matches = NULL;
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);
2170 static int cmd_shell(int argc, char *argv[]) {
2172 xasprintf(&prompt, "%s> ", identname);
2176 int maxargs = argc + 16;
2177 char **nargv = xmalloc(maxargs * sizeof *nargv);
2179 for(int i = 0; i < argc; i++)
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;
2191 #ifdef HAVE_READLINE
2195 rl_basic_word_break_characters = "\t\n ";
2196 line = readline(prompt);
2198 copy = xstrdup(line);
2200 line = fgets(buf, sizeof buf, stdin);
2204 fputs(prompt, stdout);
2206 line = fgets(buf, sizeof buf, stdin);
2212 /* Ignore comments */
2220 char *p = line + strspn(line, " \t\n");
2221 char *next = strtok(p, " \t\n");
2224 if(nargc >= maxargs) {
2225 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
2228 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
2233 next = strtok(NULL, " \t\n");
2239 if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit"))
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);
2252 #ifdef HAVE_READLINE
2258 fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
2271 int main(int argc, char *argv[]) {
2272 program_name = argv[0];
2276 if(!parse_options(argc, argv))
2280 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2281 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2295 tty = isatty(0) && isatty(1);
2298 return cmd_shell(argc, argv);
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);
2305 fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);