]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Provide thread-safety to functions that return pointers to meshlink_node_t.
[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 "logger.h"
28 #include "meshlink.h"
29 #include "sockaddr.h"
30 #include "sptps.h"
31
32 #include <pthread.h>
33
34 #define MAXSOCKETS 8    /* Probably overkill... */
35
36 typedef struct listen_socket_t {
37         struct io_t tcp;
38         struct io_t udp;
39         sockaddr_t sa;
40         bool bindto;
41 } listen_socket_t;
42
43 typedef enum proxytype_t {
44         PROXY_NONE = 0,
45         PROXY_SOCKS4,
46         PROXY_SOCKS4A,
47         PROXY_SOCKS5,
48         PROXY_HTTP,
49         PROXY_EXEC,
50 } proxytype_t;
51
52 /// A handle for an instance of MeshLink.
53 struct meshlink_handle {
54         char *confbase;
55         char *name;
56
57         meshlink_receive_cb_t receive_cb;
58         meshlink_node_status_cb_t node_status_cb;
59         meshlink_log_cb_t log_cb;
60         meshlink_log_level_t log_level;
61
62         pthread_t thread;
63         pthread_mutex_t outpacketqueue_mutex;
64         pthread_mutex_t nodes_mutex;
65         event_loop_t loop;
66         listen_socket_t listen_socket[MAXSOCKETS];
67         int listen_sockets;
68         signal_t datafromapp;
69
70         struct node_t *self;
71
72         struct splay_tree_t *config;
73         struct splay_tree_t *edges;
74         struct splay_tree_t *nodes;
75
76         struct list_t *connections;
77         struct list_t *outgoings;
78
79         struct list_t *outpacketqueue;
80
81         int contradicting_add_edge;
82         int contradicting_del_edge;
83         int sleeptime;
84         time_t last_config_check;
85         timeout_t pingtimer;
86         timeout_t periodictimer;
87
88         char *myport;
89
90         char *proxyhost;
91         char *proxyport;
92         char *proxyuser;
93         char *proxypass;
94         proxytype_t proxytype;
95
96         bool localdiscovery;
97         sockaddr_t localdiscovery_address;
98
99         hash_t *node_udp_cache;
100         struct connection_t *everyone;
101         struct ecdsa *invitation_key;
102
103         debug_t debug_level;
104         int pinginterval;       /* seconds between pings */
105         int pingtimeout;        /* seconds to wait for response */
106         int maxtimeout;
107
108         int sock;
109         sptps_t sptps;
110         char cookie[18], hash[18];
111         char *data;
112         size_t thedatalen;
113         bool success;
114         char line[4096];
115         char buffer[4096];
116         size_t blen;
117 };
118
119 /// A handle for a MeshLink node.
120 struct meshlink_node {
121         const char *name;
122         void *priv;
123 };
124
125 /// Header for data packets routed between nodes
126 typedef struct meshlink_packethdr {
127         uint8_t destination[16];
128         uint8_t source[16];
129 } __attribute__ ((__packed__)) meshlink_packethdr_t;
130
131 #endif // MESHLINK_INTERNAL_H