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