Added possibility to send notification if task_manager->process fails
This commit is contained in:
@@ -500,6 +500,66 @@ static status_t build_response(private_task_manager_t *this, message_t *request)
|
|||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send a notify in a separate INFORMATIONAL exchange back to the sender.
|
||||||
|
*/
|
||||||
|
static void send_notify_response(private_task_manager_t *this,
|
||||||
|
message_t *request, notify_type_t type,
|
||||||
|
chunk_t data, task_t *task)
|
||||||
|
{
|
||||||
|
message_t *response;
|
||||||
|
packet_t *packet;
|
||||||
|
host_t *me, *other;
|
||||||
|
u_int32_t mid;
|
||||||
|
|
||||||
|
if (request && request->get_exchange_type(request) == INFORMATIONAL_V1)
|
||||||
|
{ /* don't respond to INFORMATIONAL requests to avoid a notify war */
|
||||||
|
DBG1(DBG_IKE, "ignore malformed INFORMATIONAL request");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
response = message_create(IKEV1_MAJOR_VERSION, IKEV1_MINOR_VERSION);
|
||||||
|
response->set_exchange_type(response, INFORMATIONAL_V1);
|
||||||
|
response->set_request(response, TRUE);
|
||||||
|
this->rng->get_bytes(this->rng, sizeof(mid), (void*)&mid);
|
||||||
|
response->set_message_id(response, mid);
|
||||||
|
|
||||||
|
if (task)
|
||||||
|
{
|
||||||
|
/* Let the task build the response */
|
||||||
|
if (task->build(task,response) != SUCCESS)
|
||||||
|
{
|
||||||
|
response->destroy(response);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
response->add_notify(response, FALSE, type, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
me = this->ike_sa->get_my_host(this->ike_sa);
|
||||||
|
if (me->is_anyaddr(me))
|
||||||
|
{
|
||||||
|
me = request->get_destination(request);
|
||||||
|
this->ike_sa->set_my_host(this->ike_sa, me->clone(me));
|
||||||
|
}
|
||||||
|
other = this->ike_sa->get_other_host(this->ike_sa);
|
||||||
|
if (other->is_anyaddr(other))
|
||||||
|
{
|
||||||
|
other = request->get_source(request);
|
||||||
|
this->ike_sa->set_other_host(this->ike_sa, other->clone(other));
|
||||||
|
}
|
||||||
|
response->set_source(response, me->clone(me));
|
||||||
|
response->set_destination(response, other->clone(other));
|
||||||
|
if (this->ike_sa->generate_message(this->ike_sa, response,
|
||||||
|
&packet) == SUCCESS)
|
||||||
|
{
|
||||||
|
charon->sender->send(charon->sender, packet);
|
||||||
|
}
|
||||||
|
response->destroy(response);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* handle an incoming request message
|
* handle an incoming request message
|
||||||
*/
|
*/
|
||||||
@@ -610,6 +670,8 @@ static status_t process_request(private_task_manager_t *this,
|
|||||||
/* processed, but task needs at least another call to build() */
|
/* processed, but task needs at least another call to build() */
|
||||||
send_response = TRUE;
|
send_response = TRUE;
|
||||||
break;
|
break;
|
||||||
|
case FAILED_SEND_ERROR:
|
||||||
|
send_notify_response(this, NULL, 0, chunk_empty, task);
|
||||||
case FAILED:
|
case FAILED:
|
||||||
default:
|
default:
|
||||||
charon->bus->ike_updown(charon->bus, this->ike_sa, FALSE);
|
charon->bus->ike_updown(charon->bus, this->ike_sa, FALSE);
|
||||||
@@ -683,52 +745,6 @@ static status_t process_response(private_task_manager_t *this,
|
|||||||
return initiate(this);
|
return initiate(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Send a notify in a separate INFORMATIONAL exchange back to the sender.
|
|
||||||
*/
|
|
||||||
static void send_notify_response(private_task_manager_t *this,
|
|
||||||
message_t *request, notify_type_t type,
|
|
||||||
chunk_t data)
|
|
||||||
{
|
|
||||||
message_t *response;
|
|
||||||
packet_t *packet;
|
|
||||||
host_t *me, *other;
|
|
||||||
u_int32_t mid;
|
|
||||||
|
|
||||||
if (request->get_exchange_type(request) == INFORMATIONAL_V1)
|
|
||||||
{ /* don't respond to INFORMATIONAL requests to avoid a notify war */
|
|
||||||
DBG1(DBG_IKE, "ignore malformed INFORMATIONAL request");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
response = message_create(IKEV1_MAJOR_VERSION, IKEV1_MINOR_VERSION);
|
|
||||||
response->set_exchange_type(response, INFORMATIONAL_V1);
|
|
||||||
response->set_request(response, TRUE);
|
|
||||||
this->rng->get_bytes(this->rng, sizeof(mid), (void*)&mid);
|
|
||||||
response->set_message_id(response, mid);
|
|
||||||
response->add_notify(response, FALSE, type, data);
|
|
||||||
me = this->ike_sa->get_my_host(this->ike_sa);
|
|
||||||
if (me->is_anyaddr(me))
|
|
||||||
{
|
|
||||||
me = request->get_destination(request);
|
|
||||||
this->ike_sa->set_my_host(this->ike_sa, me->clone(me));
|
|
||||||
}
|
|
||||||
other = this->ike_sa->get_other_host(this->ike_sa);
|
|
||||||
if (other->is_anyaddr(other))
|
|
||||||
{
|
|
||||||
other = request->get_source(request);
|
|
||||||
this->ike_sa->set_other_host(this->ike_sa, other->clone(other));
|
|
||||||
}
|
|
||||||
response->set_source(response, me->clone(me));
|
|
||||||
response->set_destination(response, other->clone(other));
|
|
||||||
if (this->ike_sa->generate_message(this->ike_sa, response,
|
|
||||||
&packet) == SUCCESS)
|
|
||||||
{
|
|
||||||
charon->sender->send(charon->sender, packet);
|
|
||||||
}
|
|
||||||
response->destroy(response);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse the given message and verify that it is valid.
|
* Parse the given message and verify that it is valid.
|
||||||
*/
|
*/
|
||||||
@@ -745,27 +761,27 @@ static status_t parse_message(private_task_manager_t *this, message_t *msg)
|
|||||||
case NOT_SUPPORTED:
|
case NOT_SUPPORTED:
|
||||||
DBG1(DBG_IKE, "unsupported exchange type");
|
DBG1(DBG_IKE, "unsupported exchange type");
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
INVALID_EXCHANGE_TYPE, chunk_empty);
|
INVALID_EXCHANGE_TYPE, chunk_empty, NULL);
|
||||||
break;
|
break;
|
||||||
case PARSE_ERROR:
|
case PARSE_ERROR:
|
||||||
DBG1(DBG_IKE, "message parsing failed");
|
DBG1(DBG_IKE, "message parsing failed");
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
PAYLOAD_MALFORMED, chunk_empty);
|
PAYLOAD_MALFORMED, chunk_empty, NULL);
|
||||||
break;
|
break;
|
||||||
case VERIFY_ERROR:
|
case VERIFY_ERROR:
|
||||||
DBG1(DBG_IKE, "message verification failed");
|
DBG1(DBG_IKE, "message verification failed");
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
PAYLOAD_MALFORMED, chunk_empty);
|
PAYLOAD_MALFORMED, chunk_empty, NULL);
|
||||||
break;
|
break;
|
||||||
case FAILED:
|
case FAILED:
|
||||||
DBG1(DBG_IKE, "integrity check failed");
|
DBG1(DBG_IKE, "integrity check failed");
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
INVALID_HASH_INFORMATION, chunk_empty);
|
INVALID_HASH_INFORMATION, chunk_empty, NULL);
|
||||||
break;
|
break;
|
||||||
case INVALID_STATE:
|
case INVALID_STATE:
|
||||||
DBG1(DBG_IKE, "found encrypted message, but no keys available");
|
DBG1(DBG_IKE, "found encrypted message, but no keys available");
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
PAYLOAD_MALFORMED, chunk_empty);
|
PAYLOAD_MALFORMED, chunk_empty, NULL);
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -844,7 +860,7 @@ METHOD(task_manager_t, process_message, status_t,
|
|||||||
DBG1(DBG_IKE, "no IKE config found for %H...%H, sending %N",
|
DBG1(DBG_IKE, "no IKE config found for %H...%H, sending %N",
|
||||||
me, other, notify_type_names, NO_PROPOSAL_CHOSEN);
|
me, other, notify_type_names, NO_PROPOSAL_CHOSEN);
|
||||||
send_notify_response(this, msg,
|
send_notify_response(this, msg,
|
||||||
NO_PROPOSAL_CHOSEN, chunk_empty);
|
NO_PROPOSAL_CHOSEN, chunk_empty, NULL);
|
||||||
return DESTROY_ME;
|
return DESTROY_ME;
|
||||||
}
|
}
|
||||||
this->ike_sa->set_ike_cfg(this->ike_sa, ike_cfg);
|
this->ike_sa->set_ike_cfg(this->ike_sa, ike_cfg);
|
||||||
|
|||||||
Reference in New Issue
Block a user