]> git.meshlink.io Git - meshlink/blob - src/net.h
Move listen_sockets to mesh.
[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 #include "sockaddr.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 /* MAXSIZE is the maximum size of an encapsulated packet: MTU + seqno + padding + HMAC + compressor overhead */
35 #define MAXSIZE (MTU + 4 + CIPHER_MAX_BLOCK_SIZE + DIGEST_MAX_SIZE + MTU/64 + 20)
36
37 /* MAXBUFSIZE is the maximum size of a request: enough for a MAXSIZEd packet or a 8192 bits RSA key */
38 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)
39
40 typedef struct vpn_packet_t {
41         struct {
42                 unsigned int probe:1;
43                 unsigned int tcp:1;
44         };
45         uint16_t len;           /* the actual number of bytes in the `data' field */
46         uint8_t data[MAXSIZE];
47 } vpn_packet_t;
48
49 /* Packet types when using SPTPS */
50
51 #define PKT_COMPRESSED 1
52 #define PKT_PROBE 4
53
54 typedef enum packet_type_t {
55         PACKET_NORMAL,
56         PACKET_COMPRESSED,
57         PACKET_PROBE
58 } packet_type_t;
59
60 #include "conf.h"
61 #include "list.h"
62
63 typedef struct outgoing_t {
64         char *name;
65         int timeout;
66         struct splay_tree_t *config_tree;
67         struct config_t *cfg;
68         struct addrinfo *ai;
69         struct addrinfo *aip;
70         timeout_t ev;
71 } outgoing_t;
72
73 extern int maxoutbufsize;
74 extern int addressfamily;
75 extern unsigned replaywin;
76
77 extern int keylifetime;
78 extern int max_connection_burst;
79 extern bool do_prune;
80 extern int autoconnect;
81
82 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
83 #include "connection.h"
84 #include "node.h"
85
86 extern void retry_outgoing(outgoing_t *);
87 extern void handle_incoming_vpn_data(void *, int);
88 extern void finish_connecting(struct connection_t *);
89 extern bool do_outgoing_connection(struct outgoing_t *);
90 extern void handle_new_meta_connection(void *, int);
91 extern int setup_listen_socket(const sockaddr_t *);
92 extern int setup_vpn_in_socket(const sockaddr_t *);
93 extern bool send_sptps_data(void *handle, uint8_t type, const char *data, size_t len);
94 extern bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t len);
95 extern void send_packet(struct node_t *, struct vpn_packet_t *);
96 extern void receive_tcppacket(struct connection_t *, const char *, int);
97 extern void broadcast_packet(const struct node_t *, struct vpn_packet_t *);
98 extern char *get_name(void);
99 extern bool setup_myself_reloadable(void);
100 extern bool setup_network(void);
101 extern void setup_outgoing_connection(struct outgoing_t *);
102 extern void try_outgoing_connections(void);
103 extern void close_network_connections(void);
104 extern int main_loop(void);
105 extern void terminate_connection(struct connection_t *, bool);
106 extern bool node_read_ecdsa_public_key(struct node_t *);
107 extern bool read_ecdsa_public_key(struct connection_t *);
108 extern void send_mtu_probe(struct node_t *);
109 extern void handle_device_data(void *, int);
110 extern void handle_meta_connection_data(struct connection_t *);
111 extern void regenerate_key(void);
112 extern void purge(void);
113 extern void retry(void);
114 extern int reload_configuration(void);
115 extern void load_all_subnets(void);
116 extern void load_all_nodes(void);
117
118 #ifndef HAVE_MINGW
119 #define closesocket(s) close(s)
120 #else
121 extern CRITICAL_SECTION mutex;
122 #endif
123
124 #endif /* __TINC_NET_H__ */