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