Attribution for Timothy Redaelli.
[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 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         n->subnet_tree = new_subnet_tree();
58         n->edge_tree = new_edge_tree();
59         EVP_CIPHER_CTX_init(&n->inctx);
60         EVP_CIPHER_CTX_init(&n->outctx);
61         n->mtu = MTU;
62         n->maxmtu = MTU;
63
64         return n;
65 }
66
67 void free_node(node_t *n) {
68         if(n->inkey)
69                 free(n->inkey);
70
71         if(n->outkey)
72                 free(n->outkey);
73
74         if(n->subnet_tree)
75                 free_subnet_tree(n->subnet_tree);
76
77         if(n->edge_tree)
78                 free_edge_tree(n->edge_tree);
79
80         sockaddrfree(&n->address);
81
82         EVP_CIPHER_CTX_cleanup(&n->inctx);
83         EVP_CIPHER_CTX_cleanup(&n->outctx);
84
85         if(n->mtuevent)
86                 event_del(n->mtuevent);
87         
88         if(n->hostname)
89                 free(n->hostname);
90
91         if(n->name)
92                 free(n->name);
93
94         free(n);
95 }
96
97 void node_add(node_t *n) {
98         avl_insert(node_tree, n);
99 }
100
101 void node_del(node_t *n) {
102         avl_node_t *node, *next;
103         edge_t *e;
104         subnet_t *s;
105
106         for(node = n->subnet_tree->head; node; node = next) {
107                 next = node->next;
108                 s = node->data;
109                 subnet_del(n, s);
110         }
111
112         for(node = n->edge_tree->head; node; node = next) {
113                 next = node->next;
114                 e = node->data;
115                 edge_del(e);
116         }
117
118         avl_delete(node_udp_tree, n);
119         avl_delete(node_tree, n);
120 }
121
122 node_t *lookup_node(char *name) {
123         node_t n = {0};
124
125         n.name = name;
126
127         return avl_search(node_tree, &n);
128 }
129
130 node_t *lookup_node_udp(const sockaddr_t *sa) {
131         node_t n = {0};
132
133         n.address = *sa;
134         n.name = NULL;
135
136         return avl_search(node_udp_tree, &n);
137 }
138
139 void update_node_udp(node_t *n, const sockaddr_t *sa) {
140         avl_delete(node_udp_tree, n);
141
142         if(n->hostname)
143                 free(n->hostname);
144
145         if(sa) {
146                 n->address = *sa;
147                 n->hostname = sockaddr2hostname(&n->address);
148                 avl_insert(node_udp_tree, n);
149                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s set to %s", n->name, n->hostname);
150         } else {
151                 memset(&n->address, 0, sizeof n->address);
152                 n->hostname = 0;
153                 ifdebug(PROTOCOL) logger(LOG_DEBUG, "UDP address of %s cleared", n->name);
154         }
155 }
156
157 void dump_nodes(void) {
158         avl_node_t *node;
159         node_t *n;
160
161         logger(LOG_DEBUG, "Nodes:");
162
163         for(node = node_tree->head; node; node = node->next) {
164                 n = node->data;
165                 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)",
166                            n->name, n->hostname, n->outcipher ? n->outcipher->nid : 0,
167                            n->outdigest ? n->outdigest->type : 0, n->outmaclength, n->outcompression,
168                            n->options, bitfield_to_int(&n->status, sizeof n->status), n->nexthop ? n->nexthop->name : "-",
169                            n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu);
170         }
171
172         logger(LOG_DEBUG, "End of nodes.");
173 }