2000-10-11 10:35:17 +00:00
|
|
|
/*
|
2000-11-20 19:12:17 +00:00
|
|
|
connection.c -- connection list management
|
2013-05-01 15:17:22 +00:00
|
|
|
Copyright (C) 2000-2013 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
|
|
|
|
2012-10-07 19:59:53 +00:00
|
|
|
#include "list.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"
|
2013-05-01 15:17:22 +00:00
|
|
|
#include "rsa.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
|
|
|
|
2012-10-10 15:17:49 +00:00
|
|
|
list_t *connection_list;
|
2012-02-20 16:12:48 +00:00
|
|
|
connection_t *everyone;
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void init_connections(void) {
|
2012-10-07 19:59:53 +00:00
|
|
|
connection_list = list_alloc((list_action_t) free_connection);
|
2012-02-20 16:12:48 +00:00
|
|
|
everyone = new_connection();
|
|
|
|
everyone->name = xstrdup("everyone");
|
|
|
|
everyone->hostname = xstrdup("BROADCAST");
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void exit_connections(void) {
|
2012-10-07 19:59:53 +00:00
|
|
|
list_delete_list(connection_list);
|
2012-02-20 16:12:48 +00:00
|
|
|
free_connection(everyone);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
connection_t *new_connection(void) {
|
2013-05-01 15:31:33 +00:00
|
|
|
return xzalloc(sizeof(connection_t));
|
2001-07-15 18:07:31 +00:00
|
|
|
}
|
|
|
|
|
2012-10-07 19:02:40 +00:00
|
|
|
void free_connection(connection_t *c) {
|
|
|
|
if(!c)
|
|
|
|
return;
|
|
|
|
|
2014-12-29 21:57:18 +00:00
|
|
|
#ifndef DISABLE_LEGACY
|
2013-05-01 15:17:22 +00:00
|
|
|
cipher_close(c->incipher);
|
|
|
|
digest_close(c->indigest);
|
|
|
|
cipher_close(c->outcipher);
|
|
|
|
digest_close(c->outdigest);
|
2014-12-29 21:57:18 +00:00
|
|
|
rsa_free(c->rsa);
|
|
|
|
#endif
|
2007-03-12 17:55:43 +00:00
|
|
|
|
2012-02-26 11:33:16 +00:00
|
|
|
sptps_stop(&c->sptps);
|
2013-05-01 15:17:22 +00:00
|
|
|
ecdsa_free(c->ecdsa);
|
2011-07-10 19:02:34 +00:00
|
|
|
|
2012-10-07 19:02:40 +00:00
|
|
|
free(c->hischallenge);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2011-05-14 17:20:56 +00:00
|
|
|
buffer_clear(&c->inbuf);
|
|
|
|
buffer_clear(&c->outbuf);
|
2012-10-10 15:17:49 +00:00
|
|
|
|
2012-11-29 11:28:23 +00:00
|
|
|
io_del(&c->io);
|
2011-05-29 20:34:19 +00:00
|
|
|
|
2011-07-10 20:46:43 +00:00
|
|
|
if(c->socket > 0)
|
|
|
|
closesocket(c->socket);
|
|
|
|
|
2012-03-20 22:49:16 +00:00
|
|
|
free(c->name);
|
|
|
|
free(c->hostname);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2008-12-23 23:14:37 +00:00
|
|
|
if(c->config_tree)
|
|
|
|
exit_configuration(&c->config_tree);
|
|
|
|
|
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) {
|
2012-10-07 19:59:53 +00:00
|
|
|
list_insert_tail(connection_list, c);
|
2001-07-20 20:25:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void connection_del(connection_t *c) {
|
2012-10-09 11:23:12 +00:00
|
|
|
list_delete(connection_list, c);
|
2000-10-11 10:35:17 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 22:43:25 +00:00
|
|
|
bool dump_connections(connection_t *cdump) {
|
2012-10-07 22:35:38 +00:00
|
|
|
for list_each(connection_t, c, connection_list) {
|
2012-09-26 21:18:32 +00:00
|
|
|
send_request(cdump, "%d %d %s %s %x %d %x",
|
2009-11-07 22:43:25 +00:00
|
|
|
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
|
|
|
}
|