2015-08-21 08:57:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2015 Erik Ekman <yarrick@kryo.se>,
|
|
|
|
* 2006-2009 Bjorn Andersson <flex@kryo.se>,
|
|
|
|
* 2015 Frekk van Blagh <frekk@frekkworks.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or 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 __SERVER_H__
|
|
|
|
#define __SERVER_H__
|
|
|
|
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
#include "windows.h"
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#ifdef DARWIN
|
|
|
|
#define BIND_8_COMPAT
|
|
|
|
#include <arpa/nameser_compat.h>
|
|
|
|
#endif
|
|
|
|
#define _XPG4_2
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
|
|
|
|
2015-09-28 05:09:49 +00:00
|
|
|
/* Max number of incoming queries to hold at one time (recommended to be same as windowsize)
|
|
|
|
* Memory = USERS * (sizeof(struct query_buffer) + sizeof(query) * QMEM_LEN) */
|
|
|
|
#define QMEM_LEN 24
|
2015-08-21 08:57:54 +00:00
|
|
|
|
2015-10-17 14:25:31 +00:00
|
|
|
#define USE_DNSCACHE
|
|
|
|
/* QMEM entries contain additional space for DNS responses.
|
|
|
|
* Undefine to disable. */
|
|
|
|
|
2015-08-29 12:08:46 +00:00
|
|
|
/* Number of fragments in outgoing buffer.
|
2015-09-28 05:09:49 +00:00
|
|
|
* Mem usage: USERS * (MAX_FRAGLEN * OUTFRAGBUF_LEN + sizeof(struct window_buffer)) */
|
2015-08-29 12:08:46 +00:00
|
|
|
#define OUTFRAGBUF_LEN 64
|
|
|
|
|
2015-09-28 05:09:49 +00:00
|
|
|
/* Number of fragments in incoming buffer; must be at least windowsize * 2
|
2015-08-29 12:08:46 +00:00
|
|
|
* Minimum recommended = ((max packet size or MTU) / (max up fragsize)) * 2
|
|
|
|
* ie. (1200 / 100) * 2 = 24 */
|
2015-09-28 05:09:49 +00:00
|
|
|
#define INFRAGBUF_LEN 64
|
2015-08-29 12:08:46 +00:00
|
|
|
|
2015-08-21 08:57:54 +00:00
|
|
|
#define PASSWORD_ENV_VAR "IODINED_PASS"
|
|
|
|
|
|
|
|
#if defined IP_RECVDSTADDR
|
|
|
|
# define DSTADDR_SOCKOPT IP_RECVDSTADDR
|
|
|
|
# define dstaddr(x) ((struct in_addr *) CMSG_DATA(x))
|
|
|
|
#elif defined IP_PKTINFO
|
|
|
|
# define DSTADDR_SOCKOPT IP_PKTINFO
|
|
|
|
# define dstaddr(x) (&(((struct in_pktinfo *)(CMSG_DATA(x)))->ipi_addr))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IPV6_RECVPKTINFO
|
|
|
|
#define IPV6_RECVPKTINFO IPV6_PKTINFO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(BSD) && !defined(__GLIBC__)
|
|
|
|
static char *__progname;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Struct with IPv4 and IPv6 file descriptors.
|
|
|
|
* Need to be passed on down to tunneling code since we can get a
|
|
|
|
* packet on one fd meant for a user on the other.
|
|
|
|
*/
|
|
|
|
struct dnsfd {
|
|
|
|
int v4fd;
|
|
|
|
int v6fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
VERSION_ACK,
|
|
|
|
VERSION_NACK,
|
|
|
|
VERSION_FULL
|
|
|
|
} version_ack_t;
|
|
|
|
|
2015-10-17 14:25:31 +00:00
|
|
|
struct query_answer {
|
|
|
|
uint8_t data[4096];
|
|
|
|
size_t len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct qmem_query {
|
|
|
|
struct query q;
|
|
|
|
#ifdef USE_DNSCACHE
|
|
|
|
struct query_answer a;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Struct used for QMEM + DNS cache */
|
|
|
|
struct qmem_buffer {
|
|
|
|
struct qmem_query queries[QMEM_LEN];
|
2015-09-28 05:09:49 +00:00
|
|
|
size_t start_pending; /* index of first "pending" query (ie. no response yet) */
|
|
|
|
size_t start; /* index of first stored/pending query */
|
|
|
|
size_t end; /* index of space after last stored/pending query */
|
|
|
|
size_t length; /* number of stored queries */
|
|
|
|
size_t num_pending; /* number of pending queries */
|
|
|
|
};
|
|
|
|
|
2015-08-21 08:57:54 +00:00
|
|
|
extern char *topdomain;
|
|
|
|
extern char password[33];
|
|
|
|
extern struct encoder *b32;
|
|
|
|
extern struct encoder *b64;
|
|
|
|
extern struct encoder *b64u;
|
|
|
|
extern struct encoder *b128;
|
|
|
|
|
|
|
|
extern int check_ip;
|
|
|
|
extern int my_mtu;
|
|
|
|
extern in_addr_t my_ip;
|
|
|
|
extern int netmask;
|
|
|
|
|
|
|
|
extern in_addr_t ns_ip;
|
|
|
|
|
|
|
|
extern int bind_port;
|
|
|
|
extern int debug;
|
|
|
|
|
|
|
|
void server_init();
|
|
|
|
void server_stop();
|
|
|
|
int server_tunnel(int tun_fd, struct dnsfd *dns_fds, int bind_fd, int max_idle_time);
|
|
|
|
|
|
|
|
int read_dns(int fd, struct dnsfd *dns_fds, int tun_fd, struct query *q);
|
2015-08-29 12:08:46 +00:00
|
|
|
void write_dns(int fd, struct query *q, char *data, size_t datalen, char downenc);
|
2015-09-28 05:09:49 +00:00
|
|
|
void handle_full_packet(int tun_fd, struct dnsfd *dns_fds, int userid, uint8_t *data, size_t len, int);
|
2015-08-21 08:57:54 +00:00
|
|
|
void handle_null_request(int tun_fd, int dns_fd, struct dnsfd *dns_fds, struct query *q, int domain_len);
|
|
|
|
void handle_ns_request(int dns_fd, struct query *q);
|
|
|
|
void handle_a_request(int dns_fd, struct query *q, int fakeip);
|
|
|
|
|
2015-10-05 02:20:03 +00:00
|
|
|
void send_data_or_ping(struct dnsfd *, int, struct query *, int, int);
|
2015-10-03 14:11:58 +00:00
|
|
|
|
2015-08-21 08:57:54 +00:00
|
|
|
#endif /* __SERVER_H__ */
|