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