3b194cdbc3011f6eb60d0fcabb89eba248aa7ca4
[oweals/tinc.git] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998,1999,2000 Ivo Timmermans <zarq@iname.com>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19     $Id: net.h,v 1.9.4.10 2000/09/14 14:32:34 zarq Exp $
20 */
21
22 #ifndef __TINC_NET_H__
23 #define __TINC_NET_H__
24
25 #include <sys/time.h>
26
27 #include "config.h"
28 #include "conf.h"
29
30 #define MAXSIZE 1700  /* should be a bit more than the MTU for the tapdevice */
31 #define MTU 1600
32
33 #define MAC_ADDR_S "%02x:%02x:%02x:%02x:%02x:%02x"
34 #define MAC_ADDR_V(x) ((unsigned char*)&(x))[0],((unsigned char*)&(x))[1], \
35                       ((unsigned char*)&(x))[2],((unsigned char*)&(x))[3], \
36                       ((unsigned char*)&(x))[4],((unsigned char*)&(x))[5]
37
38 #define IP_ADDR_S "%d.%d.%d.%d"
39
40 #ifdef WORDS_BIGENDIAN
41 # define IP_ADDR_V(x) ((unsigned char*)&(x))[0],((unsigned char*)&(x))[1], \
42                       ((unsigned char*)&(x))[2],((unsigned char*)&(x))[3]
43 #else
44 # define IP_ADDR_V(x) ((unsigned char*)&(x))[3],((unsigned char*)&(x))[2], \
45                       ((unsigned char*)&(x))[1],((unsigned char*)&(x))[0]
46 #endif
47
48 #define MAXBUFSIZE 2048 /* Probably way too much, but it must fit every possible request. */
49
50 /* flags */
51 #define INDIRECTDATA        0x0001 /* Used to indicate that this host has to be reached indirect */
52 #define EXPORTINDIRECTDATA  0x0002 /* Used to indicate uplink that it has to tell others to do INDIRECTDATA */
53 #define TCPONLY             0x0004 /* Tells sender to send packets over TCP instead of UDP (for firewalls) */
54
55 typedef unsigned long ip_t;
56 typedef short length_t;
57
58 struct conn_list_t;
59
60 typedef struct subnet_t {
61   ip_t netaddr;
62   ip_t netmask;
63   struct conn_list_t *owner;
64   struct subnet_t *next;
65   struct subnet_t *prev;
66 } subnet_t;  
67
68 typedef struct vpn_packet_t {
69   length_t len;         /* the actual number of bytes in the `data' field */
70   unsigned char data[MAXSIZE];
71 } vpn_packet_t;
72
73 typedef struct real_packet_t {
74   length_t len;         /* the length of the entire packet */
75   ip_t from;            /* where the packet came from */
76   vpn_packet_t data;    /* encrypted vpn_packet_t */
77 } real_packet_t;
78
79 typedef struct passphrase_t {
80   unsigned short len;
81   unsigned char *phrase;
82 } passphrase_t;
83
84 typedef struct status_bits_t {
85   int pinged:1;                    /* sent ping */
86   int got_pong:1;                  /* received pong */
87   int meta:1;                      /* meta connection exists */
88   int active:1;                    /* 1 if active.. */
89   int outgoing:1;                  /* I myself asked for this conn */
90   int termreq:1;                   /* the termination of this connection was requested */
91   int remove:1;                    /* Set to 1 if you want this connection removed */
92   int timeout:1;                   /* 1 if gotten timeout */
93   int validkey:1;                  /* 1 if we currently have a valid key for him */
94   int waitingforkey:1;             /* 1 if we already sent out a request */
95   int dataopen:1;                  /* 1 if we have a valid UDP connection open */
96   int encryptout:1;                /* 1 if we can encrypt outgoing traffic */
97   int encryptin:1;                 /* 1 if we have to decrypt incoming traffic */
98   int unused:19;
99 } status_bits_t;
100
101 typedef struct queue_element_t {
102   void *packet;
103   struct queue_element_t *prev;
104   struct queue_element_t *next;
105 } queue_element_t;
106
107 typedef struct packet_queue_t {
108   queue_element_t *head;
109   queue_element_t *tail;
110 } packet_queue_t;
111
112 typedef struct enc_key_t {
113   int length;
114   char *key;
115   time_t expiry;
116 } enc_key_t;
117
118 typedef struct conn_list_t {
119   char *name;                      /* name of this connection */
120   ip_t vpn_ip;                     /* his vpn ip */
121   ip_t vpn_mask;                   /* his vpn network address */
122   ip_t real_ip;                    /* his real (internet) ip */
123   char *hostname;             /* the hostname of its real ip */
124   short unsigned int port;         /* his portnumber */
125   int flags;                       /* his flags */
126   int socket;                      /* our udp vpn socket */
127   int meta_socket;                 /* our tcp meta socket */
128   int protocol_version;            /* used protocol */
129   status_bits_t status;            /* status info */
130   passphrase_t *pp;                /* encoded passphrase */
131   packet_queue_t *sq;              /* pending outgoing packets */
132   packet_queue_t *rq;              /* pending incoming packets (they have no
133                                       valid key to be decrypted with) */
134   enc_key_t *public_key;           /* the other party's public key */
135   enc_key_t *key;                  /* encrypt with this key */
136   char *buffer;       /* metadata input buffer */
137   int buflen;                      /* bytes read into buffer */
138   int reqlen;                      /* length of first request in buffer */
139   int tcppacket;                   /* length of incoming TCP tunnelled packet */
140   time_t last_ping_time;           /* last time we saw some activity from the other end */  
141   int want_ping;                   /* 0 if there's no need to check for activity */
142   int allow_request;               /* defined if there's only one request possible */
143   char *chal_answer;               /* answer to the given challenge */
144   enc_key_t *metakey;
145   struct conn_list_t *nexthop;     /* nearest meta-hop in this direction */
146   struct conn_list_t *next;        /* after all, it's a list of connections */
147 } conn_list_t;
148
149 extern int tap_fd;
150
151 extern int total_tap_in;
152 extern int total_tap_out;
153 extern int total_socket_in;
154 extern int total_socket_out;
155
156 extern conn_list_t *conn_list;
157 extern conn_list_t *myself;
158
159 extern char *request_name[256];
160
161 extern int send_packet(ip_t, vpn_packet_t *);
162 extern int setup_network_connections(void);
163 extern void close_network_connections(void);
164 extern void main_loop(void);
165 extern int setup_vpn_connection(conn_list_t *);
166 extern void terminate_connection(conn_list_t *);
167 extern void flush_queues(conn_list_t*);
168 extern int xrecv(conn_list_t *, void *);
169 extern void add_queue(packet_queue_t **, void *, size_t);
170
171 #endif /* __TINC_NET_H__ */