Releasing 1.0.33.
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2016 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         node_tree = avl_alloc_tree((avl_compare_t) node_compare, (avl_action_t) free_node);
46         node_udp_tree = avl_alloc_tree((avl_compare_t) node_udp_compare, NULL);
47 }
48
49 void exit_nodes(void) {
50         avl_delete_tree(node_udp_tree);
51         avl_delete_tree(node_tree);
52 }
53
54 node_t *new_node(void) {
55         node_t *n = xmalloc_and_zero(sizeof(*n));
56
57         if(replaywin) {
58                 n->late = xmalloc_and_zero(replaywin);
59         }
60
61         n->subnet_tree = new_subnet_tree();
62         n->edge_tree = new_edge_tree();
63         n->inctx = EVP_CIPHER_CTX_new();
64         n->outctx = EVP_CIPHER_CTX_new();
65
66         if(!n->inctx || !n->outctx) {
67                 abort();
68         }
69
70         n->mtu = MTU;
71         n->maxmtu = MTU;
72
73         return n;
74 }
75
76 void free_node(node_t *n) {
77         if(n->inkey) {
78                 free(n->inkey);
79         }
80
81         if(n->outkey) {
82                 free(n->outkey);
83         }
84
85         if(n->subnet_tree) {
86                 free_subnet_tree(n->subnet_tree);
87         }
88
89         if(n->edge_tree) {
90                 free_edge_tree(n->edge_tree);
91         }
92
93         sockaddrfree(&n->address);
94
95         EVP_CIPHER_CTX_free(n->outctx);
96         EVP_CIPHER_CTX_free(n->inctx);
97
98         if(n->mtuevent) {
99                 event_del(n->mtuevent);
100         }
101
102         if(n->hostname) {
103                 free(n->hostname);
104         }
105
106         if(n->name) {
107                 free(n->name);
108         }
109
110         if(n->late) {
111                 free(n->late);
112         }
113
114         free(n);
115 }
116
117 void node_add(node_t *n) {
118         avl_insert(node_tree, n);
119 }
120
121 void node_del(node_t *n) {
122         avl_node_t *node, *next;
123         edge_t *e;
124         subnet_t *s;
125
126         for(node = n->subnet_tree->head; node; node = next) {
127                 next = node->next;
128                 s = node->data;
129                 subnet_del(n, s);
130         }
131
132         for(node = n->edge_tree->head; node; node = next) {
133                 next = node->next;
134                 e = node->data;
135                 edge_del(e);
136         }
137
138         avl_delete(node_udp_tree, n);
139         avl_delete(node_tree, n);
140 }
141
142 node_t *lookup_node(char *name) {
143         node_t n = {};
144
145         n.name = name;
146
147         return avl_search(node_tree, &n);
148 }
149
150 node_t *lookup_node_udp(const sockaddr_t *sa) {
151         node_t n = {};
152
153         n.address = *sa;
154         n.name = NULL;
155
156         return avl_search(node_udp_tree, &n);
157 }
158
159 void update_node_udp(node_t *n, const sockaddr_t *sa) {
160         if(n == myself) {
161                 logger(LOG_WARNING, "Trying to update UDP address of myself!");
162                 return;
163         }
164
165         avl_delete(node_udp_tree, n);
166
167         if(n->hostname) {
168                 free(n->hostname);
169         }
170
171         if(sa) {
172                 n->address = *sa;
173                 n->hostname = sockaddr2hostname(&n->address);
174                 avl_insert(node_udp_tree, n);
175                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
176         } else {
177                 memset(&n->address, 0, sizeof(n->address));
178                 n->hostname = NULL;
179                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s cleared", n->name);
180         }
181 }
182
183 void dump_nodes(void) {
184         avl_node_t *node;
185         node_t *n;
186
187         logger(LOG_DEBUG, "Nodes:");
188
189         for(node = node_tree->head; node; node = node->next) {
190                 n = node->data;
191                 logger(LOG_DEBUG, " %s at %s cipher %d digest %d maclength %d compression %d options %x status %04x nexthop %s via %s pmtu %d (min %d max %d)",
192                        n->name, n->hostname, n->outcipher ? EVP_CIPHER_nid(n->outcipher) : 0,
193                        n->outdigest ? EVP_MD_type(n->outdigest) : 0, n->outmaclength, n->outcompression,
194                        n->options, bitfield_to_int(&n->status, sizeof(n->status)), n->nexthop ? n->nexthop->name : "-",
195                        n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu);
196         }
197
198         logger(LOG_DEBUG, "End of nodes.");
199 }