]> git.meshlink.io Git - meshlink/blob - src/net.h
Remove some unused types and #defines.
[meshlink] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef __TINC_NET_H__
21 #define __TINC_NET_H__
22
23 #include "cipher.h"
24 #include "digest.h"
25 #include "event.h"
26
27 #ifdef ENABLE_JUMBOGRAMS
28 #define MTU 9018        /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
29 #else
30 #define MTU 1518        /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
31 #endif
32
33 /* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + padding + HMAC + compressor overhead */
34 #define MAXSIZE (MTU + 4 + CIPHER_MAX_BLOCK_SIZE + DIGEST_MAX_SIZE + MTU/64 + 20)
35
36 /* MAXBUFSIZE is the maximum size of a request: enough for a MAXSIZEd packet or a 8192 bits RSA key */
37 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)
38
39 #define MAXSOCKETS 8    /* Probably overkill... */
40
41 typedef short length_t;
42
43 #define AF_UNKNOWN 255
44
45 struct sockaddr_unknown {
46         uint16_t family;
47         uint16_t pad1;
48         uint32_t pad2;
49         char *address;
50         char *port;
51 };
52
53 typedef union sockaddr_t {
54         struct sockaddr sa;
55         struct sockaddr_in in;
56         struct sockaddr_in6 in6;
57         struct sockaddr_unknown unknown;
58 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
59         struct sockaddr_storage storage;
60 #endif
61 } sockaddr_t;
62
63 #ifdef SA_LEN
64 #define SALEN(s) SA_LEN(&s)
65 #else
66 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
67 #endif
68
69 typedef struct vpn_packet_t {
70         length_t len;           /* the actual number of bytes in the `data' field */
71         int priority;           /* priority or TOS */
72         uint32_t seqno;         /* 32 bits sequence number (network byte order of course) */
73         uint8_t data[MAXSIZE];
74 } vpn_packet_t;
75
76 /* Packet types when using SPTPS */
77
78 #define PKT_COMPRESSED 1
79 #define PKT_PROBE 4
80
81 typedef enum packet_type_t {
82         PACKET_NORMAL,
83         PACKET_COMPRESSED,
84         PACKET_PROBE
85 } packet_type_t;
86
87 typedef struct listen_socket_t {
88         io_t tcp;
89         io_t udp;
90         sockaddr_t sa;
91         bool bindto;
92 } listen_socket_t;
93
94 #include "conf.h"
95 #include "list.h"
96
97 typedef struct outgoing_t {
98         char *name;
99         int timeout;
100         splay_tree_t *config_tree;
101         struct config_t *cfg;
102         struct addrinfo *ai;
103         struct addrinfo *aip;
104         timeout_t ev;
105 } outgoing_t;
106
107 extern list_t *outgoing_list;
108
109 extern int maxoutbufsize;
110 extern int seconds_till_retry;
111 extern int addressfamily;
112 extern unsigned replaywin;
113 extern bool localdiscovery;
114 extern sockaddr_t localdiscovery_address;
115
116 extern listen_socket_t listen_socket[MAXSOCKETS];
117 extern int listen_sockets;
118 extern int keylifetime;
119 extern int max_connection_burst;
120 extern bool do_prune;
121 extern char *myport;
122 extern int autoconnect;
123 extern bool disablebuggypeers;
124 extern int contradicting_add_edge;
125 extern int contradicting_del_edge;
126 extern time_t last_config_check;
127
128 extern char *proxyhost;
129 extern char *proxyport;
130 extern char *proxyuser;
131 extern char *proxypass;
132 typedef enum proxytype_t {
133         PROXY_NONE = 0,
134         PROXY_SOCKS4,
135         PROXY_SOCKS4A,
136         PROXY_SOCKS5,
137         PROXY_HTTP,
138         PROXY_EXEC,
139 } proxytype_t;
140 extern proxytype_t proxytype;
141
142 extern char *scriptinterpreter;
143 extern char *scriptextension;
144
145 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
146 #include "connection.h"
147 #include "node.h"
148
149 extern void retry_outgoing(outgoing_t *);
150 extern void handle_incoming_vpn_data(void *, int);
151 extern void finish_connecting(struct connection_t *);
152 extern bool do_outgoing_connection(struct outgoing_t *);
153 extern void handle_new_meta_connection(void *, int);
154 extern int setup_listen_socket(const sockaddr_t *);
155 extern int setup_vpn_in_socket(const sockaddr_t *);
156 extern bool send_sptps_data(void *handle, uint8_t type, const char *data, size_t len);
157 extern bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t len);
158 extern void send_packet(struct node_t *, vpn_packet_t *);
159 extern void receive_tcppacket(struct connection_t *, const char *, int);
160 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
161 extern char *get_name(void);
162 extern bool setup_myself_reloadable(void);
163 extern bool setup_network(void);
164 extern void setup_outgoing_connection(struct outgoing_t *);
165 extern void try_outgoing_connections(void);
166 extern void close_network_connections(void);
167 extern int main_loop(void);
168 extern void terminate_connection(struct connection_t *, bool);
169 extern bool node_read_ecdsa_public_key(struct node_t *);
170 extern bool read_ecdsa_public_key(struct connection_t *);
171 extern void send_mtu_probe(struct node_t *);
172 extern void handle_device_data(void *, int);
173 extern void handle_meta_connection_data(struct connection_t *);
174 extern void regenerate_key(void);
175 extern void purge(void);
176 extern void retry(void);
177 extern int reload_configuration(void);
178 extern void load_all_subnets(void);
179 extern void load_all_nodes(void);
180
181 #ifndef HAVE_MINGW
182 #define closesocket(s) close(s)
183 #else
184 extern CRITICAL_SECTION mutex;
185 #endif
186
187 //TODO: move this to a better place
188 extern char *confbase;
189
190 #endif /* __TINC_NET_H__ */