task-manager-v1: Add utility function to check if CHILD_SA is redundant

This commit is contained in:
Tobias Brunner 2019-02-01 11:53:48 +01:00
parent 090e2cf54c
commit bbc3d2a016
2 changed files with 38 additions and 10 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2007-2018 Tobias Brunner
* Copyright (C) 2007-2019 Tobias Brunner
* Copyright (C) 2007-2011 Martin Willi
* HSR Hochschule fuer Technik Rapperswil
*
@ -1752,26 +1752,27 @@ static bool have_equal_ts(child_sa_t *child1, child_sa_t *child2, bool local)
return equal;
}
/**
* Check if a CHILD_SA is redundant and we should delete instead of rekey
/*
* Described in header
*/
static bool is_redundant(private_task_manager_t *this, child_sa_t *child_sa)
bool ikev1_child_sa_is_redundant(ike_sa_t *ike_sa, child_sa_t *child_sa,
bool (*cmp)(child_sa_t*,child_sa_t*))
{
enumerator_t *enumerator;
child_sa_t *current;
bool redundant = FALSE;
enumerator = this->ike_sa->create_child_sa_enumerator(this->ike_sa);
enumerator = ike_sa->create_child_sa_enumerator(ike_sa);
while (enumerator->enumerate(enumerator, &current))
{
if (current->get_state(current) == CHILD_INSTALLED &&
if (current != child_sa &&
current->get_state(current) == CHILD_INSTALLED &&
streq(current->get_name(current), child_sa->get_name(child_sa)) &&
have_equal_ts(current, child_sa, TRUE) &&
have_equal_ts(current, child_sa, FALSE) &&
current->get_lifetime(current, FALSE) >
child_sa->get_lifetime(child_sa, FALSE))
(!cmp || cmp(child_sa, current)))
{
DBG1(DBG_IKE, "deleting redundant CHILD_SA %s{%d}",
DBG1(DBG_IKE, "detected redundant CHILD_SA %s{%d}",
child_sa->get_name(child_sa),
child_sa->get_unique_id(child_sa));
redundant = TRUE;
@ -1783,6 +1784,16 @@ static bool is_redundant(private_task_manager_t *this, child_sa_t *child_sa)
return redundant;
}
/**
* Compare the rekey times of two CHILD_SAs, a CHILD_SA is redundant if it is
* rekeyed sooner than another.
*/
static bool is_rekeyed_sooner(child_sa_t *is_redundant, child_sa_t *other)
{
return other->get_lifetime(other, FALSE) >
is_redundant->get_lifetime(is_redundant, FALSE);
}
/**
* Get the first traffic selector of a CHILD_SA, local or remote
*/
@ -1812,7 +1823,8 @@ METHOD(task_manager_t, queue_child_rekey, void,
}
if (child_sa && child_sa->get_state(child_sa) == CHILD_INSTALLED)
{
if (is_redundant(this, child_sa))
if (ikev1_child_sa_is_redundant(this->ike_sa, child_sa,
is_rekeyed_sooner))
{
child_sa->set_state(child_sa, CHILD_REKEYED);
if (lib->settings->get_bool(lib->settings, "%s.delete_rekeyed",

View File

@ -43,4 +43,20 @@ struct task_manager_v1_t {
*/
task_manager_v1_t *task_manager_v1_create(ike_sa_t *ike_sa);
/**
* Check if the given CHILD_SA is redundant (i.e. another CHILD_SA with the same
* name and TS is currently INSTALLED).
*
* Optionally, the two currently installed CHILD_SAs may be further compared.
*
* @param ike_sa IKE_SA whose CHILD_SAs should be checked
* @param child_sa CHILD_SA to check for duplicates
* @param cmp Optional comparison function, first argument is the
* passed CHILD_SA, the second a found matching one, return
* TRUE if the former should be considered redundant
* @return TRUE if the CHILD_SA is redundant
*/
bool ikev1_child_sa_is_redundant(ike_sa_t *ike_sa, child_sa_t *child_sa,
bool (*cmp)(child_sa_t*,child_sa_t*));
#endif /** TASK_MANAGER_V1_H_ @}*/