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