Fix nonce comparison in rekey collisions, lowest nonce loses

This commit is contained in:
Martin Willi
2011-01-07 15:51:35 +01:00
parent 3a04dfaaf6
commit 1ed482d808
2 changed files with 7 additions and 7 deletions
+3 -4
View File
@@ -241,12 +241,11 @@ static child_sa_t *handle_collision(private_child_rekey_t *this)
/* if we have the lower nonce, delete rekeyed SA. If not, delete
* the redundant. */
if (memcmp(this_nonce.ptr, other_nonce.ptr,
min(this_nonce.len, other_nonce.len)) < 0)
min(this_nonce.len, other_nonce.len)) > 0)
{
child_sa_t *child_sa;
DBG1(DBG_IKE, "CHILD_SA rekey collision won, "
"deleting rekeyed child");
DBG1(DBG_IKE, "CHILD_SA rekey collision won, deleting old child");
to_delete = this->child_sa;
/* don't touch child other created, it has already been deleted */
if (!this->other_child_destroyed)
@@ -259,7 +258,7 @@ static child_sa_t *handle_collision(private_child_rekey_t *this)
else
{
DBG1(DBG_IKE, "CHILD_SA rekey collision lost, "
"deleting redundant child");
"deleting rekeyed child");
to_delete = this->child_create->get_child(this->child_create);
}
}