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