]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_rib.c
zebra: On route install/update failure correctly indicate in rib
[mirror_frr.git] / zebra / zebra_rib.c
CommitLineData
718e3744 1/* Routing Information Base.
2 * Copyright (C) 1997, 98, 99, 2001 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#include <zebra.h>
22
718e3744 23#include "command.h"
43e52561
QY
24#include "if.h"
25#include "linklist.h"
718e3744 26#include "log.h"
deaa50db 27#include "log_int.h"
43e52561
QY
28#include "memory.h"
29#include "mpls.h"
30#include "nexthop.h"
31#include "prefix.h"
7514fb77
PJ
32#include "prefix.h"
33#include "routemap.h"
43e52561 34#include "sockunion.h"
05737783 35#include "srcdest_table.h"
43e52561
QY
36#include "table.h"
37#include "thread.h"
38#include "vrf.h"
39#include "workqueue.h"
718e3744 40
89272910 41#include "zebra/zebra_router.h"
43e52561
QY
42#include "zebra/connected.h"
43#include "zebra/debug.h"
44#include "zebra/interface.h"
45#include "zebra/redistribute.h"
718e3744 46#include "zebra/rib.h"
47#include "zebra/rt.h"
43e52561
QY
48#include "zebra/zapi_msg.h"
49#include "zebra/zebra_errors.h"
50#include "zebra/zebra_memory.h"
7c551956 51#include "zebra/zebra_ns.h"
fb018d25 52#include "zebra/zebra_rnh.h"
43e52561
QY
53#include "zebra/zebra_routemap.h"
54#include "zebra/zebra_vrf.h"
6134fd82 55#include "zebra/zebra_vxlan.h"
7cdb1a84
MS
56#include "zebra/zapi_msg.h"
57#include "zebra/zebra_dplane.h"
58
59/*
60 * Event, list, and mutex for delivery of dataplane results
61 */
62static pthread_mutex_t dplane_mutex;
63static struct thread *t_dplane;
25779064 64static struct dplane_ctx_q rib_dplane_q;
718e3744 65
d62a17ae 66DEFINE_HOOK(rib_update, (struct route_node * rn, const char *reason),
67 (rn, reason))
4f8ea50c 68
6baf7bb8
DS
69/* Should we allow non Quagga processes to delete our routes */
70extern int allow_delete;
71
718e3744 72/* Each route type's string and default distance value. */
d62a17ae 73static const struct {
74 int key;
75 int distance;
73547a75 76 uint8_t meta_q_map;
d62a17ae 77} route_info[ZEBRA_ROUTE_MAX] = {
73547a75
DS
78 [ZEBRA_ROUTE_SYSTEM] = {ZEBRA_ROUTE_SYSTEM, 0, 4},
79 [ZEBRA_ROUTE_KERNEL] = {ZEBRA_ROUTE_KERNEL, 0, 0},
80 [ZEBRA_ROUTE_CONNECT] = {ZEBRA_ROUTE_CONNECT, 0, 0},
81 [ZEBRA_ROUTE_STATIC] = {ZEBRA_ROUTE_STATIC, 1, 1},
82 [ZEBRA_ROUTE_RIP] = {ZEBRA_ROUTE_RIP, 120, 2},
83 [ZEBRA_ROUTE_RIPNG] = {ZEBRA_ROUTE_RIPNG, 120, 2},
84 [ZEBRA_ROUTE_OSPF] = {ZEBRA_ROUTE_OSPF, 110, 2},
85 [ZEBRA_ROUTE_OSPF6] = {ZEBRA_ROUTE_OSPF6, 110, 2},
86 [ZEBRA_ROUTE_ISIS] = {ZEBRA_ROUTE_ISIS, 115, 2},
87 [ZEBRA_ROUTE_BGP] = {ZEBRA_ROUTE_BGP, 20 /* IBGP is 200. */, 3},
88 [ZEBRA_ROUTE_PIM] = {ZEBRA_ROUTE_PIM, 255, 4},
89 [ZEBRA_ROUTE_EIGRP] = {ZEBRA_ROUTE_EIGRP, 90, 2},
90 [ZEBRA_ROUTE_NHRP] = {ZEBRA_ROUTE_NHRP, 10, 2},
91 [ZEBRA_ROUTE_HSLS] = {ZEBRA_ROUTE_HSLS, 255, 4},
92 [ZEBRA_ROUTE_OLSR] = {ZEBRA_ROUTE_OLSR, 255, 4},
93 [ZEBRA_ROUTE_TABLE] = {ZEBRA_ROUTE_TABLE, 150, 1},
94 [ZEBRA_ROUTE_LDP] = {ZEBRA_ROUTE_LDP, 150, 4},
95 [ZEBRA_ROUTE_VNC] = {ZEBRA_ROUTE_VNC, 20, 3},
96 [ZEBRA_ROUTE_VNC_DIRECT] = {ZEBRA_ROUTE_VNC_DIRECT, 20, 3},
97 [ZEBRA_ROUTE_VNC_DIRECT_RH] = {ZEBRA_ROUTE_VNC_DIRECT_RH, 20, 3},
98 [ZEBRA_ROUTE_BGP_DIRECT] = {ZEBRA_ROUTE_BGP_DIRECT, 20, 3},
99 [ZEBRA_ROUTE_BGP_DIRECT_EXT] = {ZEBRA_ROUTE_BGP_DIRECT_EXT, 20, 3},
100 [ZEBRA_ROUTE_BABEL] = {ZEBRA_ROUTE_BABEL, 100, 2},
101 [ZEBRA_ROUTE_SHARP] = {ZEBRA_ROUTE_SHARP, 150, 4},
c710b277 102
d62a17ae 103 /* no entry/default: 150 */
718e3744 104};
6b0655a2 105
4623d897
DL
106/* RPF lookup behaviour */
107static enum multicast_mode ipv4_multicast_mode = MCAST_NO_CONFIG;
108
6c4f4e6e 109
d62a17ae 110static void __attribute__((format(printf, 5, 6)))
111_rnode_zlog(const char *_func, vrf_id_t vrf_id, struct route_node *rn,
112 int priority, const char *msgfmt, ...)
2263a412 113{
d62a17ae 114 char buf[SRCDEST2STR_BUFFER + sizeof(" (MRIB)")];
115 char msgbuf[512];
116 va_list ap;
2263a412 117
d62a17ae 118 va_start(ap, msgfmt);
119 vsnprintf(msgbuf, sizeof(msgbuf), msgfmt, ap);
120 va_end(ap);
2263a412 121
d62a17ae 122 if (rn) {
123 rib_table_info_t *info = srcdest_rnode_table_info(rn);
124 srcdest_rnode2str(rn, buf, sizeof(buf));
cb653491 125
d62a17ae 126 if (info->safi == SAFI_MULTICAST)
127 strcat(buf, " (MRIB)");
128 } else {
129 snprintf(buf, sizeof(buf), "{(route_node *) NULL}");
130 }
2263a412 131
d62a17ae 132 zlog(priority, "%s: %d:%s: %s", _func, vrf_id, buf, msgbuf);
2263a412
DL
133}
134
d62a17ae 135#define rnode_debug(node, vrf_id, ...) \
2263a412 136 _rnode_zlog(__func__, vrf_id, node, LOG_DEBUG, __VA_ARGS__)
d62a17ae 137#define rnode_info(node, ...) \
2263a412
DL
138 _rnode_zlog(__func__, vrf_id, node, LOG_INFO, __VA_ARGS__)
139
fd289fc8 140uint8_t route_distance(int type)
40c7bdb0 141{
fd289fc8 142 uint8_t distance;
40c7bdb0 143
d62a17ae 144 if ((unsigned)type >= array_size(route_info))
145 distance = 150;
146 else
147 distance = route_info[type].distance;
40c7bdb0 148
d62a17ae 149 return distance;
40c7bdb0 150}
151
d7c0a89a 152int is_zebra_valid_kernel_table(uint32_t table_id)
7a4bb9c5 153{
8f500a1c 154#ifdef linux
d62a17ae 155 if ((table_id == RT_TABLE_UNSPEC) || (table_id == RT_TABLE_LOCAL)
156 || (table_id == RT_TABLE_COMPAT))
157 return 0;
8f500a1c
RW
158#endif
159
d62a17ae 160 return 1;
7a4bb9c5
DS
161}
162
d7c0a89a 163int is_zebra_main_routing_table(uint32_t table_id)
7a4bb9c5 164{
d62a17ae 165 if ((table_id == RT_TABLE_MAIN)
b3d43ff4 166 || (table_id == zrouter.rtm_table_default))
d62a17ae 167 return 1;
168 return 0;
7a4bb9c5
DS
169}
170
86391e56 171int zebra_check_addr(const struct prefix *p)
0aabccc0 172{
d62a17ae 173 if (p->family == AF_INET) {
d7c0a89a 174 uint32_t addr;
0aabccc0 175
d62a17ae 176 addr = p->u.prefix4.s_addr;
177 addr = ntohl(addr);
0aabccc0 178
d62a17ae 179 if (IPV4_NET127(addr) || IN_CLASSD(addr)
180 || IPV4_LINKLOCAL(addr))
181 return 0;
182 }
183 if (p->family == AF_INET6) {
184 if (IN6_IS_ADDR_LOOPBACK(&p->u.prefix6))
185 return 0;
186 if (IN6_IS_ADDR_LINKLOCAL(&p->u.prefix6))
187 return 0;
188 }
189 return 1;
0aabccc0
DD
190}
191
fa713d9e 192/* Add nexthop to the end of a rib node's nexthop list */
d62a17ae 193void route_entry_nexthop_add(struct route_entry *re, struct nexthop *nexthop)
fa713d9e 194{
7ee30f28 195 nexthop_add(&re->ng.nexthop, nexthop);
d62a17ae 196 re->nexthop_num++;
718e3744 197}
198
6e26278c 199
6e26278c
DS
200/**
201 * copy_nexthop - copy a nexthop to the rib structure.
202 */
d62a17ae 203void route_entry_copy_nexthops(struct route_entry *re, struct nexthop *nh)
6e26278c 204{
7ee30f28
DS
205 assert(!re->ng.nexthop);
206 copy_nexthops(&re->ng.nexthop, nh, NULL);
d62a17ae 207 for (struct nexthop *nexthop = nh; nexthop; nexthop = nexthop->next)
208 re->nexthop_num++;
6e26278c
DS
209}
210
718e3744 211/* Delete specified nexthop from the list. */
d62a17ae 212void route_entry_nexthop_delete(struct route_entry *re, struct nexthop *nexthop)
718e3744 213{
d62a17ae 214 if (nexthop->next)
215 nexthop->next->prev = nexthop->prev;
216 if (nexthop->prev)
217 nexthop->prev->next = nexthop->next;
218 else
7ee30f28 219 re->ng.nexthop = nexthop->next;
d62a17ae 220 re->nexthop_num--;
718e3744 221}
222
fa713d9e 223
d62a17ae 224struct nexthop *route_entry_nexthop_ifindex_add(struct route_entry *re,
4a7371e9
DS
225 ifindex_t ifindex,
226 vrf_id_t nh_vrf_id)
718e3744 227{
d62a17ae 228 struct nexthop *nexthop;
718e3744 229
d62a17ae 230 nexthop = nexthop_new();
231 nexthop->type = NEXTHOP_TYPE_IFINDEX;
232 nexthop->ifindex = ifindex;
4a7371e9 233 nexthop->vrf_id = nh_vrf_id;
718e3744 234
d62a17ae 235 route_entry_nexthop_add(re, nexthop);
718e3744 236
d62a17ae 237 return nexthop;
718e3744 238}
239
d62a17ae 240struct nexthop *route_entry_nexthop_ipv4_add(struct route_entry *re,
241 struct in_addr *ipv4,
4a7371e9
DS
242 struct in_addr *src,
243 vrf_id_t nh_vrf_id)
718e3744 244{
d62a17ae 245 struct nexthop *nexthop;
718e3744 246
d62a17ae 247 nexthop = nexthop_new();
248 nexthop->type = NEXTHOP_TYPE_IPV4;
4a7371e9 249 nexthop->vrf_id = nh_vrf_id;
d62a17ae 250 nexthop->gate.ipv4 = *ipv4;
251 if (src)
252 nexthop->src.ipv4 = *src;
718e3744 253
d62a17ae 254 route_entry_nexthop_add(re, nexthop);
718e3744 255
d62a17ae 256 return nexthop;
718e3744 257}
258
d62a17ae 259struct nexthop *route_entry_nexthop_ipv4_ifindex_add(struct route_entry *re,
260 struct in_addr *ipv4,
261 struct in_addr *src,
4a7371e9
DS
262 ifindex_t ifindex,
263 vrf_id_t nh_vrf_id)
718e3744 264{
d62a17ae 265 struct nexthop *nexthop;
266 struct interface *ifp;
718e3744 267
d62a17ae 268 nexthop = nexthop_new();
4a7371e9 269 nexthop->vrf_id = nh_vrf_id;
d62a17ae 270 nexthop->type = NEXTHOP_TYPE_IPV4_IFINDEX;
271 nexthop->gate.ipv4 = *ipv4;
272 if (src)
273 nexthop->src.ipv4 = *src;
274 nexthop->ifindex = ifindex;
4a7371e9 275 ifp = if_lookup_by_index(nexthop->ifindex, nh_vrf_id);
d62a17ae 276 /*Pending: need to think if null ifp here is ok during bootup?
277 There was a crash because ifp here was coming to be NULL */
278 if (ifp)
2b83602b 279 if (connected_is_unnumbered(ifp))
d62a17ae 280 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK);
718e3744 281
d62a17ae 282 route_entry_nexthop_add(re, nexthop);
718e3744 283
d62a17ae 284 return nexthop;
718e3744 285}
286
d62a17ae 287struct nexthop *route_entry_nexthop_ipv6_add(struct route_entry *re,
4a7371e9
DS
288 struct in6_addr *ipv6,
289 vrf_id_t nh_vrf_id)
718e3744 290{
d62a17ae 291 struct nexthop *nexthop;
718e3744 292
d62a17ae 293 nexthop = nexthop_new();
4a7371e9 294 nexthop->vrf_id = nh_vrf_id;
d62a17ae 295 nexthop->type = NEXTHOP_TYPE_IPV6;
296 nexthop->gate.ipv6 = *ipv6;
718e3744 297
d62a17ae 298 route_entry_nexthop_add(re, nexthop);
718e3744 299
d62a17ae 300 return nexthop;
718e3744 301}
302
d62a17ae 303struct nexthop *route_entry_nexthop_ipv6_ifindex_add(struct route_entry *re,
304 struct in6_addr *ipv6,
4a7371e9
DS
305 ifindex_t ifindex,
306 vrf_id_t nh_vrf_id)
718e3744 307{
d62a17ae 308 struct nexthop *nexthop;
718e3744 309
d62a17ae 310 nexthop = nexthop_new();
4a7371e9 311 nexthop->vrf_id = nh_vrf_id;
d62a17ae 312 nexthop->type = NEXTHOP_TYPE_IPV6_IFINDEX;
313 nexthop->gate.ipv6 = *ipv6;
314 nexthop->ifindex = ifindex;
718e3744 315
d62a17ae 316 route_entry_nexthop_add(re, nexthop);
718e3744 317
d62a17ae 318 return nexthop;
718e3744 319}
718e3744 320
a8309422 321struct nexthop *route_entry_nexthop_blackhole_add(struct route_entry *re,
60466a63 322 enum blackhole_type bh_type)
595db7f1 323{
d62a17ae 324 struct nexthop *nexthop;
595db7f1 325
d62a17ae 326 nexthop = nexthop_new();
4a7371e9 327 nexthop->vrf_id = VRF_DEFAULT;
d62a17ae 328 nexthop->type = NEXTHOP_TYPE_BLACKHOLE;
a8309422 329 nexthop->bh_type = bh_type;
595db7f1 330
d62a17ae 331 route_entry_nexthop_add(re, nexthop);
595db7f1 332
d62a17ae 333 return nexthop;
595db7f1 334}
335
86391e56 336static void nexthop_set_resolved(afi_t afi, const struct nexthop *newhop,
d62a17ae 337 struct nexthop *nexthop)
4491a88f 338{
d62a17ae 339 struct nexthop *resolved_hop;
4491a88f 340
d62a17ae 341 resolved_hop = nexthop_new();
342 SET_FLAG(resolved_hop->flags, NEXTHOP_FLAG_ACTIVE);
d855d11f 343
4a7371e9 344 resolved_hop->vrf_id = nexthop->vrf_id;
d855d11f
RW
345 switch (newhop->type) {
346 case NEXTHOP_TYPE_IPV4:
347 case NEXTHOP_TYPE_IPV4_IFINDEX:
348 /* If the resolving route specifies a gateway, use it */
d62a17ae 349 resolved_hop->type = newhop->type;
350 resolved_hop->gate.ipv4 = newhop->gate.ipv4;
4491a88f 351
d62a17ae 352 if (newhop->ifindex) {
353 resolved_hop->type = NEXTHOP_TYPE_IPV4_IFINDEX;
354 resolved_hop->ifindex = newhop->ifindex;
d62a17ae 355 }
d855d11f
RW
356 break;
357 case NEXTHOP_TYPE_IPV6:
358 case NEXTHOP_TYPE_IPV6_IFINDEX:
d62a17ae 359 resolved_hop->type = newhop->type;
360 resolved_hop->gate.ipv6 = newhop->gate.ipv6;
361
362 if (newhop->ifindex) {
363 resolved_hop->type = NEXTHOP_TYPE_IPV6_IFINDEX;
364 resolved_hop->ifindex = newhop->ifindex;
365 }
d855d11f
RW
366 break;
367 case NEXTHOP_TYPE_IFINDEX:
368 /* If the resolving route is an interface route,
369 * it means the gateway we are looking up is connected
370 * to that interface. (The actual network is _not_ onlink).
371 * Therefore, the resolved route should have the original
372 * gateway as nexthop as it is directly connected.
373 *
374 * On Linux, we have to set the onlink netlink flag because
375 * otherwise, the kernel won't accept the route.
376 */
d62a17ae 377 resolved_hop->flags |= NEXTHOP_FLAG_ONLINK;
378 if (afi == AFI_IP) {
379 resolved_hop->type = NEXTHOP_TYPE_IPV4_IFINDEX;
380 resolved_hop->gate.ipv4 = nexthop->gate.ipv4;
381 } else if (afi == AFI_IP6) {
382 resolved_hop->type = NEXTHOP_TYPE_IPV6_IFINDEX;
383 resolved_hop->gate.ipv6 = nexthop->gate.ipv6;
384 }
385 resolved_hop->ifindex = newhop->ifindex;
d855d11f
RW
386 break;
387 case NEXTHOP_TYPE_BLACKHOLE:
59693377
DS
388 resolved_hop->type = NEXTHOP_TYPE_BLACKHOLE;
389 resolved_hop->bh_type = nexthop->bh_type;
d855d11f 390 break;
59693377 391 }
d855d11f 392
effcfaeb
DS
393 if (newhop->flags & NEXTHOP_FLAG_ONLINK)
394 resolved_hop->flags |= NEXTHOP_FLAG_ONLINK;
395
f674dfe2
RW
396 /* Copy labels of the resolved route */
397 if (newhop->nh_label)
398 nexthop_add_labels(resolved_hop, newhop->nh_label_type,
399 newhop->nh_label->num_labels,
400 &newhop->nh_label->label[0]);
401
d62a17ae 402 resolved_hop->rparent = nexthop;
403 nexthop_add(&nexthop->resolved, resolved_hop);
4491a88f
DS
404}
405
718e3744 406/* If force flag is not set, do not modify falgs at all for uninstall
407 the route from FIB. */
d62a17ae 408static int nexthop_active(afi_t afi, struct route_entry *re,
0dddbf72 409 struct nexthop *nexthop, bool set,
d62a17ae 410 struct route_node *top)
411{
412 struct prefix p;
413 struct route_table *table;
414 struct route_node *rn;
5f7a4718 415 struct route_entry *match = NULL;
d62a17ae 416 int resolved;
417 struct nexthop *newhop;
418 struct interface *ifp;
5f7a4718 419 rib_dest_t *dest;
d62a17ae 420
421 if ((nexthop->type == NEXTHOP_TYPE_IPV4)
422 || nexthop->type == NEXTHOP_TYPE_IPV6)
423 nexthop->ifindex = 0;
424
425 if (set) {
426 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE);
d62a17ae 427 nexthops_free(nexthop->resolved);
428 nexthop->resolved = NULL;
429 re->nexthop_mtu = 0;
d44ca835 430 }
18ff3edd 431
058c16b7
DS
432 /*
433 * If the kernel has sent us a route, then
434 * by golly gee whiz it's a good route.
435 */
436 if (re->type == ZEBRA_ROUTE_KERNEL ||
437 re->type == ZEBRA_ROUTE_SYSTEM)
438 return 1;
439
d62a17ae 440 /* Skip nexthops that have been filtered out due to route-map */
441 /* The nexthops are specific to this route and so the same */
442 /* nexthop for a different route may not have this flag set */
34815ea3
DS
443 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FILTERED)) {
444 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
445 zlog_debug("\t%s: Nexthop Filtered",
446 __PRETTY_FUNCTION__);
d62a17ae 447 return 0;
34815ea3 448 }
d62a17ae 449
450 /*
451 * Check to see if we should trust the passed in information
452 * for UNNUMBERED interfaces as that we won't find the GW
453 * address in the routing table.
2b83602b 454 * This check should suffice to handle IPv4 or IPv6 routes
455 * sourced from EVPN routes which are installed with the
456 * next hop as the remote VTEP IP.
d62a17ae 457 */
458 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK)) {
4a7371e9 459 ifp = if_lookup_by_index(nexthop->ifindex, nexthop->vrf_id);
fe85601c
DS
460 if (!ifp) {
461 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
462 zlog_debug(
463 "\t%s: Onlink and interface: %u[%u] does not exist",
464 __PRETTY_FUNCTION__, nexthop->ifindex,
465 nexthop->vrf_id);
466 return 0;
467 }
468 if (connected_is_unnumbered(ifp)) {
d62a17ae 469 if (if_is_operative(ifp))
470 return 1;
34815ea3
DS
471 else {
472 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
473 zlog_debug(
474 "\t%s: Onlink and interface %s is not operative",
475 __PRETTY_FUNCTION__, ifp->name);
d62a17ae 476 return 0;
34815ea3 477 }
fe85601c
DS
478 }
479 if (!if_is_operative(ifp)) {
34815ea3
DS
480 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
481 zlog_debug(
482 "\t%s: Interface %s is not unnumbered",
483 __PRETTY_FUNCTION__,
484 ifp ? ifp->name : "Unknown");
d62a17ae 485 return 0;
34815ea3 486 }
16814f96 487 }
718e3744 488
d62a17ae 489 /* Make lookup prefix. */
490 memset(&p, 0, sizeof(struct prefix));
491 switch (afi) {
492 case AFI_IP:
493 p.family = AF_INET;
494 p.prefixlen = IPV4_MAX_PREFIXLEN;
495 p.u.prefix4 = nexthop->gate.ipv4;
496 break;
497 case AFI_IP6:
498 p.family = AF_INET6;
499 p.prefixlen = IPV6_MAX_PREFIXLEN;
500 p.u.prefix6 = nexthop->gate.ipv6;
501 break;
502 default:
503 assert(afi != AFI_IP && afi != AFI_IP6);
504 break;
718e3744 505 }
d62a17ae 506 /* Lookup table. */
4a7371e9 507 table = zebra_vrf_table(afi, SAFI_UNICAST, nexthop->vrf_id);
34815ea3
DS
508 if (!table) {
509 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
510 zlog_debug("\t%s: Table not found",
511 __PRETTY_FUNCTION__);
d62a17ae 512 return 0;
34815ea3 513 }
d62a17ae 514
515 rn = route_node_match(table, (struct prefix *)&p);
516 while (rn) {
517 route_unlock_node(rn);
518
fd7fd9e5
DS
519 /* Lookup should halt if we've matched against ourselves ('top',
520 * if specified) - i.e., we cannot have a nexthop NH1 is
521 * resolved by a route NH1. The exception is if the route is a
522 * host route.
523 */
524 if (top && rn == top)
996c9314 525 if (((afi == AFI_IP) && (rn->p.prefixlen != 32))
34815ea3
DS
526 || ((afi == AFI_IP6) && (rn->p.prefixlen != 128))) {
527 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
528 zlog_debug(
529 "\t%s: Matched against ourself and prefix length is not max bit length",
530 __PRETTY_FUNCTION__);
fd7fd9e5 531 return 0;
34815ea3 532 }
d62a17ae 533
534 /* Pick up selected route. */
535 /* However, do not resolve over default route unless explicitly
536 * allowed. */
537 if (is_default_prefix(&rn->p)
34815ea3
DS
538 && !rnh_resolve_via_default(p.family)) {
539 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
540 zlog_debug(
541 "\t:%s: Resolved against default route",
542 __PRETTY_FUNCTION__);
d62a17ae 543 return 0;
34815ea3 544 }
d62a17ae 545
5f7a4718 546 dest = rib_dest_from_rnode(rn);
996c9314
LB
547 if (dest && dest->selected_fib
548 && !CHECK_FLAG(dest->selected_fib->status,
549 ROUTE_ENTRY_REMOVED)
550 && dest->selected_fib->type != ZEBRA_ROUTE_TABLE)
5f7a4718 551 match = dest->selected_fib;
48a53dc7 552
d62a17ae 553 /* If there is no selected route or matched route is EGP, go up
554 tree. */
555 if (!match) {
556 do {
557 rn = rn->parent;
558 } while (rn && rn->info == NULL);
559 if (rn)
560 route_lock_node(rn);
c87bdd2b 561
d62a17ae 562 continue;
563 }
564
d62a17ae 565 if (match->type == ZEBRA_ROUTE_CONNECT) {
566 /* Directly point connected route. */
7ee30f28 567 newhop = match->ng.nexthop;
d62a17ae 568 if (newhop) {
569 if (nexthop->type == NEXTHOP_TYPE_IPV4
570 || nexthop->type == NEXTHOP_TYPE_IPV6)
571 nexthop->ifindex = newhop->ifindex;
572 }
573 return 1;
4e8b02f4 574 } else if (CHECK_FLAG(re->flags, ZEBRA_FLAG_ALLOW_RECURSION)) {
d62a17ae 575 resolved = 0;
7ee30f28 576 for (ALL_NEXTHOPS(match->ng, newhop)) {
677c1dd5
DS
577 if (!CHECK_FLAG(match->status,
578 ROUTE_ENTRY_INSTALLED))
a8309422
DL
579 continue;
580 if (CHECK_FLAG(newhop->flags,
581 NEXTHOP_FLAG_RECURSIVE))
582 continue;
583
584 if (set) {
585 SET_FLAG(nexthop->flags,
586 NEXTHOP_FLAG_RECURSIVE);
587 SET_FLAG(re->status,
588 ROUTE_ENTRY_NEXTHOPS_CHANGED);
589 nexthop_set_resolved(afi, newhop,
590 nexthop);
d62a17ae 591 }
a8309422
DL
592 resolved = 1;
593 }
43e31305
JB
594 if (resolved && set)
595 re->nexthop_mtu = match->mtu;
34815ea3
DS
596 if (!resolved && IS_ZEBRA_DEBUG_RIB_DETAILED)
597 zlog_debug("\t%s: Recursion failed to find",
598 __PRETTY_FUNCTION__);
d62a17ae 599 return resolved;
600 } else if (re->type == ZEBRA_ROUTE_STATIC) {
601 resolved = 0;
7ee30f28 602 for (ALL_NEXTHOPS(match->ng, newhop)) {
677c1dd5
DS
603 if (!CHECK_FLAG(match->status,
604 ROUTE_ENTRY_INSTALLED))
a8309422 605 continue;
6c47d399
DS
606 if (CHECK_FLAG(newhop->flags,
607 NEXTHOP_FLAG_RECURSIVE))
608 continue;
a8309422
DL
609
610 if (set) {
611 SET_FLAG(nexthop->flags,
612 NEXTHOP_FLAG_RECURSIVE);
613 nexthop_set_resolved(afi, newhop,
614 nexthop);
d62a17ae 615 }
a8309422
DL
616 resolved = 1;
617 }
d62a17ae 618 if (resolved && set)
619 re->nexthop_mtu = match->mtu;
34815ea3
DS
620
621 if (!resolved && IS_ZEBRA_DEBUG_RIB_DETAILED)
622 zlog_debug(
623 "\t%s: Static route unable to resolve",
624 __PRETTY_FUNCTION__);
d62a17ae 625 return resolved;
626 } else {
7939ff76
DS
627 if (IS_ZEBRA_DEBUG_RIB_DETAILED) {
628 zlog_debug("\t%s: Route Type %s has not turned on recursion",
629 __PRETTY_FUNCTION__,
630 zebra_route_string(re->type));
631 if (re->type == ZEBRA_ROUTE_BGP &&
632 !CHECK_FLAG(re->flags, ZEBRA_FLAG_IBGP))
633 zlog_debug("\tEBGP: see \"disable-ebgp-connected-route-check\" or \"disable-connected-check\"");
634 }
d62a17ae 635 return 0;
636 }
718e3744 637 }
7939ff76
DS
638 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
639 zlog_debug("\t%s: Nexthop did not lookup in table",
640 __PRETTY_FUNCTION__);
d62a17ae 641 return 0;
718e3744 642}
718e3744 643
d62a17ae 644struct route_entry *rib_match(afi_t afi, safi_t safi, vrf_id_t vrf_id,
645 union g_addr *addr, struct route_node **rn_out)
646{
647 struct prefix p;
648 struct route_table *table;
649 struct route_node *rn;
5f7a4718 650 struct route_entry *match = NULL;
d62a17ae 651
652 /* Lookup table. */
653 table = zebra_vrf_table(afi, safi, vrf_id);
654 if (!table)
655 return 0;
656
657 memset(&p, 0, sizeof(struct prefix));
658 p.family = afi;
659 if (afi == AFI_IP) {
660 p.u.prefix4 = addr->ipv4;
661 p.prefixlen = IPV4_MAX_PREFIXLEN;
662 } else {
663 p.u.prefix6 = addr->ipv6;
664 p.prefixlen = IPV6_MAX_PREFIXLEN;
665 }
718e3744 666
d62a17ae 667 rn = route_node_match(table, (struct prefix *)&p);
718e3744 668
d62a17ae 669 while (rn) {
5f7a4718
DS
670 rib_dest_t *dest;
671
d62a17ae 672 route_unlock_node(rn);
718e3744 673
5f7a4718 674 dest = rib_dest_from_rnode(rn);
996c9314
LB
675 if (dest && dest->selected_fib
676 && !CHECK_FLAG(dest->selected_fib->status,
677 ROUTE_ENTRY_REMOVED))
5f7a4718 678 match = dest->selected_fib;
718e3744 679
d62a17ae 680 /* If there is no selected route or matched route is EGP, go up
681 tree. */
682 if (!match) {
683 do {
684 rn = rn->parent;
685 } while (rn && rn->info == NULL);
686 if (rn)
687 route_lock_node(rn);
688 } else {
689 if (match->type != ZEBRA_ROUTE_CONNECT) {
677c1dd5
DS
690 if (!CHECK_FLAG(match->status,
691 ROUTE_ENTRY_INSTALLED))
d62a17ae 692 return NULL;
693 }
694
695 if (rn_out)
696 *rn_out = rn;
697 return match;
698 }
16814f96 699 }
d62a17ae 700 return NULL;
701}
702
703struct route_entry *rib_match_ipv4_multicast(vrf_id_t vrf_id,
704 struct in_addr addr,
705 struct route_node **rn_out)
706{
707 struct route_entry *re = NULL, *mre = NULL, *ure = NULL;
708 struct route_node *m_rn = NULL, *u_rn = NULL;
709 union g_addr gaddr = {.ipv4 = addr};
710
711 switch (ipv4_multicast_mode) {
712 case MCAST_MRIB_ONLY:
713 return rib_match(AFI_IP, SAFI_MULTICAST, vrf_id, &gaddr,
714 rn_out);
715 case MCAST_URIB_ONLY:
716 return rib_match(AFI_IP, SAFI_UNICAST, vrf_id, &gaddr, rn_out);
717 case MCAST_NO_CONFIG:
718 case MCAST_MIX_MRIB_FIRST:
719 re = mre = rib_match(AFI_IP, SAFI_MULTICAST, vrf_id, &gaddr,
720 &m_rn);
721 if (!mre)
722 re = ure = rib_match(AFI_IP, SAFI_UNICAST, vrf_id,
723 &gaddr, &u_rn);
724 break;
725 case MCAST_MIX_DISTANCE:
726 mre = rib_match(AFI_IP, SAFI_MULTICAST, vrf_id, &gaddr, &m_rn);
727 ure = rib_match(AFI_IP, SAFI_UNICAST, vrf_id, &gaddr, &u_rn);
728 if (mre && ure)
729 re = ure->distance < mre->distance ? ure : mre;
730 else if (mre)
731 re = mre;
732 else if (ure)
733 re = ure;
734 break;
735 case MCAST_MIX_PFXLEN:
736 mre = rib_match(AFI_IP, SAFI_MULTICAST, vrf_id, &gaddr, &m_rn);
737 ure = rib_match(AFI_IP, SAFI_UNICAST, vrf_id, &gaddr, &u_rn);
738 if (mre && ure)
739 re = u_rn->p.prefixlen > m_rn->p.prefixlen ? ure : mre;
740 else if (mre)
741 re = mre;
742 else if (ure)
743 re = ure;
744 break;
718e3744 745 }
33550aa8 746
d62a17ae 747 if (rn_out)
748 *rn_out = (re == mre) ? m_rn : u_rn;
718e3744 749
d62a17ae 750 if (IS_ZEBRA_DEBUG_RIB) {
751 char buf[BUFSIZ];
752 inet_ntop(AF_INET, &addr, buf, BUFSIZ);
4623d897 753
32391aff
DS
754 zlog_debug("%s: %s: vrf: %u found %s, using %s",
755 __func__, buf, vrf_id,
d62a17ae 756 mre ? (ure ? "MRIB+URIB" : "MRIB")
757 : ure ? "URIB" : "nothing",
758 re == ure ? "URIB" : re == mre ? "MRIB" : "none");
759 }
760 return re;
4623d897
DL
761}
762
d62a17ae 763void multicast_mode_ipv4_set(enum multicast_mode mode)
4623d897 764{
d62a17ae 765 if (IS_ZEBRA_DEBUG_RIB)
766 zlog_debug("%s: multicast lookup mode set (%d)", __func__,
767 mode);
768 ipv4_multicast_mode = mode;
4623d897
DL
769}
770
d62a17ae 771enum multicast_mode multicast_mode_ipv4_get(void)
4623d897 772{
d62a17ae 773 return ipv4_multicast_mode;
4623d897
DL
774}
775
d62a17ae 776struct route_entry *rib_lookup_ipv4(struct prefix_ipv4 *p, vrf_id_t vrf_id)
718e3744 777{
d62a17ae 778 struct route_table *table;
779 struct route_node *rn;
5f7a4718 780 struct route_entry *match = NULL;
5f7a4718 781 rib_dest_t *dest;
718e3744 782
d62a17ae 783 /* Lookup table. */
784 table = zebra_vrf_table(AFI_IP, SAFI_UNICAST, vrf_id);
785 if (!table)
786 return 0;
718e3744 787
d62a17ae 788 rn = route_node_lookup(table, (struct prefix *)p);
718e3744 789
d62a17ae 790 /* No route for this prefix. */
791 if (!rn)
792 return NULL;
718e3744 793
d62a17ae 794 /* Unlock node. */
795 route_unlock_node(rn);
5f7a4718 796 dest = rib_dest_from_rnode(rn);
718e3744 797
996c9314
LB
798 if (dest && dest->selected_fib
799 && !CHECK_FLAG(dest->selected_fib->status, ROUTE_ENTRY_REMOVED))
5f7a4718 800 match = dest->selected_fib;
718e3744 801
d62a17ae 802 if (!match)
803 return NULL;
718e3744 804
d62a17ae 805 if (match->type == ZEBRA_ROUTE_CONNECT)
806 return match;
f9e1b38e 807
677c1dd5
DS
808 if (CHECK_FLAG(match->status, ROUTE_ENTRY_INSTALLED))
809 return match;
718e3744 810
d62a17ae 811 return NULL;
718e3744 812}
813
d62a17ae 814#define RIB_SYSTEM_ROUTE(R) \
815 ((R)->type == ZEBRA_ROUTE_KERNEL || (R)->type == ZEBRA_ROUTE_CONNECT)
7514fb77 816
212df1de
PG
817#define RIB_KERNEL_ROUTE(R) \
818 ((R)->type == ZEBRA_ROUTE_KERNEL)
819
dc95824a
DO
820/* This function verifies reachability of one given nexthop, which can be
821 * numbered or unnumbered, IPv4 or IPv6. The result is unconditionally stored
822 * in nexthop->flags field. If the 4th parameter, 'set', is non-zero,
823 * nexthop->ifindex will be updated appropriately as well.
824 * An existing route map can turn (otherwise active) nexthop into inactive, but
825 * not vice versa.
826 *
827 * The return value is the final value of 'ACTIVE' flag.
828 */
829
d62a17ae 830static unsigned nexthop_active_check(struct route_node *rn,
831 struct route_entry *re,
0dddbf72 832 struct nexthop *nexthop, bool set)
d62a17ae 833{
834 struct interface *ifp;
835 route_map_result_t ret = RMAP_MATCH;
836 int family;
837 char buf[SRCDEST2STR_BUFFER];
86391e56 838 const struct prefix *p, *src_p;
ac6eebce 839 struct zebra_vrf *zvrf;
840
d62a17ae 841 srcdest_rnode_prefixes(rn, &p, &src_p);
842
843 if (rn->p.family == AF_INET)
844 family = AFI_IP;
845 else if (rn->p.family == AF_INET6)
846 family = AFI_IP6;
847 else
848 family = 0;
849 switch (nexthop->type) {
850 case NEXTHOP_TYPE_IFINDEX:
4a7371e9 851 ifp = if_lookup_by_index(nexthop->ifindex, nexthop->vrf_id);
d62a17ae 852 if (ifp && if_is_operative(ifp))
853 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
854 else
855 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
856 break;
857 case NEXTHOP_TYPE_IPV4:
858 case NEXTHOP_TYPE_IPV4_IFINDEX:
859 family = AFI_IP;
1ec31309 860 if (nexthop_active(AFI_IP, re, nexthop, set, rn))
d62a17ae 861 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
862 else
863 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
864 break;
865 case NEXTHOP_TYPE_IPV6:
866 family = AFI_IP6;
867 if (nexthop_active(AFI_IP6, re, nexthop, set, rn))
868 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
869 else
870 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
871 break;
872 case NEXTHOP_TYPE_IPV6_IFINDEX:
873 /* RFC 5549, v4 prefix with v6 NH */
874 if (rn->p.family != AF_INET)
875 family = AFI_IP6;
876 if (IN6_IS_ADDR_LINKLOCAL(&nexthop->gate.ipv6)) {
007dbee6 877 ifp = if_lookup_by_index(nexthop->ifindex,
4a7371e9 878 nexthop->vrf_id);
d62a17ae 879 if (ifp && if_is_operative(ifp))
880 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
881 else
882 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
883 } else {
884 if (nexthop_active(AFI_IP6, re, nexthop, set, rn))
885 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
886 else
887 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
888 }
889 break;
890 case NEXTHOP_TYPE_BLACKHOLE:
891 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
892 break;
893 default:
894 break;
895 }
34815ea3
DS
896 if (!CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE)) {
897 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
898 zlog_debug("\t%s: Unable to find a active nexthop",
899 __PRETTY_FUNCTION__);
d62a17ae 900 return 0;
34815ea3 901 }
d62a17ae 902
903 /* XXX: What exactly do those checks do? Do we support
ac6eebce 904 * e.g. IPv4 routes with IPv6 nexthops or vice versa?
905 */
d62a17ae 906 if (RIB_SYSTEM_ROUTE(re) || (family == AFI_IP && p->family != AF_INET)
907 || (family == AFI_IP6 && p->family != AF_INET6))
908 return CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
909
910 /* The original code didn't determine the family correctly
911 * e.g. for NEXTHOP_TYPE_IFINDEX. Retrieve the correct afi
912 * from the rib_table_info in those cases.
913 * Possibly it may be better to use only the rib_table_info
914 * in every case.
915 */
916 if (!family) {
917 rib_table_info_t *info;
918
919 info = srcdest_rnode_table_info(rn);
920 family = info->afi;
718e3744 921 }
c52ef59f 922
d62a17ae 923 memset(&nexthop->rmap_src.ipv6, 0, sizeof(union g_addr));
924
ac6eebce 925 zvrf = zebra_vrf_lookup_by_id(nexthop->vrf_id);
926 if (!zvrf) {
927 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
928 zlog_debug("\t%s: zvrf is NULL", __PRETTY_FUNCTION__);
929 return CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
930 }
931
d62a17ae 932 /* It'll get set if required inside */
ac6eebce 933 ret = zebra_route_map_check(family, re->type, re->instance, p,
934 nexthop, zvrf, re->tag);
d62a17ae 935 if (ret == RMAP_DENYMATCH) {
936 if (IS_ZEBRA_DEBUG_RIB) {
937 srcdest_rnode2str(rn, buf, sizeof(buf));
938 zlog_debug(
939 "%u:%s: Filtering out with NH out %s due to route map",
940 re->vrf_id, buf,
99b9d960 941 ifindex2ifname(nexthop->ifindex,
4a7371e9 942 nexthop->vrf_id));
d62a17ae 943 }
944 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
518f0eb1 945 }
d62a17ae 946 return CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
718e3744 947}
948
03e232a4 949/* Iterate over all nexthops of the given RIB entry and refresh their
f0f77c9a
DS
950 * ACTIVE flag. re->nexthop_active_num is updated accordingly. If any
951 * nexthop is found to toggle the ACTIVE flag, the whole re structure
952 * is flagged with ROUTE_ENTRY_CHANGED. The 4th 'set' argument is
03e232a4
DO
953 * transparently passed to nexthop_active_check().
954 *
955 * Return value is the new number of active nexthops.
956 */
957
d62a17ae 958static int nexthop_active_update(struct route_node *rn, struct route_entry *re,
0dddbf72 959 bool set)
d62a17ae 960{
961 struct nexthop *nexthop;
962 union g_addr prev_src;
963 unsigned int prev_active, new_active, old_num_nh;
964 ifindex_t prev_index;
ac6eebce 965
d62a17ae 966 old_num_nh = re->nexthop_active_num;
967
968 re->nexthop_active_num = 0;
969 UNSET_FLAG(re->status, ROUTE_ENTRY_CHANGED);
970
7ee30f28 971 for (nexthop = re->ng.nexthop; nexthop; nexthop = nexthop->next) {
d62a17ae 972 /* No protocol daemon provides src and so we're skipping
973 * tracking it */
974 prev_src = nexthop->rmap_src;
975 prev_active = CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
976 prev_index = nexthop->ifindex;
220f0f42
DS
977 /*
978 * We need to respect the multipath_num here
979 * as that what we should be able to install from
980 * a multipath perpsective should not be a data plane
981 * decision point.
982 */
983 new_active = nexthop_active_check(rn, re, nexthop, set);
984 if (new_active && re->nexthop_active_num >= multipath_num) {
985 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
986 new_active = 0;
987 }
988 if (new_active)
d62a17ae 989 re->nexthop_active_num++;
990 /* Don't allow src setting on IPv6 addr for now */
991 if (prev_active != new_active || prev_index != nexthop->ifindex
992 || ((nexthop->type >= NEXTHOP_TYPE_IFINDEX
993 && nexthop->type < NEXTHOP_TYPE_IPV6)
994 && prev_src.ipv4.s_addr
995 != nexthop->rmap_src.ipv4.s_addr)
996 || ((nexthop->type >= NEXTHOP_TYPE_IPV6
997 && nexthop->type < NEXTHOP_TYPE_BLACKHOLE)
998 && !(IPV6_ADDR_SAME(&prev_src.ipv6,
999 &nexthop->rmap_src.ipv6)))) {
1000 SET_FLAG(re->status, ROUTE_ENTRY_CHANGED);
1001 SET_FLAG(re->status, ROUTE_ENTRY_NEXTHOPS_CHANGED);
1002 }
1003 }
1004
1005 if (old_num_nh != re->nexthop_active_num)
1006 SET_FLAG(re->status, ROUTE_ENTRY_CHANGED);
6e26278c 1007
d62a17ae 1008 if (CHECK_FLAG(re->status, ROUTE_ENTRY_CHANGED)) {
1009 SET_FLAG(re->status, ROUTE_ENTRY_NEXTHOPS_CHANGED);
1010 }
1011
1012 return re->nexthop_active_num;
718e3744 1013}
6baeb988 1014
a64448ba
DS
1015/*
1016 * Is this RIB labeled-unicast? It must be of type BGP and all paths
1017 * (nexthops) must have a label.
1018 */
d62a17ae 1019int zebra_rib_labeled_unicast(struct route_entry *re)
a64448ba 1020{
d62a17ae 1021 struct nexthop *nexthop = NULL;
a64448ba 1022
d62a17ae 1023 if (re->type != ZEBRA_ROUTE_BGP)
1024 return 0;
a64448ba 1025
7ee30f28 1026 for (ALL_NEXTHOPS(re->ng, nexthop))
d62a17ae 1027 if (!nexthop->nh_label || !nexthop->nh_label->num_labels)
1028 return 0;
6b0655a2 1029
d62a17ae 1030 return 1;
a64448ba 1031}
718e3744 1032
6ae24471
DS
1033/* Update flag indicates whether this is a "replace" or not. Currently, this
1034 * is only used for IPv4.
1035 */
0c555cc6
DS
1036void rib_install_kernel(struct route_node *rn, struct route_entry *re,
1037 struct route_entry *old)
718e3744 1038{
d62a17ae 1039 struct nexthop *nexthop;
1040 rib_table_info_t *info = srcdest_rnode_table_info(rn);
d62a17ae 1041 struct zebra_vrf *zvrf = vrf_info_lookup(re->vrf_id);
97f5b441
MS
1042 const struct prefix *p, *src_p;
1043 enum zebra_dplane_result ret;
1044
1045 rib_dest_t *dest = rib_dest_from_rnode(rn);
718e3744 1046
d62a17ae 1047 srcdest_rnode_prefixes(rn, &p, &src_p);
416ec78d 1048
d62a17ae 1049 if (info->safi != SAFI_UNICAST) {
7ee30f28 1050 for (ALL_NEXTHOPS(re->ng, nexthop))
d62a17ae 1051 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
0c555cc6 1052 return;
25b9cb0c
DL
1053 } else {
1054 struct nexthop *prev;
1055
7ee30f28 1056 for (ALL_NEXTHOPS(re->ng, nexthop)) {
25b9cb0c 1057 UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_DUPLICATE);
7ee30f28 1058 for (ALL_NEXTHOPS(re->ng, prev)) {
25b9cb0c
DL
1059 if (prev == nexthop)
1060 break;
996c9314
LB
1061 if (nexthop_same_firsthop(nexthop, prev)) {
1062 SET_FLAG(nexthop->flags,
1063 NEXTHOP_FLAG_DUPLICATE);
25b9cb0c
DL
1064 break;
1065 }
1066 }
1067 }
d62a17ae 1068 }
718e3744 1069
2063a814
DS
1070 /*
1071 * If this is a replace to a new RE let the originator of the RE
1072 * know that they've lost
1073 */
9a9f8926 1074 if (old && (old != re) && (old->type != re->type))
28610f7e 1075 zsend_route_notify_owner(old, p, ZAPI_ROUTE_BETTER_ADMIN_WON);
25b9cb0c 1076
97f5b441
MS
1077 /* Update fib selection */
1078 dest->selected_fib = re;
1079
d62a17ae 1080 /*
1081 * Make sure we update the FPM any time we send new information to
1082 * the kernel.
1083 */
1084 hook_call(rib_update, rn, "installing in kernel");
97f5b441
MS
1085
1086 /* Send add or update */
8263d1d0 1087 if (old)
97f5b441 1088 ret = dplane_route_update(rn, re, old);
5709131c 1089 else
97f5b441 1090 ret = dplane_route_add(rn, re);
97f5b441
MS
1091
1092 switch (ret) {
ea1c14f6 1093 case ZEBRA_DPLANE_REQUEST_QUEUED:
60f98b23
DS
1094 SET_FLAG(re->status, ROUTE_ENTRY_QUEUED);
1095 if (old)
1096 SET_FLAG(old->status, ROUTE_ENTRY_QUEUED);
97f5b441
MS
1097 if (zvrf)
1098 zvrf->installs_queued++;
1e885672 1099 break;
ea1c14f6 1100 case ZEBRA_DPLANE_REQUEST_FAILURE:
97f5b441
MS
1101 {
1102 char str[SRCDEST2STR_BUFFER];
1103
1104 srcdest_rnode2str(rn, str, sizeof(str));
1105 flog_err(EC_ZEBRA_DP_INSTALL_FAIL,
1106 "%u:%s: Failed to enqueue dataplane install",
1107 re->vrf_id, str);
1e885672 1108 break;
97f5b441 1109 }
ea1c14f6 1110 case ZEBRA_DPLANE_REQUEST_SUCCESS:
97f5b441
MS
1111 if (zvrf)
1112 zvrf->installs++;
1e885672
DS
1113 break;
1114 }
d62a17ae 1115
0c555cc6 1116 return;
718e3744 1117}
1118
1119/* Uninstall the route from kernel. */
0c555cc6 1120void rib_uninstall_kernel(struct route_node *rn, struct route_entry *re)
718e3744 1121{
d62a17ae 1122 struct nexthop *nexthop;
1123 rib_table_info_t *info = srcdest_rnode_table_info(rn);
d62a17ae 1124 struct zebra_vrf *zvrf = vrf_info_lookup(re->vrf_id);
05737783 1125
d62a17ae 1126 if (info->safi != SAFI_UNICAST) {
677c1dd5 1127 UNSET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
7ee30f28 1128 for (ALL_NEXTHOPS(re->ng, nexthop))
d6792f9d 1129 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
0c555cc6 1130 return;
d62a17ae 1131 }
416ec78d 1132
d62a17ae 1133 /*
1134 * Make sure we update the FPM any time we send new information to
97f5b441 1135 * the dataplane.
d62a17ae 1136 */
1137 hook_call(rib_update, rn, "uninstalling from kernel");
97f5b441
MS
1138
1139 switch (dplane_route_delete(rn, re)) {
ea1c14f6 1140 case ZEBRA_DPLANE_REQUEST_QUEUED:
97f5b441
MS
1141 if (zvrf)
1142 zvrf->removals_queued++;
1e885672 1143 break;
ea1c14f6 1144 case ZEBRA_DPLANE_REQUEST_FAILURE:
97f5b441
MS
1145 {
1146 char str[SRCDEST2STR_BUFFER];
1147
1148 srcdest_rnode2str(rn, str, sizeof(str));
1149 flog_err(EC_ZEBRA_DP_INSTALL_FAIL,
1150 "%u:%s: Failed to enqueue dataplane uninstall",
1151 re->vrf_id, str);
1e885672 1152 break;
97f5b441 1153 }
ea1c14f6 1154 case ZEBRA_DPLANE_REQUEST_SUCCESS:
1e885672
DS
1155 if (zvrf)
1156 zvrf->removals++;
1157 break;
1158 }
718e3744 1159
0c555cc6 1160 return;
718e3744 1161}
1162
1163/* Uninstall the route from kernel. */
d62a17ae 1164static void rib_uninstall(struct route_node *rn, struct route_entry *re)
718e3744 1165{
d62a17ae 1166 rib_table_info_t *info = srcdest_rnode_table_info(rn);
5f7a4718 1167 rib_dest_t *dest = rib_dest_from_rnode(rn);
97f5b441 1168 struct nexthop *nexthop;
416ec78d 1169
5f7a4718 1170 if (dest && dest->selected_fib == re) {
d62a17ae 1171 if (info->safi == SAFI_UNICAST)
1172 hook_call(rib_update, rn, "rib_uninstall");
5adc2528 1173
d62a17ae 1174 /* If labeled-unicast route, uninstall transit LSP. */
1175 if (zebra_rib_labeled_unicast(re))
1176 zebra_mpls_lsp_uninstall(info->zvrf, rn, re);
7cdb1a84
MS
1177
1178 if (!RIB_SYSTEM_ROUTE(re))
1179 rib_uninstall_kernel(rn, re);
677c1dd5
DS
1180 else
1181 UNSET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
97f5b441
MS
1182
1183 dest->selected_fib = NULL;
1184
1185 for (ALL_NEXTHOPS(re->ng, nexthop))
1186 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
d62a17ae 1187 }
446bb95e 1188
d62a17ae 1189 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED)) {
86391e56
MS
1190 const struct prefix *p, *src_p;
1191
d62a17ae 1192 srcdest_rnode_prefixes(rn, &p, &src_p);
05737783 1193
d62a17ae 1194 redistribute_delete(p, src_p, re);
1195 UNSET_FLAG(re->flags, ZEBRA_FLAG_SELECTED);
1196 }
718e3744 1197}
1198
9fd92e3c
AS
1199/*
1200 * rib_can_delete_dest
1201 *
1202 * Returns TRUE if the given dest can be deleted from the table.
1203 */
d62a17ae 1204static int rib_can_delete_dest(rib_dest_t *dest)
9fd92e3c 1205{
d62a17ae 1206 if (dest->routes) {
1207 return 0;
1208 }
9fd92e3c 1209
d62a17ae 1210 /*
1211 * Don't delete the dest if we have to update the FPM about this
1212 * prefix.
1213 */
1214 if (CHECK_FLAG(dest->flags, RIB_DEST_UPDATE_FPM)
1215 || CHECK_FLAG(dest->flags, RIB_DEST_SENT_TO_FPM))
1216 return 0;
5adc2528 1217
d62a17ae 1218 return 1;
9fd92e3c
AS
1219}
1220
1221/*
1222 * rib_gc_dest
1223 *
1224 * Garbage collect the rib dest corresponding to the given route node
1225 * if appropriate.
1226 *
1227 * Returns TRUE if the dest was deleted, FALSE otherwise.
1228 */
d62a17ae 1229int rib_gc_dest(struct route_node *rn)
9fd92e3c 1230{
d62a17ae 1231 rib_dest_t *dest;
9fd92e3c 1232
d62a17ae 1233 dest = rib_dest_from_rnode(rn);
1234 if (!dest)
1235 return 0;
9fd92e3c 1236
d62a17ae 1237 if (!rib_can_delete_dest(dest))
1238 return 0;
9fd92e3c 1239
c9abf558
DS
1240 if (IS_ZEBRA_DEBUG_RIB) {
1241 struct zebra_vrf *zvrf;
1242
1243 zvrf = rib_dest_vrf(dest);
d62a17ae 1244 rnode_debug(rn, zvrf_id(zvrf), "removing dest from table");
c9abf558 1245 }
9fd92e3c 1246
d62a17ae 1247 dest->rnode = NULL;
1248 XFREE(MTYPE_RIB_DEST, dest);
1249 rn->info = NULL;
9fd92e3c 1250
d62a17ae 1251 /*
1252 * Release the one reference that we keep on the route node.
1253 */
1254 route_unlock_node(rn);
1255 return 1;
9fd92e3c
AS
1256}
1257
d62a17ae 1258static void rib_process_add_fib(struct zebra_vrf *zvrf, struct route_node *rn,
1259 struct route_entry *new)
3e5c6e00 1260{
5f7a4718
DS
1261 rib_dest_t *dest = rib_dest_from_rnode(rn);
1262
d62a17ae 1263 hook_call(rib_update, rn, "new route selected");
3e5c6e00 1264
d62a17ae 1265 /* Update real nexthop. This may actually determine if nexthop is active
1266 * or not. */
0dddbf72 1267 if (!nexthop_active_update(rn, new, true)) {
d62a17ae 1268 UNSET_FLAG(new->status, ROUTE_ENTRY_CHANGED);
1269 return;
1270 }
3e5c6e00 1271
d62a17ae 1272 if (IS_ZEBRA_DEBUG_RIB) {
1273 char buf[SRCDEST2STR_BUFFER];
1274 srcdest_rnode2str(rn, buf, sizeof(buf));
2da33d6b
DS
1275 zlog_debug("%u:%s: Adding route rn %p, re %p (%s)",
1276 zvrf_id(zvrf), buf, rn, new,
1277 zebra_route_string(new->type));
d62a17ae 1278 }
3e5c6e00 1279
d62a17ae 1280 /* If labeled-unicast route, install transit LSP. */
1281 if (zebra_rib_labeled_unicast(new))
1282 zebra_mpls_lsp_install(zvrf, rn, new);
a64448ba 1283
0c555cc6
DS
1284 if (!RIB_SYSTEM_ROUTE(new))
1285 rib_install_kernel(rn, new, NULL);
ed216282
DS
1286 else
1287 dest->selected_fib = new;
3e5c6e00 1288
d62a17ae 1289 UNSET_FLAG(new->status, ROUTE_ENTRY_CHANGED);
3e5c6e00 1290}
1291
d62a17ae 1292static void rib_process_del_fib(struct zebra_vrf *zvrf, struct route_node *rn,
1293 struct route_entry *old)
3e5c6e00 1294{
5f7a4718 1295 rib_dest_t *dest = rib_dest_from_rnode(rn);
d62a17ae 1296 hook_call(rib_update, rn, "removing existing route");
3e5c6e00 1297
d62a17ae 1298 /* Uninstall from kernel. */
1299 if (IS_ZEBRA_DEBUG_RIB) {
1300 char buf[SRCDEST2STR_BUFFER];
1301 srcdest_rnode2str(rn, buf, sizeof(buf));
2da33d6b
DS
1302 zlog_debug("%u:%s: Deleting route rn %p, re %p (%s)",
1303 zvrf_id(zvrf), buf, rn, old,
1304 zebra_route_string(old->type));
d62a17ae 1305 }
3e5c6e00 1306
d62a17ae 1307 /* If labeled-unicast route, uninstall transit LSP. */
1308 if (zebra_rib_labeled_unicast(old))
1309 zebra_mpls_lsp_uninstall(zvrf, rn, old);
1310
1311 if (!RIB_SYSTEM_ROUTE(old))
1312 rib_uninstall_kernel(rn, old);
ed216282 1313 else {
677c1dd5 1314 UNSET_FLAG(old->status, ROUTE_ENTRY_INSTALLED);
ed216282
DS
1315 /*
1316 * We are setting this to NULL here
1317 * because that is what we traditionally
1318 * have been doing. I am not positive
1319 * that this is the right thing to do
1320 * but let's leave the code alone
1321 * for the RIB_SYSTEM_ROUTE case
1322 */
1323 dest->selected_fib = NULL;
1324 }
d62a17ae 1325
1326 /* Update nexthop for route, reset changed flag. */
ef57f35f
DL
1327 /* Note: this code also handles the Linux case when an interface goes
1328 * down, causing the kernel to delete routes without sending DELROUTE
1329 * notifications
1330 */
0dddbf72 1331 if (!nexthop_active_update(rn, old, true) &&
212df1de
PG
1332 (RIB_KERNEL_ROUTE(old)))
1333 SET_FLAG(old->status, ROUTE_ENTRY_REMOVED);
1334 else
1335 UNSET_FLAG(old->status, ROUTE_ENTRY_CHANGED);
d62a17ae 1336}
1337
1338static void rib_process_update_fib(struct zebra_vrf *zvrf,
1339 struct route_node *rn,
1340 struct route_entry *old,
1341 struct route_entry *new)
1342{
1343 struct nexthop *nexthop = NULL;
1344 int nh_active = 0;
5f7a4718 1345 rib_dest_t *dest = rib_dest_from_rnode(rn);
d62a17ae 1346
1347 /*
1348 * We have to install or update if a new route has been selected or
1349 * something has changed.
1350 */
1351 if (new != old || CHECK_FLAG(new->status, ROUTE_ENTRY_CHANGED)) {
1352 hook_call(rib_update, rn, "updating existing route");
1353
1354 /* Update the nexthop; we could determine here that nexthop is
1355 * inactive. */
0dddbf72 1356 if (nexthop_active_update(rn, new, true))
d62a17ae 1357 nh_active = 1;
1358
1359 /* If nexthop is active, install the selected route, if
1360 * appropriate. If
1361 * the install succeeds, cleanup flags for prior route, if
1362 * different from
1363 * newly selected.
1364 */
1365 if (nh_active) {
1366 if (IS_ZEBRA_DEBUG_RIB) {
1367 char buf[SRCDEST2STR_BUFFER];
1368 srcdest_rnode2str(rn, buf, sizeof(buf));
1369 if (new != old)
1370 zlog_debug(
2da33d6b 1371 "%u:%s: Updating route rn %p, re %p (%s) old %p (%s)",
d62a17ae 1372 zvrf_id(zvrf), buf, rn, new,
2da33d6b
DS
1373 zebra_route_string(new->type),
1374 old,
1375 zebra_route_string(old->type));
d62a17ae 1376 else
1377 zlog_debug(
2da33d6b 1378 "%u:%s: Updating route rn %p, re %p (%s)",
d62a17ae 1379 zvrf_id(zvrf), buf, rn, new,
2da33d6b 1380 zebra_route_string(new->type));
d62a17ae 1381 }
1382
1383 /* If labeled-unicast route, uninstall transit LSP. */
1384 if (zebra_rib_labeled_unicast(old))
1385 zebra_mpls_lsp_uninstall(zvrf, rn, old);
1386
1387 /* Non-system route should be installed. */
1388 if (!RIB_SYSTEM_ROUTE(new)) {
1389 /* If labeled-unicast route, install transit
1390 * LSP. */
1391 if (zebra_rib_labeled_unicast(new))
1392 zebra_mpls_lsp_install(zvrf, rn, new);
1393
0c555cc6 1394 rib_install_kernel(rn, new, old);
ed216282 1395 } else {
677c1dd5 1396 UNSET_FLAG(new->status, ROUTE_ENTRY_INSTALLED);
ed216282
DS
1397 /*
1398 * We do not need to install the
1399 * selected route because it
1400 * is already isntalled by
1401 * the system( ie not us )
1402 * so just mark it as winning
1403 * we do need to ensure that
1404 * if we uninstall a route
1405 * from ourselves we don't
1406 * over write this pointer
1407 */
b900245a 1408 dest->selected_fib = new;
d62a17ae 1409 }
d62a17ae 1410 /* If install succeeded or system route, cleanup flags
1411 * for prior route. */
ed216282 1412 if (new != old) {
d62a17ae 1413 if (RIB_SYSTEM_ROUTE(new)) {
1414 if (!RIB_SYSTEM_ROUTE(old))
1415 rib_uninstall_kernel(rn, old);
677c1dd5
DS
1416 else
1417 UNSET_FLAG(
1418 old->status,
1419 ROUTE_ENTRY_INSTALLED);
d62a17ae 1420 } else {
677c1dd5
DS
1421 UNSET_FLAG(old->status,
1422 ROUTE_ENTRY_INSTALLED);
7ee30f28 1423 for (nexthop = old->ng.nexthop; nexthop;
d62a17ae 1424 nexthop = nexthop->next)
1425 UNSET_FLAG(nexthop->flags,
1426 NEXTHOP_FLAG_FIB);
1427 }
1428 }
d62a17ae 1429 }
a64448ba 1430
d62a17ae 1431 /*
1432 * If nexthop for selected route is not active or install
1433 * failed, we
1434 * may need to uninstall and delete for redistribution.
1435 */
ed216282 1436 if (!nh_active) {
d62a17ae 1437 if (IS_ZEBRA_DEBUG_RIB) {
1438 char buf[SRCDEST2STR_BUFFER];
1439 srcdest_rnode2str(rn, buf, sizeof(buf));
1440 if (new != old)
1441 zlog_debug(
2da33d6b 1442 "%u:%s: Deleting route rn %p, re %p (%s) old %p (%s) - nexthop inactive",
d62a17ae 1443 zvrf_id(zvrf), buf, rn, new,
2da33d6b
DS
1444 zebra_route_string(new->type),
1445 old,
1446 zebra_route_string(old->type));
d62a17ae 1447 else
1448 zlog_debug(
2da33d6b 1449 "%u:%s: Deleting route rn %p, re %p (%s) - nexthop inactive",
d62a17ae 1450 zvrf_id(zvrf), buf, rn, new,
2da33d6b 1451 zebra_route_string(new->type));
d62a17ae 1452 }
1453
1454 /* If labeled-unicast route, uninstall transit LSP. */
1455 if (zebra_rib_labeled_unicast(old))
1456 zebra_mpls_lsp_uninstall(zvrf, rn, old);
1457
1458 if (!RIB_SYSTEM_ROUTE(old))
1459 rib_uninstall_kernel(rn, old);
677c1dd5
DS
1460 else {
1461 UNSET_FLAG(old->status, ROUTE_ENTRY_INSTALLED);
ed216282 1462 dest->selected_fib = NULL;
677c1dd5 1463 }
d62a17ae 1464 }
1465 } else {
1466 /*
1467 * Same route selected; check if in the FIB and if not,
1468 * re-install. This
1469 * is housekeeping code to deal with race conditions in kernel
1470 * with linux
1471 * netlink reporting interface up before IPv4 or IPv6 protocol
1472 * is ready
1473 * to add routes.
1474 */
677c1dd5
DS
1475 if (!RIB_SYSTEM_ROUTE(new)
1476 && !CHECK_FLAG(new->status, ROUTE_ENTRY_INSTALLED))
1477 rib_install_kernel(rn, new, NULL);
d62a17ae 1478 }
1479
1480 /* Update prior route. */
1481 if (new != old) {
d62a17ae 1482 /* Set real nexthop. */
0dddbf72 1483 nexthop_active_update(rn, old, true);
d62a17ae 1484 UNSET_FLAG(old->status, ROUTE_ENTRY_CHANGED);
1485 }
3e5c6e00 1486
d62a17ae 1487 /* Clear changed flag. */
1488 UNSET_FLAG(new->status, ROUTE_ENTRY_CHANGED);
3e5c6e00 1489}
1490
d62a17ae 1491/* Check if 'alternate' RIB entry is better than 'current'. */
1492static struct route_entry *rib_choose_best(struct route_entry *current,
1493 struct route_entry *alternate)
1494{
1495 if (current == NULL)
1496 return alternate;
1497
1498 /* filter route selection in following order:
1499 * - connected beats other types
fec4ca19 1500 * - if both connected, loopback or vrf wins
d62a17ae 1501 * - lower distance beats higher
1502 * - lower metric beats higher for equal distance
1503 * - last, hence oldest, route wins tie break.
1504 */
1505
fec4ca19
DS
1506 /* Connected routes. Check to see if either are a vrf
1507 * or loopback interface. If not, pick the last connected
d62a17ae 1508 * route of the set of lowest metric connected routes.
1509 */
1510 if (alternate->type == ZEBRA_ROUTE_CONNECT) {
fec4ca19
DS
1511 if (current->type != ZEBRA_ROUTE_CONNECT)
1512 return alternate;
1513
1514 /* both are connected. are either loop or vrf? */
1515 struct nexthop *nexthop = NULL;
1516
1517 for (ALL_NEXTHOPS(alternate->ng, nexthop)) {
1518 if (if_is_loopback_or_vrf(if_lookup_by_index(
1519 nexthop->ifindex, alternate->vrf_id)))
1520 return alternate;
1521 }
1522
1523 for (ALL_NEXTHOPS(current->ng, nexthop)) {
1524 if (if_is_loopback_or_vrf(if_lookup_by_index(
1525 nexthop->ifindex, current->vrf_id)))
1526 return current;
1527 }
1528
1529 /* Neither are loop or vrf so pick best metric */
1530 if (alternate->metric <= current->metric)
d62a17ae 1531 return alternate;
1532
1533 return current;
1534 }
3e5c6e00 1535
d62a17ae 1536 if (current->type == ZEBRA_ROUTE_CONNECT)
1537 return current;
3e5c6e00 1538
d62a17ae 1539 /* higher distance loses */
1540 if (alternate->distance < current->distance)
1541 return alternate;
1542 if (current->distance < alternate->distance)
1543 return current;
3e5c6e00 1544
d62a17ae 1545 /* metric tie-breaks equal distance */
1546 if (alternate->metric <= current->metric)
1547 return alternate;
3e5c6e00 1548
d62a17ae 1549 return current;
3e5c6e00 1550}
1551
d62a17ae 1552/* Core function for processing routing information base. */
1553static void rib_process(struct route_node *rn)
1554{
1555 struct route_entry *re;
1556 struct route_entry *next;
1557 struct route_entry *old_selected = NULL;
1558 struct route_entry *new_selected = NULL;
1559 struct route_entry *old_fib = NULL;
1560 struct route_entry *new_fib = NULL;
1561 struct route_entry *best = NULL;
1562 char buf[SRCDEST2STR_BUFFER];
1563 rib_dest_t *dest;
1564 struct zebra_vrf *zvrf = NULL;
86391e56
MS
1565 const struct prefix *p, *src_p;
1566
d62a17ae 1567 srcdest_rnode_prefixes(rn, &p, &src_p);
1568 vrf_id_t vrf_id = VRF_UNKNOWN;
1569
1570 assert(rn);
1571
1572 dest = rib_dest_from_rnode(rn);
1573 if (dest) {
1574 zvrf = rib_dest_vrf(dest);
1575 vrf_id = zvrf_id(zvrf);
1576 }
bab85d4f 1577
d62a17ae 1578 if (IS_ZEBRA_DEBUG_RIB)
1579 srcdest_rnode2str(rn, buf, sizeof(buf));
bab85d4f 1580
d62a17ae 1581 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
1582 zlog_debug("%u:%s: Processing rn %p", vrf_id, buf, rn);
bab85d4f 1583
607425e5
DS
1584 /*
1585 * we can have rn's that have a NULL info pointer
1586 * (dest). As such let's not let the deref happen
1587 * additionally we know RNODE_FOREACH_RE_SAFE
1588 * will not iterate so we are ok.
1589 */
1590 if (dest)
1591 old_fib = dest->selected_fib;
5f7a4718 1592
a2addae8 1593 RNODE_FOREACH_RE_SAFE (rn, re, next) {
d62a17ae 1594 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
1595 zlog_debug(
2da33d6b
DS
1596 "%u:%s: Examine re %p (%s) status %x flags %x dist %d metric %d",
1597 vrf_id, buf, re, zebra_route_string(re->type),
1598 re->status, re->flags, re->distance,
1599 re->metric);
d62a17ae 1600
1601 UNSET_FLAG(re->status, ROUTE_ENTRY_NEXTHOPS_CHANGED);
1602
1603 /* Currently selected re. */
1604 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED)) {
1605 assert(old_selected == NULL);
1606 old_selected = re;
1607 }
bab85d4f 1608
d62a17ae 1609 /* Skip deleted entries from selection */
1610 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED))
1611 continue;
1612
1613 /* Skip unreachable nexthop. */
1614 /* This first call to nexthop_active_update is merely to
1615 * determine if
1616 * there's any change to nexthops associated with this RIB
1617 * entry. Now,
1618 * rib_process() can be invoked due to an external event such as
1619 * link
1620 * down or due to next-hop-tracking evaluation. In the latter
1621 * case,
1622 * a decision has already been made that the NHs have changed.
1623 * So, no
1624 * need to invoke a potentially expensive call again. Further,
1625 * since
1626 * the change might be in a recursive NH which is not caught in
1627 * the nexthop_active_update() code. Thus, we might miss changes
1628 * to
1629 * recursive NHs.
1630 */
1631 if (!CHECK_FLAG(re->status, ROUTE_ENTRY_CHANGED)
0dddbf72 1632 && !nexthop_active_update(rn, re, false)) {
d62a17ae 1633 if (re->type == ZEBRA_ROUTE_TABLE) {
1634 /* XXX: HERE BE DRAGONS!!!!!
1635 * In all honesty, I have not yet figured out
1636 * what this part
1637 * does or why the ROUTE_ENTRY_CHANGED test
1638 * above is correct
1639 * or why we need to delete a route here, and
1640 * also not whether
1641 * this concerns both selected and fib route, or
1642 * only selected
1643 * or only fib */
1644 /* This entry was denied by the 'ip protocol
1645 * table' route-map, we
1646 * need to delete it */
1647 if (re != old_selected) {
1648 if (IS_ZEBRA_DEBUG_RIB)
1649 zlog_debug(
32391aff 1650 "%s: %u:%s: imported via import-table but denied "
d62a17ae 1651 "by the ip protocol table route-map",
32391aff 1652 __func__, vrf_id, buf);
d62a17ae 1653 rib_unlink(rn, re);
1654 } else
1655 SET_FLAG(re->status,
1656 ROUTE_ENTRY_REMOVED);
1657 }
1658
1659 continue;
1660 }
bab85d4f 1661
d62a17ae 1662 /* Infinite distance. */
1663 if (re->distance == DISTANCE_INFINITY) {
1664 UNSET_FLAG(re->status, ROUTE_ENTRY_CHANGED);
1665 continue;
1666 }
bab85d4f 1667
d62a17ae 1668 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_FIB_OVERRIDE)) {
1669 best = rib_choose_best(new_fib, re);
1670 if (new_fib && best != new_fib)
1671 UNSET_FLAG(new_fib->status,
1672 ROUTE_ENTRY_CHANGED);
1673 new_fib = best;
1674 } else {
1675 best = rib_choose_best(new_selected, re);
1676 if (new_selected && best != new_selected)
1677 UNSET_FLAG(new_selected->status,
1678 ROUTE_ENTRY_CHANGED);
1679 new_selected = best;
1680 }
1681 if (best != re)
1682 UNSET_FLAG(re->status, ROUTE_ENTRY_CHANGED);
1683 } /* RNODE_FOREACH_RE */
1684
1685 /* If no FIB override route, use the selected route also for FIB */
1686 if (new_fib == NULL)
1687 new_fib = new_selected;
1688
1689 /* After the cycle is finished, the following pointers will be set:
1690 * old_selected --- RE entry currently having SELECTED
1691 * new_selected --- RE entry that is newly SELECTED
1692 * old_fib --- RE entry currently in kernel FIB
1693 * new_fib --- RE entry that is newly to be in kernel FIB
1694 *
1695 * new_selected will get SELECTED flag, and is going to be redistributed
1696 * the zclients. new_fib (which can be new_selected) will be installed
1697 * in kernel.
1698 */
1699
1700 if (IS_ZEBRA_DEBUG_RIB_DETAILED) {
1701 zlog_debug(
1702 "%u:%s: After processing: old_selected %p new_selected %p old_fib %p new_fib %p",
1703 vrf_id, buf, (void *)old_selected, (void *)new_selected,
1704 (void *)old_fib, (void *)new_fib);
1705 }
446bb95e 1706
d62a17ae 1707 /* Buffer ROUTE_ENTRY_CHANGED here, because it will get cleared if
1708 * fib == selected */
9d303b37
DL
1709 bool selected_changed = new_selected && CHECK_FLAG(new_selected->status,
1710 ROUTE_ENTRY_CHANGED);
d62a17ae 1711
1712 /* Update fib according to selection results */
1713 if (new_fib && old_fib)
1714 rib_process_update_fib(zvrf, rn, old_fib, new_fib);
1715 else if (new_fib)
1716 rib_process_add_fib(zvrf, rn, new_fib);
1717 else if (old_fib)
1718 rib_process_del_fib(zvrf, rn, old_fib);
1719
8cb41cd6 1720 /* Update SELECTED entry */
d62a17ae 1721 if (old_selected != new_selected || selected_changed) {
93bdadae 1722
d62a17ae 1723 if (new_selected && new_selected != new_fib) {
0dddbf72 1724 nexthop_active_update(rn, new_selected, true);
d62a17ae 1725 UNSET_FLAG(new_selected->status, ROUTE_ENTRY_CHANGED);
1726 }
41ec9222 1727
5af4b346
MS
1728 if (new_selected) {
1729 SET_FLAG(new_selected->flags, ZEBRA_FLAG_SELECTED);
1730
1731 /* Special case: new route is system route, so
1732 * dataplane update will not be done - ensure we
1733 * redistribute the route.
1734 */
1735 if (RIB_SYSTEM_ROUTE(new_selected))
1736 redistribute_update(p, src_p, new_selected,
1737 old_selected);
1738 }
1739
d62a17ae 1740 if (old_selected) {
1741 if (!new_selected)
1742 redistribute_delete(p, src_p, old_selected);
1743 if (old_selected != new_selected)
1744 UNSET_FLAG(old_selected->flags,
1745 ZEBRA_FLAG_SELECTED);
f857321e 1746 }
d62a17ae 1747 }
3e5c6e00 1748
d62a17ae 1749 /* Remove all RE entries queued for removal */
a2addae8 1750 RNODE_FOREACH_RE_SAFE (rn, re, next) {
d62a17ae 1751 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)) {
1752 if (IS_ZEBRA_DEBUG_RIB) {
1753 rnode_debug(rn, vrf_id, "rn %p, removing re %p",
1754 (void *)rn, (void *)re);
1755 }
1756 rib_unlink(rn, re);
1757 }
1758 }
4d38fdb4 1759
d62a17ae 1760 /*
1761 * Check if the dest can be deleted now.
1762 */
1763 rib_gc_dest(rn);
e96f9203
DO
1764}
1765
e5ac2adf
MS
1766/*
1767 * Utility to match route with dplane context data
1768 */
1769static bool rib_route_match_ctx(const struct route_entry *re,
25779064
MS
1770 const struct zebra_dplane_ctx *ctx,
1771 bool is_update)
e5ac2adf
MS
1772{
1773 bool result = false;
1774
1775 if (is_update) {
1776 /*
1777 * In 'update' case, we test info about the 'previous' or
1778 * 'old' route
1779 */
1780 if ((re->type == dplane_ctx_get_old_type(ctx)) &&
1781 (re->instance == dplane_ctx_get_old_instance(ctx))) {
1782 result = true;
1783
1784 /* TODO -- we're using this extra test, but it's not
1785 * exactly clear why.
1786 */
1787 if (re->type == ZEBRA_ROUTE_STATIC &&
1788 (re->distance != dplane_ctx_get_old_distance(ctx) ||
1789 re->tag != dplane_ctx_get_old_tag(ctx))) {
1790 result = false;
1791 }
1792 }
1793
1794 } else {
1795 /*
1796 * Ordinary, single-route case using primary context info
1797 */
1798 if ((dplane_ctx_get_op(ctx) != DPLANE_OP_ROUTE_DELETE) &&
1799 CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)) {
1800 /* Skip route that's been deleted */
1801 goto done;
1802 }
1803
1804 if ((re->type == dplane_ctx_get_type(ctx)) &&
1805 (re->instance == dplane_ctx_get_instance(ctx))) {
1806 result = true;
1807
1808 /* TODO -- we're using this extra test, but it's not
1809 * exactly clear why.
1810 */
1811 if (re->type == ZEBRA_ROUTE_STATIC &&
1812 (re->distance != dplane_ctx_get_distance(ctx) ||
1813 re->tag != dplane_ctx_get_tag(ctx))) {
1814 result = false;
1815 }
1816 }
1817 }
1818
1819done:
1820
1821 return (result);
1822}
1823
1824/*
91f16812 1825 * Route-update results processing after async dataplane update.
e5ac2adf 1826 */
d37f4d6c 1827static void rib_process_result(struct zebra_dplane_ctx *ctx)
e5ac2adf
MS
1828{
1829 struct route_table *table = NULL;
97f5b441 1830 struct zebra_vrf *zvrf = NULL;
e5ac2adf
MS
1831 struct route_node *rn = NULL;
1832 struct route_entry *re = NULL, *old_re = NULL, *rib;
1833 bool is_update = false;
f183e380 1834 struct nexthop *nexthop, *ctx_nexthop;
97f5b441 1835 char dest_str[PREFIX_STRLEN] = "";
5709131c 1836 enum dplane_op_e op;
e5ac2adf
MS
1837 enum zebra_dplane_result status;
1838 const struct prefix *dest_pfx, *src_pfx;
1839
1840 /* Locate rn and re(s) from ctx */
1841
1842 table = zebra_vrf_table_with_table_id(dplane_ctx_get_afi(ctx),
1843 dplane_ctx_get_safi(ctx),
1844 dplane_ctx_get_vrf(ctx),
1845 dplane_ctx_get_table(ctx));
1846 if (table == NULL) {
1847 if (IS_ZEBRA_DEBUG_DPLANE) {
fe2c53d4 1848 zlog_debug("Failed to process dplane results: no table for afi %d, safi %d, vrf %u",
e5ac2adf
MS
1849 dplane_ctx_get_afi(ctx),
1850 dplane_ctx_get_safi(ctx),
1851 dplane_ctx_get_vrf(ctx));
1852 }
1853 goto done;
1854 }
1855
97f5b441
MS
1856 zvrf = vrf_info_lookup(dplane_ctx_get_vrf(ctx));
1857
e5ac2adf
MS
1858 dest_pfx = dplane_ctx_get_dest(ctx);
1859
1860 /* Note well: only capturing the prefix string if debug is enabled here;
1861 * unconditional log messages will have to generate the string.
1862 */
5709131c 1863 if (IS_ZEBRA_DEBUG_DPLANE)
e5ac2adf 1864 prefix2str(dest_pfx, dest_str, sizeof(dest_str));
e5ac2adf
MS
1865
1866 src_pfx = dplane_ctx_get_src(ctx);
1867 rn = srcdest_rnode_get(table, dplane_ctx_get_dest(ctx),
5709131c 1868 src_pfx ? (struct prefix_ipv6 *)src_pfx : NULL);
e5ac2adf
MS
1869 if (rn == NULL) {
1870 if (IS_ZEBRA_DEBUG_DPLANE) {
fe2c53d4 1871 zlog_debug("Failed to process dplane results: no route for %u:%s",
e5ac2adf
MS
1872 dplane_ctx_get_vrf(ctx), dest_str);
1873 }
1874 goto done;
1875 }
1876
1877 srcdest_rnode_prefixes(rn, &dest_pfx, &src_pfx);
1878
1879 op = dplane_ctx_get_op(ctx);
1880 status = dplane_ctx_get_status(ctx);
1881
c831033f 1882 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
f183e380 1883 zlog_debug("%u:%s Processing dplane ctx %p, op %s result %s",
e5ac2adf 1884 dplane_ctx_get_vrf(ctx), dest_str, ctx,
f183e380 1885 dplane_op2str(op), dplane_res2str(status));
e5ac2adf 1886
e5ac2adf
MS
1887 /*
1888 * Update is a bit of a special case, where we may have both old and new
1889 * routes to post-process.
1890 */
1891 is_update = dplane_ctx_is_update(ctx);
1892
1893 /*
1894 * Take a pass through the routes, look for matches with the context
1895 * info.
1896 */
1897 RNODE_FOREACH_RE(rn, rib) {
1898
1899 if (re == NULL) {
5709131c 1900 if (rib_route_match_ctx(rib, ctx, false))
e5ac2adf 1901 re = rib;
e5ac2adf
MS
1902 }
1903
1904 /* Check for old route match */
1905 if (is_update && (old_re == NULL)) {
5709131c 1906 if (rib_route_match_ctx(rib, ctx, true /*is_update*/))
e5ac2adf 1907 old_re = rib;
e5ac2adf
MS
1908 }
1909
1910 /* Have we found the routes we need to work on? */
5709131c 1911 if (re && ((!is_update || old_re)))
e5ac2adf 1912 break;
e5ac2adf
MS
1913 }
1914
1915 /*
1916 * Check sequence number(s) to detect stale results before continuing
1917 */
60f98b23
DS
1918 if (re) {
1919 if (re->dplane_sequence != dplane_ctx_get_seq(ctx)) {
1920 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
1921 zlog_debug("%u:%s Stale dplane result for re %p",
1922 dplane_ctx_get_vrf(ctx),
1923 dest_str, re);
1924 } else
1925 UNSET_FLAG(re->status, ROUTE_ENTRY_QUEUED);
e5ac2adf
MS
1926 }
1927
60f98b23
DS
1928 if (old_re) {
1929 if (old_re->dplane_sequence != dplane_ctx_get_old_seq(ctx)) {
1930 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
1931 zlog_debug("%u:%s Stale dplane result for old_re %p",
1932 dplane_ctx_get_vrf(ctx),
1933 dest_str, old_re);
1934 } else
9ef0c6ba 1935 UNSET_FLAG(old_re->status, ROUTE_ENTRY_QUEUED);
e5ac2adf
MS
1936 }
1937
12e7fe3a 1938 switch (op) {
12e7fe3a
DS
1939 case DPLANE_OP_ROUTE_INSTALL:
1940 case DPLANE_OP_ROUTE_UPDATE:
1941 if (status == ZEBRA_DPLANE_REQUEST_SUCCESS) {
677c1dd5
DS
1942 if (re) {
1943 UNSET_FLAG(re->status, ROUTE_ENTRY_FAILED);
1944 SET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
1945 }
b9f0e5ee
DS
1946 /*
1947 * On an update operation from the same route type
1948 * context retrieval currently has no way to know
1949 * which was the old and which was the new.
1950 * So don't unset our flags that we just set.
1951 * We know redistribution is ok because the
1952 * old_re in this case is used for nothing
1953 * more than knowing whom to contact if necessary.
1954 */
1955 if (old_re && old_re != re) {
677c1dd5
DS
1956 UNSET_FLAG(old_re->status, ROUTE_ENTRY_FAILED);
1957 UNSET_FLAG(old_re->status,
1958 ROUTE_ENTRY_INSTALLED);
1959 }
12e7fe3a
DS
1960 /* Update zebra nexthop FIB flag for each
1961 * nexthop that was installed.
1962 */
1963 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx),
1964 ctx_nexthop)) {
f183e380 1965
677c1dd5
DS
1966 if (!re)
1967 continue;
1968
12e7fe3a
DS
1969 for (ALL_NEXTHOPS(re->ng, nexthop)) {
1970 if (nexthop_same(ctx_nexthop, nexthop))
1971 break;
1972 }
1973
1974 if (nexthop == NULL)
1975 continue;
1976
1977 if (CHECK_FLAG(nexthop->flags,
1978 NEXTHOP_FLAG_RECURSIVE))
1979 continue;
1980
1981 if (CHECK_FLAG(ctx_nexthop->flags,
1982 NEXTHOP_FLAG_FIB))
1983 SET_FLAG(nexthop->flags,
1984 NEXTHOP_FLAG_FIB);
1985 else
1986 UNSET_FLAG(nexthop->flags,
1987 NEXTHOP_FLAG_FIB);
f183e380
MS
1988 }
1989
12e7fe3a
DS
1990 if (zvrf) {
1991 zvrf->installs++;
1992 /* Set flag for nexthop tracking processing */
1993 zvrf->flags |= ZEBRA_VRF_RIB_SCHEDULED;
1994 }
f183e380 1995
12e7fe3a
DS
1996 /* Redistribute */
1997 /*
1998 * TODO -- still calling the redist api using the
1999 * route_entries, and there's a corner-case here:
2000 * if there's no client for the 'new' route, a redist
2001 * deleting the 'old' route will be sent. But if the
2002 * 'old' context info was stale, 'old_re' will be
2003 * NULL here and that delete will not be sent.
2004 */
677c1dd5
DS
2005 if (re)
2006 redistribute_update(dest_pfx, src_pfx,
2007 re, old_re);
e5ac2adf 2008
12e7fe3a 2009 /* Notify route owner */
677c1dd5 2010 zsend_route_notify_owner_ctx(ctx, ZAPI_ROUTE_INSTALLED);
e5ac2adf 2011
12e7fe3a 2012 } else {
7a230a9d 2013 if (re) {
677c1dd5 2014 SET_FLAG(re->status, ROUTE_ENTRY_FAILED);
7a230a9d
DS
2015 UNSET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
2016 } if (old_re)
677c1dd5
DS
2017 SET_FLAG(old_re->status, ROUTE_ENTRY_FAILED);
2018 if (re)
2019 zsend_route_notify_owner(re, dest_pfx,
2020 ZAPI_ROUTE_FAIL_INSTALL);
97f5b441 2021
12e7fe3a
DS
2022 zlog_warn("%u:%s: Route install failed",
2023 dplane_ctx_get_vrf(ctx),
2024 prefix2str(dest_pfx,
2025 dest_str, sizeof(dest_str)));
2026 }
2027 break;
2028 case DPLANE_OP_ROUTE_DELETE:
677c1dd5
DS
2029 if (re)
2030 SET_FLAG(re->status, ROUTE_ENTRY_FAILED);
12e7fe3a
DS
2031 /*
2032 * In the delete case, the zebra core datastructs were
2033 * updated (or removed) at the time the delete was issued,
2034 * so we're just notifying the route owner.
e5ac2adf 2035 */
12e7fe3a 2036 if (status == ZEBRA_DPLANE_REQUEST_SUCCESS) {
677c1dd5
DS
2037 if (re) {
2038 UNSET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
2039 UNSET_FLAG(re->status, ROUTE_ENTRY_FAILED);
2040 }
12e7fe3a 2041 zsend_route_notify_owner_ctx(ctx, ZAPI_ROUTE_REMOVED);
e5ac2adf 2042
12e7fe3a
DS
2043 if (zvrf)
2044 zvrf->removals++;
2045 } else {
677c1dd5
DS
2046 if (re)
2047 SET_FLAG(re->status, ROUTE_ENTRY_FAILED);
12e7fe3a
DS
2048 zsend_route_notify_owner_ctx(ctx,
2049 ZAPI_ROUTE_REMOVE_FAIL);
e5ac2adf 2050
12e7fe3a
DS
2051 zlog_warn("%u:%s: Route Deletion failure",
2052 dplane_ctx_get_vrf(ctx),
2053 prefix2str(dest_pfx,
2054 dest_str, sizeof(dest_str)));
2055 }
2056 break;
d37f4d6c
MS
2057 default:
2058 break;
e5ac2adf 2059 }
e5ac2adf
MS
2060done:
2061
5f27bcba
DS
2062 if (rn)
2063 route_unlock_node(rn);
2064
e5ac2adf
MS
2065 /* Return context to dataplane module */
2066 dplane_ctx_fini(&ctx);
2067}
2068
5110a0c6 2069/* Take a list of route_node structs and return 1, if there was a record
d62a17ae 2070 * picked from it and processed by rib_process(). Don't process more,
5110a0c6 2071 * than one RN record; operate only in the specified sub-queue.
e96f9203 2072 */
d7c0a89a 2073static unsigned int process_subq(struct list *subq, uint8_t qindex)
e96f9203 2074{
d62a17ae 2075 struct listnode *lnode = listhead(subq);
2076 struct route_node *rnode;
2077 rib_dest_t *dest;
2078 struct zebra_vrf *zvrf = NULL;
5110a0c6 2079
d62a17ae 2080 if (!lnode)
2081 return 0;
5110a0c6 2082
d62a17ae 2083 rnode = listgetdata(lnode);
2084 dest = rib_dest_from_rnode(rnode);
2085 if (dest)
2086 zvrf = rib_dest_vrf(dest);
41ec9222 2087
d62a17ae 2088 rib_process(rnode);
5110a0c6 2089
d62a17ae 2090 if (IS_ZEBRA_DEBUG_RIB_DETAILED) {
2091 char buf[SRCDEST2STR_BUFFER];
2092 srcdest_rnode2str(rnode, buf, sizeof(buf));
2093 zlog_debug("%u:%s: rn %p dequeued from sub-queue %u",
2094 zvrf ? zvrf_id(zvrf) : 0, buf, rnode, qindex);
2095 }
41ec9222 2096
d62a17ae 2097 if (rnode->info)
2098 UNSET_FLAG(rib_dest_from_rnode(rnode)->flags,
2099 RIB_ROUTE_QUEUED(qindex));
9fd92e3c 2100
67b9467f 2101#if 0
5110a0c6
SH
2102 else
2103 {
2104 zlog_debug ("%s: called for route_node (%p, %d) with no ribs",
2105 __func__, rnode, rnode->lock);
2106 zlog_backtrace(LOG_DEBUG);
2107 }
67b9467f 2108#endif
d62a17ae 2109 route_unlock_node(rnode);
2110 list_delete_node(subq, lnode);
2111 return 1;
e96f9203
DO
2112}
2113
fb018d25 2114/*
f183e380 2115 * Perform next-hop tracking processing after RIB updates.
fb018d25 2116 */
f183e380 2117static void do_nht_processing(void)
fb018d25 2118{
d62a17ae 2119 struct vrf *vrf;
2120 struct zebra_vrf *zvrf;
9ec6b0bb 2121
d62a17ae 2122 /* Evaluate nexthops for those VRFs which underwent route processing.
2123 * This
2124 * should limit the evaluation to the necessary VRFs in most common
2125 * situations.
2126 */
a2addae8 2127 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
d62a17ae 2128 zvrf = vrf->info;
2129 if (zvrf == NULL || !(zvrf->flags & ZEBRA_VRF_RIB_SCHEDULED))
2130 continue;
2131
f183e380
MS
2132 if (IS_ZEBRA_DEBUG_RIB_DETAILED || IS_ZEBRA_DEBUG_NHT)
2133 zlog_debug("NHT processing check for zvrf %s",
2134 zvrf_name(zvrf));
2135
d62a17ae 2136 zvrf->flags &= ~ZEBRA_VRF_RIB_SCHEDULED;
73bf60a0
RW
2137 zebra_evaluate_rnh(zvrf, AFI_IP, 0, RNH_NEXTHOP_TYPE, NULL);
2138 zebra_evaluate_rnh(zvrf, AFI_IP, 0, RNH_IMPORT_CHECK_TYPE,
d62a17ae 2139 NULL);
73bf60a0
RW
2140 zebra_evaluate_rnh(zvrf, AFI_IP6, 0, RNH_NEXTHOP_TYPE, NULL);
2141 zebra_evaluate_rnh(zvrf, AFI_IP6, 0, RNH_IMPORT_CHECK_TYPE,
d62a17ae 2142 NULL);
d62a17ae 2143 }
939fba27 2144
d62a17ae 2145 /* Schedule LSPs for processing, if needed. */
2146 zvrf = vrf_info_lookup(VRF_DEFAULT);
2147 if (mpls_should_lsps_be_processed(zvrf)) {
2148 if (IS_ZEBRA_DEBUG_MPLS)
2149 zlog_debug(
2150 "%u: Scheduling all LSPs upon RIB completion",
2151 zvrf_id(zvrf));
2152 zebra_mpls_lsp_schedule(zvrf);
2153 mpls_unmark_lsps_for_processing(zvrf);
2154 }
fb018d25
DS
2155}
2156
e96f9203 2157/* Dispatch the meta queue by picking, processing and unlocking the next RN from
d62a17ae 2158 * a non-empty sub-queue with lowest priority. wq is equal to zebra->ribq and
2159 * data
e96f9203
DO
2160 * is pointed to the meta queue structure.
2161 */
d62a17ae 2162static wq_item_status meta_queue_process(struct work_queue *dummy, void *data)
e96f9203 2163{
d62a17ae 2164 struct meta_queue *mq = data;
2165 unsigned i;
91f16812
MS
2166 uint32_t queue_len, queue_limit;
2167
2168 /* Ensure there's room for more dataplane updates */
2169 queue_limit = dplane_get_in_queue_limit();
2170 queue_len = dplane_get_in_queue_len();
2171 if (queue_len > queue_limit) {
2172 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
8b962e77
MS
2173 zlog_debug("rib queue: dplane queue len %u, limit %u, retrying",
2174 queue_len, queue_limit);
91f16812
MS
2175
2176 /* Ensure that the meta-queue is actually enqueued */
489a9614 2177 if (work_queue_empty(zrouter.ribq))
ea45a4e7 2178 work_queue_add(zrouter.ribq, zrouter.mq);
91f16812
MS
2179
2180 return WQ_QUEUE_BLOCKED;
2181 }
5110a0c6 2182
d62a17ae 2183 for (i = 0; i < MQ_SIZE; i++)
2184 if (process_subq(mq->subq[i], i)) {
2185 mq->size--;
2186 break;
2187 }
2188 return mq->size ? WQ_REQUEUE : WQ_SUCCESS;
e96f9203
DO
2189}
2190
f52ed677
DS
2191
2192/*
2193 * Look into the RN and queue it into the highest priority queue
2194 * at this point in time for processing.
2195 *
2196 * We will enqueue a route node only once per invocation.
2197 *
2198 * There are two possibilities here that should be kept in mind.
2199 * If the original invocation has not been pulled off for processing
2200 * yet, A subsuquent invocation can have a route entry with a better
2201 * meta queue index value and we can have a situation where
2202 * we might have the same node enqueued 2 times. Not necessarily
2203 * an optimal situation but it should be ok.
2204 *
2205 * The other possibility is that the original invocation has not
2206 * been pulled off for processing yet, A subsusquent invocation
2207 * doesn't have a route_entry with a better meta-queue and the
2208 * original metaqueue index value will win and we'll end up with
2209 * the route node enqueued once.
e96f9203 2210 */
d62a17ae 2211static void rib_meta_queue_add(struct meta_queue *mq, struct route_node *rn)
e96f9203 2212{
f52ed677
DS
2213 struct route_entry *re = NULL, *curr_re = NULL;
2214 uint8_t qindex = MQ_SIZE, curr_qindex = MQ_SIZE;
2215 struct zebra_vrf *zvrf;
5110a0c6 2216
f52ed677
DS
2217 RNODE_FOREACH_RE (rn, curr_re) {
2218 curr_qindex = route_info[curr_re->type].meta_q_map;
d62a17ae 2219
f52ed677
DS
2220 if (curr_qindex <= qindex) {
2221 re = curr_re;
2222 qindex = curr_qindex;
d62a17ae 2223 }
f52ed677 2224 }
5110a0c6 2225
f52ed677
DS
2226 if (!re)
2227 return;
5110a0c6 2228
f52ed677
DS
2229 /* Invariant: at this point we always have rn->info set. */
2230 if (CHECK_FLAG(rib_dest_from_rnode(rn)->flags,
2231 RIB_ROUTE_QUEUED(qindex))) {
d62a17ae 2232 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
2233 rnode_debug(rn, re->vrf_id,
f52ed677 2234 "rn %p is already queued in sub-queue %u",
d62a17ae 2235 (void *)rn, qindex);
f52ed677 2236 return;
d62a17ae 2237 }
f52ed677
DS
2238
2239 SET_FLAG(rib_dest_from_rnode(rn)->flags, RIB_ROUTE_QUEUED(qindex));
2240 listnode_add(mq->subq[qindex], rn);
2241 route_lock_node(rn);
2242 mq->size++;
2243
2244 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
2245 rnode_debug(rn, re->vrf_id, "queued rn %p into sub-queue %u",
2246 (void *)rn, qindex);
2247
2248 zvrf = zebra_vrf_lookup_by_id(re->vrf_id);
2249 if (zvrf)
2250 zvrf->flags |= ZEBRA_VRF_RIB_SCHEDULED;
4d38fdb4 2251}
2252
6d691129 2253/* Add route_node to work queue and schedule processing */
d62a17ae 2254void rib_queue_add(struct route_node *rn)
4d38fdb4 2255{
d62a17ae 2256 assert(rn);
fc328ac9 2257
d62a17ae 2258 /* Pointless to queue a route_node with no RIB entries to add or remove
2259 */
2260 if (!rnode_to_ribs(rn)) {
2261 zlog_debug("%s: called for route_node (%p, %d) with no ribs",
2262 __func__, (void *)rn, rn->lock);
2263 zlog_backtrace(LOG_DEBUG);
2264 return;
2265 }
4d38fdb4 2266
489a9614 2267 if (zrouter.ribq == NULL) {
e914ccbe 2268 flog_err(EC_ZEBRA_WQ_NONEXISTENT,
1c50c1c0 2269 "%s: work_queue does not exist!", __func__);
d62a17ae 2270 return;
2271 }
2272
2273 /*
2274 * The RIB queue should normally be either empty or holding the only
2275 * work_queue_item element. In the latter case this element would
2276 * hold a pointer to the meta queue structure, which must be used to
2277 * actually queue the route nodes to process. So create the MQ
2278 * holder, if necessary, then push the work into it in any case.
2279 * This semantics was introduced after 0.99.9 release.
2280 */
489a9614 2281 if (work_queue_empty(zrouter.ribq))
ea45a4e7 2282 work_queue_add(zrouter.ribq, zrouter.mq);
e96f9203 2283
ea45a4e7 2284 rib_meta_queue_add(zrouter.mq, rn);
fc328ac9 2285
d62a17ae 2286 return;
4d38fdb4 2287}
2288
5110a0c6
SH
2289/* Create new meta queue.
2290 A destructor function doesn't seem to be necessary here.
2291 */
d62a17ae 2292static struct meta_queue *meta_queue_new(void)
e96f9203 2293{
d62a17ae 2294 struct meta_queue *new;
2295 unsigned i;
5110a0c6 2296
d62a17ae 2297 new = XCALLOC(MTYPE_WORK_QUEUE, sizeof(struct meta_queue));
e96f9203 2298
d62a17ae 2299 for (i = 0; i < MQ_SIZE; i++) {
2300 new->subq[i] = list_new();
2301 assert(new->subq[i]);
2302 }
5110a0c6 2303
d62a17ae 2304 return new;
e96f9203
DO
2305}
2306
d62a17ae 2307void meta_queue_free(struct meta_queue *mq)
5a8dfcd8 2308{
d62a17ae 2309 unsigned i;
5a8dfcd8 2310
d62a17ae 2311 for (i = 0; i < MQ_SIZE; i++)
6a154c88 2312 list_delete(&mq->subq[i]);
5a8dfcd8 2313
d62a17ae 2314 XFREE(MTYPE_WORK_QUEUE, mq);
5a8dfcd8
RW
2315}
2316
4d38fdb4 2317/* initialise zebra rib work queue */
2561d12e 2318static void rib_queue_init(void)
4d38fdb4 2319{
489a9614
DS
2320 if (!(zrouter.ribq = work_queue_new(zrouter.master,
2321 "route_node processing"))) {
e914ccbe 2322 flog_err(EC_ZEBRA_WQ_NONEXISTENT,
1c50c1c0 2323 "%s: could not initialise work queue!", __func__);
d62a17ae 2324 return;
2325 }
4d38fdb4 2326
d62a17ae 2327 /* fill in the work queue spec */
489a9614
DS
2328 zrouter.ribq->spec.workfunc = &meta_queue_process;
2329 zrouter.ribq->spec.errorfunc = NULL;
46a4e345 2330 zrouter.ribq->spec.completion_func = NULL;
d62a17ae 2331 /* XXX: TODO: These should be runtime configurable via vty */
489a9614
DS
2332 zrouter.ribq->spec.max_retries = 3;
2333 zrouter.ribq->spec.hold = ZEBRA_RIB_PROCESS_HOLD_TIME;
2334 zrouter.ribq->spec.retry = ZEBRA_RIB_PROCESS_RETRY_TIME;
d62a17ae 2335
ea45a4e7 2336 if (!(zrouter.mq = meta_queue_new())) {
e914ccbe 2337 flog_err(EC_ZEBRA_WQ_NONEXISTENT,
1c50c1c0 2338 "%s: could not initialise meta queue!", __func__);
d62a17ae 2339 return;
2340 }
2341 return;
718e3744 2342}
2343
6d691129
PJ
2344/* RIB updates are processed via a queue of pointers to route_nodes.
2345 *
2346 * The queue length is bounded by the maximal size of the routing table,
2347 * as a route_node will not be requeued, if already queued.
2348 *
f0f77c9a
DS
2349 * REs are submitted via rib_addnode or rib_delnode which set minimal
2350 * state, or static_install_route (when an existing RE is updated)
3c0755dc 2351 * and then submit route_node to queue for best-path selection later.
f0f77c9a 2352 * Order of add/delete state changes are preserved for any given RE.
6d691129 2353 *
f0f77c9a 2354 * Deleted REs are reaped during best-path selection.
6d691129
PJ
2355 *
2356 * rib_addnode
f0f77c9a
DS
2357 * |-> rib_link or unset ROUTE_ENTRY_REMOVE |->Update kernel with
2358 * |-------->| | best RE, if required
3c0755dc
PJ
2359 * | |
2360 * static_install->|->rib_addqueue...... -> rib_process
2361 * | |
2362 * |-------->| |-> rib_unlink
f0f77c9a
DS
2363 * |-> set ROUTE_ENTRY_REMOVE |
2364 * rib_delnode (RE freed)
6d691129 2365 *
9fd92e3c
AS
2366 * The 'info' pointer of a route_node points to a rib_dest_t
2367 * ('dest'). Queueing state for a route_node is kept on the dest. The
2368 * dest is created on-demand by rib_link() and is kept around at least
2369 * as long as there are ribs hanging off it (@see rib_gc_dest()).
d62a17ae 2370 *
6d691129
PJ
2371 * Refcounting (aka "locking" throughout the GNU Zebra and Quagga code):
2372 *
2373 * - route_nodes: refcounted by:
9fd92e3c
AS
2374 * - dest attached to route_node:
2375 * - managed by: rib_link/rib_gc_dest
6d691129
PJ
2376 * - route_node processing queue
2377 * - managed by: rib_addqueue, rib_process.
2378 *
2379 */
d62a17ae 2380
f0f77c9a 2381/* Add RE to head of the route node. */
d62a17ae 2382static void rib_link(struct route_node *rn, struct route_entry *re, int process)
2383{
2384 struct route_entry *head;
2385 rib_dest_t *dest;
2386 afi_t afi;
2387 const char *rmap_name;
9fd92e3c 2388
d62a17ae 2389 assert(re && rn);
9fd92e3c 2390
d62a17ae 2391 dest = rib_dest_from_rnode(rn);
2392 if (!dest) {
2393 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
2394 rnode_debug(rn, re->vrf_id, "rn %p adding dest", rn);
7a4bb9c5 2395
d62a17ae 2396 dest = XCALLOC(MTYPE_RIB_DEST, sizeof(rib_dest_t));
2397 route_lock_node(rn); /* rn route table reference */
2398 rn->info = dest;
2399 dest->rnode = rn;
2400 }
2263a412 2401
d62a17ae 2402 head = dest->routes;
2403 if (head) {
2404 head->prev = re;
2405 }
2406 re->next = head;
2407 dest->routes = re;
2408
2409 afi = (rn->p.family == AF_INET)
2410 ? AFI_IP
2411 : (rn->p.family == AF_INET6) ? AFI_IP6 : AFI_MAX;
2412 if (is_zebra_import_table_enabled(afi, re->table)) {
2413 rmap_name = zebra_get_import_table_route_map(afi, re->table);
2414 zebra_add_import_table_entry(rn, re, rmap_name);
2415 } else if (process)
2416 rib_queue_add(rn);
2417}
2418
7e24fdf3
DS
2419static void rib_addnode(struct route_node *rn,
2420 struct route_entry *re, int process)
d62a17ae 2421{
2422 /* RE node has been un-removed before route-node is processed.
2423 * route_node must hence already be on the queue for processing..
2424 */
2425 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)) {
2426 if (IS_ZEBRA_DEBUG_RIB)
2427 rnode_debug(rn, re->vrf_id, "rn %p, un-removed re %p",
2428 (void *)rn, (void *)re);
2429
2430 UNSET_FLAG(re->status, ROUTE_ENTRY_REMOVED);
2431 return;
2432 }
2433 rib_link(rn, re, process);
6d691129
PJ
2434}
2435
9fd92e3c
AS
2436/*
2437 * rib_unlink
2438 *
2439 * Detach a rib structure from a route_node.
2440 *
2441 * Note that a call to rib_unlink() should be followed by a call to
2442 * rib_gc_dest() at some point. This allows a rib_dest_t that is no
2443 * longer required to be deleted.
2444 */
d62a17ae 2445void rib_unlink(struct route_node *rn, struct route_entry *re)
6d691129 2446{
d62a17ae 2447 rib_dest_t *dest;
9fd92e3c 2448
d62a17ae 2449 assert(rn && re);
6d691129 2450
d62a17ae 2451 if (IS_ZEBRA_DEBUG_RIB)
2452 rnode_debug(rn, re->vrf_id, "rn %p, re %p", (void *)rn,
2453 (void *)re);
6d691129 2454
d62a17ae 2455 dest = rib_dest_from_rnode(rn);
6d691129 2456
d62a17ae 2457 if (re->next)
2458 re->next->prev = re->prev;
6d691129 2459
d62a17ae 2460 if (re->prev)
2461 re->prev->next = re->next;
2462 else {
2463 dest->routes = re->next;
2464 }
7a4bb9c5 2465
2eb07de3
DS
2466 if (dest->selected_fib == re)
2467 dest->selected_fib = NULL;
2468
7ee30f28 2469 nexthops_free(re->ng.nexthop);
d62a17ae 2470 XFREE(MTYPE_RE, re);
2471}
2472
2473void rib_delnode(struct route_node *rn, struct route_entry *re)
2474{
2475 afi_t afi;
2476
2477 if (IS_ZEBRA_DEBUG_RIB)
2478 rnode_debug(rn, re->vrf_id, "rn %p, re %p, removing",
2479 (void *)rn, (void *)re);
2480 SET_FLAG(re->status, ROUTE_ENTRY_REMOVED);
2481
2482 afi = (rn->p.family == AF_INET)
2483 ? AFI_IP
2484 : (rn->p.family == AF_INET6) ? AFI_IP6 : AFI_MAX;
2485 if (is_zebra_import_table_enabled(afi, re->table)) {
2486 zebra_del_import_table_entry(rn, re);
2487 /* Just clean up if non main table */
2488 if (IS_ZEBRA_DEBUG_RIB) {
2489 char buf[SRCDEST2STR_BUFFER];
2490 srcdest_rnode2str(rn, buf, sizeof(buf));
2da33d6b
DS
2491 zlog_debug("%u:%s: Freeing route rn %p, re %p (%s)",
2492 re->vrf_id, buf, rn, re,
2493 zebra_route_string(re->type));
d62a17ae 2494 }
7a4bb9c5 2495
d62a17ae 2496 rib_unlink(rn, re);
2497 } else {
2498 rib_queue_add(rn);
2499 }
718e3744 2500}
2501
f0f77c9a 2502/* This function dumps the contents of a given RE entry into
dc95824a
DO
2503 * standard debug log. Calling function name and IP prefix in
2504 * question are passed as 1st and 2nd arguments.
2505 */
2506
d62a17ae 2507void _route_entry_dump(const char *func, union prefixconstptr pp,
2508 union prefixconstptr src_pp,
2509 const struct route_entry *re)
2510{
d62a17ae 2511 const struct prefix *src_p = src_pp.p;
2512 bool is_srcdst = src_p && src_p->prefixlen;
2513 char straddr[PREFIX_STRLEN];
2514 char srcaddr[PREFIX_STRLEN];
2515 struct nexthop *nexthop;
2516
2517 zlog_debug("%s: dumping RE entry %p for %s%s%s vrf %u", func,
2518 (const void *)re, prefix2str(pp, straddr, sizeof(straddr)),
2519 is_srcdst ? " from " : "",
2520 is_srcdst ? prefix2str(src_pp, srcaddr, sizeof(srcaddr))
2521 : "",
2522 re->vrf_id);
cc54cfee
RW
2523 zlog_debug("%s: uptime == %lu, type == %u, instance == %d, table == %d",
2524 func, (unsigned long)re->uptime, re->type, re->instance,
2525 re->table);
d62a17ae 2526 zlog_debug(
2527 "%s: metric == %u, mtu == %u, distance == %u, flags == %u, status == %u",
2528 func, re->metric, re->mtu, re->distance, re->flags, re->status);
2529 zlog_debug("%s: nexthop_num == %u, nexthop_active_num == %u", func,
2530 re->nexthop_num, re->nexthop_active_num);
2531
7ee30f28 2532 for (ALL_NEXTHOPS(re->ng, nexthop)) {
2d68a0f2
DS
2533 struct interface *ifp;
2534 struct vrf *vrf = vrf_lookup_by_id(nexthop->vrf_id);
2535
2536 switch (nexthop->type) {
2537 case NEXTHOP_TYPE_BLACKHOLE:
2538 sprintf(straddr, "Blackhole");
2539 break;
2540 case NEXTHOP_TYPE_IFINDEX:
2541 ifp = if_lookup_by_index(nexthop->ifindex,
2542 nexthop->vrf_id);
2543 sprintf(straddr, "%s", ifp ? ifp->name : "Unknown");
2544 break;
2545 case NEXTHOP_TYPE_IPV4:
2546 /* fallthrough */
2547 case NEXTHOP_TYPE_IPV4_IFINDEX:
2548 inet_ntop(AF_INET, &nexthop->gate, straddr,
2549 INET6_ADDRSTRLEN);
2550 break;
2551 case NEXTHOP_TYPE_IPV6:
2552 case NEXTHOP_TYPE_IPV6_IFINDEX:
2553 inet_ntop(AF_INET6, &nexthop->gate, straddr,
2554 INET6_ADDRSTRLEN);
2555 break;
2556 }
2557 zlog_debug("%s: %s %s[%u] vrf %s(%u) with flags %s%s%s", func,
d62a17ae 2558 (nexthop->rparent ? " NH" : "NH"), straddr,
2d68a0f2
DS
2559 nexthop->ifindex, vrf ? vrf->name : "Unknown",
2560 nexthop->vrf_id,
d62a17ae 2561 (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE)
2562 ? "ACTIVE "
2563 : ""),
677c1dd5 2564 (CHECK_FLAG(re->status, ROUTE_ENTRY_INSTALLED)
d62a17ae 2565 ? "FIB "
2566 : ""),
2567 (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE)
2568 ? "RECURSIVE"
2569 : ""));
2570 }
2571 zlog_debug("%s: dump complete", func);
dc95824a
DO
2572}
2573
2574/* This is an exported helper to rtm_read() to dump the strange
f0f77c9a 2575 * RE entry found by rib_lookup_ipv4_route()
dc95824a
DO
2576 */
2577
d62a17ae 2578void rib_lookup_and_dump(struct prefix_ipv4 *p, vrf_id_t vrf_id)
2579{
2580 struct route_table *table;
2581 struct route_node *rn;
2582 struct route_entry *re;
2583 char prefix_buf[INET_ADDRSTRLEN];
2584
2585 /* Lookup table. */
2586 table = zebra_vrf_table(AFI_IP, SAFI_UNICAST, vrf_id);
2587 if (!table) {
e914ccbe 2588 flog_err(EC_ZEBRA_TABLE_LOOKUP_FAILED,
1c50c1c0
QY
2589 "%s:%u zebra_vrf_table() returned NULL", __func__,
2590 vrf_id);
d62a17ae 2591 return;
2592 }
2593
2594 /* Scan the RIB table for exactly matching RE entry. */
2595 rn = route_node_lookup(table, (struct prefix *)p);
2596
2597 /* No route for this prefix. */
2598 if (!rn) {
32391aff 2599 zlog_debug("%s:%u lookup failed for %s", __func__, vrf_id,
d62a17ae 2600 prefix2str((struct prefix *)p, prefix_buf,
2601 sizeof(prefix_buf)));
2602 return;
2603 }
2604
2605 /* Unlock node. */
2606 route_unlock_node(rn);
2607
2608 /* let's go */
a2addae8 2609 RNODE_FOREACH_RE (rn, re) {
32391aff
DS
2610 zlog_debug("%s:%u rn %p, re %p: %s, %s",
2611 __func__, vrf_id,
2612 (void *)rn, (void *)re,
d62a17ae 2613 (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)
2614 ? "removed"
2615 : "NOT removed"),
2616 (CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED)
2617 ? "selected"
2618 : "NOT selected"));
2619 route_entry_dump(p, NULL, re);
2620 }
dc95824a
DO
2621}
2622
20e5ff0a
DO
2623/* Check if requested address assignment will fail due to another
2624 * route being installed by zebra in FIB already. Take necessary
2625 * actions, if needed: remove such a route from FIB and deSELECT
f0f77c9a 2626 * corresponding RE entry. Then put affected RN into RIBQ head.
20e5ff0a 2627 */
d62a17ae 2628void rib_lookup_and_pushup(struct prefix_ipv4 *p, vrf_id_t vrf_id)
2629{
2630 struct route_table *table;
2631 struct route_node *rn;
d62a17ae 2632 unsigned changed = 0;
5f7a4718 2633 rib_dest_t *dest;
d62a17ae 2634
2635 if (NULL == (table = zebra_vrf_table(AFI_IP, SAFI_UNICAST, vrf_id))) {
e914ccbe 2636 flog_err(EC_ZEBRA_TABLE_LOOKUP_FAILED,
1c50c1c0
QY
2637 "%s:%u zebra_vrf_table() returned NULL", __func__,
2638 vrf_id);
d62a17ae 2639 return;
2640 }
2641
2642 /* No matches would be the simplest case. */
2643 if (NULL == (rn = route_node_lookup(table, (struct prefix *)p)))
2644 return;
2645
2646 /* Unlock node. */
2647 route_unlock_node(rn);
2648
5f7a4718 2649 dest = rib_dest_from_rnode(rn);
d62a17ae 2650 /* Check all RE entries. In case any changes have to be done, requeue
2651 * the RN into RIBQ head. If the routing message about the new connected
2652 * route (generated by the IP address we are going to assign very soon)
2653 * comes before the RIBQ is processed, the new RE entry will join
2654 * RIBQ record already on head. This is necessary for proper
2655 * revalidation
2656 * of the rest of the RE.
2657 */
5f7a4718
DS
2658 if (dest->selected_fib && !RIB_SYSTEM_ROUTE(dest->selected_fib)) {
2659 changed = 1;
2660 if (IS_ZEBRA_DEBUG_RIB) {
2661 char buf[PREFIX_STRLEN];
2662
2663 zlog_debug("%u:%s: freeing way for connected prefix",
2664 dest->selected_fib->vrf_id,
2665 prefix2str(&rn->p, buf, sizeof(buf)));
2666 route_entry_dump(&rn->p, NULL, dest->selected_fib);
d62a17ae 2667 }
5f7a4718 2668 rib_uninstall(rn, dest->selected_fib);
d62a17ae 2669 }
2670 if (changed)
2671 rib_queue_add(rn);
20e5ff0a
DO
2672}
2673
d62a17ae 2674int rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p,
2675 struct prefix_ipv6 *src_p, struct route_entry *re)
718e3744 2676{
d62a17ae 2677 struct route_table *table;
2678 struct route_node *rn;
40ecd8e4 2679 struct route_entry *same = NULL;
d62a17ae 2680 struct nexthop *nexthop;
2681 int ret = 0;
b4c034b0 2682
d62a17ae 2683 if (!re)
2684 return 0;
b4c034b0 2685
1f610a1f 2686 assert(!src_p || !src_p->prefixlen || afi == AFI_IP6);
05737783 2687
d62a17ae 2688 /* Lookup table. */
7865c65d
RW
2689 table = zebra_vrf_table_with_table_id(afi, safi, re->vrf_id, re->table);
2690 if (!table) {
2691 XFREE(MTYPE_RE, re);
d62a17ae 2692 return 0;
7865c65d 2693 }
cddf391b 2694
d62a17ae 2695 /* Make it sure prefixlen is applied to the prefix. */
2696 apply_mask(p);
2697 if (src_p)
2698 apply_mask_ipv6(src_p);
718e3744 2699
d62a17ae 2700 /* Set default distance by route type. */
2701 if (re->distance == 0) {
0492eea0 2702 re->distance = route_distance(re->type);
718e3744 2703
d62a17ae 2704 /* iBGP distance is 200. */
2705 if (re->type == ZEBRA_ROUTE_BGP
2706 && CHECK_FLAG(re->flags, ZEBRA_FLAG_IBGP))
2707 re->distance = 200;
2708 }
718e3744 2709
d62a17ae 2710 /* Lookup route node.*/
2711 rn = srcdest_rnode_get(table, p, src_p);
718e3744 2712
40ecd8e4
DS
2713 /*
2714 * If same type of route are installed, treat it as a implicit
2715 * withdraw.
2716 * If the user has specified the No route replace semantics
2717 * for the install don't do a route replace.
2718 */
a2addae8 2719 RNODE_FOREACH_RE (rn, same) {
d62a17ae 2720 if (CHECK_FLAG(same->status, ROUTE_ENTRY_REMOVED))
2721 continue;
41ec9222 2722
eb327fa5
RW
2723 if (same->type != re->type)
2724 continue;
2725 if (same->instance != re->instance)
2726 continue;
996c9314
LB
2727 if (same->type == ZEBRA_ROUTE_KERNEL
2728 && same->metric != re->metric)
eb327fa5 2729 continue;
40ecd8e4
DS
2730
2731 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_RR_USE_DISTANCE) &&
2732 same->distance != re->distance)
2733 continue;
2734
844b3a87 2735 /*
40ecd8e4
DS
2736 * We should allow duplicate connected routes
2737 * because of IPv6 link-local routes and unnumbered
2738 * interfaces on Linux.
844b3a87
RW
2739 */
2740 if (same->type != ZEBRA_ROUTE_CONNECT)
d62a17ae 2741 break;
2742 }
718e3744 2743
d62a17ae 2744 /* If this route is kernel route, set FIB flag to the route. */
677c1dd5
DS
2745 if (RIB_SYSTEM_ROUTE(re)) {
2746 SET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
7ee30f28 2747 for (nexthop = re->ng.nexthop; nexthop; nexthop = nexthop->next)
d62a17ae 2748 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
677c1dd5 2749 }
718e3744 2750
d62a17ae 2751 /* Link new re to node.*/
2752 if (IS_ZEBRA_DEBUG_RIB) {
2da33d6b
DS
2753 rnode_debug(rn, re->vrf_id,
2754 "Inserting route rn %p, re %p (%s) existing %p",
2755 rn, re, zebra_route_string(re->type), same);
718e3744 2756
d62a17ae 2757 if (IS_ZEBRA_DEBUG_RIB_DETAILED)
2758 route_entry_dump(p, src_p, re);
718e3744 2759 }
d62a17ae 2760 rib_addnode(rn, re, 1);
2761 ret = 1;
6b0655a2 2762
d62a17ae 2763 /* Free implicit route.*/
2764 if (same) {
2765 rib_delnode(rn, same);
2766 ret = -1;
2767 }
718e3744 2768
d62a17ae 2769 route_unlock_node(rn);
2770 return ret;
2771}
2772
2773void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
d7c0a89a 2774 unsigned short instance, int flags, struct prefix *p,
fd36be7e 2775 struct prefix_ipv6 *src_p, const struct nexthop *nh,
40ecd8e4
DS
2776 uint32_t table_id, uint32_t metric, uint8_t distance,
2777 bool fromkernel)
d62a17ae 2778{
2779 struct route_table *table;
2780 struct route_node *rn;
2781 struct route_entry *re;
2782 struct route_entry *fib = NULL;
2783 struct route_entry *same = NULL;
fd36be7e 2784 struct nexthop *rtnh;
d62a17ae 2785 char buf2[INET6_ADDRSTRLEN];
5f7a4718 2786 rib_dest_t *dest;
d62a17ae 2787
1f610a1f 2788 assert(!src_p || !src_p->prefixlen || afi == AFI_IP6);
d62a17ae 2789
2790 /* Lookup table. */
2791 table = zebra_vrf_table_with_table_id(afi, safi, vrf_id, table_id);
2792 if (!table)
2793 return;
2794
2795 /* Apply mask. */
2796 apply_mask(p);
2797 if (src_p)
2798 apply_mask_ipv6(src_p);
2799
2800 /* Lookup route node. */
2801 rn = srcdest_rnode_lookup(table, p, src_p);
2802 if (!rn) {
2803 char dst_buf[PREFIX_STRLEN], src_buf[PREFIX_STRLEN];
2804
2805 prefix2str(p, dst_buf, sizeof(dst_buf));
2806 if (src_p && src_p->prefixlen)
2807 prefix2str(src_p, src_buf, sizeof(src_buf));
2808 else
2809 src_buf[0] = '\0';
2810
2811 if (IS_ZEBRA_DEBUG_RIB)
2812 zlog_debug("%u:%s%s%s doesn't exist in rib", vrf_id,
2813 dst_buf,
2814 (src_buf[0] != '\0') ? " from " : "",
2815 src_buf);
2816 return;
2817 }
718e3744 2818
5f7a4718
DS
2819 dest = rib_dest_from_rnode(rn);
2820 fib = dest->selected_fib;
2821
d62a17ae 2822 /* Lookup same type route. */
a2addae8 2823 RNODE_FOREACH_RE (rn, re) {
d62a17ae 2824 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED))
2825 continue;
2826
d62a17ae 2827 if (re->type != type)
2828 continue;
2829 if (re->instance != instance)
2830 continue;
40ecd8e4
DS
2831 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_RR_USE_DISTANCE) &&
2832 distance != re->distance)
2833 continue;
2834
996c9314 2835 if (re->type == ZEBRA_ROUTE_KERNEL && re->metric != metric)
f19435a8 2836 continue;
7ee30f28 2837 if (re->type == ZEBRA_ROUTE_CONNECT && (rtnh = re->ng.nexthop)
fd36be7e
DL
2838 && rtnh->type == NEXTHOP_TYPE_IFINDEX && nh) {
2839 if (rtnh->ifindex != nh->ifindex)
d62a17ae 2840 continue;
d62a17ae 2841 same = re;
2842 break;
2843 }
2844 /* Make sure that the route found has the same gateway. */
2845 else {
fd36be7e 2846 if (nh == NULL) {
d62a17ae 2847 same = re;
2848 break;
2849 }
7ee30f28 2850 for (ALL_NEXTHOPS(re->ng, rtnh))
fd36be7e 2851 if (nexthop_same_no_recurse(rtnh, nh)) {
d62a17ae 2852 same = re;
2853 break;
2854 }
2855 if (same)
2856 break;
2857 }
2858 }
2859 /* If same type of route can't be found and this message is from
2860 kernel. */
2861 if (!same) {
5dfeba19
DS
2862 /*
2863 * In the past(HA!) we could get here because
2864 * we were receiving a route delete from the
2865 * kernel and we're not marking the proto
2866 * as coming from it's appropriate originator.
2867 * Now that we are properly noticing the fact
2868 * that the kernel has deleted our route we
2869 * are not going to get called in this path
2870 * I am going to leave this here because
2871 * this might still work this way on non-linux
2872 * platforms as well as some weird state I have
2873 * not properly thought of yet.
2874 * If we can show that this code path is
2875 * dead then we can remove it.
2876 */
b8faa875 2877 if (fib && CHECK_FLAG(flags, ZEBRA_FLAG_SELFROUTE)) {
d62a17ae 2878 if (IS_ZEBRA_DEBUG_RIB) {
2da33d6b
DS
2879 rnode_debug(rn, vrf_id,
2880 "rn %p, re %p (%s) was deleted from kernel, adding",
2881 rn, fib,
2882 zebra_route_string(fib->type));
d62a17ae 2883 }
2884 if (allow_delete) {
677c1dd5 2885 UNSET_FLAG(fib->status, ROUTE_ENTRY_INSTALLED);
d62a17ae 2886 /* Unset flags. */
7ee30f28 2887 for (rtnh = fib->ng.nexthop; rtnh;
fd36be7e
DL
2888 rtnh = rtnh->next)
2889 UNSET_FLAG(rtnh->flags,
d62a17ae 2890 NEXTHOP_FLAG_FIB);
2891
ed216282
DS
2892 /*
2893 * This is a non FRR route
2894 * as such we should mark
2895 * it as deleted
2896 */
5f7a4718 2897 dest->selected_fib = NULL;
d62a17ae 2898 } else {
2899 /* This means someone else, other than Zebra,
2900 * has deleted
2901 * a Zebra router from the kernel. We will add
2902 * it back */
2903 rib_install_kernel(rn, fib, NULL);
2904 }
2905 } else {
2906 if (IS_ZEBRA_DEBUG_RIB) {
fd36be7e 2907 if (nh)
d62a17ae 2908 rnode_debug(
2909 rn, vrf_id,
2910 "via %s ifindex %d type %d "
2911 "doesn't exist in rib",
36228974 2912 inet_ntop(afi2family(afi),
2913 &nh->gate, buf2,
2914 sizeof(buf2)),
2915 nh->ifindex, type);
d62a17ae 2916 else
2917 rnode_debug(
2918 rn, vrf_id,
fd36be7e
DL
2919 "type %d doesn't exist in rib",
2920 type);
d62a17ae 2921 }
2922 route_unlock_node(rn);
2923 return;
2924 }
2925 }
718e3744 2926
5dfeba19 2927 if (same) {
996c9314
LB
2928 if (fromkernel && CHECK_FLAG(flags, ZEBRA_FLAG_SELFROUTE)
2929 && !allow_delete) {
5dfeba19
DS
2930 rib_install_kernel(rn, same, NULL);
2931 route_unlock_node(rn);
2932
2933 return;
2934 }
6134fd82 2935
2b83602b 2936 /* Special handling for IPv4 or IPv6 routes sourced from
2937 * EVPN - the nexthop (and associated MAC) need to be
2938 * uninstalled if no more refs.
2939 */
90264d64 2940 if (CHECK_FLAG(flags, ZEBRA_FLAG_EVPN_ROUTE)) {
6134fd82 2941 struct nexthop *tmp_nh;
2942
7ee30f28 2943 for (ALL_NEXTHOPS(re->ng, tmp_nh)) {
6134fd82 2944 struct ipaddr vtep_ip;
2945
2946 memset(&vtep_ip, 0, sizeof(struct ipaddr));
1ec31309 2947 if (afi == AFI_IP) {
2948 vtep_ip.ipa_type = IPADDR_V4;
2949 memcpy(&(vtep_ip.ipaddr_v4),
2950 &(tmp_nh->gate.ipv4),
2951 sizeof(struct in_addr));
2952 } else {
2953 vtep_ip.ipa_type = IPADDR_V6;
2954 memcpy(&(vtep_ip.ipaddr_v6),
2955 &(tmp_nh->gate.ipv6),
2956 sizeof(struct in6_addr));
2957 }
a317a9b9 2958 zebra_vxlan_evpn_vrf_route_del(re->vrf_id,
6134fd82 2959 &vtep_ip, p);
2960 }
2961 }
d62a17ae 2962 rib_delnode(rn, same);
5dfeba19 2963 }
05737783 2964
d62a17ae 2965 route_unlock_node(rn);
2966 return;
2967}
718e3744 2968
718e3744 2969
d7c0a89a
QY
2970int rib_add(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
2971 unsigned short instance, int flags, struct prefix *p,
2972 struct prefix_ipv6 *src_p, const struct nexthop *nh,
2973 uint32_t table_id, uint32_t metric, uint32_t mtu, uint8_t distance,
2974 route_tag_t tag)
d62a17ae 2975{
2976 struct route_entry *re;
66af6845 2977 struct nexthop *nexthop;
718e3744 2978
66af6845 2979 /* Allocate new route_entry structure. */
d62a17ae 2980 re = XCALLOC(MTYPE_RE, sizeof(struct route_entry));
d62a17ae 2981 re->type = type;
2982 re->instance = instance;
2983 re->distance = distance;
2984 re->flags = flags;
2985 re->metric = metric;
2986 re->mtu = mtu;
2987 re->table = table_id;
2988 re->vrf_id = vrf_id;
2989 re->nexthop_num = 0;
2990 re->uptime = time(NULL);
4e40b6d6 2991 re->tag = tag;
d62a17ae 2992
66af6845
RW
2993 /* Add nexthop. */
2994 nexthop = nexthop_new();
2995 *nexthop = *nh;
2996 route_entry_nexthop_add(re, nexthop);
718e3744 2997
66af6845 2998 return rib_add_multipath(afi, safi, p, src_p, re);
718e3744 2999}
3000
1c848137 3001/* Schedule routes of a particular table (address-family) based on event. */
d5b8c216 3002void rib_update_table(struct route_table *table, rib_update_event_t event)
d62a17ae 3003{
3004 struct route_node *rn;
3005 struct route_entry *re, *next;
3006
3007 /* Walk all routes and queue for processing, if appropriate for
3008 * the trigger event.
3009 */
3010 for (rn = route_top(table); rn; rn = srcdest_route_next(rn)) {
1ca60f2c
DS
3011 /*
3012 * If we are looking at a route node and the node
3013 * has already been queued we don't
3014 * need to queue it up again
3015 */
996c9314
LB
3016 if (rn->info && CHECK_FLAG(rib_dest_from_rnode(rn)->flags,
3017 RIB_ROUTE_ANY_QUEUED))
1ca60f2c 3018 continue;
d62a17ae 3019 switch (event) {
3020 case RIB_UPDATE_IF_CHANGE:
3021 /* Examine all routes that won't get processed by the
3022 * protocol or
3023 * triggered by nexthop evaluation (NHT). This would be
3024 * system,
3025 * kernel and certain static routes. Note that NHT will
3026 * get
3027 * triggered upon an interface event as connected routes
3028 * always
3029 * get queued for processing.
3030 */
a2addae8 3031 RNODE_FOREACH_RE_SAFE (rn, re, next) {
0a16efff
DS
3032 struct nexthop *nh;
3033
996c9314
LB
3034 if (re->type != ZEBRA_ROUTE_SYSTEM
3035 && re->type != ZEBRA_ROUTE_KERNEL
3036 && re->type != ZEBRA_ROUTE_CONNECT
3037 && re->type != ZEBRA_ROUTE_STATIC)
0a16efff
DS
3038 continue;
3039
3040 if (re->type != ZEBRA_ROUTE_STATIC) {
3041 rib_queue_add(rn);
3042 continue;
3043 }
3044
7ee30f28 3045 for (nh = re->ng.nexthop; nh; nh = nh->next)
0a16efff
DS
3046 if (!(nh->type == NEXTHOP_TYPE_IPV4
3047 || nh->type == NEXTHOP_TYPE_IPV6))
3048 break;
3049
3050 /* If we only have nexthops to a
3051 * gateway, NHT will
3052 * take care.
3053 */
3054 if (nh)
d62a17ae 3055 rib_queue_add(rn);
3056 }
3057 break;
3058
3059 case RIB_UPDATE_RMAP_CHANGE:
3060 case RIB_UPDATE_OTHER:
3061 /* Right now, examine all routes. Can restrict to a
3062 * protocol in
3063 * some cases (TODO).
3064 */
3065 if (rnode_to_ribs(rn))
3066 rib_queue_add(rn);
3067 break;
3068
3069 default:
3070 break;
3071 }
3072 }
b84c7253 3073}
3074
718e3744 3075/* RIB update function. */
d62a17ae 3076void rib_update(vrf_id_t vrf_id, rib_update_event_t event)
718e3744 3077{
d62a17ae 3078 struct route_table *table;
1c848137 3079
d62a17ae 3080 /* Process routes of interested address-families. */
3081 table = zebra_vrf_table(AFI_IP, SAFI_UNICAST, vrf_id);
d5b8c216 3082 if (table) {
3083 if (IS_ZEBRA_DEBUG_EVENT)
3084 zlog_debug("%s : AFI_IP event %d", __func__, event);
d62a17ae 3085 rib_update_table(table, event);
d5b8c216 3086 }
718e3744 3087
d62a17ae 3088 table = zebra_vrf_table(AFI_IP6, SAFI_UNICAST, vrf_id);
d5b8c216 3089 if (table) {
3090 if (IS_ZEBRA_DEBUG_EVENT)
3091 zlog_debug("%s : AFI_IP6 event %d", __func__, event);
d62a17ae 3092 rib_update_table(table, event);
d5b8c216 3093 }
718e3744 3094}
3095
718e3744 3096/* Delete self installed routes after zebra is relaunched. */
95a29032 3097void rib_sweep_table(struct route_table *table)
d62a17ae 3098{
3099 struct route_node *rn;
3100 struct route_entry *re;
3101 struct route_entry *next;
915902cb 3102 struct nexthop *nexthop;
d62a17ae 3103
915902cb
DS
3104 if (!table)
3105 return;
d62a17ae 3106
915902cb 3107 for (rn = route_top(table); rn; rn = srcdest_route_next(rn)) {
a2addae8 3108 RNODE_FOREACH_RE_SAFE (rn, re, next) {
915902cb
DS
3109 if (IS_ZEBRA_DEBUG_RIB)
3110 route_entry_dump(&rn->p, NULL, re);
3111
3112 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED))
3113 continue;
3114
3115 if (!CHECK_FLAG(re->flags, ZEBRA_FLAG_SELFROUTE))
3116 continue;
3117
3118 /*
3119 * So we are starting up and have received
3120 * routes from the kernel that we have installed
3121 * from a previous run of zebra but not cleaned
3122 * up ( say a kill -9 )
3123 * But since we haven't actually installed
3124 * them yet( we received them from the kernel )
3125 * we don't think they are active.
3126 * So let's pretend they are active to actually
3127 * remove them.
3128 * In all honesty I'm not sure if we should
3129 * mark them as active when we receive them
3130 * This is startup only so probably ok.
3131 *
3132 * If we ever decide to move rib_sweep_table
3133 * to a different spot (ie startup )
3134 * this decision needs to be revisited
3135 */
677c1dd5 3136 SET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
7ee30f28 3137 for (ALL_NEXTHOPS(re->ng, nexthop))
915902cb
DS
3138 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
3139
0c555cc6
DS
3140 rib_uninstall_kernel(rn, re);
3141 rib_delnode(rn, re);
915902cb
DS
3142 }
3143 }
718e3744 3144}
3145
3146/* Sweep all RIB tables. */
d62a17ae 3147void rib_sweep_route(void)
718e3744 3148{
d62a17ae 3149 struct vrf *vrf;
3150 struct zebra_vrf *zvrf;
78104b9b 3151
a2addae8 3152 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
915902cb
DS
3153 if ((zvrf = vrf->info) == NULL)
3154 continue;
3155
d62a17ae 3156 rib_sweep_table(zvrf->table[AFI_IP][SAFI_UNICAST]);
3157 rib_sweep_table(zvrf->table[AFI_IP6][SAFI_UNICAST]);
3158 }
95a29032 3159
89272910 3160 zebra_router_sweep_route();
718e3744 3161}
2ea1ab1c
VT
3162
3163/* Remove specific by protocol routes from 'table'. */
d7c0a89a 3164unsigned long rib_score_proto_table(uint8_t proto, unsigned short instance,
47a08aa9 3165 struct route_table *table)
d62a17ae 3166{
3167 struct route_node *rn;
3168 struct route_entry *re;
3169 struct route_entry *next;
3170 unsigned long n = 0;
3171
3172 if (table)
3173 for (rn = route_top(table); rn; rn = srcdest_route_next(rn))
a2addae8 3174 RNODE_FOREACH_RE_SAFE (rn, re, next) {
d62a17ae 3175 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED))
3176 continue;
3177 if (re->type == proto
3178 && re->instance == instance) {
3179 rib_delnode(rn, re);
3180 n++;
3181 }
3182 }
3183 return n;
2ea1ab1c
VT
3184}
3185
3186/* Remove specific by protocol routes. */
d7c0a89a 3187unsigned long rib_score_proto(uint8_t proto, unsigned short instance)
2ea1ab1c 3188{
d62a17ae 3189 struct vrf *vrf;
3190 struct zebra_vrf *zvrf;
3191 unsigned long cnt = 0;
78104b9b 3192
a2addae8
RW
3193 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id)
3194 if ((zvrf = vrf->info) != NULL)
3195 cnt += rib_score_proto_table(
3196 proto, instance,
3197 zvrf->table[AFI_IP][SAFI_UNICAST])
3198 + rib_score_proto_table(
3199 proto, instance,
3200 zvrf->table[AFI_IP6][SAFI_UNICAST]);
78104b9b 3201
89272910 3202 cnt += zebra_router_score_proto(proto, instance);
47a08aa9 3203
d62a17ae 3204 return cnt;
2ea1ab1c
VT
3205}
3206
718e3744 3207/* Close RIB and clean up kernel routes. */
d62a17ae 3208void rib_close_table(struct route_table *table)
718e3744 3209{
d62a17ae 3210 struct route_node *rn;
1e9f448f 3211 rib_table_info_t *info;
5f7a4718 3212 rib_dest_t *dest;
718e3744 3213
1e9f448f
DS
3214 if (!table)
3215 return;
9fd92e3c 3216
6ca30e9e 3217 info = route_table_get_info(table);
5adc2528 3218
5f7a4718
DS
3219 for (rn = route_top(table); rn; rn = srcdest_route_next(rn)) {
3220 dest = rib_dest_from_rnode(rn);
1e9f448f 3221
5f7a4718 3222 if (dest && dest->selected_fib) {
1e9f448f
DS
3223 if (info->safi == SAFI_UNICAST)
3224 hook_call(rib_update, rn, NULL);
3225
258c07e4 3226 if (!RIB_SYSTEM_ROUTE(dest->selected_fib)) {
5f7a4718 3227 rib_uninstall_kernel(rn, dest->selected_fib);
258c07e4
MS
3228 dest->selected_fib = NULL;
3229 }
1e9f448f 3230 }
5f7a4718 3231 }
718e3744 3232}
3233
9bd9717b
MS
3234/*
3235 * Handler for async dataplane results after a pseudowire installation
3236 */
3237static int handle_pw_result(struct zebra_dplane_ctx *ctx)
3238{
9bd9717b
MS
3239 struct zebra_pw *pw;
3240 struct zebra_vrf *vrf;
3241
3242 /* The pseudowire code assumes success - we act on an error
3243 * result for installation attempts here.
3244 */
3245 if (dplane_ctx_get_op(ctx) != DPLANE_OP_PW_INSTALL)
3246 goto done;
3247
3248 if (dplane_ctx_get_status(ctx) != ZEBRA_DPLANE_REQUEST_SUCCESS) {
3249 vrf = zebra_vrf_lookup_by_id(dplane_ctx_get_vrf(ctx));
3250 pw = zebra_pw_find(vrf, dplane_ctx_get_pw_ifname(ctx));
3251 if (pw)
3252 zebra_pw_install_failure(pw);
3253 }
3254
3255done:
3256
9f2d0354 3257 return 0;
9bd9717b
MS
3258}
3259
3260
7cdb1a84 3261/*
d37f4d6c
MS
3262 * Handle results from the dataplane system. Dequeue update context
3263 * structs, dispatch to appropriate internal handlers.
7cdb1a84
MS
3264 */
3265static int rib_process_dplane_results(struct thread *thread)
3266{
25779064 3267 struct zebra_dplane_ctx *ctx;
4c206c8f
MS
3268 struct dplane_ctx_q ctxlist;
3269
3270 /* Dequeue a list of completed updates with one lock/unlock cycle */
7cdb1a84
MS
3271
3272 do {
4c206c8f
MS
3273 TAILQ_INIT(&ctxlist);
3274
7cdb1a84
MS
3275 /* Take lock controlling queue of results */
3276 pthread_mutex_lock(&dplane_mutex);
3277 {
d37f4d6c 3278 /* Dequeue list of context structs */
4c206c8f 3279 dplane_ctx_list_append(&ctxlist, &rib_dplane_q);
7cdb1a84
MS
3280 }
3281 pthread_mutex_unlock(&dplane_mutex);
3282
4c206c8f
MS
3283 /* Dequeue context block */
3284 ctx = dplane_ctx_dequeue(&ctxlist);
3285
3286 /* If we've emptied the results queue, we're done */
3287 if (ctx == NULL)
7cdb1a84 3288 break;
7cdb1a84 3289
4c206c8f 3290 while (ctx) {
d37f4d6c
MS
3291 switch (dplane_ctx_get_op(ctx)) {
3292 case DPLANE_OP_ROUTE_INSTALL:
3293 case DPLANE_OP_ROUTE_UPDATE:
3294 case DPLANE_OP_ROUTE_DELETE:
3295 rib_process_result(ctx);
3296 break;
3297
3298 case DPLANE_OP_LSP_INSTALL:
3299 case DPLANE_OP_LSP_UPDATE:
3300 case DPLANE_OP_LSP_DELETE:
3301 zebra_mpls_lsp_dplane_result(ctx);
3302 break;
3303
9bd9717b
MS
3304 case DPLANE_OP_PW_INSTALL:
3305 case DPLANE_OP_PW_UNINSTALL:
3306 handle_pw_result(ctx);
3307 break;
3308
d37f4d6c
MS
3309 default:
3310 /* Don't expect this: just return the struct? */
3311 dplane_ctx_fini(&ctx);
3312 break;
3313 } /* Dispatch by op code */
4c206c8f
MS
3314
3315 ctx = dplane_ctx_dequeue(&ctxlist);
3316 }
3317
5709131c 3318 } while (1);
7cdb1a84 3319
f183e380
MS
3320 /* Check for nexthop tracking processing after finishing with results */
3321 do_nht_processing();
3322
5709131c 3323 return 0;
7cdb1a84
MS
3324}
3325
3326/*
3327 * Results are returned from the dataplane subsystem, in the context of
1bcea841 3328 * the dataplane pthread. We enqueue the results here for processing by
7cdb1a84
MS
3329 * the main thread later.
3330 */
4c206c8f 3331static int rib_dplane_results(struct dplane_ctx_q *ctxlist)
7cdb1a84
MS
3332{
3333 /* Take lock controlling queue of results */
3334 pthread_mutex_lock(&dplane_mutex);
3335 {
4c206c8f
MS
3336 /* Enqueue context blocks */
3337 dplane_ctx_list_append(&rib_dplane_q, ctxlist);
7cdb1a84
MS
3338 }
3339 pthread_mutex_unlock(&dplane_mutex);
3340
4c206c8f 3341 /* Ensure event is signalled to zebra main pthread */
3801e764 3342 thread_add_event(zrouter.master, rib_process_dplane_results, NULL, 0,
7cdb1a84
MS
3343 &t_dplane);
3344
5709131c 3345 return 0;
7cdb1a84
MS
3346}
3347
718e3744 3348/* Routing information base initialize. */
d62a17ae 3349void rib_init(void)
718e3744 3350{
2561d12e 3351 rib_queue_init();
7cdb1a84
MS
3352
3353 /* Init dataplane, and register for results */
3354 pthread_mutex_init(&dplane_mutex, NULL);
3355 TAILQ_INIT(&rib_dplane_q);
4c206c8f 3356 zebra_dplane_init(rib_dplane_results);
718e3744 3357}
0915bb0c
AS
3358
3359/*
3360 * vrf_id_get_next
3361 *
3362 * Get the first vrf id that is greater than the given vrf id if any.
3363 *
3364 * Returns TRUE if a vrf id was found, FALSE otherwise.
3365 */
d62a17ae 3366static inline int vrf_id_get_next(vrf_id_t vrf_id, vrf_id_t *next_id_p)
0915bb0c 3367{
d62a17ae 3368 struct vrf *vrf;
b72ede27 3369
d62a17ae 3370 vrf = vrf_lookup_by_id(vrf_id);
3371 if (vrf) {
3372 vrf = RB_NEXT(vrf_id_head, vrf);
3373 if (vrf) {
3374 *next_id_p = vrf->vrf_id;
3375 return 1;
3376 }
3377 }
0915bb0c 3378
d62a17ae 3379 return 0;
0915bb0c
AS
3380}
3381
3382/*
3383 * rib_tables_iter_next
3384 *
3385 * Returns the next table in the iteration.
3386 */
d62a17ae 3387struct route_table *rib_tables_iter_next(rib_tables_iter_t *iter)
3388{
3389 struct route_table *table;
3390
3391 /*
3392 * Array that helps us go over all AFI/SAFI combinations via one
3393 * index.
3394 */
3395 static struct {
3396 afi_t afi;
3397 safi_t safi;
3398 } afi_safis[] = {
3399 {AFI_IP, SAFI_UNICAST}, {AFI_IP, SAFI_MULTICAST},
3400 {AFI_IP, SAFI_LABELED_UNICAST}, {AFI_IP6, SAFI_UNICAST},
3401 {AFI_IP6, SAFI_MULTICAST}, {AFI_IP6, SAFI_LABELED_UNICAST},
3402 };
3403
3404 table = NULL;
3405
3406 switch (iter->state) {
3407
3408 case RIB_TABLES_ITER_S_INIT:
3409 iter->vrf_id = VRF_DEFAULT;
3410 iter->afi_safi_ix = -1;
3411
3412 /* Fall through */
3413
3414 case RIB_TABLES_ITER_S_ITERATING:
3415 iter->afi_safi_ix++;
3416 while (1) {
3417
3418 while (iter->afi_safi_ix
3419 < (int)ZEBRA_NUM_OF(afi_safis)) {
3420 table = zebra_vrf_table(
3421 afi_safis[iter->afi_safi_ix].afi,
3422 afi_safis[iter->afi_safi_ix].safi,
3423 iter->vrf_id);
3424 if (table)
3425 break;
3426
3427 iter->afi_safi_ix++;
3428 }
3429
3430 /*
3431 * Found another table in this vrf.
3432 */
3433 if (table)
3434 break;
3435
3436 /*
3437 * Done with all tables in the current vrf, go to the
3438 * next
3439 * one.
3440 */
3441 if (!vrf_id_get_next(iter->vrf_id, &iter->vrf_id))
3442 break;
3443
3444 iter->afi_safi_ix = 0;
3445 }
0915bb0c 3446
0915bb0c
AS
3447 break;
3448
d62a17ae 3449 case RIB_TABLES_ITER_S_DONE:
3450 return NULL;
0915bb0c
AS
3451 }
3452
d62a17ae 3453 if (table)
3454 iter->state = RIB_TABLES_ITER_S_ITERATING;
3455 else
3456 iter->state = RIB_TABLES_ITER_S_DONE;
0915bb0c 3457
d62a17ae 3458 return table;
0915bb0c 3459}