Compare commits

...

14 Commits

Author SHA1 Message Date
angt
8989138051 Version 0.0.8 2015-11-27 14:53:18 +01:00
angt
c2f76213cc Add noquickack option 2015-11-27 14:52:52 +01:00
angt
6ed736327a Align blk.data to 16 bytes 2015-11-27 08:07:53 +01:00
angt
e20be0ad97 Keep it simple and use the right tools 2015-11-27 07:56:40 +01:00
angt
2e7355bb92 Write shutdown() should be called only one time 2015-11-27 07:44:45 +01:00
angt
8ec7238f49 Version 0.0.7 2015-11-25 15:50:38 +01:00
angt
ac10f5a4e1 Fix prio and add priority size option 2015-11-25 15:49:45 +01:00
angt
d658669a04 Beautify usage 2015-11-24 18:42:14 +01:00
angt
746d998d4e Add some useless free() 2015-11-24 13:34:29 +01:00
angt
d1c51d90d4 Version 0.0.6 2015-11-24 11:30:04 +01:00
angt
0b1303b029 Add dscp-prio option (first qos draft) 2015-11-24 11:05:16 +01:00
angt
a78089ba10 Version 0.0.5 2015-11-23 12:13:42 +01:00
angt
128aaae368 Add daemon option (only one fork) 2015-11-23 12:12:28 +01:00
angt
230c9fa26a Little fix and cleanup 2015-11-21 19:09:21 +01:00
5 changed files with 113 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([glorytun], [0.0.4], [https://github.com/angt/glorytun/issues],
AC_INIT([glorytun], [0.0.8], [https://github.com/angt/glorytun/issues],
[glorytun], [https://github.com/angt/glorytun])
AC_CONFIG_SRCDIR([src/common.h])
AC_CONFIG_AUX_DIR([build-aux])

View File

@@ -14,9 +14,13 @@
#define PALIGN(x) ((void *)ALIGN((size_t)(x)))
#define PALIGN_DOWN(x) ((void *)ALIGN_DOWN((size_t)(x)))
#define _1_(x) (__builtin_expect((x), 1))
#define _0_(x) (__builtin_expect((x), 0))
#define _printf_(A,B) __attribute__((format(printf,A,B)))
#define _noreturn_ __attribute__((noreturn))
#define _unused_ __attribute__((unused))
#define _align_(...) __attribute__((aligned(__VA_ARGS__)))
typedef struct buffer buffer_t;

View File

@@ -28,3 +28,12 @@ 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)
{
switch (ip_get_version(data, size)) {
case 4:
return data[1]>>2;
}
return 0;
}

View File

@@ -24,6 +24,9 @@
#define GT_BUFFER_SIZE (4*1024*1024)
#define GT_TIMEOUT (1000)
#define GT_MTU_MAX (1500)
#define GT_TUNR_SIZE (0x7FFF-16)
#define GT_TUNW_SIZE (0x7FFF)
struct fdbuf {
int fd;
@@ -31,6 +34,11 @@ struct fdbuf {
buffer_t write;
};
struct blk {
size_t size;
uint8_t data[GT_MTU_MAX] _align_(16);
};
struct crypto_ctx {
struct {
crypto_aead_aes256gcm_state state;
@@ -75,6 +83,7 @@ enum sk_opt {
sk_keepintvl,
sk_congestion,
sk_defer_accept,
sk_quickack,
};
static void sk_set (int fd, enum sk_opt opt, const void *val, socklen_t len)
@@ -114,6 +123,11 @@ static void sk_set (int fd, enum sk_opt opt, const void *val, socklen_t len)
[sk_defer_accept] = { "TCP_DEFER_ACCEPT",
#ifdef TCP_DEFER_ACCEPT
1, IPPROTO_TCP, TCP_DEFER_ACCEPT,
#endif
},
[sk_quickack] = { "TCP_QUICKACK",
#ifdef TCP_QUICKACK
1, IPPROTO_TCP, TCP_QUICKACK,
#endif
},
};
@@ -655,6 +669,8 @@ int main (int argc, char **argv)
{ "multiqueue", NULL, option_option },
{ "keepalive", ka_opts, option_option },
{ "buffer-size", &buffer_size, option_long },
{ "noquickack", NULL, option_option },
{ "daemon", NULL, option_option },
{ "debug", NULL, option_option },
{ "version", NULL, option_option },
{ NULL },
@@ -672,6 +688,7 @@ int main (int argc, char **argv)
int delay = option_is_set(opts, "delay");
int debug = option_is_set(opts, "debug");
int keepalive = option_is_set(opts, "keepalive");
int noquickack = option_is_set(opts, "noquickack");
if (buffer_size < 2048) {
buffer_size = 2048;
@@ -706,10 +723,18 @@ int main (int argc, char **argv)
if (tun.fd==-1)
return 1;
struct blk *blks = calloc(256, sizeof(struct blk));
size_t blk_count = 0;
uint8_t blk_read = 0;
uint8_t blk_write = 0;
if (!blks)
return 1;
fd_set_nonblock(tun.fd);
buffer_setup(&tun.write, NULL, 32*1024);
buffer_setup(&tun.read, NULL, 32*1024);
buffer_setup(&tun.write, NULL, GT_TUNW_SIZE);
buffer_setup(&tun.read, NULL, GT_TUNR_SIZE);
buffer_setup(&sock.write, NULL, buffer_size);
buffer_setup(&sock.read, NULL, buffer_size);
@@ -723,18 +748,34 @@ int main (int argc, char **argv)
return 1;
}
if (option_is_set(opts, "daemon")) {
switch (fork()) {
case -1:
perror("fork");
return 1;
case 0:
if (setsid()==-1)
perror("setsid");
break;
default:
_exit(0);
}
}
while (!gt_close) {
sock.fd = listener?sk_accept(fd):sk_create(ai, sk_connect);
if (sock.fd==-1) {
usleep(100000);
goto restart;
continue;
}
char *sockname = sk_get_name(sock.fd);
if (!sockname)
goto restart;
if (!sockname) {
close(sock.fd);
continue;
}
gt_log("%s: connected\n", sockname);
@@ -773,7 +814,7 @@ int main (int argc, char **argv)
while (1) {
if (gt_close)
stop_loop = 1;
stop_loop |= 1;
if (stop_loop) {
if (((stop_loop&(1<<2)) || !buffer_read_size(&sock.write)) &&
@@ -786,7 +827,7 @@ int main (int argc, char **argv)
FD_SET(sock.fd, &rfds);
if (buffer_read_size(&tun.read))
if (buffer_read_size(&tun.read) || blk_count)
FD_SET(sock.fd, &wfds);
if (buffer_read_size(&sock.read))
@@ -799,6 +840,9 @@ int main (int argc, char **argv)
return 1;
}
FD_CLR(sock.fd, &wfds);
FD_CLR(tun.fd, &wfds);
#ifdef TCP_INFO
struct timeval now;
gettimeofday(&now, NULL);
@@ -810,16 +854,10 @@ int main (int argc, char **argv)
}
#endif
buffer_shift(&tun.read);
if (FD_ISSET(tun.fd, &rfds)) {
while (1) {
size_t size = buffer_write_size(&tun.read);
if (size<1500)
break;
ssize_t r = tun_read(tun.fd, tun.read.write, size);
while (!blks[blk_write].size) {
uint8_t *data = blks[blk_write].data;
ssize_t r = tun_read(tun.fd, data, GT_MTU_MAX);
if (!r)
return 2;
@@ -827,30 +865,46 @@ int main (int argc, char **argv)
if (r<0)
break;
ssize_t ip_size = ip_get_size(tun.read.write, size);
ssize_t ip_size = ip_get_size(data, GT_MTU_MAX);
if (ip_size<=0)
continue;
if (ip_size!=r) {
dump_ip_header(tun.read.write, r);
dump_ip_header(data, r);
if (r<ip_size) {
ip_set_size(tun.read.write, r);
ip_set_size(data, r);
} else {
continue;
}
}
tun.read.write += r;
blks[blk_write++].size = r;
blk_count++;
}
}
buffer_shift(&tun.read);
while (blk_count) {
if (!blks[blk_read].size) {
blk_read++;
continue;
}
if (buffer_write_size(&tun.read)<blks[blk_read].size)
break;
byte_cpy(tun.read.write, blks[blk_read].data, blks[blk_read].size);
tun.read.write += blks[blk_read].size;
blks[blk_read++].size = 0;
blk_count--;
}
gt_encrypt(&ctx, &sock.write, &tun.read);
if (FD_ISSET(sock.fd, &wfds))
FD_CLR(sock.fd, &wfds);
if (buffer_read_size(&sock.write)) {
ssize_t r = fd_write(sock.fd, sock.write.read,
buffer_read_size(&sock.write));
@@ -864,7 +918,8 @@ int main (int argc, char **argv)
if (r>0)
sock.write.read += r;
} else {
if (stop_loop) {
if (stop_loop && !(stop_loop>>2)) {
stop_loop |= (1<<2);
gt_log("%s: shutdown\n", sockname);
shutdown(sock.fd, SHUT_WR);
}
@@ -874,6 +929,9 @@ int main (int argc, char **argv)
buffer_shift(&sock.read);
if (FD_ISSET(sock.fd, &rfds)) {
if (noquickack)
sk_set_int(sock.fd, sk_quickack, 0);
ssize_t r = fd_read(sock.fd, sock.read.write,
buffer_write_size(&sock.read));
@@ -884,15 +942,12 @@ int main (int argc, char **argv)
sock.read.write += r;
}
while (1) {
if (gt_decrypt(&ctx, &tun.write, &sock.read)) {
gt_log("%s: message could not be verified!\n", sockname);
goto restart;
}
if (FD_ISSET(tun.fd, &wfds))
FD_CLR(tun.fd, &wfds);
while (1) {
size_t size = buffer_read_size(&tun.write);
ssize_t ip_size = ip_get_size(tun.write.read, size);
@@ -933,8 +988,13 @@ int main (int argc, char **argv)
freeaddrinfo(ai);
free(blks);
free(sock.write.data);
free(sock.read.data);
free(tun.write.data);
free(tun.read.data);
return 0;
}

View File

@@ -97,7 +97,7 @@ static int option_usage (struct option *opts, int slen)
int len = slen;
for (int k=0; opts[k].name; k++) {
if (len>60) {
if (len>slen+40) {
gt_print("\n%*s", (int)slen, "");
len = slen;
}
@@ -130,8 +130,10 @@ int option (struct option *opts, int argc, char **argv)
int slen = gt_print("usage: %s", argv[0]);
if (slen>40)
if (slen>40) {
slen = 12;
gt_print("\n%*s", (int)slen, "");
}
option_usage(opts, slen);