2 graph.c -- graph algorithms
3 Copyright (C) 2001-2002 Guus Sliepen <guus@sliepen.eu.org>,
4 2001-2002 Ivo Timmermans <ivo@o2w.nl>
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
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: graph.c,v 1.1.2.16 2002/09/06 09:48:39 guus Exp $
23 /* We need to generate two trees from the graph:
25 1. A minimum spanning tree for broadcasts,
26 2. A single-source shortest path tree for unicasts.
28 Actually, the first one alone would suffice but would make unicast packets
29 take longer routes than necessary.
31 For the MST algorithm we can choose from Prim's or Kruskal's. I personally
32 favour Kruskal's, because we make an extra AVL tree of edges sorted on
33 weights (metric). That tree only has to be updated when an edge is added or
34 removed, and during the MST algorithm we just have go linearly through that
35 tree, adding safe edges until #edges = #nodes - 1. The implementation here
36 however is not so fast, because I tried to avoid having to make a forest and
39 For the SSSP algorithm Dijkstra's seems to be a nice choice. Currently a
40 simple breadth-first search is presented here.
42 The SSSP algorithm will also be used to determine whether nodes are directly,
43 indirectly or not reachable from the source. It will also set the correct
44 destination address and port of a node if possible.
53 #ifdef HAVE_SYS_PARAM_H
54 #include <sys/param.h>
56 #include <netinet/in.h>
64 #include "connection.h"
70 /* Implementation of Kruskal's algorithm.
72 Please note that sorting on weight is already done by add_edge().
75 void mst_kruskal(void)
77 avl_node_t *node, *next;
85 /* Clear MST status on connections */
87 for(node = connection_tree->head; node; node = node->next)
89 c = (connection_t *)node->data;
93 /* Do we have something to do at all? */
95 if(!edge_weight_tree->head)
98 if(debug_lvl >= DEBUG_SCARY_THINGS)
99 syslog(LOG_DEBUG, "Running Kruskal's algorithm:");
101 /* Clear visited status on nodes */
103 for(node = node_tree->head; node; node = node->next)
105 n = (node_t *)node->data;
106 n->status.visited = 0;
112 ((edge_t *)edge_weight_tree->head->data)->from->status.visited = 1;
116 for(skipped = 0, node = edge_weight_tree->head; node; node = next)
119 e = (edge_t *)node->data;
121 if(!e->reverse || e->from->status.visited == e->to->status.visited)
127 e->from->status.visited = 1;
128 e->to->status.visited = 1;
130 e->connection->status.mst = 1;
134 if(debug_lvl >= DEBUG_SCARY_THINGS)
135 syslog(LOG_DEBUG, " Adding edge %s - %s weight %d", e->from->name, e->to->name, e->weight);
140 next = edge_weight_tree->head;
145 if(debug_lvl >= DEBUG_SCARY_THINGS)
146 syslog(LOG_DEBUG, "Done, counted %d nodes and %d safe edges.", nodes, safe_edges);
149 /* Implementation of a simple breadth-first search algorithm.
155 avl_node_t *node, *from, *next, *to;
158 avl_tree_t *todo_tree;
161 char *address, *port;
165 todo_tree = avl_alloc_tree(NULL, NULL);
167 /* Clear visited status on nodes */
169 for(node = node_tree->head; node; node = node->next)
171 n = (node_t *)node->data;
172 n->status.visited = 0;
173 n->status.indirect = 1;
176 /* Begin with myself */
178 myself->status.visited = 1;
179 myself->status.indirect = 0;
180 myself->nexthop = myself;
181 myself->via = myself;
182 node = avl_alloc_node();
184 avl_insert_top(todo_tree, node);
186 /* Loop while todo_tree is filled */
188 while(todo_tree->head)
190 for(from = todo_tree->head; from; from = next) /* "from" is the node from which we start */
193 n = (node_t *)from->data;
195 for(to = n->edge_tree->head; to; to = to->next) /* "to" is the edge connected to "from" */
197 e = (edge_t *)to->data;
206 ------(n)-----(e->to)
210 n->address is set to the e->address of the edge left of n to n.
211 We are currently examining the edge e right of n from n:
213 - If e->reverse->address != n->address, then e->to is probably
214 not reachable for the nodes left of n. We do as if the indirectdata
215 flag is set on edge e.
216 - If edge e provides for better reachability of e->to, update
217 e->to and (re)add it to the todo_tree to (re)examine the reachability
221 indirect = n->status.indirect || e->options & OPTION_INDIRECT || ((n != myself) && sockaddrcmp(&n->address, &e->reverse->address));
223 if(e->to->status.visited && (!e->to->status.indirect || indirect))
226 e->to->status.visited = 1;
227 e->to->status.indirect = indirect;
228 e->to->nexthop = (n->nexthop == myself) ? e->to : n->nexthop;
229 e->to->via = indirect ? n->via : e->to;
230 e->to->options = e->options;
231 if(sockaddrcmp(&e->to->address, &e->address))
233 node = avl_unlink(node_udp_tree, e->to);
234 e->to->address = e->address;
236 free(e->to->hostname);
237 e->to->hostname = sockaddr2hostname(&e->to->address);
238 avl_insert_node(node_udp_tree, node);
240 node = avl_alloc_node();
242 avl_insert_before(todo_tree, from, node);
245 avl_delete_node(todo_tree, from);
249 avl_free_tree(todo_tree);
251 /* Check reachability status. */
253 for(node = node_tree->head; node; node = next)
256 n = (node_t *)node->data;
258 if(n->status.visited != n->status.reachable)
260 n->status.reachable = !n->status.reachable;
261 if(debug_lvl >= DEBUG_TRAFFIC)
262 if(n->status.reachable)
263 syslog(LOG_DEBUG, _("Node %s (%s) became reachable"), n->name, n->hostname);
265 syslog(LOG_DEBUG, _("Node %s (%s) became unreachable"), n->name, n->hostname);
267 n->status.validkey = 0;
268 n->status.waitingforkey = 0;
270 asprintf(&envp[0], "NETNAME=%s", netname?netname:"");
271 asprintf(&envp[1], "DEVICE=%s", device?device:"");
272 asprintf(&envp[2], "INTERFACE=%s", interface?interface:"");
273 asprintf(&envp[3], "NODE=%s", n->name);
274 sockaddr2str(&n->address, &address, &port);
275 asprintf(&envp[4], "REMOTEADDRESS=%s", address);
276 asprintf(&envp[5], "REMOTEPORT=%s", port);
279 asprintf(&name, n->status.reachable?"hosts/%s-up":"hosts/%s-down", n->name);
280 execute_script(name, envp);
285 for(i = 0; i < 7; i++)