Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c113724eb0 | ||
|
|
b184ddedaa | ||
|
|
28a978f276 | ||
|
|
e0546ec46a | ||
|
|
50f002b7f8 | ||
|
|
42faaf816f | ||
|
|
eee6a22ccd | ||
|
|
ee2d7a2e07 | ||
|
|
e5949b409f | ||
|
|
13703fb15f | ||
|
|
7f30cdc5ee | ||
|
|
b2077f5cd4 | ||
|
|
a9408e799d | ||
|
|
61c7b48e3f | ||
|
|
4db90b42b6 | ||
|
|
3df542b6d7 | ||
|
|
4a0027e640 | ||
|
|
296d80782a | ||
|
|
1c38034265 | ||
|
|
0b26eb108d | ||
|
|
ac167e74f5 | ||
|
|
203feba186 | ||
|
|
3b938df408 | ||
|
|
0ccb3de68d | ||
|
|
020b115171 | ||
|
|
53e7a7ba0a | ||
|
|
1ae7775ce1 | ||
|
|
c75f5d5620 | ||
|
|
5f72198a96 | ||
|
|
c01dbe3e4b | ||
|
|
6be944d7cb | ||
|
|
009d482fd1 | ||
|
|
b9aaab661f | ||
|
|
a4f63ecf40 | ||
|
|
0ceedaec10 | ||
|
|
34486c20b1 | ||
|
|
b1fca4c1d2 | ||
|
|
5e0900c8ee |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -20,5 +20,5 @@ jobs:
|
|||||||
|
|
||||||
- uses: actions/upload-artifact@v1
|
- uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: bin
|
name: ${{ matrix.os }}
|
||||||
path: ./bin
|
path: ./bin
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2015-2019, Adrien Gallouët <adrien@gallouet.fr>
|
Copyright (c) 2015-2020, Adrien Gallouët <adrien@gallouet.fr>
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
|||||||
49
Makefile
49
Makefile
@@ -2,34 +2,39 @@ NAME := glorytun
|
|||||||
VERSION := $(shell ./version.sh)
|
VERSION := $(shell ./version.sh)
|
||||||
DIST := $(NAME)-$(VERSION)
|
DIST := $(NAME)-$(VERSION)
|
||||||
|
|
||||||
DESTDIR ?=
|
|
||||||
CC ?= gcc
|
|
||||||
INSTALL ?= install
|
|
||||||
prefix ?= /usr
|
|
||||||
CFLAGS ?= -std=c11 -O2 -Wall -fstack-protector-strong
|
CFLAGS ?= -std=c11 -O2 -Wall -fstack-protector-strong
|
||||||
|
FLAGS := $(CFLAGS) $(LDFLAGS) $(CPPFLAGS)
|
||||||
|
|
||||||
|
CC ?= cc
|
||||||
|
prefix ?= /usr
|
||||||
|
Q := @
|
||||||
|
|
||||||
|
ifneq ($(X),)
|
||||||
|
H = $(X)-
|
||||||
|
FLAGS += -static
|
||||||
|
endif
|
||||||
|
|
||||||
FLAGS := $(CFLAGS) $(LDFLAGS) $(CPPFLAGS)
|
|
||||||
FLAGS += -DPACKAGE_NAME=\"$(NAME)\" -DPACKAGE_VERSION=\"$(VERSION)\"
|
FLAGS += -DPACKAGE_NAME=\"$(NAME)\" -DPACKAGE_VERSION=\"$(VERSION)\"
|
||||||
|
FLAGS += -I.static/$(X)/libsodium-stable/src/libsodium/include
|
||||||
FLAGS += -I.static/$(CROSS)/libsodium-stable/src/libsodium/include
|
FLAGS += -L.static/$(X)/libsodium-stable/src/libsodium/.libs
|
||||||
FLAGS += -L.static/$(CROSS)/libsodium-stable/src/libsodium/.libs
|
|
||||||
|
|
||||||
SRC := argz/argz.c mud/mud.c mud/aegis256/aegis256.c $(wildcard src/*.c)
|
SRC := argz/argz.c mud/mud.c mud/aegis256/aegis256.c $(wildcard src/*.c)
|
||||||
|
HDR := argz/argz.h mud/mud.h mud/aegis256/aegis256.h $(wildcard src/*.h)
|
||||||
|
|
||||||
.PHONY: $(NAME)
|
$(NAME): $(SRC) $(HDR)
|
||||||
$(NAME):
|
$(Q)$(H)$(CC) $(FLAGS) -o $(NAME) $(SRC) -lsodium
|
||||||
@echo "Building $(NAME)"
|
|
||||||
@$(CC) $(FLAGS) -o $(NAME) $(SRC) -lsodium
|
$(NAME)-strip: $(NAME)
|
||||||
|
$(Q)cp $< $@
|
||||||
|
$(Q)$(H)strip -x $@
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: $(NAME)
|
install: $(NAME)-strip
|
||||||
@echo "Installing $(NAME)"
|
@echo "$(DESTDIR)$(prefix)/bin/$(NAME)"
|
||||||
@$(INSTALL) -m 755 -d $(DESTDIR)$(prefix)/bin
|
$(Q)install -m 755 -d $(DESTDIR)$(prefix)/bin
|
||||||
@$(INSTALL) -m 755 -s $(NAME) $(DESTDIR)$(prefix)/bin
|
$(Q)install -m 755 $(NAME)-strip $(DESTDIR)$(prefix)/bin/$(NAME)
|
||||||
|
|
||||||
.PHONY: dist
|
.PHONY: clean
|
||||||
dist:
|
clean:
|
||||||
@echo "Building $(DIST).tar.gz"
|
$(Q)rm -f "$(NAME)"
|
||||||
@(git --git-dir=.git ls-files --recurse-submodules -- ':!:.*' ':!:**/.*' && echo VERSION) | ( \
|
$(Q)rm -f "$(DIST).tar.gz"
|
||||||
tar zcf $(DIST).tar.gz -T- --transform 's:^:$(DIST)/:' || \
|
|
||||||
tar zcf $(DIST).tar.gz -T- -s ':^:$(DIST)/:' ) 2>/dev/null
|
|
||||||
|
|||||||
@@ -31,11 +31,13 @@ glorytun_SOURCES = \
|
|||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
LICENSE \
|
LICENSE \
|
||||||
|
Makefile \
|
||||||
README.md \
|
README.md \
|
||||||
VERSION \
|
VERSION \
|
||||||
autogen.sh \
|
autogen.sh \
|
||||||
meson.build \
|
meson.build \
|
||||||
mud/LICENSE \
|
mud/LICENSE \
|
||||||
mud/README.md \
|
mud/README.md \
|
||||||
|
sodium.sh \
|
||||||
systemd \
|
systemd \
|
||||||
version.sh
|
version.sh
|
||||||
|
|||||||
93
README.md
93
README.md
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
Glorytun is a small, simple and secure VPN over [mud](https://github.com/angt/mud).
|
Glorytun is a small, simple and secure VPN over [mud](https://github.com/angt/mud).
|
||||||
|
|
||||||
|
Please visit the [wiki](https://github.com/angt/glorytun/wiki) for how-to guides, tutorials, etc.
|
||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
Glorytun only depends on [libsodium](https://github.com/jedisct1/libsodium) version >= 1.0.4.
|
Glorytun only depends on [libsodium](https://github.com/jedisct1/libsodium) version >= 1.0.4.
|
||||||
@@ -19,17 +21,19 @@ The key features of Glorytun come directly from mud:
|
|||||||
|
|
||||||
* **Fast and highly secure**
|
* **Fast and highly secure**
|
||||||
|
|
||||||
The use of UDP and libsodium allows you to secure your communications without impacting performance.
|
Glorytun uses a new and very fast AEAD construction called AEGIS-256 if AES-NI is available otherwise ChaCha20-Poly1305 is used.
|
||||||
Glorytun uses AEGIS-256 (a new and very fast AEAD construction) only if AES-NI is available otherwise ChaCha20-Poly1305 is used.
|
|
||||||
Of course, you can force the use of ChaCha20-Poly1305 for higher security.
|
Of course, you can force the use of ChaCha20-Poly1305 for higher security.
|
||||||
All messages are encrypted, authenticated and timestamped to mitigate a large set of attacks.
|
All messages are encrypted, authenticated and timestamped to mitigate a large set of attacks.
|
||||||
|
This implies that the client and the server must be synchronized, an offset of 10min is accepted by default.
|
||||||
Perfect forward secrecy is also implemented with ECDH over Curve25519. Keys are rotated every hours.
|
Perfect forward secrecy is also implemented with ECDH over Curve25519. Keys are rotated every hours.
|
||||||
|
|
||||||
* **Multipath and active failover**
|
* **Multipath and failover**
|
||||||
|
|
||||||
Connectivity is now crucial, especially in the SD-WAN world.
|
Connectivity is now crucial, especially in the SD-WAN world.
|
||||||
This feature allows a TCP connection (and all other protocols) to explore and exploit all available links without being disconnected.
|
This feature allows a TCP connection (and all other protocols) to explore and exploit all available links without being disconnected.
|
||||||
Aggregation should work on all conventional links, only very high latency (+500ms) links are not recommended for now.
|
Aggregation should work on all conventional links.
|
||||||
|
Only very high latency (+500ms) links are not recommended for now.
|
||||||
|
Backup paths are also supported, they will be used only in case of emergency, it is useful when aggregation is not your priority.
|
||||||
|
|
||||||
* **Traffic shaping**
|
* **Traffic shaping**
|
||||||
|
|
||||||
@@ -44,87 +48,6 @@ The key features of Glorytun come directly from mud:
|
|||||||
It doesn't rely on Next-hop MTU to avoid ICMP black holes.
|
It doesn't rely on Next-hop MTU to avoid ICMP black holes.
|
||||||
In asymmetric situations the minimum MTU is selected.
|
In asymmetric situations the minimum MTU is selected.
|
||||||
|
|
||||||
## Caveats
|
|
||||||
|
|
||||||
Glorytun is strongly secure by default and protects against replay attacks,
|
|
||||||
the clock between the client and the server must be synchronized.
|
|
||||||
By default, an offset of 10min is accepted.
|
|
||||||
|
|
||||||
## Build and Install
|
|
||||||
|
|
||||||
You will need `git`, `make`, `gcc` and `libsodium`:
|
|
||||||
|
|
||||||
$ sudo apt install git make gcc libsodium-dev # debian based
|
|
||||||
$ sudo yum install git make gcc libsodium-devel # redhat based
|
|
||||||
|
|
||||||
To build and install the latest release from github:
|
|
||||||
|
|
||||||
$ git clone https://github.com/angt/glorytun --recursive
|
|
||||||
$ cd glorytun
|
|
||||||
$ sudo make install
|
|
||||||
|
|
||||||
This will install the binary in `/usr/bin` by default.
|
|
||||||
|
|
||||||
The more classical autotools suite is also available.
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Just run `glorytun` with no arguments to view the list of available commands:
|
|
||||||
|
|
||||||
$ glorytun
|
|
||||||
available commands:
|
|
||||||
|
|
||||||
show show tunnel info
|
|
||||||
bench start a crypto bench
|
|
||||||
bind start a new tunnel
|
|
||||||
set change tunnel properties
|
|
||||||
keygen generate a new secret key
|
|
||||||
path manage paths
|
|
||||||
version show version
|
|
||||||
|
|
||||||
Use the keyword `help` after a command to show its usage.
|
|
||||||
|
|
||||||
## Mini HowTo
|
|
||||||
|
|
||||||
Glorytun does not touch the configuration of its network interface (except for the MTU),
|
|
||||||
It is up to the user to do it according to the tools available
|
|
||||||
on his system (systemd-networkd, netifd, ...).
|
|
||||||
This also allows a wide variety of configurations.
|
|
||||||
|
|
||||||
To start a server:
|
|
||||||
|
|
||||||
# (umask 066; glorytun keygen > my_secret_key)
|
|
||||||
# glorytun bind 0.0.0.0 keyfile my_secret_key &
|
|
||||||
|
|
||||||
You should now have an unconfigured network interface (let's say `tun0`).
|
|
||||||
For example, the simplest setup with `ifconfig`:
|
|
||||||
|
|
||||||
# ifconfig tun0 10.0.1.1 pointopoint 10.0.1.2 up
|
|
||||||
|
|
||||||
To check if the server is running, simply call `glorytun show`.
|
|
||||||
It will show you all of the running tunnels.
|
|
||||||
|
|
||||||
To start a new client, you need to get the secret key generated for the server.
|
|
||||||
Then simply call:
|
|
||||||
|
|
||||||
# glorytun bind 0.0.0.0 to SERVER_IP keyfile my_secret_key &
|
|
||||||
# ifconfig tun0 10.0.1.2 pointopoint 10.0.1.1 up
|
|
||||||
|
|
||||||
Now you have to setup your path, let's say you have an ADSL link that can do 1Mbit upload and 20Mbit download then call:
|
|
||||||
|
|
||||||
# glorytun path up LOCAL_IPADDR rate tx 1mbit rx 20mbit
|
|
||||||
|
|
||||||
Again, to check if your path is working, you can watch its status with `glorytun path`.
|
|
||||||
You should now be able to ping your server with `ping 10.0.1.1`.
|
|
||||||
|
|
||||||
If you use systemd-networkd, you can easily setup your tunnels with the helper program `glorytun-setup`.
|
|
||||||
|
|
||||||
## Thanks
|
|
||||||
|
|
||||||
* @jedisct1 for all his help and the code for MacOS/BSD.
|
|
||||||
* The team OTB (@bessa, @gregdel, @pouulet, @sduponch and @simon) for all tests and discussions.
|
|
||||||
* OVH to support this soft :)
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
For feature requests and bug reports, please create an [issue](https://github.com/angt/glorytun/issues).
|
For feature requests and bug reports, please create an [issue](https://github.com/angt/glorytun/issues).
|
||||||
|
|||||||
2
argz
2
argz
Submodule argz updated: ff7bc660e2...f88a280d2b
2
mud
2
mud
Submodule mud updated: d0dc6076c8...c426cef08b
124
src/bind.c
124
src/bind.c
@@ -91,7 +91,7 @@ gt_setup_mtu(struct mud *mud, size_t old, const char *tun_name)
|
|||||||
{
|
{
|
||||||
size_t mtu = mud_get_mtu(mud);
|
size_t mtu = mud_get_mtu(mud);
|
||||||
|
|
||||||
if (mtu == old)
|
if (!mtu || mtu == old)
|
||||||
return mtu;
|
return mtu;
|
||||||
|
|
||||||
if (iface_set_mtu(tun_name, mtu) == -1)
|
if (iface_set_mtu(tun_name, mtu) == -1)
|
||||||
@@ -185,11 +185,16 @@ gt_bind(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const int ctl_fd = ctl_create(GT_RUNDIR, tun_name);
|
const int ctl_fd = ctl_create(tun_name);
|
||||||
|
|
||||||
if (ctl_fd == -1) {
|
if (ctl_fd == -1) {
|
||||||
gt_log("couldn't create "GT_RUNDIR"/%s: %s\n",
|
char dir[64];
|
||||||
tun_name, strerror(errno));
|
if (ctl_rundir(dir, sizeof(dir))) {
|
||||||
|
gt_log("couldn't create %s/%s: %s\n",
|
||||||
|
dir, tun_name, strerror(errno));
|
||||||
|
} else {
|
||||||
|
gt_log("couldn't find a writable run/tmp directory\n");
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -216,48 +221,31 @@ gt_bind(int argc, char **argv)
|
|||||||
int last_fd = MAX(tun_fd, mud_fd);
|
int last_fd = MAX(tun_fd, mud_fd);
|
||||||
last_fd = 1 + MAX(last_fd, ctl_fd);
|
last_fd = 1 + MAX(last_fd, ctl_fd);
|
||||||
|
|
||||||
unsigned char buf[4096];
|
__attribute__((aligned(16)))
|
||||||
|
unsigned char buf[1500];
|
||||||
|
|
||||||
while (!gt_quit) {
|
while (!gt_quit) {
|
||||||
if (tun_can_write) {
|
if (tun_can_write) FD_CLR(tun_fd, &wfds); else FD_SET(tun_fd, &wfds);
|
||||||
FD_CLR(tun_fd, &wfds);
|
if (mud_can_write) FD_CLR(mud_fd, &wfds); else FD_SET(mud_fd, &wfds);
|
||||||
} else {
|
if (tun_can_read) FD_CLR(tun_fd, &rfds); else FD_SET(tun_fd, &rfds);
|
||||||
FD_SET(tun_fd, &wfds);
|
if (mud_can_read) FD_CLR(mud_fd, &rfds); else FD_SET(mud_fd, &rfds);
|
||||||
}
|
|
||||||
|
|
||||||
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);
|
FD_SET(ctl_fd, &rfds);
|
||||||
|
|
||||||
struct timeval tv = {
|
struct timeval tv = { 0 };
|
||||||
.tv_usec = 100000,
|
int update = mud_update(mud);
|
||||||
};
|
|
||||||
|
|
||||||
if (mud_can_read && tun_can_write) {
|
if (update >= 0) {
|
||||||
tv.tv_usec = 0;
|
if (mud_can_read && tun_can_write) {
|
||||||
} else if (tun_can_read && mud_can_write) {
|
} else if (tun_can_read && mud_can_write) {
|
||||||
long send_wait = mud_send_wait(mud);
|
if (update)
|
||||||
if (send_wait >= 0)
|
tv.tv_usec = 1000;
|
||||||
tv.tv_usec = send_wait * 1000;
|
} else {
|
||||||
|
tv.tv_usec = 100000;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const int ret = select(last_fd, &rfds, &wfds, NULL, &tv);
|
const int ret = select(last_fd, &rfds, &wfds, NULL, update < 0 ? NULL : &tv);
|
||||||
|
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
if (errno == EBADF) {
|
if (errno == EBADF) {
|
||||||
@@ -267,17 +255,10 @@ gt_bind(int argc, char **argv)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FD_ISSET(tun_fd, &rfds))
|
if (FD_ISSET(tun_fd, &rfds)) tun_can_read = 1;
|
||||||
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(tun_fd, &wfds))
|
if (FD_ISSET(mud_fd, &wfds)) mud_can_write = 1;
|
||||||
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);
|
mtu = gt_setup_mtu(mud, mtu, tun_name);
|
||||||
|
|
||||||
@@ -286,7 +267,7 @@ gt_bind(int argc, char **argv)
|
|||||||
int r = tun_read(tun_fd, buf, sizeof(buf));
|
int r = tun_read(tun_fd, buf, sizeof(buf));
|
||||||
|
|
||||||
if (r > 0 && !ip_get_common(&ic, buf, r)) {
|
if (r > 0 && !ip_get_common(&ic, buf, r)) {
|
||||||
mud_send(mud, buf, (size_t)r, ic.tc);
|
mud_send(mud, buf, (size_t)r);
|
||||||
mud_can_write = 0;
|
mud_can_write = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -320,9 +301,26 @@ gt_bind(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
case CTL_STATE:
|
case CTL_STATE:
|
||||||
if (mud_set_state(mud, (struct sockaddr *)&req.path.addr,
|
if (mud_set_state(mud, (struct sockaddr *)&req.path.addr,
|
||||||
req.path.state, req.path.rate_tx, req.path.rate_rx))
|
req.path.state,
|
||||||
|
req.path.rate_tx,
|
||||||
|
req.path.rate_rx,
|
||||||
|
req.path.beat,
|
||||||
|
req.path.fixed_rate,
|
||||||
|
req.path.loss_limit))
|
||||||
res.ret = errno;
|
res.ret = errno;
|
||||||
break;
|
break;
|
||||||
|
case CTL_CONF:
|
||||||
|
if (mud_set_conf(mud, &req.conf))
|
||||||
|
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;
|
||||||
|
res.status.bind = bind_addr;
|
||||||
|
res.status.peer = peer_addr;
|
||||||
|
break;
|
||||||
case CTL_PATH_STATUS:
|
case CTL_PATH_STATUS:
|
||||||
{
|
{
|
||||||
unsigned count = 0;
|
unsigned count = 0;
|
||||||
@@ -346,30 +344,6 @@ gt_bind(int argc, char **argv)
|
|||||||
res.ret = 0;
|
res.ret = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case CTL_MTU:
|
|
||||||
mud_set_mtu(mud, req.mtu);
|
|
||||||
res.mtu = mtu = gt_setup_mtu(mud, mtu, tun_name);
|
|
||||||
break;
|
|
||||||
case CTL_TC:
|
|
||||||
if (mud_set_tc(mud, req.tc))
|
|
||||||
res.ret = errno;
|
|
||||||
break;
|
|
||||||
case CTL_KXTIMEOUT:
|
|
||||||
if (mud_set_keyx_timeout(mud, req.ms))
|
|
||||||
res.ret = errno;
|
|
||||||
break;
|
|
||||||
case CTL_TIMETOLERANCE:
|
|
||||||
if (mud_set_time_tolerance(mud, req.ms))
|
|
||||||
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;
|
|
||||||
res.status.bind = bind_addr;
|
|
||||||
res.status.peer = peer_addr;
|
|
||||||
break;
|
|
||||||
case CTL_BAD:
|
case CTL_BAD:
|
||||||
if (mud_get_bad(mud, &res.bad))
|
if (mud_get_bad(mud, &res.bad))
|
||||||
res.ret = errno;
|
res.ret = errno;
|
||||||
|
|||||||
@@ -12,6 +12,8 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
|
||||||
#ifndef PACKAGE_NAME
|
#ifndef PACKAGE_NAME
|
||||||
#define PACKAGE_NAME "glorytun"
|
#define PACKAGE_NAME "glorytun"
|
||||||
@@ -21,10 +23,6 @@
|
|||||||
#define PACKAGE_VERSION "0.0.0"
|
#define PACKAGE_VERSION "0.0.0"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GT_RUNDIR
|
|
||||||
#define GT_RUNDIR "/run/" PACKAGE_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define COUNT(x) (sizeof(x)/sizeof(x[0]))
|
#define COUNT(x) (sizeof(x)/sizeof(x[0]))
|
||||||
|
|
||||||
#define ALIGN_SIZE (1<<4)
|
#define ALIGN_SIZE (1<<4)
|
||||||
|
|||||||
54
src/ctl.c
54
src/ctl.c
@@ -5,11 +5,45 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
#include <libgen.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
|
|
||||||
|
char *
|
||||||
|
ctl_rundir(char *dst, size_t size)
|
||||||
|
{
|
||||||
|
if (dst && size)
|
||||||
|
dst[0] = 0;
|
||||||
|
|
||||||
|
const char *fmt[] = {
|
||||||
|
"/run/user/%u/" PACKAGE_NAME,
|
||||||
|
"/run/" PACKAGE_NAME ".%u",
|
||||||
|
"/var/run/" PACKAGE_NAME ".%u",
|
||||||
|
"/tmp/" PACKAGE_NAME ".%u",
|
||||||
|
};
|
||||||
|
|
||||||
|
for (unsigned i = 0; i < COUNT(fmt); i++) {
|
||||||
|
char path[128];
|
||||||
|
int ret = snprintf(dst, size, fmt[i], geteuid());
|
||||||
|
|
||||||
|
if ((ret <= 0) ||
|
||||||
|
((size_t)ret >= size) ||
|
||||||
|
((size_t)ret >= sizeof(path)))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
memcpy(path, dst, (size_t)ret + 1);
|
||||||
|
char *p = dirname(path);
|
||||||
|
|
||||||
|
if (p && !access(p, W_OK))
|
||||||
|
return dst;
|
||||||
|
}
|
||||||
|
|
||||||
|
errno = EINTR;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ctl_reply(int fd, struct ctl_msg *res, struct ctl_msg *req)
|
ctl_reply(int fd, struct ctl_msg *res, struct ctl_msg *req)
|
||||||
{
|
{
|
||||||
@@ -88,12 +122,12 @@ ctl_delete(int fd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ctl_create(const char *dir, const char *file)
|
ctl_create(const char *file)
|
||||||
{
|
{
|
||||||
if (str_empty(dir)) {
|
char dir[64];
|
||||||
errno = EINVAL;
|
|
||||||
|
if (!ctl_rundir(dir, sizeof(dir)))
|
||||||
return -1;
|
return -1;
|
||||||
}
|
|
||||||
|
|
||||||
if (mkdir(dir, 0700) == -1 && errno != EEXIST)
|
if (mkdir(dir, 0700) == -1 && errno != EEXIST)
|
||||||
return -1;
|
return -1;
|
||||||
@@ -111,14 +145,13 @@ ctl_create(const char *dir, const char *file)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ctl_connect(const char *dir, const char *file)
|
ctl_connect(const char *file)
|
||||||
{
|
{
|
||||||
|
char dir[64];
|
||||||
DIR *dp = NULL;
|
DIR *dp = NULL;
|
||||||
|
|
||||||
if (str_empty(dir)) {
|
if (!ctl_rundir(dir, sizeof(dir)))
|
||||||
errno = EINVAL;
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
|
||||||
|
|
||||||
if (!file) {
|
if (!file) {
|
||||||
if (dp = opendir(dir), !dp)
|
if (dp = opendir(dir), !dp)
|
||||||
@@ -156,9 +189,10 @@ ctl_connect(const char *dir, const char *file)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
int fd = ctl_create(dir, NULL);
|
int fd = socket(AF_UNIX, SOCK_DGRAM, 0);
|
||||||
|
|
||||||
if (connect(fd, (struct sockaddr *)&sun, sizeof(sun))) {
|
if (ctl_bind(fd, dir, NULL) ||
|
||||||
|
connect(fd, (struct sockaddr *)&sun, sizeof(sun))) {
|
||||||
int err = errno;
|
int err = errno;
|
||||||
ctl_delete(fd);
|
ctl_delete(fd);
|
||||||
errno = err;
|
errno = err;
|
||||||
|
|||||||
23
src/ctl.h
23
src/ctl.h
@@ -10,11 +10,8 @@
|
|||||||
enum ctl_type {
|
enum ctl_type {
|
||||||
CTL_NONE = 0,
|
CTL_NONE = 0,
|
||||||
CTL_STATE,
|
CTL_STATE,
|
||||||
|
CTL_CONF,
|
||||||
CTL_STATUS,
|
CTL_STATUS,
|
||||||
CTL_MTU,
|
|
||||||
CTL_TC,
|
|
||||||
CTL_KXTIMEOUT,
|
|
||||||
CTL_TIMETOLERANCE,
|
|
||||||
CTL_PATH_STATUS,
|
CTL_PATH_STATUS,
|
||||||
CTL_BAD,
|
CTL_BAD,
|
||||||
};
|
};
|
||||||
@@ -28,8 +25,10 @@ struct ctl_msg {
|
|||||||
enum mud_state state;
|
enum mud_state state;
|
||||||
unsigned long rate_tx;
|
unsigned long rate_tx;
|
||||||
unsigned long rate_rx;
|
unsigned long rate_rx;
|
||||||
|
unsigned long beat;
|
||||||
|
unsigned char fixed_rate;
|
||||||
|
unsigned char loss_limit;
|
||||||
} path;
|
} path;
|
||||||
struct mud_path path_status;
|
|
||||||
struct {
|
struct {
|
||||||
char tun_name[64];
|
char tun_name[64];
|
||||||
long pid;
|
long pid;
|
||||||
@@ -38,14 +37,14 @@ struct ctl_msg {
|
|||||||
struct sockaddr_storage bind;
|
struct sockaddr_storage bind;
|
||||||
struct sockaddr_storage peer;
|
struct sockaddr_storage peer;
|
||||||
} status;
|
} status;
|
||||||
|
struct mud_conf conf;
|
||||||
|
struct mud_path path_status;
|
||||||
struct mud_bad bad;
|
struct mud_bad bad;
|
||||||
size_t mtu;
|
|
||||||
int tc;
|
|
||||||
unsigned long ms;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
int ctl_create (const char *, const char *);
|
char *ctl_rundir (char *, size_t);
|
||||||
int ctl_connect (const char *, const char *);
|
int ctl_create (const char *);
|
||||||
int ctl_reply (int, struct ctl_msg *, struct ctl_msg *);
|
int ctl_connect (const char *);
|
||||||
void ctl_delete (int);
|
int ctl_reply (int, struct ctl_msg *, struct ctl_msg *);
|
||||||
|
void ctl_delete (int);
|
||||||
|
|||||||
41
src/path.c
41
src/path.c
@@ -31,8 +31,6 @@ gt_path_print_status(struct mud_path *path, int term)
|
|||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *statusstr = path->ok ? "OK" : "DEGRADED";
|
|
||||||
|
|
||||||
printf(term ? "path %s\n"
|
printf(term ? "path %s\n"
|
||||||
" status: %s\n"
|
" status: %s\n"
|
||||||
" bind: %s port %"PRIu16"\n"
|
" bind: %s port %"PRIu16"\n"
|
||||||
@@ -41,6 +39,9 @@ gt_path_print_status(struct mud_path *path, int term)
|
|||||||
" mtu: %zu bytes\n"
|
" mtu: %zu bytes\n"
|
||||||
" rtt: %.3f ms\n"
|
" rtt: %.3f ms\n"
|
||||||
" rttvar: %.3f ms\n"
|
" rttvar: %.3f ms\n"
|
||||||
|
" rate: %s\n"
|
||||||
|
" losslim: %u\n"
|
||||||
|
" beat: %"PRIu64" ms\n"
|
||||||
" tx:\n"
|
" tx:\n"
|
||||||
" rate: %"PRIu64" bytes/sec\n"
|
" rate: %"PRIu64" bytes/sec\n"
|
||||||
" loss: %"PRIu64" percent\n"
|
" loss: %"PRIu64" percent\n"
|
||||||
@@ -52,11 +53,13 @@ gt_path_print_status(struct mud_path *path, int term)
|
|||||||
: "path %s %s"
|
: "path %s %s"
|
||||||
" %s %"PRIu16" %s %"PRIu16" %s %"PRIu16
|
" %s %"PRIu16" %s %"PRIu16" %s %"PRIu16
|
||||||
" %zu %.3f %.3f"
|
" %zu %.3f %.3f"
|
||||||
|
" %s %u"
|
||||||
|
" %"PRIu64
|
||||||
" %"PRIu64" %"PRIu64" %"PRIu64
|
" %"PRIu64" %"PRIu64" %"PRIu64
|
||||||
" %"PRIu64" %"PRIu64" %"PRIu64
|
" %"PRIu64" %"PRIu64" %"PRIu64
|
||||||
"\n",
|
"\n",
|
||||||
statestr,
|
statestr,
|
||||||
statusstr,
|
path->ok ? "OK" : "DEGRADED",
|
||||||
bindstr[0] ? bindstr : "-",
|
bindstr[0] ? bindstr : "-",
|
||||||
gt_get_port((struct sockaddr *)&path->local_addr),
|
gt_get_port((struct sockaddr *)&path->local_addr),
|
||||||
publstr[0] ? publstr : "-",
|
publstr[0] ? publstr : "-",
|
||||||
@@ -66,11 +69,14 @@ gt_path_print_status(struct mud_path *path, int term)
|
|||||||
path->mtu.ok,
|
path->mtu.ok,
|
||||||
(double)path->rtt.val / 1e3,
|
(double)path->rtt.val / 1e3,
|
||||||
(double)path->rtt.var / 1e3,
|
(double)path->rtt.var / 1e3,
|
||||||
|
path->conf.fixed_rate ? "fixed" : "auto",
|
||||||
|
path->conf.loss_limit * 100 / 255,
|
||||||
|
path->conf.beat / 1000,
|
||||||
path->tx.rate,
|
path->tx.rate,
|
||||||
path->tx.loss,
|
path->tx.loss * 100 / 255,
|
||||||
path->tx.total,
|
path->tx.total,
|
||||||
path->rx.rate,
|
path->rx.rate,
|
||||||
path->rx.loss,
|
path->rx.loss * 100 / 255,
|
||||||
path->rx.total);
|
path->rx.total);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,7 +102,7 @@ gt_path_cmp_addr(struct sockaddr_storage *a, struct sockaddr_storage *b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
gt_path_status(int fd, int state, struct sockaddr_storage *addr)
|
gt_path_status(int fd, enum mud_state state, struct sockaddr_storage *addr)
|
||||||
{
|
{
|
||||||
struct ctl_msg req = {
|
struct ctl_msg req = {
|
||||||
.type = CTL_PATH_STATUS,
|
.type = CTL_PATH_STATUS,
|
||||||
@@ -141,6 +147,7 @@ int
|
|||||||
gt_path(int argc, char **argv)
|
gt_path(int argc, char **argv)
|
||||||
{
|
{
|
||||||
const char *dev = NULL;
|
const char *dev = NULL;
|
||||||
|
unsigned int loss_limit = 0;
|
||||||
|
|
||||||
struct ctl_msg req = {
|
struct ctl_msg req = {
|
||||||
.type = CTL_STATE,
|
.type = CTL_STATE,
|
||||||
@@ -150,6 +157,7 @@ gt_path(int argc, char **argv)
|
|||||||
}, res = {0};
|
}, res = {0};
|
||||||
|
|
||||||
struct argz ratez[] = {
|
struct argz ratez[] = {
|
||||||
|
{"fixed|auto", NULL, NULL, argz_option},
|
||||||
{"tx", "BYTES/SEC", &req.path.rate_tx, argz_bytes},
|
{"tx", "BYTES/SEC", &req.path.rate_tx, argz_bytes},
|
||||||
{"rx", "BYTES/SEC", &req.path.rate_rx, argz_bytes},
|
{"rx", "BYTES/SEC", &req.path.rate_rx, argz_bytes},
|
||||||
{NULL}};
|
{NULL}};
|
||||||
@@ -159,12 +167,14 @@ gt_path(int argc, char **argv)
|
|||||||
{"dev", "NAME", &dev, argz_str},
|
{"dev", "NAME", &dev, argz_str},
|
||||||
{"up|backup|down", NULL, NULL, argz_option},
|
{"up|backup|down", NULL, NULL, argz_option},
|
||||||
{"rate", NULL, &ratez, argz_option},
|
{"rate", NULL, &ratez, argz_option},
|
||||||
|
{"beat", "SECONDS", &req.path.beat, argz_time},
|
||||||
|
{"losslimit", "PERCENT", &loss_limit, argz_percent},
|
||||||
{NULL}};
|
{NULL}};
|
||||||
|
|
||||||
if (argz(pathz, argc, argv))
|
if (argz(pathz, argc, argv))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
int fd = ctl_connect(GT_RUNDIR, dev);
|
int fd = ctl_connect(dev);
|
||||||
|
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
switch (fd) {
|
switch (fd) {
|
||||||
@@ -183,9 +193,11 @@ gt_path(int argc, char **argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int set_rate = argz_is_set(pathz, "rate");
|
int set = argz_is_set(pathz, "rate")
|
||||||
|
|| argz_is_set(pathz, "beat")
|
||||||
|
|| argz_is_set(pathz, "losslimit");
|
||||||
|
|
||||||
if (set_rate && !req.path.addr.ss_family) {
|
if (set && !req.path.addr.ss_family) {
|
||||||
gt_log("please specify a path\n");
|
gt_log("please specify a path\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@@ -198,10 +210,19 @@ gt_path(int argc, char **argv)
|
|||||||
req.path.state = MUD_DOWN;
|
req.path.state = MUD_DOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (loss_limit)
|
||||||
|
req.path.loss_limit = loss_limit * 255 / 100;
|
||||||
|
|
||||||
|
if (argz_is_set(ratez, "fixed")) {
|
||||||
|
req.path.fixed_rate = 3;
|
||||||
|
} else if (argz_is_set(ratez, "auto")) {
|
||||||
|
req.path.fixed_rate = 1;
|
||||||
|
}
|
||||||
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!req.path.addr.ss_family ||
|
if (!req.path.addr.ss_family ||
|
||||||
(req.path.state == MUD_EMPTY && !set_rate)) {
|
(req.path.state == MUD_EMPTY && !set)) {
|
||||||
ret = gt_path_status(fd, req.path.state, &req.path.addr);
|
ret = gt_path_status(fd, req.path.state, &req.path.addr);
|
||||||
} else {
|
} else {
|
||||||
ret = ctl_reply(fd, &res, &req);
|
ret = ctl_reply(fd, &res, &req);
|
||||||
|
|||||||
111
src/set.c
111
src/set.c
@@ -7,80 +7,6 @@
|
|||||||
|
|
||||||
#include "../argz/argz.h"
|
#include "../argz/argz.h"
|
||||||
|
|
||||||
static int
|
|
||||||
gt_set_mtu(int fd, size_t mtu)
|
|
||||||
{
|
|
||||||
struct ctl_msg res, req = {
|
|
||||||
.type = CTL_MTU,
|
|
||||||
.mtu = mtu,
|
|
||||||
};
|
|
||||||
|
|
||||||
int ret = ctl_reply(fd, &res, &req);
|
|
||||||
|
|
||||||
if (ret) {
|
|
||||||
perror("set mtu");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("mtu set to %zu\n", res.mtu);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
gt_set_kxtimeout(int fd, unsigned long ms)
|
|
||||||
{
|
|
||||||
struct ctl_msg res, req = {
|
|
||||||
.type = CTL_KXTIMEOUT,
|
|
||||||
.ms = ms,
|
|
||||||
};
|
|
||||||
|
|
||||||
int ret = ctl_reply(fd, &res, &req);
|
|
||||||
|
|
||||||
if (ret) {
|
|
||||||
perror("set kxtimeout");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
gt_set_timetolerance(int fd, unsigned long ms)
|
|
||||||
{
|
|
||||||
struct ctl_msg res, req = {
|
|
||||||
.type = CTL_TIMETOLERANCE,
|
|
||||||
.ms = ms,
|
|
||||||
};
|
|
||||||
|
|
||||||
int ret = ctl_reply(fd, &res, &req);
|
|
||||||
|
|
||||||
if (ret) {
|
|
||||||
perror("set timetolerance");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
gt_set_tc(int fd, int tc)
|
|
||||||
{
|
|
||||||
struct ctl_msg res, req = {
|
|
||||||
.type = CTL_TC,
|
|
||||||
.tc = tc,
|
|
||||||
};
|
|
||||||
|
|
||||||
int ret = ctl_reply(fd, &res, &req);
|
|
||||||
|
|
||||||
if (ret) {
|
|
||||||
perror("set tc");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
gt_argz_tc(void *data, int argc, char **argv)
|
gt_argz_tc(void *data, int argc, char **argv)
|
||||||
{
|
{
|
||||||
@@ -102,7 +28,7 @@ gt_argz_tc(void *data, int argc, char **argv)
|
|||||||
} else return -1;
|
} else return -1;
|
||||||
|
|
||||||
if (data)
|
if (data)
|
||||||
*(int *)data = val;
|
*(int *)data = (val << 1) | 1;
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@@ -111,23 +37,23 @@ int
|
|||||||
gt_set(int argc, char **argv)
|
gt_set(int argc, char **argv)
|
||||||
{
|
{
|
||||||
const char *dev = NULL;
|
const char *dev = NULL;
|
||||||
size_t mtu;
|
|
||||||
int tc;
|
struct ctl_msg req = {
|
||||||
unsigned long kxtimeout;
|
.type = CTL_CONF,
|
||||||
unsigned long timetolerance;
|
}, res = {0};
|
||||||
|
|
||||||
struct argz pathz[] = {
|
struct argz pathz[] = {
|
||||||
{"dev", "NAME", &dev, argz_str},
|
{"dev", "NAME", &dev, argz_str},
|
||||||
{"mtu", "BYTES", &mtu, argz_bytes},
|
{"tc", "CS|AF|EF", &req.conf.tc, gt_argz_tc},
|
||||||
{"tc", "CS|AF|EF", &tc, gt_argz_tc},
|
{"kxtimeout", "SECONDS", &req.conf.kxtimeout, argz_time},
|
||||||
{"kxtimeout", "SECONDS", &kxtimeout, argz_time},
|
{"timetolerance", "SECONDS", &req.conf.timetolerance, argz_time},
|
||||||
{"timetolerance", "SECONDS", &timetolerance, argz_time},
|
{"keepalive", "SECONDS", &req.conf.keepalive, argz_time},
|
||||||
{NULL}};
|
{NULL}};
|
||||||
|
|
||||||
if (argz(pathz, argc, argv))
|
if (argz(pathz, argc, argv))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
int fd = ctl_connect(GT_RUNDIR, dev);
|
int fd = ctl_connect(dev);
|
||||||
|
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
switch (fd) {
|
switch (fd) {
|
||||||
@@ -146,21 +72,12 @@ gt_set(int argc, char **argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ret = 0;
|
int ret = ctl_reply(fd, &res, &req);
|
||||||
|
|
||||||
if (argz_is_set(pathz, "mtu"))
|
if (ret)
|
||||||
ret |= gt_set_mtu(fd, mtu);
|
perror("set");
|
||||||
|
|
||||||
if (argz_is_set(pathz, "tc"))
|
|
||||||
ret |= gt_set_tc(fd, tc);
|
|
||||||
|
|
||||||
if (argz_is_set(pathz, "kxtimeout"))
|
|
||||||
ret |= gt_set_kxtimeout(fd, kxtimeout);
|
|
||||||
|
|
||||||
if (argz_is_set(pathz, "timetolerance"))
|
|
||||||
ret |= gt_set_timetolerance(fd, timetolerance);
|
|
||||||
|
|
||||||
ctl_delete(fd);
|
ctl_delete(fd);
|
||||||
|
|
||||||
return ret;
|
return !!ret;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ gt_show(int argc, char **argv)
|
|||||||
if (argz(showz, argc, argv))
|
if (argz(showz, argc, argv))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
int fd = ctl_connect(GT_RUNDIR, dev);
|
int fd = ctl_connect(dev);
|
||||||
|
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
switch (fd) {
|
switch (fd) {
|
||||||
|
|||||||
10
src/tun.c
10
src/tun.c
@@ -131,13 +131,21 @@ tun_create_by_name(char *name, size_t len, const char *dev_name)
|
|||||||
static int
|
static int
|
||||||
tun_create_by_name(char *name, size_t len, const char *dev_name)
|
tun_create_by_name(char *name, size_t len, const char *dev_name)
|
||||||
{
|
{
|
||||||
int ret = snprintf(name, len, "/dev/%s", dev_name);
|
int ret = snprintf(name, len, "%s", dev_name);
|
||||||
|
|
||||||
if (ret <= 0 || (size_t)ret >= len) {
|
if (ret <= 0 || (size_t)ret >= len) {
|
||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char tmp[64];
|
||||||
|
ret = snprintf(tmp, sizeof(tmp), "/dev/%s", dev_name);
|
||||||
|
|
||||||
|
if (ret <= 0 || (size_t)ret >= sizeof(tmp)) {
|
||||||
|
errno = EINVAL;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return open(tmp, O_RDWR);
|
return open(tmp, O_RDWR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user