1
0
Fork 0
mirror of https://github.com/yarrick/iodine.git synced 2025-04-04 13:53:34 +03:00

Compare commits

...

25 commits

Author SHA1 Message Date
Erik Ekman
2b65972693
Merge pull request #101 from andcscott/98-get_addr-should-return-neg
common: get_addr should return -1 on error
2024-10-30 10:08:59 +01:00
Andrew Scott
ae43de2a8c
tests/common: add test for get_addr errors 2024-10-29 18:37:31 -04:00
Andrew Scott
6299bdbf04
src/common: return -1 from get_addr on error
getaddrinfo will typically return negative values for errors, but this
is not the case for all systems. For example, glibc defines the errors
as negative, but the WSA equivalents are all positive. This commit
unifies the approach within iodine by always returning -1 in the event
getaddrinfo is unsuccessful.
2024-10-29 18:37:31 -04:00
Erik Ekman
68b0a7b16e Limit action permissions 2024-07-16 11:12:53 +02:00
Erik Ekman
55640a0e9a Update bsd runner base machine 2024-07-16 10:57:06 +02:00
Erik Ekman
7ec5efeb55 Try newer bsd runners
Old one seems to reboot vm over and over until it times out.
2024-07-16 10:46:40 +02:00
Erik Ekman
fb7081aba4 Update changelog 2024-07-15 23:56:55 +02:00
Erik Ekman
2c7940cf77 Fix clang warning
"a function declaration without a prototype is deprecated in all versions of C"
2024-07-15 23:54:25 +02:00
Erik Ekman
6be47466f2 Try to include relevant parts of macos if_utun.h
To compile without it (pre 10.6)

See bug #98
2024-07-15 23:46:22 +02:00
Erik Ekman
ec5c89a368
Merge pull request #93 from ffontaine/master
src/osflags: fully fix cross-compilation
2023-11-30 00:29:17 +01:00
Erik Ekman
fc174d5e37 Bump github checkout action version
"The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2."
2023-11-30 00:26:17 +01:00
Erik Ekman
3b1d3a5d4c
Merge pull request #95 from mmuman/haiku-fixes
Haiku fixes
2023-11-30 00:17:17 +01:00
François Revol
39c3154a77 Haiku has daemon() in libbsd 2023-11-18 18:20:22 +01:00
François Revol
8ba813f08e osflags: on Haiku, require BSD headers and lib 2023-11-18 18:19:14 +01:00
Fabrice Fontaine
a5d71d0761 src/osflags: fully fix cross-compilation
Cross-compilation was only partially fixed by
024481c94b
as selinux was still enabled depending on host file existence

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2023-11-02 23:03:15 +01:00
Erik Ekman
b82bc776b3 Fix openbsd action pkg_add command 2023-04-20 14:24:45 +02:00
Erik Ekman
057be6ce64 Add openbsd github action 2023-04-20 14:19:10 +02:00
Erik Ekman
3a4a69f50d Add git, pkgconf to freebsd action 2023-04-20 14:02:52 +02:00
Erik Ekman
ba3f0cacb5 Update freebsd check pkg name 2023-04-20 13:50:17 +02:00
Erik Ekman
d28e8f76ae Add freebsd github action 2023-04-20 13:42:51 +02:00
Erik Ekman
b20b4f6fae Update changelog 2023-04-20 13:32:20 +02:00
Erik Ekman
8b78300e99
Merge pull request #86 from spmzt/tzsetwall-freebsd
Build Issue on FreeBSD: tzsetwall() is deprecated, use tzset() instead.
2023-04-20 13:20:21 +02:00
Pouria Mousavizadeh Tehrani
9262863cae
tzsetwall() is deprecated, use tzset() instead.
/usr/ports/net/iodine/work/iodine-0.8.0/src/iodined.c:2757: warning: warning: tzsetwall() is deprecated, use tzset() instead.
2023-04-19 00:21:08 +03:30
Erik Ekman
6145eeab73 Bump date in manpage 2023-04-17 10:26:14 +02:00
Erik Ekman
309a1371e8 Update changelog after release 2023-04-17 09:59:47 +02:00
24 changed files with 146 additions and 46 deletions

28
.github/workflows/freebsd.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: freebsd
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
uses: vmactions/freebsd-vm@v1.0.8
with:
prepare: |
pkg install -y \
devel/check \
devel/git \
devel/pkgconf
run: |
make
make test

View file

@ -6,13 +6,16 @@ on:
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: make
run: make
- name: install check

28
.github/workflows/openbsd.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: openbsd
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
uses: vmactions/openbsd-vm@v1.0.8
with:
prepare: |
pkg_add \
check \
git \
pkgconf
run: |
make
make test

View file

@ -6,13 +6,16 @@ on:
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: make
run: make
- name: install check
@ -25,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: nttld/setup-ndk@v1
with:
ndk-version: r21e

View file

@ -6,6 +6,9 @@ on:
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
@ -15,7 +18,7 @@ jobs:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64

View file

@ -1,11 +1,16 @@
iodine - https://code.kryo.se/iodine
***********************************
************************************
CHANGES:
master:
- Changed deprecated tzsetwall() to tzset() (only used by FreeBSD),
patch by Pouria Mousavizadeh Tehrani.
- Now builds on macOS even without if_utun.h (pre 10.6).
2023-04-17: 0.8.0 "Burning Snowman"
- Mac OS X: Support native utun VPN devices. Patch by
Peter Sagerson, ported from OpenVPN by Catalin Patulea.
- Fix compilation failure on kFreeBSD and Hurd, by Gregor Herrmann
@ -16,7 +21,7 @@ master:
- Add support for IPv6 in the server.
Raw mode will be with same protocol as used for login.
Traffic inside tunnel is still IPv4.
- Update android build to support 5.0 (Lollipop) and newer.
- Update android build to try to support 5.0 (Lollipop) and newer.
- Change external IP lookup to using myip.opendns.com via DNS.
- Add option to choose IPv4 listen address from external IP lookup.
- Add server support for handling multiple domains via wildcard.

View file

@ -1,5 +1,5 @@
.\" groff -man -Tascii iodine.8
.TH IODINE 8 "APR 2012" "User Manuals"
.TH IODINE 8 "APR 2023" "User Manuals"
.SH NAME
iodine, iodined \- tunnel IPv4 over DNS
.SH SYNOPSIS

View file

@ -103,7 +103,7 @@ static long send_query_recvcnt = 0;
static int hostname_maxlen = 0xFF;
void
client_init()
client_init(void)
{
running = 1;
rand_seed = ((unsigned int) rand()) & 0xFFFF;
@ -124,13 +124,13 @@ client_init()
}
void
client_stop()
client_stop(void)
{
running = 0;
}
enum connection
client_get_conn()
client_get_conn(void)
{
return conn;
}
@ -175,7 +175,7 @@ client_set_qtype(char *qtype)
}
char *
client_get_qtype()
client_get_qtype(void)
{
char *c = "UNDEFINED";
@ -225,7 +225,7 @@ client_set_hostname_maxlen(int i)
}
const char *
client_get_raw_addr()
client_get_raw_addr(void)
{
return format_addr(&raw_serv, raw_serv_len);
}

View file

@ -57,7 +57,7 @@
const unsigned char raw_header[RAW_HDR_LEN] = { 0x10, 0xd1, 0x9e, 0x00 };
/* daemon(3) exists only in 4.4BSD or later, and in GNU libc */
#if !defined(ANDROID) && !defined(WINDOWS32) && !(defined(BSD) && (BSD >= 199306)) && !defined(__GLIBC__)
#if !defined(ANDROID) && !defined(WINDOWS32) && !(defined(BSD) && (BSD >= 199306)) && !defined(__GLIBC__) && !defined(__HAIKU__)
static int daemon(int nochdir, int noclose)
{
int fd, i;
@ -142,6 +142,7 @@ get_addr(char *host, int port, int addr_family, int flags, struct sockaddr_stora
struct addrinfo hints, *addr;
int res;
char portnum[8];
int addrlen;
memset(portnum, 0, sizeof(portnum));
snprintf(portnum, sizeof(portnum) - 1, "%d", port);
@ -158,14 +159,15 @@ get_addr(char *host, int port, int addr_family, int flags, struct sockaddr_stora
hints.ai_protocol = IPPROTO_UDP;
res = getaddrinfo(host, portnum, &hints, &addr);
if (res == 0) {
int addrlen = addr->ai_addrlen;
/* Grab first result */
memcpy(out, addr->ai_addr, addr->ai_addrlen);
freeaddrinfo(addr);
return addrlen;
if (res != 0) {
return -1;
}
return res;
addrlen = addr->ai_addrlen;
/* Grab first result */
memcpy(out, addr->ai_addr, addr->ai_addrlen);
freeaddrinfo(addr);
return addrlen;
}
int
@ -276,7 +278,7 @@ do_pidfile(char *pidfile)
}
void
do_detach()
do_detach(void)
{
#ifndef WINDOWS32
fprintf(stderr, "Detaching from terminal...\n");

View file

@ -20,7 +20,7 @@
static struct fw_query fwq[FW_QUERY_CACHE_SIZE];
static int fwq_ix;
void fw_query_init()
void fw_query_init(void)
{
memset(fwq, 0, sizeof(struct fw_query) * FW_QUERY_CACHE_SIZE);
fwq_ix = 0;

View file

@ -2754,7 +2754,7 @@ main(int argc, char **argv)
do_pidfile(pidfile);
#ifdef FREEBSD
tzsetwall();
tzset();
#endif
#ifndef WINDOWS32
openlog(__progname, LOG_NDELAY, LOG_DAEMON);

View file

@ -13,14 +13,14 @@ link)
echo '-lsocket -lbind -lbsd';
;;
Haiku)
echo '-lnetwork';
echo '-lnetwork -lbsd';
;;
windows32)
echo '-lws2_32 -liphlpapi';
;;
Linux)
FLAGS="";
[ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -lselinux";
"$PKG_CONFIG" --exists libselinux && FLAGS="$FLAGS $($PKG_CONFIG --libs libselinux)";
"$PKG_CONFIG" --exists libsystemd-daemon && FLAGS="$FLAGS $($PKG_CONFIG --libs libsystemd-daemon)";
"$PKG_CONFIG" --exists libsystemd && FLAGS="$FLAGS $($PKG_CONFIG --libs libsystemd)";
echo $FLAGS;
@ -35,12 +35,15 @@ cflags)
BeOS)
echo '-Dsocklen_t=int';
;;
Haiku)
echo '-D_DEFAULT_SOURCE';
;;
Darwin)
echo '-D__APPLE_USE_RFC_3542';
;;
Linux)
FLAGS="-D_GNU_SOURCE"
[ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -DHAVE_SETCON";
"$PKG_CONFIG" --exists libselinux && FLAGS="$FLAGS -DHAVE_SETCON";
"$PKG_CONFIG" --exists libsystemd-daemon && FLAGS="$FLAGS -DHAVE_SYSTEMD";
"$PKG_CONFIG" --exists libsystemd && FLAGS="$FLAGS -DHAVE_SYSTEMD";
echo $FLAGS;

View file

@ -31,7 +31,9 @@
#include <sys/kern_control.h>
#include <sys/sys_domain.h>
#include <sys/ioctl.h>
#include <net/if_utun.h>
/* Inline used parts of if_utun.h to compile without it. */
#define UTUN_CONTROL_NAME "com.apple.net.utun_control"
#define UTUN_OPT_IFNAME 2
#include <netinet/ip.h>
#endif

View file

@ -119,7 +119,7 @@ START_TEST(test_base32_blksize)
END_TEST
TCase *
test_base32_create_tests()
test_base32_create_tests(void)
{
TCase *tc;

View file

@ -132,7 +132,7 @@ START_TEST(test_base64_blksize)
END_TEST
TCase *
test_base64_create_tests()
test_base64_create_tests(void)
{
TCase *tc;

View file

@ -280,8 +280,30 @@ START_TEST(test_parse_format_ipv4_mapped_ipv6)
}
END_TEST
START_TEST(test_get_addr_err)
{
char *host = "192.168.2.10";
struct sockaddr_storage addr;
int addr_len;
int flags = AI_PASSIVE;
/* Invalid host */
addr_len = get_addr(NULL, -1, flags, 0, &addr);
ck_assert(addr_len == -1);
/* Invalid port */
addr_len = get_addr(host, -1, flags, 0, &addr);
ck_assert(addr_len == -1);
/* Invalid flag */
addr_len = get_addr(host, 53, flags | 0xFFF, 0, &addr);
ck_assert(addr_len == -1);
/* Invalid addr */
addr_len = get_addr(host, 53, flags, 0, (struct sockaddr_storage *)NULL);
ck_assert(addr_len == -1);
}
END_TEST
TCase *
test_common_create_tests()
test_common_create_tests(void)
{
TCase *tc;
int sock;
@ -295,6 +317,7 @@ test_common_create_tests()
tcase_add_test(tc, test_query_datalen_wild);
tcase_add_test(tc, test_parse_format_ipv4);
tcase_add_test(tc, test_parse_format_ipv4_listen_all);
tcase_add_test(tc, test_get_addr_err);
/* Tests require IPv6 support */
sock = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);

View file

@ -250,7 +250,7 @@ dump_packet(char *buf, size_t len)
}
TCase *
test_dns_create_tests()
test_dns_create_tests(void)
{
TCase *tc;

View file

@ -93,7 +93,7 @@ START_TEST(test_build_hostname)
END_TEST
TCase *
test_encoding_create_tests()
test_encoding_create_tests(void)
{
TCase *tc;

View file

@ -76,7 +76,7 @@ START_TEST(test_fw_query_edge)
END_TEST
TCase *
test_fw_query_create_tests()
test_fw_query_create_tests(void)
{
TCase *tc;

View file

@ -59,7 +59,7 @@ START_TEST(test_login_hash_short)
END_TEST
TCase *
test_login_create_tests()
test_login_create_tests(void)
{
TCase *tc;

View file

@ -270,7 +270,7 @@ END_TEST
TCase *
test_read_create_tests()
test_read_create_tests(void)
{
TCase *tc;

View file

@ -24,7 +24,7 @@
#include "test.h"
int
main()
main(void)
{
SRunner *runner;
Suite *iodine;

View file

@ -18,15 +18,15 @@
#ifndef __TEST_H__
#define __TEST_H__
TCase *test_base32_create_tests();
TCase *test_base64_create_tests();
TCase *test_common_create_tests();
TCase *test_dns_create_tests();
TCase *test_encoding_create_tests();
TCase *test_read_create_tests();
TCase *test_login_create_tests();
TCase *test_user_create_tests();
TCase *test_fw_query_create_tests();
TCase *test_base32_create_tests(void);
TCase *test_base64_create_tests(void);
TCase *test_common_create_tests(void);
TCase *test_dns_create_tests(void);
TCase *test_encoding_create_tests(void);
TCase *test_read_create_tests(void);
TCase *test_login_create_tests(void);
TCase *test_user_create_tests(void);
TCase *test_fw_query_create_tests(void);
char *va_str(const char *, ...);

View file

@ -170,7 +170,7 @@ START_TEST(test_find_available_user_small_net)
END_TEST
TCase *
test_user_create_tests()
test_user_create_tests(void)
{
TCase *tc;