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