]> git.meshlink.io Git - meshlink/blob - src/protocol_edge.c
Merge branch 'everbase' of chicago.everbase.net:meshlink/meshlink into everbase
[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
36 bool send_add_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e) {
37         bool x;
38         char *address, *port;
39
40         sockaddr2str(&e->address, &address, &port);
41
42         x = send_request(mesh, c, "%d %x %s %d %s %s %s %d %x %d", ADD_EDGE, rand(),
43                                          e->from->name, e->from->dclass, e->to->name, address, port, e->to->dclass,
44                                          e->options, e->weight);
45         free(address);
46         free(port);
47
48         return x;
49 }
50
51 bool add_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
52         edge_t *e;
53         node_t *from, *to;
54         char from_name[MAX_STRING_SIZE];
55         int from_dclass;
56         char to_name[MAX_STRING_SIZE];
57         char to_address[MAX_STRING_SIZE];
58         char to_port[MAX_STRING_SIZE];
59         int to_dclass;
60         sockaddr_t address;
61         uint32_t options;
62         int weight;
63
64         if(sscanf(request, "%*d %*x "MAX_STRING" %d "MAX_STRING" "MAX_STRING" "MAX_STRING" %d %x %d",
65                           from_name, &from_dclass, to_name, to_address, to_port, &to_dclass, &options, &weight) != 8) {
66                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
67                            c->hostname);
68                 return false;
69         }
70
71         /* Check if names are valid */
72
73         if(!check_id(from_name) || !check_id(to_name)) {
74                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
75                            c->hostname, "invalid name");
76                 return false;
77         }
78
79         if(seen_request(mesh, request))
80                 return true;
81
82         /* Lookup nodes */
83
84         from = lookup_node(mesh, from_name);
85         to = lookup_node(mesh, to_name);
86
87         if(!from) {
88                 from = new_node();
89                 from->name = xstrdup(from_name);
90                 node_add(mesh, from);
91         }
92
93         from->dclass = from_dclass;
94
95         if(!to) {
96                 to = new_node();
97                 to->name = xstrdup(to_name);
98                 node_add(mesh, to);
99         }
100
101         to->dclass = to_dclass;
102
103         /* Convert addresses */
104
105         address = str2sockaddr(to_address, to_port);
106
107         /* Check if edge already exists */
108
109         e = lookup_edge(from, to);
110
111         if(e) {
112                 if(e->weight != weight || e->options != options || sockaddrcmp(&e->address, &address)) {
113                         if(from == mesh->self) {
114                                 logger(mesh, MESHLINK_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
115                                                    "ADD_EDGE", c->name, c->hostname);
116                                 send_add_edge(mesh, c, e);
117                                 return true;
118                         } else {
119                                 logger(mesh, MESHLINK_WARNING, "Got %s from %s (%s) which does not match existing entry",
120                                                    "ADD_EDGE", c->name, c->hostname);
121                                 edge_del(mesh, e);
122                                 graph(mesh);
123                         }
124                 } else
125                         return true;
126         } else if(from == mesh->self) {
127                 logger(mesh, MESHLINK_WARNING, "Got %s from %s (%s) for ourself which does not exist",
128                                    "ADD_EDGE", c->name, c->hostname);
129                 mesh->contradicting_add_edge++;
130                 e = new_edge();
131                 e->from = from;
132                 e->to = to;
133                 send_del_edge(mesh, c, e);
134                 free_edge(e);
135                 return true;
136         }
137
138         e = new_edge();
139         e->from = from;
140         e->to = to;
141         e->address = address;
142         e->options = options;
143         e->weight = weight;
144         edge_add(mesh, e);
145
146         /* Tell the rest about the new edge */
147
148         forward_request(mesh, c, request);
149
150         /* Run MST before or after we tell the rest? */
151
152         graph(mesh);
153
154         return true;
155 }
156
157 bool send_del_edge(meshlink_handle_t *mesh, connection_t *c, const edge_t *e) {
158         return send_request(mesh, c, "%d %x %s %s", DEL_EDGE, rand(),
159                                                 e->from->name, e->to->name);
160 }
161
162 bool del_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
163         edge_t *e;
164         char from_name[MAX_STRING_SIZE];
165         char to_name[MAX_STRING_SIZE];
166         node_t *from, *to;
167
168         if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
169                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
170                            c->hostname);
171                 return false;
172         }
173
174         /* Check if names are valid */
175
176         if(!check_id(from_name) || !check_id(to_name)) {
177                 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
178                            c->hostname, "invalid name");
179                 return false;
180         }
181
182         if(seen_request(mesh, request))
183                 return true;
184
185         /* Lookup nodes */
186
187         from = lookup_node(mesh, from_name);
188         to = lookup_node(mesh, to_name);
189
190         if(!from) {
191                 logger(mesh, MESHLINK_ERROR, "Got %s from %s (%s) which does not appear in the edge tree",
192                                    "DEL_EDGE", c->name, c->hostname);
193                 return true;
194         }
195
196         if(!to) {
197                 logger(mesh, MESHLINK_ERROR, "Got %s from %s (%s) which does not appear in the edge tree",
198                                    "DEL_EDGE", c->name, c->hostname);
199                 return true;
200         }
201
202         /* Check if edge exists */
203
204         e = lookup_edge(from, to);
205
206         if(!e) {
207                 logger(mesh, MESHLINK_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
208                                    "DEL_EDGE", c->name, c->hostname);
209                 return true;
210         }
211
212         if(e->from == mesh->self) {
213                 logger(mesh, MESHLINK_WARNING, "Got %s from %s (%s) for ourself",
214                                    "DEL_EDGE", c->name, c->hostname);
215                 mesh->contradicting_del_edge++;
216                 send_add_edge(mesh, c, e);    /* Send back a correction */
217                 return true;
218         }
219
220         /* Tell the rest about the deleted edge */
221
222         forward_request(mesh, c, request);
223
224         /* Delete the edge */
225
226         edge_del(mesh, e);
227
228         /* Run MST before or after we tell the rest? */
229
230         graph(mesh);
231
232         /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
233
234         if(!to->status.reachable) {
235                 e = lookup_edge(to, mesh->self);
236                 if(e) {
237                         send_del_edge(mesh, mesh->everyone, e);
238                         edge_del(mesh, e);
239                 }
240         }
241
242         return true;
243 }