]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Keep private members out of the "public" meshlink structs.
[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         void *priv;
67
68         char *appname;
69         dev_class_t devclass;
70
71         char *confbase;
72
73         meshlink_receive_cb_t receive_cb;
74         meshlink_node_status_cb_t node_status_cb;
75         meshlink_log_cb_t log_cb;
76         meshlink_log_level_t log_level;
77
78         meshlink_channel_accept_cb_t channel_accept_cb;
79
80         pthread_t thread;
81         bool threadstarted;
82         pthread_mutex_t outpacketqueue_mutex;
83         pthread_mutex_t mesh_mutex;
84         event_loop_t loop;
85         listen_socket_t listen_socket[MAXSOCKETS];
86         int listen_sockets;
87         signal_t datafromapp;
88
89         struct node_t *self;
90
91         struct splay_tree_t *config;
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 localdiscovery;
119         sockaddr_t localdiscovery_address;
120
121         hash_t *node_udp_cache;
122         struct connection_t *everyone;
123         struct ecdsa *invitation_key;
124
125         int pinginterval;       /* seconds between pings */
126         int pingtimeout;        /* seconds to wait for response */
127         int maxtimeout;
128
129         int sock;
130         sptps_t sptps;
131         char cookie[18], hash[18];
132         char *data;
133         size_t thedatalen;
134         bool success;
135         char line[4096];
136         char buffer[4096];
137         size_t blen;
138
139         pthread_t discovery_thread;
140         bool discovery_threadstarted;
141         struct AvahiServer *avahi_server;
142         struct AvahiSServiceBrowser *avahi_browser;
143         struct AvahiSimplePoll *avahi_poll;
144         struct AvahiSEntryGroup *avahi_group;
145         char* avahi_servicetype;
146 };
147
148 /// A handle for a MeshLink node.
149 struct meshlink_node {
150         const char *name;
151         void *priv;
152 };
153
154 /// A channel.
155 struct meshlink_channel {
156         struct utcp_connection *c;
157         struct node_t *node;
158         meshlink_channel_receive_cb_t receive_cb;
159 };
160
161 /// Header for data packets routed between nodes
162 typedef struct meshlink_packethdr {
163         uint8_t destination[16];
164         uint8_t source[16];
165 } __attribute__ ((__packed__)) meshlink_packethdr_t;
166
167 extern void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh);
168 extern meshlink_log_level_t global_log_level;
169 extern meshlink_log_cb_t global_log_cb;
170
171 /// Device class traits
172 typedef struct {
173         unsigned int min_connects;
174         unsigned int max_connects;
175         int edge_weight;
176 } dev_class_traits_t;
177
178 extern dev_class_traits_t dev_class_traits[];
179
180 #endif // MESHLINK_INTERNAL_H