3ac0b1bae3eddc47e482e4c35ad01806c50b9a81
[oweals/tinc.git] / src / edge.c
1 /*
2     edge.c -- edge tree management
3     Copyright (C) 2000-2002 Guus Sliepen <guus@sliepen.eu.org>,
4                   2000-2002 Ivo Timmermans <ivo@o2w.nl>
5
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.
10
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.
15
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.
19
20     $Id: edge.c,v 1.1.2.14 2002/09/06 12:19:16 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <stdio.h>
26 #include <syslog.h>
27 #include <string.h>
28
29 #include <avl_tree.h>
30 #include <list.h>
31
32 #include "net.h"        /* Don't ask. */
33 #include "netutl.h"
34 #include "config.h"
35 #include "conf.h"
36 #include <utils.h>
37 #include "subnet.h"
38 #include "edge.h"
39 #include "node.h"
40
41 #include "xalloc.h"
42 #include "system.h"
43
44 avl_tree_t *edge_weight_tree; /* Tree with all edges, sorted on weight */
45
46 int edge_compare(edge_t *a, edge_t *b)
47 {
48   return strcmp(a->to->name, b->to->name);
49 }
50
51 int edge_weight_compare(edge_t *a, edge_t *b)
52 {
53   int result;
54
55   result = a->weight - b->weight;
56
57   if(result)
58     return result;
59
60   result = strcmp(a->from->name, b->from->name);
61
62   if(result)
63     return result;
64
65   return strcmp(a->to->name, b->to->name);
66 }
67
68 void init_edges(void)
69 {
70 cp
71   edge_weight_tree = avl_alloc_tree((avl_compare_t)edge_weight_compare, NULL);
72 cp
73 }
74
75 avl_tree_t *new_edge_tree(void)
76 {
77 cp
78   return avl_alloc_tree((avl_compare_t)edge_compare, NULL);
79 cp
80 }
81
82 void free_edge_tree(avl_tree_t *edge_tree)
83 {
84 cp
85   avl_delete_tree(edge_tree);
86 cp
87 }
88
89 void exit_edges(void)
90 {
91 cp
92   avl_delete_tree(edge_weight_tree);
93 cp
94 }
95
96 /* Creation and deletion of connection elements */
97
98 edge_t *new_edge(void)
99 {
100   edge_t *e;
101 cp
102   e = (edge_t *)xmalloc_and_zero(sizeof(*e));
103 cp
104   return e;
105 }
106
107 void free_edge(edge_t *e)
108 {
109 cp
110   free(e);
111 cp
112 }
113
114 void edge_add(edge_t *e)
115 {
116 cp
117   avl_insert(edge_weight_tree, e);
118   avl_insert(e->from->edge_tree, e);
119 cp
120   e->reverse = lookup_edge(e->to, e->from);
121   if(e->reverse)
122     e->reverse->reverse = e;
123 cp
124 }
125
126 void edge_del(edge_t *e)
127 {
128 cp
129   if(e->reverse)
130     e->reverse->reverse = NULL;
131 cp
132   avl_delete(edge_weight_tree, e);
133   avl_delete(e->from->edge_tree, e);
134 cp
135 }
136
137 edge_t *lookup_edge(node_t *from, node_t *to)
138 {
139   edge_t v;
140 cp
141   v.from = from;
142   v.to = to;
143
144   return avl_search(from->edge_tree, &v);
145 }
146
147 void dump_edges(void)
148 {
149   avl_node_t *node, *node2;
150   node_t *n;
151   edge_t *e;
152   char *address;
153 cp
154   syslog(LOG_DEBUG, _("Edges:"));
155
156   for(node = node_tree->head; node; node = node->next)
157     {
158       n = (node_t *)node->data;
159       for(node2 = n->edge_tree->head; node2; node2 = node2->next)
160         {
161           e = (edge_t *)node2->data;
162           address = sockaddr2hostname(&e->address);
163           syslog(LOG_DEBUG, _(" %s to %s at %s options %lx weight %d"),
164                  e->from->name, e->to->name, address,
165                  e->options, e->weight);
166           free(address);
167         }
168     }
169
170   syslog(LOG_DEBUG, _("End of edges."));
171 cp
172 }