92af66a9310444c2b2bdbf3c8144d28f29cc7d0c
[oweals/tinc.git] / 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 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.
19 */
20
21 #include "system.h"
22
23 #include "avl_tree.h"
24 #include "logger.h"
25 #include "net.h"
26 #include "netutl.h"
27 #include "node.h"
28 #include "utils.h"
29 #include "xalloc.h"
30
31 avl_tree_t *node_tree;                  /* Known nodes, sorted by name */
32 avl_tree_t *node_udp_tree;              /* Known nodes, sorted by address and port */
33
34 node_t *myself;
35
36 static int node_compare(const node_t *a, const node_t *b) {
37         return strcmp(a->name, b->name);
38 }
39
40 static int node_udp_compare(const node_t *a, const node_t *b) {
41        return sockaddrcmp(&a->address, &b->address);
42 }
43
44 void init_nodes(void) {
45         cp();
46
47         node_tree = avl_alloc_tree((avl_compare_t) node_compare, (avl_action_t) free_node);
48         node_udp_tree = avl_alloc_tree((avl_compare_t) node_udp_compare, NULL);
49 }
50
51 void exit_nodes(void) {
52         cp();
53
54         avl_delete_tree(node_udp_tree);
55         avl_delete_tree(node_tree);
56 }
57
58 node_t *new_node(void) {
59         node_t *n = xmalloc_and_zero(sizeof(*n));
60
61         cp();
62
63         n->subnet_tree = new_subnet_tree();
64         n->edge_tree = new_edge_tree();
65         EVP_CIPHER_CTX_init(&n->inctx);
66         EVP_CIPHER_CTX_init(&n->outctx);
67         n->mtu = MTU;
68         n->maxmtu = MTU;
69
70         return n;
71 }
72
73 void free_node(node_t *n) {
74         cp();
75
76         if(n->inkey)
77                 free(n->inkey);
78
79         if(n->outkey)
80                 free(n->outkey);
81
82         if(n->subnet_tree)
83                 free_subnet_tree(n->subnet_tree);
84
85         if(n->edge_tree)
86                 free_edge_tree(n->edge_tree);
87
88         sockaddrfree(&n->address);
89
90         EVP_CIPHER_CTX_cleanup(&n->inctx);
91         EVP_CIPHER_CTX_cleanup(&n->outctx);
92
93         if(n->mtuevent)
94                 event_del(n->mtuevent);
95         
96         if(n->hostname)
97                 free(n->hostname);
98
99         if(n->name)
100                 free(n->name);
101
102         free(n);
103 }
104
105 void node_add(node_t *n) {
106         cp();
107
108         avl_insert(node_tree, n);
109 }
110
111 void node_del(node_t *n) {
112         avl_node_t *node, *next;
113         edge_t *e;
114         subnet_t *s;
115
116         cp();
117
118         for(node = n->subnet_tree->head; node; node = next) {
119                 next = node->next;
120                 s = node->data;
121                 subnet_del(n, s);
122         }
123
124         for(node = n->edge_tree->head; node; node = next) {
125                 next = node->next;
126                 e = node->data;
127                 edge_del(e);
128         }
129
130         avl_delete(node_udp_tree, n);
131         avl_delete(node_tree, n);
132 }
133
134 node_t *lookup_node(char *name) {
135         node_t n = {0};
136
137         cp();
138         
139         n.name = name;
140
141         return avl_search(node_tree, &n);
142 }
143
144 node_t *lookup_node_udp(const sockaddr_t *sa) {
145         node_t n = {0};
146
147         cp();
148
149         n.address = *sa;
150         n.name = NULL;
151
152         return avl_search(node_udp_tree, &n);
153 }
154
155 void update_node_udp(node_t *n, const sockaddr_t *sa) {
156         avl_delete(node_udp_tree, n);
157
158         if(n->hostname)
159                 free(n->hostname);
160
161         if(sa) {
162                 n->address = *sa;
163                 n->hostname = sockaddr2hostname(&n->address);
164                 avl_insert(node_udp_tree, n);
165                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
166         } else {
167                 memset(&n->address, 0, sizeof n->address);
168                 n->hostname = 0;
169                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s cleared", n->name);
170         }
171 }
172
173 void dump_nodes(void) {
174         avl_node_t *node;
175         node_t *n;
176
177         cp();
178
179         logger(LOG_DEBUG, _("Nodes:"));
180
181         for(node = node_tree->head; node; node = node->next) {
182                 n = node->data;
183                 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)"),
184                            n->name, n->hostname, n->outcipher ? n->outcipher->nid : 0,
185                            n->outdigest ? n->outdigest->type : 0, n->outmaclength, n->outcompression,
186                            n->options, bitfield_to_int(&n->status, sizeof n->status), n->nexthop ? n->nexthop->name : "-",
187                            n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu);
188         }
189
190         logger(LOG_DEBUG, _("End of nodes."));
191 }