tinc/src/connection.c

144 lines
2.8 KiB
C
Raw Normal View History

/*
2000-11-20 19:12:17 +00:00
connection.c -- connection list management
Copyright (C) 2000-2004 Guus Sliepen <guus@tinc-vpn.org>,
2000-2004 Ivo Timmermans <ivo@tinc-vpn.org>
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"
2000-11-20 19:12:17 +00:00
#include "avl_tree.h"
#include "conf.h"
#include "list.h"
#include "logger.h"
2002-09-09 21:25:28 +00:00
#include "net.h" /* Don't ask. */
2002-02-10 21:57:54 +00:00
#include "netutl.h"
#include "subnet.h"
#include "utils.h"
2000-10-29 00:02:20 +00:00
#include "xalloc.h"
avl_tree_t *connection_tree; /* Meta connections */
connection_t *broadcast;
static int connection_compare(const connection_t *a, const connection_t *b)
{
return (void *)a - (void *)b;
}
2000-11-20 19:12:17 +00:00
void init_connections(void)
{
2002-09-09 21:25:28 +00:00
cp();
connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, NULL);
broadcast = new_connection();
broadcast->name = xstrdup(_("everyone"));
broadcast->hostname = xstrdup(_("BROADCAST"));
}
void exit_connections(void)
{
2002-09-09 21:25:28 +00:00
cp();
avl_delete_tree(connection_tree);
free_connection(broadcast);
}
connection_t *new_connection(void)
{
2002-09-09 21:25:28 +00:00
connection_t *c;
cp();
2003-08-28 21:05:11 +00:00
c = xmalloc_and_zero(sizeof(connection_t));
2002-09-09 21:25:28 +00:00
if(!c)
return NULL;
2002-09-09 21:25:28 +00:00
gettimeofday(&c->start, NULL);
2002-09-09 21:25:28 +00:00
return c;
}
2002-09-09 22:33:31 +00:00
void free_connection(connection_t *c)
{
2002-09-09 21:25:28 +00:00
cp();
if(c->hostname)
free(c->hostname);
if(c->inkey)
free(c->inkey);
if(c->outkey)
free(c->outkey);
if(c->mychallenge)
free(c->mychallenge);
if(c->hischallenge)
free(c->hischallenge);
free(c);
}
2002-09-09 22:33:31 +00:00
void connection_add(connection_t *c)
{
2002-09-09 21:25:28 +00:00
cp();
avl_insert(connection_tree, c);
}
2002-09-09 22:33:31 +00:00
void connection_del(connection_t *c)
{
2002-09-09 21:25:28 +00:00
cp();
avl_delete(connection_tree, c);
}
void dump_connections(void)
{
2002-09-09 21:25:28 +00:00
avl_node_t *node;
connection_t *c;
cp();
logger(LOG_DEBUG, _("Connections:"));
2002-09-09 21:25:28 +00:00
for(node = connection_tree->head; node; node = node->next) {
2003-08-28 21:05:11 +00:00
c = node->data;
logger(LOG_DEBUG, _(" %s at %s options %lx socket %d status %04x"),
2003-07-29 10:50:15 +00:00
c->name, c->hostname, c->options, c->socket, *(uint32_t *)&c->status);
2002-09-09 21:25:28 +00:00
}
logger(LOG_DEBUG, _("End of connections."));
}
2003-07-22 20:55:21 +00:00
bool read_connection_config(connection_t *c)
{
2002-09-09 21:25:28 +00:00
char *fname;
int x;
cp();
asprintf(&fname, "%s/hosts/%s", confbase, c->name);
x = read_config_file(c->config_tree, fname);
free(fname);
2003-07-22 20:55:21 +00:00
return x == 0;
}