Dump through control socket
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2006 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 "splay_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 splay_tree_t *node_tree;                        /* Known nodes, sorted by name */
34 splay_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         return strcmp(a->name, b->name);
40 }
41
42 static int node_udp_compare(const node_t *a, const node_t *b) {
43         int result;
44
45         cp();
46
47         result = sockaddrcmp(&a->address, &b->address);
48
49         if(result)
50                 return result;
51
52         return (a->name && b->name) ? strcmp(a->name, b->name) : 0;
53 }
54
55 void init_nodes(void) {
56         cp();
57
58         node_tree = splay_alloc_tree((splay_compare_t) node_compare, (splay_action_t) free_node);
59         node_udp_tree = splay_alloc_tree((splay_compare_t) node_udp_compare, NULL);
60 }
61
62 void exit_nodes(void) {
63         cp();
64
65         splay_delete_tree(node_udp_tree);
66         splay_delete_tree(node_tree);
67 }
68
69 node_t *new_node(void) {
70         node_t *n = xmalloc_and_zero(sizeof(*n));
71
72         cp();
73
74         n->subnet_tree = new_subnet_tree();
75         n->edge_tree = new_edge_tree();
76         n->queue = list_alloc((list_action_t) free);
77         EVP_CIPHER_CTX_init(&n->packet_ctx);
78         n->mtu = MTU;
79         n->maxmtu = MTU;
80
81         return n;
82 }
83
84 void free_node(node_t *n) {
85         cp();
86
87         if(n->queue)
88                 list_delete_list(n->queue);
89
90         if(n->key)
91                 free(n->key);
92
93         if(n->subnet_tree)
94                 free_subnet_tree(n->subnet_tree);
95
96         if(n->edge_tree)
97                 free_edge_tree(n->edge_tree);
98
99         sockaddrfree(&n->address);
100
101         EVP_CIPHER_CTX_cleanup(&n->packet_ctx);
102
103         event_del(&n->mtuevent);
104         
105         if(n->hostname)
106                 free(n->hostname);
107
108         if(n->name)
109                 free(n->name);
110
111         free(n);
112 }
113
114 void node_add(node_t *n) {
115         cp();
116
117         splay_insert(node_tree, n);
118 }
119
120 void node_del(node_t *n) {
121         splay_node_t *node, *next;
122         edge_t *e;
123         subnet_t *s;
124
125         cp();
126
127         for(node = n->subnet_tree->head; node; node = next) {
128                 next = node->next;
129                 s = node->data;
130                 subnet_del(n, s);
131         }
132
133         for(node = n->edge_tree->head; node; node = next) {
134                 next = node->next;
135                 e = node->data;
136                 edge_del(e);
137         }
138
139         splay_delete(node_tree, n);
140 }
141
142 node_t *lookup_node(char *name) {
143         node_t n = {0};
144
145         cp();
146         
147         n.name = name;
148
149         return splay_search(node_tree, &n);
150 }
151
152 node_t *lookup_node_udp(const sockaddr_t *sa) {
153         node_t n = {0};
154
155         cp();
156
157         n.address = *sa;
158         n.name = NULL;
159
160         return splay_search(node_udp_tree, &n);
161 }
162
163 int dump_nodes(struct evbuffer *out) {
164         splay_node_t *node;
165         node_t *n;
166
167         cp();
168
169         for(node = node_tree->head; node; node = node->next) {
170                 n = node->data;
171                 if(evbuffer_add_printf(out, _(" %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)\n"),
172                            n->name, n->hostname, n->cipher ? n->cipher->nid : 0,
173                            n->digest ? n->digest->type : 0, n->maclength, n->compression,
174                            n->options, *(uint32_t *)&n->status, n->nexthop ? n->nexthop->name : "-",
175                            n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu) == -1)
176                         return errno;
177         }
178
179         return 0;
180 }