tinc/src/edge.c

154 lines
3.1 KiB
C
Raw Normal View History

/*
2001-10-28 08:41:19 +00:00
edge.c -- edge tree management
Copyright (C) 2000-2006 Guus Sliepen <guus@tinc-vpn.org>,
2000-2005 Ivo Timmermans
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id$
*/
#include "system.h"
2007-05-18 10:05:26 +00:00
#include "splay_tree.h"
#include "edge.h"
#include "logger.h"
#include "netutl.h"
#include "node.h"
#include "utils.h"
#include "xalloc.h"
2007-05-18 10:05:26 +00:00
splay_tree_t *edge_weight_tree; /* Tree with all edges, sorted on weight */
2007-05-18 10:00:00 +00:00
static int edge_compare(const edge_t *a, const edge_t *b) {
2002-09-09 21:25:28 +00:00
return strcmp(a->to->name, b->to->name);
}
2007-05-18 10:00:00 +00:00
static int edge_weight_compare(const edge_t *a, const edge_t *b) {
2002-09-09 21:25:28 +00:00
int result;
2002-09-09 21:25:28 +00:00
result = a->weight - b->weight;
2002-09-09 21:25:28 +00:00
if(result)
return result;
2002-09-09 21:25:28 +00:00
result = strcmp(a->from->name, b->from->name);
2002-09-09 21:25:28 +00:00
if(result)
return result;
2002-09-09 21:25:28 +00:00
return strcmp(a->to->name, b->to->name);
}
2007-05-18 10:00:00 +00:00
void init_edges(void) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
edge_weight_tree = splay_alloc_tree((splay_compare_t) edge_weight_compare, NULL);
}
2007-05-18 10:05:26 +00:00
splay_tree_t *new_edge_tree(void) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
return splay_alloc_tree((splay_compare_t) edge_compare, (splay_action_t) free_edge);
}
2007-05-18 10:05:26 +00:00
void free_edge_tree(splay_tree_t *edge_tree) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_delete_tree(edge_tree);
}
2007-05-18 10:00:00 +00:00
void exit_edges(void) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_delete_tree(edge_weight_tree);
}
/* Creation and deletion of connection elements */
2007-05-18 10:00:00 +00:00
edge_t *new_edge(void) {
2002-09-09 21:25:28 +00:00
cp();
2003-08-28 21:05:11 +00:00
return xmalloc_and_zero(sizeof(edge_t));
}
2007-05-18 10:00:00 +00:00
void free_edge(edge_t *e) {
2002-09-09 21:25:28 +00:00
cp();
sockaddrfree(&e->address);
2002-09-09 21:25:28 +00:00
free(e);
}
2007-05-18 10:00:00 +00:00
void edge_add(edge_t *e) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_insert(edge_weight_tree, e);
splay_insert(e->from->edge_tree, e);
2002-09-09 21:25:28 +00:00
e->reverse = lookup_edge(e->to, e->from);
if(e->reverse)
e->reverse->reverse = e;
}
2007-05-18 10:00:00 +00:00
void edge_del(edge_t *e) {
2002-09-09 21:25:28 +00:00
cp();
if(e->reverse)
e->reverse->reverse = NULL;
2007-05-18 10:05:26 +00:00
splay_delete(edge_weight_tree, e);
splay_delete(e->from->edge_tree, e);
}
2007-05-18 10:00:00 +00:00
edge_t *lookup_edge(node_t *from, node_t *to) {
edge_t v;
2002-09-09 21:25:28 +00:00
cp();
v.from = from;
v.to = to;
2007-05-18 10:05:26 +00:00
return splay_search(from->edge_tree, &v);
}
int dump_edges(struct evbuffer *out) {
2007-05-18 10:05:26 +00:00
splay_node_t *node, *node2;
2002-09-09 21:25:28 +00:00
node_t *n;
edge_t *e;
char *address;
cp();
for(node = node_tree->head; node; node = node->next) {
2003-08-28 21:05:11 +00:00
n = node->data;
2002-09-09 21:25:28 +00:00
for(node2 = n->edge_tree->head; node2; node2 = node2->next) {
2003-08-28 21:05:11 +00:00
e = node2->data;
2002-09-09 21:25:28 +00:00
address = sockaddr2hostname(&e->address);
if(evbuffer_add_printf(out,
_(" %s to %s at %s options %lx weight %d\n"),
e->from->name, e->to->name, address,
e->options, e->weight) == -1) {
free(address);
return errno;
}
2002-09-09 21:25:28 +00:00
free(address);
}
2002-09-06 10:23:52 +00:00
}
return 0;
}