]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_evpn.c
Merge pull request #3394 from karamalla0406/frr3360
[mirror_frr.git] / bgpd / bgp_evpn.c
CommitLineData
7ef5a232 1/* Ethernet-VPN Packet and vty Processing File
896014f4 2 * Copyright (C) 2016 6WIND
128ea8ab 3 * Copyright (C) 2017 Cumulus Networks, Inc.
896014f4 4 *
128ea8ab 5 * This file is part of FRR.
896014f4
DL
6 *
7 * FRRouting is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * FRRouting is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
7ef5a232 21
7ef5a232
PG
22#include <zebra.h>
23
24#include "command.h"
25#include "filter.h"
26#include "prefix.h"
27#include "log.h"
28#include "memory.h"
29#include "stream.h"
14c1a7bf 30#include "hash.h"
31#include "jhash.h"
128ea8ab 32#include "zclient.h"
7ef5a232
PG
33
34#include "bgpd/bgp_attr_evpn.h"
35#include "bgpd/bgpd.h"
36#include "bgpd/bgp_table.h"
37#include "bgpd/bgp_route.h"
38#include "bgpd/bgp_attr.h"
39#include "bgpd/bgp_mplsvpn.h"
9bedbb1e 40#include "bgpd/bgp_label.h"
7ef5a232 41#include "bgpd/bgp_evpn.h"
14c1a7bf 42#include "bgpd/bgp_evpn_private.h"
43#include "bgpd/bgp_ecommunity.h"
128ea8ab 44#include "bgpd/bgp_encap_types.h"
45#include "bgpd/bgp_debug.h"
14454c9f 46#include "bgpd/bgp_errors.h"
128ea8ab 47#include "bgpd/bgp_aspath.h"
d7d97010 48#include "bgpd/bgp_zebra.h"
db0e1937 49#include "bgpd/bgp_nexthop.h"
dcc68b5e 50#include "bgpd/bgp_addpath.h"
128ea8ab 51
52/*
53 * Definitions and external declarations.
54 */
55extern struct zclient *zclient;
56
57DEFINE_QOBJ_TYPE(bgpevpn)
50f74cf1 58DEFINE_QOBJ_TYPE(evpnes)
128ea8ab 59
60
61/*
62 * Static function declarations
63 */
4b7e6066 64static void delete_evpn_route_entry(struct bgp *bgp, afi_t afi, safi_t safi,
50f74cf1 65 struct bgp_node *rn,
40381db7 66 struct bgp_path_info **pi);
d62a17ae 67static int delete_all_vni_routes(struct bgp *bgp, struct bgpevpn *vpn);
14c1a7bf 68
69/*
70 * Private functions.
71 */
72
50f74cf1 73/* compare two IPV4 VTEP IPs */
ce167790 74static int evpn_vtep_ip_cmp(void *p1, void *p2)
50f74cf1 75{
76 const struct in_addr *ip1 = p1;
77 const struct in_addr *ip2 = p2;
78
ce167790 79 return ip1->s_addr - ip2->s_addr;
50f74cf1 80}
81
82/*
83 * Make hash key for ESI.
84 */
85static unsigned int esi_hash_keymake(void *p)
86{
87 struct evpnes *pes = p;
88 const void *pnt = (void *)pes->esi.val;
89
90 return jhash(pnt, ESI_BYTES, 0xa5a5a55a);
91}
92
93/*
94 * Compare two ESIs.
95 */
74df8d6d 96static bool esi_cmp(const void *p1, const void *p2)
50f74cf1 97{
98 const struct evpnes *pes1 = p1;
99 const struct evpnes *pes2 = p2;
100
101 if (pes1 == NULL && pes2 == NULL)
74df8d6d 102 return true;
50f74cf1 103
104 if (pes1 == NULL || pes2 == NULL)
74df8d6d 105 return false;
50f74cf1 106
107 return (memcmp(pes1->esi.val, pes2->esi.val, ESI_BYTES) == 0);
108}
109
14c1a7bf 110/*
111 * Make vni hash key.
112 */
d62a17ae 113static unsigned int vni_hash_key_make(void *p)
14c1a7bf 114{
d62a17ae 115 struct bgpevpn *vpn = p;
116 return (jhash_1word(vpn->vni, 0));
14c1a7bf 117}
118
119/*
120 * Comparison function for vni hash
121 */
74df8d6d 122static bool vni_hash_cmp(const void *p1, const void *p2)
14c1a7bf 123{
d62a17ae 124 const struct bgpevpn *vpn1 = p1;
125 const struct bgpevpn *vpn2 = p2;
14c1a7bf 126
d62a17ae 127 if (!vpn1 && !vpn2)
74df8d6d 128 return true;
d62a17ae 129 if (!vpn1 || !vpn2)
74df8d6d 130 return false;
d62a17ae 131 return (vpn1->vni == vpn2->vni);
14c1a7bf 132}
133
64465785
DS
134static int vni_list_cmp(void *p1, void *p2)
135{
136 const struct bgpevpn *vpn1 = p1;
137 const struct bgpevpn *vpn2 = p2;
138
139 return vpn1->vni - vpn2->vni;
140}
141
10ebe1ab
MK
142/*
143 * Make vrf import route target hash key.
144 */
145static unsigned int vrf_import_rt_hash_key_make(void *p)
146{
147 struct vrf_irt_node *irt = p;
148 char *pnt = irt->rt.val;
5a1b3fb5
DS
149
150 return jhash(pnt, 8, 0x5abc1234);
10ebe1ab
MK
151}
152
153/*
154 * Comparison function for vrf import rt hash
155 */
74df8d6d 156static bool vrf_import_rt_hash_cmp(const void *p1, const void *p2)
10ebe1ab
MK
157{
158 const struct vrf_irt_node *irt1 = p1;
159 const struct vrf_irt_node *irt2 = p2;
160
161 if (irt1 == NULL && irt2 == NULL)
74df8d6d 162 return true;
10ebe1ab
MK
163
164 if (irt1 == NULL || irt2 == NULL)
74df8d6d 165 return false;
10ebe1ab
MK
166
167 return (memcmp(irt1->rt.val, irt2->rt.val, ECOMMUNITY_SIZE) == 0);
168}
169
170/*
171 * Create a new vrf import_rt in default instance
172 */
173static struct vrf_irt_node *vrf_import_rt_new(struct ecommunity_val *rt)
174{
175 struct bgp *bgp_def = NULL;
176 struct vrf_irt_node *irt;
177
178 bgp_def = bgp_get_default();
179 if (!bgp_def) {
e50f7cfd 180 flog_err(EC_BGP_NO_DFLT,
1c50c1c0 181 "vrf import rt new - def instance not created yet");
10ebe1ab
MK
182 return NULL;
183 }
184
185 irt = XCALLOC(MTYPE_BGP_EVPN_VRF_IMPORT_RT,
186 sizeof(struct vrf_irt_node));
187 if (!irt)
188 return NULL;
189
190 irt->rt = *rt;
191 irt->vrfs = list_new();
192
193 /* Add to hash */
194 if (!hash_get(bgp_def->vrf_import_rt_hash, irt, hash_alloc_intern)) {
195 XFREE(MTYPE_BGP_EVPN_VRF_IMPORT_RT, irt);
196 return NULL;
197 }
198
199 return irt;
200}
201
202/*
203 * Free the vrf import rt node
204 */
205static void vrf_import_rt_free(struct vrf_irt_node *irt)
206{
207 struct bgp *bgp_def = NULL;
208
209 bgp_def = bgp_get_default();
210 if (!bgp_def) {
e50f7cfd 211 flog_err(EC_BGP_NO_DFLT,
1c50c1c0 212 "vrf import rt free - def instance not created yet");
10ebe1ab
MK
213 return;
214 }
215
216 hash_release(bgp_def->vrf_import_rt_hash, irt);
6a154c88 217 list_delete(&irt->vrfs);
10ebe1ab
MK
218 XFREE(MTYPE_BGP_EVPN_VRF_IMPORT_RT, irt);
219}
220
221/*
222 * Function to lookup Import RT node - used to map a RT to set of
223 * VNIs importing routes with that RT.
224 */
225static struct vrf_irt_node *lookup_vrf_import_rt(struct ecommunity_val *rt)
226{
227 struct bgp *bgp_def = NULL;
228 struct vrf_irt_node *irt;
229 struct vrf_irt_node tmp;
230
231 bgp_def = bgp_get_default();
232 if (!bgp_def) {
1c50c1c0
QY
233 flog_err(EC_BGP_NO_DFLT,
234 "vrf import rt lookup - def instance not created yet");
10ebe1ab
MK
235 return NULL;
236 }
237
238 memset(&tmp, 0, sizeof(struct vrf_irt_node));
239 memcpy(&tmp.rt, rt, ECOMMUNITY_SIZE);
240 irt = hash_lookup(bgp_def->vrf_import_rt_hash, &tmp);
241 return irt;
242}
243
244/*
245 * Is specified VRF present on the RT's list of "importing" VRFs?
246 */
996c9314 247static int is_vrf_present_in_irt_vrfs(struct list *vrfs, struct bgp *bgp_vrf)
10ebe1ab
MK
248{
249 struct listnode *node = NULL, *nnode = NULL;
250 struct bgp *tmp_bgp_vrf = NULL;
251
252 for (ALL_LIST_ELEMENTS(vrfs, node, nnode, tmp_bgp_vrf)) {
253 if (tmp_bgp_vrf == bgp_vrf)
254 return 1;
255 }
256 return 0;
257}
258
14c1a7bf 259/*
260 * Make import route target hash key.
261 */
d62a17ae 262static unsigned int import_rt_hash_key_make(void *p)
14c1a7bf 263{
d62a17ae 264 struct irt_node *irt = p;
265 char *pnt = irt->rt.val;
5a1b3fb5
DS
266
267 return jhash(pnt, 8, 0xdeadbeef);
14c1a7bf 268}
269
270/*
271 * Comparison function for import rt hash
272 */
74df8d6d 273static bool import_rt_hash_cmp(const void *p1, const void *p2)
14c1a7bf 274{
d62a17ae 275 const struct irt_node *irt1 = p1;
276 const struct irt_node *irt2 = p2;
14c1a7bf 277
d62a17ae 278 if (irt1 == NULL && irt2 == NULL)
74df8d6d 279 return true;
14c1a7bf 280
d62a17ae 281 if (irt1 == NULL || irt2 == NULL)
74df8d6d 282 return false;
14c1a7bf 283
d62a17ae 284 return (memcmp(irt1->rt.val, irt2->rt.val, ECOMMUNITY_SIZE) == 0);
14c1a7bf 285}
286
7724c0a1 287/*
128ea8ab 288 * Create a new import_rt
289 */
d62a17ae 290static struct irt_node *import_rt_new(struct bgp *bgp,
291 struct ecommunity_val *rt)
128ea8ab 292{
d62a17ae 293 struct irt_node *irt;
128ea8ab 294
d62a17ae 295 if (!bgp)
296 return NULL;
128ea8ab 297
d62a17ae 298 irt = XCALLOC(MTYPE_BGP_EVPN_IMPORT_RT, sizeof(struct irt_node));
299 if (!irt)
300 return NULL;
128ea8ab 301
d62a17ae 302 irt->rt = *rt;
303 irt->vnis = list_new();
128ea8ab 304
d62a17ae 305 /* Add to hash */
306 if (!hash_get(bgp->import_rt_hash, irt, hash_alloc_intern)) {
307 XFREE(MTYPE_BGP_EVPN_IMPORT_RT, irt);
308 return NULL;
309 }
128ea8ab 310
d62a17ae 311 return irt;
128ea8ab 312}
313
314/*
315 * Free the import rt node
7724c0a1 316 */
d62a17ae 317static void import_rt_free(struct bgp *bgp, struct irt_node *irt)
7724c0a1 318{
d62a17ae 319 hash_release(bgp->import_rt_hash, irt);
6a154c88 320 list_delete(&irt->vnis);
d62a17ae 321 XFREE(MTYPE_BGP_EVPN_IMPORT_RT, irt);
7724c0a1 322}
323
14c1a7bf 324/*
128ea8ab 325 * Function to lookup Import RT node - used to map a RT to set of
326 * VNIs importing routes with that RT.
327 */
d62a17ae 328static struct irt_node *lookup_import_rt(struct bgp *bgp,
329 struct ecommunity_val *rt)
128ea8ab 330{
d62a17ae 331 struct irt_node *irt;
332 struct irt_node tmp;
128ea8ab 333
d62a17ae 334 memset(&tmp, 0, sizeof(struct irt_node));
335 memcpy(&tmp.rt, rt, ECOMMUNITY_SIZE);
336 irt = hash_lookup(bgp->import_rt_hash, &tmp);
337 return irt;
128ea8ab 338}
339
340/*
341 * Is specified VNI present on the RT's list of "importing" VNIs?
342 */
d62a17ae 343static int is_vni_present_in_irt_vnis(struct list *vnis, struct bgpevpn *vpn)
128ea8ab 344{
d62a17ae 345 struct listnode *node, *nnode;
346 struct bgpevpn *tmp_vpn;
128ea8ab 347
d62a17ae 348 for (ALL_LIST_ELEMENTS(vnis, node, nnode, tmp_vpn)) {
349 if (tmp_vpn == vpn)
350 return 1;
351 }
128ea8ab 352
d62a17ae 353 return 0;
128ea8ab 354}
355
356/*
357 * Compare Route Targets.
358 */
d62a17ae 359static int evpn_route_target_cmp(struct ecommunity *ecom1,
360 struct ecommunity *ecom2)
128ea8ab 361{
d62a17ae 362 if (ecom1 && !ecom2)
363 return -1;
128ea8ab 364
d62a17ae 365 if (!ecom1 && ecom2)
366 return 1;
128ea8ab 367
d62a17ae 368 if (!ecom1 && !ecom2)
369 return 0;
128ea8ab 370
d62a17ae 371 if (ecom1->str && !ecom2->str)
372 return -1;
128ea8ab 373
d62a17ae 374 if (!ecom1->str && ecom2->str)
375 return 1;
128ea8ab 376
d62a17ae 377 if (!ecom1->str && !ecom2->str)
378 return 0;
128ea8ab 379
d62a17ae 380 return strcmp(ecom1->str, ecom2->str);
128ea8ab 381}
382
987d8198
DS
383static void evpn_xxport_delete_ecomm(void *val)
384{
385 struct ecommunity *ecomm = val;
386 ecommunity_free(&ecomm);
387}
388
128ea8ab 389/*
390 * Mask off global-admin field of specified extended community (RT),
391 * just retain the local-admin field.
392 */
d62a17ae 393static inline void mask_ecom_global_admin(struct ecommunity_val *dst,
394 struct ecommunity_val *src)
128ea8ab 395{
d7c0a89a 396 uint8_t type;
128ea8ab 397
d62a17ae 398 type = src->val[0];
399 dst->val[0] = 0;
400 if (type == ECOMMUNITY_ENCODE_AS) {
401 dst->val[2] = dst->val[3] = 0;
402 } else if (type == ECOMMUNITY_ENCODE_AS4
403 || type == ECOMMUNITY_ENCODE_IP) {
404 dst->val[2] = dst->val[3] = 0;
405 dst->val[4] = dst->val[5] = 0;
406 }
128ea8ab 407}
408
10ebe1ab
MK
409/*
410 * Map one RT to specified VRF.
411 * bgp_vrf = BGP vrf instance
412 */
996c9314 413static void map_vrf_to_rt(struct bgp *bgp_vrf, struct ecommunity_val *eval)
10ebe1ab
MK
414{
415 struct vrf_irt_node *irt = NULL;
416 struct ecommunity_val eval_tmp;
417
418 /* If using "automatic" RT,
419 * we only care about the local-admin sub-field.
420 * This is to facilitate using L3VNI(VRF-VNI)
421 * as the RT for EBGP peering too.
422 */
423 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
996c9314 424 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD))
10ebe1ab
MK
425 mask_ecom_global_admin(&eval_tmp, eval);
426
427 irt = lookup_vrf_import_rt(&eval_tmp);
e066d6d0
DS
428 if (irt && is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
429 /* Already mapped. */
430 return;
10ebe1ab 431
e066d6d0 432 if (!irt)
10ebe1ab 433 irt = vrf_import_rt_new(&eval_tmp);
10ebe1ab
MK
434
435 /* Add VRF to the list for this RT. */
436 listnode_add(irt->vrfs, bgp_vrf);
437}
438
439/*
440 * Unmap specified VRF from specified RT. If there are no other
441 * VRFs for this RT, then the RT hash is deleted.
442 * bgp_vrf: BGP VRF specific instance
443 */
996c9314 444static void unmap_vrf_from_rt(struct bgp *bgp_vrf, struct vrf_irt_node *irt)
10ebe1ab
MK
445{
446 /* Delete VRF from list for this RT. */
447 listnode_delete(irt->vrfs, bgp_vrf);
448 if (!listnode_head(irt->vrfs)) {
10ebe1ab
MK
449 vrf_import_rt_free(irt);
450 }
451}
452
128ea8ab 453/*
454 * Map one RT to specified VNI.
14c1a7bf 455 */
d62a17ae 456static void map_vni_to_rt(struct bgp *bgp, struct bgpevpn *vpn,
457 struct ecommunity_val *eval)
128ea8ab 458{
d62a17ae 459 struct irt_node *irt;
460 struct ecommunity_val eval_tmp;
128ea8ab 461
d62a17ae 462 /* If using "automatic" RT, we only care about the local-admin
463 * sub-field.
464 * This is to facilitate using VNI as the RT for EBGP peering too.
465 */
466 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
467 if (!is_import_rt_configured(vpn))
468 mask_ecom_global_admin(&eval_tmp, eval);
128ea8ab 469
d62a17ae 470 irt = lookup_import_rt(bgp, &eval_tmp);
b1ab0dfe 471 if (irt)
d62a17ae 472 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
473 /* Already mapped. */
474 return;
128ea8ab 475
d62a17ae 476 if (!irt) {
477 irt = import_rt_new(bgp, &eval_tmp);
478 assert(irt);
479 }
128ea8ab 480
d62a17ae 481 /* Add VNI to the hash list for this RT. */
482 listnode_add(irt->vnis, vpn);
128ea8ab 483}
484
485/*
486 * Unmap specified VNI from specified RT. If there are no other
487 * VNIs for this RT, then the RT hash is deleted.
488 */
d62a17ae 489static void unmap_vni_from_rt(struct bgp *bgp, struct bgpevpn *vpn,
490 struct irt_node *irt)
14c1a7bf 491{
d62a17ae 492 /* Delete VNI from hash list for this RT. */
493 listnode_delete(irt->vnis, vpn);
494 if (!listnode_head(irt->vnis)) {
d62a17ae 495 import_rt_free(bgp, irt);
496 }
14c1a7bf 497}
498
128ea8ab 499/*
500 * Create RT extended community automatically from passed information:
501 * of the form AS:VNI.
502 * NOTE: We use only the lower 16 bits of the AS. This is sufficient as
503 * the need is to get a RT value that will be unique across different
504 * VNIs but the same across routers (in the same AS) for a particular
505 * VNI.
506 */
c581d8b0 507static void form_auto_rt(struct bgp *bgp, vni_t vni, struct list *rtl)
128ea8ab 508{
d62a17ae 509 struct ecommunity_val eval;
510 struct ecommunity *ecomadd;
128ea8ab 511
bf1061d8
VB
512 if (bgp->advertise_autort_rfc8365)
513 vni |= EVPN_AUTORT_VXLAN;
c581d8b0 514 encode_route_target_as((bgp->as & 0xFFFF), vni, &eval);
128ea8ab 515
d62a17ae 516 ecomadd = ecommunity_new();
517 ecommunity_add_val(ecomadd, &eval);
518 listnode_add_sort(rtl, ecomadd);
128ea8ab 519}
14c1a7bf 520
521/*
128ea8ab 522 * Derive RD and RT for a VNI automatically. Invoked at the time of
523 * creation of a VNI.
524 */
d62a17ae 525static void derive_rd_rt_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 526{
d62a17ae 527 bgp_evpn_derive_auto_rd(bgp, vpn);
528 bgp_evpn_derive_auto_rt_import(bgp, vpn);
529 bgp_evpn_derive_auto_rt_export(bgp, vpn);
128ea8ab 530}
531
1ec31309 532/*
533 * Convert nexthop (remote VTEP IP) into an IPv6 address.
534 */
535static void evpn_convert_nexthop_to_ipv6(struct attr *attr)
536{
537 if (BGP_ATTR_NEXTHOP_AFI_IP6(attr))
538 return;
539 ipv4_to_ipv4_mapped_ipv6(&attr->mp_nexthop_global, attr->nexthop);
540 attr->mp_nexthop_len = IPV6_MAX_BYTELEN;
541}
542
128ea8ab 543/*
544 * Add (update) or delete MACIP from zebra.
14c1a7bf 545 */
d62a17ae 546static int bgp_zebra_send_remote_macip(struct bgp *bgp, struct bgpevpn *vpn,
547 struct prefix_evpn *p,
548 struct in_addr remote_vtep_ip, int add,
f07e1c99 549 uint8_t flags, uint32_t seq)
d62a17ae 550{
551 struct stream *s;
552 int ipa_len;
553 char buf1[ETHER_ADDR_STRLEN];
554 char buf2[INET6_ADDRSTRLEN];
555 char buf3[INET6_ADDRSTRLEN];
556
557 /* Check socket. */
558 if (!zclient || zclient->sock < 0)
559 return 0;
560
561 /* Don't try to register if Zebra doesn't know of this instance. */
bb4ef1ae
DS
562 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
563 if (BGP_DEBUG(zebra, ZEBRA))
564 zlog_debug("%s: No zebra instance to talk to, not installing remote macip",
565 __PRETTY_FUNCTION__);
d62a17ae 566 return 0;
bb4ef1ae 567 }
d62a17ae 568 s = zclient->obuf;
569 stream_reset(s);
570
996c9314
LB
571 zclient_create_header(
572 s, add ? ZEBRA_REMOTE_MACIP_ADD : ZEBRA_REMOTE_MACIP_DEL,
573 bgp->vrf_id);
d62a17ae 574 stream_putl(s, vpn->vni);
3714a385 575 stream_put(s, &p->prefix.macip_addr.mac.octet, ETH_ALEN); /* Mac Addr */
d62a17ae 576 /* IP address length and IP address, if any. */
3714a385 577 if (is_evpn_prefix_ipaddr_none(p))
d62a17ae 578 stream_putl(s, 0);
579 else {
3714a385 580 ipa_len = is_evpn_prefix_ipaddr_v4(p) ? IPV4_MAX_BYTELEN
d62a17ae 581 : IPV6_MAX_BYTELEN;
582 stream_putl(s, ipa_len);
3714a385 583 stream_put(s, &p->prefix.macip_addr.ip.ip.addr, ipa_len);
d62a17ae 584 }
585 stream_put_in_addr(s, &remote_vtep_ip);
586
ead40654 587 /* TX flags - MAC sticky status and/or gateway mac */
f07e1c99 588 /* Also TX the sequence number of the best route. */
589 if (add) {
ead40654 590 stream_putc(s, flags);
f07e1c99 591 stream_putl(s, seq);
592 }
d62a17ae 593
594 stream_putw_at(s, 0, stream_get_endp(s));
595
596 if (bgp_debug_zebra(NULL))
996c9314 597 zlog_debug(
f07e1c99 598 "Tx %s MACIP, VNI %u MAC %s IP %s flags 0x%x seq %u remote VTEP %s",
996c9314 599 add ? "ADD" : "DEL", vpn->vni,
3714a385 600 prefix_mac2str(&p->prefix.macip_addr.mac,
601 buf1, sizeof(buf1)),
602 ipaddr2str(&p->prefix.macip_addr.ip,
f07e1c99 603 buf3, sizeof(buf3)), flags, seq,
996c9314
LB
604 inet_ntop(AF_INET, &remote_vtep_ip, buf2,
605 sizeof(buf2)));
d62a17ae 606
607 return zclient_send_message(zclient);
7ef5a232 608}
b18825eb 609
128ea8ab 610/*
611 * Add (update) or delete remote VTEP from zebra.
612 */
d62a17ae 613static int bgp_zebra_send_remote_vtep(struct bgp *bgp, struct bgpevpn *vpn,
614 struct prefix_evpn *p, int add)
128ea8ab 615{
d62a17ae 616 struct stream *s;
128ea8ab 617
d62a17ae 618 /* Check socket. */
619 if (!zclient || zclient->sock < 0)
620 return 0;
128ea8ab 621
d62a17ae 622 /* Don't try to register if Zebra doesn't know of this instance. */
bb4ef1ae
DS
623 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp)) {
624 if (BGP_DEBUG(zebra, ZEBRA))
625 zlog_debug("%s: No zebra instance to talk to, not installing remote vtep",
626 __PRETTY_FUNCTION__);
d62a17ae 627 return 0;
bb4ef1ae 628 }
128ea8ab 629
d62a17ae 630 s = zclient->obuf;
631 stream_reset(s);
128ea8ab 632
996c9314
LB
633 zclient_create_header(
634 s, add ? ZEBRA_REMOTE_VTEP_ADD : ZEBRA_REMOTE_VTEP_DEL,
635 bgp->vrf_id);
d62a17ae 636 stream_putl(s, vpn->vni);
3714a385 637 if (is_evpn_prefix_ipaddr_v4(p))
638 stream_put_in_addr(s, &p->prefix.imet_addr.ip.ipaddr_v4);
639 else if (is_evpn_prefix_ipaddr_v6(p)) {
af4c2728 640 flog_err(
e50f7cfd 641 EC_BGP_VTEP_INVALID,
d62a17ae 642 "Bad remote IP when trying to %s remote VTEP for VNI %u",
643 add ? "ADD" : "DEL", vpn->vni);
644 return -1;
645 }
128ea8ab 646
d62a17ae 647 stream_putw_at(s, 0, stream_get_endp(s));
128ea8ab 648
d62a17ae 649 if (bgp_debug_zebra(NULL))
650 zlog_debug("Tx %s Remote VTEP, VNI %u remote VTEP %s",
651 add ? "ADD" : "DEL", vpn->vni,
3714a385 652 inet_ntoa(p->prefix.imet_addr.ip.ipaddr_v4));
128ea8ab 653
d62a17ae 654 return zclient_send_message(zclient);
128ea8ab 655}
656
50f74cf1 657/*
658 * Build extended community for EVPN ES (type-4) route
659 */
660static void build_evpn_type4_route_extcomm(struct evpnes *es,
661 struct attr *attr)
662{
663 struct ecommunity ecom_encap;
664 struct ecommunity ecom_es_rt;
665 struct ecommunity_val eval;
666 struct ecommunity_val eval_es_rt;
667 bgp_encap_types tnl_type;
668 struct ethaddr mac;
669
670 /* Encap */
671 tnl_type = BGP_ENCAP_TYPE_VXLAN;
672 memset(&ecom_encap, 0, sizeof(ecom_encap));
673 encode_encap_extcomm(tnl_type, &eval);
674 ecom_encap.size = 1;
675 ecom_encap.val = (uint8_t *)eval.val;
676 attr->ecommunity = ecommunity_dup(&ecom_encap);
677
678 /* ES import RT */
679 memset(&mac, 0, sizeof(struct ethaddr));
680 memset(&ecom_es_rt, 0, sizeof(ecom_es_rt));
681 es_get_system_mac(&es->esi, &mac);
682 encode_es_rt_extcomm(&eval_es_rt, &mac);
683 ecom_es_rt.size = 1;
684 ecom_es_rt.val = (uint8_t *)eval_es_rt.val;
685 attr->ecommunity =
686 ecommunity_merge(attr->ecommunity, &ecom_es_rt);
687
688 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
689}
690
342dd0c6 691/*
692 * Build extended communities for EVPN prefix route.
693 */
694static void build_evpn_type5_route_extcomm(struct bgp *bgp_vrf,
695 struct attr *attr)
696{
697 struct ecommunity ecom_encap;
698 struct ecommunity ecom_rmac;
699 struct ecommunity_val eval;
700 struct ecommunity_val eval_rmac;
701 bgp_encap_types tnl_type;
702 struct listnode *node, *nnode;
703 struct ecommunity *ecom;
704 struct list *vrf_export_rtl = NULL;
705
706 /* Encap */
707 tnl_type = BGP_ENCAP_TYPE_VXLAN;
708 memset(&ecom_encap, 0, sizeof(ecom_encap));
709 encode_encap_extcomm(tnl_type, &eval);
710 ecom_encap.size = 1;
d7c0a89a 711 ecom_encap.val = (uint8_t *)eval.val;
342dd0c6 712
713 /* Add Encap */
714 attr->ecommunity = ecommunity_dup(&ecom_encap);
715
716 /* Add the export RTs for L3VNI/VRF */
717 vrf_export_rtl = bgp_vrf->vrf_export_rtl;
1525e99f
DS
718 for (ALL_LIST_ELEMENTS(vrf_export_rtl, node, nnode, ecom))
719 attr->ecommunity =
720 ecommunity_merge(attr->ecommunity, ecom);
342dd0c6 721
722 /* add the router mac extended community */
723 if (!is_zero_mac(&attr->rmac)) {
724 memset(&ecom_rmac, 0, sizeof(ecom_rmac));
725 encode_rmac_extcomm(&eval_rmac, &attr->rmac);
726 ecom_rmac.size = 1;
727 ecom_rmac.val = (uint8_t *)eval_rmac.val;
996c9314
LB
728 attr->ecommunity =
729 ecommunity_merge(attr->ecommunity, &ecom_rmac);
342dd0c6 730 }
731
732 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
733}
734
128ea8ab 735/*
1ec31309 736 * Build extended communities for EVPN route.
737 * This function is applicable for type-2 and type-3 routes. The layer-2 RT
738 * and ENCAP extended communities are applicable for all routes.
739 * The default gateway extended community and MAC mobility (sticky) extended
740 * community are added as needed based on passed settings - only for type-2
741 * routes. Likewise, the layer-3 RT and Router MAC extended communities are
742 * added, if present, based on passed settings - only for non-link-local
743 * type-2 routes.
128ea8ab 744 */
7ec156a9 745static void build_evpn_route_extcomm(struct bgpevpn *vpn, struct attr *attr,
1ec31309 746 int add_l3_ecomm)
128ea8ab 747{
d62a17ae 748 struct ecommunity ecom_encap;
749 struct ecommunity ecom_sticky;
ead40654 750 struct ecommunity ecom_default_gw;
bc59a672 751 struct ecommunity ecom_rmac;
68e33151 752 struct ecommunity ecom_na;
d62a17ae 753 struct ecommunity_val eval;
754 struct ecommunity_val eval_sticky;
ead40654 755 struct ecommunity_val eval_default_gw;
bc59a672 756 struct ecommunity_val eval_rmac;
68e33151
CS
757 struct ecommunity_val eval_na;
758
d62a17ae 759 bgp_encap_types tnl_type;
760 struct listnode *node, *nnode;
761 struct ecommunity *ecom;
d7c0a89a 762 uint32_t seqnum;
7a3e76f1 763 struct list *vrf_export_rtl = NULL;
128ea8ab 764
d62a17ae 765 /* Encap */
766 tnl_type = BGP_ENCAP_TYPE_VXLAN;
767 memset(&ecom_encap, 0, sizeof(ecom_encap));
768 encode_encap_extcomm(tnl_type, &eval);
769 ecom_encap.size = 1;
d7c0a89a 770 ecom_encap.val = (uint8_t *)eval.val;
128ea8ab 771
d62a17ae 772 /* Add Encap */
773 attr->ecommunity = ecommunity_dup(&ecom_encap);
128ea8ab 774
7a3e76f1 775 /* Add the export RTs for L2VNI */
d62a17ae 776 for (ALL_LIST_ELEMENTS(vpn->export_rtl, node, nnode, ecom))
777 attr->ecommunity = ecommunity_merge(attr->ecommunity, ecom);
128ea8ab 778
1ec31309 779 /* Add the export RTs for L3VNI if told to - caller determines
780 * when this should be done.
523cafc4 781 */
1ec31309 782 if (add_l3_ecomm) {
7ec156a9
MK
783 vrf_export_rtl = bgpevpn_get_vrf_export_rtl(vpn);
784 if (vrf_export_rtl && !list_isempty(vrf_export_rtl)) {
785 for (ALL_LIST_ELEMENTS(vrf_export_rtl, node, nnode,
786 ecom))
996c9314
LB
787 attr->ecommunity = ecommunity_merge(
788 attr->ecommunity, ecom);
7ec156a9 789 }
f1f8b53c 790 }
7a3e76f1 791
1ec31309 792 /* Add MAC mobility (sticky) if needed. */
d62a17ae 793 if (attr->sticky) {
794 seqnum = 0;
795 memset(&ecom_sticky, 0, sizeof(ecom_sticky));
796 encode_mac_mobility_extcomm(1, seqnum, &eval_sticky);
797 ecom_sticky.size = 1;
d7c0a89a 798 ecom_sticky.val = (uint8_t *)eval_sticky.val;
d62a17ae 799 attr->ecommunity =
800 ecommunity_merge(attr->ecommunity, &ecom_sticky);
801 }
c85c03c7 802
1ec31309 803 /* Add RMAC, if told to. */
804 if (add_l3_ecomm) {
bc59a672
MK
805 memset(&ecom_rmac, 0, sizeof(ecom_rmac));
806 encode_rmac_extcomm(&eval_rmac, &attr->rmac);
807 ecom_rmac.size = 1;
808 ecom_rmac.val = (uint8_t *)eval_rmac.val;
996c9314
LB
809 attr->ecommunity =
810 ecommunity_merge(attr->ecommunity, &ecom_rmac);
bc59a672
MK
811 }
812
1ec31309 813 /* Add default gateway, if needed. */
ead40654
MK
814 if (attr->default_gw) {
815 memset(&ecom_default_gw, 0, sizeof(ecom_default_gw));
816 encode_default_gw_extcomm(&eval_default_gw);
817 ecom_default_gw.size = 1;
818 ecom_default_gw.val = (uint8_t *)eval_default_gw.val;
996c9314
LB
819 attr->ecommunity =
820 ecommunity_merge(attr->ecommunity, &ecom_default_gw);
ead40654
MK
821 }
822
68e33151
CS
823 if (attr->router_flag) {
824 memset(&ecom_na, 0, sizeof(ecom_na));
825 encode_na_flag_extcomm(&eval_na, attr->router_flag);
826 ecom_na.size = 1;
827 ecom_na.val = (uint8_t *)eval_na.val;
828 attr->ecommunity = ecommunity_merge(attr->ecommunity,
829 &ecom_na);
830 }
831
d62a17ae 832 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
128ea8ab 833}
834
835/*
836 * Add MAC mobility extended community to attribute.
837 */
d7c0a89a 838static void add_mac_mobility_to_attr(uint32_t seq_num, struct attr *attr)
d62a17ae 839{
840 struct ecommunity ecom_tmp;
841 struct ecommunity_val eval;
d7c0a89a 842 uint8_t *ecom_val_ptr;
d62a17ae 843 int i;
d7c0a89a 844 uint8_t *pnt;
d62a17ae 845 int type = 0;
846 int sub_type = 0;
847
848 /* Build MM */
849 encode_mac_mobility_extcomm(0, seq_num, &eval);
850
851 /* Find current MM ecommunity */
421bb26a 852 ecom_val_ptr = NULL;
d62a17ae 853
854 if (attr->ecommunity) {
855 for (i = 0; i < attr->ecommunity->size; i++) {
856 pnt = attr->ecommunity->val + (i * 8);
857 type = *pnt++;
858 sub_type = *pnt++;
859
860 if (type == ECOMMUNITY_ENCODE_EVPN
861 && sub_type
862 == ECOMMUNITY_EVPN_SUBTYPE_MACMOBILITY) {
d7c0a89a
QY
863 ecom_val_ptr = (uint8_t *)(attr->ecommunity->val
864 + (i * 8));
d62a17ae 865 break;
866 }
867 }
868 }
869
870 /* Update the existing MM ecommunity */
421bb26a
MK
871 if (ecom_val_ptr) {
872 memcpy(ecom_val_ptr, eval.val, sizeof(char) * ECOMMUNITY_SIZE);
d62a17ae 873 }
874 /* Add MM to existing */
875 else {
876 memset(&ecom_tmp, 0, sizeof(ecom_tmp));
877 ecom_tmp.size = 1;
d7c0a89a 878 ecom_tmp.val = (uint8_t *)eval.val;
d62a17ae 879
f9a78910
DS
880 if (attr->ecommunity)
881 attr->ecommunity =
882 ecommunity_merge(attr->ecommunity, &ecom_tmp);
883 else
884 attr->ecommunity = ecommunity_dup(&ecom_tmp);
d62a17ae 885 }
128ea8ab 886}
887
888/* Install EVPN route into zebra. */
d62a17ae 889static int evpn_zebra_install(struct bgp *bgp, struct bgpevpn *vpn,
890 struct prefix_evpn *p,
f07e1c99 891 struct in_addr remote_vtep_ip, uint8_t flags,
892 uint32_t seq)
128ea8ab 893{
d62a17ae 894 int ret;
128ea8ab 895
d62a17ae 896 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
897 ret = bgp_zebra_send_remote_macip(bgp, vpn, p, remote_vtep_ip,
f07e1c99 898 1, flags, seq);
d62a17ae 899 else
900 ret = bgp_zebra_send_remote_vtep(bgp, vpn, p, 1);
128ea8ab 901
d62a17ae 902 return ret;
128ea8ab 903}
904
905/* Uninstall EVPN route from zebra. */
d62a17ae 906static int evpn_zebra_uninstall(struct bgp *bgp, struct bgpevpn *vpn,
907 struct prefix_evpn *p,
908 struct in_addr remote_vtep_ip)
128ea8ab 909{
d62a17ae 910 int ret;
128ea8ab 911
d62a17ae 912 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
913 ret = bgp_zebra_send_remote_macip(bgp, vpn, p, remote_vtep_ip,
f07e1c99 914 0, 0, 0);
d62a17ae 915 else
916 ret = bgp_zebra_send_remote_vtep(bgp, vpn, p, 0);
128ea8ab 917
d62a17ae 918 return ret;
128ea8ab 919}
920
921/*
922 * Due to MAC mobility, the prior "local" best route has been supplanted
923 * by a "remote" best route. The prior route has to be deleted and withdrawn
924 * from peers.
925 */
d62a17ae 926static void evpn_delete_old_local_route(struct bgp *bgp, struct bgpevpn *vpn,
927 struct bgp_node *rn,
4b7e6066 928 struct bgp_path_info *old_local)
128ea8ab 929{
d62a17ae 930 struct bgp_node *global_rn;
40381db7 931 struct bgp_path_info *pi;
d62a17ae 932 afi_t afi = AFI_L2VPN;
933 safi_t safi = SAFI_EVPN;
128ea8ab 934
d62a17ae 935 /* Locate route node in the global EVPN routing table. Note that
936 * this table is a 2-level tree (RD-level + Prefix-level) similar to
937 * L3VPN routes.
938 */
939 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
940 (struct prefix *)&rn->p, &vpn->prd);
941 if (global_rn) {
942 /* Delete route entry in the global EVPN table. */
40381db7 943 delete_evpn_route_entry(bgp, afi, safi, global_rn, &pi);
128ea8ab 944
d62a17ae 945 /* Schedule for processing - withdraws to peers happen from
946 * this table.
947 */
40381db7 948 if (pi)
d62a17ae 949 bgp_process(bgp, global_rn, afi, safi);
950 bgp_unlock_node(global_rn);
951 }
128ea8ab 952
d62a17ae 953 /* Delete route entry in the VNI route table, caller to remove. */
18ee8310 954 bgp_path_info_delete(rn, old_local);
128ea8ab 955}
956
50f74cf1 957static struct in_addr *es_vtep_new(struct in_addr vtep)
958{
959 struct in_addr *ip;
960
961 ip = XCALLOC(MTYPE_BGP_EVPN_ES_VTEP, sizeof(struct in_addr));
962 if (!ip)
963 return NULL;
964
965 ip->s_addr = vtep.s_addr;
966 return ip;
967}
968
969static void es_vtep_free(struct in_addr *ip)
970{
971 XFREE(MTYPE_BGP_EVPN_ES_VTEP, ip);
972}
973
974/* check if VTEP is already part of the list */
975static int is_vtep_present_in_list(struct list *list,
976 struct in_addr vtep)
977{
978 struct listnode *node = NULL;
979 struct in_addr *tmp;
980
981 for (ALL_LIST_ELEMENTS_RO(list, node, tmp)) {
982 if (tmp->s_addr == vtep.s_addr)
983 return 1;
984 }
985 return 0;
986}
987
2bb9eff4
DS
988/*
989 * Best path for ES route was changed,
990 * update the list of VTEPs for this ES
991 */
50f74cf1 992static int evpn_es_install_vtep(struct bgp *bgp,
993 struct evpnes *es,
994 struct prefix_evpn *p,
995 struct in_addr rvtep)
996{
997 struct in_addr *vtep_ip;
998
999 if (is_vtep_present_in_list(es->vtep_list, rvtep))
1000 return 0;
1001
1002
1003 vtep_ip = es_vtep_new(rvtep);
1004 if (vtep_ip)
1005 listnode_add_sort(es->vtep_list, vtep_ip);
1006 return 0;
1007}
1008
2bb9eff4
DS
1009/*
1010 * Best path for ES route was changed,
1011 * update the list of VTEPs for this ES
1012 */
50f74cf1 1013static int evpn_es_uninstall_vtep(struct bgp *bgp,
1014 struct evpnes *es,
1015 struct prefix_evpn *p,
1016 struct in_addr rvtep)
1017{
1018 struct listnode *node, *nnode, *node_to_del = NULL;
1019 struct in_addr *tmp;
1020
1021 for (ALL_LIST_ELEMENTS(es->vtep_list, node, nnode, tmp)) {
1022 if (tmp->s_addr == rvtep.s_addr) {
1023 es_vtep_free(tmp);
1024 node_to_del = node;
1025 }
1026 }
1027
1028 if (node_to_del)
1029 list_delete_node(es->vtep_list, node_to_del);
1030
1031 return 0;
1032}
1033
1034/*
1035 * Calculate the best path for a ES(type-4) route.
1036 */
1037static int evpn_es_route_select_install(struct bgp *bgp,
1038 struct evpnes *es,
1039 struct bgp_node *rn)
1040{
1041 int ret = 0;
1042 afi_t afi = AFI_L2VPN;
1043 safi_t safi = SAFI_EVPN;
4b7e6066
DS
1044 struct bgp_path_info *old_select; /* old best */
1045 struct bgp_path_info *new_select; /* new best */
1046 struct bgp_path_info_pair old_and_new;
50f74cf1 1047
1048 /* Compute the best path. */
1049 bgp_best_selection(bgp, rn, &bgp->maxpaths[afi][safi],
1050 &old_and_new, afi, safi);
1051 old_select = old_and_new.old;
1052 new_select = old_and_new.new;
1053
2bb9eff4
DS
1054 /*
1055 * If the best path hasn't changed - see if something needs to be
50f74cf1 1056 * updated
1057 */
1058 if (old_select && old_select == new_select
1059 && old_select->type == ZEBRA_ROUTE_BGP
1060 && old_select->sub_type == BGP_ROUTE_IMPORTED
1061 && !CHECK_FLAG(rn->flags, BGP_NODE_USER_CLEAR)
1defdda8 1062 && !CHECK_FLAG(old_select->flags, BGP_PATH_ATTR_CHANGED)
dcc68b5e 1063 && !bgp_addpath_is_addpath_used(&bgp->tx_addpath, afi, safi)) {
50f74cf1 1064 if (bgp_zebra_has_route_changed(rn, old_select)) {
1065 ret = evpn_es_install_vtep(bgp, es,
1066 (struct prefix_evpn *)&rn->p,
1067 old_select->attr->nexthop);
1068 }
1defdda8 1069 UNSET_FLAG(old_select->flags, BGP_PATH_MULTIPATH_CHG);
50f74cf1 1070 bgp_zebra_clear_route_change_flags(rn);
1071 return ret;
1072 }
1073
1074 /* If the user did a "clear" this flag will be set */
1075 UNSET_FLAG(rn->flags, BGP_NODE_USER_CLEAR);
1076
2bb9eff4
DS
1077 /*
1078 * bestpath has changed; update relevant fields and install or uninstall
50f74cf1 1079 * into the zebra RIB.
1080 */
1081 if (old_select || new_select)
1082 bgp_bump_version(rn);
1083
1084 if (old_select)
18ee8310 1085 bgp_path_info_unset_flag(rn, old_select, BGP_PATH_SELECTED);
50f74cf1 1086 if (new_select) {
18ee8310
DS
1087 bgp_path_info_set_flag(rn, new_select, BGP_PATH_SELECTED);
1088 bgp_path_info_unset_flag(rn, new_select, BGP_PATH_ATTR_CHANGED);
1defdda8 1089 UNSET_FLAG(new_select->flags, BGP_PATH_MULTIPATH_CHG);
50f74cf1 1090 }
1091
1092 if (new_select && new_select->type == ZEBRA_ROUTE_BGP
1093 && new_select->sub_type == BGP_ROUTE_IMPORTED) {
1094 ret = evpn_es_install_vtep(bgp, es,
1095 (struct prefix_evpn *)&rn->p,
1096 new_select->attr->nexthop);
1097 } else {
1098 if (old_select && old_select->type == ZEBRA_ROUTE_BGP
1099 && old_select->sub_type == BGP_ROUTE_IMPORTED)
2bb9eff4
DS
1100 ret = evpn_es_uninstall_vtep(
1101 bgp, es, (struct prefix_evpn *)&rn->p,
1102 old_select->attr->nexthop);
50f74cf1 1103 }
1104
1105 /* Clear any route change flags. */
1106 bgp_zebra_clear_route_change_flags(rn);
1107
18ee8310 1108 /* Reap old select bgp_path_info, if it has been removed */
1defdda8 1109 if (old_select && CHECK_FLAG(old_select->flags, BGP_PATH_REMOVED))
18ee8310 1110 bgp_path_info_reap(rn, old_select);
50f74cf1 1111
1112 return ret;
1113}
1114
128ea8ab 1115/*
1116 * Calculate the best path for an EVPN route. Install/update best path in zebra,
1117 * if appropriate.
1118 */
d62a17ae 1119static int evpn_route_select_install(struct bgp *bgp, struct bgpevpn *vpn,
1120 struct bgp_node *rn)
1121{
4b7e6066
DS
1122 struct bgp_path_info *old_select, *new_select;
1123 struct bgp_path_info_pair old_and_new;
68e33151 1124 struct prefix_evpn *evp;
d62a17ae 1125 afi_t afi = AFI_L2VPN;
1126 safi_t safi = SAFI_EVPN;
1127 int ret = 0;
d7c0a89a 1128 uint8_t flags = 0;
d62a17ae 1129
1130 /* Compute the best path. */
1131 bgp_best_selection(bgp, rn, &bgp->maxpaths[afi][safi], &old_and_new,
1132 afi, safi);
1133 old_select = old_and_new.old;
1134 new_select = old_and_new.new;
1135
68e33151 1136 evp = (struct prefix_evpn *)&rn->p;
d62a17ae 1137 /* If the best path hasn't changed - see if there is still something to
1138 * update
1139 * to zebra RIB.
1140 */
1141 if (old_select && old_select == new_select
1142 && old_select->type == ZEBRA_ROUTE_BGP
90f4f482 1143 && old_select->sub_type == BGP_ROUTE_IMPORTED
d62a17ae 1144 && !CHECK_FLAG(rn->flags, BGP_NODE_USER_CLEAR)
1defdda8 1145 && !CHECK_FLAG(old_select->flags, BGP_PATH_ATTR_CHANGED)
dcc68b5e 1146 && !bgp_addpath_is_addpath_used(&bgp->tx_addpath, afi, safi)) {
ead40654
MK
1147 if (bgp_zebra_has_route_changed(rn, old_select)) {
1148 if (old_select->attr->sticky)
1149 SET_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY);
1150 if (old_select->attr->default_gw)
1151 SET_FLAG(flags, ZEBRA_MACIP_TYPE_GW);
68e33151
CS
1152 if (is_evpn_prefix_ipaddr_v6(evp) &&
1153 old_select->attr->router_flag)
1154 SET_FLAG(flags, ZEBRA_MACIP_TYPE_ROUTER_FLAG);
1155
996c9314
LB
1156 ret = evpn_zebra_install(
1157 bgp, vpn, (struct prefix_evpn *)&rn->p,
f07e1c99 1158 old_select->attr->nexthop, flags,
1159 mac_mobility_seqnum(old_select->attr));
ead40654 1160 }
1defdda8 1161 UNSET_FLAG(old_select->flags, BGP_PATH_MULTIPATH_CHG);
d62a17ae 1162 bgp_zebra_clear_route_change_flags(rn);
1163 return ret;
1164 }
1165
1166 /* If the user did a "clear" this flag will be set */
1167 UNSET_FLAG(rn->flags, BGP_NODE_USER_CLEAR);
1168
1169 /* bestpath has changed; update relevant fields and install or uninstall
1170 * into the zebra RIB.
1171 */
1172 if (old_select || new_select)
1173 bgp_bump_version(rn);
1174
1175 if (old_select)
18ee8310 1176 bgp_path_info_unset_flag(rn, old_select, BGP_PATH_SELECTED);
d62a17ae 1177 if (new_select) {
18ee8310
DS
1178 bgp_path_info_set_flag(rn, new_select, BGP_PATH_SELECTED);
1179 bgp_path_info_unset_flag(rn, new_select, BGP_PATH_ATTR_CHANGED);
1defdda8 1180 UNSET_FLAG(new_select->flags, BGP_PATH_MULTIPATH_CHG);
d62a17ae 1181 }
1182
1183 if (new_select && new_select->type == ZEBRA_ROUTE_BGP
90f4f482 1184 && new_select->sub_type == BGP_ROUTE_IMPORTED) {
ead40654
MK
1185 flags = 0;
1186 if (new_select->attr->sticky)
1187 SET_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY);
1188 if (new_select->attr->default_gw)
1189 SET_FLAG(flags, ZEBRA_MACIP_TYPE_GW);
68e33151
CS
1190 if (is_evpn_prefix_ipaddr_v6(evp) &&
1191 new_select->attr->router_flag)
1192 SET_FLAG(flags, ZEBRA_MACIP_TYPE_ROUTER_FLAG);
1193
d62a17ae 1194 ret = evpn_zebra_install(bgp, vpn, (struct prefix_evpn *)&rn->p,
f07e1c99 1195 new_select->attr->nexthop, flags,
1196 mac_mobility_seqnum(new_select->attr));
d62a17ae 1197 /* If an old best existed and it was a "local" route, the only
1198 * reason
1199 * it would be supplanted is due to MAC mobility procedures. So,
1200 * we
1201 * need to do an implicit delete and withdraw that route from
1202 * peers.
1203 */
1204 if (old_select && old_select->peer == bgp->peer_self
1205 && old_select->type == ZEBRA_ROUTE_BGP
1206 && old_select->sub_type == BGP_ROUTE_STATIC)
1207 evpn_delete_old_local_route(bgp, vpn, rn, old_select);
1208 } else {
1209 if (old_select && old_select->type == ZEBRA_ROUTE_BGP
90f4f482 1210 && old_select->sub_type == BGP_ROUTE_IMPORTED)
d62a17ae 1211 ret = evpn_zebra_uninstall(bgp, vpn,
1212 (struct prefix_evpn *)&rn->p,
1213 old_select->attr->nexthop);
1214 }
1215
1216 /* Clear any route change flags. */
1217 bgp_zebra_clear_route_change_flags(rn);
1218
18ee8310 1219 /* Reap old select bgp_path_info, if it has been removed */
1defdda8 1220 if (old_select && CHECK_FLAG(old_select->flags, BGP_PATH_REMOVED))
18ee8310 1221 bgp_path_info_reap(rn, old_select);
d62a17ae 1222
1223 return ret;
128ea8ab 1224}
1225
ead40654
MK
1226/*
1227 * Return true if the local ri for this rn is of type gateway mac
1228 */
1229static int evpn_route_is_def_gw(struct bgp *bgp, struct bgp_node *rn)
1230{
40381db7
DS
1231 struct bgp_path_info *tmp_pi = NULL;
1232 struct bgp_path_info *local_pi = NULL;
ead40654 1233
40381db7
DS
1234 local_pi = NULL;
1235 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1236 if (tmp_pi->peer == bgp->peer_self
1237 && tmp_pi->type == ZEBRA_ROUTE_BGP
1238 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
1239 local_pi = tmp_pi;
ead40654
MK
1240 }
1241
40381db7 1242 if (!local_pi)
ead40654
MK
1243 return 0;
1244
40381db7 1245 return local_pi->attr->default_gw;
ead40654
MK
1246}
1247
c85c03c7 1248
1249/*
1250 * Return true if the local ri for this rn has sticky set
1251 */
d62a17ae 1252static int evpn_route_is_sticky(struct bgp *bgp, struct bgp_node *rn)
c85c03c7 1253{
40381db7
DS
1254 struct bgp_path_info *tmp_pi;
1255 struct bgp_path_info *local_pi;
c85c03c7 1256
40381db7
DS
1257 local_pi = NULL;
1258 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1259 if (tmp_pi->peer == bgp->peer_self
1260 && tmp_pi->type == ZEBRA_ROUTE_BGP
1261 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
1262 local_pi = tmp_pi;
d62a17ae 1263 }
c85c03c7 1264
40381db7 1265 if (!local_pi)
d62a17ae 1266 return 0;
c85c03c7 1267
40381db7 1268 return local_pi->attr->sticky;
c85c03c7 1269}
1270
50f74cf1 1271/*
1272 * create or update EVPN type4 route entry.
1273 * This could be in the ES table or the global table.
1274 * TODO: handle remote ES (type4) routes as well
1275 */
4b7e6066 1276static int update_evpn_type4_route_entry(struct bgp *bgp, struct evpnes *es,
50f74cf1 1277 afi_t afi, safi_t safi,
4b7e6066
DS
1278 struct bgp_node *rn, struct attr *attr,
1279 int add, struct bgp_path_info **ri,
50f74cf1 1280 int *route_changed)
1281{
1282 char buf[ESI_STR_LEN];
1283 char buf1[INET6_ADDRSTRLEN];
40381db7
DS
1284 struct bgp_path_info *tmp_pi = NULL;
1285 struct bgp_path_info *local_pi = NULL; /* local route entry if any */
1286 struct bgp_path_info *remote_pi = NULL; /* remote route entry if any */
50f74cf1 1287 struct attr *attr_new = NULL;
1288 struct prefix_evpn *evp = NULL;
1289
1290 *ri = NULL;
1291 *route_changed = 1;
1292 evp = (struct prefix_evpn *)&rn->p;
1293
1294 /* locate the local and remote entries if any */
40381db7
DS
1295 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1296 if (tmp_pi->peer == bgp->peer_self
1297 && tmp_pi->type == ZEBRA_ROUTE_BGP
1298 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
1299 local_pi = tmp_pi;
1300 if (tmp_pi->type == ZEBRA_ROUTE_BGP
1301 && tmp_pi->sub_type == BGP_ROUTE_IMPORTED
1302 && CHECK_FLAG(tmp_pi->flags, BGP_PATH_VALID))
1303 remote_pi = tmp_pi;
50f74cf1 1304 }
1305
40381db7 1306 /* we don't expect to see a remote_pi at this point.
50f74cf1 1307 * An ES route has esi + vtep_ip as the key,
1308 * We shouldn't see the same route from any other vtep.
1309 */
40381db7 1310 if (remote_pi) {
af4c2728 1311 flog_err(
e50f7cfd 1312 EC_BGP_ES_INVALID,
14454c9f
DS
1313 "%u ERROR: local es route for ESI: %s Vtep %s also learnt from remote",
1314 bgp->vrf_id,
1315 esi_to_str(&evp->prefix.es_addr.esi, buf, sizeof(buf)),
1316 ipaddr2str(&es->originator_ip, buf1, sizeof(buf1)));
50f74cf1 1317 return -1;
1318 }
1319
40381db7 1320 if (!local_pi && !add)
50f74cf1 1321 return 0;
1322
1323 /* create or update the entry */
40381db7 1324 if (!local_pi) {
50f74cf1 1325
1326 /* Add or update attribute to hash */
1327 attr_new = bgp_attr_intern(attr);
1328
1329 /* Create new route with its attribute. */
40381db7
DS
1330 tmp_pi = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0,
1331 bgp->peer_self, attr_new, rn);
1332 SET_FLAG(tmp_pi->flags, BGP_PATH_VALID);
50f74cf1 1333
1334 /* add the newly created path to the route-node */
40381db7 1335 bgp_path_info_add(rn, tmp_pi);
50f74cf1 1336 } else {
40381db7
DS
1337 tmp_pi = local_pi;
1338 if (attrhash_cmp(tmp_pi->attr, attr)
1339 && !CHECK_FLAG(tmp_pi->flags, BGP_PATH_REMOVED))
50f74cf1 1340 *route_changed = 0;
1341 else {
1342 /* The attribute has changed.
1343 * Add (or update) attribute to hash. */
1344 attr_new = bgp_attr_intern(attr);
40381db7 1345 bgp_path_info_set_flag(rn, tmp_pi,
18ee8310 1346 BGP_PATH_ATTR_CHANGED);
50f74cf1 1347
1348 /* Restore route, if needed. */
40381db7
DS
1349 if (CHECK_FLAG(tmp_pi->flags, BGP_PATH_REMOVED))
1350 bgp_path_info_restore(rn, tmp_pi);
50f74cf1 1351
1352 /* Unintern existing, set to new. */
40381db7
DS
1353 bgp_attr_unintern(&tmp_pi->attr);
1354 tmp_pi->attr = attr_new;
1355 tmp_pi->uptime = bgp_clock();
50f74cf1 1356 }
1357 }
1358
1359 /* Return back the route entry. */
40381db7 1360 *ri = tmp_pi;
50f74cf1 1361 return 0;
1362}
1363
1364/* update evpn es (type-4) route */
1365static int update_evpn_type4_route(struct bgp *bgp,
1366 struct evpnes *es,
1367 struct prefix_evpn *p)
1368{
1369 int ret = 0;
1370 int route_changed = 0;
1371 char buf[ESI_STR_LEN];
1372 char buf1[INET6_ADDRSTRLEN];
1373 afi_t afi = AFI_L2VPN;
1374 safi_t safi = SAFI_EVPN;
1375 struct attr attr;
1376 struct attr *attr_new = NULL;
1377 struct bgp_node *rn = NULL;
40381db7 1378 struct bgp_path_info *pi = NULL;
50f74cf1 1379
1380 memset(&attr, 0, sizeof(struct attr));
1381
1382 /* Build path-attribute for this route. */
1383 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1384 attr.nexthop = es->originator_ip.ipaddr_v4;
1385 attr.mp_nexthop_global_in = es->originator_ip.ipaddr_v4;
1386 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1387
1388 /* Set up extended community. */
1389 build_evpn_type4_route_extcomm(es, &attr);
1390
1391 /* First, create (or fetch) route node within the ESI. */
1392 /* NOTE: There is no RD here. */
1393 rn = bgp_node_get(es->route_table, (struct prefix *)p);
1394
1395 /* Create or update route entry. */
40381db7
DS
1396 ret = update_evpn_type4_route_entry(bgp, es, afi, safi, rn, &attr, 1,
1397 &pi, &route_changed);
50f74cf1 1398 if (ret != 0) {
1c50c1c0
QY
1399 flog_err(EC_BGP_ES_INVALID,
1400 "%u ERROR: Failed to updated ES route ESI: %s VTEP %s",
1401 bgp->vrf_id,
1402 esi_to_str(&p->prefix.es_addr.esi, buf, sizeof(buf)),
1403 ipaddr2str(&es->originator_ip, buf1, sizeof(buf1)));
50f74cf1 1404 }
1405
40381db7
DS
1406 assert(pi);
1407 attr_new = pi->attr;
50f74cf1 1408
1409 /* Perform route selection;
1410 * this is just to set the flags correctly
1411 * as local route in the ES always wins.
1412 */
1413 evpn_es_route_select_install(bgp, es, rn);
1414 bgp_unlock_node(rn);
1415
1416 /* If this is a new route or some attribute has changed, export the
1417 * route to the global table. The route will be advertised to peers
1418 * from there. Note that this table is a 2-level tree (RD-level +
1419 * Prefix-level) similar to L3VPN routes.
1420 */
1421 if (route_changed) {
40381db7 1422 struct bgp_path_info *global_pi;
50f74cf1 1423
1424 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
1425 (struct prefix *)p, &es->prd);
40381db7
DS
1426 update_evpn_type4_route_entry(bgp, es, afi, safi, rn, attr_new,
1427 1, &global_pi, &route_changed);
50f74cf1 1428
1429 /* Schedule for processing and unlock node. */
1430 bgp_process(bgp, rn, afi, safi);
1431 bgp_unlock_node(rn);
1432 }
1433
1434 /* Unintern temporary. */
1435 aspath_unintern(&attr.aspath);
1436 return 0;
1437}
1438
342dd0c6 1439static int update_evpn_type5_route_entry(struct bgp *bgp_def,
1440 struct bgp *bgp_vrf, afi_t afi,
1441 safi_t safi, struct bgp_node *rn,
5424b7ba 1442 struct attr *attr, int *route_changed)
342dd0c6 1443{
1444 struct attr *attr_new = NULL;
40381db7 1445 struct bgp_path_info *pi = NULL;
342dd0c6 1446 mpls_label_t label = MPLS_INVALID_LABEL;
40381db7
DS
1447 struct bgp_path_info *local_pi = NULL;
1448 struct bgp_path_info *tmp_pi = NULL;
342dd0c6 1449
5424b7ba 1450 *route_changed = 0;
342dd0c6 1451 /* locate the local route entry if any */
40381db7
DS
1452 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1453 if (tmp_pi->peer == bgp_def->peer_self
1454 && tmp_pi->type == ZEBRA_ROUTE_BGP
1455 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
1456 local_pi = tmp_pi;
342dd0c6 1457 }
1458
2bb9eff4 1459 /*
0437e105 1460 * create a new route entry if one doesn't exist.
2bb9eff4 1461 * Otherwise see if route attr has changed
523cafc4 1462 */
40381db7 1463 if (!local_pi) {
342dd0c6 1464
5424b7ba
MK
1465 /* route has changed as this is the first entry */
1466 *route_changed = 1;
1467
342dd0c6 1468 /* Add (or update) attribute to hash. */
1469 attr_new = bgp_attr_intern(attr);
1470
1471 /* create the route info from attribute */
40381db7 1472 pi = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0,
342dd0c6 1473 bgp_def->peer_self, attr_new, rn);
40381db7 1474 SET_FLAG(pi->flags, BGP_PATH_VALID);
342dd0c6 1475
b57ba6d2 1476 /* Type-5 routes advertise the L3-VNI */
40381db7 1477 bgp_path_info_extra_get(pi);
342dd0c6 1478 vni2label(bgp_vrf->l3vni, &label);
40381db7
DS
1479 memcpy(&pi->extra->label, &label, sizeof(label));
1480 pi->extra->num_labels = 1;
342dd0c6 1481
1482 /* add the route entry to route node*/
40381db7 1483 bgp_path_info_add(rn, pi);
342dd0c6 1484 } else {
1485
40381db7
DS
1486 tmp_pi = local_pi;
1487 if (!attrhash_cmp(tmp_pi->attr, attr)) {
5424b7ba
MK
1488
1489 /* attribute changed */
1490 *route_changed = 1;
1491
342dd0c6 1492 /* The attribute has changed. */
1493 /* Add (or update) attribute to hash. */
1494 attr_new = bgp_attr_intern(attr);
40381db7 1495 bgp_path_info_set_flag(rn, tmp_pi,
18ee8310 1496 BGP_PATH_ATTR_CHANGED);
342dd0c6 1497
1498 /* Restore route, if needed. */
40381db7
DS
1499 if (CHECK_FLAG(tmp_pi->flags, BGP_PATH_REMOVED))
1500 bgp_path_info_restore(rn, tmp_pi);
342dd0c6 1501
1502 /* Unintern existing, set to new. */
40381db7
DS
1503 bgp_attr_unintern(&tmp_pi->attr);
1504 tmp_pi->attr = attr_new;
1505 tmp_pi->uptime = bgp_clock();
342dd0c6 1506 }
1507 }
1508 return 0;
1509}
1510
1511/* update evpn type-5 route entry */
996c9314
LB
1512static int update_evpn_type5_route(struct bgp *bgp_vrf, struct prefix_evpn *evp,
1513 struct attr *src_attr)
342dd0c6 1514{
1515 afi_t afi = AFI_L2VPN;
1516 safi_t safi = SAFI_EVPN;
1517 struct attr attr;
1518 struct bgp_node *rn = NULL;
1519 struct bgp *bgp_def = NULL;
5424b7ba 1520 int route_changed = 0;
342dd0c6 1521
1522 bgp_def = bgp_get_default();
1523 if (!bgp_def)
faafdfa8 1524 return 0;
342dd0c6 1525
2f69f6d3 1526 /* Build path attribute for this route - use the source attr, if
1527 * present, else treat as locally originated.
1528 */
1529 if (src_attr)
1530 bgp_attr_dup(&attr, src_attr);
1531 else {
1532 memset(&attr, 0, sizeof(struct attr));
1533 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1534 }
1535 /* Set nexthop to ourselves and fill in the Router MAC. */
342dd0c6 1536 attr.nexthop = bgp_vrf->originator_ip;
1537 attr.mp_nexthop_global_in = bgp_vrf->originator_ip;
1538 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1539 memcpy(&attr.rmac, &bgp_vrf->rmac, sizeof(struct ethaddr));
1540
1541 /* Setup RT and encap extended community */
1542 build_evpn_type5_route_extcomm(bgp_vrf, &attr);
1543
1544 /* get the route node in global table */
1545 rn = bgp_afi_node_get(bgp_def->rib[afi][safi], afi, safi,
996c9314 1546 (struct prefix *)evp, &bgp_vrf->vrf_prd);
342dd0c6 1547 assert(rn);
1548
1549 /* create or update the route entry within the route node */
996c9314
LB
1550 update_evpn_type5_route_entry(bgp_def, bgp_vrf, afi, safi, rn, &attr,
1551 &route_changed);
342dd0c6 1552
1553 /* schedule for processing and unlock node */
5424b7ba
MK
1554 if (route_changed) {
1555 bgp_process(bgp_def, rn, afi, safi);
1556 bgp_unlock_node(rn);
1557 }
342dd0c6 1558
1559 /* uninten temporary */
5ee65f6f 1560 if (!src_attr)
1561 aspath_unintern(&attr.aspath);
342dd0c6 1562 return 0;
1563}
1564
128ea8ab 1565/*
1566 * Create or update EVPN route entry. This could be in the VNI route table
1567 * or the global route table.
1568 */
d62a17ae 1569static int update_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
1570 afi_t afi, safi_t safi, struct bgp_node *rn,
f07e1c99 1571 struct attr *attr, int add,
40381db7 1572 struct bgp_path_info **pi, uint8_t flags,
f07e1c99 1573 uint32_t seq)
d62a17ae 1574{
40381db7
DS
1575 struct bgp_path_info *tmp_pi;
1576 struct bgp_path_info *local_pi;
d62a17ae 1577 struct attr *attr_new;
b57ba6d2 1578 mpls_label_t label[BGP_MAX_LABELS];
d7c0a89a 1579 uint32_t num_labels = 1;
d62a17ae 1580 int route_change = 1;
d7c0a89a 1581 uint8_t sticky = 0;
b57ba6d2 1582 struct prefix_evpn *evp;
d62a17ae 1583
40381db7 1584 *pi = NULL;
b57ba6d2
MK
1585 evp = (struct prefix_evpn *)&rn->p;
1586 memset(&label, 0, sizeof(label));
d62a17ae 1587
f07e1c99 1588 /* See if this is an update of an existing route, or a new add. */
40381db7
DS
1589 local_pi = NULL;
1590 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1591 if (tmp_pi->peer == bgp->peer_self
1592 && tmp_pi->type == ZEBRA_ROUTE_BGP
1593 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
1594 local_pi = tmp_pi;
d62a17ae 1595 }
1596
1597 /* If route doesn't exist already, create a new one, if told to.
1598 * Otherwise act based on whether the attributes of the route have
1599 * changed or not.
1600 */
40381db7 1601 if (!local_pi && !add)
d62a17ae 1602 return 0;
1603
f07e1c99 1604 /* For non-GW MACs, update MAC mobility seq number, if needed. */
1605 if (seq && !CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_GW))
1606 add_mac_mobility_to_attr(seq, attr);
d62a17ae 1607
40381db7 1608 if (!local_pi) {
d62a17ae 1609 /* Add (or update) attribute to hash. */
1610 attr_new = bgp_attr_intern(attr);
1611
1612 /* Extract MAC mobility sequence number, if any. */
1613 attr_new->mm_seqnum =
1614 bgp_attr_mac_mobility_seqnum(attr_new, &sticky);
1615 attr_new->sticky = sticky;
1616
1617 /* Create new route with its attribute. */
40381db7 1618 tmp_pi = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0,
d62a17ae 1619 bgp->peer_self, attr_new, rn);
40381db7
DS
1620 SET_FLAG(tmp_pi->flags, BGP_PATH_VALID);
1621 bgp_path_info_extra_get(tmp_pi);
d62a17ae 1622
1623 /* The VNI goes into the 'label' field of the route */
b57ba6d2 1624 vni2label(vpn->vni, &label[0]);
c48d9f5f
MK
1625
1626 /* Type-2 routes may carry a second VNI - the L3-VNI.
1627 * Only attach second label if we are advertising two labels for
1628 * type-2 routes.
1629 */
996c9314
LB
1630 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
1631 && CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS)) {
b57ba6d2
MK
1632 vni_t l3vni;
1633
1634 l3vni = bgpevpn_get_l3vni(vpn);
1635 if (l3vni) {
1636 vni2label(l3vni, &label[1]);
1637 num_labels++;
1638 }
1639 }
d62a17ae 1640
40381db7
DS
1641 memcpy(&tmp_pi->extra->label, label, sizeof(label));
1642 tmp_pi->extra->num_labels = num_labels;
1643 bgp_path_info_add(rn, tmp_pi);
d62a17ae 1644 } else {
40381db7
DS
1645 tmp_pi = local_pi;
1646 if (attrhash_cmp(tmp_pi->attr, attr)
1647 && !CHECK_FLAG(tmp_pi->flags, BGP_PATH_REMOVED))
d62a17ae 1648 route_change = 0;
1649 else {
c48d9f5f
MK
1650 /*
1651 * The attributes have changed, type-2 routes needs to
1652 * be advertised with right labels.
1653 */
1654 vni2label(vpn->vni, &label[0]);
996c9314
LB
1655 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
1656 && CHECK_FLAG(vpn->flags,
1657 VNI_FLAG_USE_TWO_LABELS)) {
c48d9f5f
MK
1658 vni_t l3vni;
1659
1660 l3vni = bgpevpn_get_l3vni(vpn);
1661 if (l3vni) {
1662 vni2label(l3vni, &label[1]);
1663 num_labels++;
1664 }
1665 }
40381db7
DS
1666 memcpy(&tmp_pi->extra->label, label, sizeof(label));
1667 tmp_pi->extra->num_labels = num_labels;
c48d9f5f 1668
d62a17ae 1669 /* The attribute has changed. */
1670 /* Add (or update) attribute to hash. */
1671 attr_new = bgp_attr_intern(attr);
40381db7 1672 bgp_path_info_set_flag(rn, tmp_pi,
18ee8310 1673 BGP_PATH_ATTR_CHANGED);
d62a17ae 1674
f07e1c99 1675 /* Extract MAC mobility sequence number, if any. */
1676 attr_new->mm_seqnum =
1677 bgp_attr_mac_mobility_seqnum(attr_new, &sticky);
1678 attr_new->sticky = sticky;
1679
d62a17ae 1680 /* Restore route, if needed. */
40381db7
DS
1681 if (CHECK_FLAG(tmp_pi->flags, BGP_PATH_REMOVED))
1682 bgp_path_info_restore(rn, tmp_pi);
d62a17ae 1683
1684 /* Unintern existing, set to new. */
40381db7
DS
1685 bgp_attr_unintern(&tmp_pi->attr);
1686 tmp_pi->attr = attr_new;
1687 tmp_pi->uptime = bgp_clock();
d62a17ae 1688 }
1689 }
1690
1691 /* Return back the route entry. */
40381db7 1692 *pi = tmp_pi;
d62a17ae 1693 return route_change;
128ea8ab 1694}
1695
6d8c603a
AK
1696/*
1697 * If the local route was not selected evict it and tell zebra to re-add
1698 * the best remote dest.
1699 *
1700 * Typically a local path added by zebra is expected to be selected as
1701 * best. In which case when a remote path wins as best (later)
1702 * evpn_route_select_install itself evicts the older-local-best path.
1703 *
1704 * However if bgp's add and zebra's add cross paths (race condition) it
1705 * is possible that the local path is no longer the "older" best path.
1706 * It is a path that was never designated as best and hence requires
1707 * additional handling to prevent bgp from injecting and holding on to a
1708 * non-best local path.
1709 */
1710static void evpn_cleanup_local_non_best_route(struct bgp *bgp,
1711 struct bgpevpn *vpn,
1712 struct bgp_node *rn,
9a8897aa 1713 struct bgp_path_info *local_pi)
6d8c603a
AK
1714{
1715 struct bgp_path_info *tmp_pi;
1716 struct bgp_path_info *curr_select = NULL;
1717 uint8_t flags = 0;
1718 char buf[PREFIX_STRLEN];
1719
6d8c603a
AK
1720 /* local path was not picked as the winner; kick it out */
1721 if (bgp_debug_zebra(NULL)) {
1722 zlog_debug("evicting local evpn prefix %s as remote won",
1723 prefix2str(&rn->p, buf, sizeof(buf)));
1724 }
6d8c603a
AK
1725 evpn_delete_old_local_route(bgp, vpn, rn, local_pi);
1726 bgp_path_info_reap(rn, local_pi);
1727
1728 /* tell zebra to re-add the best remote path */
1729 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
1730 if (CHECK_FLAG(tmp_pi->flags, BGP_PATH_SELECTED)) {
1731 curr_select = tmp_pi;
1732 break;
1733 }
1734 }
1735 if (curr_select &&
1736 curr_select->type == ZEBRA_ROUTE_BGP
1737 && curr_select->sub_type == BGP_ROUTE_IMPORTED) {
1738 if (curr_select->attr->sticky)
1739 SET_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY);
1740 if (curr_select->attr->default_gw)
1741 SET_FLAG(flags, ZEBRA_MACIP_TYPE_GW);
1742 evpn_zebra_install(bgp, vpn, (struct prefix_evpn *)&rn->p,
1743 curr_select->attr->nexthop, flags,
1744 mac_mobility_seqnum(curr_select->attr));
1745 }
1746}
1747
128ea8ab 1748/*
1749 * Create or update EVPN route (of type based on prefix) for specified VNI
1750 * and schedule for processing.
1751 */
d62a17ae 1752static int update_evpn_route(struct bgp *bgp, struct bgpevpn *vpn,
f07e1c99 1753 struct prefix_evpn *p, uint8_t flags,
1754 uint32_t seq)
128ea8ab 1755{
d62a17ae 1756 struct bgp_node *rn;
1757 struct attr attr;
1758 struct attr *attr_new;
1ec31309 1759 int add_l3_ecomm = 0;
40381db7 1760 struct bgp_path_info *pi;
d62a17ae 1761 afi_t afi = AFI_L2VPN;
1762 safi_t safi = SAFI_EVPN;
1763 int route_change;
128ea8ab 1764
d62a17ae 1765 memset(&attr, 0, sizeof(struct attr));
128ea8ab 1766
d62a17ae 1767 /* Build path-attribute for this route. */
1768 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1769 attr.nexthop = vpn->originator_ip;
1770 attr.mp_nexthop_global_in = vpn->originator_ip;
1771 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
317f1fe0 1772 attr.sticky = CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY) ? 1 : 0;
ead40654 1773 attr.default_gw = CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_GW) ? 1 : 0;
68e33151
CS
1774 attr.router_flag = CHECK_FLAG(flags,
1775 ZEBRA_MACIP_TYPE_ROUTER_FLAG) ? 1 : 0;
be41eb68
MK
1776
1777 /* PMSI is only needed for type-3 routes */
1778 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE)
1779 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL);
1780
1ec31309 1781 /* router mac is only needed for type-2 routes here. */
be41eb68
MK
1782 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
1783 bgpevpn_get_rmac(vpn, &attr.rmac);
a21bd7a3 1784 vni2label(vpn->vni, &(attr.label));
128ea8ab 1785
1ec31309 1786 /* Include L3 VNI related RTs and RMAC for type-2 routes, if they're
1787 * IPv4 or IPv6 global addresses and we're advertising L3VNI with
1788 * these routes.
1789 */
1790 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE &&
3714a385 1791 (is_evpn_prefix_ipaddr_v4(p) ||
1792 !IN6_IS_ADDR_LINKLOCAL(&p->prefix.macip_addr.ip.ipaddr_v6)) &&
148b548c 1793 CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS) &&
1794 bgpevpn_get_l3vni(vpn))
1ec31309 1795 add_l3_ecomm = 1;
1796
1797 /* Set up extended community. */
1798 build_evpn_route_extcomm(vpn, &attr, add_l3_ecomm);
128ea8ab 1799
d62a17ae 1800 /* First, create (or fetch) route node within the VNI. */
1801 /* NOTE: There is no RD here. */
1802 rn = bgp_node_get(vpn->route_table, (struct prefix *)p);
128ea8ab 1803
d62a17ae 1804 /* Create or update route entry. */
1805 route_change = update_evpn_route_entry(bgp, vpn, afi, safi, rn, &attr,
40381db7
DS
1806 1, &pi, flags, seq);
1807 assert(pi);
1808 attr_new = pi->attr;
128ea8ab 1809
6d8c603a
AK
1810 /* lock ri to prevent freeing in evpn_route_select_install */
1811 bgp_path_info_lock(pi);
d62a17ae 1812 /* Perform route selection; this is just to set the flags correctly
1813 * as local route in the VNI always wins.
1814 */
1815 evpn_route_select_install(bgp, vpn, rn);
6d8c603a 1816 /*
9a8897aa
AK
1817 * If the new local route was not selected evict it and tell zebra
1818 * to re-add the best remote dest. BGP doesn't retain non-best local
1819 * routes.
6d8c603a 1820 */
9a8897aa
AK
1821 if (!CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
1822 route_change = 0;
1823 evpn_cleanup_local_non_best_route(bgp, vpn, rn, pi);
1824 }
6d8c603a
AK
1825 bgp_path_info_unlock(pi);
1826
d62a17ae 1827 bgp_unlock_node(rn);
128ea8ab 1828
d62a17ae 1829 /* If this is a new route or some attribute has changed, export the
1830 * route to the global table. The route will be advertised to peers
1831 * from there. Note that this table is a 2-level tree (RD-level +
1832 * Prefix-level) similar to L3VPN routes.
1833 */
1834 if (route_change) {
40381db7 1835 struct bgp_path_info *global_pi;
128ea8ab 1836
d62a17ae 1837 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
1838 (struct prefix *)p, &vpn->prd);
f07e1c99 1839 update_evpn_route_entry(bgp, vpn, afi, safi, rn, attr_new, 1,
40381db7 1840 &global_pi, flags, seq);
128ea8ab 1841
d62a17ae 1842 /* Schedule for processing and unlock node. */
1843 bgp_process(bgp, rn, afi, safi);
1844 bgp_unlock_node(rn);
1845 }
128ea8ab 1846
d62a17ae 1847 /* Unintern temporary. */
1848 aspath_unintern(&attr.aspath);
128ea8ab 1849
d62a17ae 1850 return 0;
128ea8ab 1851}
1852
50f74cf1 1853/*
1854 * Delete EVPN route entry.
1855 * The entry can be in ESI/VNI table or the global table.
1856 */
4b7e6066 1857static void delete_evpn_route_entry(struct bgp *bgp, afi_t afi, safi_t safi,
50f74cf1 1858 struct bgp_node *rn,
40381db7 1859 struct bgp_path_info **pi)
342dd0c6 1860{
40381db7 1861 struct bgp_path_info *tmp_pi;
342dd0c6 1862
40381db7 1863 *pi = NULL;
342dd0c6 1864
50f74cf1 1865 /* Now, find matching route. */
40381db7
DS
1866 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next)
1867 if (tmp_pi->peer == bgp->peer_self
1868 && tmp_pi->type == ZEBRA_ROUTE_BGP
1869 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
342dd0c6 1870 break;
1871
40381db7 1872 *pi = tmp_pi;
342dd0c6 1873
1874 /* Mark route for delete. */
40381db7
DS
1875 if (tmp_pi)
1876 bgp_path_info_delete(rn, tmp_pi);
342dd0c6 1877}
1878
50f74cf1 1879
1880
1881/* Delete EVPN ES (type-4) route */
1882static int delete_evpn_type4_route(struct bgp *bgp,
1883 struct evpnes *es,
1884 struct prefix_evpn *p)
1885{
1886 afi_t afi = AFI_L2VPN;
1887 safi_t safi = SAFI_EVPN;
40381db7 1888 struct bgp_path_info *pi;
50f74cf1 1889 struct bgp_node *rn = NULL; /* rn in esi table */
1890 struct bgp_node *global_rn = NULL; /* rn in global table */
1891
1892 /* First, locate the route node within the ESI.
1893 * If it doesn't exist, ther is nothing to do.
1894 * Note: there is no RD here.
1895 */
1896 rn = bgp_node_lookup(es->route_table, (struct prefix *)p);
2bb9eff4 1897 if (!rn)
50f74cf1 1898 return 0;
1899
1900 /* Next, locate route node in the global EVPN routing table.
1901 * Note that this table is a 2-level tree (RD-level + Prefix-level)
1902 */
1903 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
1904 (struct prefix *)p, &es->prd);
1905 if (global_rn) {
1906
1907 /* Delete route entry in the global EVPN table. */
40381db7 1908 delete_evpn_route_entry(bgp, afi, safi, global_rn, &pi);
50f74cf1 1909
1910 /* Schedule for processing - withdraws to peers happen from
1911 * this table.
1912 */
40381db7 1913 if (pi)
50f74cf1 1914 bgp_process(bgp, global_rn, afi, safi);
1915 bgp_unlock_node(global_rn);
1916 }
1917
1918 /*
1919 * Delete route entry in the ESI route table.
1920 * This can just be removed.
1921 */
40381db7
DS
1922 delete_evpn_route_entry(bgp, afi, safi, rn, &pi);
1923 if (pi)
1924 bgp_path_info_reap(rn, pi);
50f74cf1 1925 bgp_unlock_node(rn);
1926 return 0;
1927}
1928
342dd0c6 1929/* Delete EVPN type5 route */
996c9314 1930static int delete_evpn_type5_route(struct bgp *bgp_vrf, struct prefix_evpn *evp)
342dd0c6 1931{
1932 afi_t afi = AFI_L2VPN;
1933 safi_t safi = SAFI_EVPN;
1934 struct bgp_node *rn = NULL;
40381db7 1935 struct bgp_path_info *pi = NULL;
342dd0c6 1936 struct bgp *bgp_def = NULL; /* default bgp instance */
1937
1938 bgp_def = bgp_get_default();
1939 if (!bgp_def)
faafdfa8 1940 return 0;
342dd0c6 1941
1942 /* locate the global route entry for this type-5 prefix */
1943 rn = bgp_afi_node_lookup(bgp_def->rib[afi][safi], afi, safi,
1944 (struct prefix *)evp, &bgp_vrf->vrf_prd);
1945 if (!rn)
1946 return 0;
1947
40381db7
DS
1948 delete_evpn_route_entry(bgp_def, afi, safi, rn, &pi);
1949 if (pi)
342dd0c6 1950 bgp_process(bgp_def, rn, afi, safi);
1951 bgp_unlock_node(rn);
1952 return 0;
1953}
1954
128ea8ab 1955/*
1956 * Delete EVPN route (of type based on prefix) for specified VNI and
1957 * schedule for processing.
1958 */
d62a17ae 1959static int delete_evpn_route(struct bgp *bgp, struct bgpevpn *vpn,
1960 struct prefix_evpn *p)
1961{
1962 struct bgp_node *rn, *global_rn;
40381db7 1963 struct bgp_path_info *pi;
d62a17ae 1964 afi_t afi = AFI_L2VPN;
1965 safi_t safi = SAFI_EVPN;
1966
1967 /* First, locate the route node within the VNI. If it doesn't exist,
1968 * there
1969 * is nothing further to do.
1970 */
1971 /* NOTE: There is no RD here. */
1972 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)p);
1973 if (!rn)
1974 return 0;
1975
1976 /* Next, locate route node in the global EVPN routing table. Note that
1977 * this table is a 2-level tree (RD-level + Prefix-level) similar to
1978 * L3VPN routes.
1979 */
1980 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
1981 (struct prefix *)p, &vpn->prd);
1982 if (global_rn) {
1983 /* Delete route entry in the global EVPN table. */
40381db7 1984 delete_evpn_route_entry(bgp, afi, safi, global_rn, &pi);
d62a17ae 1985
1986 /* Schedule for processing - withdraws to peers happen from
1987 * this table.
1988 */
40381db7 1989 if (pi)
d62a17ae 1990 bgp_process(bgp, global_rn, afi, safi);
1991 bgp_unlock_node(global_rn);
1992 }
1993
1994 /* Delete route entry in the VNI route table. This can just be removed.
1995 */
40381db7 1996 delete_evpn_route_entry(bgp, afi, safi, rn, &pi);
3e3aa88e 1997 if (pi) {
40381db7 1998 bgp_path_info_reap(rn, pi);
3e3aa88e
AK
1999 evpn_route_select_install(bgp, vpn, rn);
2000 }
d62a17ae 2001 bgp_unlock_node(rn);
2002
2003 return 0;
128ea8ab 2004}
2005
2006/*
2007 * Update all type-2 (MACIP) local routes for this VNI - these should also
2008 * be scheduled for advertise to peers.
2009 */
d62a17ae 2010static int update_all_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
2011{
2012 afi_t afi;
2013 safi_t safi;
2014 struct bgp_node *rn;
40381db7 2015 struct bgp_path_info *pi, *tmp_pi;
d62a17ae 2016 struct attr attr;
d62a17ae 2017 struct attr *attr_new;
f07e1c99 2018 uint32_t seq;
1ec31309 2019 int add_l3_ecomm = 0;
d62a17ae 2020
2021 afi = AFI_L2VPN;
2022 safi = SAFI_EVPN;
d62a17ae 2023
2024 /* Walk this VNI's route table and update local type-2 routes. For any
2025 * routes updated, update corresponding entry in the global table too.
2026 */
2027 for (rn = bgp_table_top(vpn->route_table); rn;
2028 rn = bgp_route_next(rn)) {
2029 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2030 struct bgp_node *rd_rn;
40381db7 2031 struct bgp_path_info *global_pi;
d62a17ae 2032
2033 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
2034 continue;
2035
f07e1c99 2036 /* Identify local route. */
40381db7
DS
2037 for (tmp_pi = rn->info; tmp_pi; tmp_pi = tmp_pi->next) {
2038 if (tmp_pi->peer == bgp->peer_self
2039 && tmp_pi->type == ZEBRA_ROUTE_BGP
2040 && tmp_pi->sub_type == BGP_ROUTE_STATIC)
f07e1c99 2041 break;
7ec156a9 2042 }
d62a17ae 2043
40381db7 2044 if (!tmp_pi)
d62a17ae 2045 continue;
2046
f07e1c99 2047 /*
2048 * Build attribute per local route as the MAC mobility and
2049 * some other values could differ for different routes. The
2050 * attributes will be shared in the hash table.
2051 */
2052 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
2053 attr.nexthop = vpn->originator_ip;
2054 attr.mp_nexthop_global_in = vpn->originator_ip;
2055 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
2056 bgpevpn_get_rmac(vpn, &attr.rmac);
2057
2058 if (evpn_route_is_sticky(bgp, rn))
2059 attr.sticky = 1;
2060 else if (evpn_route_is_def_gw(bgp, rn)) {
2061 attr.default_gw = 1;
2062 if (is_evpn_prefix_ipaddr_v6(evp))
2063 attr.router_flag = 1;
2064 }
2065
2066 /* Add L3 VNI RTs and RMAC for non IPv6 link-local if
2067 * using L3 VNI for type-2 routes also.
2068 */
2069 if ((is_evpn_prefix_ipaddr_v4(evp) ||
9df2b997 2070 !IN6_IS_ADDR_LINKLOCAL(
2071 &evp->prefix.macip_addr.ip.ipaddr_v6)) &&
f07e1c99 2072 CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS) &&
2073 bgpevpn_get_l3vni(vpn))
2074 add_l3_ecomm = 1;
2075
2076 /* Set up extended community. */
2077 build_evpn_route_extcomm(vpn, &attr, add_l3_ecomm);
2078
40381db7 2079 seq = mac_mobility_seqnum(tmp_pi->attr);
f07e1c99 2080
2081 /* Update the route entry. */
40381db7
DS
2082 update_evpn_route_entry(bgp, vpn, afi, safi, rn, &attr, 0, &pi,
2083 0, seq);
f07e1c99 2084
d62a17ae 2085 /* Perform route selection; this is just to set the flags
f07e1c99 2086 * correctly as local route in the VNI always wins.
d62a17ae 2087 */
2088 evpn_route_select_install(bgp, vpn, rn);
2089
40381db7 2090 attr_new = pi->attr;
d62a17ae 2091
2092 /* Update route in global routing table. */
2093 rd_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
2094 (struct prefix *)evp, &vpn->prd);
2095 assert(rd_rn);
2096 update_evpn_route_entry(bgp, vpn, afi, safi, rd_rn, attr_new, 0,
40381db7 2097 &global_pi, 0,
f07e1c99 2098 mac_mobility_seqnum(attr_new));
d62a17ae 2099
2100 /* Schedule for processing and unlock node. */
2101 bgp_process(bgp, rd_rn, afi, safi);
2102 bgp_unlock_node(rd_rn);
d62a17ae 2103
f07e1c99 2104 /* Unintern temporary. */
2105 aspath_unintern(&attr.aspath);
2106
2107 }
d62a17ae 2108
2109 return 0;
128ea8ab 2110}
2111
2112/*
2113 * Delete all type-2 (MACIP) local routes for this VNI - only from the
2114 * global routing table. These are also scheduled for withdraw from peers.
2115 */
d62a17ae 2116static int delete_global_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2117{
d62a17ae 2118 afi_t afi;
2119 safi_t safi;
2120 struct bgp_node *rdrn, *rn;
2121 struct bgp_table *table;
40381db7 2122 struct bgp_path_info *pi;
128ea8ab 2123
d62a17ae 2124 afi = AFI_L2VPN;
2125 safi = SAFI_EVPN;
128ea8ab 2126
d62a17ae 2127 rdrn = bgp_node_lookup(bgp->rib[afi][safi], (struct prefix *)&vpn->prd);
2128 if (rdrn && rdrn->info) {
2129 table = (struct bgp_table *)rdrn->info;
2130 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2131 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
128ea8ab 2132
d62a17ae 2133 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
2134 continue;
128ea8ab 2135
40381db7
DS
2136 delete_evpn_route_entry(bgp, afi, safi, rn, &pi);
2137 if (pi)
d62a17ae 2138 bgp_process(bgp, rn, afi, safi);
2139 }
2140 }
128ea8ab 2141
d62a17ae 2142 /* Unlock RD node. */
2143 if (rdrn)
2144 bgp_unlock_node(rdrn);
128ea8ab 2145
d62a17ae 2146 return 0;
128ea8ab 2147}
2148
2149/*
2150 * Delete all type-2 (MACIP) local routes for this VNI - from the global
2151 * table as well as the per-VNI route table.
2152 */
d62a17ae 2153static int delete_all_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2154{
d62a17ae 2155 afi_t afi;
2156 safi_t safi;
2157 struct bgp_node *rn;
40381db7 2158 struct bgp_path_info *pi;
128ea8ab 2159
d62a17ae 2160 afi = AFI_L2VPN;
2161 safi = SAFI_EVPN;
128ea8ab 2162
d62a17ae 2163 /* First, walk the global route table for this VNI's type-2 local
2164 * routes.
2165 * EVPN routes are a 2-level table, first get the RD table.
2166 */
2167 delete_global_type2_routes(bgp, vpn);
128ea8ab 2168
d62a17ae 2169 /* Next, walk this VNI's route table and delete local type-2 routes. */
2170 for (rn = bgp_table_top(vpn->route_table); rn;
2171 rn = bgp_route_next(rn)) {
2172 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
128ea8ab 2173
d62a17ae 2174 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
2175 continue;
128ea8ab 2176
40381db7 2177 delete_evpn_route_entry(bgp, afi, safi, rn, &pi);
128ea8ab 2178
d62a17ae 2179 /* Route entry in local table gets deleted immediately. */
40381db7
DS
2180 if (pi)
2181 bgp_path_info_reap(rn, pi);
d62a17ae 2182 }
128ea8ab 2183
d62a17ae 2184 return 0;
128ea8ab 2185}
2186
50f74cf1 2187/*
2188 * Delete all routes in per ES route-table
2189 */
2190static int delete_all_es_routes(struct bgp *bgp, struct evpnes *es)
2191{
2192 struct bgp_node *rn;
40381db7 2193 struct bgp_path_info *pi, *nextpi;
50f74cf1 2194
2195 /* Walk this ES's route table and delete all routes. */
2196 for (rn = bgp_table_top(es->route_table); rn;
2197 rn = bgp_route_next(rn)) {
40381db7
DS
2198 for (pi = rn->info; (pi != NULL) && (nextpi = pi->next, 1);
2199 pi = nextpi) {
2200 bgp_path_info_delete(rn, pi);
2201 bgp_path_info_reap(rn, pi);
50f74cf1 2202 }
2203 }
2204
2205 return 0;
2206}
2207
128ea8ab 2208/*
2209 * Delete all routes in the per-VNI route table.
2210 */
d62a17ae 2211static int delete_all_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2212{
d62a17ae 2213 struct bgp_node *rn;
40381db7 2214 struct bgp_path_info *pi, *nextpi;
128ea8ab 2215
d62a17ae 2216 /* Walk this VNI's route table and delete all routes. */
2217 for (rn = bgp_table_top(vpn->route_table); rn;
2218 rn = bgp_route_next(rn)) {
40381db7
DS
2219 for (pi = rn->info; (pi != NULL) && (nextpi = pi->next, 1);
2220 pi = nextpi) {
2221 bgp_path_info_delete(rn, pi);
2222 bgp_path_info_reap(rn, pi);
d62a17ae 2223 }
2224 }
128ea8ab 2225
d62a17ae 2226 return 0;
128ea8ab 2227}
2228
2229/*
2230 * Update (and advertise) local routes for a VNI. Invoked upon the VNI
2231 * export RT getting modified or change to tunnel IP. Note that these
2232 * situations need the route in the per-VNI table as well as the global
2233 * table to be updated (as attributes change).
2234 */
d62a17ae 2235static int update_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2236{
d62a17ae 2237 int ret;
2238 struct prefix_evpn p;
128ea8ab 2239
d62a17ae 2240 /* Update and advertise the type-3 route (only one) followed by the
2241 * locally learnt type-2 routes (MACIP) - for this VNI.
fd069644
DS
2242 *
2243 * RT-3 only if doing head-end replication
d62a17ae 2244 */
fd069644
DS
2245 if (bgp->vxlan_flood_ctrl == VXLAN_FLOOD_HEAD_END_REPL) {
2246 build_evpn_type3_prefix(&p, vpn->originator_ip);
2247 ret = update_evpn_route(bgp, vpn, &p, 0, 0);
2248 if (ret)
2249 return ret;
2250 }
128ea8ab 2251
d62a17ae 2252 return update_all_type2_routes(bgp, vpn);
128ea8ab 2253}
2254
50f74cf1 2255/* Delete (and withdraw) local routes for specified ES from global and ES table.
2256 * Also remove all other routes from the per ES table.
2257 * Invoked when ES is deleted.
2258 */
2259static int delete_routes_for_es(struct bgp *bgp, struct evpnes *es)
2260{
2261 int ret;
2262 char buf[ESI_STR_LEN];
2263 struct prefix_evpn p;
2264
2265 /* Delete and withdraw locally learnt ES route */
2266 build_evpn_type4_prefix(&p, &es->esi, es->originator_ip.ipaddr_v4);
2267 ret = delete_evpn_type4_route(bgp, es, &p);
2268 if (ret) {
e50f7cfd 2269 flog_err(EC_BGP_EVPN_ROUTE_DELETE,
1c50c1c0
QY
2270 "%u failed to delete type-4 route for ESI %s",
2271 bgp->vrf_id, esi_to_str(&es->esi, buf, sizeof(buf)));
50f74cf1 2272 }
2273
2274 /* Delete all routes from per ES table */
2275 return delete_all_es_routes(bgp, es);
2276}
2277
128ea8ab 2278/*
2279 * Delete (and withdraw) local routes for specified VNI from the global
2280 * table and per-VNI table. After this, remove all other routes from
2281 * the per-VNI table. Invoked upon the VNI being deleted or EVPN
2282 * (advertise-all-vni) being disabled.
2283 */
d62a17ae 2284static int delete_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2285{
d62a17ae 2286 int ret;
2287 struct prefix_evpn p;
128ea8ab 2288
d62a17ae 2289 /* Delete and withdraw locally learnt type-2 routes (MACIP)
2290 * followed by type-3 routes (only one) - for this VNI.
2291 */
2292 ret = delete_all_type2_routes(bgp, vpn);
2293 if (ret)
2294 return ret;
128ea8ab 2295
d62a17ae 2296 build_evpn_type3_prefix(&p, vpn->originator_ip);
2297 ret = delete_evpn_route(bgp, vpn, &p);
2298 if (ret)
2299 return ret;
128ea8ab 2300
d62a17ae 2301 /* Delete all routes from the per-VNI table. */
2302 return delete_all_vni_routes(bgp, vpn);
128ea8ab 2303}
2304
2305/*
d1911c26 2306 * There is a tunnel endpoint IP address change for this VNI, delete
2307 * prior type-3 route (if needed) and update.
2308 * Note: Route re-advertisement happens elsewhere after other processing
2309 * other changes.
128ea8ab 2310 */
d62a17ae 2311static int handle_tunnel_ip_change(struct bgp *bgp, struct bgpevpn *vpn,
2312 struct in_addr originator_ip)
128ea8ab 2313{
d62a17ae 2314 struct prefix_evpn p;
128ea8ab 2315
ddd16ed5
MK
2316 /* If VNI is not live, we only need to update the originator ip */
2317 if (!is_vni_live(vpn)) {
2318 vpn->originator_ip = originator_ip;
2319 return 0;
2320 }
2321
db0e1937
MK
2322 /* Update the tunnel-ip hash */
2323 bgp_tip_del(bgp, &vpn->originator_ip);
2324 bgp_tip_add(bgp, &originator_ip);
2325
2326 /* filter routes as martian nexthop db has changed */
2327 bgp_filter_evpn_routes_upon_martian_nh_change(bgp);
2328
d62a17ae 2329 /* Need to withdraw type-3 route as the originator IP is part
2330 * of the key.
2331 */
2332 build_evpn_type3_prefix(&p, vpn->originator_ip);
2333 delete_evpn_route(bgp, vpn, &p);
128ea8ab 2334
d62a17ae 2335 /* Update the tunnel IP and re-advertise all routes for this VNI. */
2336 vpn->originator_ip = originator_ip;
d1911c26 2337 return 0;
128ea8ab 2338}
2339
50f74cf1 2340/* Install EVPN route entry in ES */
4b7e6066 2341static int install_evpn_route_entry_in_es(struct bgp *bgp, struct evpnes *es,
50f74cf1 2342 struct prefix_evpn *p,
40381db7 2343 struct bgp_path_info *parent_pi)
50f74cf1 2344{
2345 int ret = 0;
2346 struct bgp_node *rn = NULL;
40381db7 2347 struct bgp_path_info *pi = NULL;
50f74cf1 2348 struct attr *attr_new = NULL;
2349
2350 /* Create (or fetch) route within the VNI.
2351 * NOTE: There is no RD here.
2352 */
2353 rn = bgp_node_get(es->route_table, (struct prefix *)p);
2354
2355 /* Check if route entry is already present. */
40381db7
DS
2356 for (pi = rn->info; pi; pi = pi->next)
2357 if (pi->extra
2358 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
50f74cf1 2359 break;
2360
40381db7 2361 if (!pi) {
50f74cf1 2362 /* Add (or update) attribute to hash. */
40381db7 2363 attr_new = bgp_attr_intern(parent_pi->attr);
50f74cf1 2364
2365 /* Create new route with its attribute. */
40381db7
DS
2366 pi = info_make(parent_pi->type, BGP_ROUTE_IMPORTED, 0,
2367 parent_pi->peer, attr_new, rn);
2368 SET_FLAG(pi->flags, BGP_PATH_VALID);
2369 bgp_path_info_extra_get(pi);
2370 pi->extra->parent = parent_pi;
2371 bgp_path_info_add(rn, pi);
50f74cf1 2372 } else {
40381db7
DS
2373 if (attrhash_cmp(pi->attr, parent_pi->attr)
2374 && !CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
50f74cf1 2375 bgp_unlock_node(rn);
2376 return 0;
2377 }
2378 /* The attribute has changed. */
2379 /* Add (or update) attribute to hash. */
40381db7 2380 attr_new = bgp_attr_intern(parent_pi->attr);
50f74cf1 2381
2382 /* Restore route, if needed. */
40381db7
DS
2383 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
2384 bgp_path_info_restore(rn, pi);
50f74cf1 2385
2386 /* Mark if nexthop has changed. */
40381db7
DS
2387 if (!IPV4_ADDR_SAME(&pi->attr->nexthop, &attr_new->nexthop))
2388 SET_FLAG(pi->flags, BGP_PATH_IGP_CHANGED);
50f74cf1 2389
2390 /* Unintern existing, set to new. */
40381db7
DS
2391 bgp_attr_unintern(&pi->attr);
2392 pi->attr = attr_new;
2393 pi->uptime = bgp_clock();
50f74cf1 2394 }
2395
2396 /* Perform route selection and update zebra, if required. */
2397 ret = evpn_es_route_select_install(bgp, es, rn);
2398 return ret;
2399}
2400
d3135ba3 2401/*
2402 * Install route entry into the VRF routing table and invoke route selection.
2403 */
2404static int install_evpn_route_entry_in_vrf(struct bgp *bgp_vrf,
2405 struct prefix_evpn *evp,
40381db7 2406 struct bgp_path_info *parent_pi)
d3135ba3 2407{
2408 struct bgp_node *rn;
40381db7 2409 struct bgp_path_info *pi;
1ec31309 2410 struct attr attr;
d3135ba3 2411 struct attr *attr_new;
c4edf708 2412 int ret = 0;
d3135ba3 2413 struct prefix p;
2414 struct prefix *pp = &p;
2415 afi_t afi = 0;
2416 safi_t safi = 0;
1eb88002
MK
2417 char buf[PREFIX_STRLEN];
2418 char buf1[PREFIX_STRLEN];
d3135ba3 2419
2420 memset(pp, 0, sizeof(struct prefix));
3714a385 2421 ip_prefix_from_evpn_prefix(evp, pp);
d3135ba3 2422
1eb88002 2423 if (bgp_debug_zebra(NULL)) {
996c9314
LB
2424 zlog_debug(
2425 "installing evpn prefix %s as ip prefix %s in vrf %s",
2426 prefix2str(evp, buf, sizeof(buf)),
2427 prefix2str(pp, buf1, sizeof(buf)),
2428 vrf_id_to_name(bgp_vrf->vrf_id));
1eb88002
MK
2429 }
2430
d3135ba3 2431 /* Create (or fetch) route within the VRF. */
2432 /* NOTE: There is no RD here. */
3714a385 2433 if (is_evpn_prefix_ipaddr_v4(evp)) {
d3135ba3 2434 afi = AFI_IP;
2435 safi = SAFI_UNICAST;
2436 rn = bgp_node_get(bgp_vrf->rib[afi][safi], pp);
3714a385 2437 } else if (is_evpn_prefix_ipaddr_v6(evp)) {
d3135ba3 2438 afi = AFI_IP6;
2439 safi = SAFI_UNICAST;
2440 rn = bgp_node_get(bgp_vrf->rib[afi][safi], pp);
2441 } else
2442 return 0;
2443
1ec31309 2444 /* EVPN routes currently only support a IPv4 next hop which corresponds
2445 * to the remote VTEP. When importing into a VRF, if it is IPv6 host
450e362d 2446 * or prefix route, we have to convert the next hop to an IPv4-mapped
2447 * address for the rest of the code to flow through. In the case of IPv4,
2448 * make sure to set the flag for next hop attribute.
1ec31309 2449 */
40381db7 2450 bgp_attr_dup(&attr, parent_pi->attr);
1ec31309 2451 if (afi == AFI_IP6)
2452 evpn_convert_nexthop_to_ipv6(&attr);
450e362d 2453 else
2454 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP);
1ec31309 2455
d3135ba3 2456 /* Check if route entry is already present. */
40381db7
DS
2457 for (pi = rn->info; pi; pi = pi->next)
2458 if (pi->extra
2459 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
d3135ba3 2460 break;
2461
40381db7 2462 if (!pi) {
d3135ba3 2463 /* Add (or update) attribute to hash. */
1ec31309 2464 attr_new = bgp_attr_intern(&attr);
d3135ba3 2465
2466 /* Create new route with its attribute. */
40381db7
DS
2467 pi = info_make(parent_pi->type, BGP_ROUTE_IMPORTED, 0,
2468 parent_pi->peer, attr_new, rn);
2469 SET_FLAG(pi->flags, BGP_PATH_VALID);
2470 bgp_path_info_extra_get(pi);
2471 pi->extra->parent = bgp_path_info_lock(parent_pi);
2472 bgp_lock_node((struct bgp_node *)parent_pi->net);
2473 if (parent_pi->extra) {
2474 memcpy(&pi->extra->label, &parent_pi->extra->label,
2475 sizeof(pi->extra->label));
2476 pi->extra->num_labels = parent_pi->extra->num_labels;
b57ba6d2 2477 }
40381db7 2478 bgp_path_info_add(rn, pi);
d3135ba3 2479 } else {
40381db7
DS
2480 if (attrhash_cmp(pi->attr, &attr)
2481 && !CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
d3135ba3 2482 bgp_unlock_node(rn);
2483 return 0;
2484 }
2485 /* The attribute has changed. */
2486 /* Add (or update) attribute to hash. */
1ec31309 2487 attr_new = bgp_attr_intern(&attr);
d3135ba3 2488
2489 /* Restore route, if needed. */
40381db7
DS
2490 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
2491 bgp_path_info_restore(rn, pi);
d3135ba3 2492
2493 /* Mark if nexthop has changed. */
40381db7
DS
2494 if ((afi == AFI_IP
2495 && !IPV4_ADDR_SAME(&pi->attr->nexthop, &attr_new->nexthop))
2496 || (afi == AFI_IP6
2497 && !IPV6_ADDR_SAME(&pi->attr->mp_nexthop_global,
2498 &attr_new->mp_nexthop_global)))
2499 SET_FLAG(pi->flags, BGP_PATH_IGP_CHANGED);
d3135ba3 2500
2501 /* Unintern existing, set to new. */
40381db7
DS
2502 bgp_attr_unintern(&pi->attr);
2503 pi->attr = attr_new;
2504 pi->uptime = bgp_clock();
d3135ba3 2505 }
2506
40381db7 2507 bgp_aggregate_increment(bgp_vrf, &rn->p, pi, afi, safi);
b49cdf4c 2508
d3135ba3 2509 /* Perform route selection and update zebra, if required. */
1eb88002 2510 bgp_process(bgp_vrf, rn, afi, safi);
d3135ba3 2511
2512 return ret;
2513}
2514
128ea8ab 2515/*
2516 * Install route entry into the VNI routing table and invoke route selection.
2517 */
d62a17ae 2518static int install_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
2519 struct prefix_evpn *p,
40381db7 2520 struct bgp_path_info *parent_pi)
d62a17ae 2521{
2522 struct bgp_node *rn;
40381db7 2523 struct bgp_path_info *pi;
d62a17ae 2524 struct attr *attr_new;
2525 int ret;
2526
2527 /* Create (or fetch) route within the VNI. */
2528 /* NOTE: There is no RD here. */
2529 rn = bgp_node_get(vpn->route_table, (struct prefix *)p);
2530
2531 /* Check if route entry is already present. */
40381db7
DS
2532 for (pi = rn->info; pi; pi = pi->next)
2533 if (pi->extra
2534 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
d62a17ae 2535 break;
2536
40381db7 2537 if (!pi) {
d62a17ae 2538 /* Add (or update) attribute to hash. */
40381db7 2539 attr_new = bgp_attr_intern(parent_pi->attr);
d62a17ae 2540
2541 /* Create new route with its attribute. */
40381db7
DS
2542 pi = info_make(parent_pi->type, BGP_ROUTE_IMPORTED, 0,
2543 parent_pi->peer, attr_new, rn);
2544 SET_FLAG(pi->flags, BGP_PATH_VALID);
2545 bgp_path_info_extra_get(pi);
2546 pi->extra->parent = bgp_path_info_lock(parent_pi);
2547 bgp_lock_node((struct bgp_node *)parent_pi->net);
2548 if (parent_pi->extra) {
2549 memcpy(&pi->extra->label, &parent_pi->extra->label,
2550 sizeof(pi->extra->label));
2551 pi->extra->num_labels = parent_pi->extra->num_labels;
b57ba6d2 2552 }
40381db7 2553 bgp_path_info_add(rn, pi);
d62a17ae 2554 } else {
40381db7
DS
2555 if (attrhash_cmp(pi->attr, parent_pi->attr)
2556 && !CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
d62a17ae 2557 bgp_unlock_node(rn);
2558 return 0;
2559 }
2560 /* The attribute has changed. */
2561 /* Add (or update) attribute to hash. */
40381db7 2562 attr_new = bgp_attr_intern(parent_pi->attr);
d62a17ae 2563
50f74cf1 2564 /* Restore route, if needed. */
40381db7
DS
2565 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
2566 bgp_path_info_restore(rn, pi);
50f74cf1 2567
2568 /* Mark if nexthop has changed. */
40381db7
DS
2569 if (!IPV4_ADDR_SAME(&pi->attr->nexthop, &attr_new->nexthop))
2570 SET_FLAG(pi->flags, BGP_PATH_IGP_CHANGED);
50f74cf1 2571
2572 /* Unintern existing, set to new. */
40381db7
DS
2573 bgp_attr_unintern(&pi->attr);
2574 pi->attr = attr_new;
2575 pi->uptime = bgp_clock();
50f74cf1 2576 }
2577
2578 /* Perform route selection and update zebra, if required. */
2579 ret = evpn_route_select_install(bgp, vpn, rn);
2580
2581 return ret;
2582}
2583
2584/* Uninstall EVPN route entry from ES route table */
4b7e6066 2585static int uninstall_evpn_route_entry_in_es(struct bgp *bgp, struct evpnes *es,
50f74cf1 2586 struct prefix_evpn *p,
40381db7 2587 struct bgp_path_info *parent_pi)
50f74cf1 2588{
2589 int ret;
2590 struct bgp_node *rn;
40381db7 2591 struct bgp_path_info *pi;
50f74cf1 2592
2593 if (!es->route_table)
2594 return 0;
2595
2596 /* Locate route within the ESI.
2597 * NOTE: There is no RD here.
2598 */
2599 rn = bgp_node_lookup(es->route_table, (struct prefix *)p);
2600 if (!rn)
2601 return 0;
2602
2603 /* Find matching route entry. */
40381db7
DS
2604 for (pi = rn->info; pi; pi = pi->next)
2605 if (pi->extra
2606 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
50f74cf1 2607 break;
d62a17ae 2608
40381db7 2609 if (!pi)
50f74cf1 2610 return 0;
d62a17ae 2611
50f74cf1 2612 /* Mark entry for deletion */
40381db7 2613 bgp_path_info_delete(rn, pi);
d62a17ae 2614
2615 /* Perform route selection and update zebra, if required. */
50f74cf1 2616 ret = evpn_es_route_select_install(bgp, es, rn);
2617
2618 /* Unlock route node. */
2619 bgp_unlock_node(rn);
d62a17ae 2620
2621 return ret;
128ea8ab 2622}
2623
d3135ba3 2624/*
2625 * Uninstall route entry from the VRF routing table and send message
2626 * to zebra, if appropriate.
2627 */
2628static int uninstall_evpn_route_entry_in_vrf(struct bgp *bgp_vrf,
2629 struct prefix_evpn *evp,
40381db7 2630 struct bgp_path_info *parent_pi)
d3135ba3 2631{
2632 struct bgp_node *rn;
40381db7 2633 struct bgp_path_info *pi;
c4edf708 2634 int ret = 0;
d3135ba3 2635 struct prefix p;
2636 struct prefix *pp = &p;
2637 afi_t afi = 0;
2638 safi_t safi = 0;
1eb88002
MK
2639 char buf[PREFIX_STRLEN];
2640 char buf1[PREFIX_STRLEN];
d3135ba3 2641
2642 memset(pp, 0, sizeof(struct prefix));
3714a385 2643 ip_prefix_from_evpn_prefix(evp, pp);
d3135ba3 2644
1eb88002 2645 if (bgp_debug_zebra(NULL)) {
996c9314
LB
2646 zlog_debug(
2647 "uninstalling evpn prefix %s as ip prefix %s in vrf %s",
2648 prefix2str(evp, buf, sizeof(buf)),
2649 prefix2str(pp, buf1, sizeof(buf)),
2650 vrf_id_to_name(bgp_vrf->vrf_id));
1eb88002
MK
2651 }
2652
d3135ba3 2653 /* Locate route within the VRF. */
2654 /* NOTE: There is no RD here. */
3714a385 2655 if (is_evpn_prefix_ipaddr_v4(evp)) {
d3135ba3 2656 afi = AFI_IP;
2657 safi = SAFI_UNICAST;
2658 rn = bgp_node_lookup(bgp_vrf->rib[afi][safi], pp);
2659 } else {
2660 afi = AFI_IP6;
2661 safi = SAFI_UNICAST;
2662 rn = bgp_node_lookup(bgp_vrf->rib[afi][safi], pp);
2663 }
2664
2665 if (!rn)
2666 return 0;
2667
2668 /* Find matching route entry. */
40381db7
DS
2669 for (pi = rn->info; pi; pi = pi->next)
2670 if (pi->extra
2671 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
d3135ba3 2672 break;
2673
40381db7 2674 if (!pi)
d3135ba3 2675 return 0;
2676
40381db7 2677 bgp_aggregate_decrement(bgp_vrf, &rn->p, pi, afi, safi);
4c7a11d5 2678
d3135ba3 2679 /* Mark entry for deletion */
40381db7 2680 bgp_path_info_delete(rn, pi);
d3135ba3 2681
2682 /* Perform route selection and update zebra, if required. */
1eb88002 2683 bgp_process(bgp_vrf, rn, afi, safi);
d3135ba3 2684
2685 /* Unlock route node. */
2686 bgp_unlock_node(rn);
2687
2688 return ret;
2689}
2690
128ea8ab 2691/*
2692 * Uninstall route entry from the VNI routing table and send message
2693 * to zebra, if appropriate.
2694 */
d62a17ae 2695static int uninstall_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
2696 struct prefix_evpn *p,
40381db7 2697 struct bgp_path_info *parent_pi)
128ea8ab 2698{
d62a17ae 2699 struct bgp_node *rn;
40381db7 2700 struct bgp_path_info *pi;
d62a17ae 2701 int ret;
128ea8ab 2702
d62a17ae 2703 /* Locate route within the VNI. */
2704 /* NOTE: There is no RD here. */
2705 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)p);
2706 if (!rn)
2707 return 0;
128ea8ab 2708
d62a17ae 2709 /* Find matching route entry. */
40381db7
DS
2710 for (pi = rn->info; pi; pi = pi->next)
2711 if (pi->extra
2712 && (struct bgp_path_info *)pi->extra->parent == parent_pi)
d62a17ae 2713 break;
128ea8ab 2714
40381db7 2715 if (!pi)
d62a17ae 2716 return 0;
128ea8ab 2717
d62a17ae 2718 /* Mark entry for deletion */
40381db7 2719 bgp_path_info_delete(rn, pi);
128ea8ab 2720
d62a17ae 2721 /* Perform route selection and update zebra, if required. */
2722 ret = evpn_route_select_install(bgp, vpn, rn);
128ea8ab 2723
d62a17ae 2724 /* Unlock route node. */
2725 bgp_unlock_node(rn);
128ea8ab 2726
d62a17ae 2727 return ret;
128ea8ab 2728}
2729
50f74cf1 2730/*
2731 * Given a prefix, see if it belongs to ES.
2732 */
2733static int is_prefix_matching_for_es(struct prefix_evpn *p,
2734 struct evpnes *es)
2735{
2736 /* if not an ES route return false */
2737 if (p->prefix.route_type != BGP_EVPN_ES_ROUTE)
2738 return 0;
2739
2740 if (memcmp(&p->prefix.es_addr.esi, &es->esi, sizeof(esi_t)) == 0)
2741 return 1;
2742
2743 return 0;
2744}
2745
5ba238b7
MK
2746/*
2747 * Given a route entry and a VRF, see if this route entry should be
2748 * imported into the VRF i.e., RTs match.
2749 */
4b7e6066 2750static int is_route_matching_for_vrf(struct bgp *bgp_vrf,
40381db7 2751 struct bgp_path_info *pi)
5ba238b7 2752{
40381db7 2753 struct attr *attr = pi->attr;
5ba238b7
MK
2754 struct ecommunity *ecom;
2755 int i;
2756
2757 assert(attr);
2758 /* Route should have valid RT to be even considered. */
2759 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
2760 return 0;
2761
2762 ecom = attr->ecommunity;
2763 if (!ecom || !ecom->size)
2764 return 0;
2765
2766 /* For each extended community RT, see if it matches this VNI. If any RT
2767 * matches, we're done.
2768 */
2769 for (i = 0; i < ecom->size; i++) {
d7c0a89a
QY
2770 uint8_t *pnt;
2771 uint8_t type, sub_type;
5ba238b7
MK
2772 struct ecommunity_val *eval;
2773 struct ecommunity_val eval_tmp;
2774 struct vrf_irt_node *irt;
2775
2776 /* Only deal with RTs */
2777 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
2778 eval = (struct ecommunity_val *)(ecom->val
2779 + (i * ECOMMUNITY_SIZE));
2780 type = *pnt++;
2781 sub_type = *pnt++;
2782 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
2783 continue;
2784
2785 /* See if this RT matches specified VNIs import RTs */
2786 irt = lookup_vrf_import_rt(eval);
5d9cbca2 2787 if (irt)
5ba238b7
MK
2788 if (is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
2789 return 1;
2790
2791 /* Also check for non-exact match. In this, we mask out the AS
2792 * and
2793 * only check on the local-admin sub-field. This is to
2794 * facilitate using
2795 * VNI as the RT for EBGP peering too.
2796 */
2797 irt = NULL;
2798 if (type == ECOMMUNITY_ENCODE_AS
2799 || type == ECOMMUNITY_ENCODE_AS4
2800 || type == ECOMMUNITY_ENCODE_IP) {
2801 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
2802 mask_ecom_global_admin(&eval_tmp, eval);
2803 irt = lookup_vrf_import_rt(&eval_tmp);
2804 }
5d9cbca2 2805 if (irt)
5ba238b7
MK
2806 if (is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
2807 return 1;
2808 }
2809
2810 return 0;
2811}
2812
128ea8ab 2813/*
2814 * Given a route entry and a VNI, see if this route entry should be
2815 * imported into the VNI i.e., RTs match.
2816 */
d62a17ae 2817static int is_route_matching_for_vni(struct bgp *bgp, struct bgpevpn *vpn,
40381db7 2818 struct bgp_path_info *pi)
d62a17ae 2819{
40381db7 2820 struct attr *attr = pi->attr;
d62a17ae 2821 struct ecommunity *ecom;
2822 int i;
2823
2824 assert(attr);
2825 /* Route should have valid RT to be even considered. */
2826 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
2827 return 0;
2828
2829 ecom = attr->ecommunity;
2830 if (!ecom || !ecom->size)
2831 return 0;
2832
2833 /* For each extended community RT, see if it matches this VNI. If any RT
2834 * matches, we're done.
2835 */
2836 for (i = 0; i < ecom->size; i++) {
d7c0a89a
QY
2837 uint8_t *pnt;
2838 uint8_t type, sub_type;
d62a17ae 2839 struct ecommunity_val *eval;
2840 struct ecommunity_val eval_tmp;
2841 struct irt_node *irt;
2842
2843 /* Only deal with RTs */
2844 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
2845 eval = (struct ecommunity_val *)(ecom->val
2846 + (i * ECOMMUNITY_SIZE));
2847 type = *pnt++;
2848 sub_type = *pnt++;
2849 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
2850 continue;
2851
2852 /* See if this RT matches specified VNIs import RTs */
2853 irt = lookup_import_rt(bgp, eval);
b1ab0dfe 2854 if (irt)
d62a17ae 2855 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
2856 return 1;
2857
2858 /* Also check for non-exact match. In this, we mask out the AS
2859 * and
2860 * only check on the local-admin sub-field. This is to
2861 * facilitate using
2862 * VNI as the RT for EBGP peering too.
2863 */
2864 irt = NULL;
2865 if (type == ECOMMUNITY_ENCODE_AS
2866 || type == ECOMMUNITY_ENCODE_AS4
2867 || type == ECOMMUNITY_ENCODE_IP) {
2868 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
2869 mask_ecom_global_admin(&eval_tmp, eval);
2870 irt = lookup_import_rt(bgp, &eval_tmp);
2871 }
b1ab0dfe 2872 if (irt)
d62a17ae 2873 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
2874 return 1;
2875 }
2876
2877 return 0;
128ea8ab 2878}
2879
50f74cf1 2880static int install_uninstall_routes_for_es(struct bgp *bgp,
2881 struct evpnes *es,
2882 int install)
2883{
2884 int ret;
2885 afi_t afi;
2886 safi_t safi;
2887 char buf[PREFIX_STRLEN];
2888 char buf1[ESI_STR_LEN];
2889 struct bgp_node *rd_rn, *rn;
2890 struct bgp_table *table;
40381db7 2891 struct bgp_path_info *pi;
50f74cf1 2892
2893 afi = AFI_L2VPN;
2894 safi = SAFI_EVPN;
2895
2bb9eff4
DS
2896 /*
2897 * Walk entire global routing table and evaluate routes which could be
50f74cf1 2898 * imported into this VRF. Note that we need to loop through all global
2899 * routes to determine which route matches the import rt on vrf
2900 */
2901 for (rd_rn = bgp_table_top(bgp->rib[afi][safi]); rd_rn;
2902 rd_rn = bgp_route_next(rd_rn)) {
2903 table = (struct bgp_table *)(rd_rn->info);
2904 if (!table)
2905 continue;
2906
2907 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2908 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2909
40381db7 2910 for (pi = rn->info; pi; pi = pi->next) {
2bb9eff4
DS
2911 /*
2912 * Consider "valid" remote routes applicable for
50f74cf1 2913 * this ES.
2914 */
40381db7
DS
2915 if (!(CHECK_FLAG(pi->flags, BGP_PATH_VALID)
2916 && pi->type == ZEBRA_ROUTE_BGP
2917 && pi->sub_type == BGP_ROUTE_NORMAL))
50f74cf1 2918 continue;
2919
2bb9eff4
DS
2920 if (!is_prefix_matching_for_es(evp, es))
2921 continue;
50f74cf1 2922
2bb9eff4
DS
2923 if (install)
2924 ret = install_evpn_route_entry_in_es(
40381db7 2925 bgp, es, evp, pi);
2bb9eff4
DS
2926 else
2927 ret = uninstall_evpn_route_entry_in_es(
40381db7 2928 bgp, es, evp, pi);
2bb9eff4
DS
2929
2930 if (ret) {
af4c2728 2931 flog_err(
e50f7cfd 2932 EC_BGP_EVPN_FAIL,
2bb9eff4
DS
2933 "Failed to %s EVPN %s route in ESI %s",
2934 install ? "install"
2935 : "uninstall",
2936 prefix2str(evp, buf,
2937 sizeof(buf)),
2938 esi_to_str(&es->esi, buf1,
2939 sizeof(buf1)));
2940 return ret;
50f74cf1 2941 }
2942 }
2943 }
2944 }
2945 return 0;
2946}
2947
5ba238b7
MK
2948/*
2949 * Install or uninstall mac-ip routes are appropriate for this
2950 * particular VRF.
2951 */
996c9314 2952static int install_uninstall_routes_for_vrf(struct bgp *bgp_vrf, int install)
5ba238b7
MK
2953{
2954 afi_t afi;
2955 safi_t safi;
2956 struct bgp_node *rd_rn, *rn;
2957 struct bgp_table *table;
40381db7 2958 struct bgp_path_info *pi;
5ba238b7
MK
2959 int ret;
2960 char buf[PREFIX_STRLEN];
2961 struct bgp *bgp_def = NULL;
2962
2963 afi = AFI_L2VPN;
2964 safi = SAFI_EVPN;
2965 bgp_def = bgp_get_default();
2966 if (!bgp_def)
2967 return -1;
2968
2969 /* Walk entire global routing table and evaluate routes which could be
2970 * imported into this VRF. Note that we need to loop through all global
2971 * routes to determine which route matches the import rt on vrf
2972 */
2973 for (rd_rn = bgp_table_top(bgp_def->rib[afi][safi]); rd_rn;
2974 rd_rn = bgp_route_next(rd_rn)) {
2975 table = (struct bgp_table *)(rd_rn->info);
2976 if (!table)
2977 continue;
2978
2979 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2980 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2981
1eb88002 2982 /* if not mac-ip route skip this route */
996c9314
LB
2983 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
2984 || evp->prefix.route_type
2985 == BGP_EVPN_IP_PREFIX_ROUTE))
5ba238b7
MK
2986 continue;
2987
1eb88002 2988 /* if not a mac+ip route skip this route */
3714a385 2989 if (!(is_evpn_prefix_ipaddr_v4(evp)
2990 || is_evpn_prefix_ipaddr_v6(evp)))
1eb88002
MK
2991 continue;
2992
40381db7 2993 for (pi = rn->info; pi; pi = pi->next) {
5ba238b7 2994 /* Consider "valid" remote routes applicable for
523cafc4 2995 * this VRF.
2996 */
40381db7
DS
2997 if (!(CHECK_FLAG(pi->flags, BGP_PATH_VALID)
2998 && pi->type == ZEBRA_ROUTE_BGP
2999 && pi->sub_type == BGP_ROUTE_NORMAL))
5ba238b7
MK
3000 continue;
3001
40381db7 3002 if (is_route_matching_for_vrf(bgp_vrf, pi)) {
5ba238b7 3003 if (install)
996c9314 3004 ret = install_evpn_route_entry_in_vrf(
40381db7 3005 bgp_vrf, evp, pi);
5ba238b7 3006 else
996c9314 3007 ret = uninstall_evpn_route_entry_in_vrf(
40381db7 3008 bgp_vrf, evp, pi);
5ba238b7
MK
3009
3010 if (ret) {
af4c2728 3011 flog_err(
e50f7cfd 3012 EC_BGP_EVPN_FAIL,
5ba238b7
MK
3013 "Failed to %s EVPN %s route in VRF %s",
3014 install ? "install"
3015 : "uninstall",
3016 prefix2str(evp, buf,
3017 sizeof(buf)),
996c9314
LB
3018 vrf_id_to_name(
3019 bgp_vrf->vrf_id));
5ba238b7
MK
3020 return ret;
3021 }
3022 }
3023 }
3024 }
3025 }
3026
3027 return 0;
3028}
3029
128ea8ab 3030/*
3031 * Install or uninstall routes of specified type that are appropriate for this
3032 * particular VNI.
3033 */
d62a17ae 3034static int install_uninstall_routes_for_vni(struct bgp *bgp,
3035 struct bgpevpn *vpn,
3036 bgp_evpn_route_type rtype,
3037 int install)
3038{
0291c246
MK
3039 afi_t afi;
3040 safi_t safi;
3041 struct bgp_node *rd_rn, *rn;
3042 struct bgp_table *table;
40381db7 3043 struct bgp_path_info *pi;
0291c246 3044 int ret;
d62a17ae 3045
3046 afi = AFI_L2VPN;
3047 safi = SAFI_EVPN;
3048
3049 /* Walk entire global routing table and evaluate routes which could be
3050 * imported into this VPN. Note that we cannot just look at the routes
3051 * for
3052 * the VNI's RD - remote routes applicable for this VNI could have any
3053 * RD.
3054 */
3055 /* EVPN routes are a 2-level table. */
3056 for (rd_rn = bgp_table_top(bgp->rib[afi][safi]); rd_rn;
3057 rd_rn = bgp_route_next(rd_rn)) {
3058 table = (struct bgp_table *)(rd_rn->info);
3059 if (!table)
3060 continue;
3061
3062 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
3063 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
3064
3065 if (evp->prefix.route_type != rtype)
3066 continue;
3067
40381db7 3068 for (pi = rn->info; pi; pi = pi->next) {
d62a17ae 3069 /* Consider "valid" remote routes applicable for
3070 * this VNI. */
40381db7
DS
3071 if (!(CHECK_FLAG(pi->flags, BGP_PATH_VALID)
3072 && pi->type == ZEBRA_ROUTE_BGP
3073 && pi->sub_type == BGP_ROUTE_NORMAL))
d62a17ae 3074 continue;
3075
40381db7 3076 if (is_route_matching_for_vni(bgp, vpn, pi)) {
d62a17ae 3077 if (install)
3078 ret = install_evpn_route_entry(
40381db7 3079 bgp, vpn, evp, pi);
d62a17ae 3080 else
3081 ret = uninstall_evpn_route_entry(
40381db7 3082 bgp, vpn, evp, pi);
d62a17ae 3083
3084 if (ret) {
af4c2728 3085 flog_err(
e50f7cfd 3086 EC_BGP_EVPN_FAIL,
d62a17ae 3087 "%u: Failed to %s EVPN %s route in VNI %u",
3088 bgp->vrf_id,
3089 install ? "install"
3090 : "uninstall",
3091 rtype == BGP_EVPN_MAC_IP_ROUTE
3092 ? "MACIP"
3093 : "IMET",
3094 vpn->vni);
3095 return ret;
3096 }
3097 }
3098 }
3099 }
3100 }
3101
3102 return 0;
128ea8ab 3103}
3104
50f74cf1 3105/* Install any existing remote ES routes applicable for this ES into its routing
3106 * table. This is invoked when ES comes up.
3107 */
3108static int install_routes_for_es(struct bgp *bgp, struct evpnes *es)
3109{
3110 return install_uninstall_routes_for_es(bgp, es, 1);
3111}
3112
3113
5ba238b7 3114/* Install any existing remote routes applicable for this VRF into VRF RIB. This
523cafc4 3115 * is invoked upon l3vni-add or l3vni import rt change
3116 */
5ba238b7
MK
3117static int install_routes_for_vrf(struct bgp *bgp_vrf)
3118{
3119 install_uninstall_routes_for_vrf(bgp_vrf, 1);
3120 return 0;
3121}
3122
128ea8ab 3123/*
3124 * Install any existing remote routes applicable for this VNI into its
3125 * routing table. This is invoked when a VNI becomes "live" or its Import
3126 * RT is changed.
3127 */
d62a17ae 3128static int install_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 3129{
d62a17ae 3130 int ret;
128ea8ab 3131
d62a17ae 3132 /* Install type-3 routes followed by type-2 routes - the ones applicable
3133 * for this VNI.
3134 */
3135 ret = install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_IMET_ROUTE,
3136 1);
3137 if (ret)
3138 return ret;
128ea8ab 3139
d62a17ae 3140 return install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_MAC_IP_ROUTE,
3141 1);
128ea8ab 3142}
3143
5ba238b7
MK
3144/* uninstall routes from l3vni vrf. */
3145static int uninstall_routes_for_vrf(struct bgp *bgp_vrf)
3146{
3147 install_uninstall_routes_for_vrf(bgp_vrf, 0);
3148 return 0;
3149}
3150
90e60aa7 3151/*
3152 * Uninstall any existing remote routes for this VNI. One scenario in which
3153 * this is invoked is upon an import RT change.
3154 */
d62a17ae 3155static int uninstall_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 3156{
d62a17ae 3157 int ret;
90e60aa7 3158
d62a17ae 3159 /* Uninstall type-2 routes followed by type-3 routes - the ones
3160 * applicable
3161 * for this VNI.
3162 */
3163 ret = install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_MAC_IP_ROUTE,
3164 0);
3165 if (ret)
3166 return ret;
90e60aa7 3167
d62a17ae 3168 return install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_IMET_ROUTE,
3169 0);
90e60aa7 3170}
3171
50f74cf1 3172/* Install or unistall route in ES */
3173static int install_uninstall_route_in_es(struct bgp *bgp, struct evpnes *es,
3174 afi_t afi, safi_t safi,
3175 struct prefix_evpn *evp,
40381db7 3176 struct bgp_path_info *pi, int install)
50f74cf1 3177{
3178 int ret = 0;
3179 char buf[ESI_STR_LEN];
3180
3181 if (install)
40381db7 3182 ret = install_evpn_route_entry_in_es(bgp, es, evp, pi);
50f74cf1 3183 else
40381db7 3184 ret = uninstall_evpn_route_entry_in_es(bgp, es, evp, pi);
50f74cf1 3185
3186 if (ret) {
af4c2728 3187 flog_err(
e50f7cfd 3188 EC_BGP_EVPN_FAIL,
14454c9f
DS
3189 "%u: Failed to %s EVPN %s route in ESI %s", bgp->vrf_id,
3190 install ? "install" : "uninstall", "ES",
3191 esi_to_str(&evp->prefix.es_addr.esi, buf, sizeof(buf)));
50f74cf1 3192 return ret;
3193 }
3194 return 0;
3195}
3196
d3135ba3 3197/*
3198 * Install or uninstall route in matching VRFs (list).
3199 */
3200static int install_uninstall_route_in_vrfs(struct bgp *bgp_def, afi_t afi,
3201 safi_t safi, struct prefix_evpn *evp,
40381db7 3202 struct bgp_path_info *pi,
d3135ba3 3203 struct list *vrfs, int install)
3204{
3205 char buf[PREFIX2STR_BUFFER];
3206 struct bgp *bgp_vrf;
3207 struct listnode *node, *nnode;
3208
90264d64 3209 /* Only type-2/type-5 routes go into a VRF */
996c9314
LB
3210 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
3211 || evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE))
d3135ba3 3212 return 0;
3213
90264d64 3214 /* if it is type-2 route and not a mac+ip route skip this route */
996c9314 3215 if ((evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
3714a385 3216 && !(is_evpn_prefix_ipaddr_v4(evp)
3217 || is_evpn_prefix_ipaddr_v6(evp)))
30a30f57
MK
3218 return 0;
3219
d3135ba3 3220 for (ALL_LIST_ELEMENTS(vrfs, node, nnode, bgp_vrf)) {
3221 int ret;
3222
3223 if (install)
40381db7 3224 ret = install_evpn_route_entry_in_vrf(bgp_vrf, evp, pi);
d3135ba3 3225 else
996c9314 3226 ret = uninstall_evpn_route_entry_in_vrf(bgp_vrf, evp,
40381db7 3227 pi);
d3135ba3 3228
3229 if (ret) {
e50f7cfd 3230 flog_err(EC_BGP_EVPN_FAIL,
1c50c1c0
QY
3231 "%u: Failed to %s prefix %s in VRF %s",
3232 bgp_def->vrf_id,
3233 install ? "install" : "uninstall",
3234 prefix2str(evp, buf, sizeof(buf)),
3235 vrf_id_to_name(bgp_vrf->vrf_id));
d3135ba3 3236 return ret;
3237 }
3238 }
3239
3240 return 0;
3241}
3242
128ea8ab 3243/*
3244 * Install or uninstall route in matching VNIs (list).
3245 */
d62a17ae 3246static int install_uninstall_route_in_vnis(struct bgp *bgp, afi_t afi,
3247 safi_t safi, struct prefix_evpn *evp,
40381db7 3248 struct bgp_path_info *pi,
d62a17ae 3249 struct list *vnis, int install)
128ea8ab 3250{
d62a17ae 3251 struct bgpevpn *vpn;
3252 struct listnode *node, *nnode;
128ea8ab 3253
d62a17ae 3254 for (ALL_LIST_ELEMENTS(vnis, node, nnode, vpn)) {
3255 int ret;
128ea8ab 3256
d62a17ae 3257 if (!is_vni_live(vpn))
3258 continue;
128ea8ab 3259
d62a17ae 3260 if (install)
40381db7 3261 ret = install_evpn_route_entry(bgp, vpn, evp, pi);
d62a17ae 3262 else
40381db7 3263 ret = uninstall_evpn_route_entry(bgp, vpn, evp, pi);
128ea8ab 3264
d62a17ae 3265 if (ret) {
1c50c1c0
QY
3266 flog_err(EC_BGP_EVPN_FAIL,
3267 "%u: Failed to %s EVPN %s route in VNI %u",
3268 bgp->vrf_id, install ? "install" : "uninstall",
3269 evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
3270 ? "MACIP"
3271 : "IMET",
3272 vpn->vni);
d62a17ae 3273 return ret;
3274 }
3275 }
128ea8ab 3276
d62a17ae 3277 return 0;
128ea8ab 3278}
3279
3280/*
50f74cf1 3281 * Install or uninstall route for appropriate VNIs/ESIs.
128ea8ab 3282 */
d62a17ae 3283static int install_uninstall_evpn_route(struct bgp *bgp, afi_t afi, safi_t safi,
4b7e6066 3284 struct prefix *p,
40381db7 3285 struct bgp_path_info *pi, int import)
d62a17ae 3286{
3287 struct prefix_evpn *evp = (struct prefix_evpn *)p;
40381db7 3288 struct attr *attr = pi->attr;
d62a17ae 3289 struct ecommunity *ecom;
3290 int i;
3291
3292 assert(attr);
3293
50f74cf1 3294 /* Only type-2, type-3, type-4 and type-5 are supported currently */
d62a17ae 3295 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
90264d64 3296 || evp->prefix.route_type == BGP_EVPN_IMET_ROUTE
50f74cf1 3297 || evp->prefix.route_type == BGP_EVPN_ES_ROUTE
90264d64 3298 || evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE))
d62a17ae 3299 return 0;
3300
3301 /* If we don't have Route Target, nothing much to do. */
3302 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
3303 return 0;
3304
3305 ecom = attr->ecommunity;
3306 if (!ecom || !ecom->size)
3307 return -1;
3308
50f74cf1 3309 /* An EVPN route belongs to a VNI or a VRF or an ESI based on the RTs
3310 * attached to the route */
d62a17ae 3311 for (i = 0; i < ecom->size; i++) {
d7c0a89a
QY
3312 uint8_t *pnt;
3313 uint8_t type, sub_type;
d62a17ae 3314 struct ecommunity_val *eval;
3315 struct ecommunity_val eval_tmp;
996c9314 3316 struct irt_node *irt; /* import rt for l2vni */
d3135ba3 3317 struct vrf_irt_node *vrf_irt; /* import rt for l3vni */
50f74cf1 3318 struct evpnes *es;
d62a17ae 3319
3320 /* Only deal with RTs */
3321 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
3322 eval = (struct ecommunity_val *)(ecom->val
3323 + (i * ECOMMUNITY_SIZE));
3324 type = *pnt++;
3325 sub_type = *pnt++;
3326 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
3327 continue;
3328
50f74cf1 3329 /*
3330 * macip routes (type-2) are imported into VNI and VRF tables.
3331 * IMET route is imported into VNI table.
3332 * prefix routes are imported into VRF table.
523cafc4 3333 */
50f74cf1 3334 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE ||
3335 evp->prefix.route_type == BGP_EVPN_IMET_ROUTE ||
3336 evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE) {
d62a17ae 3337
50f74cf1 3338 irt = lookup_import_rt(bgp, eval);
3339 if (irt)
40381db7
DS
3340 install_uninstall_route_in_vnis(
3341 bgp, afi, safi, evp, pi, irt->vnis,
3342 import);
50f74cf1 3343
3344 vrf_irt = lookup_vrf_import_rt(eval);
3345 if (vrf_irt)
40381db7
DS
3346 install_uninstall_route_in_vrfs(
3347 bgp, afi, safi, evp, pi, vrf_irt->vrfs,
3348 import);
50f74cf1 3349
3350 /* Also check for non-exact match.
3351 * In this, we mask out the AS and
3352 * only check on the local-admin sub-field.
3353 * This is to facilitate using
3354 * VNI as the RT for EBGP peering too.
3355 */
3356 irt = NULL;
3357 vrf_irt = NULL;
3358 if (type == ECOMMUNITY_ENCODE_AS
3359 || type == ECOMMUNITY_ENCODE_AS4
3360 || type == ECOMMUNITY_ENCODE_IP) {
3361 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
3362 mask_ecom_global_admin(&eval_tmp, eval);
3363 irt = lookup_import_rt(bgp, &eval_tmp);
3364 vrf_irt = lookup_vrf_import_rt(&eval_tmp);
3365 }
3366
3367 if (irt)
40381db7
DS
3368 install_uninstall_route_in_vnis(
3369 bgp, afi, safi, evp, pi, irt->vnis,
3370 import);
50f74cf1 3371 if (vrf_irt)
40381db7
DS
3372 install_uninstall_route_in_vrfs(
3373 bgp, afi, safi, evp, pi, vrf_irt->vrfs,
3374 import);
50f74cf1 3375 }
3376
3377 /* es route is imported into the es table */
3378 if (evp->prefix.route_type == BGP_EVPN_ES_ROUTE) {
3379
3380 /* we will match based on the entire esi to avoid
3381 * imoort of an es route for esi2 into esi1
3382 */
3383 es = bgp_evpn_lookup_es(bgp, &evp->prefix.es_addr.esi);
3384 if (es && is_es_local(es))
40381db7
DS
3385 install_uninstall_route_in_es(
3386 bgp, es, afi, safi, evp, pi, import);
d62a17ae 3387 }
d62a17ae 3388 }
3389
3390 return 0;
128ea8ab 3391}
3392
2bb9eff4
DS
3393/*
3394 * delete and withdraw all ipv4 and ipv6 routes in the vrf table as type-5
3395 * routes
3396 */
80b140af
MK
3397static void delete_withdraw_vrf_routes(struct bgp *bgp_vrf)
3398{
5fd9c12b
KA
3399 /* Delete ipv4 default route and withdraw from peers */
3400 if (evpn_default_originate_set(bgp_vrf, AFI_IP, SAFI_UNICAST))
3401 bgp_evpn_install_uninstall_default_route(bgp_vrf, AFI_IP,
3402 SAFI_UNICAST, false);
3403
80b140af 3404 /* delete all ipv4 routes and withdraw from peers */
fdf19f06
MK
3405 if (advertise_type5_routes(bgp_vrf, AFI_IP))
3406 bgp_evpn_withdraw_type5_routes(bgp_vrf, AFI_IP, SAFI_UNICAST);
80b140af 3407
5fd9c12b
KA
3408 /* Delete ipv6 default route and withdraw from peers */
3409 if (evpn_default_originate_set(bgp_vrf, AFI_IP6, SAFI_UNICAST))
3410 bgp_evpn_install_uninstall_default_route(bgp_vrf, AFI_IP6,
3411 SAFI_UNICAST, false);
3412
80b140af 3413 /* delete all ipv6 routes and withdraw from peers */
fdf19f06
MK
3414 if (advertise_type5_routes(bgp_vrf, AFI_IP6))
3415 bgp_evpn_withdraw_type5_routes(bgp_vrf, AFI_IP6, SAFI_UNICAST);
80b140af
MK
3416}
3417
2bb9eff4
DS
3418/*
3419 * update and advertise all ipv4 and ipv6 routes in thr vrf table as type-5
3420 * routes
3421 */
80b140af
MK
3422static void update_advertise_vrf_routes(struct bgp *bgp_vrf)
3423{
3424 /* update all ipv4 routes */
fdf19f06
MK
3425 if (advertise_type5_routes(bgp_vrf, AFI_IP))
3426 bgp_evpn_advertise_type5_routes(bgp_vrf, AFI_IP, SAFI_UNICAST);
80b140af 3427
5fd9c12b
KA
3428 /* update ipv4 default route and withdraw from peers */
3429 if (evpn_default_originate_set(bgp_vrf, AFI_IP, SAFI_UNICAST))
3430 bgp_evpn_install_uninstall_default_route(bgp_vrf, AFI_IP,
3431 SAFI_UNICAST, true);
3432
80b140af 3433 /* update all ipv6 routes */
fdf19f06
MK
3434 if (advertise_type5_routes(bgp_vrf, AFI_IP6))
3435 bgp_evpn_advertise_type5_routes(bgp_vrf, AFI_IP6, SAFI_UNICAST);
5fd9c12b
KA
3436
3437 /* update ipv6 default route and withdraw from peers */
3438 if (evpn_default_originate_set(bgp_vrf, AFI_IP6, SAFI_UNICAST))
3439 bgp_evpn_install_uninstall_default_route(bgp_vrf, AFI_IP6,
3440 SAFI_UNICAST, true);
3441
80b140af
MK
3442}
3443
676f83b9 3444/*
3445 * update and advertise local routes for a VRF as type-5 routes.
3446 * This is invoked upon RD change for a VRF. Note taht the processing is only
3447 * done in the global route table using the routes which already exist in the
3448 * VRF routing table
3449 */
80b140af 3450static void update_router_id_vrf(struct bgp *bgp_vrf)
676f83b9 3451{
80b140af
MK
3452 /* skip if the RD is configured */
3453 if (is_vrf_rd_configured(bgp_vrf))
3454 return;
3455
3456 /* derive the RD for the VRF based on new router-id */
3457 bgp_evpn_derive_auto_rd_for_vrf(bgp_vrf);
3458
3459 /* update advertise ipv4|ipv6 routes as type-5 routes */
3460 update_advertise_vrf_routes(bgp_vrf);
676f83b9 3461}
3462
3463/*
3464 * Delete and withdraw all type-5 routes for the RD corresponding to VRF.
3465 * This is invoked upon VRF RD change. The processing is done only from global
3466 * table.
3467 */
80b140af 3468static void withdraw_router_id_vrf(struct bgp *bgp_vrf)
676f83b9 3469{
80b140af
MK
3470 /* skip if the RD is configured */
3471 if (is_vrf_rd_configured(bgp_vrf))
3472 return;
3473
3474 /* delete/withdraw ipv4|ipv6 routes as type-5 routes */
3475 delete_withdraw_vrf_routes(bgp_vrf);
676f83b9 3476}
3477
90e60aa7 3478/*
3479 * Update and advertise local routes for a VNI. Invoked upon router-id
3480 * change. Note that the processing is done only on the global route table
3481 * using routes that already exist in the per-VNI table.
3482 */
d62a17ae 3483static int update_advertise_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
3484{
3485 struct prefix_evpn p;
3486 struct bgp_node *rn, *global_rn;
40381db7 3487 struct bgp_path_info *pi, *global_pi;
d62a17ae 3488 struct attr *attr;
3489 afi_t afi = AFI_L2VPN;
3490 safi_t safi = SAFI_EVPN;
3491
3492 /* Locate type-3 route for VNI in the per-VNI table and use its
3493 * attributes to create and advertise the type-3 route for this VNI
3494 * in the global table.
fd069644
DS
3495 *
3496 * RT-3 only if doing head-end replication
d62a17ae 3497 */
fd069644
DS
3498 if (bgp->vxlan_flood_ctrl == VXLAN_FLOOD_HEAD_END_REPL) {
3499 build_evpn_type3_prefix(&p, vpn->originator_ip);
3500 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)&p);
3501 if (!rn) /* unexpected */
3502 return 0;
3503 for (pi = rn->info; pi; pi = pi->next)
3504 if (pi->peer == bgp->peer_self &&
3505 pi->type == ZEBRA_ROUTE_BGP
3506 && pi->sub_type == BGP_ROUTE_STATIC)
3507 break;
3508 if (!pi) /* unexpected */
3509 return 0;
3510 attr = pi->attr;
d62a17ae 3511
fd069644
DS
3512 global_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
3513 (struct prefix *)&p, &vpn->prd);
3514 update_evpn_route_entry(bgp, vpn, afi, safi, global_rn, attr,
3515 1, &pi, 0, mac_mobility_seqnum(attr));
d62a17ae 3516
fd069644
DS
3517 /* Schedule for processing and unlock node. */
3518 bgp_process(bgp, global_rn, afi, safi);
3519 bgp_unlock_node(global_rn);
3520 }
d62a17ae 3521
3522 /* Now, walk this VNI's route table and use the route and its attribute
3523 * to create and schedule route in global table.
3524 */
3525 for (rn = bgp_table_top(vpn->route_table); rn;
3526 rn = bgp_route_next(rn)) {
3527 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
3528
3529 /* Identify MAC-IP local routes. */
3530 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
3531 continue;
3532
40381db7
DS
3533 for (pi = rn->info; pi; pi = pi->next)
3534 if (pi->peer == bgp->peer_self
3535 && pi->type == ZEBRA_ROUTE_BGP
3536 && pi->sub_type == BGP_ROUTE_STATIC)
d62a17ae 3537 break;
40381db7 3538 if (!pi)
d62a17ae 3539 continue;
3540
3541 /* Create route in global routing table using this route entry's
3542 * attribute.
3543 */
40381db7 3544 attr = pi->attr;
d62a17ae 3545 global_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
3546 (struct prefix *)evp, &vpn->prd);
3547 assert(global_rn);
3548 update_evpn_route_entry(bgp, vpn, afi, safi, global_rn, attr, 1,
40381db7 3549 &global_pi, 0,
f07e1c99 3550 mac_mobility_seqnum(attr));
d62a17ae 3551
3552 /* Schedule for processing and unlock node. */
3553 bgp_process(bgp, global_rn, afi, safi);
3554 bgp_unlock_node(global_rn);
3555 }
3556
3557 return 0;
90e60aa7 3558}
3559
3560/*
3561 * Delete (and withdraw) local routes for a VNI - only from the global
3562 * table. Invoked upon router-id change.
3563 */
d62a17ae 3564static int delete_withdraw_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 3565{
d62a17ae 3566 int ret;
3567 struct prefix_evpn p;
3568 struct bgp_node *global_rn;
40381db7 3569 struct bgp_path_info *pi;
d62a17ae 3570 afi_t afi = AFI_L2VPN;
3571 safi_t safi = SAFI_EVPN;
90e60aa7 3572
d62a17ae 3573 /* Delete and withdraw locally learnt type-2 routes (MACIP)
3574 * for this VNI - from the global table.
3575 */
3576 ret = delete_global_type2_routes(bgp, vpn);
3577 if (ret)
3578 return ret;
90e60aa7 3579
d62a17ae 3580 /* Remove type-3 route for this VNI from global table. */
3581 build_evpn_type3_prefix(&p, vpn->originator_ip);
3582 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
3583 (struct prefix *)&p, &vpn->prd);
3584 if (global_rn) {
3585 /* Delete route entry in the global EVPN table. */
40381db7 3586 delete_evpn_route_entry(bgp, afi, safi, global_rn, &pi);
90e60aa7 3587
d62a17ae 3588 /* Schedule for processing - withdraws to peers happen from
3589 * this table.
3590 */
40381db7 3591 if (pi)
d62a17ae 3592 bgp_process(bgp, global_rn, afi, safi);
3593 bgp_unlock_node(global_rn);
3594 }
90e60aa7 3595
d62a17ae 3596 return 0;
90e60aa7 3597}
3598
2d48ee25 3599/*
3600 * Handle router-id change. Update and advertise local routes corresponding
3601 * to this VNI from peers. Note that this is invoked after updating the
3602 * router-id. The routes in the per-VNI table are used to create routes in
3603 * the global table and schedule them.
3604 */
d62a17ae 3605static void update_router_id_vni(struct hash_backet *backet, struct bgp *bgp)
2d48ee25 3606{
0a1a07cb 3607 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
2d48ee25 3608
d62a17ae 3609 /* Skip VNIs with configured RD. */
3610 if (is_rd_configured(vpn))
3611 return;
2d48ee25 3612
d62a17ae 3613 bgp_evpn_derive_auto_rd(bgp, vpn);
3614 update_advertise_vni_routes(bgp, vpn);
2d48ee25 3615}
3616
3617/*
3618 * Handle router-id change. Delete and withdraw local routes corresponding
3619 * to this VNI from peers. Note that this is invoked prior to updating
3620 * the router-id and is done only on the global route table, the routes
3621 * are needed in the per-VNI table to re-advertise with new router id.
3622 */
d62a17ae 3623static void withdraw_router_id_vni(struct hash_backet *backet, struct bgp *bgp)
2d48ee25 3624{
0a1a07cb 3625 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
2d48ee25 3626
d62a17ae 3627 /* Skip VNIs with configured RD. */
3628 if (is_rd_configured(vpn))
3629 return;
2d48ee25 3630
d62a17ae 3631 delete_withdraw_vni_routes(bgp, vpn);
2d48ee25 3632}
3633
fd069644
DS
3634/*
3635 * Create RT-3 for a VNI and schedule for processing and advertisement.
3636 * This is invoked upon flooding mode changing to head-end replication.
3637 */
3638static void create_advertise_type3(struct hash_backet *backet, void *data)
3639{
3640 struct bgpevpn *vpn = backet->data;
3641 struct bgp *bgp = data;
3642 struct prefix_evpn p;
3643
3644 if (!vpn || !is_vni_live(vpn))
3645 return;
3646
3647 build_evpn_type3_prefix(&p, vpn->originator_ip);
3648 if (update_evpn_route(bgp, vpn, &p, 0, 0))
3649 flog_err(EC_BGP_EVPN_ROUTE_CREATE,
3650 "Type3 route creation failure for VNI %u", vpn->vni);
3651}
3652
3653/*
3654 * Delete RT-3 for a VNI and schedule for processing and withdrawal.
3655 * This is invoked upon flooding mode changing to drop BUM packets.
3656 */
3657static void delete_withdraw_type3(struct hash_backet *backet, void *data)
3658{
3659 struct bgpevpn *vpn = backet->data;
3660 struct bgp *bgp = data;
3661 struct prefix_evpn p;
3662
3663 if (!vpn || !is_vni_live(vpn))
3664 return;
3665
3666 build_evpn_type3_prefix(&p, vpn->originator_ip);
3667 delete_evpn_route(bgp, vpn, &p);
3668}
3669
128ea8ab 3670/*
3671 * Process received EVPN type-2 route (advertise or withdraw).
3672 */
d62a17ae 3673static int process_type2_route(struct peer *peer, afi_t afi, safi_t safi,
d7c0a89a
QY
3674 struct attr *attr, uint8_t *pfx, int psize,
3675 uint32_t addpath_id)
d62a17ae 3676{
3677 struct prefix_rd prd;
3678 struct prefix_evpn p;
554cd77a 3679 struct bgp_route_evpn evpn;
d7c0a89a
QY
3680 uint8_t ipaddr_len;
3681 uint8_t macaddr_len;
b57ba6d2 3682 mpls_label_t label[BGP_MAX_LABELS]; /* holds the VNI(s) as in packet */
d7c0a89a 3683 uint32_t num_labels = 0;
554cd77a 3684 uint32_t eth_tag;
d62a17ae 3685 int ret;
3686
3687 /* Type-2 route should be either 33, 37 or 49 bytes or an
3688 * additional 3 bytes if there is a second label (VNI):
3689 * RD (8), ESI (10), Eth Tag (4), MAC Addr Len (1),
3690 * MAC Addr (6), IP len (1), IP (0, 4 or 16),
3691 * MPLS Lbl1 (3), MPLS Lbl2 (0 or 3)
3692 */
3693 if (psize != 33 && psize != 37 && psize != 49 && psize != 36
3694 && psize != 40 && psize != 52) {
e50f7cfd 3695 flog_err(EC_BGP_EVPN_ROUTE_INVALID,
1c50c1c0
QY
3696 "%u:%s - Rx EVPN Type-2 NLRI with invalid length %d",
3697 peer->bgp->vrf_id, peer->host, psize);
d62a17ae 3698 return -1;
3699 }
3700
554cd77a
VB
3701 memset(&evpn, 0, sizeof(evpn));
3702
d62a17ae 3703 /* Make prefix_rd */
3704 prd.family = AF_UNSPEC;
3705 prd.prefixlen = 64;
3706 memcpy(&prd.val, pfx, 8);
3707 pfx += 8;
3708
3709 /* Make EVPN prefix. */
3710 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 3711 p.family = AF_EVPN;
50f74cf1 3712 p.prefixlen = EVPN_ROUTE_PREFIXLEN;
d62a17ae 3713 p.prefix.route_type = BGP_EVPN_MAC_IP_ROUTE;
3714
554cd77a
VB
3715 /* Copy Ethernet Seg Identifier */
3716 memcpy(&evpn.eth_s_id.val, pfx, ESI_LEN);
3717 pfx += ESI_LEN;
d62a17ae 3718
554cd77a
VB
3719 /* Copy Ethernet Tag */
3720 memcpy(&eth_tag, pfx, 4);
3714a385 3721 p.prefix.macip_addr.eth_tag = ntohl(eth_tag);
d62a17ae 3722 pfx += 4;
3723
3724 /* Get the MAC Addr len */
3725 macaddr_len = *pfx++;
3726
3727 /* Get the MAC Addr */
28328ea9 3728 if (macaddr_len == (ETH_ALEN * 8)) {
3714a385 3729 memcpy(&p.prefix.macip_addr.mac.octet, pfx, ETH_ALEN);
28328ea9 3730 pfx += ETH_ALEN;
d62a17ae 3731 } else {
af4c2728 3732 flog_err(
e50f7cfd 3733 EC_BGP_EVPN_ROUTE_INVALID,
d62a17ae 3734 "%u:%s - Rx EVPN Type-2 NLRI with unsupported MAC address length %d",
3735 peer->bgp->vrf_id, peer->host, macaddr_len);
3736 return -1;
3737 }
3738
3739
3740 /* Get the IP. */
3741 ipaddr_len = *pfx++;
3742 if (ipaddr_len != 0 && ipaddr_len != IPV4_MAX_BITLEN
3743 && ipaddr_len != IPV6_MAX_BITLEN) {
af4c2728 3744 flog_err(
e50f7cfd 3745 EC_BGP_EVPN_ROUTE_INVALID,
d62a17ae 3746 "%u:%s - Rx EVPN Type-2 NLRI with unsupported IP address length %d",
3747 peer->bgp->vrf_id, peer->host, ipaddr_len);
3748 return -1;
3749 }
3750
3751 if (ipaddr_len) {
3752 ipaddr_len /= 8; /* Convert to bytes. */
3714a385 3753 p.prefix.macip_addr.ip.ipa_type = (ipaddr_len == IPV4_MAX_BYTELEN)
d62a17ae 3754 ? IPADDR_V4
3755 : IPADDR_V6;
3714a385 3756 memcpy(&p.prefix.macip_addr.ip.ip.addr, pfx, ipaddr_len);
d62a17ae 3757 }
3758 pfx += ipaddr_len;
3759
b57ba6d2
MK
3760 /* Get the VNI(s). Stored as bytes here. */
3761 num_labels++;
3762 memset(label, 0, sizeof(label));
3763 memcpy(&label[0], pfx, BGP_LABEL_BYTES);
1b817c78 3764 pfx += BGP_LABEL_BYTES;
b57ba6d2
MK
3765 psize -= (33 + ipaddr_len);
3766 /* Do we have a second VNI? */
3767 if (psize) {
3768 num_labels++;
3769 memcpy(&label[1], pfx, BGP_LABEL_BYTES);
6b11bd8d 3770 /*
3771 * If in future, we are required to access additional fields,
996c9314
LB
3772 * we MUST increment pfx by BGP_LABEL_BYTES in before reading
3773 * the next field
6b11bd8d 3774 */
b57ba6d2 3775 }
d62a17ae 3776
3777 /* Process the route. */
3778 if (attr)
3779 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
3780 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
554cd77a 3781 &prd, &label[0], num_labels, 0, &evpn);
d62a17ae 3782 else
3783 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
3784 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
554cd77a 3785 &prd, &label[0], num_labels, &evpn);
d62a17ae 3786 return ret;
128ea8ab 3787}
3788
3789/*
3790 * Process received EVPN type-3 route (advertise or withdraw).
3791 */
d62a17ae 3792static int process_type3_route(struct peer *peer, afi_t afi, safi_t safi,
d7c0a89a
QY
3793 struct attr *attr, uint8_t *pfx, int psize,
3794 uint32_t addpath_id)
d62a17ae 3795{
3796 struct prefix_rd prd;
3797 struct prefix_evpn p;
d7c0a89a 3798 uint8_t ipaddr_len;
554cd77a 3799 uint32_t eth_tag;
d62a17ae 3800 int ret;
3801
3802 /* Type-3 route should be either 17 or 29 bytes: RD (8), Eth Tag (4),
3803 * IP len (1) and IP (4 or 16).
3804 */
3805 if (psize != 17 && psize != 29) {
e50f7cfd 3806 flog_err(EC_BGP_EVPN_ROUTE_INVALID,
1c50c1c0
QY
3807 "%u:%s - Rx EVPN Type-3 NLRI with invalid length %d",
3808 peer->bgp->vrf_id, peer->host, psize);
d62a17ae 3809 return -1;
3810 }
3811
7fd077aa 3812 /* If PMSI is present, log if it is anything other than IR.
3813 * Note: We just simply ignore the values as it is not clear if
3814 * doing anything else is better.
3815 */
3816 if (attr &&
3817 (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL))) {
3818 if (attr->pmsi_tnl_type != PMSI_TNLTYPE_INGR_REPL) {
ade6974d 3819 flog_warn(
e50f7cfd 3820 EC_BGP_EVPN_PMSI_PRESENT,
ade6974d
QY
3821 "%u:%s - Rx EVPN Type-3 NLRI with unsupported PTA %d",
3822 peer->bgp->vrf_id, peer->host,
3823 attr->pmsi_tnl_type);
7fd077aa 3824 }
3825 }
3826
d62a17ae 3827 /* Make prefix_rd */
3828 prd.family = AF_UNSPEC;
3829 prd.prefixlen = 64;
3830 memcpy(&prd.val, pfx, 8);
3831 pfx += 8;
3832
3833 /* Make EVPN prefix. */
3834 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 3835 p.family = AF_EVPN;
50f74cf1 3836 p.prefixlen = EVPN_ROUTE_PREFIXLEN;
d62a17ae 3837 p.prefix.route_type = BGP_EVPN_IMET_ROUTE;
3838
554cd77a
VB
3839 /* Copy Ethernet Tag */
3840 memcpy(&eth_tag, pfx, 4);
3714a385 3841 p.prefix.imet_addr.eth_tag = ntohl(eth_tag);
d62a17ae 3842 pfx += 4;
3843
3844 /* Get the IP. */
3845 ipaddr_len = *pfx++;
3846 if (ipaddr_len == IPV4_MAX_BITLEN) {
3714a385 3847 p.prefix.imet_addr.ip.ipa_type = IPADDR_V4;
3848 memcpy(&p.prefix.imet_addr.ip.ip.addr, pfx, IPV4_MAX_BYTELEN);
d62a17ae 3849 } else {
af4c2728 3850 flog_err(
e50f7cfd 3851 EC_BGP_EVPN_ROUTE_INVALID,
d62a17ae 3852 "%u:%s - Rx EVPN Type-3 NLRI with unsupported IP address length %d",
3853 peer->bgp->vrf_id, peer->host, ipaddr_len);
3854 return -1;
3855 }
3856
3857 /* Process the route. */
3858 if (attr)
3859 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
3860 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 3861 &prd, NULL, 0, 0, NULL);
d62a17ae 3862 else
3863 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
3864 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 3865 &prd, NULL, 0, NULL);
d62a17ae 3866 return ret;
128ea8ab 3867}
3868
50f74cf1 3869/*
3870 * Process received EVPN type-4 route (advertise or withdraw).
3871 */
3872static int process_type4_route(struct peer *peer, afi_t afi, safi_t safi,
3873 struct attr *attr, uint8_t *pfx, int psize,
3874 uint32_t addpath_id)
3875{
3876 int ret;
3877 esi_t esi;
3878 uint8_t ipaddr_len;
3879 struct in_addr vtep_ip;
3880 struct prefix_rd prd;
3881 struct prefix_evpn p;
3882
3883 /* Type-4 route should be either 23 or 35 bytes
3884 * RD (8), ESI (10), ip-len (1), ip (4 or 16)
3885 */
3886 if (psize != 23 && psize != 35) {
e50f7cfd 3887 flog_err(EC_BGP_EVPN_ROUTE_INVALID,
1c50c1c0
QY
3888 "%u:%s - Rx EVPN Type-4 NLRI with invalid length %d",
3889 peer->bgp->vrf_id, peer->host, psize);
50f74cf1 3890 return -1;
3891 }
3892
3893 /* Make prefix_rd */
3894 prd.family = AF_UNSPEC;
3895 prd.prefixlen = 64;
3896 memcpy(&prd.val, pfx, 8);
3897 pfx += 8;
3898
3899 /* get the ESI */
3900 memcpy(&esi, pfx, ESI_BYTES);
3901 pfx += ESI_BYTES;
3902
3903
3904 /* Get the IP. */
3905 ipaddr_len = *pfx++;
3906 if (ipaddr_len == IPV4_MAX_BITLEN) {
3907 memcpy(&vtep_ip, pfx, IPV4_MAX_BYTELEN);
3908 } else {
af4c2728 3909 flog_err(
e50f7cfd 3910 EC_BGP_EVPN_ROUTE_INVALID,
50f74cf1 3911 "%u:%s - Rx EVPN Type-4 NLRI with unsupported IP address length %d",
3912 peer->bgp->vrf_id, peer->host, ipaddr_len);
3913 return -1;
3914 }
3915
3916 build_evpn_type4_prefix(&p, &esi, vtep_ip);
3917 /* Process the route. */
3918 if (attr) {
3919 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
3920 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
3921 &prd, NULL, 0, 0, NULL);
2bb9eff4 3922 } else {
50f74cf1 3923 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
3924 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
3925 &prd, NULL, 0, NULL);
3926 }
3927 return ret;
3928}
3929
3930
128ea8ab 3931/*
3932 * Process received EVPN type-5 route (advertise or withdraw).
3933 */
d62a17ae 3934static int process_type5_route(struct peer *peer, afi_t afi, safi_t safi,
d7c0a89a
QY
3935 struct attr *attr, uint8_t *pfx, int psize,
3936 uint32_t addpath_id, int withdraw)
d62a17ae 3937{
3938 struct prefix_rd prd;
3939 struct prefix_evpn p;
3940 struct bgp_route_evpn evpn;
d7c0a89a
QY
3941 uint8_t ippfx_len;
3942 uint32_t eth_tag;
b57ba6d2 3943 mpls_label_t label; /* holds the VNI as in the packet */
d62a17ae 3944 int ret;
3945
3946 /* Type-5 route should be 34 or 58 bytes:
3947 * RD (8), ESI (10), Eth Tag (4), IP len (1), IP (4 or 16),
3948 * GW (4 or 16) and VNI (3).
3949 * Note that the IP and GW should both be IPv4 or both IPv6.
3950 */
3951 if (psize != 34 && psize != 58) {
e50f7cfd 3952 flog_err(EC_BGP_EVPN_ROUTE_INVALID,
1c50c1c0
QY
3953 "%u:%s - Rx EVPN Type-5 NLRI with invalid length %d",
3954 peer->bgp->vrf_id, peer->host, psize);
d62a17ae 3955 return -1;
3956 }
3957
3958 /* Make prefix_rd */
3959 prd.family = AF_UNSPEC;
3960 prd.prefixlen = 64;
3961 memcpy(&prd.val, pfx, 8);
3962 pfx += 8;
3963
3964 /* Make EVPN prefix. */
3965 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 3966 p.family = AF_EVPN;
50f74cf1 3967 p.prefixlen = EVPN_ROUTE_PREFIXLEN;
d62a17ae 3968 p.prefix.route_type = BGP_EVPN_IP_PREFIX_ROUTE;
3969
3970 /* Additional information outside of prefix - ESI and GW IP */
3971 memset(&evpn, 0, sizeof(evpn));
3972
3973 /* Fetch ESI */
3974 memcpy(&evpn.eth_s_id.val, pfx, 10);
3975 pfx += 10;
3976
3977 /* Fetch Ethernet Tag. */
3978 memcpy(&eth_tag, pfx, 4);
3714a385 3979 p.prefix.prefix_addr.eth_tag = ntohl(eth_tag);
d62a17ae 3980 pfx += 4;
3981
3982 /* Fetch IP prefix length. */
3983 ippfx_len = *pfx++;
3984 if (ippfx_len > IPV6_MAX_BITLEN) {
af4c2728 3985 flog_err(
e50f7cfd 3986 EC_BGP_EVPN_ROUTE_INVALID,
d62a17ae 3987 "%u:%s - Rx EVPN Type-5 NLRI with invalid IP Prefix length %d",
3988 peer->bgp->vrf_id, peer->host, ippfx_len);
3989 return -1;
3990 }
3714a385 3991 p.prefix.prefix_addr.ip_prefix_length = ippfx_len;
d62a17ae 3992
3993 /* Determine IPv4 or IPv6 prefix */
3994 /* Since the address and GW are from the same family, this just becomes
3995 * a simple check on the total size.
3996 */
3997 if (psize == 34) {
3714a385 3998 SET_IPADDR_V4(&p.prefix.prefix_addr.ip);
3999 memcpy(&p.prefix.prefix_addr.ip.ipaddr_v4, pfx, 4);
d62a17ae 4000 pfx += 4;
4001 memcpy(&evpn.gw_ip.ipv4, pfx, 4);
4002 pfx += 4;
d62a17ae 4003 } else {
3714a385 4004 SET_IPADDR_V6(&p.prefix.prefix_addr.ip);
4005 memcpy(&p.prefix.prefix_addr.ip.ipaddr_v6, pfx, 16);
d62a17ae 4006 pfx += 16;
4007 memcpy(&evpn.gw_ip.ipv6, pfx, 16);
4008 pfx += 16;
d62a17ae 4009 }
4010
b57ba6d2
MK
4011 /* Get the VNI (in MPLS label field). Stored as bytes here. */
4012 memset(&label, 0, sizeof(label));
4013 memcpy(&label, pfx, BGP_LABEL_BYTES);
6b11bd8d 4014
4015 /*
4016 * If in future, we are required to access additional fields,
996c9314
LB
4017 * we MUST increment pfx by BGP_LABEL_BYTES in before reading the next
4018 * field
6b11bd8d 4019 */
d62a17ae 4020
4021 /* Process the route. */
4022 if (!withdraw)
4023 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
4024 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 4025 &prd, &label, 1, 0, &evpn);
d62a17ae 4026 else
4027 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
4028 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 4029 &prd, &label, 1, &evpn);
d62a17ae 4030
4031 return ret;
4032}
4033
4034static void evpn_mpattr_encode_type5(struct stream *s, struct prefix *p,
996c9314 4035 struct prefix_rd *prd, mpls_label_t *label,
d7c0a89a 4036 uint32_t num_labels, struct attr *attr)
d62a17ae 4037{
4038 int len;
4039 char temp[16];
4040 struct evpn_addr *p_evpn_p;
4041
4042 memset(&temp, 0, 16);
b03b8898 4043 if (p->family != AF_EVPN)
d62a17ae 4044 return;
4045 p_evpn_p = &(p->u.prefix_evpn);
4046
e9fc2840 4047 /* len denites the total len of IP and GW-IP in the route
523cafc4 4048 IP and GW-IP have to be both ipv4 or ipv6
4049 */
3714a385 4050 if (IS_IPADDR_V4(&p_evpn_p->prefix_addr.ip))
e9fc2840 4051 len = 8; /* IP and GWIP are both ipv4 */
d62a17ae 4052 else
e9fc2840 4053 len = 32; /* IP and GWIP are both ipv6 */
d62a17ae 4054 /* Prefix contains RD, ESI, EthTag, IP length, IP, GWIP and VNI */
4055 stream_putc(s, 8 + 10 + 4 + 1 + len + 3);
4056 stream_put(s, prd->val, 8);
0af35d90 4057 if (attr)
d62a17ae 4058 stream_put(s, &(attr->evpn_overlay.eth_s_id), 10);
4059 else
4060 stream_put(s, &temp, 10);
3714a385 4061 stream_putl(s, p_evpn_p->prefix_addr.eth_tag);
4062 stream_putc(s, p_evpn_p->prefix_addr.ip_prefix_length);
4063 if (IS_IPADDR_V4(&p_evpn_p->prefix_addr.ip))
4064 stream_put_ipv4(s, p_evpn_p->prefix_addr.ip.ipaddr_v4.s_addr);
d62a17ae 4065 else
3714a385 4066 stream_put(s, &p_evpn_p->prefix_addr.ip.ipaddr_v6, 16);
0af35d90 4067 if (attr) {
3714a385 4068 if (IS_IPADDR_V4(&p_evpn_p->prefix_addr.ip))
d62a17ae 4069 stream_put_ipv4(s,
4070 attr->evpn_overlay.gw_ip.ipv4.s_addr);
4071 else
4072 stream_put(s, &(attr->evpn_overlay.gw_ip.ipv6), 16);
4073 } else {
3714a385 4074 if (IS_IPADDR_V4(&p_evpn_p->prefix_addr.ip))
d62a17ae 4075 stream_put_ipv4(s, 0);
4076 else
4077 stream_put(s, &temp, 16);
4078 }
4079
b57ba6d2 4080 if (num_labels)
d62a17ae 4081 stream_put(s, label, 3);
4082 else
4083 stream_put3(s, 0);
128ea8ab 4084}
4085
4086/*
4087 * Cleanup specific VNI upon EVPN (advertise-all-vni) being disabled.
4088 */
d62a17ae 4089static void cleanup_vni_on_disable(struct hash_backet *backet, struct bgp *bgp)
128ea8ab 4090{
d62a17ae 4091 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
128ea8ab 4092
d62a17ae 4093 /* Remove EVPN routes and schedule for processing. */
4094 delete_routes_for_vni(bgp, vpn);
128ea8ab 4095
d62a17ae 4096 /* Clear "live" flag and see if hash needs to be freed. */
4097 UNSET_FLAG(vpn->flags, VNI_FLAG_LIVE);
4098 if (!is_vni_configured(vpn))
4099 bgp_evpn_free(bgp, vpn);
128ea8ab 4100}
4101
4102/*
4103 * Free a VNI entry; iterator function called during cleanup.
4104 */
d62a17ae 4105static void free_vni_entry(struct hash_backet *backet, struct bgp *bgp)
128ea8ab 4106{
0a1a07cb 4107 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
128ea8ab 4108
d62a17ae 4109 delete_all_vni_routes(bgp, vpn);
4110 bgp_evpn_free(bgp, vpn);
128ea8ab 4111}
4112
c581d8b0
MK
4113/*
4114 * Derive AUTO import RT for BGP VRF - L3VNI
4115 */
4116static void evpn_auto_rt_import_add_for_vrf(struct bgp *bgp_vrf)
4117{
10ebe1ab
MK
4118 struct bgp *bgp_def = NULL;
4119
c581d8b0 4120 form_auto_rt(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_import_rtl);
10ebe1ab
MK
4121 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
4122
4123 /* Map RT to VRF */
4124 bgp_def = bgp_get_default();
4125 if (!bgp_def)
4126 return;
4127 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
c581d8b0
MK
4128}
4129
4130/*
4131 * Delete AUTO import RT from BGP VRF - L3VNI
4132 */
4133static void evpn_auto_rt_import_delete_for_vrf(struct bgp *bgp_vrf)
4134{
4135 evpn_rt_delete_auto(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_import_rtl);
4136}
4137
4138/*
4139 * Derive AUTO export RT for BGP VRF - L3VNI
4140 */
4141static void evpn_auto_rt_export_add_for_vrf(struct bgp *bgp_vrf)
4142{
4143 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
4144 form_auto_rt(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_export_rtl);
4145}
4146
4147/*
4148 * Delete AUTO export RT from BGP VRF - L3VNI
4149 */
4150static void evpn_auto_rt_export_delete_for_vrf(struct bgp *bgp_vrf)
4151{
4152 evpn_rt_delete_auto(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_export_rtl);
4153}
128ea8ab 4154
f1f8b53c
MK
4155static void bgp_evpn_handle_export_rt_change_for_vrf(struct bgp *bgp_vrf)
4156{
4157 struct bgp *bgp_def = NULL;
4158 struct listnode *node = NULL;
4159 struct bgpevpn *vpn = NULL;
4160
4161 bgp_def = bgp_get_default();
4162 if (!bgp_def)
4163 return;
4164
4992b4ae
MK
4165 /* update all type-5 routes */
4166 update_advertise_vrf_routes(bgp_vrf);
4167
4168 /* update all type-2 routes */
f1f8b53c
MK
4169 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn))
4170 update_routes_for_vni(bgp_def, vpn);
4171}
4172
bf1061d8
VB
4173/*
4174 * Handle autort change for a given VNI.
4175 */
4176static void update_autort_vni(struct hash_backet *backet, struct bgp *bgp)
4177{
4178 struct bgpevpn *vpn = backet->data;
bf1061d8 4179
bf1061d8
VB
4180 if (!is_import_rt_configured(vpn)) {
4181 if (is_vni_live(vpn))
4182 bgp_evpn_uninstall_routes(bgp, vpn);
4183 bgp_evpn_unmap_vni_from_its_rts(bgp, vpn);
bf1061d8
VB
4184 list_delete_all_node(vpn->import_rtl);
4185 bgp_evpn_derive_auto_rt_import(bgp, vpn);
4186 if (is_vni_live(vpn))
4187 bgp_evpn_install_routes(bgp, vpn);
4188 }
4189 if (!is_export_rt_configured(vpn)) {
bf1061d8
VB
4190 list_delete_all_node(vpn->export_rtl);
4191 bgp_evpn_derive_auto_rt_export(bgp, vpn);
4192 if (is_vni_live(vpn))
4193 bgp_evpn_handle_export_rt_change(bgp, vpn);
4194 }
4195}
4196
128ea8ab 4197/*
4198 * Public functions.
4199 */
4200
5424b7ba 4201/* withdraw type-5 route corresponding to ip prefix */
31310b25 4202void bgp_evpn_withdraw_type5_route(struct bgp *bgp_vrf, struct prefix *p,
5424b7ba
MK
4203 afi_t afi, safi_t safi)
4204{
4205 int ret = 0;
4206 struct prefix_evpn evp;
4207 char buf[PREFIX_STRLEN];
4208
31310b25 4209 build_type5_prefix_from_ip_prefix(&evp, p);
5424b7ba
MK
4210 ret = delete_evpn_type5_route(bgp_vrf, &evp);
4211 if (ret) {
af4c2728 4212 flog_err(
e50f7cfd 4213 EC_BGP_EVPN_ROUTE_DELETE,
996c9314
LB
4214 "%u failed to delete type-5 route for prefix %s in vrf %s",
4215 bgp_vrf->vrf_id, prefix2str(p, buf, sizeof(buf)),
4216 vrf_id_to_name(bgp_vrf->vrf_id));
5424b7ba
MK
4217 }
4218}
4219
342dd0c6 4220/* withdraw all type-5 routes for an address family */
996c9314 4221void bgp_evpn_withdraw_type5_routes(struct bgp *bgp_vrf, afi_t afi, safi_t safi)
342dd0c6 4222{
4223 struct bgp_table *table = NULL;
4224 struct bgp_node *rn = NULL;
40381db7 4225 struct bgp_path_info *pi;
342dd0c6 4226
053905d2 4227 table = bgp_vrf->rib[afi][safi];
25f2ca53 4228 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
4229 /* Only care about "selected" routes - non-imported. */
4230 /* TODO: Support for AddPath for EVPN. */
40381db7
DS
4231 for (pi = rn->info; pi; pi = pi->next) {
4232 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)
4233 && (!pi->extra || !pi->extra->parent)) {
25f2ca53 4234 bgp_evpn_withdraw_type5_route(bgp_vrf, &rn->p,
4235 afi, safi);
4236 break;
4237 }
4238 }
4239 }
5424b7ba 4240}
342dd0c6 4241
5fd9c12b
KA
4242/*
4243 * evpn - enable advertisement of default g/w
4244 */
4245void bgp_evpn_install_uninstall_default_route(struct bgp *bgp_vrf, afi_t afi,
4246 safi_t safi, bool add)
4247{
4248 struct prefix ip_prefix;
4249
4250 /* form the default prefix 0.0.0.0/0 */
4251 memset(&ip_prefix, 0, sizeof(struct prefix));
4252 ip_prefix.family = afi2family(afi);
4253
4254 if (add) {
4255 bgp_evpn_advertise_type5_route(bgp_vrf, &ip_prefix,
4256 NULL, afi, safi);
4257 } else {
4258 bgp_evpn_withdraw_type5_route(bgp_vrf, &ip_prefix,
4259 afi, safi);
4260 }
4261}
4262
4263
2f69f6d3 4264/*
4265 * Advertise IP prefix as type-5 route. The afi/safi and src_attr passed
4266 * to this function correspond to those of the source IP prefix (best
4267 * path in the case of the attr. In the case of a local prefix (when we
4268 * are advertising local subnets), the src_attr will be NULL.
4269 */
31310b25 4270void bgp_evpn_advertise_type5_route(struct bgp *bgp_vrf, struct prefix *p,
996c9314
LB
4271 struct attr *src_attr, afi_t afi,
4272 safi_t safi)
5424b7ba
MK
4273{
4274 int ret = 0;
4275 struct prefix_evpn evp;
4276 char buf[PREFIX_STRLEN];
7c82b312 4277
31310b25 4278 build_type5_prefix_from_ip_prefix(&evp, p);
2f69f6d3 4279 ret = update_evpn_type5_route(bgp_vrf, &evp, src_attr);
4280 if (ret)
e50f7cfd 4281 flog_err(EC_BGP_EVPN_ROUTE_CREATE,
1c50c1c0
QY
4282 "%u: Failed to create type-5 route for prefix %s",
4283 bgp_vrf->vrf_id, prefix2str(p, buf, sizeof(buf)));
342dd0c6 4284}
4285
2f69f6d3 4286/* Inject all prefixes of a particular address-family (currently, IPv4 or
4287 * IPv6 unicast) into EVPN as type-5 routes. This is invoked when the
4288 * advertisement is enabled.
4289 */
996c9314
LB
4290void bgp_evpn_advertise_type5_routes(struct bgp *bgp_vrf, afi_t afi,
4291 safi_t safi)
342dd0c6 4292{
4293 struct bgp_table *table = NULL;
4294 struct bgp_node *rn = NULL;
40381db7 4295 struct bgp_path_info *pi;
342dd0c6 4296
053905d2 4297 table = bgp_vrf->rib[afi][safi];
31310b25 4298 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2f69f6d3 4299 /* Need to identify the "selected" route entry to use its
25f2ca53 4300 * attribute. Also, we only consider "non-imported" routes.
2f69f6d3 4301 * TODO: Support for AddPath for EVPN.
4302 */
40381db7
DS
4303 for (pi = rn->info; pi; pi = pi->next) {
4304 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)
4305 && (!pi->extra || !pi->extra->parent)) {
53c84f78
MK
4306
4307 /* apply the route-map */
4308 if (bgp_vrf->adv_cmd_rmap[afi][safi].map) {
4309 int ret = 0;
4310
996c9314
LB
4311 ret = route_map_apply(
4312 bgp_vrf->adv_cmd_rmap[afi][safi]
4313 .map,
40381db7 4314 &rn->p, RMAP_BGP, pi);
53c84f78
MK
4315 if (ret == RMAP_DENYMATCH)
4316 continue;
4317 }
996c9314 4318 bgp_evpn_advertise_type5_route(
40381db7 4319 bgp_vrf, &rn->p, pi->attr, afi, safi);
2f69f6d3 4320 break;
4321 }
4322 }
31310b25 4323 }
342dd0c6 4324}
4325
996c9314 4326void evpn_rt_delete_auto(struct bgp *bgp, vni_t vni, struct list *rtl)
c581d8b0
MK
4327{
4328 struct listnode *node, *nnode, *node_to_del;
4329 struct ecommunity *ecom, *ecom_auto;
4330 struct ecommunity_val eval;
4331
bf1061d8
VB
4332 if (bgp->advertise_autort_rfc8365)
4333 vni |= EVPN_AUTORT_VXLAN;
c581d8b0
MK
4334 encode_route_target_as((bgp->as & 0xFFFF), vni, &eval);
4335
4336 ecom_auto = ecommunity_new();
4337 ecommunity_add_val(ecom_auto, &eval);
4338 node_to_del = NULL;
4339
4340 for (ALL_LIST_ELEMENTS(rtl, node, nnode, ecom)) {
4341 if (ecommunity_match(ecom, ecom_auto)) {
4342 ecommunity_free(&ecom);
4343 node_to_del = node;
4344 }
4345 }
4346
4347 if (node_to_del)
4348 list_delete_node(rtl, node_to_del);
4349
4350 ecommunity_free(&ecom_auto);
4351}
4352
4353void bgp_evpn_configure_import_rt_for_vrf(struct bgp *bgp_vrf,
10ebe1ab 4354 struct ecommunity *ecomadd)
c581d8b0 4355{
5ba238b7
MK
4356 /* uninstall routes from vrf */
4357 uninstall_routes_for_vrf(bgp_vrf);
10ebe1ab
MK
4358
4359 /* Cleanup the RT to VRF mapping */
4360 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
4361
c581d8b0
MK
4362 /* Remove auto generated RT */
4363 evpn_auto_rt_import_delete_for_vrf(bgp_vrf);
4364
4365 /* Add the newly configured RT to RT list */
4366 listnode_add_sort(bgp_vrf->vrf_import_rtl, ecomadd);
4367 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
4368
10ebe1ab
MK
4369 /* map VRF to its RTs */
4370 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
4371
5ba238b7
MK
4372 /* install routes matching the new VRF */
4373 install_routes_for_vrf(bgp_vrf);
c581d8b0
MK
4374}
4375
4376void bgp_evpn_unconfigure_import_rt_for_vrf(struct bgp *bgp_vrf,
4377 struct ecommunity *ecomdel)
4378{
4379 struct listnode *node = NULL, *nnode = NULL, *node_to_del = NULL;
4380 struct ecommunity *ecom = NULL;
4381
5ba238b7
MK
4382 /* uninstall routes from vrf */
4383 uninstall_routes_for_vrf(bgp_vrf);
10ebe1ab
MK
4384
4385 /* Cleanup the RT to VRF mapping */
4386 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
4387
c581d8b0
MK
4388 /* remove the RT from the RT list */
4389 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
4390 if (ecommunity_match(ecom, ecomdel)) {
4391 ecommunity_free(&ecom);
4392 node_to_del = node;
4393 break;
4394 }
4395 }
4396
4397 if (node_to_del)
4398 list_delete_node(bgp_vrf->vrf_import_rtl, node_to_del);
4399
b3a4db3d 4400 assert(bgp_vrf->vrf_import_rtl);
c581d8b0 4401 /* fallback to auto import rt, if this was the last RT */
1230a82d 4402 if (bgp_vrf->vrf_import_rtl && list_isempty(bgp_vrf->vrf_import_rtl)) {
c581d8b0
MK
4403 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
4404 evpn_auto_rt_import_add_for_vrf(bgp_vrf);
4405 }
4406
10ebe1ab
MK
4407 /* map VRFs to its RTs */
4408 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
4409
5ba238b7
MK
4410 /* install routes matching this new RT */
4411 install_routes_for_vrf(bgp_vrf);
c581d8b0
MK
4412}
4413
4414void bgp_evpn_configure_export_rt_for_vrf(struct bgp *bgp_vrf,
4415 struct ecommunity *ecomadd)
4416{
4417 /* remove auto-generated RT */
4418 evpn_auto_rt_export_delete_for_vrf(bgp_vrf);
4419
4420 /* Add the new RT to the RT list */
4421 listnode_add_sort(bgp_vrf->vrf_export_rtl, ecomadd);
4422 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
4423
f1f8b53c 4424 bgp_evpn_handle_export_rt_change_for_vrf(bgp_vrf);
c581d8b0
MK
4425}
4426
4427void bgp_evpn_unconfigure_export_rt_for_vrf(struct bgp *bgp_vrf,
4428 struct ecommunity *ecomdel)
4429{
4430 struct listnode *node = NULL, *nnode = NULL, *node_to_del = NULL;
4431 struct ecommunity *ecom = NULL;
4432
4433 /* Remove the RT from the RT list */
4434 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_export_rtl, node, nnode, ecom)) {
4435 if (ecommunity_match(ecom, ecomdel)) {
4436 ecommunity_free(&ecom);
4437 node_to_del = node;
4438 break;
4439 }
4440 }
4441
4442 if (node_to_del)
4443 list_delete_node(bgp_vrf->vrf_export_rtl, node_to_del);
4444
1525e99f
DS
4445 /*
4446 * Temporary assert to make SA happy.
4447 * The ALL_LIST_ELEMENTS macro above has a NULL check
4448 * which means that SA is going to complain about
4449 * the list_isempty call, which doesn't NULL check.
4450 * So until we get this situation cleaned up, here
4451 * we are.
4452 */
4453 assert(bgp_vrf->vrf_export_rtl);
4454
c581d8b0 4455 /* fall back to auto-generated RT if this was the last RT */
1525e99f 4456 if (list_isempty(bgp_vrf->vrf_export_rtl)) {
c581d8b0
MK
4457 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
4458 evpn_auto_rt_export_add_for_vrf(bgp_vrf);
4459 }
4460
f1f8b53c 4461 bgp_evpn_handle_export_rt_change_for_vrf(bgp_vrf);
c581d8b0
MK
4462}
4463
2d48ee25 4464/*
4465 * Handle change to BGP router id. This is invoked twice by the change
4466 * handler, first before the router id has been changed and then after
4467 * the router id has been changed. The first invocation will result in
676f83b9 4468 * local routes for all VNIs/VRF being deleted and withdrawn and the next
2d48ee25 4469 * will result in the routes being re-advertised.
4470 */
d62a17ae 4471void bgp_evpn_handle_router_id_update(struct bgp *bgp, int withdraw)
2d48ee25 4472{
676f83b9 4473 if (withdraw) {
4474
4475 /* delete and withdraw all the type-5 routes
523cafc4 4476 stored in the global table for this vrf
4477 */
80b140af 4478 withdraw_router_id_vrf(bgp);
676f83b9 4479
4480 /* delete all the VNI routes (type-2/type-3) routes for all the
523cafc4 4481 * L2-VNIs
4482 */
d62a17ae 4483 hash_iterate(bgp->vnihash,
4484 (void (*)(struct hash_backet *,
4485 void *))withdraw_router_id_vni,
4486 bgp);
676f83b9 4487 } else {
4488
4489 /* advertise all routes in the vrf as type-5 routes with the new
523cafc4 4490 * RD
4491 */
80b140af 4492 update_router_id_vrf(bgp);
676f83b9 4493
4494 /* advertise all the VNI routes (type-2/type-3) routes with the
523cafc4 4495 * new RD
4496 */
d62a17ae 4497 hash_iterate(bgp->vnihash,
4498 (void (*)(struct hash_backet *,
4499 void *))update_router_id_vni,
4500 bgp);
676f83b9 4501 }
2d48ee25 4502}
4503
bf1061d8
VB
4504/*
4505 * Handle change to auto-RT algorithm - update and advertise local routes.
4506 */
4507void bgp_evpn_handle_autort_change(struct bgp *bgp)
4508{
4509 hash_iterate(bgp->vnihash,
4510 (void (*)(struct hash_backet *,
4511 void*))update_autort_vni,
4512 bgp);
4513}
4514
90e60aa7 4515/*
4516 * Handle change to export RT - update and advertise local routes.
4517 */
d62a17ae 4518int bgp_evpn_handle_export_rt_change(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 4519{
d62a17ae 4520 return update_routes_for_vni(bgp, vpn);
90e60aa7 4521}
4522
996c9314 4523void bgp_evpn_handle_vrf_rd_change(struct bgp *bgp_vrf, int withdraw)
676f83b9 4524{
4525 if (withdraw)
4526 delete_withdraw_vrf_routes(bgp_vrf);
4527 else
4528 update_advertise_vrf_routes(bgp_vrf);
4529}
4530
90e60aa7 4531/*
4532 * Handle change to RD. This is invoked twice by the change handler,
4533 * first before the RD has been changed and then after the RD has
4534 * been changed. The first invocation will result in local routes
4535 * of this VNI being deleted and withdrawn and the next will result
4536 * in the routes being re-advertised.
4537 */
d62a17ae 4538void bgp_evpn_handle_rd_change(struct bgp *bgp, struct bgpevpn *vpn,
4539 int withdraw)
90e60aa7 4540{
d62a17ae 4541 if (withdraw)
4542 delete_withdraw_vni_routes(bgp, vpn);
4543 else
4544 update_advertise_vni_routes(bgp, vpn);
90e60aa7 4545}
4546
4547/*
4548 * Install routes for this VNI. Invoked upon change to Import RT.
4549 */
d62a17ae 4550int bgp_evpn_install_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 4551{
d62a17ae 4552 return install_routes_for_vni(bgp, vpn);
90e60aa7 4553}
4554
4555/*
4556 * Uninstall all routes installed for this VNI. Invoked upon change
4557 * to Import RT.
4558 */
d62a17ae 4559int bgp_evpn_uninstall_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 4560{
d62a17ae 4561 return uninstall_routes_for_vni(bgp, vpn);
90e60aa7 4562}
4563
b16031a2 4564/*
b57ba6d2 4565 * TODO: Hardcoded for a maximum of 2 VNIs right now
b16031a2 4566 */
d7c0a89a 4567char *bgp_evpn_label2str(mpls_label_t *label, uint32_t num_labels, char *buf,
996c9314 4568 int len)
b16031a2 4569{
b57ba6d2 4570 vni_t vni1, vni2;
b16031a2 4571
b57ba6d2
MK
4572 vni1 = label2vni(label);
4573 if (num_labels == 2) {
996c9314 4574 vni2 = label2vni(label + 1);
b57ba6d2
MK
4575 snprintf(buf, len, "%u/%u", vni1, vni2);
4576 } else
4577 snprintf(buf, len, "%u", vni1);
d62a17ae 4578 return buf;
b16031a2 4579}
4580
9c92b5f7
MK
4581/*
4582 * Function to convert evpn route to json format.
4583 * NOTE: We don't use prefix2str as the output here is a bit different.
4584 */
57f7feb6 4585void bgp_evpn_route2json(struct prefix_evpn *p, json_object *json)
9c92b5f7 4586{
b682f6de 4587 char buf1[ETHER_ADDR_STRLEN];
4588 char buf2[PREFIX2STR_BUFFER];
9c92b5f7 4589
b682f6de 4590 if (!json)
4591 return;
9c92b5f7 4592
dff8f48d 4593 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE) {
b682f6de 4594 json_object_int_add(json, "routeType", p->prefix.route_type);
3714a385 4595 json_object_int_add(json, "ethTag",
4596 p->prefix.imet_addr.eth_tag);
57f7feb6 4597 json_object_int_add(json, "ipLen",
3714a385 4598 is_evpn_prefix_ipaddr_v4(p)
57f7feb6
MK
4599 ? IPV4_MAX_BITLEN
4600 : IPV6_MAX_BITLEN);
b682f6de 4601 json_object_string_add(json, "ip",
3714a385 4602 inet_ntoa(p->prefix.imet_addr.ip.ipaddr_v4));
57f7feb6 4603 } else if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE) {
3714a385 4604 if (is_evpn_prefix_ipaddr_none(p)) {
57f7feb6
MK
4605 json_object_int_add(json, "routeType",
4606 p->prefix.route_type);
3714a385 4607 json_object_int_add(json, "ethTag",
4608 p->prefix.macip_addr.eth_tag);
57f7feb6
MK
4609 json_object_int_add(json, "macLen", 8 * ETH_ALEN);
4610 json_object_string_add(json, "mac",
3714a385 4611 prefix_mac2str(&p->prefix.macip_addr.mac,
57f7feb6
MK
4612 buf1,
4613 sizeof(buf1)));
dff8f48d 4614 } else {
d7c0a89a 4615 uint8_t family;
dff8f48d 4616
3714a385 4617 family = is_evpn_prefix_ipaddr_v4(p) ? AF_INET
57f7feb6 4618 : AF_INET6;
dff8f48d 4619
b682f6de 4620 json_object_int_add(json, "routeType",
57f7feb6 4621 p->prefix.route_type);
3714a385 4622 json_object_int_add(json, "ethTag",
4623 p->prefix.macip_addr.eth_tag);
57f7feb6 4624 json_object_int_add(json, "macLen", 8 * ETH_ALEN);
b682f6de 4625 json_object_string_add(json, "mac",
3714a385 4626 prefix_mac2str(&p->prefix.macip_addr.mac,
57f7feb6
MK
4627 buf1,
4628 sizeof(buf1)));
b682f6de 4629 json_object_int_add(json, "ipLen",
3714a385 4630 is_evpn_prefix_ipaddr_v4(p)
57f7feb6
MK
4631 ? IPV4_MAX_BITLEN
4632 : IPV6_MAX_BITLEN);
4633 json_object_string_add(
4634 json, "ip",
3714a385 4635 inet_ntop(family,
4636 &p->prefix.macip_addr.ip.ip.addr,
4637 buf2,
57f7feb6 4638 PREFIX2STR_BUFFER));
dff8f48d
MK
4639 }
4640 } else {
4641 /* Currently, this is to cater to other AF_ETHERNET code. */
4642 }
9c92b5f7
MK
4643}
4644
520d5d76 4645/*
4646 * Function to convert evpn route to string.
4647 * NOTE: We don't use prefix2str as the output here is a bit different.
4648 */
d62a17ae 4649char *bgp_evpn_route2str(struct prefix_evpn *p, char *buf, int len)
4650{
4651 char buf1[ETHER_ADDR_STRLEN];
4652 char buf2[PREFIX2STR_BUFFER];
50f74cf1 4653 char buf3[ESI_STR_LEN];
d62a17ae 4654
4655 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE) {
554cd77a 4656 snprintf(buf, len, "[%d]:[%d]:[%d]:[%s]", p->prefix.route_type,
3714a385 4657 p->prefix.imet_addr.eth_tag,
4658 is_evpn_prefix_ipaddr_v4(p) ? IPV4_MAX_BITLEN
d62a17ae 4659 : IPV6_MAX_BITLEN,
3714a385 4660 inet_ntoa(p->prefix.imet_addr.ip.ipaddr_v4));
d62a17ae 4661 } else if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE) {
3714a385 4662 if (is_evpn_prefix_ipaddr_none(p))
554cd77a
VB
4663 snprintf(buf, len, "[%d]:[%d]:[%d]:[%s]",
4664 p->prefix.route_type,
3714a385 4665 p->prefix.macip_addr.eth_tag,
554cd77a 4666 8 * ETH_ALEN,
3714a385 4667 prefix_mac2str(&p->prefix.macip_addr.mac, buf1,
d62a17ae 4668 sizeof(buf1)));
4669 else {
d7c0a89a 4670 uint8_t family;
d62a17ae 4671
3714a385 4672 family = is_evpn_prefix_ipaddr_v4(p) ? AF_INET
d62a17ae 4673 : AF_INET6;
554cd77a
VB
4674 snprintf(buf, len, "[%d]:[%d]:[%d]:[%s]:[%d]:[%s]",
4675 p->prefix.route_type,
3714a385 4676 p->prefix.macip_addr.eth_tag,
554cd77a 4677 8 * ETH_ALEN,
3714a385 4678 prefix_mac2str(&p->prefix.macip_addr.mac, buf1,
d62a17ae 4679 sizeof(buf1)),
4680 family == AF_INET ? IPV4_MAX_BITLEN
4681 : IPV6_MAX_BITLEN,
3714a385 4682 inet_ntop(family,
4683 &p->prefix.macip_addr.ip.ip.addr,
4684 buf2,
d62a17ae 4685 PREFIX2STR_BUFFER));
4686 }
342dd0c6 4687 } else if (p->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE) {
554cd77a
VB
4688 snprintf(buf, len, "[%d]:[%d]:[%d]:[%s]",
4689 p->prefix.route_type,
3714a385 4690 p->prefix.prefix_addr.eth_tag,
4691 p->prefix.prefix_addr.ip_prefix_length,
4692 is_evpn_prefix_ipaddr_v4(p)
4693 ? inet_ntoa(p->prefix.prefix_addr.ip.ipaddr_v4)
4694 : inet6_ntoa(p->prefix.prefix_addr.ip.ipaddr_v6));
50f74cf1 4695 } else if (p->prefix.route_type == BGP_EVPN_ES_ROUTE) {
4696 snprintf(buf, len, "[%d]:[%s]:[%d]:[%s]",
4697 p->prefix.route_type,
4698 esi_to_str(&p->prefix.es_addr.esi, buf3, sizeof(buf3)),
4699 is_evpn_prefix_ipaddr_v4(p) ? IPV4_MAX_BITLEN
4700 : IPV6_MAX_BITLEN,
4701 inet_ntoa(p->prefix.es_addr.ip.ipaddr_v4));
d62a17ae 4702 } else {
b03b8898 4703 /* For EVPN route types not supported yet. */
f9aa3e55
QY
4704 snprintf(buf, len, "(unsupported route type %d)",
4705 p->prefix.route_type);
d62a17ae 4706 }
4707
4708 return (buf);
520d5d76 4709}
4710
128ea8ab 4711/*
4712 * Encode EVPN prefix in Update (MP_REACH)
4713 */
d62a17ae 4714void bgp_evpn_encode_prefix(struct stream *s, struct prefix *p,
996c9314 4715 struct prefix_rd *prd, mpls_label_t *label,
d7c0a89a
QY
4716 uint32_t num_labels, struct attr *attr,
4717 int addpath_encode, uint32_t addpath_tx_id)
d62a17ae 4718{
4719 struct prefix_evpn *evp = (struct prefix_evpn *)p;
b57ba6d2 4720 int len, ipa_len = 0;
d62a17ae 4721
4722 if (addpath_encode)
4723 stream_putl(s, addpath_tx_id);
4724
4725 /* Route type */
4726 stream_putc(s, evp->prefix.route_type);
4727
4728 switch (evp->prefix.route_type) {
4729 case BGP_EVPN_MAC_IP_ROUTE:
3714a385 4730 if (is_evpn_prefix_ipaddr_v4(evp))
d62a17ae 4731 ipa_len = IPV4_MAX_BYTELEN;
3714a385 4732 else if (is_evpn_prefix_ipaddr_v6(evp))
d62a17ae 4733 ipa_len = IPV6_MAX_BYTELEN;
b57ba6d2
MK
4734 /* RD, ESI, EthTag, MAC+len, IP len, [IP], 1 VNI */
4735 len = 8 + 10 + 4 + 1 + 6 + 1 + ipa_len + 3;
4736 if (ipa_len && num_labels > 1) /* There are 2 VNIs */
4737 len += 3;
4738 stream_putc(s, len);
996c9314 4739 stream_put(s, prd->val, 8); /* RD */
554cd77a
VB
4740 if (attr)
4741 stream_put(s, &attr->evpn_overlay.eth_s_id, ESI_LEN);
4742 else
4743 stream_put(s, 0, 10);
3714a385 4744 stream_putl(s, evp->prefix.macip_addr.eth_tag); /* Ethernet Tag ID */
28328ea9 4745 stream_putc(s, 8 * ETH_ALEN); /* Mac Addr Len - bits */
3714a385 4746 stream_put(s, evp->prefix.macip_addr.mac.octet, 6); /* Mac Addr */
4747 stream_putc(s, 8 * ipa_len); /* IP address Length */
4748 if (ipa_len) /* IP */
4749 stream_put(s, &evp->prefix.macip_addr.ip.ip.addr,
4750 ipa_len);
b57ba6d2
MK
4751 /* 1st label is the L2 VNI */
4752 stream_put(s, label, BGP_LABEL_BYTES);
4753 /* Include 2nd label (L3 VNI) if advertising MAC+IP */
4754 if (ipa_len && num_labels > 1)
996c9314 4755 stream_put(s, label + 1, BGP_LABEL_BYTES);
d62a17ae 4756 break;
4757
4758 case BGP_EVPN_IMET_ROUTE:
4759 stream_putc(s, 17); // TODO: length - assumes IPv4 address
4760 stream_put(s, prd->val, 8); /* RD */
3714a385 4761 stream_putl(s, evp->prefix.imet_addr.eth_tag); /* Ethernet Tag ID */
d62a17ae 4762 stream_putc(s, IPV4_MAX_BITLEN); /* IP address Length - bits */
4763 /* Originating Router's IP Addr */
3714a385 4764 stream_put_in_addr(s, &evp->prefix.imet_addr.ip.ipaddr_v4);
d62a17ae 4765 break;
4766
50f74cf1 4767 case BGP_EVPN_ES_ROUTE:
4768 stream_putc(s, 23); /* TODO: length: assumes ipv4 VTEP */
4769 stream_put(s, prd->val, 8); /* RD */
4770 stream_put(s, evp->prefix.es_addr.esi.val, 10); /* ESI */
4771 stream_putc(s, IPV4_MAX_BITLEN); /* IP address Length - bits */
2bb9eff4
DS
4772 /* VTEP IP */
4773 stream_put_in_addr(s, &evp->prefix.es_addr.ip.ipaddr_v4);
50f74cf1 4774 break;
4775
d62a17ae 4776 case BGP_EVPN_IP_PREFIX_ROUTE:
4777 /* TODO: AddPath support. */
b57ba6d2 4778 evpn_mpattr_encode_type5(s, p, prd, label, num_labels, attr);
d62a17ae 4779 break;
4780
4781 default:
4782 break;
4783 }
4784}
4785
4786int bgp_nlri_parse_evpn(struct peer *peer, struct attr *attr,
4787 struct bgp_nlri *packet, int withdraw)
4788{
d7c0a89a
QY
4789 uint8_t *pnt;
4790 uint8_t *lim;
d62a17ae 4791 afi_t afi;
4792 safi_t safi;
d7c0a89a 4793 uint32_t addpath_id;
d62a17ae 4794 int addpath_encoded;
4795 int psize = 0;
d7c0a89a 4796 uint8_t rtype;
d62a17ae 4797 struct prefix p;
4798
d62a17ae 4799 /* Start processing the NLRI - there may be multiple in the MP_REACH */
4800 pnt = packet->nlri;
4801 lim = pnt + packet->length;
4802 afi = packet->afi;
4803 safi = packet->safi;
4804 addpath_id = 0;
4805
4806 addpath_encoded =
4807 (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ADDPATH_AF_RX_ADV)
4808 && CHECK_FLAG(peer->af_cap[afi][safi],
4809 PEER_CAP_ADDPATH_AF_TX_RCV));
4810
4811 for (; pnt < lim; pnt += psize) {
4812 /* Clear prefix structure. */
4813 memset(&p, 0, sizeof(struct prefix));
4814
4815 /* Deal with path-id if AddPath is supported. */
4816 if (addpath_encoded) {
4817 /* When packet overflow occurs return immediately. */
4818 if (pnt + BGP_ADDPATH_ID_LEN > lim)
4819 return -1;
4820
4821 addpath_id = ntohl(*((uint32_t *)pnt));
4822 pnt += BGP_ADDPATH_ID_LEN;
4823 }
4824
4825 /* All EVPN NLRI types start with type and length. */
4826 if (pnt + 2 > lim)
4827 return -1;
4828
4829 rtype = *pnt++;
3f54c705 4830 psize = *pnt++;
d62a17ae 4831
4832 /* When packet overflow occur return immediately. */
4833 if (pnt + psize > lim)
4834 return -1;
4835
4836 switch (rtype) {
4837 case BGP_EVPN_MAC_IP_ROUTE:
4838 if (process_type2_route(peer, afi, safi,
4839 withdraw ? NULL : attr, pnt,
4840 psize, addpath_id)) {
af4c2728 4841 flog_err(
e50f7cfd 4842 EC_BGP_EVPN_FAIL,
d62a17ae 4843 "%u:%s - Error in processing EVPN type-2 NLRI size %d",
4844 peer->bgp->vrf_id, peer->host, psize);
4845 return -1;
4846 }
4847 break;
4848
4849 case BGP_EVPN_IMET_ROUTE:
4850 if (process_type3_route(peer, afi, safi,
4851 withdraw ? NULL : attr, pnt,
4852 psize, addpath_id)) {
af4c2728 4853 flog_err(
e50f7cfd 4854 EC_BGP_PKT_PROCESS,
d62a17ae 4855 "%u:%s - Error in processing EVPN type-3 NLRI size %d",
4856 peer->bgp->vrf_id, peer->host, psize);
4857 return -1;
4858 }
4859 break;
4860
50f74cf1 4861 case BGP_EVPN_ES_ROUTE:
4862 if (process_type4_route(peer, afi, safi,
4863 withdraw ? NULL : attr, pnt,
4864 psize, addpath_id)) {
af4c2728 4865 flog_err(
e50f7cfd 4866 EC_BGP_PKT_PROCESS,
50f74cf1 4867 "%u:%s - Error in processing EVPN type-4 NLRI size %d",
4868 peer->bgp->vrf_id, peer->host, psize);
4869 return -1;
4870 }
4871 break;
4872
d62a17ae 4873 case BGP_EVPN_IP_PREFIX_ROUTE:
4874 if (process_type5_route(peer, afi, safi, attr, pnt,
4875 psize, addpath_id, withdraw)) {
af4c2728 4876 flog_err(
e50f7cfd 4877 EC_BGP_PKT_PROCESS,
d62a17ae 4878 "%u:%s - Error in processing EVPN type-5 NLRI size %d",
4879 peer->bgp->vrf_id, peer->host, psize);
4880 return -1;
4881 }
4882 break;
4883
4884 default:
4885 break;
4886 }
4887 }
4888
4889 /* Packet length consistency check. */
4890 if (pnt != lim)
4891 return -1;
4892
4893 return 0;
128ea8ab 4894}
4895
10ebe1ab
MK
4896/*
4897 * Map the RTs (configured or automatically derived) of a VRF to the VRF.
4898 * The mapping will be used during route processing.
4899 * bgp_def: default bgp instance
4900 * bgp_vrf: specific bgp vrf instance on which RT is configured
4901 */
4902void bgp_evpn_map_vrf_to_its_rts(struct bgp *bgp_vrf)
4903{
4904 int i = 0;
4905 struct ecommunity_val *eval = NULL;
4906 struct listnode *node = NULL, *nnode = NULL;
4907 struct ecommunity *ecom = NULL;
4908
4909 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
4910 for (i = 0; i < ecom->size; i++) {
4911 eval = (struct ecommunity_val *)(ecom->val
4912 + (i
4913 * ECOMMUNITY_SIZE));
4914 map_vrf_to_rt(bgp_vrf, eval);
4915 }
4916 }
4917}
4918
4919/*
4920 * Unmap the RTs (configured or automatically derived) of a VRF from the VRF.
4921 */
4922void bgp_evpn_unmap_vrf_from_its_rts(struct bgp *bgp_vrf)
4923{
4924 int i;
4925 struct ecommunity_val *eval;
4926 struct listnode *node, *nnode;
4927 struct ecommunity *ecom;
4928
4929 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
4930 for (i = 0; i < ecom->size; i++) {
4931 struct vrf_irt_node *irt;
4932 struct ecommunity_val eval_tmp;
4933
4934 eval = (struct ecommunity_val *)(ecom->val
4935 + (i
4936 * ECOMMUNITY_SIZE));
4937 /* If using "automatic" RT, we only care about the
4938 * local-admin sub-field.
4939 * This is to facilitate using VNI as the RT for EBGP
4940 * peering too.
4941 */
4942 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
4943 if (!CHECK_FLAG(bgp_vrf->vrf_flags,
4944 BGP_VRF_IMPORT_RT_CFGD))
4945 mask_ecom_global_admin(&eval_tmp, eval);
4946
4947 irt = lookup_vrf_import_rt(&eval_tmp);
4948 if (irt)
4949 unmap_vrf_from_rt(bgp_vrf, irt);
4950 }
4951 }
4952}
4953
4954
128ea8ab 4955/*
4956 * Map the RTs (configured or automatically derived) of a VNI to the VNI.
4957 * The mapping will be used during route processing.
4958 */
d62a17ae 4959void bgp_evpn_map_vni_to_its_rts(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 4960{
d62a17ae 4961 int i;
4962 struct ecommunity_val *eval;
4963 struct listnode *node, *nnode;
4964 struct ecommunity *ecom;
128ea8ab 4965
d62a17ae 4966 for (ALL_LIST_ELEMENTS(vpn->import_rtl, node, nnode, ecom)) {
4967 for (i = 0; i < ecom->size; i++) {
4968 eval = (struct ecommunity_val *)(ecom->val
4969 + (i
4970 * ECOMMUNITY_SIZE));
4971 map_vni_to_rt(bgp, vpn, eval);
4972 }
4973 }
128ea8ab 4974}
4975
4976/*
4977 * Unmap the RTs (configured or automatically derived) of a VNI from the VNI.
4978 */
d62a17ae 4979void bgp_evpn_unmap_vni_from_its_rts(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 4980{
d62a17ae 4981 int i;
4982 struct ecommunity_val *eval;
4983 struct listnode *node, *nnode;
4984 struct ecommunity *ecom;
128ea8ab 4985
d62a17ae 4986 for (ALL_LIST_ELEMENTS(vpn->import_rtl, node, nnode, ecom)) {
4987 for (i = 0; i < ecom->size; i++) {
4988 struct irt_node *irt;
4989 struct ecommunity_val eval_tmp;
128ea8ab 4990
d62a17ae 4991 eval = (struct ecommunity_val *)(ecom->val
4992 + (i
4993 * ECOMMUNITY_SIZE));
4994 /* If using "automatic" RT, we only care about the
4995 * local-admin sub-field.
4996 * This is to facilitate using VNI as the RT for EBGP
4997 * peering too.
4998 */
4999 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
5000 if (!is_import_rt_configured(vpn))
5001 mask_ecom_global_admin(&eval_tmp, eval);
128ea8ab 5002
d62a17ae 5003 irt = lookup_import_rt(bgp, &eval_tmp);
5004 if (irt)
5005 unmap_vni_from_rt(bgp, vpn, irt);
5006 }
5007 }
128ea8ab 5008}
5009
5010/*
5011 * Derive Import RT automatically for VNI and map VNI to RT.
5012 * The mapping will be used during route processing.
5013 */
d62a17ae 5014void bgp_evpn_derive_auto_rt_import(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 5015{
c581d8b0 5016 form_auto_rt(bgp, vpn->vni, vpn->import_rtl);
d62a17ae 5017 UNSET_FLAG(vpn->flags, VNI_FLAG_IMPRT_CFGD);
128ea8ab 5018
d62a17ae 5019 /* Map RT to VNI */
5020 bgp_evpn_map_vni_to_its_rts(bgp, vpn);
128ea8ab 5021}
5022
5023/*
5024 * Derive Export RT automatically for VNI.
5025 */
d62a17ae 5026void bgp_evpn_derive_auto_rt_export(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 5027{
c581d8b0 5028 form_auto_rt(bgp, vpn->vni, vpn->export_rtl);
d62a17ae 5029 UNSET_FLAG(vpn->flags, VNI_FLAG_EXPRT_CFGD);
128ea8ab 5030}
5031
676f83b9 5032/*
5033 * Derive RD automatically for VNI using passed information - it
5034 * is of the form RouterId:unique-id-for-vni.
5035 */
5036void bgp_evpn_derive_auto_rd_for_vrf(struct bgp *bgp)
5037{
92708db6 5038 form_auto_rd(bgp->router_id, bgp->vrf_rd_id, &bgp->vrf_prd);
676f83b9 5039}
5040
128ea8ab 5041/*
5042 * Derive RD automatically for VNI using passed information - it
5043 * is of the form RouterId:unique-id-for-vni.
5044 */
d62a17ae 5045void bgp_evpn_derive_auto_rd(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 5046{
d62a17ae 5047 char buf[100];
128ea8ab 5048
d62a17ae 5049 vpn->prd.family = AF_UNSPEC;
5050 vpn->prd.prefixlen = 64;
5051 sprintf(buf, "%s:%hu", inet_ntoa(bgp->router_id), vpn->rd_id);
cbb65f5e 5052 (void)str2prefix_rd(buf, &vpn->prd);
d62a17ae 5053 UNSET_FLAG(vpn->flags, VNI_FLAG_RD_CFGD);
128ea8ab 5054}
5055
7df407ed
CS
5056/*
5057 * Lookup L3-VNI
5058 */
5059bool bgp_evpn_lookup_l3vni_l2vni_table(vni_t vni)
5060{
5061 struct list *inst = bm->bgp;
5062 struct listnode *node;
5063 struct bgp *bgp_vrf;
5064
5065 for (ALL_LIST_ELEMENTS_RO(inst, node, bgp_vrf)) {
5066 if (bgp_vrf->l3vni == vni)
5067 return true;
5068 }
5069
5070 return false;
5071}
5072
128ea8ab 5073/*
5074 * Lookup VNI.
5075 */
d62a17ae 5076struct bgpevpn *bgp_evpn_lookup_vni(struct bgp *bgp, vni_t vni)
128ea8ab 5077{
d62a17ae 5078 struct bgpevpn *vpn;
5079 struct bgpevpn tmp;
128ea8ab 5080
d62a17ae 5081 memset(&tmp, 0, sizeof(struct bgpevpn));
5082 tmp.vni = vni;
5083 vpn = hash_lookup(bgp->vnihash, &tmp);
5084 return vpn;
128ea8ab 5085}
5086
5087/*
5088 * Create a new vpn - invoked upon configuration or zebra notification.
5089 */
d62a17ae 5090struct bgpevpn *bgp_evpn_new(struct bgp *bgp, vni_t vni,
29c53922
MK
5091 struct in_addr originator_ip,
5092 vrf_id_t tenant_vrf_id)
128ea8ab 5093{
d62a17ae 5094 struct bgpevpn *vpn;
128ea8ab 5095
d62a17ae 5096 if (!bgp)
5097 return NULL;
128ea8ab 5098
d62a17ae 5099 vpn = XCALLOC(MTYPE_BGP_EVPN, sizeof(struct bgpevpn));
5100 if (!vpn)
5101 return NULL;
128ea8ab 5102
d62a17ae 5103 /* Set values - RD and RT set to defaults. */
5104 vpn->vni = vni;
5105 vpn->originator_ip = originator_ip;
29c53922 5106 vpn->tenant_vrf_id = tenant_vrf_id;
128ea8ab 5107
d62a17ae 5108 /* Initialize route-target import and export lists */
5109 vpn->import_rtl = list_new();
5110 vpn->import_rtl->cmp = (int (*)(void *, void *))evpn_route_target_cmp;
987d8198 5111 vpn->import_rtl->del = evpn_xxport_delete_ecomm;
d62a17ae 5112 vpn->export_rtl = list_new();
5113 vpn->export_rtl->cmp = (int (*)(void *, void *))evpn_route_target_cmp;
987d8198 5114 vpn->export_rtl->del = evpn_xxport_delete_ecomm;
e9eb5f63 5115 bf_assign_index(bm->rd_idspace, vpn->rd_id);
d62a17ae 5116 derive_rd_rt_for_vni(bgp, vpn);
128ea8ab 5117
d62a17ae 5118 /* Initialize EVPN route table. */
960035b2 5119 vpn->route_table = bgp_table_init(bgp, AFI_L2VPN, SAFI_EVPN);
128ea8ab 5120
d62a17ae 5121 /* Add to hash */
5122 if (!hash_get(bgp->vnihash, vpn, hash_alloc_intern)) {
5123 XFREE(MTYPE_BGP_EVPN, vpn);
5124 return NULL;
5125 }
6a8657d0
MK
5126
5127 /* add to l2vni list on corresponding vrf */
5128 bgpevpn_link_to_l3vni(vpn);
5129
d62a17ae 5130 QOBJ_REG(vpn, bgpevpn);
5131 return vpn;
128ea8ab 5132}
5133
5134/*
5135 * Free a given VPN - called in multiple scenarios such as zebra
5136 * notification, configuration being deleted, advertise-all-vni disabled etc.
5137 * This just frees appropriate memory, caller should have taken other
5138 * needed actions.
5139 */
d62a17ae 5140void bgp_evpn_free(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 5141{
6a8657d0 5142 bgpevpn_unlink_from_l3vni(vpn);
d62a17ae 5143 bgp_table_unlock(vpn->route_table);
5144 bgp_evpn_unmap_vni_from_its_rts(bgp, vpn);
6a154c88
DL
5145 list_delete(&vpn->import_rtl);
5146 list_delete(&vpn->export_rtl);
e9eb5f63 5147 bf_release_index(bm->rd_idspace, vpn->rd_id);
d62a17ae 5148 hash_release(bgp->vnihash, vpn);
5149 QOBJ_UNREG(vpn);
5150 XFREE(MTYPE_BGP_EVPN, vpn);
128ea8ab 5151}
5152
5153/*
50f74cf1 5154 * Lookup local ES.
5155 */
5156struct evpnes *bgp_evpn_lookup_es(struct bgp *bgp, esi_t *esi)
5157{
5158 struct evpnes *es;
5159 struct evpnes tmp;
5160
5161 memset(&tmp, 0, sizeof(struct evpnes));
5162 memcpy(&tmp.esi, esi, sizeof(esi_t));
5163 es = hash_lookup(bgp->esihash, &tmp);
5164 return es;
5165}
5166
5167/*
5168 * Create a new local es - invoked upon zebra notification.
5169 */
5170struct evpnes *bgp_evpn_es_new(struct bgp *bgp,
5171 esi_t *esi,
5172 struct ipaddr *originator_ip)
5173{
5174 char buf[100];
5175 struct evpnes *es;
5176
5177 if (!bgp)
5178 return NULL;
5179
5180 es = XCALLOC(MTYPE_BGP_EVPN_ES, sizeof(struct evpnes));
5181 if (!es)
5182 return NULL;
5183
5184 /* set the ESI and originator_ip */
5185 memcpy(&es->esi, esi, sizeof(esi_t));
5186 memcpy(&es->originator_ip, originator_ip, sizeof(struct ipaddr));
5187
5188 /* Initialise the VTEP list */
5189 es->vtep_list = list_new();
ce167790 5190 es->vtep_list->cmp = evpn_vtep_ip_cmp;
50f74cf1 5191
5192 /* auto derive RD for this es */
5193 bf_assign_index(bm->rd_idspace, es->rd_id);
5194 es->prd.family = AF_UNSPEC;
5195 es->prd.prefixlen = 64;
5196 sprintf(buf, "%s:%hu", inet_ntoa(bgp->router_id), es->rd_id);
5197 (void)str2prefix_rd(buf, &es->prd);
5198
5199 /* Initialize the ES route table */
5200 es->route_table = bgp_table_init(bgp, AFI_L2VPN, SAFI_EVPN);
5201
5202 /* Add to hash */
5203 if (!hash_get(bgp->esihash, es, hash_alloc_intern)) {
5204 XFREE(MTYPE_BGP_EVPN_ES, es);
5205 return NULL;
5206 }
5207
5208 QOBJ_REG(es, evpnes);
5209 return es;
5210}
5211
5212/*
5213 * Free a given ES -
5214 * This just frees appropriate memory, caller should have taken other
5215 * needed actions.
5216 */
5217void bgp_evpn_es_free(struct bgp *bgp, struct evpnes *es)
5218{
6a154c88 5219 list_delete(&es->vtep_list);
50f74cf1 5220 bgp_table_unlock(es->route_table);
5221 bf_release_index(bm->rd_idspace, es->rd_id);
5222 hash_release(bgp->esihash, es);
5223 QOBJ_UNREG(es);
5224 XFREE(MTYPE_BGP_EVPN_ES, es);
5225}
5226
5227/*
5228 * Import evpn route from global table to VNI/VRF/ESI.
128ea8ab 5229 */
d62a17ae 5230int bgp_evpn_import_route(struct bgp *bgp, afi_t afi, safi_t safi,
40381db7 5231 struct prefix *p, struct bgp_path_info *pi)
128ea8ab 5232{
40381db7 5233 return install_uninstall_evpn_route(bgp, afi, safi, p, pi, 1);
128ea8ab 5234}
5235
5236/*
50f74cf1 5237 * Unimport evpn route from VNI/VRF/ESI.
128ea8ab 5238 */
d62a17ae 5239int bgp_evpn_unimport_route(struct bgp *bgp, afi_t afi, safi_t safi,
40381db7 5240 struct prefix *p, struct bgp_path_info *pi)
128ea8ab 5241{
40381db7 5242 return install_uninstall_evpn_route(bgp, afi, safi, p, pi, 0);
128ea8ab 5243}
5244
db0e1937
MK
5245/* filter routes which have martian next hops */
5246int bgp_filter_evpn_routes_upon_martian_nh_change(struct bgp *bgp)
5247{
0291c246
MK
5248 afi_t afi;
5249 safi_t safi;
5250 struct bgp_node *rd_rn, *rn;
5251 struct bgp_table *table;
40381db7 5252 struct bgp_path_info *pi;
db0e1937
MK
5253
5254 afi = AFI_L2VPN;
5255 safi = SAFI_EVPN;
5256
5257 /* Walk entire global routing table and evaluate routes which could be
5258 * imported into this VPN. Note that we cannot just look at the routes
5259 * for the VNI's RD -
5260 * remote routes applicable for this VNI could have any RD.
5261 */
5262 /* EVPN routes are a 2-level table. */
5263 for (rd_rn = bgp_table_top(bgp->rib[afi][safi]); rd_rn;
5264 rd_rn = bgp_route_next(rd_rn)) {
5265 table = (struct bgp_table *)(rd_rn->info);
5266 if (!table)
5267 continue;
5268
5269 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
5270
40381db7 5271 for (pi = rn->info; pi; pi = pi->next) {
db0e1937
MK
5272
5273 /* Consider "valid" remote routes applicable for
5274 * this VNI. */
40381db7
DS
5275 if (!(pi->type == ZEBRA_ROUTE_BGP
5276 && pi->sub_type == BGP_ROUTE_NORMAL))
db0e1937
MK
5277 continue;
5278
40381db7 5279 if (bgp_nexthop_self(bgp, pi->attr->nexthop)) {
db0e1937
MK
5280
5281 char attr_str[BUFSIZ];
5282 char pbuf[PREFIX_STRLEN];
5283
40381db7 5284 bgp_dump_attr(pi->attr, attr_str,
db0e1937
MK
5285 BUFSIZ);
5286
40381db7 5287 if (bgp_debug_update(pi->peer, &rn->p,
db0e1937
MK
5288 NULL, 1))
5289 zlog_debug(
b682f6de 5290 "%u: prefix %s with attr %s - DENIED due to martian or self nexthop",
db0e1937
MK
5291 bgp->vrf_id,
5292 prefix2str(
60466a63 5293 &rn->p, pbuf,
db0e1937
MK
5294 sizeof(pbuf)),
5295 attr_str);
5296
5297 bgp_evpn_unimport_route(bgp, afi, safi,
40381db7 5298 &rn->p, pi);
db0e1937 5299
40381db7 5300 bgp_rib_remove(rn, pi, pi->peer, afi,
60466a63 5301 safi);
db0e1937 5302 }
db0e1937
MK
5303 }
5304 }
5305 }
5306
5307 return 0;
5308}
5309
128ea8ab 5310/*
5311 * Handle del of a local MACIP.
5312 */
d62a17ae 5313int bgp_evpn_local_macip_del(struct bgp *bgp, vni_t vni, struct ethaddr *mac,
5314 struct ipaddr *ip)
128ea8ab 5315{
d62a17ae 5316 struct bgpevpn *vpn;
5317 struct prefix_evpn p;
128ea8ab 5318
d62a17ae 5319 /* Lookup VNI hash - should exist. */
5320 vpn = bgp_evpn_lookup_vni(bgp, vni);
5321 if (!vpn || !is_vni_live(vpn)) {
e50f7cfd 5322 flog_warn(EC_BGP_EVPN_VPN_VNI,
28642513 5323 "%u: VNI hash entry for VNI %u %s at MACIP DEL",
d62a17ae 5324 bgp->vrf_id, vni, vpn ? "not live" : "not found");
5325 return -1;
5326 }
128ea8ab 5327
d62a17ae 5328 /* Remove EVPN type-2 route and schedule for processing. */
5329 build_evpn_type2_prefix(&p, mac, ip);
5330 delete_evpn_route(bgp, vpn, &p);
128ea8ab 5331
d62a17ae 5332 return 0;
128ea8ab 5333}
5334
5335/*
5336 * Handle add of a local MACIP.
5337 */
d62a17ae 5338int bgp_evpn_local_macip_add(struct bgp *bgp, vni_t vni, struct ethaddr *mac,
f07e1c99 5339 struct ipaddr *ip, uint8_t flags, uint32_t seq)
128ea8ab 5340{
d62a17ae 5341 struct bgpevpn *vpn;
5342 struct prefix_evpn p;
128ea8ab 5343
d62a17ae 5344 /* Lookup VNI hash - should exist. */
5345 vpn = bgp_evpn_lookup_vni(bgp, vni);
5346 if (!vpn || !is_vni_live(vpn)) {
e50f7cfd 5347 flog_warn(EC_BGP_EVPN_VPN_VNI,
28642513 5348 "%u: VNI hash entry for VNI %u %s at MACIP ADD",
d62a17ae 5349 bgp->vrf_id, vni, vpn ? "not live" : "not found");
5350 return -1;
5351 }
128ea8ab 5352
d62a17ae 5353 /* Create EVPN type-2 route and schedule for processing. */
5354 build_evpn_type2_prefix(&p, mac, ip);
f07e1c99 5355 if (update_evpn_route(bgp, vpn, &p, flags, seq)) {
d62a17ae 5356 char buf[ETHER_ADDR_STRLEN];
5357 char buf2[INET6_ADDRSTRLEN];
128ea8ab 5358
af4c2728 5359 flog_err(
e50f7cfd 5360 EC_BGP_EVPN_ROUTE_CREATE,
ead40654 5361 "%u:Failed to create Type-2 route, VNI %u %s MAC %s IP %s (flags: 0x%x)",
1a98c087 5362 bgp->vrf_id, vpn->vni,
996c9314
LB
5363 CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY)
5364 ? "sticky gateway"
5365 : "",
d62a17ae 5366 prefix_mac2str(mac, buf, sizeof(buf)),
996c9314 5367 ipaddr2str(ip, buf2, sizeof(buf2)), flags);
d62a17ae 5368 return -1;
5369 }
128ea8ab 5370
d62a17ae 5371 return 0;
128ea8ab 5372}
5373
6a8657d0
MK
5374static void link_l2vni_hash_to_l3vni(struct hash_backet *backet,
5375 struct bgp *bgp_vrf)
5376{
0a1a07cb 5377 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
6a8657d0
MK
5378 struct bgp *bgp_def = NULL;
5379
5380 bgp_def = bgp_get_default();
5381 assert(bgp_def);
5382
6a8657d0
MK
5383 if (vpn->tenant_vrf_id == bgp_vrf->vrf_id)
5384 bgpevpn_link_to_l3vni(vpn);
5385}
5386
996c9314
LB
5387int bgp_evpn_local_l3vni_add(vni_t l3vni, vrf_id_t vrf_id, struct ethaddr *rmac,
5388 struct in_addr originator_ip, int filter)
fe1dc5a3
MK
5389{
5390 struct bgp *bgp_vrf = NULL; /* bgp VRF instance */
5391 struct bgp *bgp_def = NULL; /* default bgp instance */
f1f8b53c
MK
5392 struct listnode *node = NULL;
5393 struct bgpevpn *vpn = NULL;
fe1dc5a3
MK
5394 as_t as = 0;
5395
d846168d 5396 /* get the default instance - required to get the AS number for VRF
523cafc4 5397 * auto-creatio
5398 */
fe1dc5a3
MK
5399 bgp_def = bgp_get_default();
5400 if (!bgp_def) {
af4c2728 5401 flog_err(
e50f7cfd 5402 EC_BGP_NO_DFLT,
996c9314
LB
5403 "Cannot process L3VNI %u ADD - default BGP instance not yet created",
5404 l3vni);
fe1dc5a3
MK
5405 return -1;
5406 }
5407 as = bgp_def->as;
5408
0437e105 5409 /* if the BGP vrf instance doesn't exist - create one */
0b5131c9 5410 bgp_vrf = bgp_lookup_by_name(vrf_id_to_name(vrf_id));
fe1dc5a3
MK
5411 if (!bgp_vrf) {
5412
5413 int ret = 0;
5414
5415 ret = bgp_get(&bgp_vrf, &as, vrf_id_to_name(vrf_id),
5416 BGP_INSTANCE_TYPE_VRF);
5417 switch (ret) {
5418 case BGP_ERR_MULTIPLE_INSTANCE_NOT_SET:
e50f7cfd 5419 flog_err(EC_BGP_MULTI_INSTANCE,
1c50c1c0 5420 "'bgp multiple-instance' not present\n");
fe1dc5a3
MK
5421 return -1;
5422 case BGP_ERR_AS_MISMATCH:
e50f7cfd 5423 flog_err(EC_BGP_EVPN_AS_MISMATCH,
1c50c1c0 5424 "BGP is already running; AS is %u\n", as);
fe1dc5a3
MK
5425 return -1;
5426 case BGP_ERR_INSTANCE_MISMATCH:
e50f7cfd 5427 flog_err(EC_BGP_EVPN_INSTANCE_MISMATCH,
1c50c1c0 5428 "BGP instance name and AS number mismatch\n");
fe1dc5a3
MK
5429 return -1;
5430 }
5431
5432 /* mark as auto created */
5433 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_AUTO);
5434 }
5435
5436 /* associate with l3vni */
5437 bgp_vrf->l3vni = l3vni;
5438
5439 /* set the router mac - to be used in mac-ip routes for this vrf */
5440 memcpy(&bgp_vrf->rmac, rmac, sizeof(struct ethaddr));
5441
b67a60d2 5442 /* set the originator ip */
5443 bgp_vrf->originator_ip = originator_ip;
5444
c48d9f5f
MK
5445 /* set the right filter - are we using l3vni only for prefix routes? */
5446 if (filter)
5447 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_L3VNI_PREFIX_ROUTES_ONLY);
5448
c581d8b0
MK
5449 /* auto derive RD/RT */
5450 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD))
5451 evpn_auto_rt_import_add_for_vrf(bgp_vrf);
5452 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD))
5453 evpn_auto_rt_export_add_for_vrf(bgp_vrf);
676f83b9 5454 bgp_evpn_derive_auto_rd_for_vrf(bgp_vrf);
fe1dc5a3 5455
6a8657d0
MK
5456 /* link all corresponding l2vnis */
5457 hash_iterate(bgp_def->vnihash,
996c9314
LB
5458 (void (*)(struct hash_backet *,
5459 void *))link_l2vni_hash_to_l3vni,
6a8657d0
MK
5460 bgp_vrf);
5461
c48d9f5f
MK
5462 /* Only update all corresponding type-2 routes if we are advertising two
5463 * labels along with type-2 routes
5464 */
5465 if (!filter)
5466 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn))
5467 update_routes_for_vni(bgp_def, vpn);
fe1dc5a3 5468
06d2e8f3
MK
5469 /* advertise type-5 routes if needed */
5470 update_advertise_vrf_routes(bgp_vrf);
5471
5ba238b7
MK
5472 /* install all remote routes belonging to this l3vni into correspondng
5473 * vrf */
5474 install_routes_for_vrf(bgp_vrf);
fe1dc5a3
MK
5475
5476 return 0;
5477}
5478
996c9314 5479int bgp_evpn_local_l3vni_del(vni_t l3vni, vrf_id_t vrf_id)
fe1dc5a3
MK
5480{
5481 struct bgp *bgp_vrf = NULL; /* bgp vrf instance */
f1f8b53c
MK
5482 struct bgp *bgp_def = NULL; /* default bgp instance */
5483 struct listnode *node = NULL;
18abc1eb 5484 struct listnode *next = NULL;
f1f8b53c 5485 struct bgpevpn *vpn = NULL;
fe1dc5a3
MK
5486
5487 bgp_vrf = bgp_lookup_by_vrf_id(vrf_id);
5488 if (!bgp_vrf) {
af4c2728 5489 flog_err(
e50f7cfd 5490 EC_BGP_NO_DFLT,
996c9314
LB
5491 "Cannot process L3VNI %u Del - Could not find BGP instance",
5492 l3vni);
fe1dc5a3
MK
5493 return -1;
5494 }
5495
f1f8b53c
MK
5496 bgp_def = bgp_get_default();
5497 if (!bgp_def) {
af4c2728 5498 flog_err(
e50f7cfd 5499 EC_BGP_NO_DFLT,
996c9314
LB
5500 "Cannot process L3VNI %u Del - Could not find default BGP instance",
5501 l3vni);
f1f8b53c
MK
5502 return -1;
5503 }
5504
d846168d 5505 /* Remove remote routes from BGT VRF even if BGP_VRF_AUTO is configured,
18ee8310 5506 * bgp_delete would not remove/decrement bgp_path_info of the ip_prefix
d846168d
CS
5507 * routes. This will uninstalling the routes from zebra and decremnt the
5508 * bgp info count.
523cafc4 5509 */
d846168d 5510 uninstall_routes_for_vrf(bgp_vrf);
5ba238b7 5511
06d2e8f3
MK
5512 /* delete/withdraw all type-5 routes */
5513 delete_withdraw_vrf_routes(bgp_vrf);
5514
fe1dc5a3
MK
5515 /* remove the l3vni from vrf instance */
5516 bgp_vrf->l3vni = 0;
5517
5518 /* remove the Rmac from the BGP vrf */
5519 memset(&bgp_vrf->rmac, 0, sizeof(struct ethaddr));
5520
c581d8b0 5521 /* delete RD/RT */
1525e99f 5522 if (!list_isempty(bgp_vrf->vrf_import_rtl)) {
10ebe1ab 5523 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
5ba238b7 5524 list_delete_all_node(bgp_vrf->vrf_import_rtl);
23a06e11 5525 }
1525e99f 5526 if (!list_isempty(bgp_vrf->vrf_export_rtl)) {
5ba238b7 5527 list_delete_all_node(bgp_vrf->vrf_export_rtl);
23a06e11 5528 }
fe1dc5a3 5529
f1f8b53c 5530 /* update all corresponding local mac-ip routes */
c48d9f5f
MK
5531 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_L3VNI_PREFIX_ROUTES_ONLY)) {
5532 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn)) {
5533 UNSET_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS);
5534 update_routes_for_vni(bgp_def, vpn);
5535 }
5536 }
fe1dc5a3 5537
18abc1eb 5538 /* If any L2VNIs point to this instance, unlink them. */
5539 for (ALL_LIST_ELEMENTS(bgp_vrf->l2vnis, node, next, vpn))
5540 bgpevpn_unlink_from_l3vni(vpn);
5541
fe1dc5a3
MK
5542 /* Delete the instance if it was autocreated */
5543 if (CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_AUTO))
5544 bgp_delete(bgp_vrf);
5545
5546 return 0;
5547}
5548
128ea8ab 5549/*
5550 * Handle del of a local VNI.
5551 */
d62a17ae 5552int bgp_evpn_local_vni_del(struct bgp *bgp, vni_t vni)
128ea8ab 5553{
d62a17ae 5554 struct bgpevpn *vpn;
128ea8ab 5555
d62a17ae 5556 /* Locate VNI hash */
5557 vpn = bgp_evpn_lookup_vni(bgp, vni);
5558 if (!vpn) {
1e00627b 5559 if (bgp_debug_zebra(NULL))
ade6974d 5560 flog_warn(
e50f7cfd 5561 EC_BGP_EVPN_VPN_VNI,
ade6974d
QY
5562 "%u: VNI hash entry for VNI %u not found at DEL",
5563 bgp->vrf_id, vni);
d62a17ae 5564 return 0;
5565 }
128ea8ab 5566
d62a17ae 5567 /* Remove all local EVPN routes and schedule for processing (to
5568 * withdraw from peers).
5569 */
5570 delete_routes_for_vni(bgp, vpn);
128ea8ab 5571
db0e1937
MK
5572 /*
5573 * tunnel is no longer active, del tunnel ip address from tip_hash
5574 */
5575 bgp_tip_del(bgp, &vpn->originator_ip);
5576
d62a17ae 5577 /* Clear "live" flag and see if hash needs to be freed. */
5578 UNSET_FLAG(vpn->flags, VNI_FLAG_LIVE);
5579 if (!is_vni_configured(vpn))
5580 bgp_evpn_free(bgp, vpn);
128ea8ab 5581
d62a17ae 5582 return 0;
128ea8ab 5583}
5584
5585/*
d1911c26 5586 * Handle add (or update) of a local VNI. The VNI changes we care
5587 * about are for the local-tunnel-ip and the (tenant) VRF.
128ea8ab 5588 */
d62a17ae 5589int bgp_evpn_local_vni_add(struct bgp *bgp, vni_t vni,
996c9314 5590 struct in_addr originator_ip, vrf_id_t tenant_vrf_id)
d62a17ae 5591{
5592 struct bgpevpn *vpn;
5593 struct prefix_evpn p;
5594
d62a17ae 5595 /* Lookup VNI. If present and no change, exit. */
5596 vpn = bgp_evpn_lookup_vni(bgp, vni);
ddd16ed5 5597 if (vpn) {
29c53922 5598
d1911c26 5599 if (is_vni_live(vpn)
5600 && IPV4_ADDR_SAME(&vpn->originator_ip, &originator_ip)
5601 && vpn->tenant_vrf_id == tenant_vrf_id)
5602 /* Probably some other param has changed that we don't
5603 * care about. */
5604 return 0;
5605
5606 /* Update tenant_vrf_id if it has changed. */
6a8657d0
MK
5607 if (vpn->tenant_vrf_id != tenant_vrf_id) {
5608 bgpevpn_unlink_from_l3vni(vpn);
29c53922 5609 vpn->tenant_vrf_id = tenant_vrf_id;
6a8657d0
MK
5610 bgpevpn_link_to_l3vni(vpn);
5611 }
29c53922 5612
d1911c26 5613 /* If tunnel endpoint IP has changed, update (and delete prior
5614 * type-3 route, if needed.)
5615 */
5616 if (!IPV4_ADDR_SAME(&vpn->originator_ip, &originator_ip))
5617 handle_tunnel_ip_change(bgp, vpn, originator_ip);
d62a17ae 5618
d1911c26 5619 /* Update all routes with new endpoint IP and/or export RT
5620 * for VRFs
5621 */
5622 if (is_vni_live(vpn))
5623 update_routes_for_vni(bgp, vpn);
d62a17ae 5624 }
5625
5626 /* Create or update as appropriate. */
5627 if (!vpn) {
29c53922 5628 vpn = bgp_evpn_new(bgp, vni, originator_ip, tenant_vrf_id);
d62a17ae 5629 if (!vpn) {
af4c2728 5630 flog_err(
e50f7cfd 5631 EC_BGP_VNI,
d62a17ae 5632 "%u: Failed to allocate VNI entry for VNI %u - at Add",
5633 bgp->vrf_id, vni);
5634 return -1;
5635 }
5636 }
5637
db0e1937 5638 /* if the VNI is live already, there is nothing more to do */
ddd16ed5
MK
5639 if (is_vni_live(vpn))
5640 return 0;
5641
d62a17ae 5642 /* Mark as "live" */
5643 SET_FLAG(vpn->flags, VNI_FLAG_LIVE);
5644
db0e1937
MK
5645 /* tunnel is now active, add tunnel-ip to db */
5646 bgp_tip_add(bgp, &originator_ip);
5647
5648 /* filter routes as nexthop database has changed */
5649 bgp_filter_evpn_routes_upon_martian_nh_change(bgp);
5650
fd069644
DS
5651 /*
5652 * Create EVPN type-3 route and schedule for processing.
5653 *
5654 * RT-3 only if doing head-end replication
5655 */
5656 if (bgp->vxlan_flood_ctrl == VXLAN_FLOOD_HEAD_END_REPL) {
5657 build_evpn_type3_prefix(&p, vpn->originator_ip);
5658 if (update_evpn_route(bgp, vpn, &p, 0, 0)) {
5659 flog_err(EC_BGP_EVPN_ROUTE_CREATE,
5660 "%u: Type3 route creation failure for VNI %u",
5661 bgp->vrf_id, vni);
5662 return -1;
5663 }
d62a17ae 5664 }
5665
5666 /* If we have learnt and retained remote routes (VTEPs, MACs) for this
5667 * VNI,
5668 * install them.
5669 */
5670 install_routes_for_vni(bgp, vpn);
5671
d7d97010
MK
5672 /* If we are advertising gateway mac-ip
5673 It needs to be conveyed again to zebra */
5674 bgp_zebra_advertise_gw_macip(bgp, vpn->advertise_gw_macip, vpn->vni);
5675
d62a17ae 5676 return 0;
b18825eb 5677}
14c1a7bf 5678
50f74cf1 5679/*
5680 * bgp_evpn_local_es_del
5681 */
5682int bgp_evpn_local_es_del(struct bgp *bgp,
5683 esi_t *esi,
5684 struct ipaddr *originator_ip)
5685{
5686 char buf[ESI_STR_LEN];
5687 struct evpnes *es = NULL;
5688
5689 if (!bgp->esihash) {
e50f7cfd 5690 flog_err(EC_BGP_ES_CREATE, "%u: ESI hash not yet created",
1c50c1c0 5691 bgp->vrf_id);
50f74cf1 5692 return -1;
5693 }
5694
5695 /* Lookup ESI hash - should exist. */
5696 es = bgp_evpn_lookup_es(bgp, esi);
5697 if (!es) {
e50f7cfd 5698 flog_warn(EC_BGP_EVPN_ESI,
28642513
DS
5699 "%u: ESI hash entry for ESI %s at Local ES DEL",
5700 bgp->vrf_id, esi_to_str(esi, buf, sizeof(buf)));
50f74cf1 5701 return -1;
5702 }
5703
5704 /* Delete all local EVPN ES routes from ESI table
2bb9eff4 5705 * and schedule for processing (to withdraw from peers))
50f74cf1 5706 */
5707 delete_routes_for_es(bgp, es);
5708
5709 /* free the hash entry */
5710 bgp_evpn_es_free(bgp, es);
5711
5712 return 0;
5713}
5714
5715/*
5716 * bgp_evpn_local_es_add
5717 */
5718int bgp_evpn_local_es_add(struct bgp *bgp,
5719 esi_t *esi,
5720 struct ipaddr *originator_ip)
5721{
5722 char buf[ESI_STR_LEN];
5723 struct evpnes *es = NULL;
5724 struct prefix_evpn p;
5725
5726 if (!bgp->esihash) {
e50f7cfd 5727 flog_err(EC_BGP_ES_CREATE, "%u: ESI hash not yet created",
1c50c1c0 5728 bgp->vrf_id);
50f74cf1 5729 return -1;
5730 }
5731
5732 /* create the new es */
2bb9eff4 5733 es = bgp_evpn_lookup_es(bgp, esi);
50f74cf1 5734 if (!es) {
5735 es = bgp_evpn_es_new(bgp, esi, originator_ip);
5736 if (!es) {
af4c2728 5737 flog_err(
e50f7cfd 5738 EC_BGP_ES_CREATE,
50f74cf1 5739 "%u: Failed to allocate ES entry for ESI %s - at Local ES Add",
5740 bgp->vrf_id, esi_to_str(esi, buf, sizeof(buf)));
5741 return -1;
5742 }
5743 }
5744 UNSET_FLAG(es->flags, EVPNES_REMOTE);
5745 SET_FLAG(es->flags, EVPNES_LOCAL);
5746
5747 build_evpn_type4_prefix(&p, esi, originator_ip->ipaddr_v4);
5748 if (update_evpn_type4_route(bgp, es, &p)) {
e50f7cfd 5749 flog_err(EC_BGP_EVPN_ROUTE_CREATE,
1c50c1c0
QY
5750 "%u: Type4 route creation failure for ESI %s",
5751 bgp->vrf_id, esi_to_str(esi, buf, sizeof(buf)));
50f74cf1 5752 return -1;
5753 }
5754
5755 /* import all remote ES routes in th ES table */
5756 install_routes_for_es(bgp, es);
5757
5758 return 0;
5759}
5760
fd069644
DS
5761/*
5762 * Handle change in setting for BUM handling. The supported values
5763 * are head-end replication and dropping all BUM packets. Any change
5764 * should be registered with zebra. Also, if doing head-end replication,
5765 * need to advertise local VNIs as EVPN RT-3 wheras, if BUM packets are
5766 * to be dropped, the RT-3s must be withdrawn.
5767 */
5768void bgp_evpn_flood_control_change(struct bgp *bgp)
5769{
5770 zlog_info("L2VPN EVPN BUM handling is %s",
5771 bgp->vxlan_flood_ctrl == VXLAN_FLOOD_HEAD_END_REPL ?
5772 "Flooding" : "Flooding Disabled");
5773
5774 bgp_zebra_vxlan_flood_control(bgp, bgp->vxlan_flood_ctrl);
5775 if (bgp->vxlan_flood_ctrl == VXLAN_FLOOD_HEAD_END_REPL)
5776 hash_iterate(bgp->vnihash, create_advertise_type3, bgp);
5777 else if (bgp->vxlan_flood_ctrl == VXLAN_FLOOD_DISABLED)
5778 hash_iterate(bgp->vnihash, delete_withdraw_type3, bgp);
5779}
5780
7724c0a1 5781/*
5782 * Cleanup EVPN information on disable - Need to delete and withdraw
5783 * EVPN routes from peers.
5784 */
d62a17ae 5785void bgp_evpn_cleanup_on_disable(struct bgp *bgp)
7724c0a1 5786{
9d303b37
DL
5787 hash_iterate(bgp->vnihash, (void (*)(struct hash_backet *,
5788 void *))cleanup_vni_on_disable,
5789 bgp);
7724c0a1 5790}
5791
14c1a7bf 5792/*
5793 * Cleanup EVPN information - invoked at the time of bgpd exit or when the
5794 * BGP instance (default) is being freed.
5795 */
d62a17ae 5796void bgp_evpn_cleanup(struct bgp *bgp)
14c1a7bf 5797{
1525e99f
DS
5798 hash_iterate(bgp->vnihash,
5799 (void (*)(struct hash_backet *, void *))free_vni_entry,
5800 bgp);
5801
5802 hash_free(bgp->import_rt_hash);
d62a17ae 5803 bgp->import_rt_hash = NULL;
1525e99f
DS
5804
5805 hash_free(bgp->vrf_import_rt_hash);
10ebe1ab 5806 bgp->vrf_import_rt_hash = NULL;
1525e99f
DS
5807
5808 hash_free(bgp->vnihash);
d62a17ae 5809 bgp->vnihash = NULL;
50f74cf1 5810 if (bgp->esihash)
5811 hash_free(bgp->esihash);
5812 bgp->esihash = NULL;
1525e99f 5813
6a154c88
DL
5814 list_delete(&bgp->vrf_import_rtl);
5815 list_delete(&bgp->vrf_export_rtl);
5816 list_delete(&bgp->l2vnis);
14c1a7bf 5817}
5818
5819/*
5820 * Initialization for EVPN
5821 * Create
5822 * VNI hash table
5823 * hash for RT to VNI
14c1a7bf 5824 */
d62a17ae 5825void bgp_evpn_init(struct bgp *bgp)
5826{
5827 bgp->vnihash =
5828 hash_create(vni_hash_key_make, vni_hash_cmp, "BGP VNI Hash");
50f74cf1 5829 bgp->esihash =
5830 hash_create(esi_hash_keymake, esi_cmp,
5831 "BGP EVPN Local ESI Hash");
d62a17ae 5832 bgp->import_rt_hash =
5833 hash_create(import_rt_hash_key_make, import_rt_hash_cmp,
5834 "BGP Import RT Hash");
10ebe1ab
MK
5835 bgp->vrf_import_rt_hash =
5836 hash_create(vrf_import_rt_hash_key_make, vrf_import_rt_hash_cmp,
5837 "BGP VRF Import RT Hash");
c581d8b0
MK
5838 bgp->vrf_import_rtl = list_new();
5839 bgp->vrf_import_rtl->cmp =
5840 (int (*)(void *, void *))evpn_route_target_cmp;
987d8198 5841 bgp->vrf_import_rtl->del = evpn_xxport_delete_ecomm;
c581d8b0
MK
5842 bgp->vrf_export_rtl = list_new();
5843 bgp->vrf_export_rtl->cmp =
5844 (int (*)(void *, void *))evpn_route_target_cmp;
987d8198 5845 bgp->vrf_export_rtl->del = evpn_xxport_delete_ecomm;
6a8657d0 5846 bgp->l2vnis = list_new();
64465785 5847 bgp->l2vnis->cmp = vni_list_cmp;
85c8d83b
CS
5848 /* By default Duplicate Address Dection is enabled.
5849 * Max-moves (N) 5, detection time (M) 180
5850 * default action is warning-only
5851 * freeze action permanently freezes address,
5852 * and freeze time (auto-recovery) is disabled.
5853 */
5854 if (bgp->evpn_info) {
5855 bgp->evpn_info->dup_addr_detect = true;
5856 bgp->evpn_info->dad_time = EVPN_DAD_DEFAULT_TIME;
5857 bgp->evpn_info->dad_max_moves = EVPN_DAD_DEFAULT_MAX_MOVES;
5858 bgp->evpn_info->dad_freeze = false;
5859 bgp->evpn_info->dad_freeze_time = 0;
0b9d9cd0
CS
5860 /* Initialize zebra vxlan */
5861 bgp_zebra_dup_addr_detection(bgp);
85c8d83b 5862 }
fd069644
DS
5863
5864 /* Default BUM handling is to do head-end replication. */
5865 bgp->vxlan_flood_ctrl = VXLAN_FLOOD_HEAD_END_REPL;
14c1a7bf 5866}
10ebe1ab
MK
5867
5868void bgp_evpn_vrf_delete(struct bgp *bgp_vrf)
5869{
5870 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
5871}