tinc/src/connection.c

138 lines
2.9 KiB
C
Raw Normal View History

/*
2000-11-20 19:12:17 +00:00
connection.c -- connection list management
2007-05-17 19:15:48 +00:00
Copyright (C) 2000-2007 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"
2000-11-20 19:12:17 +00:00
2007-05-18 10:05:26 +00:00
#include "splay_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"
2007-05-18 10:05:26 +00:00
splay_tree_t *connection_tree; /* Meta connections */
connection_t *broadcast;
2007-05-18 10:00:00 +00:00
static int connection_compare(const connection_t *a, const connection_t *b) {
return (void *)a - (void *)b;
}
2007-05-18 10:00:00 +00:00
void init_connections(void) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
connection_tree = splay_alloc_tree((splay_compare_t) connection_compare, (splay_action_t) free_connection);
2002-09-09 21:25:28 +00:00
broadcast = new_connection();
broadcast->name = xstrdup(_("everyone"));
broadcast->hostname = xstrdup(_("BROADCAST"));
}
2007-05-18 10:00:00 +00:00
void exit_connections(void) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_delete_tree(connection_tree);
2002-09-09 21:25:28 +00:00
free_connection(broadcast);
}
2007-05-18 10:00:00 +00:00
connection_t *new_connection(void) {
2002-09-09 21:25:28 +00:00
cp();
return xmalloc_and_zero(sizeof(connection_t));
}
2007-05-18 10:00:00 +00:00
void free_connection(connection_t *c) {
2002-09-09 21:25:28 +00:00
cp();
if(!c)
return;
2007-05-17 19:15:48 +00:00
if(c->name)
free(c->name);
if(c->hostname)
2002-09-09 21:25:28 +00:00
free(c->hostname);
if(c->inkey)
2002-09-09 21:25:28 +00:00
free(c->inkey);
if(c->outkey)
2002-09-09 21:25:28 +00:00
free(c->outkey);
if(c->mychallenge)
2002-09-09 21:25:28 +00:00
free(c->mychallenge);
if(c->hischallenge)
2002-09-09 21:25:28 +00:00
free(c->hischallenge);
if(c->buffer)
bufferevent_free(c->buffer);
if(event_initialized(&c->inevent))
event_del(&c->inevent);
2002-09-09 21:25:28 +00:00
free(c);
}
2007-05-18 10:00:00 +00:00
void connection_add(connection_t *c) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_insert(connection_tree, c);
}
2007-05-18 10:00:00 +00:00
void connection_del(connection_t *c) {
2002-09-09 21:25:28 +00:00
cp();
2007-05-18 10:05:26 +00:00
splay_delete(connection_tree, c);
}
2007-05-18 10:00:00 +00:00
void dump_connections(void) {
2007-05-18 10:05:26 +00:00
splay_node_t *node;
2002-09-09 21:25:28 +00:00
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"),
c->name, c->hostname, c->options, c->socket, c->status.value);
2002-09-09 21:25:28 +00:00
}
logger(LOG_DEBUG, _("End of connections."));
}
2007-05-18 10:00:00 +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;
}