2006-06-05 15:41:08 +03:00
|
|
|
/*
|
2006-06-05 17:15:53 +03:00
|
|
|
* Copyright (c) 2006 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
2006-06-05 15:41:08 +03:00
|
|
|
*
|
|
|
|
* 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>
|
2006-06-05 15:48:30 +03:00
|
|
|
#include <stdint.h>
|
2006-06-05 20:22:35 +03:00
|
|
|
#include <stdlib.h>
|
2006-06-05 17:43:04 +03:00
|
|
|
#include <string.h>
|
2006-06-05 17:46:10 +03:00
|
|
|
#include <signal.h>
|
2006-06-05 18:13:30 +03:00
|
|
|
#include <unistd.h>
|
2007-02-04 22:37:36 +02:00
|
|
|
#include <netdb.h>
|
2006-08-13 21:58:54 +03:00
|
|
|
#include <netinet/in.h>
|
2006-06-05 18:13:30 +03:00
|
|
|
#include <sys/types.h>
|
2006-06-11 22:54:38 +03:00
|
|
|
#include <sys/socket.h>
|
2006-06-06 02:34:23 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2006-06-05 17:43:04 +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>
|
2007-02-04 22:37:36 +02:00
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#ifdef DARWIN
|
|
|
|
#include <arpa/nameser8_compat.h>
|
|
|
|
#endif
|
2006-06-05 15:41:08 +03:00
|
|
|
|
2007-02-04 17:21:55 +02:00
|
|
|
#include "common.h"
|
2006-06-05 16:38:10 +03:00
|
|
|
#include "dns.h"
|
2006-11-18 18:08:47 +02:00
|
|
|
#include "login.h"
|
2007-02-04 17:21:55 +02:00
|
|
|
#include "tun.h"
|
|
|
|
#include "version.h"
|
2006-06-05 15:41:08 +03:00
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
static void send_ping(int fd);
|
|
|
|
|
2006-06-05 17:46:10 +03:00
|
|
|
int running = 1;
|
2006-11-18 18:08:47 +02:00
|
|
|
char password[33];
|
2006-06-05 17:46:10 +03:00
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
struct sockaddr_in peer;
|
|
|
|
static char *topdomain;
|
|
|
|
|
|
|
|
uint16_t rand_seed;
|
|
|
|
|
|
|
|
/* Current IP packet */
|
|
|
|
static char activepacket[4096];
|
|
|
|
static int lastlen;
|
|
|
|
static int packetpos;
|
|
|
|
static int packetlen;
|
|
|
|
static uint16_t chunkid;
|
|
|
|
|
2006-06-05 17:46:10 +03:00
|
|
|
static void
|
2007-02-04 19:00:20 +02:00
|
|
|
sighandler(int sig)
|
|
|
|
{
|
2006-06-05 17:46:10 +03:00
|
|
|
running = 0;
|
|
|
|
}
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
static void
|
|
|
|
dns_send_chunk(int fd)
|
|
|
|
{
|
|
|
|
char packet[512];
|
|
|
|
struct query q;
|
|
|
|
char buf[256];
|
|
|
|
int avail;
|
|
|
|
char *p;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
q.id = rand_seed;
|
|
|
|
q.type = T_NULL;
|
|
|
|
|
|
|
|
p = activepacket;
|
|
|
|
p += packetpos;
|
|
|
|
avail = packetlen - packetpos;
|
|
|
|
|
|
|
|
lastlen = dns_build_hostname(buf + 1, sizeof(buf) - 1, p, avail, topdomain);
|
|
|
|
if (lastlen == avail)
|
|
|
|
buf[0] = '1';
|
|
|
|
else
|
|
|
|
buf[0] = '0';
|
|
|
|
|
|
|
|
len = dns_encode(packet, sizeof(packet), &q, QR_QUERY, buf, strlen(buf));
|
|
|
|
|
|
|
|
sendto(fd, packet, len, 0, (struct sockaddr*)&peer, sizeof(peer));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dns_sending()
|
|
|
|
{
|
|
|
|
return (packetlen != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dns_read(int fd, char *buf, int buflen)
|
|
|
|
{
|
|
|
|
struct sockaddr_in from;
|
|
|
|
char packet[64*1024];
|
|
|
|
socklen_t addrlen;
|
|
|
|
struct query q;
|
|
|
|
int rv;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
addrlen = sizeof(struct sockaddr);
|
|
|
|
r = recvfrom(fd, packet, sizeof(packet), 0, (struct sockaddr*)&from, &addrlen);
|
|
|
|
if(r == -1) {
|
|
|
|
perror("recvfrom");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = dns_decode(buf, buflen, &q, QR_ANSWER, packet, r);
|
|
|
|
|
|
|
|
if (dns_sending() && chunkid == q.id) {
|
|
|
|
/* Got ACK on sent packet */
|
|
|
|
packetpos += lastlen;
|
|
|
|
if (packetpos == packetlen) {
|
|
|
|
/* Packet completed */
|
|
|
|
packetpos = 0;
|
|
|
|
packetlen = 0;
|
|
|
|
lastlen = 0;
|
|
|
|
} else {
|
|
|
|
/* More to send */
|
|
|
|
dns_send_chunk(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-05 17:43:04 +03:00
|
|
|
static int
|
2007-02-04 17:21:55 +02:00
|
|
|
tunnel_tun(int tun_fd, int dns_fd)
|
2006-06-05 17:43:04 +03:00
|
|
|
{
|
2006-08-25 01:12:45 +03:00
|
|
|
char out[64*1024];
|
2006-06-11 16:49:36 +03:00
|
|
|
char in[64*1024];
|
2007-02-04 18:06:53 +02:00
|
|
|
unsigned long outlen;
|
|
|
|
unsigned long inlen;
|
2007-02-04 17:38:28 +02:00
|
|
|
size_t read;
|
2007-02-04 17:21:55 +02:00
|
|
|
|
|
|
|
read = read_tun(tun_fd, in, sizeof(in));
|
|
|
|
if(read > 0) {
|
|
|
|
outlen = sizeof(out);
|
2007-02-04 18:06:53 +02:00
|
|
|
inlen = read;
|
|
|
|
compress2(out, &outlen, in, inlen, 9);
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
memcpy(activepacket, out, MIN(outlen, sizeof(activepacket)));
|
|
|
|
lastlen = 0;
|
|
|
|
packetpos = 0;
|
|
|
|
packetlen = outlen;
|
|
|
|
|
|
|
|
dns_send_chunk(dns_fd);
|
2007-02-04 17:21:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tunnel_dns(int tun_fd, int dns_fd)
|
|
|
|
{
|
|
|
|
char out[64*1024];
|
|
|
|
char in[64*1024];
|
2007-02-04 18:06:53 +02:00
|
|
|
unsigned long outlen;
|
|
|
|
unsigned long inlen;
|
2007-02-04 17:38:28 +02:00
|
|
|
size_t read;
|
2007-02-04 17:21:55 +02:00
|
|
|
|
|
|
|
read = dns_read(dns_fd, in, sizeof(in));
|
|
|
|
if (read > 0) {
|
|
|
|
outlen = sizeof(out);
|
2007-02-04 18:06:53 +02:00
|
|
|
inlen = read;
|
|
|
|
uncompress(out, &outlen, in, inlen);
|
2007-02-04 17:21:55 +02:00
|
|
|
|
|
|
|
write_tun(tun_fd, out, outlen);
|
|
|
|
if (!dns_sending())
|
2007-02-04 22:37:36 +02:00
|
|
|
send_ping(dns_fd);
|
2007-02-04 17:21:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tunnel(int tun_fd, int dns_fd)
|
|
|
|
{
|
2006-08-25 01:12:45 +03:00
|
|
|
struct timeval tv;
|
|
|
|
fd_set fds;
|
|
|
|
int i;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = 0;
|
2006-06-06 02:34:23 +03:00
|
|
|
|
2006-06-05 17:46:10 +03:00
|
|
|
while (running) {
|
2006-06-06 14:55:21 +03:00
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
2006-06-05 17:43:04 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
2006-06-06 05:39:37 +03:00
|
|
|
if (!dns_sending())
|
2006-06-05 23:05:11 +03:00
|
|
|
FD_SET(tun_fd, &fds);
|
2006-06-05 17:43:04 +03:00
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
i = select(MAX(tun_fd, dns_fd) + 1, &fds, NULL, NULL, &tv);
|
2006-08-25 01:12:45 +03:00
|
|
|
|
2007-02-04 17:21:55 +02:00
|
|
|
if (running == 0 || i < 0) {
|
2006-08-25 01:12:45 +03:00
|
|
|
rv = 1;
|
|
|
|
break;
|
|
|
|
}
|
2006-06-05 17:43:04 +03:00
|
|
|
|
2007-02-04 17:21:55 +02:00
|
|
|
if (i == 0) /* timeout */
|
2007-02-04 22:37:36 +02:00
|
|
|
send_ping(dns_fd);
|
2007-02-04 17:21:55 +02:00
|
|
|
else {
|
2006-06-05 17:43:04 +03:00
|
|
|
if(FD_ISSET(tun_fd, &fds)) {
|
2007-02-04 17:21:55 +02:00
|
|
|
if (tunnel_tun(tun_fd, dns_fd) <= 0)
|
2006-06-11 16:49:36 +03:00
|
|
|
continue;
|
2006-06-05 17:43:04 +03:00
|
|
|
}
|
|
|
|
if(FD_ISSET(dns_fd, &fds)) {
|
2007-02-04 17:21:55 +02:00
|
|
|
if (tunnel_dns(tun_fd, dns_fd) <= 0)
|
2006-06-11 16:49:36 +03:00
|
|
|
continue;
|
2006-06-05 17:43:04 +03:00
|
|
|
}
|
2007-02-04 17:21:55 +02:00
|
|
|
}
|
2006-06-05 17:43:04 +03:00
|
|
|
}
|
|
|
|
|
2006-08-25 01:12:45 +03:00
|
|
|
return rv;
|
2006-06-05 17:43:04 +03:00
|
|
|
}
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
void
|
|
|
|
send_login(int fd, char *login, int len)
|
|
|
|
{
|
|
|
|
char packet[512];
|
|
|
|
struct query q;
|
|
|
|
char buf[256];
|
|
|
|
char data[18];
|
|
|
|
|
|
|
|
q.id = rand_seed;
|
|
|
|
q.type = T_NULL;
|
|
|
|
|
|
|
|
memset(data, 0, sizeof(data));
|
|
|
|
memcpy(data, login, MIN(len, 16));
|
|
|
|
|
|
|
|
data[16] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[17] = (rand_seed >> 0) & 0xff;
|
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
|
|
|
buf[0] = 'L';
|
|
|
|
len = dns_build_hostname(buf + 1, sizeof(buf) - 1, data, sizeof(data), topdomain);
|
|
|
|
len = dns_encode(packet, sizeof(packet), &q, QR_QUERY, buf, strlen(buf));
|
|
|
|
|
|
|
|
sendto(fd, packet, len, 0, (struct sockaddr*)&peer, sizeof(peer));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
send_ping(int fd)
|
|
|
|
{
|
|
|
|
|
|
|
|
char packet[512];
|
|
|
|
struct query q;
|
|
|
|
char buf[256];
|
|
|
|
char data[2];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (dns_sending()) {
|
|
|
|
lastlen = 0;
|
|
|
|
packetpos = 0;
|
|
|
|
packetlen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
q.id = rand_seed;
|
2007-02-05 01:08:09 +02:00
|
|
|
q.type = T_NULL;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
data[0] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[1] = (rand_seed >> 0) & 0xff;
|
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
|
|
|
buf[0] = 'P';
|
|
|
|
len = dns_build_hostname(buf + 1, sizeof(buf) - 1, data, sizeof(data), topdomain);
|
|
|
|
len = dns_encode(packet, sizeof(packet), &q, QR_QUERY, buf, strlen(buf));
|
|
|
|
|
|
|
|
sendto(fd, packet, len, 0, (struct sockaddr*)&peer, sizeof(peer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
send_version(int fd, uint32_t version)
|
|
|
|
{
|
|
|
|
char packet[512];
|
|
|
|
struct query q;
|
|
|
|
char buf[256];
|
|
|
|
char data[6];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
q.id = rand_seed;
|
|
|
|
q.type = T_NULL;
|
|
|
|
|
|
|
|
data[0] = (version >> 24) & 0xff;
|
|
|
|
data[1] = (version >> 16) & 0xff;
|
|
|
|
data[2] = (version >> 8) & 0xff;
|
|
|
|
data[3] = (version >> 0) & 0xff;
|
|
|
|
|
|
|
|
data[4] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[5] = (rand_seed >> 0) & 0xff;
|
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
|
|
|
buf[0] = 'V';
|
|
|
|
len = dns_build_hostname(buf + 1, sizeof(buf) - 1, data, sizeof(data), topdomain);
|
|
|
|
len = dns_encode(packet, sizeof(packet), &q, QR_QUERY, buf, strlen(buf));
|
|
|
|
|
|
|
|
sendto(fd, packet, len, 0, (struct sockaddr*)&peer, sizeof(peer));
|
|
|
|
}
|
|
|
|
|
2006-06-11 19:13:40 +03:00
|
|
|
static int
|
|
|
|
handshake(int dns_fd)
|
|
|
|
{
|
2006-08-25 00:23:29 +03:00
|
|
|
struct timeval tv;
|
2006-11-08 23:02:08 +02:00
|
|
|
char server[65];
|
|
|
|
char client[65];
|
2006-11-18 18:08:47 +02:00
|
|
|
char login[16];
|
2006-08-25 00:23:29 +03:00
|
|
|
char in[4096];
|
|
|
|
fd_set fds;
|
|
|
|
int read;
|
|
|
|
int mtu;
|
2006-11-18 18:08:47 +02:00
|
|
|
int seed;
|
|
|
|
int version;
|
2006-06-11 19:13:40 +03:00
|
|
|
int i;
|
|
|
|
int r;
|
|
|
|
|
2006-06-11 22:54:38 +03:00
|
|
|
for (i=0; running && i<5 ;i++) {
|
2006-11-18 18:08:47 +02:00
|
|
|
tv.tv_sec = i + 1;
|
2006-06-11 19:13:40 +03:00
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
send_version(dns_fd, VERSION);
|
2006-06-11 19:13:40 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
r = select(dns_fd + 1, &fds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if(r > 0) {
|
|
|
|
read = dns_read(dns_fd, in, sizeof(in));
|
|
|
|
|
2006-06-11 21:07:26 +03:00
|
|
|
if(read < 0) {
|
2006-06-11 19:13:40 +03:00
|
|
|
perror("read");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-06-11 22:54:38 +03:00
|
|
|
if (read > 0) {
|
2006-11-18 18:08:47 +02:00
|
|
|
if (strncmp("VACK", in, 4) == 0) {
|
|
|
|
if (read >= 8) {
|
|
|
|
memcpy(&seed, in + 4, 4);
|
|
|
|
seed = ntohl(seed);
|
|
|
|
printf("Version ok, both running 0x%08x\n", VERSION);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
printf("Version ok but did not receive proper login challenge\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memcpy(&version, in + 4, 4);
|
|
|
|
version = ntohl(version);
|
|
|
|
printf("You run 0x%08x, server runs 0x%08x. Giving up\n", VERSION, version);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
if (i == 4)
|
|
|
|
errx(1, "couldn't connect to server");
|
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
printf("Retrying version check...\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
login_calculate(login, 16, password, seed);
|
|
|
|
for (i=0; running && i<5 ;i++) {
|
|
|
|
tv.tv_sec = i + 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
send_login(dns_fd, login, 16);
|
2006-11-18 18:08:47 +02:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
r = select(dns_fd + 1, &fds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if(r > 0) {
|
|
|
|
read = dns_read(dns_fd, in, sizeof(in));
|
|
|
|
|
|
|
|
if(read <= 0) {
|
|
|
|
perror("read");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read > 0) {
|
|
|
|
if (strncmp("LNAK", in, 4) == 0) {
|
|
|
|
printf("Bad password\n");
|
|
|
|
return 1;
|
|
|
|
} else if (sscanf(in, "%64[^-]-%64[^-]-%d",
|
2006-08-25 01:12:45 +03:00
|
|
|
server, client, &mtu) == 3) {
|
2006-11-08 23:02:08 +02:00
|
|
|
|
|
|
|
server[64] = 0;
|
|
|
|
client[64] = 0;
|
|
|
|
if (tun_setip(client) == 0 &&
|
|
|
|
tun_setmtu(mtu) == 0) {
|
2006-06-11 22:54:38 +03:00
|
|
|
return 0;
|
2006-11-08 23:02:08 +02:00
|
|
|
} else {
|
|
|
|
warn("Received handshake with bad data");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("Received bad handshake\n");
|
2006-06-11 22:54:38 +03:00
|
|
|
}
|
2006-06-11 21:07:26 +03:00
|
|
|
}
|
2006-06-11 19:13:40 +03:00
|
|
|
}
|
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
printf("Retrying login...\n");
|
2006-06-11 19:13:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
int
|
|
|
|
set_target(const char *host)
|
|
|
|
{
|
|
|
|
struct hostent *h;
|
|
|
|
|
|
|
|
// Init dns target struct
|
|
|
|
if ((h = gethostbyname(host)) <= 0)
|
|
|
|
err(1, "couldn't resovle name %s", host);
|
|
|
|
|
|
|
|
memset(&peer, 0, sizeof(peer));
|
|
|
|
peer.sin_family = AF_INET;
|
|
|
|
peer.sin_port = htons(53);
|
|
|
|
peer.sin_addr = *((struct in_addr *) h->h_addr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-09 23:35:26 +03:00
|
|
|
static void
|
|
|
|
usage() {
|
2006-08-25 00:23:29 +03:00
|
|
|
extern char *__progname;
|
|
|
|
|
2006-08-14 19:36:32 +03:00
|
|
|
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-d device] "
|
2006-06-11 17:29:36 +03:00
|
|
|
"nameserver 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-08-25 00:23:29 +03:00
|
|
|
extern char *__progname;
|
|
|
|
|
2006-06-11 16:27:48 +03:00
|
|
|
printf("iodine IP over DNS tunneling client\n");
|
2006-06-24 13:31:16 +03:00
|
|
|
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-d device] "
|
2006-06-11 17:29:36 +03:00
|
|
|
"nameserver 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");
|
|
|
|
printf(" -f to keep running in foreground\n");
|
2006-06-11 16:14:57 +03:00
|
|
|
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-24 13:28:24 +03:00
|
|
|
printf(" -d device to set tunnel device name\n");
|
2006-06-11 20:47:39 +03:00
|
|
|
printf("nameserver is the IP number of the relaying nameserver\n");
|
|
|
|
printf("topdomain is the FQDN that is delegated to the tunnel endpoint.\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 client\n");
|
|
|
|
printf("SVN version: %s\n", svnver);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-05 15:41:08 +03:00
|
|
|
int
|
2006-06-05 20:22:35 +03:00
|
|
|
main(int argc, char **argv)
|
2006-06-05 15:41:08 +03:00
|
|
|
{
|
2006-08-25 00:23:29 +03:00
|
|
|
struct passwd *pw;
|
2006-06-09 23:35:26 +03:00
|
|
|
char *username;
|
2006-06-11 16:05:41 +03:00
|
|
|
int foreground;
|
2006-08-25 00:23:29 +03:00
|
|
|
char *newroot;
|
|
|
|
char *device;
|
|
|
|
int choice;
|
2006-08-25 01:12:45 +03:00
|
|
|
int tun_fd;
|
|
|
|
int dns_fd;
|
2006-06-09 23:35:26 +03:00
|
|
|
|
|
|
|
username = NULL;
|
2006-11-18 18:08:47 +02:00
|
|
|
memset(password, 0, 33);
|
2006-06-11 16:05:41 +03:00
|
|
|
foreground = 0;
|
2006-08-25 00:23:29 +03:00
|
|
|
newroot = NULL;
|
|
|
|
device = NULL;
|
2006-06-11 15:45:46 +03:00
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
while ((choice = getopt(argc, argv, "vfhu:t:d:P:")) != -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-24 13:28:24 +03:00
|
|
|
case 'd':
|
|
|
|
device = optarg;
|
|
|
|
break;
|
2006-11-18 18:08:47 +02:00
|
|
|
case 'P':
|
|
|
|
strncpy(password, optarg, 32);
|
|
|
|
password[32] = 0;
|
|
|
|
break;
|
2006-06-09 23:35:26 +03:00
|
|
|
default:
|
|
|
|
usage();
|
2007-02-04 19:00:20 +02:00
|
|
|
/* NOTREACHED */
|
2006-06-09 23:35:26 +03:00
|
|
|
}
|
|
|
|
}
|
2006-06-11 16:49:36 +03:00
|
|
|
|
|
|
|
if (geteuid() != 0) {
|
|
|
|
printf("Run as root and you'll be happy.\n");
|
|
|
|
usage();
|
|
|
|
}
|
2006-06-09 23:35:26 +03:00
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2006-06-11 15:18:49 +03:00
|
|
|
|
2006-06-11 17:29:36 +03:00
|
|
|
if (argc != 2)
|
2006-06-09 23:35:26 +03:00
|
|
|
usage();
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
topdomain = strdup(argv[1]);
|
|
|
|
|
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-11-18 18:08:47 +02:00
|
|
|
|
|
|
|
if (strlen(password) == 0) {
|
|
|
|
printf("Enter password on stdin:\n");
|
|
|
|
scanf("%32s", password);
|
|
|
|
password[32] = 0;
|
|
|
|
}
|
2006-06-11 15:18:49 +03:00
|
|
|
|
2006-06-24 13:28:24 +03:00
|
|
|
if ((tun_fd = open_tun(device)) == -1)
|
2006-06-11 20:43:04 +03:00
|
|
|
goto cleanup1;
|
2007-01-28 13:52:36 +02:00
|
|
|
if ((dns_fd = open_dns(0, INADDR_ANY)) == -1)
|
2006-06-11 17:42:19 +03:00
|
|
|
goto cleanup2;
|
2007-02-04 22:37:36 +02:00
|
|
|
if (set_target(argv[0]) == -1)
|
2006-06-11 22:54:23 +03:00
|
|
|
goto cleanup2;
|
|
|
|
|
2006-06-11 21:07:26 +03:00
|
|
|
signal(SIGINT, sighandler);
|
|
|
|
signal(SIGTERM, sighandler);
|
2006-06-11 17:29:36 +03:00
|
|
|
|
2006-06-11 19:13:40 +03:00
|
|
|
if(handshake(dns_fd))
|
|
|
|
goto cleanup2;
|
2006-11-18 18:08:47 +02:00
|
|
|
|
|
|
|
printf("Sending queries for %s to %s\n", argv[1], argv[0]);
|
2006-06-11 19:13:40 +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-05 17:46:10 +03:00
|
|
|
|
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-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 17:43:04 +03:00
|
|
|
tunnel(tun_fd, dns_fd);
|
2006-06-05 15:41:08 +03:00
|
|
|
|
2006-06-11 17:42:19 +03:00
|
|
|
cleanup2:
|
2006-06-05 17:43:04 +03:00
|
|
|
close_dns(dns_fd);
|
2006-06-06 14:09:13 +03:00
|
|
|
close_tun(tun_fd);
|
2006-06-11 20:43:04 +03:00
|
|
|
cleanup1:
|
2006-06-05 15:41:08 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|