tinc/src/subnet.c

534 lines
12 KiB
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
/*
subnet.c -- handle subnet lookups and lists
2019-08-26 11:44:39 +00:00
Copyright (C) 2000-2010 Guus Sliepen <guus@tinc-vpn.org>,
2019-08-26 11:44:37 +00:00
2000-2005 Ivo Timmermans
2019-08-26 11:44:36 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2019-08-26 11:44:38 +00:00
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:36 +00:00
#include "system.h"
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
#include "avl_tree.h"
2019-08-26 11:44:36 +00:00
#include "device.h"
2019-08-26 11:44:36 +00:00
#include "logger.h"
2019-08-26 11:44:36 +00:00
#include "net.h"
2019-08-26 11:44:36 +00:00
#include "netutl.h"
2019-08-26 11:44:36 +00:00
#include "node.h"
2019-08-26 11:44:36 +00:00
#include "process.h"
2019-08-26 11:44:36 +00:00
#include "subnet.h"
2019-08-26 11:44:36 +00:00
#include "utils.h"
#include "xalloc.h"
2019-08-26 11:44:36 +00:00
/* lists type of subnet */
avl_tree_t *subnet_tree;
2019-08-26 11:44:38 +00:00
/* Subnet lookup cache */
static ipv4_t cache_ipv4_address[2];
static subnet_t *cache_ipv4_subnet[2];
static bool cache_ipv4_valid[2];
static int cache_ipv4_slot;
static ipv6_t cache_ipv6_address[2];
static subnet_t *cache_ipv6_subnet[2];
static bool cache_ipv6_valid[2];
static int cache_ipv6_slot;
2019-08-26 11:44:38 +00:00
static mac_t cache_mac_address[2];
static subnet_t *cache_mac_subnet[2];
static bool cache_mac_valid[2];
static int cache_mac_slot;
2019-08-26 11:44:41 +00:00
void subnet_cache_flush(void) {
2019-08-26 11:44:38 +00:00
cache_ipv4_valid[0] = cache_ipv4_valid[1] = false;
cache_ipv6_valid[0] = cache_ipv6_valid[1] = false;
2019-08-26 11:44:38 +00:00
cache_mac_valid[0] = cache_mac_valid[1] = false;
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
/* Subnet comparison */
2019-08-26 11:44:38 +00:00
static int subnet_compare_mac(const subnet_t *a, const subnet_t *b) {
2019-08-26 11:44:36 +00:00
int result;
result = memcmp(&a->net.mac.address, &b->net.mac.address, sizeof(mac_t));
2019-08-26 11:44:38 +00:00
if(result)
return result;
result = a->weight - b->weight;
2019-08-26 11:44:36 +00:00
if(result || !a->owner || !b->owner)
return result;
return strcmp(a->owner->name, b->owner->name);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
static int subnet_compare_ipv4(const subnet_t *a, const subnet_t *b) {
2019-08-26 11:44:36 +00:00
int result;
2019-08-26 11:44:38 +00:00
result = b->net.ipv4.prefixlength - a->net.ipv4.prefixlength;
2019-08-26 11:44:36 +00:00
if(result)
return result;
2019-08-26 11:44:38 +00:00
result = memcmp(&a->net.ipv4.address, &b->net.ipv4.address, sizeof(ipv4_t));
if(result)
return result;
result = a->weight - b->weight;
2019-08-26 11:44:36 +00:00
if(result || !a->owner || !b->owner)
return result;
return strcmp(a->owner->name, b->owner->name);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
static int subnet_compare_ipv6(const subnet_t *a, const subnet_t *b) {
2019-08-26 11:44:36 +00:00
int result;
2019-08-26 11:44:38 +00:00
result = b->net.ipv6.prefixlength - a->net.ipv6.prefixlength;
2019-08-26 11:44:36 +00:00
if(result)
return result;
2019-08-26 11:44:38 +00:00
result = memcmp(&a->net.ipv6.address, &b->net.ipv6.address, sizeof(ipv6_t));
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(result)
return result;
result = a->weight - b->weight;
2019-08-26 11:44:36 +00:00
if(result || !a->owner || !b->owner)
return result;
return strcmp(a->owner->name, b->owner->name);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
int subnet_compare(const subnet_t *a, const subnet_t *b) {
2019-08-26 11:44:36 +00:00
int result;
result = a->type - b->type;
if(result)
return result;
switch (a->type) {
case SUBNET_MAC:
return subnet_compare_mac(a, b);
case SUBNET_IPV4:
return subnet_compare_ipv4(a, b);
case SUBNET_IPV6:
return subnet_compare_ipv6(a, b);
default:
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "subnet_compare() was called with unknown subnet type %d, exitting!",
2019-08-26 11:44:36 +00:00
a->type);
exit(0);
}
return 0;
2019-08-26 11:44:36 +00:00
}
/* Initialising trees */
2019-08-26 11:44:38 +00:00
void init_subnets(void) {
2019-08-26 11:44:36 +00:00
subnet_tree = avl_alloc_tree((avl_compare_t) subnet_compare, (avl_action_t) free_subnet);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
subnet_cache_flush();
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
void exit_subnets(void) {
2019-08-26 11:44:36 +00:00
avl_delete_tree(subnet_tree);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
avl_tree_t *new_subnet_tree(void) {
2019-08-26 11:44:36 +00:00
return avl_alloc_tree((avl_compare_t) subnet_compare, NULL);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
void free_subnet_tree(avl_tree_t *subnet_tree) {
2019-08-26 11:44:36 +00:00
avl_delete_tree(subnet_tree);
2019-08-26 11:44:36 +00:00
}
/* Allocating and freeing space for subnets */
2019-08-26 11:44:38 +00:00
subnet_t *new_subnet(void) {
2019-08-26 11:44:36 +00:00
return xmalloc_and_zero(sizeof(subnet_t));
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
void free_subnet(subnet_t *subnet) {
2019-08-26 11:44:36 +00:00
free(subnet);
2019-08-26 11:44:36 +00:00
}
/* Adding and removing subnets */
2019-08-26 11:44:38 +00:00
void subnet_add(node_t *n, subnet_t *subnet) {
2019-08-26 11:44:36 +00:00
subnet->owner = n;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
avl_insert(subnet_tree, subnet);
avl_insert(n->subnet_tree, subnet);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
subnet_cache_flush();
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
void subnet_del(node_t *n, subnet_t *subnet) {
2019-08-26 11:44:36 +00:00
avl_delete(n->subnet_tree, subnet);
avl_delete(subnet_tree, subnet);
2019-08-26 11:44:38 +00:00
subnet_cache_flush();
2019-08-26 11:44:36 +00:00
}
/* Ascii representation of subnets */
2019-08-26 11:44:38 +00:00
bool str2net(subnet_t *subnet, const char *subnetstr) {
2019-08-26 11:44:36 +00:00
int i, l;
uint16_t x[8];
2019-08-26 11:44:38 +00:00
int weight = 10;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(sscanf(subnetstr, "%hu.%hu.%hu.%hu/%d#%d",
&x[0], &x[1], &x[2], &x[3], &l, &weight) >= 5) {
2019-08-26 11:44:38 +00:00
if(l < 0 || l > 32)
return false;
2019-08-26 11:44:36 +00:00
subnet->type = SUBNET_IPV4;
subnet->net.ipv4.prefixlength = l;
2019-08-26 11:44:38 +00:00
subnet->weight = weight;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
for(i = 0; i < 4; i++) {
if(x[i] > 255)
return false;
2019-08-26 11:44:36 +00:00
subnet->net.ipv4.address.x[i] = x[i];
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
return true;
}
2019-08-26 11:44:38 +00:00
if(sscanf(subnetstr, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx/%d#%d",
2019-08-26 11:44:36 +00:00
&x[0], &x[1], &x[2], &x[3], &x[4], &x[5], &x[6], &x[7],
2019-08-26 11:44:38 +00:00
&l, &weight) >= 9) {
2019-08-26 11:44:38 +00:00
if(l < 0 || l > 128)
return false;
2019-08-26 11:44:36 +00:00
subnet->type = SUBNET_IPV6;
subnet->net.ipv6.prefixlength = l;
2019-08-26 11:44:38 +00:00
subnet->weight = weight;
2019-08-26 11:44:36 +00:00
for(i = 0; i < 8; i++)
subnet->net.ipv6.address.x[i] = htons(x[i]);
return true;
}
2019-08-26 11:44:38 +00:00
if(sscanf(subnetstr, "%hu.%hu.%hu.%hu#%d", &x[0], &x[1], &x[2], &x[3], &weight) >= 4) {
2019-08-26 11:44:36 +00:00
subnet->type = SUBNET_IPV4;
subnet->net.ipv4.prefixlength = 32;
2019-08-26 11:44:38 +00:00
subnet->weight = weight;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
for(i = 0; i < 4; i++) {
if(x[i] > 255)
return false;
2019-08-26 11:44:36 +00:00
subnet->net.ipv4.address.x[i] = x[i];
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
return true;
}
2019-08-26 11:44:38 +00:00
if(sscanf(subnetstr, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx#%d",
&x[0], &x[1], &x[2], &x[3], &x[4], &x[5], &x[6], &x[7], &weight) >= 8) {
2019-08-26 11:44:36 +00:00
subnet->type = SUBNET_IPV6;
subnet->net.ipv6.prefixlength = 128;
2019-08-26 11:44:38 +00:00
subnet->weight = weight;
2019-08-26 11:44:36 +00:00
for(i = 0; i < 8; i++)
subnet->net.ipv6.address.x[i] = htons(x[i]);
return true;
}
2019-08-26 11:44:38 +00:00
if(sscanf(subnetstr, "%hx:%hx:%hx:%hx:%hx:%hx#%d",
&x[0], &x[1], &x[2], &x[3], &x[4], &x[5], &weight) >= 6) {
2019-08-26 11:44:36 +00:00
subnet->type = SUBNET_MAC;
2019-08-26 11:44:38 +00:00
subnet->weight = weight;
2019-08-26 11:44:36 +00:00
for(i = 0; i < 6; i++)
subnet->net.mac.address.x[i] = x[i];
return true;
}
return false;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
bool net2str(char *netstr, int len, const subnet_t *subnet) {
2019-08-26 11:44:36 +00:00
if(!netstr || !subnet) {
2019-08-26 11:44:41 +00:00
logger(LOG_ERR, "net2str() was called with netstr=%p, subnet=%p!", netstr, subnet);
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:36 +00:00
switch (subnet->type) {
case SUBNET_MAC:
2019-08-26 11:44:38 +00:00
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx#%d",
2019-08-26 11:44:36 +00:00
subnet->net.mac.address.x[0],
subnet->net.mac.address.x[1],
subnet->net.mac.address.x[2],
subnet->net.mac.address.x[3],
2019-08-26 11:44:38 +00:00
subnet->net.mac.address.x[4],
subnet->net.mac.address.x[5],
subnet->weight);
2019-08-26 11:44:36 +00:00
break;
case SUBNET_IPV4:
2019-08-26 11:44:38 +00:00
snprintf(netstr, len, "%hu.%hu.%hu.%hu/%d#%d",
2019-08-26 11:44:36 +00:00
subnet->net.ipv4.address.x[0],
subnet->net.ipv4.address.x[1],
subnet->net.ipv4.address.x[2],
2019-08-26 11:44:38 +00:00
subnet->net.ipv4.address.x[3],
subnet->net.ipv4.prefixlength,
subnet->weight);
2019-08-26 11:44:36 +00:00
break;
case SUBNET_IPV6:
2019-08-26 11:44:38 +00:00
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx/%d#%d",
2019-08-26 11:44:36 +00:00
ntohs(subnet->net.ipv6.address.x[0]),
ntohs(subnet->net.ipv6.address.x[1]),
ntohs(subnet->net.ipv6.address.x[2]),
ntohs(subnet->net.ipv6.address.x[3]),
ntohs(subnet->net.ipv6.address.x[4]),
ntohs(subnet->net.ipv6.address.x[5]),
ntohs(subnet->net.ipv6.address.x[6]),
ntohs(subnet->net.ipv6.address.x[7]),
2019-08-26 11:44:38 +00:00
subnet->net.ipv6.prefixlength,
subnet->weight);
2019-08-26 11:44:36 +00:00
break;
default:
logger(LOG_ERR,
2019-08-26 11:44:38 +00:00
"net2str() was called with unknown subnet type %d, exiting!",
2019-08-26 11:44:36 +00:00
subnet->type);
exit(0);
}
return true;
2019-08-26 11:44:36 +00:00
}
/* Subnet lookup routines */
2019-08-26 11:44:38 +00:00
subnet_t *lookup_subnet(const node_t *owner, const subnet_t *subnet) {
2019-08-26 11:44:36 +00:00
return avl_search(owner->subnet_tree, subnet);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:39 +00:00
subnet_t *lookup_subnet_mac(const node_t *owner, const mac_t *address) {
subnet_t *p, *r = NULL;
2019-08-26 11:44:38 +00:00
avl_node_t *n;
int i;
// Check if this address is cached
for(i = 0; i < 2; i++) {
if(!cache_mac_valid[i])
continue;
2019-08-26 11:44:39 +00:00
if(owner && cache_mac_subnet[i] && cache_mac_subnet[i]->owner != owner)
continue;
2019-08-26 11:44:38 +00:00
if(!memcmp(address, &cache_mac_address[i], sizeof *address))
return cache_mac_subnet[i];
}
// Search all subnets for a matching one
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:39 +00:00
for(n = owner ? owner->subnet_tree->head : subnet_tree->head; n; n = n->next) {
2019-08-26 11:44:38 +00:00
p = n->data;
2019-08-26 11:44:39 +00:00
if(!p || p->type != SUBNET_MAC)
2019-08-26 11:44:38 +00:00
continue;
if(!memcmp(address, &p->net.mac.address, sizeof *address)) {
r = p;
if(p->owner->status.reachable)
break;
}
}
// Cache the result
cache_mac_slot = !cache_mac_slot;
memcpy(&cache_mac_address[cache_mac_slot], address, sizeof *address);
cache_mac_subnet[cache_mac_slot] = r;
cache_mac_valid[cache_mac_slot] = true;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
return r;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
subnet_t *lookup_subnet_ipv4(const ipv4_t *address) {
2019-08-26 11:44:39 +00:00
subnet_t *p, *r = NULL;
2019-08-26 11:44:38 +00:00
avl_node_t *n;
int i;
// Check if this address is cached
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
for(i = 0; i < 2; i++) {
if(!cache_ipv4_valid[i])
continue;
if(!memcmp(address, &cache_ipv4_address[i], sizeof *address))
return cache_ipv4_subnet[i];
}
// Search all subnets for a matching one
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
for(n = subnet_tree->head; n; n = n->next) {
p = n->data;
2019-08-26 11:44:39 +00:00
if(!p || p->type != SUBNET_IPV4)
2019-08-26 11:44:38 +00:00
continue;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(!maskcmp(address, &p->net.ipv4.address, p->net.ipv4.prefixlength)) {
r = p;
if(p->owner->status.reachable)
2019-08-26 11:44:36 +00:00
break;
}
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
// Cache the result
cache_ipv4_slot = !cache_ipv4_slot;
memcpy(&cache_ipv4_address[cache_ipv4_slot], address, sizeof *address);
cache_ipv4_subnet[cache_ipv4_slot] = r;
cache_ipv4_valid[cache_ipv4_slot] = true;
return r;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
subnet_t *lookup_subnet_ipv6(const ipv6_t *address) {
2019-08-26 11:44:39 +00:00
subnet_t *p, *r = NULL;
2019-08-26 11:44:38 +00:00
avl_node_t *n;
int i;
// Check if this address is cached
for(i = 0; i < 2; i++) {
if(!cache_ipv6_valid[i])
continue;
if(!memcmp(address, &cache_ipv6_address[i], sizeof *address))
return cache_ipv6_subnet[i];
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
// Search all subnets for a matching one
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
for(n = subnet_tree->head; n; n = n->next) {
p = n->data;
2019-08-26 11:44:39 +00:00
if(!p || p->type != SUBNET_IPV6)
2019-08-26 11:44:38 +00:00
continue;
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if(!maskcmp(address, &p->net.ipv6.address, p->net.ipv6.prefixlength)) {
r = p;
if(p->owner->status.reachable)
2019-08-26 11:44:36 +00:00
break;
}
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
// Cache the result
cache_ipv6_slot = !cache_ipv6_slot;
memcpy(&cache_ipv6_address[cache_ipv6_slot], address, sizeof *address);
cache_ipv6_subnet[cache_ipv6_slot] = r;
cache_ipv6_valid[cache_ipv6_slot] = true;
return r;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:36 +00:00
void subnet_update(node_t *owner, subnet_t *subnet, bool up) {
avl_node_t *node;
int i;
2019-08-26 11:44:41 +00:00
char *envp[9] = {NULL};
2019-08-26 11:44:38 +00:00
char netstr[MAXNETSTR];
2019-08-26 11:44:36 +00:00
char *name, *address, *port;
2019-08-26 11:44:38 +00:00
char empty[] = "";
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
// Prepare environment variables to be passed to the script
xasprintf(&envp[0], "NETNAME=%s", netname ? : "");
xasprintf(&envp[1], "DEVICE=%s", device ? : "");
xasprintf(&envp[2], "INTERFACE=%s", iface ? : "");
xasprintf(&envp[3], "NODE=%s", owner->name);
2019-08-26 11:44:36 +00:00
if(owner != myself) {
sockaddr2str(&owner->address, &address, &port);
2019-08-26 11:44:38 +00:00
// 4 and 5 are reserved for SUBNET and WEIGHT
xasprintf(&envp[6], "REMOTEADDRESS=%s", address);
xasprintf(&envp[7], "REMOTEPORT=%s", port);
2019-08-26 11:44:36 +00:00
}
name = up ? "subnet-up" : "subnet-down";
if(!subnet) {
for(node = owner->subnet_tree->head; node; node = node->next) {
subnet = node->data;
2019-08-26 11:44:38 +00:00
if(!net2str(netstr, sizeof netstr, subnet))
2019-08-26 11:44:36 +00:00
continue;
2019-08-26 11:44:38 +00:00
// Strip the weight from the subnet, and put it in its own environment variable
2019-08-26 11:44:39 +00:00
char *weight = strchr(netstr, '#');
2019-08-26 11:44:38 +00:00
if(weight)
*weight++ = 0;
else
weight = empty;
// Prepare the SUBNET and WEIGHT variables
if(envp[4])
free(envp[4]);
if(envp[5])
free(envp[5]);
xasprintf(&envp[4], "SUBNET=%s", netstr);
xasprintf(&envp[5], "WEIGHT=%s", weight);
2019-08-26 11:44:36 +00:00
execute_script(name, envp);
}
} else {
2019-08-26 11:44:39 +00:00
if(net2str(netstr, sizeof netstr, subnet)) {
2019-08-26 11:44:38 +00:00
// Strip the weight from the subnet, and put it in its own environment variable
2019-08-26 11:44:39 +00:00
char *weight = strchr(netstr, '#');
2019-08-26 11:44:38 +00:00
if(weight)
*weight++ = 0;
else
weight = empty;
// Prepare the SUBNET and WEIGHT variables
xasprintf(&envp[4], "SUBNET=%s", netstr);
xasprintf(&envp[5], "WEIGHT=%s", weight);
2019-08-26 11:44:36 +00:00
execute_script(name, envp);
2019-08-26 11:44:38 +00:00
}
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
for(i = 0; envp[i] && i < 9; i++)
2019-08-26 11:44:36 +00:00
free(envp[i]);
}
2019-08-26 11:44:38 +00:00
void dump_subnets(void) {
2019-08-26 11:44:36 +00:00
char netstr[MAXNETSTR];
subnet_t *subnet;
avl_node_t *node;
2019-08-26 11:44:38 +00:00
logger(LOG_DEBUG, "Subnet list:");
2019-08-26 11:44:36 +00:00
for(node = subnet_tree->head; node; node = node->next) {
subnet = node->data;
if(!net2str(netstr, sizeof netstr, subnet))
continue;
2019-08-26 11:44:38 +00:00
logger(LOG_DEBUG, " %s owner %s", netstr, subnet->owner->name);
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
logger(LOG_DEBUG, "End of subnet list.");
2019-08-26 11:44:36 +00:00
}