Previously, it could happen that child_rekey() was triggered twice for the same "old" SA. For listeners that would mean they'd loose track as they'd be tracking a new SA that wasn't relevant anymore and for which no updown event would ever get triggered (it was the redundant SA in a collision). This new assert ensures that events are triggered in a predictable way and listeners can track SAs properly.
364 lines
8.6 KiB
C
364 lines
8.6 KiB
C
/*
|
|
* Copyright (C) 2016-2017 Tobias Brunner
|
|
*
|
|
* Copyright (C) secunet Security Networks 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 <inttypes.h>
|
|
|
|
#include <test_suite.h>
|
|
|
|
#include "exchange_test_asserts.h"
|
|
#include "mock_ipsec.h"
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_hook(listener_t *listener)
|
|
{
|
|
listener_hook_assert_t *this = (listener_hook_assert_t*)listener;
|
|
|
|
this->count++;
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_ike_updown(listener_t *listener, ike_sa_t *ike_sa,
|
|
bool up)
|
|
{
|
|
listener_hook_assert_t *this = (listener_hook_assert_t*)listener;
|
|
|
|
this->count++;
|
|
assert_listener_msg(this->up == up, this, "IKE_SA not '%s'",
|
|
this->up ? "up" : "down");
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_child_updown(listener_t *listener, ike_sa_t *ike_sa,
|
|
child_sa_t *child_sa, bool up)
|
|
{
|
|
listener_hook_assert_t *this = (listener_hook_assert_t*)listener;
|
|
|
|
this->count++;
|
|
assert_listener_msg(this->up == up, this, "CHILD_SA not '%s'",
|
|
this->up ? "up" : "down");
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_ike_rekey(listener_t *listener, ike_sa_t *old,
|
|
ike_sa_t *new)
|
|
{
|
|
listener_hook_assert_t *this = (listener_hook_assert_t*)listener;
|
|
ike_sa_id_t *id;
|
|
uint64_t spi;
|
|
|
|
this->count++;
|
|
id = old->get_id(old);
|
|
spi = id->get_initiator_spi(id);
|
|
assert_listener_msg(this->spi_old == spi, this, "unexpected old IKE_SA "
|
|
"%.16"PRIx64"_i instead of %.16"PRIx64"_i",
|
|
be64toh(spi), be64toh(this->spi_old));
|
|
id = new->get_id(new);
|
|
spi = id->get_initiator_spi(id);
|
|
assert_listener_msg(this->spi_new == spi, this, "unexpected new IKE_SA "
|
|
"%.16"PRIx64"_i instead of %.16"PRIx64"_i",
|
|
be64toh(spi), be64toh(this->spi_new));
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_child_rekey(listener_t *listener, ike_sa_t *ike_sa,
|
|
child_sa_t *old, child_sa_t *new)
|
|
{
|
|
listener_hook_assert_t *this = (listener_hook_assert_t*)listener;
|
|
uint32_t spi, expected;
|
|
|
|
this->count++;
|
|
spi = old->get_spi(old, TRUE);
|
|
expected = this->spi_old;
|
|
assert_listener_msg(expected == spi, this, "unexpected old CHILD_SA %.8x "
|
|
"instead of %.8x", spi, expected);
|
|
spi = new->get_spi(new, TRUE);
|
|
expected = this->spi_new;
|
|
assert_listener_msg(expected == spi, this, "unexpected new CHILD_SA %.8x "
|
|
"instead of %.8x", spi, expected);
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* Track SAs via updown event.
|
|
*/
|
|
static void track_sa_updown(listener_track_sas_assert_t *this, char *event,
|
|
array_t *sas, uint32_t id, bool up)
|
|
{
|
|
uint32_t existing;
|
|
bool found = FALSE;
|
|
int i;
|
|
|
|
if (up)
|
|
{
|
|
for (i = 0; i < array_count(sas); i++)
|
|
{
|
|
array_get(sas, i, &existing);
|
|
assert_listener_msg(id != existing, this, "duplicate %s(up) event "
|
|
"for SA %u", event, id);
|
|
}
|
|
array_insert(sas, ARRAY_TAIL, &id);
|
|
}
|
|
else
|
|
{
|
|
for (i = 0; i < array_count(sas); i++)
|
|
{
|
|
array_get(sas, i, &existing);
|
|
if (id == existing)
|
|
{
|
|
array_remove(sas, i, NULL);
|
|
found = TRUE;
|
|
break;
|
|
}
|
|
}
|
|
assert_listener_msg(found, this, "%s(down) event for unknown SA %u",
|
|
event, id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Track SAs via a rekey event.
|
|
*/
|
|
static void track_sa_rekey(listener_track_sas_assert_t *this, char *event,
|
|
array_t *sas, uint32_t old_id, uint32_t new_id)
|
|
{
|
|
uint32_t existing;
|
|
bool found = FALSE;
|
|
int i;
|
|
|
|
for (i = 0; i < array_count(sas); i++)
|
|
{
|
|
array_get(sas, i, &existing);
|
|
if (old_id == existing)
|
|
{
|
|
array_remove(sas, i, NULL);
|
|
found = TRUE;
|
|
break;
|
|
}
|
|
}
|
|
assert_listener_msg(found, this, "%s() event for unknown old SA %u", event,
|
|
old_id);
|
|
|
|
for (i = 0; i < array_count(sas); i++)
|
|
{
|
|
array_get(sas, i, &existing);
|
|
assert_listener_msg(new_id != existing, this, "%s() event for "
|
|
"already up new SA %u", event, new_id);
|
|
}
|
|
array_insert(sas, ARRAY_TAIL, &new_id);
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_track_ike_updown(listener_t *listener,
|
|
ike_sa_t *ike_sa, bool up)
|
|
{
|
|
listener_track_sas_assert_t *this = (listener_track_sas_assert_t*)listener;
|
|
|
|
track_sa_updown(this, "ike_updown", this->ike_sas,
|
|
ike_sa->get_unique_id(ike_sa), up);
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_track_child_updown(listener_t *listener,
|
|
ike_sa_t *ike_sa,
|
|
child_sa_t *child_sa, bool up)
|
|
{
|
|
listener_track_sas_assert_t *this = (listener_track_sas_assert_t*)listener;
|
|
|
|
track_sa_updown(this, "child_updown", this->child_sas,
|
|
child_sa->get_unique_id(child_sa), up);
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_track_ike_rekey(listener_t *listener, ike_sa_t *old,
|
|
ike_sa_t *new)
|
|
{
|
|
listener_track_sas_assert_t *this = (listener_track_sas_assert_t*)listener;
|
|
|
|
track_sa_rekey(this, "ike_rekey", this->ike_sas, old->get_unique_id(old),
|
|
new->get_unique_id(new));
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_track_child_rekey(listener_t *listener,
|
|
ike_sa_t *ike_sa, child_sa_t *old,
|
|
child_sa_t *new)
|
|
{
|
|
listener_track_sas_assert_t *this = (listener_track_sas_assert_t*)listener;
|
|
|
|
track_sa_rekey(this, "child_rekey", this->child_sas, old->get_unique_id(old),
|
|
new->get_unique_id(new));
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* Assert a given message rule
|
|
*/
|
|
static void assert_message_rule(listener_message_assert_t *this, message_t *msg,
|
|
listener_message_rule_t *rule)
|
|
{
|
|
if (rule->expected)
|
|
{
|
|
if (rule->payload)
|
|
{
|
|
assert_listener_msg(msg->get_payload(msg, rule->payload),
|
|
this, "expected payload (%N) not found",
|
|
payload_type_names, rule->payload);
|
|
|
|
}
|
|
if (rule->notify)
|
|
{
|
|
assert_listener_msg(msg->get_notify(msg, rule->notify),
|
|
this, "expected notify payload (%N) not found",
|
|
notify_type_names, rule->notify);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (rule->payload)
|
|
{
|
|
assert_listener_msg(!msg->get_payload(msg, rule->payload),
|
|
this, "unexpected payload (%N) found",
|
|
payload_type_names, rule->payload);
|
|
|
|
}
|
|
if (rule->notify)
|
|
{
|
|
assert_listener_msg(!msg->get_notify(msg, rule->notify),
|
|
this, "unexpected notify payload (%N) found",
|
|
notify_type_names, rule->notify);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
bool exchange_test_asserts_message(listener_t *listener, ike_sa_t *ike_sa,
|
|
message_t *message, bool incoming, bool plain)
|
|
{
|
|
listener_message_assert_t *this = (listener_message_assert_t*)listener;
|
|
|
|
if (plain && this->incoming == incoming)
|
|
{
|
|
if (this->count >= 0)
|
|
{
|
|
enumerator_t *enumerator;
|
|
int count = 0;
|
|
enumerator = message->create_payload_enumerator(message);
|
|
while (enumerator->enumerate(enumerator, NULL))
|
|
{
|
|
count++;
|
|
}
|
|
enumerator->destroy(enumerator);
|
|
assert_listener_msg(this->count == count, this, "unexpected payload "
|
|
"count in message (%d != %d)", this->count,
|
|
count);
|
|
}
|
|
if (this->num_rules)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < this->num_rules; i++)
|
|
{
|
|
assert_message_rule(this, message, &this->rules[i]);
|
|
}
|
|
}
|
|
free(this->rules);
|
|
free(this);
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* Compare two SPIs
|
|
*/
|
|
static int spis_cmp(const void *a, const void *b)
|
|
{
|
|
return *(const uint32_t*)a - *(const uint32_t*)b;
|
|
}
|
|
|
|
/**
|
|
* Compare two SPIs to sort them
|
|
*/
|
|
static int spis_sort(const void *a, const void *b, void *data)
|
|
{
|
|
return spis_cmp(a, b);
|
|
}
|
|
|
|
|
|
/*
|
|
* Described in header
|
|
*/
|
|
void exchange_test_asserts_ipsec_sas(ipsec_sas_assert_t *sas)
|
|
{
|
|
enumerator_t *enumerator;
|
|
array_t *spis;
|
|
ike_sa_t *ike_sa;
|
|
uint32_t spi;
|
|
int i;
|
|
|
|
spis = array_create(sizeof(uint32_t), 0);
|
|
for (i = 0; i < sas->count; i++)
|
|
{
|
|
array_insert(spis, ARRAY_TAIL, &sas->spis[i]);
|
|
}
|
|
array_sort(spis, spis_sort, NULL);
|
|
|
|
enumerator = mock_ipsec_create_sa_enumerator();
|
|
while (enumerator->enumerate(enumerator, &ike_sa, &spi))
|
|
{
|
|
if (ike_sa == sas->ike_sa)
|
|
{
|
|
i = array_bsearch(spis, &spi, spis_cmp, NULL);
|
|
assert_listener_msg(i != -1, sas, "unexpected IPsec SA %.8x", spi);
|
|
array_remove(spis, i, NULL);
|
|
}
|
|
}
|
|
enumerator->destroy(enumerator);
|
|
for (i = 0; i < array_count(spis); i++)
|
|
{
|
|
array_get(spis, i, &spi);
|
|
assert_listener_msg(!spi, sas, "expected IPsec SA %.8x not found", spi);
|
|
}
|
|
array_destroy(spis);
|
|
}
|