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