2006-06-05 21:47:09 +03:00
|
|
|
/*
|
2009-01-04 01:27:21 +02:00
|
|
|
* Copyright (c) 2006-2009 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
2006-06-05 21:47:09 +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>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#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>
|
2009-01-25 00:19:11 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
#include "windows.h"
|
2009-03-07 02:00:58 +02:00
|
|
|
#include <winsock2.h>
|
2009-01-25 00:19:11 +02:00
|
|
|
#else
|
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#ifdef DARWIN
|
|
|
|
#include <arpa/nameser8_compat.h>
|
|
|
|
#endif
|
2008-12-25 18:56:13 +02:00
|
|
|
#define _XPG4_2
|
2006-06-11 22:54:38 +03:00
|
|
|
#include <sys/socket.h>
|
2006-06-05 21:47:09 +03:00
|
|
|
#include <err.h>
|
2006-06-06 03:17:28 +03:00
|
|
|
#include <arpa/inet.h>
|
2006-06-24 13:17:16 +03:00
|
|
|
#include <netinet/in.h>
|
2007-02-11 12:47:31 +02:00
|
|
|
#include <netinet/in_systm.h>
|
2007-02-11 02:50:02 +02:00
|
|
|
#include <netinet/ip.h>
|
2009-01-25 00:19:11 +02:00
|
|
|
#include <grp.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <netdb.h>
|
2009-02-15 20:24:12 +02:00
|
|
|
#include <syslog.h>
|
2008-08-06 00:53:19 +03:00
|
|
|
#endif
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2007-02-04 17:21:55 +02:00
|
|
|
#include "common.h"
|
2006-06-05 21:47:09 +03:00
|
|
|
#include "dns.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"
|
2007-02-11 13:21:18 +02:00
|
|
|
#include "user.h"
|
2006-11-18 18:08:47 +02:00
|
|
|
#include "login.h"
|
2007-02-04 17:21:55 +02:00
|
|
|
#include "tun.h"
|
2008-08-08 00:18:15 +03:00
|
|
|
#include "fw_query.h"
|
2006-11-18 18:08:47 +02:00
|
|
|
#include "version.h"
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2009-01-25 19:16:00 +02:00
|
|
|
#ifdef WINDOWS32
|
2009-02-21 12:07:10 +02:00
|
|
|
WORD req_version = MAKEWORD(2, 2);
|
2009-01-25 19:16:00 +02:00
|
|
|
WSADATA wsa_data;
|
|
|
|
#endif
|
|
|
|
|
2007-07-12 18:50:06 +03:00
|
|
|
static int running = 1;
|
|
|
|
static char *topdomain;
|
|
|
|
static char password[33];
|
|
|
|
static struct encoder *b32;
|
2009-01-04 14:39:28 +02:00
|
|
|
static int created_users;
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2008-07-13 01:39:29 +03:00
|
|
|
static int check_ip;
|
2007-07-12 18:50:06 +03:00
|
|
|
static int my_mtu;
|
|
|
|
static in_addr_t my_ip;
|
2009-01-04 14:39:28 +02:00
|
|
|
static int netmask;
|
2006-06-23 10:58:36 +03:00
|
|
|
|
2008-09-14 16:21:11 +03:00
|
|
|
static in_addr_t ns_ip;
|
|
|
|
|
2008-08-08 00:18:15 +03:00
|
|
|
static int bind_port;
|
2008-08-06 01:37:40 +03:00
|
|
|
static int debug;
|
|
|
|
|
2008-07-12 15:26:41 +03:00
|
|
|
#if !defined(BSD) && !defined(__GLIBC__)
|
|
|
|
static char *__progname;
|
|
|
|
#endif
|
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
static int read_dns(int, struct query *);
|
2007-02-05 19:49:30 +02:00
|
|
|
static void write_dns(int, struct query *, char *, int);
|
2007-02-04 17:46:06 +02:00
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
static void
|
2007-02-04 19:00:20 +02:00
|
|
|
sigint(int sig)
|
|
|
|
{
|
2006-06-05 21:47:09 +03:00
|
|
|
running = 0;
|
|
|
|
}
|
|
|
|
|
2009-02-15 20:24:12 +02:00
|
|
|
#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
|
|
|
|
|
2008-08-05 17:47:51 +03:00
|
|
|
static int
|
2009-01-10 22:23:50 +02:00
|
|
|
check_user_and_ip(int userid, struct query *q)
|
2008-08-05 17:47:51 +03:00
|
|
|
{
|
|
|
|
struct sockaddr_in *tempin;
|
|
|
|
|
2009-01-10 22:23:50 +02:00
|
|
|
if (userid < 0 || userid >= created_users ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!users[userid].active) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return early if IP checking is disabled */
|
|
|
|
if (!check_ip) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-05 17:47:51 +03:00
|
|
|
tempin = (struct sockaddr_in *) &(q->from);
|
|
|
|
return memcmp(&(users[userid].host), &(tempin->sin_addr), sizeof(struct in_addr));
|
|
|
|
}
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
static int
|
2007-02-04 19:00:20 +02:00
|
|
|
tunnel_tun(int tun_fd, int dns_fd)
|
|
|
|
{
|
2007-02-11 00:17:11 +02:00
|
|
|
unsigned long outlen;
|
2007-02-11 12:42:57 +02:00
|
|
|
struct ip *header;
|
2007-02-04 19:00:20 +02:00
|
|
|
char out[64*1024];
|
|
|
|
char in[64*1024];
|
2007-02-11 02:50:02 +02:00
|
|
|
int userid;
|
2007-02-04 19:00:20 +02:00
|
|
|
int read;
|
|
|
|
|
|
|
|
if ((read = read_tun(tun_fd, in, sizeof(in))) <= 0)
|
|
|
|
return 0;
|
2007-02-11 02:50:02 +02:00
|
|
|
|
|
|
|
/* find target ip in packet, in is padded with 4 bytes TUN header */
|
2007-02-11 12:42:57 +02:00
|
|
|
header = (struct ip*) (in + 4);
|
|
|
|
userid = find_user_by_ip(header->ip_dst.s_addr);
|
2007-02-11 02:50:02 +02:00
|
|
|
if (userid < 0)
|
|
|
|
return 0;
|
2007-02-04 19:00:20 +02:00
|
|
|
|
|
|
|
outlen = sizeof(out);
|
2007-02-11 00:17:11 +02:00
|
|
|
compress2((uint8_t*)out, &outlen, (uint8_t*)in, read, 9);
|
2007-02-04 19:00:20 +02:00
|
|
|
|
2007-02-11 13:51:30 +02:00
|
|
|
/* if another packet is queued, throw away this one. TODO build queue */
|
2008-07-12 14:36:39 +03:00
|
|
|
if (users[userid].outpacket.len == 0) {
|
|
|
|
memcpy(users[userid].outpacket.data, out, outlen);
|
|
|
|
users[userid].outpacket.len = outlen;
|
2009-01-04 15:53:32 +02:00
|
|
|
users[userid].outpacket.offset = 0;
|
|
|
|
users[userid].outpacket.sentlen = 0;
|
2009-01-05 18:25:54 +02:00
|
|
|
users[userid].outpacket.seqno = (++users[userid].outpacket.seqno & 7);
|
2008-12-14 19:21:27 +02:00
|
|
|
users[userid].outpacket.fragment = 0;
|
2008-07-12 14:36:39 +03:00
|
|
|
return outlen;
|
2007-02-11 13:51:30 +02:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-04 19:00:20 +02:00
|
|
|
}
|
|
|
|
|
2007-02-11 00:17:11 +02:00
|
|
|
typedef enum {
|
|
|
|
VERSION_ACK,
|
2007-02-11 02:50:02 +02:00
|
|
|
VERSION_NACK,
|
|
|
|
VERSION_FULL
|
2007-02-11 00:17:11 +02:00
|
|
|
} version_ack_t;
|
|
|
|
|
|
|
|
static void
|
2008-08-07 17:16:12 +03:00
|
|
|
send_version_response(int fd, version_ack_t ack, uint32_t payload, int userid, struct query *q)
|
2007-02-11 00:17:11 +02:00
|
|
|
{
|
2007-02-11 02:50:02 +02:00
|
|
|
char out[9];
|
2007-02-11 00:17:11 +02:00
|
|
|
|
|
|
|
switch (ack) {
|
|
|
|
case VERSION_ACK:
|
|
|
|
strncpy(out, "VACK", sizeof(out));
|
|
|
|
break;
|
|
|
|
case VERSION_NACK:
|
|
|
|
strncpy(out, "VNAK", sizeof(out));
|
|
|
|
break;
|
2007-02-11 02:50:02 +02:00
|
|
|
case VERSION_FULL:
|
|
|
|
strncpy(out, "VFUL", sizeof(out));
|
|
|
|
break;
|
2007-02-11 00:17:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
out[4] = ((payload >> 24) & 0xff);
|
|
|
|
out[5] = ((payload >> 16) & 0xff);
|
|
|
|
out[6] = ((payload >> 8) & 0xff);
|
|
|
|
out[7] = ((payload) & 0xff);
|
2008-08-07 17:16:12 +03:00
|
|
|
out[8] = userid & 0xff;
|
2007-02-11 00:17:11 +02:00
|
|
|
|
2008-08-07 17:16:12 +03:00
|
|
|
write_dns(fd, q, out, sizeof(out));
|
2007-02-11 00:17:11 +02:00
|
|
|
}
|
|
|
|
|
2009-01-04 15:53:32 +02:00
|
|
|
static void
|
|
|
|
send_chunk(int dns_fd, int userid) {
|
2009-01-04 20:56:24 +02:00
|
|
|
char pkt[4096];
|
|
|
|
int datalen;
|
2009-01-05 18:25:54 +02:00
|
|
|
int last;
|
|
|
|
|
2009-01-05 20:50:46 +02:00
|
|
|
datalen = MIN(users[userid].fragsize, users[userid].outpacket.len - users[userid].outpacket.offset);
|
2009-01-05 18:25:54 +02:00
|
|
|
|
|
|
|
if (datalen && users[userid].outpacket.sentlen > 0 &&
|
|
|
|
(
|
|
|
|
users[userid].outpacket.seqno != users[userid].out_acked_seqno ||
|
|
|
|
users[userid].outpacket.fragment != users[userid].out_acked_fragment
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
|
|
|
|
/* Still waiting on latest ack, send nothing */
|
|
|
|
datalen = 0;
|
|
|
|
last = 0;
|
|
|
|
/* TODO : count down and discard packet if no acks arrive within X queries */
|
|
|
|
} else {
|
|
|
|
memcpy(&pkt[2], &users[userid].outpacket.data[users[userid].outpacket.offset], datalen);
|
|
|
|
users[userid].outpacket.sentlen = datalen;
|
|
|
|
last = (users[userid].outpacket.len == users[userid].outpacket.offset + users[userid].outpacket.sentlen);
|
2009-01-04 20:56:24 +02:00
|
|
|
|
2009-01-05 18:25:54 +02:00
|
|
|
/* Increase fragment# when sending data with offset */
|
|
|
|
if (users[userid].outpacket.offset && datalen)
|
|
|
|
users[userid].outpacket.fragment++;
|
|
|
|
}
|
2009-01-04 20:56:24 +02:00
|
|
|
|
|
|
|
/* Build downstream data header (see doc/proto_xxxxxxxx.txt) */
|
|
|
|
|
|
|
|
/* First byte is 1 bit compression flag, 3 bits upstream seqno, 4 bits upstream fragment */
|
|
|
|
pkt[0] = (1<<7) | ((users[userid].inpacket.seqno & 7) << 4) | (users[userid].inpacket.fragment & 15);
|
|
|
|
/* Second byte is 3 bits downstream seqno, 4 bits downstream fragment, 1 bit last flag */
|
2009-01-05 18:25:54 +02:00
|
|
|
pkt[1] = ((users[userid].outpacket.seqno & 7) << 5) |
|
|
|
|
((users[userid].outpacket.fragment & 15) << 1) | (last & 1);
|
2009-01-04 20:56:24 +02:00
|
|
|
|
2009-01-04 15:53:32 +02:00
|
|
|
if (debug >= 1) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "OUT pkt seq# %d, frag %d (last=%d), offset %d, fragsize %d, total %d, to user %d\n",
|
2009-01-04 15:53:32 +02:00
|
|
|
users[userid].outpacket.seqno & 7, users[userid].outpacket.fragment & 15,
|
2009-01-05 18:25:54 +02:00
|
|
|
last, users[userid].outpacket.offset, datalen, users[userid].outpacket.len, userid);
|
2009-01-04 15:53:32 +02:00
|
|
|
}
|
2009-01-04 20:56:24 +02:00
|
|
|
write_dns(dns_fd, &users[userid].q, pkt, datalen + 2);
|
2009-01-04 15:53:32 +02:00
|
|
|
users[userid].q.id = 0;
|
2009-01-05 18:25:54 +02:00
|
|
|
|
|
|
|
if (users[userid].outpacket.len > 0 &&
|
|
|
|
users[userid].outpacket.len == users[userid].outpacket.sentlen) {
|
|
|
|
|
|
|
|
/* Whole packet was sent in one chunk, dont wait for ack */
|
|
|
|
users[userid].outpacket.len = 0;
|
|
|
|
users[userid].outpacket.offset = 0;
|
|
|
|
users[userid].outpacket.sentlen = 0;
|
|
|
|
}
|
2009-01-04 15:53:32 +02:00
|
|
|
}
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
static void
|
|
|
|
update_downstream_seqno(int dns_fd, int userid, int down_seq, int down_frag)
|
|
|
|
{
|
2009-01-05 18:25:54 +02:00
|
|
|
/* If we just read a new packet from tun we have not sent a fragment of, just send it */
|
|
|
|
if (users[userid].outpacket.len > 0 && users[userid].outpacket.sentlen == 0) {
|
|
|
|
send_chunk(dns_fd, userid);
|
|
|
|
return;
|
2008-12-12 00:39:06 +02:00
|
|
|
}
|
|
|
|
|
2009-01-05 18:25:54 +02:00
|
|
|
/* otherwise, check if we received ack on a fragment and can send next */
|
|
|
|
if (users[userid].outpacket.len > 0 &&
|
|
|
|
users[userid].outpacket.seqno == down_seq && users[userid].outpacket.fragment == down_frag) {
|
|
|
|
|
|
|
|
if (down_seq != users[userid].out_acked_seqno || down_frag != users[userid].out_acked_fragment) {
|
|
|
|
/* Received ACK on downstream fragment */
|
|
|
|
users[userid].outpacket.offset += users[userid].outpacket.sentlen;
|
|
|
|
users[userid].outpacket.sentlen = 0;
|
|
|
|
|
|
|
|
/* Is packet done? */
|
|
|
|
if (users[userid].outpacket.offset == users[userid].outpacket.len) {
|
|
|
|
users[userid].outpacket.len = 0;
|
|
|
|
users[userid].outpacket.offset = 0;
|
|
|
|
users[userid].outpacket.sentlen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
users[userid].out_acked_seqno = down_seq;
|
|
|
|
users[userid].out_acked_fragment = down_frag;
|
|
|
|
|
|
|
|
/* Send reply if waiting */
|
|
|
|
if (users[userid].outpacket.len > 0) {
|
|
|
|
send_chunk(dns_fd, userid);
|
|
|
|
}
|
|
|
|
}
|
2008-12-12 00:39:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
static void
|
2008-08-07 19:49:22 +03:00
|
|
|
handle_null_request(int tun_fd, int dns_fd, struct query *q, int domain_len)
|
2007-12-01 23:55:48 +02:00
|
|
|
{
|
2007-12-02 01:02:06 +02:00
|
|
|
struct in_addr tempip;
|
2007-02-11 18:39:09 +02:00
|
|
|
struct ip *hdr;
|
2007-02-11 00:17:11 +02:00
|
|
|
unsigned long outlen;
|
2008-08-07 19:49:22 +03:00
|
|
|
char in[512];
|
2007-12-02 01:02:06 +02:00
|
|
|
char logindata[16];
|
2006-08-25 00:23:29 +03:00
|
|
|
char out[64*1024];
|
2007-06-09 19:18:59 +03:00
|
|
|
char unpacked[64*1024];
|
2007-12-02 01:02:06 +02:00
|
|
|
char *tmp[2];
|
2007-02-11 02:50:02 +02:00
|
|
|
int userid;
|
2007-02-11 18:39:09 +02:00
|
|
|
int touser;
|
2007-12-02 01:02:06 +02:00
|
|
|
int version;
|
2006-08-25 00:23:29 +03:00
|
|
|
int code;
|
2008-08-06 00:53:19 +03:00
|
|
|
int read;
|
2007-02-04 19:00:20 +02:00
|
|
|
|
2007-02-11 02:50:02 +02:00
|
|
|
userid = -1;
|
2008-08-07 19:49:22 +03:00
|
|
|
|
|
|
|
memcpy(in, q->name, MIN(domain_len, sizeof(in)));
|
2008-08-06 00:53:19 +03:00
|
|
|
|
2007-02-04 19:00:20 +02:00
|
|
|
if(in[0] == 'V' || in[0] == 'v') {
|
2008-08-07 19:49:22 +03:00
|
|
|
read = unpack_data(unpacked, sizeof(unpacked), &(in[1]), domain_len - 1, b32);
|
2007-12-02 01:02:06 +02:00
|
|
|
/* Version greeting, compare and send ack/nak */
|
|
|
|
if (read > 4) {
|
|
|
|
/* Received V + 32bits version */
|
|
|
|
version = (((unpacked[0] & 0xff) << 24) |
|
|
|
|
((unpacked[1] & 0xff) << 16) |
|
|
|
|
((unpacked[2] & 0xff) << 8) |
|
|
|
|
((unpacked[3] & 0xff)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (version == VERSION) {
|
|
|
|
userid = find_available_user();
|
|
|
|
if (userid >= 0) {
|
2008-08-05 17:47:51 +03:00
|
|
|
struct sockaddr_in *tempin;
|
|
|
|
|
2007-12-02 01:02:06 +02:00
|
|
|
users[userid].seed = rand();
|
2008-08-05 17:47:51 +03:00
|
|
|
/* Store remote IP number */
|
2008-08-06 00:53:19 +03:00
|
|
|
tempin = (struct sockaddr_in *) &(q->from);
|
2008-08-05 17:47:51 +03:00
|
|
|
memcpy(&(users[userid].host), &(tempin->sin_addr), sizeof(struct in_addr));
|
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
memcpy(&(users[userid].q), q, sizeof(struct query));
|
2007-12-02 01:02:06 +02:00
|
|
|
users[userid].encoder = get_base32_encoder();
|
2008-08-07 17:16:12 +03:00
|
|
|
send_version_response(dns_fd, VERSION_ACK, users[userid].seed, userid, q);
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_INFO, "accepted version for user #%d from %s",
|
|
|
|
userid, inet_ntoa(tempin->sin_addr));
|
2007-12-02 01:02:06 +02:00
|
|
|
users[userid].q.id = 0;
|
|
|
|
} else {
|
|
|
|
/* No space for another user */
|
2009-01-04 14:39:28 +02:00
|
|
|
send_version_response(dns_fd, VERSION_FULL, created_users, 0, q);
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_INFO, "dropped user from %s, server full",
|
|
|
|
inet_ntoa(((struct sockaddr_in *) &q->from)->sin_addr));
|
2007-12-02 01:02:06 +02:00
|
|
|
}
|
|
|
|
} else {
|
2008-08-07 17:16:12 +03:00
|
|
|
send_version_response(dns_fd, VERSION_NACK, VERSION, 0, q);
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_INFO, "dropped user from %s, sent bad version %08X",
|
|
|
|
inet_ntoa(((struct sockaddr_in *) &q->from)->sin_addr), version);
|
2007-12-02 01:02:06 +02:00
|
|
|
}
|
2008-08-07 19:49:22 +03:00
|
|
|
return;
|
2007-02-04 19:00:20 +02:00
|
|
|
} else if(in[0] == 'L' || in[0] == 'l') {
|
2008-08-07 19:49:22 +03:00
|
|
|
read = unpack_data(unpacked, sizeof(unpacked), &(in[1]), domain_len - 1, b32);
|
2007-12-02 01:02:06 +02:00
|
|
|
/* Login phase, handle auth */
|
|
|
|
userid = unpacked[0];
|
|
|
|
|
2009-01-10 22:23:50 +02:00
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2008-08-06 00:53:19 +03:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_WARNING, "dropped login request from user #%d from unexpected source %s",
|
|
|
|
userid, inet_ntoa(((struct sockaddr_in *) &q->from)->sin_addr));
|
2009-01-10 22:23:50 +02:00
|
|
|
return;
|
2007-12-02 01:02:06 +02:00
|
|
|
} else {
|
2009-01-10 22:23:50 +02:00
|
|
|
users[userid].last_pkt = time(NULL);
|
|
|
|
login_calculate(logindata, 16, password, users[userid].seed);
|
|
|
|
|
2007-12-02 01:02:06 +02:00
|
|
|
if (read >= 18 && (memcmp(logindata, unpacked+1, 16) == 0)) {
|
2009-01-04 14:39:28 +02:00
|
|
|
/* Login ok, send ip/mtu/netmask info */
|
2007-12-02 01:02:06 +02:00
|
|
|
|
|
|
|
tempip.s_addr = my_ip;
|
|
|
|
tmp[0] = strdup(inet_ntoa(tempip));
|
|
|
|
tempip.s_addr = users[userid].tun_ip;
|
|
|
|
tmp[1] = strdup(inet_ntoa(tempip));
|
|
|
|
|
2009-01-04 14:39:28 +02:00
|
|
|
read = snprintf(out, sizeof(out), "%s-%s-%d-%d",
|
|
|
|
tmp[0], tmp[1], my_mtu, netmask);
|
2007-12-02 01:02:06 +02:00
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
write_dns(dns_fd, q, out, read);
|
|
|
|
q->id = 0;
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_NOTICE, "accepted password from user #%d, given IP %s", userid, tmp[1]);
|
2007-12-02 01:02:06 +02:00
|
|
|
|
|
|
|
free(tmp[1]);
|
|
|
|
free(tmp[0]);
|
|
|
|
} else {
|
2008-08-06 00:53:19 +03:00
|
|
|
write_dns(dns_fd, q, "LNAK", 4);
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_WARNING, "rejected login request from user #%d from %s, bad password",
|
|
|
|
userid, inet_ntoa(((struct sockaddr_in *) &q->from)->sin_addr));
|
2007-12-02 01:02:06 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-07 19:49:22 +03:00
|
|
|
return;
|
2009-06-11 22:52:42 +03:00
|
|
|
} else if(in[0] == 'I' || in[0] == 'i') {
|
|
|
|
/* Request for IP number */
|
|
|
|
in_addr_t replyaddr;
|
|
|
|
unsigned addr;
|
|
|
|
char reply[5];
|
|
|
|
|
|
|
|
userid = b32_8to5(in[1]);
|
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
|
|
|
return; /* illegal id */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns_ip != INADDR_ANY) {
|
|
|
|
/* If set, use assigned external ip (-n option) */
|
|
|
|
replyaddr = ns_ip;
|
|
|
|
} else {
|
|
|
|
/* otherwise return destination ip from packet */
|
|
|
|
memcpy(&replyaddr, &q->destination.s_addr, sizeof(in_addr_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = htonl(replyaddr);
|
|
|
|
reply[0] = 'I';
|
|
|
|
reply[1] = (addr >> 24) & 0xFF;
|
|
|
|
reply[2] = (addr >> 16) & 0xFF;
|
|
|
|
reply[3] = (addr >> 8) & 0xFF;
|
|
|
|
reply[4] = (addr >> 0) & 0xFF;
|
|
|
|
write_dns(dns_fd, q, reply, sizeof(reply));
|
2007-07-12 11:31:29 +03:00
|
|
|
} else if(in[0] == 'Z' || in[0] == 'z') {
|
2008-09-14 14:34:56 +03:00
|
|
|
/* Check for case conservation and chars not allowed according to RFC */
|
2007-07-12 11:31:29 +03:00
|
|
|
|
|
|
|
/* Reply with received hostname as data */
|
2008-08-07 19:49:22 +03:00
|
|
|
write_dns(dns_fd, q, in, domain_len);
|
2008-08-06 00:53:19 +03:00
|
|
|
return;
|
2008-09-14 14:34:56 +03:00
|
|
|
} else if(in[0] == 'S' || in[0] == 's') {
|
|
|
|
int codec;
|
|
|
|
struct encoder *enc;
|
2009-06-12 08:44:34 +03:00
|
|
|
if (domain_len < 3) { /* len at least 3, example: "S15" */
|
2008-09-14 14:34:56 +03:00
|
|
|
write_dns(dns_fd, q, "BADLEN", 6);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
userid = b32_8to5(in[1]);
|
2008-09-14 14:34:56 +03:00
|
|
|
|
2009-01-10 22:23:50 +02:00
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2008-09-14 14:34:56 +03:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
|
|
|
return; /* illegal id */
|
|
|
|
}
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
codec = b32_8to5(in[2]);
|
|
|
|
|
2008-09-14 14:34:56 +03:00
|
|
|
switch (codec) {
|
|
|
|
case 5: /* 5 bits per byte = base32 */
|
|
|
|
enc = get_base32_encoder();
|
|
|
|
user_switch_codec(userid, enc);
|
|
|
|
write_dns(dns_fd, q, enc->name, strlen(enc->name));
|
|
|
|
break;
|
|
|
|
case 6: /* 6 bits per byte = base64 */
|
|
|
|
enc = get_base64_encoder();
|
|
|
|
user_switch_codec(userid, enc);
|
|
|
|
write_dns(dns_fd, q, enc->name, strlen(enc->name));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
write_dns(dns_fd, q, "BADCODEC", 8);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
2009-01-10 18:22:51 +02:00
|
|
|
} else if(in[0] == 'R' || in[0] == 'r') {
|
|
|
|
int req_frag_size;
|
|
|
|
|
|
|
|
/* Downstream fragsize probe packet */
|
|
|
|
userid = (b32_8to5(in[1]) >> 1) & 15;
|
2009-01-10 22:23:50 +02:00
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2009-01-10 18:22:51 +02:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
|
|
|
return; /* illegal id */
|
|
|
|
}
|
|
|
|
|
|
|
|
req_frag_size = ((b32_8to5(in[1]) & 1) << 10) | ((b32_8to5(in[2]) & 31) << 5) | (b32_8to5(in[3]) & 31);
|
|
|
|
if (req_frag_size < 2 || req_frag_size > 2047) {
|
|
|
|
write_dns(dns_fd, q, "BADFRAG", 7);
|
|
|
|
} else {
|
|
|
|
char buf[2048];
|
|
|
|
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
buf[0] = (req_frag_size >> 8) & 0xff;
|
|
|
|
buf[1] = req_frag_size & 0xff;
|
|
|
|
write_dns(dns_fd, q, buf, req_frag_size);
|
|
|
|
}
|
|
|
|
return;
|
2009-01-05 21:47:59 +02:00
|
|
|
} else if(in[0] == 'N' || in[0] == 'n') {
|
|
|
|
int max_frag_size;
|
|
|
|
|
|
|
|
read = unpack_data(unpacked, sizeof(unpacked), &(in[1]), domain_len - 1, b32);
|
|
|
|
/* Downstream fragsize packet */
|
|
|
|
userid = unpacked[0];
|
2009-01-10 22:23:50 +02:00
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2009-01-05 21:47:59 +02:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
|
|
|
return; /* illegal id */
|
|
|
|
}
|
|
|
|
|
|
|
|
max_frag_size = ((unpacked[1] & 0xff) << 8) | (unpacked[2] & 0xff);
|
2009-01-10 18:22:51 +02:00
|
|
|
if (max_frag_size < 2) {
|
2009-01-05 21:47:59 +02:00
|
|
|
write_dns(dns_fd, q, "BADFRAG", 7);
|
|
|
|
} else {
|
|
|
|
users[userid].fragsize = max_frag_size;
|
|
|
|
write_dns(dns_fd, q, &unpacked[1], 2);
|
|
|
|
}
|
|
|
|
return;
|
2008-12-12 00:39:06 +02:00
|
|
|
} else if(in[0] == 'P' || in[0] == 'p') {
|
|
|
|
int dn_seq;
|
|
|
|
int dn_frag;
|
|
|
|
|
|
|
|
read = unpack_data(unpacked, sizeof(unpacked), &(in[1]), domain_len - 1, b32);
|
|
|
|
/* Ping packet, store userid */
|
|
|
|
userid = unpacked[0];
|
2009-01-10 22:23:50 +02:00
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2008-12-12 00:39:06 +02:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
|
|
|
return; /* illegal id */
|
|
|
|
}
|
2009-01-05 18:25:54 +02:00
|
|
|
|
|
|
|
if (debug >= 1) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "PING pkt from user %d\n", userid);
|
2009-01-05 18:25:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (users[userid].q.id != 0) {
|
|
|
|
/* Send reply on earlier query before overwriting */
|
|
|
|
send_chunk(dns_fd, userid);
|
|
|
|
}
|
2008-12-12 00:39:06 +02:00
|
|
|
|
|
|
|
dn_seq = unpacked[1] >> 4;
|
|
|
|
dn_frag = unpacked[1] & 15;
|
|
|
|
memcpy(&(users[userid].q), q, sizeof(struct query));
|
|
|
|
users[userid].last_pkt = time(NULL);
|
|
|
|
|
|
|
|
/* Update seqno and maybe send immediate response packet */
|
|
|
|
update_downstream_seqno(dns_fd, userid, dn_seq, dn_frag);
|
2007-02-04 19:00:20 +02: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;
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
userid = code;
|
2009-01-10 22:23:50 +02:00
|
|
|
/* Check user and sending ip number */
|
|
|
|
if (check_user_and_ip(userid, q) != 0) {
|
2008-08-06 00:53:19 +03:00
|
|
|
write_dns(dns_fd, q, "BADIP", 5);
|
2007-02-04 19:00:20 +02:00
|
|
|
} else {
|
2008-12-12 00:39:06 +02:00
|
|
|
/* Decode data header */
|
|
|
|
int up_seq = (b32_8to5(in[1]) >> 2) & 7;
|
|
|
|
int up_frag = ((b32_8to5(in[1]) & 3) << 2) | ((b32_8to5(in[2]) >> 3) & 3);
|
|
|
|
int dn_seq = (b32_8to5(in[2]) & 7);
|
|
|
|
int dn_frag = b32_8to5(in[3]) >> 1;
|
|
|
|
int lastfrag = b32_8to5(in[3]) & 1;
|
|
|
|
|
2009-01-05 18:25:54 +02:00
|
|
|
if (users[userid].q.id != 0) {
|
|
|
|
/* Send reply on earlier query before overwriting */
|
|
|
|
send_chunk(dns_fd, userid);
|
|
|
|
}
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
/* Update query and time info for user */
|
|
|
|
users[userid].last_pkt = time(NULL);
|
|
|
|
memcpy(&(users[userid].q), q, sizeof(struct query));
|
|
|
|
|
2008-12-14 19:21:27 +02:00
|
|
|
if (up_seq == users[userid].inpacket.seqno &&
|
|
|
|
up_frag <= users[userid].inpacket.fragment) {
|
|
|
|
/* Got repeated old packet, skip it */
|
|
|
|
if (debug >= 1) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "IN pkt seq# %d, frag %d, dropped duplicate\n",
|
2008-12-14 19:21:27 +02:00
|
|
|
up_seq, up_frag);
|
|
|
|
}
|
|
|
|
/* Update seqno and maybe send immediate response packet */
|
|
|
|
update_downstream_seqno(dns_fd, userid, dn_seq, dn_frag);
|
|
|
|
return;
|
|
|
|
}
|
2008-12-12 00:39:06 +02:00
|
|
|
if (up_seq != users[userid].inpacket.seqno) {
|
|
|
|
/* New packet has arrived */
|
|
|
|
users[userid].inpacket.seqno = up_seq;
|
|
|
|
users[userid].inpacket.len = 0;
|
|
|
|
users[userid].inpacket.offset = 0;
|
|
|
|
}
|
|
|
|
users[userid].inpacket.fragment = up_frag;
|
|
|
|
|
2007-06-09 19:18:59 +03:00
|
|
|
/* decode with this users encoding */
|
2008-12-12 00:39:06 +02:00
|
|
|
read = unpack_data(unpacked, sizeof(unpacked), &(in[4]), domain_len - 4,
|
2007-06-09 19:18:59 +03:00
|
|
|
users[userid].encoder);
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
/* copy to packet buffer, update length */
|
2007-06-09 19:18:59 +03:00
|
|
|
memcpy(users[userid].inpacket.data + users[userid].inpacket.offset, unpacked, read);
|
|
|
|
users[userid].inpacket.len += read;
|
|
|
|
users[userid].inpacket.offset += read;
|
2007-02-04 19:00:20 +02:00
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 1) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "IN pkt seq# %d, frag %d (last=%d), fragsize %d, total %d, from user %d\n",
|
2008-12-12 00:39:06 +02:00
|
|
|
up_seq, up_frag, lastfrag, read, users[userid].inpacket.len, userid);
|
|
|
|
}
|
2007-02-04 19:00:20 +02:00
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (lastfrag & 1) { /* packet is complete */
|
|
|
|
int ret;
|
|
|
|
outlen = sizeof(out);
|
|
|
|
ret = uncompress((uint8_t*)out, &outlen,
|
|
|
|
(uint8_t*)users[userid].inpacket.data, users[userid].inpacket.len);
|
|
|
|
|
|
|
|
if (ret == Z_OK) {
|
|
|
|
hdr = (struct ip*) (out + 4);
|
|
|
|
touser = find_user_by_ip(hdr->ip_dst.s_addr);
|
|
|
|
|
|
|
|
if (touser == -1) {
|
|
|
|
/* send the uncompressed packet to tun device */
|
|
|
|
write_tun(tun_fd, out, outlen);
|
|
|
|
} else {
|
|
|
|
/* send the compressed packet to other client
|
|
|
|
* if another packet is queued, throw away this one. TODO build queue */
|
|
|
|
if (users[touser].outpacket.len == 0) {
|
|
|
|
memcpy(users[touser].outpacket.data, users[userid].inpacket.data, users[userid].inpacket.len);
|
|
|
|
users[touser].outpacket.len = users[userid].inpacket.len;
|
|
|
|
}
|
2007-02-11 18:39:09 +02:00
|
|
|
}
|
2008-12-12 00:39:06 +02:00
|
|
|
} else {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Discarded data, uncompress() result: %d\n", ret);
|
2007-02-11 18:39:09 +02:00
|
|
|
}
|
2008-07-12 14:36:39 +03:00
|
|
|
users[userid].inpacket.len = users[userid].inpacket.offset = 0;
|
2007-02-04 19:00:20 +02:00
|
|
|
}
|
2008-12-12 00:39:06 +02:00
|
|
|
/* Update seqno and maybe send immediate response packet */
|
|
|
|
update_downstream_seqno(dns_fd, userid, dn_seq, dn_frag);
|
2007-02-04 19:00:20 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-06 00:53:19 +03:00
|
|
|
}
|
|
|
|
|
2008-09-09 23:55:13 +03:00
|
|
|
static void
|
|
|
|
handle_ns_request(int dns_fd, struct query *q)
|
|
|
|
{
|
|
|
|
char buf[64*1024];
|
|
|
|
int len;
|
|
|
|
|
2008-09-14 16:21:11 +03:00
|
|
|
if (ns_ip != INADDR_ANY) {
|
2009-06-11 22:52:42 +03:00
|
|
|
/* If ns_ip set, overwrite destination addr with it.
|
|
|
|
* Destination addr will be sent as additional record (A, IN) */
|
2008-09-14 16:21:11 +03:00
|
|
|
memcpy(&q->destination.s_addr, &ns_ip, sizeof(in_addr_t));
|
|
|
|
}
|
|
|
|
|
2008-09-09 23:55:13 +03:00
|
|
|
len = dns_encode_ns_response(buf, sizeof(buf), q, topdomain);
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2008-09-10 00:09:06 +03:00
|
|
|
struct sockaddr_in *tempin;
|
|
|
|
tempin = (struct sockaddr_in *) &(q->from);
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "TX: client %s, type %d, name %s, %d bytes NS reply\n",
|
2008-09-10 00:09:06 +03:00
|
|
|
inet_ntoa(tempin->sin_addr), q->type, q->name, len);
|
|
|
|
}
|
2008-09-09 23:55:13 +03:00
|
|
|
if (sendto(dns_fd, buf, len, 0, (struct sockaddr*)&q->from, q->fromlen) <= 0) {
|
|
|
|
warn("ns reply send error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-08 00:18:15 +03:00
|
|
|
static void
|
|
|
|
forward_query(int bind_fd, struct query *q)
|
|
|
|
{
|
|
|
|
char buf[64*1024];
|
|
|
|
int len;
|
|
|
|
struct fw_query fwq;
|
|
|
|
struct sockaddr_in *myaddr;
|
|
|
|
in_addr_t newaddr;
|
|
|
|
|
|
|
|
len = dns_encode(buf, sizeof(buf), q, QR_QUERY, q->name, strlen(q->name));
|
|
|
|
|
|
|
|
/* Store sockaddr for q->id */
|
|
|
|
memcpy(&(fwq.addr), &(q->from), q->fromlen);
|
|
|
|
fwq.addrlen = q->fromlen;
|
|
|
|
fwq.id = q->id;
|
|
|
|
fw_query_put(&fwq);
|
|
|
|
|
|
|
|
newaddr = inet_addr("127.0.0.1");
|
|
|
|
myaddr = (struct sockaddr_in *) &(q->from);
|
|
|
|
memcpy(&(myaddr->sin_addr), &newaddr, sizeof(in_addr_t));
|
|
|
|
myaddr->sin_port = htons(bind_port);
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "TX: NS reply \n");
|
2008-08-08 00:18:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sendto(bind_fd, buf, len, 0, (struct sockaddr*)&q->from, q->fromlen) <= 0) {
|
|
|
|
warn("forward query error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
static int
|
2008-08-08 00:18:15 +03:00
|
|
|
tunnel_bind(int bind_fd, int dns_fd)
|
|
|
|
{
|
|
|
|
char packet[64*1024];
|
|
|
|
struct sockaddr_in from;
|
2009-01-25 22:03:45 +02:00
|
|
|
socklen_t fromlen;
|
2008-08-08 00:18:15 +03:00
|
|
|
struct fw_query *query;
|
2009-02-09 22:44:08 +02:00
|
|
|
unsigned short id;
|
2008-08-08 00:18:15 +03:00
|
|
|
int r;
|
|
|
|
|
|
|
|
fromlen = sizeof(struct sockaddr);
|
2008-09-09 22:55:45 +03:00
|
|
|
r = recvfrom(bind_fd, packet, sizeof(packet), 0,
|
|
|
|
(struct sockaddr*)&from, &fromlen);
|
2008-08-08 00:18:15 +03:00
|
|
|
|
|
|
|
if (r <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
id = dns_get_id(packet, r);
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "RX: Got response on query %u from DNS\n", (id & 0xFFFF));
|
2008-08-08 00:18:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get sockaddr from id */
|
|
|
|
fw_query_get(id, &query);
|
2008-12-12 00:39:06 +02:00
|
|
|
if (!query && debug >= 2) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Lost sender of id %u, dropping reply\n", (id & 0xFFFF));
|
2008-08-08 00:18:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2008-08-08 00:18:15 +03:00
|
|
|
struct sockaddr_in *in;
|
|
|
|
in = (struct sockaddr_in *) &(query->addr);
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "TX: client %s id %u, %d bytes\n",
|
2008-08-08 00:18:15 +03:00
|
|
|
inet_ntoa(in->sin_addr), (id & 0xffff), r);
|
|
|
|
}
|
|
|
|
|
2008-09-09 22:55:45 +03:00
|
|
|
if (sendto(dns_fd, packet, r, 0, (const struct sockaddr *) &(query->addr),
|
|
|
|
query->addrlen) <= 0) {
|
2008-08-08 00:18:15 +03:00
|
|
|
warn("forward reply error");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tunnel_dns(int tun_fd, int dns_fd, int bind_fd)
|
2008-08-06 00:53:19 +03:00
|
|
|
{
|
|
|
|
struct query q;
|
|
|
|
int read;
|
2008-08-07 19:49:22 +03:00
|
|
|
char *domain;
|
|
|
|
int domain_len;
|
|
|
|
int inside_topdomain;
|
2008-08-06 00:53:19 +03:00
|
|
|
|
|
|
|
if ((read = read_dns(dns_fd, &q)) <= 0)
|
|
|
|
return 0;
|
2008-08-06 01:37:40 +03:00
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2008-08-06 01:37:40 +03:00
|
|
|
struct sockaddr_in *tempin;
|
|
|
|
tempin = (struct sockaddr_in *) &(q.from);
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "RX: client %s, type %d, name %s\n",
|
2008-09-09 22:36:51 +03:00
|
|
|
inet_ntoa(tempin->sin_addr), q.type, q.name);
|
2008-08-06 01:37:40 +03:00
|
|
|
}
|
2008-08-06 00:53:19 +03:00
|
|
|
|
2008-08-07 19:49:22 +03:00
|
|
|
domain = strstr(q.name, topdomain);
|
|
|
|
inside_topdomain = 0;
|
|
|
|
if (domain) {
|
|
|
|
domain_len = (int) (domain - q.name);
|
|
|
|
if (domain_len + strlen(topdomain) == strlen(q.name)) {
|
|
|
|
inside_topdomain = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inside_topdomain) {
|
|
|
|
/* This is a query we can handle */
|
|
|
|
switch (q.type) {
|
|
|
|
case T_NULL:
|
|
|
|
handle_null_request(tun_fd, dns_fd, &q, domain_len);
|
|
|
|
break;
|
2008-09-09 23:55:13 +03:00
|
|
|
case T_NS:
|
|
|
|
handle_ns_request(dns_fd, &q);
|
|
|
|
break;
|
2008-08-07 19:49:22 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Forward query to other port ? */
|
2008-08-08 00:18:15 +03:00
|
|
|
if (bind_fd) {
|
|
|
|
forward_query(bind_fd, &q);
|
|
|
|
}
|
2008-08-06 00:53:19 +03:00
|
|
|
}
|
2007-02-04 19:00:20 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-08-08 00:18:15 +03:00
|
|
|
tunnel(int tun_fd, int dns_fd, int bind_fd)
|
2007-02-04 19:00:20 +02:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
fd_set fds;
|
2006-08-25 00:23:29 +03:00
|
|
|
int i;
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
while (running) {
|
2008-08-08 00:18:15 +03:00
|
|
|
int maxfd;
|
2008-09-14 15:44:55 +03:00
|
|
|
if (users_waiting_on_reply()) {
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 15000;
|
|
|
|
} else {
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
2008-08-08 00:18:15 +03:00
|
|
|
|
|
|
|
FD_SET(dns_fd, &fds);
|
|
|
|
maxfd = dns_fd;
|
|
|
|
|
|
|
|
if (bind_fd) {
|
|
|
|
/* wait for replies from real DNS */
|
|
|
|
FD_SET(bind_fd, &fds);
|
|
|
|
maxfd = MAX(bind_fd, maxfd);
|
|
|
|
}
|
|
|
|
|
2007-02-11 13:51:30 +02:00
|
|
|
/* TODO : use some kind of packet queue */
|
2007-02-11 15:39:32 +02:00
|
|
|
if(!all_users_waiting_to_send()) {
|
2006-06-06 01:36:05 +03:00
|
|
|
FD_SET(tun_fd, &fds);
|
2008-08-08 00:18:15 +03:00
|
|
|
maxfd = MAX(tun_fd, maxfd);
|
2007-02-11 15:39:32 +02:00
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2008-08-08 00:18:15 +03:00
|
|
|
i = select(maxfd + 1, &fds, NULL, NULL, &tv);
|
2006-06-05 21:47:09 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2008-09-14 15:44:55 +03:00
|
|
|
|
|
|
|
if (i==0) {
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < USERS; j++) {
|
|
|
|
if (users[j].q.id != 0) {
|
2009-01-04 15:53:32 +02:00
|
|
|
send_chunk(dns_fd, j);
|
2008-09-14 15:44:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(FD_ISSET(tun_fd, &fds)) {
|
|
|
|
tunnel_tun(tun_fd, dns_fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(FD_ISSET(dns_fd, &fds)) {
|
|
|
|
tunnel_dns(tun_fd, dns_fd, bind_fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(FD_ISSET(bind_fd, &fds)) {
|
|
|
|
tunnel_bind(bind_fd, dns_fd);
|
|
|
|
continue;
|
|
|
|
}
|
2008-08-08 00:18:15 +03:00
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-04 17:46:06 +02:00
|
|
|
static int
|
2008-08-06 00:53:19 +03:00
|
|
|
read_dns(int fd, struct query *q)
|
2007-02-04 17:46:06 +02:00
|
|
|
{
|
|
|
|
struct sockaddr_in from;
|
2009-01-25 18:42:28 +02:00
|
|
|
socklen_t addrlen;
|
2008-08-08 01:12:10 +03:00
|
|
|
char packet[64*1024];
|
2009-01-25 00:19:11 +02:00
|
|
|
int r;
|
|
|
|
#ifndef WINDOWS32
|
2008-08-08 01:12:10 +03:00
|
|
|
char address[96];
|
|
|
|
struct msghdr msg;
|
|
|
|
struct iovec iov;
|
|
|
|
struct cmsghdr *cmsg;
|
2007-02-04 17:46:06 +02:00
|
|
|
|
|
|
|
addrlen = sizeof(struct sockaddr);
|
2008-08-08 01:12:10 +03:00
|
|
|
iov.iov_base = packet;
|
|
|
|
iov.iov_len = sizeof(packet);
|
|
|
|
|
|
|
|
msg.msg_name = (caddr_t) &from;
|
|
|
|
msg.msg_namelen = (unsigned) addrlen;
|
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
msg.msg_control = address;
|
|
|
|
msg.msg_controllen = sizeof(address);
|
|
|
|
msg.msg_flags = 0;
|
|
|
|
|
|
|
|
r = recvmsg(fd, &msg, 0);
|
2009-01-25 00:19:11 +02:00
|
|
|
#else
|
|
|
|
addrlen = sizeof(struct sockaddr);
|
2009-01-25 18:42:28 +02:00
|
|
|
r = recvfrom(fd, packet, sizeof(packet), 0, (struct sockaddr*)&from, &addrlen);
|
2009-01-25 00:19:11 +02:00
|
|
|
#endif /* !WINDOWS32 */
|
2007-02-04 17:46:06 +02:00
|
|
|
|
|
|
|
if (r > 0) {
|
2009-06-14 14:14:40 +03:00
|
|
|
if (dns_decode(NULL, 0, q, QR_QUERY, packet, r) < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2008-08-06 00:53:19 +03:00
|
|
|
memcpy((struct sockaddr*)&q->from, (struct sockaddr*)&from, addrlen);
|
|
|
|
q->fromlen = addrlen;
|
2008-08-08 01:12:10 +03:00
|
|
|
|
2009-01-25 00:19:11 +02:00
|
|
|
#ifndef WINDOWS32
|
2008-09-09 22:55:45 +03:00
|
|
|
for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL;
|
|
|
|
cmsg = CMSG_NXTHDR(&msg, cmsg)) {
|
|
|
|
|
|
|
|
if (cmsg->cmsg_level == IPPROTO_IP &&
|
|
|
|
cmsg->cmsg_type == DSTADDR_SOCKOPT) {
|
|
|
|
|
2008-08-08 01:12:10 +03:00
|
|
|
q->destination = *dstaddr(cmsg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-25 00:19:11 +02:00
|
|
|
#endif
|
2009-01-25 00:12:00 +02:00
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
return strlen(q->name);
|
2007-06-09 19:18:59 +03:00
|
|
|
} else if (r < 0) {
|
2007-02-04 19:00:20 +02:00
|
|
|
/* Error */
|
2007-07-12 16:01:18 +03:00
|
|
|
warn("read dns");
|
2007-02-04 17:46:06 +02:00
|
|
|
}
|
|
|
|
|
2008-08-06 00:53:19 +03:00
|
|
|
return 0;
|
2007-02-04 17:46:06 +02:00
|
|
|
}
|
|
|
|
|
2007-02-05 19:49:30 +02:00
|
|
|
static void
|
|
|
|
write_dns(int fd, struct query *q, char *data, int datalen)
|
|
|
|
{
|
|
|
|
char buf[64*1024];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = dns_encode(buf, sizeof(buf), q, QR_ANSWER, data, datalen);
|
|
|
|
|
2008-12-12 00:39:06 +02:00
|
|
|
if (debug >= 2) {
|
2008-08-06 01:37:40 +03:00
|
|
|
struct sockaddr_in *tempin;
|
|
|
|
tempin = (struct sockaddr_in *) &(q->from);
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "TX: client %s, type %d, name %s, %d bytes data\n",
|
2008-08-06 01:37:40 +03:00
|
|
|
inet_ntoa(tempin->sin_addr), q->type, q->name, datalen);
|
|
|
|
}
|
|
|
|
|
2007-02-05 19:49:30 +02:00
|
|
|
sendto(fd, buf, len, 0, (struct sockaddr*)&q->from, q->fromlen);
|
|
|
|
}
|
|
|
|
|
2006-06-09 23:35:26 +03:00
|
|
|
static void
|
|
|
|
usage() {
|
2006-08-25 00:26:40 +03:00
|
|
|
extern char *__progname;
|
|
|
|
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Usage: %s [-v] [-h] [-c] [-s] [-f] [-D] [-u user] "
|
2008-09-09 22:55:45 +03:00
|
|
|
"[-t chrootdir] [-d device] [-m mtu] "
|
2008-09-14 16:21:11 +03:00
|
|
|
"[-l ip address to listen on] [-p port] [-n external ip] [-b dnsport] [-P password]"
|
2009-01-04 14:39:28 +02:00
|
|
|
" tunnel_ip[/netmask] 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:26:40 +03:00
|
|
|
extern char *__progname;
|
|
|
|
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "iodine IP over DNS tunneling server\n");
|
|
|
|
fprintf(stderr, "Usage: %s [-v] [-h] [-c] [-s] [-f] [-D] [-u user] "
|
2008-09-09 22:55:45 +03:00
|
|
|
"[-t chrootdir] [-d device] [-m mtu] "
|
2008-09-14 16:21:11 +03:00
|
|
|
"[-l ip address to listen on] [-p port] [-n external ip] [-b dnsport] [-P password]"
|
2009-01-04 14:39:28 +02:00
|
|
|
" tunnel_ip[/netmask] topdomain\n", __progname);
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, " -v to print version info and exit\n");
|
|
|
|
fprintf(stderr, " -h to print this help and exit\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 22:55:45 +03:00
|
|
|
"which then has to be created manually\n");
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, " -f to keep running in foreground\n");
|
|
|
|
fprintf(stderr, " -D to increase debug level\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, " -l ip address to listen on for incoming dns traffic "
|
2008-09-09 22:55:45 +03:00
|
|
|
"(default 0.0.0.0)\n");
|
2009-02-28 16:35:03 +02:00
|
|
|
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, "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 16:14:57 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-11 16:27:48 +03:00
|
|
|
static void
|
|
|
|
version() {
|
2008-07-12 14:36:39 +03:00
|
|
|
char *svnver;
|
|
|
|
svnver = "$Rev$ from $Date$";
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "iodine IP over DNS tunneling server\n");
|
|
|
|
fprintf(stderr, "SVN version: %s\n", svnver);
|
2006-06-11 16:27:48 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2009-02-15 20:24:12 +02:00
|
|
|
extern char *__progname;
|
2007-07-12 16:46:58 +03:00
|
|
|
in_addr_t listen_ip;
|
2009-01-25 00:19:11 +02:00
|
|
|
#ifndef WINDOWS32
|
2007-07-12 16:46:58 +03:00
|
|
|
struct passwd *pw;
|
2009-01-25 00:19:11 +02:00
|
|
|
#endif
|
2007-07-12 16:46:58 +03:00
|
|
|
int foreground;
|
2006-06-09 23:35:26 +03:00
|
|
|
char *username;
|
2007-07-12 16:46:58 +03:00
|
|
|
char *newroot;
|
2006-06-24 13:28:24 +03:00
|
|
|
char *device;
|
2007-07-12 16:46:58 +03:00
|
|
|
int dnsd_fd;
|
|
|
|
int tun_fd;
|
2008-08-08 00:18:15 +03:00
|
|
|
|
|
|
|
/* settings for forwarding normal DNS to
|
|
|
|
* local real DNS server */
|
|
|
|
int bind_fd;
|
|
|
|
int bind_enable;
|
|
|
|
|
2007-07-12 16:46:58 +03:00
|
|
|
int choice;
|
2006-11-05 15:18:57 +02:00
|
|
|
int port;
|
2007-07-12 16:46:58 +03:00
|
|
|
int mtu;
|
2008-07-12 14:45:22 +03:00
|
|
|
int skipipconfig;
|
2009-01-04 14:39:28 +02:00
|
|
|
char *netsize;
|
2006-06-09 23:35:26 +03:00
|
|
|
|
|
|
|
username = NULL;
|
2006-06-11 18:24:20 +03:00
|
|
|
newroot = NULL;
|
2006-06-24 13:28:24 +03:00
|
|
|
device = NULL;
|
2006-06-11 16:05:41 +03:00
|
|
|
foreground = 0;
|
2008-08-08 00:18:15 +03:00
|
|
|
bind_enable = 0;
|
|
|
|
bind_fd = 0;
|
2009-03-07 02:32:14 +02:00
|
|
|
mtu = 1200;
|
2006-08-12 01:52:36 +03:00
|
|
|
listen_ip = INADDR_ANY;
|
2006-11-05 15:18:57 +02:00
|
|
|
port = 53;
|
2008-09-14 16:21:11 +03:00
|
|
|
ns_ip = INADDR_ANY;
|
2008-07-13 01:39:29 +03:00
|
|
|
check_ip = 1;
|
2008-07-12 14:45:22 +03:00
|
|
|
skipipconfig = 0;
|
2008-08-06 01:37:40 +03:00
|
|
|
debug = 0;
|
2009-01-04 14:03:35 +02:00
|
|
|
netmask = 27;
|
2006-06-11 21:43:37 +03:00
|
|
|
|
2007-06-09 19:18:59 +03:00
|
|
|
b32 = get_base32_encoder();
|
2009-01-25 19:16:00 +02:00
|
|
|
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
WSAStartup(req_version, &wsa_data);
|
|
|
|
#endif
|
2007-06-09 19:18:59 +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
|
|
|
|
|
2007-07-12 16:46:58 +03:00
|
|
|
memset(password, 0, sizeof(password));
|
2006-11-19 02:41:42 +02:00
|
|
|
srand(time(NULL));
|
2008-08-08 00:18:15 +03:00
|
|
|
fw_query_init();
|
2006-06-11 15:45:46 +03:00
|
|
|
|
2008-09-14 16:21:11 +03:00
|
|
|
while ((choice = getopt(argc, argv, "vcsfhDu:t:d:m:l:p:n:b:P:")) != -1) {
|
2006-06-09 23:35:26 +03:00
|
|
|
switch(choice) {
|
2006-06-11 16:27:48 +03:00
|
|
|
case 'v':
|
|
|
|
version();
|
|
|
|
break;
|
2008-07-13 01:39:29 +03:00
|
|
|
case 'c':
|
|
|
|
check_ip = 0;
|
|
|
|
break;
|
2008-07-12 14:45:22 +03:00
|
|
|
case 's':
|
|
|
|
skipipconfig = 1;
|
|
|
|
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;
|
2008-08-06 01:37:40 +03:00
|
|
|
case 'D':
|
|
|
|
debug++;
|
|
|
|
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-06-11 18:24:20 +03:00
|
|
|
case 'm':
|
|
|
|
mtu = atoi(optarg);
|
|
|
|
break;
|
2006-08-12 01:52:36 +03:00
|
|
|
case 'l':
|
|
|
|
listen_ip = inet_addr(optarg);
|
|
|
|
break;
|
2006-11-05 15:18:57 +02:00
|
|
|
case 'p':
|
|
|
|
port = atoi(optarg);
|
|
|
|
break;
|
2008-09-14 16:21:11 +03:00
|
|
|
case 'n':
|
|
|
|
ns_ip = inet_addr(optarg);
|
|
|
|
break;
|
2008-08-08 00:18:15 +03:00
|
|
|
case 'b':
|
|
|
|
bind_enable = 1;
|
|
|
|
bind_port = atoi(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:46:58 +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();
|
2006-06-11 17:33:59 +03:00
|
|
|
break;
|
2006-06-09 23:35:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-02-04 22:37:36 +02:00
|
|
|
|
2009-01-24 17:50:54 +02:00
|
|
|
check_superuser(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();
|
2008-09-14 16:21:11 +03:00
|
|
|
|
2009-01-04 14:39:28 +02:00
|
|
|
netsize = strchr(argv[0], '/');
|
|
|
|
if (netsize) {
|
|
|
|
*netsize = 0;
|
|
|
|
netsize++;
|
|
|
|
netmask = atoi(netsize);
|
|
|
|
}
|
|
|
|
|
2008-09-14 16:21:11 +03:00
|
|
|
my_ip = inet_addr(argv[0]);
|
|
|
|
|
|
|
|
if (my_ip == INADDR_NONE) {
|
|
|
|
warnx("Bad IP address to use inside tunnel.\n");
|
|
|
|
usage();
|
|
|
|
}
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2007-02-04 22:37:36 +02:00
|
|
|
topdomain = strdup(argv[1]);
|
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 18:48:05 +03:00
|
|
|
if (username != NULL) {
|
2009-01-25 00:19:11 +02:00
|
|
|
#ifndef WINDOWS32
|
2007-07-12 18:48:05 +03:00
|
|
|
if ((pw = getpwnam(username)) == NULL) {
|
|
|
|
warnx("User %s does not exist!\n", username);
|
2006-06-11 15:18:49 +03:00
|
|
|
usage();
|
|
|
|
}
|
2009-01-25 00:19:11 +02:00
|
|
|
#endif
|
2006-06-11 15:18:49 +03:00
|
|
|
}
|
|
|
|
|
2008-07-12 14:41:01 +03:00
|
|
|
if (mtu <= 0) {
|
2007-07-12 18:48:05 +03:00
|
|
|
warnx("Bad MTU given.\n");
|
2006-06-11 18:24:20 +03:00
|
|
|
usage();
|
|
|
|
}
|
2008-07-12 14:41:01 +03:00
|
|
|
|
|
|
|
if(port < 1 || port > 65535) {
|
|
|
|
warnx("Bad port number given.\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2008-08-08 00:18:15 +03:00
|
|
|
if(bind_enable) {
|
|
|
|
if (bind_port < 1 || bind_port > 65535 || bind_port == port) {
|
|
|
|
warnx("Bad DNS server port number given.\n");
|
|
|
|
usage();
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Requests for domains outside of %s will be forwarded to port %d\n",
|
2008-08-08 00:18:15 +03:00
|
|
|
topdomain, bind_port);
|
|
|
|
}
|
|
|
|
|
2008-07-12 14:41:01 +03:00
|
|
|
if (port != 53) {
|
2009-02-28 16:35:03 +02:00
|
|
|
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);
|
2008-07-12 14:41:01 +03:00
|
|
|
}
|
2006-06-11 18:24:20 +03:00
|
|
|
|
2008-08-06 01:37:40 +03:00
|
|
|
if (debug) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Debug level %d enabled, will stay in foreground.\n", debug);
|
|
|
|
fprintf(stderr, "Add more -D switches to set higher debug level.\n");
|
2008-08-06 01:37:40 +03:00
|
|
|
foreground = 1;
|
|
|
|
}
|
|
|
|
|
2006-08-12 01:52:36 +03:00
|
|
|
if (listen_ip == INADDR_NONE) {
|
2007-07-12 18:48:05 +03:00
|
|
|
warnx("Bad IP address to listen on.\n");
|
2006-08-12 01:52:36 +03:00
|
|
|
usage();
|
|
|
|
}
|
2008-09-14 16:21:11 +03:00
|
|
|
|
|
|
|
if (ns_ip == INADDR_NONE) {
|
|
|
|
warnx("Bad IP address to return as nameserver.\n");
|
|
|
|
usage();
|
|
|
|
}
|
2009-01-04 14:03:35 +02:00
|
|
|
if (netmask > 30 || netmask < 8) {
|
|
|
|
warnx("Bad netmask (%d bits). Use 8-30 bits.\n", netmask);
|
|
|
|
usage();
|
|
|
|
}
|
2008-09-14 16:21:11 +03:00
|
|
|
|
2007-07-12 18:48:05 +03:00
|
|
|
if (strlen(password) == 0)
|
|
|
|
read_password(password, sizeof(password));
|
2006-11-18 18:08:47 +02:00
|
|
|
|
2006-06-24 13:28:24 +03:00
|
|
|
if ((tun_fd = open_tun(device)) == -1)
|
2006-06-11 18:24:20 +03:00
|
|
|
goto cleanup0;
|
2008-07-12 14:45:22 +03:00
|
|
|
if (!skipipconfig)
|
2009-01-04 14:39:28 +02:00
|
|
|
if (tun_setip(argv[0], netmask) != 0 || tun_setmtu(mtu) != 0)
|
2008-07-12 14:45:22 +03:00
|
|
|
goto cleanup1;
|
2007-01-28 13:52:36 +02:00
|
|
|
if ((dnsd_fd = open_dns(port, listen_ip)) == -1)
|
2006-06-11 17:42:19 +03:00
|
|
|
goto cleanup2;
|
2008-08-08 00:18:15 +03:00
|
|
|
if (bind_enable)
|
|
|
|
if ((bind_fd = open_dns(0, INADDR_ANY)) == -1)
|
|
|
|
goto cleanup3;
|
2006-06-23 10:58:36 +03:00
|
|
|
|
|
|
|
my_mtu = mtu;
|
|
|
|
|
2009-01-04 14:03:35 +02:00
|
|
|
created_users = init_users(my_ip, netmask);
|
|
|
|
|
|
|
|
if (created_users < USERS) {
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Limiting to %d simultaneous users because of netmask /%d\n",
|
2009-01-04 14:03:35 +02:00
|
|
|
created_users, netmask);
|
|
|
|
}
|
2009-02-28 16:35:03 +02:00
|
|
|
fprintf(stderr, "Listening to dns for domain %s\n", topdomain);
|
2006-06-11 17:42:19 +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-11 16:05:41 +03:00
|
|
|
|
2006-06-05 21:47:09 +03:00
|
|
|
signal(SIGINT, sigint);
|
2007-07-12 18:48:05 +03:00
|
|
|
if (username != NULL) {
|
2009-01-25 00:19:11 +02:00
|
|
|
#ifndef WINDOWS32
|
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 18:48:05 +03:00
|
|
|
warnx("Could not switch to user %s!\n", username);
|
2006-06-09 23:35:26 +03:00
|
|
|
usage();
|
|
|
|
}
|
2009-01-25 00:19:11 +02:00
|
|
|
#endif
|
2006-06-09 23:35:26 +03:00
|
|
|
}
|
2009-02-15 20:24:12 +02:00
|
|
|
|
|
|
|
#ifndef WINDOWS32
|
|
|
|
openlog(__progname, LOG_NOWAIT, LOG_DAEMON);
|
|
|
|
#endif
|
|
|
|
syslog(LOG_INFO, "started, listening on port %d", port);
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2008-08-08 00:18:15 +03:00
|
|
|
tunnel(tun_fd, dnsd_fd, bind_fd);
|
2006-06-05 21:47:09 +03:00
|
|
|
|
2009-02-15 20:24:12 +02:00
|
|
|
syslog(LOG_INFO, "stopping");
|
2008-08-08 00:18:15 +03:00
|
|
|
cleanup3:
|
|
|
|
close_dns(bind_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;
|
|
|
|
}
|