2 protocol_edge.c -- handle the meta-protocol, edges
3 Copyright (C) 1999-2005 Ivo Timmermans,
4 2000-2009 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.
24 #include "splay_tree.h"
26 #include "connection.h"
38 bool send_add_edge(connection_t *c, const edge_t *e) {
42 sockaddr2str(&e->address, &address, &port);
44 x = send_request(c, "%d %x %s %s %s %s %x %d", ADD_EDGE, rand(),
45 e->from->name, e->to->name, address, port,
46 e->options, e->weight);
53 bool add_edge_h(connection_t *c, char *request) {
56 char from_name[MAX_STRING_SIZE];
57 char to_name[MAX_STRING_SIZE];
58 char to_address[MAX_STRING_SIZE];
59 char to_port[MAX_STRING_SIZE];
64 if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %x %d",
65 from_name, to_name, to_address, to_port, &options, &weight) != 6) {
66 logger(LOG_ERR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
71 /* Check if names are valid */
73 if(!check_id(from_name) || !check_id(to_name)) {
74 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
75 c->hostname, "invalid name");
79 if(seen_request(request))
84 from = lookup_node(from_name);
85 to = lookup_node(to_name);
88 from != myself && from != c->node &&
89 to != myself && to != c->node) {
90 /* ignore indirect edge registrations for tunnelserver */
91 ifdebug(PROTOCOL) logger(LOG_WARNING,
92 "Ignoring indirect %s from %s (%s)",
93 "ADD_EDGE", c->name, c->hostname);
99 from->name = xstrdup(from_name);
105 to->name = xstrdup(to_name);
110 /* Convert addresses */
112 address = str2sockaddr(to_address, to_port);
114 /* Check if edge already exists */
116 e = lookup_edge(from, to);
119 if(e->weight != weight || e->options != options || sockaddrcmp(&e->address, &address)) {
121 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
122 "ADD_EDGE", c->name, c->hostname);
126 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) which does not match existing entry",
127 "ADD_EDGE", c->name, c->hostname);
133 } else if(from == myself) {
134 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself which does not exist",
135 "ADD_EDGE", c->name, c->hostname);
147 e->address = address;
148 e->options = options;
152 /* Tell the rest about the new edge */
155 forward_request(c, request);
157 /* Run MST before or after we tell the rest? */
164 bool send_del_edge(connection_t *c, const edge_t *e) {
165 return send_request(c, "%d %x %s %s", DEL_EDGE, rand(),
166 e->from->name, e->to->name);
169 bool del_edge_h(connection_t *c, char *request) {
171 char from_name[MAX_STRING_SIZE];
172 char to_name[MAX_STRING_SIZE];
175 if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
176 logger(LOG_ERR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
181 /* Check if names are valid */
183 if(!check_id(from_name) || !check_id(to_name)) {
184 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
185 c->hostname, "invalid name");
189 if(seen_request(request))
194 from = lookup_node(from_name);
195 to = lookup_node(to_name);
198 from != myself && from != c->node &&
199 to != myself && to != c->node) {
200 /* ignore indirect edge registrations for tunnelserver */
201 ifdebug(PROTOCOL) logger(LOG_WARNING,
202 "Ignoring indirect %s from %s (%s)",
203 "DEL_EDGE", c->name, c->hostname);
208 ifdebug(PROTOCOL) logger(LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
209 "DEL_EDGE", c->name, c->hostname);
214 ifdebug(PROTOCOL) logger(LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
215 "DEL_EDGE", c->name, c->hostname);
219 /* Check if edge exists */
221 e = lookup_edge(from, to);
224 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
225 "DEL_EDGE", c->name, c->hostname);
229 if(e->from == myself) {
230 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself",
231 "DEL_EDGE", c->name, c->hostname);
232 send_add_edge(c, e); /* Send back a correction */
236 /* Tell the rest about the deleted edge */
239 forward_request(c, request);
241 /* Delete the edge */
245 /* Run MST before or after we tell the rest? */
249 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
251 if(!to->status.reachable) {
252 e = lookup_edge(to, myself);
255 send_del_edge(broadcast, e);