Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d526a3cfa5 | ||
|
|
0e319b068d | ||
|
|
c82026cfd7 | ||
|
|
109f70c208 | ||
|
|
23cdc37ea8 | ||
|
|
7688209093 | ||
|
|
52a3a4b853 | ||
|
|
4cf0e7bc68 | ||
|
|
f36fde5054 | ||
|
|
e08eb73f98 | ||
|
|
f3143eff83 | ||
|
|
ea1fa120eb | ||
|
|
be29a12842 | ||
|
|
113f1ae58d | ||
|
|
73fff34bfe | ||
|
|
84ae6dae32 | ||
|
|
5cf39c288c | ||
|
|
7a0db79e31 | ||
|
|
40d0b20ece | ||
|
|
09cd749107 | ||
|
|
9dda940928 | ||
|
|
b7b64f98fd | ||
|
|
ed2114a1ce | ||
|
|
8b6ae96a2e |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,9 +1,9 @@
|
|||||||
*.o
|
*.o
|
||||||
*.log
|
*.log
|
||||||
*.scan
|
*.scan
|
||||||
*.m4
|
|
||||||
*.cache
|
*.cache
|
||||||
*.status
|
*.status
|
||||||
|
aclocal.m4
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
configure
|
configure
|
||||||
|
|||||||
14
.travis.yml
14
.travis.yml
@@ -14,7 +14,19 @@ before_script:
|
|||||||
- export PKG_CONFIG_PATH=/tmp/lib/pkgconfig
|
- export PKG_CONFIG_PATH=/tmp/lib/pkgconfig
|
||||||
- git clone https://github.com/jedisct1/libsodium.git --branch=stable
|
- git clone https://github.com/jedisct1/libsodium.git --branch=stable
|
||||||
- cd libsodium && ./autogen.sh && ./configure --enable-minimal --disable-dependency-tracking --prefix=/tmp && make install && cd -
|
- cd libsodium && ./autogen.sh && ./configure --enable-minimal --disable-dependency-tracking --prefix=/tmp && make install && cd -
|
||||||
- ./autogen.sh
|
- ./autogen.sh
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./configure --disable-dependency-tracking && make distcheck
|
- ./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"
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
|
ACLOCAL_AMFLAGS = -I m4 --install
|
||||||
|
|
||||||
bin_PROGRAMS = glorytun
|
bin_PROGRAMS = glorytun
|
||||||
|
|
||||||
glorytun_CFLAGS = $(libsodium_CFLAGS)
|
glorytun_CFLAGS = $(libsodium_CFLAGS)
|
||||||
glorytun_LDADD = $(libsodium_LIBS)
|
glorytun_LDADD = $(libsodium_LIBS)
|
||||||
glorytun_SOURCES = \
|
glorytun_SOURCES = \
|
||||||
@@ -11,3 +14,9 @@ glorytun_SOURCES = \
|
|||||||
src/option.h \
|
src/option.h \
|
||||||
src/tun.c \
|
src/tun.c \
|
||||||
src/tun.h
|
src/tun.h
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
LICENSE \
|
||||||
|
README.md \
|
||||||
|
autogen.sh \
|
||||||
|
version.sh
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# Glorytun
|
# Glorytun
|
||||||
|
|
||||||
Small, Simple and Stupid **TCP** VPN.
|
Small, Simple and Stupid **TCP** VPN.
|
||||||
|
|
||||||
**Work In Progress:** Do not touch! This code will probably format your harddisk!
|
**Work In Progress:** Do not touch! This code will probably format your harddisk!
|
||||||
@@ -17,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 [...]
|
||||||
|
|||||||
@@ -1,2 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
autoreconf -i -f
|
autoreconf -i -f
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
AC_PREREQ([2.65])
|
AC_PREREQ([2.65])
|
||||||
AC_INIT([glorytun], [0.0.11], [https://github.com/angt/glorytun/issues],
|
AC_INIT([glorytun],
|
||||||
[glorytun], [https://github.com/angt/glorytun])
|
[m4_esyscmd([./version.sh])],
|
||||||
|
[https://github.com/angt/glorytun/issues],
|
||||||
|
[glorytun],
|
||||||
|
[https://github.com/angt/glorytun])
|
||||||
AC_CONFIG_SRCDIR([src/common.h])
|
AC_CONFIG_SRCDIR([src/common.h])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AM_INIT_AUTOMAKE([1.9 -Wall -Werror foreign tar-ustar subdir-objects])
|
AM_INIT_AUTOMAKE([1.9 -Wall -Werror foreign tar-ustar subdir-objects])
|
||||||
AM_DEP_TRACK
|
AM_DEP_TRACK
|
||||||
AM_SILENT_RULES([yes])
|
AM_SILENT_RULES([yes])
|
||||||
|
|||||||
275
m4/pkg.m4
Normal file
275
m4/pkg.m4
Normal file
@@ -0,0 +1,275 @@
|
|||||||
|
dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
|
||||||
|
dnl serial 11 (pkg-config-0.29)
|
||||||
|
dnl
|
||||||
|
dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
|
||||||
|
dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
|
||||||
|
dnl
|
||||||
|
dnl This program is free software; you can redistribute it and/or modify
|
||||||
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
|
dnl the Free Software Foundation; either version 2 of the License, or
|
||||||
|
dnl (at your option) any later version.
|
||||||
|
dnl
|
||||||
|
dnl This program is distributed in the hope that it will be useful, but
|
||||||
|
dnl WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
dnl General Public License for more details.
|
||||||
|
dnl
|
||||||
|
dnl You should have received a copy of the GNU General Public License
|
||||||
|
dnl along with this program; if not, write to the Free Software
|
||||||
|
dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
dnl 02111-1307, USA.
|
||||||
|
dnl
|
||||||
|
dnl As a special exception to the GNU General Public License, if you
|
||||||
|
dnl distribute this file as part of a program that contains a
|
||||||
|
dnl configuration script generated by Autoconf, you may include it under
|
||||||
|
dnl the same distribution terms that you use for the rest of that
|
||||||
|
dnl program.
|
||||||
|
|
||||||
|
dnl PKG_PREREQ(MIN-VERSION)
|
||||||
|
dnl -----------------------
|
||||||
|
dnl Since: 0.29
|
||||||
|
dnl
|
||||||
|
dnl Verify that the version of the pkg-config macros are at least
|
||||||
|
dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
|
||||||
|
dnl installed version of pkg-config, this checks the developer's version
|
||||||
|
dnl of pkg.m4 when generating configure.
|
||||||
|
dnl
|
||||||
|
dnl To ensure that this macro is defined, also add:
|
||||||
|
dnl m4_ifndef([PKG_PREREQ],
|
||||||
|
dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
|
||||||
|
dnl
|
||||||
|
dnl See the "Since" comment for each macro you use to see what version
|
||||||
|
dnl of the macros you require.
|
||||||
|
m4_defun([PKG_PREREQ],
|
||||||
|
[m4_define([PKG_MACROS_VERSION], [0.29])
|
||||||
|
m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
|
||||||
|
[m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
|
||||||
|
])dnl PKG_PREREQ
|
||||||
|
|
||||||
|
dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
|
||||||
|
dnl ----------------------------------
|
||||||
|
dnl Since: 0.16
|
||||||
|
dnl
|
||||||
|
dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
|
||||||
|
dnl first found in the path. Checks that the version of pkg-config found
|
||||||
|
dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
|
||||||
|
dnl used since that's the first version where most current features of
|
||||||
|
dnl pkg-config existed.
|
||||||
|
AC_DEFUN([PKG_PROG_PKG_CONFIG],
|
||||||
|
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
|
||||||
|
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
|
||||||
|
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
|
||||||
|
|
||||||
|
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
||||||
|
AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
|
||||||
|
fi
|
||||||
|
if test -n "$PKG_CONFIG"; then
|
||||||
|
_pkg_min_version=m4_default([$1], [0.9.0])
|
||||||
|
AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
|
||||||
|
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
PKG_CONFIG=""
|
||||||
|
fi
|
||||||
|
fi[]dnl
|
||||||
|
])dnl PKG_PROG_PKG_CONFIG
|
||||||
|
|
||||||
|
dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
|
||||||
|
dnl -------------------------------------------------------------------
|
||||||
|
dnl Since: 0.18
|
||||||
|
dnl
|
||||||
|
dnl Check to see whether a particular set of modules exists. Similar to
|
||||||
|
dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
|
||||||
|
dnl
|
||||||
|
dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
|
||||||
|
dnl only at the first occurence in configure.ac, so if the first place
|
||||||
|
dnl it's called might be skipped (such as if it is within an "if", you
|
||||||
|
dnl have to call PKG_CHECK_EXISTS manually
|
||||||
|
AC_DEFUN([PKG_CHECK_EXISTS],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
if test -n "$PKG_CONFIG" && \
|
||||||
|
AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
|
||||||
|
m4_default([$2], [:])
|
||||||
|
m4_ifvaln([$3], [else
|
||||||
|
$3])dnl
|
||||||
|
fi])
|
||||||
|
|
||||||
|
dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
|
||||||
|
dnl ---------------------------------------------
|
||||||
|
dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
|
||||||
|
dnl pkg_failed based on the result.
|
||||||
|
m4_define([_PKG_CONFIG],
|
||||||
|
[if test -n "$$1"; then
|
||||||
|
pkg_cv_[]$1="$$1"
|
||||||
|
elif test -n "$PKG_CONFIG"; then
|
||||||
|
PKG_CHECK_EXISTS([$3],
|
||||||
|
[pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
|
||||||
|
test "x$?" != "x0" && pkg_failed=yes ],
|
||||||
|
[pkg_failed=yes])
|
||||||
|
else
|
||||||
|
pkg_failed=untried
|
||||||
|
fi[]dnl
|
||||||
|
])dnl _PKG_CONFIG
|
||||||
|
|
||||||
|
dnl _PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
dnl ---------------------------
|
||||||
|
dnl Internal check to see if pkg-config supports short errors.
|
||||||
|
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
|
||||||
|
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
||||||
|
_pkg_short_errors_supported=yes
|
||||||
|
else
|
||||||
|
_pkg_short_errors_supported=no
|
||||||
|
fi[]dnl
|
||||||
|
])dnl _PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
|
||||||
|
|
||||||
|
dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
|
||||||
|
dnl [ACTION-IF-NOT-FOUND])
|
||||||
|
dnl --------------------------------------------------------------
|
||||||
|
dnl Since: 0.4.0
|
||||||
|
dnl
|
||||||
|
dnl Note that if there is a possibility the first call to
|
||||||
|
dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
|
||||||
|
dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
|
||||||
|
AC_DEFUN([PKG_CHECK_MODULES],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
|
||||||
|
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
|
||||||
|
|
||||||
|
pkg_failed=no
|
||||||
|
AC_MSG_CHECKING([for $1])
|
||||||
|
|
||||||
|
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
|
||||||
|
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
|
||||||
|
|
||||||
|
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
|
||||||
|
and $1[]_LIBS to avoid the need to call pkg-config.
|
||||||
|
See the pkg-config man page for more details.])
|
||||||
|
|
||||||
|
if test $pkg_failed = yes; then
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
_PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
if test $_pkg_short_errors_supported = yes; then
|
||||||
|
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
|
||||||
|
else
|
||||||
|
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
|
||||||
|
fi
|
||||||
|
# Put the nasty error message in config.log where it belongs
|
||||||
|
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
|
||||||
|
|
||||||
|
m4_default([$4], [AC_MSG_ERROR(
|
||||||
|
[Package requirements ($2) were not met:
|
||||||
|
|
||||||
|
$$1_PKG_ERRORS
|
||||||
|
|
||||||
|
Consider adjusting the PKG_CONFIG_PATH environment variable if you
|
||||||
|
installed software in a non-standard prefix.
|
||||||
|
|
||||||
|
_PKG_TEXT])[]dnl
|
||||||
|
])
|
||||||
|
elif test $pkg_failed = untried; then
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
m4_default([$4], [AC_MSG_FAILURE(
|
||||||
|
[The pkg-config script could not be found or is too old. Make sure it
|
||||||
|
is in your PATH or set the PKG_CONFIG environment variable to the full
|
||||||
|
path to pkg-config.
|
||||||
|
|
||||||
|
_PKG_TEXT
|
||||||
|
|
||||||
|
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
|
||||||
|
])
|
||||||
|
else
|
||||||
|
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
|
||||||
|
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
$3
|
||||||
|
fi[]dnl
|
||||||
|
])dnl PKG_CHECK_MODULES
|
||||||
|
|
||||||
|
|
||||||
|
dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
|
||||||
|
dnl [ACTION-IF-NOT-FOUND])
|
||||||
|
dnl ---------------------------------------------------------------------
|
||||||
|
dnl Since: 0.29
|
||||||
|
dnl
|
||||||
|
dnl Checks for existence of MODULES and gathers its build flags with
|
||||||
|
dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
|
||||||
|
dnl and VARIABLE-PREFIX_LIBS from --libs.
|
||||||
|
dnl
|
||||||
|
dnl Note that if there is a possibility the first call to
|
||||||
|
dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
|
||||||
|
dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
|
||||||
|
dnl configure.ac.
|
||||||
|
AC_DEFUN([PKG_CHECK_MODULES_STATIC],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
_save_PKG_CONFIG=$PKG_CONFIG
|
||||||
|
PKG_CONFIG="$PKG_CONFIG --static"
|
||||||
|
PKG_CHECK_MODULES($@)
|
||||||
|
PKG_CONFIG=$_save_PKG_CONFIG[]dnl
|
||||||
|
])dnl PKG_CHECK_MODULES_STATIC
|
||||||
|
|
||||||
|
|
||||||
|
dnl PKG_INSTALLDIR([DIRECTORY])
|
||||||
|
dnl -------------------------
|
||||||
|
dnl Since: 0.27
|
||||||
|
dnl
|
||||||
|
dnl Substitutes the variable pkgconfigdir as the location where a module
|
||||||
|
dnl should install pkg-config .pc files. By default the directory is
|
||||||
|
dnl $libdir/pkgconfig, but the default can be changed by passing
|
||||||
|
dnl DIRECTORY. The user can override through the --with-pkgconfigdir
|
||||||
|
dnl parameter.
|
||||||
|
AC_DEFUN([PKG_INSTALLDIR],
|
||||||
|
[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
|
||||||
|
m4_pushdef([pkg_description],
|
||||||
|
[pkg-config installation directory @<:@]pkg_default[@:>@])
|
||||||
|
AC_ARG_WITH([pkgconfigdir],
|
||||||
|
[AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
|
||||||
|
[with_pkgconfigdir=]pkg_default)
|
||||||
|
AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
|
||||||
|
m4_popdef([pkg_default])
|
||||||
|
m4_popdef([pkg_description])
|
||||||
|
])dnl PKG_INSTALLDIR
|
||||||
|
|
||||||
|
|
||||||
|
dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
|
||||||
|
dnl --------------------------------
|
||||||
|
dnl Since: 0.27
|
||||||
|
dnl
|
||||||
|
dnl Substitutes the variable noarch_pkgconfigdir as the location where a
|
||||||
|
dnl module should install arch-independent pkg-config .pc files. By
|
||||||
|
dnl default the directory is $datadir/pkgconfig, but the default can be
|
||||||
|
dnl changed by passing DIRECTORY. The user can override through the
|
||||||
|
dnl --with-noarch-pkgconfigdir parameter.
|
||||||
|
AC_DEFUN([PKG_NOARCH_INSTALLDIR],
|
||||||
|
[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
|
||||||
|
m4_pushdef([pkg_description],
|
||||||
|
[pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
|
||||||
|
AC_ARG_WITH([noarch-pkgconfigdir],
|
||||||
|
[AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
|
||||||
|
[with_noarch_pkgconfigdir=]pkg_default)
|
||||||
|
AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
|
||||||
|
m4_popdef([pkg_default])
|
||||||
|
m4_popdef([pkg_description])
|
||||||
|
])dnl PKG_NOARCH_INSTALLDIR
|
||||||
|
|
||||||
|
|
||||||
|
dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
|
||||||
|
dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
|
||||||
|
dnl -------------------------------------------
|
||||||
|
dnl Since: 0.28
|
||||||
|
dnl
|
||||||
|
dnl Retrieves the value of the pkg-config variable for the given module.
|
||||||
|
AC_DEFUN([PKG_CHECK_VAR],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
|
||||||
|
|
||||||
|
_PKG_CONFIG([$1], [variable="][$3]["], [$2])
|
||||||
|
AS_VAR_COPY([$1], [pkg_cv_][$1])
|
||||||
|
|
||||||
|
AS_VAR_IF([$1], [""], [$5], [$4])dnl
|
||||||
|
])dnl PKG_CHECK_VAR
|
||||||
@@ -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;
|
||||||
|
|||||||
50
src/common.c
50
src/common.c
@@ -38,3 +38,53 @@ 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<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;
|
||||||
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
181
src/main.c
181
src/main.c
@@ -6,6 +6,7 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/fcntl.h>
|
#include <sys/fcntl.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
#include <netinet/tcp.h>
|
#include <netinet/tcp.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
@@ -50,6 +51,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 +247,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]) {
|
||||||
@@ -347,7 +317,6 @@ static void gt_set_signal (void)
|
|||||||
sa.sa_handler = SIG_IGN;
|
sa.sa_handler = SIG_IGN;
|
||||||
sigaction(SIGHUP, &sa, NULL);
|
sigaction(SIGHUP, &sa, NULL);
|
||||||
sigaction(SIGPIPE, &sa, NULL);
|
sigaction(SIGPIPE, &sa, NULL);
|
||||||
sigaction(SIGUSR2, &sa, NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t fd_read (int fd, void *data, size_t size)
|
static ssize_t fd_read (int fd, void *data, size_t size)
|
||||||
@@ -381,6 +350,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");
|
||||||
|
|
||||||
@@ -511,22 +483,45 @@ 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 || 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)
|
static int gt_setup_secretkey (struct crypto_ctx *ctx, char *keyfile)
|
||||||
@@ -549,13 +544,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;
|
||||||
}
|
}
|
||||||
@@ -657,8 +659,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;
|
||||||
|
|
||||||
@@ -669,11 +671,6 @@ int main (int argc, char **argv)
|
|||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
struct option daemon_opts[] = {
|
|
||||||
{ "fake", NULL, option_option },
|
|
||||||
{ NULL },
|
|
||||||
};
|
|
||||||
|
|
||||||
struct option retry_opts[] = {
|
struct option retry_opts[] = {
|
||||||
{ "count", &retry_count, option_long },
|
{ "count", &retry_count, option_long },
|
||||||
{ "slope", &retry_slope, option_long },
|
{ "slope", &retry_slope, option_long },
|
||||||
@@ -695,8 +692,8 @@ int main (int argc, char **argv)
|
|||||||
{ "buffer-size", &buffer_size, option_long },
|
{ "buffer-size", &buffer_size, option_long },
|
||||||
{ "noquickack", NULL, option_option },
|
{ "noquickack", NULL, option_option },
|
||||||
{ "retry", &retry_opts, option_option },
|
{ "retry", &retry_opts, option_option },
|
||||||
{ "daemon", &daemon_opts, option_option },
|
{ "daemon", NULL, option_option },
|
||||||
{ "trap", NULL, option_option },
|
{ "debug", NULL, option_option },
|
||||||
{ "version", NULL, option_option },
|
{ "version", NULL, option_option },
|
||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
@@ -713,12 +710,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;
|
||||||
@@ -778,47 +779,43 @@ int main (int argc, char **argv)
|
|||||||
perror("fork");
|
perror("fork");
|
||||||
return 1;
|
return 1;
|
||||||
case 0:
|
case 0:
|
||||||
if (option_is_set(daemon_opts, "fake")) {
|
if (setsid()==-1)
|
||||||
gt_log("running in fake daemon mode\n");
|
|
||||||
} else if (setsid()==-1) {
|
|
||||||
perror("setsid");
|
perror("setsid");
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
_exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chdir("/");
|
||||||
}
|
}
|
||||||
|
|
||||||
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",
|
|
||||||
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) {
|
||||||
@@ -859,9 +856,6 @@ int main (int argc, char **argv)
|
|||||||
|
|
||||||
retry = 0;
|
retry = 0;
|
||||||
|
|
||||||
if (option_is_set(opts, "trap"))
|
|
||||||
kill(0, SIGUSR2);
|
|
||||||
|
|
||||||
gt_log("%s: running\n", sockname);
|
gt_log("%s: running\n", sockname);
|
||||||
|
|
||||||
fd_set rfds;
|
fd_set rfds;
|
||||||
@@ -912,17 +906,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;
|
||||||
@@ -939,14 +922,16 @@ 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++;
|
||||||
}
|
}
|
||||||
|
|||||||
9
version.sh
Executable file
9
version.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
[ -z "${VERSION}" ] && VERSION=`git describe --tags --always 2>/dev/null` \
|
||||||
|
&& VERSION=${VERSION#v}
|
||||||
|
|
||||||
|
[ -z "${VERSION}" ] && VERSION=`basename \`pwd\`` \
|
||||||
|
&& VERSION=${VERSION#*-}
|
||||||
|
|
||||||
|
printf ${VERSION}
|
||||||
Reference in New Issue
Block a user