2000-10-11 10:35:17 +00:00
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
connection.c -- connection list management
|
2004-03-21 14:21:22 +00:00
|
|
|
Copyright (C) 2000-2004 Guus Sliepen <guus@tinc-vpn.org>,
|
|
|
|
2000-2004 Ivo Timmermans <ivo@tinc-vpn.org>
|
2000-10-11 10:35:17 +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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2004-03-21 14:21:22 +00:00
|
|
|
$Id$
|
2000-10-11 10:35:17 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "system.h"
|
2000-11-20 19:12:17 +00:00
|
|
|
|
2003-07-17 15:06:27 +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"
|
2000-11-20 19:41:13 +00:00
|
|
|
#include "subnet.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "utils.h"
|
2000-10-29 00:02:20 +00:00
|
|
|
#include "xalloc.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2001-07-20 20:25:10 +00:00
|
|
|
avl_tree_t *connection_tree; /* Meta connections */
|
2002-09-04 16:26:45 +00:00
|
|
|
connection_t *broadcast;
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2003-07-24 12:08:16 +00:00
|
|
|
static int connection_compare(const connection_t *a, const connection_t *b)
|
2001-07-15 18:07:31 +00:00
|
|
|
{
|
2003-06-25 20:55:05 +00:00
|
|
|
return (void *)a - (void *)b;
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
void init_connections(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
2004-12-03 13:22:18 +00:00
|
|
|
connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, (avl_action_t) free);
|
2002-09-09 21:25:28 +00:00
|
|
|
broadcast = new_connection();
|
|
|
|
broadcast->name = xstrdup(_("everyone"));
|
|
|
|
broadcast->hostname = xstrdup(_("BROADCAST"));
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2001-10-30 16:34:32 +00:00
|
|
|
void exit_connections(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
|
|
|
avl_delete_tree(connection_tree);
|
|
|
|
free_connection(broadcast);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_t *new_connection(void)
|
2001-07-20 20:25:10 +00:00
|
|
|
{
|
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;
|
2001-10-28 22:42:49 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
gettimeofday(&c->start, NULL);
|
2001-10-28 22:42:49 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
return c;
|
2001-07-15 18:07:31 +00:00
|
|
|
}
|
|
|
|
|
2002-09-09 22:33:31 +00:00
|
|
|
void free_connection(connection_t *c)
|
2000-11-22 18:54:08 +00:00
|
|
|
{
|
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);
|
2000-11-22 18:54:08 +00:00
|
|
|
}
|
|
|
|
|
2002-09-09 22:33:31 +00:00
|
|
|
void connection_add(connection_t *c)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
|
|
|
avl_insert(connection_tree, c);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2002-09-09 22:33:31 +00:00
|
|
|
void connection_del(connection_t *c)
|
2001-07-20 20:25:10 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
cp();
|
|
|
|
|
|
|
|
avl_delete(connection_tree, c);
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void dump_connections(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
avl_node_t *node;
|
|
|
|
connection_t *c;
|
|
|
|
|
|
|
|
cp();
|
|
|
|
|
2003-07-12 17:41:48 +00:00
|
|
|
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;
|
2003-07-12 17:41:48 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_DEBUG, _("End of connections."));
|
2000-10-14 17:04:16 +00:00
|
|
|
}
|
2001-10-27 12:13:17 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
bool read_connection_config(connection_t *c)
|
2001-10-27 12:13:17 +00:00
|
|
|
{
|
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;
|
2001-10-27 12:13:17 +00:00
|
|
|
}
|