Add UDP datagram relay support to SPTPS.
[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
61 #define AF_UNKNOWN 255
62
63 struct sockaddr_unknown {
64         uint16_t family;
65         uint16_t pad1;
66         uint32_t pad2;
67         char *address;
68         char *port;
69 };
70
71 typedef union sockaddr_t {
72         struct sockaddr sa;
73         struct sockaddr_in in;
74         struct sockaddr_in6 in6;
75         struct sockaddr_unknown unknown;
76 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
77         struct sockaddr_storage storage;
78 #endif
79 } sockaddr_t;
80
81 #ifdef SA_LEN
82 #define SALEN(s) SA_LEN(&s)
83 #else
84 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
85 #endif
86
87 typedef struct vpn_packet_t {
88         length_t len;           /* the actual number of bytes in the `data' field */
89         int priority;           /* priority or TOS */
90         node_id_t dstid;        /* node ID of the final recipient */
91         node_id_t srcid;        /* node ID of the original sender */
92         uint8_t seqno[4];       /* 32 bits sequence number (network byte order of course) */
93         uint8_t data[MAXSIZE];
94 } vpn_packet_t;
95
96 /* Packet types when using SPTPS */
97
98 #define PKT_COMPRESSED 1
99 #define PKT_MAC 2
100 #define PKT_PROBE 4
101
102 typedef enum packet_type_t {
103         PACKET_NORMAL,
104         PACKET_COMPRESSED,
105         PACKET_PROBE
106 } packet_type_t;
107
108 typedef struct listen_socket_t {
109         io_t tcp;
110         io_t udp;
111         sockaddr_t sa;
112         bool bindto;
113 } listen_socket_t;
114
115 #include "conf.h"
116 #include "list.h"
117
118 typedef struct outgoing_t {
119         char *name;
120         int timeout;
121         splay_tree_t *config_tree;
122         struct config_t *cfg;
123         struct addrinfo *ai;
124         struct addrinfo *aip;
125         timeout_t ev;
126 } outgoing_t;
127
128 extern list_t *outgoing_list;
129
130 extern int maxoutbufsize;
131 extern int seconds_till_retry;
132 extern int addressfamily;
133 extern unsigned replaywin;
134 extern bool localdiscovery;
135
136 extern listen_socket_t listen_socket[MAXSOCKETS];
137 extern int listen_sockets;
138 extern io_t unix_socket;
139 extern int keylifetime;
140 extern int udp_rcvbuf;
141 extern int udp_sndbuf;
142 extern int max_connection_burst;
143 extern bool do_prune;
144 extern char *myport;
145 extern bool device_standby;
146 extern bool autoconnect;
147 extern bool disablebuggypeers;
148 extern int contradicting_add_edge;
149 extern int contradicting_del_edge;
150 extern time_t last_config_check;
151
152 extern char *proxyhost;
153 extern char *proxyport;
154 extern char *proxyuser;
155 extern char *proxypass;
156 typedef enum proxytype_t {
157         PROXY_NONE = 0,
158         PROXY_SOCKS4,
159         PROXY_SOCKS4A,
160         PROXY_SOCKS5,
161         PROXY_HTTP,
162         PROXY_EXEC,
163 } proxytype_t;
164 extern proxytype_t proxytype;
165
166 extern char *scriptinterpreter;
167 extern char *scriptextension;
168
169 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
170 #include "connection.h"
171 #include "node.h"
172
173 extern void retry_outgoing(outgoing_t *);
174 extern void handle_incoming_vpn_data(void *, int);
175 extern void finish_connecting(struct connection_t *);
176 extern bool do_outgoing_connection(struct outgoing_t *);
177 extern void handle_new_meta_connection(void *, int);
178 extern void handle_new_unix_connection(void *, int);
179 extern int setup_listen_socket(const sockaddr_t *);
180 extern int setup_vpn_in_socket(const sockaddr_t *);
181 extern bool send_sptps_data(void *handle, uint8_t type, const char *data, size_t len);
182 extern bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t len);
183 extern void send_packet(struct node_t *, vpn_packet_t *);
184 extern void receive_tcppacket(struct connection_t *, const char *, int);
185 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
186 extern char *get_name(void);
187 extern void device_enable(void);
188 extern void device_disable(void);
189 extern bool setup_myself_reloadable(void);
190 extern bool setup_network(void);
191 extern void setup_outgoing_connection(struct outgoing_t *);
192 extern void try_outgoing_connections(void);
193 extern void close_network_connections(void);
194 extern int main_loop(void);
195 extern void terminate_connection(struct connection_t *, bool);
196 extern bool node_read_ecdsa_public_key(struct node_t *);
197 extern bool read_ecdsa_public_key(struct connection_t *);
198 extern bool read_rsa_public_key(struct connection_t *);
199 extern void send_mtu_probe(struct node_t *);
200 extern void handle_device_data(void *, int);
201 extern void handle_meta_connection_data(struct connection_t *);
202 extern void regenerate_key(void);
203 extern void purge(void);
204 extern void retry(void);
205 extern int reload_configuration(void);
206 extern void load_all_subnets(void);
207 extern void load_all_nodes(void);
208
209 #ifndef HAVE_MINGW
210 #define closesocket(s) close(s)
211 #endif
212
213 #endif /* __TINC_NET_H__ */