]> git.meshlink.io Git - meshlink/blob - src/protocol_edge.c
Add a configurable fast connection retry period.
[meshlink] / src / protocol_edge.c
1 /*
2     protocol_edge.c -- handle the meta-protocol, edges
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 #include "system.h"
21
22 #include "conf.h"
23 #include "connection.h"
24 #include "edge.h"
25 #include "graph.h"
26 #include "logger.h"
27 #include "meshlink_internal.h"
28 #include "meta.h"
29 #include "net.h"
30 #include "netutl.h"
31 #include "node.h"
32 #include "protocol.h"
33 #include "utils.h"
34 #include "xalloc.h"
35 #include "submesh.h"
36
37 bool send_add_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e, int contradictions) {
38         bool x;
39         char *address, *port;
40         char *from_submesh, *to_submesh;
41         submesh_t *s = NULL;
42
43         if(c->node && c->node->submesh) {
44                 if(!submesh_allows_node(e->from->submesh, c->node)) {
45                         return true;
46                 }
47
48                 if(!submesh_allows_node(e->to->submesh, c->node)) {
49                         return true;
50                 }
51         }
52
53         if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
54                 return true;
55         }
56
57         sockaddr2str(&e->address, &address, &port);
58
59         if(e->from->submesh) {
60                 from_submesh = e->from->submesh->name;
61         } else {
62                 from_submesh = CORE_MESH;
63         }
64
65         if(e->to->submesh) {
66                 to_submesh = e->to->submesh->name;
67         } else {
68                 to_submesh = CORE_MESH;
69         }
70
71         if(e->from->submesh) {
72                 s = e->from->submesh;
73         } else {
74                 s = e->to->submesh;
75         }
76
77         x = send_request(mesh, c, s, "%d %x %s %d %s %s %s %s %d %s %x %d %d %x", ADD_EDGE, prng(mesh, UINT_MAX),
78                          e->from->name, e->from->devclass, from_submesh, e->to->name, address, port,
79                          e->to->devclass, to_submesh, OPTION_PMTU_DISCOVERY, e->weight, contradictions, e->from->session_id);
80         free(address);
81         free(port);
82
83         return x;
84 }
85
86 bool add_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
87         assert(request);
88         assert(*request);
89
90         edge_t *e;
91         node_t *from, *to;
92         char from_name[MAX_STRING_SIZE];
93         int from_devclass;
94         char from_submesh_name[MAX_STRING_SIZE] = "";
95         char to_name[MAX_STRING_SIZE];
96         char to_address[MAX_STRING_SIZE];
97         char to_port[MAX_STRING_SIZE];
98         int to_devclass;
99         char to_submesh_name[MAX_STRING_SIZE] = "";
100         sockaddr_t address;
101         int weight;
102         int contradictions = 0;
103         uint32_t session_id = 0;
104         submesh_t *s = NULL;
105
106         if(sscanf(request, "%*d %*x "MAX_STRING" %d "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %d "MAX_STRING" %*x %d %d %x",
107                         from_name, &from_devclass, from_submesh_name, to_name, to_address, to_port, &to_devclass, to_submesh_name,
108                         &weight, &contradictions, &session_id) < 9) {
109                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ADD_EDGE", c->name);
110                 return false;
111         }
112
113         // Check if devclasses are valid
114
115         if(from_devclass < 0 || from_devclass >= DEV_CLASS_COUNT) {
116                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "from devclass invalid");
117                 return false;
118         }
119
120         if(to_devclass < 0 || to_devclass >= DEV_CLASS_COUNT) {
121                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "to devclass invalid");
122                 return false;
123         }
124
125         if(0 == strcmp(from_submesh_name, "")) {
126                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "invalid submesh id");
127                 return false;
128         }
129
130         if(0 == strcmp(to_submesh_name, "")) {
131                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "invalid submesh id");
132                 return false;
133         }
134
135         if(seen_request(mesh, request)) {
136                 return true;
137         }
138
139         /* Lookup nodes */
140
141         from = lookup_node(mesh, from_name);
142         to = lookup_node(mesh, to_name);
143
144         if(!from) {
145                 from = new_node();
146                 from->status.dirty = true;
147                 from->status.blacklisted = mesh->default_blacklist;
148                 from->name = xstrdup(from_name);
149                 from->devclass = from_devclass;
150
151                 from->submesh = NULL;
152
153                 if(0 != strcmp(from_submesh_name, CORE_MESH)) {
154                         if(!(from->submesh = lookup_or_create_submesh(mesh, from_submesh_name))) {
155                                 return false;
156                         }
157                 }
158
159                 node_add(mesh, from);
160         }
161
162         if(contradictions > 50) {
163                 handle_duplicate_node(mesh, from);
164         }
165
166         from->devclass = from_devclass;
167
168         if(!from->session_id) {
169                 from->session_id = session_id;
170         }
171
172         if(!to) {
173                 to = new_node();
174                 to->status.dirty = true;
175                 to->status.blacklisted = mesh->default_blacklist;
176                 to->name = xstrdup(to_name);
177                 to->devclass = to_devclass;
178
179                 to->submesh = NULL;
180
181                 if(0 != strcmp(to_submesh_name, CORE_MESH)) {
182                         if(!(to->submesh = lookup_or_create_submesh(mesh, to_submesh_name))) {
183                                 return false;
184
185                         }
186                 }
187
188                 node_add(mesh, to);
189         }
190
191         to->devclass = to_devclass;
192
193         /* Convert addresses */
194
195         address = str2sockaddr(to_address, to_port);
196
197         /* Check if edge already exists */
198
199         e = lookup_edge(from, to);
200
201         if(e) {
202                 if(e->weight != weight || e->session_id != session_id || sockaddrcmp(&e->address, &address)) {
203                         if(from == mesh->self) {
204                                 logger(mesh, MESHLINK_DEBUG, "Got %s from %s for ourself which does not match existing entry", "ADD_EDGE", c->name);
205                                 send_add_edge(mesh, c, e, 0);
206                                 return true;
207                         } else {
208                                 logger(mesh, MESHLINK_DEBUG, "Got %s from %s which does not match existing entry", "ADD_EDGE", c->name);
209                                 edge_del(mesh, e);
210                         }
211                 } else {
212                         return true;
213                 }
214         } else if(from == mesh->self) {
215                 logger(mesh, MESHLINK_WARNING, "Got %s from %s for ourself which does not exist", "ADD_EDGE", c->name);
216                 mesh->contradicting_add_edge++;
217                 e = new_edge();
218                 e->from = from;
219                 e->to = to;
220                 e->session_id = session_id;
221                 send_del_edge(mesh, c, e, mesh->contradicting_add_edge);
222                 free_edge(e);
223                 return true;
224         }
225
226         e = new_edge();
227         e->from = from;
228         e->to = to;
229         e->address = address;
230         e->weight = weight;
231         e->session_id = session_id;
232         edge_add(mesh, e);
233
234         /* Run MST before or after we tell the rest? */
235
236         graph(mesh);
237
238         if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
239                 logger(mesh, MESHLINK_ERROR, "Dropping add edge ( %s to %s )", e->from->submesh->name, e->to->submesh->name);
240                 return false;
241         }
242
243         if(e->from->submesh) {
244                 s = e->from->submesh;
245         } else {
246                 s = e->to->submesh;
247         }
248
249         /* Tell the rest about the new edge */
250
251         forward_request(mesh, c, s, request);
252
253         return true;
254 }
255
256 bool send_del_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e, int contradictions) {
257         submesh_t *s = NULL;
258
259         if(c->node && c->node->submesh) {
260                 if(!submesh_allows_node(e->from->submesh, c->node)) {
261                         return true;
262                 }
263
264                 if(!submesh_allows_node(e->to->submesh, c->node)) {
265                         return true;
266                 }
267         }
268
269         if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
270                 return true;
271         }
272
273
274         if(e->from->submesh) {
275                 s = e->from->submesh;
276         } else {
277                 s = e->to->submesh;
278         }
279
280         return send_request(mesh, c, s, "%d %x %s %s %d %x", DEL_EDGE, prng(mesh, UINT_MAX),
281                             e->from->name, e->to->name, contradictions, e->session_id);
282 }
283
284 bool del_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
285         assert(request);
286         assert(*request);
287
288         edge_t *e;
289         char from_name[MAX_STRING_SIZE];
290         char to_name[MAX_STRING_SIZE];
291         node_t *from, *to;
292         int contradictions = 0;
293         uint32_t session_id = 0;
294         submesh_t *s = NULL;
295
296         if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" %d %x", from_name, to_name, &contradictions, &session_id) < 2) {
297                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "DEL_EDGE", c->name);
298                 return false;
299         }
300
301         if(seen_request(mesh, request)) {
302                 return true;
303         }
304
305         /* Lookup nodes */
306
307         from = lookup_node(mesh, from_name);
308         to = lookup_node(mesh, to_name);
309
310         if(!from) {
311                 logger(mesh, MESHLINK_WARNING, "Got %s from %s which does not appear in the edge tree", "DEL_EDGE", c->name);
312                 return true;
313         }
314
315         if(!to) {
316                 logger(mesh, MESHLINK_WARNING, "Got %s from %s which does not appear in the edge tree", "DEL_EDGE", c->name);
317                 return true;
318         }
319
320         if(contradictions > 50) {
321                 handle_duplicate_node(mesh, from);
322         }
323
324         /* Check if edge exists */
325
326         e = lookup_edge(from, to);
327
328         if(!e) {
329                 logger(mesh, MESHLINK_WARNING, "Got %s from %s which does not appear in the edge tree", "DEL_EDGE", c->name);
330                 return true;
331         }
332
333         if(e->from == mesh->self) {
334                 logger(mesh, MESHLINK_WARNING, "Got %s from %s for ourself", "DEL_EDGE", c->name);
335                 mesh->contradicting_del_edge++;
336                 send_add_edge(mesh, c, e, mesh->contradicting_del_edge);    /* Send back a correction */
337                 return true;
338         }
339
340         /* Tell the rest about the deleted edge */
341
342
343         if(!e->from->submesh || !e->to->submesh || (e->from->submesh == e->to->submesh)) {
344                 if(e->from->submesh) {
345                         s = e->from->submesh;
346                 } else {
347                         s = e->to->submesh;
348                 }
349
350                 /* Tell the rest about the deleted edge */
351                 forward_request(mesh, c, s, request);
352
353         } else {
354                 logger(mesh, MESHLINK_ERROR, "Dropping del edge ( %s to %s )", e->from->submesh->name, e->to->submesh->name);
355                 return false;
356         }
357
358         /* Delete the edge */
359
360         edge_del(mesh, e);
361
362         /* Run MST before or after we tell the rest? */
363
364         graph(mesh);
365
366         /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
367
368         if(!to->status.reachable) {
369                 e = lookup_edge(to, mesh->self);
370
371                 if(e) {
372                         send_del_edge(mesh, mesh->everyone, e, 0);
373                         edge_del(mesh, e);
374                 }
375         }
376
377         return true;
378 }