2006-06-05 21:47:09 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* 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 <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
2006-06-11 22:54:38 +03:00
|
|
|
#include <sys/socket.h>
|
2006-06-06 01:36:05 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2006-06-05 21:47:09 +03:00
|
|
|
#include <err.h>
|
2006-06-09 23:35:26 +03:00
|
|
|
#include <pwd.h>
|
2006-06-06 03:17:28 +03:00
|
|
|
#include <arpa/inet.h>
|
2006-06-06 20:59:24 +03:00
|
|
|
#include <zlib.h>
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
#include "tun.h"
|
2006-06-11 22:34:34 +03:00
|
|
|
#include "structs.h"
|
2006-06-05 21:47:09 +03:00
|
|
|
#include "dns.h"
|
|
|
|
|
2006-06-06 03:18:29 +03:00
|
|
|
#ifndef MAX
|
|
|
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
|
|
#endif
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
int running = 1;
|
|
|
|
|
2006-06-11 21:07:26 +03:00
|
|
|
struct packet packetbuf;
|
2006-06-11 22:17:20 +03:00
|
|
|
struct packet outpacket;
|
|
|
|
int outid;
|
2006-06-11 21:07:26 +03:00
|
|
|
|
2006-06-11 22:34:34 +03:00
|
|
|
struct query q;
|
|
|
|
|
2006-06-23 10:58:36 +03:00
|
|
|
int my_mtu;
|
|
|
|
in_addr_t my_ip;
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
static void
|
|
|
|
sigint(int sig) {
|
|
|
|
running = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tunnel(int tun_fd, int dns_fd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int read;
|
2006-06-11 21:43:37 +03:00
|
|
|
int code;
|
2006-06-23 10:58:36 +03:00
|
|
|
int ipadder;
|
|
|
|
struct in_addr nextip;
|
2006-06-05 21:47:09 +03:00
|
|
|
fd_set fds;
|
|
|
|
struct timeval tv;
|
2006-06-11 16:49:36 +03:00
|
|
|
char in[64*1024];
|
|
|
|
long outlen;
|
|
|
|
char out[64*1024];
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
while (running) {
|
2006-06-11 22:34:34 +03:00
|
|
|
if (q.id != 0) {
|
2006-06-06 15:36:12 +03:00
|
|
|
tv.tv_sec = 0;
|
2006-06-11 22:17:20 +03:00
|
|
|
tv.tv_usec = 5000;
|
2006-06-06 15:36:12 +03:00
|
|
|
} else {
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
2006-06-11 22:17:20 +03:00
|
|
|
if(outpacket.len == 0)
|
2006-06-06 01:36:05 +03:00
|
|
|
FD_SET(tun_fd, &fds);
|
2006-06-05 21:47:09 +03:00
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
i = select(MAX(tun_fd, dns_fd) + 1, &fds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if(i < 0) {
|
2006-06-06 16:47:51 +03:00
|
|
|
if (running)
|
2006-06-05 21:47:09 +03:00
|
|
|
warn("select");
|
|
|
|
return 1;
|
|
|
|
}
|
2006-06-06 19:08:02 +03:00
|
|
|
|
|
|
|
if (i==0) {
|
2006-06-11 22:41:01 +03:00
|
|
|
if (q.id != 0)
|
2006-06-11 22:34:34 +03:00
|
|
|
dnsd_send(dns_fd, &q, outpacket.data, outpacket.len);
|
2006-06-11 22:17:20 +03:00
|
|
|
outpacket.len = 0;
|
2006-06-11 22:34:34 +03:00
|
|
|
q.id = 0;
|
2006-06-06 19:08:02 +03:00
|
|
|
} else {
|
2006-06-05 21:47:09 +03:00
|
|
|
if(FD_ISSET(tun_fd, &fds)) {
|
2006-06-11 16:49:36 +03:00
|
|
|
read = read_tun(tun_fd, in, sizeof(in));
|
2006-06-11 20:23:26 +03:00
|
|
|
if (read <= 0)
|
2006-06-11 16:49:36 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
outlen = sizeof(out);
|
|
|
|
compress2(out, &outlen, in, read, 9);
|
2006-06-11 22:17:20 +03:00
|
|
|
memcpy(outpacket.data, out, outlen);
|
|
|
|
outpacket.len = outlen;
|
2006-06-05 21:47:09 +03:00
|
|
|
}
|
|
|
|
if(FD_ISSET(dns_fd, &fds)) {
|
2006-06-11 22:34:34 +03:00
|
|
|
read = dnsd_read(dns_fd, &q, in, sizeof(in));
|
2006-06-11 21:07:26 +03:00
|
|
|
if (read < 0)
|
|
|
|
continue;
|
2006-06-11 16:49:36 +03:00
|
|
|
|
2006-06-11 21:07:26 +03:00
|
|
|
if(in[0] == 'H' || in[0] == 'h') {
|
2006-06-23 10:58:36 +03:00
|
|
|
ipadder = htonl(my_ip); // To get the last byte last
|
|
|
|
if ((ipadder & 0xFF) == 0xFF) {
|
|
|
|
// IP ends with 255.
|
|
|
|
ipadder--;
|
|
|
|
} else {
|
|
|
|
ipadder++;
|
|
|
|
}
|
|
|
|
nextip.s_addr = ntohl(ipadder);
|
|
|
|
read = snprintf(out, sizeof(out), "%s-%d", inet_ntoa(nextip), my_mtu);
|
2006-06-11 22:34:34 +03:00
|
|
|
dnsd_send(dns_fd, &q, out, read);
|
2006-06-11 22:41:01 +03:00
|
|
|
q.id = 0;
|
2006-06-11 21:43:37 +03:00
|
|
|
} else if((in[0] >= '0' && in[0] <= '9')
|
|
|
|
|| (in[0] >= 'a' && in[0] <= 'f')
|
|
|
|
|| (in[0] >= 'A' && in[0] <= 'F')) {
|
|
|
|
if ((in[0] >= '0' && in[0] <= '9'))
|
|
|
|
code = in[0] - '0';
|
|
|
|
if ((in[0] >= 'a' && in[0] <= 'f'))
|
|
|
|
code = in[0] - 'a' + 10;
|
|
|
|
if ((in[0] >= 'A' && in[0] <= 'F'))
|
|
|
|
code = in[0] - 'A' + 10;
|
|
|
|
|
|
|
|
memcpy(packetbuf.data + packetbuf.offset, in + 1, read - 1);
|
|
|
|
packetbuf.len += read - 1;
|
|
|
|
packetbuf.offset += read - 1;
|
|
|
|
|
|
|
|
if (code & 1) {
|
|
|
|
outlen = sizeof(out);
|
|
|
|
uncompress(out, &outlen, packetbuf.data, packetbuf.len);
|
|
|
|
|
|
|
|
write_tun(tun_fd, out, outlen);
|
|
|
|
|
|
|
|
packetbuf.len = packetbuf.offset = 0;
|
|
|
|
}
|
2006-06-11 22:41:01 +03:00
|
|
|
}
|
|
|
|
if (outpacket.len > 0) {
|
|
|
|
dnsd_send(dns_fd, &q, outpacket.data, outpacket.len);
|
|
|
|
outpacket.len = 0;
|
|
|
|
q.id = 0;
|
2006-06-11 21:07:26 +03:00
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-11 15:18:49 +03:00
|
|
|
extern char *__progname;
|
|
|
|
|
2006-06-09 23:35:26 +03:00
|
|
|
static void
|
|
|
|
usage() {
|
2006-06-11 18:24:20 +03:00
|
|
|
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-m mtu] "
|
|
|
|
"tunnel_ip topdomain\n", __progname);
|
2006-06-09 23:35:26 +03:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
2006-06-11 16:14:57 +03:00
|
|
|
static void
|
|
|
|
help() {
|
2006-06-11 16:39:38 +03:00
|
|
|
printf("iodine IP over DNS tunneling server\n");
|
2006-06-11 18:24:20 +03:00
|
|
|
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-m mtu] "
|
|
|
|
"tunnel_ip topdomain\n", __progname);
|
2006-06-12 01:02:26 +03:00
|
|
|
printf(" -v to print version info and exit\n");
|
|
|
|
printf(" -h to print this help and exit\n");
|
2006-06-11 16:14:57 +03:00
|
|
|
printf(" -f to keep running in foreground\n");
|
|
|
|
printf(" -u name to drop privileges and run as user 'name'\n");
|
2006-06-11 17:34:27 +03:00
|
|
|
printf(" -t dir to chroot to directory dir\n");
|
2006-06-11 18:24:20 +03:00
|
|
|
printf("tunnel_ip is the IP number of the local tunnel interface.\n");
|
|
|
|
printf("topdomain is the FQDN that is delegated to this server.\n");
|
2006-06-11 16:14:57 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-11 16:27:48 +03:00
|
|
|
static void
|
|
|
|
version() {
|
2006-06-11 16:37:44 +03:00
|
|
|
char *svnver = "$Rev$ from $Date$";
|
2006-06-11 16:27:48 +03:00
|
|
|
printf("iodine IP over DNS tunneling server\n");
|
|
|
|
printf("SVN version: %s\n", svnver);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2006-06-11 17:29:36 +03:00
|
|
|
int choice;
|
2006-06-05 21:47:09 +03:00
|
|
|
int tun_fd;
|
|
|
|
int dnsd_fd;
|
2006-06-11 17:29:36 +03:00
|
|
|
char *newroot;
|
2006-06-09 23:35:26 +03:00
|
|
|
char *username;
|
2006-06-11 16:05:41 +03:00
|
|
|
int foreground;
|
2006-06-11 18:24:20 +03:00
|
|
|
int mtu;
|
2006-06-11 17:29:36 +03:00
|
|
|
struct passwd *pw;
|
2006-06-09 23:35:26 +03:00
|
|
|
|
|
|
|
username = NULL;
|
2006-06-11 18:24:20 +03:00
|
|
|
newroot = NULL;
|
2006-06-11 16:05:41 +03:00
|
|
|
foreground = 0;
|
2006-06-11 18:24:20 +03:00
|
|
|
mtu = 1024;
|
2006-06-11 21:43:37 +03:00
|
|
|
|
|
|
|
packetbuf.len = 0;
|
|
|
|
packetbuf.offset = 0;
|
2006-06-11 22:17:20 +03:00
|
|
|
outpacket.len = 0;
|
2006-06-11 22:34:34 +03:00
|
|
|
q.id = 0;
|
2006-06-11 15:45:46 +03:00
|
|
|
|
2006-06-11 18:24:20 +03:00
|
|
|
while ((choice = getopt(argc, argv, "vfhu:t:m:")) != -1) {
|
2006-06-09 23:35:26 +03:00
|
|
|
switch(choice) {
|
2006-06-11 16:27:48 +03:00
|
|
|
case 'v':
|
|
|
|
version();
|
|
|
|
break;
|
2006-06-11 16:05:41 +03:00
|
|
|
case 'f':
|
|
|
|
foreground = 1;
|
|
|
|
break;
|
2006-06-11 16:14:57 +03:00
|
|
|
case 'h':
|
|
|
|
help();
|
|
|
|
break;
|
2006-06-09 23:35:26 +03:00
|
|
|
case 'u':
|
|
|
|
username = optarg;
|
|
|
|
break;
|
2006-06-11 17:29:36 +03:00
|
|
|
case 't':
|
|
|
|
newroot = optarg;
|
|
|
|
break;
|
2006-06-11 18:24:20 +03:00
|
|
|
case 'm':
|
|
|
|
mtu = atoi(optarg);
|
|
|
|
break;
|
2006-06-09 23:35:26 +03:00
|
|
|
default:
|
|
|
|
usage();
|
2006-06-11 17:33:59 +03:00
|
|
|
break;
|
2006-06-09 23:35:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2006-06-11 16:59:55 +03:00
|
|
|
|
|
|
|
if (geteuid() != 0) {
|
|
|
|
printf("Run as root and you'll be happy.\n");
|
|
|
|
usage();
|
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2006-06-11 18:24:20 +03:00
|
|
|
if (argc != 2)
|
2006-06-09 23:35:26 +03:00
|
|
|
usage();
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2006-06-11 15:18:49 +03:00
|
|
|
if (username) {
|
|
|
|
pw = getpwnam(username);
|
|
|
|
if (!pw) {
|
|
|
|
printf("User %s does not exist!\n", username);
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-11 18:24:20 +03:00
|
|
|
if (mtu == 0) {
|
|
|
|
printf("Bad MTU given.\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((tun_fd = open_tun()) == -1)
|
|
|
|
goto cleanup0;
|
|
|
|
if (tun_setip(argv[0]) != 0 || tun_setmtu(mtu) != 0)
|
2006-06-11 17:42:19 +03:00
|
|
|
goto cleanup1;
|
2006-06-11 22:54:23 +03:00
|
|
|
if ((dnsd_fd = open_dns(argv[1], 53)) == -1)
|
2006-06-11 17:42:19 +03:00
|
|
|
goto cleanup2;
|
2006-06-23 10:58:36 +03:00
|
|
|
|
|
|
|
my_ip = inet_addr(argv[0]);
|
|
|
|
my_mtu = mtu;
|
|
|
|
|
2006-06-11 22:54:23 +03:00
|
|
|
printf("Listening to dns for domain %s\n", argv[1]);
|
2006-06-11 17:42:19 +03:00
|
|
|
|
2006-06-11 17:29:36 +03:00
|
|
|
if (newroot) {
|
|
|
|
if (chroot(newroot) != 0 || chdir("/") != 0)
|
|
|
|
err(1, "%s", newroot);
|
|
|
|
seteuid(geteuid());
|
|
|
|
setuid(getuid());
|
|
|
|
}
|
|
|
|
|
2006-06-11 16:05:41 +03:00
|
|
|
if (!foreground) {
|
2006-06-11 20:41:39 +03:00
|
|
|
printf("Detaching from terminal...\n");
|
2006-06-11 16:05:41 +03:00
|
|
|
daemon(0, 0);
|
|
|
|
umask(0);
|
|
|
|
alarm(0);
|
|
|
|
}
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
signal(SIGINT, sigint);
|
2006-06-09 23:35:26 +03:00
|
|
|
if (username) {
|
|
|
|
if (setgid(pw->pw_gid) < 0 || setuid(pw->pw_uid) < 0) {
|
|
|
|
printf("Could not switch to user %s!\n", username);
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
tunnel(tun_fd, dnsd_fd);
|
|
|
|
|
2006-06-11 17:42:19 +03:00
|
|
|
cleanup2:
|
2006-06-11 22:54:23 +03:00
|
|
|
close_dns(dnsd_fd);
|
2006-06-11 17:42:19 +03:00
|
|
|
cleanup1:
|
2006-06-05 21:47:09 +03:00
|
|
|
close_tun(tun_fd);
|
2006-06-11 18:24:20 +03:00
|
|
|
cleanup0:
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|