Do not use TFC padding if peer does not support ESPv3

This commit is contained in:
Martin Willi
2010-12-20 09:45:39 +01:00
parent 37788b1d06
commit 55df72e6d5
3 changed files with 31 additions and 11 deletions
+5 -2
View File
@@ -559,7 +559,7 @@ METHOD(child_sa_t, alloc_cpi, u_int16_t,
METHOD(child_sa_t, install, status_t, METHOD(child_sa_t, install, status_t,
private_child_sa_t *this, chunk_t encr, chunk_t integ, u_int32_t spi, private_child_sa_t *this, chunk_t encr, chunk_t integ, u_int32_t spi,
u_int16_t cpi, bool inbound, linked_list_t *my_ts, u_int16_t cpi, bool inbound, bool tfcv3, linked_list_t *my_ts,
linked_list_t *other_ts) linked_list_t *other_ts)
{ {
u_int16_t enc_alg = ENCR_UNDEFINED, int_alg = AUTH_UNDEFINED, size; u_int16_t enc_alg = ENCR_UNDEFINED, int_alg = AUTH_UNDEFINED, size;
@@ -592,7 +592,10 @@ METHOD(child_sa_t, install, status_t,
this->other_spi = spi; this->other_spi = spi;
this->other_cpi = cpi; this->other_cpi = cpi;
tfc = this->config->get_tfc(this->config); if (tfcv3)
{
tfc = this->config->get_tfc(this->config);
}
} }
DBG2(DBG_CHD, "adding %s %N SA", inbound ? "inbound" : "outbound", DBG2(DBG_CHD, "adding %s %N SA", inbound ? "inbound" : "outbound",
+2 -1
View File
@@ -313,12 +313,13 @@ struct child_sa_t {
* @param spi SPI to use, allocated for inbound * @param spi SPI to use, allocated for inbound
* @param cpi CPI to use, allocated for outbound * @param cpi CPI to use, allocated for outbound
* @param inbound TRUE to install an inbound SA, FALSE for outbound * @param inbound TRUE to install an inbound SA, FALSE for outbound
* @param tfcv3 TRUE if peer supports ESPv3 TFC
* @param my_ts negotiated local traffic selector list * @param my_ts negotiated local traffic selector list
* @param other_ts negotiated remote traffic selector list * @param other_ts negotiated remote traffic selector list
* @return SUCCESS or FAILED * @return SUCCESS or FAILED
*/ */
status_t (*install)(child_sa_t *this, chunk_t encr, chunk_t integ, status_t (*install)(child_sa_t *this, chunk_t encr, chunk_t integ,
u_int32_t spi, u_int16_t cpi, bool inbound, u_int32_t spi, u_int16_t cpi, bool inbound, bool tfcv3,
linked_list_t *my_ts, linked_list_t *other_ts); linked_list_t *my_ts, linked_list_t *other_ts);
/** /**
* Install the policies using some traffic selectors. * Install the policies using some traffic selectors.
+24 -8
View File
@@ -116,6 +116,11 @@ struct private_child_create_t {
*/ */
ipsec_mode_t mode; ipsec_mode_t mode;
/**
* peer accepts TFC padding for this SA
*/
bool tfcv3;
/** /**
* IPComp transform to use * IPComp transform to use
*/ */
@@ -455,17 +460,21 @@ static status_t select_and_install(private_child_create_t *this,
{ {
if (this->initiator) if (this->initiator)
{ {
status_i = this->child_sa->install(this->child_sa, encr_r, integ_r, status_i = this->child_sa->install(this->child_sa,
this->my_spi, this->my_cpi, TRUE, my_ts, other_ts); encr_r, integ_r, this->my_spi, this->my_cpi,
status_o = this->child_sa->install(this->child_sa, encr_i, integ_i, TRUE, this->tfcv3, my_ts, other_ts);
this->other_spi, this->other_cpi, FALSE, my_ts, other_ts); status_o = this->child_sa->install(this->child_sa,
encr_i, integ_i, this->other_spi, this->other_cpi,
FALSE, this->tfcv3, my_ts, other_ts);
} }
else else
{ {
status_i = this->child_sa->install(this->child_sa, encr_i, integ_i, status_i = this->child_sa->install(this->child_sa,
this->my_spi, this->my_cpi, TRUE, my_ts, other_ts); encr_i, integ_i, this->my_spi, this->my_cpi,
status_o = this->child_sa->install(this->child_sa, encr_r, integ_r, TRUE, this->tfcv3, my_ts, other_ts);
this->other_spi, this->other_cpi, FALSE, my_ts, other_ts); status_o = this->child_sa->install(this->child_sa,
encr_r, integ_r, this->other_spi, this->other_cpi,
FALSE, this->tfcv3, my_ts, other_ts);
} }
} }
chunk_clear(&integ_i); chunk_clear(&integ_i);
@@ -631,7 +640,13 @@ static void handle_notify(private_child_create_t *this, notify_payload_t *notify
ipcomp_transform_names, ipcomp); ipcomp_transform_names, ipcomp);
break; break;
} }
break;
} }
case ESP_TFC_PADDING_NOT_SUPPORTED:
DBG1(DBG_IKE, "received %N, not using ESPv3 TFC padding",
notify_type_names, notify->get_notify_type(notify));
this->tfcv3 = FALSE;
break;
default: default:
break; break;
} }
@@ -1310,6 +1325,7 @@ child_create_t *child_create_create(ike_sa_t *ike_sa,
this->keymat = ike_sa->get_keymat(ike_sa); this->keymat = ike_sa->get_keymat(ike_sa);
this->child_sa = NULL; this->child_sa = NULL;
this->mode = MODE_TUNNEL; this->mode = MODE_TUNNEL;
this->tfcv3 = TRUE;
this->ipcomp = IPCOMP_NONE; this->ipcomp = IPCOMP_NONE;
this->ipcomp_received = IPCOMP_NONE; this->ipcomp_received = IPCOMP_NONE;
this->my_spi = 0; this->my_spi = 0;