2006-06-05 15:41:08 +03:00
|
|
|
/*
|
2008-09-09 22:07:09 +03:00
|
|
|
* Copyright (c) 2006-2008 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>
|
2008-07-12 15:26:41 +03:00
|
|
|
#include <sys/param.h>
|
2007-06-17 14:46:05 +03:00
|
|
|
#include <sys/time.h>
|
2006-06-11 22:54:38 +03:00
|
|
|
#include <sys/socket.h>
|
2006-06-06 02:34:23 +03:00
|
|
|
#include <fcntl.h>
|
2006-06-05 17:43:04 +03:00
|
|
|
#include <err.h>
|
2008-07-12 15:20:35 +03:00
|
|
|
#include <grp.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"
|
2007-06-09 19:18:59 +03:00
|
|
|
#include "encoding.h"
|
|
|
|
#include "base32.h"
|
2008-09-14 14:34:56 +03:00
|
|
|
#include "base64.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);
|
2007-02-05 19:40:06 +02:00
|
|
|
static void send_chunk(int fd);
|
2008-07-12 14:36:39 +03:00
|
|
|
static int build_hostname(char *buf, size_t buflen,
|
2007-06-07 21:57:18 +03:00
|
|
|
const char *data, const size_t datalen,
|
2007-06-24 13:54:50 +03:00
|
|
|
const char *topdomain, struct encoder *encoder);
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-07-12 11:31:29 +03:00
|
|
|
static int running = 1;
|
|
|
|
static char password[33];
|
2006-06-05 17:46:10 +03:00
|
|
|
|
2007-07-12 18:18:23 +03:00
|
|
|
static struct sockaddr_in nameserv;
|
2007-02-04 22:37:36 +02:00
|
|
|
static char *topdomain;
|
|
|
|
|
2007-07-12 11:31:29 +03:00
|
|
|
static uint16_t rand_seed;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
/* Current IP packet */
|
2007-07-12 01:39:56 +03:00
|
|
|
static struct packet packet;
|
2007-07-12 11:31:29 +03:00
|
|
|
|
|
|
|
/* My userid at the server */
|
2007-02-11 02:50:02 +02:00
|
|
|
static char userid;
|
2007-07-12 11:31:29 +03:00
|
|
|
|
|
|
|
/* DNS id for next packet */
|
2007-02-04 22:37:36 +02:00
|
|
|
static uint16_t chunkid;
|
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
/* The encoder used for packets
|
2007-06-24 13:54:50 +03:00
|
|
|
* Defaults to Base32, can be changed after handshake */
|
|
|
|
static struct encoder *dataenc;
|
2007-06-09 19:18:59 +03:00
|
|
|
|
2007-07-12 11:31:29 +03:00
|
|
|
/* result of case preservation check done after login */
|
|
|
|
static int case_preserved;
|
|
|
|
|
2008-07-12 15:26:41 +03:00
|
|
|
#if !defined(BSD) && !defined(__GLIBC__)
|
|
|
|
static char *__progname;
|
|
|
|
#endif
|
|
|
|
|
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-05 01:12:08 +02:00
|
|
|
static void
|
2007-07-12 02:10:08 +03:00
|
|
|
send_query(int fd, char *hostname)
|
2007-02-05 01:12:08 +02:00
|
|
|
{
|
2008-07-12 14:36:39 +03:00
|
|
|
char packet[4096];
|
2007-02-05 01:12:08 +02:00
|
|
|
struct query q;
|
|
|
|
size_t len;
|
|
|
|
|
2007-02-05 21:44:46 +02:00
|
|
|
q.id = ++chunkid;
|
2007-02-05 01:12:08 +02:00
|
|
|
q.type = T_NULL;
|
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
len = dns_encode(packet, sizeof(packet), &q, QR_QUERY, hostname, strlen(hostname));
|
2007-02-05 01:12:08 +02:00
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
sendto(fd, packet, len, 0, (struct sockaddr*)&nameserv, sizeof(nameserv));
|
2007-02-05 01:12:08 +02:00
|
|
|
}
|
|
|
|
|
2007-07-12 02:10:08 +03:00
|
|
|
static void
|
2008-12-06 21:08:14 +02:00
|
|
|
send_packet(int fd, const char *data, const size_t datalen)
|
2007-07-12 02:10:08 +03:00
|
|
|
{
|
|
|
|
char buf[4096];
|
2008-12-06 21:08:14 +02:00
|
|
|
/* Encode the data and add the topdomain */
|
|
|
|
build_hostname(buf, sizeof(buf), data, datalen, topdomain, dataenc);
|
2007-07-12 02:10:08 +03:00
|
|
|
send_query(fd, buf);
|
|
|
|
}
|
|
|
|
|
2007-06-07 21:57:18 +03:00
|
|
|
static int
|
2008-07-12 14:36:39 +03:00
|
|
|
build_hostname(char *buf, size_t buflen,
|
2007-06-07 21:57:18 +03:00
|
|
|
const char *data, const size_t datalen,
|
2007-06-24 13:54:50 +03:00
|
|
|
const char *topdomain, struct encoder *encoder)
|
2007-06-07 21:57:18 +03:00
|
|
|
{
|
2007-06-18 10:17:55 +03:00
|
|
|
size_t space;
|
2007-06-07 21:57:18 +03:00
|
|
|
char *b;
|
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
|
2007-06-09 19:18:59 +03:00
|
|
|
space = MIN(0xFF, buflen) - strlen(topdomain) - 2;
|
2007-06-24 13:54:50 +03:00
|
|
|
if (!encoder->places_dots())
|
2007-06-09 19:18:59 +03:00
|
|
|
space -= (space / 62); /* space for dots */
|
|
|
|
|
2007-06-07 21:57:18 +03:00
|
|
|
memset(buf, 0, buflen);
|
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
encoder->encode(buf, &space, data, datalen);
|
2007-06-09 19:18:59 +03:00
|
|
|
|
2007-06-24 13:54:50 +03:00
|
|
|
if (!encoder->places_dots())
|
2007-06-09 19:18:59 +03:00
|
|
|
inline_dotify(buf, buflen);
|
2007-06-07 21:57:18 +03:00
|
|
|
|
2007-06-09 19:18:59 +03:00
|
|
|
b = buf;
|
2007-06-07 21:57:18 +03:00
|
|
|
b += strlen(buf);
|
2007-06-09 19:18:59 +03:00
|
|
|
|
2007-06-07 21:57:18 +03:00
|
|
|
if (*b != '.')
|
|
|
|
*b++ = '.';
|
|
|
|
|
|
|
|
strncpy(b, topdomain, strlen(topdomain)+1);
|
2007-06-09 19:18:59 +03:00
|
|
|
|
|
|
|
return space;
|
2007-06-07 21:57:18 +03:00
|
|
|
}
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static int
|
2008-07-12 14:36:39 +03:00
|
|
|
is_sending()
|
|
|
|
{
|
|
|
|
return (packet.len != 0);
|
|
|
|
}
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static int
|
2007-02-05 19:40:06 +02:00
|
|
|
read_dns(int fd, char *buf, int buflen)
|
2007-02-04 22:37:36 +02:00
|
|
|
{
|
|
|
|
struct sockaddr_in from;
|
2007-07-12 01:39:56 +03:00
|
|
|
char data[64*1024];
|
2007-02-04 22:37:36 +02:00
|
|
|
socklen_t addrlen;
|
|
|
|
struct query q;
|
|
|
|
int rv;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
addrlen = sizeof(struct sockaddr);
|
2007-07-12 01:39:56 +03:00
|
|
|
if ((r = recvfrom(fd, data, sizeof(data), 0,
|
|
|
|
(struct sockaddr*)&from, &addrlen)) == -1) {
|
2007-02-06 18:01:09 +02:00
|
|
|
warn("recvfrom");
|
2007-02-04 22:37:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-12 01:39:56 +03:00
|
|
|
rv = dns_decode(buf, buflen, &q, QR_ANSWER, data, r);
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
if (is_sending() && chunkid == q.id) {
|
2007-02-04 22:37:36 +02:00
|
|
|
/* Got ACK on sent packet */
|
2008-07-12 14:36:39 +03:00
|
|
|
packet.offset += packet.sentlen;
|
|
|
|
if (packet.offset == packet.len) {
|
|
|
|
/* Packet completed */
|
|
|
|
packet.offset = 0;
|
|
|
|
packet.len = 0;
|
|
|
|
packet.sentlen = 0;
|
|
|
|
} else {
|
2007-02-04 22:37:36 +02:00
|
|
|
/* More to send */
|
2007-02-05 19:40:06 +02:00
|
|
|
send_chunk(fd);
|
2007-02-04 22:37:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2007-02-04 18:06:53 +02:00
|
|
|
unsigned long outlen;
|
|
|
|
unsigned long inlen;
|
2007-02-06 18:01:09 +02:00
|
|
|
char out[64*1024];
|
|
|
|
char in[64*1024];
|
2007-02-04 17:38:28 +02:00
|
|
|
size_t read;
|
2007-02-04 17:21:55 +02:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
if ((read = read_tun(tun_fd, in, sizeof(in))) <= 0)
|
|
|
|
return -1;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
outlen = sizeof(out);
|
|
|
|
inlen = read;
|
2007-02-11 01:23:08 +02:00
|
|
|
compress2((uint8_t*)out, &outlen, (uint8_t*)in, inlen, 9);
|
2007-02-06 18:01:09 +02:00
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
memcpy(packet.data, out, MIN(outlen, sizeof(packet.data)));
|
|
|
|
packet.sentlen = 0;
|
|
|
|
packet.offset = 0;
|
|
|
|
packet.len = outlen;
|
2008-12-06 21:08:14 +02:00
|
|
|
packet.seqno++;
|
|
|
|
packet.fragment = 0;
|
2008-07-12 14:36:39 +03:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
send_chunk(dns_fd);
|
2007-02-04 17:21:55 +02:00
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tunnel_dns(int tun_fd, int dns_fd)
|
|
|
|
{
|
2007-02-04 18:06:53 +02:00
|
|
|
unsigned long outlen;
|
|
|
|
unsigned long inlen;
|
2007-02-06 18:01:09 +02:00
|
|
|
char out[64*1024];
|
|
|
|
char in[64*1024];
|
2007-02-04 17:38:28 +02:00
|
|
|
size_t read;
|
2007-02-04 17:21:55 +02:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
if ((read = read_dns(dns_fd, in, sizeof(in))) <= 0)
|
|
|
|
return -1;
|
2008-07-12 14:36:39 +03:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
outlen = sizeof(out);
|
|
|
|
inlen = read;
|
2008-09-14 15:44:55 +03:00
|
|
|
if (uncompress((uint8_t*)out, &outlen, (uint8_t*)in, inlen) != Z_OK) {
|
2007-02-11 00:52:15 +02:00
|
|
|
return -1;
|
2008-09-14 15:44:55 +03:00
|
|
|
}
|
2007-02-04 17:21:55 +02:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
write_tun(tun_fd, out, outlen);
|
2008-09-14 15:44:55 +03:00
|
|
|
if (!is_sending())
|
|
|
|
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 rv;
|
2007-02-05 01:12:08 +02:00
|
|
|
int i;
|
2006-08-25 01:12:45 +03:00
|
|
|
|
|
|
|
rv = 0;
|
2006-06-06 02:34:23 +03:00
|
|
|
|
2006-06-05 17:46:10 +03:00
|
|
|
while (running) {
|
2008-09-14 15:44:55 +03:00
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
2006-06-05 17:43:04 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
2008-07-12 14:36:39 +03:00
|
|
|
if (!is_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);
|
|
|
|
|
2007-02-05 01:12:08 +02:00
|
|
|
if (running == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
err(1, "select");
|
|
|
|
|
2008-09-14 15:44:55 +03:00
|
|
|
if (i == 0) /* timeout */
|
2007-02-04 22:37:36 +02:00
|
|
|
send_ping(dns_fd);
|
2008-09-14 15:44:55 +03:00
|
|
|
else {
|
2007-02-05 01:12:08 +02: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
|
|
|
}
|
2007-02-05 01:12:08 +02: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-05 19:40:06 +02:00
|
|
|
static void
|
|
|
|
send_chunk(int fd)
|
|
|
|
{
|
2008-12-06 21:08:14 +02:00
|
|
|
char buf[2048];
|
|
|
|
char header[64];
|
|
|
|
char headerenc[64];
|
2007-02-05 19:40:06 +02:00
|
|
|
int avail;
|
|
|
|
char *p;
|
2008-12-06 21:08:14 +02:00
|
|
|
int rawblock;
|
|
|
|
int headerblocks;
|
|
|
|
int pkt_encoffset;
|
|
|
|
int buf_encoffset;
|
|
|
|
int sentlen;
|
|
|
|
int i;
|
|
|
|
size_t enclen;
|
2007-02-05 19:40:06 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
rawblock = dataenc->blocksize_raw();
|
2007-12-01 23:23:59 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
headerblocks = 1;
|
|
|
|
while (headerblocks * rawblock < DATAHEADER_TOTLEN) {
|
|
|
|
headerblocks++;
|
|
|
|
}
|
|
|
|
rawblock *= headerblocks;
|
2007-02-05 19:40:06 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
pkt_encoffset = rawblock - DATAHEADER_TOTLEN;
|
|
|
|
buf_encoffset = dataenc->blocksize_encoded() * headerblocks;
|
2007-02-05 19:40:06 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
/* Encode all of the message except the first headerblocks block */
|
|
|
|
p = packet.data;
|
|
|
|
p += packet.offset;
|
|
|
|
avail = packet.len - packet.offset + pkt_encoffset;
|
|
|
|
sentlen = build_hostname(buf + buf_encoffset, sizeof(buf) - buf_encoffset,
|
|
|
|
&p[pkt_encoffset], avail, topdomain, dataenc);
|
|
|
|
|
|
|
|
packet.sentlen = sentlen + pkt_encoffset;
|
|
|
|
|
|
|
|
/* Then encode the header and maybe some pkt data */
|
|
|
|
header[0] = MAKE_HEADER(CMD_DATA, userid);
|
|
|
|
header[1] = packet.seqno;
|
|
|
|
header[2] = MAKE_DATAHEADER(avail == sentlen, 1, packet.fragment++);
|
|
|
|
for (i = 0; i < pkt_encoffset; i++) {
|
|
|
|
header[i + DATAHEADER_TOTLEN] = p[i];
|
|
|
|
}
|
|
|
|
/* Encode the first part, copy it into the buffer */
|
|
|
|
dataenc->encode(headerenc, &enclen, header, DATAHEADER_TOTLEN + pkt_encoffset);
|
|
|
|
for (i = 0; i < enclen; i++) {
|
|
|
|
buf[i] = headerenc[i];
|
|
|
|
}
|
2007-07-12 02:10:08 +03:00
|
|
|
send_query(fd, buf);
|
2007-02-05 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static void
|
2007-02-04 22:37:36 +02:00
|
|
|
send_login(int fd, char *login, int len)
|
|
|
|
{
|
2007-02-11 02:50:02 +02:00
|
|
|
char data[19];
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
memset(data, 0, sizeof(data));
|
2008-12-06 21:08:14 +02:00
|
|
|
data[0] = MAKE_HEADER(CMD_LOGIN, userid);
|
2007-02-11 02:50:02 +02:00
|
|
|
memcpy(&data[1], login, MIN(len, 16));
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-02-11 02:50:02 +02:00
|
|
|
data[17] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[18] = (rand_seed >> 0) & 0xff;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
send_packet(fd, data, sizeof(data));
|
2007-02-04 22:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
send_ping(int fd)
|
|
|
|
{
|
2008-07-12 14:36:39 +03:00
|
|
|
char data[3];
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
if (is_sending()) {
|
|
|
|
packet.sentlen = 0;
|
|
|
|
packet.offset = 0;
|
|
|
|
packet.len = 0;
|
|
|
|
}
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
data[0] = MAKE_HEADER(CMD_PING, userid);
|
2008-07-12 14:36:39 +03:00
|
|
|
data[1] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[2] = (rand_seed >> 0) & 0xff;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
send_packet(fd, data, sizeof(data));
|
2007-02-04 22:37:36 +02:00
|
|
|
}
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static void
|
2007-02-04 22:37:36 +02:00
|
|
|
send_version(int fd, uint32_t version)
|
|
|
|
{
|
2008-12-06 21:08:14 +02:00
|
|
|
char data[7];
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
data[0] = MAKE_HEADER(CMD_VERSION, 0xf);
|
|
|
|
data[1] = (version >> 24) & 0xff;
|
|
|
|
data[2] = (version >> 16) & 0xff;
|
|
|
|
data[3] = (version >> 8) & 0xff;
|
|
|
|
data[4] = (version >> 0) & 0xff;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
data[5] = (rand_seed >> 8) & 0xff;
|
|
|
|
data[6] = (rand_seed >> 0) & 0xff;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
|
|
|
rand_seed++;
|
|
|
|
|
2008-12-06 21:08:14 +02:00
|
|
|
send_packet(fd, data, sizeof(data));
|
2007-02-04 22:37:36 +02:00
|
|
|
}
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static void
|
2007-07-12 11:31:29 +03:00
|
|
|
send_case_check(int fd)
|
|
|
|
{
|
2008-09-14 14:34:56 +03:00
|
|
|
/* The '+' plus character is not allowed according to RFC.
|
|
|
|
* Expect to get SERVFAIL or similar if it is rejected.
|
|
|
|
*/
|
2008-12-06 21:08:14 +02:00
|
|
|
char buf[512] = "__zZ+-aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyY1234.";
|
|
|
|
char header = MAKE_HEADER(CMD_CASE_CHECK, userid);
|
|
|
|
char enc[5];
|
|
|
|
unsigned enclen;
|
|
|
|
|
|
|
|
dataenc->encode(enc, &enclen, &header, 1);
|
|
|
|
/* Encode header into start of message */
|
|
|
|
buf[0] = enc[0];
|
|
|
|
buf[1] = enc[1];
|
2008-09-14 14:34:56 +03:00
|
|
|
|
|
|
|
strncat(buf, topdomain, 512 - strlen(buf));
|
|
|
|
send_query(fd, buf);
|
|
|
|
}
|
2007-07-12 11:31:29 +03:00
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
static void
|
|
|
|
send_codec_switch(int fd, int userid, int bits)
|
|
|
|
{
|
2008-12-06 21:08:14 +02:00
|
|
|
char data[2];
|
|
|
|
|
|
|
|
data[0] = MAKE_HEADER(CMD_VERSION, 0xf);
|
|
|
|
data[1] = bits & 0xff;
|
|
|
|
|
|
|
|
send_packet(fd, data, sizeof(data));
|
2007-07-12 11:31:29 +03:00
|
|
|
}
|
|
|
|
|
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;
|
2007-02-10 19:10:17 +02:00
|
|
|
uint32_t payload;
|
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;
|
2006-06-11 19:13:40 +03:00
|
|
|
int i;
|
|
|
|
int r;
|
|
|
|
|
2007-02-10 19:10:17 +02: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) {
|
2007-02-05 19:40:06 +02:00
|
|
|
read = read_dns(dns_fd, in, sizeof(in));
|
2006-06-11 19:13:40 +03:00
|
|
|
|
2008-07-12 23:30:35 +03:00
|
|
|
if(read <= 0) {
|
|
|
|
if (read == 0) {
|
|
|
|
warn("handshake read");
|
|
|
|
}
|
|
|
|
/* if read < 0 then warning has been printed already */
|
2006-06-11 19:13:40 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-02-11 02:50:02 +02:00
|
|
|
if (read >= 9) {
|
2007-02-10 19:10:17 +02:00
|
|
|
payload = (((in[4] & 0xff) << 24) |
|
2007-07-12 11:31:29 +03:00
|
|
|
((in[5] & 0xff) << 16) |
|
|
|
|
((in[6] & 0xff) << 8) |
|
|
|
|
((in[7] & 0xff)));
|
2007-02-10 19:10:17 +02:00
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
if (strncmp("VACK", in, 4) == 0) {
|
2007-02-10 19:10:17 +02:00
|
|
|
seed = payload;
|
2007-02-11 02:50:02 +02:00
|
|
|
userid = in[8];
|
2007-02-10 19:10:17 +02:00
|
|
|
|
2008-08-07 17:13:33 +03:00
|
|
|
printf("Version ok, both using protocol v 0x%08x. You are user #%d\n", VERSION, userid);
|
2007-02-10 19:10:17 +02:00
|
|
|
goto perform_login;
|
2007-03-01 17:34:04 +02:00
|
|
|
} else if (strncmp("VNAK", in, 4) == 0) {
|
2008-08-07 17:13:33 +03:00
|
|
|
errx(1, "You use protocol v 0x%08x, server uses v 0x%08x. Giving up",
|
2007-02-10 19:10:17 +02:00
|
|
|
VERSION, payload);
|
2007-02-05 01:12:08 +02:00
|
|
|
/* NOTREACHED */
|
2007-02-11 02:50:02 +02:00
|
|
|
} else if (strncmp("VFUL", in, 4) == 0) {
|
2008-08-07 17:13:33 +03:00
|
|
|
errx(1, "Server full, all %d slots are taken. Try again later", payload);
|
2007-02-11 02:50:02 +02:00
|
|
|
/* NOTREACHED */
|
2006-11-18 18:08:47 +02:00
|
|
|
}
|
2007-02-10 19:10:17 +02:00
|
|
|
} else
|
2008-08-07 17:13:33 +03:00
|
|
|
warnx("did not receive proper login challenge");
|
2006-11-18 18:08:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("Retrying version check...\n");
|
|
|
|
}
|
2007-02-10 19:10:17 +02:00
|
|
|
errx(1, "couldn't connect to server");
|
|
|
|
/* NOTREACHED */
|
2006-11-18 18:08:47 +02:00
|
|
|
|
2007-02-10 19:10:17 +02:00
|
|
|
perform_login:
|
2006-11-18 18:08:47 +02:00
|
|
|
login_calculate(login, 16, password, seed);
|
2007-02-11 00:52:15 +02:00
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
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) {
|
2007-02-05 19:40:06 +02:00
|
|
|
read = read_dns(dns_fd, in, sizeof(in));
|
2006-11-18 18:08:47 +02:00
|
|
|
|
2008-07-12 14:36:39 +03:00
|
|
|
if(read <= 0) {
|
2007-02-10 19:10:17 +02:00
|
|
|
warn("read");
|
2006-11-18 18:08:47 +02:00
|
|
|
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) {
|
2007-07-12 11:31:29 +03:00
|
|
|
goto perform_case_check;
|
2006-11-08 23:02:08 +02:00
|
|
|
} else {
|
2007-02-10 19:10:17 +02:00
|
|
|
warnx("Received handshake with bad data");
|
2006-11-08 23:02:08 +02:00
|
|
|
}
|
|
|
|
} 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
|
|
|
}
|
2007-07-12 11:31:29 +03:00
|
|
|
errx(1, "couldn't login to server");
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
perform_case_check:
|
|
|
|
case_preserved = 0;
|
|
|
|
for (i=0; running && i<5 ;i++) {
|
|
|
|
tv.tv_sec = i + 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
send_case_check(dns_fd);
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
r = select(dns_fd + 1, &fds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if(r > 0) {
|
|
|
|
read = read_dns(dns_fd, in, sizeof(in));
|
|
|
|
|
|
|
|
if (read > 0) {
|
|
|
|
if (in[0] == 'z' || in[0] == 'Z') {
|
2008-09-14 14:34:56 +03:00
|
|
|
if (read < (27 * 2)) {
|
|
|
|
printf("Received short case check reply. Will use base32 encoder\n");
|
|
|
|
goto switch_codec;
|
2007-07-12 11:31:29 +03:00
|
|
|
} else {
|
|
|
|
int k;
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
/* TODO enhance this, base128 is probably also possible */
|
2007-07-12 11:31:29 +03:00
|
|
|
case_preserved = 1;
|
2008-09-14 14:34:56 +03:00
|
|
|
for (k = 0; k < 27 && case_preserved; k += 2) {
|
2007-07-12 11:31:29 +03:00
|
|
|
if (in[k] == in[k+1]) {
|
2008-09-14 14:34:56 +03:00
|
|
|
/* test string: zZ+-aAbBcCdDeE... */
|
2007-07-12 11:31:29 +03:00
|
|
|
case_preserved = 0;
|
|
|
|
}
|
|
|
|
}
|
2008-09-14 14:34:56 +03:00
|
|
|
goto switch_codec;
|
2007-07-12 11:31:29 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("Received bad case check reply\n");
|
|
|
|
}
|
2008-09-14 14:34:56 +03:00
|
|
|
} else {
|
|
|
|
printf("Got error on case check, will use base32\n");
|
|
|
|
goto switch_codec;
|
2007-07-12 11:31:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Retrying case check...\n");
|
|
|
|
}
|
2006-06-11 19:13:40 +03:00
|
|
|
|
2007-07-12 11:31:29 +03:00
|
|
|
printf("No reply on case check, continuing\n");
|
2008-09-14 14:34:56 +03:00
|
|
|
switch_codec:
|
|
|
|
if (!case_preserved)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dataenc = get_base64_encoder();
|
|
|
|
printf("Switching to %s codec\n", dataenc->name);
|
|
|
|
/* Send to server that this user will use base64 from now on */
|
|
|
|
for (i=0; running && i<5 ;i++) {
|
|
|
|
int bits;
|
|
|
|
tv.tv_sec = i + 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
bits = 6; /* base64 = 6 bits per byte */
|
|
|
|
|
|
|
|
send_codec_switch(dns_fd, userid, bits);
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
|
|
|
|
r = select(dns_fd + 1, &fds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if(r > 0) {
|
|
|
|
read = read_dns(dns_fd, in, sizeof(in));
|
|
|
|
|
|
|
|
if (read > 0) {
|
|
|
|
if (strncmp("BADLEN", in, 6) == 0) {
|
|
|
|
printf("Server got bad message length. ");
|
|
|
|
goto codec_revert;
|
|
|
|
} else if (strncmp("BADIP", in, 5) == 0) {
|
|
|
|
printf("Server rejected sender IP address. ");
|
|
|
|
goto codec_revert;
|
|
|
|
} else if (strncmp("BADCODEC", in, 8) == 0) {
|
|
|
|
printf("Server rejected the selected codec. ");
|
|
|
|
goto codec_revert;
|
|
|
|
}
|
|
|
|
in[read] = 0; /* zero terminate */
|
|
|
|
printf("Server switched to codec %s\n", in);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("Retrying codec switch...\n");
|
|
|
|
}
|
|
|
|
printf("No reply from server on codec switch. ");
|
|
|
|
codec_revert:
|
|
|
|
printf("Falling back to base32\n");
|
|
|
|
dataenc = get_base32_encoder();
|
2007-07-12 11:31:29 +03:00
|
|
|
return 0;
|
2006-06-11 19:13:40 +03:00
|
|
|
}
|
2007-07-12 16:01:18 +03:00
|
|
|
|
|
|
|
static char *
|
|
|
|
get_resolvconf_addr()
|
|
|
|
{
|
|
|
|
static char addr[16];
|
|
|
|
char buf[80];
|
|
|
|
char *rv;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
rv = NULL;
|
|
|
|
|
|
|
|
if ((fp = fopen("/etc/resolv.conf", "r")) == NULL)
|
|
|
|
err(1, "/etc/resolve.conf");
|
|
|
|
|
|
|
|
while (feof(fp) == 0) {
|
|
|
|
fgets(buf, sizeof(buf), fp);
|
|
|
|
|
|
|
|
if (sscanf(buf, "nameserver %15s", addr) == 1) {
|
|
|
|
rv = addr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2006-06-11 19:13:40 +03:00
|
|
|
|
2007-07-12 11:31:29 +03:00
|
|
|
static void
|
2007-07-12 16:01:18 +03:00
|
|
|
set_nameserver(const char *cp)
|
2007-02-04 22:37:36 +02:00
|
|
|
{
|
2007-07-12 16:01:18 +03:00
|
|
|
struct in_addr addr;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-07-12 16:01:18 +03:00
|
|
|
if (inet_aton(cp, &addr) != 1)
|
|
|
|
errx(1, "error parsing nameserver address: '%s'", cp);
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-07-12 18:18:23 +03:00
|
|
|
memset(&nameserv, 0, sizeof(nameserv));
|
|
|
|
nameserv.sin_family = AF_INET;
|
|
|
|
nameserv.sin_port = htons(53);
|
|
|
|
nameserv.sin_addr = addr;
|
2007-02-04 22:37:36 +02:00
|
|
|
}
|
|
|
|
|
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] "
|
2007-07-12 16:01:18 +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] "
|
2007-07-12 16:01:18 +03:00
|
|
|
"[-P password] [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");
|
2007-02-10 14:36:08 +02:00
|
|
|
printf(" -P password used for authentication (max 32 chars will be used)\n");
|
2007-07-12 16:01:18 +03:00
|
|
|
printf("nameserver is the IP number of the relaying nameserver, if absent /etc/resolv.conf is used\n");
|
2006-06-11 20:47:39 +03:00
|
|
|
printf("topdomain is the FQDN that is delegated to the tunnel endpoint.\n");
|
2007-02-06 18:01:09 +02:00
|
|
|
|
2006-06-11 16:14:57 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-11 16:27:48 +03:00
|
|
|
static void
|
|
|
|
version() {
|
2007-02-06 18:01:09 +02:00
|
|
|
char *svnver;
|
2008-07-12 14:36:39 +03:00
|
|
|
|
2007-02-06 18:01:09 +02:00
|
|
|
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);
|
2007-02-06 18:01:09 +02:00
|
|
|
|
2006-06-11 16:27:48 +03:00
|
|
|
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
|
|
|
{
|
2007-07-12 16:01:18 +03:00
|
|
|
char *nameserv_addr;
|
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
|
|
|
|
2006-11-18 18:08:47 +02:00
|
|
|
memset(password, 0, 33);
|
2007-02-06 18:01:09 +02:00
|
|
|
username = NULL;
|
2006-06-11 16:05:41 +03:00
|
|
|
foreground = 0;
|
2006-08-25 00:23:29 +03:00
|
|
|
newroot = NULL;
|
|
|
|
device = NULL;
|
2007-02-06 18:01:09 +02:00
|
|
|
chunkid = 0;
|
2007-06-09 19:18:59 +03:00
|
|
|
|
2007-06-24 13:54:50 +03:00
|
|
|
dataenc = get_base32_encoder();
|
2008-12-06 21:08:14 +02:00
|
|
|
|
|
|
|
packet.seqno = 0;
|
|
|
|
packet.fragment = 0;
|
2006-06-11 15:45:46 +03:00
|
|
|
|
2008-07-12 15:26:41 +03:00
|
|
|
#if !defined(BSD) && !defined(__GLIBC__)
|
|
|
|
__progname = strrchr(argv[0], '/');
|
|
|
|
if (__progname == NULL)
|
|
|
|
__progname = argv[0];
|
|
|
|
else
|
|
|
|
__progname++;
|
|
|
|
#endif
|
|
|
|
|
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':
|
2007-08-26 18:47:32 +03:00
|
|
|
strncpy(password, optarg, sizeof(password));
|
|
|
|
password[sizeof(password)-1] = 0;
|
2007-07-12 16:36:24 +03:00
|
|
|
|
|
|
|
/* XXX: find better way of cleaning up ps(1) */
|
|
|
|
memset(optarg, 0, strlen(optarg));
|
2006-11-18 18:08:47 +02:00
|
|
|
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) {
|
2007-07-12 16:36:24 +03:00
|
|
|
warnx("Run as root and you'll be happy.\n");
|
2006-06-11 16:49:36 +03:00
|
|
|
usage();
|
|
|
|
}
|
2006-06-09 23:35:26 +03:00
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-07-12 16:01:18 +03:00
|
|
|
|
|
|
|
switch (argc) {
|
|
|
|
case 1:
|
|
|
|
nameserv_addr = get_resolvconf_addr();
|
|
|
|
topdomain = strdup(argv[0]);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
nameserv_addr = argv[0];
|
|
|
|
topdomain = strdup(argv[1]);
|
|
|
|
break;
|
|
|
|
default:
|
2006-06-09 23:35:26 +03:00
|
|
|
usage();
|
2007-07-12 16:01:18 +03:00
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
set_nameserver(nameserv_addr);
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2008-07-12 14:41:01 +03:00
|
|
|
if(strlen(topdomain) <= 128) {
|
|
|
|
if(check_topdomain(topdomain)) {
|
|
|
|
warnx("Topdomain contains invalid characters.\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
warnx("Use a topdomain max 128 chars long.\n");
|
2007-07-12 02:25:03 +03:00
|
|
|
usage();
|
|
|
|
}
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2007-07-12 16:36:24 +03:00
|
|
|
if (username != NULL) {
|
|
|
|
if ((pw = getpwnam(username)) == NULL) {
|
|
|
|
warnx("User %s does not exist!\n", username);
|
2006-06-11 15:18:49 +03:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2006-11-18 18:08:47 +02:00
|
|
|
|
2007-07-12 16:24:55 +03:00
|
|
|
if (strlen(password) == 0)
|
|
|
|
read_password(password, sizeof(password));
|
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;
|
2006-06-11 22:54:23 +03:00
|
|
|
|
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
|
|
|
|
2007-07-12 16:40:52 +03:00
|
|
|
printf("Sending queries for %s to %s\n", topdomain, nameserv_addr);
|
2006-06-11 19:13:40 +03:00
|
|
|
|
2007-11-27 22:11:43 +02:00
|
|
|
if (foreground == 0)
|
|
|
|
do_detach();
|
|
|
|
|
2007-07-12 16:36:24 +03:00
|
|
|
if (newroot != NULL)
|
|
|
|
do_chroot(newroot);
|
2006-06-05 17:46:10 +03:00
|
|
|
|
2007-07-12 16:36:24 +03:00
|
|
|
if (username != NULL) {
|
2008-07-12 15:05:59 +03:00
|
|
|
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 16:36:24 +03:00
|
|
|
warnx("Could not switch to user %s!\n", username);
|
2006-06-09 23:35:26 +03:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2007-03-01 23:41:17 +02:00
|
|
|
|
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;
|
|
|
|
}
|