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