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.
49 #include "connection.h"
61 static bool graph_changed = true;
63 /* Implementation of Kruskal's algorithm.
65 Please note that sorting on weight is already done by add_edge().
68 void mst_kruskal(void) {
69 avl_node_t *node, *next;
77 /* Clear MST status on connections */
79 for(node = connection_tree->head; node; node = node->next) {
81 c->status.mst = false;
84 /* Do we have something to do at all? */
86 if(!edge_weight_tree->head)
89 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Running Kruskal's algorithm:");
91 /* Clear visited status on nodes */
93 for(node = node_tree->head; node; node = node->next) {
95 n->status.visited = false;
101 for(node = edge_weight_tree->head; node; node = node->next) {
103 if(e->from->status.reachable) {
104 e->from->status.visited = true;
111 for(skipped = false, node = edge_weight_tree->head; node; node = next) {
115 if(!e->reverse || e->from->status.visited == e->to->status.visited) {
120 e->from->status.visited = true;
121 e->to->status.visited = true;
124 e->connection->status.mst = true;
126 if(e->reverse->connection)
127 e->reverse->connection->status.mst = true;
131 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, " Adding edge %s - %s weight %d", e->from->name,
132 e->to->name, e->weight);
136 next = edge_weight_tree->head;
141 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Done, counted %d nodes and %d safe edges.", nodes,
145 /* Implementation of a simple breadth-first search algorithm.
149 void sssp_bfs(void) {
150 avl_node_t *node, *next, *to;
154 list_node_t *from, *todonext;
157 char *address, *port;
161 todo_list = list_alloc(NULL);
163 /* Clear visited status on nodes */
165 for(node = node_tree->head; node; node = node->next) {
167 n->status.visited = false;
168 n->status.indirect = true;
171 /* Begin with myself */
173 myself->status.visited = true;
174 myself->status.indirect = false;
175 myself->nexthop = myself;
176 myself->via = myself;
177 list_insert_head(todo_list, myself);
179 /* Loop while todo_list is filled */
181 for(from = todo_list->head; from; from = todonext) { /* "from" is the node from which we start */
184 for(to = n->edge_tree->head; to; to = to->next) { /* "to" is the edge connected to "from" */
194 ----->(n)---e-->(e->to)
198 Where e is an edge, (n) and (e->to) are nodes.
199 n->address is set to the e->address of the edge left of n to n.
200 We are currently examining the edge e right of n from n:
202 - If edge e provides for better reachability of e->to, update
203 e->to and (re)add it to the todo_list to (re)examine the reachability
207 indirect = n->status.indirect || e->options & OPTION_INDIRECT;
209 if(e->to->status.visited
210 && (!e->to->status.indirect || indirect))
213 e->to->status.visited = true;
214 e->to->status.indirect = indirect;
215 e->to->nexthop = (n->nexthop == myself) ? e->to : n->nexthop;
216 e->to->via = indirect ? n->via : e->to;
217 e->to->options = e->options;
219 if(e->to->address.sa.sa_family == AF_UNSPEC && e->address.sa.sa_family != AF_UNKNOWN)
220 update_node_udp(e->to, &e->address);
222 list_insert_tail(todo_list, e->to);
225 todonext = from->next;
226 list_delete_node(todo_list, from);
229 list_free(todo_list);
231 /* Check reachability status. */
233 for(node = node_tree->head; node; node = next) {
237 if(n->status.visited != n->status.reachable) {
238 n->status.reachable = !n->status.reachable;
240 if(n->status.reachable) {
241 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Node %s (%s) became reachable",
242 n->name, n->hostname);
244 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Node %s (%s) became unreachable",
245 n->name, n->hostname);
248 /* TODO: only clear status.validkey if node is unreachable? */
250 n->status.validkey = false;
258 event_del(n->mtuevent);
262 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
263 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
264 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
265 xasprintf(&envp[3], "NODE=%s", n->name);
266 sockaddr2str(&n->address, &address, &port);
267 xasprintf(&envp[4], "REMOTEADDRESS=%s", address);
268 xasprintf(&envp[5], "REMOTEPORT=%s", port);
271 execute_script(n->status.reachable ? "host-up" : "host-down", envp);
274 n->status.reachable ? "hosts/%s-up" : "hosts/%s-down",
276 execute_script(name, envp);
282 for(i = 0; i < 6; i++)
285 subnet_update(n, NULL, n->status.reachable);
287 if(!n->status.reachable)
288 update_node_udp(n, NULL);
289 else if(n->connection)
296 subnet_cache_flush();
299 graph_changed = true;
304 /* Dump nodes and edges to a graphviz file.
306 The file can be converted to an image with
307 dot -Tpng graph_filename -o image_filename.png -Gconcentrate=true
310 void dump_graph(void) {
314 char *filename = NULL, *tmpname = NULL;
317 if(!graph_changed || !get_config_string(lookup_config(config_tree, "GraphDumpFile"), &filename))
320 graph_changed = false;
322 ifdebug(PROTOCOL) logger(LOG_NOTICE, "Dumping graph");
324 if(filename[0] == '|') {
325 file = popen(filename + 1, "w");
327 xasprintf(&tmpname, "%s.new", filename);
328 file = fopen(tmpname, "w");
332 logger(LOG_ERR, "Unable to open graph dump file %s: %s", filename, strerror(errno));
337 fprintf(file, "digraph {\n");
339 /* dump all nodes first */
340 for(node = node_tree->head; node; node = node->next) {
342 fprintf(file, " %s [label = \"%s\"];\n", n->name, n->name);
345 /* now dump all edges */
346 for(node = edge_weight_tree->head; node; node = node->next) {
348 fprintf(file, " %s -> %s;\n", e->from->name, e->to->name);
351 fprintf(file, "}\n");
353 if(filename[0] == '|') {
360 rename(tmpname, filename);