]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_zebra.c
Merge pull request #8498 from ton31337/feature/opaque_data_void_zebra
[mirror_frr.git] / bgpd / bgp_zebra.c
1 /* zebra client
2 * Copyright (C) 1997, 98, 99 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 *
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
19 */
20
21 #include <zebra.h>
22
23 #include "command.h"
24 #include "stream.h"
25 #include "network.h"
26 #include "prefix.h"
27 #include "log.h"
28 #include "sockunion.h"
29 #include "zclient.h"
30 #include "routemap.h"
31 #include "thread.h"
32 #include "queue.h"
33 #include "memory.h"
34 #include "lib/json.h"
35 #include "lib/bfd.h"
36 #include "lib/route_opaque.h"
37 #include "filter.h"
38 #include "mpls.h"
39 #include "vxlan.h"
40 #include "pbr.h"
41
42 #include "bgpd/bgpd.h"
43 #include "bgpd/bgp_route.h"
44 #include "bgpd/bgp_attr.h"
45 #include "bgpd/bgp_aspath.h"
46 #include "bgpd/bgp_nexthop.h"
47 #include "bgpd/bgp_zebra.h"
48 #include "bgpd/bgp_fsm.h"
49 #include "bgpd/bgp_debug.h"
50 #include "bgpd/bgp_errors.h"
51 #include "bgpd/bgp_mpath.h"
52 #include "bgpd/bgp_nexthop.h"
53 #include "bgpd/bgp_nht.h"
54 #include "bgpd/bgp_bfd.h"
55 #include "bgpd/bgp_label.h"
56 #ifdef ENABLE_BGP_VNC
57 #include "bgpd/rfapi/rfapi_backend.h"
58 #include "bgpd/rfapi/vnc_export_bgp.h"
59 #endif
60 #include "bgpd/bgp_evpn.h"
61 #include "bgpd/bgp_mplsvpn.h"
62 #include "bgpd/bgp_labelpool.h"
63 #include "bgpd/bgp_pbr.h"
64 #include "bgpd/bgp_evpn_private.h"
65 #include "bgpd/bgp_evpn_mh.h"
66 #include "bgpd/bgp_mac.h"
67
68 /* All information about zebra. */
69 struct zclient *zclient = NULL;
70
71 /* hook to indicate vrf status change for SNMP */
72 DEFINE_HOOK(bgp_vrf_status_changed, (struct bgp *bgp, struct interface *ifp),
73 (bgp, ifp));
74
75 /* Can we install into zebra? */
76 static inline bool bgp_install_info_to_zebra(struct bgp *bgp)
77 {
78 if (zclient->sock <= 0)
79 return false;
80
81 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
82 zlog_debug(
83 "%s: No zebra instance to talk to, not installing information",
84 __func__);
85 return false;
86 }
87
88 return true;
89 }
90
91 int zclient_num_connects;
92
93 /* Router-id update message from zebra. */
94 static int bgp_router_id_update(ZAPI_CALLBACK_ARGS)
95 {
96 struct prefix router_id;
97
98 zebra_router_id_update_read(zclient->ibuf, &router_id);
99
100 if (BGP_DEBUG(zebra, ZEBRA))
101 zlog_debug("Rx Router Id update VRF %u Id %pFX", vrf_id,
102 &router_id);
103
104 bgp_router_id_zebra_bump(vrf_id, &router_id);
105 return 0;
106 }
107
108 /* Nexthop update message from zebra. */
109 static int bgp_read_nexthop_update(ZAPI_CALLBACK_ARGS)
110 {
111 bgp_parse_nexthop_update(cmd, vrf_id);
112 return 0;
113 }
114
115 static int bgp_read_import_check_update(ZAPI_CALLBACK_ARGS)
116 {
117 bgp_parse_nexthop_update(cmd, vrf_id);
118 return 0;
119 }
120
121 /* Set or clear interface on which unnumbered neighbor is configured. This
122 * would in turn cause BGP to initiate or turn off IPv6 RAs on this
123 * interface.
124 */
125 static void bgp_update_interface_nbrs(struct bgp *bgp, struct interface *ifp,
126 struct interface *upd_ifp)
127 {
128 struct listnode *node, *nnode;
129 struct peer *peer;
130
131 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
132 if (peer->conf_if && (strcmp(peer->conf_if, ifp->name) == 0)) {
133 if (upd_ifp) {
134 peer->ifp = upd_ifp;
135 bgp_zebra_initiate_radv(bgp, peer);
136 } else {
137 bgp_zebra_terminate_radv(bgp, peer);
138 peer->ifp = upd_ifp;
139 }
140 }
141 }
142 }
143
144 static int bgp_read_fec_update(int command, struct zclient *zclient,
145 zebra_size_t length)
146 {
147 bgp_parse_fec_update();
148 return 0;
149 }
150
151 static void bgp_start_interface_nbrs(struct bgp *bgp, struct interface *ifp)
152 {
153 struct listnode *node, *nnode;
154 struct peer *peer;
155
156 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
157 if (peer->conf_if && (strcmp(peer->conf_if, ifp->name) == 0)
158 && peer->status != Established) {
159 if (peer_active(peer))
160 BGP_EVENT_ADD(peer, BGP_Stop);
161 BGP_EVENT_ADD(peer, BGP_Start);
162 }
163 }
164 }
165
166 static void bgp_nbr_connected_add(struct bgp *bgp, struct nbr_connected *ifc)
167 {
168 struct listnode *node;
169 struct connected *connected;
170 struct interface *ifp;
171 struct prefix *p;
172
173 /* Kick-off the FSM for any relevant peers only if there is a
174 * valid local address on the interface.
175 */
176 ifp = ifc->ifp;
177 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, connected)) {
178 p = connected->address;
179 if (p->family == AF_INET6
180 && IN6_IS_ADDR_LINKLOCAL(&p->u.prefix6))
181 break;
182 }
183 if (!connected)
184 return;
185
186 bgp_start_interface_nbrs(bgp, ifp);
187 }
188
189 static void bgp_nbr_connected_delete(struct bgp *bgp, struct nbr_connected *ifc,
190 int del)
191 {
192 struct listnode *node, *nnode;
193 struct peer *peer;
194 struct interface *ifp;
195
196 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
197 if (peer->conf_if
198 && (strcmp(peer->conf_if, ifc->ifp->name) == 0)) {
199 peer->last_reset = PEER_DOWN_NBR_ADDR_DEL;
200 BGP_EVENT_ADD(peer, BGP_Stop);
201 }
202 }
203 /* Free neighbor also, if we're asked to. */
204 if (del) {
205 ifp = ifc->ifp;
206 listnode_delete(ifp->nbr_connected, ifc);
207 nbr_connected_free(ifc);
208 }
209 }
210
211 static int bgp_ifp_destroy(struct interface *ifp)
212 {
213 struct bgp *bgp;
214
215 bgp = bgp_lookup_by_vrf_id(ifp->vrf_id);
216
217 if (BGP_DEBUG(zebra, ZEBRA))
218 zlog_debug("Rx Intf del VRF %u IF %s", ifp->vrf_id, ifp->name);
219
220 if (bgp) {
221 bgp_update_interface_nbrs(bgp, ifp, NULL);
222 hook_call(bgp_vrf_status_changed, bgp, ifp);
223 }
224
225 bgp_mac_del_mac_entry(ifp);
226
227 return 0;
228 }
229
230 static int bgp_ifp_up(struct interface *ifp)
231 {
232 struct connected *c;
233 struct nbr_connected *nc;
234 struct listnode *node, *nnode;
235 struct bgp *bgp;
236
237 bgp = bgp_lookup_by_vrf_id(ifp->vrf_id);
238
239 bgp_mac_add_mac_entry(ifp);
240
241 if (BGP_DEBUG(zebra, ZEBRA))
242 zlog_debug("Rx Intf up VRF %u IF %s", ifp->vrf_id, ifp->name);
243
244 if (!bgp)
245 return 0;
246
247 for (ALL_LIST_ELEMENTS(ifp->connected, node, nnode, c))
248 bgp_connected_add(bgp, c);
249
250 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, node, nnode, nc))
251 bgp_nbr_connected_add(bgp, nc);
252
253 hook_call(bgp_vrf_status_changed, bgp, ifp);
254 bgp_nht_ifp_up(ifp);
255
256 return 0;
257 }
258
259 static int bgp_ifp_down(struct interface *ifp)
260 {
261 struct connected *c;
262 struct nbr_connected *nc;
263 struct listnode *node, *nnode;
264 struct bgp *bgp;
265 struct peer *peer;
266
267 bgp = bgp_lookup_by_vrf_id(ifp->vrf_id);
268
269 bgp_mac_del_mac_entry(ifp);
270
271 if (BGP_DEBUG(zebra, ZEBRA))
272 zlog_debug("Rx Intf down VRF %u IF %s", ifp->vrf_id, ifp->name);
273
274 if (!bgp)
275 return 0;
276
277 for (ALL_LIST_ELEMENTS(ifp->connected, node, nnode, c))
278 bgp_connected_delete(bgp, c);
279
280 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, node, nnode, nc))
281 bgp_nbr_connected_delete(bgp, nc, 1);
282
283 /* Fast external-failover */
284 if (!CHECK_FLAG(bgp->flags, BGP_FLAG_NO_FAST_EXT_FAILOVER)) {
285
286 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
287 /* Take down directly connected peers. */
288 if ((peer->ttl != BGP_DEFAULT_TTL)
289 && (peer->gtsm_hops != BGP_GTSM_HOPS_CONNECTED))
290 continue;
291
292 if (ifp == peer->nexthop.ifp) {
293 BGP_EVENT_ADD(peer, BGP_Stop);
294 peer->last_reset = PEER_DOWN_IF_DOWN;
295 }
296 }
297 }
298
299 hook_call(bgp_vrf_status_changed, bgp, ifp);
300 bgp_nht_ifp_down(ifp);
301
302 return 0;
303 }
304
305 static int bgp_interface_address_add(ZAPI_CALLBACK_ARGS)
306 {
307 struct connected *ifc;
308 struct bgp *bgp;
309
310 bgp = bgp_lookup_by_vrf_id(vrf_id);
311
312 ifc = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
313
314 if (ifc == NULL)
315 return 0;
316
317 if (bgp_debug_zebra(ifc->address))
318 zlog_debug("Rx Intf address add VRF %u IF %s addr %pFX", vrf_id,
319 ifc->ifp->name, ifc->address);
320
321 if (!bgp)
322 return 0;
323
324 if (if_is_operative(ifc->ifp)) {
325 bgp_connected_add(bgp, ifc);
326
327 /* If we have learnt of any neighbors on this interface,
328 * check to kick off any BGP interface-based neighbors,
329 * but only if this is a link-local address.
330 */
331 if (IN6_IS_ADDR_LINKLOCAL(&ifc->address->u.prefix6)
332 && !list_isempty(ifc->ifp->nbr_connected))
333 bgp_start_interface_nbrs(bgp, ifc->ifp);
334 }
335
336 return 0;
337 }
338
339 static int bgp_interface_address_delete(ZAPI_CALLBACK_ARGS)
340 {
341 struct connected *ifc;
342 struct bgp *bgp;
343
344 bgp = bgp_lookup_by_vrf_id(vrf_id);
345
346 ifc = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
347
348 if (ifc == NULL)
349 return 0;
350
351 if (bgp_debug_zebra(ifc->address))
352 zlog_debug("Rx Intf address del VRF %u IF %s addr %pFX", vrf_id,
353 ifc->ifp->name, ifc->address);
354
355 if (bgp && if_is_operative(ifc->ifp)) {
356 bgp_connected_delete(bgp, ifc);
357 }
358
359 connected_free(&ifc);
360
361 return 0;
362 }
363
364 static int bgp_interface_nbr_address_add(ZAPI_CALLBACK_ARGS)
365 {
366 struct nbr_connected *ifc = NULL;
367 struct bgp *bgp;
368
369 ifc = zebra_interface_nbr_address_read(cmd, zclient->ibuf, vrf_id);
370
371 if (ifc == NULL)
372 return 0;
373
374 if (bgp_debug_zebra(ifc->address))
375 zlog_debug("Rx Intf neighbor add VRF %u IF %s addr %pFX",
376 vrf_id, ifc->ifp->name, ifc->address);
377
378 if (if_is_operative(ifc->ifp)) {
379 bgp = bgp_lookup_by_vrf_id(vrf_id);
380 if (bgp)
381 bgp_nbr_connected_add(bgp, ifc);
382 }
383
384 return 0;
385 }
386
387 static int bgp_interface_nbr_address_delete(ZAPI_CALLBACK_ARGS)
388 {
389 struct nbr_connected *ifc = NULL;
390 struct bgp *bgp;
391
392 ifc = zebra_interface_nbr_address_read(cmd, zclient->ibuf, vrf_id);
393
394 if (ifc == NULL)
395 return 0;
396
397 if (bgp_debug_zebra(ifc->address))
398 zlog_debug("Rx Intf neighbor del VRF %u IF %s addr %pFX",
399 vrf_id, ifc->ifp->name, ifc->address);
400
401 if (if_is_operative(ifc->ifp)) {
402 bgp = bgp_lookup_by_vrf_id(vrf_id);
403 if (bgp)
404 bgp_nbr_connected_delete(bgp, ifc, 0);
405 }
406
407 nbr_connected_free(ifc);
408
409 return 0;
410 }
411
412 /* VRF update for an interface. */
413 static int bgp_interface_vrf_update(ZAPI_CALLBACK_ARGS)
414 {
415 struct interface *ifp;
416 vrf_id_t new_vrf_id;
417 struct connected *c;
418 struct nbr_connected *nc;
419 struct listnode *node, *nnode;
420 struct bgp *bgp;
421 struct peer *peer;
422
423 ifp = zebra_interface_vrf_update_read(zclient->ibuf, vrf_id,
424 &new_vrf_id);
425 if (!ifp)
426 return 0;
427
428 if (BGP_DEBUG(zebra, ZEBRA) && ifp)
429 zlog_debug("Rx Intf VRF change VRF %u IF %s NewVRF %u", vrf_id,
430 ifp->name, new_vrf_id);
431
432 bgp = bgp_lookup_by_vrf_id(vrf_id);
433
434 if (bgp) {
435 for (ALL_LIST_ELEMENTS(ifp->connected, node, nnode, c))
436 bgp_connected_delete(bgp, c);
437
438 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, node, nnode, nc))
439 bgp_nbr_connected_delete(bgp, nc, 1);
440
441 /* Fast external-failover */
442 if (!CHECK_FLAG(bgp->flags, BGP_FLAG_NO_FAST_EXT_FAILOVER)) {
443 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
444 if ((peer->ttl != BGP_DEFAULT_TTL)
445 && (peer->gtsm_hops
446 != BGP_GTSM_HOPS_CONNECTED))
447 continue;
448
449 if (ifp == peer->nexthop.ifp)
450 BGP_EVENT_ADD(peer, BGP_Stop);
451 }
452 }
453 }
454
455 if_update_to_new_vrf(ifp, new_vrf_id);
456
457 bgp = bgp_lookup_by_vrf_id(new_vrf_id);
458 if (!bgp)
459 return 0;
460
461 for (ALL_LIST_ELEMENTS(ifp->connected, node, nnode, c))
462 bgp_connected_add(bgp, c);
463
464 for (ALL_LIST_ELEMENTS(ifp->nbr_connected, node, nnode, nc))
465 bgp_nbr_connected_add(bgp, nc);
466
467 hook_call(bgp_vrf_status_changed, bgp, ifp);
468 return 0;
469 }
470
471 /* Zebra route add and delete treatment. */
472 static int zebra_read_route(ZAPI_CALLBACK_ARGS)
473 {
474 enum nexthop_types_t nhtype;
475 struct zapi_route api;
476 union g_addr nexthop;
477 ifindex_t ifindex;
478 int add, i;
479 struct bgp *bgp;
480
481 bgp = bgp_lookup_by_vrf_id(vrf_id);
482 if (!bgp)
483 return 0;
484
485 if (zapi_route_decode(zclient->ibuf, &api) < 0)
486 return -1;
487
488 /* we completely ignore srcdest routes for now. */
489 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
490 return 0;
491
492 /* ignore link-local address. */
493 if (api.prefix.family == AF_INET6
494 && IN6_IS_ADDR_LINKLOCAL(&api.prefix.u.prefix6))
495 return 0;
496
497 nexthop = api.nexthops[0].gate;
498 ifindex = api.nexthops[0].ifindex;
499 nhtype = api.nexthops[0].type;
500
501 add = (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD);
502 if (add) {
503 /*
504 * The ADD message is actually an UPDATE and there is no
505 * explicit DEL
506 * for a prior redistributed route, if any. So, perform an
507 * implicit
508 * DEL processing for the same redistributed route from any
509 * other
510 * source type.
511 */
512 for (i = 0; i < ZEBRA_ROUTE_MAX; i++) {
513 if (i != api.type)
514 bgp_redistribute_delete(bgp, &api.prefix, i,
515 api.instance);
516 }
517
518 /* Now perform the add/update. */
519 bgp_redistribute_add(bgp, &api.prefix, &nexthop, ifindex,
520 nhtype, api.metric, api.type, api.instance,
521 api.tag);
522 } else {
523 bgp_redistribute_delete(bgp, &api.prefix, api.type,
524 api.instance);
525 }
526
527 if (bgp_debug_zebra(&api.prefix)) {
528 char buf[PREFIX_STRLEN];
529
530 if (add) {
531 inet_ntop(api.prefix.family, &nexthop, buf,
532 sizeof(buf));
533 zlog_debug(
534 "Rx route ADD VRF %u %s[%d] %pFX nexthop %s (type %d if %u) metric %u distance %u tag %" ROUTE_TAG_PRI,
535 vrf_id, zebra_route_string(api.type),
536 api.instance, &api.prefix, buf, nhtype, ifindex,
537 api.metric, api.distance, api.tag);
538 } else {
539 zlog_debug("Rx route DEL VRF %u %s[%d] %pFX", vrf_id,
540 zebra_route_string(api.type), api.instance,
541 &api.prefix);
542 }
543 }
544
545 return 0;
546 }
547
548 struct interface *if_lookup_by_ipv4(struct in_addr *addr, vrf_id_t vrf_id)
549 {
550 struct vrf *vrf;
551 struct listnode *cnode;
552 struct interface *ifp;
553 struct connected *connected;
554 struct prefix_ipv4 p;
555 struct prefix *cp;
556
557 vrf = vrf_lookup_by_id(vrf_id);
558 if (!vrf)
559 return NULL;
560
561 p.family = AF_INET;
562 p.prefix = *addr;
563 p.prefixlen = IPV4_MAX_BITLEN;
564
565 FOR_ALL_INTERFACES (vrf, ifp) {
566 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
567 cp = connected->address;
568
569 if (cp->family == AF_INET)
570 if (prefix_match(cp, (struct prefix *)&p))
571 return ifp;
572 }
573 }
574 return NULL;
575 }
576
577 struct interface *if_lookup_by_ipv4_exact(struct in_addr *addr, vrf_id_t vrf_id)
578 {
579 struct vrf *vrf;
580 struct listnode *cnode;
581 struct interface *ifp;
582 struct connected *connected;
583 struct prefix *cp;
584
585 vrf = vrf_lookup_by_id(vrf_id);
586 if (!vrf)
587 return NULL;
588
589 FOR_ALL_INTERFACES (vrf, ifp) {
590 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
591 cp = connected->address;
592
593 if (cp->family == AF_INET)
594 if (IPV4_ADDR_SAME(&cp->u.prefix4, addr))
595 return ifp;
596 }
597 }
598 return NULL;
599 }
600
601 struct interface *if_lookup_by_ipv6(struct in6_addr *addr, ifindex_t ifindex,
602 vrf_id_t vrf_id)
603 {
604 struct vrf *vrf;
605 struct listnode *cnode;
606 struct interface *ifp;
607 struct connected *connected;
608 struct prefix_ipv6 p;
609 struct prefix *cp;
610
611 vrf = vrf_lookup_by_id(vrf_id);
612 if (!vrf)
613 return NULL;
614
615 p.family = AF_INET6;
616 p.prefix = *addr;
617 p.prefixlen = IPV6_MAX_BITLEN;
618
619 FOR_ALL_INTERFACES (vrf, ifp) {
620 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
621 cp = connected->address;
622
623 if (cp->family == AF_INET6)
624 if (prefix_match(cp, (struct prefix *)&p)) {
625 if (IN6_IS_ADDR_LINKLOCAL(
626 &cp->u.prefix6)) {
627 if (ifindex == ifp->ifindex)
628 return ifp;
629 } else
630 return ifp;
631 }
632 }
633 }
634 return NULL;
635 }
636
637 struct interface *if_lookup_by_ipv6_exact(struct in6_addr *addr,
638 ifindex_t ifindex, vrf_id_t vrf_id)
639 {
640 struct vrf *vrf;
641 struct listnode *cnode;
642 struct interface *ifp;
643 struct connected *connected;
644 struct prefix *cp;
645
646 vrf = vrf_lookup_by_id(vrf_id);
647 if (!vrf)
648 return NULL;
649
650 FOR_ALL_INTERFACES (vrf, ifp) {
651 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
652 cp = connected->address;
653
654 if (cp->family == AF_INET6)
655 if (IPV6_ADDR_SAME(&cp->u.prefix6, addr)) {
656 if (IN6_IS_ADDR_LINKLOCAL(
657 &cp->u.prefix6)) {
658 if (ifindex == ifp->ifindex)
659 return ifp;
660 } else
661 return ifp;
662 }
663 }
664 }
665 return NULL;
666 }
667
668 static int if_get_ipv6_global(struct interface *ifp, struct in6_addr *addr)
669 {
670 struct listnode *cnode;
671 struct connected *connected;
672 struct prefix *cp;
673
674 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
675 cp = connected->address;
676
677 if (cp->family == AF_INET6)
678 if (!IN6_IS_ADDR_LINKLOCAL(&cp->u.prefix6)) {
679 memcpy(addr, &cp->u.prefix6, IPV6_MAX_BYTELEN);
680 return 1;
681 }
682 }
683 return 0;
684 }
685
686 static int if_get_ipv6_local(struct interface *ifp, struct in6_addr *addr)
687 {
688 struct listnode *cnode;
689 struct connected *connected;
690 struct prefix *cp;
691
692 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
693 cp = connected->address;
694
695 if (cp->family == AF_INET6)
696 if (IN6_IS_ADDR_LINKLOCAL(&cp->u.prefix6)) {
697 memcpy(addr, &cp->u.prefix6, IPV6_MAX_BYTELEN);
698 return 1;
699 }
700 }
701 return 0;
702 }
703
704 static int if_get_ipv4_address(struct interface *ifp, struct in_addr *addr)
705 {
706 struct listnode *cnode;
707 struct connected *connected;
708 struct prefix *cp;
709
710 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected)) {
711 cp = connected->address;
712 if ((cp->family == AF_INET)
713 && !ipv4_martian(&(cp->u.prefix4))) {
714 *addr = cp->u.prefix4;
715 return 1;
716 }
717 }
718 return 0;
719 }
720
721
722 bool bgp_zebra_nexthop_set(union sockunion *local, union sockunion *remote,
723 struct bgp_nexthop *nexthop, struct peer *peer)
724 {
725 int ret = 0;
726 struct interface *ifp = NULL;
727
728 memset(nexthop, 0, sizeof(struct bgp_nexthop));
729
730 if (!local)
731 return false;
732 if (!remote)
733 return false;
734
735 if (local->sa.sa_family == AF_INET) {
736 nexthop->v4 = local->sin.sin_addr;
737 if (peer->update_if)
738 ifp = if_lookup_by_name(peer->update_if,
739 peer->bgp->vrf_id);
740 else
741 ifp = if_lookup_by_ipv4_exact(&local->sin.sin_addr,
742 peer->bgp->vrf_id);
743 }
744 if (local->sa.sa_family == AF_INET6) {
745 memcpy(&nexthop->v6_global, &local->sin6.sin6_addr, IPV6_MAX_BYTELEN);
746 if (IN6_IS_ADDR_LINKLOCAL(&local->sin6.sin6_addr)) {
747 if (peer->conf_if || peer->ifname)
748 ifp = if_lookup_by_name(peer->conf_if
749 ? peer->conf_if
750 : peer->ifname,
751 peer->bgp->vrf_id);
752 } else if (peer->update_if)
753 ifp = if_lookup_by_name(peer->update_if,
754 peer->bgp->vrf_id);
755 else
756 ifp = if_lookup_by_ipv6_exact(&local->sin6.sin6_addr,
757 local->sin6.sin6_scope_id,
758 peer->bgp->vrf_id);
759 }
760
761 if (!ifp) {
762 /*
763 * BGP views do not currently get proper data
764 * from zebra( when attached ) to be able to
765 * properly resolve nexthops, so give this
766 * instance type a pass.
767 */
768 if (peer->bgp->inst_type == BGP_INSTANCE_TYPE_VIEW)
769 return true;
770 /*
771 * If we have no interface data but we have established
772 * some connection w/ zebra than something has gone
773 * terribly terribly wrong here, so say this failed
774 * If we do not any zebra connection then not
775 * having a ifp pointer is ok.
776 */
777 return zclient_num_connects ? false : true;
778 }
779
780 nexthop->ifp = ifp;
781
782 /* IPv4 connection, fetch and store IPv6 local address(es) if any. */
783 if (local->sa.sa_family == AF_INET) {
784 /* IPv6 nexthop*/
785 ret = if_get_ipv6_global(ifp, &nexthop->v6_global);
786
787 if (!ret) {
788 /* There is no global nexthop. Use link-local address as
789 * both the
790 * global and link-local nexthop. In this scenario, the
791 * expectation
792 * for interop is that the network admin would use a
793 * route-map to
794 * specify the global IPv6 nexthop.
795 */
796 if_get_ipv6_local(ifp, &nexthop->v6_global);
797 memcpy(&nexthop->v6_local, &nexthop->v6_global,
798 IPV6_MAX_BYTELEN);
799 } else
800 if_get_ipv6_local(ifp, &nexthop->v6_local);
801
802 if (if_lookup_by_ipv4(&remote->sin.sin_addr, peer->bgp->vrf_id))
803 peer->shared_network = 1;
804 else
805 peer->shared_network = 0;
806 }
807
808 /* IPv6 connection, fetch and store IPv4 local address if any. */
809 if (local->sa.sa_family == AF_INET6) {
810 struct interface *direct = NULL;
811
812 /* IPv4 nexthop. */
813 ret = if_get_ipv4_address(ifp, &nexthop->v4);
814 if (!ret && peer->local_id.s_addr != INADDR_ANY)
815 nexthop->v4 = peer->local_id;
816
817 /* Global address*/
818 if (!IN6_IS_ADDR_LINKLOCAL(&local->sin6.sin6_addr)) {
819 memcpy(&nexthop->v6_global, &local->sin6.sin6_addr,
820 IPV6_MAX_BYTELEN);
821
822 /* If directory connected set link-local address. */
823 direct = if_lookup_by_ipv6(&remote->sin6.sin6_addr,
824 remote->sin6.sin6_scope_id,
825 peer->bgp->vrf_id);
826 if (direct)
827 if_get_ipv6_local(ifp, &nexthop->v6_local);
828 } else
829 /* Link-local address. */
830 {
831 ret = if_get_ipv6_global(ifp, &nexthop->v6_global);
832
833 /* If there is no global address. Set link-local
834 address as
835 global. I know this break RFC specification... */
836 /* In this scenario, the expectation for interop is that
837 * the
838 * network admin would use a route-map to specify the
839 * global
840 * IPv6 nexthop.
841 */
842 if (!ret)
843 memcpy(&nexthop->v6_global,
844 &local->sin6.sin6_addr,
845 IPV6_MAX_BYTELEN);
846 /* Always set the link-local address */
847 memcpy(&nexthop->v6_local, &local->sin6.sin6_addr,
848 IPV6_MAX_BYTELEN);
849 }
850
851 if (IN6_IS_ADDR_LINKLOCAL(&local->sin6.sin6_addr)
852 || if_lookup_by_ipv6(&remote->sin6.sin6_addr,
853 remote->sin6.sin6_scope_id,
854 peer->bgp->vrf_id))
855 peer->shared_network = 1;
856 else
857 peer->shared_network = 0;
858 }
859
860 /* KAME stack specific treatment. */
861 #ifdef KAME
862 if (IN6_IS_ADDR_LINKLOCAL(&nexthop->v6_global)
863 && IN6_LINKLOCAL_IFINDEX(nexthop->v6_global)) {
864 SET_IN6_LINKLOCAL_IFINDEX(nexthop->v6_global, 0);
865 }
866 if (IN6_IS_ADDR_LINKLOCAL(&nexthop->v6_local)
867 && IN6_LINKLOCAL_IFINDEX(nexthop->v6_local)) {
868 SET_IN6_LINKLOCAL_IFINDEX(nexthop->v6_local, 0);
869 }
870 #endif /* KAME */
871
872 /* If we have identified the local interface, there is no error for now.
873 */
874 return true;
875 }
876
877 static struct in6_addr *
878 bgp_path_info_to_ipv6_nexthop(struct bgp_path_info *path, ifindex_t *ifindex)
879 {
880 struct in6_addr *nexthop = NULL;
881
882 /* Only global address nexthop exists. */
883 if (path->attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL
884 || path->attr->mp_nexthop_len == BGP_ATTR_NHLEN_VPNV6_GLOBAL) {
885 nexthop = &path->attr->mp_nexthop_global;
886 if (IN6_IS_ADDR_LINKLOCAL(nexthop))
887 *ifindex = path->attr->nh_ifindex;
888 }
889
890 /* If both global and link-local address present. */
891 if (path->attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
892 || path->attr->mp_nexthop_len
893 == BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL) {
894 /* Check if route-map is set to prefer global over link-local */
895 if (path->attr->mp_nexthop_prefer_global) {
896 nexthop = &path->attr->mp_nexthop_global;
897 if (IN6_IS_ADDR_LINKLOCAL(nexthop))
898 *ifindex = path->attr->nh_ifindex;
899 } else {
900 /* Workaround for Cisco's nexthop bug. */
901 if (IN6_IS_ADDR_UNSPECIFIED(
902 &path->attr->mp_nexthop_global)
903 && path->peer->su_remote
904 && path->peer->su_remote->sa.sa_family
905 == AF_INET6) {
906 nexthop =
907 &path->peer->su_remote->sin6.sin6_addr;
908 if (IN6_IS_ADDR_LINKLOCAL(nexthop))
909 *ifindex = path->peer->nexthop.ifp
910 ->ifindex;
911 } else {
912 nexthop = &path->attr->mp_nexthop_local;
913 if (IN6_IS_ADDR_LINKLOCAL(nexthop))
914 *ifindex = path->attr->nh_lla_ifindex;
915 }
916 }
917 }
918
919 return nexthop;
920 }
921
922 static bool bgp_table_map_apply(struct route_map *map, const struct prefix *p,
923 struct bgp_path_info *path)
924 {
925 route_map_result_t ret;
926
927 ret = route_map_apply(map, p, path);
928 bgp_attr_flush(path->attr);
929
930 if (ret != RMAP_DENYMATCH)
931 return true;
932
933 if (bgp_debug_zebra(p)) {
934 if (p->family == AF_INET) {
935 zlog_debug(
936 "Zebra rmap deny: IPv4 route %pFX nexthop %pI4",
937 p, &path->attr->nexthop);
938 }
939 if (p->family == AF_INET6) {
940 char buf[2][INET6_ADDRSTRLEN];
941 ifindex_t ifindex;
942 struct in6_addr *nexthop;
943
944 nexthop = bgp_path_info_to_ipv6_nexthop(path, &ifindex);
945 zlog_debug(
946 "Zebra rmap deny: IPv6 route %pFX nexthop %s",
947 p,
948 nexthop ? inet_ntop(AF_INET6, nexthop, buf[1],
949 sizeof(buf[1]))
950 : inet_ntop(AF_INET,
951 &path->attr->nexthop,
952 buf[1], sizeof(buf[1])));
953 }
954 }
955 return false;
956 }
957
958 static struct thread *bgp_tm_thread_connect;
959 static bool bgp_tm_status_connected;
960 static bool bgp_tm_chunk_obtained;
961 #define BGP_FLOWSPEC_TABLE_CHUNK 100000
962 static uint32_t bgp_tm_min, bgp_tm_max, bgp_tm_chunk_size;
963 struct bgp *bgp_tm_bgp;
964
965 static int bgp_zebra_tm_connect(struct thread *t)
966 {
967 struct zclient *zclient;
968 int delay = 10, ret = 0;
969
970 zclient = THREAD_ARG(t);
971 if (bgp_tm_status_connected && zclient->sock > 0)
972 delay = 60;
973 else {
974 bgp_tm_status_connected = false;
975 ret = tm_table_manager_connect(zclient);
976 }
977 if (ret < 0) {
978 zlog_info("Error connecting to table manager!");
979 bgp_tm_status_connected = false;
980 } else {
981 if (!bgp_tm_status_connected)
982 zlog_debug("Connecting to table manager. Success");
983 bgp_tm_status_connected = true;
984 if (!bgp_tm_chunk_obtained) {
985 if (bgp_zebra_get_table_range(bgp_tm_chunk_size,
986 &bgp_tm_min,
987 &bgp_tm_max) >= 0) {
988 bgp_tm_chunk_obtained = true;
989 /* parse non installed entries */
990 bgp_zebra_announce_table(bgp_tm_bgp, AFI_IP, SAFI_FLOWSPEC);
991 }
992 }
993 }
994 thread_add_timer(bm->master, bgp_zebra_tm_connect, zclient, delay,
995 &bgp_tm_thread_connect);
996 return 0;
997 }
998
999 bool bgp_zebra_tm_chunk_obtained(void)
1000 {
1001 return bgp_tm_chunk_obtained;
1002 }
1003
1004 uint32_t bgp_zebra_tm_get_id(void)
1005 {
1006 static int table_id;
1007
1008 if (!bgp_tm_chunk_obtained)
1009 return ++table_id;
1010 return bgp_tm_min++;
1011 }
1012
1013 void bgp_zebra_init_tm_connect(struct bgp *bgp)
1014 {
1015 int delay = 1;
1016
1017 /* if already set, do nothing
1018 */
1019 if (bgp_tm_thread_connect != NULL)
1020 return;
1021 bgp_tm_status_connected = false;
1022 bgp_tm_chunk_obtained = false;
1023 bgp_tm_min = bgp_tm_max = 0;
1024 bgp_tm_chunk_size = BGP_FLOWSPEC_TABLE_CHUNK;
1025 bgp_tm_bgp = bgp;
1026 thread_add_timer(bm->master, bgp_zebra_tm_connect, zclient, delay,
1027 &bgp_tm_thread_connect);
1028 }
1029
1030 int bgp_zebra_get_table_range(uint32_t chunk_size,
1031 uint32_t *start, uint32_t *end)
1032 {
1033 int ret;
1034
1035 if (!bgp_tm_status_connected)
1036 return -1;
1037 ret = tm_get_table_chunk(zclient, chunk_size, start, end);
1038 if (ret < 0) {
1039 flog_err(EC_BGP_TABLE_CHUNK,
1040 "BGP: Error getting table chunk %u", chunk_size);
1041 return -1;
1042 }
1043 zlog_info("BGP: Table Manager returns range from chunk %u is [%u %u]",
1044 chunk_size, *start, *end);
1045 return 0;
1046 }
1047
1048 static bool update_ipv4nh_for_route_install(int nh_othervrf, struct bgp *nh_bgp,
1049 struct in_addr *nexthop,
1050 struct attr *attr, bool is_evpn,
1051 struct zapi_nexthop *api_nh)
1052 {
1053 api_nh->gate.ipv4 = *nexthop;
1054 api_nh->vrf_id = nh_bgp->vrf_id;
1055
1056 /* Need to set fields appropriately for EVPN routes imported into
1057 * a VRF (which are programmed as onlink on l3-vni SVI) as well as
1058 * connected routes leaked into a VRF.
1059 */
1060 if (is_evpn) {
1061 api_nh->type = NEXTHOP_TYPE_IPV4_IFINDEX;
1062 SET_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_ONLINK);
1063 api_nh->ifindex = nh_bgp->l3vni_svi_ifindex;
1064 } else if (nh_othervrf &&
1065 api_nh->gate.ipv4.s_addr == INADDR_ANY) {
1066 api_nh->type = NEXTHOP_TYPE_IFINDEX;
1067 api_nh->ifindex = attr->nh_ifindex;
1068 } else
1069 api_nh->type = NEXTHOP_TYPE_IPV4;
1070
1071 return true;
1072 }
1073
1074 static bool update_ipv6nh_for_route_install(int nh_othervrf, struct bgp *nh_bgp,
1075 struct in6_addr *nexthop,
1076 ifindex_t ifindex,
1077 struct bgp_path_info *pi,
1078 struct bgp_path_info *best_pi,
1079 bool is_evpn,
1080 struct zapi_nexthop *api_nh)
1081 {
1082 struct attr *attr;
1083
1084 attr = pi->attr;
1085 api_nh->vrf_id = nh_bgp->vrf_id;
1086
1087 if (is_evpn) {
1088 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
1089 SET_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_ONLINK);
1090 api_nh->ifindex = nh_bgp->l3vni_svi_ifindex;
1091 } else if (nh_othervrf) {
1092 if (IN6_IS_ADDR_UNSPECIFIED(nexthop)) {
1093 api_nh->type = NEXTHOP_TYPE_IFINDEX;
1094 api_nh->ifindex = attr->nh_ifindex;
1095 } else if (IN6_IS_ADDR_LINKLOCAL(nexthop)) {
1096 if (ifindex == 0)
1097 return false;
1098 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
1099 api_nh->ifindex = ifindex;
1100 } else {
1101 api_nh->type = NEXTHOP_TYPE_IPV6;
1102 api_nh->ifindex = 0;
1103 }
1104 } else {
1105 if (IN6_IS_ADDR_LINKLOCAL(nexthop)) {
1106 if (pi == best_pi
1107 && attr->mp_nexthop_len
1108 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL)
1109 if (pi->peer->nexthop.ifp)
1110 ifindex =
1111 pi->peer->nexthop.ifp->ifindex;
1112 if (!ifindex) {
1113 if (pi->peer->conf_if)
1114 ifindex = pi->peer->ifp->ifindex;
1115 else if (pi->peer->ifname)
1116 ifindex = ifname2ifindex(
1117 pi->peer->ifname,
1118 pi->peer->bgp->vrf_id);
1119 else if (pi->peer->nexthop.ifp)
1120 ifindex =
1121 pi->peer->nexthop.ifp->ifindex;
1122 }
1123
1124 if (ifindex == 0)
1125 return false;
1126 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
1127 api_nh->ifindex = ifindex;
1128 } else {
1129 api_nh->type = NEXTHOP_TYPE_IPV6;
1130 api_nh->ifindex = 0;
1131 }
1132 }
1133 if (nexthop)
1134 api_nh->gate.ipv6 = *nexthop;
1135
1136 return true;
1137 }
1138
1139 static bool bgp_zebra_use_nhop_weighted(struct bgp *bgp, struct attr *attr,
1140 uint64_t tot_bw, uint32_t *nh_weight)
1141 {
1142 uint32_t bw;
1143 uint64_t tmp;
1144
1145 bw = attr->link_bw;
1146 /* zero link-bandwidth and link-bandwidth not present are treated
1147 * as the same situation.
1148 */
1149 if (!bw) {
1150 /* the only situations should be if we're either told
1151 * to skip or use default weight.
1152 */
1153 if (bgp->lb_handling == BGP_LINK_BW_SKIP_MISSING)
1154 return false;
1155 *nh_weight = BGP_ZEBRA_DEFAULT_NHOP_WEIGHT;
1156 } else {
1157 tmp = (uint64_t)bw * 100;
1158 *nh_weight = ((uint32_t)(tmp / tot_bw));
1159 }
1160
1161 return true;
1162 }
1163
1164 void bgp_zebra_announce(struct bgp_dest *dest, const struct prefix *p,
1165 struct bgp_path_info *info, struct bgp *bgp, afi_t afi,
1166 safi_t safi)
1167 {
1168 struct zapi_route api = { 0 };
1169 struct zapi_nexthop *api_nh;
1170 int nh_family;
1171 unsigned int valid_nh_count = 0;
1172 int has_valid_label = 0;
1173 bool allow_recursion = false;
1174 uint8_t distance;
1175 struct peer *peer;
1176 struct bgp_path_info *mpinfo;
1177 uint32_t metric;
1178 struct attr local_attr;
1179 struct bgp_path_info local_info;
1180 struct bgp_path_info *mpinfo_cp = &local_info;
1181 route_tag_t tag;
1182 mpls_label_t label;
1183 int nh_othervrf = 0;
1184 bool is_evpn;
1185 bool nh_updated = false;
1186 bool do_wt_ecmp;
1187 uint64_t cum_bw = 0;
1188 uint32_t nhg_id = 0;
1189 bool is_add;
1190
1191 /* Don't try to install if we're not connected to Zebra or Zebra doesn't
1192 * know of this instance.
1193 */
1194 if (!bgp_install_info_to_zebra(bgp))
1195 return;
1196
1197 if (bgp->main_zebra_update_hold)
1198 return;
1199
1200 if (safi == SAFI_FLOWSPEC) {
1201 bgp_pbr_update_entry(bgp, bgp_dest_get_prefix(dest), info, afi,
1202 safi, true);
1203 return;
1204 }
1205
1206 /*
1207 * vrf leaking support (will have only one nexthop)
1208 */
1209 if (info->extra && info->extra->bgp_orig)
1210 nh_othervrf = 1;
1211
1212 /* Make Zebra API structure. */
1213 api.vrf_id = bgp->vrf_id;
1214 api.type = ZEBRA_ROUTE_BGP;
1215 api.safi = safi;
1216 api.prefix = *p;
1217 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
1218
1219 peer = info->peer;
1220
1221 if (info->type == ZEBRA_ROUTE_BGP
1222 && info->sub_type == BGP_ROUTE_IMPORTED) {
1223
1224 /* Obtain peer from parent */
1225 if (info->extra && info->extra->parent)
1226 peer = ((struct bgp_path_info *)(info->extra->parent))
1227 ->peer;
1228 }
1229
1230 tag = info->attr->tag;
1231
1232 /* If the route's source is EVPN, flag as such. */
1233 is_evpn = is_route_parent_evpn(info);
1234 if (is_evpn)
1235 SET_FLAG(api.flags, ZEBRA_FLAG_EVPN_ROUTE);
1236
1237 if (peer->sort == BGP_PEER_IBGP || peer->sort == BGP_PEER_CONFED
1238 || info->sub_type == BGP_ROUTE_AGGREGATE) {
1239 SET_FLAG(api.flags, ZEBRA_FLAG_IBGP);
1240 SET_FLAG(api.flags, ZEBRA_FLAG_ALLOW_RECURSION);
1241 }
1242
1243 if ((peer->sort == BGP_PEER_EBGP && peer->ttl != BGP_DEFAULT_TTL)
1244 || CHECK_FLAG(peer->flags, PEER_FLAG_DISABLE_CONNECTED_CHECK)
1245 || CHECK_FLAG(bgp->flags, BGP_FLAG_DISABLE_NH_CONNECTED_CHK))
1246
1247 allow_recursion = true;
1248
1249 if (info->attr->rmap_table_id) {
1250 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
1251 api.tableid = info->attr->rmap_table_id;
1252 }
1253
1254 if (CHECK_FLAG(info->attr->flag, ATTR_FLAG_BIT(BGP_ATTR_SRTE_COLOR)))
1255 SET_FLAG(api.message, ZAPI_MESSAGE_SRTE);
1256
1257 /* Metric is currently based on the best-path only */
1258 metric = info->attr->med;
1259
1260 /* Determine if we're doing weighted ECMP or not */
1261 do_wt_ecmp = bgp_path_info_mpath_chkwtd(bgp, info);
1262 if (do_wt_ecmp)
1263 cum_bw = bgp_path_info_mpath_cumbw(info);
1264
1265 /* EVPN MAC-IP routes are installed with a L3 NHG id */
1266 if (bgp_evpn_path_es_use_nhg(bgp, info, &nhg_id)) {
1267 mpinfo = NULL;
1268 api.nhgid = nhg_id;
1269 if (nhg_id)
1270 SET_FLAG(api.message, ZAPI_MESSAGE_NHG);
1271 } else {
1272 mpinfo = info;
1273 }
1274
1275 for (; mpinfo; mpinfo = bgp_path_info_mpath_next(mpinfo)) {
1276 uint32_t nh_weight;
1277
1278 if (valid_nh_count >= multipath_num)
1279 break;
1280
1281 *mpinfo_cp = *mpinfo;
1282 nh_weight = 0;
1283
1284 /* Get nexthop address-family */
1285 if (p->family == AF_INET
1286 && !BGP_ATTR_NEXTHOP_AFI_IP6(mpinfo_cp->attr))
1287 nh_family = AF_INET;
1288 else if (p->family == AF_INET6
1289 || (p->family == AF_INET
1290 && BGP_ATTR_NEXTHOP_AFI_IP6(mpinfo_cp->attr)))
1291 nh_family = AF_INET6;
1292 else
1293 continue;
1294
1295 /* If processing for weighted ECMP, determine the next hop's
1296 * weight. Based on user setting, we may skip the next hop
1297 * in some situations.
1298 */
1299 if (do_wt_ecmp) {
1300 if (!bgp_zebra_use_nhop_weighted(bgp, mpinfo->attr,
1301 cum_bw, &nh_weight))
1302 continue;
1303 }
1304 api_nh = &api.nexthops[valid_nh_count];
1305
1306 if (CHECK_FLAG(info->attr->flag,
1307 ATTR_FLAG_BIT(BGP_ATTR_SRTE_COLOR)))
1308 api_nh->srte_color = info->attr->srte_color;
1309
1310 if (bgp_debug_zebra(&api.prefix)) {
1311 if (mpinfo->extra) {
1312 zlog_debug("%s: p=%pFX, bgp_is_valid_label: %d",
1313 __func__, p,
1314 bgp_is_valid_label(
1315 &mpinfo->extra->label[0]));
1316 } else {
1317 zlog_debug(
1318 "%s: p=%pFX, extra is NULL, no label",
1319 __func__, p);
1320 }
1321 }
1322
1323 if (bgp->table_map[afi][safi].name) {
1324 /* Copy info and attributes, so the route-map
1325 apply doesn't modify the BGP route info. */
1326 local_attr = *mpinfo->attr;
1327 mpinfo_cp->attr = &local_attr;
1328 if (!bgp_table_map_apply(bgp->table_map[afi][safi].map,
1329 p, mpinfo_cp))
1330 continue;
1331
1332 /* metric/tag is only allowed to be
1333 * overridden on 1st nexthop */
1334 if (mpinfo == info) {
1335 metric = mpinfo_cp->attr->med;
1336 tag = mpinfo_cp->attr->tag;
1337 }
1338 }
1339
1340 if (nh_family == AF_INET) {
1341 nh_updated = update_ipv4nh_for_route_install(
1342 nh_othervrf,
1343 nh_othervrf ?
1344 info->extra->bgp_orig : bgp,
1345 &mpinfo_cp->attr->nexthop,
1346 mpinfo_cp->attr, is_evpn, api_nh);
1347 } else {
1348 ifindex_t ifindex = IFINDEX_INTERNAL;
1349 struct in6_addr *nexthop;
1350
1351 nexthop = bgp_path_info_to_ipv6_nexthop(mpinfo_cp,
1352 &ifindex);
1353
1354 if (!nexthop)
1355 nh_updated = update_ipv4nh_for_route_install(
1356 nh_othervrf,
1357 nh_othervrf ? info->extra->bgp_orig
1358 : bgp,
1359 &mpinfo_cp->attr->nexthop,
1360 mpinfo_cp->attr, is_evpn, api_nh);
1361 else
1362 nh_updated = update_ipv6nh_for_route_install(
1363 nh_othervrf,
1364 nh_othervrf ? info->extra->bgp_orig
1365 : bgp,
1366 nexthop, ifindex, mpinfo, info, is_evpn,
1367 api_nh);
1368 }
1369
1370 /* Did we get proper nexthop info to update zebra? */
1371 if (!nh_updated)
1372 continue;
1373
1374 /* Allow recursion if it is a multipath group with both
1375 * eBGP and iBGP paths.
1376 */
1377 if (!allow_recursion
1378 && CHECK_FLAG(bgp->flags, BGP_FLAG_PEERTYPE_MULTIPATH_RELAX)
1379 && (mpinfo->peer->sort == BGP_PEER_IBGP
1380 || mpinfo->peer->sort == BGP_PEER_CONFED))
1381 allow_recursion = true;
1382
1383 if (mpinfo->extra
1384 && bgp_is_valid_label(&mpinfo->extra->label[0])
1385 && !CHECK_FLAG(api.flags, ZEBRA_FLAG_EVPN_ROUTE)) {
1386 has_valid_label = 1;
1387 label = label_pton(&mpinfo->extra->label[0]);
1388
1389 SET_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_LABEL);
1390
1391 api_nh->label_num = 1;
1392 api_nh->labels[0] = label;
1393 }
1394 memcpy(&api_nh->rmac, &(mpinfo->attr->rmac),
1395 sizeof(struct ethaddr));
1396 api_nh->weight = nh_weight;
1397
1398 valid_nh_count++;
1399 }
1400
1401 is_add = (valid_nh_count || nhg_id) ? true : false;
1402
1403 if (is_add && CHECK_FLAG(bm->flags, BM_FLAG_SEND_EXTRA_DATA_TO_ZEBRA)) {
1404 struct bgp_zebra_opaque bzo = {};
1405
1406 strlcpy(bzo.aspath, info->attr->aspath->str,
1407 sizeof(bzo.aspath));
1408
1409 if (info->attr->flag & ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES))
1410 strlcpy(bzo.community, info->attr->community->str,
1411 sizeof(bzo.community));
1412
1413 if (info->attr->flag
1414 & ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES))
1415 strlcpy(bzo.lcommunity, info->attr->lcommunity->str,
1416 sizeof(bzo.lcommunity));
1417
1418 SET_FLAG(api.message, ZAPI_MESSAGE_OPAQUE);
1419 api.opaque.length = MIN(sizeof(struct bgp_zebra_opaque),
1420 ZAPI_MESSAGE_OPAQUE_LENGTH);
1421 memcpy(api.opaque.data, &bzo, api.opaque.length);
1422 }
1423
1424 if (allow_recursion)
1425 SET_FLAG(api.flags, ZEBRA_FLAG_ALLOW_RECURSION);
1426
1427 /*
1428 * When we create an aggregate route we must also
1429 * install a Null0 route in the RIB, so overwrite
1430 * what was written into api with a blackhole route
1431 */
1432 if (info->sub_type == BGP_ROUTE_AGGREGATE)
1433 zapi_route_set_blackhole(&api, BLACKHOLE_NULL);
1434 else
1435 api.nexthop_num = valid_nh_count;
1436
1437 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
1438 api.metric = metric;
1439
1440 if (tag) {
1441 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
1442 api.tag = tag;
1443 }
1444
1445 distance = bgp_distance_apply(p, info, afi, safi, bgp);
1446 if (distance) {
1447 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
1448 api.distance = distance;
1449 }
1450
1451 if (bgp_debug_zebra(p)) {
1452 char nh_buf[INET6_ADDRSTRLEN];
1453 char eth_buf[ETHER_ADDR_STRLEN + 7] = {'\0'};
1454 char buf1[ETHER_ADDR_STRLEN];
1455 char label_buf[20];
1456 int i;
1457
1458 zlog_debug(
1459 "Tx route %s VRF %u %pFX metric %u tag %" ROUTE_TAG_PRI
1460 " count %d nhg %d",
1461 valid_nh_count ? "add" : "delete", bgp->vrf_id,
1462 &api.prefix, api.metric, api.tag, api.nexthop_num,
1463 nhg_id);
1464 for (i = 0; i < api.nexthop_num; i++) {
1465 api_nh = &api.nexthops[i];
1466
1467 switch (api_nh->type) {
1468 case NEXTHOP_TYPE_IFINDEX:
1469 nh_buf[0] = '\0';
1470 break;
1471 case NEXTHOP_TYPE_IPV4:
1472 case NEXTHOP_TYPE_IPV4_IFINDEX:
1473 nh_family = AF_INET;
1474 inet_ntop(nh_family, &api_nh->gate, nh_buf,
1475 sizeof(nh_buf));
1476 break;
1477 case NEXTHOP_TYPE_IPV6:
1478 case NEXTHOP_TYPE_IPV6_IFINDEX:
1479 nh_family = AF_INET6;
1480 inet_ntop(nh_family, &api_nh->gate, nh_buf,
1481 sizeof(nh_buf));
1482 break;
1483 case NEXTHOP_TYPE_BLACKHOLE:
1484 strlcpy(nh_buf, "blackhole", sizeof(nh_buf));
1485 break;
1486 default:
1487 /* Note: add new nexthop case */
1488 assert(0);
1489 break;
1490 }
1491
1492 label_buf[0] = '\0';
1493 eth_buf[0] = '\0';
1494 if (has_valid_label
1495 && !CHECK_FLAG(api.flags, ZEBRA_FLAG_EVPN_ROUTE))
1496 snprintf(label_buf, sizeof(label_buf),
1497 "label %u", api_nh->labels[0]);
1498 if (CHECK_FLAG(api.flags, ZEBRA_FLAG_EVPN_ROUTE)
1499 && !is_zero_mac(&api_nh->rmac))
1500 snprintf(eth_buf, sizeof(eth_buf), " RMAC %s",
1501 prefix_mac2str(&api_nh->rmac,
1502 buf1, sizeof(buf1)));
1503 zlog_debug(" nhop [%d]: %s if %u VRF %u wt %u %s %s",
1504 i + 1, nh_buf, api_nh->ifindex,
1505 api_nh->vrf_id, api_nh->weight,
1506 label_buf, eth_buf);
1507 }
1508
1509 int recursion_flag = 0;
1510
1511 if (CHECK_FLAG(api.flags, ZEBRA_FLAG_ALLOW_RECURSION))
1512 recursion_flag = 1;
1513
1514 zlog_debug("%s: %pFX: announcing to zebra (recursion %sset)",
1515 __func__, p, (recursion_flag ? "" : "NOT "));
1516 }
1517 zclient_route_send(is_add ? ZEBRA_ROUTE_ADD : ZEBRA_ROUTE_DELETE,
1518 zclient, &api);
1519 }
1520
1521 /* Announce all routes of a table to zebra */
1522 void bgp_zebra_announce_table(struct bgp *bgp, afi_t afi, safi_t safi)
1523 {
1524 struct bgp_dest *dest;
1525 struct bgp_table *table;
1526 struct bgp_path_info *pi;
1527
1528 /* Don't try to install if we're not connected to Zebra or Zebra doesn't
1529 * know of this instance.
1530 */
1531 if (!bgp_install_info_to_zebra(bgp))
1532 return;
1533
1534 table = bgp->rib[afi][safi];
1535 if (!table)
1536 return;
1537
1538 for (dest = bgp_table_top(table); dest; dest = bgp_route_next(dest))
1539 for (pi = bgp_dest_get_bgp_path_info(dest); pi; pi = pi->next)
1540 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED) &&
1541
1542 (pi->type == ZEBRA_ROUTE_BGP
1543 && (pi->sub_type == BGP_ROUTE_NORMAL
1544 || pi->sub_type == BGP_ROUTE_IMPORTED)))
1545
1546 bgp_zebra_announce(dest,
1547 bgp_dest_get_prefix(dest),
1548 pi, bgp, afi, safi);
1549 }
1550
1551 /* Announce routes of any bgp subtype of a table to zebra */
1552 void bgp_zebra_announce_table_all_subtypes(struct bgp *bgp, afi_t afi,
1553 safi_t safi)
1554 {
1555 struct bgp_dest *dest;
1556 struct bgp_table *table;
1557 struct bgp_path_info *pi;
1558
1559 if (!bgp_install_info_to_zebra(bgp))
1560 return;
1561
1562 table = bgp->rib[afi][safi];
1563 if (!table)
1564 return;
1565
1566 for (dest = bgp_table_top(table); dest; dest = bgp_route_next(dest))
1567 for (pi = bgp_dest_get_bgp_path_info(dest); pi; pi = pi->next)
1568 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED) &&
1569 pi->type == ZEBRA_ROUTE_BGP)
1570 bgp_zebra_announce(dest,
1571 bgp_dest_get_prefix(dest),
1572 pi, bgp, afi, safi);
1573 }
1574
1575 void bgp_zebra_withdraw(const struct prefix *p, struct bgp_path_info *info,
1576 struct bgp *bgp, safi_t safi)
1577 {
1578 struct zapi_route api;
1579 struct peer *peer;
1580
1581 /* Don't try to install if we're not connected to Zebra or Zebra doesn't
1582 * know of this instance.
1583 */
1584 if (!bgp_install_info_to_zebra(bgp))
1585 return;
1586
1587 if (safi == SAFI_FLOWSPEC) {
1588 peer = info->peer;
1589 bgp_pbr_update_entry(peer->bgp, p, info, AFI_IP, safi, false);
1590 return;
1591 }
1592
1593 memset(&api, 0, sizeof(api));
1594 api.vrf_id = bgp->vrf_id;
1595 api.type = ZEBRA_ROUTE_BGP;
1596 api.safi = safi;
1597 api.prefix = *p;
1598
1599 if (info->attr->rmap_table_id) {
1600 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
1601 api.tableid = info->attr->rmap_table_id;
1602 }
1603
1604 /* If the route's source is EVPN, flag as such. */
1605 if (is_route_parent_evpn(info))
1606 SET_FLAG(api.flags, ZEBRA_FLAG_EVPN_ROUTE);
1607
1608 if (bgp_debug_zebra(p))
1609 zlog_debug("Tx route delete VRF %u %pFX", bgp->vrf_id,
1610 &api.prefix);
1611
1612 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
1613 }
1614
1615 /* Withdraw all entries in a BGP instances RIB table from Zebra */
1616 void bgp_zebra_withdraw_table_all_subtypes(struct bgp *bgp, afi_t afi, safi_t safi)
1617 {
1618 struct bgp_dest *dest;
1619 struct bgp_table *table;
1620 struct bgp_path_info *pi;
1621
1622 if (!bgp_install_info_to_zebra(bgp))
1623 return;
1624
1625 table = bgp->rib[afi][safi];
1626 if (!table)
1627 return;
1628
1629 for (dest = bgp_table_top(table); dest; dest = bgp_route_next(dest)) {
1630 for (pi = bgp_dest_get_bgp_path_info(dest); pi; pi = pi->next) {
1631 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)
1632 && (pi->type == ZEBRA_ROUTE_BGP))
1633 bgp_zebra_withdraw(bgp_dest_get_prefix(dest),
1634 pi, bgp, safi);
1635 }
1636 }
1637 }
1638
1639 struct bgp_redist *bgp_redist_lookup(struct bgp *bgp, afi_t afi, uint8_t type,
1640 unsigned short instance)
1641 {
1642 struct list *red_list;
1643 struct listnode *node;
1644 struct bgp_redist *red;
1645
1646 red_list = bgp->redist[afi][type];
1647 if (!red_list)
1648 return (NULL);
1649
1650 for (ALL_LIST_ELEMENTS_RO(red_list, node, red))
1651 if (red->instance == instance)
1652 return red;
1653
1654 return NULL;
1655 }
1656
1657 struct bgp_redist *bgp_redist_add(struct bgp *bgp, afi_t afi, uint8_t type,
1658 unsigned short instance)
1659 {
1660 struct list *red_list;
1661 struct bgp_redist *red;
1662
1663 red = bgp_redist_lookup(bgp, afi, type, instance);
1664 if (red)
1665 return red;
1666
1667 if (!bgp->redist[afi][type])
1668 bgp->redist[afi][type] = list_new();
1669
1670 red_list = bgp->redist[afi][type];
1671 red = XCALLOC(MTYPE_BGP_REDIST, sizeof(struct bgp_redist));
1672 red->instance = instance;
1673
1674 listnode_add(red_list, red);
1675
1676 return red;
1677 }
1678
1679 static void bgp_redist_del(struct bgp *bgp, afi_t afi, uint8_t type,
1680 unsigned short instance)
1681 {
1682 struct bgp_redist *red;
1683
1684 red = bgp_redist_lookup(bgp, afi, type, instance);
1685
1686 if (red) {
1687 listnode_delete(bgp->redist[afi][type], red);
1688 XFREE(MTYPE_BGP_REDIST, red);
1689 if (!bgp->redist[afi][type]->count)
1690 list_delete(&bgp->redist[afi][type]);
1691 }
1692 }
1693
1694 /* Other routes redistribution into BGP. */
1695 int bgp_redistribute_set(struct bgp *bgp, afi_t afi, int type,
1696 unsigned short instance, bool changed)
1697 {
1698 /* If redistribute options are changed call
1699 * bgp_redistribute_unreg() to reset the option and withdraw
1700 * the routes
1701 */
1702 if (changed)
1703 bgp_redistribute_unreg(bgp, afi, type, instance);
1704
1705 /* Return if already redistribute flag is set. */
1706 if (instance) {
1707 if (redist_check_instance(&zclient->mi_redist[afi][type],
1708 instance))
1709 return CMD_WARNING;
1710
1711 redist_add_instance(&zclient->mi_redist[afi][type], instance);
1712 } else {
1713 if (vrf_bitmap_check(zclient->redist[afi][type], bgp->vrf_id))
1714 return CMD_WARNING;
1715
1716 #ifdef ENABLE_BGP_VNC
1717 if (EVPN_ENABLED(bgp) && type == ZEBRA_ROUTE_VNC_DIRECT) {
1718 vnc_export_bgp_enable(
1719 bgp, afi); /* only enables if mode bits cfg'd */
1720 }
1721 #endif
1722
1723 vrf_bitmap_set(zclient->redist[afi][type], bgp->vrf_id);
1724 }
1725
1726 /*
1727 * Don't try to register if we're not connected to Zebra or Zebra
1728 * doesn't know of this instance.
1729 *
1730 * When we come up later well resend if needed.
1731 */
1732 if (!bgp_install_info_to_zebra(bgp))
1733 return CMD_SUCCESS;
1734
1735 if (BGP_DEBUG(zebra, ZEBRA))
1736 zlog_debug("Tx redistribute add VRF %u afi %d %s %d",
1737 bgp->vrf_id, afi, zebra_route_string(type),
1738 instance);
1739
1740 /* Send distribute add message to zebra. */
1741 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, afi, type,
1742 instance, bgp->vrf_id);
1743
1744 return CMD_SUCCESS;
1745 }
1746
1747 int bgp_redistribute_resend(struct bgp *bgp, afi_t afi, int type,
1748 unsigned short instance)
1749 {
1750 /* Don't try to send if we're not connected to Zebra or Zebra doesn't
1751 * know of this instance.
1752 */
1753 if (!bgp_install_info_to_zebra(bgp))
1754 return -1;
1755
1756 if (BGP_DEBUG(zebra, ZEBRA))
1757 zlog_debug("Tx redistribute del/add VRF %u afi %d %s %d",
1758 bgp->vrf_id, afi, zebra_route_string(type),
1759 instance);
1760
1761 /* Send distribute add message to zebra. */
1762 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE, zclient, afi, type,
1763 instance, bgp->vrf_id);
1764 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, afi, type,
1765 instance, bgp->vrf_id);
1766
1767 return 0;
1768 }
1769
1770 /* Redistribute with route-map specification. */
1771 bool bgp_redistribute_rmap_set(struct bgp_redist *red, const char *name,
1772 struct route_map *route_map)
1773 {
1774 if (red->rmap.name && (strcmp(red->rmap.name, name) == 0))
1775 return false;
1776
1777 XFREE(MTYPE_ROUTE_MAP_NAME, red->rmap.name);
1778 /* Decrement the count for existing routemap and
1779 * increment the count for new route map.
1780 */
1781 route_map_counter_decrement(red->rmap.map);
1782 red->rmap.name = XSTRDUP(MTYPE_ROUTE_MAP_NAME, name);
1783 red->rmap.map = route_map;
1784 route_map_counter_increment(red->rmap.map);
1785
1786 return true;
1787 }
1788
1789 /* Redistribute with metric specification. */
1790 bool bgp_redistribute_metric_set(struct bgp *bgp, struct bgp_redist *red,
1791 afi_t afi, int type, uint32_t metric)
1792 {
1793 struct bgp_dest *dest;
1794 struct bgp_path_info *pi;
1795
1796 if (red->redist_metric_flag && red->redist_metric == metric)
1797 return false;
1798
1799 red->redist_metric_flag = 1;
1800 red->redist_metric = metric;
1801
1802 for (dest = bgp_table_top(bgp->rib[afi][SAFI_UNICAST]); dest;
1803 dest = bgp_route_next(dest)) {
1804 for (pi = bgp_dest_get_bgp_path_info(dest); pi; pi = pi->next) {
1805 if (pi->sub_type == BGP_ROUTE_REDISTRIBUTE
1806 && pi->type == type
1807 && pi->instance == red->instance) {
1808 struct attr *old_attr;
1809 struct attr new_attr;
1810
1811 new_attr = *pi->attr;
1812 new_attr.med = red->redist_metric;
1813 old_attr = pi->attr;
1814 pi->attr = bgp_attr_intern(&new_attr);
1815 bgp_attr_unintern(&old_attr);
1816
1817 bgp_path_info_set_flag(dest, pi,
1818 BGP_PATH_ATTR_CHANGED);
1819 bgp_process(bgp, dest, afi, SAFI_UNICAST);
1820 }
1821 }
1822 }
1823
1824 return true;
1825 }
1826
1827 /* Unset redistribution. */
1828 int bgp_redistribute_unreg(struct bgp *bgp, afi_t afi, int type,
1829 unsigned short instance)
1830 {
1831 struct bgp_redist *red;
1832
1833 red = bgp_redist_lookup(bgp, afi, type, instance);
1834 if (!red)
1835 return CMD_SUCCESS;
1836
1837 /* Return if zebra connection is disabled. */
1838 if (instance) {
1839 if (!redist_check_instance(&zclient->mi_redist[afi][type],
1840 instance))
1841 return CMD_WARNING;
1842 redist_del_instance(&zclient->mi_redist[afi][type], instance);
1843 } else {
1844 if (!vrf_bitmap_check(zclient->redist[afi][type], bgp->vrf_id))
1845 return CMD_WARNING;
1846 vrf_bitmap_unset(zclient->redist[afi][type], bgp->vrf_id);
1847 }
1848
1849 if (bgp_install_info_to_zebra(bgp)) {
1850 /* Send distribute delete message to zebra. */
1851 if (BGP_DEBUG(zebra, ZEBRA))
1852 zlog_debug("Tx redistribute del VRF %u afi %d %s %d",
1853 bgp->vrf_id, afi, zebra_route_string(type),
1854 instance);
1855 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE, zclient, afi,
1856 type, instance, bgp->vrf_id);
1857 }
1858
1859 /* Withdraw redistributed routes from current BGP's routing table. */
1860 bgp_redistribute_withdraw(bgp, afi, type, instance);
1861
1862 return CMD_SUCCESS;
1863 }
1864
1865 /* Unset redistribution. */
1866 int bgp_redistribute_unset(struct bgp *bgp, afi_t afi, int type,
1867 unsigned short instance)
1868 {
1869 struct bgp_redist *red;
1870
1871 /*
1872 * vnc and vpn->vrf checks must be before red check because
1873 * they operate within bgpd irrespective of zebra connection
1874 * status. red lookup fails if there is no zebra connection.
1875 */
1876 #ifdef ENABLE_BGP_VNC
1877 if (EVPN_ENABLED(bgp) && type == ZEBRA_ROUTE_VNC_DIRECT) {
1878 vnc_export_bgp_disable(bgp, afi);
1879 }
1880 #endif
1881
1882 red = bgp_redist_lookup(bgp, afi, type, instance);
1883 if (!red)
1884 return CMD_SUCCESS;
1885
1886 bgp_redistribute_unreg(bgp, afi, type, instance);
1887
1888 /* Unset route-map. */
1889 XFREE(MTYPE_ROUTE_MAP_NAME, red->rmap.name);
1890 route_map_counter_decrement(red->rmap.map);
1891 red->rmap.map = NULL;
1892
1893 /* Unset metric. */
1894 red->redist_metric_flag = 0;
1895 red->redist_metric = 0;
1896
1897 bgp_redist_del(bgp, afi, type, instance);
1898
1899 return CMD_SUCCESS;
1900 }
1901
1902 void bgp_redistribute_redo(struct bgp *bgp)
1903 {
1904 afi_t afi;
1905 int i;
1906 struct list *red_list;
1907 struct listnode *node;
1908 struct bgp_redist *red;
1909
1910 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
1911 for (i = 0; i < ZEBRA_ROUTE_MAX; i++) {
1912
1913 red_list = bgp->redist[afi][i];
1914 if (!red_list)
1915 continue;
1916
1917 for (ALL_LIST_ELEMENTS_RO(red_list, node, red)) {
1918 bgp_redistribute_resend(bgp, afi, i,
1919 red->instance);
1920 }
1921 }
1922 }
1923 }
1924
1925 void bgp_zclient_reset(void)
1926 {
1927 zclient_reset(zclient);
1928 }
1929
1930 /* Register this instance with Zebra. Invoked upon connect (for
1931 * default instance) and when other VRFs are learnt (or created and
1932 * already learnt).
1933 */
1934 void bgp_zebra_instance_register(struct bgp *bgp)
1935 {
1936 /* Don't try to register if we're not connected to Zebra */
1937 if (!zclient || zclient->sock < 0)
1938 return;
1939
1940 if (BGP_DEBUG(zebra, ZEBRA))
1941 zlog_debug("Registering VRF %u", bgp->vrf_id);
1942
1943 /* Register for router-id, interfaces, redistributed routes. */
1944 zclient_send_reg_requests(zclient, bgp->vrf_id);
1945
1946 /* For EVPN instance, register to learn about VNIs, if appropriate. */
1947 if (bgp->advertise_all_vni)
1948 bgp_zebra_advertise_all_vni(bgp, 1);
1949
1950 bgp_nht_register_nexthops(bgp);
1951 }
1952
1953 /* Deregister this instance with Zebra. Invoked upon the instance
1954 * being deleted (default or VRF) and it is already registered.
1955 */
1956 void bgp_zebra_instance_deregister(struct bgp *bgp)
1957 {
1958 /* Don't try to deregister if we're not connected to Zebra */
1959 if (zclient->sock < 0)
1960 return;
1961
1962 if (BGP_DEBUG(zebra, ZEBRA))
1963 zlog_debug("Deregistering VRF %u", bgp->vrf_id);
1964
1965 /* For EVPN instance, unregister learning about VNIs, if appropriate. */
1966 if (bgp->advertise_all_vni)
1967 bgp_zebra_advertise_all_vni(bgp, 0);
1968
1969 /* Deregister for router-id, interfaces, redistributed routes. */
1970 zclient_send_dereg_requests(zclient, bgp->vrf_id);
1971 }
1972
1973 void bgp_zebra_initiate_radv(struct bgp *bgp, struct peer *peer)
1974 {
1975 uint32_t ra_interval = BGP_UNNUM_DEFAULT_RA_INTERVAL;
1976
1977 /* Don't try to initiate if we're not connected to Zebra */
1978 if (zclient->sock < 0)
1979 return;
1980
1981 if (BGP_DEBUG(zebra, ZEBRA))
1982 zlog_debug("%u: Initiating RA for peer %s", bgp->vrf_id,
1983 peer->host);
1984
1985 /*
1986 * If unnumbered peer (peer->ifp) call thru zapi to start RAs.
1987 * If we don't have an ifp pointer, call function to find the
1988 * ifps for a numbered enhe peer to turn RAs on.
1989 */
1990 peer->ifp ? zclient_send_interface_radv_req(zclient, bgp->vrf_id,
1991 peer->ifp, 1, ra_interval)
1992 : bgp_nht_reg_enhe_cap_intfs(peer);
1993 }
1994
1995 void bgp_zebra_terminate_radv(struct bgp *bgp, struct peer *peer)
1996 {
1997 /* Don't try to terminate if we're not connected to Zebra */
1998 if (zclient->sock < 0)
1999 return;
2000
2001 if (BGP_DEBUG(zebra, ZEBRA))
2002 zlog_debug("%u: Terminating RA for peer %s", bgp->vrf_id,
2003 peer->host);
2004
2005 /*
2006 * If unnumbered peer (peer->ifp) call thru zapi to stop RAs.
2007 * If we don't have an ifp pointer, call function to find the
2008 * ifps for a numbered enhe peer to turn RAs off.
2009 */
2010 peer->ifp ? zclient_send_interface_radv_req(zclient, bgp->vrf_id,
2011 peer->ifp, 0, 0)
2012 : bgp_nht_dereg_enhe_cap_intfs(peer);
2013 }
2014
2015 int bgp_zebra_advertise_subnet(struct bgp *bgp, int advertise, vni_t vni)
2016 {
2017 struct stream *s = NULL;
2018
2019 /* Check socket. */
2020 if (!zclient || zclient->sock < 0)
2021 return 0;
2022
2023 /* Don't try to register if Zebra doesn't know of this instance. */
2024 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
2025 if (BGP_DEBUG(zebra, ZEBRA))
2026 zlog_debug(
2027 "%s: No zebra instance to talk to, cannot advertise subnet",
2028 __func__);
2029 return 0;
2030 }
2031
2032 s = zclient->obuf;
2033 stream_reset(s);
2034
2035 zclient_create_header(s, ZEBRA_ADVERTISE_SUBNET, bgp->vrf_id);
2036 stream_putc(s, advertise);
2037 stream_put3(s, vni);
2038 stream_putw_at(s, 0, stream_get_endp(s));
2039
2040 return zclient_send_message(zclient);
2041 }
2042
2043 int bgp_zebra_advertise_svi_macip(struct bgp *bgp, int advertise, vni_t vni)
2044 {
2045 struct stream *s = NULL;
2046
2047 /* Check socket. */
2048 if (!zclient || zclient->sock < 0)
2049 return 0;
2050
2051 /* Don't try to register if Zebra doesn't know of this instance. */
2052 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp))
2053 return 0;
2054
2055 s = zclient->obuf;
2056 stream_reset(s);
2057
2058 zclient_create_header(s, ZEBRA_ADVERTISE_SVI_MACIP, bgp->vrf_id);
2059 stream_putc(s, advertise);
2060 stream_putl(s, vni);
2061 stream_putw_at(s, 0, stream_get_endp(s));
2062
2063 return zclient_send_message(zclient);
2064 }
2065
2066 int bgp_zebra_advertise_gw_macip(struct bgp *bgp, int advertise, vni_t vni)
2067 {
2068 struct stream *s = NULL;
2069
2070 /* Check socket. */
2071 if (!zclient || zclient->sock < 0)
2072 return 0;
2073
2074 /* Don't try to register if Zebra doesn't know of this instance. */
2075 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
2076 if (BGP_DEBUG(zebra, ZEBRA))
2077 zlog_debug(
2078 "%s: No zebra instance to talk to, not installing gw_macip",
2079 __func__);
2080 return 0;
2081 }
2082
2083 s = zclient->obuf;
2084 stream_reset(s);
2085
2086 zclient_create_header(s, ZEBRA_ADVERTISE_DEFAULT_GW, bgp->vrf_id);
2087 stream_putc(s, advertise);
2088 stream_putl(s, vni);
2089 stream_putw_at(s, 0, stream_get_endp(s));
2090
2091 return zclient_send_message(zclient);
2092 }
2093
2094 int bgp_zebra_vxlan_flood_control(struct bgp *bgp,
2095 enum vxlan_flood_control flood_ctrl)
2096 {
2097 struct stream *s;
2098
2099 /* Check socket. */
2100 if (!zclient || zclient->sock < 0)
2101 return 0;
2102
2103 /* Don't try to register if Zebra doesn't know of this instance. */
2104 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
2105 if (BGP_DEBUG(zebra, ZEBRA))
2106 zlog_debug(
2107 "%s: No zebra instance to talk to, not installing all vni",
2108 __func__);
2109 return 0;
2110 }
2111
2112 s = zclient->obuf;
2113 stream_reset(s);
2114
2115 zclient_create_header(s, ZEBRA_VXLAN_FLOOD_CONTROL, bgp->vrf_id);
2116 stream_putc(s, flood_ctrl);
2117 stream_putw_at(s, 0, stream_get_endp(s));
2118
2119 return zclient_send_message(zclient);
2120 }
2121
2122 int bgp_zebra_advertise_all_vni(struct bgp *bgp, int advertise)
2123 {
2124 struct stream *s;
2125
2126 /* Check socket. */
2127 if (!zclient || zclient->sock < 0)
2128 return 0;
2129
2130 /* Don't try to register if Zebra doesn't know of this instance. */
2131 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp))
2132 return 0;
2133
2134 s = zclient->obuf;
2135 stream_reset(s);
2136
2137 zclient_create_header(s, ZEBRA_ADVERTISE_ALL_VNI, bgp->vrf_id);
2138 stream_putc(s, advertise);
2139 /* Also inform current BUM handling setting. This is really
2140 * relevant only when 'advertise' is set.
2141 */
2142 stream_putc(s, bgp->vxlan_flood_ctrl);
2143 stream_putw_at(s, 0, stream_get_endp(s));
2144
2145 return zclient_send_message(zclient);
2146 }
2147
2148 int bgp_zebra_dup_addr_detection(struct bgp *bgp)
2149 {
2150 struct stream *s;
2151
2152 /* Check socket. */
2153 if (!zclient || zclient->sock < 0)
2154 return 0;
2155
2156 /* Don't try to register if Zebra doesn't know of this instance. */
2157 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp))
2158 return 0;
2159
2160 if (BGP_DEBUG(zebra, ZEBRA))
2161 zlog_debug("dup addr detect %s max_moves %u time %u freeze %s freeze_time %u",
2162 bgp->evpn_info->dup_addr_detect ?
2163 "enable" : "disable",
2164 bgp->evpn_info->dad_max_moves,
2165 bgp->evpn_info->dad_time,
2166 bgp->evpn_info->dad_freeze ?
2167 "enable" : "disable",
2168 bgp->evpn_info->dad_freeze_time);
2169
2170 s = zclient->obuf;
2171 stream_reset(s);
2172 zclient_create_header(s, ZEBRA_DUPLICATE_ADDR_DETECTION,
2173 bgp->vrf_id);
2174 stream_putl(s, bgp->evpn_info->dup_addr_detect);
2175 stream_putl(s, bgp->evpn_info->dad_time);
2176 stream_putl(s, bgp->evpn_info->dad_max_moves);
2177 stream_putl(s, bgp->evpn_info->dad_freeze);
2178 stream_putl(s, bgp->evpn_info->dad_freeze_time);
2179 stream_putw_at(s, 0, stream_get_endp(s));
2180
2181 return zclient_send_message(zclient);
2182 }
2183
2184 static int rule_notify_owner(ZAPI_CALLBACK_ARGS)
2185 {
2186 uint32_t seqno, priority, unique;
2187 enum zapi_rule_notify_owner note;
2188 struct bgp_pbr_action *bgp_pbra;
2189 struct bgp_pbr_rule *bgp_pbr = NULL;
2190 char ifname[INTERFACE_NAMSIZ + 1];
2191
2192 if (!zapi_rule_notify_decode(zclient->ibuf, &seqno, &priority, &unique,
2193 ifname, &note))
2194 return -1;
2195
2196 bgp_pbra = bgp_pbr_action_rule_lookup(vrf_id, unique);
2197 if (!bgp_pbra) {
2198 /* look in bgp pbr rule */
2199 bgp_pbr = bgp_pbr_rule_lookup(vrf_id, unique);
2200 if (!bgp_pbr && note != ZAPI_RULE_REMOVED) {
2201 if (BGP_DEBUG(zebra, ZEBRA))
2202 zlog_debug("%s: Fail to look BGP rule (%u)",
2203 __func__, unique);
2204 return 0;
2205 }
2206 }
2207
2208 switch (note) {
2209 case ZAPI_RULE_FAIL_INSTALL:
2210 if (BGP_DEBUG(zebra, ZEBRA))
2211 zlog_debug("%s: Received RULE_FAIL_INSTALL", __func__);
2212 if (bgp_pbra) {
2213 bgp_pbra->installed = false;
2214 bgp_pbra->install_in_progress = false;
2215 } else {
2216 bgp_pbr->installed = false;
2217 bgp_pbr->install_in_progress = false;
2218 }
2219 break;
2220 case ZAPI_RULE_INSTALLED:
2221 if (bgp_pbra) {
2222 bgp_pbra->installed = true;
2223 bgp_pbra->install_in_progress = false;
2224 } else {
2225 struct bgp_path_info *path;
2226 struct bgp_path_info_extra *extra;
2227
2228 bgp_pbr->installed = true;
2229 bgp_pbr->install_in_progress = false;
2230 bgp_pbr->action->refcnt++;
2231 /* link bgp_info to bgp_pbr */
2232 path = (struct bgp_path_info *)bgp_pbr->path;
2233 extra = bgp_path_info_extra_get(path);
2234 listnode_add_force(&extra->bgp_fs_iprule,
2235 bgp_pbr);
2236 }
2237 if (BGP_DEBUG(zebra, ZEBRA))
2238 zlog_debug("%s: Received RULE_INSTALLED", __func__);
2239 break;
2240 case ZAPI_RULE_FAIL_REMOVE:
2241 case ZAPI_RULE_REMOVED:
2242 if (BGP_DEBUG(zebra, ZEBRA))
2243 zlog_debug("%s: Received RULE REMOVED", __func__);
2244 break;
2245 }
2246
2247 return 0;
2248 }
2249
2250 static int ipset_notify_owner(ZAPI_CALLBACK_ARGS)
2251 {
2252 uint32_t unique;
2253 enum zapi_ipset_notify_owner note;
2254 struct bgp_pbr_match *bgp_pbim;
2255
2256 if (!zapi_ipset_notify_decode(zclient->ibuf,
2257 &unique,
2258 &note))
2259 return -1;
2260
2261 bgp_pbim = bgp_pbr_match_ipset_lookup(vrf_id, unique);
2262 if (!bgp_pbim) {
2263 if (BGP_DEBUG(zebra, ZEBRA))
2264 zlog_debug("%s: Fail to look BGP match ( %u, ID %u)",
2265 __func__, note, unique);
2266 return 0;
2267 }
2268
2269 switch (note) {
2270 case ZAPI_IPSET_FAIL_INSTALL:
2271 if (BGP_DEBUG(zebra, ZEBRA))
2272 zlog_debug("%s: Received IPSET_FAIL_INSTALL", __func__);
2273 bgp_pbim->installed = false;
2274 bgp_pbim->install_in_progress = false;
2275 break;
2276 case ZAPI_IPSET_INSTALLED:
2277 bgp_pbim->installed = true;
2278 bgp_pbim->install_in_progress = false;
2279 if (BGP_DEBUG(zebra, ZEBRA))
2280 zlog_debug("%s: Received IPSET_INSTALLED", __func__);
2281 break;
2282 case ZAPI_IPSET_FAIL_REMOVE:
2283 case ZAPI_IPSET_REMOVED:
2284 if (BGP_DEBUG(zebra, ZEBRA))
2285 zlog_debug("%s: Received IPSET REMOVED", __func__);
2286 break;
2287 }
2288
2289 return 0;
2290 }
2291
2292 static int ipset_entry_notify_owner(ZAPI_CALLBACK_ARGS)
2293 {
2294 uint32_t unique;
2295 char ipset_name[ZEBRA_IPSET_NAME_SIZE];
2296 enum zapi_ipset_entry_notify_owner note;
2297 struct bgp_pbr_match_entry *bgp_pbime;
2298
2299 if (!zapi_ipset_entry_notify_decode(
2300 zclient->ibuf,
2301 &unique,
2302 ipset_name,
2303 &note))
2304 return -1;
2305 bgp_pbime = bgp_pbr_match_ipset_entry_lookup(vrf_id,
2306 ipset_name,
2307 unique);
2308 if (!bgp_pbime) {
2309 if (BGP_DEBUG(zebra, ZEBRA))
2310 zlog_debug(
2311 "%s: Fail to look BGP match entry (%u, ID %u)",
2312 __func__, note, unique);
2313 return 0;
2314 }
2315
2316 switch (note) {
2317 case ZAPI_IPSET_ENTRY_FAIL_INSTALL:
2318 if (BGP_DEBUG(zebra, ZEBRA))
2319 zlog_debug("%s: Received IPSET_ENTRY_FAIL_INSTALL",
2320 __func__);
2321 bgp_pbime->installed = false;
2322 bgp_pbime->install_in_progress = false;
2323 break;
2324 case ZAPI_IPSET_ENTRY_INSTALLED:
2325 {
2326 struct bgp_path_info *path;
2327 struct bgp_path_info_extra *extra;
2328
2329 bgp_pbime->installed = true;
2330 bgp_pbime->install_in_progress = false;
2331 if (BGP_DEBUG(zebra, ZEBRA))
2332 zlog_debug("%s: Received IPSET_ENTRY_INSTALLED",
2333 __func__);
2334 /* link bgp_path_info to bpme */
2335 path = (struct bgp_path_info *)bgp_pbime->path;
2336 extra = bgp_path_info_extra_get(path);
2337 listnode_add_force(&extra->bgp_fs_pbr, bgp_pbime);
2338 }
2339 break;
2340 case ZAPI_IPSET_ENTRY_FAIL_REMOVE:
2341 case ZAPI_IPSET_ENTRY_REMOVED:
2342 if (BGP_DEBUG(zebra, ZEBRA))
2343 zlog_debug("%s: Received IPSET_ENTRY_REMOVED",
2344 __func__);
2345 break;
2346 }
2347 return 0;
2348 }
2349
2350 static int iptable_notify_owner(ZAPI_CALLBACK_ARGS)
2351 {
2352 uint32_t unique;
2353 enum zapi_iptable_notify_owner note;
2354 struct bgp_pbr_match *bgpm;
2355
2356 if (!zapi_iptable_notify_decode(
2357 zclient->ibuf,
2358 &unique,
2359 &note))
2360 return -1;
2361 bgpm = bgp_pbr_match_iptable_lookup(vrf_id, unique);
2362 if (!bgpm) {
2363 if (BGP_DEBUG(zebra, ZEBRA))
2364 zlog_debug("%s: Fail to look BGP iptable (%u %u)",
2365 __func__, note, unique);
2366 return 0;
2367 }
2368 switch (note) {
2369 case ZAPI_IPTABLE_FAIL_INSTALL:
2370 if (BGP_DEBUG(zebra, ZEBRA))
2371 zlog_debug("%s: Received IPTABLE_FAIL_INSTALL",
2372 __func__);
2373 bgpm->installed_in_iptable = false;
2374 bgpm->install_iptable_in_progress = false;
2375 break;
2376 case ZAPI_IPTABLE_INSTALLED:
2377 bgpm->installed_in_iptable = true;
2378 bgpm->install_iptable_in_progress = false;
2379 if (BGP_DEBUG(zebra, ZEBRA))
2380 zlog_debug("%s: Received IPTABLE_INSTALLED", __func__);
2381 bgpm->action->refcnt++;
2382 break;
2383 case ZAPI_IPTABLE_FAIL_REMOVE:
2384 case ZAPI_IPTABLE_REMOVED:
2385 if (BGP_DEBUG(zebra, ZEBRA))
2386 zlog_debug("%s: Received IPTABLE REMOVED", __func__);
2387 break;
2388 }
2389 return 0;
2390 }
2391
2392 /* Process route notification messages from RIB */
2393 static int bgp_zebra_route_notify_owner(int command, struct zclient *zclient,
2394 zebra_size_t length, vrf_id_t vrf_id)
2395 {
2396 struct prefix p;
2397 enum zapi_route_notify_owner note;
2398 uint32_t table_id;
2399 afi_t afi;
2400 safi_t safi;
2401 struct bgp_dest *dest;
2402 struct bgp *bgp;
2403 struct bgp_path_info *pi, *new_select;
2404
2405 if (!zapi_route_notify_decode(zclient->ibuf, &p, &table_id, &note,
2406 &afi, &safi)) {
2407 zlog_err("%s : error in msg decode", __func__);
2408 return -1;
2409 }
2410
2411 /* Get the bgp instance */
2412 bgp = bgp_lookup_by_vrf_id(vrf_id);
2413 if (!bgp) {
2414 flog_err(EC_BGP_INVALID_BGP_INSTANCE,
2415 "%s : bgp instance not found vrf %d", __func__,
2416 vrf_id);
2417 return -1;
2418 }
2419
2420 /* Find the bgp route node */
2421 dest = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi, &p,
2422 &bgp->vrf_prd);
2423 if (!dest)
2424 return -1;
2425
2426 bgp_dest_unlock_node(dest);
2427
2428 switch (note) {
2429 case ZAPI_ROUTE_INSTALLED:
2430 new_select = NULL;
2431 /* Clear the flags so that route can be processed */
2432 if (CHECK_FLAG(dest->flags,
2433 BGP_NODE_FIB_INSTALL_PENDING)) {
2434 UNSET_FLAG(dest->flags,
2435 BGP_NODE_FIB_INSTALL_PENDING);
2436 SET_FLAG(dest->flags, BGP_NODE_FIB_INSTALLED);
2437 if (BGP_DEBUG(zebra, ZEBRA))
2438 zlog_debug("route %pRN : INSTALLED", dest);
2439 /* Find the best route */
2440 for (pi = dest->info; pi; pi = pi->next) {
2441 /* Process aggregate route */
2442 bgp_aggregate_increment(bgp, &p, pi,
2443 afi, safi);
2444 if (CHECK_FLAG(pi->flags,
2445 BGP_PATH_SELECTED))
2446 new_select = pi;
2447 }
2448 /* Advertise the route */
2449 if (new_select)
2450 group_announce_route(bgp, afi, safi,
2451 dest, new_select);
2452 else {
2453 flog_err(EC_BGP_INVALID_ROUTE,
2454 "selected route %pRN not found",
2455 dest);
2456 return -1;
2457 }
2458 }
2459 break;
2460 case ZAPI_ROUTE_REMOVED:
2461 /* Route deleted from dataplane, reset the installed flag
2462 * so that route can be reinstalled when client sends
2463 * route add later
2464 */
2465 UNSET_FLAG(dest->flags, BGP_NODE_FIB_INSTALLED);
2466 if (BGP_DEBUG(zebra, ZEBRA))
2467 zlog_debug("route %pRN: Removed from Fib", dest);
2468 break;
2469 case ZAPI_ROUTE_FAIL_INSTALL:
2470 if (BGP_DEBUG(zebra, ZEBRA))
2471 zlog_debug("route: %pRN Failed to Install into Fib",
2472 dest);
2473 /* Error will be logged by zebra module */
2474 break;
2475 case ZAPI_ROUTE_BETTER_ADMIN_WON:
2476 if (BGP_DEBUG(zebra, ZEBRA))
2477 zlog_debug("route: %pRN removed due to better admin won",
2478 dest);
2479 /* No action required */
2480 break;
2481 case ZAPI_ROUTE_REMOVE_FAIL:
2482 zlog_warn("%s: Route %pRN failure to remove",
2483 __func__, dest);
2484 break;
2485 }
2486 return 0;
2487 }
2488
2489 /* this function is used to forge ip rule,
2490 * - either for iptable/ipset using fwmark id
2491 * - or for sample ip rule cmd
2492 */
2493 static void bgp_encode_pbr_rule_action(struct stream *s,
2494 struct bgp_pbr_action *pbra,
2495 struct bgp_pbr_rule *pbr)
2496 {
2497 struct prefix pfx;
2498 uint8_t fam = AF_INET;
2499 char ifname[INTERFACE_NAMSIZ];
2500
2501 if (pbra->nh.type == NEXTHOP_TYPE_IPV6)
2502 fam = AF_INET6;
2503 stream_putl(s, 0); /* seqno unused */
2504 if (pbr)
2505 stream_putl(s, pbr->priority);
2506 else
2507 stream_putl(s, 0);
2508 /* ruleno unused - priority change
2509 * ruleno permits distinguishing various FS PBR entries
2510 * - FS PBR entries based on ipset/iptables
2511 * - FS PBR entries based on iprule
2512 * the latter may contain default routing information injected by FS
2513 */
2514 if (pbr)
2515 stream_putl(s, pbr->unique);
2516 else
2517 stream_putl(s, pbra->unique);
2518 if (pbr && pbr->flags & MATCH_IP_SRC_SET)
2519 memcpy(&pfx, &(pbr->src), sizeof(struct prefix));
2520 else {
2521 memset(&pfx, 0, sizeof(pfx));
2522 pfx.family = fam;
2523 }
2524 stream_putc(s, pfx.family);
2525 stream_putc(s, pfx.prefixlen);
2526 stream_put(s, &pfx.u.prefix, prefix_blen(&pfx));
2527
2528 stream_putw(s, 0); /* src port */
2529
2530 if (pbr && pbr->flags & MATCH_IP_DST_SET)
2531 memcpy(&pfx, &(pbr->dst), sizeof(struct prefix));
2532 else {
2533 memset(&pfx, 0, sizeof(pfx));
2534 pfx.family = fam;
2535 }
2536 stream_putc(s, pfx.family);
2537 stream_putc(s, pfx.prefixlen);
2538 stream_put(s, &pfx.u.prefix, prefix_blen(&pfx));
2539
2540 stream_putw(s, 0); /* dst port */
2541 stream_putc(s, 0); /* dsfield */
2542 /* if pbr present, fwmark is not used */
2543 if (pbr)
2544 stream_putl(s, 0);
2545 else
2546 stream_putl(s, pbra->fwmark); /* fwmark */
2547
2548 stream_putl(s, pbra->table_id);
2549
2550 memset(ifname, 0, sizeof(ifname));
2551 stream_put(s, ifname, INTERFACE_NAMSIZ); /* ifname unused */
2552 }
2553
2554 static void bgp_encode_pbr_ipset_match(struct stream *s,
2555 struct bgp_pbr_match *pbim)
2556 {
2557 stream_putl(s, pbim->unique);
2558 stream_putl(s, pbim->type);
2559 stream_putc(s, pbim->family);
2560 stream_put(s, pbim->ipset_name,
2561 ZEBRA_IPSET_NAME_SIZE);
2562 }
2563
2564 static void bgp_encode_pbr_ipset_entry_match(struct stream *s,
2565 struct bgp_pbr_match_entry *pbime)
2566 {
2567 stream_putl(s, pbime->unique);
2568 /* check that back pointer is not null */
2569 stream_put(s, pbime->backpointer->ipset_name,
2570 ZEBRA_IPSET_NAME_SIZE);
2571
2572 stream_putc(s, pbime->src.family);
2573 stream_putc(s, pbime->src.prefixlen);
2574 stream_put(s, &pbime->src.u.prefix, prefix_blen(&pbime->src));
2575
2576 stream_putc(s, pbime->dst.family);
2577 stream_putc(s, pbime->dst.prefixlen);
2578 stream_put(s, &pbime->dst.u.prefix, prefix_blen(&pbime->dst));
2579
2580 stream_putw(s, pbime->src_port_min);
2581 stream_putw(s, pbime->src_port_max);
2582 stream_putw(s, pbime->dst_port_min);
2583 stream_putw(s, pbime->dst_port_max);
2584 stream_putc(s, pbime->proto);
2585 }
2586
2587 static void bgp_encode_pbr_iptable_match(struct stream *s,
2588 struct bgp_pbr_action *bpa,
2589 struct bgp_pbr_match *pbm)
2590 {
2591 stream_putl(s, pbm->unique2);
2592
2593 stream_putl(s, pbm->type);
2594
2595 stream_putl(s, pbm->flags);
2596
2597 /* TODO: correlate with what is contained
2598 * into bgp_pbr_action.
2599 * currently only forward supported
2600 */
2601 if (bpa->nh.type == NEXTHOP_TYPE_BLACKHOLE)
2602 stream_putl(s, ZEBRA_IPTABLES_DROP);
2603 else
2604 stream_putl(s, ZEBRA_IPTABLES_FORWARD);
2605 stream_putl(s, bpa->fwmark);
2606 stream_put(s, pbm->ipset_name,
2607 ZEBRA_IPSET_NAME_SIZE);
2608 stream_putc(s, pbm->family);
2609 stream_putw(s, pbm->pkt_len_min);
2610 stream_putw(s, pbm->pkt_len_max);
2611 stream_putw(s, pbm->tcp_flags);
2612 stream_putw(s, pbm->tcp_mask_flags);
2613 stream_putc(s, pbm->dscp_value);
2614 stream_putc(s, pbm->fragment);
2615 stream_putc(s, pbm->protocol);
2616 stream_putw(s, pbm->flow_label);
2617 }
2618
2619 /* BGP has established connection with Zebra. */
2620 static void bgp_zebra_connected(struct zclient *zclient)
2621 {
2622 struct bgp *bgp;
2623
2624 zclient_num_connects++; /* increment even if not responding */
2625
2626 /* Send the client registration */
2627 bfd_client_sendmsg(zclient, ZEBRA_BFD_CLIENT_REGISTER, VRF_DEFAULT);
2628
2629 /* At this point, we may or may not have BGP instances configured, but
2630 * we're only interested in the default VRF (others wouldn't have learnt
2631 * the VRF from Zebra yet.)
2632 */
2633 bgp = bgp_get_default();
2634 if (!bgp)
2635 return;
2636
2637 bgp_zebra_instance_register(bgp);
2638
2639 /* tell label pool that zebra is connected */
2640 bgp_lp_event_zebra_up();
2641
2642 /* TODO - What if we have peers and networks configured, do we have to
2643 * kick-start them?
2644 */
2645 BGP_GR_ROUTER_DETECT_AND_SEND_CAPABILITY_TO_ZEBRA(bgp, bgp->peer);
2646 }
2647
2648 static int bgp_zebra_process_local_es_add(ZAPI_CALLBACK_ARGS)
2649 {
2650 esi_t esi;
2651 struct bgp *bgp = NULL;
2652 struct stream *s = NULL;
2653 char buf[ESI_STR_LEN];
2654 struct in_addr originator_ip;
2655 uint8_t active;
2656 uint8_t bypass;
2657 uint16_t df_pref;
2658
2659 bgp = bgp_lookup_by_vrf_id(vrf_id);
2660 if (!bgp)
2661 return 0;
2662
2663 s = zclient->ibuf;
2664 stream_get(&esi, s, sizeof(esi_t));
2665 originator_ip.s_addr = stream_get_ipv4(s);
2666 active = stream_getc(s);
2667 df_pref = stream_getw(s);
2668 bypass = stream_getc(s);
2669
2670 if (BGP_DEBUG(zebra, ZEBRA))
2671 zlog_debug(
2672 "Rx add ESI %s originator-ip %pI4 active %u df_pref %u %s",
2673 esi_to_str(&esi, buf, sizeof(buf)), &originator_ip,
2674 active, df_pref, bypass ? "bypass" : "");
2675
2676 bgp_evpn_local_es_add(bgp, &esi, originator_ip, active, df_pref,
2677 !!bypass);
2678
2679 return 0;
2680 }
2681
2682 static int bgp_zebra_process_local_es_del(ZAPI_CALLBACK_ARGS)
2683 {
2684 esi_t esi;
2685 struct bgp *bgp = NULL;
2686 struct stream *s = NULL;
2687 char buf[ESI_STR_LEN];
2688
2689 memset(&esi, 0, sizeof(esi_t));
2690 bgp = bgp_lookup_by_vrf_id(vrf_id);
2691 if (!bgp)
2692 return 0;
2693
2694 s = zclient->ibuf;
2695 stream_get(&esi, s, sizeof(esi_t));
2696
2697 if (BGP_DEBUG(zebra, ZEBRA))
2698 zlog_debug("Rx del ESI %s",
2699 esi_to_str(&esi, buf, sizeof(buf)));
2700
2701 bgp_evpn_local_es_del(bgp, &esi);
2702
2703 return 0;
2704 }
2705
2706 static int bgp_zebra_process_local_es_evi(ZAPI_CALLBACK_ARGS)
2707 {
2708 esi_t esi;
2709 vni_t vni;
2710 struct bgp *bgp;
2711 struct stream *s;
2712 char buf[ESI_STR_LEN];
2713
2714 bgp = bgp_lookup_by_vrf_id(vrf_id);
2715 if (!bgp)
2716 return 0;
2717
2718 s = zclient->ibuf;
2719 stream_get(&esi, s, sizeof(esi_t));
2720 vni = stream_getl(s);
2721
2722 if (BGP_DEBUG(zebra, ZEBRA))
2723 zlog_debug("Rx %s ESI %s VNI %u",
2724 ZEBRA_VNI_ADD ? "add" : "del",
2725 esi_to_str(&esi, buf, sizeof(buf)), vni);
2726
2727 if (cmd == ZEBRA_LOCAL_ES_EVI_ADD)
2728 bgp_evpn_local_es_evi_add(bgp, &esi, vni);
2729 else
2730 bgp_evpn_local_es_evi_del(bgp, &esi, vni);
2731
2732 return 0;
2733 }
2734
2735 static int bgp_zebra_process_local_l3vni(ZAPI_CALLBACK_ARGS)
2736 {
2737 int filter = 0;
2738 vni_t l3vni = 0;
2739 struct ethaddr svi_rmac, vrr_rmac = {.octet = {0} };
2740 struct in_addr originator_ip;
2741 struct stream *s;
2742 ifindex_t svi_ifindex;
2743 bool is_anycast_mac = false;
2744
2745 memset(&svi_rmac, 0, sizeof(struct ethaddr));
2746 memset(&originator_ip, 0, sizeof(struct in_addr));
2747 s = zclient->ibuf;
2748 l3vni = stream_getl(s);
2749 if (cmd == ZEBRA_L3VNI_ADD) {
2750 stream_get(&svi_rmac, s, sizeof(struct ethaddr));
2751 originator_ip.s_addr = stream_get_ipv4(s);
2752 stream_get(&filter, s, sizeof(int));
2753 svi_ifindex = stream_getl(s);
2754 stream_get(&vrr_rmac, s, sizeof(struct ethaddr));
2755 is_anycast_mac = stream_getl(s);
2756
2757 if (BGP_DEBUG(zebra, ZEBRA))
2758 zlog_debug(
2759 "Rx L3-VNI ADD VRF %s VNI %u RMAC svi-mac %pEA vrr-mac %pEA filter %s svi-if %u",
2760 vrf_id_to_name(vrf_id), l3vni, &svi_rmac,
2761 &vrr_rmac,
2762 filter ? "prefix-routes-only" : "none",
2763 svi_ifindex);
2764
2765 bgp_evpn_local_l3vni_add(l3vni, vrf_id, &svi_rmac, &vrr_rmac,
2766 originator_ip, filter, svi_ifindex,
2767 is_anycast_mac);
2768 } else {
2769 if (BGP_DEBUG(zebra, ZEBRA))
2770 zlog_debug("Rx L3-VNI DEL VRF %s VNI %u",
2771 vrf_id_to_name(vrf_id), l3vni);
2772
2773 bgp_evpn_local_l3vni_del(l3vni, vrf_id);
2774 }
2775
2776 return 0;
2777 }
2778
2779 static int bgp_zebra_process_local_vni(ZAPI_CALLBACK_ARGS)
2780 {
2781 struct stream *s;
2782 vni_t vni;
2783 struct bgp *bgp;
2784 struct in_addr vtep_ip = {INADDR_ANY};
2785 vrf_id_t tenant_vrf_id = VRF_DEFAULT;
2786 struct in_addr mcast_grp = {INADDR_ANY};
2787
2788 s = zclient->ibuf;
2789 vni = stream_getl(s);
2790 if (cmd == ZEBRA_VNI_ADD) {
2791 vtep_ip.s_addr = stream_get_ipv4(s);
2792 stream_get(&tenant_vrf_id, s, sizeof(vrf_id_t));
2793 mcast_grp.s_addr = stream_get_ipv4(s);
2794 }
2795
2796 bgp = bgp_lookup_by_vrf_id(vrf_id);
2797 if (!bgp)
2798 return 0;
2799
2800 if (BGP_DEBUG(zebra, ZEBRA))
2801 zlog_debug("Rx VNI %s VRF %s VNI %u tenant-vrf %s",
2802 (cmd == ZEBRA_VNI_ADD) ? "add" : "del",
2803 vrf_id_to_name(vrf_id), vni,
2804 vrf_id_to_name(tenant_vrf_id));
2805
2806 if (cmd == ZEBRA_VNI_ADD)
2807 return bgp_evpn_local_vni_add(
2808 bgp, vni,
2809 vtep_ip.s_addr != INADDR_ANY ? vtep_ip : bgp->router_id,
2810 tenant_vrf_id, mcast_grp);
2811 else
2812 return bgp_evpn_local_vni_del(bgp, vni);
2813 }
2814
2815 static int bgp_zebra_process_local_macip(ZAPI_CALLBACK_ARGS)
2816 {
2817 struct stream *s;
2818 vni_t vni;
2819 struct bgp *bgp;
2820 struct ethaddr mac;
2821 struct ipaddr ip;
2822 int ipa_len;
2823 uint8_t flags = 0;
2824 uint32_t seqnum = 0;
2825 int state = 0;
2826 char buf2[ESI_STR_LEN];
2827 esi_t esi;
2828
2829 memset(&ip, 0, sizeof(ip));
2830 s = zclient->ibuf;
2831 vni = stream_getl(s);
2832 stream_get(&mac.octet, s, ETH_ALEN);
2833 ipa_len = stream_getl(s);
2834 if (ipa_len != 0 && ipa_len != IPV4_MAX_BYTELEN
2835 && ipa_len != IPV6_MAX_BYTELEN) {
2836 flog_err(EC_BGP_MACIP_LEN,
2837 "%u:Recv MACIP %s with invalid IP addr length %d",
2838 vrf_id, (cmd == ZEBRA_MACIP_ADD) ? "Add" : "Del",
2839 ipa_len);
2840 return -1;
2841 }
2842
2843 if (ipa_len) {
2844 ip.ipa_type =
2845 (ipa_len == IPV4_MAX_BYTELEN) ? IPADDR_V4 : IPADDR_V6;
2846 stream_get(&ip.ip.addr, s, ipa_len);
2847 }
2848 if (cmd == ZEBRA_MACIP_ADD) {
2849 flags = stream_getc(s);
2850 seqnum = stream_getl(s);
2851 stream_get(&esi, s, sizeof(esi_t));
2852 } else {
2853 state = stream_getl(s);
2854 memset(&esi, 0, sizeof(esi_t));
2855 }
2856
2857 bgp = bgp_lookup_by_vrf_id(vrf_id);
2858 if (!bgp)
2859 return 0;
2860
2861 if (BGP_DEBUG(zebra, ZEBRA))
2862 zlog_debug(
2863 "%u:Recv MACIP %s f 0x%x MAC %pEA IP %pIA VNI %u seq %u state %d ESI %s",
2864 vrf_id, (cmd == ZEBRA_MACIP_ADD) ? "Add" : "Del", flags,
2865 &mac, &ip, vni, seqnum, state,
2866 esi_to_str(&esi, buf2, sizeof(buf2)));
2867
2868 if (cmd == ZEBRA_MACIP_ADD)
2869 return bgp_evpn_local_macip_add(bgp, vni, &mac, &ip,
2870 flags, seqnum, &esi);
2871 else
2872 return bgp_evpn_local_macip_del(bgp, vni, &mac, &ip, state);
2873 }
2874
2875 static void bgp_zebra_process_local_ip_prefix(ZAPI_CALLBACK_ARGS)
2876 {
2877 struct stream *s = NULL;
2878 struct bgp *bgp_vrf = NULL;
2879 struct prefix p;
2880
2881 memset(&p, 0, sizeof(struct prefix));
2882 s = zclient->ibuf;
2883 stream_get(&p, s, sizeof(struct prefix));
2884
2885 bgp_vrf = bgp_lookup_by_vrf_id(vrf_id);
2886 if (!bgp_vrf)
2887 return;
2888
2889 if (BGP_DEBUG(zebra, ZEBRA))
2890 zlog_debug("Recv prefix %pFX %s on vrf %s", &p,
2891 (cmd == ZEBRA_IP_PREFIX_ROUTE_ADD) ? "ADD" : "DEL",
2892 vrf_id_to_name(vrf_id));
2893
2894 if (cmd == ZEBRA_IP_PREFIX_ROUTE_ADD) {
2895
2896 if (p.family == AF_INET)
2897 bgp_evpn_advertise_type5_route(bgp_vrf, &p, NULL,
2898 AFI_IP, SAFI_UNICAST);
2899 else
2900 bgp_evpn_advertise_type5_route(bgp_vrf, &p, NULL,
2901 AFI_IP6, SAFI_UNICAST);
2902
2903 } else {
2904 if (p.family == AF_INET)
2905 bgp_evpn_withdraw_type5_route(bgp_vrf, &p, AFI_IP,
2906 SAFI_UNICAST);
2907 else
2908 bgp_evpn_withdraw_type5_route(bgp_vrf, &p, AFI_IP6,
2909 SAFI_UNICAST);
2910 }
2911 }
2912
2913 static void bgp_zebra_process_label_chunk(ZAPI_CALLBACK_ARGS)
2914 {
2915 struct stream *s = NULL;
2916 uint8_t response_keep;
2917 uint32_t first;
2918 uint32_t last;
2919 uint8_t proto;
2920 unsigned short instance;
2921
2922 s = zclient->ibuf;
2923 STREAM_GETC(s, proto);
2924 STREAM_GETW(s, instance);
2925 STREAM_GETC(s, response_keep);
2926 STREAM_GETL(s, first);
2927 STREAM_GETL(s, last);
2928
2929 if (zclient->redist_default != proto) {
2930 flog_err(EC_BGP_LM_ERROR, "Got LM msg with wrong proto %u",
2931 proto);
2932 return;
2933 }
2934 if (zclient->instance != instance) {
2935 flog_err(EC_BGP_LM_ERROR, "Got LM msg with wrong instance %u",
2936 proto);
2937 return;
2938 }
2939
2940 if (first > last ||
2941 first < MPLS_LABEL_UNRESERVED_MIN ||
2942 last > MPLS_LABEL_UNRESERVED_MAX) {
2943
2944 flog_err(EC_BGP_LM_ERROR, "%s: Invalid Label chunk: %u - %u",
2945 __func__, first, last);
2946 return;
2947 }
2948 if (BGP_DEBUG(zebra, ZEBRA)) {
2949 zlog_debug("Label Chunk assign: %u - %u (%u) ",
2950 first, last, response_keep);
2951 }
2952
2953 bgp_lp_event_chunk(response_keep, first, last);
2954
2955 stream_failure: /* for STREAM_GETX */
2956 return;
2957 }
2958
2959 extern struct zebra_privs_t bgpd_privs;
2960
2961 static int bgp_ifp_create(struct interface *ifp)
2962 {
2963 struct bgp *bgp;
2964
2965 if (BGP_DEBUG(zebra, ZEBRA))
2966 zlog_debug("Rx Intf add VRF %u IF %s", ifp->vrf_id, ifp->name);
2967
2968 bgp = bgp_lookup_by_vrf_id(ifp->vrf_id);
2969 if (!bgp)
2970 return 0;
2971
2972 bgp_mac_add_mac_entry(ifp);
2973
2974 bgp_update_interface_nbrs(bgp, ifp, ifp);
2975 hook_call(bgp_vrf_status_changed, bgp, ifp);
2976 return 0;
2977 }
2978
2979 void bgp_zebra_init(struct thread_master *master, unsigned short instance)
2980 {
2981 zclient_num_connects = 0;
2982
2983 if_zapi_callbacks(bgp_ifp_create, bgp_ifp_up,
2984 bgp_ifp_down, bgp_ifp_destroy);
2985
2986 /* Set default values. */
2987 zclient = zclient_new(master, &zclient_options_default);
2988 zclient_init(zclient, ZEBRA_ROUTE_BGP, 0, &bgpd_privs);
2989 zclient->zebra_connected = bgp_zebra_connected;
2990 zclient->router_id_update = bgp_router_id_update;
2991 zclient->interface_address_add = bgp_interface_address_add;
2992 zclient->interface_address_delete = bgp_interface_address_delete;
2993 zclient->interface_nbr_address_add = bgp_interface_nbr_address_add;
2994 zclient->interface_nbr_address_delete =
2995 bgp_interface_nbr_address_delete;
2996 zclient->interface_vrf_update = bgp_interface_vrf_update;
2997 zclient->redistribute_route_add = zebra_read_route;
2998 zclient->redistribute_route_del = zebra_read_route;
2999 zclient->nexthop_update = bgp_read_nexthop_update;
3000 zclient->import_check_update = bgp_read_import_check_update;
3001 zclient->fec_update = bgp_read_fec_update;
3002 zclient->local_es_add = bgp_zebra_process_local_es_add;
3003 zclient->local_es_del = bgp_zebra_process_local_es_del;
3004 zclient->local_vni_add = bgp_zebra_process_local_vni;
3005 zclient->local_es_evi_add = bgp_zebra_process_local_es_evi;
3006 zclient->local_es_evi_del = bgp_zebra_process_local_es_evi;
3007 zclient->local_vni_del = bgp_zebra_process_local_vni;
3008 zclient->local_macip_add = bgp_zebra_process_local_macip;
3009 zclient->local_macip_del = bgp_zebra_process_local_macip;
3010 zclient->local_l3vni_add = bgp_zebra_process_local_l3vni;
3011 zclient->local_l3vni_del = bgp_zebra_process_local_l3vni;
3012 zclient->local_ip_prefix_add = bgp_zebra_process_local_ip_prefix;
3013 zclient->local_ip_prefix_del = bgp_zebra_process_local_ip_prefix;
3014 zclient->label_chunk = bgp_zebra_process_label_chunk;
3015 zclient->rule_notify_owner = rule_notify_owner;
3016 zclient->ipset_notify_owner = ipset_notify_owner;
3017 zclient->ipset_entry_notify_owner = ipset_entry_notify_owner;
3018 zclient->iptable_notify_owner = iptable_notify_owner;
3019 zclient->route_notify_owner = bgp_zebra_route_notify_owner;
3020 zclient->instance = instance;
3021 }
3022
3023 void bgp_zebra_destroy(void)
3024 {
3025 if (zclient == NULL)
3026 return;
3027 zclient_stop(zclient);
3028 zclient_free(zclient);
3029 zclient = NULL;
3030 }
3031
3032 int bgp_zebra_num_connects(void)
3033 {
3034 return zclient_num_connects;
3035 }
3036
3037 void bgp_send_pbr_rule_action(struct bgp_pbr_action *pbra,
3038 struct bgp_pbr_rule *pbr,
3039 bool install)
3040 {
3041 struct stream *s;
3042
3043 if (pbra->install_in_progress && !pbr)
3044 return;
3045 if (pbr && pbr->install_in_progress)
3046 return;
3047 if (BGP_DEBUG(zebra, ZEBRA)) {
3048 if (pbr)
3049 zlog_debug("%s: table %d (ip rule) %d", __func__,
3050 pbra->table_id, install);
3051 else
3052 zlog_debug("%s: table %d fwmark %d %d", __func__,
3053 pbra->table_id, pbra->fwmark, install);
3054 }
3055 s = zclient->obuf;
3056 stream_reset(s);
3057
3058 zclient_create_header(s,
3059 install ? ZEBRA_RULE_ADD : ZEBRA_RULE_DELETE,
3060 VRF_DEFAULT);
3061 stream_putl(s, 1); /* send one pbr action */
3062
3063 bgp_encode_pbr_rule_action(s, pbra, pbr);
3064
3065 stream_putw_at(s, 0, stream_get_endp(s));
3066 if ((zclient_send_message(zclient) != ZCLIENT_SEND_FAILURE)
3067 && install) {
3068 if (!pbr)
3069 pbra->install_in_progress = true;
3070 else
3071 pbr->install_in_progress = true;
3072 }
3073 }
3074
3075 void bgp_send_pbr_ipset_match(struct bgp_pbr_match *pbrim, bool install)
3076 {
3077 struct stream *s;
3078
3079 if (pbrim->install_in_progress)
3080 return;
3081 if (BGP_DEBUG(zebra, ZEBRA))
3082 zlog_debug("%s: name %s type %d %d, ID %u", __func__,
3083 pbrim->ipset_name, pbrim->type, install,
3084 pbrim->unique);
3085 s = zclient->obuf;
3086 stream_reset(s);
3087
3088 zclient_create_header(s,
3089 install ? ZEBRA_IPSET_CREATE :
3090 ZEBRA_IPSET_DESTROY,
3091 VRF_DEFAULT);
3092
3093 stream_putl(s, 1); /* send one pbr action */
3094
3095 bgp_encode_pbr_ipset_match(s, pbrim);
3096
3097 stream_putw_at(s, 0, stream_get_endp(s));
3098 if ((zclient_send_message(zclient) != ZCLIENT_SEND_FAILURE) && install)
3099 pbrim->install_in_progress = true;
3100 }
3101
3102 void bgp_send_pbr_ipset_entry_match(struct bgp_pbr_match_entry *pbrime,
3103 bool install)
3104 {
3105 struct stream *s;
3106
3107 if (pbrime->install_in_progress)
3108 return;
3109 if (BGP_DEBUG(zebra, ZEBRA))
3110 zlog_debug("%s: name %s %d %d, ID %u", __func__,
3111 pbrime->backpointer->ipset_name, pbrime->unique,
3112 install, pbrime->unique);
3113 s = zclient->obuf;
3114 stream_reset(s);
3115
3116 zclient_create_header(s,
3117 install ? ZEBRA_IPSET_ENTRY_ADD :
3118 ZEBRA_IPSET_ENTRY_DELETE,
3119 VRF_DEFAULT);
3120
3121 stream_putl(s, 1); /* send one pbr action */
3122
3123 bgp_encode_pbr_ipset_entry_match(s, pbrime);
3124
3125 stream_putw_at(s, 0, stream_get_endp(s));
3126 if ((zclient_send_message(zclient) != ZCLIENT_SEND_FAILURE) && install)
3127 pbrime->install_in_progress = true;
3128 }
3129
3130 static void bgp_encode_pbr_interface_list(struct bgp *bgp, struct stream *s,
3131 uint8_t family)
3132 {
3133 struct bgp_pbr_config *bgp_pbr_cfg = bgp->bgp_pbr_cfg;
3134 struct bgp_pbr_interface_head *head;
3135 struct bgp_pbr_interface *pbr_if;
3136 struct interface *ifp;
3137
3138 if (!bgp_pbr_cfg)
3139 return;
3140 if (family == AF_INET)
3141 head = &(bgp_pbr_cfg->ifaces_by_name_ipv4);
3142 else
3143 head = &(bgp_pbr_cfg->ifaces_by_name_ipv6);
3144 RB_FOREACH (pbr_if, bgp_pbr_interface_head, head) {
3145 ifp = if_lookup_by_name(pbr_if->name, bgp->vrf_id);
3146 if (ifp)
3147 stream_putl(s, ifp->ifindex);
3148 }
3149 }
3150
3151 static int bgp_pbr_get_ifnumber(struct bgp *bgp, uint8_t family)
3152 {
3153 struct bgp_pbr_config *bgp_pbr_cfg = bgp->bgp_pbr_cfg;
3154 struct bgp_pbr_interface_head *head;
3155 struct bgp_pbr_interface *pbr_if;
3156 int cnt = 0;
3157
3158 if (!bgp_pbr_cfg)
3159 return 0;
3160 if (family == AF_INET)
3161 head = &(bgp_pbr_cfg->ifaces_by_name_ipv4);
3162 else
3163 head = &(bgp_pbr_cfg->ifaces_by_name_ipv6);
3164 RB_FOREACH (pbr_if, bgp_pbr_interface_head, head) {
3165 if (if_lookup_by_name(pbr_if->name, bgp->vrf_id))
3166 cnt++;
3167 }
3168 return cnt;
3169 }
3170
3171 void bgp_send_pbr_iptable(struct bgp_pbr_action *pba,
3172 struct bgp_pbr_match *pbm,
3173 bool install)
3174 {
3175 struct stream *s;
3176 int ret = 0;
3177 int nb_interface;
3178
3179 if (pbm->install_iptable_in_progress)
3180 return;
3181 if (BGP_DEBUG(zebra, ZEBRA))
3182 zlog_debug("%s: name %s type %d mark %d %d, ID %u", __func__,
3183 pbm->ipset_name, pbm->type, pba->fwmark, install,
3184 pbm->unique2);
3185 s = zclient->obuf;
3186 stream_reset(s);
3187
3188 zclient_create_header(s,
3189 install ? ZEBRA_IPTABLE_ADD :
3190 ZEBRA_IPTABLE_DELETE,
3191 VRF_DEFAULT);
3192
3193 bgp_encode_pbr_iptable_match(s, pba, pbm);
3194 nb_interface = bgp_pbr_get_ifnumber(pba->bgp, pbm->family);
3195 stream_putl(s, nb_interface);
3196 if (nb_interface)
3197 bgp_encode_pbr_interface_list(pba->bgp, s, pbm->family);
3198 stream_putw_at(s, 0, stream_get_endp(s));
3199 ret = zclient_send_message(zclient);
3200 if (install) {
3201 if (ret != ZCLIENT_SEND_FAILURE)
3202 pba->refcnt++;
3203 else
3204 pbm->install_iptable_in_progress = true;
3205 }
3206 }
3207
3208 /* inject in table <table_id> a default route to:
3209 * - if nexthop IP is present : to this nexthop
3210 * - if vrf is different from local : to the matching VRF
3211 */
3212 void bgp_zebra_announce_default(struct bgp *bgp, struct nexthop *nh,
3213 afi_t afi, uint32_t table_id, bool announce)
3214 {
3215 struct zapi_nexthop *api_nh;
3216 struct zapi_route api;
3217 struct prefix p;
3218
3219 if (!nh || (nh->type != NEXTHOP_TYPE_IPV4
3220 && nh->type != NEXTHOP_TYPE_IPV6)
3221 || nh->vrf_id == VRF_UNKNOWN)
3222 return;
3223 memset(&p, 0, sizeof(struct prefix));
3224 if (afi != AFI_IP && afi != AFI_IP6)
3225 return;
3226 p.family = afi2family(afi);
3227 memset(&api, 0, sizeof(api));
3228 api.vrf_id = bgp->vrf_id;
3229 api.type = ZEBRA_ROUTE_BGP;
3230 api.safi = SAFI_UNICAST;
3231 api.prefix = p;
3232 api.tableid = table_id;
3233 api.nexthop_num = 1;
3234 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
3235 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
3236 api_nh = &api.nexthops[0];
3237
3238 api.distance = ZEBRA_EBGP_DISTANCE_DEFAULT;
3239 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
3240
3241 /* redirect IP */
3242 if (afi == AFI_IP && nh->gate.ipv4.s_addr != INADDR_ANY) {
3243 char buff[PREFIX_STRLEN];
3244
3245 api_nh->vrf_id = nh->vrf_id;
3246 api_nh->gate.ipv4 = nh->gate.ipv4;
3247 api_nh->type = NEXTHOP_TYPE_IPV4;
3248
3249 inet_ntop(AF_INET, &(nh->gate.ipv4), buff, INET_ADDRSTRLEN);
3250 if (BGP_DEBUG(zebra, ZEBRA))
3251 zlog_debug("BGP: %s default route to %s table %d (redirect IP)",
3252 announce ? "adding" : "withdrawing",
3253 buff, table_id);
3254 zclient_route_send(announce ? ZEBRA_ROUTE_ADD
3255 : ZEBRA_ROUTE_DELETE,
3256 zclient, &api);
3257 } else if (afi == AFI_IP6 &&
3258 memcmp(&nh->gate.ipv6,
3259 &in6addr_any, sizeof(struct in6_addr))) {
3260 char buff[PREFIX_STRLEN];
3261
3262 api_nh->vrf_id = nh->vrf_id;
3263 memcpy(&api_nh->gate.ipv6, &nh->gate.ipv6,
3264 sizeof(struct in6_addr));
3265 api_nh->type = NEXTHOP_TYPE_IPV6;
3266
3267 inet_ntop(AF_INET6, &(nh->gate.ipv6), buff, INET_ADDRSTRLEN);
3268 if (BGP_DEBUG(zebra, ZEBRA))
3269 zlog_debug("BGP: %s default route to %s table %d (redirect IP)",
3270 announce ? "adding" : "withdrawing",
3271 buff, table_id);
3272 zclient_route_send(announce ? ZEBRA_ROUTE_ADD
3273 : ZEBRA_ROUTE_DELETE,
3274 zclient, &api);
3275 } else if (nh->vrf_id != bgp->vrf_id) {
3276 struct vrf *vrf;
3277 struct interface *ifp;
3278
3279 vrf = vrf_lookup_by_id(nh->vrf_id);
3280 if (!vrf)
3281 return;
3282 /* create default route with interface <VRF>
3283 * with nexthop-vrf <VRF>
3284 */
3285 ifp = if_lookup_by_name_all_vrf(vrf->name);
3286 if (!ifp)
3287 return;
3288 api_nh->vrf_id = nh->vrf_id;
3289 api_nh->type = NEXTHOP_TYPE_IFINDEX;
3290 api_nh->ifindex = ifp->ifindex;
3291 if (BGP_DEBUG(zebra, ZEBRA))
3292 zlog_info("BGP: %s default route to %s table %d (redirect VRF)",
3293 announce ? "adding" : "withdrawing",
3294 vrf->name, table_id);
3295 zclient_route_send(announce ? ZEBRA_ROUTE_ADD
3296 : ZEBRA_ROUTE_DELETE,
3297 zclient, &api);
3298 return;
3299 }
3300 }
3301
3302 /* Send capabilities to RIB */
3303 int bgp_zebra_send_capabilities(struct bgp *bgp, bool disable)
3304 {
3305 struct zapi_cap api;
3306 int ret = BGP_GR_SUCCESS;
3307
3308 if (zclient == NULL) {
3309 if (BGP_DEBUG(zebra, ZEBRA))
3310 zlog_debug("zclient invalid");
3311 return BGP_GR_FAILURE;
3312 }
3313
3314 /* Check if the client is connected */
3315 if ((zclient->sock < 0) || (zclient->t_connect)) {
3316 if (BGP_DEBUG(zebra, ZEBRA))
3317 zlog_debug("client not connected");
3318 return BGP_GR_FAILURE;
3319 }
3320
3321 /* Check if capability is already sent. If the flag force is set
3322 * send the capability since this can be initial bgp configuration
3323 */
3324 memset(&api, 0, sizeof(struct zapi_cap));
3325 if (disable) {
3326 api.cap = ZEBRA_CLIENT_GR_DISABLE;
3327 api.vrf_id = bgp->vrf_id;
3328 } else {
3329 api.cap = ZEBRA_CLIENT_GR_CAPABILITIES;
3330 api.stale_removal_time = bgp->rib_stale_time;
3331 api.vrf_id = bgp->vrf_id;
3332 }
3333
3334 if (zclient_capabilities_send(ZEBRA_CLIENT_CAPABILITIES, zclient, &api)
3335 == ZCLIENT_SEND_FAILURE) {
3336 zlog_err("error sending capability");
3337 ret = BGP_GR_FAILURE;
3338 } else {
3339 if (disable)
3340 bgp->present_zebra_gr_state = ZEBRA_GR_DISABLE;
3341 else
3342 bgp->present_zebra_gr_state = ZEBRA_GR_ENABLE;
3343
3344 if (BGP_DEBUG(zebra, ZEBRA))
3345 zlog_debug("send capabilty success");
3346 ret = BGP_GR_SUCCESS;
3347 }
3348 return ret;
3349 }
3350
3351 /* Send route update pesding or completed status to RIB for the
3352 * specific AFI, SAFI
3353 */
3354 int bgp_zebra_update(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type)
3355 {
3356 struct zapi_cap api = {0};
3357
3358 if (zclient == NULL) {
3359 if (BGP_DEBUG(zebra, ZEBRA))
3360 zlog_debug("zclient == NULL, invalid");
3361 return BGP_GR_FAILURE;
3362 }
3363
3364 /* Check if the client is connected */
3365 if ((zclient->sock < 0) || (zclient->t_connect)) {
3366 if (BGP_DEBUG(zebra, ZEBRA))
3367 zlog_debug("client not connected");
3368 return BGP_GR_FAILURE;
3369 }
3370
3371 api.afi = afi;
3372 api.safi = safi;
3373 api.vrf_id = vrf_id;
3374 api.cap = type;
3375
3376 if (zclient_capabilities_send(ZEBRA_CLIENT_CAPABILITIES, zclient, &api)
3377 == ZCLIENT_SEND_FAILURE) {
3378 if (BGP_DEBUG(zebra, ZEBRA))
3379 zlog_debug("error sending capability");
3380 return BGP_GR_FAILURE;
3381 }
3382 return BGP_GR_SUCCESS;
3383 }
3384
3385
3386 /* Send RIB stale timer update */
3387 int bgp_zebra_stale_timer_update(struct bgp *bgp)
3388 {
3389 struct zapi_cap api;
3390
3391 if (zclient == NULL) {
3392 if (BGP_DEBUG(zebra, ZEBRA))
3393 zlog_debug("zclient invalid");
3394 return BGP_GR_FAILURE;
3395 }
3396
3397 /* Check if the client is connected */
3398 if ((zclient->sock < 0) || (zclient->t_connect)) {
3399 if (BGP_DEBUG(zebra, ZEBRA))
3400 zlog_debug("client not connected");
3401 return BGP_GR_FAILURE;
3402 }
3403
3404 memset(&api, 0, sizeof(struct zapi_cap));
3405 api.cap = ZEBRA_CLIENT_RIB_STALE_TIME;
3406 api.stale_removal_time = bgp->rib_stale_time;
3407 api.vrf_id = bgp->vrf_id;
3408 if (zclient_capabilities_send(ZEBRA_CLIENT_CAPABILITIES, zclient, &api)
3409 == ZCLIENT_SEND_FAILURE) {
3410 if (BGP_DEBUG(zebra, ZEBRA))
3411 zlog_debug("error sending capability");
3412 return BGP_GR_FAILURE;
3413 }
3414 if (BGP_DEBUG(zebra, ZEBRA))
3415 zlog_debug("send capabilty success");
3416 return BGP_GR_SUCCESS;
3417 }