Don't forget to set prevhop to myself for new connections.
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001-2002 Guus Sliepen <guus@sliepen.eu.org>,
4                   2001-2002 Ivo Timmermans <ivo@o2w.nl>
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: node.c,v 1.1.2.14 2002/09/03 20:43:25 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <string.h>
26 #include <syslog.h>
27
28 #include <avl_tree.h>
29 #include "node.h"
30 #include "netutl.h"
31 #include "net.h"
32 #include <utils.h>
33 #include <xalloc.h>
34
35 #include "system.h"
36
37 avl_tree_t *node_tree;          /* Known nodes, sorted by name */
38 avl_tree_t *node_udp_tree;      /* Known nodes, sorted by address and port */
39
40 node_t *myself;
41
42 int node_compare(node_t *a, node_t *b)
43 {
44   return strcmp(a->name, b->name);
45 }
46
47 int node_udp_compare(node_t *a, node_t *b)
48 {
49   int result;
50 cp
51   result = sockaddrcmp(&a->address, &b->address);
52
53   if(result)
54     return result;
55
56   return (a->name && b->name)?strcmp(a->name, b->name):0;
57 }
58
59 void init_nodes(void)
60 {
61 cp
62   node_tree = avl_alloc_tree((avl_compare_t)node_compare, NULL);
63   node_udp_tree = avl_alloc_tree((avl_compare_t)node_udp_compare, NULL);
64 cp
65 }
66
67 void exit_nodes(void)
68 {
69 cp
70   avl_delete_tree(node_tree);
71   avl_delete_tree(node_udp_tree);
72 cp
73 }
74
75 node_t *new_node(void)
76 {
77   node_t *n = (node_t *)xmalloc_and_zero(sizeof(*n));
78 cp
79   n->subnet_tree = new_subnet_tree();
80   n->queue = list_alloc((list_action_t)free);
81 cp
82   return n;
83 }
84
85 void free_node(node_t *n)
86 {
87 cp
88   if(n->queue)
89     list_delete_list(n->queue);
90   if(n->name)
91     free(n->name);
92   if(n->hostname)
93     free(n->hostname);
94   if(n->key)
95     free(n->key);
96   if(n->subnet_tree)
97     free_subnet_tree(n->subnet_tree);
98   free(n);
99 cp
100 }
101
102 void node_add(node_t *n)
103 {
104 cp
105   avl_insert(node_tree, n);
106   avl_insert(node_udp_tree, n);
107 cp
108 }
109
110 void node_del(node_t *n)
111 {
112   avl_node_t *node, *next;
113   subnet_t *s;
114 cp
115   for(node = n->subnet_tree->head; node; node = next)
116     {
117       next = node->next;
118       s = (subnet_t *)node->data;
119       subnet_del(n, s);
120     }
121 cp
122   avl_delete(node_tree, n);
123   avl_delete(node_udp_tree, n);
124 cp
125 }
126
127 node_t *lookup_node(char *name)
128 {
129   node_t n;
130 cp
131   n.name = name;
132   return avl_search(node_tree, &n);
133 }
134
135 node_t *lookup_node_udp(sockaddr_t *sa)
136 {
137   node_t n;
138 cp
139   n.address = *sa;
140   n.name = NULL;
141
142   return avl_search(node_udp_tree, &n);
143 }
144
145 void dump_nodes(void)
146 {
147   avl_node_t *node;
148   node_t *n;
149 cp
150   syslog(LOG_DEBUG, _("Nodes:"));
151
152   for(node = node_tree->head; node; node = node->next)
153     {
154       n = (node_t *)node->data;
155       syslog(LOG_DEBUG, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s distance %d"),
156              n->name, n->hostname, n->cipher?n->cipher->nid:0, n->digest?n->digest->type:0, n->maclength, n->compression, n->options,
157              n->status, n->nexthop?n->nexthop->name:"-", n->distance);
158     }
159     
160   syslog(LOG_DEBUG, _("End of nodes."));
161 cp
162 }