2 subnet.c -- handle subnet lookups and lists
3 Copyright (C) 2000-2012 Guus Sliepen <guus@tinc-vpn.org>,
4 2000-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 along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "splay_tree.h"
24 #include "control_common.h"
36 /* lists type of subnet */
38 splay_tree_t *subnet_tree;
40 /* Subnet lookup cache */
46 void subnet_cache_flush(void) {
47 hash_clear(ipv4_cache);
48 hash_clear(ipv6_cache);
49 hash_clear(mac_cache);
52 /* Initialising trees */
54 void init_subnets(void) {
55 subnet_tree = splay_alloc_tree((splay_compare_t) subnet_compare, (splay_action_t) free_subnet);
57 ipv4_cache = hash_alloc(0x100, sizeof(ipv4_t));
58 ipv6_cache = hash_alloc(0x100, sizeof(ipv6_t));
59 mac_cache = hash_alloc(0x100, sizeof(mac_t));
62 void exit_subnets(void) {
63 splay_delete_tree(subnet_tree);
65 hash_free(ipv4_cache);
66 hash_free(ipv6_cache);
70 splay_tree_t *new_subnet_tree(void) {
71 return splay_alloc_tree((splay_compare_t) subnet_compare, NULL);
74 void free_subnet_tree(splay_tree_t *subnet_tree) {
75 splay_delete_tree(subnet_tree);
78 /* Allocating and freeing space for subnets */
80 subnet_t *new_subnet(void) {
81 return xmalloc_and_zero(sizeof(subnet_t));
84 void free_subnet(subnet_t *subnet) {
88 /* Adding and removing subnets */
90 void subnet_add(node_t *n, subnet_t *subnet) {
93 splay_insert(subnet_tree, subnet);
94 splay_insert(n->subnet_tree, subnet);
99 void subnet_del(node_t *n, subnet_t *subnet) {
100 splay_delete(n->subnet_tree, subnet);
101 splay_delete(subnet_tree, subnet);
103 subnet_cache_flush();
106 /* Subnet lookup routines */
108 subnet_t *lookup_subnet(const node_t *owner, const subnet_t *subnet) {
109 return splay_search(owner->subnet_tree, subnet);
112 subnet_t *lookup_subnet_mac(const node_t *owner, const mac_t *address) {
113 subnet_t *p, *r = NULL;
116 // Check if this address is cached
118 if((r = hash_search(mac_cache, address)))
121 // Search all subnets for a matching one
123 for(n = owner ? owner->subnet_tree->head : subnet_tree->head; n; n = n->next) {
126 if(!p || p->type != SUBNET_MAC)
129 if(!memcmp(address, &p->net.mac.address, sizeof *address)) {
131 if(p->owner->status.reachable)
139 hash_insert(mac_cache, address, r);
144 subnet_t *lookup_subnet_ipv4(const ipv4_t *address) {
145 subnet_t *p, *r = NULL;
148 // Check if this address is cached
150 if((r = hash_search(ipv4_cache, address)))
153 // Search all subnets for a matching one
155 for(n = subnet_tree->head; n; n = n->next) {
158 if(!p || p->type != SUBNET_IPV4)
161 if(!maskcmp(address, &p->net.ipv4.address, p->net.ipv4.prefixlength)) {
163 if(p->owner->status.reachable)
171 hash_insert(ipv4_cache, address, r);
176 subnet_t *lookup_subnet_ipv6(const ipv6_t *address) {
177 subnet_t *p, *r = NULL;
180 // Check if this address is cached
182 if((r = hash_search(ipv6_cache, address)))
185 // Search all subnets for a matching one
187 for(n = subnet_tree->head; n; n = n->next) {
190 if(!p || p->type != SUBNET_IPV6)
193 if(!maskcmp(address, &p->net.ipv6.address, p->net.ipv6.prefixlength)) {
195 if(p->owner->status.reachable)
203 hash_insert(ipv6_cache, address, r);
208 void subnet_update(node_t *owner, subnet_t *subnet, bool up) {
211 char *envp[9] = {NULL};
212 char netstr[MAXNETSTR];
213 char *name, *address, *port;
216 // Prepare environment variables to be passed to the script
218 xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
219 xasprintf(&envp[1], "DEVICE=%s", device ? : "");
220 xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
221 xasprintf(&envp[3], "NODE=%s", owner->name);
223 if(owner != myself) {
224 sockaddr2str(&owner->address, &address, &port);
225 // 4 and 5 are reserved for SUBNET and WEIGHT
226 xasprintf(&envp[6], "REMOTEADDRESS=%s", address);
227 xasprintf(&envp[7], "REMOTEPORT=%s", port);
232 name = up ? "subnet-up" : "subnet-down";
235 for(node = owner->subnet_tree->head; node; node = node->next) {
237 if(!net2str(netstr, sizeof netstr, subnet))
239 // Strip the weight from the subnet, and put it in its own environment variable
240 char *weight = strchr(netstr, '#');
246 // Prepare the SUBNET and WEIGHT variables
251 xasprintf(&envp[4], "SUBNET=%s", netstr);
252 xasprintf(&envp[5], "WEIGHT=%s", weight);
254 execute_script(name, envp);
257 if(net2str(netstr, sizeof netstr, subnet)) {
258 // Strip the weight from the subnet, and put it in its own environment variable
259 char *weight = strchr(netstr, '#');
265 // Prepare the SUBNET and WEIGHT variables
266 xasprintf(&envp[4], "SUBNET=%s", netstr);
267 xasprintf(&envp[5], "WEIGHT=%s", weight);
269 execute_script(name, envp);
273 for(i = 0; envp[i] && i < 8; i++)
277 bool dump_subnets(connection_t *c) {
278 char netstr[MAXNETSTR];
282 for(node = subnet_tree->head; node; node = node->next) {
284 if(!net2str(netstr, sizeof netstr, subnet))
286 send_request(c, "%d %d %s owner %s",
287 CONTROL, REQ_DUMP_SUBNETS,
288 netstr, subnet->owner->name);
291 return send_request(c, "%d %d", CONTROL, REQ_DUMP_SUBNETS);