X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fipsec%2Fesp_decrypt.c;h=0cf31ffb00003f5d0f91ed6b6dced8bf70fe194c;hb=eba31ecebed1a7d168da17194cab7a8955761f2b;hp=3f463505e01aaf54ec0c0845e0ee482036c0ba6c;hpb=9f6957d1a5b23d4bee9390da20537db6e93b3433;p=vpp.git diff --git a/src/vnet/ipsec/esp_decrypt.c b/src/vnet/ipsec/esp_decrypt.c index 3f463505e01..0cf31ffb000 100644 --- a/src/vnet/ipsec/esp_decrypt.c +++ b/src/vnet/ipsec/esp_decrypt.c @@ -193,7 +193,9 @@ esp_decrypt_inline (vlib_main_t * vm, } } - sa0->total_data_size += i_b0->current_length; + vlib_increment_combined_counter + (&ipsec_sa_counters, thread_index, sa_index0, + 1, i_b0->current_length); if (PREDICT_TRUE (sa0->integ_alg != IPSEC_INTEG_ALG_NONE)) { @@ -206,8 +208,9 @@ esp_decrypt_inline (vlib_main_t * vm, icv_size; i_b0->current_length -= icv_size; - hmac_calc (sa0->integ_alg, sa0->integ_key, sa0->integ_key_len, - (u8 *) esp0, i_b0->current_length, sig, sa0->use_esn, + hmac_calc (sa0->integ_alg, sa0->integ_key.data, + sa0->integ_key.len, (u8 *) esp0, + i_b0->current_length, sig, sa0->use_esn, sa0->seq_hi); if (PREDICT_FALSE (memcmp (icv, sig, icv_size))) @@ -299,7 +302,7 @@ esp_decrypt_inline (vlib_main_t * vm, esp0->data + IV_SIZE, (u8 *) vlib_buffer_get_current (o_b0) + ip_hdr_size, BLOCK_SIZE * blocks, - sa0->crypto_key, esp0->data); + sa0->crypto_key.data, esp0->data); o_b0->current_length = (blocks * BLOCK_SIZE) - 2 + ip_hdr_size; o_b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;