]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
a650083a337e14a177faac0beb6507cdcbafdb15
[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
92         pthread_t thread;
93         bool threadstarted;
94         pthread_mutex_t mesh_mutex;
95         event_loop_t loop;
96         listen_socket_t listen_socket[MAXSOCKETS];
97         int listen_sockets;
98         signal_t datafromapp;
99
100         struct node_t *self;
101
102         struct splay_tree_t *config;
103         struct splay_tree_t *edges;
104         struct splay_tree_t *nodes;
105
106         struct list_t *connections;
107         struct list_t *outgoings;
108         struct list_t *submeshes;
109
110         meshlink_queue_t outpacketqueue;
111
112         struct splay_tree_t *past_request_tree;
113         timeout_t past_request_timeout;
114
115         int contradicting_add_edge;
116         int contradicting_del_edge;
117         int sleeptime;
118         time_t last_config_check;
119         timeout_t pingtimer;
120         timeout_t periodictimer;
121
122         char *myport;
123
124         char *proxyhost;
125         char *proxyport;
126         char *proxyuser;
127         char *proxypass;
128         proxytype_t proxytype;
129
130         bool discovery;         // Whether Catta is enabled or not
131         bool localdiscovery;
132         sockaddr_t localdiscovery_address;
133
134         bool default_blacklist;
135
136         hash_t *node_udp_cache;
137         struct connection_t *everyone;
138         struct ecdsa *invitation_key;
139         int invitation_timeout;
140
141         int pinginterval;       /* seconds between pings */
142         int pingtimeout;        /* seconds to wait for response */
143         int maxtimeout;
144
145         int sock;
146         sptps_t sptps;
147         char cookie[18], hash[18];
148         char *data;
149         size_t thedatalen;
150         bool success;
151         char line[4096];
152         char buffer[4096];
153         size_t blen;
154
155         pthread_t discovery_thread;
156         bool discovery_threadstarted;
157         struct CattaServer *catta_server;
158         struct CattaSServiceBrowser *catta_browser;
159         struct CattaSimplePoll *catta_poll;
160         struct CattaSEntryGroup *catta_group;
161         char *catta_servicetype;
162
163         int netns;
164 };
165
166 /// A handle for a MeshLink node.
167 struct meshlink_node {
168         const char *name;
169         void *priv;
170 };
171
172 /// A handle for a node Sub-Mesh.
173 struct meshlink_submesh {
174         const char *name;
175         void *priv;
176 };
177
178 /// A channel.
179 struct meshlink_channel {
180         struct node_t *node;
181         void *priv;
182
183         struct utcp_connection *c;
184         meshlink_channel_receive_cb_t receive_cb;
185         meshlink_channel_poll_cb_t poll_cb;
186 };
187
188 /// Header for data packets routed between nodes
189 typedef struct meshlink_packethdr {
190         uint8_t destination[16];
191         uint8_t source[16];
192 } __attribute__((__packed__)) meshlink_packethdr_t;
193
194 extern void meshlink_send_from_queue(event_loop_t *el, meshlink_handle_t *mesh);
195 extern void update_node_status(meshlink_handle_t *mesh, struct node_t *n);
196 extern meshlink_log_level_t global_log_level;
197 extern meshlink_log_cb_t global_log_cb;
198 extern int check_port(meshlink_handle_t *mesh);
199 extern void handle_duplicate_node(meshlink_handle_t *mesh, struct node_t *n);
200
201 /// Device class traits
202 typedef struct {
203         unsigned int min_connects;
204         unsigned int max_connects;
205         int edge_weight;
206 } dev_class_traits_t;
207
208 extern dev_class_traits_t dev_class_traits[];
209
210 #endif