2 graph.c -- graph algorithms
3 Copyright (C) 2001-2010 Guus Sliepen <guus@tinc-vpn.org>,
4 2001-2005 Ivo Timmermans
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 /* We need to generate two trees from the graph:
23 1. A minimum spanning tree for broadcasts,
24 2. A single-source shortest path tree for unicasts.
26 Actually, the first one alone would suffice but would make unicast packets
27 take longer routes than necessary.
29 For the MST algorithm we can choose from Prim's or Kruskal's. I personally
30 favour Kruskal's, because we make an extra AVL tree of edges sorted on
31 weights (metric). That tree only has to be updated when an edge is added or
32 removed, and during the MST algorithm we just have go linearly through that
33 tree, adding safe edges until #edges = #nodes - 1. The implementation here
34 however is not so fast, because I tried to avoid having to make a forest and
37 For the SSSP algorithm Dijkstra's seems to be a nice choice. Currently a
38 simple breadth-first search is presented here.
40 The SSSP algorithm will also be used to determine whether nodes are directly,
41 indirectly or not reachable from the source. It will also set the correct
42 destination address and port of a node if possible.
47 #include "splay_tree.h"
49 #include "connection.h"
61 /* Implementation of Kruskal's algorithm.
63 Please note that sorting on weight is already done by add_edge().
66 void mst_kruskal(void) {
67 splay_node_t *node, *next;
72 /* Clear MST status on connections */
74 for(node = connection_tree->head; node; node = node->next) {
76 c->status.mst = false;
79 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Running Kruskal's algorithm:");
81 /* Clear visited status on nodes */
83 for(node = node_tree->head; node; node = node->next) {
85 n->status.visited = false;
90 for(node = edge_weight_tree->head; node; node = next) {
94 if(!e->reverse || (e->from->status.visited && e->to->status.visited))
97 e->from->status.visited = true;
98 e->to->status.visited = true;
101 e->connection->status.mst = true;
103 if(e->reverse->connection)
104 e->reverse->connection->status.mst = true;
106 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, " Adding edge %s - %s weight %d", e->from->name,
107 e->to->name, e->weight);
111 /* Implementation of Dijkstra's algorithm.
115 void sssp_dijkstra(void) {
116 splay_node_t *node, *to;
120 list_node_t *lnode, *nnode;
123 todo_list = list_alloc(NULL);
125 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Running Dijkstra's algorithm:");
127 /* Clear visited status on nodes */
129 for(node = node_tree->head; node; node = node->next) {
131 n->status.visited = false;
132 n->status.indirect = true;
136 /* Begin with myself */
138 myself->status.indirect = false;
139 myself->nexthop = myself;
140 myself->via = myself;
141 myself->distance = 0;
142 list_insert_head(todo_list, myself);
144 /* Loop while todo_list is filled */
146 while(todo_list->head) {
150 /* Select node from todo_list with smallest distance */
152 for(lnode = todo_list->head; lnode; lnode = lnode->next) {
154 if(!n || m->status.indirect < n->status.indirect || m->distance < n->distance) {
160 /* Mark this node as visited and remove it from the todo_list */
162 n->status.visited = true;
163 list_unlink_node(todo_list, nnode);
165 /* Update distance of neighbours and add them to the todo_list */
167 for(to = n->edge_tree->head; to; to = to->next) { /* "to" is the edge connected to "from" */
170 if(e->to->status.visited || !e->reverse)
177 ----->(n)---e-->(e->to)
181 Where e is an edge, (n) and (e->to) are nodes.
182 n->address is set to the e->address of the edge left of n to n.
183 We are currently examining the edge e right of n from n:
185 - If e->reverse->address != n->address, then e->to is probably
186 not reachable for the nodes left of n. We do as if the indirectdata
187 flag is set on edge e.
188 - If edge e provides for better reachability of e->to, update e->to.
191 if(e->to->distance < 0)
192 list_insert_tail(todo_list, e->to);
194 indirect = n->status.indirect || e->options & OPTION_INDIRECT || ((n != myself) && sockaddrcmp(&n->address, &e->reverse->address));
196 if(e->to->distance >= 0 && (!e->to->status.indirect || indirect) && e->to->distance <= n->distance + e->weight)
199 e->to->distance = n->distance + e->weight;
200 e->to->status.indirect = indirect;
201 e->to->nexthop = (n->nexthop == myself) ? e->to : n->nexthop;
202 e->to->via = indirect ? n->via : e->to;
203 e->to->options = e->options;
205 if(sockaddrcmp(&e->to->address, &e->address)) {
206 node = splay_unlink(node_udp_tree, e->to);
207 sockaddrfree(&e->to->address);
208 sockaddrcpy(&e->to->address, &e->address);
211 free(e->to->hostname);
213 e->to->hostname = sockaddr2hostname(&e->to->address);
216 splay_insert_node(node_udp_tree, node);
218 if(e->to->options & OPTION_PMTU_DISCOVERY) {
219 e->to->mtuprobes = 0;
222 if(e->to->status.validkey)
223 send_mtu_probe(e->to);
227 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, " Updating edge %s - %s weight %d distance %d", e->from->name,
228 e->to->name, e->weight, e->to->distance);
232 list_free(todo_list);
235 /* Implementation of a simple breadth-first search algorithm.
239 void sssp_bfs(void) {
240 splay_node_t *node, *to;
244 list_node_t *from, *todonext;
247 todo_list = list_alloc(NULL);
249 /* Clear visited status on nodes */
251 for(node = node_tree->head; node; node = node->next) {
253 n->status.visited = false;
254 n->status.indirect = true;
257 /* Begin with myself */
259 myself->status.visited = true;
260 myself->status.indirect = false;
261 myself->nexthop = myself;
262 myself->via = myself;
263 list_insert_head(todo_list, myself);
265 /* Loop while todo_list is filled */
267 for(from = todo_list->head; from; from = todonext) { /* "from" is the node from which we start */
270 for(to = n->edge_tree->head; to; to = to->next) { /* "to" is the edge connected to "from" */
280 ----->(n)---e-->(e->to)
284 Where e is an edge, (n) and (e->to) are nodes.
285 n->address is set to the e->address of the edge left of n to n.
286 We are currently examining the edge e right of n from n:
288 - If e->reverse->address != n->address, then e->to is probably
289 not reachable for the nodes left of n. We do as if the indirectdata
290 flag is set on edge e.
291 - If edge e provides for better reachability of e->to, update
292 e->to and (re)add it to the todo_list to (re)examine the reachability
296 indirect = n->status.indirect || e->options & OPTION_INDIRECT
297 || ((n != myself) && sockaddrcmp(&n->address, &e->reverse->address));
299 if(e->to->status.visited
300 && (!e->to->status.indirect || indirect))
303 e->to->status.visited = true;
304 e->to->status.indirect = indirect;
305 e->to->nexthop = (n->nexthop == myself) ? e->to : n->nexthop;
306 e->to->via = indirect ? n->via : e->to;
307 e->to->options = e->options;
309 if(e->to->address.sa.sa_family == AF_UNSPEC && e->address.sa.sa_family != AF_UNKNOWN)
310 update_node_udp(e->to, &e->address);
312 list_insert_tail(todo_list, e->to);
315 todonext = from->next;
316 list_delete_node(todo_list, from);
319 list_free(todo_list);
322 void check_reachability() {
323 splay_node_t *node, *next;
326 char *address, *port;
330 /* Check reachability status. */
332 for(node = node_tree->head; node; node = next) {
336 if(n->status.visited != n->status.reachable) {
337 n->status.reachable = !n->status.reachable;
339 if(n->status.reachable) {
340 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Node %s (%s) became reachable",
341 n->name, n->hostname);
343 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Node %s (%s) became unreachable",
344 n->name, n->hostname);
347 /* TODO: only clear status.validkey if node is unreachable? */
349 n->status.validkey = false;
356 event_del(&n->mtuevent);
358 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
359 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
360 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
361 xasprintf(&envp[3], "NODE=%s", n->name);
362 sockaddr2str(&n->address, &address, &port);
363 xasprintf(&envp[4], "REMOTEADDRESS=%s", address);
364 xasprintf(&envp[5], "REMOTEPORT=%s", port);
367 execute_script(n->status.reachable ? "host-up" : "host-down", envp);
370 n->status.reachable ? "hosts/%s-up" : "hosts/%s-down",
372 execute_script(name, envp);
378 for(i = 0; i < 6; i++)
381 subnet_update(n, NULL, n->status.reachable);
383 if(!n->status.reachable)
384 update_node_udp(n, NULL);
385 else if(n->connection)
392 subnet_cache_flush();
394 check_reachability();