mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 16:19:20 +02:00
#4 - moved common stuff to common.c and moved open_dns, close_dns there
This commit is contained in:
parent
8c7fb4d947
commit
692b595cfc
|
@ -1,8 +1,8 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CLIENT = ../bin/iodine
|
CLIENT = ../bin/iodine
|
||||||
CLIENTOBJS = iodine.o tun.o dns.o read.o encoding.o login.o base32.o md5.o
|
CLIENTOBJS = iodine.o tun.o dns.o read.o encoding.o login.o base32.o md5.o common.o
|
||||||
SERVER = ../bin/iodined
|
SERVER = ../bin/iodined
|
||||||
SERVEROBJS = iodined.o tun.o dns.o read.o encoding.o login.o base32.o md5.o
|
SERVEROBJS = iodined.o tun.o dns.o read.o encoding.o login.o base32.o md5.o common.o
|
||||||
|
|
||||||
OS = `uname | tr "a-z" "A-Z"`
|
OS = `uname | tr "a-z" "A-Z"`
|
||||||
ARCH = `uname -m`
|
ARCH = `uname -m`
|
||||||
|
|
42
src/dns.c
42
src/dns.c
|
@ -33,7 +33,6 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "structs.h"
|
|
||||||
#include "dns.h"
|
#include "dns.h"
|
||||||
#include "encoding.h"
|
#include "encoding.h"
|
||||||
#include "read.h"
|
#include "read.h"
|
||||||
|
@ -61,42 +60,6 @@ static uint16_t chunkid;
|
||||||
static uint16_t pingid;
|
static uint16_t pingid;
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
open_dns(int localport, in_addr_t listen_ip)
|
|
||||||
{
|
|
||||||
int fd;
|
|
||||||
int flag;
|
|
||||||
struct sockaddr_in addr;
|
|
||||||
|
|
||||||
memset(&addr, 0, sizeof(addr));
|
|
||||||
addr.sin_family = AF_INET;
|
|
||||||
addr.sin_port = htons(localport);
|
|
||||||
/* listen_ip already in network byte order from inet_addr, or 0 */
|
|
||||||
addr.sin_addr.s_addr = listen_ip;
|
|
||||||
|
|
||||||
fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
|
||||||
if(fd < 0) {
|
|
||||||
warn("socket");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
flag = 1;
|
|
||||||
#ifdef SO_REUSEPORT
|
|
||||||
setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &flag, sizeof(flag));
|
|
||||||
#endif
|
|
||||||
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof(flag));
|
|
||||||
|
|
||||||
if(bind(fd, (struct sockaddr*)&addr, sizeof(addr)) < 0) {
|
|
||||||
warn("bind");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
printf("Opened UDP socket\n");
|
|
||||||
|
|
||||||
return fd;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
dns_set_topdomain(const char *domain)
|
dns_set_topdomain(const char *domain)
|
||||||
{
|
{
|
||||||
|
@ -128,11 +91,6 @@ dns_settarget(const char *host)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
close_dns(int fd)
|
|
||||||
{
|
|
||||||
close(fd);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
dns_sending()
|
dns_sending()
|
||||||
|
|
|
@ -14,18 +14,18 @@
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _DNS_H_
|
#ifndef __DNS_H__
|
||||||
#define _DNS_H_
|
#define __DNS_H__
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
QR_QUERY = 0,
|
QR_QUERY = 0,
|
||||||
QR_ANSWER = 1
|
QR_ANSWER = 1
|
||||||
} qr_t;
|
} qr_t;
|
||||||
|
|
||||||
int open_dns(int, in_addr_t);
|
|
||||||
int dns_settarget(const char*);
|
int dns_settarget(const char*);
|
||||||
void dns_set_topdomain(const char*);
|
void dns_set_topdomain(const char*);
|
||||||
void close_dns(int);
|
|
||||||
|
|
||||||
int dns_sending();
|
int dns_sending();
|
||||||
void dns_handle_tun(int, char *, int);
|
void dns_handle_tun(int, char *, int);
|
||||||
|
|
79
src/iodine.c
79
src/iodine.c
|
@ -30,11 +30,11 @@
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
|
||||||
#include "tun.h"
|
#include "common.h"
|
||||||
#include "structs.h"
|
|
||||||
#include "dns.h"
|
#include "dns.h"
|
||||||
#include "version.h"
|
|
||||||
#include "login.h"
|
#include "login.h"
|
||||||
|
#include "tun.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
#ifndef MAX
|
#ifndef MAX
|
||||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||||
|
@ -49,14 +49,49 @@ sighandler(int sig) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
tunnel(int tun_fd, int dns_fd)
|
tunnel_tun(int tun_fd, int dns_fd)
|
||||||
{
|
{
|
||||||
char out[64*1024];
|
char out[64*1024];
|
||||||
char in[64*1024];
|
char in[64*1024];
|
||||||
struct timeval tv;
|
size_t outlen;
|
||||||
long outlen;
|
|
||||||
fd_set fds;
|
|
||||||
int read;
|
int read;
|
||||||
|
|
||||||
|
read = read_tun(tun_fd, in, sizeof(in));
|
||||||
|
if(read > 0) {
|
||||||
|
outlen = sizeof(out);
|
||||||
|
compress2(out, &outlen, in, read, 9);
|
||||||
|
dns_handle_tun(dns_fd, out, outlen);
|
||||||
|
}
|
||||||
|
|
||||||
|
return read;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
tunnel_dns(int tun_fd, int dns_fd)
|
||||||
|
{
|
||||||
|
char out[64*1024];
|
||||||
|
char in[64*1024];
|
||||||
|
size_t outlen;
|
||||||
|
int read;
|
||||||
|
|
||||||
|
read = dns_read(dns_fd, in, sizeof(in));
|
||||||
|
if (read > 0) {
|
||||||
|
outlen = sizeof(out);
|
||||||
|
uncompress(out, &outlen, in, read);
|
||||||
|
|
||||||
|
write_tun(tun_fd, out, outlen);
|
||||||
|
if (!dns_sending())
|
||||||
|
dns_ping(dns_fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
return read;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
tunnel(int tun_fd, int dns_fd)
|
||||||
|
{
|
||||||
|
struct timeval tv;
|
||||||
|
fd_set fds;
|
||||||
int i;
|
int i;
|
||||||
int rv;
|
int rv;
|
||||||
|
|
||||||
|
@ -73,39 +108,23 @@ tunnel(int tun_fd, int dns_fd)
|
||||||
|
|
||||||
i = select(MAX(tun_fd, dns_fd) + 1, &fds, NULL, NULL, &tv);
|
i = select(MAX(tun_fd, dns_fd) + 1, &fds, NULL, NULL, &tv);
|
||||||
|
|
||||||
if (!running) {
|
if (running == 0 || i < 0) {
|
||||||
rv = 1;
|
rv = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(i < 0) {
|
if (i == 0) /* timeout */
|
||||||
warn("select");
|
dns_ping(dns_fd);
|
||||||
rv = 1;
|
else {
|
||||||
break;
|
|
||||||
} else if (i > 0) {
|
|
||||||
if(FD_ISSET(tun_fd, &fds)) {
|
if(FD_ISSET(tun_fd, &fds)) {
|
||||||
read = read_tun(tun_fd, in, sizeof(in));
|
if (tunnel_tun(tun_fd, dns_fd) <= 0)
|
||||||
if(read <= 0)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
outlen = sizeof(out);
|
|
||||||
compress2(out, &outlen, in, read, 9);
|
|
||||||
dns_handle_tun(dns_fd, out, outlen);
|
|
||||||
}
|
}
|
||||||
if(FD_ISSET(dns_fd, &fds)) {
|
if(FD_ISSET(dns_fd, &fds)) {
|
||||||
read = dns_read(dns_fd, in, sizeof(in));
|
if (tunnel_dns(tun_fd, dns_fd) <= 0)
|
||||||
if (read <= 0)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
outlen = sizeof(out);
|
|
||||||
uncompress(out, &outlen, in, read);
|
|
||||||
|
|
||||||
write_tun(tun_fd, out, outlen);
|
|
||||||
if (!dns_sending())
|
|
||||||
dns_ping(dns_fd);
|
|
||||||
}
|
}
|
||||||
} else
|
}
|
||||||
dns_ping(dns_fd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return rv;
|
return rv;
|
||||||
|
|
|
@ -32,10 +32,10 @@
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
|
||||||
#include "tun.h"
|
#include "common.h"
|
||||||
#include "structs.h"
|
|
||||||
#include "dns.h"
|
#include "dns.h"
|
||||||
#include "login.h"
|
#include "login.h"
|
||||||
|
#include "tun.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
#ifndef MAX
|
#ifndef MAX
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2006 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and distribute this software for any
|
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
|
||||||
* copyright notice and this permission notice appear in all copies.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _STRUCTS_H_
|
|
||||||
#define _STRUCTS_H_
|
|
||||||
|
|
||||||
struct packet
|
|
||||||
{
|
|
||||||
int len;
|
|
||||||
int offset;
|
|
||||||
char data[64*1024];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct query {
|
|
||||||
char name[258];
|
|
||||||
short type;
|
|
||||||
short id;
|
|
||||||
struct sockaddr from;
|
|
||||||
int fromlen;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct user {
|
|
||||||
int id;
|
|
||||||
struct sockaddr host;
|
|
||||||
int addrlen;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* _STRUCTS_H_ */
|
|
Loading…
Reference in New Issue