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 mkdir(a, b) mkdir(a)
44 #define SCRIPTEXTENSION ".bat"
46 #define SCRIPTEXTENSION ""
49 static char **orig_argv;
52 /* If nonzero, display usage information and exit. */
53 static bool show_help = false;
55 /* If nonzero, print the version on standard output and exit. */
56 static bool show_version = false;
58 static char *name = NULL;
59 static char controlcookie[1025];
60 char *tinc_conf = NULL;
61 char *hosts_dir = NULL;
64 // Horrible global variables...
71 static bool force = false;
73 bool confbasegiven = false;
74 bool netnamegiven = false;
77 static struct WSAData wsa_state;
80 static struct option const long_options[] = {
81 {"config", required_argument, NULL, 'c'},
82 {"net", required_argument, NULL, 'n'},
83 {"help", no_argument, NULL, 1},
84 {"version", no_argument, NULL, 2},
85 {"pidfile", required_argument, NULL, 3},
86 {"force", no_argument, NULL, 4},
90 static void version(void) {
91 printf("%s version %s (built %s %s, protocol %d.%d)\n", PACKAGE,
92 VERSION, __DATE__, __TIME__, PROT_MAJOR, PROT_MINOR);
93 printf("Copyright (C) 1998-2012 Ivo Timmermans, Guus Sliepen and others.\n"
94 "See the AUTHORS file for a complete list.\n\n"
95 "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
96 "and you are welcome to redistribute it under certain conditions;\n"
97 "see the file COPYING for details.\n");
100 static void usage(bool status) {
102 fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
104 printf("Usage: %s [options] command\n\n", program_name);
105 printf("Valid options are:\n"
106 " -c, --config=DIR Read configuration options from DIR.\n"
107 " -n, --net=NETNAME Connect to net NETNAME.\n"
108 " --pidfile=FILENAME Read control cookie from FILENAME.\n"
109 " --help Display this help and exit.\n"
110 " --version Output version information and exit.\n"
112 "Valid commands are:\n"
113 " init [name] Create initial configuration files.\n"
114 " get VARIABLE Print current value of VARIABLE\n"
115 " set VARIABLE VALUE Set VARIABLE to VALUE\n"
116 " add VARIABLE VALUE Add VARIABLE with the given VALUE\n"
117 " del VARIABLE [VALUE] Remove VARIABLE [only ones with watching VALUE]\n"
118 " start [tincd options] Start tincd.\n"
119 " stop Stop tincd.\n"
120 " restart Restart tincd.\n"
121 " reload Partially reload configuration of running tincd.\n"
122 " pid Show PID of currently running tincd.\n"
123 " generate-keys [bits] Generate new RSA and ECDSA public/private keypairs.\n"
124 " generate-rsa-keys [bits] Generate a new RSA public/private keypair.\n"
125 " generate-ecdsa-keys Generate a new ECDSA public/private keypair.\n"
126 " dump Dump a list of one of the following things:\n"
127 " [reachable] nodes - all known nodes in the VPN\n"
128 " edges - all known connections in the VPN\n"
129 " subnets - all known subnets in the VPN\n"
130 " connections - all meta connections with ourself\n"
131 " [di]graph - graph of the VPN in dotty format\n"
132 " info NODE|SUBNET|ADDRESS Give information about a particular NODE, SUBNET or ADDRESS.\n"
133 " purge Purge unreachable nodes\n"
134 " debug N Set debug level\n"
135 " retry Retry all outgoing connections\n"
136 " disconnect NODE Close meta connection with NODE\n"
138 " top Show real-time statistics\n"
140 " pcap [snaplen] Dump traffic in pcap format [up to snaplen bytes per packet]\n"
141 " log [level] Dump log output [up to the specified level]\n"
142 " export Export host configuration of local node to standard output\n"
143 " export-all Export all host configuration files to standard output\n"
144 " import [--force] Import host configuration file(s) from standard input\n"
145 " exchange [--force] Same as export followed by import\n"
146 " exchange-all [--force] Same as export-all followed by import\n"
147 " invite NODE [...] Generate an invitation for NODE\n"
148 " join INVITATION Join a VPN using an INVITIATION\n"
150 printf("Report bugs to tinc@tinc-vpn.org.\n");
154 static bool parse_options(int argc, char **argv) {
156 int option_index = 0;
158 while((r = getopt_long(argc, argv, "+c:n:", long_options, &option_index)) != EOF) {
160 case 0: /* long option */
163 case 'c': /* config file */
164 confbase = xstrdup(optarg);
165 confbasegiven = true;
168 case 'n': /* net name given */
169 netname = xstrdup(optarg);
172 case 1: /* show help */
176 case 2: /* show version */
180 case 3: /* open control socket here */
181 pidfilename = xstrdup(optarg);
188 case '?': /* wrong options */
197 if(!netname && (netname = getenv("NETNAME")))
198 netname = xstrdup(netname);
200 /* netname "." is special: a "top-level name" */
202 if(netname && (!*netname || !strcmp(netname, "."))) {
207 if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
208 fprintf(stderr, "Invalid character in netname!\n");
215 static void disable_old_keys(const char *filename, const char *what) {
216 char tmpfile[PATH_MAX] = "";
218 bool disabled = false;
223 r = fopen(filename, "r");
227 snprintf(tmpfile, sizeof tmpfile, "%s.tmp", filename);
229 w = fopen(tmpfile, "w");
231 while(fgets(buf, sizeof buf, r)) {
232 if(!block && !strncmp(buf, "-----BEGIN ", 11)) {
233 if((strstr(buf, " EC ") && strstr(what, "ECDSA")) || (strstr(buf, " RSA ") && strstr(what, "RSA"))) {
239 bool ecdsapubkey = !strncasecmp(buf, "ECDSAPublicKey", 14) && strchr(" \t=", buf[14]) && strstr(what, "ECDSA");
245 if(block || ecdsapubkey)
247 if(fputs(buf, w) < 0) {
253 if(block && !strncmp(buf, "-----END ", 9))
260 if(ferror(r) || fclose(r) < 0)
265 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
272 // We cannot atomically replace files on Windows.
273 char bakfile[PATH_MAX] = "";
274 snprintf(bakfile, sizeof bakfile, "%s.bak", filename);
275 if(rename(filename, bakfile) || rename(tmpfile, filename)) {
276 rename(bakfile, filename);
278 if(rename(tmpfile, filename)) {
280 fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
285 fprintf(stderr, "Warning: old key(s) found and disabled.\n");
292 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask) {
298 /* Check stdin and stdout */
300 /* Ask for a file and/or directory name. */
301 fprintf(stdout, "Please enter a file to save %s to [%s]: ", what, filename);
304 if(fgets(buf, sizeof buf, stdin) == NULL) {
305 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
309 size_t len = strlen(buf);
318 if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
320 if(filename[0] != '/') {
322 /* The directory is a relative path or a filename. */
323 directory = get_current_dir_name();
324 snprintf(buf2, sizeof buf2, "%s" SLASH "%s", directory, filename);
328 umask(0077); /* Disallow everything for group and other */
330 disable_old_keys(filename, what);
332 /* Open it first to keep the inode busy */
334 r = fopen(filename, mode);
337 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
345 Generate a public/private ECDSA keypair, and ask for a file to store
348 static bool ecdsa_keygen(bool ask) {
351 char *pubname, *privname;
353 fprintf(stderr, "Generating ECDSA keypair:\n");
355 if(!(key = ecdsa_generate())) {
356 fprintf(stderr, "Error during key generation!\n");
359 fprintf(stderr, "Done.\n");
361 xasprintf(&privname, "%s" SLASH "ecdsa_key.priv", confbase);
362 f = ask_and_open(privname, "private ECDSA key", "a", ask);
369 /* Make it unreadable for others. */
370 fchmod(fileno(f), 0600);
373 if(!ecdsa_write_pem_private_key(key, f)) {
374 fprintf(stderr, "Error writing private key!\n");
383 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
385 xasprintf(&pubname, "%s" SLASH "ecdsa_key.pub", confbase);
387 f = ask_and_open(pubname, "public ECDSA key", "a", ask);
393 char *pubkey = ecdsa_get_base64_public_key(key);
394 fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
404 Generate a public/private RSA keypair, and ask for a file to store
407 static bool rsa_keygen(int bits, bool ask) {
410 char *pubname, *privname;
412 fprintf(stderr, "Generating %d bits keys:\n", bits);
414 if(!(key = rsa_generate(bits, 0x10001))) {
415 fprintf(stderr, "Error during key generation!\n");
418 fprintf(stderr, "Done.\n");
420 xasprintf(&privname, "%s" SLASH "rsa_key.priv", confbase);
421 f = ask_and_open(privname, "private RSA key", "a", ask);
428 /* Make it unreadable for others. */
429 fchmod(fileno(f), 0600);
432 if(!rsa_write_pem_private_key(key, f)) {
433 fprintf(stderr, "Error writing private key!\n");
442 xasprintf(&pubname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
444 xasprintf(&pubname, "%s" SLASH "rsa_key.pub", confbase);
446 f = ask_and_open(pubname, "public RSA key", "a", ask);
452 if(!rsa_write_pem_public_key(key, f)) {
453 fprintf(stderr, "Error writing public key!\n");
468 bool recvline(int fd, char *line, size_t len) {
469 char *newline = NULL;
473 while(!(newline = memchr(buffer, '\n', blen))) {
474 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
475 if(result == -1 && errno == EINTR)
482 if(newline - buffer >= len)
485 len = newline - buffer;
487 memcpy(line, buffer, len);
489 memmove(buffer, newline + 1, blen - len - 1);
495 bool recvdata(int fd, char *data, size_t len) {
500 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
501 if(result == -1 && errno == EINTR)
508 memcpy(data, buffer, len);
509 memmove(buffer, buffer + len, blen - len);
515 bool sendline(int fd, char *format, ...) {
516 static char buffer[4096];
521 va_start(ap, format);
522 blen = vsnprintf(buffer, sizeof buffer, format, ap);
525 if(blen < 1 || blen >= sizeof buffer)
532 int result = send(fd, p, blen, 0);
533 if(result == -1 && errno == EINTR)
544 static void pcap(int fd, FILE *out, int snaplen) {
545 sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
553 uint32_t tz_accuracy;
560 snaplen ?: sizeof data,
573 fwrite(&header, sizeof header, 1, out);
577 while(recvline(fd, line, sizeof line)) {
579 int n = sscanf(line, "%d %d %d", &code, &req, &len);
580 gettimeofday(&tv, NULL);
581 if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || len > sizeof data)
583 if(!recvdata(fd, data, len))
585 packet.tv_sec = tv.tv_sec;
586 packet.tv_usec = tv.tv_usec;
588 packet.origlen = len;
589 fwrite(&packet, sizeof packet, 1, out);
590 fwrite(data, len, 1, out);
595 static void logcontrol(int fd, FILE *out, int level) {
596 sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
600 while(recvline(fd, line, sizeof line)) {
602 int n = sscanf(line, "%d %d %d", &code, &req, &len);
603 if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || len > sizeof data)
605 if(!recvdata(fd, data, len))
607 fwrite(data, len, 1, out);
614 static bool remove_service(void) {
615 SC_HANDLE manager = NULL;
616 SC_HANDLE service = NULL;
617 SERVICE_STATUS status = {0};
619 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
621 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
625 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
628 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
632 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
633 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
635 fprintf(stderr, "%s service stopped\n", identname);
637 if(!DeleteService(service)) {
638 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
642 fprintf(stderr, "%s service removed\n", identname);
648 bool connect_tincd(bool verbose) {
653 struct timeval tv = {0, 0};
654 if(select(fd + 1, &r, NULL, NULL, &tv)) {
655 fprintf(stderr, "Previous connection to tincd lost, reconnecting.\n");
663 FILE *f = fopen(pidfilename, "r");
666 fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
673 if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
675 fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
683 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
685 fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
691 struct sockaddr_un sa;
692 sa.sun_family = AF_UNIX;
693 strncpy(sa.sun_path, unixsocketname, sizeof sa.sun_path);
695 fd = socket(AF_UNIX, SOCK_STREAM, 0);
698 fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
702 if(connect(fd, (struct sockaddr *)&sa, sizeof sa) < 0) {
704 fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
710 struct addrinfo hints = {
711 .ai_family = AF_UNSPEC,
712 .ai_socktype = SOCK_STREAM,
713 .ai_protocol = IPPROTO_TCP,
717 struct addrinfo *res = NULL;
719 if(getaddrinfo(host, port, &hints, &res) || !res) {
721 fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
725 fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
728 fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
733 unsigned long arg = 0;
735 if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
737 fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
741 if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
743 fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
755 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
757 fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
763 sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
765 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
767 fprintf(stderr, "Could not fully establish control socket connection\n");
777 static int cmd_start(int argc, char *argv[]) {
778 if(connect_tincd(false)) {
780 fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
782 fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
787 char *slash = strrchr(program_name, '/');
790 if ((c = strrchr(program_name, '\\')) > slash)
795 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
800 char **nargv = xzalloc((optind + argc) * sizeof *nargv);
803 for(int i = 1; i < optind; i++)
804 nargv[nargc++] = orig_argv[i];
805 for(int i = 1; i < argc; i++)
806 nargv[nargc++] = argv[i];
810 fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
815 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
821 exit(execvp(c, nargv));
826 if(waitpid(pid, &status, 0) != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
827 fprintf(stderr, "Error starting %s\n", c);
835 static int cmd_stop(int argc, char *argv[]) {
837 fprintf(stderr, "Too many arguments!\n");
842 if(!connect_tincd(true)) {
844 if(kill(pid, SIGTERM)) {
845 fprintf(stderr, "Could not send TERM signal to process with PID %u: %s\n", pid, strerror(errno));
849 fprintf(stderr, "Sent TERM signal to process with PID %u.\n", pid);
850 waitpid(pid, NULL, 0);
857 sendline(fd, "%d %d", CONTROL, REQ_STOP);
859 while(recvline(fd, line, sizeof line)) {
860 // Wait for tincd to close the connection...
863 if(!remove_service())
873 static int cmd_restart(int argc, char *argv[]) {
874 cmd_stop(argc, argv);
875 return cmd_start(argc, argv);
878 static int cmd_reload(int argc, char *argv[]) {
880 fprintf(stderr, "Too many arguments!\n");
884 if(!connect_tincd(true))
887 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
888 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RELOAD || result) {
889 fprintf(stderr, "Could not reload configuration.\n");
897 static int cmd_dump(int argc, char *argv[]) {
898 bool only_reachable = false;
900 if(argc > 2 && !strcasecmp(argv[1], "reachable")) {
901 if(strcasecmp(argv[2], "nodes")) {
902 fprintf(stderr, "`reachable' only supported for nodes.\n");
906 only_reachable = true;
912 fprintf(stderr, "Invalid number of arguments.\n");
917 if(!connect_tincd(true))
922 if(!strcasecmp(argv[1], "nodes"))
923 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
924 else if(!strcasecmp(argv[1], "edges"))
925 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
926 else if(!strcasecmp(argv[1], "subnets"))
927 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
928 else if(!strcasecmp(argv[1], "connections"))
929 sendline(fd, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
930 else if(!strcasecmp(argv[1], "graph")) {
931 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
932 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
934 } else if(!strcasecmp(argv[1], "digraph")) {
935 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
936 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
939 fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
946 else if(do_graph == 2)
947 printf("digraph {\n");
949 while(recvline(fd, line, sizeof line)) {
950 char node1[4096], node2[4096];
951 int n = sscanf(line, "%d %d %s %s", &code, &req, node1, node2);
953 if(do_graph && req == REQ_DUMP_NODES)
972 int cipher, digest, maclength, compression, distance, socket, weight;
973 short int pmtu, minmtu, maxmtu;
974 unsigned int options, status_int;
975 node_status_t status;
976 long int last_state_change;
979 case REQ_DUMP_NODES: {
980 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);
982 fprintf(stderr, "Unable to parse node dump from tincd: %s\n", line);
986 memcpy(&status, &status_int, sizeof status);
989 const char *color = "black";
990 if(!strcmp(host, "MYSELF"))
992 else if(!status.reachable)
994 else if(strcmp(via, node))
996 else if(!status.validkey)
1000 printf(" %s [label = \"%s\", color = \"%s\"%s];\n", node, node, color, strcmp(host, "MYSELF") ? "" : ", style = \"filled\"");
1002 if(only_reachable && !status.reachable)
1004 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",
1005 node, host, port, cipher, digest, maclength, compression, options, status_int, nexthop, via, distance, pmtu, minmtu, maxmtu);
1009 case REQ_DUMP_EDGES: {
1010 int n = sscanf(line, "%*d %*d %s %s %s port %s %x %d", from, to, host, port, &options, &weight);
1012 fprintf(stderr, "Unable to parse edge dump from tincd.\n");
1017 float w = 1 + 65536.0 / weight;
1018 if(do_graph == 1 && strcmp(node1, node2) > 0)
1019 printf(" %s -- %s [w = %f, weight = %f];\n", node1, node2, w, w);
1020 else if(do_graph == 2)
1021 printf(" %s -> %s [w = %f, weight = %f];\n", node1, node2, w, w);
1023 printf("%s to %s at %s port %s options %x weight %d\n", from, to, host, port, options, weight);
1027 case REQ_DUMP_SUBNETS: {
1028 int n = sscanf(line, "%*d %*d %s %s", subnet, node);
1030 fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
1033 printf("%s owner %s\n", strip_weight(subnet), node);
1036 case REQ_DUMP_CONNECTIONS: {
1037 int n = sscanf(line, "%*d %*d %s %s port %s %x %d %x", node, host, port, &options, &socket, &status_int);
1039 fprintf(stderr, "Unable to parse connection dump from tincd.\n");
1042 printf("%s at %s port %s options %x socket %d status %x\n", node, host, port, options, socket, status_int);
1046 fprintf(stderr, "Unable to parse dump from tincd.\n");
1051 fprintf(stderr, "Error receiving dump.\n");
1055 static int cmd_purge(int argc, char *argv[]) {
1057 fprintf(stderr, "Too many arguments!\n");
1061 if(!connect_tincd(true))
1064 sendline(fd, "%d %d", CONTROL, REQ_PURGE);
1065 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_PURGE || result) {
1066 fprintf(stderr, "Could not purge old information.\n");
1073 static int cmd_debug(int argc, char *argv[]) {
1075 fprintf(stderr, "Invalid number of arguments.\n");
1079 if(!connect_tincd(true))
1082 int debuglevel = atoi(argv[1]);
1085 sendline(fd, "%d %d %d", CONTROL, REQ_SET_DEBUG, debuglevel);
1086 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &origlevel) != 3 || code != CONTROL || req != REQ_SET_DEBUG) {
1087 fprintf(stderr, "Could not set debug level.\n");
1091 fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
1095 static int cmd_retry(int argc, char *argv[]) {
1097 fprintf(stderr, "Too many arguments!\n");
1101 if(!connect_tincd(true))
1104 sendline(fd, "%d %d", CONTROL, REQ_RETRY);
1105 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RETRY || result) {
1106 fprintf(stderr, "Could not retry outgoing connections.\n");
1113 static int cmd_connect(int argc, char *argv[]) {
1115 fprintf(stderr, "Invalid number of arguments.\n");
1119 if(!check_id(argv[1])) {
1120 fprintf(stderr, "Invalid name for node.\n");
1124 if(!connect_tincd(true))
1127 sendline(fd, "%d %d %s", CONTROL, REQ_CONNECT, argv[1]);
1128 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_CONNECT || result) {
1129 fprintf(stderr, "Could not connect to %s.\n", argv[1]);
1136 static int cmd_disconnect(int argc, char *argv[]) {
1138 fprintf(stderr, "Invalid number of arguments.\n");
1142 if(!check_id(argv[1])) {
1143 fprintf(stderr, "Invalid name for node.\n");
1147 if(!connect_tincd(true))
1150 sendline(fd, "%d %d %s", CONTROL, REQ_DISCONNECT, argv[1]);
1151 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_DISCONNECT || result) {
1152 fprintf(stderr, "Could not disconnect %s.\n", argv[1]);
1159 static int cmd_top(int argc, char *argv[]) {
1161 fprintf(stderr, "Too many arguments!\n");
1166 if(!connect_tincd(true))
1172 fprintf(stderr, "This version of tinc was compiled without support for the curses library.\n");
1177 static int cmd_pcap(int argc, char *argv[]) {
1179 fprintf(stderr, "Too many arguments!\n");
1183 if(!connect_tincd(true))
1186 pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
1190 static int cmd_log(int argc, char *argv[]) {
1192 fprintf(stderr, "Too many arguments!\n");
1196 if(!connect_tincd(true))
1199 logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
1203 static int cmd_pid(int argc, char *argv[]) {
1205 fprintf(stderr, "Too many arguments!\n");
1209 if(!connect_tincd(true) && !pid)
1212 printf("%d\n", pid);
1216 int rstrip(char *value) {
1217 int len = strlen(value);
1218 while(len && strchr("\t\r\n ", value[len - 1]))
1223 char *get_my_name(bool verbose) {
1224 FILE *f = fopen(tinc_conf, "r");
1227 fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
1233 while(fgets(buf, sizeof buf, f)) {
1234 int len = strcspn(buf, "\t =");
1236 value += strspn(value, "\t ");
1239 value += strspn(value, "\t ");
1244 if(strcasecmp(buf, "Name"))
1248 return strdup(value);
1254 fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
1258 const var_t variables[] = {
1259 /* Server configuration */
1260 {"AddressFamily", VAR_SERVER},
1261 {"AutoConnect", VAR_SERVER | VAR_SAFE},
1262 {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
1263 {"BindToInterface", VAR_SERVER},
1264 {"Broadcast", VAR_SERVER | VAR_SAFE},
1265 {"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
1266 {"DecrementTTL", VAR_SERVER},
1267 {"Device", VAR_SERVER},
1268 {"DeviceType", VAR_SERVER},
1269 {"DirectOnly", VAR_SERVER},
1270 {"ECDSAPrivateKeyFile", VAR_SERVER},
1271 {"ExperimentalProtocol", VAR_SERVER},
1272 {"Forwarding", VAR_SERVER},
1273 {"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
1274 {"Hostnames", VAR_SERVER},
1275 {"IffOneQueue", VAR_SERVER},
1276 {"Interface", VAR_SERVER},
1277 {"KeyExpire", VAR_SERVER},
1278 {"LocalDiscovery", VAR_SERVER},
1279 {"MACExpire", VAR_SERVER},
1280 {"MaxOutputBufferSize", VAR_SERVER},
1281 {"MaxTimeout", VAR_SERVER},
1282 {"Mode", VAR_SERVER | VAR_SAFE},
1283 {"Name", VAR_SERVER},
1284 {"PingInterval", VAR_SERVER},
1285 {"PingTimeout", VAR_SERVER},
1286 {"PriorityInheritance", VAR_SERVER},
1287 {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
1288 {"PrivateKeyFile", VAR_SERVER},
1289 {"ProcessPriority", VAR_SERVER},
1290 {"Proxy", VAR_SERVER},
1291 {"ReplayWindow", VAR_SERVER},
1292 {"ScriptsExtension", VAR_SERVER},
1293 {"ScriptsInterpreter", VAR_SERVER},
1294 {"StrictSubnets", VAR_SERVER},
1295 {"TunnelServer", VAR_SERVER},
1296 {"UDPRcvBuf", VAR_SERVER},
1297 {"UDPSndBuf", VAR_SERVER},
1298 {"VDEGroup", VAR_SERVER},
1299 {"VDEPort", VAR_SERVER},
1300 /* Host configuration */
1301 {"Address", VAR_HOST | VAR_MULTIPLE},
1302 {"Cipher", VAR_SERVER | VAR_HOST},
1303 {"ClampMSS", VAR_SERVER | VAR_HOST},
1304 {"Compression", VAR_SERVER | VAR_HOST},
1305 {"Digest", VAR_SERVER | VAR_HOST},
1306 {"ECDSAPublicKey", VAR_HOST},
1307 {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
1308 {"IndirectData", VAR_SERVER | VAR_HOST},
1309 {"MACLength", VAR_SERVER | VAR_HOST},
1310 {"PMTU", VAR_SERVER | VAR_HOST},
1311 {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
1313 {"PublicKey", VAR_HOST | VAR_OBSOLETE},
1314 {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
1315 {"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
1316 {"TCPOnly", VAR_SERVER | VAR_HOST},
1317 {"Weight", VAR_HOST | VAR_SAFE},
1321 static int cmd_config(int argc, char *argv[]) {
1323 fprintf(stderr, "Invalid number of arguments.\n");
1327 if(strcasecmp(argv[0], "config"))
1331 if(!strcasecmp(argv[1], "get")) {
1333 } else if(!strcasecmp(argv[1], "add")) {
1334 argv++, argc--, action = 1;
1335 } else if(!strcasecmp(argv[1], "del")) {
1336 argv++, argc--, action = -1;
1337 } else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
1338 argv++, argc--, action = 0;
1342 fprintf(stderr, "Invalid number of arguments.\n");
1346 // Concatenate the rest of the command line
1347 strncpy(line, argv[1], sizeof line - 1);
1348 for(int i = 2; i < argc; i++) {
1349 strncat(line, " ", sizeof line - 1 - strlen(line));
1350 strncat(line, argv[i], sizeof line - 1 - strlen(line));
1353 // Liberal parsing into node name, variable name and value.
1359 len = strcspn(line, "\t =");
1361 value += strspn(value, "\t ");
1364 value += strspn(value, "\t ");
1367 variable = strchr(line, '.');
1376 fprintf(stderr, "No variable given.\n");
1380 if(action >= 0 && !*value) {
1381 fprintf(stderr, "No value for variable given.\n");
1385 if(action < -1 && *value)
1388 /* Some simple checks. */
1391 for(int i = 0; variables[i].name; i++) {
1392 if(strcasecmp(variables[i].name, variable))
1396 variable = (char *)variables[i].name;
1398 /* Discourage use of obsolete variables. */
1400 if(variables[i].type & VAR_OBSOLETE && action >= 0) {
1402 fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
1404 fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
1409 /* Don't put server variables in host config files */
1411 if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
1413 fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
1415 fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
1420 /* Should this go into our own host config file? */
1422 if(!node && !(variables[i].type & VAR_SERVER)) {
1423 node = get_my_name(true);
1431 if(node && !check_id(node)) {
1432 fprintf(stderr, "Invalid name for node.\n");
1437 if(force || action < 0) {
1438 fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1440 fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1445 // Open the right configuration file.
1448 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, node);
1450 filename = tinc_conf;
1452 FILE *f = fopen(filename, "r");
1454 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1458 char *tmpfile = NULL;
1462 xasprintf(&tmpfile, "%s.config.tmp", filename);
1463 tf = fopen(tmpfile, "w");
1465 fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1471 // Copy the file, making modifications on the fly, unless we are just getting a value.
1475 bool removed = false;
1478 while(fgets(buf1, sizeof buf1, f)) {
1479 buf1[sizeof buf1 - 1] = 0;
1480 strncpy(buf2, buf1, sizeof buf2);
1482 // Parse line in a simple way
1486 len = strcspn(buf2, "\t =");
1487 bvalue = buf2 + len;
1488 bvalue += strspn(bvalue, "\t ");
1489 if(*bvalue == '=') {
1491 bvalue += strspn(bvalue, "\t ");
1497 if(!strcasecmp(buf2, variable)) {
1501 printf("%s\n", bvalue);
1503 } else if(action == -1) {
1504 if(!*value || !strcasecmp(bvalue, value)) {
1509 } else if(action == 0) {
1510 // Already set? Delete the rest...
1513 // Otherwise, replace.
1514 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1515 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1524 // Copy original line...
1525 if(fputs(buf1, tf) < 0) {
1526 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1530 // Add newline if it is missing...
1531 if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
1532 if(fputc('\n', tf) < 0) {
1533 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1540 // Make sure we read everything...
1541 if(ferror(f) || !feof(f)) {
1542 fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
1547 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
1551 // Add new variable if necessary.
1552 if(action > 0 || (action == 0 && !set)) {
1553 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1554 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1561 fprintf(stderr, "No matching configuration variables found.\n");
1565 // Make sure we wrote everything...
1567 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1571 // Could we find what we had to remove?
1572 if(action < 0 && !removed) {
1574 fprintf(stderr, "No configuration variables deleted.\n");
1578 // Replace the configuration file with the new one
1580 if(remove(filename)) {
1581 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1585 if(rename(tmpfile, filename)) {
1586 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1590 // Silently try notifying a running tincd of changes.
1591 if(connect_tincd(false))
1592 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1597 bool check_id(const char *name) {
1601 for(int i = 0; i < strlen(name); i++) {
1602 if(!isalnum(name[i]) && name[i] != '_')
1609 static int cmd_init(int argc, char *argv[]) {
1610 if(!access(tinc_conf, F_OK)) {
1611 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1616 fprintf(stderr, "Too many arguments!\n");
1618 } else if(argc < 2) {
1621 fprintf(stdout, "Enter the Name you want your tinc node to have: ");
1623 if(!fgets(buf, sizeof buf, stdin)) {
1624 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1627 int len = rstrip(buf);
1629 fprintf(stderr, "No name given!\n");
1634 fprintf(stderr, "No Name given!\n");
1638 name = strdup(argv[1]);
1640 fprintf(stderr, "No Name given!\n");
1645 if(!check_id(name)) {
1646 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1650 if(mkdir(confdir, 0755) && errno != EEXIST) {
1651 fprintf(stderr, "Could not create directory %s: %s\n", CONFDIR, strerror(errno));
1655 if(mkdir(confbase, 0755) && errno != EEXIST) {
1656 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1660 if(mkdir(hosts_dir, 0755) && errno != EEXIST) {
1661 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1665 FILE *f = fopen(tinc_conf, "w");
1667 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1671 fprintf(f, "Name = %s\n", name);
1674 if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1679 xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1680 if(access(filename, F_OK)) {
1681 FILE *f = fopen(filename, "w");
1683 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1686 fchmod(fileno(f), 0755);
1687 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");
1696 static int cmd_generate_keys(int argc, char *argv[]) {
1698 fprintf(stderr, "Too many arguments!\n");
1703 name = get_my_name(false);
1705 return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1708 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1710 fprintf(stderr, "Too many arguments!\n");
1715 name = get_my_name(false);
1717 return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1720 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1722 fprintf(stderr, "Too many arguments!\n");
1727 name = get_my_name(false);
1729 return !ecdsa_keygen(true);
1732 static int cmd_help(int argc, char *argv[]) {
1737 static int cmd_version(int argc, char *argv[]) {
1739 fprintf(stderr, "Too many arguments!\n");
1747 static int cmd_info(int argc, char *argv[]) {
1749 fprintf(stderr, "Invalid number of arguments.\n");
1753 if(!connect_tincd(true))
1756 return info(fd, argv[1]);
1759 static const char *conffiles[] = {
1770 static int cmd_edit(int argc, char *argv[]) {
1772 fprintf(stderr, "Invalid number of arguments.\n");
1776 char *filename = NULL;
1778 if(strncmp(argv[1], "hosts" SLASH, 6)) {
1779 for(int i = 0; conffiles[i]; i++) {
1780 if(!strcmp(argv[1], conffiles[i])) {
1781 xasprintf(&filename, "%s" SLASH "%s", confbase, argv[1]);
1790 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1791 char *dash = strchr(argv[1], '-');
1794 if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1795 fprintf(stderr, "Invalid configuration filename.\n");
1803 xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1805 xasprintf(&command, "edit \"%s\"", filename);
1807 int result = system(command);
1811 // Silently try notifying a running tincd of changes.
1812 if(connect_tincd(false))
1813 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1818 static int export(const char *name, FILE *out) {
1820 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1821 FILE *in = fopen(filename, "r");
1823 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1827 fprintf(out, "Name = %s\n", name);
1829 while(fgets(buf, sizeof buf, in)) {
1830 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1835 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1844 static int cmd_export(int argc, char *argv[]) {
1846 fprintf(stderr, "Too many arguments!\n");
1850 char *name = get_my_name(true);
1854 int result = export(name, stdout);
1862 static int cmd_export_all(int argc, char *argv[]) {
1864 fprintf(stderr, "Too many arguments!\n");
1868 DIR *dir = opendir(hosts_dir);
1870 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1878 while((ent = readdir(dir))) {
1879 if(!check_id(ent->d_name))
1885 printf("#---------------------------------------------------------------#\n");
1887 result |= export(ent->d_name, stdout);
1896 static int cmd_import(int argc, char *argv[]) {
1898 fprintf(stderr, "Too many arguments!\n");
1907 char *filename = NULL;
1909 bool firstline = true;
1911 while(fgets(buf, sizeof buf, in)) {
1912 if(sscanf(buf, "Name = %s", name) == 1) {
1915 if(!check_id(name)) {
1916 fprintf(stderr, "Invalid Name in input!\n");
1924 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1926 if(!force && !access(filename, F_OK)) {
1927 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
1932 out = fopen(filename, "w");
1934 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
1940 } else if(firstline) {
1941 fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
1946 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
1950 if(fputs(buf, out) < 0) {
1951 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
1961 fprintf(stderr, "Imported %d host configuration files.\n", count);
1964 fprintf(stderr, "No host configuration files imported.\n");
1969 static int cmd_exchange(int argc, char *argv[]) {
1970 return cmd_export(argc, argv) ?: cmd_import(argc, argv);
1973 static int cmd_exchange_all(int argc, char *argv[]) {
1974 return cmd_export_all(argc, argv) ?: cmd_import(argc, argv);
1977 static const struct {
1978 const char *command;
1979 int (*function)(int argc, char *argv[]);
1982 {"start", cmd_start},
1984 {"restart", cmd_restart},
1985 {"reload", cmd_reload},
1987 {"purge", cmd_purge},
1988 {"debug", cmd_debug},
1989 {"retry", cmd_retry},
1990 {"connect", cmd_connect},
1991 {"disconnect", cmd_disconnect},
1996 {"config", cmd_config, true},
1997 {"add", cmd_config},
1998 {"del", cmd_config},
1999 {"get", cmd_config},
2000 {"set", cmd_config},
2002 {"generate-keys", cmd_generate_keys},
2003 {"generate-rsa-keys", cmd_generate_rsa_keys},
2004 {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
2006 {"version", cmd_version},
2009 {"export", cmd_export},
2010 {"export-all", cmd_export_all},
2011 {"import", cmd_import},
2012 {"exchange", cmd_exchange},
2013 {"exchange-all", cmd_exchange_all},
2014 {"invite", cmd_invite},
2019 #ifdef HAVE_READLINE
2020 static char *complete_command(const char *text, int state) {
2028 while(commands[i].command) {
2029 if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text)))
2030 return xstrdup(commands[i].command);
2037 static char *complete_dump(const char *text, int state) {
2038 const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
2047 if(!strncasecmp(matches[i], text, strlen(text)))
2048 return xstrdup(matches[i]);
2055 static char *complete_config(const char *text, int state) {
2063 while(variables[i].name) {
2064 char *dot = strchr(text, '.');
2066 if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
2068 xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
2072 if(!strncasecmp(variables[i].name, text, strlen(text)))
2073 return xstrdup(variables[i].name);
2081 static char *complete_info(const char *text, int state) {
2085 if(!connect_tincd(false))
2087 // Check the list of nodes
2088 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
2089 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
2092 while(recvline(fd, line, sizeof line)) {
2094 int n = sscanf(line, "%d %d %s", &code, &req, item);
2104 fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
2108 if(!strncmp(item, text, strlen(text)))
2109 return xstrdup(strip_weight(item));
2115 static char *complete_nothing(const char *text, int state) {
2119 static char **completion (const char *text, int start, int end) {
2120 char **matches = NULL;
2123 matches = rl_completion_matches(text, complete_command);
2124 else if(!strncasecmp(rl_line_buffer, "dump ", 5))
2125 matches = rl_completion_matches(text, complete_dump);
2126 else if(!strncasecmp(rl_line_buffer, "add ", 4))
2127 matches = rl_completion_matches(text, complete_config);
2128 else if(!strncasecmp(rl_line_buffer, "del ", 4))
2129 matches = rl_completion_matches(text, complete_config);
2130 else if(!strncasecmp(rl_line_buffer, "get ", 4))
2131 matches = rl_completion_matches(text, complete_config);
2132 else if(!strncasecmp(rl_line_buffer, "set ", 4))
2133 matches = rl_completion_matches(text, complete_config);
2134 else if(!strncasecmp(rl_line_buffer, "info ", 5))
2135 matches = rl_completion_matches(text, complete_info);
2141 static int cmd_shell(int argc, char *argv[]) {
2143 xasprintf(&prompt, "%s> ", identname);
2147 int maxargs = argc + 16;
2148 char **nargv = xmalloc(maxargs * sizeof *nargv);
2150 for(int i = 0; i < argc; i++)
2153 #ifdef HAVE_READLINE
2154 rl_readline_name = "tinc";
2155 rl_completion_entry_function = complete_nothing;
2156 rl_attempted_completion_function = completion;
2157 rl_filename_completion_desired = 0;
2162 #ifdef HAVE_READLINE
2166 rl_basic_word_break_characters = "\t\n ";
2167 line = readline(prompt);
2169 copy = xstrdup(line);
2171 line = fgets(buf, sizeof buf, stdin);
2175 fputs(prompt, stdout);
2177 line = fgets(buf, sizeof buf, stdin);
2183 /* Ignore comments */
2191 char *p = line + strspn(line, " \t\n");
2192 char *next = strtok(p, " \t\n");
2195 if(nargc >= maxargs) {
2196 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
2199 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
2204 next = strtok(NULL, " \t\n");
2210 if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit"))
2215 for(int i = 0; commands[i].command; i++) {
2216 if(!strcasecmp(nargv[argc], commands[i].command)) {
2217 result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
2223 #ifdef HAVE_READLINE
2229 fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
2242 int main(int argc, char *argv[]) {
2243 program_name = argv[0];
2247 if(!parse_options(argc, argv))
2251 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
2252 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
2266 tty = isatty(0) && isatty(1);
2269 return cmd_shell(argc, argv);
2271 for(int i = 0; commands[i].command; i++) {
2272 if(!strcasecmp(argv[optind], commands[i].command))
2273 return commands[i].function(argc - optind, argv + optind);
2276 fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);