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