Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd7ddf7814 | ||
|
|
7e7b52f9fd | ||
|
|
97784c43ac | ||
|
|
4b4c080cc4 | ||
|
|
43e1dfe86f | ||
|
|
ed1cf51af2 | ||
|
|
264f26286d | ||
|
|
7c17e16fea | ||
|
|
38d31c0637 | ||
|
|
bccc9945f4 | ||
|
|
9c9f679497 | ||
|
|
9177778d0f | ||
|
|
6853b59dc3 | ||
|
|
d451bc75b0 | ||
|
|
1f82b15373 | ||
|
|
56b5a41633 | ||
|
|
004380827f | ||
|
|
a7f57de42a | ||
|
|
2f3f9e7e86 | ||
|
|
0528adcfe2 | ||
|
|
67ea65b1a8 | ||
|
|
ed82531fc0 | ||
|
|
e077554304 | ||
|
|
b9f31b2445 | ||
|
|
76036a6535 | ||
|
|
cce55fac21 | ||
|
|
a72075036a | ||
|
|
84184c644a | ||
|
|
7f238c2599 |
24
.github/workflows/build.yml
vendored
Normal file
24
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Build
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build glorytun
|
||||
run: |
|
||||
git submodule update --init --recursive
|
||||
./sodium.sh
|
||||
make prefix=. install
|
||||
|
||||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: bin
|
||||
path: ./bin
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,6 +10,7 @@ configure
|
||||
build-aux
|
||||
.deps
|
||||
.dirstamp
|
||||
.static
|
||||
glorytun
|
||||
build*
|
||||
VERSION
|
||||
|
||||
5
Makefile
5
Makefile
@@ -11,7 +11,10 @@ CFLAGS ?= -std=c11 -O2 -Wall -fstack-protector-strong
|
||||
FLAGS := $(CFLAGS) $(LDFLAGS) $(CPPFLAGS)
|
||||
FLAGS += -DPACKAGE_NAME=\"$(NAME)\" -DPACKAGE_VERSION=\"$(VERSION)\"
|
||||
|
||||
SRC := argz/argz.c mud/mud.c $(wildcard src/*.c)
|
||||
FLAGS += -I.static/$(CROSS)/libsodium-stable/src/libsodium/include
|
||||
FLAGS += -L.static/$(CROSS)/libsodium-stable/src/libsodium/.libs
|
||||
|
||||
SRC := argz/argz.c mud/mud.c mud/aegis256/aegis256.c $(wildcard src/*.c)
|
||||
|
||||
.PHONY: $(NAME)
|
||||
$(NAME):
|
||||
|
||||
@@ -9,6 +9,8 @@ glorytun_SOURCES = \
|
||||
argz/argz.h \
|
||||
mud/mud.c \
|
||||
mud/mud.h \
|
||||
mud/aegis256/aegis256.c \
|
||||
mud/aegis256/aegis256.h \
|
||||
src/bench.c \
|
||||
src/bind.c \
|
||||
src/common.c \
|
||||
|
||||
@@ -20,8 +20,8 @@ The key features of Glorytun come directly from mud:
|
||||
|
||||
The use of UDP and [libsodium](https://github.com/jedisct1/libsodium) allows you to secure
|
||||
your communications without impacting performance.
|
||||
Glorytun uses AES only if AES-NI is available otherwise ChaCha20 is used.
|
||||
If you are not cpu bounded, you can force the use of ChaCha20 for higher security.
|
||||
Glorytun uses AEGIS-256 only if AES-NI is available otherwise ChaCha20Poly1305 is used.
|
||||
If you are not cpu bounded, you can force the use of ChaCha20Poly1305 for higher security.
|
||||
All messages are encrypted, authenticated and marked with a timestamp.
|
||||
Perfect forward secrecy is also implemented with ECDH over Curve25519.
|
||||
|
||||
@@ -75,7 +75,7 @@ Just run `glorytun` with no arguments to view the list of available commands:
|
||||
$ glorytun
|
||||
available commands:
|
||||
|
||||
show show all running tunnels
|
||||
show show tunnel info
|
||||
bench start a crypto bench
|
||||
bind start a new tunnel
|
||||
set change tunnel properties
|
||||
|
||||
2
argz
2
argz
Submodule argz updated: 31f3c44d9b...47ad9daf43
@@ -23,6 +23,7 @@ executable('glorytun', install: true,
|
||||
sources: [
|
||||
'argz/argz.c',
|
||||
'mud/mud.c',
|
||||
'mud/aegis256/aegis256.c',
|
||||
'src/bench.c',
|
||||
'src/bind.c',
|
||||
'src/common.c',
|
||||
|
||||
2
mud
2
mud
Submodule mud updated: 06e165e664...4d14689ff1
29
sodium.sh
Executable file
29
sodium.sh
Executable file
@@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
mkdir -p .static
|
||||
cd .static || exit 1
|
||||
|
||||
file=LATEST.tar.gz
|
||||
url=https://download.libsodium.org/libsodium/releases
|
||||
dir="$PWD"
|
||||
|
||||
[ -f "$file" ] || wget -q "$url/$file" -O "$file"
|
||||
[ -f "$file" ] || curl -SsfLO "$url/$file"
|
||||
[ -f "$file" ] || {
|
||||
echo "Couldn't download $url/$file"
|
||||
exit 1
|
||||
}
|
||||
|
||||
if [ "$1" ]; then
|
||||
mkdir -p "$1"
|
||||
cd "$1" || exit 1
|
||||
fi
|
||||
|
||||
rm -rf libsodium-stable
|
||||
tar zxf "$dir/$file"
|
||||
cd libsodium-stable || exit 1
|
||||
|
||||
NPROC=$(sysctl -n hw.ncpu || nproc) 2>/dev/null
|
||||
|
||||
./configure ${1+--host=$1} --enable-minimal --disable-dependency-tracking --enable-static --disable-shared
|
||||
make "-j$((NPROC+1))"
|
||||
29
src/bench.c
29
src/bench.c
@@ -13,9 +13,14 @@
|
||||
#endif
|
||||
|
||||
#include "../argz/argz.h"
|
||||
#include "../mud/aegis256/aegis256.h"
|
||||
|
||||
#define STR_S(X) (((X) > 1) ? "s" : "")
|
||||
|
||||
#define NPUBBYTES 32
|
||||
#define KEYBYTES 32
|
||||
#define ABYTES 16
|
||||
|
||||
static unsigned long long
|
||||
gt_now(void)
|
||||
{
|
||||
@@ -65,29 +70,33 @@ gt_bench(int argc, char **argv)
|
||||
duration /= 1000;
|
||||
|
||||
int term = isatty(1);
|
||||
int aes = argz_is_set(bench_argz, "aes");
|
||||
int chacha = argz_is_set(bench_argz, "chacha");
|
||||
|
||||
if (!chacha && !crypto_aead_aes256gcm_is_available()) {
|
||||
if (!aegis256_is_available()) {
|
||||
if (aes) {
|
||||
gt_log("aes is not available on your platform\n");
|
||||
return 1;
|
||||
}
|
||||
chacha = 1;
|
||||
}
|
||||
|
||||
unsigned char *buf = calloc(1, bufsize + crypto_aead_aes256gcm_ABYTES);
|
||||
unsigned char *buf = calloc(1, bufsize + ABYTES);
|
||||
|
||||
if (!buf) {
|
||||
perror("calloc");
|
||||
return 1;
|
||||
}
|
||||
|
||||
unsigned char npub[crypto_aead_aes256gcm_NPUBBYTES];
|
||||
unsigned char key[crypto_aead_aes256gcm_KEYBYTES];
|
||||
unsigned char npub[NPUBBYTES];
|
||||
unsigned char key[KEYBYTES];
|
||||
|
||||
randombytes_buf(npub, sizeof(npub));
|
||||
randombytes_buf(key, sizeof(key));
|
||||
|
||||
if (term) {
|
||||
printf("\n");
|
||||
printf(" %-10s %s\n", "bench", chacha ? "chacha20poly1305" : "aes256gcm");
|
||||
printf(" %-10s %s\n", "bench", chacha ? "chacha20poly1305" : "aegis256");
|
||||
printf(" %-10s %s\n", "libsodium", sodium_version_string());
|
||||
printf("\n");
|
||||
printf(" %-10s 2^(-%lu)\n", "precision", precision);
|
||||
@@ -108,11 +117,6 @@ gt_bench(int argc, char **argv)
|
||||
double mbps_dlt = INFINITY;
|
||||
|
||||
while (!gt_quit && mbps_dlt > ldexp(mbps, -(int)precision)) {
|
||||
crypto_aead_aes256gcm_state ctx;
|
||||
|
||||
if (!chacha)
|
||||
crypto_aead_aes256gcm_beforenm(&ctx, key);
|
||||
|
||||
unsigned long long now = gt_now();
|
||||
double mbps_old = mbps;
|
||||
size_t bytes = 0;
|
||||
@@ -125,9 +129,8 @@ gt_bench(int argc, char **argv)
|
||||
crypto_aead_chacha20poly1305_encrypt(
|
||||
buf, NULL, buf, 1ULL << i, NULL, 0, NULL, npub, key);
|
||||
} else {
|
||||
crypto_aead_aes256gcm_encrypt_afternm(
|
||||
buf, NULL, buf, 1ULL << i, NULL, 0, NULL, npub,
|
||||
(const crypto_aead_aes256gcm_state *)&ctx);
|
||||
aegis256_encrypt(
|
||||
buf, NULL, buf, 1ULL << i, NULL, 0, npub, key);
|
||||
}
|
||||
bytes += 1ULL << i;
|
||||
}
|
||||
|
||||
113
src/bind.c
113
src/bind.c
@@ -193,8 +193,8 @@ gt_bind(int argc, char **argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (fd_set_nonblock(tun_fd) ||
|
||||
fd_set_nonblock(mud_fd) ||
|
||||
if (//fd_set_nonblock(tun_fd) ||
|
||||
//fd_set_nonblock(mud_fd) ||
|
||||
fd_set_nonblock(ctl_fd)) {
|
||||
gt_log("couldn't setup non-blocking fds\n");
|
||||
return 1;
|
||||
@@ -204,31 +204,60 @@ gt_bind(int argc, char **argv)
|
||||
|
||||
gt_log("running on device %s as pid %li\n", tun_name, pid);
|
||||
|
||||
fd_set rfds;
|
||||
fd_set rfds, wfds;
|
||||
FD_ZERO(&rfds);
|
||||
FD_ZERO(&wfds);
|
||||
|
||||
const int last_fd = 1 + MAX(tun_fd, MAX(mud_fd, ctl_fd));
|
||||
int tun_can_read = 0;
|
||||
int tun_can_write = 0;
|
||||
int mud_can_read = 0;
|
||||
int mud_can_write = 0;
|
||||
|
||||
int last_fd = MAX(tun_fd, mud_fd);
|
||||
last_fd = 1 + MAX(last_fd, ctl_fd);
|
||||
|
||||
unsigned char buf[4096];
|
||||
|
||||
while (!gt_quit) {
|
||||
long send_wait = mud_send_wait(mud);
|
||||
if (tun_can_write) {
|
||||
FD_CLR(tun_fd, &wfds);
|
||||
} else {
|
||||
FD_SET(tun_fd, &wfds);
|
||||
}
|
||||
|
||||
if (send_wait) {
|
||||
if (mud_can_write) {
|
||||
FD_CLR(mud_fd, &wfds);
|
||||
} else {
|
||||
FD_SET(mud_fd, &wfds);
|
||||
}
|
||||
|
||||
if (tun_can_read) {
|
||||
FD_CLR(tun_fd, &rfds);
|
||||
} else {
|
||||
FD_SET(tun_fd, &rfds);
|
||||
}
|
||||
|
||||
if (mud_can_read) {
|
||||
FD_CLR(mud_fd, &rfds);
|
||||
} else {
|
||||
FD_SET(mud_fd, &rfds);
|
||||
}
|
||||
|
||||
FD_SET(ctl_fd, &rfds);
|
||||
|
||||
struct timeval tv = {
|
||||
.tv_sec = 0,
|
||||
.tv_usec = send_wait,
|
||||
.tv_usec = 100000,
|
||||
};
|
||||
|
||||
const int ret = select(last_fd, &rfds, NULL, NULL, send_wait > 0 ? &tv : NULL);
|
||||
if (mud_can_read && tun_can_write) {
|
||||
tv.tv_usec = 0;
|
||||
} else if (tun_can_read && mud_can_write) {
|
||||
long send_wait = mud_send_wait(mud);
|
||||
if (send_wait >= 0)
|
||||
tv.tv_usec = send_wait * 1000;
|
||||
}
|
||||
|
||||
const int ret = select(last_fd, &rfds, &wfds, NULL, &tv);
|
||||
|
||||
if (ret == -1) {
|
||||
if (errno == EBADF) {
|
||||
@@ -238,8 +267,43 @@ gt_bind(int argc, char **argv)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (FD_ISSET(tun_fd, &rfds))
|
||||
tun_can_read = 1;
|
||||
|
||||
if (FD_ISSET(tun_fd, &wfds))
|
||||
tun_can_write = 1;
|
||||
|
||||
if (FD_ISSET(mud_fd, &rfds))
|
||||
mud_can_read = 1;
|
||||
|
||||
if (FD_ISSET(mud_fd, &wfds))
|
||||
mud_can_write = 1;
|
||||
|
||||
mtu = gt_setup_mtu(mud, mtu, tun_name);
|
||||
|
||||
if (tun_can_read && mud_can_write && !mud_send_wait(mud)) {
|
||||
struct ip_common ic;
|
||||
int r = tun_read(tun_fd, buf, sizeof(buf));
|
||||
|
||||
if (r > 0 && !ip_get_common(&ic, buf, r)) {
|
||||
mud_send(mud, buf, (size_t)r, ic.tc);
|
||||
mud_can_write = 0;
|
||||
}
|
||||
|
||||
tun_can_read = 0;
|
||||
}
|
||||
|
||||
if (mud_can_read && tun_can_write) {
|
||||
int r = mud_recv(mud, buf, sizeof(buf));
|
||||
|
||||
if (r > 0 && ip_is_valid(buf, r)) {
|
||||
tun_write(tun_fd, buf, (size_t)r);
|
||||
tun_can_write = 0;
|
||||
}
|
||||
|
||||
mud_can_read = 0;
|
||||
}
|
||||
|
||||
if (FD_ISSET(ctl_fd, &rfds)) {
|
||||
struct ctl_msg req, res = {.reply = 1};
|
||||
struct sockaddr_storage ss;
|
||||
@@ -299,6 +363,7 @@ gt_bind(int argc, char **argv)
|
||||
res.ret = errno;
|
||||
break;
|
||||
case CTL_STATUS:
|
||||
memcpy(res.status.tun_name, tun_name, sizeof(tun_name)); // XXX
|
||||
res.status.pid = pid;
|
||||
res.status.mtu = mtu;
|
||||
res.status.chacha = chacha;
|
||||
@@ -313,36 +378,6 @@ gt_bind(int argc, char **argv)
|
||||
perror("recvfrom(ctl)");
|
||||
}
|
||||
}
|
||||
|
||||
if (FD_ISSET(mud_fd, &rfds)) {
|
||||
int n = 1000;
|
||||
|
||||
while (n--) {
|
||||
const int r = mud_recv(mud, buf, sizeof(buf));
|
||||
|
||||
if (r <= 0)
|
||||
break;
|
||||
|
||||
if (ip_is_valid(buf, r))
|
||||
tun_write(tun_fd, buf, (size_t)r);
|
||||
}
|
||||
}
|
||||
|
||||
if (FD_ISSET(tun_fd, &rfds) && !mud_send_wait(mud)) {
|
||||
struct ip_common ic;
|
||||
const int r = tun_read(tun_fd, buf, sizeof(buf));
|
||||
|
||||
if (r > 0 && !ip_get_common(&ic, buf, r)) {
|
||||
// TODO: disable hash for now
|
||||
// unsigned char hash[crypto_shorthash_BYTES];
|
||||
// crypto_shorthash(hash, (const unsigned char *)&ic, sizeof(ic), hashkey);
|
||||
|
||||
unsigned h = 0;
|
||||
// memcpy(&h, hash, sizeof(h));
|
||||
|
||||
mud_send(mud, buf, (size_t)r, (h << 8) | ic.tc);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (gt_reload && tun_fd >= 0)
|
||||
|
||||
36
src/ctl.c
36
src/ctl.c
@@ -13,17 +13,12 @@
|
||||
int
|
||||
ctl_reply(int fd, struct ctl_msg *res, struct ctl_msg *req)
|
||||
{
|
||||
if (fd == -1) {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ((send(fd, req, sizeof(struct ctl_msg), 0) == -1) ||
|
||||
(recv(fd, res, sizeof(struct ctl_msg), 0) == -1))
|
||||
return -1;
|
||||
|
||||
if (res->type != req->type || !res->reply) {
|
||||
errno = EINVAL;
|
||||
errno = EBADMSG;
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -58,23 +53,23 @@ ctl_setsun(struct sockaddr_un *dst, const char *dir, const char *file)
|
||||
static int
|
||||
ctl_bind(int fd, const char *dir, const char *file)
|
||||
{
|
||||
char name[10] = { [0] = '.' };
|
||||
struct sockaddr_un sun;
|
||||
|
||||
if (str_empty(file)) {
|
||||
char name[10] = { [0] = '.' };
|
||||
unsigned pid = (unsigned)getpid();
|
||||
|
||||
for (size_t i = 1; i < sizeof(name) - 1; i++, pid >>= 4)
|
||||
name[i] = "uncopyrightables"[pid & 15];
|
||||
|
||||
if (ctl_setsun(&sun, dir, name))
|
||||
return -1;
|
||||
} else {
|
||||
file = name;
|
||||
}
|
||||
|
||||
if (ctl_setsun(&sun, dir, file))
|
||||
return -1;
|
||||
|
||||
unlink(sun.sun_path);
|
||||
}
|
||||
if (unlink(sun.sun_path) && errno != ENOENT)
|
||||
return -1;
|
||||
|
||||
return bind(fd, (struct sockaddr *)&sun, sizeof(sun));
|
||||
}
|
||||
@@ -82,9 +77,6 @@ ctl_bind(int fd, const char *dir, const char *file)
|
||||
void
|
||||
ctl_delete(int fd)
|
||||
{
|
||||
if (fd == -1)
|
||||
return;
|
||||
|
||||
struct sockaddr_storage ss = { 0 };
|
||||
socklen_t sslen = sizeof(ss);
|
||||
|
||||
@@ -108,9 +100,6 @@ ctl_create(const char *dir, const char *file)
|
||||
|
||||
int fd = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||
|
||||
if (fd == -1)
|
||||
return -1;
|
||||
|
||||
if (ctl_bind(fd, dir, file)) {
|
||||
int err = errno;
|
||||
close(fd);
|
||||
@@ -132,9 +121,7 @@ ctl_connect(const char *dir, const char *file)
|
||||
}
|
||||
|
||||
if (!file) {
|
||||
dp = opendir(dir);
|
||||
|
||||
if (!dp)
|
||||
if (dp = opendir(dir), !dp)
|
||||
return -1;
|
||||
|
||||
struct dirent *d = NULL;
|
||||
@@ -145,7 +132,7 @@ ctl_connect(const char *dir, const char *file)
|
||||
|
||||
if (file) {
|
||||
closedir(dp);
|
||||
return -3;
|
||||
return CTL_ERROR_MANY;
|
||||
}
|
||||
|
||||
file = &d->d_name[0];
|
||||
@@ -153,7 +140,7 @@ ctl_connect(const char *dir, const char *file)
|
||||
|
||||
if (!file) {
|
||||
closedir(dp);
|
||||
return -2;
|
||||
return CTL_ERROR_NONE;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -171,9 +158,6 @@ ctl_connect(const char *dir, const char *file)
|
||||
|
||||
int fd = ctl_create(dir, NULL);
|
||||
|
||||
if (fd == -1)
|
||||
return -1;
|
||||
|
||||
if (connect(fd, (struct sockaddr *)&sun, sizeof(sun))) {
|
||||
int err = errno;
|
||||
ctl_delete(fd);
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
|
||||
#include <sys/socket.h>
|
||||
|
||||
#define CTL_ERROR_NONE (-2)
|
||||
#define CTL_ERROR_MANY (-3)
|
||||
|
||||
enum ctl_type {
|
||||
CTL_NONE = 0,
|
||||
CTL_STATE,
|
||||
@@ -27,6 +30,7 @@ struct ctl_msg {
|
||||
} path;
|
||||
struct mud_path path_status;
|
||||
struct {
|
||||
char tun_name[64];
|
||||
long pid;
|
||||
size_t mtu;
|
||||
int chacha;
|
||||
|
||||
19
src/main.c
19
src/main.c
@@ -1,8 +1,11 @@
|
||||
#include "common.h"
|
||||
#include "str.h"
|
||||
|
||||
#include <sodium.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "../argz/argz.h"
|
||||
|
||||
volatile sig_atomic_t gt_alarm;
|
||||
volatile sig_atomic_t gt_reload;
|
||||
volatile sig_atomic_t gt_quit;
|
||||
@@ -46,7 +49,19 @@ gt_set_signal(void)
|
||||
static int
|
||||
gt_version(int argc, char **argv)
|
||||
{
|
||||
printf(PACKAGE_VERSION "\n");
|
||||
struct argz version_argz[] = {
|
||||
{"libsodium", NULL, NULL, argz_option},
|
||||
{NULL}};
|
||||
|
||||
if (argz(version_argz, argc, argv))
|
||||
return 1;
|
||||
|
||||
if (argz_is_set(version_argz, "libsodium")) {
|
||||
printf("%s\n", sodium_version_string());
|
||||
} else {
|
||||
printf("%s\n", PACKAGE_VERSION);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -60,7 +75,7 @@ main(int argc, char **argv)
|
||||
char *help;
|
||||
int (*call)(int, char **);
|
||||
} cmd[] = {
|
||||
{"show", "show all running tunnels", gt_show},
|
||||
{"show", "show tunnel info", gt_show},
|
||||
{"bench", "start a crypto bench", gt_bench},
|
||||
{"bind", "start a new tunnel", gt_bind},
|
||||
{"set", "change tunnel properties", gt_set},
|
||||
|
||||
143
src/path.c
143
src/path.c
@@ -8,49 +8,30 @@
|
||||
|
||||
#include "../argz/argz.h"
|
||||
|
||||
static int
|
||||
gt_path_status(int fd)
|
||||
static void
|
||||
gt_path_print_status(struct mud_path *path, int term)
|
||||
{
|
||||
struct ctl_msg req = {
|
||||
.type = CTL_PATH_STATUS,
|
||||
}, res = {0};
|
||||
|
||||
if (send(fd, &req, sizeof(struct ctl_msg), 0) == -1)
|
||||
return -1;
|
||||
|
||||
int term = isatty(1);
|
||||
|
||||
do {
|
||||
if (recv(fd, &res, sizeof(struct ctl_msg), 0) == -1)
|
||||
return -1;
|
||||
|
||||
if (res.type != req.type)
|
||||
return -2;
|
||||
|
||||
if (!res.ret)
|
||||
return 0;
|
||||
|
||||
char bindstr[INET6_ADDRSTRLEN];
|
||||
char publstr[INET6_ADDRSTRLEN];
|
||||
char peerstr[INET6_ADDRSTRLEN];
|
||||
|
||||
gt_toaddr(bindstr, sizeof(bindstr),
|
||||
(struct sockaddr *)&res.path_status.local_addr);
|
||||
(struct sockaddr *)&path->local_addr);
|
||||
gt_toaddr(publstr, sizeof(publstr),
|
||||
(struct sockaddr *)&res.path_status.r_addr);
|
||||
(struct sockaddr *)&path->r_addr);
|
||||
gt_toaddr(peerstr, sizeof(peerstr),
|
||||
(struct sockaddr *)&res.path_status.addr);
|
||||
(struct sockaddr *)&path->addr);
|
||||
|
||||
const char *statestr = NULL;
|
||||
|
||||
switch (res.path_status.state) {
|
||||
switch (path->state) {
|
||||
case MUD_UP: statestr = "UP"; break;
|
||||
case MUD_BACKUP: statestr = "BACKUP"; break;
|
||||
case MUD_DOWN: statestr = "DOWN"; break;
|
||||
default: return -2;
|
||||
default: return;
|
||||
}
|
||||
|
||||
const char *statusstr = res.path_status.ok ? "OK" : "DEGRADED";
|
||||
const char *statusstr = path->ok ? "OK" : "DEGRADED";
|
||||
|
||||
printf(term ? "path %s\n"
|
||||
" status: %s\n"
|
||||
@@ -78,19 +59,79 @@ gt_path_status(int fd)
|
||||
statestr,
|
||||
statusstr,
|
||||
bindstr[0] ? bindstr : "-",
|
||||
gt_get_port((struct sockaddr *)&res.path_status.local_addr),
|
||||
gt_get_port((struct sockaddr *)&path->local_addr),
|
||||
publstr[0] ? publstr : "-",
|
||||
gt_get_port((struct sockaddr *)&res.path_status.r_addr),
|
||||
gt_get_port((struct sockaddr *)&path->r_addr),
|
||||
peerstr[0] ? peerstr : "-",
|
||||
gt_get_port((struct sockaddr *)&res.path_status.addr),
|
||||
res.path_status.mtu.ok,
|
||||
(double)res.path_status.rtt.val / 1e3,
|
||||
(double)res.path_status.rtt.var / 1e3,
|
||||
res.path_status.rate_tx,
|
||||
res.path_status.rate_rx,
|
||||
res.path_status.send.total,
|
||||
res.path_status.recv.total);
|
||||
} while (res.ret == EAGAIN);
|
||||
gt_get_port((struct sockaddr *)&path->addr),
|
||||
path->mtu.ok,
|
||||
(double)path->rtt.val / 1e3,
|
||||
(double)path->rtt.var / 1e3,
|
||||
path->rate_tx,
|
||||
path->rate_rx,
|
||||
path->send.total,
|
||||
path->recv.total);
|
||||
}
|
||||
|
||||
static int
|
||||
gt_path_cmp_addr(struct sockaddr_storage *a, struct sockaddr_storage *b)
|
||||
{
|
||||
if (a->ss_family != b->ss_family)
|
||||
return 1;
|
||||
|
||||
if (a->ss_family == AF_INET) {
|
||||
struct sockaddr_in *A = (struct sockaddr_in *)a;
|
||||
struct sockaddr_in *B = (struct sockaddr_in *)b;
|
||||
return ((memcmp(&A->sin_addr, &B->sin_addr, sizeof(A->sin_addr))));
|
||||
}
|
||||
|
||||
if (a->ss_family == AF_INET6) {
|
||||
struct sockaddr_in6 *A = (struct sockaddr_in6 *)a;
|
||||
struct sockaddr_in6 *B = (struct sockaddr_in6 *)b;
|
||||
return ((memcmp(&A->sin6_addr, &B->sin6_addr, sizeof(A->sin6_addr))));
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int
|
||||
gt_path_status(int fd, int state, struct sockaddr_storage *addr)
|
||||
{
|
||||
struct ctl_msg req = {
|
||||
.type = CTL_PATH_STATUS,
|
||||
}, res = {0};
|
||||
|
||||
if (send(fd, &req, sizeof(struct ctl_msg), 0) == -1)
|
||||
return -1;
|
||||
|
||||
struct mud_path path[MUD_PATH_MAX];
|
||||
int count = 0;
|
||||
|
||||
while (1) {
|
||||
if (recv(fd, &res, sizeof(struct ctl_msg), 0) == -1)
|
||||
return -1;
|
||||
|
||||
if (res.type != req.type) {
|
||||
errno = EBADMSG;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (res.ret == EAGAIN) {
|
||||
memcpy(&path[count], &res.path_status, sizeof(struct mud_path));
|
||||
count++;
|
||||
} else if (res.ret) {
|
||||
errno = res.ret;
|
||||
return -1;
|
||||
} else break;
|
||||
}
|
||||
|
||||
int term = isatty(1);
|
||||
|
||||
for (int i = 0; i < count; i++) {
|
||||
if ((state == MUD_EMPTY || path[i].state == state) &&
|
||||
(!addr->ss_family || !gt_path_cmp_addr(addr, &path[i].local_addr)))
|
||||
gt_path_print_status(&path[i], term);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -102,6 +143,9 @@ gt_path(int argc, char **argv)
|
||||
|
||||
struct ctl_msg req = {
|
||||
.type = CTL_STATE,
|
||||
.path = {
|
||||
.state = MUD_EMPTY,
|
||||
},
|
||||
}, res = {0};
|
||||
|
||||
struct argz ratez[] = {
|
||||
@@ -126,10 +170,10 @@ gt_path(int argc, char **argv)
|
||||
case -1:
|
||||
perror("path");
|
||||
break;
|
||||
case -2:
|
||||
case CTL_ERROR_NONE:
|
||||
gt_log("no device\n");
|
||||
break;
|
||||
case -3:
|
||||
case CTL_ERROR_MANY:
|
||||
gt_log("please choose a device\n");
|
||||
break;
|
||||
default:
|
||||
@@ -138,15 +182,12 @@ gt_path(int argc, char **argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ret = 0;
|
||||
int set_rate = argz_is_set(pathz, "rate");
|
||||
|
||||
if (!req.path.addr.ss_family) {
|
||||
ret = gt_path_status(fd);
|
||||
|
||||
if (ret == -2)
|
||||
gt_log("bad reply from server\n");
|
||||
} else {
|
||||
req.path.state = MUD_EMPTY;
|
||||
if (set_rate && !req.path.addr.ss_family) {
|
||||
gt_log("please specify a path\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (argz_is_set(pathz, "up")) {
|
||||
req.path.state = MUD_UP;
|
||||
@@ -156,6 +197,12 @@ gt_path(int argc, char **argv)
|
||||
req.path.state = MUD_DOWN;
|
||||
}
|
||||
|
||||
int ret;
|
||||
|
||||
if (!req.path.addr.ss_family ||
|
||||
(req.path.state == MUD_EMPTY && !set_rate)) {
|
||||
ret = gt_path_status(fd, req.path.state, &req.path.addr);
|
||||
} else {
|
||||
ret = ctl_reply(fd, &res, &req);
|
||||
}
|
||||
|
||||
|
||||
@@ -134,10 +134,10 @@ gt_set(int argc, char **argv)
|
||||
case -1:
|
||||
perror("set");
|
||||
break;
|
||||
case -2:
|
||||
case CTL_ERROR_NONE:
|
||||
gt_log("no device\n");
|
||||
break;
|
||||
case -3:
|
||||
case CTL_ERROR_MANY:
|
||||
gt_log("please choose a device\n");
|
||||
break;
|
||||
default:
|
||||
|
||||
68
src/show.c
68
src/show.c
@@ -12,7 +12,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
static int
|
||||
gt_show_dev_status(int fd, const char *dev)
|
||||
gt_show_status(int fd)
|
||||
{
|
||||
struct ctl_msg res, req = {.type = CTL_STATUS};
|
||||
|
||||
@@ -42,7 +42,7 @@ gt_show_dev_status(int fd, const char *dev)
|
||||
" %zu"
|
||||
" %s"
|
||||
"\n",
|
||||
dev,
|
||||
res.status.tun_name,
|
||||
res.status.pid,
|
||||
bindstr[0] ? bindstr : "-",
|
||||
gt_get_port((struct sockaddr *)&res.status.bind),
|
||||
@@ -62,7 +62,7 @@ gt_show_dev_status(int fd, const char *dev)
|
||||
" %zu"
|
||||
" %s"
|
||||
"\n",
|
||||
dev,
|
||||
res.status.tun_name,
|
||||
res.status.pid,
|
||||
bindstr[0] ? bindstr : "-",
|
||||
gt_get_port((struct sockaddr *)&res.status.bind),
|
||||
@@ -75,30 +75,6 @@ gt_show_dev_status(int fd, const char *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
gt_show_dev(const char *dev)
|
||||
{
|
||||
int fd = ctl_connect(GT_RUNDIR, dev);
|
||||
|
||||
if (fd < 0) {
|
||||
if (fd == -1)
|
||||
perror("show");
|
||||
return -1;
|
||||
}
|
||||
|
||||
int ret = gt_show_dev_status(fd, dev);
|
||||
|
||||
if (ret == -1)
|
||||
perror(dev);
|
||||
|
||||
if (ret == -2)
|
||||
gt_log("%s: bad reply from server\n", dev);
|
||||
|
||||
ctl_delete(fd);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
gt_show(int argc, char **argv)
|
||||
{
|
||||
@@ -111,27 +87,31 @@ gt_show(int argc, char **argv)
|
||||
if (argz(showz, argc, argv))
|
||||
return 1;
|
||||
|
||||
if (dev)
|
||||
return !!gt_show_dev(dev);
|
||||
int fd = ctl_connect(GT_RUNDIR, dev);
|
||||
|
||||
DIR *dp = opendir(GT_RUNDIR);
|
||||
|
||||
if (!dp) {
|
||||
if (errno == ENOENT)
|
||||
return 0;
|
||||
if (fd < 0) {
|
||||
switch (fd) {
|
||||
case -1:
|
||||
perror("show");
|
||||
break;
|
||||
case CTL_ERROR_NONE:
|
||||
gt_log("no device\n");
|
||||
break;
|
||||
case CTL_ERROR_MANY:
|
||||
gt_log("please choose a device\n");
|
||||
break;
|
||||
default:
|
||||
gt_log("couldn't connect\n");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ret = 0;
|
||||
struct dirent *d = NULL;
|
||||
int ret = gt_show_status(fd);
|
||||
|
||||
while (d = readdir(dp), d) {
|
||||
if (d->d_name[0] != '.')
|
||||
ret |= !!gt_show_dev(d->d_name);
|
||||
}
|
||||
|
||||
closedir(dp);
|
||||
|
||||
return ret;
|
||||
if (ret == -1)
|
||||
perror("show");
|
||||
|
||||
ctl_delete(fd);
|
||||
|
||||
return !!ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user