Move establish/inherit of rekeyed IKE_SAs to delete messages

Having the inherit() function delayed to the IKE_SA establish procedure
was problematic. The task destroy function was never a good place and
results in locking/cleanup problems. After establishing the SA, it
should be really checked in ASAP to avoid any triggered DPD checks
to get lost.
This commit is contained in:
Martin Willi
2011-03-15 15:20:09 +01:00
parent f42156a8c8
commit 3ced6b51e4
5 changed files with 54 additions and 58 deletions
+1 -3
View File
@@ -1896,7 +1896,7 @@ METHOD(ike_sa_t, create_task_enumerator, enumerator_t*,
return this->task_manager->create_task_enumerator(this->task_manager, queue); return this->task_manager->create_task_enumerator(this->task_manager, queue);
} }
METHOD(ike_sa_t, inherit, status_t, METHOD(ike_sa_t, inherit, void,
private_ike_sa_t *this, ike_sa_t *other_public) private_ike_sa_t *this, ike_sa_t *other_public)
{ {
private_ike_sa_t *other = (private_ike_sa_t*)other_public; private_ike_sa_t *other = (private_ike_sa_t*)other_public;
@@ -1977,8 +1977,6 @@ METHOD(ike_sa_t, inherit, status_t,
lib->scheduler->schedule_job(lib->scheduler, lib->scheduler->schedule_job(lib->scheduler,
(job_t*)delete_ike_sa_job_create(this->ike_sa_id, TRUE), delete); (job_t*)delete_ike_sa_job_create(this->ike_sa_id, TRUE), delete);
} }
/* we have to initate here, there may be new tasks to handle */
return this->task_manager->initiate(this->task_manager);
} }
METHOD(ike_sa_t, destroy, void, METHOD(ike_sa_t, destroy, void,
+1 -2
View File
@@ -912,9 +912,8 @@ struct ike_sa_t {
* As this call may initiate inherited tasks, a status is returned. * As this call may initiate inherited tasks, a status is returned.
* *
* @param other other task to inherit from * @param other other task to inherit from
* @return DESTROY_ME if initiation of inherited task failed
*/ */
status_t (*inherit) (ike_sa_t *this, ike_sa_t *other); void (*inherit) (ike_sa_t *this, ike_sa_t *other);
/** /**
* Reset the IKE_SA, useable when initiating fails * Reset the IKE_SA, useable when initiating fails
+12 -5
View File
@@ -545,7 +545,7 @@ static status_t process_response(private_task_manager_t *this,
/** /**
* handle exchange collisions * handle exchange collisions
*/ */
static void handle_collisions(private_task_manager_t *this, task_t *task) static bool handle_collisions(private_task_manager_t *this, task_t *task)
{ {
iterator_t *iterator; iterator_t *iterator;
task_t *active; task_t *active;
@@ -584,12 +584,11 @@ static void handle_collisions(private_task_manager_t *this, task_t *task)
continue; continue;
} }
iterator->destroy(iterator); iterator->destroy(iterator);
return; return TRUE;
} }
iterator->destroy(iterator); iterator->destroy(iterator);
} }
/* destroy task if not registered in any active task */ return FALSE;
task->destroy(task);
} }
/** /**
@@ -623,9 +622,17 @@ static status_t build_response(private_task_manager_t *this, message_t *request)
case SUCCESS: case SUCCESS:
/* task completed, remove it */ /* task completed, remove it */
iterator->remove(iterator); iterator->remove(iterator);
handle_collisions(this, task); if (!handle_collisions(this, task))
{
task->destroy(task);
}
break;
case NEED_MORE: case NEED_MORE:
/* processed, but task needs another exchange */ /* processed, but task needs another exchange */
if (handle_collisions(this, task))
{
iterator->remove(iterator);
}
break; break;
case FAILED: case FAILED:
default: default:
+2
View File
@@ -412,6 +412,8 @@ static void collide(private_child_rekey_t *this, task_t *other)
other->destroy(other); other->destroy(other);
return; return;
} }
DBG1(DBG_IKE, "detected %N collision with %N", task_type_names, CHILD_REKEY,
task_type_names, other->get_type(other));
DESTROY_IF(this->collision); DESTROY_IF(this->collision);
this->collision = other; this->collision = other;
} }
+38 -48
View File
@@ -67,9 +67,35 @@ struct private_ike_rekey_t {
task_t *collision; task_t *collision;
}; };
/**
* Establish the new replacement IKE_SA
*/
static void establish_new(private_ike_rekey_t *this)
{
if (this->new_sa)
{
this->new_sa->set_state(this->new_sa, IKE_ESTABLISHED);
DBG0(DBG_IKE, "IKE_SA %s[%d] rekeyed between %H[%Y]...%H[%Y]",
this->new_sa->get_name(this->new_sa),
this->new_sa->get_unique_id(this->new_sa),
this->ike_sa->get_my_host(this->ike_sa),
this->ike_sa->get_my_id(this->ike_sa),
this->ike_sa->get_other_host(this->ike_sa),
this->ike_sa->get_other_id(this->ike_sa));
this->new_sa->inherit(this->new_sa, this->ike_sa);
charon->bus->ike_rekey(charon->bus, this->ike_sa, this->new_sa);
charon->ike_sa_manager->checkin(charon->ike_sa_manager, this->new_sa);
this->new_sa = NULL;
/* set threads active IKE_SA after checkin */
charon->bus->set_sa(charon->bus, this->ike_sa);
}
}
METHOD(task_t, process_r_delete, status_t, METHOD(task_t, process_r_delete, status_t,
private_ike_rekey_t *this, message_t *message) private_ike_rekey_t *this, message_t *message)
{ {
establish_new(this);
return this->ike_delete->task.process(&this->ike_delete->task, message); return this->ike_delete->task.process(&this->ike_delete->task, message);
} }
@@ -176,14 +202,6 @@ METHOD(task_t, build_r, status_t,
} }
this->ike_sa->set_state(this->ike_sa, IKE_REKEYING); this->ike_sa->set_state(this->ike_sa, IKE_REKEYING);
this->new_sa->set_state(this->new_sa, IKE_ESTABLISHED);
DBG0(DBG_IKE, "IKE_SA %s[%d] established between %H[%Y]...%H[%Y]",
this->new_sa->get_name(this->new_sa),
this->new_sa->get_unique_id(this->new_sa),
this->ike_sa->get_my_host(this->ike_sa),
this->ike_sa->get_my_id(this->ike_sa),
this->ike_sa->get_other_host(this->ike_sa),
this->ike_sa->get_other_id(this->ike_sa));
/* rekeying successful, delete the IKE_SA using a subtask */ /* rekeying successful, delete the IKE_SA using a subtask */
this->ike_delete = ike_delete_create(this->ike_sa, FALSE); this->ike_delete = ike_delete_create(this->ike_sa, FALSE);
@@ -233,15 +251,6 @@ METHOD(task_t, process_i, status_t,
break; break;
} }
this->new_sa->set_state(this->new_sa, IKE_ESTABLISHED);
DBG0(DBG_IKE, "IKE_SA %s[%d] established between %H[%Y]...%H[%Y]",
this->new_sa->get_name(this->new_sa),
this->new_sa->get_unique_id(this->new_sa),
this->ike_sa->get_my_host(this->ike_sa),
this->ike_sa->get_my_id(this->ike_sa),
this->ike_sa->get_other_host(this->ike_sa),
this->ike_sa->get_other_id(this->ike_sa));
/* check for collisions */ /* check for collisions */
if (this->collision && if (this->collision &&
this->collision->get_type(this->collision) == IKE_REKEY) this->collision->get_type(this->collision) == IKE_REKEY)
@@ -280,21 +289,20 @@ METHOD(task_t, process_i, status_t,
host = this->ike_sa->get_other_host(this->ike_sa); host = this->ike_sa->get_other_host(this->ike_sa);
this->new_sa->set_other_host(this->new_sa, host->clone(host)); this->new_sa->set_other_host(this->new_sa, host->clone(host));
this->ike_sa->set_state(this->ike_sa, IKE_ESTABLISHED); this->ike_sa->set_state(this->ike_sa, IKE_ESTABLISHED);
this->new_sa->set_state(this->new_sa, IKE_REKEYING);
if (this->new_sa->delete(this->new_sa) == DESTROY_ME) if (this->new_sa->delete(this->new_sa) == DESTROY_ME)
{ {
charon->ike_sa_manager->checkin_and_destroy( this->new_sa->destroy(this->new_sa);
charon->ike_sa_manager, this->new_sa);
} }
else else
{ {
charon->ike_sa_manager->checkin( charon->ike_sa_manager->checkin(
charon->ike_sa_manager, this->new_sa); charon->ike_sa_manager, this->new_sa);
/* set threads active IKE_SA after checkin */
charon->bus->set_sa(charon->bus, this->ike_sa);
} }
/* set threads active IKE_SA after checkin */ this->new_sa = NULL;
charon->bus->set_sa(charon->bus, this->ike_sa); establish_new(other);
/* inherit to other->new_sa in destroy() */
this->new_sa = other->new_sa;
other->new_sa = NULL;
return SUCCESS; return SUCCESS;
} }
} }
@@ -302,6 +310,8 @@ METHOD(task_t, process_i, status_t,
charon->bus->set_sa(charon->bus, this->ike_sa); charon->bus->set_sa(charon->bus, this->ike_sa);
} }
establish_new(this);
/* rekeying successful, delete the IKE_SA using a subtask */ /* rekeying successful, delete the IKE_SA using a subtask */
this->ike_delete = ike_delete_create(this->ike_sa, TRUE); this->ike_delete = ike_delete_create(this->ike_sa, TRUE);
this->public.task.build = _build_i_delete; this->public.task.build = _build_i_delete;
@@ -319,6 +329,8 @@ METHOD(task_t, get_type, task_type_t,
METHOD(ike_rekey_t, collide, void, METHOD(ike_rekey_t, collide, void,
private_ike_rekey_t* this, task_t *other) private_ike_rekey_t* this, task_t *other)
{ {
DBG1(DBG_IKE, "detected %N collision with %N", task_type_names, IKE_REKEY,
task_type_names, other->get_type(other));
DESTROY_IF(this->collision); DESTROY_IF(this->collision);
this->collision = other; this->collision = other;
} }
@@ -334,13 +346,7 @@ METHOD(task_t, migrate, void,
{ {
this->ike_delete->task.destroy(&this->ike_delete->task); this->ike_delete->task.destroy(&this->ike_delete->task);
} }
if (this->new_sa) DESTROY_IF(this->new_sa);
{
charon->ike_sa_manager->checkin_and_destroy(charon->ike_sa_manager,
this->new_sa);
/* set threads active IKE_SA after checkin */
charon->bus->set_sa(charon->bus, this->ike_sa);
}
DESTROY_IF(this->collision); DESTROY_IF(this->collision);
this->collision = NULL; this->collision = NULL;
@@ -353,23 +359,6 @@ METHOD(task_t, migrate, void,
METHOD(task_t, destroy, void, METHOD(task_t, destroy, void,
private_ike_rekey_t *this) private_ike_rekey_t *this)
{ {
if (this->new_sa)
{
if (this->new_sa->get_state(this->new_sa) == IKE_ESTABLISHED &&
this->new_sa->inherit(this->new_sa, this->ike_sa) != DESTROY_ME)
{
/* invoke hook if rekeying was successful */
charon->bus->ike_rekey(charon->bus, this->ike_sa, this->new_sa);
charon->ike_sa_manager->checkin(charon->ike_sa_manager, this->new_sa);
}
else
{
charon->ike_sa_manager->checkin_and_destroy(charon->ike_sa_manager,
this->new_sa);
}
/* set threads active IKE_SA after checkin */
charon->bus->set_sa(charon->bus, this->ike_sa);
}
if (this->ike_init) if (this->ike_init)
{ {
this->ike_init->task.destroy(&this->ike_init->task); this->ike_init->task.destroy(&this->ike_init->task);
@@ -378,6 +367,7 @@ METHOD(task_t, destroy, void,
{ {
this->ike_delete->task.destroy(&this->ike_delete->task); this->ike_delete->task.destroy(&this->ike_delete->task);
} }
DESTROY_IF(this->new_sa);
DESTROY_IF(this->collision); DESTROY_IF(this->collision);
free(this); free(this);
} }