Remove config.{status,cache} before running configure
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2002 Guus Sliepen <guus@sliepen.warande.net>,
4                   2001-2002 Ivo Timmermans <itimmermans@bigfoot.com>
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: node.c,v 1.2.2.1 2002/04/14 09:31:52 zarq Exp $
21 */
22
23 #include "config.h"
24
25 #include <string.h>
26
27 #include <avl_tree.h>
28 #include "node.h"
29 #include "netutl.h"
30 #include "net.h"
31 #include <utils.h>
32 #include <xalloc.h>
33
34 #include "system.h"
35
36 avl_tree_t *node_tree;          /* Known nodes, sorted by name */
37 avl_tree_t *node_udp_tree;      /* Known nodes, sorted by address and port */
38
39 node_t *myself;
40
41 int node_compare(node_t *a, node_t *b)
42 {
43   return strcmp(a->name, b->name);
44 }
45
46 int node_udp_compare(node_t *a, node_t *b)
47 {
48   int result;
49 cp
50   result = sockaddrcmp(&a->address, &b->address);
51
52   if(result)
53     return result;
54
55   return (a->name && b->name)?strcmp(a->name, b->name):0;
56 }
57
58 void init_nodes(void)
59 {
60 cp
61   node_tree = avl_alloc_tree((avl_compare_t)node_compare, NULL);
62   node_udp_tree = avl_alloc_tree((avl_compare_t)node_udp_compare, NULL);
63 cp
64 }
65
66 void exit_nodes(void)
67 {
68 cp
69   avl_delete_tree(node_tree);
70   avl_delete_tree(node_udp_tree);
71 cp
72 }
73
74 node_t *new_node(void)
75 {
76   node_t *n = (node_t *)xmalloc_and_zero(sizeof(*n));
77 cp
78   n->subnet_tree = new_subnet_tree();
79   n->edge_tree = new_edge_tree();
80   n->queue = list_alloc((list_action_t)free);
81 cp
82   return n;
83 }
84
85 void free_node(node_t *n)
86 {
87 cp
88   if(n->queue)
89     list_delete_list(n->queue);
90   if(n->name)
91     free(n->name);
92   if(n->hostname)
93     free(n->hostname);
94   if(n->key)
95     free(n->key);
96   if(n->subnet_tree)
97     free_subnet_tree(n->subnet_tree);
98   if(n->edge_tree)
99     free_edge_tree(n->edge_tree);
100   free(n);
101 cp
102 }
103
104 void node_add(node_t *n)
105 {
106 cp
107   avl_insert(node_tree, n);
108   avl_insert(node_udp_tree, n);
109 cp
110 }
111
112 void node_del(node_t *n)
113 {
114   avl_node_t *node, *next;
115   edge_t *e;
116   subnet_t *s;
117 cp
118   for(node = n->subnet_tree->head; node; node = next)
119     {
120       next = node->next;
121       s = (subnet_t *)node->data;
122       subnet_del(n, s);
123     }
124
125   for(node = n->subnet_tree->head; node; node = next)
126     {
127       next = node->next;
128       e = (edge_t *)node->data;
129       edge_del(e);
130     }
131 cp
132   avl_delete(node_tree, n);
133   avl_delete(node_udp_tree, n);
134 cp
135 }
136
137 node_t *lookup_node(char *name)
138 {
139   node_t n;
140 cp
141   n.name = name;
142   return avl_search(node_tree, &n);
143 }
144
145 node_t *lookup_node_udp(sockaddr_t *sa)
146 {
147   node_t n;
148 cp
149   n.address = *sa;
150   n.name = NULL;
151
152   return avl_search(node_udp_tree, &n);
153 }
154
155 void dump_nodes(void)
156 {
157   avl_node_t *node;
158   node_t *n;
159 cp
160   syslog(LOG_DEBUG, _("Nodes:"));
161
162   for(node = node_tree->head; node; node = node->next)
163     {
164       n = (node_t *)node->data;
165       syslog(LOG_DEBUG, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s via %s"),
166              n->name, n->hostname, n->cipher?n->cipher->nid:0, n->digest?n->digest->type:0, n->maclength, n->compression, n->options,
167              n->status, n->nexthop?n->nexthop->name:"-", n->via?n->via->name:"-");
168     }
169     
170   syslog(LOG_DEBUG, _("End of nodes."));
171 cp
172 }