Compare commits

...

16 Commits

Author SHA1 Message Date
angt
d526a3cfa5 Fix retry when kx fails 2015-12-12 12:19:09 +01:00
angt
0e319b068d Listener should retry accept() by default 2015-12-12 11:05:58 +01:00
angt
c82026cfd7 Update README.md 2015-12-11 17:44:16 +01:00
angt
109f70c208 Secret key must be stored in upper-case hex now 2015-12-11 17:33:35 +01:00
angt
23cdc37ea8 Add gt_tohex() and gt_fromhex() 2015-12-11 16:33:45 +01:00
angt
7688209093 Show tcp hdr in debug 2015-12-11 11:32:22 +01:00
angt
52a3a4b853 Add debug option to show ip_proto 2015-12-10 15:28:45 +01:00
angt
4cf0e7bc68 Function dt_ms() is pure too 2015-12-10 13:19:24 +01:00
angt
f36fde5054 Add ip_get_proto() 2015-12-10 13:17:27 +01:00
angt
e08eb73f98 Remove TCP_INFO 2015-12-10 12:33:54 +01:00
angt
f3143eff83 Do not print error for EPIPE or ECONNRESET on write() 2015-12-09 20:38:49 +01:00
angt
ea1fa120eb Allow IPv6 2015-12-09 20:27:40 +01:00
angt
be29a12842 Deploy only on linux-gcc 2015-12-09 11:25:51 +01:00
angt
113f1ae58d Use file_glob in travis 2015-12-08 18:27:59 +01:00
angt
73fff34bfe Try to deploy with travis 2015-12-08 18:10:39 +01:00
angt
84ae6dae32 Use printf instead of echo -n 2015-12-08 15:16:22 +01:00
8 changed files with 181 additions and 95 deletions

View File

@@ -18,3 +18,15 @@ before_script:
script:
- ./configure --disable-dependency-tracking && make distcheck
deploy:
provider: releases
api_key:
secure: Ira1jd3j+17QVFbJ7KlkytTNp0oMZLTqCWPQLxNHLEt32PVY/IPs/16BcvTbFpKrY+Ma7E3KCihfufTVG8T+jRlZ5hFO7HNpoQMgi7L7yZZAGScYO5pnMQvsr8O9hf7jzSi1DjFXgFHznbPJJ3lOSwegcqzSrbZflokiCR50GTLLWewHoPpfs+1gJ5XbtVyRhZlmXhMPC0NEH2sh33X2WdUiKUJUMOnlYC0atPBL+4n12qxnugF9YA9wPK5NHJSLiPHue7I2rHlSrOLX5NkN3vqnEvusiuIFQX1y0NuKtkpOscFD9n1CLHThGLuzMvPlwpdQfzRMVxwjYFGu6Ma5alf64ksFnMKl8Oo0yCXEA7WvHXz+qUai/a1gzYZLTGuasHtjrHN/mgKxM4QRSiHo8t5hj3CczUW+OFglytawZQyGjyUUiKdwx2kvlO96RVDIYEhUD4DeHzHR8rhvDLmlMlGAWqUPXq7d4D+bExqKmqWCCSkhrbubq5B1kChRmgw7/gly4SryqGy+R0xsC4oq9jUUxd7Sl801BIKcYDb5r5gFSw+hEhOzBb+uE2xJYFNO2KZ+eG69lkFeG3oNJMTy8afs8fRRUXq0poQJ39wFWerps3Md7h8Sxs61YLIAKHvLJJMfoMI+AORTcjnnpqujMhgWGWt8wLhJZdxaSycoQkU=
skip_cleanup: true
file_glob: true
file: glorytun-*.tar.gz
on:
tags: true
repo: angt/glorytun
condition: "${TRAVIS_OS_NAME}-${CC} == linux-gcc"

View File

@@ -18,5 +18,5 @@ To build and install the latest version:
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 [...]

View File

@@ -43,6 +43,7 @@ static inline size_t str_cpy (char *restrict dst, const char *restrict src, size
return i;
}
_pure_
static inline int str_cmp (const char *restrict sa, const char *restrict sb)
{
if (!sa || !sb)
@@ -55,6 +56,7 @@ static inline int str_cmp (const char *restrict sa, const char *restrict sb)
return 1;
}
_pure_
static inline size_t str_len (const char *restrict str)
{
if (!str)
@@ -111,16 +113,19 @@ static inline void buffer_format (buffer_t *buffer)
buffer->read = buffer->data;
}
_pure_
static inline size_t buffer_size (buffer_t *buffer)
{
return buffer->end-buffer->data;
}
_pure_
static inline size_t buffer_write_size (buffer_t *buffer)
{
return buffer->end-buffer->write;
}
_pure_
static inline size_t buffer_read_size (buffer_t *buffer)
{
return buffer->write-buffer->read;

View File

@@ -38,3 +38,53 @@ void gt_na (const char *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<2*src_size+1)
return -1;
const char tbl[] = "0123456789ABCDEF";
for (size_t i=0; i<src_size; i++) {
dst[(i<<1)+0] = tbl[0xF&(src[i]>>4)];
dst[(i<<1)+1] = tbl[0xF&(src[i])];
}
dst[2*src_size] = 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_(src_size>2*dst_size)
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[i>>1] = (a<<4)|b;
}
return 0;
}

View File

@@ -20,6 +20,8 @@
#define _printf_(A,B) __attribute__((format(printf,A,B)))
#define _noreturn_ __attribute__((noreturn))
#define _unused_ __attribute__((unused))
#define _pure_ __attribute__((pure))
#define _const_ __attribute__((const))
#define _align_(...) __attribute__((aligned(__VA_ARGS__)))
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_fatal (const char *, ...) _printf_(1,2) _noreturn_;
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);

View File

@@ -2,6 +2,7 @@
#include <stdint.h>
_pure_
static inline int ip_get_version (const uint8_t *data, size_t size)
{
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;
}
static inline void ip_set_size (uint8_t *data, size_t size)
{
data[2] = 0xFF&(size>>8);
data[3] = 0xFF&(size);
}
_pure_
static inline ssize_t ip_get_size (const uint8_t *data, size_t size)
{
switch (ip_get_version(data, size)) {
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:
return -1;
}
@@ -28,11 +26,31 @@ static inline ssize_t ip_get_size (const uint8_t *data, size_t size)
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)) {
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;

View File

@@ -6,6 +6,7 @@
#include <sys/time.h>
#include <sys/fcntl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
@@ -50,6 +51,7 @@ struct crypto_ctx {
volatile sig_atomic_t gt_close = 0;
volatile sig_atomic_t gt_info = 0;
_pure_
static int64_t dt_ms (struct timeval *ta, struct timeval *tb)
{
const int64_t s = ta->tv_sec-tb->tv_sec;
@@ -245,38 +247,6 @@ static char *sk_get_name (int fd)
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)
{
if (!port || !port[0]) {
@@ -380,6 +350,9 @@ static ssize_t fd_write (int fd, const void *data, size_t size)
if (errno==EAGAIN || errno==EINTR)
return -1;
if (errno==EPIPE || errno==ECONNRESET)
return 0;
if (errno)
perror("write");
@@ -510,22 +483,45 @@ static int gt_decrypt (struct crypto_ctx *ctx, buffer_t *dst, buffer_t *src)
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)
return;
const int ip_version = ip_get_version(data, GT_MTU_MAX);
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 hex[41];
char ip_src[33];
char ip_dst[33];
for (size_t i=0; i<20; i++) {
hex[(i<<1)+0] = tbl[0xF&(data[i]>>4)];
hex[(i<<1)+1] = tbl[0xF&(data[i])];
switch (ip_version) {
case 4:
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 || ip_proto!=6)
return;
struct tcphdr tcp;
byte_cpy(&tcp, &data[ip_hdr_size], sizeof(tcp));
tcp.source = ntohs(tcp.source);
tcp.dest = ntohs(tcp.dest);
tcp.seq = ntohl(tcp.seq);
tcp.ack_seq = ntohl(tcp.ack_seq);
tcp.window = ntohs(tcp.window);
gt_log("%s: tcp src=%i dst=%i seq=%u ack=%u win=%u %s%s%s%s%s%s\n",
sockname, tcp.source, tcp.dest, tcp.seq, tcp.ack_seq, tcp.window,
tcp.fin?"FIN ":"", tcp.syn?"SYN ":"", tcp.rst?"RST ":"",
tcp.psh?"PSH ":"", tcp.ack?"ACK ":"", tcp.urg?"URG ":"");
}
static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
@@ -548,13 +544,20 @@ static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
return -1;
}
if (fd_read_all(fd, ctx->skey, size)!=size) {
gt_log("unable to read secret key in `%s'\n", keyfile);
char key[2*size];
size_t r = fd_read_all(fd, key, sizeof(key));
close(fd);
if (r!=sizeof(key)) {
gt_log("unable to read secret key\n");
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;
}
@@ -656,8 +659,8 @@ int main (int argc, char **argv)
long ka_idle = -1;
long ka_interval = -1;
long retry_count = 0;
long retry_slope = 1000;
long retry_count = -1;
long retry_slope = 0;
long retry_const = 0;
long retry_limit = 1000000;
@@ -690,6 +693,7 @@ int main (int argc, char **argv)
{ "noquickack", NULL, option_option },
{ "retry", &retry_opts, option_option },
{ "daemon", NULL, option_option },
{ "debug", NULL, option_option },
{ "version", NULL, option_option },
{ NULL },
};
@@ -706,12 +710,16 @@ int main (int argc, char **argv)
const int delay = option_is_set(opts, "delay");
const int keepalive = option_is_set(opts, "keepalive");
const int noquickack = option_is_set(opts, "noquickack");
const int debug = option_is_set(opts, "debug");
if (buffer_size < 2048) {
buffer_size = 2048;
gt_log("buffer size must be greater than 2048!\n");
}
if (!listener && !option_is_set(opts, "retry"))
retry_count = 0;
if (sodium_init()==-1) {
gt_log("libsodium initialization has failed!\n");
return 1;
@@ -784,33 +792,30 @@ int main (int argc, char **argv)
long retry = 0;
while (!gt_close) {
sock.fd = listener?sk_accept(fd):sk_create(ai, sk_connect);
if (sock.fd==-1) {
if (retry<LONG_MAX)
retry++;
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",
if (retry_count>=0 && retry>=retry_count+1) {
gt_log("couldn't %s (%d attempt%s)\n", listener?"listen":"connect",
(int)retry, (retry>1)?"s":"");
break;
}
if (retry_slope || retry_const) {
long usec = retry*retry_slope+retry_const;
if (usec>retry_limit)
usec = retry_limit;
if (usec<=0)
usec = 0;
if (usleep(usec)==-1 && errno==EINVAL)
if (usec>0 && usleep(usec)==-1 && errno==EINVAL)
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);
if (!sockname) {
@@ -901,17 +906,6 @@ int main (int argc, char **argv)
// struct timeval now;
// 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)) {
while (!blks[blk_write].size) {
uint8_t *data = blks[blk_write].data;
@@ -928,14 +922,16 @@ int main (int argc, char **argv)
continue;
if _0_(ip_size!=r) {
dump_ip_header(data, r);
if (r>ip_size)
char tmp[2*GT_MTU_MAX+1];
gt_tohex(tmp, sizeof(tmp), data, r);
gt_log("%s: DUMP %zi %s\n", sockname, r, tmp);
continue;
ip_set_size(data, r);
}
if _0_(debug)
gt_print_hdr(data, ip_size, sockname);
blks[blk_write++].size = r;
blk_count++;
}

View File

@@ -6,4 +6,4 @@
[ -z "${VERSION}" ] && VERSION=`basename \`pwd\`` \
&& VERSION=${VERSION#*-}
echo -n ${VERSION}
printf ${VERSION}