iodine/iodine.c

222 lines
4.1 KiB
C
Raw Normal View History

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>
#include <stdint.h>
#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>
#include <sys/types.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>
#include <pwd.h>
2006-06-06 03:17:28 +03:00
#include <arpa/inet.h>
2006-06-06 20:59:24 +03:00
#include <zlib.h>
2006-06-05 15:41:08 +03:00
#include "tun.h"
2006-06-05 16:38:10 +03:00
#include "dns.h"
2006-06-05 15:41:08 +03:00
2006-06-06 03:18:29 +03:00
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
2006-06-05 17:46:10 +03:00
int running = 1;
static void
sigint(int sig) {
running = 0;
}
2006-06-05 17:43:04 +03:00
static int
tunnel(int tun_fd, int dns_fd)
{
int i;
2006-06-05 18:31:07 +03:00
int read;
2006-06-05 17:43:04 +03:00
fd_set fds;
2006-06-05 18:31:07 +03:00
struct timeval tv;
char in[64*1024];
long outlen;
char out[64*1024];
2006-06-06 02:34:23 +03:00
2006-06-05 17:46:10 +03:00
while (running) {
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);
if(i < 0) {
if (running) {
warn("select");
}
2006-06-05 17:43:04 +03:00
return 1;
}
if(i == 0) {
2006-06-06 02:49:18 +03:00
dns_ping(dns_fd);
2006-06-05 17:43:04 +03:00
} else {
if(FD_ISSET(tun_fd, &fds)) {
read = read_tun(tun_fd, in, sizeof(in));
if(read <= 0)
continue;
outlen = sizeof(out);
compress2(out, &outlen, in, read, 9);
dns_handle_tun(dns_fd, out, outlen);
2006-06-05 17:43:04 +03:00
}
if(FD_ISSET(dns_fd, &fds)) {
read = dns_read(dns_fd, in, sizeof(in));
if (read <= 0)
continue;
outlen = sizeof(out);
uncompress(out, &outlen, in, read);
write_tun(tun_fd, out, outlen);
if (!dns_sending())
dns_ping(dns_fd);
2006-06-05 17:43:04 +03:00
}
}
}
return 0;
}
2006-06-11 15:18:49 +03:00
extern char *__progname;
static void
usage() {
2006-06-11 17:29:36 +03:00
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] "
"nameserver topdomain\n", __progname);
exit(2);
}
2006-06-11 16:14:57 +03:00
static void
help() {
2006-06-11 16:27:48 +03:00
printf("iodine IP over DNS tunneling client\n");
2006-06-11 17:29:36 +03:00
printf("Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] "
"nameserver topdomain\n", __progname);
2006-06-11 16:14:57 +03:00
printf(" -f is to keep running in foreground\n");
printf(" -u name to drop privileges and run as user 'name'\n");
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
main(int argc, char **argv)
2006-06-05 15:41:08 +03:00
{
2006-06-11 17:29:36 +03:00
int choice;
2006-06-05 17:43:04 +03:00
int tun_fd;
int dns_fd;
2006-06-11 17:29:36 +03:00
char *newroot;
char *username;
2006-06-11 16:05:41 +03:00
int foreground;
2006-06-11 17:29:36 +03:00
struct passwd *pw;
username = NULL;
2006-06-11 16:05:41 +03:00
foreground = 0;
2006-06-11 15:45:46 +03:00
2006-06-11 17:29:36 +03:00
while ((choice = getopt(argc, argv, "vfhu:t:")) != -1) {
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;
case 'u':
username = optarg;
break;
2006-06-11 17:29:36 +03:00
case 't':
newroot = optarg;
break;
default:
usage();
2006-06-11 17:29:36 +03:00
/* NOTREACHED */
}
}
if (geteuid() != 0) {
printf("Run as root and you'll be happy.\n");
usage();
}
argc -= optind;
argv += optind;
2006-06-11 15:18:49 +03:00
2006-06-11 17:29:36 +03:00
if (argc != 2)
usage();
2006-06-11 15:18:49 +03:00
if(username) {
pw = getpwnam(username);
if (!pw) {
printf("User %s does not exist!\n", username);
usage();
}
}
2006-06-05 17:43:04 +03:00
tun_fd = open_tun();
dns_fd = open_dns(argv[0], argv[1]);
2006-06-05 17:46:10 +03:00
signal(SIGINT, sigint);
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) {
daemon(0, 0);
umask(0);
alarm(0);
}
if (username) {
if (setgid(pw->pw_gid) < 0 || setuid(pw->pw_uid) < 0) {
printf("Could not switch to user %s!\n", username);
usage();
}
printf("Now running as user %s\n", username);
}
2006-06-05 17:43:04 +03:00
tunnel(tun_fd, dns_fd);
2006-06-05 15:41:08 +03:00
2006-06-05 17:46:10 +03:00
printf("Closing tunnel\n");
2006-06-05 17:43:04 +03:00
close_dns(dns_fd);
close_tun(tun_fd);
2006-06-05 15:41:08 +03:00
return 0;
}