2 protocol_edge.c -- handle the meta-protocol, edges
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2012 Guus Sliepen <guus@tinc-vpn.org>
5 2009 Michael Tokarev <mjt@corpit.ru>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include "connection.h"
37 bool send_add_edge(connection_t *c, const edge_t *e) {
41 sockaddr2str(&e->address, &address, &port);
43 if(e->local_address.sa.sa_family) {
44 char *local_address, *local_port;
45 sockaddr2str(&e->local_address, &local_address, &local_port);
47 x = send_request(c, "%d %x %s %s %s %s %x %d %s %s", ADD_EDGE, prng(UINT32_MAX),
48 e->from->name, e->to->name, address, port,
49 e->options, e->weight, local_address, local_port);
53 x = send_request(c, "%d %x %s %s %s %s %x %d", ADD_EDGE, prng(UINT32_MAX),
54 e->from->name, e->to->name, address, port,
55 e->options, e->weight);
64 bool add_edge_h(connection_t *c, const char *request) {
67 char from_name[MAX_STRING_SIZE];
68 char to_name[MAX_STRING_SIZE];
69 char to_address[MAX_STRING_SIZE];
70 char to_port[MAX_STRING_SIZE];
71 char address_local[MAX_STRING_SIZE];
72 char port_local[MAX_STRING_SIZE];
73 sockaddr_t address, local_address = {0};
77 int parameter_count = sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %x %d "MAX_STRING" "MAX_STRING,
78 from_name, to_name, to_address, to_port, &options, &weight, address_local, port_local);
80 if(parameter_count != 6 && parameter_count != 8) {
81 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
86 /* Check if names are valid */
88 if(!check_id(from_name) || !check_id(to_name) || !strcmp(from_name, to_name)) {
89 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
90 c->hostname, "invalid name");
94 if(seen_request(request)) {
100 from = lookup_node(from_name);
101 to = lookup_node(to_name);
104 from != myself && from != c->node &&
105 to != myself && to != c->node) {
106 /* ignore indirect edge registrations for tunnelserver */
107 logger(DEBUG_PROTOCOL, LOG_WARNING,
108 "Ignoring indirect %s from %s (%s)",
109 "ADD_EDGE", c->name, c->hostname);
114 from = new_node(from_name);
119 to = new_node(to_name);
124 /* Convert addresses */
126 address = str2sockaddr(to_address, to_port);
128 if(parameter_count >= 8) {
129 local_address = str2sockaddr(address_local, port_local);
132 /* Check if edge already exists */
134 e = lookup_edge(from, to);
137 bool new_address = sockaddrcmp(&e->address, &address);
138 // local_address.sa.sa_family will be 0 if we got it from older tinc versions
139 // local_address.sa.sa_family will be 255 (AF_UNKNOWN) if we got it from newer versions
140 // but for edge which does not have local_address
141 bool new_local_address = local_address.sa.sa_family && local_address.sa.sa_family != AF_UNKNOWN &&
142 sockaddrcmp(&e->local_address, &local_address);
144 if(e->weight == weight && e->options == options && !new_address && !new_local_address) {
145 sockaddrfree(&address);
146 sockaddrfree(&local_address);
151 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
152 "ADD_EDGE", c->name, c->hostname);
154 sockaddrfree(&address);
155 sockaddrfree(&local_address);
159 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not match existing entry",
160 "ADD_EDGE", c->name, c->hostname);
162 e->options = options;
165 sockaddrfree(&e->address);
166 e->address = address;
168 sockaddrfree(&address);
171 if(new_local_address) {
172 sockaddrfree(&e->local_address);
173 e->local_address = local_address;
175 sockaddrfree(&local_address);
178 if(e->weight != weight) {
179 splay_node_t *node = splay_unlink(&edge_weight_tree, e);
181 splay_insert_node(&edge_weight_tree, node);
183 } else if(from == myself) {
184 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not exist",
185 "ADD_EDGE", c->name, c->hostname);
186 contradicting_add_edge++;
192 sockaddrfree(&address);
193 sockaddrfree(&local_address);
199 e->address = address;
200 e->local_address = local_address;
201 e->options = options;
206 /* Tell the rest about the new edge */
209 forward_request(c, request);
212 /* Run MST before or after we tell the rest? */
219 bool send_del_edge(connection_t *c, const edge_t *e) {
220 return send_request(c, "%d %x %s %s", DEL_EDGE, prng(UINT32_MAX),
221 e->from->name, e->to->name);
224 bool del_edge_h(connection_t *c, const char *request) {
226 char from_name[MAX_STRING_SIZE];
227 char to_name[MAX_STRING_SIZE];
230 if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
231 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
236 /* Check if names are valid */
238 if(!check_id(from_name) || !check_id(to_name) || !strcmp(from_name, to_name)) {
239 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
240 c->hostname, "invalid name");
244 if(seen_request(request)) {
250 from = lookup_node(from_name);
251 to = lookup_node(to_name);
254 from != myself && from != c->node &&
255 to != myself && to != c->node) {
256 /* ignore indirect edge registrations for tunnelserver */
257 logger(DEBUG_PROTOCOL, LOG_WARNING,
258 "Ignoring indirect %s from %s (%s)",
259 "DEL_EDGE", c->name, c->hostname);
264 logger(DEBUG_PROTOCOL, LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
265 "DEL_EDGE", c->name, c->hostname);
270 logger(DEBUG_PROTOCOL, LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
271 "DEL_EDGE", c->name, c->hostname);
275 /* Check if edge exists */
277 e = lookup_edge(from, to);
280 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
281 "DEL_EDGE", c->name, c->hostname);
285 if(e->from == myself) {
286 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself",
287 "DEL_EDGE", c->name, c->hostname);
288 contradicting_del_edge++;
289 send_add_edge(c, e); /* Send back a correction */
293 /* Tell the rest about the deleted edge */
296 forward_request(c, request);
299 /* Delete the edge */
303 /* Run MST before or after we tell the rest? */
307 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
309 if(!to->status.reachable) {
310 e = lookup_edge(to, myself);
314 send_del_edge(everyone, e);