Fix declaration of update_node_address().
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2003 Guus Sliepen <guus@sliepen.eu.org>,
4                   2001-2003 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: node.c,v 1.1.2.31 2003/12/22 11:04:16 guus Exp $
21 */
22
23 #include "system.h"
24
25 #include "avl_tree.h"
26 #include "logger.h"
27 #include "net.h"
28 #include "netutl.h"
29 #include "node.h"
30 #include "utils.h"
31 #include "xalloc.h"
32
33 avl_tree_t *node_tree;                  /* Known nodes, sorted by name */
34 avl_tree_t *node_udp_tree;              /* Known nodes, sorted by address and port */
35
36 node_t *myself;
37
38 static int node_compare(const node_t *a, const node_t *b)
39 {
40         return strcmp(a->name, b->name);
41 }
42
43 static int node_udp_compare(const node_t *a, const node_t *b)
44 {
45         int result;
46
47         cp();
48
49         result = sockaddrcmp(&a->address, &b->address);
50
51         if(result)
52                 return result;
53
54         return (a->name && b->name) ? strcmp(a->name, b->name) : 0;
55 }
56
57 void init_nodes(void)
58 {
59         cp();
60
61         node_tree = avl_alloc_tree((avl_compare_t) node_compare, (avl_action_t) free_node);
62         node_udp_tree = avl_alloc_tree((avl_compare_t) node_udp_compare, NULL);
63 }
64
65 void exit_nodes(void)
66 {
67         cp();
68
69         avl_delete_tree(node_udp_tree);
70         avl_delete_tree(node_tree);
71 }
72
73 node_t *new_node(void)
74 {
75         node_t *n = xmalloc_and_zero(sizeof(*n));
76
77         cp();
78
79         n->subnet_tree = new_subnet_tree();
80         n->edge_tree = new_edge_tree();
81         n->queue = list_alloc((list_action_t) free);
82         EVP_CIPHER_CTX_init(&n->packet_ctx);
83         n->mtu = MTU;
84         n->maxmtu = MTU;
85
86         return n;
87 }
88
89 void free_node(node_t *n)
90 {
91         cp();
92
93         if(n->queue)
94                 list_delete_list(n->queue);
95
96         if(n->name)
97                 free(n->name);
98
99         if(n->hostname)
100                 free(n->hostname);
101
102         if(n->key)
103                 free(n->key);
104
105         if(n->subnet_tree)
106                 free_subnet_tree(n->subnet_tree);
107
108         if(n->edge_tree)
109                 free_edge_tree(n->edge_tree);
110
111         sockaddrfree(&n->address);
112
113         EVP_CIPHER_CTX_cleanup(&n->packet_ctx);
114
115         if(n->mtuevent)
116                 event_del(n->mtuevent);
117         
118         free(n);
119 }
120
121 void node_add(node_t *n)
122 {
123         cp();
124
125         avl_insert(node_tree, n);
126         avl_insert(node_udp_tree, n);
127 }
128
129 void node_del(node_t *n)
130 {
131         avl_node_t *node, *next;
132         edge_t *e;
133         subnet_t *s;
134
135         cp();
136
137         for(node = n->subnet_tree->head; node; node = next) {
138                 next = node->next;
139                 s = node->data;
140                 subnet_del(n, s);
141         }
142
143         for(node = n->edge_tree->head; node; node = next) {
144                 next = node->next;
145                 e = node->data;
146                 edge_del(e);
147         }
148
149         avl_delete(node_tree, n);
150         avl_delete(node_udp_tree, n);
151 }
152
153 void update_node_address(node_t *n, const sockaddr_t *address) {
154         avl_node_t *node;
155
156         node = avl_unlink(node_udp_tree, n);
157         sockaddrfree(&n->address);
158         sockaddrcpy(&n->address, address);
159
160         if(n->hostname)
161                 free(n->hostname);
162
163         n->hostname = sockaddr2hostname(&n->address);
164         avl_insert_node(node_udp_tree, node);
165
166         if(n->options & OPTION_PMTU_DISCOVERY) {
167                 n->mtuprobes = 0;
168                 n->minmtu = 0;
169                 n->maxmtu = MTU;
170                 if(n->status.validkey)
171                         send_mtu_probe(n);
172         }
173 }
174
175 node_t *lookup_node(char *name)
176 {
177         node_t n = {0};
178
179         cp();
180         
181         n.name = name;
182
183         return avl_search(node_tree, &n);
184 }
185
186 node_t *lookup_node_udp(const sockaddr_t *sa)
187 {
188         node_t n = {0};
189
190         cp();
191
192         n.address = *sa;
193         n.name = NULL;
194
195         return avl_search(node_udp_tree, &n);
196 }
197
198 void dump_nodes(void)
199 {
200         avl_node_t *node;
201         node_t *n;
202
203         cp();
204
205         logger(LOG_DEBUG, _("Nodes:"));
206
207         for(node = node_tree->head; node; node = node->next) {
208                 n = node->data;
209                 logger(LOG_DEBUG, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s via %s pmtu %d (min %d max %d)"),
210                            n->name, n->hostname, n->cipher ? n->cipher->nid : 0,
211                            n->digest ? n->digest->type : 0, n->maclength, n->compression,
212                            n->options, *(uint32_t *)&n->status, n->nexthop ? n->nexthop->name : "-",
213                            n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu);
214         }
215
216         logger(LOG_DEBUG, _("End of nodes."));
217 }