Add a better autoconf check for libevent.
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2009 Guus Sliepen <guus@tinc-vpn.org>,
4                   2001-2005 Ivo Timmermans
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$
21 */
22
23 #include "system.h"
24
25 #include "splay_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 splay_tree_t *node_tree;                        /* Known nodes, sorted by name */
34 splay_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         return strcmp(a->name, b->name);
40 }
41
42 static int node_udp_compare(const node_t *a, const node_t *b) {
43         int result;
44
45         cp();
46
47         result = sockaddrcmp(&a->address, &b->address);
48
49         if(result)
50                 return result;
51
52         return (a->name && b->name) ? strcmp(a->name, b->name) : 0;
53 }
54
55 void init_nodes(void) {
56         cp();
57
58         node_tree = splay_alloc_tree((splay_compare_t) node_compare, (splay_action_t) free_node);
59         node_udp_tree = splay_alloc_tree((splay_compare_t) node_udp_compare, NULL);
60 }
61
62 void exit_nodes(void) {
63         cp();
64
65         splay_delete_tree(node_udp_tree);
66         splay_delete_tree(node_tree);
67 }
68
69 node_t *new_node(void) {
70         node_t *n = xmalloc_and_zero(sizeof *n);
71
72         cp();
73
74         n->subnet_tree = new_subnet_tree();
75         n->edge_tree = new_edge_tree();
76         n->mtu = MTU;
77         n->maxmtu = MTU;
78
79         return n;
80 }
81
82 void free_node(node_t *n) {
83         cp();
84
85         if(n->subnet_tree)
86                 free_subnet_tree(n->subnet_tree);
87
88         if(n->edge_tree)
89                 free_edge_tree(n->edge_tree);
90
91         sockaddrfree(&n->address);
92
93         cipher_close(&n->incipher);
94         digest_close(&n->indigest);
95         cipher_close(&n->outcipher);
96         digest_close(&n->outdigest);
97
98         event_del(&n->mtuevent);
99         
100         if(n->hostname)
101                 free(n->hostname);
102
103         if(n->name)
104                 free(n->name);
105
106         free(n);
107 }
108
109 void node_add(node_t *n) {
110         cp();
111
112         splay_insert(node_tree, n);
113 }
114
115 void node_del(node_t *n) {
116         splay_node_t *node, *next;
117         edge_t *e;
118         subnet_t *s;
119
120         cp();
121
122         for(node = n->subnet_tree->head; node; node = next) {
123                 next = node->next;
124                 s = node->data;
125                 subnet_del(n, s);
126         }
127
128         for(node = n->edge_tree->head; node; node = next) {
129                 next = node->next;
130                 e = node->data;
131                 edge_del(e);
132         }
133
134         splay_delete(node_udp_tree, n);
135         splay_delete(node_tree, n);
136 }
137
138 node_t *lookup_node(char *name) {
139         node_t n = {0};
140
141         cp();
142         
143         n.name = name;
144
145         return splay_search(node_tree, &n);
146 }
147
148 node_t *lookup_node_udp(const sockaddr_t *sa) {
149         node_t n = {0};
150
151         cp();
152
153         n.address = *sa;
154         n.name = NULL;
155
156         return splay_search(node_udp_tree, &n);
157 }
158
159 void update_node_udp(node_t *n, const sockaddr_t *sa)
160 {
161         splay_delete(node_udp_tree, n);
162
163         if(n->hostname)
164                 free(n->hostname);
165
166         if(sa) {
167                 n->address = *sa;
168                 n->hostname = sockaddr2hostname(&n->address);
169                 splay_insert(node_udp_tree, n);
170                 logger(LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
171         } else {
172                 memset(&n->address, 0, sizeof n->address);
173                 n->hostname = 0;
174                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s cleared", n->name);
175         }
176 }
177
178 int dump_nodes(struct evbuffer *out) {
179         splay_node_t *node;
180         node_t *n;
181
182         cp();
183
184         for(node = node_tree->head; node; node = node->next) {
185                 n = node->data;
186                 if(evbuffer_add_printf(out, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s via %s distance %d pmtu %d (min %d max %d)\n"),
187                            n->name, n->hostname, cipher_get_nid(&n->outcipher),
188                            digest_get_nid(&n->outdigest), digest_length(&n->outdigest), n->outcompression,
189                            n->options, bitfield_to_int(&n->status, sizeof n->status), n->nexthop ? n->nexthop->name : "-",
190                            n->via ? n->via->name : "-", n->distance, n->mtu, n->minmtu, n->maxmtu) == -1)
191                         return errno;
192         }
193
194         return 0;
195 }