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-06-05 16:09:55 +00:00
|
|
|
$Id: connection.c,v 1.1.2.11 2001/06/05 16:09:55 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-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
|
|
|
|
|
|
|
/* Root of the connection list */
|
|
|
|
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_tree_t *connection_tree;
|
|
|
|
avl_tree_t *id_tree;
|
|
|
|
|
|
|
|
/* Pointer to connection describing myself */
|
2000-11-22 18:54:08 +00:00
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
connection_t *myself = NULL;
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
/* Initialization and callbacks */
|
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)
|
2000-11-22 18:54:08 +00:00
|
|
|
{
|
|
|
|
ipv4_t result;
|
2001-01-05 23:53:53 +00:00
|
|
|
|
2000-11-22 18:54:08 +00:00
|
|
|
result = a->address - b->address;
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
else
|
|
|
|
return a->port - b->port;
|
|
|
|
}
|
|
|
|
|
|
|
|
int id_compare(connection_t *a, connection_t *b)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2000-11-20 19:12:17 +00:00
|
|
|
return strcmp(a->name, b->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_connections(void)
|
|
|
|
{
|
2001-01-05 23:53:53 +00:00
|
|
|
connection_tree = avl_alloc_tree((avl_compare_t)connection_compare, (avl_action_t)free_connection);
|
|
|
|
id_tree = avl_alloc_tree((avl_compare_t)id_compare, NULL);
|
2000-11-20 19:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Creation and deletion of connection elements */
|
|
|
|
|
|
|
|
connection_t *new_connection(void)
|
|
|
|
{
|
2000-11-24 23:13:07 +00:00
|
|
|
connection_t *p = (connection_t *)xmalloc_and_zero(sizeof(*p));
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
p->subnet_tree = avl_alloc_tree((avl_compare_t)subnet_compare, NULL);
|
2001-01-07 15:25:49 +00:00
|
|
|
p->queue = list_alloc((list_action_t)free);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
void free_connection(connection_t *p)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-01-07 15:25:49 +00:00
|
|
|
if(p->queue)
|
|
|
|
list_delete_list(p->queue);
|
2001-06-05 16:09:55 +00:00
|
|
|
if(p->name)
|
2000-10-11 10:35:17 +00:00
|
|
|
free(p->name);
|
|
|
|
if(p->hostname)
|
|
|
|
free(p->hostname);
|
2000-10-20 15:34:38 +00:00
|
|
|
if(p->rsa_key)
|
|
|
|
RSA_free(p->rsa_key);
|
2000-10-14 17:04:16 +00:00
|
|
|
if(p->cipher_pktkey)
|
|
|
|
free(p->cipher_pktkey);
|
2000-10-15 00:59:37 +00:00
|
|
|
if(p->buffer)
|
|
|
|
free(p->buffer);
|
2000-10-29 02:07:41 +00:00
|
|
|
if(p->config)
|
|
|
|
clear_config(&p->config);
|
2000-10-11 10:35:17 +00:00
|
|
|
free(p);
|
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
remove all marked connections
|
|
|
|
*/
|
2000-11-20 19:12:17 +00:00
|
|
|
void prune_connection_tree(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_node_t *node, *next;
|
2000-11-20 19:12:17 +00:00
|
|
|
connection_t *cl;
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
for(node = connection_tree->head; node; node = next)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2001-01-05 23:53:53 +00:00
|
|
|
next = node->next;
|
|
|
|
cl = (connection_t *)node->data;
|
2000-11-20 19:12:17 +00:00
|
|
|
if(cl->status.remove)
|
|
|
|
connection_del(cl);
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
free all elements of connection
|
2000-10-11 10:35:17 +00:00
|
|
|
*/
|
2000-11-20 19:12:17 +00:00
|
|
|
void destroy_connection_tree(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_delete_tree(id_tree);
|
|
|
|
avl_delete_tree(connection_tree);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Linked list management */
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
void connection_add(connection_t *cl)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_insert(connection_tree, cl);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2000-11-22 18:54:08 +00:00
|
|
|
void id_add(connection_t *cl)
|
|
|
|
{
|
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_insert(id_tree, cl);
|
2000-11-22 18:54:08 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
void connection_del(connection_t *cl)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
|
|
|
cp
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_delete(id_tree, cl);
|
|
|
|
avl_delete(connection_tree, cl);
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup functions */
|
|
|
|
|
2000-11-22 18:54:08 +00:00
|
|
|
connection_t *lookup_connection(ipv4_t address, short unsigned int port)
|
|
|
|
{
|
2000-11-22 22:18:03 +00:00
|
|
|
connection_t cl;
|
2000-11-22 18:54:08 +00:00
|
|
|
cp
|
|
|
|
cl.address = address;
|
|
|
|
cl.port = port;
|
|
|
|
|
2001-01-05 23:53:53 +00:00
|
|
|
return avl_search(connection_tree, &cl);
|
2000-11-22 18:54:08 +00:00
|
|
|
}
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
connection_t *lookup_id(char *name)
|
2000-10-11 22:01:02 +00:00
|
|
|
{
|
2000-11-20 22:13:14 +00:00
|
|
|
connection_t cl, *p;
|
2000-10-11 22:01:02 +00:00
|
|
|
cp
|
2000-11-20 19:12:17 +00:00
|
|
|
cl.name = name;
|
2001-01-05 23:53:53 +00:00
|
|
|
p = avl_search(id_tree, &cl);
|
2000-11-20 22:13:14 +00:00
|
|
|
if(p && p->status.active)
|
|
|
|
return p;
|
|
|
|
else
|
|
|
|
return NULL;
|
2000-10-11 22:01:02 +00:00
|
|
|
}
|
|
|
|
|
2000-10-11 10:35:17 +00:00
|
|
|
/* Debugging */
|
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
void dump_connection_list(void)
|
2000-10-11 10:35:17 +00:00
|
|
|
{
|
2001-01-05 23:53:53 +00:00
|
|
|
avl_node_t *node;
|
2000-11-20 19:12:17 +00:00
|
|
|
connection_t *cl;
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
syslog(LOG_DEBUG, _("Connection list:"));
|
|
|
|
|
2001-03-04 13:59:32 +00:00
|
|
|
syslog(LOG_DEBUG, _(" %s at %s port %hd options %ld sockets %d, %d status %04x"),
|
|
|
|
myself->name, myself->hostname, myself->port, myself->options,
|
2000-11-20 19:12:17 +00:00
|
|
|
myself->socket, myself->meta_socket, myself->status);
|
2000-10-24 15:46:18 +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-01-05 23:53:53 +00:00
|
|
|
cl = (connection_t *)node->data;
|
2001-03-04 13:59:32 +00:00
|
|
|
syslog(LOG_DEBUG, _(" %s at %s port %hd options %ld sockets %d, %d status %04x"),
|
|
|
|
cl->name, cl->hostname, cl->port, cl->options,
|
2000-11-20 19:12:17 +00:00
|
|
|
cl->socket, cl->meta_socket, cl->status);
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
2000-11-20 19:12:17 +00:00
|
|
|
|
2000-10-11 22:01:02 +00:00
|
|
|
syslog(LOG_DEBUG, _("End of connection list."));
|
2000-10-11 10:35:17 +00:00
|
|
|
cp
|
|
|
|
}
|
2000-10-14 17:04:16 +00:00
|
|
|
|
2000-11-20 19:12:17 +00:00
|
|
|
int read_host_config(connection_t *cl)
|
2000-10-14 17:04:16 +00:00
|
|
|
{
|
|
|
|
char *fname;
|
|
|
|
int x;
|
|
|
|
cp
|
2000-10-15 00:59:37 +00:00
|
|
|
asprintf(&fname, "%s/hosts/%s", confbase, cl->name);
|
2000-10-14 17:04:16 +00:00
|
|
|
x = read_config_file(&cl->config, fname);
|
|
|
|
free(fname);
|
|
|
|
cp
|
|
|
|
return x;
|
|
|
|
}
|