5fc976e3e973f102bf0cf09f14129c681ed00c42
[tinc] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2005 Ivo Timmermans
4                   2000-2014 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 #include "event.h"
28
29 #ifdef ENABLE_JUMBOGRAMS
30 #define MTU 9018        /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
31 #else
32 #define MTU 1518        /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
33 #endif
34
35 /* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + srcid + dstid + padding + HMAC + compressor overhead */
36 #define MAXSIZE (MTU + 4 + sizeof(node_id_t) + sizeof(node_id_t) + CIPHER_MAX_BLOCK_SIZE + DIGEST_MAX_SIZE + MTU/64 + 20)
37
38 /* MAXBUFSIZE is the maximum size of a request: enough for a MAXSIZEd packet or a 8192 bits RSA key */
39 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)
40
41 #define MAXSOCKETS 8    /* Probably overkill... */
42
43 typedef struct mac_t {
44         uint8_t x[6];
45 } mac_t;
46
47 typedef struct ipv4_t {
48         uint8_t x[4];
49 } ipv4_t;
50
51 typedef struct ipv6_t {
52         uint16_t x[8];
53 } ipv6_t;
54
55 typedef struct node_id_t {
56         uint8_t x[6];
57 } node_id_t;
58
59 typedef short length_t;
60 typedef uint32_t seqno_t;
61
62 #define AF_UNKNOWN 255
63
64 struct sockaddr_unknown {
65         uint16_t family;
66         uint16_t pad1;
67         uint32_t pad2;
68         char *address;
69         char *port;
70 };
71
72 typedef union sockaddr_t {
73         struct sockaddr sa;
74         struct sockaddr_in in;
75         struct sockaddr_in6 in6;
76         struct sockaddr_unknown unknown;
77 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
78         struct sockaddr_storage storage;
79 #endif
80 } sockaddr_t;
81
82 #ifdef SA_LEN
83 #define SALEN(s) SA_LEN(&s)
84 #else
85 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
86 #endif
87
88 #define SEQNO(x) ((x)->data + (x)->offset - 4)
89 #define SRCID(x) ((node_id_t *)((x)->data + (x)->offset - 6))
90 #define DSTID(x) ((node_id_t *)((x)->data + (x)->offset - 12))
91 #define DATA(x) ((x)->data + (x)->offset)
92 #define DEFAULT_PACKET_OFFSET 12
93
94 typedef struct vpn_packet_t {
95         length_t len;           /* The actual number of valid bytes in the `data' field (including seqno or dstid/srcid) */
96         length_t offset;        /* Offset in the buffer where the packet data starts (righter after seqno or dstid/srcid) */
97         int priority;           /* priority or TOS */
98         uint8_t data[MAXSIZE];
99 } vpn_packet_t;
100
101 /* Packet types when using SPTPS */
102
103 #define PKT_COMPRESSED 1
104 #define PKT_MAC 2
105 #define PKT_PROBE 4
106
107 typedef enum packet_type_t {
108         PACKET_NORMAL,
109         PACKET_COMPRESSED,
110         PACKET_PROBE
111 } packet_type_t;
112
113 typedef struct listen_socket_t {
114         io_t tcp;
115         io_t udp;
116         sockaddr_t sa;
117         bool bindto;
118 } listen_socket_t;
119
120 #include "conf.h"
121 #include "list.h"
122
123 typedef struct outgoing_t {
124         char *name;
125         int timeout;
126         splay_tree_t *config_tree;
127         struct config_t *cfg;
128         struct addrinfo *ai;
129         struct addrinfo *aip;
130         timeout_t ev;
131 } outgoing_t;
132
133 extern list_t *outgoing_list;
134
135 extern int maxoutbufsize;
136 extern int seconds_till_retry;
137 extern int addressfamily;
138 extern unsigned replaywin;
139 extern bool localdiscovery;
140
141 extern bool udp_discovery;
142 extern int udp_discovery_keepalive_interval;
143 extern int udp_discovery_interval;
144 extern int udp_discovery_timeout;
145
146 extern int udp_info_interval;
147
148 extern listen_socket_t listen_socket[MAXSOCKETS];
149 extern int listen_sockets;
150 extern io_t unix_socket;
151 extern int keylifetime;
152 extern int udp_rcvbuf;
153 extern int udp_sndbuf;
154 extern int max_connection_burst;
155 extern bool do_prune;
156 extern char *myport;
157 extern bool device_standby;
158 extern bool autoconnect;
159 extern bool disablebuggypeers;
160 extern int contradicting_add_edge;
161 extern int contradicting_del_edge;
162 extern time_t last_config_check;
163
164 extern char *proxyhost;
165 extern char *proxyport;
166 extern char *proxyuser;
167 extern char *proxypass;
168 typedef enum proxytype_t {
169         PROXY_NONE = 0,
170         PROXY_SOCKS4,
171         PROXY_SOCKS4A,
172         PROXY_SOCKS5,
173         PROXY_HTTP,
174         PROXY_EXEC,
175 } proxytype_t;
176 extern proxytype_t proxytype;
177
178 extern char *scriptinterpreter;
179 extern char *scriptextension;
180
181 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
182 #include "connection.h"
183 #include "node.h"
184
185 extern void retry_outgoing(outgoing_t *);
186 extern void handle_incoming_vpn_data(void *, int);
187 extern void finish_connecting(struct connection_t *);
188 extern bool do_outgoing_connection(struct outgoing_t *);
189 extern void handle_new_meta_connection(void *, int);
190 extern void handle_new_unix_connection(void *, int);
191 extern int setup_listen_socket(const sockaddr_t *);
192 extern int setup_vpn_in_socket(const sockaddr_t *);
193 extern bool send_sptps_data(void *handle, uint8_t type, const void *data, size_t len);
194 extern bool receive_sptps_record(void *handle, uint8_t type, const void *data, uint16_t len);
195 extern void send_packet(struct node_t *, vpn_packet_t *);
196 extern void receive_tcppacket(struct connection_t *, const char *, int);
197 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
198 extern char *get_name(void);
199 extern void device_enable(void);
200 extern void device_disable(void);
201 extern bool setup_myself_reloadable(void);
202 extern bool setup_network(void);
203 extern void setup_outgoing_connection(struct outgoing_t *);
204 extern void try_outgoing_connections(void);
205 extern void close_network_connections(void);
206 extern int main_loop(void);
207 extern void terminate_connection(struct connection_t *, bool);
208 extern bool node_read_ecdsa_public_key(struct node_t *);
209 extern bool read_ecdsa_public_key(struct connection_t *);
210 extern bool read_rsa_public_key(struct connection_t *);
211 extern void handle_device_data(void *, int);
212 extern void handle_meta_connection_data(struct connection_t *);
213 extern void regenerate_key(void);
214 extern void purge(void);
215 extern void retry(void);
216 extern int reload_configuration(void);
217 extern void load_all_subnets(void);
218 extern void load_all_nodes(void);
219 extern void try_tx(struct node_t *n, bool);
220
221 #ifndef HAVE_MINGW
222 #define closesocket(s) close(s)
223 #endif
224
225 #endif /* __TINC_NET_H__ */