]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Don't link with Catta anymore.
[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 2
46 #define MESHLINK_INVITATION_VERSION 2
47
48 typedef struct listen_socket_t {
49         struct io_t tcp;
50         struct io_t udp;
51         sockaddr_t sa;
52         sockaddr_t broadcast_sa;
53 } listen_socket_t;
54
55 struct meshlink_open_params {
56         char *confbase;
57         char *lock_filename;
58         char *appname;
59         char *name;
60         dev_class_t devclass;
61
62         int netns;
63
64         const void *key;
65         size_t keylen;
66         meshlink_storage_policy_t storage_policy;
67 };
68
69 /// Device class traits
70 typedef struct {
71         int pinginterval;
72         int pingtimeout;
73         int fast_retry_period;
74         int maxtimeout;
75         unsigned int min_connects;
76         unsigned int max_connects;
77         int edge_weight;
78 } dev_class_traits_t;
79
80 /// A handle for an instance of MeshLink.
81 struct meshlink_handle {
82         // public members
83         char *name;
84         void *priv;
85
86         // private members
87         pthread_mutex_t mutex;
88         event_loop_t loop;
89         struct node_t *self;
90         meshlink_log_cb_t log_cb;
91         meshlink_log_level_t log_level;
92         void *packet;
93
94         // The most important network-related members come first
95         int reachable;
96         int listen_sockets;
97         listen_socket_t listen_socket[MAXSOCKETS];
98
99         meshlink_receive_cb_t receive_cb;
100         meshlink_queue_t outpacketqueue;
101         signal_t datafromapp;
102
103         hash_t *node_udp_cache;
104
105         struct splay_tree_t *nodes;
106         struct splay_tree_t *edges;
107
108         struct list_t *connections;
109         struct list_t *outgoings;
110         struct list_t *submeshes;
111
112         // Meta-connection-related members
113         struct splay_tree_t *past_request_tree;
114         timeout_t past_request_timeout;
115
116         int connection_burst;
117         int contradicting_add_edge;
118         int contradicting_del_edge;
119         int sleeptime;
120         time_t connection_burst_time;
121         time_t last_hard_try;
122         time_t last_unreachable;
123         timeout_t pingtimer;
124         timeout_t periodictimer;
125
126         struct connection_t *everyone;
127         uint64_t prng_state[4];
128         uint32_t session_id;
129
130         int next_pit;
131         int pits[10];
132
133         // Infrequently used callbacks
134         meshlink_node_status_cb_t node_status_cb;
135         meshlink_node_status_cb_t meta_status_cb;
136         meshlink_node_pmtu_cb_t node_pmtu_cb;
137         meshlink_channel_listen_cb_t channel_listen_cb;
138         meshlink_channel_accept_cb_t channel_accept_cb;
139         meshlink_node_duplicate_cb_t node_duplicate_cb;
140         meshlink_connection_try_cb_t connection_try_cb;
141         meshlink_error_cb_t error_cb;
142         meshlink_blacklisted_cb_t blacklisted_cb;
143
144         // Mesh parameters
145         char *appname;
146         char *myport;
147
148         struct ecdsa *private_key;
149         struct ecdsa *invitation_key;
150
151         dev_class_t devclass;
152
153         int invitation_timeout;
154         int udp_choice;
155
156         dev_class_traits_t dev_class_traits[DEV_CLASS_COUNT];
157
158         int netns;
159
160         bool default_blacklist;
161         bool discovery;         // Whether mDNS discovery is enabled or not
162         bool inviter_commits_first;
163
164         // Configuration
165         char *confbase;
166         FILE *lockfile;
167         void *config_key;
168         char *external_address_url;
169         struct list_t *invitation_addresses;
170         meshlink_storage_policy_t storage_policy;
171
172         // Thread management
173         pthread_t thread;
174         pthread_cond_t cond;
175         pthread_mutex_t discovery_mutex;
176         pthread_cond_t discovery_cond;
177         bool threadstarted;
178         bool discovery_threadstarted;
179
180         // mDNS discovery
181         io_t pfroute_io;
182         int *discovery_ifaces;
183         struct discovery_address *discovery_addresses;
184         int discovery_iface_count;
185         int discovery_address_count;
186         io_t discovery_sockets[2];
187
188         // ADNS
189         pthread_t adns_thread;
190         pthread_cond_t adns_cond;
191         meshlink_queue_t adns_queue;
192         meshlink_queue_t adns_done_queue;
193         signal_t adns_signal;
194 };
195
196 /// A handle for a MeshLink node.
197 struct meshlink_node {
198         const char *name;
199         void *priv;
200 };
201
202 /// A handle for a node Sub-Mesh.
203 struct meshlink_submesh {
204         const char *name;
205         void *priv;
206 };
207
208 /// An AIO buffer.
209 typedef struct meshlink_aio_buffer {
210         const void *data;
211         int fd;
212         size_t len;
213         size_t done;
214         union {
215                 meshlink_aio_cb_t buffer;
216                 meshlink_aio_fd_cb_t fd;
217         } cb;
218         void *priv;
219         struct meshlink_aio_buffer *next;
220 } meshlink_aio_buffer_t;
221
222 /// A channel.
223 struct meshlink_channel {
224         struct node_t *node;
225         void *priv;
226         bool in_callback;
227
228         struct utcp_connection *c;
229         meshlink_aio_buffer_t *aio_send;
230         meshlink_aio_buffer_t *aio_receive;
231         meshlink_channel_receive_cb_t receive_cb;
232         meshlink_channel_poll_cb_t poll_cb;
233 };
234
235 /// Header for data packets routed between nodes
236 typedef struct meshlink_packethdr {
237         uint8_t destination[16];
238         uint8_t source[16];
239 } __attribute__((__packed__)) meshlink_packethdr_t;
240
241 void meshlink_send_from_queue(event_loop_t *loop, void *mesh);
242 void update_node_status(meshlink_handle_t *mesh, struct node_t *n);
243 void update_node_pmtu(meshlink_handle_t *mesh, struct node_t *n);
244 extern meshlink_log_level_t global_log_level;
245 extern meshlink_log_cb_t global_log_cb;
246 void handle_duplicate_node(meshlink_handle_t *mesh, struct node_t *n);
247 void handle_network_change(meshlink_handle_t *mesh, bool online);
248 void call_error_cb(meshlink_handle_t *mesh, meshlink_errno_t meshlink_errno);
249
250 /// Per-instance PRNG
251 static inline int prng(meshlink_handle_t *mesh, uint64_t max) {
252         return xoshiro(mesh->prng_state) % max;
253 }
254
255 /// Fudge value of ~0.1 seconds, in microseconds.
256 static const unsigned int TIMER_FUDGE = 0x8000000;
257
258 #endif