Improve recently seen address cache
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2013 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 "address_cache.h"
24 #include "control_common.h"
25 #include "logger.h"
26 #include "net.h"
27 #include "netutl.h"
28 #include "node.h"
29 #include "splay_tree.h"
30 #include "utils.h"
31 #include "xalloc.h"
32
33 #include "ed25519/sha512.h"
34
35 node_t *myself;
36
37 static int node_compare(const node_t *a, const node_t *b) {
38         return strcmp(a->name, b->name);
39 }
40
41 static int node_id_compare(const node_t *a, const node_t *b) {
42         return memcmp(&a->id, &b->id, sizeof(node_id_t));
43 }
44
45 static int node_udp_compare(const node_t *a, const node_t *b) {
46         int result = sockaddrcmp(&a->address, &b->address);
47
48         if(result) {
49                 return result;
50         }
51
52         return (a->name && b->name) ? strcmp(a->name, b->name) : 0;
53 }
54
55 splay_tree_t node_tree = {
56         .compare = (splay_compare_t) node_compare,
57         .delete = (splay_action_t) free_node,
58 };
59
60 static splay_tree_t node_id_tree = {
61         .compare = (splay_compare_t) node_id_compare,
62 };
63
64 static splay_tree_t node_udp_tree = {
65         .compare = (splay_compare_t) node_udp_compare,
66 };
67
68 void exit_nodes(void) {
69         splay_empty_tree(&node_udp_tree);
70         splay_empty_tree(&node_id_tree);
71         splay_empty_tree(&node_tree);
72 }
73
74 node_t *new_node(const char *name) {
75         node_t *n = xzalloc(sizeof(*n));
76
77         if(replaywin) {
78                 n->late = xzalloc(replaywin);
79         }
80
81         init_subnet_tree(&n->subnet_tree);
82         init_edge_tree(&n->edge_tree);
83
84         n->mtu = MTU;
85         n->maxmtu = MTU;
86         n->udp_ping_rtt = -1;
87         n->name = xstrdup(name);
88
89         return n;
90 }
91
92 void free_node(node_t *n) {
93         if(!n) {
94                 return;
95         }
96
97         splay_empty_tree(&n->subnet_tree);
98         splay_empty_tree(&n->edge_tree);
99
100         sockaddrfree(&n->address);
101
102 #ifndef DISABLE_LEGACY
103         cipher_free(n->incipher);
104         digest_free(n->indigest);
105         cipher_free(n->outcipher);
106         digest_free(n->outdigest);
107 #endif
108
109         ecdsa_free(n->ecdsa);
110         sptps_stop(&n->sptps);
111
112         timeout_del(&n->udp_ping_timeout);
113
114         free(n->hostname);
115         free(n->name);
116         free(n->late);
117
118         if(n->address_cache) {
119                 close_address_cache(n->address_cache);
120         }
121
122         free(n);
123 }
124
125 void node_add(node_t *n) {
126         unsigned char buf[64];
127         sha512(n->name, strlen(n->name), buf);
128         memcpy(&n->id, buf, sizeof(n->id));
129
130         splay_insert(&node_tree, n);
131         splay_insert(&node_id_tree, n);
132 }
133
134 void node_del(node_t *n) {
135         splay_delete(&node_udp_tree, n);
136
137         for splay_each(subnet_t, s, &n->subnet_tree) {
138                 subnet_del(n, s);
139         }
140
141         for splay_each(edge_t, e, &n->edge_tree) {
142                 edge_del(e);
143         }
144
145         splay_delete(&node_id_tree, n);
146         splay_delete(&node_tree, n);
147 }
148
149 node_t *lookup_node(char *name) {
150         node_t n = {0};
151
152         n.name = name;
153
154         return splay_search(&node_tree, &n);
155 }
156
157 node_t *lookup_node_id(const node_id_t *id) {
158         node_t n = {.id = *id};
159         return splay_search(&node_id_tree, &n);
160 }
161
162 node_t *lookup_node_udp(const sockaddr_t *sa) {
163         node_t tmp = {.address = *sa};
164         return splay_search(&node_udp_tree, &tmp);
165 }
166
167 void update_node_udp(node_t *n, const sockaddr_t *sa) {
168         if(n == myself) {
169                 logger(DEBUG_ALWAYS, LOG_WARNING, "Trying to update UDP address of myself!");
170                 return;
171         }
172
173         splay_delete(&node_udp_tree, n);
174
175         if(sa) {
176                 n->address = *sa;
177                 n->sock = 0;
178
179                 for(int i = 0; i < listen_sockets; i++) {
180                         if(listen_socket[i].sa.sa.sa_family == sa->sa.sa_family) {
181                                 n->sock = i;
182                                 break;
183                         }
184                 }
185
186                 splay_insert(&node_udp_tree, n);
187                 free(n->hostname);
188                 n->hostname = sockaddr2hostname(&n->address);
189                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
190         }
191
192         /* invalidate UDP information - note that this is a security feature as well to make sure
193            we can't be tricked into flooding any random address with UDP packets */
194         n->status.udp_confirmed = false;
195         n->maxrecentlen = 0;
196         n->mtuprobes = 0;
197         n->minmtu = 0;
198         n->maxmtu = MTU;
199 }
200
201 bool dump_nodes(connection_t *c) {
202         for splay_each(node_t, n, &node_tree) {
203                 char id[2 * sizeof(n->id) + 1];
204
205                 for(size_t c = 0; c < sizeof(n->id); ++c) {
206                         snprintf(id + 2 * c, 3, "%02x", n->id.x[c]);
207                 }
208
209                 id[sizeof(id) - 1] = 0;
210                 send_request(c, "%d %d %s %s %s %d %d %lu %d %x %x %s %s %d %d %d %d %ld %d %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64, CONTROL, REQ_DUMP_NODES,
211                              n->name, id, n->hostname ? n->hostname : "unknown port unknown",
212 #ifdef DISABLE_LEGACY
213                              0, 0, 0UL,
214 #else
215                              cipher_get_nid(n->outcipher), digest_get_nid(n->outdigest), (unsigned long)digest_length(n->outdigest),
216 #endif
217                              n->outcompression, n->options, n->status.value,
218                              n->nexthop ? n->nexthop->name : "-", n->via && n->via->name ? n->via->name : "-", n->distance,
219                              n->mtu, n->minmtu, n->maxmtu, (long)n->last_state_change, n->udp_ping_rtt,
220                              n->in_packets, n->in_bytes, n->out_packets, n->out_bytes);
221         }
222
223         return send_request(c, "%d %d", CONTROL, REQ_DUMP_NODES);
224 }
225
226 bool dump_traffic(connection_t *c) {
227         for splay_each(node_t, n, &node_tree)
228                 send_request(c, "%d %d %s %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64, CONTROL, REQ_DUMP_TRAFFIC,
229                              n->name, n->in_packets, n->in_bytes, n->out_packets, n->out_bytes);
230
231         return send_request(c, "%d %d", CONTROL, REQ_DUMP_TRAFFIC);
232 }