Revert "zebra: When shutting down an interface immediately notify about rnh"

This reverts commit 0aaa722883.
This commit is contained in:
Donald Sharp 2020-12-10 10:24:47 -05:00
parent 89527adde7
commit 3ceae22b7f
7 changed files with 11 additions and 24 deletions

View File

@ -402,10 +402,10 @@ void connected_down(struct interface *ifp, struct connected *ifc)
* head. * head.
*/ */
rib_delete(afi, SAFI_UNICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_CONNECT, 0, rib_delete(afi, SAFI_UNICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_CONNECT, 0,
0, &p, NULL, &nh, 0, zvrf->table_id, 0, 0, false, true); 0, &p, NULL, &nh, 0, zvrf->table_id, 0, 0, false);
rib_delete(afi, SAFI_MULTICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_CONNECT, rib_delete(afi, SAFI_MULTICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_CONNECT,
0, 0, &p, NULL, &nh, 0, zvrf->table_id, 0, 0, false, true); 0, 0, &p, NULL, &nh, 0, zvrf->table_id, 0, 0, false);
/* Schedule LSP forwarding entries for processing, if appropriate. */ /* Schedule LSP forwarding entries for processing, if appropriate. */
if (zvrf->vrf->vrf_id == VRF_DEFAULT) { if (zvrf->vrf->vrf_id == VRF_DEFAULT) {

View File

@ -1107,7 +1107,7 @@ void rtm_read(struct rt_msghdr *rtm)
if (rtm->rtm_type == RTM_CHANGE) if (rtm->rtm_type == RTM_CHANGE)
rib_delete(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL, rib_delete(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL,
0, zebra_flags, &p, NULL, NULL, 0, RT_TABLE_MAIN, 0, 0, zebra_flags, &p, NULL, NULL, 0, RT_TABLE_MAIN, 0,
0, true, false); 0, true);
if (rtm->rtm_type == RTM_GET || rtm->rtm_type == RTM_ADD if (rtm->rtm_type == RTM_GET || rtm->rtm_type == RTM_ADD
|| rtm->rtm_type == RTM_CHANGE) || rtm->rtm_type == RTM_CHANGE)
rib_add(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL, 0, rib_add(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL, 0,
@ -1116,7 +1116,7 @@ void rtm_read(struct rt_msghdr *rtm)
else else
rib_delete(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL, rib_delete(afi, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL,
0, zebra_flags, &p, NULL, &nh, 0, RT_TABLE_MAIN, 0, 0, zebra_flags, &p, NULL, &nh, 0, RT_TABLE_MAIN, 0,
0, true, false); 0, true);
} }
/* Interface function for the kernel routing table updates. Support /* Interface function for the kernel routing table updates. Support

View File

@ -715,7 +715,7 @@ int zebra_del_import_table_entry(struct zebra_vrf *zvrf, struct route_node *rn,
rib_delete(afi, SAFI_UNICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_TABLE, rib_delete(afi, SAFI_UNICAST, zvrf->vrf->vrf_id, ZEBRA_ROUTE_TABLE,
re->table, re->flags, &p, NULL, re->nhe->nhg.nexthop, re->table, re->flags, &p, NULL, re->nhe->nhg.nexthop,
re->nhe_id, zvrf->table_id, re->metric, re->distance, re->nhe_id, zvrf->table_id, re->metric, re->distance,
false, false); false);
return 0; return 0;
} }

View File

@ -393,7 +393,7 @@ extern void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
struct prefix *p, struct prefix_ipv6 *src_p, struct prefix *p, struct prefix_ipv6 *src_p,
const struct nexthop *nh, uint32_t nhe_id, const struct nexthop *nh, uint32_t nhe_id,
uint32_t table_id, uint32_t metric, uint8_t distance, uint32_t table_id, uint32_t metric, uint8_t distance,
bool fromkernel, bool connected_down); bool fromkernel);
extern struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t vrf_id, extern struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t vrf_id,
union g_addr *addr, union g_addr *addr,

View File

@ -869,7 +869,7 @@ static int netlink_route_change_read_unicast(struct nlmsghdr *h, ns_id_t ns_id,
if (nhe_id) { if (nhe_id) {
rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, flags, rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, flags,
&p, &src_p, NULL, nhe_id, table, metric, &p, &src_p, NULL, nhe_id, table, metric,
distance, true, false); distance, true);
} else { } else {
if (!tb[RTA_MULTIPATH]) { if (!tb[RTA_MULTIPATH]) {
struct nexthop nh; struct nexthop nh;
@ -879,13 +879,13 @@ static int netlink_route_change_read_unicast(struct nlmsghdr *h, ns_id_t ns_id,
gate, afi, vrf_id); gate, afi, vrf_id);
rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0,
flags, &p, &src_p, &nh, 0, table, flags, &p, &src_p, &nh, 0, table,
metric, distance, true, false); metric, distance, true);
} else { } else {
/* XXX: need to compare the entire list of /* XXX: need to compare the entire list of
* nexthops here for NLM_F_APPEND stupidity */ * nexthops here for NLM_F_APPEND stupidity */
rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0,
flags, &p, &src_p, NULL, 0, table, flags, &p, &src_p, NULL, 0, table,
metric, distance, true, false); metric, distance, true);
} }
} }
} }

View File

@ -2080,7 +2080,7 @@ static void zread_route_del(ZAPI_HANDLER_ARGS)
rib_delete(afi, api.safi, zvrf_id(zvrf), api.type, api.instance, rib_delete(afi, api.safi, zvrf_id(zvrf), api.type, api.instance,
api.flags, &api.prefix, src_p, NULL, 0, table_id, api.metric, api.flags, &api.prefix, src_p, NULL, 0, table_id, api.metric,
api.distance, false, false); api.distance, false);
/* Stats */ /* Stats */
switch (api.prefix.family) { switch (api.prefix.family) {

View File

@ -3088,7 +3088,7 @@ void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
unsigned short instance, uint32_t flags, struct prefix *p, unsigned short instance, uint32_t flags, struct prefix *p,
struct prefix_ipv6 *src_p, const struct nexthop *nh, struct prefix_ipv6 *src_p, const struct nexthop *nh,
uint32_t nhe_id, uint32_t table_id, uint32_t metric, uint32_t nhe_id, uint32_t table_id, uint32_t metric,
uint8_t distance, bool fromkernel, bool connected_down) uint8_t distance, bool fromkernel)
{ {
struct route_table *table; struct route_table *table;
struct route_node *rn; struct route_node *rn;
@ -3294,19 +3294,6 @@ void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
rib_delnode(rn, same); rib_delnode(rn, same);
} }
/*
* This is to force an immediate re-eval of this particular
* node via nexthop tracking. Why? Because there are scenarios
* where the interface is flapping and the normal queuing methodology
* will cause down/up events to very very rarely be combined into
* a non-event from nexthop tracking perspective. Leading
* to some fun timing situations with upper level routing protocol
* trying to and failing to install routes during this blip. Especially
* when zebra is under load.
*/
if (connected_down)
zebra_rib_evaluate_rn_nexthops(rn,
zebra_router_get_next_sequence());
route_unlock_node(rn); route_unlock_node(rn);
return; return;
} }