2 node.c -- node tree management
3 Copyright (C) 2001-2006 Guus Sliepen <guus@tinc-vpn.org>,
4 2001-2005 Ivo Timmermans
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.
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.
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.
25 #include "splay_tree.h"
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 */
38 static int node_compare(const node_t *a, const node_t *b) {
39 return strcmp(a->name, b->name);
42 static int node_udp_compare(const node_t *a, const node_t *b) {
47 result = sockaddrcmp(&a->address, &b->address);
52 return (a->name && b->name) ? strcmp(a->name, b->name) : 0;
55 void init_nodes(void) {
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);
62 void exit_nodes(void) {
65 splay_delete_tree(node_udp_tree);
66 splay_delete_tree(node_tree);
69 node_t *new_node(void) {
70 node_t *n = xmalloc_and_zero(sizeof *n);
74 n->subnet_tree = new_subnet_tree();
75 n->edge_tree = new_edge_tree();
76 n->queue = list_alloc((list_action_t) free);
83 void free_node(node_t *n) {
87 list_delete_list(n->queue);
90 free_subnet_tree(n->subnet_tree);
93 free_edge_tree(n->edge_tree);
95 sockaddrfree(&n->address);
97 cipher_close(&n->cipher);
98 digest_close(&n->digest);
100 event_del(&n->mtuevent);
111 void node_add(node_t *n) {
114 splay_insert(node_tree, n);
117 void node_del(node_t *n) {
118 splay_node_t *node, *next;
124 for(node = n->subnet_tree->head; node; node = next) {
130 for(node = n->edge_tree->head; node; node = next) {
136 splay_delete(node_tree, n);
139 node_t *lookup_node(char *name) {
146 return splay_search(node_tree, &n);
149 node_t *lookup_node_udp(const sockaddr_t *sa) {
157 return splay_search(node_udp_tree, &n);
160 int dump_nodes(struct evbuffer *out) {
166 for(node = node_tree->head; node; node = node->next) {
168 if(evbuffer_add_printf(out, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s via %s distance %d pmtu %d (min %d max %d)\n"),
169 n->name, n->hostname, cipher_get_nid(&n->cipher),
170 digest_get_nid(&n->digest), n->maclength, n->compression,
171 n->options, *(uint32_t *)&n->status, n->nexthop ? n->nexthop->name : "-",
172 n->via ? n->via->name : "-", n->distance, n->mtu, n->minmtu, n->maxmtu) == -1)