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