2000-10-11 10:35:17 +00:00
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
connection.c -- connection list management
|
2002-06-21 10:11:37 +00:00
|
|
|
Copyright (C) 2000-2002 Guus Sliepen <guus@sliepen.eu.org>,
|
|
|
|
2000-2002 Ivo Timmermans <ivo@o2w.nl>
|
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.
|
|
|
|
|
2002-09-10 22:13:01 +00:00
|
|
|
$Id: connection.c,v 1.1.2.35 2002/09/10 22:12:33 guus Exp $
|
2000-10-11 10:35:17 +00:00
|
|
|
*/
|
|
|
|
|
2000-11-03 22:35:12 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-10-11 22:01:02 +00:00
|
|
|
#include <syslog.h>
|
2001-06-29 13:09:55 +00:00
|
|
|
#include <string.h>
|
2001-10-28 22:42:49 +00:00
|
|
|
#include <sys/time.h>
|
2000-10-11 22:01:02 +00:00
|
|
|
|
2001-01-05 23:53:53 +00:00
|
|
|
#include <avl_tree.h>
|
2001-01-07 15:25:49 +00:00
|
|
|
#include <list.h>
|
2000-11-20 19:12:17 +00:00
|
|
|
|
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-10-14 17:04:16 +00:00
|
|
|
#include "conf.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
#include <utils.h>
|
2000-11-20 19:41:13 +00:00
|
|
|
#include "subnet.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2000-10-29 00:02:20 +00:00
|
|
|
#include "xalloc.h"
|
2000-10-14 17:04:16 +00:00
|
|
|
#include "system.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
|
|
|
|
2002-09-09 22:33:31 +00:00
|
|
|
int connection_compare(connection_t *a, connection_t *b)
|
2001-07-15 18:07:31 +00:00
|
|
|
{
|
2002-09-09 21:25:28 +00:00
|
|
|
return a - 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();
|
|
|
|
|
|
|
|
connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, NULL);
|
|
|
|
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();
|
|
|
|
|
|
|
|
c = (connection_t *) xmalloc_and_zero(sizeof(connection_t));
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
syslog(LOG_DEBUG, _("Connections:"));
|
|
|
|
|
|
|
|
for(node = connection_tree->head; node; node = node->next) {
|
|
|
|
c = (connection_t *) node->data;
|
|
|
|
syslog(LOG_DEBUG, _(" %s at %s options %lx socket %d status %04x"),
|
|
|
|
c->name, c->hostname, c->options, c->socket, c->status);
|
|
|
|
}
|
|
|
|
|
|
|
|
syslog(LOG_DEBUG, _("End of connections."));
|
2000-10-14 17:04:16 +00:00
|
|
|
}
|
2001-10-27 12:13:17 +00:00
|
|
|
|
2002-09-09 22:33:31 +00:00
|
|
|
int 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);
|
|
|
|
|
|
|
|
return x;
|
2001-10-27 12:13:17 +00:00
|
|
|
}
|