fixed MOBIKE roaming if clients address changes

This commit is contained in:
Martin Willi
2008-10-09 08:25:11 +00:00
parent 03d5f41137
commit f0974eb2c2
2 changed files with 20 additions and 5 deletions
+2 -5
View File
@@ -1451,7 +1451,7 @@ static status_t process_message(private_ike_sa_t *this, message_t *message)
charon->scheduler->schedule_job(charon->scheduler, job,
HALF_OPEN_IKE_SA_TIMEOUT);
}
this->time.inbound = time(NULL);
/* check if message is trustworthy, and update host information */
if (this->state == IKE_CREATED || this->state == IKE_CONNECTING ||
message->get_exchange_type(message) != IKE_SA_INIT)
@@ -1460,7 +1460,6 @@ static status_t process_message(private_ike_sa_t *this, message_t *message)
{ /* with MOBIKE, we do no implicit updates */
update_hosts(this, me, other);
}
this->time.inbound = time(NULL);
}
status = this->task_manager->process_message(this->task_manager, message);
if (status != DESTROY_ME)
@@ -2242,9 +2241,7 @@ static status_t roam(private_ike_sa_t *this, bool address)
src->destroy(src);
return SUCCESS;
}
/* old address is not valid anymore, try with new one */
src->set_port(src, this->my_host->get_port(this->my_host));
set_my_host(this, src);
src->destroy(src);
}
/* update addresses with mobike, if supported ... */
+18
View File
@@ -329,6 +329,24 @@ static status_t build_i(private_ike_mobike_t *this, message_t *message)
}
else if (message->get_exchange_type(message) == INFORMATIONAL)
{
host_t *old, *new;
/* we check if the existing address is still valid */
old = message->get_source(message);
new = charon->kernel_interface->get_source_addr(charon->kernel_interface,
message->get_destination(message), old);
if (new)
{
if (!new->ip_equals(new, old))
{
new->set_port(new, old->get_port(old));
message->set_source(message, new);
}
else
{
new->destroy(new);
}
}
if (this->update)
{
message->add_notify(message, FALSE, UPDATE_SA_ADDRESSES, chunk_empty);