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.
25 #include "connection.h"
37 bool send_add_edge(connection_t *c, const edge_t *e) {
40 char *local_address, *local_port;
42 sockaddr2str(&e->address, &address, &port);
43 sockaddr2str(&e->local_address, &local_address, &local_port);
45 x = send_request(c, "%d %x %s %s %s %s %x %d %s %s", ADD_EDGE, rand(),
46 e->from->name, e->to->name, address, port,
47 e->options, e->weight, local_address, local_port);
57 bool add_edge_h(connection_t *c, const char *request) {
60 char from_name[MAX_STRING_SIZE];
61 char to_name[MAX_STRING_SIZE];
62 char to_address[MAX_STRING_SIZE];
63 char to_port[MAX_STRING_SIZE];
64 char address_local[MAX_STRING_SIZE] = "unknown";
65 char port_local[MAX_STRING_SIZE] = "unknown";
66 sockaddr_t address, local_address;
70 int parameter_count = sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %x %d "MAX_STRING" "MAX_STRING,
71 from_name, to_name, to_address, to_port, &options, &weight, address_local, port_local);
72 if (parameter_count != 6 && parameter_count != 8) {
73 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
78 /* Check if names are valid */
80 if(!check_id(from_name) || !check_id(to_name)) {
81 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
82 c->hostname, "invalid name");
86 if(seen_request(request))
91 from = lookup_node(from_name);
92 to = lookup_node(to_name);
95 from != myself && from != c->node &&
96 to != myself && to != c->node) {
97 /* ignore indirect edge registrations for tunnelserver */
98 logger(DEBUG_PROTOCOL, LOG_WARNING,
99 "Ignoring indirect %s from %s (%s)",
100 "ADD_EDGE", c->name, c->hostname);
106 from->name = xstrdup(from_name);
112 to->name = xstrdup(to_name);
117 /* Convert addresses */
119 address = str2sockaddr(to_address, to_port);
120 local_address = str2sockaddr(address_local, port_local);
122 /* Check if edge already exists */
124 e = lookup_edge(from, to);
127 if(e->weight != weight || e->options != options || sockaddrcmp(&e->address, &address) || sockaddrcmp(&e->local_address, &local_address)) {
129 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
130 "ADD_EDGE", c->name, c->hostname);
134 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not match existing entry",
135 "ADD_EDGE", c->name, c->hostname);
141 } else if(from == myself) {
142 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not exist",
143 "ADD_EDGE", c->name, c->hostname);
144 contradicting_add_edge++;
156 e->address = address;
157 e->local_address = local_address;
158 e->options = options;
162 /* Tell the rest about the new edge */
165 forward_request(c, request);
167 /* Run MST before or after we tell the rest? */
174 bool send_del_edge(connection_t *c, const edge_t *e) {
175 return send_request(c, "%d %x %s %s", DEL_EDGE, rand(),
176 e->from->name, e->to->name);
179 bool del_edge_h(connection_t *c, const char *request) {
181 char from_name[MAX_STRING_SIZE];
182 char to_name[MAX_STRING_SIZE];
185 if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
186 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
191 /* Check if names are valid */
193 if(!check_id(from_name) || !check_id(to_name)) {
194 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
195 c->hostname, "invalid name");
199 if(seen_request(request))
204 from = lookup_node(from_name);
205 to = lookup_node(to_name);
208 from != myself && from != c->node &&
209 to != myself && to != c->node) {
210 /* ignore indirect edge registrations for tunnelserver */
211 logger(DEBUG_PROTOCOL, LOG_WARNING,
212 "Ignoring indirect %s from %s (%s)",
213 "DEL_EDGE", c->name, c->hostname);
218 logger(DEBUG_PROTOCOL, LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
219 "DEL_EDGE", c->name, c->hostname);
224 logger(DEBUG_PROTOCOL, LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
225 "DEL_EDGE", c->name, c->hostname);
229 /* Check if edge exists */
231 e = lookup_edge(from, to);
234 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
235 "DEL_EDGE", c->name, c->hostname);
239 if(e->from == myself) {
240 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself",
241 "DEL_EDGE", c->name, c->hostname);
242 contradicting_del_edge++;
243 send_add_edge(c, e); /* Send back a correction */
247 /* Tell the rest about the deleted edge */
250 forward_request(c, request);
252 /* Delete the edge */
256 /* Run MST before or after we tell the rest? */
260 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
262 if(!to->status.reachable) {
263 e = lookup_edge(to, myself);
266 send_del_edge(everyone, e);