From: Matthew Smith Date: Mon, 6 Nov 2017 18:12:13 +0000 (-0600) Subject: Fix bug in key calculation for IPsec tunnel interface X-Git-Tag: v18.04-rc0~278 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=890955866f5953727a782363cf3ece051ae7d4c5;p=vpp.git Fix bug in key calculation for IPsec tunnel interface When IPsec tunnel interface has the inbound SA updated, the key used to find the right interface for inbound packets was being generated using the destination address instead of the source. Change-Id: Id5a6fb1511637c912b329aad65188789646a5889 Signed-off-by: Matthew Smith --- diff --git a/src/vnet/ipsec/ipsec_if.c b/src/vnet/ipsec/ipsec_if.c index 5a0d4898ccb..0a080819523 100644 --- a/src/vnet/ipsec/ipsec_if.c +++ b/src/vnet/ipsec/ipsec_if.c @@ -442,14 +442,14 @@ ipsec_set_interface_sa (vnet_main_t * vnm, u32 hw_if_index, u32 sa_id, /* unset old inbound hash entry. packets should stop arriving */ key = - (u64) old_sa->tunnel_dst_addr.ip4.as_u32 << 32 | (u64) old_sa->spi; + (u64) old_sa->tunnel_src_addr.ip4.as_u32 << 32 | (u64) old_sa->spi; p = hash_get (im->ipsec_if_pool_index_by_key, key); if (p) hash_unset (im->ipsec_if_pool_index_by_key, key); /* set new inbound SA, then set new hash entry */ t->input_sa_index = sa_index; - key = (u64) sa->tunnel_dst_addr.ip4.as_u32 << 32 | (u64) sa->spi; + key = (u64) sa->tunnel_src_addr.ip4.as_u32 << 32 | (u64) sa->spi; hash_set (im->ipsec_if_pool_index_by_key, key, hi->dev_instance); } else