tinc-gui: Reformat codebase according to PEP8
[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 "control_common.h"
24 #include "hash.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 splay_tree_t *node_tree;
36 static splay_tree_t *node_id_tree;
37 static hash_t *node_udp_cache;
38 static hash_t *node_id_cache;
39
40 node_t *myself;
41
42 static int node_compare(const node_t *a, const node_t *b) {
43         return strcmp(a->name, b->name);
44 }
45
46 static int node_id_compare(const node_t *a, const node_t *b) {
47         return memcmp(&a->id, &b->id, sizeof(node_id_t));
48 }
49
50 void init_nodes(void) {
51         node_tree = splay_alloc_tree((splay_compare_t) node_compare, (splay_action_t) free_node);
52         node_id_tree = splay_alloc_tree((splay_compare_t) node_id_compare, NULL);
53         node_udp_cache = hash_alloc(0x100, sizeof(sockaddr_t));
54         node_id_cache = hash_alloc(0x100, sizeof(node_id_t));
55 }
56
57 void exit_nodes(void) {
58         hash_free(node_id_cache);
59         hash_free(node_udp_cache);
60         splay_delete_tree(node_id_tree);
61         splay_delete_tree(node_tree);
62 }
63
64 node_t *new_node(void) {
65         node_t *n = xzalloc(sizeof *n);
66
67         if(replaywin) n->late = xzalloc(replaywin);
68         n->subnet_tree = new_subnet_tree();
69         n->edge_tree = new_edge_tree();
70         n->mtu = MTU;
71         n->maxmtu = MTU;
72
73         return n;
74 }
75
76 void free_node(node_t *n) {
77         if(n->subnet_tree)
78                 free_subnet_tree(n->subnet_tree);
79
80         if(n->edge_tree)
81                 free_edge_tree(n->edge_tree);
82
83         sockaddrfree(&n->address);
84
85 #ifndef DISABLE_LEGACY
86         cipher_close(n->incipher);
87         digest_close(n->indigest);
88         cipher_close(n->outcipher);
89         digest_close(n->outdigest);
90 #endif
91
92         ecdsa_free(n->ecdsa);
93         sptps_stop(&n->sptps);
94
95         timeout_del(&n->udp_ping_timeout);
96
97         if(n->hostname)
98                 free(n->hostname);
99
100         if(n->name)
101                 free(n->name);
102
103         if(n->late)
104                 free(n->late);
105
106         free(n);
107 }
108
109 void node_add(node_t *n) {
110         unsigned char buf[64];
111         sha512(n->name, strlen(n->name),buf);
112         memcpy(&n->id, buf, sizeof n->id);
113
114         splay_insert(node_tree, n);
115         splay_insert(node_id_tree, n);
116 }
117
118 void node_del(node_t *n) {
119         hash_delete(node_udp_cache, &n->address);
120         hash_delete(node_id_cache, &n->id);
121
122         for splay_each(subnet_t, s, n->subnet_tree)
123                 subnet_del(n, s);
124
125         for splay_each(edge_t, e, n->edge_tree)
126                 edge_del(e);
127
128         splay_delete(node_id_tree, n);
129         splay_delete(node_tree, n);
130 }
131
132 node_t *lookup_node(char *name) {
133         node_t n = {NULL};
134
135         n.name = name;
136
137         return splay_search(node_tree, &n);
138 }
139
140 node_t *lookup_node_id(const node_id_t *id) {
141         node_t *n = hash_search(node_id_cache, id);
142         if(!n) {
143                 node_t tmp = {.id = *id};
144                 n = splay_search(node_id_tree, &tmp);
145                 if(n)
146                         hash_insert(node_id_cache, id, n);
147         }
148
149         return n;
150 }
151
152 node_t *lookup_node_udp(const sockaddr_t *sa) {
153         return hash_search(node_udp_cache, sa);
154 }
155
156 void update_node_udp(node_t *n, const sockaddr_t *sa) {
157         if(n == myself) {
158                 logger(DEBUG_ALWAYS, LOG_WARNING, "Trying to update UDP address of myself!");
159                 return;
160         }
161
162         hash_delete(node_udp_cache, &n->address);
163
164         if(sa) {
165                 n->address = *sa;
166                 n->sock = 0;
167                 for(int i = 0; i < listen_sockets; i++) {
168                         if(listen_socket[i].sa.sa.sa_family == sa->sa.sa_family) {
169                                 n->sock = i;
170                                 break;
171                         }
172                 }
173                 hash_insert(node_udp_cache, sa, n);
174                 free(n->hostname);
175                 n->hostname = sockaddr2hostname(&n->address);
176                 logger(DEBUG_PROTOCOL, LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
177         }
178
179         /* invalidate UDP information - note that this is a security feature as well to make sure
180            we can't be tricked into flooding any random address with UDP packets */
181         n->status.udp_confirmed = false;
182         n->maxrecentlen = 0;
183         n->mtuprobes = 0;
184         n->minmtu = 0;
185         n->maxmtu = MTU;
186 }
187
188 bool dump_nodes(connection_t *c) {
189         for splay_each(node_t, n, node_tree) {
190                 char id[2 * sizeof n->id + 1];
191                 for (size_t c = 0; c < sizeof n->id; ++c)
192                         sprintf(id + 2 * c, "%02hhx", n->id.x[c]);
193                 id[sizeof id - 1] = 0;
194                 send_request(c, "%d %d %s %s %s %d %d %d %d %x %x %s %s %d %hd %hd %hd %ld", CONTROL, REQ_DUMP_NODES,
195                            n->name, id, n->hostname ?: "unknown port unknown",
196 #ifdef DISABLE_LEGACY
197                            0, 0, 0,
198 #else
199                            cipher_get_nid(n->outcipher), digest_get_nid(n->outdigest), (int)digest_length(n->outdigest),
200 #endif
201                            n->outcompression, n->options, bitfield_to_int(&n->status, sizeof n->status),
202                            n->nexthop ? n->nexthop->name : "-", n->via ? n->via->name ?: "-" : "-", n->distance,
203                            n->mtu, n->minmtu, n->maxmtu, (long)n->last_state_change);
204         }
205
206         return send_request(c, "%d %d", CONTROL, REQ_DUMP_NODES);
207 }
208
209 bool dump_traffic(connection_t *c) {
210         for splay_each(node_t, n, node_tree)
211                 send_request(c, "%d %d %s %"PRIu64" %"PRIu64" %"PRIu64" %"PRIu64, CONTROL, REQ_DUMP_TRAFFIC,
212                            n->name, n->in_packets, n->in_bytes, n->out_packets, n->out_bytes);
213
214         return send_request(c, "%d %d", CONTROL, REQ_DUMP_TRAFFIC);
215 }