2007-02-04 15:22:55 +00:00
|
|
|
/*
|
2009-01-03 23:27:21 +00:00
|
|
|
* Copyright (c) 2006-2009 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
2007-02-04 15:22:55 +00: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COMMON_H__
|
|
|
|
#define __COMMON_H__
|
|
|
|
|
2009-01-24 22:19:11 +00:00
|
|
|
#ifdef WINDOWS32
|
|
|
|
#include "windows.h"
|
|
|
|
#include <winsock.h>
|
|
|
|
#else
|
2007-02-10 23:21:12 +00:00
|
|
|
#include <sys/socket.h>
|
2009-01-24 22:19:11 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <arpa/inet.h>
|
2009-01-06 10:47:01 +00:00
|
|
|
#include <netinet/in.h>
|
2009-01-24 22:19:11 +00:00
|
|
|
#endif
|
|
|
|
|
2007-02-10 23:21:12 +00:00
|
|
|
|
2007-02-04 20:37:36 +00:00
|
|
|
#ifndef MIN
|
|
|
|
#define MIN(a,b) ((a)<(b)?(a):(b))
|
|
|
|
#endif
|
2007-02-04 17:00:20 +00:00
|
|
|
#ifndef MAX
|
|
|
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
|
|
#endif
|
|
|
|
|
2007-08-26 15:47:32 +00:00
|
|
|
#define QUERY_NAME_SIZE 256
|
|
|
|
|
2008-08-07 22:12:10 +00:00
|
|
|
#if defined IP_RECVDSTADDR
|
|
|
|
# define DSTADDR_SOCKOPT IP_RECVDSTADDR
|
2008-12-25 16:56:13 +00:00
|
|
|
# define dstaddr(x) ((struct in_addr *) CMSG_DATA(x))
|
2008-08-07 22:12:10 +00:00
|
|
|
#elif defined IP_PKTINFO
|
|
|
|
# define DSTADDR_SOCKOPT IP_PKTINFO
|
|
|
|
# define dstaddr(x) (&(((struct in_pktinfo *)(CMSG_DATA(x)))->ipi_addr))
|
|
|
|
#endif
|
|
|
|
|
2008-07-12 11:36:39 +00:00
|
|
|
struct packet
|
|
|
|
{
|
|
|
|
int len; /* Total packet length */
|
|
|
|
int sentlen; /* Length of chunk currently transmitted */
|
|
|
|
int offset; /* Current offset */
|
|
|
|
char data[64*1024]; /* The data */
|
2008-12-06 19:08:14 +00:00
|
|
|
char seqno; /* The packet sequence number */
|
|
|
|
char fragment; /* Fragment index */
|
2008-07-12 11:36:39 +00:00
|
|
|
};
|
|
|
|
|
2007-02-04 15:22:55 +00:00
|
|
|
struct query {
|
2007-08-26 15:47:32 +00:00
|
|
|
char name[QUERY_NAME_SIZE];
|
2009-01-03 20:13:31 +00:00
|
|
|
unsigned short type;
|
|
|
|
unsigned short id;
|
2008-08-07 22:12:10 +00:00
|
|
|
struct in_addr destination;
|
2007-02-04 15:22:55 +00:00
|
|
|
struct sockaddr from;
|
|
|
|
int fromlen;
|
|
|
|
};
|
|
|
|
|
2009-01-24 15:50:54 +00:00
|
|
|
void check_superuser(void (*usage_fn)(void));
|
2007-02-04 15:22:55 +00:00
|
|
|
int open_dns(int, in_addr_t);
|
|
|
|
void close_dns(int);
|
|
|
|
|
2007-03-01 21:14:51 +00:00
|
|
|
void do_chroot(char *);
|
2007-03-01 21:19:01 +00:00
|
|
|
void do_detach();
|
2007-03-01 21:14:51 +00:00
|
|
|
|
2007-07-12 15:48:05 +00:00
|
|
|
void read_password(char*, size_t);
|
|
|
|
|
2008-07-12 11:41:01 +00:00
|
|
|
int check_topdomain(char *);
|
|
|
|
|
2009-01-24 22:19:11 +00:00
|
|
|
#ifdef WINDOWS32
|
|
|
|
int inet_aton(const char *cp, struct in_addr *inp);
|
|
|
|
#endif
|
|
|
|
|
2007-02-04 15:22:55 +00:00
|
|
|
#endif
|