Releasing 1.0.35.
[oweals/tinc.git] / 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-2015 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 <openssl/evp.h>
25
26 #include "ipv6.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 #define MAXSIZE (MTU + 4 + EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + MTU/64 + 20)  /* MTU + seqno + padding + HMAC + compressor overhead */
35 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)                     /* Enough room for a request with a MAXSIZEd packet or a 8192 bits RSA key */
36
37 #define MAXSOCKETS 128  /* Overkill... */
38
39 typedef struct mac_t {
40         uint8_t x[6];
41 } mac_t;
42
43 typedef struct ipv4_t {
44         uint8_t x[4];
45 } ipv4_t;
46
47 typedef struct ipv6_t {
48         uint16_t x[8];
49 } ipv6_t;
50
51 typedef uint16_t length_t;
52
53 #define AF_UNKNOWN 255
54
55 struct sockaddr_unknown {
56         uint16_t family;
57         uint16_t pad1;
58         uint32_t pad2;
59         char *address;
60         char *port;
61 };
62
63 typedef union sockaddr_t {
64         struct sockaddr sa;
65         struct sockaddr_in in;
66         struct sockaddr_in6 in6;
67         struct sockaddr_unknown unknown;
68 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
69         struct sockaddr_storage storage;
70 #endif
71 } sockaddr_t;
72
73 #ifdef SA_LEN
74 #define SALEN(s) SA_LEN(&s)
75 #else
76 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
77 #endif
78
79 typedef struct vpn_packet_t {
80         length_t len;           /* the actual number of bytes in the `data' field */
81         int priority;           /* priority or TOS */
82         uint32_t seqno;         /* 32 bits sequence number (network byte order of course) */
83         uint8_t data[MAXSIZE];
84 } vpn_packet_t;
85
86 typedef struct listen_socket_t {
87         int tcp;
88         int udp;
89         sockaddr_t sa;
90         int priority;
91 } listen_socket_t;
92
93 #include "conf.h"
94 #include "list.h"
95
96 typedef struct outgoing_t {
97         char *name;
98         int timeout;
99         struct config_t *cfg;
100         struct addrinfo *ai;
101         struct addrinfo *aip;
102         struct event *event;
103 } outgoing_t;
104
105 extern list_t *outgoing_list;
106
107 extern int maxoutbufsize;
108 extern int seconds_till_retry;
109 extern int addressfamily;
110 extern unsigned replaywin;
111 extern bool localdiscovery;
112
113 extern listen_socket_t listen_socket[MAXSOCKETS];
114 extern int listen_sockets;
115 extern int keyexpires;
116 extern int keylifetime;
117 extern int udp_rcvbuf;
118 extern int udp_sndbuf;
119 extern bool do_prune;
120 extern bool do_purge;
121 extern char *myport;
122 extern time_t now;
123 extern int contradicting_add_edge;
124 extern int contradicting_del_edge;
125
126 extern volatile bool running;
127
128 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
129 #include "connection.h"
130 #include "node.h"
131
132 extern void retry_outgoing(outgoing_t *outgoing);
133 extern void handle_incoming_vpn_data(int sock);
134 extern void finish_connecting(struct connection_t *c);
135 extern void do_outgoing_connection(struct connection_t *c);
136 extern bool handle_new_meta_connection(int sock);
137 extern int setup_listen_socket(const sockaddr_t *sa);
138 extern int setup_vpn_in_socket(const sockaddr_t *sa);
139 extern void send_packet(const struct node_t *n, vpn_packet_t *packet);
140 extern void receive_tcppacket(struct connection_t *c, const char *buffer, length_t len);
141 extern void broadcast_packet(const struct node_t *, vpn_packet_t *packet);
142 extern char *get_name(void);
143 extern bool setup_network(void);
144 extern void setup_outgoing_connection(struct outgoing_t *outgoing);
145 extern void try_outgoing_connections(void);
146 extern void close_network_connections(void);
147 extern int main_loop(void);
148 extern void terminate_connection(struct connection_t *c, bool report);
149 extern void flush_queue(struct node_t *n);
150 extern bool read_rsa_public_key(struct connection_t *c);
151 extern void send_mtu_probe(struct node_t *n);
152 extern void load_all_subnets(void);
153 extern void tarpit(int fd);
154
155 #ifndef HAVE_MINGW
156 #define closesocket(s) close(s)
157 #else
158 extern CRITICAL_SECTION mutex;
159 #endif
160
161 #endif