Remove unused types.
[tinc] / src / net.h
1 #ifndef TINC_NET_H
2 #define TINC_NET_H
3
4 /*
5     net.h -- header for net.c
6     Copyright (C) 1998-2005 Ivo Timmermans
7                   2000-2016 Guus Sliepen <guus@tinc-vpn.org>
8
9     This program is free software; you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation; either version 2 of the License, or
12     (at your option) any later version.
13
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License along
20     with this program; if not, write to the Free Software Foundation, Inc.,
21     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
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 uint16_t 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 } sockaddr_t;
78
79 #ifdef SA_LEN
80 #define SALEN(s) SA_LEN(&s)
81 #else
82 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
83 #endif
84
85 #define SEQNO(x) ((x)->data + (x)->offset - 4)
86 #define SRCID(x) ((node_id_t *)((x)->data + (x)->offset - 6))
87 #define DSTID(x) ((node_id_t *)((x)->data + (x)->offset - 12))
88 #define DATA(x) ((x)->data + (x)->offset)
89 #define DEFAULT_PACKET_OFFSET 12
90
91 typedef struct vpn_packet_t {
92         length_t len;           /* The actual number of valid bytes in the `data' field (including seqno or dstid/srcid) */
93         length_t offset;        /* Offset in the buffer where the packet data starts (righter after seqno or dstid/srcid) */
94         int priority;           /* priority or TOS */
95         uint8_t data[MAXSIZE];
96 } vpn_packet_t;
97
98 /* Packet types when using SPTPS */
99
100 #define PKT_COMPRESSED 1
101 #define PKT_MAC 2
102 #define PKT_PROBE 4
103
104 typedef struct listen_socket_t {
105         io_t tcp;
106         io_t udp;
107         sockaddr_t sa;
108         bool bindto;
109         int priority;
110 } listen_socket_t;
111
112 #include "conf.h"
113 #include "list.h"
114
115 typedef struct outgoing_t {
116         struct node_t *node;
117         int timeout;
118         timeout_t ev;
119 } outgoing_t;
120
121 extern list_t *outgoing_list;
122
123 extern int maxoutbufsize;
124 extern int seconds_till_retry;
125 extern int addressfamily;
126 extern unsigned replaywin;
127 extern bool localdiscovery;
128
129 extern bool udp_discovery;
130 extern int udp_discovery_keepalive_interval;
131 extern int udp_discovery_interval;
132 extern int udp_discovery_timeout;
133
134 extern int mtu_info_interval;
135 extern int udp_info_interval;
136
137 extern listen_socket_t listen_socket[MAXSOCKETS];
138 extern int listen_sockets;
139 extern io_t unix_socket;
140 extern int keylifetime;
141 extern int udp_rcvbuf;
142 extern int udp_sndbuf;
143 extern bool udp_rcvbuf_warnings;
144 extern bool udp_sndbuf_warnings;
145 extern int max_connection_burst;
146 extern int fwmark;
147 extern bool do_prune;
148 extern char *myport;
149 extern bool device_standby;
150 extern bool autoconnect;
151 extern bool disablebuggypeers;
152 extern int contradicting_add_edge;
153 extern int contradicting_del_edge;
154 extern time_t last_config_check;
155
156 extern char *proxyhost;
157 extern char *proxyport;
158 extern char *proxyuser;
159 extern char *proxypass;
160 typedef enum proxytype_t {
161         PROXY_NONE = 0,
162         PROXY_SOCKS4,
163         PROXY_SOCKS4A,
164         PROXY_SOCKS5,
165         PROXY_HTTP,
166         PROXY_EXEC,
167 } proxytype_t;
168 extern proxytype_t proxytype;
169
170 extern char *scriptinterpreter;
171 extern char *scriptextension;
172
173 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
174 #include "connection.h"
175 #include "node.h"
176
177 extern void retry_outgoing(outgoing_t *outgoing);
178 extern void handle_incoming_vpn_data(void *data, int flags);
179 extern void finish_connecting(struct connection_t *c);
180 extern bool do_outgoing_connection(struct outgoing_t *outgoing);
181 extern void handle_new_meta_connection(void *data, int flags);
182 extern void handle_new_unix_connection(void *data, int flags);
183 extern int setup_listen_socket(const sockaddr_t *sa);
184 extern int setup_vpn_in_socket(const sockaddr_t *sa);
185 extern bool send_sptps_data(node_t *to, node_t *from, int type, const void *data, size_t len);
186 extern bool receive_sptps_record(void *handle, uint8_t type, const void *data, uint16_t len);
187 extern void send_packet(struct node_t *n, vpn_packet_t *packet);
188 extern void receive_tcppacket(struct connection_t *c, const char *buffer, size_t length);
189 extern bool receive_tcppacket_sptps(struct connection_t *c, const char *buffer, size_t length);
190 extern void broadcast_packet(const struct node_t *n, vpn_packet_t *packet);
191 extern char *get_name(void);
192 extern void device_enable(void);
193 extern void device_disable(void);
194 extern bool setup_myself_reloadable(void);
195 extern bool setup_network(void);
196 extern void setup_outgoing_connection(struct outgoing_t *outgoing, bool verbose);
197 extern void try_outgoing_connections(void);
198 extern void close_network_connections(void);
199 extern int main_loop(void);
200 extern void terminate_connection(struct connection_t *c, bool report);
201 extern bool node_read_ecdsa_public_key(struct node_t *n);
202 extern void handle_device_data(void *data, int flags);
203 extern void handle_meta_connection_data(struct connection_t *c);
204 extern void regenerate_key(void);
205 extern void purge(void);
206 extern void retry(void);
207 extern int reload_configuration(void);
208 extern void load_all_nodes(void);
209 extern void try_tx(struct node_t *n, bool mtu);
210 extern void tarpit(int fd);
211
212 #ifndef HAVE_MINGW
213 #define closesocket(s) close(s)
214 #endif
215
216 #endif