Added a dedicated IKEv1 task to delete CHILD_SAs

This commit is contained in:
Martin Willi
2012-03-20 17:31:22 +01:00
parent 07095794a1
commit 5f10938592
5 changed files with 273 additions and 0 deletions
+1
View File
@@ -103,6 +103,7 @@ sa/tasks/informational.c sa/tasks/informational.h \
sa/tasks/isakmp_delete.c sa/tasks/isakmp_delete.h \
sa/tasks/xauth.c sa/tasks/xauth.h \
sa/tasks/quick_mode.c sa/tasks/quick_mode.h \
sa/tasks/quick_delete.c sa/tasks/quick_delete.h \
sa/tasks/mode_config.c sa/tasks/mode_config.h \
sa/tasks/task.c sa/tasks/task.h
+216
View File
@@ -0,0 +1,216 @@
/*
* Copyright (C) 2011 Martin Willi
* Copyright (C) 2011 revosec AG
*
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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.
*/
#include "quick_delete.h"
#include <daemon.h>
#include <encoding/payloads/delete_payload.h>
typedef struct private_quick_delete_t private_quick_delete_t;
/**
* Private members of a quick_delete_t task.
*/
struct private_quick_delete_t {
/**
* Public methods and task_t interface.
*/
quick_delete_t public;
/**
* Assigned IKE_SA.
*/
ike_sa_t *ike_sa;
/**
* Are we the initiator?
*/
bool initiator;
/**
* Protocol of CHILD_SA to delete
*/
protocol_id_t protocol;
/**
* Inbound SPI of CHILD_SA to delete
*/
u_int32_t spi;
};
/**
* Delete the specified CHILD_SA, if found
*/
static bool delete_child(private_quick_delete_t *this,
protocol_id_t protocol, u_int32_t spi)
{
u_int64_t bytes_in, bytes_out;
child_sa_t *child_sa;
child_sa = this->ike_sa->get_child_sa(this->ike_sa, protocol, spi, TRUE);
if (!child_sa)
{ /* fallback and check for outbound SA */
child_sa = this->ike_sa->get_child_sa(this->ike_sa, protocol, spi, FALSE);
if (!child_sa)
{
return FALSE;
}
this->spi = spi = child_sa->get_spi(child_sa, TRUE);
}
child_sa->set_state(child_sa, CHILD_DELETING);
child_sa->get_usestats(child_sa, TRUE, NULL, &bytes_in);
child_sa->get_usestats(child_sa, FALSE, NULL, &bytes_out);
DBG0(DBG_IKE, "closing CHILD_SA %s{%d} "
"with SPIs %.8x_i (%llu bytes) %.8x_o (%llu bytes) and TS %#R=== %#R",
child_sa->get_name(child_sa), child_sa->get_reqid(child_sa),
ntohl(child_sa->get_spi(child_sa, TRUE)), bytes_in,
ntohl(child_sa->get_spi(child_sa, FALSE)), bytes_out,
child_sa->get_traffic_selectors(child_sa, TRUE),
child_sa->get_traffic_selectors(child_sa, FALSE));
charon->bus->child_updown(charon->bus, child_sa, FALSE);
this->ike_sa->destroy_child_sa(this->ike_sa, protocol, spi);
/* TODO-IKEv1: handle close action? */
return TRUE;
}
METHOD(task_t, build_i, status_t,
private_quick_delete_t *this, message_t *message)
{
if (delete_child(this, this->protocol, this->spi))
{
delete_payload_t *delete_payload;
DBG1(DBG_IKE, "sending DELETE for %N CHILD_SA with SPI %.8x",
protocol_id_names, this->protocol, ntohl(this->spi));
delete_payload = delete_payload_create(DELETE_V1, PROTO_ESP);
delete_payload->add_spi(delete_payload, this->spi);
message->add_payload(message, &delete_payload->payload_interface);
return SUCCESS;
}
return FAILED;
}
METHOD(task_t, process_i, status_t,
private_quick_delete_t *this, message_t *message)
{
return FAILED;
}
METHOD(task_t, process_r, status_t,
private_quick_delete_t *this, message_t *message)
{
enumerator_t *payloads, *spis;
payload_t *payload;
delete_payload_t *delete_payload;
protocol_id_t protocol;
u_int32_t spi;
payloads = message->create_payload_enumerator(message);
while (payloads->enumerate(payloads, &payload))
{
if (payload->get_type(payload) == DELETE_V1)
{
delete_payload = (delete_payload_t*)payload;
protocol = delete_payload->get_protocol_id(delete_payload);
if (protocol != PROTO_ESP && protocol != PROTO_AH)
{
continue;
}
spis = delete_payload->create_spi_enumerator(delete_payload);
while (spis->enumerate(spis, &spi))
{
DBG1(DBG_IKE, "received DELETE for %N CHILD_SA with SPI %.8x",
protocol_id_names, protocol, ntohl(spi));
if (!delete_child(this, protocol, spi))
{
DBG1(DBG_IKE, "CHILD_SA not found, ignored");
continue;
}
}
spis->destroy(spis);
}
}
payloads->destroy(payloads);
return SUCCESS;
}
METHOD(task_t, build_r, status_t,
private_quick_delete_t *this, message_t *message)
{
return FAILED;
}
METHOD(task_t, get_type, task_type_t,
private_quick_delete_t *this)
{
return TASK_QUICK_DELETE;
}
METHOD(task_t, migrate, void,
private_quick_delete_t *this, ike_sa_t *ike_sa)
{
this->ike_sa = ike_sa;
}
METHOD(task_t, destroy, void,
private_quick_delete_t *this)
{
free(this);
}
/*
* Described in header.
*/
quick_delete_t *quick_delete_create(ike_sa_t *ike_sa, protocol_id_t protocol,
u_int32_t spi)
{
private_quick_delete_t *this;
INIT(this,
.public = {
.task = {
.get_type = _get_type,
.migrate = _migrate,
.destroy = _destroy,
},
},
.ike_sa = ike_sa,
.protocol = protocol,
.spi = spi,
);
if (protocol != PROTO_NONE)
{
this->public.task.build = _build_i;
this->public.task.process = _process_i;
}
else
{
this->public.task.build = _build_r;
this->public.task.process = _process_r;
}
return &this->public;
}
+53
View File
@@ -0,0 +1,53 @@
/*
* Copyright (C) 2011 Martin Willi
* Copyright (C) 2011 revosec AG
*
* 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. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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.
*/
/**
* @defgroup quick_delete quick_delete
* @{ @ingroup tasks
*/
#ifndef QUICK_DELETE_H_
#define QUICK_DELETE_H_
typedef struct quick_delete_t quick_delete_t;
#include <library.h>
#include <sa/ike_sa.h>
#include <sa/tasks/task.h>
#include <sa/child_sa.h>
/**
* Task of type QUICK_DELETE, delete an IKEv1 quick mode SA.
*/
struct quick_delete_t {
/**
* Implements the task_t interface
*/
task_t task;
};
/**
* Create a new quick_delete task.
*
* @param ike_sa IKE_SA this task works for
* @param protocol protocol of CHILD_SA to delete, PROTO_NONE as responder
* @param spi inbound SPI of CHILD_SA to delete
* @return quick_delete task to handle by the task_manager
*/
quick_delete_t *quick_delete_create(ike_sa_t *ike_sa, protocol_id_t protocol,
u_int32_t spi);
#endif /** QUICK_DELETE_H_ @}*/
+1
View File
@@ -42,6 +42,7 @@ ENUM(task_type_names, TASK_IKE_INIT, TASK_IKE_CERT_POST_V1,
"XAUTH",
"MODE_CONFIG",
"QUICK_MODE",
"QUICK_DELETE",
"VENDOR_V1",
"IKE_NATD_V1",
"IKE_CERT_PRE_V1",
+2
View File
@@ -81,6 +81,8 @@ enum task_type_t {
TASK_MODE_CONFIG,
/** IKEv1 quick mode */
TASK_QUICK_MODE,
/** IKEv1 delete of a quick mode SA */
TASK_QUICK_DELETE,
/** IKEv1 vendor ID payload handling */
TASK_VENDOR_V1,
/** IKEv1 NAT detection */