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