2000-10-11 10:35:17 +00:00
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
connection.c -- connection list management
|
2009-09-24 21:29:46 +00:00
|
|
|
Copyright (C) 2000-2009 Guus Sliepen <guus@tinc-vpn.org>,
|
2006-04-26 13:52:58 +00:00
|
|
|
2000-2005 Ivo Timmermans
|
2009-09-25 19:14:56 +00:00
|
|
|
2008 Max Rijevski <maksuf@gmail.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.
|
|
|
|
|
2009-09-24 22:01:00 +00:00
|
|
|
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.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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
|
|
|
|
2007-05-18 10:05:26 +00:00
|
|
|
#include "splay_tree.h"
|
2008-12-11 14:44:44 +00:00
|
|
|
#include "cipher.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "conf.h"
|
2009-11-07 22:43:25 +00:00
|
|
|
#include "control_common.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#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
|
|
|
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_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
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
static int connection_compare(const connection_t *a, const connection_t *b) {
|
2009-09-13 12:08:59 +00:00
|
|
|
return a < b ? -1 : a == b ? 0 : 1;
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void init_connections(void) {
|
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();
|
2009-09-24 22:54:07 +00:00
|
|
|
broadcast->name = xstrdup("everyone");
|
|
|
|
broadcast->hostname = xstrdup("BROADCAST");
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void exit_connections(void) {
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_delete_tree(connection_tree);
|
2002-09-09 21:25:28 +00:00
|
|
|
free_connection(broadcast);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
connection_t *new_connection(void) {
|
2007-05-19 22:23:02 +00:00
|
|
|
return xmalloc_and_zero(sizeof(connection_t));
|
2001-07-15 18:07:31 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void free_connection(connection_t *c) {
|
2007-03-12 17:55:43 +00:00
|
|
|
if(!c)
|
|
|
|
return;
|
|
|
|
|
2007-05-17 19:15:48 +00:00
|
|
|
if(c->name)
|
|
|
|
free(c->name);
|
|
|
|
|
2007-03-12 17:55:43 +00:00
|
|
|
if(c->hostname)
|
2002-09-09 21:25:28 +00:00
|
|
|
free(c->hostname);
|
2007-03-12 17:55:43 +00:00
|
|
|
|
2008-12-11 14:44:44 +00:00
|
|
|
cipher_close(&c->incipher);
|
|
|
|
cipher_close(&c->outcipher);
|
2007-03-12 17:55:43 +00:00
|
|
|
|
|
|
|
if(c->hischallenge)
|
2002-09-09 21:25:28 +00:00
|
|
|
free(c->hischallenge);
|
|
|
|
|
2008-12-23 23:14:37 +00:00
|
|
|
if(c->config_tree)
|
|
|
|
exit_configuration(&c->config_tree);
|
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
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);
|
2000-11-22 18:54:08 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void connection_add(connection_t *c) {
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_insert(connection_tree, c);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void connection_del(connection_t *c) {
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_delete(connection_tree, c);
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 22:43:25 +00:00
|
|
|
bool dump_connections(connection_t *cdump) {
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_node_t *node;
|
2002-09-09 21:25:28 +00:00
|
|
|
connection_t *c;
|
|
|
|
|
|
|
|
for(node = connection_tree->head; node; node = node->next) {
|
2003-08-28 21:05:11 +00:00
|
|
|
c = node->data;
|
2009-11-07 22:43:25 +00:00
|
|
|
send_request(cdump, "%d %d %s at %s options %x socket %d status %04x",
|
|
|
|
CONTROL, REQ_DUMP_CONNECTIONS,
|
|
|
|
c->name, c->hostname, c->options, c->socket,
|
|
|
|
bitfield_to_int(&c->status, sizeof c->status));
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 22:43:25 +00:00
|
|
|
return send_request(cdump, "%d %d", CONTROL, REQ_DUMP_CONNECTIONS);
|
2000-10-14 17:04:16 +00:00
|
|
|
}
|
2001-10-27 12:13:17 +00:00
|
|
|
|
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;
|
|
|
|
|
2009-09-08 16:18:36 +00:00
|
|
|
xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
|
2002-09-09 21:25:28 +00:00
|
|
|
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
|
|
|
}
|