]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Speed up reconnections on network interface changes.
[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
36 #include <pthread.h>
37
38 #define MAXSOCKETS 8    /* Probably overkill... */
39
40 static const char meshlink_invitation_label[] = "MeshLink invitation";
41 static const char meshlink_tcp_label[] = "MeshLink TCP";
42 static const char meshlink_udp_label[] = "MeshLink UDP";
43
44 #define MESHLINK_CONFIG_VERSION 1
45 #define MESHLINK_INVITATION_VERSION 1
46
47 struct CattaServer;
48 struct CattaSServiceBrowser;
49 struct CattaSimplePoll;
50 struct CattaSEntryGroup;
51
52 typedef struct listen_socket_t {
53         struct io_t tcp;
54         struct io_t udp;
55         sockaddr_t sa;
56         bool bindto;
57 } listen_socket_t;
58
59 typedef enum proxytype_t {
60         PROXY_NONE = 0,
61         PROXY_SOCKS4,
62         PROXY_SOCKS4A,
63         PROXY_SOCKS5,
64         PROXY_HTTP,
65 } proxytype_t;
66
67 struct meshlink_open_params {
68         char *confbase;
69         char *appname;
70         char *name;
71         dev_class_t devclass;
72
73         int netns;
74
75         const void *key;
76         size_t keylen;
77 };
78
79 /// A handle for an instance of MeshLink.
80 struct meshlink_handle {
81         char *name;
82         void *priv;
83
84         char *appname;
85         int32_t devclass;
86
87         char *confbase;
88         FILE *conffile;
89
90         meshlink_receive_cb_t receive_cb;
91         meshlink_node_status_cb_t node_status_cb;
92         meshlink_log_cb_t log_cb;
93         meshlink_log_level_t log_level;
94
95         meshlink_channel_accept_cb_t channel_accept_cb;
96         meshlink_node_duplicate_cb_t node_duplicate_cb;
97         meshlink_connection_try_cb_t connection_try_cb;
98
99         pthread_t thread;
100         bool threadstarted;
101         pthread_mutex_t mesh_mutex;
102         event_loop_t loop;
103         listen_socket_t listen_socket[MAXSOCKETS];
104         int listen_sockets;
105         signal_t datafromapp;
106
107         struct node_t *self;
108
109         struct splay_tree_t *edges;
110         struct splay_tree_t *nodes;
111
112         struct list_t *connections;
113         struct list_t *outgoings;
114         struct list_t *submeshes;
115
116         meshlink_queue_t outpacketqueue;
117
118         struct splay_tree_t *past_request_tree;
119         timeout_t past_request_timeout;
120
121         int contradicting_add_edge;
122         int contradicting_del_edge;
123         int sleeptime;
124         time_t last_config_check;
125         timeout_t pingtimer;
126         timeout_t periodictimer;
127
128         char *myport;
129
130         char *proxyhost;
131         char *proxyport;
132         char *proxyuser;
133         char *proxypass;
134         proxytype_t proxytype;
135
136         bool discovery;         // Whether Catta is enabled or not
137         bool localdiscovery;
138         sockaddr_t localdiscovery_address;
139
140         bool default_blacklist;
141
142         hash_t *node_udp_cache;
143         struct connection_t *everyone;
144         struct ecdsa *private_key;
145         struct ecdsa *invitation_key;
146         int invitation_timeout;
147
148         int pinginterval;       /* seconds between pings */
149         int pingtimeout;        /* seconds to wait for response */
150         int maxtimeout;
151
152         int sock;
153         sptps_t sptps;
154         char cookie[18], hash[18];
155         char *data;
156         size_t thedatalen;
157         bool success;
158         char line[4096];
159         char buffer[4096];
160         size_t blen;
161
162         pthread_t discovery_thread;
163         bool discovery_threadstarted;
164         struct CattaServer *catta_server;
165         struct CattaSServiceBrowser *catta_browser;
166         struct CattaSimplePoll *catta_poll;
167         struct CattaSEntryGroup *catta_group;
168         char *catta_servicetype;
169         unsigned int catta_interfaces;
170
171         int netns;
172         void *config_key;
173 };
174
175 /// A handle for a MeshLink node.
176 struct meshlink_node {
177         const char *name;
178         void *priv;
179 };
180
181 /// A handle for a node Sub-Mesh.
182 struct meshlink_submesh {
183         const char *name;
184         void *priv;
185 };
186
187 /// A channel.
188 struct meshlink_channel {
189         struct node_t *node;
190         void *priv;
191
192         struct utcp_connection *c;
193         meshlink_channel_receive_cb_t receive_cb;
194         meshlink_channel_poll_cb_t poll_cb;
195 };
196
197 /// Header for data packets routed between nodes
198 typedef struct meshlink_packethdr {
199         uint8_t destination[16];
200         uint8_t source[16];
201 } __attribute__((__packed__)) meshlink_packethdr_t;
202
203 extern void meshlink_send_from_queue(event_loop_t *el, meshlink_handle_t *mesh);
204 extern void update_node_status(meshlink_handle_t *mesh, struct node_t *n);
205 extern meshlink_log_level_t global_log_level;
206 extern meshlink_log_cb_t global_log_cb;
207 extern int check_port(meshlink_handle_t *mesh);
208 extern void handle_duplicate_node(meshlink_handle_t *mesh, struct node_t *n);
209 extern void handle_network_change(meshlink_handle_t *mesh, bool online);
210
211 /// Device class traits
212 typedef struct {
213         unsigned int min_connects;
214         unsigned int max_connects;
215         int edge_weight;
216 } dev_class_traits_t;
217
218 extern dev_class_traits_t dev_class_traits[];
219
220 #endif