]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Merge branch 'channels'
[meshlink] / src / meshlink_internal.h
1 /*
2     meshlink_internal.h -- Internal parts of the public API.
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef MESHLINK_INTERNAL_H
21 #define MESHLINK_INTERNAL_H
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 struct AvahiServer;
37 struct AvahiSServiceBrowser;
38 struct AvahiSimplePoll;
39 struct AvahiSEntryGroup;
40
41 typedef struct listen_socket_t {
42         struct io_t tcp;
43         struct io_t udp;
44         sockaddr_t sa;
45         bool bindto;
46 } listen_socket_t;
47
48 typedef enum proxytype_t {
49         PROXY_NONE = 0,
50         PROXY_SOCKS4,
51         PROXY_SOCKS4A,
52         PROXY_SOCKS5,
53         PROXY_HTTP,
54         PROXY_EXEC,
55 } proxytype_t;
56
57 typedef struct outpacketqueue {
58         meshlink_node_t *destination;
59         const void *data;
60         unsigned int len;
61 } outpacketqueue_t;
62
63 /// A handle for an instance of MeshLink.
64 struct meshlink_handle {
65         char *name;
66         char *appname;
67         dev_class_t devclass;
68         void *priv;
69
70         char *confbase;
71
72         meshlink_receive_cb_t receive_cb;
73         meshlink_node_status_cb_t node_status_cb;
74         meshlink_log_cb_t log_cb;
75         meshlink_log_level_t log_level;
76
77         meshlink_channel_accept_cb_t channel_accept_cb;
78
79         pthread_t thread;
80         bool threadstarted;
81         pthread_mutex_t outpacketqueue_mutex;
82         pthread_mutex_t mesh_mutex;
83         event_loop_t loop;
84         listen_socket_t listen_socket[MAXSOCKETS];
85         int listen_sockets;
86         signal_t datafromapp;
87
88         struct node_t *self;
89
90         struct splay_tree_t *config;
91         struct splay_tree_t *edges;
92         struct splay_tree_t *nodes;
93
94         struct list_t *connections;
95         struct list_t *outgoings;
96
97         meshlink_queue_t outpacketqueue;
98
99         struct splay_tree_t *past_request_tree;
100         timeout_t past_request_timeout;
101
102         int contradicting_add_edge;
103         int contradicting_del_edge;
104         int sleeptime;
105         time_t last_config_check;
106         timeout_t pingtimer;
107         timeout_t periodictimer;
108
109         char *myport;
110
111         char *proxyhost;
112         char *proxyport;
113         char *proxyuser;
114         char *proxypass;
115         proxytype_t proxytype;
116
117         bool localdiscovery;
118         sockaddr_t localdiscovery_address;
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 AvahiServer *avahi_server;
141         struct AvahiSServiceBrowser *avahi_browser;
142         struct AvahiSimplePoll *avahi_poll;
143         struct AvahiSEntryGroup *avahi_group;
144         char* avahi_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 utcp_connection *c;
156         struct node_t *node;
157         meshlink_channel_receive_cb_t receive_cb;
158 };
159
160 /// Header for data packets routed between nodes
161 typedef struct meshlink_packethdr {
162         uint8_t destination[16];
163         uint8_t source[16];
164 } __attribute__ ((__packed__)) meshlink_packethdr_t;
165
166 extern void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh);
167 extern meshlink_log_level_t global_log_level;
168 extern meshlink_log_cb_t global_log_cb;
169
170 /// Device class traits
171 typedef struct {
172         unsigned int min_connects;
173         unsigned int max_connects;
174         int edge_weight;
175 } dev_class_traits_t;
176
177 extern dev_class_traits_t dev_class_traits[];
178
179 #endif // MESHLINK_INTERNAL_H