]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Skeleton design for opening a reliable channel
[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 typedef struct outpacketqueue {
53         meshlink_node_t *destination;
54         const void *data;
55         unsigned int len;
56 } outpacketqueue_t;
57
58 struct meshlink_connection {
59         uint16_t sd;
60         outpacketqueue_t packetwindow;
61 };
62
63 /// A handle for an instance of MeshLink.
64 struct meshlink_handle {
65         char *confbase;
66         char *name;
67
68         meshlink_receive_cb_t receive_cb;
69         meshlink_node_status_cb_t node_status_cb;
70         meshlink_log_cb_t log_cb;
71         meshlink_log_level_t log_level;
72
73         pthread_t thread;
74         bool threadstarted;
75         pthread_mutex_t outpacketqueue_mutex;
76         pthread_mutex_t nodes_mutex;
77         event_loop_t loop;
78         listen_socket_t listen_socket[MAXSOCKETS];
79         int listen_sockets;
80         signal_t datafromapp;
81
82         struct node_t *self;
83
84         struct splay_tree_t *config;
85         struct splay_tree_t *edges;
86         struct splay_tree_t *nodes;
87
88         struct list_t *connections;
89         struct list_t *outgoings;
90
91         struct list_t *outpacketqueue;
92
93         uint16_t socketsbitmap; //bitmap of 16 bits
94
95         int contradicting_add_edge;
96         int contradicting_del_edge;
97         int sleeptime;
98         time_t last_config_check;
99         timeout_t pingtimer;
100         timeout_t periodictimer;
101
102         char *myport;
103
104         char *proxyhost;
105         char *proxyport;
106         char *proxyuser;
107         char *proxypass;
108         proxytype_t proxytype;
109
110         bool localdiscovery;
111         sockaddr_t localdiscovery_address;
112
113         hash_t *node_udp_cache;
114         struct connection_t *everyone;
115         struct ecdsa *invitation_key;
116
117         debug_t debug_level;
118         int pinginterval;       /* seconds between pings */
119         int pingtimeout;        /* seconds to wait for response */
120         int maxtimeout;
121
122         int sock;
123         sptps_t sptps;
124         char cookie[18], hash[18];
125         char *data;
126         size_t thedatalen;
127         bool success;
128         char line[4096];
129         char buffer[4096];
130         size_t blen;
131 };
132
133 /// A handle for a MeshLink node.
134 struct meshlink_node {
135         const char *name;
136         void *priv;
137 };
138
139 /// Header for data packets routed between nodes
140 typedef struct meshlink_packethdr {
141         uint8_t destination[16];
142         uint8_t source[16];
143         uint16_t dport;
144         uint16_t sport;
145         uint16_t seqno;
146 } __attribute__ ((__packed__)) meshlink_packethdr_t;
147
148 extern void meshlink_send_from_queue(event_loop_t* el,meshlink_handle_t *mesh);
149
150
151 #endif // MESHLINK_INTERNAL_H