2 tincctl.c -- Controlling a running tincd
3 Copyright (C) 2007-2012 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"
40 #define mkdir(a, b) mkdir(a)
44 /* The name this program was run with. */
45 static char *program_name = NULL;
47 static char **orig_argv;
50 /* If nonzero, display usage information and exit. */
51 static bool show_help = false;
53 /* If nonzero, print the version on standard output and exit. */
54 static bool show_version = false;
56 static char *name = NULL;
57 static char *identname = NULL; /* program name for syslog */
58 static char *pidfilename = NULL; /* pid file location */
59 static char *confdir = NULL;
60 static char controlcookie[1024];
62 char *confbase = NULL;
63 static char *tinc_conf = NULL;
64 static char *hosts_dir = NULL;
66 // Horrible global variables...
69 static char line[4096];
73 static bool force = false;
74 static bool tty = true;
77 static struct WSAData wsa_state;
80 static struct option const long_options[] = {
81 {"config", required_argument, NULL, 'c'},
82 {"debug", optional_argument, NULL, 0},
83 {"no-detach", no_argument, NULL, 0},
84 {"mlock", no_argument, NULL, 0},
85 {"net", required_argument, NULL, 'n'},
86 {"help", no_argument, NULL, 1},
87 {"version", no_argument, NULL, 2},
88 {"pidfile", required_argument, NULL, 5},
89 {"logfile", required_argument, NULL, 0},
90 {"bypass-security", no_argument, NULL, 0},
91 {"chroot", no_argument, NULL, 0},
92 {"user", required_argument, NULL, 0},
93 {"option", required_argument, NULL, 0},
94 {"force", no_argument, NULL, 6},
98 static void version(void) {
99 printf("%s version %s (built %s %s, protocol %d.%d)\n", PACKAGE,
100 VERSION, __DATE__, __TIME__, PROT_MAJOR, PROT_MINOR);
101 printf("Copyright (C) 1998-2012 Ivo Timmermans, Guus Sliepen and others.\n"
102 "See the AUTHORS file for a complete list.\n\n"
103 "tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
104 "and you are welcome to redistribute it under certain conditions;\n"
105 "see the file COPYING for details.\n");
108 static void usage(bool status) {
110 fprintf(stderr, "Try `%s --help\' for more information.\n",
113 printf("Usage: %s [options] command\n\n", program_name);
114 printf("Valid options are:\n"
115 " -c, --config=DIR Read configuration options from DIR.\n"
116 " -n, --net=NETNAME Connect to net NETNAME.\n"
117 " --pidfile=FILENAME Read control cookie from FILENAME.\n"
118 " --help Display this help and exit.\n"
119 " --version Output version information and exit.\n"
121 "Valid commands are:\n"
122 " init [name] Create initial configuration files.\n"
123 " config Change configuration:\n"
124 " [get] VARIABLE - print current value of VARIABLE\n"
125 " [set] VARIABLE VALUE - set VARIABLE to VALUE\n"
126 " add VARIABLE VALUE - add VARIABLE with the given VALUE\n"
127 " del VARIABLE [VALUE] - remove VARIABLE [only ones with watching VALUE]\n"
128 " start [tincd options] Start tincd.\n"
129 " stop Stop tincd.\n"
130 " restart Restart tincd.\n"
131 " reload Partially reload configuration of running tincd.\n"
132 " pid Show PID of currently running tincd.\n"
133 " generate-keys [bits] Generate new RSA and ECDSA public/private keypairs.\n"
134 " generate-rsa-keys [bits] Generate a new RSA public/private keypair.\n"
135 " generate-ecdsa-keys Generate a new ECDSA public/private keypair.\n"
136 " dump Dump a list of one of the following things:\n"
137 " nodes - all known nodes in the VPN\n"
138 " edges - all known connections in the VPN\n"
139 " subnets - all known subnets in the VPN\n"
140 " connections - all meta connections with ourself\n"
141 " graph - graph of the VPN in dotty format\n"
142 " info NODE|SUBNET|ADDRESS Give information about a particular NODE, SUBNET or ADDRESS.\n"
143 " purge Purge unreachable nodes\n"
144 " debug N Set debug level\n"
145 " retry Retry all outgoing connections\n"
146 " disconnect NODE Close meta connection with NODE\n"
148 " top Show real-time statistics\n"
150 " pcap [snaplen] Dump traffic in pcap format [up to snaplen bytes per packet]\n"
151 " log [level] Dump log output [up to the specified level]\n"
152 " export Export host configuration of local node to standard output\n"
153 " export-all Export all host configuration files to standard output\n"
154 " import [--force] Import host configuration file(s) from standard input\n"
156 printf("Report bugs to tinc@tinc-vpn.org.\n");
160 static bool parse_options(int argc, char **argv) {
162 int option_index = 0;
164 while((r = getopt_long(argc, argv, "c:n:Dd::Lo:RU:", long_options, &option_index)) != EOF) {
166 case 0: /* long option */
169 case 'c': /* config file */
170 confbase = xstrdup(optarg);
173 case 'n': /* net name given */
174 netname = xstrdup(optarg);
177 case 1: /* show help */
181 case 2: /* show version */
185 case 5: /* open control socket here */
186 pidfilename = xstrdup(optarg);
202 if(!netname && (netname = getenv("NETNAME")))
203 netname = xstrdup(netname);
205 /* netname "." is special: a "top-level name" */
207 if(netname && (!*netname || !strcmp(netname, "."))) {
212 if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
213 fprintf(stderr, "Invalid character in netname!\n");
220 static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask) {
226 /* Check stdin and stdout */
228 /* Ask for a file and/or directory name. */
229 fprintf(stdout, "Please enter a file to save %s to [%s]: ",
233 if(fgets(buf, sizeof buf, stdin) == NULL) {
234 fprintf(stderr, "Error while reading stdin: %s\n",
239 size_t len = strlen(buf);
248 if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
250 if(filename[0] != '/') {
252 /* The directory is a relative path or a filename. */
253 directory = get_current_dir_name();
254 snprintf(buf2, sizeof buf2, "%s" SLASH "%s", directory, filename);
258 umask(0077); /* Disallow everything for group and other */
260 /* Open it first to keep the inode busy */
262 r = fopen(filename, mode);
265 fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
273 Generate a public/private ECDSA keypair, and ask for a file to store
276 static bool ecdsa_keygen(bool ask) {
281 fprintf(stderr, "Generating ECDSA keypair:\n");
283 if(!ecdsa_generate(&key)) {
284 fprintf(stderr, "Error during key generation!\n");
287 fprintf(stderr, "Done.\n");
289 xasprintf(&filename, "%s" SLASH "ecdsa_key.priv", confbase);
290 f = ask_and_open(filename, "private ECDSA key", "a", ask);
296 /* Make it unreadable for others. */
297 fchmod(fileno(f), 0600);
301 fprintf(stderr, "Appending key to existing contents.\nMake sure only one key is stored in the file.\n");
303 ecdsa_write_pem_private_key(&key, f);
309 xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, name);
311 xasprintf(&filename, "%s" SLASH "ecdsa_key.pub", confbase);
313 f = ask_and_open(filename, "public ECDSA key", "a", ask);
319 fprintf(stderr, "Appending key to existing contents.\nMake sure only one key is stored in the file.\n");
321 char *pubkey = ecdsa_get_base64_public_key(&key);
322 fprintf(f, "ECDSAPublicKey = %s\n", pubkey);
332 Generate a public/private RSA keypair, and ask for a file to store
335 static bool rsa_keygen(int bits, bool ask) {
340 fprintf(stderr, "Generating %d bits keys:\n", bits);
342 if(!rsa_generate(&key, bits, 0x10001)) {
343 fprintf(stderr, "Error during key generation!\n");
346 fprintf(stderr, "Done.\n");
348 xasprintf(&filename, "%s" SLASH "rsa_key.priv", confbase);
349 f = ask_and_open(filename, "private RSA key", "a", ask);
355 /* Make it unreadable for others. */
356 fchmod(fileno(f), 0600);
360 fprintf(stderr, "Appending key to existing contents.\nMake sure only one key is stored in the file.\n");
362 rsa_write_pem_private_key(&key, f);
368 xasprintf(&filename, "%s" SLASH "hosts" SLASH "%s", confbase, name);
370 xasprintf(&filename, "%s" SLASH "rsa_key.pub", confbase);
372 f = ask_and_open(filename, "public RSA key", "a", ask);
378 fprintf(stderr, "Appending key to existing contents.\nMake sure only one key is stored in the file.\n");
380 rsa_write_pem_public_key(&key, f);
389 Set all files and paths according to netname
391 static void make_names(void) {
394 char installdir[1024] = "";
395 long len = sizeof installdir;
399 xasprintf(&identname, "tinc.%s", netname);
401 identname = xstrdup("tinc");
404 if(!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\tinc", 0, KEY_READ, &key)) {
405 if(!RegQueryValueEx(key, NULL, 0, 0, installdir, &len)) {
408 xasprintf(&confbase, "%s" SLASH "%s", installdir, netname);
410 xasprintf(&confbase, "%s", installdir);
414 xasprintf(&pidfilename, "%s" SLASH "pid", confbase);
420 confdir = xstrdup(CONFDIR);
423 xasprintf(&pidfilename, "%s" SLASH "run" SLASH "%s.pid", LOCALSTATEDIR, identname);
427 xasprintf(&confbase, CONFDIR SLASH "tinc" SLASH "%s", netname);
429 fprintf(stderr, "Both netname and configuration directory given, using the latter...\n");
432 xasprintf(&confbase, CONFDIR SLASH "tinc");
437 confdir = xstrdup(installdir);
440 xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
441 xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
444 static char buffer[4096];
445 static size_t blen = 0;
447 bool recvline(int fd, char *line, size_t len) {
448 char *newline = NULL;
450 while(!(newline = memchr(buffer, '\n', blen))) {
451 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
452 if(result == -1 && errno == EINTR)
459 if(newline - buffer >= len)
462 len = newline - buffer;
464 memcpy(line, buffer, len);
466 memmove(buffer, newline + 1, blen - len - 1);
472 static bool recvdata(int fd, char *data, size_t len) {
474 int result = recv(fd, buffer + blen, sizeof buffer - blen, 0);
475 if(result == -1 && errno == EINTR)
482 memcpy(data, buffer, len);
483 memmove(buffer, buffer + len, blen - len);
489 bool sendline(int fd, char *format, ...) {
490 static char buffer[4096];
495 va_start(ap, format);
496 blen = vsnprintf(buffer, sizeof buffer, format, ap);
499 if(blen < 1 || blen >= sizeof buffer)
506 int result = send(fd, p, blen, 0);
507 if(result == -1 && errno == EINTR)
518 static void pcap(int fd, FILE *out, int snaplen) {
519 sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
527 uint32_t tz_accuracy;
534 snaplen ?: sizeof data,
547 fwrite(&header, sizeof header, 1, out);
551 while(recvline(fd, line, sizeof line)) {
553 int n = sscanf(line, "%d %d %d", &code, &req, &len);
554 gettimeofday(&tv, NULL);
555 if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || len > sizeof data)
557 if(!recvdata(fd, data, len))
559 packet.tv_sec = tv.tv_sec;
560 packet.tv_usec = tv.tv_usec;
562 packet.origlen = len;
563 fwrite(&packet, sizeof packet, 1, out);
564 fwrite(data, len, 1, out);
569 static void logcontrol(int fd, FILE *out, int level) {
570 sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
574 while(recvline(fd, line, sizeof line)) {
576 int n = sscanf(line, "%d %d %d", &code, &req, &len);
577 if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || len > sizeof data)
579 if(!recvdata(fd, data, len))
581 fwrite(data, len, 1, out);
588 static bool remove_service(void) {
589 SC_HANDLE manager = NULL;
590 SC_HANDLE service = NULL;
591 SERVICE_STATUS status = {0};
593 manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
595 fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
599 service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
602 fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
606 if(!ControlService(service, SERVICE_CONTROL_STOP, &status))
607 fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
609 fprintf(stderr, "%s service stopped\n", identname);
611 if(!DeleteService(service)) {
612 fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
616 fprintf(stderr, "%s service removed\n", identname);
622 static bool connect_tincd(bool verbose) {
626 FILE *f = fopen(pidfilename, "r");
629 fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
636 if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
638 fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
646 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
648 fprintf(stderr, "System call `%s' failed: %s", "WSAStartup", winerror(GetLastError()));
653 struct addrinfo hints = {
654 .ai_family = AF_UNSPEC,
655 .ai_socktype = SOCK_STREAM,
656 .ai_protocol = IPPROTO_TCP,
660 struct addrinfo *res = NULL;
662 if(getaddrinfo(host, port, &hints, &res) || !res) {
664 fprintf(stderr, "Cannot resolve %s port %s: %s", host, port, strerror(errno));
668 fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
671 fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
676 unsigned long arg = 0;
678 if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
680 fprintf(stderr, "ioctlsocket failed: %s", sockstrerror(sockerrno));
684 if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
686 fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
695 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %s %d", &code, data, &version) != 3 || code != 0) {
697 fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
701 sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
703 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
705 fprintf(stderr, "Could not fully establish control socket connection\n");
713 static int cmd_start(int argc, char *argv[]) {
714 if(connect_tincd(false)) {
716 fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
718 fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
723 char *slash = strrchr(program_name, '/');
726 if ((c = strrchr(program_name, '\\')) > slash)
731 xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
736 char **nargv = xmalloc_and_zero((orig_argc + argc) * sizeof *nargv);
738 for(int i = 0; i < orig_argc; i++)
739 nargv[nargc++] = orig_argv[i];
740 for(int i = 1; i < argc; i++)
741 nargv[nargc++] = argv[i];
745 fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
750 fprintf(stderr, "Could not fork: %s\n", strerror(errno));
755 exit(execvp(c, nargv));
758 if(waitpid(pid, &status, 0) != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
759 fprintf(stderr, "Error starting %s\n", c);
767 static int cmd_stop(int argc, char *argv[]) {
769 if(!connect_tincd(true)) {
771 if(kill(pid, SIGTERM))
773 fprintf(stderr, "Sent TERM signal to process with PID %u.\n", pid);
780 sendline(fd, "%d %d", CONTROL, REQ_STOP);
781 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_STOP || result) {
782 fprintf(stderr, "Could not stop tinc daemon.\n");
786 if(!remove_service())
796 static int cmd_restart(int argc, char *argv[]) {
797 cmd_stop(argc, argv);
798 return cmd_start(argc, argv);
801 static int cmd_reload(int argc, char *argv[]) {
802 if(!connect_tincd(true))
805 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
806 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RELOAD || result) {
807 fprintf(stderr, "Could not reload configuration.\n");
815 static int cmd_dump(int argc, char *argv[]) {
817 fprintf(stderr, "Invalid number of arguments.\n");
822 if(!connect_tincd(true))
825 bool do_graph = false;
827 if(!strcasecmp(argv[1], "nodes"))
828 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
829 else if(!strcasecmp(argv[1], "edges"))
830 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
831 else if(!strcasecmp(argv[1], "subnets"))
832 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
833 else if(!strcasecmp(argv[1], "connections"))
834 sendline(fd, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
835 else if(!strcasecmp(argv[1], "graph")) {
836 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
837 sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
840 fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
846 printf("digraph {\n");
848 while(recvline(fd, line, sizeof line)) {
849 char node1[4096], node2[4096];
850 int n = sscanf(line, "%d %d %s to %s", &code, &req, node1, node2);
852 if(do_graph && req == REQ_DUMP_NODES)
864 printf("%s\n", line + 5);
866 if(req == REQ_DUMP_NODES)
867 printf(" %s [label = \"%s\"];\n", node1, node1);
869 printf(" %s -> %s;\n", node1, node2);
873 fprintf(stderr, "Error receiving dump.\n");
877 static int cmd_purge(int argc, char *argv[]) {
878 if(!connect_tincd(true))
881 sendline(fd, "%d %d", CONTROL, REQ_PURGE);
882 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_PURGE || result) {
883 fprintf(stderr, "Could not purge old information.\n");
890 static int cmd_debug(int argc, char *argv[]) {
892 fprintf(stderr, "Invalid number of arguments.\n");
896 if(!connect_tincd(true))
899 int debuglevel = atoi(argv[1]);
902 sendline(fd, "%d %d %d", CONTROL, REQ_SET_DEBUG, debuglevel);
903 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &origlevel) != 3 || code != CONTROL || req != REQ_SET_DEBUG) {
904 fprintf(stderr, "Could not set debug level.\n");
908 fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
912 static int cmd_retry(int argc, char *argv[]) {
913 if(!connect_tincd(true))
916 sendline(fd, "%d %d", CONTROL, REQ_RETRY);
917 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RETRY || result) {
918 fprintf(stderr, "Could not retry outgoing connections.\n");
925 static int cmd_connect(int argc, char *argv[]) {
927 fprintf(stderr, "Invalid number of arguments.\n");
931 if(!check_id(argv[2])) {
932 fprintf(stderr, "Invalid name for node.\n");
936 if(!connect_tincd(true))
939 sendline(fd, "%d %d %s", CONTROL, REQ_CONNECT, argv[1]);
940 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_CONNECT || result) {
941 fprintf(stderr, "Could not connect to %s.\n", argv[1]);
948 static int cmd_disconnect(int argc, char *argv[]) {
950 fprintf(stderr, "Invalid number of arguments.\n");
954 if(!check_id(argv[2])) {
955 fprintf(stderr, "Invalid name for node.\n");
959 if(!connect_tincd(true))
962 sendline(fd, "%d %d %s", CONTROL, REQ_DISCONNECT, argv[1]);
963 if(!recvline(fd, line, sizeof line) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_DISCONNECT || result) {
964 fprintf(stderr, "Could not disconnect %s.\n", argv[1]);
971 static int cmd_top(int argc, char *argv[]) {
973 if(!connect_tincd(true))
979 fprintf(stderr, "This version of tincctl was compiled without support for the curses library.\n");
984 static int cmd_pcap(int argc, char *argv[]) {
985 if(!connect_tincd(true))
988 pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
992 static int cmd_log(int argc, char *argv[]) {
993 if(!connect_tincd(true))
996 logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
1000 static int cmd_pid(int argc, char *argv[]) {
1001 if(!connect_tincd(true) && !pid)
1004 printf("%d\n", pid);
1008 static int rstrip(char *value) {
1009 int len = strlen(value);
1010 while(len && strchr("\t\r\n ", value[len - 1]))
1015 static char *get_my_name() {
1016 FILE *f = fopen(tinc_conf, "r");
1018 fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
1024 while(fgets(buf, sizeof buf, f)) {
1025 int len = strcspn(buf, "\t =");
1027 value += strspn(value, "\t ");
1030 value += strspn(value, "\t ");
1035 if(strcasecmp(buf, "Name"))
1039 return strdup(value);
1044 fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
1048 #define VAR_SERVER 1 /* Should be in tinc.conf */
1049 #define VAR_HOST 2 /* Can be in host config file */
1050 #define VAR_MULTIPLE 4 /* Multiple statements allowed */
1051 #define VAR_OBSOLETE 8 /* Should not be used anymore */
1056 } const variables[] = {
1057 /* Server configuration */
1058 {"AddressFamily", VAR_SERVER},
1059 {"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
1060 {"BindToInterface", VAR_SERVER},
1061 {"Broadcast", VAR_SERVER},
1062 {"ConnectTo", VAR_SERVER | VAR_MULTIPLE},
1063 {"DecrementTTL", VAR_SERVER},
1064 {"Device", VAR_SERVER},
1065 {"DeviceType", VAR_SERVER},
1066 {"DirectOnly", VAR_SERVER},
1067 {"ECDSAPrivateKeyFile", VAR_SERVER},
1068 {"ExperimentalProtocol", VAR_SERVER},
1069 {"Forwarding", VAR_SERVER},
1070 {"GraphDumpFile", VAR_SERVER},
1071 {"Hostnames", VAR_SERVER},
1072 {"IffOneQueue", VAR_SERVER},
1073 {"Interface", VAR_SERVER},
1074 {"KeyExpire", VAR_SERVER},
1075 {"LocalDiscovery", VAR_SERVER},
1076 {"MACExpire", VAR_SERVER},
1077 {"MaxOutputBufferSize", VAR_SERVER},
1078 {"MaxTimeout", VAR_SERVER},
1079 {"Mode", VAR_SERVER},
1080 {"Name", VAR_SERVER},
1081 {"PingInterval", VAR_SERVER},
1082 {"PingTimeout", VAR_SERVER},
1083 {"PriorityInheritance", VAR_SERVER},
1084 {"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
1085 {"PrivateKeyFile", VAR_SERVER},
1086 {"ProcessPriority", VAR_SERVER},
1087 {"Proxy", VAR_SERVER},
1088 {"ReplayWindow", VAR_SERVER},
1089 {"StrictSubnets", VAR_SERVER},
1090 {"TunnelServer", VAR_SERVER},
1091 {"UDPRcvBuf", VAR_SERVER},
1092 {"UDPSndBuf", VAR_SERVER},
1093 {"VDEGroup", VAR_SERVER},
1094 {"VDEPort", VAR_SERVER},
1095 /* Host configuration */
1096 {"Address", VAR_HOST | VAR_MULTIPLE},
1097 {"Cipher", VAR_SERVER | VAR_HOST},
1098 {"ClampMSS", VAR_SERVER | VAR_HOST},
1099 {"Compression", VAR_SERVER | VAR_HOST},
1100 {"Digest", VAR_SERVER | VAR_HOST},
1101 {"ECDSAPublicKey", VAR_HOST},
1102 {"ECDSAPublicKeyFile", VAR_SERVER | VAR_HOST},
1103 {"IndirectData", VAR_SERVER | VAR_HOST},
1104 {"MACLength", VAR_SERVER | VAR_HOST},
1105 {"PMTU", VAR_SERVER | VAR_HOST},
1106 {"PMTUDiscovery", VAR_SERVER | VAR_HOST},
1108 {"PublicKey", VAR_HOST | VAR_OBSOLETE},
1109 {"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
1110 {"Subnet", VAR_HOST | VAR_MULTIPLE},
1111 {"TCPOnly", VAR_SERVER | VAR_HOST},
1112 {"Weight", VAR_HOST},
1116 static int cmd_config(int argc, char *argv[]) {
1118 fprintf(stderr, "Invalid number of arguments.\n");
1123 if(!strcasecmp(argv[1], "get")) {
1125 } else if(!strcasecmp(argv[1], "add")) {
1126 argv++, argc--, action = 1;
1127 } else if(!strcasecmp(argv[1], "del")) {
1128 argv++, argc--, action = -1;
1129 } else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
1130 argv++, argc--, action = 0;
1134 fprintf(stderr, "Invalid number of arguments.\n");
1138 // Concatenate the rest of the command line
1139 strncpy(line, argv[1], sizeof line - 1);
1140 for(int i = 2; i < argc; i++) {
1141 strncat(line, " ", sizeof line - 1 - strlen(line));
1142 strncat(line, argv[i], sizeof line - 1 - strlen(line));
1145 // Liberal parsing into node name, variable name and value.
1151 len = strcspn(line, "\t =");
1153 value += strspn(value, "\t ");
1156 value += strspn(value, "\t ");
1159 variable = strchr(line, '.');
1168 fprintf(stderr, "No variable given.\n");
1172 if(action >= 0 && !*value) {
1173 fprintf(stderr, "No value for variable given.\n");
1177 if(action < -1 && *value)
1180 /* Some simple checks. */
1183 for(int i = 0; variables[i].name; i++) {
1184 if(strcasecmp(variables[i].name, variable))
1188 variable = (char *)variables[i].name;
1190 /* Discourage use of obsolete variables. */
1192 if(variables[i].type & VAR_OBSOLETE && action >= 0) {
1194 fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
1196 fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
1201 /* Don't put server variables in host config files */
1203 if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
1205 fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
1207 fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
1212 /* Should this go into our own host config file? */
1214 if(!node && !(variables[i].type & VAR_SERVER)) {
1215 node = get_my_name();
1223 if(node && !check_id(node)) {
1224 fprintf(stderr, "Invalid name for node.\n");
1229 if(force || action < 0) {
1230 fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
1232 fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
1237 // Open the right configuration file.
1240 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, node);
1242 filename = tinc_conf;
1244 FILE *f = fopen(filename, "r");
1246 if(action < 0 || errno != ENOENT) {
1247 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1251 // If it doesn't exist, create it.
1252 f = fopen(filename, "a+");
1254 fprintf(stderr, "Could not create configuration file %s: %s\n", filename, strerror(errno));
1257 fprintf(stderr, "Created configuration file %s.\n", filename);
1261 char *tmpfile = NULL;
1265 xasprintf(&tmpfile, "%s.config.tmp", filename);
1266 tf = fopen(tmpfile, "w");
1268 fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
1274 // Copy the file, making modifications on the fly, unless we are just getting a value.
1278 bool removed = false;
1281 while(fgets(buf1, sizeof buf1, f)) {
1282 buf1[sizeof buf1 - 1] = 0;
1283 strncpy(buf2, buf1, sizeof buf2);
1285 // Parse line in a simple way
1289 len = strcspn(buf2, "\t =");
1290 bvalue = buf2 + len;
1291 bvalue += strspn(bvalue, "\t ");
1292 if(*bvalue == '=') {
1294 bvalue += strspn(bvalue, "\t ");
1300 if(!strcasecmp(buf2, variable)) {
1304 printf("%s\n", bvalue);
1306 } else if(action == -1) {
1307 if(!*value || !strcasecmp(bvalue, value)) {
1312 } else if(action == 0) {
1313 // Already set? Delete the rest...
1316 // Otherwise, replace.
1317 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1318 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1327 // Copy original line...
1328 if(fputs(buf1, tf) < 0) {
1329 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1333 // Add newline if it is missing...
1334 if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
1335 if(fputc('\n', tf) < 0) {
1336 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1343 // Make sure we read everything...
1344 if(ferror(f) || !feof(f)) {
1345 fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
1350 fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
1354 // Add new variable if necessary.
1355 if(action > 0 || (action == 0 && !set)) {
1356 if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
1357 fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
1364 fprintf(stderr, "No matching configuration variables found.\n");
1368 // Make sure we wrote everything...
1370 fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
1374 // Could we find what we had to remove?
1375 if(action < 0 && !removed) {
1377 fprintf(stderr, "No configuration variables deleted.\n");
1381 // Replace the configuration file with the new one
1383 if(remove(filename)) {
1384 fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
1388 if(rename(tmpfile, filename)) {
1389 fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
1393 // Silently try notifying a running tincd of changes.
1394 if(connect_tincd(false))
1395 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1400 bool check_id(const char *name) {
1404 for(int i = 0; i < strlen(name); i++) {
1405 if(!isalnum(name[i]) && name[i] != '_')
1412 static int cmd_init(int argc, char *argv[]) {
1413 if(!access(tinc_conf, F_OK)) {
1414 fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
1421 fprintf(stdout, "Enter the Name you want your tinc node to have: ");
1423 if(!fgets(buf, sizeof buf, stdin)) {
1424 fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
1427 int len = rstrip(buf);
1429 fprintf(stderr, "No name given!\n");
1434 fprintf(stderr, "No Name given!\n");
1438 name = strdup(argv[1]);
1440 fprintf(stderr, "No Name given!\n");
1445 if(!check_id(name)) {
1446 fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
1450 if(mkdir(confdir, 0755) && errno != EEXIST) {
1451 fprintf(stderr, "Could not create directory %s: %s\n", CONFDIR, strerror(errno));
1455 if(mkdir(confbase, 0755) && errno != EEXIST) {
1456 fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
1460 if(mkdir(hosts_dir, 0755) && errno != EEXIST) {
1461 fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
1465 FILE *f = fopen(tinc_conf, "w");
1467 fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
1471 fprintf(f, "Name = %s\n", name);
1474 if(!rsa_keygen(2048, false) || !ecdsa_keygen(false))
1479 xasprintf(&filename, "%s" SLASH "tinc-up", confbase);
1480 if(access(filename, F_OK)) {
1481 FILE *f = fopen(filename, "w");
1483 fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
1486 fchmod(fileno(f), 0755);
1487 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");
1496 static int cmd_generate_keys(int argc, char *argv[]) {
1497 return !(rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true) && ecdsa_keygen(true));
1500 static int cmd_generate_rsa_keys(int argc, char *argv[]) {
1501 return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
1504 static int cmd_generate_ecdsa_keys(int argc, char *argv[]) {
1505 return !ecdsa_keygen(true);
1508 static int cmd_help(int argc, char *argv[]) {
1513 static int cmd_version(int argc, char *argv[]) {
1518 static int cmd_info(int argc, char *argv[]) {
1520 fprintf(stderr, "Invalid number of arguments.\n");
1524 if(!connect_tincd(true))
1527 return info(fd, argv[1]);
1530 static const char *conffiles[] = {
1541 static int cmd_edit(int argc, char *argv[]) {
1543 fprintf(stderr, "Invalid number of arguments.\n");
1547 char *filename = NULL;
1549 if(strncmp(argv[1], "hosts" SLASH, 6)) {
1550 for(int i = 0; conffiles[i]; i++) {
1551 if(!strcmp(argv[1], conffiles[i])) {
1552 xasprintf(&filename, "%s" SLASH "%s", confbase, argv[1]);
1561 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, argv[1]);
1562 char *dash = strchr(argv[1], '-');
1565 if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
1566 fprintf(stderr, "Invalid configuration filename.\n");
1574 xasprintf(&command, "\"%s\" \"%s\"", getenv("VISUAL") ?: getenv("EDITOR") ?: "vi", filename);
1576 xasprintf(&command, "edit \"%s\"", filename);
1578 int result = system(command);
1582 // Silently try notifying a running tincd of changes.
1583 if(connect_tincd(false))
1584 sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
1589 static int export(const char *name, FILE *out) {
1591 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1592 FILE *in = fopen(filename, "r");
1594 fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
1598 fprintf(out, "Name = %s\n", name);
1600 while(fgets(buf, sizeof buf, in)) {
1601 if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4))
1606 fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
1615 static int cmd_export(int argc, char *argv[]) {
1616 char *name = get_my_name();
1620 return export(name, stdout);
1623 static int cmd_export_all(int argc, char *argv[]) {
1624 DIR *dir = opendir(hosts_dir);
1626 fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
1634 while((ent = readdir(dir))) {
1635 if(!check_id(ent->d_name))
1641 printf("#---------------------------------------------------------------#\n");
1643 result |= export(ent->d_name, stdout);
1650 static int cmd_import(int argc, char *argv[]) {
1658 bool firstline = true;
1660 while(fgets(buf, sizeof buf, in)) {
1661 if(sscanf(buf, "Name = %s", name) == 1) {
1662 if(!check_id(name)) {
1663 fprintf(stderr, "Invalid Name in input!\n");
1671 xasprintf(&filename, "%s" SLASH "%s", hosts_dir, name);
1673 if(!force && !access(filename, F_OK)) {
1674 fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
1679 out = fopen(filename, "w");
1681 fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
1688 } else if(firstline) {
1689 fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
1694 if(!strcmp(buf, "#---------------------------------------------------------------#\n"))
1698 if(fputs(buf, out) < 0) {
1699 fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
1709 fprintf(stderr, "Imported %d host configuration files.\n", count);
1712 fprintf(stderr, "No host configuration files imported.\n");
1717 static const struct {
1718 const char *command;
1719 int (*function)(int argc, char *argv[]);
1721 {"start", cmd_start},
1723 {"restart", cmd_restart},
1724 {"reload", cmd_reload},
1726 {"purge", cmd_purge},
1727 {"debug", cmd_debug},
1728 {"retry", cmd_retry},
1729 {"connect", cmd_connect},
1730 {"disconnect", cmd_disconnect},
1735 {"config", cmd_config},
1737 {"generate-keys", cmd_generate_keys},
1738 {"generate-rsa-keys", cmd_generate_rsa_keys},
1739 {"generate-ecdsa-keys", cmd_generate_ecdsa_keys},
1741 {"version", cmd_version},
1744 {"export", cmd_export},
1745 {"export-all", cmd_export_all},
1746 {"import", cmd_import},
1750 #ifdef HAVE_READLINE
1751 static char *complete_command(const char *text, int state) {
1759 while(commands[i].command) {
1760 if(!strncasecmp(commands[i].command, text, strlen(text)))
1761 return xstrdup(commands[i].command);
1768 static char *complete_dump(const char *text, int state) {
1769 const char *matches[] = {"nodes", "edges", "subnets", "connections", "graph", NULL};
1778 if(!strncasecmp(matches[i], text, strlen(text)))
1779 return xstrdup(matches[i]);
1786 static char *complete_config(const char *text, int state) {
1787 const char *sub[] = {"get", "set", "add", "del"};
1791 if(!strchr(rl_line_buffer + 7, ' '))
1795 for(int i = 0; i < 4; i++) {
1796 if(!strncasecmp(rl_line_buffer + 7, sub[i], strlen(sub[i])) && rl_line_buffer[7 + strlen(sub[i])] == ' ') {
1808 while(i < 0 || variables[i].name) {
1809 if(i < 0 && !strncasecmp(sub[i + 4], text, strlen(text)))
1810 return xstrdup(sub[i + 4]);
1812 char *dot = strchr(text, '.');
1814 if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
1816 xasprintf(&match, "%.*s.%s", dot - text, text, variables[i].name);
1820 if(!strncasecmp(variables[i].name, text, strlen(text)))
1821 return xstrdup(variables[i].name);
1830 static char *complete_info(const char *text, int state) {
1834 if(!connect_tincd(false))
1836 // Check the list of nodes
1837 sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
1838 sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
1841 while(recvline(fd, line, sizeof line)) {
1843 int n = sscanf(line, "%d %d %s", &code, &req, item);
1853 fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
1857 if(!strncmp(item, text, strlen(text)))
1858 return xstrdup(strip_weight(item));
1864 static char *complete_nothing(const char *text, int state) {
1868 static char **completion (const char *text, int start, int end) {
1869 char **matches = NULL;
1872 matches = rl_completion_matches(text, complete_command);
1873 else if(!strncasecmp(rl_line_buffer, "dump ", 5))
1874 matches = rl_completion_matches(text, complete_dump);
1875 else if(!strncasecmp(rl_line_buffer, "config ", 7))
1876 matches = rl_completion_matches(text, complete_config);
1877 else if(!strncasecmp(rl_line_buffer, "info ", 5))
1878 matches = rl_completion_matches(text, complete_info);
1884 static int cmd_shell(int argc, char *argv[]) {
1886 xasprintf(&prompt, "%s> ", identname);
1890 int maxargs = argc + 16;
1891 char **nargv = xmalloc(maxargs * sizeof *nargv);
1894 for(int i = 0; i < argc; i++)
1897 #ifdef HAVE_READLINE
1898 rl_readline_name = "tinc";
1899 rl_completion_entry_function = complete_nothing;
1900 rl_attempted_completion_function = completion;
1901 rl_filename_completion_desired = 0;
1906 #ifdef HAVE_READLINE
1910 rl_basic_word_break_characters = "\t\n ";
1911 line = readline(prompt);
1913 copy = xstrdup(line);
1915 line = fgets(buf, sizeof buf, stdin);
1919 fputs(stdout, prompt);
1921 line = fgets(buf, sizeof buf, stdin);
1927 /* Ignore comments */
1935 char *p = line + strspn(line, " \t\n");
1936 char *next = strtok(p, " \t\n");
1939 if(nargc >= maxargs) {
1940 fprintf(stderr, "next %p '%s', p %p '%s'\n", next, next, p, p);
1943 nargv = xrealloc(nargv, maxargs * sizeof *nargv);
1948 next = strtok(NULL, " \t\n");
1956 for(int i = 0; commands[i].command; i++) {
1957 if(!strcasecmp(nargv[argc], commands[i].command)) {
1958 result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
1964 #ifdef HAVE_READLINE
1970 fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
1981 int main(int argc, char *argv[]) {
1982 program_name = argv[0];
1986 if(!parse_options(argc, argv))
2001 tty = isatty(0) && isatty(1);
2004 return cmd_shell(argc, argv);
2006 for(int i = 0; commands[i].command; i++) {
2007 if(!strcasecmp(argv[optind], commands[i].command))
2008 return commands[i].function(argc - optind, argv + optind);
2011 fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);