Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffa549e444 | ||
|
|
6040f17e1c | ||
|
|
da30c9110a | ||
|
|
05de7b8109 | ||
|
|
7cc6d08d7a | ||
|
|
d526a3cfa5 | ||
|
|
0e319b068d | ||
|
|
c82026cfd7 | ||
|
|
109f70c208 | ||
|
|
23cdc37ea8 | ||
|
|
7688209093 | ||
|
|
52a3a4b853 | ||
|
|
4cf0e7bc68 | ||
|
|
f36fde5054 | ||
|
|
e08eb73f98 | ||
|
|
f3143eff83 | ||
|
|
ea1fa120eb | ||
|
|
be29a12842 |
@@ -29,3 +29,4 @@ deploy:
|
|||||||
on:
|
on:
|
||||||
tags: true
|
tags: true
|
||||||
repo: angt/glorytun
|
repo: angt/glorytun
|
||||||
|
condition: "${TRAVIS_OS_NAME}-${CC} == linux-gcc"
|
||||||
|
|||||||
@@ -18,5 +18,5 @@ To build and install the latest version:
|
|||||||
|
|
||||||
To create and use a new secret key:
|
To create and use a new secret key:
|
||||||
|
|
||||||
$ dd if=/dev/urandom of=glorytun.key bs=32 count=1
|
$ hexdump -n 32 /dev/urandom -e '"%X"' > glorytun.key
|
||||||
# glorytun keyfile glorytun.key [...]
|
# glorytun keyfile glorytun.key [...]
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ static inline size_t str_cpy (char *restrict dst, const char *restrict src, size
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline int str_cmp (const char *restrict sa, const char *restrict sb)
|
static inline int str_cmp (const char *restrict sa, const char *restrict sb)
|
||||||
{
|
{
|
||||||
if (!sa || !sb)
|
if (!sa || !sb)
|
||||||
@@ -55,6 +56,7 @@ static inline int str_cmp (const char *restrict sa, const char *restrict sb)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline size_t str_len (const char *restrict str)
|
static inline size_t str_len (const char *restrict str)
|
||||||
{
|
{
|
||||||
if (!str)
|
if (!str)
|
||||||
@@ -111,16 +113,19 @@ static inline void buffer_format (buffer_t *buffer)
|
|||||||
buffer->read = buffer->data;
|
buffer->read = buffer->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline size_t buffer_size (buffer_t *buffer)
|
static inline size_t buffer_size (buffer_t *buffer)
|
||||||
{
|
{
|
||||||
return buffer->end-buffer->data;
|
return buffer->end-buffer->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline size_t buffer_write_size (buffer_t *buffer)
|
static inline size_t buffer_write_size (buffer_t *buffer)
|
||||||
{
|
{
|
||||||
return buffer->end-buffer->write;
|
return buffer->end-buffer->write;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline size_t buffer_read_size (buffer_t *buffer)
|
static inline size_t buffer_read_size (buffer_t *buffer)
|
||||||
{
|
{
|
||||||
return buffer->write-buffer->read;
|
return buffer->write-buffer->read;
|
||||||
|
|||||||
53
src/common.c
53
src/common.c
@@ -38,3 +38,56 @@ void gt_na (const char *name)
|
|||||||
{
|
{
|
||||||
gt_log("%s is not available on your platform!\n", name);
|
gt_log("%s is not available on your platform!\n", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int gt_tohex (char *dst, size_t dst_size, const uint8_t *src, size_t src_size)
|
||||||
|
{
|
||||||
|
if _0_(!dst_size)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if _0_(((dst_size-1)/2)<src_size)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
static const char tbl[] = "0123456789ABCDEF";
|
||||||
|
|
||||||
|
for (size_t i=0; i<src_size; i++) {
|
||||||
|
*dst++ = tbl[0xF&(src[i]>>4)];
|
||||||
|
*dst++ = tbl[0xF&(src[i])];
|
||||||
|
}
|
||||||
|
|
||||||
|
*dst = 0;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
_const_
|
||||||
|
static inline int fromhex (const char c)
|
||||||
|
{
|
||||||
|
if (c>='0' && c<='9')
|
||||||
|
return c-'0';
|
||||||
|
|
||||||
|
if (c>='A' && c<='F')
|
||||||
|
return c-'A'+10;
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int gt_fromhex (uint8_t *dst, size_t dst_size, const char *src, size_t src_size)
|
||||||
|
{
|
||||||
|
if _0_(src_size&1)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if _0_(dst_size<(src_size/2))
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
for (size_t i=0; i<src_size; i+=2) {
|
||||||
|
const int a = fromhex(src[i]);
|
||||||
|
const int b = fromhex(src[i+1]);
|
||||||
|
|
||||||
|
if _0_(a==-1 || b==-1)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
*dst++ = (a<<4)|b;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|||||||
@@ -20,6 +20,8 @@
|
|||||||
#define _printf_(A,B) __attribute__((format(printf,A,B)))
|
#define _printf_(A,B) __attribute__((format(printf,A,B)))
|
||||||
#define _noreturn_ __attribute__((noreturn))
|
#define _noreturn_ __attribute__((noreturn))
|
||||||
#define _unused_ __attribute__((unused))
|
#define _unused_ __attribute__((unused))
|
||||||
|
#define _pure_ __attribute__((pure))
|
||||||
|
#define _const_ __attribute__((const))
|
||||||
#define _align_(...) __attribute__((aligned(__VA_ARGS__)))
|
#define _align_(...) __attribute__((aligned(__VA_ARGS__)))
|
||||||
|
|
||||||
typedef struct buffer buffer_t;
|
typedef struct buffer buffer_t;
|
||||||
@@ -35,3 +37,6 @@ int gt_print (const char *, ...) _printf_(1,2);
|
|||||||
void gt_log (const char *, ...) _printf_(1,2);
|
void gt_log (const char *, ...) _printf_(1,2);
|
||||||
void gt_fatal (const char *, ...) _printf_(1,2) _noreturn_;
|
void gt_fatal (const char *, ...) _printf_(1,2) _noreturn_;
|
||||||
void gt_na (const char *);
|
void gt_na (const char *);
|
||||||
|
|
||||||
|
int gt_tohex (char *, size_t, const uint8_t *, size_t);
|
||||||
|
int gt_fromhex (uint8_t *, size_t, const char *, size_t);
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
_pure_
|
||||||
static inline int ip_get_version (const uint8_t *data, size_t size)
|
static inline int ip_get_version (const uint8_t *data, size_t size)
|
||||||
{
|
{
|
||||||
if (size<20) // XXX
|
if (size<20) // XXX
|
||||||
@@ -10,17 +11,14 @@ static inline int ip_get_version (const uint8_t *data, size_t size)
|
|||||||
return data[0]>>4;
|
return data[0]>>4;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void ip_set_size (uint8_t *data, size_t size)
|
_pure_
|
||||||
{
|
|
||||||
data[2] = 0xFF&(size>>8);
|
|
||||||
data[3] = 0xFF&(size);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline ssize_t ip_get_size (const uint8_t *data, size_t size)
|
static inline ssize_t ip_get_size (const uint8_t *data, size_t size)
|
||||||
{
|
{
|
||||||
switch (ip_get_version(data, size)) {
|
switch (ip_get_version(data, size)) {
|
||||||
case 4:
|
case 4:
|
||||||
return (data[2]<<8)|data[3];
|
return ((data[2]<<8)|data[3]);
|
||||||
|
case 6:
|
||||||
|
return ((data[4]<<8)|data[5])+40;
|
||||||
case -1:
|
case -1:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -28,11 +26,31 @@ static inline ssize_t ip_get_size (const uint8_t *data, size_t size)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int ip_get_dscp (const uint8_t *data, size_t size)
|
_pure_
|
||||||
|
static inline ssize_t ip_get_proto (const uint8_t *data, size_t size)
|
||||||
{
|
{
|
||||||
switch (ip_get_version(data, size)) {
|
switch (ip_get_version(data, size)) {
|
||||||
case 4:
|
case 4:
|
||||||
return data[1]>>2;
|
return data[9];
|
||||||
|
case 6:
|
||||||
|
return data[6];
|
||||||
|
case -1:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
_pure_
|
||||||
|
static inline ssize_t ip_get_hdr_size (const uint8_t *data, size_t size)
|
||||||
|
{
|
||||||
|
switch (ip_get_version(data, size)) {
|
||||||
|
case 4:
|
||||||
|
return (data[0]&0xF)<<2;
|
||||||
|
case 6:
|
||||||
|
return 40;
|
||||||
|
case -1:
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
214
src/main.c
214
src/main.c
@@ -5,8 +5,15 @@
|
|||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/fcntl.h>
|
#include <sys/fcntl.h>
|
||||||
#include <sys/socket.h>
|
|
||||||
|
#ifndef __FAVOR_BSD
|
||||||
|
#define __FAVOR_BSD 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <netinet/in.h>
|
||||||
#include <netinet/tcp.h>
|
#include <netinet/tcp.h>
|
||||||
|
#include <netinet/udp.h>
|
||||||
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
|
||||||
@@ -50,6 +57,7 @@ struct crypto_ctx {
|
|||||||
volatile sig_atomic_t gt_close = 0;
|
volatile sig_atomic_t gt_close = 0;
|
||||||
volatile sig_atomic_t gt_info = 0;
|
volatile sig_atomic_t gt_info = 0;
|
||||||
|
|
||||||
|
_pure_
|
||||||
static int64_t dt_ms (struct timeval *ta, struct timeval *tb)
|
static int64_t dt_ms (struct timeval *ta, struct timeval *tb)
|
||||||
{
|
{
|
||||||
const int64_t s = ta->tv_sec-tb->tv_sec;
|
const int64_t s = ta->tv_sec-tb->tv_sec;
|
||||||
@@ -245,38 +253,6 @@ static char *sk_get_name (int fd)
|
|||||||
return str_cat(strs, COUNT(strs));
|
return str_cat(strs, COUNT(strs));
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef TCP_INFO
|
|
||||||
static socklen_t sk_get_info (int fd, struct tcp_info *ti)
|
|
||||||
{
|
|
||||||
socklen_t len = sizeof(struct tcp_info);
|
|
||||||
|
|
||||||
if (getsockopt(fd, SOL_TCP, TCP_INFO, ti, &len)==-1) {
|
|
||||||
perror("getsockopt TCP_INFO");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return len;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void print_tcp_info (const char *name, struct tcp_info *ti)
|
|
||||||
{
|
|
||||||
gt_log("%s: tcpinfo"
|
|
||||||
" rto:%" PRIu32 " ato:%" PRIu32 " snd_mss:%" PRIu32
|
|
||||||
" rcv_mss:%" PRIu32 " unacked:%" PRIu32 " sacked:%" PRIu32
|
|
||||||
" lost:%" PRIu32 " retrans:%" PRIu32 " fackets:%" PRIu32
|
|
||||||
" pmtu:%" PRIu32 " rcv_ssthresh:%" PRIu32 " rtt:%" PRIu32
|
|
||||||
" rttvar:%" PRIu32 " snd_ssthresh:%" PRIu32 " snd_cwnd:%" PRIu32
|
|
||||||
" advmss:%" PRIu32 " reordering:%" PRIu32 "\n",
|
|
||||||
name,
|
|
||||||
ti->tcpi_rto, ti->tcpi_ato, ti->tcpi_snd_mss,
|
|
||||||
ti->tcpi_rcv_mss, ti->tcpi_unacked, ti->tcpi_sacked,
|
|
||||||
ti->tcpi_lost, ti->tcpi_retrans, ti->tcpi_fackets,
|
|
||||||
ti->tcpi_pmtu, ti->tcpi_rcv_ssthresh, ti->tcpi_rtt,
|
|
||||||
ti->tcpi_rttvar, ti->tcpi_snd_ssthresh, ti->tcpi_snd_cwnd,
|
|
||||||
ti->tcpi_advmss, ti->tcpi_reordering);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct addrinfo *ai_create (const char *host, const char *port, int listener)
|
static struct addrinfo *ai_create (const char *host, const char *port, int listener)
|
||||||
{
|
{
|
||||||
if (!port || !port[0]) {
|
if (!port || !port[0]) {
|
||||||
@@ -380,6 +356,9 @@ static ssize_t fd_write (int fd, const void *data, size_t size)
|
|||||||
if (errno==EAGAIN || errno==EINTR)
|
if (errno==EAGAIN || errno==EINTR)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
if (errno==EPIPE || errno==ECONNRESET)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (errno)
|
if (errno)
|
||||||
perror("write");
|
perror("write");
|
||||||
|
|
||||||
@@ -389,15 +368,10 @@ static ssize_t fd_write (int fd, const void *data, size_t size)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t fd_read_all (int fd, void *data, size_t size)
|
static size_t fd_read_all (int fd, void *data, size_t size)
|
||||||
{
|
{
|
||||||
size_t done = 0;
|
size_t done = 0;
|
||||||
|
|
||||||
struct pollfd pollfd = {
|
|
||||||
.fd = fd,
|
|
||||||
.events = POLLIN,
|
|
||||||
};
|
|
||||||
|
|
||||||
while (done<size) {
|
while (done<size) {
|
||||||
ssize_t ret = fd_read(fd, (uint8_t *)data+done, size-done);
|
ssize_t ret = fd_read(fd, (uint8_t *)data+done, size-done);
|
||||||
|
|
||||||
@@ -405,8 +379,14 @@ static ssize_t fd_read_all (int fd, void *data, size_t size)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
if (ret<0) {
|
if (ret<0) {
|
||||||
|
struct pollfd pollfd = {
|
||||||
|
.fd = fd,
|
||||||
|
.events = POLLIN,
|
||||||
|
};
|
||||||
|
|
||||||
if (!poll(&pollfd, 1, GT_TIMEOUT))
|
if (!poll(&pollfd, 1, GT_TIMEOUT))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -416,15 +396,10 @@ static ssize_t fd_read_all (int fd, void *data, size_t size)
|
|||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t fd_write_all (int fd, const void *data, size_t size)
|
static size_t fd_write_all (int fd, const void *data, size_t size)
|
||||||
{
|
{
|
||||||
size_t done = 0;
|
size_t done = 0;
|
||||||
|
|
||||||
struct pollfd pollfd = {
|
|
||||||
.fd = fd,
|
|
||||||
.events = POLLOUT,
|
|
||||||
};
|
|
||||||
|
|
||||||
while (done<size) {
|
while (done<size) {
|
||||||
ssize_t ret = fd_write(fd, (const uint8_t *)data+done, size-done);
|
ssize_t ret = fd_write(fd, (const uint8_t *)data+done, size-done);
|
||||||
|
|
||||||
@@ -432,8 +407,14 @@ static ssize_t fd_write_all (int fd, const void *data, size_t size)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
if (ret<0) {
|
if (ret<0) {
|
||||||
|
struct pollfd pollfd = {
|
||||||
|
.fd = fd,
|
||||||
|
.events = POLLOUT,
|
||||||
|
};
|
||||||
|
|
||||||
if (!poll(&pollfd, 1, GT_TIMEOUT))
|
if (!poll(&pollfd, 1, GT_TIMEOUT))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -510,22 +491,64 @@ static int gt_decrypt (struct crypto_ctx *ctx, buffer_t *dst, buffer_t *src)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dump_ip_header (uint8_t *data, size_t size)
|
static void gt_print_hdr (uint8_t *data, size_t ip_size, const char *sockname)
|
||||||
{
|
{
|
||||||
if (size<20)
|
const int ip_version = ip_get_version(data, GT_MTU_MAX);
|
||||||
return;
|
const ssize_t ip_proto = ip_get_proto(data, GT_MTU_MAX);
|
||||||
|
const ssize_t ip_hdr_size = ip_get_hdr_size(data, GT_MTU_MAX);
|
||||||
|
|
||||||
const char tbl[] = "0123456789ABCDEF";
|
char ip_src[33];
|
||||||
char hex[41];
|
char ip_dst[33];
|
||||||
|
|
||||||
for (size_t i=0; i<20; i++) {
|
switch (ip_version) {
|
||||||
hex[(i<<1)+0] = tbl[0xF&(data[i]>>4)];
|
case 4:
|
||||||
hex[(i<<1)+1] = tbl[0xF&(data[i])];
|
gt_tohex(ip_src, sizeof(ip_src), &data[12], 4);
|
||||||
|
gt_tohex(ip_dst, sizeof(ip_dst), &data[16], 4);
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
gt_tohex(ip_src, sizeof(ip_src), &data[9], 16);
|
||||||
|
gt_tohex(ip_dst, sizeof(ip_dst), &data[25], 16);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
hex[40] = 0;
|
gt_log("%s: version=%i size=%zi proto=%zi src=%s dst=%s\n", sockname, ip_version, ip_size, ip_proto, ip_src, ip_dst);
|
||||||
|
|
||||||
gt_log("DUMP(%zu): %s\n", size, hex);
|
if (ip_hdr_size<=0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (ip_proto==6) {
|
||||||
|
struct tcphdr tcp;
|
||||||
|
|
||||||
|
byte_cpy(&tcp, &data[ip_hdr_size], sizeof(tcp));
|
||||||
|
|
||||||
|
tcp.th_sport = ntohs(tcp.th_sport);
|
||||||
|
tcp.th_dport = ntohs(tcp.th_dport);
|
||||||
|
tcp.th_seq = ntohl(tcp.th_seq);
|
||||||
|
tcp.th_ack = ntohl(tcp.th_ack);
|
||||||
|
tcp.th_win = ntohs(tcp.th_win);
|
||||||
|
|
||||||
|
gt_log("%s: tcp src=%u dst=%u seq=%u ack=%u win=%u %c%c%c%c%c%c\n",
|
||||||
|
sockname, tcp.th_sport, tcp.th_dport, tcp.th_seq, tcp.th_ack, tcp.th_win,
|
||||||
|
(tcp.th_flags&TH_FIN) ?'F':'.',
|
||||||
|
(tcp.th_flags&TH_SYN) ?'S':'.',
|
||||||
|
(tcp.th_flags&TH_RST) ?'R':'.',
|
||||||
|
(tcp.th_flags&TH_PUSH)?'P':'.',
|
||||||
|
(tcp.th_flags&TH_ACK) ?'A':'.',
|
||||||
|
(tcp.th_flags&TH_URG) ?'U':'.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ip_proto==17) {
|
||||||
|
struct udphdr udp;
|
||||||
|
|
||||||
|
byte_cpy(&udp, &data[ip_hdr_size], sizeof(udp));
|
||||||
|
|
||||||
|
udp.uh_sport = ntohs(udp.uh_sport);
|
||||||
|
udp.uh_dport = ntohs(udp.uh_dport);
|
||||||
|
udp.uh_ulen = ntohs(udp.uh_ulen);
|
||||||
|
|
||||||
|
gt_log("%s: udp src=%u dst=%u len=%u\n",
|
||||||
|
sockname, udp.uh_sport, udp.uh_dport, udp.uh_ulen);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
|
static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
|
||||||
@@ -548,13 +571,20 @@ static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fd_read_all(fd, ctx->skey, size)!=size) {
|
char key[2*size];
|
||||||
gt_log("unable to read secret key in `%s'\n", keyfile);
|
size_t r = fd_read_all(fd, key, sizeof(key));
|
||||||
close(fd);
|
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
if (r!=sizeof(key)) {
|
||||||
|
gt_log("unable to read secret key\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
if (gt_fromhex(ctx->skey, size, key, sizeof(key))) {
|
||||||
|
gt_log("secret key is not valid\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -656,8 +686,8 @@ int main (int argc, char **argv)
|
|||||||
long ka_idle = -1;
|
long ka_idle = -1;
|
||||||
long ka_interval = -1;
|
long ka_interval = -1;
|
||||||
|
|
||||||
long retry_count = 0;
|
long retry_count = -1;
|
||||||
long retry_slope = 1000;
|
long retry_slope = 0;
|
||||||
long retry_const = 0;
|
long retry_const = 0;
|
||||||
long retry_limit = 1000000;
|
long retry_limit = 1000000;
|
||||||
|
|
||||||
@@ -690,6 +720,7 @@ int main (int argc, char **argv)
|
|||||||
{ "noquickack", NULL, option_option },
|
{ "noquickack", NULL, option_option },
|
||||||
{ "retry", &retry_opts, option_option },
|
{ "retry", &retry_opts, option_option },
|
||||||
{ "daemon", NULL, option_option },
|
{ "daemon", NULL, option_option },
|
||||||
|
{ "debug", NULL, option_option },
|
||||||
{ "version", NULL, option_option },
|
{ "version", NULL, option_option },
|
||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
@@ -706,12 +737,16 @@ int main (int argc, char **argv)
|
|||||||
const int delay = option_is_set(opts, "delay");
|
const int delay = option_is_set(opts, "delay");
|
||||||
const int keepalive = option_is_set(opts, "keepalive");
|
const int keepalive = option_is_set(opts, "keepalive");
|
||||||
const int noquickack = option_is_set(opts, "noquickack");
|
const int noquickack = option_is_set(opts, "noquickack");
|
||||||
|
const int debug = option_is_set(opts, "debug");
|
||||||
|
|
||||||
if (buffer_size < 2048) {
|
if (buffer_size < 2048) {
|
||||||
buffer_size = 2048;
|
buffer_size = 2048;
|
||||||
gt_log("buffer size must be greater than 2048!\n");
|
gt_log("buffer size must be greater than 2048!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!listener && !option_is_set(opts, "retry"))
|
||||||
|
retry_count = 0;
|
||||||
|
|
||||||
if (sodium_init()==-1) {
|
if (sodium_init()==-1) {
|
||||||
gt_log("libsodium initialization has failed!\n");
|
gt_log("libsodium initialization has failed!\n");
|
||||||
return 1;
|
return 1;
|
||||||
@@ -784,33 +819,30 @@ int main (int argc, char **argv)
|
|||||||
long retry = 0;
|
long retry = 0;
|
||||||
|
|
||||||
while (!gt_close) {
|
while (!gt_close) {
|
||||||
sock.fd = listener?sk_accept(fd):sk_create(ai, sk_connect);
|
if (retry_count>=0 && retry>=retry_count+1) {
|
||||||
|
gt_log("couldn't %s (%d attempt%s)\n", listener?"listen":"connect",
|
||||||
if (sock.fd==-1) {
|
(int)retry, (retry>1)?"s":"");
|
||||||
if (retry<LONG_MAX)
|
break;
|
||||||
retry++;
|
}
|
||||||
|
|
||||||
|
if (retry_slope || retry_const) {
|
||||||
long usec = retry*retry_slope+retry_const;
|
long usec = retry*retry_slope+retry_const;
|
||||||
|
|
||||||
if (retry_count>=0 && retry>=retry_count) {
|
|
||||||
gt_log("couldn't %s (%d attempt%s)\n",
|
|
||||||
listener?"listen":"connect",
|
|
||||||
(int)retry, (retry>1)?"s":"");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (usec>retry_limit)
|
if (usec>retry_limit)
|
||||||
usec = retry_limit;
|
usec = retry_limit;
|
||||||
|
|
||||||
if (usec<=0)
|
if (usec>0 && usleep(usec)==-1 && errno==EINVAL)
|
||||||
usec = 0;
|
|
||||||
|
|
||||||
if (usleep(usec)==-1 && errno==EINVAL)
|
|
||||||
sleep(usec/1000000);
|
sleep(usec/1000000);
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (retry<LONG_MAX)
|
||||||
|
retry++;
|
||||||
|
|
||||||
|
sock.fd = listener?sk_accept(fd):sk_create(ai, sk_connect);
|
||||||
|
|
||||||
|
if (sock.fd==-1)
|
||||||
|
continue;
|
||||||
|
|
||||||
char *sockname = sk_get_name(sock.fd);
|
char *sockname = sk_get_name(sock.fd);
|
||||||
|
|
||||||
if (!sockname) {
|
if (!sockname) {
|
||||||
@@ -901,17 +933,6 @@ int main (int argc, char **argv)
|
|||||||
// struct timeval now;
|
// struct timeval now;
|
||||||
// gettimeofday(&now, NULL);
|
// gettimeofday(&now, NULL);
|
||||||
|
|
||||||
#ifdef TCP_INFO
|
|
||||||
if _0_(gt_info) {
|
|
||||||
struct tcp_info ti;
|
|
||||||
|
|
||||||
if (sk_get_info(sock.fd, &ti))
|
|
||||||
print_tcp_info(sockname, &ti);
|
|
||||||
|
|
||||||
gt_info = 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (FD_ISSET(tun.fd, &rfds)) {
|
if (FD_ISSET(tun.fd, &rfds)) {
|
||||||
while (!blks[blk_write].size) {
|
while (!blks[blk_write].size) {
|
||||||
uint8_t *data = blks[blk_write].data;
|
uint8_t *data = blks[blk_write].data;
|
||||||
@@ -928,14 +949,15 @@ int main (int argc, char **argv)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
if _0_(ip_size!=r) {
|
if _0_(ip_size!=r) {
|
||||||
dump_ip_header(data, r);
|
char tmp[2*GT_MTU_MAX+1];
|
||||||
|
gt_tohex(tmp, sizeof(tmp), data, r);
|
||||||
if (r>ip_size)
|
gt_log("%s: DUMP %zi %s\n", sockname, r, tmp);
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
ip_set_size(data, r);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _0_(debug)
|
||||||
|
gt_print_hdr(data, ip_size, sockname);
|
||||||
|
|
||||||
blks[blk_write++].size = r;
|
blks[blk_write++].size = r;
|
||||||
blk_count++;
|
blk_count++;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user