2000-10-11 10:35:17 +00:00
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
connection.c -- connection list management
|
2001-01-07 17:09:07 +00:00
|
|
|
Copyright (C) 2000,2001 Guus Sliepen <guus@sliepen.warande.net>,
|
|
|
|
2000,2001 Ivo Timmermans <itimmermans@bigfoot.com>
|
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.
|
|
|
|
|
2001-10-10 20:35:10 +00:00
|
|
|
$Id: connection.c,v 1.1.2.19 2001/10/10 20:35:10 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>
|
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
|
|
|
|
2000-10-14 17:04:16 +00:00
|
|
|
#include "net.h" /* Don't ask. */
|
2000-11-04 11:49:58 +00:00
|
|
|
#include "netutl.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
#include "config.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 */
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
int connection_compare(connection_t *a, connection_t *b)
|
2001-07-15 18:07:31 +00:00
|
|
|
{
|
2001-10-10 09:42:29 +00:00
|
|
|
return a->socket - b->socket;
|
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
|
|
|
{
|
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_tree = avl_alloc_tree((avl_compare_t)connection_compare, NULL);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void exit_connection(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_delete_tree(connection_tree);
|
2001-07-20 20:25:10 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_t *new_connection(void)
|
2001-07-20 20:25:10 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-10-10 20:35:10 +00:00
|
|
|
return (connection_t *)xmalloc_and_zero(sizeof(connection_t));
|
2001-07-15 18:07:31 +00:00
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void free_connection(connection_t *c)
|
2000-11-22 18:54:08 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
if(c->hostname)
|
|
|
|
free(c->hostname);
|
|
|
|
if(c->rsa_key)
|
|
|
|
RSA_free(c->rsa_key);
|
2001-10-10 20:35:10 +00:00
|
|
|
if(c->inkey)
|
|
|
|
free(c->inkey);
|
|
|
|
if(c->outkey)
|
|
|
|
free(c->outkey);
|
2001-10-10 09:42:29 +00:00
|
|
|
if(c->mychallenge)
|
|
|
|
free(c->mychallenge);
|
|
|
|
if(c->hischallenge)
|
|
|
|
free(c->hischallenge);
|
|
|
|
free(c);
|
2000-11-22 18:54:08 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void connection_add(connection_t *c)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
avl_insert(connection_tree, c);
|
2001-07-20 20:25:10 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void connection_del(connection_t *c)
|
2001-07-20 20:25:10 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
avl_delete(connection_tree, c);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_t *lookup_connection(ipv4_t address, short unsigned int port)
|
2000-11-22 18:54:08 +00:00
|
|
|
{
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_t c;
|
2000-11-22 18:54:08 +00:00
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
c.address = address;
|
|
|
|
c.port = port;
|
2000-11-22 18:54:08 +00:00
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
return avl_search(connection_tree, &c);
|
2000-10-11 22:01:02 +00:00
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
void dump_connections(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_node_t *node;
|
2001-10-10 09:42:29 +00:00
|
|
|
connection_t *c;
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
2001-10-10 09:42:29 +00:00
|
|
|
syslog(LOG_DEBUG, _("Connections:"));
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2001-01-05 23:53:53 +00:00
|
|
|
for(node = connection_tree->head; node; node = node->next)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2001-10-10 09:42:29 +00:00
|
|
|
c = (connection_t *)node->data;
|
|
|
|
syslog(LOG_DEBUG, _(" %s at %s port %hd options %ld socket %d status %04x"),
|
|
|
|
c->node->name, c->hostname, c->port, c->options,
|
2001-10-10 20:35:10 +00:00
|
|
|
c->socket, c->status);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2001-10-10 09:42:29 +00:00
|
|
|
syslog(LOG_DEBUG, _("End of connections."));
|
2000-10-14 17:04:16 +00:00
|
|
|
cp
|
|
|
|
}
|