2019-08-26 11:44:49 +00:00
|
|
|
/*
|
|
|
|
tincctl.c -- Controlling a running tincd
|
2022-04-22 18:24:15 +00:00
|
|
|
Copyright (C) 2007-2021 Guus Sliepen <guus@tinc-vpn.org>
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
#include "readline/readline.h"
|
|
|
|
#include "readline/history.h"
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#include "xalloc.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "control_common.h"
|
2019-08-26 11:44:51 +00:00
|
|
|
#include "crypto.h"
|
2019-08-26 11:44:49 +00:00
|
|
|
#include "ecdsagen.h"
|
2019-08-26 11:44:52 +00:00
|
|
|
#include "fsck.h"
|
2019-08-26 11:44:49 +00:00
|
|
|
#include "info.h"
|
2019-08-26 11:44:51 +00:00
|
|
|
#include "invitation.h"
|
2019-08-26 11:44:50 +00:00
|
|
|
#include "names.h"
|
2019-08-26 11:44:49 +00:00
|
|
|
#include "rsagen.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "tincctl.h"
|
|
|
|
#include "top.h"
|
2019-08-26 11:44:51 +00:00
|
|
|
#include "version.h"
|
2022-04-22 18:24:15 +00:00
|
|
|
#include "subnet.h"
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
#ifndef MSG_NOSIGNAL
|
|
|
|
#define MSG_NOSIGNAL 0
|
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static char **orig_argv;
|
|
|
|
static int orig_argc;
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
/* If nonzero, display usage information and exit. */
|
|
|
|
static bool show_help = false;
|
|
|
|
|
|
|
|
/* If nonzero, print the version on standard output and exit. */
|
|
|
|
static bool show_version = false;
|
|
|
|
|
|
|
|
static char *name = NULL;
|
2019-08-26 11:44:50 +00:00
|
|
|
static char controlcookie[1025];
|
2019-08-26 11:44:51 +00:00
|
|
|
char *tinc_conf = NULL;
|
|
|
|
char *hosts_dir = NULL;
|
2019-08-26 11:44:50 +00:00
|
|
|
struct timeval now;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
// Horrible global variables...
|
|
|
|
static int pid = 0;
|
2019-08-26 11:44:51 +00:00
|
|
|
int fd = -1;
|
|
|
|
char line[4096];
|
2019-08-26 11:44:49 +00:00
|
|
|
static int code;
|
|
|
|
static int req;
|
|
|
|
static int result;
|
2019-08-26 11:44:52 +00:00
|
|
|
bool force = false;
|
2019-08-26 11:44:51 +00:00
|
|
|
bool tty = true;
|
|
|
|
bool confbasegiven = false;
|
|
|
|
bool netnamegiven = false;
|
2019-08-26 11:44:51 +00:00
|
|
|
char *scriptinterpreter = NULL;
|
|
|
|
char *scriptextension = "";
|
2019-08-26 11:44:51 +00:00
|
|
|
static char *prompt;
|
2019-08-26 11:44:52 +00:00
|
|
|
char *device = NULL;
|
|
|
|
char *iface = NULL;
|
|
|
|
int debug_level = -1;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
static struct option const long_options[] = {
|
2019-08-26 11:44:51 +00:00
|
|
|
{"batch", no_argument, NULL, 'b'},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"config", required_argument, NULL, 'c'},
|
|
|
|
{"net", required_argument, NULL, 'n'},
|
|
|
|
{"help", no_argument, NULL, 1},
|
|
|
|
{"version", no_argument, NULL, 2},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"pidfile", required_argument, NULL, 3},
|
|
|
|
{"force", no_argument, NULL, 4},
|
2019-08-26 11:44:49 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static void version(void) {
|
|
|
|
printf("%s version %s (built %s %s, protocol %d.%d)\n", PACKAGE,
|
2019-08-26 11:44:53 +00:00
|
|
|
BUILD_VERSION, BUILD_DATE, BUILD_TIME, PROT_MAJOR, PROT_MINOR);
|
|
|
|
printf("Copyright (C) 1998-2018 Ivo Timmermans, Guus Sliepen and others.\n"
|
|
|
|
"See the AUTHORS file for a complete list.\n\n"
|
|
|
|
"tinc comes with ABSOLUTELY NO WARRANTY. This is free software,\n"
|
|
|
|
"and you are welcome to redistribute it under certain conditions;\n"
|
|
|
|
"see the file COPYING for details.\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static void usage(bool status) {
|
2019-08-26 11:44:50 +00:00
|
|
|
if(status) {
|
|
|
|
fprintf(stderr, "Try `%s --help\' for more information.\n", program_name);
|
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("Usage: %s [options] command\n\n", program_name);
|
|
|
|
printf("Valid options are:\n"
|
2019-08-26 11:44:53 +00:00
|
|
|
" -b, --batch Don't ask for anything (non-interactive mode).\n"
|
|
|
|
" -c, --config=DIR Read configuration options from DIR.\n"
|
|
|
|
" -n, --net=NETNAME Connect to net NETNAME.\n"
|
|
|
|
" --pidfile=FILENAME Read control cookie from FILENAME.\n"
|
|
|
|
" --force Force some commands to work despite warnings.\n"
|
|
|
|
" --help Display this help and exit.\n"
|
|
|
|
" --version Output version information and exit.\n"
|
|
|
|
"\n"
|
|
|
|
"Valid commands are:\n"
|
|
|
|
" init [name] Create initial configuration files.\n"
|
|
|
|
" get VARIABLE Print current value of VARIABLE\n"
|
|
|
|
" set VARIABLE VALUE Set VARIABLE to VALUE\n"
|
|
|
|
" add VARIABLE VALUE Add VARIABLE with the given VALUE\n"
|
|
|
|
" del VARIABLE [VALUE] Remove VARIABLE [only ones with watching VALUE]\n"
|
|
|
|
" start [tincd options] Start tincd.\n"
|
|
|
|
" stop Stop tincd.\n"
|
|
|
|
" restart [tincd options] Restart tincd.\n"
|
|
|
|
" reload Partially reload configuration of running tincd.\n"
|
|
|
|
" pid Show PID of currently running tincd.\n"
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifdef DISABLE_LEGACY
|
2022-04-22 18:24:15 +00:00
|
|
|
" generate-keys Generate a new Ed25519 public/private key pair.\n"
|
2019-08-26 11:44:52 +00:00
|
|
|
#else
|
2022-04-22 18:24:15 +00:00
|
|
|
" generate-keys [bits] Generate new RSA and Ed25519 public/private key pairs.\n"
|
|
|
|
" generate-rsa-keys [bits] Generate a new RSA public/private key pair.\n"
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
2022-04-22 18:24:15 +00:00
|
|
|
" generate-ed25519-keys Generate a new Ed25519 public/private key pair.\n"
|
2019-08-26 11:44:53 +00:00
|
|
|
" dump Dump a list of one of the following things:\n"
|
|
|
|
" [reachable] nodes - all known nodes in the VPN\n"
|
|
|
|
" edges - all known connections in the VPN\n"
|
|
|
|
" subnets - all known subnets in the VPN\n"
|
|
|
|
" connections - all meta connections with ourself\n"
|
|
|
|
" [di]graph - graph of the VPN in dotty format\n"
|
|
|
|
" invitations - outstanding invitations\n"
|
|
|
|
" info NODE|SUBNET|ADDRESS Give information about a particular NODE, SUBNET or ADDRESS.\n"
|
|
|
|
" purge Purge unreachable nodes\n"
|
|
|
|
" debug N Set debug level\n"
|
|
|
|
" retry Retry all outgoing connections\n"
|
|
|
|
" disconnect NODE Close meta connection with NODE\n"
|
2019-08-26 11:44:49 +00:00
|
|
|
#ifdef HAVE_CURSES
|
2019-08-26 11:44:53 +00:00
|
|
|
" top Show real-time statistics\n"
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
2019-08-26 11:44:53 +00:00
|
|
|
" pcap [snaplen] Dump traffic in pcap format [up to snaplen bytes per packet]\n"
|
|
|
|
" log [level] Dump log output [up to the specified level]\n"
|
|
|
|
" export Export host configuration of local node to standard output\n"
|
|
|
|
" export-all Export all host configuration files to standard output\n"
|
|
|
|
" import Import host configuration file(s) from standard input\n"
|
|
|
|
" exchange Same as export followed by import\n"
|
|
|
|
" exchange-all Same as export-all followed by import\n"
|
|
|
|
" invite NODE [...] Generate an invitation for NODE\n"
|
|
|
|
" join INVITATION Join a VPN using an INVITATION\n"
|
|
|
|
" network [NETNAME] List all known networks, or switch to the one named NETNAME.\n"
|
|
|
|
" fsck Check the configuration files for problems.\n"
|
|
|
|
" sign [FILE] Generate a signed version of a file.\n"
|
|
|
|
" verify NODE [FILE] Verify that a file was signed by the given NODE.\n"
|
|
|
|
"\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("Report bugs to tinc@tinc-vpn.org.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool parse_options(int argc, char **argv) {
|
|
|
|
int r;
|
|
|
|
int option_index = 0;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while((r = getopt_long(argc, argv, "+bc:n:", long_options, &option_index)) != EOF) {
|
|
|
|
switch(r) {
|
|
|
|
case 0: /* long option */
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 'b':
|
|
|
|
tty = false;
|
|
|
|
break;
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 'c': /* config file */
|
|
|
|
confbase = xstrdup(optarg);
|
|
|
|
confbasegiven = true;
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 'n': /* net name given */
|
|
|
|
netname = xstrdup(optarg);
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 1: /* show help */
|
|
|
|
show_help = true;
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 2: /* show version */
|
|
|
|
show_version = true;
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 3: /* open control socket here */
|
|
|
|
pidfilename = xstrdup(optarg);
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case 4: /* force */
|
|
|
|
force = true;
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case '?': /* wrong options */
|
|
|
|
usage(true);
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
default:
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!netname && (netname = getenv("NETNAME"))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
netname = xstrdup(netname);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
/* netname "." is special: a "top-level name" */
|
|
|
|
|
|
|
|
if(netname && (!*netname || !strcmp(netname, "."))) {
|
|
|
|
free(netname);
|
|
|
|
netname = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(netname && (strpbrk(netname, "\\/") || *netname == '.')) {
|
|
|
|
fprintf(stderr, "Invalid character in netname!\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
/* Open a file with the desired permissions, minus the umask.
|
|
|
|
Also, if we want to create an executable file, we call fchmod()
|
|
|
|
to set the executable bits. */
|
|
|
|
|
|
|
|
FILE *fopenmask(const char *filename, const char *mode, mode_t perms) {
|
|
|
|
mode_t mask = umask(0);
|
|
|
|
perms &= ~mask;
|
2022-04-22 18:24:15 +00:00
|
|
|
umask(~perms & 0777);
|
2019-08-26 11:44:51 +00:00
|
|
|
FILE *f = fopen(filename, mode);
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
if(!f) {
|
|
|
|
fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef HAVE_FCHMOD
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if((perms & 0444) && f) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fchmod(fileno(f), perms);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#endif
|
|
|
|
umask(mask);
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static void disable_old_keys(const char *filename, const char *what) {
|
|
|
|
char tmpfile[PATH_MAX] = "";
|
|
|
|
char buf[1024];
|
|
|
|
bool disabled = false;
|
|
|
|
bool block = false;
|
|
|
|
bool error = false;
|
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
FILE *r = fopen(filename, "r");
|
|
|
|
FILE *w = NULL;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!r) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
int result = snprintf(tmpfile, sizeof(tmpfile), "%s.tmp", filename);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
if(result < sizeof(tmpfile)) {
|
|
|
|
struct stat st = {.st_mode = 0600};
|
|
|
|
fstat(fileno(r), &st);
|
|
|
|
w = fopenmask(tmpfile, "w", st.st_mode);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(fgets(buf, sizeof(buf), r)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!block && !strncmp(buf, "-----BEGIN ", 11)) {
|
2019-08-26 11:44:51 +00:00
|
|
|
if((strstr(buf, " ED25519 ") && strstr(what, "Ed25519")) || (strstr(buf, " RSA ") && strstr(what, "RSA"))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
disabled = true;
|
|
|
|
block = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
bool ed25519pubkey = !strncasecmp(buf, "Ed25519PublicKey", 16) && strchr(" \t=", buf[16]) && strstr(what, "Ed25519");
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(ed25519pubkey) {
|
2019-08-26 11:44:49 +00:00
|
|
|
disabled = true;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(w) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(block || ed25519pubkey) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fputc('#', w);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(fputs(buf, w) < 0) {
|
|
|
|
error = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(block && !strncmp(buf, "-----END ", 9)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
block = false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(w)
|
2019-08-26 11:44:53 +00:00
|
|
|
if(fclose(w) < 0) {
|
2019-08-26 11:44:49 +00:00
|
|
|
error = true;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ferror(r) || fclose(r) < 0) {
|
2019-08-26 11:44:49 +00:00
|
|
|
error = true;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(disabled) {
|
|
|
|
if(!w || error) {
|
|
|
|
fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(w) {
|
2019-08-26 11:44:49 +00:00
|
|
|
unlink(tmpfile);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
// We cannot atomically replace files on Windows.
|
|
|
|
char bakfile[PATH_MAX] = "";
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(bakfile, sizeof(bakfile), "%s.bak", filename);
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(rename(filename, bakfile) || rename(tmpfile, filename)) {
|
|
|
|
rename(bakfile, filename);
|
|
|
|
#else
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(rename(tmpfile, filename)) {
|
|
|
|
#endif
|
|
|
|
fprintf(stderr, "Warning: old key(s) found, remove them by hand!\n");
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
unlink(bakfile);
|
|
|
|
#endif
|
|
|
|
fprintf(stderr, "Warning: old key(s) found and disabled.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink(tmpfile);
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
static FILE *ask_and_open(const char *filename, const char *what, const char *mode, bool ask, mode_t perms) {
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *r;
|
2019-08-26 11:44:52 +00:00
|
|
|
char directory[PATH_MAX] = ".";
|
2019-08-26 11:44:49 +00:00
|
|
|
char buf[PATH_MAX];
|
|
|
|
char buf2[PATH_MAX];
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
ask_filename:
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
/* Check stdin and stdout */
|
2019-08-26 11:44:49 +00:00
|
|
|
if(ask && tty) {
|
2019-08-26 11:44:49 +00:00
|
|
|
/* Ask for a file and/or directory name. */
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Please enter a file to save %s to [%s]: ", what, filename);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(fgets(buf, sizeof(buf), stdin) == NULL) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
|
2019-08-26 11:44:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t len = strlen(buf);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(len) {
|
2019-08-26 11:44:49 +00:00
|
|
|
buf[--len] = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(len) {
|
2019-08-26 11:44:49 +00:00
|
|
|
filename = buf;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_MINGW
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(filename[0] != '\\' && filename[0] != '/' && !strchr(filename, ':')) {
|
|
|
|
#else
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(filename[0] != '/') {
|
|
|
|
#endif
|
|
|
|
/* The directory is a relative path or a filename. */
|
2019-08-26 11:44:53 +00:00
|
|
|
getcwd(directory, sizeof(directory));
|
|
|
|
|
|
|
|
if((size_t)snprintf(buf2, sizeof(buf2), "%s" SLASH "%s", directory, filename) >= sizeof(buf2)) {
|
|
|
|
fprintf(stderr, "Filename too long: %s" SLASH "%s\n", directory, filename);
|
|
|
|
|
|
|
|
if(ask && tty) {
|
|
|
|
goto ask_filename;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
filename = buf2;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
disable_old_keys(filename, what);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
/* Open it first to keep the inode busy */
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
r = fopenmask(filename, mode, perms);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(!r) {
|
|
|
|
fprintf(stderr, "Error opening file `%s': %s\n", filename, strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-04-22 18:24:15 +00:00
|
|
|
Generate a public/private Ed25519 key pair, and ask for a file to store
|
2019-08-26 11:44:49 +00:00
|
|
|
them in.
|
|
|
|
*/
|
2019-08-26 11:44:51 +00:00
|
|
|
static bool ed25519_keygen(bool ask) {
|
2019-08-26 11:44:51 +00:00
|
|
|
ecdsa_t *key;
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *f;
|
2019-08-26 11:44:52 +00:00
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
fprintf(stderr, "Generating Ed25519 key pair:\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!(key = ecdsa_generate())) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Error during key generation!\n");
|
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Done.\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "ed25519_key.priv", confbase);
|
2019-08-26 11:44:52 +00:00
|
|
|
f = ask_and_open(fname, "private Ed25519 key", "a", ask, 0600);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!ecdsa_write_pem_private_key(key, f)) {
|
|
|
|
fprintf(stderr, "Error writing private key!\n");
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(name) {
|
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "hosts" SLASH "%s", confbase, name);
|
|
|
|
} else {
|
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "ed25519_key.pub", confbase);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
f = ask_and_open(fname, "public Ed25519 key", "a", ask, 0666);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
char *pubkey = ecdsa_get_base64_public_key(key);
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(f, "Ed25519PublicKey = %s\n", pubkey);
|
2019-08-26 11:44:49 +00:00
|
|
|
free(pubkey);
|
|
|
|
|
|
|
|
fclose(f);
|
2019-08-26 11:44:51 +00:00
|
|
|
ecdsa_free(key);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return true;
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
error:
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(f);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
ecdsa_free(key);
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2019-08-26 11:44:49 +00:00
|
|
|
/*
|
2022-04-22 18:24:15 +00:00
|
|
|
Generate a public/private RSA key pair, and ask for a file to store
|
2019-08-26 11:44:49 +00:00
|
|
|
them in.
|
|
|
|
*/
|
2019-08-26 11:44:49 +00:00
|
|
|
static bool rsa_keygen(int bits, bool ask) {
|
2019-08-26 11:44:51 +00:00
|
|
|
rsa_t *key;
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *f;
|
2019-08-26 11:44:52 +00:00
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
// Make sure the key size is a multiple of 8 bits.
|
|
|
|
bits &= ~0x7;
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
// Make sure that a valid key size is used.
|
|
|
|
if(bits < 1024 || bits > 8192) {
|
|
|
|
fprintf(stderr, "Invalid key size %d specified! It should be between 1024 and 8192 bits.\n", bits);
|
|
|
|
return false;
|
|
|
|
} else if(bits < 2048) {
|
|
|
|
fprintf(stderr, "WARNING: generating a weak %d bits RSA key! 2048 or more bits are recommended.\n", bits);
|
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Generating %d bits keys:\n", bits);
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!(key = rsa_generate(bits, 0x10001))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Error during key generation!\n");
|
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Done.\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "rsa_key.priv", confbase);
|
2019-08-26 11:44:52 +00:00
|
|
|
f = ask_and_open(fname, "private RSA key", "a", ask, 0600);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!rsa_write_pem_private_key(key, f)) {
|
|
|
|
fprintf(stderr, "Error writing private key!\n");
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(name) {
|
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "hosts" SLASH "%s", confbase, name);
|
|
|
|
} else {
|
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "rsa_key.pub", confbase);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
f = ask_and_open(fname, "public RSA key", "a", ask, 0666);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!rsa_write_pem_public_key(key, f)) {
|
|
|
|
fprintf(stderr, "Error writing public key!\n");
|
2019-08-26 11:44:52 +00:00
|
|
|
goto error;
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
fclose(f);
|
2019-08-26 11:44:51 +00:00
|
|
|
rsa_free(key);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return true;
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
error:
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(f);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
rsa_free(key);
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
char buffer[4096];
|
|
|
|
size_t blen = 0;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
bool recvline(int fd, char *line, size_t len) {
|
|
|
|
char *newline = NULL;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!fd) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
while(!(newline = memchr(buffer, '\n', blen))) {
|
2019-08-26 11:44:53 +00:00
|
|
|
int result = recv(fd, buffer + blen, sizeof(buffer) - blen, 0);
|
|
|
|
|
|
|
|
if(result == -1 && sockerrno == EINTR) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(result <= 0) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
blen += result;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if((size_t)(newline - buffer) >= len) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
len = newline - buffer;
|
|
|
|
|
|
|
|
memcpy(line, buffer, len);
|
|
|
|
line[len] = 0;
|
|
|
|
memmove(buffer, newline + 1, blen - len - 1);
|
|
|
|
blen -= len + 1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
static bool recvdata(int fd, char *data, size_t len) {
|
2019-08-26 11:44:49 +00:00
|
|
|
while(blen < len) {
|
2019-08-26 11:44:53 +00:00
|
|
|
int result = recv(fd, buffer + blen, sizeof(buffer) - blen, 0);
|
|
|
|
|
|
|
|
if(result == -1 && sockerrno == EINTR) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(result <= 0) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
blen += result;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(data, buffer, len);
|
|
|
|
memmove(buffer, buffer + len, blen - len);
|
|
|
|
blen -= len;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool sendline(int fd, char *format, ...) {
|
|
|
|
static char buffer[4096];
|
|
|
|
char *p = buffer;
|
2019-08-26 11:44:53 +00:00
|
|
|
int blen;
|
2019-08-26 11:44:49 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
2019-08-26 11:44:53 +00:00
|
|
|
blen = vsnprintf(buffer, sizeof(buffer), format, ap);
|
|
|
|
buffer[sizeof(buffer) - 1] = 0;
|
2019-08-26 11:44:49 +00:00
|
|
|
va_end(ap);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(blen < 1 || (size_t)blen >= sizeof(buffer)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
buffer[blen] = '\n';
|
|
|
|
blen++;
|
|
|
|
|
|
|
|
while(blen) {
|
2019-08-26 11:44:51 +00:00
|
|
|
int result = send(fd, p, blen, MSG_NOSIGNAL);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(result == -1 && sockerrno == EINTR) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(result <= 0) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
p += result;
|
|
|
|
blen -= result;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return true;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
static void pcap(int fd, FILE *out, uint32_t snaplen) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d %d", CONTROL, REQ_PCAP, snaplen);
|
2019-08-26 11:44:49 +00:00
|
|
|
char data[9018];
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uint32_t magic;
|
|
|
|
uint16_t major;
|
|
|
|
uint16_t minor;
|
|
|
|
uint32_t tz_offset;
|
|
|
|
uint32_t tz_accuracy;
|
|
|
|
uint32_t snaplen;
|
|
|
|
uint32_t ll_type;
|
|
|
|
} header = {
|
|
|
|
0xa1b2c3d4,
|
|
|
|
2, 4,
|
|
|
|
0, 0,
|
2019-08-26 11:44:53 +00:00
|
|
|
snaplen ? snaplen : sizeof(data),
|
2019-08-26 11:44:49 +00:00
|
|
|
1,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uint32_t tv_sec;
|
|
|
|
uint32_t tv_usec;
|
|
|
|
uint32_t len;
|
|
|
|
uint32_t origlen;
|
|
|
|
} packet;
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
fwrite(&header, sizeof(header), 1, out);
|
2019-08-26 11:44:49 +00:00
|
|
|
fflush(out);
|
|
|
|
|
|
|
|
char line[32];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(recvline(fd, line, sizeof(line))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
int code, req, len;
|
|
|
|
int n = sscanf(line, "%d %d %d", &code, &req, &len);
|
|
|
|
gettimeofday(&tv, NULL);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(n != 3 || code != CONTROL || req != REQ_PCAP || len < 0 || (size_t)len > sizeof(data)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!recvdata(fd, data, len)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
packet.tv_sec = tv.tv_sec;
|
|
|
|
packet.tv_usec = tv.tv_usec;
|
|
|
|
packet.len = len;
|
|
|
|
packet.origlen = len;
|
2019-08-26 11:44:53 +00:00
|
|
|
fwrite(&packet, sizeof(packet), 1, out);
|
2019-08-26 11:44:49 +00:00
|
|
|
fwrite(data, len, 1, out);
|
|
|
|
fflush(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static void logcontrol(int fd, FILE *out, int level) {
|
|
|
|
sendline(fd, "%d %d %d", CONTROL, REQ_LOG, level);
|
|
|
|
char data[1024];
|
|
|
|
char line[32];
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(recvline(fd, line, sizeof(line))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
int code, req, len;
|
|
|
|
int n = sscanf(line, "%d %d %d", &code, &req, &len);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(n != 3 || code != CONTROL || req != REQ_LOG || len < 0 || (size_t)len > sizeof(data)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!recvdata(fd, data, len)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
fwrite(data, len, 1, out);
|
|
|
|
fputc('\n', out);
|
|
|
|
fflush(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
static bool stop_tincd(void) {
|
|
|
|
if(!connect_tincd(true)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_STOP);
|
|
|
|
|
|
|
|
while(recvline(fd, line, sizeof(line))) {
|
|
|
|
// wait for tincd to close the connection...
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
pid = 0;
|
|
|
|
fd = -1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
static bool remove_service(void) {
|
|
|
|
SC_HANDLE manager = NULL;
|
|
|
|
SC_HANDLE service = NULL;
|
|
|
|
SERVICE_STATUS status = {0};
|
2019-08-26 11:44:53 +00:00
|
|
|
bool success = false;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
manager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!manager) {
|
|
|
|
fprintf(stderr, "Could not open service manager: %s\n", winerror(GetLastError()));
|
2019-08-26 11:44:53 +00:00
|
|
|
goto exit;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
service = OpenService(manager, identname, SERVICE_ALL_ACCESS);
|
|
|
|
|
|
|
|
if(!service) {
|
2022-04-22 18:24:15 +00:00
|
|
|
if(GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST) {
|
|
|
|
success = stop_tincd();
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Could not open %s service: %s\n", identname, winerror(GetLastError()));
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
goto exit;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!ControlService(service, SERVICE_CONTROL_STOP, &status)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not stop %s service: %s\n", identname, winerror(GetLastError()));
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "%s service stopped\n", identname);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(!DeleteService(service)) {
|
|
|
|
fprintf(stderr, "Could not remove %s service: %s\n", identname, winerror(GetLastError()));
|
2019-08-26 11:44:53 +00:00
|
|
|
goto exit;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
success = true;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
exit:
|
|
|
|
|
|
|
|
if(service) {
|
|
|
|
CloseServiceHandle(service);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(manager) {
|
|
|
|
CloseServiceHandle(manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(success) {
|
|
|
|
fprintf(stderr, "%s service removed\n", identname);
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
bool connect_tincd(bool verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
if(fd >= 0) {
|
|
|
|
fd_set r;
|
|
|
|
FD_ZERO(&r);
|
|
|
|
FD_SET(fd, &r);
|
|
|
|
struct timeval tv = {0, 0};
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(select(fd + 1, &r, NULL, NULL, &tv)) {
|
|
|
|
fprintf(stderr, "Previous connection to tincd lost, reconnecting.\n");
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FILE *f = fopen(pidfilename, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not open pid file %s: %s\n", pidfilename, strerror(errno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
char host[129];
|
|
|
|
char port[129];
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(fscanf(f, "%20d %1024s %128s port %128s", &pid, controlcookie, host, port) != 4) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not parse pid file %s\n", pidfilename);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
fclose(f);
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
fclose(f);
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_MINGW
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if((pid == 0) || (kill(pid, 0) && (errno == ESRCH))) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "Could not find tincd running at pid %d\n", pid);
|
|
|
|
/* clean up the stale socket and pid file */
|
|
|
|
unlink(pidfilename);
|
|
|
|
unlink(unixsocketname);
|
|
|
|
return false;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
struct sockaddr_un sa;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
sa.sun_family = AF_UNIX;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
strncpy(sa.sun_path, unixsocketname, sizeof(sa.sun_path));
|
|
|
|
|
|
|
|
sa.sun_path[sizeof(sa.sun_path) - 1] = 0;
|
2019-08-26 11:44:50 +00:00
|
|
|
|
|
|
|
fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(fd < 0) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "Cannot create UNIX socket: %s\n", sockstrerror(sockerrno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(connect(fd, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
|
|
|
|
if(verbose) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "Cannot connect to UNIX socket %s: %s\n", unixsocketname, sockstrerror(sockerrno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
return false;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
#else
|
2019-08-26 11:44:49 +00:00
|
|
|
struct addrinfo hints = {
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP,
|
|
|
|
.ai_flags = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct addrinfo *res = NULL;
|
|
|
|
|
|
|
|
if(getaddrinfo(host, port, &hints, &res) || !res) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
|
|
|
fprintf(stderr, "Cannot resolve %s port %s: %s\n", host, port, sockstrerror(sockerrno));
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd = socket(res->ai_family, SOCK_STREAM, IPPROTO_TCP);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(fd < 0) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Cannot create TCP socket: %s\n", sockstrerror(sockerrno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long arg = 0;
|
|
|
|
|
|
|
|
if(ioctlsocket(fd, FIONBIO, &arg) != 0) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
|
|
|
fprintf(stderr, "System call `%s' failed: %s\n", "ioctlsocket", sockstrerror(sockerrno));
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(connect(fd, res->ai_addr, res->ai_addrlen) < 0) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Cannot connect to %s port %s: %s\n", host, port, sockstrerror(sockerrno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
freeaddrinfo(res);
|
2019-08-26 11:44:50 +00:00
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef SO_NOSIGPIPE
|
|
|
|
static const int one = 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, (void *)&one, sizeof(one));
|
2019-08-26 11:44:51 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
sendline(fd, "%d ^%s %d", ID, controlcookie, TINC_CTL_VERSION_CURRENT);
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
char data[4096];
|
2019-08-26 11:44:49 +00:00
|
|
|
int version;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %4095s %d", &code, data, &version) != 3 || code != 0) {
|
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Cannot read greeting from control socket: %s\n", sockstrerror(sockerrno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &version, &pid) != 3 || code != 4 || version != TINC_CTL_VERSION_CURRENT) {
|
|
|
|
if(verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not fully establish control socket connection\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
return false;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int cmd_start(int argc, char *argv[]) {
|
|
|
|
if(connect_tincd(false)) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(netname) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "A tincd is already running for net `%s' with pid %d.\n", netname, pid);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "A tincd is already running with pid %d.\n", pid);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
char *c;
|
|
|
|
char *slash = strrchr(program_name, '/');
|
|
|
|
|
|
|
|
#ifdef HAVE_MINGW
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if((c = strrchr(program_name, '\\')) > slash) {
|
2019-08-26 11:44:49 +00:00
|
|
|
slash = c;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(slash++) {
|
2019-08-26 11:44:49 +00:00
|
|
|
xasprintf(&c, "%.*stincd", (int)(slash - program_name), program_name);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
c = "tincd";
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
int nargc = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
char **nargv = xzalloc((optind + argc) * sizeof(*nargv));
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
char *arg0 = c;
|
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
/*
|
|
|
|
Windows has no real concept of an "argv array". A command line is just one string.
|
|
|
|
The CRT of the new process will decode the command line string to generate argv before calling main(), and (by convention)
|
|
|
|
it uses quotes to handle spaces in arguments.
|
|
|
|
Therefore we need to quote all arguments that might contain spaces. No, execvp() won't do that for us (see MSDN).
|
|
|
|
If we don't do that, then execvp() will run fine but any spaces in the filename contained in arg0 will bleed
|
|
|
|
into the next arguments when the spawned process' CRT parses its command line, resulting in chaos.
|
|
|
|
*/
|
|
|
|
xasprintf(&arg0, "\"%s\"", arg0);
|
|
|
|
#endif
|
|
|
|
nargv[nargc++] = arg0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
for(int i = 1; i < optind; i++) {
|
2019-08-26 11:44:49 +00:00
|
|
|
nargv[nargc++] = orig_argv[i];
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 1; i < argc; i++) {
|
2019-08-26 11:44:49 +00:00
|
|
|
nargv[nargc++] = argv[i];
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MINGW
|
2019-08-26 11:44:51 +00:00
|
|
|
int status = spawnvp(_P_WAIT, c, nargv);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(status == -1) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Error starting %s: %s\n", c, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
return status;
|
2019-08-26 11:44:49 +00:00
|
|
|
#else
|
2019-08-26 11:44:52 +00:00
|
|
|
int pfd[2] = {-1, -1};
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(socketpair(AF_UNIX, SOCK_STREAM, 0, pfd)) {
|
|
|
|
fprintf(stderr, "Could not create umbilical socket: %s\n", strerror(errno));
|
|
|
|
free(nargv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
pid_t pid = fork();
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(pid == -1) {
|
|
|
|
fprintf(stderr, "Could not fork: %s\n", strerror(errno));
|
|
|
|
free(nargv);
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!pid) {
|
|
|
|
close(pfd[0]);
|
2019-08-26 11:44:52 +00:00
|
|
|
char buf[100];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%d", pfd[1]);
|
2019-08-26 11:44:52 +00:00
|
|
|
setenv("TINC_UMBILICAL", buf, true);
|
2019-08-26 11:44:49 +00:00
|
|
|
exit(execvp(c, nargv));
|
2019-08-26 11:44:52 +00:00
|
|
|
} else {
|
|
|
|
close(pfd[1]);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
free(nargv);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
int status = -1, result;
|
|
|
|
#ifdef SIGINT
|
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
#endif
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
// Pass all log messages from the umbilical to stderr.
|
2019-08-26 11:44:53 +00:00
|
|
|
// A nul-byte right before closure means tincd started successfully.
|
2019-08-26 11:44:52 +00:00
|
|
|
bool failure = true;
|
|
|
|
char buf[1024];
|
|
|
|
ssize_t len;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while((len = read(pfd[0], buf, sizeof(buf))) > 0) {
|
2019-08-26 11:44:52 +00:00
|
|
|
failure = buf[len - 1];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!failure) {
|
2019-08-26 11:44:52 +00:00
|
|
|
len--;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
write(2, buf, len);
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(len) {
|
2019-08-26 11:44:52 +00:00
|
|
|
failure = true;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
close(pfd[0]);
|
|
|
|
|
|
|
|
// Make sure the child process is really gone.
|
2019-08-26 11:44:51 +00:00
|
|
|
result = waitpid(pid, &status, 0);
|
2019-08-26 11:44:52 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef SIGINT
|
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(failure || result != pid || !WIFEXITED(status) || WEXITSTATUS(status)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Error starting %s\n", c);
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_stop(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
return remove_service();
|
|
|
|
#else
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
if(!stop_tincd()) {
|
2019-08-26 11:44:49 +00:00
|
|
|
if(pid) {
|
|
|
|
if(kill(pid, SIGTERM)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "Could not send TERM signal to process with PID %d: %s\n", pid, strerror(errno));
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "Sent TERM signal to process with PID %d.\n", pid);
|
2019-08-26 11:44:49 +00:00
|
|
|
waitpid(pid, NULL, 0);
|
|
|
|
return 0;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
2022-04-22 18:24:15 +00:00
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_restart(int argc, char *argv[]) {
|
2019-08-26 11:44:51 +00:00
|
|
|
cmd_stop(1, argv);
|
2019-08-26 11:44:49 +00:00
|
|
|
return cmd_start(argc, argv);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_reload(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RELOAD || result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not reload configuration.\n");
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
static int dump_invitations(void) {
|
|
|
|
char dname[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(dname, sizeof(dname), "%s" SLASH "invitations", confbase);
|
2019-08-26 11:44:52 +00:00
|
|
|
DIR *dir = opendir(dname);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!dir) {
|
|
|
|
if(errno == ENOENT) {
|
|
|
|
fprintf(stderr, "No outstanding invitations.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Cannot not read directory %s: %s\n", dname, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct dirent *ent;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
while((ent = readdir(dir))) {
|
|
|
|
char buf[MAX_STRING_SIZE];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(b64decode(ent->d_name, buf, 24) != 18) {
|
2019-08-26 11:44:52 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if((size_t)snprintf(fname, sizeof(fname), "%s" SLASH "%s", dname, ent->d_name) >= sizeof(fname)) {
|
|
|
|
fprintf(stderr, "Filename too long: %s" SLASH "%s\n", dname, ent->d_name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
FILE *f = fopen(fname, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!f) {
|
|
|
|
fprintf(stderr, "Cannot open %s: %s\n", fname, strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[0] = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!fgets(buf, sizeof(buf), f)) {
|
|
|
|
fprintf(stderr, "Invalid invitation file %s\n", fname);
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(f);
|
|
|
|
continue;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
char *eol = buf + strlen(buf);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(strchr("\t \r\n", *--eol)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
*eol = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(strncmp(buf, "Name = ", 7) || !check_id(buf + 7)) {
|
2019-08-26 11:44:53 +00:00
|
|
|
fprintf(stderr, "Invalid invitation file %s\n", fname);
|
2019-08-26 11:44:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
found = true;
|
|
|
|
printf("%s %s\n", ent->d_name, buf + 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!found) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "No outstanding invitations.\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_dump(int argc, char *argv[]) {
|
2019-08-26 11:44:50 +00:00
|
|
|
bool only_reachable = false;
|
|
|
|
|
|
|
|
if(argc > 2 && !strcasecmp(argv[1], "reachable")) {
|
|
|
|
if(strcasecmp(argv[2], "nodes")) {
|
|
|
|
fprintf(stderr, "`reachable' only supported for nodes.\n");
|
|
|
|
usage(true);
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
only_reachable = true;
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
usage(true);
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strcasecmp(argv[1], "invitations")) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return dump_invitations();
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
int do_graph = 0;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strcasecmp(argv[1], "nodes")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strcasecmp(argv[1], "edges")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strcasecmp(argv[1], "subnets")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strcasecmp(argv[1], "connections")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strcasecmp(argv[1], "graph")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
|
|
|
|
do_graph = 1;
|
|
|
|
} else if(!strcasecmp(argv[1], "digraph")) {
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_EDGES);
|
|
|
|
do_graph = 2;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Unknown dump type '%s'.\n", argv[1]);
|
|
|
|
usage(true);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(do_graph == 1) {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("graph {\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(do_graph == 2) {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("digraph {\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(recvline(fd, line, sizeof(line))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
char node1[4096], node2[4096];
|
2019-08-26 11:44:52 +00:00
|
|
|
int n = sscanf(line, "%d %d %4095s %4095s", &code, &req, node1, node2);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(n == 2) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(do_graph && req == REQ_DUMP_NODES) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
|
|
|
if(do_graph) {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("}\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(n < 2) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
char node[4096];
|
2019-08-26 11:44:51 +00:00
|
|
|
char id[4096];
|
2019-08-26 11:44:49 +00:00
|
|
|
char from[4096];
|
|
|
|
char to[4096];
|
|
|
|
char subnet[4096];
|
|
|
|
char host[4096];
|
|
|
|
char port[4096];
|
2019-08-26 11:44:51 +00:00
|
|
|
char local_host[4096];
|
|
|
|
char local_port[4096];
|
2019-08-26 11:44:49 +00:00
|
|
|
char via[4096];
|
|
|
|
char nexthop[4096];
|
|
|
|
int cipher, digest, maclength, compression, distance, socket, weight;
|
|
|
|
short int pmtu, minmtu, maxmtu;
|
|
|
|
unsigned int options, status_int;
|
|
|
|
node_status_t status;
|
|
|
|
long int last_state_change;
|
2019-08-26 11:44:53 +00:00
|
|
|
int udp_ping_rtt;
|
|
|
|
uint64_t in_packets, in_bytes, out_packets, out_bytes;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
switch(req) {
|
2019-08-26 11:44:53 +00:00
|
|
|
case REQ_DUMP_NODES: {
|
|
|
|
int n = sscanf(line, "%*d %*d %4095s %4095s %4095s port %4095s %d %d %d %d %x %x %4095s %4095s %d %hd %hd %hd %ld %d %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64, node, id, host, port, &cipher, &digest, &maclength, &compression, &options, &status_int, nexthop, via, &distance, &pmtu, &minmtu, &maxmtu, &last_state_change, &udp_ping_rtt, &in_packets, &in_bytes, &out_packets, &out_bytes);
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(n != 22) {
|
|
|
|
fprintf(stderr, "Unable to parse node dump from tincd: %s\n", line);
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
memcpy(&status, &status_int, sizeof(status));
|
|
|
|
|
|
|
|
if(do_graph) {
|
|
|
|
const char *color = "black";
|
|
|
|
|
|
|
|
if(!strcmp(host, "MYSELF")) {
|
|
|
|
color = "green";
|
|
|
|
} else if(!status.reachable) {
|
|
|
|
color = "red";
|
|
|
|
} else if(strcmp(via, node)) {
|
|
|
|
color = "orange";
|
|
|
|
} else if(!status.validkey) {
|
|
|
|
color = "black";
|
|
|
|
} else if(minmtu > 0) {
|
|
|
|
color = "green";
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
printf(" \"%s\" [label = \"%s\", color = \"%s\"%s];\n", node, node, color, strcmp(host, "MYSELF") ? "" : ", style = \"filled\"");
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
|
|
|
if(only_reachable && !status.reachable) {
|
|
|
|
continue;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
printf("%s id %s at %s port %s cipher %d digest %d maclength %d compression %d options %x status %04x nexthop %s via %s distance %d pmtu %d (min %d max %d) rx %"PRIu64" %"PRIu64" tx %"PRIu64" %"PRIu64,
|
|
|
|
node, id, host, port, cipher, digest, maclength, compression, options, status_int, nexthop, via, distance, pmtu, minmtu, maxmtu, in_packets, in_bytes, out_packets, out_bytes);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(udp_ping_rtt != -1) {
|
|
|
|
printf(" rtt %d.%03d", udp_ping_rtt / 1000, udp_ping_rtt % 1000);
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case REQ_DUMP_EDGES: {
|
|
|
|
int n = sscanf(line, "%*d %*d %4095s %4095s %4095s port %4095s %4095s port %4095s %x %d", from, to, host, port, local_host, local_port, &options, &weight);
|
|
|
|
|
|
|
|
if(n != 8) {
|
|
|
|
fprintf(stderr, "Unable to parse edge dump from tincd.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(do_graph) {
|
|
|
|
float w = 1 + 65536.0 / weight;
|
|
|
|
|
|
|
|
if(do_graph == 1 && strcmp(node1, node2) > 0) {
|
2022-04-22 18:24:15 +00:00
|
|
|
printf(" \"%s\" -- \"%s\" [w = %f, weight = %f];\n", node1, node2, w, w);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(do_graph == 2) {
|
2022-04-22 18:24:15 +00:00
|
|
|
printf(" \"%s\" -> \"%s\" [w = %f, weight = %f];\n", node1, node2, w, w);
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
|
|
|
printf("%s to %s at %s port %s local %s port %s options %x weight %d\n", from, to, host, port, local_host, local_port, options, weight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
case REQ_DUMP_SUBNETS: {
|
|
|
|
int n = sscanf(line, "%*d %*d %4095s %4095s", subnet, node);
|
|
|
|
|
|
|
|
if(n != 2) {
|
|
|
|
fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s owner %s\n", strip_weight(subnet), node);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case REQ_DUMP_CONNECTIONS: {
|
|
|
|
int n = sscanf(line, "%*d %*d %4095s %4095s port %4095s %x %d %x", node, host, port, &options, &socket, &status_int);
|
|
|
|
|
|
|
|
if(n != 6) {
|
|
|
|
fprintf(stderr, "Unable to parse connection dump from tincd.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s at %s port %s options %x socket %d status %x\n", node, host, port, options, socket, status_int);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Unable to parse dump from tincd.\n");
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Error receiving dump.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_purge(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_PURGE);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_PURGE || result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not purge old information.\n");
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_debug(int argc, char *argv[]) {
|
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
int debuglevel = atoi(argv[1]);
|
|
|
|
int origlevel;
|
|
|
|
|
|
|
|
sendline(fd, "%d %d %d", CONTROL, REQ_SET_DEBUG, debuglevel);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &origlevel) != 3 || code != CONTROL || req != REQ_SET_DEBUG) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not set debug level.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Old level %d, new level %d.\n", origlevel, debuglevel);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_retry(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_RETRY);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_RETRY || result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not retry outgoing connections.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_connect(int argc, char *argv[]) {
|
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!check_id(argv[1])) {
|
|
|
|
fprintf(stderr, "Invalid name for node.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
sendline(fd, "%d %d %s", CONTROL, REQ_CONNECT, argv[1]);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_CONNECT || result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not connect to %s.\n", argv[1]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_disconnect(int argc, char *argv[]) {
|
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!check_id(argv[1])) {
|
|
|
|
fprintf(stderr, "Invalid name for node.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
sendline(fd, "%d %d %s", CONTROL, REQ_DISCONNECT, argv[1]);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!recvline(fd, line, sizeof(line)) || sscanf(line, "%d %d %d", &code, &req, &result) != 3 || code != CONTROL || req != REQ_DISCONNECT || result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not disconnect %s.\n", argv[1]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_top(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#ifdef HAVE_CURSES
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
top(fd);
|
|
|
|
return 0;
|
|
|
|
#else
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "This version of tinc was compiled without support for the curses library.\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_pcap(int argc, char *argv[]) {
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
pcap(fd, stdout, argc > 1 ? atoi(argv[1]) : 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef SIGINT
|
|
|
|
static void sigint_handler(int sig) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)sig;
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
shutdown(fd, SHUT_RDWR);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_log(int argc, char *argv[]) {
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef SIGINT
|
|
|
|
signal(SIGINT, sigint_handler);
|
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
logcontrol(fd, stdout, argc > 1 ? atoi(argv[1]) : -1);
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
#ifdef SIGINT
|
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
2019-08-26 11:44:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_pid(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true) || !pid) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
printf("%d\n", pid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
int rstrip(char *value) {
|
2019-08-26 11:44:49 +00:00
|
|
|
int len = strlen(value);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(len && strchr("\t\r\n ", value[len - 1])) {
|
2019-08-26 11:44:49 +00:00
|
|
|
value[--len] = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
char *get_my_name(bool verbose) {
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *f = fopen(tinc_conf, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(verbose) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "Could not open %s: %s\n", tinc_conf, strerror(errno));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buf[4096];
|
|
|
|
char *value;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(fgets(buf, sizeof(buf), f)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
int len = strcspn(buf, "\t =");
|
|
|
|
value = buf + len;
|
|
|
|
value += strspn(value, "\t ");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(*value == '=') {
|
|
|
|
value++;
|
|
|
|
value += strspn(value, "\t ");
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!rstrip(value)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
buf[len] = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(strcasecmp(buf, "Name")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(*value) {
|
|
|
|
fclose(f);
|
2019-08-26 11:44:51 +00:00
|
|
|
return replace_name(value);
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(verbose) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "Could not find Name in %s.\n", tinc_conf);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
ecdsa_t *get_pubkey(FILE *f) {
|
|
|
|
char buf[4096];
|
|
|
|
char *value;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(fgets(buf, sizeof(buf), f)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
int len = strcspn(buf, "\t =");
|
|
|
|
value = buf + len;
|
|
|
|
value += strspn(value, "\t ");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(*value == '=') {
|
|
|
|
value++;
|
|
|
|
value += strspn(value, "\t ");
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!rstrip(value)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
buf[len] = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(strcasecmp(buf, "Ed25519PublicKey")) {
|
2019-08-26 11:44:52 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*value) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return ecdsa_set_base64_public_key(value);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
const var_t variables[] = {
|
2019-08-26 11:44:49 +00:00
|
|
|
/* Server configuration */
|
2022-04-22 18:24:15 +00:00
|
|
|
{"AddressFamily", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"AutoConnect", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"BindToAddress", VAR_SERVER | VAR_MULTIPLE},
|
|
|
|
{"BindToInterface", VAR_SERVER},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Broadcast", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"BroadcastSubnet", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"ConnectTo", VAR_SERVER | VAR_MULTIPLE | VAR_SAFE},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"DecrementTTL", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"Device", VAR_SERVER},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"DeviceStandby", VAR_SERVER},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"DeviceType", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"DirectOnly", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Ed25519PrivateKeyFile", VAR_SERVER},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"ExperimentalProtocol", VAR_SERVER},
|
|
|
|
{"Forwarding", VAR_SERVER},
|
2019-08-26 11:44:53 +00:00
|
|
|
{"FWMark", VAR_SERVER},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"GraphDumpFile", VAR_SERVER | VAR_OBSOLETE},
|
|
|
|
{"Hostnames", VAR_SERVER},
|
|
|
|
{"IffOneQueue", VAR_SERVER},
|
|
|
|
{"Interface", VAR_SERVER},
|
2019-08-26 11:44:52 +00:00
|
|
|
{"InvitationExpire", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"KeyExpire", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"ListenAddress", VAR_SERVER | VAR_MULTIPLE},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"LocalDiscovery", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:52 +00:00
|
|
|
{"LogLevel", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"MACExpire", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"MaxConnectionBurst", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"MaxOutputBufferSize", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"MaxTimeout", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Mode", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"Name", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"PingInterval", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"PingTimeout", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"PriorityInheritance", VAR_SERVER},
|
|
|
|
{"PrivateKey", VAR_SERVER | VAR_OBSOLETE},
|
|
|
|
{"PrivateKeyFile", VAR_SERVER},
|
|
|
|
{"ProcessPriority", VAR_SERVER},
|
|
|
|
{"Proxy", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"ReplayWindow", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"ScriptsExtension", VAR_SERVER},
|
|
|
|
{"ScriptsInterpreter", VAR_SERVER},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"StrictSubnets", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"TunnelServer", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"UDPDiscovery", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"UDPDiscoveryKeepaliveInterval", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"UDPDiscoveryInterval", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"UDPDiscoveryTimeout", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"MTUInfoInterval", VAR_SERVER | VAR_SAFE},
|
|
|
|
{"UDPInfoInterval", VAR_SERVER | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"UDPRcvBuf", VAR_SERVER},
|
|
|
|
{"UDPSndBuf", VAR_SERVER},
|
2019-08-26 11:44:52 +00:00
|
|
|
{"UPnP", VAR_SERVER},
|
|
|
|
{"UPnPDiscoverWait", VAR_SERVER},
|
|
|
|
{"UPnPRefreshPeriod", VAR_SERVER},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"VDEGroup", VAR_SERVER},
|
|
|
|
{"VDEPort", VAR_SERVER},
|
|
|
|
/* Host configuration */
|
|
|
|
{"Address", VAR_HOST | VAR_MULTIPLE},
|
|
|
|
{"Cipher", VAR_SERVER | VAR_HOST},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"ClampMSS", VAR_SERVER | VAR_HOST | VAR_SAFE},
|
|
|
|
{"Compression", VAR_SERVER | VAR_HOST | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"Digest", VAR_SERVER | VAR_HOST},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Ed25519PublicKey", VAR_HOST},
|
|
|
|
{"Ed25519PublicKeyFile", VAR_SERVER | VAR_HOST},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"IndirectData", VAR_SERVER | VAR_HOST | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{"MACLength", VAR_SERVER | VAR_HOST},
|
|
|
|
{"PMTU", VAR_SERVER | VAR_HOST},
|
|
|
|
{"PMTUDiscovery", VAR_SERVER | VAR_HOST},
|
|
|
|
{"Port", VAR_HOST},
|
|
|
|
{"PublicKey", VAR_HOST | VAR_OBSOLETE},
|
|
|
|
{"PublicKeyFile", VAR_SERVER | VAR_HOST | VAR_OBSOLETE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Subnet", VAR_HOST | VAR_MULTIPLE | VAR_SAFE},
|
2022-04-22 18:24:15 +00:00
|
|
|
{"TCPOnly", VAR_SERVER | VAR_HOST | VAR_SAFE},
|
2019-08-26 11:44:51 +00:00
|
|
|
{"Weight", VAR_HOST | VAR_SAFE},
|
2019-08-26 11:44:49 +00:00
|
|
|
{NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_config(int argc, char *argv[]) {
|
|
|
|
if(argc < 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(strcasecmp(argv[0], "config")) {
|
2019-08-26 11:44:50 +00:00
|
|
|
argv--, argc++;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
int action = -2;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!strcasecmp(argv[1], "get")) {
|
|
|
|
argv++, argc--;
|
|
|
|
} else if(!strcasecmp(argv[1], "add")) {
|
|
|
|
argv++, argc--, action = 1;
|
|
|
|
} else if(!strcasecmp(argv[1], "del")) {
|
|
|
|
argv++, argc--, action = -1;
|
|
|
|
} else if(!strcasecmp(argv[1], "replace") || !strcasecmp(argv[1], "set") || !strcasecmp(argv[1], "change")) {
|
|
|
|
argv++, argc--, action = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(argc < 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Concatenate the rest of the command line
|
2019-08-26 11:44:53 +00:00
|
|
|
strncpy(line, argv[1], sizeof(line) - 1);
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
for(int i = 2; i < argc; i++) {
|
2019-08-26 11:44:53 +00:00
|
|
|
strncat(line, " ", sizeof(line) - 1 - strlen(line));
|
|
|
|
strncat(line, argv[i], sizeof(line) - 1 - strlen(line));
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Liberal parsing into node name, variable name and value.
|
|
|
|
char *node = NULL;
|
|
|
|
char *variable;
|
|
|
|
char *value;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = strcspn(line, "\t =");
|
|
|
|
value = line + len;
|
|
|
|
value += strspn(value, "\t ");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(*value == '=') {
|
|
|
|
value++;
|
|
|
|
value += strspn(value, "\t ");
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
line[len] = '\0';
|
|
|
|
variable = strchr(line, '.');
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(variable) {
|
|
|
|
node = line;
|
|
|
|
*variable++ = 0;
|
|
|
|
} else {
|
|
|
|
variable = line;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!*variable) {
|
|
|
|
fprintf(stderr, "No variable given.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(action >= 0 && !*value) {
|
|
|
|
fprintf(stderr, "No value for variable given.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(action < -1 && *value) {
|
2019-08-26 11:44:49 +00:00
|
|
|
action = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
/* Some simple checks. */
|
|
|
|
bool found = false;
|
2019-08-26 11:44:51 +00:00
|
|
|
bool warnonremove = false;
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
for(int i = 0; variables[i].name; i++) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(strcasecmp(variables[i].name, variable)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
found = true;
|
|
|
|
variable = (char *)variables[i].name;
|
|
|
|
|
2022-04-22 18:24:15 +00:00
|
|
|
if(!strcasecmp(variable, "Subnet")) {
|
|
|
|
subnet_t s = {0};
|
|
|
|
|
|
|
|
if(!str2net(&s, value)) {
|
|
|
|
fprintf(stderr, "Malformed subnet definition %s\n", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!subnetcheck(s)) {
|
|
|
|
fprintf(stderr, "Network address and prefix length do not match: %s\n", value);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
/* Discourage use of obsolete variables. */
|
|
|
|
|
|
|
|
if(variables[i].type & VAR_OBSOLETE && action >= 0) {
|
|
|
|
if(force) {
|
|
|
|
fprintf(stderr, "Warning: %s is an obsolete variable!\n", variable);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "%s is an obsolete variable! Use --force to use it anyway.\n", variable);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't put server variables in host config files */
|
|
|
|
|
|
|
|
if(node && !(variables[i].type & VAR_HOST) && action >= 0) {
|
|
|
|
if(force) {
|
|
|
|
fprintf(stderr, "Warning: %s is not a host configuration variable!\n", variable);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "%s is not a host configuration variable! Use --force to use it anyway.\n", variable);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Should this go into our own host config file? */
|
|
|
|
|
|
|
|
if(!node && !(variables[i].type & VAR_SERVER)) {
|
2019-08-26 11:44:50 +00:00
|
|
|
node = get_my_name(true);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!node) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
/* Change "add" into "set" for variables that do not allow multiple occurrences.
|
2019-08-26 11:44:51 +00:00
|
|
|
Turn on warnings when it seems variables might be removed unintentionally. */
|
|
|
|
|
|
|
|
if(action == 1 && !(variables[i].type & VAR_MULTIPLE)) {
|
|
|
|
warnonremove = true;
|
|
|
|
action = 0;
|
|
|
|
} else if(action == 0 && (variables[i].type & VAR_MULTIPLE)) {
|
|
|
|
warnonremove = true;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(node && !check_id(node)) {
|
|
|
|
fprintf(stderr, "Invalid name for node.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found) {
|
|
|
|
if(force || action < 0) {
|
|
|
|
fprintf(stderr, "Warning: %s is not a known configuration variable!\n", variable);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "%s: is not a known configuration variable! Use --force to use it anyway.\n", variable);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the right configuration file.
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(node) {
|
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, node);
|
|
|
|
} else {
|
|
|
|
snprintf(filename, sizeof(filename), "%s", tinc_conf);
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
FILE *f = fopen(filename, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
char tmpfile[PATH_MAX];
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *tf = NULL;
|
|
|
|
|
|
|
|
if(action >= -1) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if((size_t)snprintf(tmpfile, sizeof(tmpfile), "%s.config.tmp", filename) >= sizeof(tmpfile)) {
|
|
|
|
fprintf(stderr, "Filename too long: %s.config.tmp\n", filename);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
tf = fopen(tmpfile, "w");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!tf) {
|
|
|
|
fprintf(stderr, "Could not open temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
fclose(f);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the file, making modifications on the fly, unless we are just getting a value.
|
|
|
|
char buf1[4096];
|
|
|
|
char buf2[4096];
|
|
|
|
bool set = false;
|
|
|
|
bool removed = false;
|
|
|
|
found = false;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(fgets(buf1, sizeof(buf1), f)) {
|
|
|
|
buf1[sizeof(buf1) - 1] = 0;
|
|
|
|
strncpy(buf2, buf1, sizeof(buf2));
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
// Parse line in a simple way
|
|
|
|
char *bvalue;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = strcspn(buf2, "\t =");
|
|
|
|
bvalue = buf2 + len;
|
|
|
|
bvalue += strspn(bvalue, "\t ");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(*bvalue == '=') {
|
|
|
|
bvalue++;
|
|
|
|
bvalue += strspn(bvalue, "\t ");
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
rstrip(bvalue);
|
|
|
|
buf2[len] = '\0';
|
|
|
|
|
|
|
|
// Did it match?
|
|
|
|
if(!strcasecmp(buf2, variable)) {
|
|
|
|
// Get
|
|
|
|
if(action < -1) {
|
|
|
|
found = true;
|
|
|
|
printf("%s\n", bvalue);
|
2019-08-26 11:44:53 +00:00
|
|
|
// Del
|
2019-08-26 11:44:49 +00:00
|
|
|
} else if(action == -1) {
|
|
|
|
if(!*value || !strcasecmp(bvalue, value)) {
|
|
|
|
removed = true;
|
|
|
|
continue;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
// Set
|
2019-08-26 11:44:49 +00:00
|
|
|
} else if(action == 0) {
|
2019-08-26 11:44:51 +00:00
|
|
|
// Warn if "set" was used for variables that can occur multiple times
|
2019-08-26 11:44:53 +00:00
|
|
|
if(warnonremove && strcasecmp(bvalue, value)) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Warning: removing %s = %s\n", variable, bvalue);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
// Already set? Delete the rest...
|
2019-08-26 11:44:53 +00:00
|
|
|
if(set) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
// Otherwise, replace.
|
|
|
|
if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
|
|
|
|
fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
set = true;
|
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
// Add
|
2019-08-26 11:44:52 +00:00
|
|
|
} else if(action > 0) {
|
|
|
|
// Check if we've already seen this variable with the same value
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strcasecmp(bvalue, value)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
found = true;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(action >= -1) {
|
|
|
|
// Copy original line...
|
|
|
|
if(fputs(buf1, tf) < 0) {
|
|
|
|
fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add newline if it is missing...
|
|
|
|
if(*buf1 && buf1[strlen(buf1) - 1] != '\n') {
|
|
|
|
if(fputc('\n', tf) < 0) {
|
|
|
|
fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we read everything...
|
|
|
|
if(ferror(f) || !feof(f)) {
|
|
|
|
fprintf(stderr, "Error while reading from configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(fclose(f)) {
|
|
|
|
fprintf(stderr, "Error closing configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add new variable if necessary.
|
2019-08-26 11:44:53 +00:00
|
|
|
if((action > 0 && !found) || (action == 0 && !set)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
if(fprintf(tf, "%s = %s\n", variable, value) < 0) {
|
|
|
|
fprintf(stderr, "Error writing to temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(action < -1) {
|
2019-08-26 11:44:51 +00:00
|
|
|
if(found) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "No matching configuration variables found.\n");
|
2019-08-26 11:44:51 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we wrote everything...
|
|
|
|
if(fclose(tf)) {
|
|
|
|
fprintf(stderr, "Error closing temporary file %s: %s\n", tmpfile, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Could we find what we had to remove?
|
|
|
|
if(action < 0 && !removed) {
|
|
|
|
remove(tmpfile);
|
|
|
|
fprintf(stderr, "No configuration variables deleted.\n");
|
2019-08-26 11:44:51 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Replace the configuration file with the new one
|
|
|
|
#ifdef HAVE_MINGW
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(remove(filename)) {
|
|
|
|
fprintf(stderr, "Error replacing file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(rename(tmpfile, filename)) {
|
|
|
|
fprintf(stderr, "Error renaming temporary file %s to configuration file %s: %s\n", tmpfile, filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silently try notifying a running tincd of changes.
|
2019-08-26 11:44:53 +00:00
|
|
|
if(connect_tincd(false)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
static bool try_bind(int port) {
|
2019-08-26 11:44:52 +00:00
|
|
|
struct addrinfo *ai = NULL, *aip;
|
2019-08-26 11:44:51 +00:00
|
|
|
struct addrinfo hint = {
|
|
|
|
.ai_flags = AI_PASSIVE,
|
|
|
|
.ai_family = AF_UNSPEC,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_protocol = IPPROTO_TCP,
|
|
|
|
};
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
bool success = true;
|
2019-08-26 11:44:51 +00:00
|
|
|
char portstr[16];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(portstr, sizeof(portstr), "%d", port);
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(getaddrinfo(NULL, portstr, &hint, &ai) || !ai) {
|
2019-08-26 11:44:51 +00:00
|
|
|
return false;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
for(aip = ai; aip; aip = aip->ai_next) {
|
2019-08-26 11:44:51 +00:00
|
|
|
int fd = socket(ai->ai_family, SOCK_STREAM, IPPROTO_TCP);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!fd) {
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
int result = bind(fd, ai->ai_addr, ai->ai_addrlen);
|
|
|
|
closesocket(fd);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(result) {
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
freeaddrinfo(ai);
|
|
|
|
return success;
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
int check_port(const char *name) {
|
|
|
|
if(try_bind(655)) {
|
2019-08-26 11:44:51 +00:00
|
|
|
return 655;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
fprintf(stderr, "Warning: could not bind to port 655. ");
|
|
|
|
|
|
|
|
for(int i = 0; i < 100; i++) {
|
|
|
|
int port = 0x1000 + (rand() & 0x7fff);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(try_bind(port)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "hosts" SLASH "%s", confbase, name);
|
2019-08-26 11:44:51 +00:00
|
|
|
FILE *f = fopen(filename, "a");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!f) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "Could not open %s: %s\n", filename, strerror(errno));
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Please change tinc's Port manually.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "Port = %d\n", port);
|
|
|
|
fclose(f);
|
|
|
|
fprintf(stderr, "Tinc will instead listen on port %d.\n", port);
|
|
|
|
return port;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Please change tinc's Port manually.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_init(int argc, char *argv[]) {
|
|
|
|
if(!access(tinc_conf, F_OK)) {
|
|
|
|
fprintf(stderr, "Configuration file %s already exists!\n", tinc_conf);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
} else if(argc < 2) {
|
2019-08-26 11:44:49 +00:00
|
|
|
if(tty) {
|
|
|
|
char buf[1024];
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Enter the Name you want your tinc node to have: ");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!fgets(buf, sizeof(buf), stdin)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Error while reading stdin: %s\n", strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
int len = rstrip(buf);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!len) {
|
|
|
|
fprintf(stderr, "No name given!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
name = strdup(buf);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "No Name given!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
name = strdup(argv[1]);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!*name) {
|
|
|
|
fprintf(stderr, "No Name given!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!check_id(name)) {
|
|
|
|
fprintf(stderr, "Invalid Name! Only a-z, A-Z, 0-9 and _ are allowed characters.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!confbase_given && mkdir(confdir, 0755) && errno != EEXIST) {
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(stderr, "Could not create directory %s: %s\n", confdir, strerror(errno));
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(mkdir(confbase, 0777) && errno != EEXIST) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(mkdir(hosts_dir, 0777) && errno != EEXIST) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fprintf(stderr, "Could not create directory %s: %s\n", hosts_dir, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *f = fopen(tinc_conf, "w");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!f) {
|
|
|
|
fprintf(stderr, "Could not create file %s: %s\n", tinc_conf, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "Name = %s\n", name);
|
|
|
|
fclose(f);
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!rsa_keygen(2048, false)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!ed25519_keygen(false)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
check_port(name);
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#ifndef HAVE_MINGW
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "tinc-up", confbase);
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(access(filename, F_OK)) {
|
2019-08-26 11:44:51 +00:00
|
|
|
FILE *f = fopenmask(filename, "w", 0777);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!f) {
|
|
|
|
fprintf(stderr, "Could not create file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
fprintf(f, "#!/bin/sh\n\necho 'Unconfigured tinc-up script, please edit '$0'!'\n\n#ifconfig $INTERFACE <your vpn IP address> netmask <netmask of whole VPN>\n");
|
2019-08-26 11:44:49 +00:00
|
|
|
fclose(f);
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_generate_keys(int argc, char *argv[]) {
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifdef DISABLE_LEGACY
|
2022-04-22 18:24:15 +00:00
|
|
|
(void)argv;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
#else
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 2) {
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
2019-08-26 11:44:50 +00:00
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!name) {
|
2019-08-26 11:44:50 +00:00
|
|
|
name = get_my_name(false);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!ed25519_keygen(true)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2019-08-26 11:44:49 +00:00
|
|
|
static int cmd_generate_rsa_keys(int argc, char *argv[]) {
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!name) {
|
2019-08-26 11:44:50 +00:00
|
|
|
name = get_my_name(false);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return !rsa_keygen(argc > 1 ? atoi(argv[1]) : 2048, true);
|
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
static int cmd_generate_ed25519_keys(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!name) {
|
2019-08-26 11:44:50 +00:00
|
|
|
name = get_my_name(false);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
return !ed25519_keygen(true);
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_help(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
usage(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_version(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
version();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_info(int argc, char *argv[]) {
|
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!connect_tincd(true)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return info(fd, argv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *conffiles[] = {
|
|
|
|
"tinc.conf",
|
|
|
|
"tinc-up",
|
|
|
|
"tinc-down",
|
|
|
|
"subnet-up",
|
|
|
|
"subnet-down",
|
|
|
|
"host-up",
|
|
|
|
"host-down",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_edit(int argc, char *argv[]) {
|
|
|
|
if(argc != 2) {
|
|
|
|
fprintf(stderr, "Invalid number of arguments.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX] = "";
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(strncmp(argv[1], "hosts" SLASH, 6)) {
|
|
|
|
for(int i = 0; conffiles[i]; i++) {
|
|
|
|
if(!strcmp(argv[1], conffiles[i])) {
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "%s", confbase, argv[1]);
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argv[1] += 6;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!*filename) {
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, argv[1]);
|
2019-08-26 11:44:49 +00:00
|
|
|
char *dash = strchr(argv[1], '-');
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(dash) {
|
|
|
|
*dash++ = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if((strcmp(dash, "up") && strcmp(dash, "down")) || !check_id(argv[1])) {
|
|
|
|
fprintf(stderr, "Invalid configuration filename.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *command;
|
|
|
|
#ifndef HAVE_MINGW
|
2019-08-26 11:44:53 +00:00
|
|
|
const char *editor = getenv("VISUAL");
|
2022-04-22 18:24:15 +00:00
|
|
|
|
|
|
|
if(!editor) {
|
2019-08-26 11:44:53 +00:00
|
|
|
editor = getenv("EDITOR");
|
2022-04-22 18:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!editor) {
|
2019-08-26 11:44:53 +00:00
|
|
|
editor = "vi";
|
2022-04-22 18:24:15 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
xasprintf(&command, "\"%s\" \"%s\"", editor, filename);
|
2019-08-26 11:44:49 +00:00
|
|
|
#else
|
|
|
|
xasprintf(&command, "edit \"%s\"", filename);
|
|
|
|
#endif
|
|
|
|
int result = system(command);
|
2019-08-26 11:44:52 +00:00
|
|
|
free(command);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(result) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return result;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
// Silently try notifying a running tincd of changes.
|
2019-08-26 11:44:53 +00:00
|
|
|
if(connect_tincd(false)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_RELOAD);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int export(const char *name, FILE *out) {
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, name);
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *in = fopen(filename, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!in) {
|
|
|
|
fprintf(stderr, "Could not open configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(out, "Name = %s\n", name);
|
|
|
|
char buf[4096];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
while(fgets(buf, sizeof(buf), in)) {
|
|
|
|
if(strcspn(buf, "\t =") != 4 || strncasecmp(buf, "Name", 4)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fputs(buf, out);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ferror(in)) {
|
|
|
|
fprintf(stderr, "Error while reading configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
fclose(in);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(in);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_export(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
char *name = get_my_name(true);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!name) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
int result = export(name, stdout);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!tty) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fclose(stdout);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
|
|
|
|
free(name);
|
|
|
|
return result;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_export_all(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
DIR *dir = opendir(hosts_dir);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!dir) {
|
|
|
|
fprintf(stderr, "Could not open host configuration directory %s: %s\n", hosts_dir, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool first = true;
|
|
|
|
int result = 0;
|
|
|
|
struct dirent *ent;
|
|
|
|
|
|
|
|
while((ent = readdir(dir))) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!check_id(ent->d_name)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(first) {
|
2019-08-26 11:44:49 +00:00
|
|
|
first = false;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("#---------------------------------------------------------------#\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
result |= export(ent->d_name, stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!tty) {
|
2019-08-26 11:44:50 +00:00
|
|
|
fclose(stdout);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_import(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
FILE *in = stdin;
|
|
|
|
FILE *out = NULL;
|
|
|
|
|
|
|
|
char buf[4096];
|
|
|
|
char name[4096];
|
2019-08-26 11:44:52 +00:00
|
|
|
char filename[PATH_MAX] = "";
|
2019-08-26 11:44:49 +00:00
|
|
|
int count = 0;
|
|
|
|
bool firstline = true;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(fgets(buf, sizeof(buf), in)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
if(sscanf(buf, "Name = %4095s", name) == 1) {
|
2019-08-26 11:44:50 +00:00
|
|
|
firstline = false;
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!check_id(name)) {
|
|
|
|
fprintf(stderr, "Invalid Name in input!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(out) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fclose(out);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if((size_t)snprintf(filename, sizeof(filename), "%s" SLASH "%s", hosts_dir, name) >= sizeof(filename)) {
|
|
|
|
fprintf(stderr, "Filename too long: %s" SLASH "%s\n", hosts_dir, name);
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(!force && !access(filename, F_OK)) {
|
|
|
|
fprintf(stderr, "Host configuration file %s already exists, skipping.\n", filename);
|
|
|
|
out = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
out = fopen(filename, "w");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!out) {
|
|
|
|
fprintf(stderr, "Error creating configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
count++;
|
|
|
|
continue;
|
|
|
|
} else if(firstline) {
|
|
|
|
fprintf(stderr, "Junk at the beginning of the input, ignoring.\n");
|
|
|
|
firstline = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strcmp(buf, "#---------------------------------------------------------------#\n")) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(out) {
|
|
|
|
if(fputs(buf, out) < 0) {
|
|
|
|
fprintf(stderr, "Error writing to host configuration file %s: %s\n", filename, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(out) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fclose(out);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(count) {
|
|
|
|
fprintf(stderr, "Imported %d host configuration files.\n", count);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "No host configuration files imported.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
static int cmd_exchange(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
return cmd_export(argc, argv) ? 1 : cmd_import(argc, argv);
|
2019-08-26 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_exchange_all(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
return cmd_export_all(argc, argv) ? 1 : cmd_import(argc, argv);
|
2019-08-26 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
static int switch_network(char *name) {
|
2019-08-26 11:44:52 +00:00
|
|
|
if(strcmp(name, ".")) {
|
|
|
|
if(!check_netname(name, false)) {
|
|
|
|
fprintf(stderr, "Invalid character in netname!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!check_netname(name, true)) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fprintf(stderr, "Warning: unsafe character in netname!\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(fd >= 0) {
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
free_names();
|
|
|
|
netname = strcmp(name, ".") ? xstrdup(name) : NULL;
|
|
|
|
make_names(false);
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
free(tinc_conf);
|
|
|
|
free(hosts_dir);
|
|
|
|
free(prompt);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
|
|
|
|
xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
|
2019-08-26 11:44:51 +00:00
|
|
|
xasprintf(&prompt, "%s> ", identname);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_network(int argc, char *argv[]) {
|
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(argc == 2) {
|
2019-08-26 11:44:51 +00:00
|
|
|
return switch_network(argv[1]);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
DIR *dir = opendir(confdir);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
if(!dir) {
|
|
|
|
fprintf(stderr, "Could not read directory %s: %s\n", confdir, strerror(errno));
|
2019-08-26 11:44:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
struct dirent *ent;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
while((ent = readdir(dir))) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(*ent->d_name == '.') {
|
2019-08-26 11:44:51 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
if(!strcmp(ent->d_name, "tinc.conf")) {
|
|
|
|
printf(".\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s/%s/tinc.conf", confdir, ent->d_name);
|
|
|
|
|
|
|
|
if(!access(fname, R_OK)) {
|
2019-08-26 11:44:51 +00:00
|
|
|
printf("%s\n", ent->d_name);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
static int cmd_fsck(int argc, char *argv[]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)argv;
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(argc > 1) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fsck(orig_argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *readfile(FILE *in, size_t *len) {
|
|
|
|
size_t count = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
size_t bufsize = 4096;
|
|
|
|
char *buf = xmalloc(bufsize);
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
while(!feof(in)) {
|
2019-08-26 11:44:53 +00:00
|
|
|
size_t read = fread(buf + count, 1, bufsize - count, in);
|
|
|
|
|
|
|
|
if(!read) {
|
2019-08-26 11:44:52 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
count += read;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(count >= bufsize) {
|
|
|
|
bufsize *= 2;
|
|
|
|
buf = xrealloc(buf, bufsize);
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(len) {
|
2019-08-26 11:44:52 +00:00
|
|
|
*len = count;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_sign(int argc, char *argv[]) {
|
|
|
|
if(argc > 2) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!name) {
|
|
|
|
name = get_my_name(true);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!name) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "ed25519_key.priv", confbase);
|
2019-08-26 11:44:52 +00:00
|
|
|
FILE *fp = fopen(fname, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!fp) {
|
|
|
|
fprintf(stderr, "Could not open %s: %s\n", fname, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ecdsa_t *key = ecdsa_read_pem_private_key(fp);
|
|
|
|
|
|
|
|
if(!key) {
|
|
|
|
fprintf(stderr, "Could not read private key from %s\n", fname);
|
|
|
|
fclose(fp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
FILE *in;
|
|
|
|
|
|
|
|
if(argc == 2) {
|
|
|
|
in = fopen(argv[1], "rb");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!in) {
|
|
|
|
fprintf(stderr, "Could not open %s: %s\n", argv[1], strerror(errno));
|
|
|
|
ecdsa_free(key);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
in = stdin;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t len;
|
|
|
|
char *data = readfile(in, &len);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(in != stdin) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(in);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!data) {
|
|
|
|
fprintf(stderr, "Error reading %s: %s\n", argv[1], strerror(errno));
|
|
|
|
ecdsa_free(key);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure we sign our name and current time as well
|
|
|
|
long t = time(NULL);
|
|
|
|
char *trailer;
|
|
|
|
xasprintf(&trailer, " %s %ld", name, t);
|
|
|
|
int trailer_len = strlen(trailer);
|
|
|
|
|
|
|
|
data = xrealloc(data, len + trailer_len);
|
|
|
|
memcpy(data + len, trailer, trailer_len);
|
|
|
|
free(trailer);
|
|
|
|
|
|
|
|
char sig[87];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!ecdsa_sign(key, data, len + trailer_len, sig)) {
|
|
|
|
fprintf(stderr, "Error generating signature\n");
|
|
|
|
free(data);
|
|
|
|
ecdsa_free(key);
|
|
|
|
return 1;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
b64encode(sig, sig, 64);
|
|
|
|
ecdsa_free(key);
|
|
|
|
|
|
|
|
fprintf(stdout, "Signature = %s %ld %s\n", name, t, sig);
|
|
|
|
fwrite(data, len, 1, stdout);
|
|
|
|
|
|
|
|
free(data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_verify(int argc, char *argv[]) {
|
|
|
|
if(argc < 2) {
|
|
|
|
fprintf(stderr, "Not enough arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(argc > 3) {
|
|
|
|
fprintf(stderr, "Too many arguments!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *node = argv[1];
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!strcmp(node, ".")) {
|
|
|
|
if(!name) {
|
|
|
|
name = get_my_name(true);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!name) {
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
node = name;
|
|
|
|
} else if(!strcmp(node, "*")) {
|
|
|
|
node = NULL;
|
|
|
|
} else {
|
|
|
|
if(!check_id(node)) {
|
|
|
|
fprintf(stderr, "Invalid node name\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *in;
|
|
|
|
|
|
|
|
if(argc == 3) {
|
|
|
|
in = fopen(argv[2], "rb");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!in) {
|
|
|
|
fprintf(stderr, "Could not open %s: %s\n", argv[2], strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
in = stdin;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t len;
|
|
|
|
char *data = readfile(in, &len);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(in != stdin) {
|
2019-08-26 11:44:52 +00:00
|
|
|
fclose(in);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!data) {
|
|
|
|
fprintf(stderr, "Error reading %s: %s\n", argv[1], strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *newline = memchr(data, '\n', len);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!newline || (newline - data > MAX_STRING_SIZE - 1)) {
|
|
|
|
fprintf(stderr, "Invalid input\n");
|
2019-08-26 11:44:52 +00:00
|
|
|
free(data);
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*newline++ = '\0';
|
|
|
|
size_t skip = newline - data;
|
|
|
|
|
|
|
|
char signer[MAX_STRING_SIZE] = "";
|
|
|
|
char sig[MAX_STRING_SIZE] = "";
|
|
|
|
long t = 0;
|
|
|
|
|
|
|
|
if(sscanf(data, "Signature = %s %ld %s", signer, &t, sig) != 3 || strlen(sig) != 86 || !t || !check_id(signer)) {
|
|
|
|
fprintf(stderr, "Invalid input\n");
|
2019-08-26 11:44:52 +00:00
|
|
|
free(data);
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(node && strcmp(node, signer)) {
|
|
|
|
fprintf(stderr, "Signature is not made by %s\n", node);
|
2019-08-26 11:44:52 +00:00
|
|
|
free(data);
|
2019-08-26 11:44:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!node) {
|
2019-08-26 11:44:52 +00:00
|
|
|
node = signer;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:52 +00:00
|
|
|
|
|
|
|
char *trailer;
|
|
|
|
xasprintf(&trailer, " %s %ld", signer, t);
|
|
|
|
int trailer_len = strlen(trailer);
|
|
|
|
|
|
|
|
data = xrealloc(data, len + trailer_len);
|
|
|
|
memcpy(data + len, trailer, trailer_len);
|
|
|
|
free(trailer);
|
|
|
|
|
|
|
|
newline = data + skip;
|
|
|
|
|
|
|
|
char fname[PATH_MAX];
|
2019-08-26 11:44:53 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s" SLASH "hosts" SLASH "%s", confbase, node);
|
2019-08-26 11:44:52 +00:00
|
|
|
FILE *fp = fopen(fname, "r");
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!fp) {
|
|
|
|
fprintf(stderr, "Could not open %s: %s\n", fname, strerror(errno));
|
|
|
|
free(data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ecdsa_t *key = get_pubkey(fp);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!key) {
|
|
|
|
rewind(fp);
|
|
|
|
key = ecdsa_read_pem_public_key(fp);
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!key) {
|
|
|
|
fprintf(stderr, "Could not read public key from %s\n", fname);
|
|
|
|
fclose(fp);
|
|
|
|
free(data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
if(b64decode(sig, sig, 86) != 64 || !ecdsa_verify(key, newline, len + trailer_len - (newline - data), sig)) {
|
|
|
|
fprintf(stderr, "Invalid signature\n");
|
|
|
|
free(data);
|
|
|
|
ecdsa_free(key);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ecdsa_free(key);
|
|
|
|
|
|
|
|
fwrite(newline, len - (newline - data), 1, stdout);
|
|
|
|
|
|
|
|
free(data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
static const struct {
|
|
|
|
const char *command;
|
|
|
|
int (*function)(int argc, char *argv[]);
|
2019-08-26 11:44:50 +00:00
|
|
|
bool hidden;
|
2019-08-26 11:44:49 +00:00
|
|
|
} commands[] = {
|
2019-08-26 11:44:53 +00:00
|
|
|
{"start", cmd_start, false},
|
|
|
|
{"stop", cmd_stop, false},
|
|
|
|
{"restart", cmd_restart, false},
|
|
|
|
{"reload", cmd_reload, false},
|
|
|
|
{"dump", cmd_dump, false},
|
|
|
|
{"list", cmd_dump, false},
|
|
|
|
{"purge", cmd_purge, false},
|
|
|
|
{"debug", cmd_debug, false},
|
|
|
|
{"retry", cmd_retry, false},
|
|
|
|
{"connect", cmd_connect, false},
|
|
|
|
{"disconnect", cmd_disconnect, false},
|
|
|
|
{"top", cmd_top, false},
|
|
|
|
{"pcap", cmd_pcap, false},
|
|
|
|
{"log", cmd_log, false},
|
|
|
|
{"pid", cmd_pid, false},
|
2019-08-26 11:44:50 +00:00
|
|
|
{"config", cmd_config, true},
|
2019-08-26 11:44:53 +00:00
|
|
|
{"add", cmd_config, false},
|
|
|
|
{"del", cmd_config, false},
|
|
|
|
{"get", cmd_config, false},
|
|
|
|
{"set", cmd_config, false},
|
|
|
|
{"init", cmd_init, false},
|
|
|
|
{"generate-keys", cmd_generate_keys, false},
|
2019-08-26 11:44:52 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2019-08-26 11:44:53 +00:00
|
|
|
{"generate-rsa-keys", cmd_generate_rsa_keys, false},
|
2019-08-26 11:44:52 +00:00
|
|
|
#endif
|
2019-08-26 11:44:53 +00:00
|
|
|
{"generate-ed25519-keys", cmd_generate_ed25519_keys, false},
|
|
|
|
{"help", cmd_help, false},
|
|
|
|
{"version", cmd_version, false},
|
|
|
|
{"info", cmd_info, false},
|
|
|
|
{"edit", cmd_edit, false},
|
|
|
|
{"export", cmd_export, false},
|
|
|
|
{"export-all", cmd_export_all, false},
|
|
|
|
{"import", cmd_import, false},
|
|
|
|
{"exchange", cmd_exchange, false},
|
|
|
|
{"exchange-all", cmd_exchange_all, false},
|
|
|
|
{"invite", cmd_invite, false},
|
|
|
|
{"join", cmd_join, false},
|
|
|
|
{"network", cmd_network, false},
|
|
|
|
{"fsck", cmd_fsck, false},
|
|
|
|
{"sign", cmd_sign, false},
|
|
|
|
{"verify", cmd_verify, false},
|
|
|
|
{NULL, NULL, false},
|
2019-08-26 11:44:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
static char *complete_command(const char *text, int state) {
|
|
|
|
static int i;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!state) {
|
2019-08-26 11:44:49 +00:00
|
|
|
i = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
while(commands[i].command) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!commands[i].hidden && !strncasecmp(commands[i].command, text, strlen(text))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return xstrdup(commands[i].command);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *complete_dump(const char *text, int state) {
|
2019-08-26 11:44:50 +00:00
|
|
|
const char *matches[] = {"reachable", "nodes", "edges", "subnets", "connections", "graph", NULL};
|
2019-08-26 11:44:49 +00:00
|
|
|
static int i;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!state) {
|
2019-08-26 11:44:49 +00:00
|
|
|
i = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
while(matches[i]) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strncasecmp(matches[i], text, strlen(text))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return xstrdup(matches[i]);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *complete_config(const char *text, int state) {
|
|
|
|
static int i;
|
2019-08-26 11:44:50 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!state) {
|
2019-08-26 11:44:49 +00:00
|
|
|
i = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
while(variables[i].name) {
|
|
|
|
char *dot = strchr(text, '.');
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:50 +00:00
|
|
|
if(dot) {
|
|
|
|
if((variables[i].type & VAR_HOST) && !strncasecmp(variables[i].name, dot + 1, strlen(dot + 1))) {
|
|
|
|
char *match;
|
2019-08-26 11:44:51 +00:00
|
|
|
xasprintf(&match, "%.*s.%s", (int)(dot - text), text, variables[i].name);
|
2019-08-26 11:44:50 +00:00
|
|
|
return match;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:50 +00:00
|
|
|
} else {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strncasecmp(variables[i].name, text, strlen(text))) {
|
2019-08-26 11:44:50 +00:00
|
|
|
return xstrdup(variables[i].name);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *complete_info(const char *text, int state) {
|
|
|
|
static int i;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(!state) {
|
|
|
|
i = 0;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(!connect_tincd(false)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return NULL;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
// Check the list of nodes
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_NODES);
|
|
|
|
sendline(fd, "%d %d", CONTROL, REQ_DUMP_SUBNETS);
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
while(recvline(fd, line, sizeof(line))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
char item[4096];
|
2019-08-26 11:44:52 +00:00
|
|
|
int n = sscanf(line, "%d %d %4095s", &code, &req, item);
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(n == 2) {
|
|
|
|
i++;
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(i >= 2) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
} else {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(n != 3) {
|
|
|
|
fprintf(stderr, "Unable to parse dump from tincd, n = %d, i = %d.\n", n, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strncmp(item, text, strlen(text))) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return xstrdup(strip_weight(item));
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *complete_nothing(const char *text, int state) {
|
2019-08-26 11:44:53 +00:00
|
|
|
(void)text;
|
|
|
|
(void)state;
|
2019-08-26 11:44:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
static char **completion(const char *text, int start, int end) {
|
|
|
|
(void)end;
|
2019-08-26 11:44:49 +00:00
|
|
|
char **matches = NULL;
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!start) {
|
2019-08-26 11:44:49 +00:00
|
|
|
matches = rl_completion_matches(text, complete_command);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "dump ", 5)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
matches = rl_completion_matches(text, complete_dump);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "add ", 4)) {
|
2019-08-26 11:44:50 +00:00
|
|
|
matches = rl_completion_matches(text, complete_config);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "del ", 4)) {
|
2019-08-26 11:44:50 +00:00
|
|
|
matches = rl_completion_matches(text, complete_config);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "get ", 4)) {
|
2019-08-26 11:44:50 +00:00
|
|
|
matches = rl_completion_matches(text, complete_config);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "set ", 4)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
matches = rl_completion_matches(text, complete_config);
|
2019-08-26 11:44:53 +00:00
|
|
|
} else if(!strncasecmp(rl_line_buffer, "info ", 5)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
matches = rl_completion_matches(text, complete_info);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int cmd_shell(int argc, char *argv[]) {
|
|
|
|
xasprintf(&prompt, "%s> ", identname);
|
|
|
|
int result = 0;
|
|
|
|
char buf[4096];
|
|
|
|
char *line = NULL;
|
|
|
|
int maxargs = argc + 16;
|
2019-08-26 11:44:53 +00:00
|
|
|
char **nargv = xmalloc(maxargs * sizeof(*nargv));
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
for(int i = 0; i < argc; i++) {
|
2019-08-26 11:44:49 +00:00
|
|
|
nargv[i] = argv[i];
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
rl_readline_name = "tinc";
|
|
|
|
rl_completion_entry_function = complete_nothing;
|
|
|
|
rl_attempted_completion_function = completion;
|
|
|
|
rl_filename_completion_desired = 0;
|
|
|
|
char *copy = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while(true) {
|
|
|
|
#ifdef HAVE_READLINE
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
if(tty) {
|
|
|
|
free(copy);
|
|
|
|
free(line);
|
|
|
|
rl_basic_word_break_characters = "\t\n ";
|
|
|
|
line = readline(prompt);
|
2019-08-26 11:44:53 +00:00
|
|
|
copy = line ? xstrdup(line) : NULL;
|
2019-08-26 11:44:49 +00:00
|
|
|
} else {
|
2019-08-26 11:44:53 +00:00
|
|
|
line = fgets(buf, sizeof(buf), stdin);
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#else
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(tty) {
|
2019-08-26 11:44:49 +00:00
|
|
|
fputs(prompt, stdout);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
line = fgets(buf, sizeof(buf), stdin);
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!line) {
|
2019-08-26 11:44:49 +00:00
|
|
|
break;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
/* Ignore comments */
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(*line == '#') {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
/* Split */
|
|
|
|
|
|
|
|
int nargc = argc;
|
|
|
|
char *p = line + strspn(line, " \t\n");
|
|
|
|
char *next = strtok(p, " \t\n");
|
|
|
|
|
|
|
|
while(p && *p) {
|
|
|
|
if(nargc >= maxargs) {
|
|
|
|
maxargs *= 2;
|
2019-08-26 11:44:53 +00:00
|
|
|
nargv = xrealloc(nargv, maxargs * sizeof(*nargv));
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nargv[nargc++] = p;
|
|
|
|
p = next;
|
|
|
|
next = strtok(NULL, " \t\n");
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(nargc == argc) {
|
2019-08-26 11:44:49 +00:00
|
|
|
continue;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
if(!strcasecmp(nargv[argc], "exit") || !strcasecmp(nargv[argc], "quit")) {
|
2019-08-26 11:44:53 +00:00
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
free(copy);
|
|
|
|
#endif
|
2019-08-26 11:44:52 +00:00
|
|
|
free(nargv);
|
2019-08-26 11:44:49 +00:00
|
|
|
return result;
|
2019-08-26 11:44:52 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
for(int i = 0; commands[i].command; i++) {
|
|
|
|
if(!strcasecmp(nargv[argc], commands[i].command)) {
|
|
|
|
result |= commands[i].function(nargc - argc - 1, nargv + argc + 1);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
2019-08-26 11:44:53 +00:00
|
|
|
|
|
|
|
if(tty && found) {
|
2019-08-26 11:44:49 +00:00
|
|
|
add_history(copy);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!found) {
|
|
|
|
fprintf(stderr, "Unknown command `%s'.\n", nargv[argc]);
|
|
|
|
result |= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
free(copy);
|
|
|
|
#endif
|
2019-08-26 11:44:49 +00:00
|
|
|
free(nargv);
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(tty) {
|
2019-08-26 11:44:49 +00:00
|
|
|
printf("\n");
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:49 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
program_name = argv[0];
|
|
|
|
orig_argv = argv;
|
|
|
|
orig_argc = argc;
|
2019-08-26 11:44:51 +00:00
|
|
|
tty = isatty(0) && isatty(1);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!parse_options(argc, argv)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return 1;
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
2019-08-26 11:44:52 +00:00
|
|
|
make_names(false);
|
2019-08-26 11:44:50 +00:00
|
|
|
xasprintf(&tinc_conf, "%s" SLASH "tinc.conf", confbase);
|
|
|
|
xasprintf(&hosts_dir, "%s" SLASH "hosts", confbase);
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
if(show_version) {
|
|
|
|
version();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(show_help) {
|
|
|
|
usage(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#ifdef HAVE_MINGW
|
|
|
|
static struct WSAData wsa_state;
|
|
|
|
|
|
|
|
if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
|
2019-08-26 11:44:53 +00:00
|
|
|
fprintf(stderr, "System call `%s' failed: %s\n", "WSAStartup", winerror(GetLastError()));
|
2019-08-26 11:44:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2019-08-26 11:44:53 +00:00
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-26 11:44:51 +00:00
|
|
|
srand(time(NULL));
|
|
|
|
crypto_init();
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
if(optind >= argc) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return cmd_shell(argc, argv);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
|
|
|
|
for(int i = 0; commands[i].command; i++) {
|
2019-08-26 11:44:53 +00:00
|
|
|
if(!strcasecmp(argv[optind], commands[i].command)) {
|
2019-08-26 11:44:49 +00:00
|
|
|
return commands[i].function(argc - optind, argv + optind);
|
2019-08-26 11:44:53 +00:00
|
|
|
}
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Unknown command `%s'.\n", argv[optind]);
|
|
|
|
usage(true);
|
|
|
|
return 1;
|
2019-08-26 11:44:49 +00:00
|
|
|
}
|