Fix whitespace.
[tinc] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2005 Ivo Timmermans
4                   2000-2012 Guus Sliepen <guus@tinc-vpn.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #ifndef __TINC_NET_H__
22 #define __TINC_NET_H__
23
24 #include "ipv6.h"
25 #include "cipher.h"
26 #include "digest.h"
27
28 #ifdef ENABLE_JUMBOGRAMS
29 #define MTU 9018        /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
30 #else
31 #define MTU 1518        /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
32 #endif
33
34 /* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + padding + HMAC + compressor overhead */
35 #define MAXSIZE (MTU + 4 + CIPHER_MAX_BLOCK_SIZE + DIGEST_MAX_SIZE + MTU/64 + 20)
36
37 /* MAXBUFSIZE is the maximum size of a request: enough for a MAXSIZEd packet or a 8192 bits RSA key */
38 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)
39
40 #define MAXSOCKETS 8    /* Probably overkill... */
41
42 typedef struct mac_t {
43         uint8_t x[6];
44 } mac_t;
45
46 typedef struct ipv4_t {
47         uint8_t x[4];
48 } ipv4_t;
49
50 typedef struct ipv6_t {
51         uint16_t x[8];
52 } ipv6_t;
53
54 typedef short length_t;
55
56 #define AF_UNKNOWN 255
57
58 struct sockaddr_unknown {
59         uint16_t family;
60         uint16_t pad1;
61         uint32_t pad2;
62         char *address;
63         char *port;
64 };
65
66 typedef union sockaddr_t {
67         struct sockaddr sa;
68         struct sockaddr_in in;
69         struct sockaddr_in6 in6;
70         struct sockaddr_unknown unknown;
71 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
72         struct sockaddr_storage storage;
73 #endif
74 } sockaddr_t;
75
76 #ifdef SA_LEN
77 #define SALEN(s) SA_LEN(&s)
78 #else
79 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
80 #endif
81
82 typedef struct vpn_packet_t {
83         length_t len;           /* the actual number of bytes in the `data' field */
84         int priority;           /* priority or TOS */
85         uint32_t seqno;         /* 32 bits sequence number (network byte order of course) */
86         uint8_t data[MAXSIZE];
87 } vpn_packet_t;
88
89 /* Packet types when using SPTPS */
90
91 #define PKT_COMPRESSED 1
92 #define PKT_MAC 2
93 #define PKT_PROBE 4
94
95 typedef enum packet_type_t {
96         PACKET_NORMAL,
97         PACKET_COMPRESSED,
98         PACKET_PROBE
99 } packet_type_t;
100
101 typedef struct listen_socket_t {
102         struct event ev_tcp;
103         struct event ev_udp;
104         int tcp;
105         int udp;
106         sockaddr_t sa;
107 } listen_socket_t;
108
109 #include "conf.h"
110 #include "list.h"
111
112 typedef struct outgoing_t {
113         char *name;
114         int timeout;
115         splay_tree_t *config_tree;
116         struct config_t *cfg;
117         struct addrinfo *ai;
118         struct addrinfo *aip;
119         struct event ev;
120 } outgoing_t;
121
122 extern list_t *outgoing_list;
123
124 extern int maxoutbufsize;
125 extern int seconds_till_retry;
126 extern int addressfamily;
127 extern unsigned replaywin;
128 extern bool localdiscovery;
129
130 extern listen_socket_t listen_socket[MAXSOCKETS];
131 extern int listen_sockets;
132 extern int keylifetime;
133 extern int udp_rcvbuf;
134 extern int udp_sndbuf;
135 extern bool do_prune;
136 extern char *myport;
137 extern int contradicting_add_edge;
138 extern int contradicting_del_edge;
139 extern time_t last_config_check;
140
141 extern char *proxyhost;
142 extern char *proxyport;
143 extern char *proxyuser;
144 extern char *proxypass;
145 typedef enum proxytype_t {
146         PROXY_NONE = 0,
147         PROXY_SOCKS4,
148         PROXY_SOCKS4A,
149         PROXY_SOCKS5,
150         PROXY_HTTP,
151         PROXY_EXEC,
152 } proxytype_t;
153 extern proxytype_t proxytype;
154
155 extern char *scriptinterpreter;
156 extern char *scriptextension;
157
158 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
159 #include "connection.h"
160 #include "node.h"
161
162 extern void retry_outgoing(outgoing_t *);
163 extern void handle_incoming_vpn_data(int, short, void *);
164 extern void finish_connecting(struct connection_t *);
165 extern bool do_outgoing_connection(struct outgoing_t *);
166 extern void handle_new_meta_connection(int, short, void *);
167 extern int setup_listen_socket(const sockaddr_t *);
168 extern int setup_vpn_in_socket(const sockaddr_t *);
169 extern bool send_sptps_data(void *handle, uint8_t type, const char *data, size_t len);
170 extern bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t len);
171 extern void send_packet(struct node_t *, vpn_packet_t *);
172 extern void receive_tcppacket(struct connection_t *, const char *, int);
173 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
174 extern char *get_name(void);
175 extern bool setup_myself_reloadable(void);
176 extern bool setup_network(void);
177 extern void setup_outgoing_connection(struct outgoing_t *);
178 extern void try_outgoing_connections(void);
179 extern void close_network_connections(void);
180 extern int main_loop(void);
181 extern void terminate_connection(struct connection_t *, bool);
182 extern bool node_read_ecdsa_public_key(struct node_t *);
183 extern bool read_ecdsa_public_key(struct connection_t *);
184 extern bool read_rsa_public_key(struct connection_t *);
185 extern void send_mtu_probe(struct node_t *);
186 extern void handle_device_data(int, short, void *);
187 extern void handle_meta_connection_data(int, short, void *);
188 extern void regenerate_key(void);
189 extern void purge(void);
190 extern void retry(void);
191 extern int reload_configuration(void);
192 extern void load_all_subnets(void);
193
194 #ifndef HAVE_MINGW
195 #define closesocket(s) close(s)
196 #else
197 extern CRITICAL_SECTION mutex;
198 #endif
199
200 #endif /* __TINC_NET_H__ */