]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Don't use static variables when choosing a broadcast address.
[meshlink] / src / meshlink_internal.h
1 #ifndef MESHLINK_INTERNAL_H
2 #define MESHLINK_INTERNAL_H
3
4 /*
5     meshlink_internal.h -- Internal parts of the public API.
6     Copyright (C) 2014-2019 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #ifdef MESHLINK_H
24 #error You must not include both meshlink.h and meshlink_internal.h!
25 #endif
26
27 #include "system.h"
28
29 #include "event.h"
30 #include "hash.h"
31 #include "meshlink.h"
32 #include "meshlink_queue.h"
33 #include "sockaddr.h"
34 #include "sptps.h"
35 #include "xoshiro.h"
36
37 #include <pthread.h>
38
39 #define MAXSOCKETS 4    /* Probably overkill... */
40
41 static const char meshlink_invitation_label[] = "MeshLink invitation";
42 static const char meshlink_tcp_label[] = "MeshLink TCP";
43 static const char meshlink_udp_label[] = "MeshLink UDP";
44
45 #define MESHLINK_CONFIG_VERSION 1
46 #define MESHLINK_INVITATION_VERSION 1
47
48 struct CattaServer;
49 struct CattaSServiceBrowser;
50 struct CattaSimplePoll;
51 struct CattaSEntryGroup;
52
53 typedef struct listen_socket_t {
54         struct io_t tcp;
55         struct io_t udp;
56         sockaddr_t sa;
57         sockaddr_t broadcast_sa;
58         bool bindto;
59 } listen_socket_t;
60
61 typedef enum proxytype_t {
62         PROXY_NONE = 0,
63         PROXY_SOCKS4,
64         PROXY_SOCKS4A,
65         PROXY_SOCKS5,
66         PROXY_HTTP,
67 } proxytype_t;
68
69 struct meshlink_open_params {
70         char *confbase;
71         char *appname;
72         char *name;
73         dev_class_t devclass;
74
75         int netns;
76
77         const void *key;
78         size_t keylen;
79 };
80
81 /// Device class traits
82 typedef struct {
83         int pinginterval;
84         int pingtimeout;
85         unsigned int min_connects;
86         unsigned int max_connects;
87         int edge_weight;
88 } dev_class_traits_t;
89
90 /// A handle for an instance of MeshLink.
91 struct meshlink_handle {
92         // public members
93         char *name;
94         void *priv;
95
96         // private members
97         pthread_mutex_t mesh_mutex;
98         event_loop_t loop;
99         struct node_t *self;
100         meshlink_log_cb_t log_cb;
101         meshlink_log_level_t log_level;
102
103         // The most important network-related members come first
104         int listen_sockets;
105         listen_socket_t listen_socket[MAXSOCKETS];
106
107         meshlink_receive_cb_t receive_cb;
108         meshlink_queue_t outpacketqueue;
109         signal_t datafromapp;
110
111         hash_t *node_udp_cache;
112
113         struct splay_tree_t *nodes;
114         struct splay_tree_t *edges;
115
116         struct list_t *connections;
117         struct list_t *outgoings;
118         struct list_t *submeshes;
119
120         // Meta-connection-related members
121         struct splay_tree_t *past_request_tree;
122         timeout_t past_request_timeout;
123
124         int connection_burst;
125         int contradicting_add_edge;
126         int contradicting_del_edge;
127         int sleeptime;
128         time_t connection_burst_time;
129         time_t last_config_check;
130         time_t last_hard_try;
131         timeout_t pingtimer;
132         timeout_t periodictimer;
133
134         struct connection_t *everyone;
135         uint64_t prng_state[4];
136
137         int next_pit;
138         int pits[10];
139
140         // Infrequently used callbacks
141         meshlink_node_status_cb_t node_status_cb;
142         meshlink_node_pmtu_cb_t node_pmtu_cb;
143         meshlink_channel_accept_cb_t channel_accept_cb;
144         meshlink_node_duplicate_cb_t node_duplicate_cb;
145         meshlink_connection_try_cb_t connection_try_cb;
146
147         // Mesh parameters
148         char *appname;
149         char *myport;
150
151         struct ecdsa *private_key;
152         struct ecdsa *invitation_key;
153
154         dev_class_t devclass;
155
156         int invitation_timeout;
157         int maxtimeout;
158         int udp_choice;
159
160         dev_class_traits_t dev_class_traits[DEV_CLASS_COUNT];
161
162         int netns;
163
164         bool default_blacklist;
165         bool discovery;         // Whether Catta is enabled or not
166
167
168         // Configuration
169         char *confbase;
170         FILE *conffile;
171         void *config_key;
172
173         // Thread management
174         pthread_t thread;
175         pthread_cond_t cond;
176         pthread_mutex_t discovery_mutex;
177         pthread_cond_t discovery_cond;
178         bool threadstarted;
179         bool discovery_threadstarted;
180
181         // Catta
182         pthread_t discovery_thread;
183         struct CattaServer *catta_server;
184         struct CattaSServiceBrowser *catta_browser;
185         struct CattaSimplePoll *catta_poll;
186         struct CattaSEntryGroup *catta_group;
187         char *catta_servicetype;
188         unsigned int catta_interfaces;
189
190         // State used for meshlink_join()
191         int sock;
192         char cookie[18], hash[18];
193         bool success;
194         sptps_t sptps;
195         char *data;
196         size_t thedatalen;
197         size_t blen;
198         char line[4096];
199         char buffer[4096];
200
201         // Proxy configuration, currently not exposed.
202         char *proxyhost;
203         char *proxyport;
204         char *proxyuser;
205         char *proxypass;
206         proxytype_t proxytype;
207 };
208
209 /// A handle for a MeshLink node.
210 struct meshlink_node {
211         const char *name;
212         void *priv;
213 };
214
215 /// A handle for a node Sub-Mesh.
216 struct meshlink_submesh {
217         const char *name;
218         void *priv;
219 };
220
221 /// An AIO buffer.
222 typedef struct meshlink_aio_buffer {
223         const void *data;
224         int fd;
225         size_t len;
226         size_t done;
227         union {
228                 meshlink_aio_cb_t buffer;
229                 meshlink_aio_fd_cb_t fd;
230         } cb;
231         void *priv;
232         struct meshlink_aio_buffer *next;
233 } meshlink_aio_buffer_t;
234
235 /// A channel.
236 struct meshlink_channel {
237         struct node_t *node;
238         void *priv;
239
240         struct utcp_connection *c;
241         meshlink_aio_buffer_t *aio_send;
242         meshlink_aio_buffer_t *aio_receive;
243         meshlink_channel_receive_cb_t receive_cb;
244         meshlink_channel_poll_cb_t poll_cb;
245 };
246
247 /// Header for data packets routed between nodes
248 typedef struct meshlink_packethdr {
249         uint8_t destination[16];
250         uint8_t source[16];
251 } __attribute__((__packed__)) meshlink_packethdr_t;
252
253 extern void meshlink_send_from_queue(event_loop_t *loop, void *mesh);
254 extern void update_node_status(meshlink_handle_t *mesh, struct node_t *n);
255 extern void update_node_pmtu(meshlink_handle_t *mesh, struct node_t *n);
256 extern meshlink_log_level_t global_log_level;
257 extern meshlink_log_cb_t global_log_cb;
258 extern void handle_duplicate_node(meshlink_handle_t *mesh, struct node_t *n);
259 extern void handle_network_change(meshlink_handle_t *mesh, bool online);
260
261 /// Per-instance PRNG
262 static inline int prng(meshlink_handle_t *mesh, uint64_t max) {
263         return xoshiro(mesh->prng_state) % max;
264 }
265
266 /// Fudge value of ~0.1 seconds, in microseconds.
267 static const unsigned int TIMER_FUDGE = 0x20000;
268
269 #endif