Migrated delete_payload to INIT/METHOD macros, replaced iterator
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2005-2006 Martin Willi
|
* Copyright (C) 2005-2010 Martin Willi
|
||||||
|
* Copyright (C) 2010 revosec AG
|
||||||
* Copyright (C) 2005 Jan Hutter
|
* Copyright (C) 2005 Jan Hutter
|
||||||
* Hochschule fuer Technik Rapperswil
|
* Hochschule fuer Technik Rapperswil
|
||||||
*
|
*
|
||||||
@@ -65,11 +66,6 @@ struct private_delete_payload_t {
|
|||||||
* The contained SPI's.
|
* The contained SPI's.
|
||||||
*/
|
*/
|
||||||
chunk_t spis;
|
chunk_t spis;
|
||||||
|
|
||||||
/**
|
|
||||||
* List containing u_int32_t spis
|
|
||||||
*/
|
|
||||||
linked_list_t *spi_list;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -77,7 +73,6 @@ struct private_delete_payload_t {
|
|||||||
*
|
*
|
||||||
* The defined offsets are the positions in a object of type
|
* The defined offsets are the positions in a object of type
|
||||||
* private_delete_payload_t.
|
* private_delete_payload_t.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
encoding_rule_t delete_payload_encodings[] = {
|
encoding_rule_t delete_payload_encodings[] = {
|
||||||
/* 1 Byte next payload type, stored in the field next_payload */
|
/* 1 Byte next payload type, stored in the field next_payload */
|
||||||
@@ -85,20 +80,20 @@ encoding_rule_t delete_payload_encodings[] = {
|
|||||||
/* the critical bit */
|
/* the critical bit */
|
||||||
{ FLAG, offsetof(private_delete_payload_t, critical) },
|
{ FLAG, offsetof(private_delete_payload_t, critical) },
|
||||||
/* 7 Bit reserved bits, nowhere stored */
|
/* 7 Bit reserved bits, nowhere stored */
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
/* Length of the whole payload*/
|
/* Length of the whole payload*/
|
||||||
{ PAYLOAD_LENGTH, offsetof(private_delete_payload_t, payload_length)},
|
{ PAYLOAD_LENGTH, offsetof(private_delete_payload_t, payload_length) },
|
||||||
{ U_INT_8, offsetof(private_delete_payload_t, protocol_id) },
|
{ U_INT_8, offsetof(private_delete_payload_t, protocol_id) },
|
||||||
{ U_INT_8, offsetof(private_delete_payload_t, spi_size) },
|
{ U_INT_8, offsetof(private_delete_payload_t, spi_size) },
|
||||||
{ U_INT_16, offsetof(private_delete_payload_t, spi_count) },
|
{ U_INT_16, offsetof(private_delete_payload_t, spi_count) },
|
||||||
/* some delete data bytes, length is defined in PAYLOAD_LENGTH */
|
/* some delete data bytes, length is defined in PAYLOAD_LENGTH */
|
||||||
{ SPIS, offsetof(private_delete_payload_t, spis) }
|
{ SPIS, offsetof(private_delete_payload_t, spis) }
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -115,10 +110,8 @@ encoding_rule_t delete_payload_encodings[] = {
|
|||||||
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, verify, status_t,
|
||||||
* Implementation of payload_t.verify.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static status_t verify(private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
switch (this->protocol_id)
|
switch (this->protocol_id)
|
||||||
{
|
{
|
||||||
@@ -147,112 +140,103 @@ static status_t verify(private_delete_payload_t *this)
|
|||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_encoding_rules, void,
|
||||||
* Implementation of delete_payload_t.get_encoding_rules.
|
private_delete_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
|
||||||
*/
|
|
||||||
static void get_encoding_rules(private_delete_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
|
|
||||||
{
|
{
|
||||||
*rules = delete_payload_encodings;
|
*rules = delete_payload_encodings;
|
||||||
*rule_count = sizeof(delete_payload_encodings) / sizeof(encoding_rule_t);
|
*rule_count = countof(delete_payload_encodings);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_payload_type, payload_type_t,
|
||||||
* Implementation of payload_t.get_type.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static payload_type_t get_payload_type(private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return DELETE;
|
return DELETE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_next_type, payload_type_t,
|
||||||
* Implementation of payload_t.get_next_type.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static payload_type_t get_next_type(private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return (this->next_payload);
|
return this->next_payload;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, set_next_type, void,
|
||||||
* Implementation of payload_t.set_next_type.
|
private_delete_payload_t *this,payload_type_t type)
|
||||||
*/
|
|
||||||
static void set_next_type(private_delete_payload_t *this,payload_type_t type)
|
|
||||||
{
|
{
|
||||||
this->next_payload = type;
|
this->next_payload = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_length, size_t,
|
||||||
* Implementation of payload_t.get_length.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static size_t get_length(private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return this->payload_length;
|
return this->payload_length;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(delete_payload_t, get_protocol_id, protocol_id_t,
|
||||||
* Implementation of delete_payload_t.get_protocol_id.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static protocol_id_t get_protocol_id (private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return (this->protocol_id);
|
return this->protocol_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(delete_payload_t, add_spi, void,
|
||||||
* Implementation of delete_payload_t.add_spi.
|
private_delete_payload_t *this, u_int32_t spi)
|
||||||
*/
|
|
||||||
static void add_spi(private_delete_payload_t *this, u_int32_t spi)
|
|
||||||
{
|
{
|
||||||
/* only add SPIs if AH|ESP, ignore others */
|
switch (this->protocol_id)
|
||||||
if (this->protocol_id == PROTO_AH || this->protocol_id == PROTO_ESP)
|
|
||||||
{
|
{
|
||||||
this->spi_count += 1;
|
case PROTO_AH:
|
||||||
this->spis.len += this->spi_size;
|
case PROTO_ESP:
|
||||||
this->spis.ptr = realloc(this->spis.ptr, this->spis.len);
|
this->spi_count++;
|
||||||
*(u_int32_t*)(this->spis.ptr + (this->spis.len / this->spi_size - 1)) = spi;
|
this->spis = chunk_cat("mc", this->spis, chunk_from_thing(spi));
|
||||||
if (this->spi_list)
|
break;
|
||||||
{
|
default:
|
||||||
/* reset SPI iterator list */
|
break;
|
||||||
this->spi_list->destroy(this->spi_list);
|
|
||||||
this->spi_list = NULL;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implementation of delete_payload_t.create_spi_iterator.
|
* SPI enumerator implementation
|
||||||
*/
|
*/
|
||||||
static iterator_t* create_spi_iterator(private_delete_payload_t *this)
|
typedef struct {
|
||||||
{
|
/** implements enumerator_t */
|
||||||
int i;
|
enumerator_t public;
|
||||||
|
/** remaining SPIs */
|
||||||
|
chunk_t spis;
|
||||||
|
} spi_enumerator_t;
|
||||||
|
|
||||||
if (this->spi_list == NULL)
|
METHOD(enumerator_t, spis_enumerate, bool,
|
||||||
|
spi_enumerator_t *this, u_int32_t *spi)
|
||||||
|
{
|
||||||
|
if (this->spis.len >= sizeof(*spi))
|
||||||
{
|
{
|
||||||
this->spi_list = linked_list_create();
|
memcpy(spi, this->spis.ptr, sizeof(*spi));
|
||||||
/* only parse SPIs if AH|ESP */
|
this->spis = chunk_skip(this->spis, sizeof(*spi));
|
||||||
if (this->protocol_id == PROTO_AH || this->protocol_id == PROTO_ESP)
|
return TRUE;
|
||||||
{
|
|
||||||
for (i = 0; i < this->spi_count; i++)
|
|
||||||
{
|
|
||||||
this->spi_list->insert_last(this->spi_list, this->spis.ptr + i *
|
|
||||||
this->spi_size);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return this->spi_list->create_iterator(this->spi_list, TRUE);
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(delete_payload_t, create_spi_enumerator, enumerator_t*,
|
||||||
* Implementation of payload_t.destroy and delete_payload_t.destroy.
|
private_delete_payload_t *this)
|
||||||
*/
|
|
||||||
static void destroy(private_delete_payload_t *this)
|
|
||||||
{
|
{
|
||||||
if (this->spis.ptr != NULL)
|
spi_enumerator_t *e;
|
||||||
|
|
||||||
|
if (this->spi_size != sizeof(u_int32_t))
|
||||||
{
|
{
|
||||||
chunk_free(&this->spis);
|
return enumerator_create_empty();
|
||||||
}
|
|
||||||
if (this->spi_list)
|
|
||||||
{
|
|
||||||
this->spi_list->destroy(this->spi_list);
|
|
||||||
}
|
}
|
||||||
|
INIT(e,
|
||||||
|
.public = {
|
||||||
|
.enumerate = (void*)_spis_enumerate,
|
||||||
|
.destroy = (void*)free,
|
||||||
|
},
|
||||||
|
.spis = this->spis,
|
||||||
|
);
|
||||||
|
return &e->public;
|
||||||
|
}
|
||||||
|
|
||||||
|
METHOD2(payload_t, delete_payload_t, destroy, void,
|
||||||
|
private_delete_payload_t *this)
|
||||||
|
{
|
||||||
|
free(this->spis.ptr);
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -261,32 +245,28 @@ static void destroy(private_delete_payload_t *this)
|
|||||||
*/
|
*/
|
||||||
delete_payload_t *delete_payload_create(protocol_id_t protocol_id)
|
delete_payload_t *delete_payload_create(protocol_id_t protocol_id)
|
||||||
{
|
{
|
||||||
private_delete_payload_t *this = malloc_thing(private_delete_payload_t);
|
private_delete_payload_t *this;
|
||||||
|
|
||||||
/* interface functions */
|
INIT(this,
|
||||||
this->public.payload_interface.verify = (status_t (*) (payload_t *))verify;
|
.public = {
|
||||||
this->public.payload_interface.get_encoding_rules = (void (*) (payload_t *, encoding_rule_t **, size_t *) ) get_encoding_rules;
|
.payload_interface = {
|
||||||
this->public.payload_interface.get_length = (size_t (*) (payload_t *)) get_length;
|
.verify = _verify,
|
||||||
this->public.payload_interface.get_next_type = (payload_type_t (*) (payload_t *)) get_next_type;
|
.get_encoding_rules = _get_encoding_rules,
|
||||||
this->public.payload_interface.set_next_type = (void (*) (payload_t *,payload_type_t)) set_next_type;
|
.get_length = _get_length,
|
||||||
this->public.payload_interface.get_type = (payload_type_t (*) (payload_t *)) get_payload_type;
|
.get_next_type = _get_next_type,
|
||||||
this->public.payload_interface.destroy = (void (*) (payload_t *))destroy;
|
.set_next_type = _set_next_type,
|
||||||
|
.get_type = _get_payload_type,
|
||||||
/* public functions */
|
.destroy = _destroy,
|
||||||
this->public.destroy = (void (*) (delete_payload_t *)) destroy;
|
},
|
||||||
this->public.get_protocol_id = (protocol_id_t (*) (delete_payload_t *)) get_protocol_id;
|
.get_protocol_id = _get_protocol_id,
|
||||||
this->public.add_spi = (void (*) (delete_payload_t *,u_int32_t))add_spi;
|
.add_spi = _add_spi,
|
||||||
this->public.create_spi_iterator = (iterator_t* (*) (delete_payload_t *)) create_spi_iterator;
|
.create_spi_enumerator = _create_spi_enumerator,
|
||||||
|
.destroy = _destroy,
|
||||||
/* private variables */
|
},
|
||||||
this->critical = FALSE;
|
.next_payload = NO_PAYLOAD,
|
||||||
this->next_payload = NO_PAYLOAD;
|
.payload_length = DELETE_PAYLOAD_HEADER_LENGTH,
|
||||||
this->payload_length = DELETE_PAYLOAD_HEADER_LENGTH;
|
.protocol_id = protocol_id,
|
||||||
this->protocol_id = protocol_id;
|
.spi_size = protocol_id == PROTO_AH || protocol_id == PROTO_ESP ? 4 : 0,
|
||||||
this->spi_size = protocol_id == PROTO_AH || protocol_id == PROTO_ESP ? 4 : 0;
|
);
|
||||||
this->spi_count = 0;
|
return &this->public;
|
||||||
this->spis = chunk_empty;
|
|
||||||
this->spi_list = NULL;
|
|
||||||
|
|
||||||
return (&this->public);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ typedef struct delete_payload_t delete_payload_t;
|
|||||||
* The DELETE payload format is described in RFC section 3.11.
|
* The DELETE payload format is described in RFC section 3.11.
|
||||||
*/
|
*/
|
||||||
struct delete_payload_t {
|
struct delete_payload_t {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The payload_t interface.
|
* The payload_t interface.
|
||||||
*/
|
*/
|
||||||
@@ -59,13 +60,11 @@ struct delete_payload_t {
|
|||||||
void (*add_spi) (delete_payload_t *this, u_int32_t spi);
|
void (*add_spi) (delete_payload_t *this, u_int32_t spi);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get an iterator over the SPIs.
|
* Get an enumerator over the SPIs in network order.
|
||||||
*
|
*
|
||||||
* The iterate() function returns a pointer to a u_int32_t SPI.
|
* @return enumerator over SPIs, u_int32_t
|
||||||
*
|
|
||||||
* @return iterator over SPIs
|
|
||||||
*/
|
*/
|
||||||
iterator_t *(*create_spi_iterator) (delete_payload_t *this);
|
enumerator_t *(*create_spi_enumerator) (delete_payload_t *this);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroys an delete_payload_t object.
|
* Destroys an delete_payload_t object.
|
||||||
|
|||||||
@@ -117,11 +117,10 @@ static void build_payloads(private_child_delete_t *this, message_t *message)
|
|||||||
*/
|
*/
|
||||||
static void process_payloads(private_child_delete_t *this, message_t *message)
|
static void process_payloads(private_child_delete_t *this, message_t *message)
|
||||||
{
|
{
|
||||||
enumerator_t *payloads;
|
enumerator_t *payloads, *spis;
|
||||||
iterator_t *spis;
|
|
||||||
payload_t *payload;
|
payload_t *payload;
|
||||||
delete_payload_t *delete_payload;
|
delete_payload_t *delete_payload;
|
||||||
u_int32_t *spi;
|
u_int32_t spi;
|
||||||
protocol_id_t protocol;
|
protocol_id_t protocol;
|
||||||
child_sa_t *child_sa;
|
child_sa_t *child_sa;
|
||||||
|
|
||||||
@@ -136,19 +135,19 @@ static void process_payloads(private_child_delete_t *this, message_t *message)
|
|||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
spis = delete_payload->create_spi_iterator(delete_payload);
|
spis = delete_payload->create_spi_enumerator(delete_payload);
|
||||||
while (spis->iterate(spis, (void**)&spi))
|
while (spis->enumerate(spis, &spi))
|
||||||
{
|
{
|
||||||
child_sa = this->ike_sa->get_child_sa(this->ike_sa, protocol,
|
child_sa = this->ike_sa->get_child_sa(this->ike_sa, protocol,
|
||||||
*spi, FALSE);
|
spi, FALSE);
|
||||||
if (child_sa == NULL)
|
if (child_sa == NULL)
|
||||||
{
|
{
|
||||||
DBG1(DBG_IKE, "received DELETE for %N CHILD_SA with SPI %.8x, "
|
DBG1(DBG_IKE, "received DELETE for %N CHILD_SA with SPI %.8x, "
|
||||||
"but no such SA", protocol_id_names, protocol, ntohl(*spi));
|
"but no such SA", protocol_id_names, protocol, ntohl(spi));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
DBG1(DBG_IKE, "received DELETE for %N CHILD_SA with SPI %.8x",
|
DBG1(DBG_IKE, "received DELETE for %N CHILD_SA with SPI %.8x",
|
||||||
protocol_id_names, protocol, ntohl(*spi));
|
protocol_id_names, protocol, ntohl(spi));
|
||||||
|
|
||||||
switch (child_sa->get_state(child_sa))
|
switch (child_sa->get_state(child_sa))
|
||||||
{
|
{
|
||||||
@@ -161,7 +160,7 @@ static void process_payloads(private_child_delete_t *this, message_t *message)
|
|||||||
if (!this->initiator)
|
if (!this->initiator)
|
||||||
{
|
{
|
||||||
this->ike_sa->destroy_child_sa(this->ike_sa,
|
this->ike_sa->destroy_child_sa(this->ike_sa,
|
||||||
protocol, *spi);
|
protocol, spi);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
case CHILD_INSTALLED:
|
case CHILD_INSTALLED:
|
||||||
|
|||||||
Reference in New Issue
Block a user