iodine/src/iodined.c

626 lines
14 KiB
C
Raw Normal View History

2006-06-05 18:47:09 +00:00
/*
* Copyright (c) 2006-2015 Erik Ekman <yarrick@kryo.se>,
* 2006-2009 Bjorn Andersson <flex@kryo.se>,
* 2015 Frekk van Blagh <frekk@frekkworks.com>
2006-06-05 18:47:09 +00:00
*
* Permission to use, copy, modify, and/or distribute this software for any
2006-06-05 18:47:09 +00:00
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
2006-06-05 18:47:09 +00:00
#include <signal.h>
#include <unistd.h>
2008-07-12 12:26:41 +00:00
#include <sys/param.h>
2007-06-17 11:46:05 +00:00
#include <sys/time.h>
#include <fcntl.h>
#include <time.h>
#include <zlib.h>
#include <err.h>
#include "common.h"
#include "version.h"
#ifdef WINDOWS32
#include "windows.h"
#include <winsock2.h>
#else
#include <arpa/nameser.h>
#ifdef DARWIN
#define BIND_8_COMPAT
#include <arpa/nameser_compat.h>
#endif
#define _XPG4_2
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <grp.h>
#include <sys/uio.h>
#include <pwd.h>
#include <netdb.h>
#include <syslog.h>
#endif
2009-12-29 20:00:57 +00:00
#include "dns.h"
#include "encoding.h"
#include "base32.h"
#include "base64.h"
#include "base64u.h"
#include "base128.h"
#include "user.h"
#include "login.h"
#include "tun.h"
#include "fw_query.h"
#include "version.h"
#include "server.h"
2009-12-29 20:00:57 +00:00
#ifdef HAVE_SYSTEMD
# include <systemd/sd-daemon.h>
#endif
2009-12-29 20:00:57 +00:00
#ifdef WINDOWS32
WORD req_version = MAKEWORD(2, 2);
WSADATA wsa_data;
#endif
2007-02-04 17:00:20 +00:00
/* Ask ipify.org webservice to get external ip */
2007-02-04 17:00:20 +00:00
static int
get_external_ip(struct in_addr *ip)
2007-02-04 17:00:20 +00:00
{
int sock;
struct addrinfo *addr;
int res;
const char *getstr = "GET / HTTP/1.0\r\n"
/* HTTP 1.0 to avoid chunked transfer coding */
"Host: api.ipify.org\r\n\r\n";
char buf[512];
char *b;
int len;
2006-06-05 18:47:09 +00:00
res = getaddrinfo("api.ipify.org", "80", NULL, &addr);
if (res < 0) return 1;
2006-06-05 18:47:09 +00:00
sock = socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol);
if (sock < 0) {
freeaddrinfo(addr);
return 2;
}
2009-09-20 21:10:41 +00:00
res = connect(sock, addr->ai_addr, addr->ai_addrlen);
freeaddrinfo(addr);
if (res < 0) return 3;
res = write(sock, getstr, strlen(getstr));
if (res != strlen(getstr)) return 4;
2014-06-01 06:34:18 +00:00
/* Zero buf before receiving, leave at least one zero at the end */
memset(buf, 0, sizeof(buf));
res = read(sock, buf, sizeof(buf) - 1);
if (res < 0) return 5;
len = res;
res = close(sock);
if (res < 0) return 6;
2009-12-29 20:00:57 +00:00
b = buf;
while (len > 9) {
/* Look for split between headers and data */
if (strncmp("\r\n\r\n", b, 4) == 0) break;
b++;
len--;
2009-12-29 20:00:57 +00:00
}
if (len < 10) return 7;
b += 4;
res = inet_aton(b, ip);
return (res == 0);
}
static void
sigint(int sig)
{
server_stop();
}
#ifdef WINDOWS32
#define LOG_EMERG 0
#define LOG_ALERT 1
#define LOG_CRIT 2
#define LOG_ERR 3
#define LOG_WARNING 4
#define LOG_NOTICE 5
#define LOG_INFO 6
#define LOG_DEBUG 7
static void
syslog(int a, const char *str, ...)
{
/* TODO: implement (add to event log), move to common.c */
;
}
#endif
2009-01-24 22:12:00 +00:00
static void
print_usage() {
2006-08-24 21:26:40 +00:00
extern char *__progname;
fprintf(stderr, "Usage: %s [-v] [-h] "
"[-4] [-6] [-c] [-s] [-f] [-D] [-u user] "
"[-t chrootdir] [-d device] [-m mtu] [-z context] "
"[-l ipv4 listen address] [-L ipv6 listen address] "
"[-p port] [-n external ip] [-b dnsport] "
"[-P password] [-F pidfile] [-i max idle time] "
"tunnel_ip[/netmask] topdomain\n", __progname);
}
static void
usage() {
print_usage();
exit(2);
}
2006-06-11 13:14:57 +00:00
static void
help() {
fprintf(stderr, "iodine IP over DNS tunneling server\n");
print_usage();
fprintf(stderr, " -v to print version info and exit\n");
fprintf(stderr, " -h to print this help and exit\n");
fprintf(stderr, " -4 to listen only on IPv4\n");
fprintf(stderr, " -6 to listen only on IPv6\n");
fprintf(stderr, " -c to disable check of client IP/port on each request\n");
fprintf(stderr, " -s to skip creating and configuring the tun device, "
2008-09-09 19:55:45 +00:00
"which then has to be created manually\n");
fprintf(stderr, " -f to keep running in foreground\n");
fprintf(stderr, " -D to increase debug level\n");
2009-12-29 20:00:57 +00:00
fprintf(stderr, " (using -DD in UTF-8 terminal: \"LC_ALL=C luit iodined -DD ...\")\n");
fprintf(stderr, " -u name to drop privileges and run as user 'name'\n");
fprintf(stderr, " -t dir to chroot to directory dir\n");
fprintf(stderr, " -d device to set tunnel device name\n");
fprintf(stderr, " -m mtu to set tunnel device mtu\n");
fprintf(stderr, " -z context to apply SELinux context after initialization\n");
fprintf(stderr, " -l IPv4 address to listen on for incoming dns traffic "
2008-09-09 19:55:45 +00:00
"(default 0.0.0.0)\n");
fprintf(stderr, " -L IPv6 address to listen on for incoming dns traffic "
"(default ::)\n");
fprintf(stderr, " -p port to listen on for incoming dns traffic (default 53)\n");
fprintf(stderr, " -n ip to respond with to NS queries\n");
fprintf(stderr, " -b port to forward normal DNS queries to (on localhost)\n");
fprintf(stderr, " -P password used for authentication (max 32 chars will be used)\n");
fprintf(stderr, " -F pidfile to write pid to a file\n");
fprintf(stderr, " -i maximum idle time before shutting down\n");
fprintf(stderr, "tunnel_ip is the IP number of the local tunnel interface.\n");
fprintf(stderr, " /netmask sets the size of the tunnel network.\n");
fprintf(stderr, "topdomain is the FQDN that is delegated to this server.\n");
2006-06-11 13:14:57 +00:00
exit(0);
}
2006-06-11 13:27:48 +00:00
static void
version() {
fprintf(stderr, "iodine IP over DNS tunneling server\n");
fprintf(stderr, "Git version: %s; protocol version %08X\n", GITREVISION, PROTOCOL_VERSION);
2006-06-11 13:27:48 +00:00
exit(0);
}
static void
prepare_dns_fd(int fd)
{
#ifndef WINDOWS32
int flag = 1;
/* To get destination address from each UDP datagram, see read_dns() */
setsockopt(fd, IPPROTO_IP, DSTADDR_SOCKOPT, (const void*) &flag, sizeof(flag));
#ifdef IPV6_RECVPKTINFO
setsockopt(fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, (const void*) &flag, sizeof(flag));
#endif
#ifdef IPV6_PKTINFO
setsockopt(fd, IPPROTO_IPV6, IPV6_PKTINFO, (const void*) &flag, sizeof(flag));
#endif
#endif
}
2006-06-05 18:47:09 +00:00
int
main(int argc, char **argv)
{
extern char *__progname;
char *listen_ip4;
char *listen_ip6;
char *errormsg;
#ifndef WINDOWS32
2007-07-12 13:46:58 +00:00
struct passwd *pw;
#endif
2007-07-12 13:46:58 +00:00
int foreground;
char *username;
2007-07-12 13:46:58 +00:00
char *newroot;
char *context;
2006-06-24 10:28:24 +00:00
char *device;
char *pidfile;
int addrfamily;
struct dnsfd dns_fds;
2007-07-12 13:46:58 +00:00
int tun_fd;
2014-06-01 06:34:18 +00:00
/* settings for forwarding normal DNS to
* local real DNS server */
int bind_fd;
int bind_enable;
2014-06-01 06:34:18 +00:00
2007-07-12 13:46:58 +00:00
int choice;
int port;
2007-07-12 13:46:58 +00:00
int mtu;
int skipipconfig;
char *netsize;
int ns_get_externalip;
int retval;
int max_idle_time = 0;
struct sockaddr_storage dns4addr;
int dns4addr_len;
struct sockaddr_storage dns6addr;
int dns6addr_len;
#ifdef HAVE_SYSTEMD
int nb_fds;
#endif
2009-08-15 19:35:07 +00:00
#ifndef WINDOWS32
pw = NULL;
2009-08-15 19:35:07 +00:00
#endif
errormsg = NULL;
username = NULL;
2006-06-11 15:24:20 +00:00
newroot = NULL;
context = NULL;
2006-06-24 10:28:24 +00:00
device = NULL;
2006-06-11 13:05:41 +00:00
foreground = 0;
bind_enable = 0;
bind_fd = 0;
2009-12-29 20:00:57 +00:00
mtu = 1130; /* Very many relays give fragsize 1150 or slightly
higher for NULL; tun/zlib adds ~17 bytes. */
dns4addr_len = 0;
dns6addr_len = 0;
listen_ip4 = NULL;
listen_ip6 = NULL;
port = 53;
ns_get_externalip = 0;
addrfamily = AF_UNSPEC;
skipipconfig = 0;
pidfile = NULL;
srand(time(NULL));
2014-06-01 06:34:18 +00:00
retval = 0;
server_init();
2009-01-25 17:16:00 +00:00
#ifdef WINDOWS32
WSAStartup(req_version, &wsa_data);
#endif
2007-06-09 16:18:59 +00:00
2008-07-12 12:26:41 +00:00
#if !defined(BSD) && !defined(__GLIBC__)
__progname = strrchr(argv[0], '/');
if (__progname == NULL)
__progname = argv[0];
else
__progname++;
#endif
while ((choice = getopt(argc, argv, "46vcsfhDu:t:d:m:l:L:p:n:b:P:z:F:i:")) != -1) {
switch(choice) {
case '4':
addrfamily = AF_INET;
break;
case '6':
addrfamily = AF_INET6;
break;
2006-06-11 13:27:48 +00:00
case 'v':
version();
break;
case 'c':
check_ip = 0;
break;
case 's':
skipipconfig = 1;
break;
2006-06-11 13:05:41 +00:00
case 'f':
foreground = 1;
break;
2006-06-11 13:14:57 +00:00
case 'h':
help();
break;
2008-08-05 22:37:40 +00:00
case 'D':
debug++;
break;
case 'u':
username = optarg;
break;
2006-06-11 14:29:36 +00:00
case 't':
newroot = optarg;
break;
2006-06-24 10:28:24 +00:00
case 'd':
device = optarg;
break;
2006-06-11 15:24:20 +00:00
case 'm':
mtu = atoi(optarg);
break;
case 'l':
listen_ip4 = optarg;
break;
case 'L':
listen_ip6 = optarg;
break;
case 'p':
port = atoi(optarg);
break;
case 'n':
if (optarg && strcmp("auto", optarg) == 0) {
ns_get_externalip = 1;
} else {
ns_ip = inet_addr(optarg);
}
break;
case 'b':
bind_enable = 1;
bind_port = atoi(optarg);
break;
case 'F':
pidfile = optarg;
2014-06-01 06:34:18 +00:00
break;
case 'i':
max_idle_time = atoi(optarg);
break;
2006-11-18 16:08:47 +00:00
case 'P':
strncpy(password, optarg, sizeof(password));
password[sizeof(password)-1] = 0;
2014-06-01 06:34:18 +00:00
2007-07-12 13:46:58 +00:00
/* XXX: find better way of cleaning up ps(1) */
2014-06-01 06:34:18 +00:00
memset(optarg, 0, strlen(optarg));
2006-11-18 16:08:47 +00:00
break;
case 'z':
context = optarg;
break;
default:
usage();
2006-06-11 14:33:59 +00:00
break;
}
}
argc -= optind;
argv += optind;
2009-01-24 15:50:54 +00:00
check_superuser(usage);
2006-06-05 18:47:09 +00:00
2014-06-01 06:34:18 +00:00
if (argc != 2)
usage();
2014-06-01 06:34:18 +00:00
netsize = strchr(argv[0], '/');
if (netsize) {
*netsize = 0;
netsize++;
netmask = atoi(netsize);
}
my_ip = inet_addr(argv[0]);
2014-06-01 06:34:18 +00:00
if (my_ip == INADDR_NONE) {
warnx("Bad IP address to use inside tunnel.");
usage();
}
2006-06-05 18:47:09 +00:00
topdomain = strdup(argv[1]);
if(check_topdomain(topdomain, &errormsg)) {
warnx("Invalid topdomain: %s", errormsg);
usage();
/* NOTREACHED */
}
2007-07-12 15:48:05 +00:00
if (username != NULL) {
#ifndef WINDOWS32
2007-07-12 15:48:05 +00:00
if ((pw = getpwnam(username)) == NULL) {
warnx("User %s does not exist!", username);
2006-06-11 12:18:49 +00:00
usage();
}
#endif
2006-06-11 12:18:49 +00:00
}
2008-07-12 11:41:01 +00:00
if (mtu <= 0) {
warnx("Bad MTU given.");
2006-06-11 15:24:20 +00:00
usage();
}
2014-06-01 06:34:18 +00:00
2008-07-12 11:41:01 +00:00
if(port < 1 || port > 65535) {
warnx("Bad port number given.");
2008-07-12 11:41:01 +00:00
usage();
}
2014-06-01 06:34:18 +00:00
if (port != 53) {
fprintf(stderr, "ALERT! Other dns servers expect you to run on port 53.\n");
fprintf(stderr, "You must manually forward port 53 to port %d for things to work.\n", port);
}
if (debug) {
fprintf(stderr, "Debug level %d enabled, will stay in foreground.\n", debug);
fprintf(stderr, "Add more -D switches to set higher debug level.\n");
foreground = 1;
}
if (addrfamily == AF_UNSPEC || addrfamily == AF_INET) {
dns4addr_len = get_addr(listen_ip4, port, AF_INET, AI_PASSIVE | AI_NUMERICHOST, &dns4addr);
if (dns4addr_len < 0) {
warnx("Bad IPv4 address to listen on.");
usage();
}
}
if (addrfamily == AF_UNSPEC || addrfamily == AF_INET6) {
dns6addr_len = get_addr(listen_ip6, port, AF_INET6, AI_PASSIVE | AI_NUMERICHOST, &dns6addr);
if (dns6addr_len < 0) {
warnx("Bad IPv6 address to listen on.");
usage();
}
}
if(bind_enable) {
in_addr_t dns_ip = ((struct sockaddr_in *) &dns4addr)->sin_addr.s_addr;
if (bind_port < 1 || bind_port > 65535) {
warnx("Bad DNS server port number given.");
usage();
/* NOTREACHED */
}
/* Avoid forwarding loops */
if (bind_port == port && (dns_ip == INADDR_ANY || dns_ip == htonl(0x7f000001L))) {
warnx("Forward port is same as listen port (%d), will create a loop!", bind_port);
fprintf(stderr, "Use -l to set listen ip to avoid this.\n");
usage();
/* NOTREACHED */
}
fprintf(stderr, "Requests for domains outside of %s will be forwarded to port %d\n",
topdomain, bind_port);
}
2006-06-11 15:24:20 +00:00
if (ns_get_externalip) {
struct in_addr extip;
int res = get_external_ip(&extip);
if (res) {
fprintf(stderr, "Failed to get external IP via web service.\n");
exit(3);
}
ns_ip = extip.s_addr;
fprintf(stderr, "Using %s as external IP.\n", inet_ntoa(extip));
}
if (ns_ip == INADDR_NONE) {
warnx("Bad IP address to return as nameserver.");
usage();
}
if (netmask > 30 || netmask < 8) {
warnx("Bad netmask (%d bits). Use 8-30 bits.", netmask);
usage();
}
2014-06-01 06:34:18 +00:00
2009-09-19 08:09:12 +00:00
if (strlen(password) == 0) {
if (NULL != getenv(PASSWORD_ENV_VAR))
snprintf(password, sizeof(password), "%s", getenv(PASSWORD_ENV_VAR));
else
read_password(password, sizeof(password));
}
2006-11-18 16:08:47 +00:00
2015-06-28 19:05:23 +00:00
/* Mark both file descriptors as unused */
dns_fds.v4fd = -1;
dns_fds.v6fd = -1;
created_users = init_users(my_ip, netmask);
if ((tun_fd = open_tun(device)) == -1) {
2015-06-28 19:05:23 +00:00
/* nothing to clean up, just return */
return 1;
}
if (!skipipconfig) {
2010-03-01 22:05:55 +00:00
const char *other_ip = users_get_first_ip();
if (tun_setip(argv[0], other_ip, netmask) != 0 || tun_setmtu(mtu) != 0) {
retval = 1;
2010-03-01 22:05:55 +00:00
free((void*) other_ip);
2015-06-28 19:05:23 +00:00
goto cleanup;
}
2010-03-01 22:05:55 +00:00
free((void*) other_ip);
}
#ifdef HAVE_SYSTEMD
nb_fds = sd_listen_fds(0);
if (nb_fds > 1) {
retval = 1;
warnx("Too many file descriptors received!\n");
2015-06-28 19:05:23 +00:00
goto cleanup;
} else if (nb_fds == 1) {
/* XXX: assume we get IPv4 socket */
dns_fds.v4fd = SD_LISTEN_FDS_START;
} else {
#endif
if ((addrfamily == AF_UNSPEC || addrfamily == AF_INET) &&
(dns_fds.v4fd = open_dns(&dns4addr, dns4addr_len)) < 0) {
retval = 1;
2015-06-28 19:05:23 +00:00
goto cleanup;
}
if ((addrfamily == AF_UNSPEC || addrfamily == AF_INET6) &&
/* Set IPv6 socket to V6ONLY */
(dns_fds.v6fd = open_dns_opt(&dns6addr, dns6addr_len, 1)) < 0) {
retval = 1;
2015-06-28 19:05:23 +00:00
goto cleanup;
}
#ifdef HAVE_SYSTEMD
}
#endif
/* Setup dns file descriptors to get destination IP address */
if (dns_fds.v4fd >= 0)
prepare_dns_fd(dns_fds.v4fd);
if (dns_fds.v6fd >= 0)
prepare_dns_fd(dns_fds.v6fd);
if (bind_enable) {
if ((bind_fd = open_dns_from_host(NULL, 0, AF_INET, 0)) < 0) {
retval = 1;
2015-06-28 19:05:23 +00:00
goto cleanup;
}
}
my_mtu = mtu;
2014-06-01 06:34:18 +00:00
if (created_users < USERS) {
fprintf(stderr, "Limiting to %d simultaneous users because of netmask /%d\n",
created_users, netmask);
}
fprintf(stderr, "Listening to dns for domain %s\n", topdomain);
2006-06-11 14:42:19 +00:00
2014-06-01 06:34:18 +00:00
if (foreground == 0)
do_detach();
2014-06-01 06:34:18 +00:00
if (pidfile != NULL)
do_pidfile(pidfile);
2010-02-08 16:09:45 +00:00
#ifdef FREEBSD
tzsetwall();
#endif
2010-02-08 16:13:17 +00:00
#ifndef WINDOWS32
2010-02-08 16:09:45 +00:00
openlog( __progname, LOG_NDELAY, LOG_DAEMON );
2010-02-08 16:13:17 +00:00
#endif
2010-02-08 16:09:45 +00:00
if (newroot != NULL)
do_chroot(newroot);
2006-06-11 13:05:41 +00:00
2006-06-05 18:47:09 +00:00
signal(SIGINT, sigint);
2007-07-12 15:48:05 +00:00
if (username != NULL) {
#ifndef WINDOWS32
gid_t gids[1];
gids[0] = pw->pw_gid;
if (setgroups(1, gids) < 0 || setgid(pw->pw_gid) < 0 || setuid(pw->pw_uid) < 0) {
2007-07-12 15:48:05 +00:00
warnx("Could not switch to user %s!\n", username);
usage();
}
#endif
}
if (context != NULL)
do_setcon(context);
syslog(LOG_INFO, "started, listening on port %d", port);
2014-06-01 06:34:18 +00:00
server_tunnel(tun_fd, &dns_fds, bind_fd, max_idle_time);
2006-06-05 18:47:09 +00:00
syslog(LOG_INFO, "stopping");
close_dns(bind_fd);
2015-06-28 19:05:23 +00:00
cleanup:
if (dns_fds.v6fd >= 0)
close_dns(dns_fds.v6fd);
if (dns_fds.v4fd >= 0)
close_dns(dns_fds.v4fd);
2014-06-01 06:34:18 +00:00
close_tun(tun_fd);
2006-06-05 18:47:09 +00:00
return retval;
2006-06-05 18:47:09 +00:00
}