]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Add support for recvmmsg().
[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 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 } listen_socket_t;
59
60 struct meshlink_open_params {
61         char *confbase;
62         char *appname;
63         char *name;
64         dev_class_t devclass;
65
66         int netns;
67
68         const void *key;
69         size_t keylen;
70 };
71
72 /// Device class traits
73 typedef struct {
74         int pinginterval;
75         int pingtimeout;
76         int fast_retry_period;
77         unsigned int min_connects;
78         unsigned int max_connects;
79         int edge_weight;
80 } dev_class_traits_t;
81
82 /// A handle for an instance of MeshLink.
83 struct meshlink_handle {
84         // public members
85         char *name;
86         void *priv;
87
88         // private members
89         pthread_mutex_t mutex;
90         event_loop_t loop;
91         struct node_t *self;
92         meshlink_log_cb_t log_cb;
93         meshlink_log_level_t log_level;
94         void *packet;
95 #ifdef HAVE_RECVMMSG
96         struct mmsgs *in_mmsgs;
97         struct mmsgs *out_mmsgs;
98 #endif
99
100         // The most important network-related members come first
101         int reachable;
102         int listen_sockets;
103         listen_socket_t listen_socket[MAXSOCKETS];
104
105         meshlink_receive_cb_t receive_cb;
106         meshlink_queue_t outpacketqueue;
107         signal_t datafromapp;
108
109         hash_t *node_udp_cache;
110
111         struct splay_tree_t *nodes;
112         struct splay_tree_t *edges;
113
114         struct list_t *connections;
115         struct list_t *outgoings;
116         struct list_t *submeshes;
117
118         // Meta-connection-related members
119         struct splay_tree_t *past_request_tree;
120         timeout_t past_request_timeout;
121
122         int connection_burst;
123         int contradicting_add_edge;
124         int contradicting_del_edge;
125         int sleeptime;
126         time_t connection_burst_time;
127         time_t last_hard_try;
128         time_t last_unreachable;
129         timeout_t pingtimer;
130         timeout_t periodictimer;
131
132         struct connection_t *everyone;
133         uint64_t prng_state[4];
134         uint32_t session_id;
135
136         int next_pit;
137         int pits[10];
138
139         // Infrequently used callbacks
140         meshlink_node_status_cb_t node_status_cb;
141         meshlink_node_pmtu_cb_t node_pmtu_cb;
142         meshlink_channel_accept_cb_t channel_accept_cb;
143         meshlink_node_duplicate_cb_t node_duplicate_cb;
144         meshlink_connection_try_cb_t connection_try_cb;
145         meshlink_error_cb_t error_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         bool inviter_commits_first;
167
168         // Configuration
169         char *confbase;
170         FILE *lockfile;
171         void *config_key;
172         char *external_address_url;
173         struct list_t *invitation_addresses;
174
175         // Thread management
176         pthread_t thread;
177         pthread_cond_t cond;
178         pthread_mutex_t discovery_mutex;
179         pthread_cond_t discovery_cond;
180         bool threadstarted;
181         bool discovery_threadstarted;
182
183         // Catta
184         pthread_t discovery_thread;
185         struct CattaServer *catta_server;
186         struct CattaSServiceBrowser *catta_browser;
187         struct CattaSimplePoll *catta_poll;
188         struct CattaSEntryGroup *catta_group;
189         char *catta_servicetype;
190         unsigned int catta_interfaces;
191
192         // ADNS
193         pthread_t adns_thread;
194         pthread_cond_t adns_cond;
195         meshlink_queue_t adns_queue;
196         meshlink_queue_t adns_done_queue;
197         signal_t adns_signal;
198 };
199
200 /// A handle for a MeshLink node.
201 struct meshlink_node {
202         const char *name;
203         void *priv;
204 };
205
206 /// A handle for a node Sub-Mesh.
207 struct meshlink_submesh {
208         const char *name;
209         void *priv;
210 };
211
212 /// An AIO buffer.
213 typedef struct meshlink_aio_buffer {
214         const void *data;
215         int fd;
216         size_t len;
217         size_t done;
218         union {
219                 meshlink_aio_cb_t buffer;
220                 meshlink_aio_fd_cb_t fd;
221         } cb;
222         void *priv;
223         struct meshlink_aio_buffer *next;
224 } meshlink_aio_buffer_t;
225
226 /// A channel.
227 struct meshlink_channel {
228         struct node_t *node;
229         void *priv;
230
231         struct utcp_connection *c;
232         meshlink_aio_buffer_t *aio_send;
233         meshlink_aio_buffer_t *aio_receive;
234         meshlink_channel_receive_cb_t receive_cb;
235         meshlink_channel_poll_cb_t poll_cb;
236 };
237
238 /// Header for data packets routed between nodes
239 typedef struct meshlink_packethdr {
240         uint8_t destination[16];
241         uint8_t source[16];
242 } __attribute__((__packed__)) meshlink_packethdr_t;
243
244 extern void meshlink_send_from_queue(event_loop_t *loop, void *mesh);
245 extern void update_node_status(meshlink_handle_t *mesh, struct node_t *n);
246 extern void update_node_pmtu(meshlink_handle_t *mesh, struct node_t *n);
247 extern meshlink_log_level_t global_log_level;
248 extern meshlink_log_cb_t global_log_cb;
249 extern void handle_duplicate_node(meshlink_handle_t *mesh, struct node_t *n);
250 extern void handle_network_change(meshlink_handle_t *mesh, bool online);
251 extern void call_error_cb(meshlink_handle_t *mesh, meshlink_errno_t meshlink_errno);
252
253 /// Per-instance PRNG
254 static inline int prng(meshlink_handle_t *mesh, uint64_t max) {
255         return xoshiro(mesh->prng_state) % max;
256 }
257
258 /// Fudge value of ~0.1 seconds, in microseconds.
259 static const unsigned int TIMER_FUDGE = 0x8000000;
260
261 #endif