2 protocol_edge.c -- handle the meta-protocol, edges
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
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.
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.
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.
23 #include "connection.h"
27 #include "meshlink_internal.h"
37 bool send_add_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e, int contradictions) {
40 char *from_submesh, *to_submesh;
43 if(c->node && c->node->submesh) {
44 if(!submesh_allows_node(e->from->submesh, c->node)) {
48 if(!submesh_allows_node(e->to->submesh, c->node)) {
53 if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
57 sockaddr2str(&e->address, &address, &port);
59 if(e->from->submesh) {
60 from_submesh = e->from->submesh->name;
62 from_submesh = CORE_MESH;
66 to_submesh = e->to->submesh->name;
68 to_submesh = CORE_MESH;
71 if(e->from->submesh) {
77 x = send_request(mesh, c, s, "%d %x %s %d %s %s %s %s %d %s %x %d %d", 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);
86 bool add_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
92 char from_name[MAX_STRING_SIZE];
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];
99 char to_submesh_name[MAX_STRING_SIZE] = "";
102 int contradictions = 0;
105 if(sscanf(request, "%*d %*x "MAX_STRING" %d "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %d "MAX_STRING" %*x %d %d",
106 from_name, &from_devclass, from_submesh_name, to_name, to_address, to_port, &to_devclass, to_submesh_name,
107 &weight, &contradictions) < 9) {
108 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ADD_EDGE", c->name);
112 // Check if devclasses are valid
114 if(from_devclass < 0 || from_devclass >= DEV_CLASS_COUNT) {
115 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "from devclass invalid");
119 if(to_devclass < 0 || to_devclass >= DEV_CLASS_COUNT) {
120 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "to devclass invalid");
124 if(0 == strcmp(from_submesh_name, "")) {
125 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "invalid submesh id");
129 if(0 == strcmp(to_submesh_name, "")) {
130 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s: %s", "ADD_EDGE", c->name, "invalid submesh id");
134 if(seen_request(mesh, request)) {
140 from = lookup_node(mesh, from_name);
141 to = lookup_node(mesh, to_name);
145 from->status.dirty = true;
146 from->status.blacklisted = mesh->default_blacklist;
147 from->name = xstrdup(from_name);
148 from->devclass = from_devclass;
150 from->submesh = NULL;
152 if(0 != strcmp(from_submesh_name, CORE_MESH)) {
153 if(!(from->submesh = lookup_or_create_submesh(mesh, from_submesh_name))) {
158 node_add(mesh, from);
161 if(contradictions > 50) {
162 handle_duplicate_node(mesh, from);
165 from->devclass = from_devclass;
169 to->status.dirty = true;
170 to->status.blacklisted = mesh->default_blacklist;
171 to->name = xstrdup(to_name);
172 to->devclass = to_devclass;
176 if(0 != strcmp(to_submesh_name, CORE_MESH)) {
177 if(!(to->submesh = lookup_or_create_submesh(mesh, to_submesh_name))) {
186 to->devclass = to_devclass;
188 /* Convert addresses */
190 address = str2sockaddr(to_address, to_port);
192 /* Check if edge already exists */
194 e = lookup_edge(from, to);
197 if(e->weight != weight || sockaddrcmp(&e->address, &address)) {
198 if(from == mesh->self) {
199 logger(mesh, MESHLINK_WARNING, "Got %s from %s for ourself which does not match existing entry",
200 "ADD_EDGE", c->name);
201 send_add_edge(mesh, c, e, 0);
204 logger(mesh, MESHLINK_WARNING, "Got %s from %s which does not match existing entry",
205 "ADD_EDGE", c->name);
211 } else if(from == mesh->self) {
212 logger(mesh, MESHLINK_WARNING, "Got %s from %s for ourself which does not exist",
213 "ADD_EDGE", c->name);
214 mesh->contradicting_add_edge++;
218 send_del_edge(mesh, c, e, mesh->contradicting_add_edge);
226 e->address = address;
230 /* Run MST before or after we tell the rest? */
234 if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
235 logger(mesh, MESHLINK_ERROR, "Dropping add edge ( %s to %s )", e->from->submesh->name, e->to->submesh->name);
239 if(e->from->submesh) {
240 s = e->from->submesh;
245 /* Tell the rest about the new edge */
247 forward_request(mesh, c, s, request);
252 bool send_del_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e, int contradictions) {
255 if(c->node && c->node->submesh) {
256 if(!submesh_allows_node(e->from->submesh, c->node)) {
260 if(!submesh_allows_node(e->to->submesh, c->node)) {
265 if(e->from->submesh && e->to->submesh && (e->from->submesh != e->to->submesh)) {
270 if(e->from->submesh) {
271 s = e->from->submesh;
276 return send_request(mesh, c, s, "%d %x %s %s %d", DEL_EDGE, prng(mesh, UINT_MAX),
277 e->from->name, e->to->name, contradictions);
280 bool del_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
285 char from_name[MAX_STRING_SIZE];
286 char to_name[MAX_STRING_SIZE];
288 int contradictions = 0;
291 if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" %d", from_name, to_name, &contradictions) < 2) {
292 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "DEL_EDGE", c->name);
296 if(seen_request(mesh, request)) {
302 from = lookup_node(mesh, from_name);
303 to = lookup_node(mesh, to_name);
306 logger(mesh, MESHLINK_ERROR, "Got %s from %s which does not appear in the edge tree",
307 "DEL_EDGE", c->name);
312 logger(mesh, MESHLINK_ERROR, "Got %s from %s which does not appear in the edge tree",
313 "DEL_EDGE", c->name);
317 if(contradictions > 50) {
318 handle_duplicate_node(mesh, from);
321 /* Check if edge exists */
323 e = lookup_edge(from, to);
326 logger(mesh, MESHLINK_WARNING, "Got %s from %s which does not appear in the edge tree",
327 "DEL_EDGE", c->name);
331 if(e->from == mesh->self) {
332 logger(mesh, MESHLINK_WARNING, "Got %s from %s for ourself",
333 "DEL_EDGE", c->name);
334 mesh->contradicting_del_edge++;
335 send_add_edge(mesh, c, e, mesh->contradicting_del_edge); /* Send back a correction */
339 /* Tell the rest about the deleted edge */
342 if(!e->from->submesh || !e->to->submesh || (e->from->submesh == e->to->submesh)) {
343 if(e->from->submesh) {
344 s = e->from->submesh;
349 /* Tell the rest about the deleted edge */
350 forward_request(mesh, c, s, request);
353 logger(mesh, MESHLINK_ERROR, "Dropping del edge ( %s to %s )", e->from->submesh->name, e->to->submesh->name);
357 /* Delete the edge */
361 /* Run MST before or after we tell the rest? */
365 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
367 if(!to->status.reachable) {
368 e = lookup_edge(to, mesh->self);
371 send_del_edge(mesh, mesh->everyone, e, 0);