Conversion to struct addrinfo is almost complete for this file.
[tinc] / src / node.c
1 /*
2     node.c -- node tree management
3     Copyright (C) 2001 Guus Sliepen <guus@sliepen.warande.net>,
4                   2001 Ivo Timmermans <itimmermans@bigfoot.com>
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.7 2001/11/16 17:39:38 zarq 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 "net.h"
31 #include <utils.h>
32 #include <xalloc.h>
33
34 #include "system.h"
35
36 avl_tree_t *node_tree;          /* Known nodes, sorted by name */
37 avl_tree_t *node_udp_tree;      /* Known nodes, sorted by address and port */
38
39 node_t *myself;
40
41 int node_compare(node_t *a, node_t *b)
42 {
43   return strcmp(a->name, b->name);
44 }
45
46 int node_udp_compare(node_t *a, node_t *b)
47 {
48   if(a->address < b->address)
49     return -1;
50   else if (a->address > b->address)
51     return 1;
52   else
53     return a->port - b->port;
54 }
55
56 void init_nodes(void)
57 {
58 cp
59   node_tree = avl_alloc_tree((avl_compare_t)node_compare, NULL);
60   node_udp_tree = avl_alloc_tree((avl_compare_t)node_udp_compare, NULL);
61 cp
62 }
63
64 void exit_nodes(void)
65 {
66 cp
67   avl_delete_tree(node_tree);
68   avl_delete_tree(node_udp_tree);
69 cp
70 }
71
72 node_t *new_node(void)
73 {
74   node_t *n = (node_t *)xmalloc_and_zero(sizeof(*n));
75 cp
76   n->subnet_tree = new_subnet_tree();
77   n->edge_tree = new_edge_tree();
78   n->queue = list_alloc((list_action_t)free);
79 cp
80   return n;
81 }
82
83 void free_node(node_t *n)
84 {
85 cp
86   if(n->queue)
87     list_delete_list(n->queue);
88   if(n->name)
89     free(n->name);
90   if(n->hostname)
91     free(n->hostname);
92   if(n->key)
93     free(n->key);
94   if(n->subnet_tree)
95     free_subnet_tree(n->subnet_tree);
96   if(n->edge_tree)
97     free_edge_tree(n->edge_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   edge_t *e;
114   subnet_t *s;
115 cp
116   for(node = n->subnet_tree->head; node; node = next)
117     {
118       next = node->next;
119       s = (subnet_t *)node->data;
120       subnet_del(n, s);
121     }
122
123   for(node = n->subnet_tree->head; node; node = next)
124     {
125       next = node->next;
126       e = (edge_t *)node->data;
127       edge_del(e);
128     }
129 cp
130   avl_delete(node_tree, n);
131   avl_delete(node_udp_tree, n);
132 cp
133 }
134
135 node_t *lookup_node(char *name)
136 {
137   node_t n;
138 cp
139   n.name = name;
140   return avl_search(node_tree, &n);
141 }
142
143 node_t *lookup_node_udp(struct addrinfo *address)
144 {
145   node_t n;
146 cp
147   n.address = address;
148   return avl_search(node_udp_tree, &n);
149 }
150
151 void dump_nodes(void)
152 {
153   avl_node_t *node;
154   node_t *n;
155 cp
156   syslog(LOG_DEBUG, _("Nodes:"));
157
158   for(node = node_tree->head; node; node = node->next)
159     {
160       n = (node_t *)node->data;
161       syslog(LOG_DEBUG, _(" %s at %s port %s options %ld status %04x nexthop %s via %s"),
162              n->name, n->hostname, n->port, n->options,
163              n->status, n->nexthop->name, n->via->name);
164     }
165     
166   syslog(LOG_DEBUG, _("End of nodes."));
167 cp
168 }