diff options
author | Neale Ranns <nranns@cisco.com> | 2019-07-05 00:53:45 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-07-09 15:45:52 +0000 |
commit | e28c87cd00644205e9bebca054029a8e655ed015 (patch) | |
tree | 8e6e0bac3b6d269c00b569a3ebf60338237c8a29 /src/plugins/gbp/gbp_ext_itf.c | |
parent | 777d2aee8054e77e6f265879e1dfe3776d90d758 (diff) |
gbp: Ownership of dynamically created vxlan-gbp tunnels managed via gbp_itf
Type: fix
This solves the ownership of vxlan-gbp tunnels. When the last reference of these goes away they need to be deleted. Currently there are two owners; gbp_itf via gef_itf and the lock held by the gbp_endpoint_location_t. The problem is that the
loc removes its reference whilst the fwd still holds the gbp_itf, and things go wrong.
This change moves the lifecycle management of the vxlan-gbp tunnel to the gbp_itf. When the last lock of the gbp_itf goes, so does the tunnel. now both the EP's loc and fwd can hold a lock on the gbp_itf and it's only removed when required.
The other change is the management of the 'user' of the gbp_itf. Since each user can enable and disable different features, it's the job of the gbp_itf to apply the combined set. determining a unique 'uesr' from the caller was near impossible, so I moved that to the gbp_itf, and return the allocated user, hence the 'handle' that encodes both user and interface.
The hash table maps from sw_if_index to pool index.
Change-Id: I4c7bf4c0e5dcf33d1c545f262365e69151febcf4
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/plugins/gbp/gbp_ext_itf.c')
-rw-r--r-- | src/plugins/gbp/gbp_ext_itf.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/plugins/gbp/gbp_ext_itf.c b/src/plugins/gbp/gbp_ext_itf.c index f3c54fcf470..e18bbe9c39a 100644 --- a/src/plugins/gbp/gbp_ext_itf.c +++ b/src/plugins/gbp/gbp_ext_itf.c @@ -44,7 +44,7 @@ format_gbp_ext_itf (u8 * s, va_list * args) gbp_ext_itf_t *gx = va_arg (*args, gbp_ext_itf_t *); return (format (s, "%U%s in %U", - format_gbp_itf, gx->gx_itf, + format_gbp_itf_hdl, gx->gx_itf, (gx->gx_flags & GBP_EXT_ITF_F_ANON) ? " [anon]" : "", format_gbp_bridge_domain, gx->gx_bd)); } @@ -85,7 +85,7 @@ gbp_ext_itf_add (u32 sw_if_index, u32 bd_id, u32 rd_id, u32 flags) gx->gx_bd = gbi; gx->gx_rd = gri; - gx->gx_itf = sw_if_index; + gbp_itf_hdl_reset (&gx->gx_itf); FOR_EACH_FIB_IP_PROTOCOL (fproto) { @@ -96,14 +96,13 @@ gbp_ext_itf_add (u32 sw_if_index, u32 bd_id, u32 rd_id, u32 flags) if (flags & GBP_EXT_ITF_F_ANON) { /* add interface to the BD */ - index_t itf = gbp_itf_add_and_lock (sw_if_index, - gbp_bridge_domain_get - (gbi)->gb_bd_index); + gx->gx_itf = gbp_itf_l2_add_and_lock (sw_if_index, gbi); + /* setup GBP L2 features on this interface */ - gbp_itf_set_l2_input_feature (itf, 0, + gbp_itf_l2_set_input_feature (gx->gx_itf, L2INPUT_FEAT_GBP_LPM_ANON_CLASSIFY | L2INPUT_FEAT_LEARN); - gbp_itf_set_l2_output_feature (itf, 0, + gbp_itf_l2_set_output_feature (gx->gx_itf, L2OUTPUT_FEAT_GBP_POLICY_LPM); } @@ -136,9 +135,7 @@ gbp_ext_itf_delete (u32 sw_if_index) GBP_EXT_ITF_DBG ("del: %U", format_gbp_ext_itf, gx); - if (gx->gx_flags & GBP_EXT_ITF_F_ANON) - gbp_itf_unlock (gx->gx_itf); - + gbp_itf_unlock (&gx->gx_itf); gbp_route_domain_unlock (gx->gx_rd); gbp_bridge_domain_unlock (gx->gx_bd); |