Add the ListenAddress option.
[tinc] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2005 Ivo Timmermans
4                   2000-2013 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 + padding + HMAC + compressor overhead */
36 #define MAXSIZE (MTU + 4 + 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 short length_t;
56
57 #define AF_UNKNOWN 255
58
59 struct sockaddr_unknown {
60         uint16_t family;
61         uint16_t pad1;
62         uint32_t pad2;
63         char *address;
64         char *port;
65 };
66
67 typedef union sockaddr_t {
68         struct sockaddr sa;
69         struct sockaddr_in in;
70         struct sockaddr_in6 in6;
71         struct sockaddr_unknown unknown;
72 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
73         struct sockaddr_storage storage;
74 #endif
75 } sockaddr_t;
76
77 #ifdef SA_LEN
78 #define SALEN(s) SA_LEN(&s)
79 #else
80 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
81 #endif
82
83 typedef struct vpn_packet_t {
84         length_t len;           /* the actual number of bytes in the `data' field */
85         int priority;           /* priority or TOS */
86         uint32_t seqno;         /* 32 bits sequence number (network byte order of course) */
87         uint8_t data[MAXSIZE];
88 } vpn_packet_t;
89
90 /* Packet types when using SPTPS */
91
92 #define PKT_COMPRESSED 1
93 #define PKT_MAC 2
94 #define PKT_PROBE 4
95
96 typedef enum packet_type_t {
97         PACKET_NORMAL,
98         PACKET_COMPRESSED,
99         PACKET_PROBE
100 } packet_type_t;
101
102 typedef struct listen_socket_t {
103         io_t tcp;
104         io_t udp;
105         sockaddr_t sa;
106         bool bindto;
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         timeout_t 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 extern sockaddr_t localdiscovery_address;
130
131 extern listen_socket_t listen_socket[MAXSOCKETS];
132 extern int listen_sockets;
133 extern io_t unix_socket;
134 extern int keylifetime;
135 extern int udp_rcvbuf;
136 extern int udp_sndbuf;
137 extern int max_connection_burst;
138 extern bool do_prune;
139 extern char *myport;
140 extern int autoconnect;
141 extern bool disablebuggypeers;
142 extern int contradicting_add_edge;
143 extern int contradicting_del_edge;
144 extern time_t last_config_check;
145
146 extern char *proxyhost;
147 extern char *proxyport;
148 extern char *proxyuser;
149 extern char *proxypass;
150 typedef enum proxytype_t {
151         PROXY_NONE = 0,
152         PROXY_SOCKS4,
153         PROXY_SOCKS4A,
154         PROXY_SOCKS5,
155         PROXY_HTTP,
156         PROXY_EXEC,
157 } proxytype_t;
158 extern proxytype_t proxytype;
159
160 extern char *scriptinterpreter;
161 extern char *scriptextension;
162
163 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
164 #include "connection.h"
165 #include "node.h"
166
167 extern void retry_outgoing(outgoing_t *);
168 extern void handle_incoming_vpn_data(void *, int);
169 extern void finish_connecting(struct connection_t *);
170 extern bool do_outgoing_connection(struct outgoing_t *);
171 extern void handle_new_meta_connection(void *, int);
172 extern void handle_new_unix_connection(void *, int);
173 extern int setup_listen_socket(const sockaddr_t *);
174 extern int setup_vpn_in_socket(const sockaddr_t *);
175 extern bool send_sptps_data(void *handle, uint8_t type, const char *data, size_t len);
176 extern bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t len);
177 extern void send_packet(struct node_t *, vpn_packet_t *);
178 extern void receive_tcppacket(struct connection_t *, const char *, int);
179 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
180 extern char *get_name(void);
181 extern bool setup_myself_reloadable(void);
182 extern bool setup_network(void);
183 extern void setup_outgoing_connection(struct outgoing_t *);
184 extern void try_outgoing_connections(void);
185 extern void close_network_connections(void);
186 extern int main_loop(void);
187 extern void terminate_connection(struct connection_t *, bool);
188 extern bool node_read_ecdsa_public_key(struct node_t *);
189 extern bool read_ecdsa_public_key(struct connection_t *);
190 extern bool read_rsa_public_key(struct connection_t *);
191 extern void send_mtu_probe(struct node_t *);
192 extern void handle_device_data(void *, int);
193 extern void handle_meta_connection_data(struct connection_t *);
194 extern void regenerate_key(void);
195 extern void purge(void);
196 extern void retry(void);
197 extern int reload_configuration(void);
198 extern void load_all_subnets(void);
199 extern void load_all_nodes(void);
200
201 #ifndef HAVE_MINGW
202 #define closesocket(s) close(s)
203 #else
204 extern CRITICAL_SECTION mutex;
205 #endif
206
207 #endif /* __TINC_NET_H__ */