]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_evpn.c
bgpd: another change to keep indent.py happy
[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"
32#include "bitfield.h"
128ea8ab 33#include "zclient.h"
7ef5a232
PG
34
35#include "bgpd/bgp_attr_evpn.h"
36#include "bgpd/bgpd.h"
37#include "bgpd/bgp_table.h"
38#include "bgpd/bgp_route.h"
39#include "bgpd/bgp_attr.h"
40#include "bgpd/bgp_mplsvpn.h"
9bedbb1e 41#include "bgpd/bgp_label.h"
7ef5a232 42#include "bgpd/bgp_evpn.h"
14c1a7bf 43#include "bgpd/bgp_evpn_private.h"
44#include "bgpd/bgp_ecommunity.h"
128ea8ab 45#include "bgpd/bgp_encap_types.h"
46#include "bgpd/bgp_debug.h"
47#include "bgpd/bgp_aspath.h"
d7d97010 48#include "bgpd/bgp_zebra.h"
db0e1937 49#include "bgpd/bgp_nexthop.h"
128ea8ab 50
51/*
52 * Definitions and external declarations.
53 */
54extern struct zclient *zclient;
55
56DEFINE_QOBJ_TYPE(bgpevpn)
57
58
59/*
60 * Static function declarations
61 */
d62a17ae 62static void delete_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
63 afi_t afi, safi_t safi, struct bgp_node *rn,
64 struct bgp_info **ri);
65static int delete_all_vni_routes(struct bgp *bgp, struct bgpevpn *vpn);
14c1a7bf 66
67/*
68 * Private functions.
69 */
70
71/*
72 * Make vni hash key.
73 */
d62a17ae 74static unsigned int vni_hash_key_make(void *p)
14c1a7bf 75{
d62a17ae 76 struct bgpevpn *vpn = p;
77 return (jhash_1word(vpn->vni, 0));
14c1a7bf 78}
79
80/*
81 * Comparison function for vni hash
82 */
d62a17ae 83static int vni_hash_cmp(const void *p1, const void *p2)
14c1a7bf 84{
d62a17ae 85 const struct bgpevpn *vpn1 = p1;
86 const struct bgpevpn *vpn2 = p2;
14c1a7bf 87
d62a17ae 88 if (!vpn1 && !vpn2)
89 return 1;
90 if (!vpn1 || !vpn2)
91 return 0;
92 return (vpn1->vni == vpn2->vni);
14c1a7bf 93}
94
10ebe1ab
MK
95/*
96 * Make vrf import route target hash key.
97 */
98static unsigned int vrf_import_rt_hash_key_make(void *p)
99{
100 struct vrf_irt_node *irt = p;
101 char *pnt = irt->rt.val;
5a1b3fb5
DS
102
103 return jhash(pnt, 8, 0x5abc1234);
10ebe1ab
MK
104}
105
106/*
107 * Comparison function for vrf import rt hash
108 */
109static int vrf_import_rt_hash_cmp(const void *p1, const void *p2)
110{
111 const struct vrf_irt_node *irt1 = p1;
112 const struct vrf_irt_node *irt2 = p2;
113
114 if (irt1 == NULL && irt2 == NULL)
115 return 1;
116
117 if (irt1 == NULL || irt2 == NULL)
118 return 0;
119
120 return (memcmp(irt1->rt.val, irt2->rt.val, ECOMMUNITY_SIZE) == 0);
121}
122
123/*
124 * Create a new vrf import_rt in default instance
125 */
126static struct vrf_irt_node *vrf_import_rt_new(struct ecommunity_val *rt)
127{
128 struct bgp *bgp_def = NULL;
129 struct vrf_irt_node *irt;
130
131 bgp_def = bgp_get_default();
132 if (!bgp_def) {
133 zlog_err("vrf import rt new - def instance not created yet");
134 return NULL;
135 }
136
137 irt = XCALLOC(MTYPE_BGP_EVPN_VRF_IMPORT_RT,
138 sizeof(struct vrf_irt_node));
139 if (!irt)
140 return NULL;
141
142 irt->rt = *rt;
143 irt->vrfs = list_new();
144
145 /* Add to hash */
146 if (!hash_get(bgp_def->vrf_import_rt_hash, irt, hash_alloc_intern)) {
147 XFREE(MTYPE_BGP_EVPN_VRF_IMPORT_RT, irt);
148 return NULL;
149 }
150
151 return irt;
152}
153
154/*
155 * Free the vrf import rt node
156 */
157static void vrf_import_rt_free(struct vrf_irt_node *irt)
158{
159 struct bgp *bgp_def = NULL;
160
161 bgp_def = bgp_get_default();
162 if (!bgp_def) {
163 zlog_err("vrf import rt free - def instance not created yet");
164 return;
165 }
166
167 hash_release(bgp_def->vrf_import_rt_hash, irt);
168 XFREE(MTYPE_BGP_EVPN_VRF_IMPORT_RT, irt);
169}
170
171/*
172 * Function to lookup Import RT node - used to map a RT to set of
173 * VNIs importing routes with that RT.
174 */
175static struct vrf_irt_node *lookup_vrf_import_rt(struct ecommunity_val *rt)
176{
177 struct bgp *bgp_def = NULL;
178 struct vrf_irt_node *irt;
179 struct vrf_irt_node tmp;
180
181 bgp_def = bgp_get_default();
182 if (!bgp_def) {
183 zlog_err("vrf import rt lookup - def instance not created yet");
184 return NULL;
185 }
186
187 memset(&tmp, 0, sizeof(struct vrf_irt_node));
188 memcpy(&tmp.rt, rt, ECOMMUNITY_SIZE);
189 irt = hash_lookup(bgp_def->vrf_import_rt_hash, &tmp);
190 return irt;
191}
192
193/*
194 * Is specified VRF present on the RT's list of "importing" VRFs?
195 */
196static int is_vrf_present_in_irt_vrfs(struct list *vrfs,
197 struct bgp *bgp_vrf)
198{
199 struct listnode *node = NULL, *nnode = NULL;
200 struct bgp *tmp_bgp_vrf = NULL;
201
202 for (ALL_LIST_ELEMENTS(vrfs, node, nnode, tmp_bgp_vrf)) {
203 if (tmp_bgp_vrf == bgp_vrf)
204 return 1;
205 }
206 return 0;
207}
208
14c1a7bf 209/*
210 * Make import route target hash key.
211 */
d62a17ae 212static unsigned int import_rt_hash_key_make(void *p)
14c1a7bf 213{
d62a17ae 214 struct irt_node *irt = p;
215 char *pnt = irt->rt.val;
5a1b3fb5
DS
216
217 return jhash(pnt, 8, 0xdeadbeef);
14c1a7bf 218}
219
220/*
221 * Comparison function for import rt hash
222 */
d62a17ae 223static int import_rt_hash_cmp(const void *p1, const void *p2)
14c1a7bf 224{
d62a17ae 225 const struct irt_node *irt1 = p1;
226 const struct irt_node *irt2 = p2;
14c1a7bf 227
d62a17ae 228 if (irt1 == NULL && irt2 == NULL)
229 return 1;
14c1a7bf 230
d62a17ae 231 if (irt1 == NULL || irt2 == NULL)
232 return 0;
14c1a7bf 233
d62a17ae 234 return (memcmp(irt1->rt.val, irt2->rt.val, ECOMMUNITY_SIZE) == 0);
14c1a7bf 235}
236
7724c0a1 237/*
128ea8ab 238 * Create a new import_rt
239 */
d62a17ae 240static struct irt_node *import_rt_new(struct bgp *bgp,
241 struct ecommunity_val *rt)
128ea8ab 242{
d62a17ae 243 struct irt_node *irt;
128ea8ab 244
d62a17ae 245 if (!bgp)
246 return NULL;
128ea8ab 247
d62a17ae 248 irt = XCALLOC(MTYPE_BGP_EVPN_IMPORT_RT, sizeof(struct irt_node));
249 if (!irt)
250 return NULL;
128ea8ab 251
d62a17ae 252 irt->rt = *rt;
253 irt->vnis = list_new();
128ea8ab 254
d62a17ae 255 /* Add to hash */
256 if (!hash_get(bgp->import_rt_hash, irt, hash_alloc_intern)) {
257 XFREE(MTYPE_BGP_EVPN_IMPORT_RT, irt);
258 return NULL;
259 }
128ea8ab 260
d62a17ae 261 return irt;
128ea8ab 262}
263
264/*
265 * Free the import rt node
7724c0a1 266 */
d62a17ae 267static void import_rt_free(struct bgp *bgp, struct irt_node *irt)
7724c0a1 268{
d62a17ae 269 hash_release(bgp->import_rt_hash, irt);
270 XFREE(MTYPE_BGP_EVPN_IMPORT_RT, irt);
7724c0a1 271}
272
14c1a7bf 273/*
128ea8ab 274 * Function to lookup Import RT node - used to map a RT to set of
275 * VNIs importing routes with that RT.
276 */
d62a17ae 277static struct irt_node *lookup_import_rt(struct bgp *bgp,
278 struct ecommunity_val *rt)
128ea8ab 279{
d62a17ae 280 struct irt_node *irt;
281 struct irt_node tmp;
128ea8ab 282
d62a17ae 283 memset(&tmp, 0, sizeof(struct irt_node));
284 memcpy(&tmp.rt, rt, ECOMMUNITY_SIZE);
285 irt = hash_lookup(bgp->import_rt_hash, &tmp);
286 return irt;
128ea8ab 287}
288
289/*
290 * Is specified VNI present on the RT's list of "importing" VNIs?
291 */
d62a17ae 292static int is_vni_present_in_irt_vnis(struct list *vnis, struct bgpevpn *vpn)
128ea8ab 293{
d62a17ae 294 struct listnode *node, *nnode;
295 struct bgpevpn *tmp_vpn;
128ea8ab 296
d62a17ae 297 for (ALL_LIST_ELEMENTS(vnis, node, nnode, tmp_vpn)) {
298 if (tmp_vpn == vpn)
299 return 1;
300 }
128ea8ab 301
d62a17ae 302 return 0;
128ea8ab 303}
304
305/*
306 * Compare Route Targets.
307 */
d62a17ae 308static int evpn_route_target_cmp(struct ecommunity *ecom1,
309 struct ecommunity *ecom2)
128ea8ab 310{
d62a17ae 311 if (ecom1 && !ecom2)
312 return -1;
128ea8ab 313
d62a17ae 314 if (!ecom1 && ecom2)
315 return 1;
128ea8ab 316
d62a17ae 317 if (!ecom1 && !ecom2)
318 return 0;
128ea8ab 319
d62a17ae 320 if (ecom1->str && !ecom2->str)
321 return -1;
128ea8ab 322
d62a17ae 323 if (!ecom1->str && ecom2->str)
324 return 1;
128ea8ab 325
d62a17ae 326 if (!ecom1->str && !ecom2->str)
327 return 0;
128ea8ab 328
d62a17ae 329 return strcmp(ecom1->str, ecom2->str);
128ea8ab 330}
331
332/*
333 * Mask off global-admin field of specified extended community (RT),
334 * just retain the local-admin field.
335 */
d62a17ae 336static inline void mask_ecom_global_admin(struct ecommunity_val *dst,
337 struct ecommunity_val *src)
128ea8ab 338{
d62a17ae 339 u_char type;
128ea8ab 340
d62a17ae 341 type = src->val[0];
342 dst->val[0] = 0;
343 if (type == ECOMMUNITY_ENCODE_AS) {
344 dst->val[2] = dst->val[3] = 0;
345 } else if (type == ECOMMUNITY_ENCODE_AS4
346 || type == ECOMMUNITY_ENCODE_IP) {
347 dst->val[2] = dst->val[3] = 0;
348 dst->val[4] = dst->val[5] = 0;
349 }
128ea8ab 350}
351
10ebe1ab
MK
352/*
353 * Map one RT to specified VRF.
354 * bgp_vrf = BGP vrf instance
355 */
356static void map_vrf_to_rt(struct bgp *bgp_vrf,
357 struct ecommunity_val *eval)
358{
359 struct vrf_irt_node *irt = NULL;
360 struct ecommunity_val eval_tmp;
361
362 /* If using "automatic" RT,
363 * we only care about the local-admin sub-field.
364 * This is to facilitate using L3VNI(VRF-VNI)
365 * as the RT for EBGP peering too.
366 */
367 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
368 if (!CHECK_FLAG(bgp_vrf->vrf_flags,
369 BGP_VRF_IMPORT_RT_CFGD))
370 mask_ecom_global_admin(&eval_tmp, eval);
371
372 irt = lookup_vrf_import_rt(&eval_tmp);
373 if (irt && irt->vrfs)
374 if (is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
375 /* Already mapped. */
376 return;
377
378 if (!irt) {
379 irt = vrf_import_rt_new(&eval_tmp);
380 assert(irt);
381 }
382
383 /* Add VRF to the list for this RT. */
384 listnode_add(irt->vrfs, bgp_vrf);
385}
386
387/*
388 * Unmap specified VRF from specified RT. If there are no other
389 * VRFs for this RT, then the RT hash is deleted.
390 * bgp_vrf: BGP VRF specific instance
391 */
392static void unmap_vrf_from_rt(struct bgp *bgp_vrf,
393 struct vrf_irt_node *irt)
394{
395 /* Delete VRF from list for this RT. */
396 listnode_delete(irt->vrfs, bgp_vrf);
397 if (!listnode_head(irt->vrfs)) {
bb7a24ab 398 list_delete_and_null(&irt->vrfs);
10ebe1ab
MK
399 vrf_import_rt_free(irt);
400 }
401}
402
128ea8ab 403/*
404 * Map one RT to specified VNI.
14c1a7bf 405 */
d62a17ae 406static void map_vni_to_rt(struct bgp *bgp, struct bgpevpn *vpn,
407 struct ecommunity_val *eval)
128ea8ab 408{
d62a17ae 409 struct irt_node *irt;
410 struct ecommunity_val eval_tmp;
128ea8ab 411
d62a17ae 412 /* If using "automatic" RT, we only care about the local-admin
413 * sub-field.
414 * This is to facilitate using VNI as the RT for EBGP peering too.
415 */
416 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
417 if (!is_import_rt_configured(vpn))
418 mask_ecom_global_admin(&eval_tmp, eval);
128ea8ab 419
d62a17ae 420 irt = lookup_import_rt(bgp, &eval_tmp);
421 if (irt && irt->vnis)
422 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
423 /* Already mapped. */
424 return;
128ea8ab 425
d62a17ae 426 if (!irt) {
427 irt = import_rt_new(bgp, &eval_tmp);
428 assert(irt);
429 }
128ea8ab 430
d62a17ae 431 /* Add VNI to the hash list for this RT. */
432 listnode_add(irt->vnis, vpn);
128ea8ab 433}
434
435/*
436 * Unmap specified VNI from specified RT. If there are no other
437 * VNIs for this RT, then the RT hash is deleted.
438 */
d62a17ae 439static void unmap_vni_from_rt(struct bgp *bgp, struct bgpevpn *vpn,
440 struct irt_node *irt)
14c1a7bf 441{
d62a17ae 442 /* Delete VNI from hash list for this RT. */
443 listnode_delete(irt->vnis, vpn);
444 if (!listnode_head(irt->vnis)) {
acdf5e25 445 list_delete_and_null(&irt->vnis);
d62a17ae 446 import_rt_free(bgp, irt);
447 }
14c1a7bf 448}
449
128ea8ab 450/*
451 * Create RT extended community automatically from passed information:
452 * of the form AS:VNI.
453 * NOTE: We use only the lower 16 bits of the AS. This is sufficient as
454 * the need is to get a RT value that will be unique across different
455 * VNIs but the same across routers (in the same AS) for a particular
456 * VNI.
457 */
c581d8b0 458static void form_auto_rt(struct bgp *bgp, vni_t vni, struct list *rtl)
128ea8ab 459{
d62a17ae 460 struct ecommunity_val eval;
461 struct ecommunity *ecomadd;
128ea8ab 462
c581d8b0 463 encode_route_target_as((bgp->as & 0xFFFF), vni, &eval);
128ea8ab 464
d62a17ae 465 ecomadd = ecommunity_new();
466 ecommunity_add_val(ecomadd, &eval);
467 listnode_add_sort(rtl, ecomadd);
128ea8ab 468}
14c1a7bf 469
470/*
128ea8ab 471 * Derive RD and RT for a VNI automatically. Invoked at the time of
472 * creation of a VNI.
473 */
d62a17ae 474static void derive_rd_rt_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 475{
d62a17ae 476 bgp_evpn_derive_auto_rd(bgp, vpn);
477 bgp_evpn_derive_auto_rt_import(bgp, vpn);
478 bgp_evpn_derive_auto_rt_export(bgp, vpn);
128ea8ab 479}
480
481/*
482 * Add (update) or delete MACIP from zebra.
14c1a7bf 483 */
d62a17ae 484static int bgp_zebra_send_remote_macip(struct bgp *bgp, struct bgpevpn *vpn,
485 struct prefix_evpn *p,
486 struct in_addr remote_vtep_ip, int add,
ead40654 487 u_char flags)
d62a17ae 488{
489 struct stream *s;
490 int ipa_len;
491 char buf1[ETHER_ADDR_STRLEN];
492 char buf2[INET6_ADDRSTRLEN];
493 char buf3[INET6_ADDRSTRLEN];
494
495 /* Check socket. */
496 if (!zclient || zclient->sock < 0)
497 return 0;
498
499 /* Don't try to register if Zebra doesn't know of this instance. */
500 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp))
501 return 0;
502
503 s = zclient->obuf;
504 stream_reset(s);
505
421bb26a
MK
506 zclient_create_header(s, add ? ZEBRA_REMOTE_MACIP_ADD
507 : ZEBRA_REMOTE_MACIP_DEL,
508 bgp->vrf_id);
d62a17ae 509 stream_putl(s, vpn->vni);
28328ea9 510 stream_put(s, &p->prefix.mac.octet, ETH_ALEN); /* Mac Addr */
d62a17ae 511 /* IP address length and IP address, if any. */
512 if (IS_EVPN_PREFIX_IPADDR_NONE(p))
513 stream_putl(s, 0);
514 else {
515 ipa_len = IS_EVPN_PREFIX_IPADDR_V4(p) ? IPV4_MAX_BYTELEN
516 : IPV6_MAX_BYTELEN;
517 stream_putl(s, ipa_len);
518 stream_put(s, &p->prefix.ip.ip.addr, ipa_len);
519 }
520 stream_put_in_addr(s, &remote_vtep_ip);
521
ead40654 522 /* TX flags - MAC sticky status and/or gateway mac */
d62a17ae 523 if (add)
ead40654 524 stream_putc(s, flags);
d62a17ae 525
526 stream_putw_at(s, 0, stream_get_endp(s));
527
528 if (bgp_debug_zebra(NULL))
ead40654 529 zlog_debug("Tx %s MACIP, VNI %u MAC %s IP %s (flags: 0x%x) remote VTEP %s",
d62a17ae 530 add ? "ADD" : "DEL", vpn->vni,
d62a17ae 531 prefix_mac2str(&p->prefix.mac, buf1, sizeof(buf1)),
532 ipaddr2str(&p->prefix.ip, buf3, sizeof(buf3)),
ead40654 533 flags,
d62a17ae 534 inet_ntop(AF_INET, &remote_vtep_ip, buf2,
535 sizeof(buf2)));
536
537 return zclient_send_message(zclient);
7ef5a232 538}
b18825eb 539
128ea8ab 540/*
541 * Add (update) or delete remote VTEP from zebra.
542 */
d62a17ae 543static int bgp_zebra_send_remote_vtep(struct bgp *bgp, struct bgpevpn *vpn,
544 struct prefix_evpn *p, int add)
128ea8ab 545{
d62a17ae 546 struct stream *s;
128ea8ab 547
d62a17ae 548 /* Check socket. */
549 if (!zclient || zclient->sock < 0)
550 return 0;
128ea8ab 551
d62a17ae 552 /* Don't try to register if Zebra doesn't know of this instance. */
553 if (!IS_BGP_INST_KNOWN_TO_ZEBRA(bgp))
554 return 0;
128ea8ab 555
d62a17ae 556 s = zclient->obuf;
557 stream_reset(s);
128ea8ab 558
421bb26a
MK
559 zclient_create_header(s, add ? ZEBRA_REMOTE_VTEP_ADD
560 : ZEBRA_REMOTE_VTEP_DEL,
561 bgp->vrf_id);
d62a17ae 562 stream_putl(s, vpn->vni);
563 if (IS_EVPN_PREFIX_IPADDR_V4(p))
564 stream_put_in_addr(s, &p->prefix.ip.ipaddr_v4);
565 else if (IS_EVPN_PREFIX_IPADDR_V6(p)) {
566 zlog_err(
567 "Bad remote IP when trying to %s remote VTEP for VNI %u",
568 add ? "ADD" : "DEL", vpn->vni);
569 return -1;
570 }
128ea8ab 571
d62a17ae 572 stream_putw_at(s, 0, stream_get_endp(s));
128ea8ab 573
d62a17ae 574 if (bgp_debug_zebra(NULL))
575 zlog_debug("Tx %s Remote VTEP, VNI %u remote VTEP %s",
576 add ? "ADD" : "DEL", vpn->vni,
577 inet_ntoa(p->prefix.ip.ipaddr_v4));
128ea8ab 578
d62a17ae 579 return zclient_send_message(zclient);
128ea8ab 580}
581
342dd0c6 582/*
583 * Build extended communities for EVPN prefix route.
584 */
585static void build_evpn_type5_route_extcomm(struct bgp *bgp_vrf,
586 struct attr *attr)
587{
588 struct ecommunity ecom_encap;
589 struct ecommunity ecom_rmac;
590 struct ecommunity_val eval;
591 struct ecommunity_val eval_rmac;
592 bgp_encap_types tnl_type;
593 struct listnode *node, *nnode;
594 struct ecommunity *ecom;
595 struct list *vrf_export_rtl = NULL;
596
597 /* Encap */
598 tnl_type = BGP_ENCAP_TYPE_VXLAN;
599 memset(&ecom_encap, 0, sizeof(ecom_encap));
600 encode_encap_extcomm(tnl_type, &eval);
601 ecom_encap.size = 1;
602 ecom_encap.val = (u_int8_t *)eval.val;
603
604 /* Add Encap */
605 attr->ecommunity = ecommunity_dup(&ecom_encap);
606
607 /* Add the export RTs for L3VNI/VRF */
608 vrf_export_rtl = bgp_vrf->vrf_export_rtl;
609 if (vrf_export_rtl && !list_isempty(vrf_export_rtl)) {
610 for (ALL_LIST_ELEMENTS(vrf_export_rtl, node, nnode, ecom))
611 attr->ecommunity = ecommunity_merge(attr->ecommunity,
612 ecom);
613 }
614
615 /* add the router mac extended community */
616 if (!is_zero_mac(&attr->rmac)) {
617 memset(&ecom_rmac, 0, sizeof(ecom_rmac));
618 encode_rmac_extcomm(&eval_rmac, &attr->rmac);
619 ecom_rmac.size = 1;
620 ecom_rmac.val = (uint8_t *)eval_rmac.val;
621 attr->ecommunity = ecommunity_merge(attr->ecommunity,
622 &ecom_rmac);
623 }
624
625 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
626}
627
128ea8ab 628/*
629 * Build extended communities for EVPN route. RT and ENCAP are
630 * applicable to all routes.
7ec156a9
MK
631 * TODO: currently kernel doesnt support ipv6 routes with ipv4 nexthops.
632 * This means that we can't do symmetric routing for ipv6 hosts routes
633 * in the same way as ipv4 host routes.
634 * We wont attach l3-vni related RTs for ipv6 routes.
635 * For now, We will only adevrtise ipv4 host routes
636 * with L3-VNI related ext-comm.
128ea8ab 637 */
7ec156a9
MK
638static void build_evpn_route_extcomm(struct bgpevpn *vpn, struct attr *attr,
639 afi_t afi)
128ea8ab 640{
d62a17ae 641 struct ecommunity ecom_encap;
642 struct ecommunity ecom_sticky;
ead40654 643 struct ecommunity ecom_default_gw;
bc59a672 644 struct ecommunity ecom_rmac;
d62a17ae 645 struct ecommunity_val eval;
646 struct ecommunity_val eval_sticky;
ead40654 647 struct ecommunity_val eval_default_gw;
bc59a672 648 struct ecommunity_val eval_rmac;
d62a17ae 649 bgp_encap_types tnl_type;
650 struct listnode *node, *nnode;
651 struct ecommunity *ecom;
652 u_int32_t seqnum;
7a3e76f1 653 struct list *vrf_export_rtl = NULL;
128ea8ab 654
d62a17ae 655 /* Encap */
656 tnl_type = BGP_ENCAP_TYPE_VXLAN;
657 memset(&ecom_encap, 0, sizeof(ecom_encap));
658 encode_encap_extcomm(tnl_type, &eval);
659 ecom_encap.size = 1;
660 ecom_encap.val = (u_int8_t *)eval.val;
128ea8ab 661
d62a17ae 662 /* Add Encap */
663 attr->ecommunity = ecommunity_dup(&ecom_encap);
128ea8ab 664
7a3e76f1 665 /* Add the export RTs for L2VNI */
d62a17ae 666 for (ALL_LIST_ELEMENTS(vpn->export_rtl, node, nnode, ecom))
667 attr->ecommunity = ecommunity_merge(attr->ecommunity, ecom);
128ea8ab 668
c48d9f5f
MK
669 /*
670 * only attach l3-vni export rts for ipv4 address family and if we are
671 * advertising both the labels in type-2 routes
523cafc4 672 */
c48d9f5f 673 if (afi == AFI_IP && CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS)) {
7ec156a9
MK
674 vrf_export_rtl = bgpevpn_get_vrf_export_rtl(vpn);
675 if (vrf_export_rtl && !list_isempty(vrf_export_rtl)) {
676 for (ALL_LIST_ELEMENTS(vrf_export_rtl, node, nnode,
677 ecom))
678 attr->ecommunity =
679 ecommunity_merge(attr->ecommunity,
680 ecom);
681 }
f1f8b53c 682 }
7a3e76f1 683
d62a17ae 684 if (attr->sticky) {
685 seqnum = 0;
686 memset(&ecom_sticky, 0, sizeof(ecom_sticky));
687 encode_mac_mobility_extcomm(1, seqnum, &eval_sticky);
688 ecom_sticky.size = 1;
689 ecom_sticky.val = (u_int8_t *)eval_sticky.val;
690 attr->ecommunity =
691 ecommunity_merge(attr->ecommunity, &ecom_sticky);
692 }
c85c03c7 693
c48d9f5f
MK
694 /*
695 * only attach l3-vni rmac for ipv4 address family and if we are
696 * advertising both the labels in type-2 routes
697 */
698 if (afi == AFI_IP && !is_zero_mac(&attr->rmac) &&
699 CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS)) {
bc59a672
MK
700 memset(&ecom_rmac, 0, sizeof(ecom_rmac));
701 encode_rmac_extcomm(&eval_rmac, &attr->rmac);
702 ecom_rmac.size = 1;
703 ecom_rmac.val = (uint8_t *)eval_rmac.val;
704 attr->ecommunity = ecommunity_merge(attr->ecommunity,
705 &ecom_rmac);
706 }
707
ead40654
MK
708 if (attr->default_gw) {
709 memset(&ecom_default_gw, 0, sizeof(ecom_default_gw));
710 encode_default_gw_extcomm(&eval_default_gw);
711 ecom_default_gw.size = 1;
712 ecom_default_gw.val = (uint8_t *)eval_default_gw.val;
713 attr->ecommunity = ecommunity_merge(attr->ecommunity,
714 &ecom_default_gw);
715 }
716
d62a17ae 717 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
128ea8ab 718}
719
720/*
721 * Add MAC mobility extended community to attribute.
722 */
d62a17ae 723static void add_mac_mobility_to_attr(u_int32_t seq_num, struct attr *attr)
724{
725 struct ecommunity ecom_tmp;
726 struct ecommunity_val eval;
421bb26a 727 u_int8_t *ecom_val_ptr;
d62a17ae 728 int i;
729 u_int8_t *pnt;
730 int type = 0;
731 int sub_type = 0;
732
733 /* Build MM */
734 encode_mac_mobility_extcomm(0, seq_num, &eval);
735
736 /* Find current MM ecommunity */
421bb26a 737 ecom_val_ptr = NULL;
d62a17ae 738
739 if (attr->ecommunity) {
740 for (i = 0; i < attr->ecommunity->size; i++) {
741 pnt = attr->ecommunity->val + (i * 8);
742 type = *pnt++;
743 sub_type = *pnt++;
744
745 if (type == ECOMMUNITY_ENCODE_EVPN
746 && sub_type
747 == ECOMMUNITY_EVPN_SUBTYPE_MACMOBILITY) {
421bb26a
MK
748 ecom_val_ptr =
749 (u_int8_t *)(attr->ecommunity->val
750 + (i * 8));
d62a17ae 751 break;
752 }
753 }
754 }
755
756 /* Update the existing MM ecommunity */
421bb26a
MK
757 if (ecom_val_ptr) {
758 memcpy(ecom_val_ptr, eval.val, sizeof(char) * ECOMMUNITY_SIZE);
d62a17ae 759 }
760 /* Add MM to existing */
761 else {
762 memset(&ecom_tmp, 0, sizeof(ecom_tmp));
763 ecom_tmp.size = 1;
764 ecom_tmp.val = (u_int8_t *)eval.val;
765
766 attr->ecommunity =
767 ecommunity_merge(attr->ecommunity, &ecom_tmp);
768 }
128ea8ab 769}
770
771/* Install EVPN route into zebra. */
d62a17ae 772static int evpn_zebra_install(struct bgp *bgp, struct bgpevpn *vpn,
773 struct prefix_evpn *p,
ead40654 774 struct in_addr remote_vtep_ip, u_char flags)
128ea8ab 775{
d62a17ae 776 int ret;
128ea8ab 777
d62a17ae 778 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
779 ret = bgp_zebra_send_remote_macip(bgp, vpn, p, remote_vtep_ip,
ead40654 780 1, flags);
d62a17ae 781 else
782 ret = bgp_zebra_send_remote_vtep(bgp, vpn, p, 1);
128ea8ab 783
d62a17ae 784 return ret;
128ea8ab 785}
786
787/* Uninstall EVPN route from zebra. */
d62a17ae 788static int evpn_zebra_uninstall(struct bgp *bgp, struct bgpevpn *vpn,
789 struct prefix_evpn *p,
790 struct in_addr remote_vtep_ip)
128ea8ab 791{
d62a17ae 792 int ret;
128ea8ab 793
d62a17ae 794 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
795 ret = bgp_zebra_send_remote_macip(bgp, vpn, p, remote_vtep_ip,
796 0, 0);
797 else
798 ret = bgp_zebra_send_remote_vtep(bgp, vpn, p, 0);
128ea8ab 799
d62a17ae 800 return ret;
128ea8ab 801}
802
803/*
804 * Due to MAC mobility, the prior "local" best route has been supplanted
805 * by a "remote" best route. The prior route has to be deleted and withdrawn
806 * from peers.
807 */
d62a17ae 808static void evpn_delete_old_local_route(struct bgp *bgp, struct bgpevpn *vpn,
809 struct bgp_node *rn,
810 struct bgp_info *old_local)
128ea8ab 811{
d62a17ae 812 struct bgp_node *global_rn;
813 struct bgp_info *ri;
814 afi_t afi = AFI_L2VPN;
815 safi_t safi = SAFI_EVPN;
128ea8ab 816
d62a17ae 817 /* Locate route node in the global EVPN routing table. Note that
818 * this table is a 2-level tree (RD-level + Prefix-level) similar to
819 * L3VPN routes.
820 */
821 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
822 (struct prefix *)&rn->p, &vpn->prd);
823 if (global_rn) {
824 /* Delete route entry in the global EVPN table. */
825 delete_evpn_route_entry(bgp, vpn, afi, safi, global_rn, &ri);
128ea8ab 826
d62a17ae 827 /* Schedule for processing - withdraws to peers happen from
828 * this table.
829 */
830 if (ri)
831 bgp_process(bgp, global_rn, afi, safi);
832 bgp_unlock_node(global_rn);
833 }
128ea8ab 834
d62a17ae 835 /* Delete route entry in the VNI route table, caller to remove. */
836 bgp_info_delete(rn, old_local);
128ea8ab 837}
838
839/*
840 * Calculate the best path for an EVPN route. Install/update best path in zebra,
841 * if appropriate.
842 */
d62a17ae 843static int evpn_route_select_install(struct bgp *bgp, struct bgpevpn *vpn,
844 struct bgp_node *rn)
845{
846 struct bgp_info *old_select, *new_select;
847 struct bgp_info_pair old_and_new;
848 afi_t afi = AFI_L2VPN;
849 safi_t safi = SAFI_EVPN;
850 int ret = 0;
ead40654 851 u_char flags = 0;
d62a17ae 852
853 /* Compute the best path. */
854 bgp_best_selection(bgp, rn, &bgp->maxpaths[afi][safi], &old_and_new,
855 afi, safi);
856 old_select = old_and_new.old;
857 new_select = old_and_new.new;
858
859 /* If the best path hasn't changed - see if there is still something to
860 * update
861 * to zebra RIB.
862 */
863 if (old_select && old_select == new_select
864 && old_select->type == ZEBRA_ROUTE_BGP
865 && old_select->sub_type == BGP_ROUTE_NORMAL
866 && !CHECK_FLAG(rn->flags, BGP_NODE_USER_CLEAR)
867 && !CHECK_FLAG(old_select->flags, BGP_INFO_ATTR_CHANGED)
868 && !bgp->addpath_tx_used[afi][safi]) {
ead40654
MK
869 if (bgp_zebra_has_route_changed(rn, old_select)) {
870 if (old_select->attr->sticky)
871 SET_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY);
872 if (old_select->attr->default_gw)
873 SET_FLAG(flags, ZEBRA_MACIP_TYPE_GW);
d62a17ae 874 ret = evpn_zebra_install(bgp, vpn,
875 (struct prefix_evpn *)&rn->p,
876 old_select->attr->nexthop,
ead40654
MK
877 flags);
878 }
d62a17ae 879 UNSET_FLAG(old_select->flags, BGP_INFO_MULTIPATH_CHG);
880 bgp_zebra_clear_route_change_flags(rn);
881 return ret;
882 }
883
884 /* If the user did a "clear" this flag will be set */
885 UNSET_FLAG(rn->flags, BGP_NODE_USER_CLEAR);
886
887 /* bestpath has changed; update relevant fields and install or uninstall
888 * into the zebra RIB.
889 */
890 if (old_select || new_select)
891 bgp_bump_version(rn);
892
893 if (old_select)
894 bgp_info_unset_flag(rn, old_select, BGP_INFO_SELECTED);
895 if (new_select) {
896 bgp_info_set_flag(rn, new_select, BGP_INFO_SELECTED);
897 bgp_info_unset_flag(rn, new_select, BGP_INFO_ATTR_CHANGED);
898 UNSET_FLAG(new_select->flags, BGP_INFO_MULTIPATH_CHG);
899 }
900
901 if (new_select && new_select->type == ZEBRA_ROUTE_BGP
902 && new_select->sub_type == BGP_ROUTE_NORMAL) {
ead40654
MK
903 flags = 0;
904 if (new_select->attr->sticky)
905 SET_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY);
906 if (new_select->attr->default_gw)
907 SET_FLAG(flags, ZEBRA_MACIP_TYPE_GW);
d62a17ae 908 ret = evpn_zebra_install(bgp, vpn, (struct prefix_evpn *)&rn->p,
909 new_select->attr->nexthop,
ead40654 910 flags);
d62a17ae 911 /* If an old best existed and it was a "local" route, the only
912 * reason
913 * it would be supplanted is due to MAC mobility procedures. So,
914 * we
915 * need to do an implicit delete and withdraw that route from
916 * peers.
917 */
918 if (old_select && old_select->peer == bgp->peer_self
919 && old_select->type == ZEBRA_ROUTE_BGP
920 && old_select->sub_type == BGP_ROUTE_STATIC)
921 evpn_delete_old_local_route(bgp, vpn, rn, old_select);
922 } else {
923 if (old_select && old_select->type == ZEBRA_ROUTE_BGP
924 && old_select->sub_type == BGP_ROUTE_NORMAL)
925 ret = evpn_zebra_uninstall(bgp, vpn,
926 (struct prefix_evpn *)&rn->p,
927 old_select->attr->nexthop);
928 }
929
930 /* Clear any route change flags. */
931 bgp_zebra_clear_route_change_flags(rn);
932
933 /* Reap old select bgp_info, if it has been removed */
934 if (old_select && CHECK_FLAG(old_select->flags, BGP_INFO_REMOVED))
935 bgp_info_reap(rn, old_select);
936
937 return ret;
128ea8ab 938}
939
ead40654
MK
940/*
941 * Return true if the local ri for this rn is of type gateway mac
942 */
943static int evpn_route_is_def_gw(struct bgp *bgp, struct bgp_node *rn)
944{
945 struct bgp_info *tmp_ri = NULL;
946 struct bgp_info *local_ri = NULL;
947
948 local_ri = NULL;
949 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next) {
950 if (tmp_ri->peer == bgp->peer_self
951 && tmp_ri->type == ZEBRA_ROUTE_BGP
952 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
953 local_ri = tmp_ri;
954 }
955
956 if (!local_ri)
957 return 0;
958
959 return local_ri->attr->default_gw;
960}
961
c85c03c7 962
963/*
964 * Return true if the local ri for this rn has sticky set
965 */
d62a17ae 966static int evpn_route_is_sticky(struct bgp *bgp, struct bgp_node *rn)
c85c03c7 967{
d62a17ae 968 struct bgp_info *tmp_ri;
969 struct bgp_info *local_ri;
c85c03c7 970
d62a17ae 971 local_ri = NULL;
972 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next) {
973 if (tmp_ri->peer == bgp->peer_self
974 && tmp_ri->type == ZEBRA_ROUTE_BGP
975 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
976 local_ri = tmp_ri;
977 }
c85c03c7 978
d62a17ae 979 if (!local_ri)
980 return 0;
c85c03c7 981
d62a17ae 982 return local_ri->attr->sticky;
c85c03c7 983}
984
342dd0c6 985static int update_evpn_type5_route_entry(struct bgp *bgp_def,
986 struct bgp *bgp_vrf, afi_t afi,
987 safi_t safi, struct bgp_node *rn,
5424b7ba 988 struct attr *attr, int *route_changed)
342dd0c6 989{
990 struct attr *attr_new = NULL;
991 struct bgp_info *ri = NULL;
992 mpls_label_t label = MPLS_INVALID_LABEL;
993 struct bgp_info *local_ri = NULL;
994 struct bgp_info *tmp_ri = NULL;
995
5424b7ba 996 *route_changed = 0;
342dd0c6 997 /* locate the local route entry if any */
998 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next) {
999 if (tmp_ri->peer == bgp_def->peer_self
1000 && tmp_ri->type == ZEBRA_ROUTE_BGP
1001 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
1002 local_ri = tmp_ri;
1003 }
1004
1005 /* create a new route entry if one doesnt exist.
523cafc4 1006 Otherwise see if route attr has changed
1007 */
342dd0c6 1008 if (!local_ri) {
1009
5424b7ba
MK
1010 /* route has changed as this is the first entry */
1011 *route_changed = 1;
1012
342dd0c6 1013 /* Add (or update) attribute to hash. */
1014 attr_new = bgp_attr_intern(attr);
1015
1016 /* create the route info from attribute */
1017 ri = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0,
1018 bgp_def->peer_self, attr_new, rn);
1019 SET_FLAG(ri->flags, BGP_INFO_VALID);
1020
b57ba6d2 1021 /* Type-5 routes advertise the L3-VNI */
342dd0c6 1022 bgp_info_extra_get(ri);
1023 vni2label(bgp_vrf->l3vni, &label);
b57ba6d2
MK
1024 memcpy(&ri->extra->label, &label, sizeof(label));
1025 ri->extra->num_labels = 1;
342dd0c6 1026
1027 /* add the route entry to route node*/
1028 bgp_info_add(rn, ri);
1029 } else {
1030
1031 tmp_ri = local_ri;
1032 if (!attrhash_cmp(tmp_ri->attr, attr)) {
5424b7ba
MK
1033
1034 /* attribute changed */
1035 *route_changed = 1;
1036
342dd0c6 1037 /* The attribute has changed. */
1038 /* Add (or update) attribute to hash. */
1039 attr_new = bgp_attr_intern(attr);
1040 bgp_info_set_flag(rn, tmp_ri, BGP_INFO_ATTR_CHANGED);
1041
1042 /* Restore route, if needed. */
1043 if (CHECK_FLAG(tmp_ri->flags, BGP_INFO_REMOVED))
1044 bgp_info_restore(rn, tmp_ri);
1045
1046 /* Unintern existing, set to new. */
1047 bgp_attr_unintern(&tmp_ri->attr);
1048 tmp_ri->attr = attr_new;
1049 tmp_ri->uptime = bgp_clock();
1050 }
1051 }
1052 return 0;
1053}
1054
1055/* update evpn type-5 route entry */
1056static int update_evpn_type5_route(struct bgp *bgp_vrf,
2f69f6d3 1057 struct prefix_evpn *evp,
1058 struct attr* src_attr)
342dd0c6 1059{
1060 afi_t afi = AFI_L2VPN;
1061 safi_t safi = SAFI_EVPN;
1062 struct attr attr;
1063 struct bgp_node *rn = NULL;
1064 struct bgp *bgp_def = NULL;
5424b7ba 1065 int route_changed = 0;
342dd0c6 1066
1067 bgp_def = bgp_get_default();
1068 if (!bgp_def)
faafdfa8 1069 return 0;
342dd0c6 1070
2f69f6d3 1071 /* Build path attribute for this route - use the source attr, if
1072 * present, else treat as locally originated.
1073 */
1074 if (src_attr)
1075 bgp_attr_dup(&attr, src_attr);
1076 else {
1077 memset(&attr, 0, sizeof(struct attr));
1078 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1079 }
1080 /* Set nexthop to ourselves and fill in the Router MAC. */
342dd0c6 1081 attr.nexthop = bgp_vrf->originator_ip;
1082 attr.mp_nexthop_global_in = bgp_vrf->originator_ip;
1083 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1084 memcpy(&attr.rmac, &bgp_vrf->rmac, sizeof(struct ethaddr));
1085
1086 /* Setup RT and encap extended community */
1087 build_evpn_type5_route_extcomm(bgp_vrf, &attr);
1088
1089 /* get the route node in global table */
1090 rn = bgp_afi_node_get(bgp_def->rib[afi][safi], afi, safi,
1091 (struct prefix *)evp,
1092 &bgp_vrf->vrf_prd);
1093 assert(rn);
1094
1095 /* create or update the route entry within the route node */
1096 update_evpn_type5_route_entry(bgp_def, bgp_vrf,
1097 afi, safi,
5424b7ba 1098 rn, &attr, &route_changed);
342dd0c6 1099
1100 /* schedule for processing and unlock node */
5424b7ba
MK
1101 if (route_changed) {
1102 bgp_process(bgp_def, rn, afi, safi);
1103 bgp_unlock_node(rn);
1104 }
342dd0c6 1105
1106 /* uninten temporary */
5ee65f6f 1107 if (!src_attr)
1108 aspath_unintern(&attr.aspath);
342dd0c6 1109 return 0;
1110}
1111
128ea8ab 1112/*
1113 * Create or update EVPN route entry. This could be in the VNI route table
1114 * or the global route table.
1115 */
d62a17ae 1116static int update_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
1117 afi_t afi, safi_t safi, struct bgp_node *rn,
1118 struct attr *attr, int add, int vni_table,
1a98c087 1119 struct bgp_info **ri, u_char flags)
d62a17ae 1120{
1121 struct bgp_info *tmp_ri;
1122 struct bgp_info *local_ri, *remote_ri;
1123 struct attr *attr_new;
b57ba6d2
MK
1124 mpls_label_t label[BGP_MAX_LABELS];
1125 u_int32_t num_labels = 1;
d62a17ae 1126 int route_change = 1;
1127 u_char sticky = 0;
b57ba6d2 1128 struct prefix_evpn *evp;
d62a17ae 1129
1130 *ri = NULL;
b57ba6d2
MK
1131 evp = (struct prefix_evpn *)&rn->p;
1132 memset(&label, 0, sizeof(label));
d62a17ae 1133
1134 /* See if this is an update of an existing route, or a new add. Also,
1135 * identify if already known from remote, and if so, the one with the
1136 * highest sequence number; this is only when adding to the VNI routing
1137 * table.
1138 */
1139 local_ri = remote_ri = NULL;
1140 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next) {
1141 if (tmp_ri->peer == bgp->peer_self
1142 && tmp_ri->type == ZEBRA_ROUTE_BGP
1143 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
1144 local_ri = tmp_ri;
1145 if (vni_table) {
1146 if (tmp_ri->type == ZEBRA_ROUTE_BGP
1147 && tmp_ri->sub_type == BGP_ROUTE_NORMAL
1148 && CHECK_FLAG(tmp_ri->flags, BGP_INFO_VALID)) {
1149 if (!remote_ri)
1150 remote_ri = tmp_ri;
1151 else if (mac_mobility_seqnum(tmp_ri->attr)
1152 > mac_mobility_seqnum(remote_ri->attr))
1153 remote_ri = tmp_ri;
1154 }
1155 }
1156 }
1157
1158 /* If route doesn't exist already, create a new one, if told to.
1159 * Otherwise act based on whether the attributes of the route have
1160 * changed or not.
1161 */
1162 if (!local_ri && !add)
1163 return 0;
1164
1165 if (!local_ri) {
1166 /* When learnt locally for the first time but already known from
1167 * remote, we have to initiate appropriate MAC mobility steps.
1168 * This
1169 * is applicable when updating the VNI routing table.
1a98c087
MK
1170 * We need to skip mobility steps for g/w macs (local mac on g/w
1171 * SVI) advertised in EVPN.
1172 * This will ensure that local routes are preferred for g/w macs
d62a17ae 1173 */
ead40654 1174 if (remote_ri && !CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_GW)) {
d62a17ae 1175 u_int32_t cur_seqnum;
1176
1177 /* Add MM extended community to route. */
1178 cur_seqnum = mac_mobility_seqnum(remote_ri->attr);
1179 add_mac_mobility_to_attr(cur_seqnum + 1, attr);
1180 }
1181
1182 /* Add (or update) attribute to hash. */
1183 attr_new = bgp_attr_intern(attr);
1184
1185 /* Extract MAC mobility sequence number, if any. */
1186 attr_new->mm_seqnum =
1187 bgp_attr_mac_mobility_seqnum(attr_new, &sticky);
1188 attr_new->sticky = sticky;
1189
1190 /* Create new route with its attribute. */
1191 tmp_ri = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0,
1192 bgp->peer_self, attr_new, rn);
1193 SET_FLAG(tmp_ri->flags, BGP_INFO_VALID);
1194 bgp_info_extra_get(tmp_ri);
1195
1196 /* The VNI goes into the 'label' field of the route */
b57ba6d2 1197 vni2label(vpn->vni, &label[0]);
c48d9f5f
MK
1198
1199 /* Type-2 routes may carry a second VNI - the L3-VNI.
1200 * Only attach second label if we are advertising two labels for
1201 * type-2 routes.
1202 */
1203 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE &&
1204 CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS)) {
b57ba6d2
MK
1205 vni_t l3vni;
1206
1207 l3vni = bgpevpn_get_l3vni(vpn);
1208 if (l3vni) {
1209 vni2label(l3vni, &label[1]);
1210 num_labels++;
1211 }
1212 }
d62a17ae 1213
b57ba6d2
MK
1214 memcpy(&tmp_ri->extra->label, label, sizeof(label));
1215 tmp_ri->extra->num_labels = num_labels;
d62a17ae 1216 bgp_info_add(rn, tmp_ri);
1217 } else {
1218 tmp_ri = local_ri;
1219 if (attrhash_cmp(tmp_ri->attr, attr)
1220 && !CHECK_FLAG(tmp_ri->flags, BGP_INFO_REMOVED))
1221 route_change = 0;
1222 else {
c48d9f5f
MK
1223 /*
1224 * The attributes have changed, type-2 routes needs to
1225 * be advertised with right labels.
1226 */
1227 vni2label(vpn->vni, &label[0]);
1228 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE &&
1229 CHECK_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS)) {
1230 vni_t l3vni;
1231
1232 l3vni = bgpevpn_get_l3vni(vpn);
1233 if (l3vni) {
1234 vni2label(l3vni, &label[1]);
1235 num_labels++;
1236 }
1237 }
1238 memcpy(&tmp_ri->extra->label, label, sizeof(label));
1239 tmp_ri->extra->num_labels = num_labels;
1240
d62a17ae 1241 /* The attribute has changed. */
1242 /* Add (or update) attribute to hash. */
1243 attr_new = bgp_attr_intern(attr);
1244 bgp_info_set_flag(rn, tmp_ri, BGP_INFO_ATTR_CHANGED);
1245
1246 /* Restore route, if needed. */
1247 if (CHECK_FLAG(tmp_ri->flags, BGP_INFO_REMOVED))
1248 bgp_info_restore(rn, tmp_ri);
1249
1250 /* Unintern existing, set to new. */
1251 bgp_attr_unintern(&tmp_ri->attr);
1252 tmp_ri->attr = attr_new;
1253 tmp_ri->uptime = bgp_clock();
1254 }
1255 }
1256
1257 /* Return back the route entry. */
1258 *ri = tmp_ri;
1259 return route_change;
128ea8ab 1260}
1261
1262/*
1263 * Create or update EVPN route (of type based on prefix) for specified VNI
1264 * and schedule for processing.
1265 */
d62a17ae 1266static int update_evpn_route(struct bgp *bgp, struct bgpevpn *vpn,
1a98c087 1267 struct prefix_evpn *p, u_char flags)
128ea8ab 1268{
d62a17ae 1269 struct bgp_node *rn;
1270 struct attr attr;
1271 struct attr *attr_new;
1272 struct bgp_info *ri;
1273 afi_t afi = AFI_L2VPN;
1274 safi_t safi = SAFI_EVPN;
1275 int route_change;
128ea8ab 1276
d62a17ae 1277 memset(&attr, 0, sizeof(struct attr));
128ea8ab 1278
d62a17ae 1279 /* Build path-attribute for this route. */
1280 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1281 attr.nexthop = vpn->originator_ip;
1282 attr.mp_nexthop_global_in = vpn->originator_ip;
1283 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
317f1fe0 1284 attr.sticky = CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY) ? 1 : 0;
ead40654 1285 attr.default_gw = CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_GW) ? 1 : 0;
be41eb68
MK
1286
1287 /* PMSI is only needed for type-3 routes */
1288 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE)
1289 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL);
1290
1291 /* router mac is only needed for type-2 and type-5 routes */
1292 if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
1293 bgpevpn_get_rmac(vpn, &attr.rmac);
a21bd7a3 1294 vni2label(vpn->vni, &(attr.label));
128ea8ab 1295
d62a17ae 1296 /* Set up RT and ENCAP extended community. */
7ec156a9
MK
1297 build_evpn_route_extcomm(vpn, &attr,
1298 IS_EVPN_PREFIX_IPADDR_V4(p) ?
1299 AFI_IP : AFI_IP6);
128ea8ab 1300
d62a17ae 1301 /* First, create (or fetch) route node within the VNI. */
1302 /* NOTE: There is no RD here. */
1303 rn = bgp_node_get(vpn->route_table, (struct prefix *)p);
128ea8ab 1304
d62a17ae 1305 /* Create or update route entry. */
1306 route_change = update_evpn_route_entry(bgp, vpn, afi, safi, rn, &attr,
1a98c087 1307 1, 1, &ri, flags);
d62a17ae 1308 assert(ri);
1309 attr_new = ri->attr;
128ea8ab 1310
d62a17ae 1311 /* Perform route selection; this is just to set the flags correctly
1312 * as local route in the VNI always wins.
1313 */
1314 evpn_route_select_install(bgp, vpn, rn);
1315 bgp_unlock_node(rn);
128ea8ab 1316
d62a17ae 1317 /* If this is a new route or some attribute has changed, export the
1318 * route to the global table. The route will be advertised to peers
1319 * from there. Note that this table is a 2-level tree (RD-level +
1320 * Prefix-level) similar to L3VPN routes.
1321 */
1322 if (route_change) {
1323 struct bgp_info *global_ri;
128ea8ab 1324
d62a17ae 1325 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
1326 (struct prefix *)p, &vpn->prd);
1327 update_evpn_route_entry(bgp, vpn, afi, safi, rn, attr_new, 1, 0,
1a98c087 1328 &global_ri, flags);
128ea8ab 1329
d62a17ae 1330 /* Schedule for processing and unlock node. */
1331 bgp_process(bgp, rn, afi, safi);
1332 bgp_unlock_node(rn);
1333 }
128ea8ab 1334
d62a17ae 1335 /* Unintern temporary. */
1336 aspath_unintern(&attr.aspath);
128ea8ab 1337
d62a17ae 1338 return 0;
128ea8ab 1339}
1340
342dd0c6 1341/* Delete EVPN type5 route entry from global table */
1342static void delete_evpn_type5_route_entry(struct bgp *bgp_def,
1343 struct bgp *bgp_vrf,
1344 afi_t afi, safi_t safi,
1345 struct bgp_node *rn,
1346 struct bgp_info **ri)
1347{
1348 struct bgp_info *tmp_ri = NULL;
1349
1350 *ri = NULL;
1351
1352 /* find the matching route entry */
1353 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next)
1354 if (tmp_ri->peer == bgp_def->peer_self
1355 && tmp_ri->type == ZEBRA_ROUTE_BGP
1356 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
1357 break;
1358
1359 *ri = tmp_ri;
1360
1361 /* Mark route for delete. */
1362 if (tmp_ri)
1363 bgp_info_delete(rn, tmp_ri);
1364}
1365
1366/* Delete EVPN type5 route */
1367static int delete_evpn_type5_route(struct bgp *bgp_vrf,
1368 struct prefix_evpn *evp)
1369{
1370 afi_t afi = AFI_L2VPN;
1371 safi_t safi = SAFI_EVPN;
1372 struct bgp_node *rn = NULL;
1373 struct bgp_info *ri = NULL;
1374 struct bgp *bgp_def = NULL; /* default bgp instance */
1375
1376 bgp_def = bgp_get_default();
1377 if (!bgp_def)
faafdfa8 1378 return 0;
342dd0c6 1379
1380 /* locate the global route entry for this type-5 prefix */
1381 rn = bgp_afi_node_lookup(bgp_def->rib[afi][safi], afi, safi,
1382 (struct prefix *)evp, &bgp_vrf->vrf_prd);
1383 if (!rn)
1384 return 0;
1385
1386 delete_evpn_type5_route_entry(bgp_def, bgp_vrf, afi, safi, rn, &ri);
1387 if (ri)
1388 bgp_process(bgp_def, rn, afi, safi);
1389 bgp_unlock_node(rn);
1390 return 0;
1391}
1392
128ea8ab 1393/*
1394 * Delete EVPN route entry. This could be in the VNI route table
1395 * or the global route table.
1396 */
d62a17ae 1397static void delete_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
1398 afi_t afi, safi_t safi, struct bgp_node *rn,
1399 struct bgp_info **ri)
128ea8ab 1400{
d62a17ae 1401 struct bgp_info *tmp_ri;
128ea8ab 1402
d62a17ae 1403 *ri = NULL;
128ea8ab 1404
d62a17ae 1405 /* Now, find matching route. */
1406 for (tmp_ri = rn->info; tmp_ri; tmp_ri = tmp_ri->next)
1407 if (tmp_ri->peer == bgp->peer_self
1408 && tmp_ri->type == ZEBRA_ROUTE_BGP
1409 && tmp_ri->sub_type == BGP_ROUTE_STATIC)
1410 break;
128ea8ab 1411
d62a17ae 1412 *ri = tmp_ri;
128ea8ab 1413
d62a17ae 1414 /* Mark route for delete. */
1415 if (tmp_ri)
1416 bgp_info_delete(rn, tmp_ri);
128ea8ab 1417}
1418
1419/*
1420 * Delete EVPN route (of type based on prefix) for specified VNI and
1421 * schedule for processing.
1422 */
d62a17ae 1423static int delete_evpn_route(struct bgp *bgp, struct bgpevpn *vpn,
1424 struct prefix_evpn *p)
1425{
1426 struct bgp_node *rn, *global_rn;
1427 struct bgp_info *ri;
1428 afi_t afi = AFI_L2VPN;
1429 safi_t safi = SAFI_EVPN;
1430
1431 /* First, locate the route node within the VNI. If it doesn't exist,
1432 * there
1433 * is nothing further to do.
1434 */
1435 /* NOTE: There is no RD here. */
1436 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)p);
1437 if (!rn)
1438 return 0;
1439
1440 /* Next, locate route node in the global EVPN routing table. Note that
1441 * this table is a 2-level tree (RD-level + Prefix-level) similar to
1442 * L3VPN routes.
1443 */
1444 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
1445 (struct prefix *)p, &vpn->prd);
1446 if (global_rn) {
1447 /* Delete route entry in the global EVPN table. */
1448 delete_evpn_route_entry(bgp, vpn, afi, safi, global_rn, &ri);
1449
1450 /* Schedule for processing - withdraws to peers happen from
1451 * this table.
1452 */
1453 if (ri)
1454 bgp_process(bgp, global_rn, afi, safi);
1455 bgp_unlock_node(global_rn);
1456 }
1457
1458 /* Delete route entry in the VNI route table. This can just be removed.
1459 */
1460 delete_evpn_route_entry(bgp, vpn, afi, safi, rn, &ri);
1461 if (ri)
1462 bgp_info_reap(rn, ri);
1463 bgp_unlock_node(rn);
1464
1465 return 0;
128ea8ab 1466}
1467
1468/*
1469 * Update all type-2 (MACIP) local routes for this VNI - these should also
1470 * be scheduled for advertise to peers.
1471 */
d62a17ae 1472static int update_all_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
1473{
1474 afi_t afi;
1475 safi_t safi;
1476 struct bgp_node *rn;
1477 struct bgp_info *ri;
1478 struct attr attr;
1479 struct attr attr_sticky;
ead40654 1480 struct attr attr_def_gw;
7ec156a9
MK
1481 struct attr attr_ip6;
1482 struct attr attr_sticky_ip6;
ead40654 1483 struct attr attr_def_gw_ip6;
d62a17ae 1484 struct attr *attr_new;
1485
1486 afi = AFI_L2VPN;
1487 safi = SAFI_EVPN;
1488 memset(&attr, 0, sizeof(struct attr));
1489 memset(&attr_sticky, 0, sizeof(struct attr));
ead40654 1490 memset(&attr_def_gw, 0, sizeof(struct attr));
7ec156a9
MK
1491 memset(&attr_ip6, 0, sizeof(struct attr));
1492 memset(&attr_sticky_ip6, 0, sizeof(struct attr));
ead40654 1493 memset(&attr_def_gw_ip6, 0, sizeof(struct attr));
d62a17ae 1494
1495 /* Build path-attribute - all type-2 routes for this VNI will share the
1496 * same path attribute.
1497 */
1498 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
1499 bgp_attr_default_set(&attr_sticky, BGP_ORIGIN_IGP);
ead40654 1500 bgp_attr_default_set(&attr_def_gw, BGP_ORIGIN_IGP);
d62a17ae 1501 attr.nexthop = vpn->originator_ip;
1502 attr.mp_nexthop_global_in = vpn->originator_ip;
1503 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
bc59a672 1504 bgpevpn_get_rmac(vpn, &attr.rmac);
d62a17ae 1505 attr_sticky.nexthop = vpn->originator_ip;
1506 attr_sticky.mp_nexthop_global_in = vpn->originator_ip;
1507 attr_sticky.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1508 attr_sticky.sticky = 1;
bc59a672 1509 bgpevpn_get_rmac(vpn, &attr_sticky.rmac);
ead40654
MK
1510 attr_def_gw.nexthop = vpn->originator_ip;
1511 attr_def_gw.mp_nexthop_global_in = vpn->originator_ip;
1512 attr_def_gw.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1513 attr_def_gw.default_gw = 1;
1514 bgpevpn_get_rmac(vpn, &attr_def_gw.rmac);
7ec156a9
MK
1515 bgp_attr_default_set(&attr_ip6, BGP_ORIGIN_IGP);
1516 bgp_attr_default_set(&attr_sticky_ip6, BGP_ORIGIN_IGP);
a6ad0a41 1517 bgp_attr_default_set(&attr_def_gw_ip6, BGP_ORIGIN_IGP);
7ec156a9
MK
1518 attr_ip6.nexthop = vpn->originator_ip;
1519 attr_ip6.mp_nexthop_global_in = vpn->originator_ip;
1520 attr_ip6.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1521 bgpevpn_get_rmac(vpn, &attr_ip6.rmac);
1522 attr_sticky_ip6.nexthop = vpn->originator_ip;
1523 attr_sticky_ip6.mp_nexthop_global_in = vpn->originator_ip;
1524 attr_sticky_ip6.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1525 attr_sticky_ip6.sticky = 1;
1526 bgpevpn_get_rmac(vpn, &attr_sticky_ip6.rmac);
ead40654
MK
1527 attr_def_gw_ip6.nexthop = vpn->originator_ip;
1528 attr_def_gw_ip6.mp_nexthop_global_in = vpn->originator_ip;
1529 attr_def_gw_ip6.mp_nexthop_len = BGP_ATTR_NHLEN_IPV4;
1530 attr_def_gw_ip6.default_gw = 1;
1531 bgpevpn_get_rmac(vpn, &attr_def_gw_ip6.rmac);
d62a17ae 1532
1533 /* Set up RT, ENCAP and sticky MAC extended community. */
7ec156a9
MK
1534 build_evpn_route_extcomm(vpn, &attr, AFI_IP);
1535 build_evpn_route_extcomm(vpn, &attr_sticky, AFI_IP);
ead40654 1536 build_evpn_route_extcomm(vpn, &attr_def_gw, AFI_IP);
7ec156a9
MK
1537 build_evpn_route_extcomm(vpn, &attr_ip6, AFI_IP6);
1538 build_evpn_route_extcomm(vpn, &attr_sticky_ip6, AFI_IP6);
ead40654 1539 build_evpn_route_extcomm(vpn, &attr_def_gw_ip6, AFI_IP);
d62a17ae 1540
1541 /* Walk this VNI's route table and update local type-2 routes. For any
1542 * routes updated, update corresponding entry in the global table too.
1543 */
1544 for (rn = bgp_table_top(vpn->route_table); rn;
1545 rn = bgp_route_next(rn)) {
1546 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
1547 struct bgp_node *rd_rn;
1548 struct bgp_info *global_ri;
1549
1550 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
1551 continue;
1552
7ec156a9
MK
1553 if (IS_EVPN_PREFIX_IPADDR_V4(evp)) {
1554 if (evpn_route_is_sticky(bgp, rn))
1555 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1556 &attr_sticky, 0, 1,
1557 &ri, 0);
ead40654
MK
1558 else if (evpn_route_is_def_gw(bgp, rn))
1559 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1560 &attr_def_gw, 0, 1,
1561 &ri, 0);
7ec156a9
MK
1562 else
1563 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1564 &attr, 0, 1, &ri, 0);
1565 } else {
1566 if (evpn_route_is_sticky(bgp, rn))
1567 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1568 &attr_sticky_ip6, 0, 1,
1569 &ri, 0);
ead40654
MK
1570 else if (evpn_route_is_def_gw(bgp, rn))
1571 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1572 &attr_def_gw_ip6, 0, 1,
1573 &ri, 0);
7ec156a9
MK
1574 else
1575 update_evpn_route_entry(bgp, vpn, afi, safi, rn,
1576 &attr_ip6, 0, 1,
1577 &ri, 0);
1578 }
d62a17ae 1579
1580 /* If a local route exists for this prefix, we need to update
1581 * the global routing table too.
1582 */
1583 if (!ri)
1584 continue;
1585
1586 /* Perform route selection; this is just to set the flags
1587 * correctly
1588 * as local route in the VNI always wins.
1589 */
1590 evpn_route_select_install(bgp, vpn, rn);
1591
1592 attr_new = ri->attr;
1593
1594 /* Update route in global routing table. */
1595 rd_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
1596 (struct prefix *)evp, &vpn->prd);
1597 assert(rd_rn);
1598 update_evpn_route_entry(bgp, vpn, afi, safi, rd_rn, attr_new, 0,
1a98c087 1599 0, &global_ri, 0);
d62a17ae 1600
1601 /* Schedule for processing and unlock node. */
1602 bgp_process(bgp, rd_rn, afi, safi);
1603 bgp_unlock_node(rd_rn);
1604 }
1605
1606 /* Unintern temporary. */
1607 aspath_unintern(&attr.aspath);
ead40654 1608 aspath_unintern(&attr_ip6.aspath);
d62a17ae 1609 aspath_unintern(&attr_sticky.aspath);
ead40654
MK
1610 aspath_unintern(&attr_sticky_ip6.aspath);
1611 aspath_unintern(&attr_def_gw.aspath);
1612 aspath_unintern(&attr_def_gw_ip6.aspath);
d62a17ae 1613
1614 return 0;
128ea8ab 1615}
1616
1617/*
1618 * Delete all type-2 (MACIP) local routes for this VNI - only from the
1619 * global routing table. These are also scheduled for withdraw from peers.
1620 */
d62a17ae 1621static int delete_global_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 1622{
d62a17ae 1623 afi_t afi;
1624 safi_t safi;
1625 struct bgp_node *rdrn, *rn;
1626 struct bgp_table *table;
1627 struct bgp_info *ri;
128ea8ab 1628
d62a17ae 1629 afi = AFI_L2VPN;
1630 safi = SAFI_EVPN;
128ea8ab 1631
d62a17ae 1632 rdrn = bgp_node_lookup(bgp->rib[afi][safi], (struct prefix *)&vpn->prd);
1633 if (rdrn && rdrn->info) {
1634 table = (struct bgp_table *)rdrn->info;
1635 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
1636 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
128ea8ab 1637
d62a17ae 1638 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
1639 continue;
128ea8ab 1640
d62a17ae 1641 delete_evpn_route_entry(bgp, vpn, afi, safi, rn, &ri);
1642 if (ri)
1643 bgp_process(bgp, rn, afi, safi);
1644 }
1645 }
128ea8ab 1646
d62a17ae 1647 /* Unlock RD node. */
1648 if (rdrn)
1649 bgp_unlock_node(rdrn);
128ea8ab 1650
d62a17ae 1651 return 0;
128ea8ab 1652}
1653
1654/*
1655 * Delete all type-2 (MACIP) local routes for this VNI - from the global
1656 * table as well as the per-VNI route table.
1657 */
d62a17ae 1658static int delete_all_type2_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 1659{
d62a17ae 1660 afi_t afi;
1661 safi_t safi;
1662 struct bgp_node *rn;
1663 struct bgp_info *ri;
128ea8ab 1664
d62a17ae 1665 afi = AFI_L2VPN;
1666 safi = SAFI_EVPN;
128ea8ab 1667
d62a17ae 1668 /* First, walk the global route table for this VNI's type-2 local
1669 * routes.
1670 * EVPN routes are a 2-level table, first get the RD table.
1671 */
1672 delete_global_type2_routes(bgp, vpn);
128ea8ab 1673
d62a17ae 1674 /* Next, walk this VNI's route table and delete local type-2 routes. */
1675 for (rn = bgp_table_top(vpn->route_table); rn;
1676 rn = bgp_route_next(rn)) {
1677 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
128ea8ab 1678
d62a17ae 1679 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
1680 continue;
128ea8ab 1681
d62a17ae 1682 delete_evpn_route_entry(bgp, vpn, afi, safi, rn, &ri);
128ea8ab 1683
d62a17ae 1684 /* Route entry in local table gets deleted immediately. */
1685 if (ri)
1686 bgp_info_reap(rn, ri);
1687 }
128ea8ab 1688
d62a17ae 1689 return 0;
128ea8ab 1690}
1691
1692/*
1693 * Delete all routes in the per-VNI route table.
1694 */
d62a17ae 1695static int delete_all_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 1696{
d62a17ae 1697 struct bgp_node *rn;
1698 struct bgp_info *ri, *nextri;
128ea8ab 1699
d62a17ae 1700 /* Walk this VNI's route table and delete all routes. */
1701 for (rn = bgp_table_top(vpn->route_table); rn;
1702 rn = bgp_route_next(rn)) {
1703 for (ri = rn->info; (ri != NULL) && (nextri = ri->next, 1);
1704 ri = nextri) {
1705 bgp_info_delete(rn, ri);
1706 bgp_info_reap(rn, ri);
1707 }
1708 }
128ea8ab 1709
d62a17ae 1710 return 0;
128ea8ab 1711}
1712
1713/*
1714 * Update (and advertise) local routes for a VNI. Invoked upon the VNI
1715 * export RT getting modified or change to tunnel IP. Note that these
1716 * situations need the route in the per-VNI table as well as the global
1717 * table to be updated (as attributes change).
1718 */
d62a17ae 1719static int update_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 1720{
d62a17ae 1721 int ret;
1722 struct prefix_evpn p;
128ea8ab 1723
d62a17ae 1724 /* Update and advertise the type-3 route (only one) followed by the
1725 * locally learnt type-2 routes (MACIP) - for this VNI.
1726 */
1727 build_evpn_type3_prefix(&p, vpn->originator_ip);
1728 ret = update_evpn_route(bgp, vpn, &p, 0);
1729 if (ret)
1730 return ret;
128ea8ab 1731
d62a17ae 1732 return update_all_type2_routes(bgp, vpn);
128ea8ab 1733}
1734
1735/*
1736 * Delete (and withdraw) local routes for specified VNI from the global
1737 * table and per-VNI table. After this, remove all other routes from
1738 * the per-VNI table. Invoked upon the VNI being deleted or EVPN
1739 * (advertise-all-vni) being disabled.
1740 */
d62a17ae 1741static int delete_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 1742{
d62a17ae 1743 int ret;
1744 struct prefix_evpn p;
128ea8ab 1745
d62a17ae 1746 /* Delete and withdraw locally learnt type-2 routes (MACIP)
1747 * followed by type-3 routes (only one) - for this VNI.
1748 */
1749 ret = delete_all_type2_routes(bgp, vpn);
1750 if (ret)
1751 return ret;
128ea8ab 1752
d62a17ae 1753 build_evpn_type3_prefix(&p, vpn->originator_ip);
1754 ret = delete_evpn_route(bgp, vpn, &p);
1755 if (ret)
1756 return ret;
128ea8ab 1757
d62a17ae 1758 /* Delete all routes from the per-VNI table. */
1759 return delete_all_vni_routes(bgp, vpn);
128ea8ab 1760}
1761
1762/*
d1911c26 1763 * There is a tunnel endpoint IP address change for this VNI, delete
1764 * prior type-3 route (if needed) and update.
1765 * Note: Route re-advertisement happens elsewhere after other processing
1766 * other changes.
128ea8ab 1767 */
d62a17ae 1768static int handle_tunnel_ip_change(struct bgp *bgp, struct bgpevpn *vpn,
1769 struct in_addr originator_ip)
128ea8ab 1770{
d62a17ae 1771 struct prefix_evpn p;
128ea8ab 1772
ddd16ed5
MK
1773 /* If VNI is not live, we only need to update the originator ip */
1774 if (!is_vni_live(vpn)) {
1775 vpn->originator_ip = originator_ip;
1776 return 0;
1777 }
1778
db0e1937
MK
1779 /* Update the tunnel-ip hash */
1780 bgp_tip_del(bgp, &vpn->originator_ip);
1781 bgp_tip_add(bgp, &originator_ip);
1782
1783 /* filter routes as martian nexthop db has changed */
1784 bgp_filter_evpn_routes_upon_martian_nh_change(bgp);
1785
d62a17ae 1786 /* Need to withdraw type-3 route as the originator IP is part
1787 * of the key.
1788 */
1789 build_evpn_type3_prefix(&p, vpn->originator_ip);
1790 delete_evpn_route(bgp, vpn, &p);
128ea8ab 1791
d62a17ae 1792 /* Update the tunnel IP and re-advertise all routes for this VNI. */
1793 vpn->originator_ip = originator_ip;
d1911c26 1794 return 0;
128ea8ab 1795}
1796
d3135ba3 1797/*
1798 * Install route entry into the VRF routing table and invoke route selection.
1799 */
1800static int install_evpn_route_entry_in_vrf(struct bgp *bgp_vrf,
1801 struct prefix_evpn *evp,
1802 struct bgp_info *parent_ri)
1803{
1804 struct bgp_node *rn;
1805 struct bgp_info *ri;
1806 struct attr *attr_new;
c4edf708 1807 int ret = 0;
d3135ba3 1808 struct prefix p;
1809 struct prefix *pp = &p;
1810 afi_t afi = 0;
1811 safi_t safi = 0;
1eb88002
MK
1812 char buf[PREFIX_STRLEN];
1813 char buf1[PREFIX_STRLEN];
d3135ba3 1814
1815 memset(pp, 0, sizeof(struct prefix));
90264d64
MK
1816 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
1817 ip_prefix_from_type2_prefix(evp, pp);
523cafc4 1818 else if (evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE)
90264d64 1819 ip_prefix_from_type5_prefix(evp, pp);
d3135ba3 1820
1eb88002
MK
1821 if (bgp_debug_zebra(NULL)) {
1822 zlog_debug("installing evpn prefix %s as ip prefix %s in vrf %s",
1823 prefix2str(evp, buf, sizeof(buf)),
1824 prefix2str(pp, buf1, sizeof(buf)),
1825 vrf_id_to_name(bgp_vrf->vrf_id));
1826 }
1827
d3135ba3 1828 /* Create (or fetch) route within the VRF. */
1829 /* NOTE: There is no RD here. */
1830 if (IS_EVPN_PREFIX_IPADDR_V4(evp)) {
1831 afi = AFI_IP;
1832 safi = SAFI_UNICAST;
1833 rn = bgp_node_get(bgp_vrf->rib[afi][safi], pp);
1834 } else if (IS_EVPN_PREFIX_IPADDR_V6(evp)) {
1835 afi = AFI_IP6;
1836 safi = SAFI_UNICAST;
1837 rn = bgp_node_get(bgp_vrf->rib[afi][safi], pp);
1838 } else
1839 return 0;
1840
1841 /* Check if route entry is already present. */
1842 for (ri = rn->info; ri; ri = ri->next)
1843 if (ri->extra
1844 && (struct bgp_info *)ri->extra->parent == parent_ri)
1845 break;
1846
1847 if (!ri) {
1848 /* Add (or update) attribute to hash. */
1849 attr_new = bgp_attr_intern(parent_ri->attr);
1850
1851 /* Create new route with its attribute. */
1852 ri = info_make(parent_ri->type, parent_ri->sub_type, 0,
1853 parent_ri->peer, attr_new, rn);
1854 SET_FLAG(ri->flags, BGP_INFO_VALID);
1855 bgp_info_extra_get(ri);
1856 ri->extra->parent = parent_ri;
b57ba6d2 1857 if (parent_ri->extra) {
d3135ba3 1858 memcpy(&ri->extra->label, &parent_ri->extra->label,
b57ba6d2
MK
1859 sizeof(ri->extra->label));
1860 ri->extra->num_labels = parent_ri->extra->num_labels;
1861 }
d3135ba3 1862 bgp_info_add(rn, ri);
1863 } else {
1864 if (attrhash_cmp(ri->attr, parent_ri->attr)
1865 && !CHECK_FLAG(ri->flags, BGP_INFO_REMOVED)) {
1866 bgp_unlock_node(rn);
1867 return 0;
1868 }
1869 /* The attribute has changed. */
1870 /* Add (or update) attribute to hash. */
1871 attr_new = bgp_attr_intern(parent_ri->attr);
1872
1873 /* Restore route, if needed. */
1874 if (CHECK_FLAG(ri->flags, BGP_INFO_REMOVED))
1875 bgp_info_restore(rn, ri);
1876
1877 /* Mark if nexthop has changed. */
1878 if (!IPV4_ADDR_SAME(&ri->attr->nexthop, &attr_new->nexthop))
1879 SET_FLAG(ri->flags, BGP_INFO_IGP_CHANGED);
1880
1881 /* Unintern existing, set to new. */
1882 bgp_attr_unintern(&ri->attr);
1883 ri->attr = attr_new;
1884 ri->uptime = bgp_clock();
1885 }
1886
1887 /* Perform route selection and update zebra, if required. */
1eb88002 1888 bgp_process(bgp_vrf, rn, afi, safi);
d3135ba3 1889
1890 return ret;
1891}
1892
128ea8ab 1893/*
1894 * Install route entry into the VNI routing table and invoke route selection.
1895 */
d62a17ae 1896static int install_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
1897 struct prefix_evpn *p,
1898 struct bgp_info *parent_ri)
1899{
1900 struct bgp_node *rn;
1901 struct bgp_info *ri;
1902 struct attr *attr_new;
1903 int ret;
1904
1905 /* Create (or fetch) route within the VNI. */
1906 /* NOTE: There is no RD here. */
1907 rn = bgp_node_get(vpn->route_table, (struct prefix *)p);
1908
1909 /* Check if route entry is already present. */
1910 for (ri = rn->info; ri; ri = ri->next)
1911 if (ri->extra
1912 && (struct bgp_info *)ri->extra->parent == parent_ri)
1913 break;
1914
1915 if (!ri) {
1916 /* Add (or update) attribute to hash. */
1917 attr_new = bgp_attr_intern(parent_ri->attr);
1918
1919 /* Create new route with its attribute. */
1920 ri = info_make(parent_ri->type, parent_ri->sub_type, 0,
1921 parent_ri->peer, attr_new, rn);
1922 SET_FLAG(ri->flags, BGP_INFO_VALID);
1923 bgp_info_extra_get(ri);
1924 ri->extra->parent = parent_ri;
b57ba6d2 1925 if (parent_ri->extra) {
d62a17ae 1926 memcpy(&ri->extra->label, &parent_ri->extra->label,
b57ba6d2
MK
1927 sizeof(ri->extra->label));
1928 ri->extra->num_labels = parent_ri->extra->num_labels;
1929 }
d62a17ae 1930 bgp_info_add(rn, ri);
1931 } else {
1932 if (attrhash_cmp(ri->attr, parent_ri->attr)
1933 && !CHECK_FLAG(ri->flags, BGP_INFO_REMOVED)) {
1934 bgp_unlock_node(rn);
1935 return 0;
1936 }
1937 /* The attribute has changed. */
1938 /* Add (or update) attribute to hash. */
1939 attr_new = bgp_attr_intern(parent_ri->attr);
1940
1941 /* Restore route, if needed. */
1942 if (CHECK_FLAG(ri->flags, BGP_INFO_REMOVED))
1943 bgp_info_restore(rn, ri);
1944
1945 /* Mark if nexthop has changed. */
1946 if (!IPV4_ADDR_SAME(&ri->attr->nexthop, &attr_new->nexthop))
1947 SET_FLAG(ri->flags, BGP_INFO_IGP_CHANGED);
1948
1949 /* Unintern existing, set to new. */
1950 bgp_attr_unintern(&ri->attr);
1951 ri->attr = attr_new;
1952 ri->uptime = bgp_clock();
1953 }
1954
1955 /* Perform route selection and update zebra, if required. */
1956 ret = evpn_route_select_install(bgp, vpn, rn);
1957
1958 return ret;
128ea8ab 1959}
1960
d3135ba3 1961/*
1962 * Uninstall route entry from the VRF routing table and send message
1963 * to zebra, if appropriate.
1964 */
1965static int uninstall_evpn_route_entry_in_vrf(struct bgp *bgp_vrf,
1966 struct prefix_evpn *evp,
1967 struct bgp_info *parent_ri)
1968{
1969 struct bgp_node *rn;
1970 struct bgp_info *ri;
c4edf708 1971 int ret = 0;
d3135ba3 1972 struct prefix p;
1973 struct prefix *pp = &p;
1974 afi_t afi = 0;
1975 safi_t safi = 0;
1eb88002
MK
1976 char buf[PREFIX_STRLEN];
1977 char buf1[PREFIX_STRLEN];
d3135ba3 1978
1979 memset(pp, 0, sizeof(struct prefix));
42cb44f2
MK
1980 if (evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE)
1981 ip_prefix_from_type2_prefix(evp, pp);
655b04d1 1982 else if (evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE)
42cb44f2 1983 ip_prefix_from_type5_prefix(evp, pp);
d3135ba3 1984
1eb88002 1985 if (bgp_debug_zebra(NULL)) {
30a30f57 1986 zlog_debug("uninstalling evpn prefix %s as ip prefix %s in vrf %s",
1eb88002
MK
1987 prefix2str(evp, buf, sizeof(buf)),
1988 prefix2str(pp, buf1, sizeof(buf)),
1989 vrf_id_to_name(bgp_vrf->vrf_id));
1990 }
1991
d3135ba3 1992 /* Locate route within the VRF. */
1993 /* NOTE: There is no RD here. */
1994 if (IS_EVPN_PREFIX_IPADDR_V4(evp)) {
1995 afi = AFI_IP;
1996 safi = SAFI_UNICAST;
1997 rn = bgp_node_lookup(bgp_vrf->rib[afi][safi], pp);
1998 } else {
1999 afi = AFI_IP6;
2000 safi = SAFI_UNICAST;
2001 rn = bgp_node_lookup(bgp_vrf->rib[afi][safi], pp);
2002 }
2003
2004 if (!rn)
2005 return 0;
2006
2007 /* Find matching route entry. */
2008 for (ri = rn->info; ri; ri = ri->next)
2009 if (ri->extra
2010 && (struct bgp_info *)ri->extra->parent == parent_ri)
2011 break;
2012
2013 if (!ri)
2014 return 0;
2015
2016 /* Mark entry for deletion */
2017 bgp_info_delete(rn, ri);
2018
2019 /* Perform route selection and update zebra, if required. */
1eb88002 2020 bgp_process(bgp_vrf, rn, afi, safi);
d3135ba3 2021
2022 /* Unlock route node. */
2023 bgp_unlock_node(rn);
2024
2025 return ret;
2026}
2027
128ea8ab 2028/*
2029 * Uninstall route entry from the VNI routing table and send message
2030 * to zebra, if appropriate.
2031 */
d62a17ae 2032static int uninstall_evpn_route_entry(struct bgp *bgp, struct bgpevpn *vpn,
2033 struct prefix_evpn *p,
2034 struct bgp_info *parent_ri)
128ea8ab 2035{
d62a17ae 2036 struct bgp_node *rn;
2037 struct bgp_info *ri;
2038 int ret;
128ea8ab 2039
d62a17ae 2040 /* Locate route within the VNI. */
2041 /* NOTE: There is no RD here. */
2042 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)p);
2043 if (!rn)
2044 return 0;
128ea8ab 2045
d62a17ae 2046 /* Find matching route entry. */
2047 for (ri = rn->info; ri; ri = ri->next)
2048 if (ri->extra
2049 && (struct bgp_info *)ri->extra->parent == parent_ri)
2050 break;
128ea8ab 2051
d62a17ae 2052 if (!ri)
2053 return 0;
128ea8ab 2054
d62a17ae 2055 /* Mark entry for deletion */
2056 bgp_info_delete(rn, ri);
128ea8ab 2057
d62a17ae 2058 /* Perform route selection and update zebra, if required. */
2059 ret = evpn_route_select_install(bgp, vpn, rn);
128ea8ab 2060
d62a17ae 2061 /* Unlock route node. */
2062 bgp_unlock_node(rn);
128ea8ab 2063
d62a17ae 2064 return ret;
128ea8ab 2065}
2066
5ba238b7
MK
2067/*
2068 * Given a route entry and a VRF, see if this route entry should be
2069 * imported into the VRF i.e., RTs match.
2070 */
2071static int is_route_matching_for_vrf(struct bgp *bgp_vrf,
2072 struct bgp_info *ri)
2073{
2074 struct attr *attr = ri->attr;
2075 struct ecommunity *ecom;
2076 int i;
2077
2078 assert(attr);
2079 /* Route should have valid RT to be even considered. */
2080 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
2081 return 0;
2082
2083 ecom = attr->ecommunity;
2084 if (!ecom || !ecom->size)
2085 return 0;
2086
2087 /* For each extended community RT, see if it matches this VNI. If any RT
2088 * matches, we're done.
2089 */
2090 for (i = 0; i < ecom->size; i++) {
2091 u_char *pnt;
2092 u_char type, sub_type;
2093 struct ecommunity_val *eval;
2094 struct ecommunity_val eval_tmp;
2095 struct vrf_irt_node *irt;
2096
2097 /* Only deal with RTs */
2098 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
2099 eval = (struct ecommunity_val *)(ecom->val
2100 + (i * ECOMMUNITY_SIZE));
2101 type = *pnt++;
2102 sub_type = *pnt++;
2103 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
2104 continue;
2105
2106 /* See if this RT matches specified VNIs import RTs */
2107 irt = lookup_vrf_import_rt(eval);
2108 if (irt && irt->vrfs)
2109 if (is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
2110 return 1;
2111
2112 /* Also check for non-exact match. In this, we mask out the AS
2113 * and
2114 * only check on the local-admin sub-field. This is to
2115 * facilitate using
2116 * VNI as the RT for EBGP peering too.
2117 */
2118 irt = NULL;
2119 if (type == ECOMMUNITY_ENCODE_AS
2120 || type == ECOMMUNITY_ENCODE_AS4
2121 || type == ECOMMUNITY_ENCODE_IP) {
2122 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
2123 mask_ecom_global_admin(&eval_tmp, eval);
2124 irt = lookup_vrf_import_rt(&eval_tmp);
2125 }
2126 if (irt && irt->vrfs)
2127 if (is_vrf_present_in_irt_vrfs(irt->vrfs, bgp_vrf))
2128 return 1;
2129 }
2130
2131 return 0;
2132}
2133
128ea8ab 2134/*
2135 * Given a route entry and a VNI, see if this route entry should be
2136 * imported into the VNI i.e., RTs match.
2137 */
d62a17ae 2138static int is_route_matching_for_vni(struct bgp *bgp, struct bgpevpn *vpn,
2139 struct bgp_info *ri)
2140{
2141 struct attr *attr = ri->attr;
2142 struct ecommunity *ecom;
2143 int i;
2144
2145 assert(attr);
2146 /* Route should have valid RT to be even considered. */
2147 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
2148 return 0;
2149
2150 ecom = attr->ecommunity;
2151 if (!ecom || !ecom->size)
2152 return 0;
2153
2154 /* For each extended community RT, see if it matches this VNI. If any RT
2155 * matches, we're done.
2156 */
2157 for (i = 0; i < ecom->size; i++) {
2158 u_char *pnt;
2159 u_char type, sub_type;
2160 struct ecommunity_val *eval;
2161 struct ecommunity_val eval_tmp;
2162 struct irt_node *irt;
2163
2164 /* Only deal with RTs */
2165 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
2166 eval = (struct ecommunity_val *)(ecom->val
2167 + (i * ECOMMUNITY_SIZE));
2168 type = *pnt++;
2169 sub_type = *pnt++;
2170 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
2171 continue;
2172
2173 /* See if this RT matches specified VNIs import RTs */
2174 irt = lookup_import_rt(bgp, eval);
2175 if (irt && irt->vnis)
2176 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
2177 return 1;
2178
2179 /* Also check for non-exact match. In this, we mask out the AS
2180 * and
2181 * only check on the local-admin sub-field. This is to
2182 * facilitate using
2183 * VNI as the RT for EBGP peering too.
2184 */
2185 irt = NULL;
2186 if (type == ECOMMUNITY_ENCODE_AS
2187 || type == ECOMMUNITY_ENCODE_AS4
2188 || type == ECOMMUNITY_ENCODE_IP) {
2189 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
2190 mask_ecom_global_admin(&eval_tmp, eval);
2191 irt = lookup_import_rt(bgp, &eval_tmp);
2192 }
2193 if (irt && irt->vnis)
2194 if (is_vni_present_in_irt_vnis(irt->vnis, vpn))
2195 return 1;
2196 }
2197
2198 return 0;
128ea8ab 2199}
2200
5ba238b7
MK
2201/*
2202 * Install or uninstall mac-ip routes are appropriate for this
2203 * particular VRF.
2204 */
2205static int install_uninstall_routes_for_vrf(struct bgp *bgp_vrf,
2206 int install)
2207{
2208 afi_t afi;
2209 safi_t safi;
2210 struct bgp_node *rd_rn, *rn;
2211 struct bgp_table *table;
2212 struct bgp_info *ri;
2213 int ret;
2214 char buf[PREFIX_STRLEN];
2215 struct bgp *bgp_def = NULL;
2216
2217 afi = AFI_L2VPN;
2218 safi = SAFI_EVPN;
2219 bgp_def = bgp_get_default();
2220 if (!bgp_def)
2221 return -1;
2222
2223 /* Walk entire global routing table and evaluate routes which could be
2224 * imported into this VRF. Note that we need to loop through all global
2225 * routes to determine which route matches the import rt on vrf
2226 */
2227 for (rd_rn = bgp_table_top(bgp_def->rib[afi][safi]); rd_rn;
2228 rd_rn = bgp_route_next(rd_rn)) {
2229 table = (struct bgp_table *)(rd_rn->info);
2230 if (!table)
2231 continue;
2232
2233 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2234 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2235
1eb88002 2236 /* if not mac-ip route skip this route */
42cb44f2
MK
2237 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE ||
2238 evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE))
5ba238b7
MK
2239 continue;
2240
1eb88002
MK
2241 /* if not a mac+ip route skip this route */
2242 if (!(IS_EVPN_PREFIX_IPADDR_V4(evp) ||
2243 IS_EVPN_PREFIX_IPADDR_V6(evp)))
2244 continue;
2245
5ba238b7
MK
2246 for (ri = rn->info; ri; ri = ri->next) {
2247 /* Consider "valid" remote routes applicable for
523cafc4 2248 * this VRF.
2249 */
5ba238b7
MK
2250 if (!(CHECK_FLAG(ri->flags, BGP_INFO_VALID)
2251 && ri->type == ZEBRA_ROUTE_BGP
2252 && ri->sub_type == BGP_ROUTE_NORMAL))
2253 continue;
2254
2255 if (is_route_matching_for_vrf(bgp_vrf, ri)) {
2256 if (install)
2257 ret =
2258 install_evpn_route_entry_in_vrf(
2259 bgp_vrf, evp, ri);
2260 else
2261 ret =
2262 uninstall_evpn_route_entry_in_vrf(
2263 bgp_vrf, evp, ri);
2264
2265 if (ret) {
2266 zlog_err(
2267 "Failed to %s EVPN %s route in VRF %s",
2268 install ? "install"
2269 : "uninstall",
2270 prefix2str(evp, buf,
2271 sizeof(buf)),
2272 vrf_id_to_name(bgp_vrf->vrf_id));
2273 return ret;
2274 }
2275 }
2276 }
2277 }
2278 }
2279
2280 return 0;
2281}
2282
128ea8ab 2283/*
2284 * Install or uninstall routes of specified type that are appropriate for this
2285 * particular VNI.
2286 */
d62a17ae 2287static int install_uninstall_routes_for_vni(struct bgp *bgp,
2288 struct bgpevpn *vpn,
2289 bgp_evpn_route_type rtype,
2290 int install)
2291{
0291c246
MK
2292 afi_t afi;
2293 safi_t safi;
2294 struct bgp_node *rd_rn, *rn;
2295 struct bgp_table *table;
2296 struct bgp_info *ri;
2297 int ret;
d62a17ae 2298
2299 afi = AFI_L2VPN;
2300 safi = SAFI_EVPN;
2301
2302 /* Walk entire global routing table and evaluate routes which could be
2303 * imported into this VPN. Note that we cannot just look at the routes
2304 * for
2305 * the VNI's RD - remote routes applicable for this VNI could have any
2306 * RD.
2307 */
2308 /* EVPN routes are a 2-level table. */
2309 for (rd_rn = bgp_table_top(bgp->rib[afi][safi]); rd_rn;
2310 rd_rn = bgp_route_next(rd_rn)) {
2311 table = (struct bgp_table *)(rd_rn->info);
2312 if (!table)
2313 continue;
2314
2315 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2316 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2317
2318 if (evp->prefix.route_type != rtype)
2319 continue;
2320
2321 for (ri = rn->info; ri; ri = ri->next) {
2322 /* Consider "valid" remote routes applicable for
2323 * this VNI. */
2324 if (!(CHECK_FLAG(ri->flags, BGP_INFO_VALID)
2325 && ri->type == ZEBRA_ROUTE_BGP
2326 && ri->sub_type == BGP_ROUTE_NORMAL))
2327 continue;
2328
2329 if (is_route_matching_for_vni(bgp, vpn, ri)) {
2330 if (install)
2331 ret = install_evpn_route_entry(
60466a63 2332 bgp, vpn, evp, ri);
d62a17ae 2333 else
2334 ret = uninstall_evpn_route_entry(
2335 bgp, vpn, evp, ri);
2336
2337 if (ret) {
2338 zlog_err(
2339 "%u: Failed to %s EVPN %s route in VNI %u",
2340 bgp->vrf_id,
2341 install ? "install"
2342 : "uninstall",
2343 rtype == BGP_EVPN_MAC_IP_ROUTE
2344 ? "MACIP"
2345 : "IMET",
2346 vpn->vni);
2347 return ret;
2348 }
2349 }
2350 }
2351 }
2352 }
2353
2354 return 0;
128ea8ab 2355}
2356
5ba238b7 2357/* Install any existing remote routes applicable for this VRF into VRF RIB. This
523cafc4 2358 * is invoked upon l3vni-add or l3vni import rt change
2359 */
5ba238b7
MK
2360static int install_routes_for_vrf(struct bgp *bgp_vrf)
2361{
2362 install_uninstall_routes_for_vrf(bgp_vrf, 1);
2363 return 0;
2364}
2365
128ea8ab 2366/*
2367 * Install any existing remote routes applicable for this VNI into its
2368 * routing table. This is invoked when a VNI becomes "live" or its Import
2369 * RT is changed.
2370 */
d62a17ae 2371static int install_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 2372{
d62a17ae 2373 int ret;
128ea8ab 2374
d62a17ae 2375 /* Install type-3 routes followed by type-2 routes - the ones applicable
2376 * for this VNI.
2377 */
2378 ret = install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_IMET_ROUTE,
2379 1);
2380 if (ret)
2381 return ret;
128ea8ab 2382
d62a17ae 2383 return install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_MAC_IP_ROUTE,
2384 1);
128ea8ab 2385}
2386
5ba238b7
MK
2387/* uninstall routes from l3vni vrf. */
2388static int uninstall_routes_for_vrf(struct bgp *bgp_vrf)
2389{
2390 install_uninstall_routes_for_vrf(bgp_vrf, 0);
2391 return 0;
2392}
2393
90e60aa7 2394/*
2395 * Uninstall any existing remote routes for this VNI. One scenario in which
2396 * this is invoked is upon an import RT change.
2397 */
d62a17ae 2398static int uninstall_routes_for_vni(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 2399{
d62a17ae 2400 int ret;
90e60aa7 2401
d62a17ae 2402 /* Uninstall type-2 routes followed by type-3 routes - the ones
2403 * applicable
2404 * for this VNI.
2405 */
2406 ret = install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_MAC_IP_ROUTE,
2407 0);
2408 if (ret)
2409 return ret;
90e60aa7 2410
d62a17ae 2411 return install_uninstall_routes_for_vni(bgp, vpn, BGP_EVPN_IMET_ROUTE,
2412 0);
90e60aa7 2413}
2414
d3135ba3 2415/*
2416 * Install or uninstall route in matching VRFs (list).
2417 */
2418static int install_uninstall_route_in_vrfs(struct bgp *bgp_def, afi_t afi,
2419 safi_t safi, struct prefix_evpn *evp,
2420 struct bgp_info *ri,
2421 struct list *vrfs, int install)
2422{
2423 char buf[PREFIX2STR_BUFFER];
2424 struct bgp *bgp_vrf;
2425 struct listnode *node, *nnode;
2426
90264d64
MK
2427 /* Only type-2/type-5 routes go into a VRF */
2428 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE ||
2429 evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE))
d3135ba3 2430 return 0;
2431
90264d64
MK
2432 /* if it is type-2 route and not a mac+ip route skip this route */
2433 if ((evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE) &&
2434 !(IS_EVPN_PREFIX_IPADDR_V4(evp) || IS_EVPN_PREFIX_IPADDR_V6(evp)))
30a30f57
MK
2435 return 0;
2436
d3135ba3 2437 for (ALL_LIST_ELEMENTS(vrfs, node, nnode, bgp_vrf)) {
2438 int ret;
2439
2440 if (install)
2441 ret = install_evpn_route_entry_in_vrf(bgp_vrf,
2442 evp, ri);
2443 else
2444 ret = uninstall_evpn_route_entry_in_vrf(bgp_vrf,
2445 evp, ri);
2446
2447 if (ret) {
2448 zlog_err("%u: Failed to %s prefix %s in VRF %s",
2449 bgp_def->vrf_id,
2450 install ? "install" : "uninstall",
2451 prefix2str(evp, buf, sizeof(buf)),
2452 vrf_id_to_name(bgp_vrf->vrf_id));
2453 return ret;
2454 }
2455 }
2456
2457 return 0;
2458}
2459
128ea8ab 2460/*
2461 * Install or uninstall route in matching VNIs (list).
2462 */
d62a17ae 2463static int install_uninstall_route_in_vnis(struct bgp *bgp, afi_t afi,
2464 safi_t safi, struct prefix_evpn *evp,
2465 struct bgp_info *ri,
2466 struct list *vnis, int install)
128ea8ab 2467{
d62a17ae 2468 struct bgpevpn *vpn;
2469 struct listnode *node, *nnode;
128ea8ab 2470
d62a17ae 2471 for (ALL_LIST_ELEMENTS(vnis, node, nnode, vpn)) {
2472 int ret;
128ea8ab 2473
d62a17ae 2474 if (!is_vni_live(vpn))
2475 continue;
128ea8ab 2476
d62a17ae 2477 if (install)
2478 ret = install_evpn_route_entry(bgp, vpn, evp, ri);
2479 else
2480 ret = uninstall_evpn_route_entry(bgp, vpn, evp, ri);
128ea8ab 2481
d62a17ae 2482 if (ret) {
2483 zlog_err("%u: Failed to %s EVPN %s route in VNI %u",
2484 bgp->vrf_id, install ? "install" : "uninstall",
2485 evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
2486 ? "MACIP"
2487 : "IMET",
2488 vpn->vni);
2489 return ret;
2490 }
2491 }
128ea8ab 2492
d62a17ae 2493 return 0;
128ea8ab 2494}
2495
2496/*
2497 * Install or uninstall route for appropriate VNIs.
2498 */
d62a17ae 2499static int install_uninstall_evpn_route(struct bgp *bgp, afi_t afi, safi_t safi,
2500 struct prefix *p, struct bgp_info *ri,
2501 int import)
2502{
2503 struct prefix_evpn *evp = (struct prefix_evpn *)p;
2504 struct attr *attr = ri->attr;
2505 struct ecommunity *ecom;
2506 int i;
2507
2508 assert(attr);
2509
90264d64 2510 /* Only type-2 and type-3 and type-5 are supported currently */
d62a17ae 2511 if (!(evp->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE
90264d64
MK
2512 || evp->prefix.route_type == BGP_EVPN_IMET_ROUTE
2513 || evp->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE))
d62a17ae 2514 return 0;
2515
2516 /* If we don't have Route Target, nothing much to do. */
2517 if (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)))
2518 return 0;
2519
2520 ecom = attr->ecommunity;
2521 if (!ecom || !ecom->size)
2522 return -1;
2523
90264d64
MK
2524 /* For each extended community RT, see which VNIs/VRFs match and import
2525 * the route into matching VNIs/VRFs.
d62a17ae 2526 */
2527 for (i = 0; i < ecom->size; i++) {
2528 u_char *pnt;
2529 u_char type, sub_type;
2530 struct ecommunity_val *eval;
2531 struct ecommunity_val eval_tmp;
d3135ba3 2532 struct irt_node *irt; /* import rt for l2vni */
2533 struct vrf_irt_node *vrf_irt; /* import rt for l3vni */
d62a17ae 2534
2535 /* Only deal with RTs */
2536 pnt = (ecom->val + (i * ECOMMUNITY_SIZE));
2537 eval = (struct ecommunity_val *)(ecom->val
2538 + (i * ECOMMUNITY_SIZE));
2539 type = *pnt++;
2540 sub_type = *pnt++;
2541 if (sub_type != ECOMMUNITY_ROUTE_TARGET)
2542 continue;
2543
90264d64 2544 /* Import route into matching l2-vnis (type-2/type-3 routes go
523cafc4 2545 * into l2vni table)
2546 */
d62a17ae 2547 irt = lookup_import_rt(bgp, eval);
2548 if (irt && irt->vnis)
2549 install_uninstall_route_in_vnis(bgp, afi, safi, evp, ri,
2550 irt->vnis, import);
2551
90264d64 2552 /* Import route into matching l3-vnis (type-2/type-5 routes go
523cafc4 2553 * into l3vni/vrf table)
2554 */
d3135ba3 2555 vrf_irt = lookup_vrf_import_rt(eval);
2556 if (vrf_irt && vrf_irt->vrfs)
2557 install_uninstall_route_in_vrfs(bgp, afi, safi, evp, ri,
2558 vrf_irt->vrfs, import);
2559
90264d64
MK
2560 /* Also check for non-exact match. In this,
2561 * we mask out the AS and
2562 * only check on the local-admin sub-field.
2563 * This is to facilitate using
d62a17ae 2564 * VNI as the RT for EBGP peering too.
2565 */
2566 irt = NULL;
d3135ba3 2567 vrf_irt = NULL;
d62a17ae 2568 if (type == ECOMMUNITY_ENCODE_AS
2569 || type == ECOMMUNITY_ENCODE_AS4
2570 || type == ECOMMUNITY_ENCODE_IP) {
2571 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
2572 mask_ecom_global_admin(&eval_tmp, eval);
2573 irt = lookup_import_rt(bgp, &eval_tmp);
d3135ba3 2574 vrf_irt = lookup_vrf_import_rt(&eval_tmp);
d62a17ae 2575 }
2576 if (irt && irt->vnis)
2577 install_uninstall_route_in_vnis(bgp, afi, safi, evp, ri,
2578 irt->vnis, import);
d3135ba3 2579 if (vrf_irt && vrf_irt->vrfs)
2580 install_uninstall_route_in_vrfs(bgp, afi, safi, evp,
2581 ri, vrf_irt->vrfs,
2582 import);
d62a17ae 2583 }
2584
2585 return 0;
128ea8ab 2586}
2587
80b140af
MK
2588/* delete and withdraw all ipv4 and ipv6 routes in the vrf table as type-5
2589 * routes */
2590static void delete_withdraw_vrf_routes(struct bgp *bgp_vrf)
2591{
2592 /* delete all ipv4 routes and withdraw from peers */
053905d2 2593 bgp_evpn_withdraw_type5_routes(bgp_vrf, AFI_IP, SAFI_UNICAST);
80b140af
MK
2594
2595 /* delete all ipv6 routes and withdraw from peers */
053905d2 2596 bgp_evpn_withdraw_type5_routes(bgp_vrf, AFI_IP6, SAFI_UNICAST);
80b140af
MK
2597}
2598
2599/* update and advertise all ipv4 and ipv6 routes in thr vrf table as type-5
2600 * routes */
2601static void update_advertise_vrf_routes(struct bgp *bgp_vrf)
2602{
2603 /* update all ipv4 routes */
053905d2 2604 bgp_evpn_advertise_type5_routes(bgp_vrf, AFI_IP, SAFI_UNICAST);
80b140af
MK
2605
2606 /* update all ipv6 routes */
053905d2 2607 bgp_evpn_advertise_type5_routes(bgp_vrf, AFI_IP6, SAFI_UNICAST);
80b140af
MK
2608}
2609
676f83b9 2610/*
2611 * update and advertise local routes for a VRF as type-5 routes.
2612 * This is invoked upon RD change for a VRF. Note taht the processing is only
2613 * done in the global route table using the routes which already exist in the
2614 * VRF routing table
2615 */
80b140af 2616static void update_router_id_vrf(struct bgp *bgp_vrf)
676f83b9 2617{
80b140af
MK
2618 /* skip if the RD is configured */
2619 if (is_vrf_rd_configured(bgp_vrf))
2620 return;
2621
2622 /* derive the RD for the VRF based on new router-id */
2623 bgp_evpn_derive_auto_rd_for_vrf(bgp_vrf);
2624
2625 /* update advertise ipv4|ipv6 routes as type-5 routes */
2626 update_advertise_vrf_routes(bgp_vrf);
676f83b9 2627}
2628
2629/*
2630 * Delete and withdraw all type-5 routes for the RD corresponding to VRF.
2631 * This is invoked upon VRF RD change. The processing is done only from global
2632 * table.
2633 */
80b140af 2634static void withdraw_router_id_vrf(struct bgp *bgp_vrf)
676f83b9 2635{
80b140af
MK
2636 /* skip if the RD is configured */
2637 if (is_vrf_rd_configured(bgp_vrf))
2638 return;
2639
2640 /* delete/withdraw ipv4|ipv6 routes as type-5 routes */
2641 delete_withdraw_vrf_routes(bgp_vrf);
676f83b9 2642}
2643
90e60aa7 2644/*
2645 * Update and advertise local routes for a VNI. Invoked upon router-id
2646 * change. Note that the processing is done only on the global route table
2647 * using routes that already exist in the per-VNI table.
2648 */
d62a17ae 2649static int update_advertise_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
2650{
2651 struct prefix_evpn p;
2652 struct bgp_node *rn, *global_rn;
2653 struct bgp_info *ri, *global_ri;
2654 struct attr *attr;
2655 afi_t afi = AFI_L2VPN;
2656 safi_t safi = SAFI_EVPN;
2657
2658 /* Locate type-3 route for VNI in the per-VNI table and use its
2659 * attributes to create and advertise the type-3 route for this VNI
2660 * in the global table.
2661 */
2662 build_evpn_type3_prefix(&p, vpn->originator_ip);
2663 rn = bgp_node_lookup(vpn->route_table, (struct prefix *)&p);
2664 if (!rn) /* unexpected */
2665 return 0;
2666 for (ri = rn->info; ri; ri = ri->next)
2667 if (ri->peer == bgp->peer_self && ri->type == ZEBRA_ROUTE_BGP
2668 && ri->sub_type == BGP_ROUTE_STATIC)
2669 break;
2670 if (!ri) /* unexpected */
2671 return 0;
2672 attr = ri->attr;
2673
2674 global_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
2675 (struct prefix *)&p, &vpn->prd);
1a98c087
MK
2676 update_evpn_route_entry(bgp, vpn, afi, safi, global_rn, attr, 1, 0, &ri,
2677 0);
d62a17ae 2678
2679 /* Schedule for processing and unlock node. */
2680 bgp_process(bgp, global_rn, afi, safi);
2681 bgp_unlock_node(global_rn);
2682
2683 /* Now, walk this VNI's route table and use the route and its attribute
2684 * to create and schedule route in global table.
2685 */
2686 for (rn = bgp_table_top(vpn->route_table); rn;
2687 rn = bgp_route_next(rn)) {
2688 struct prefix_evpn *evp = (struct prefix_evpn *)&rn->p;
2689
2690 /* Identify MAC-IP local routes. */
2691 if (evp->prefix.route_type != BGP_EVPN_MAC_IP_ROUTE)
2692 continue;
2693
2694 for (ri = rn->info; ri; ri = ri->next)
2695 if (ri->peer == bgp->peer_self
2696 && ri->type == ZEBRA_ROUTE_BGP
2697 && ri->sub_type == BGP_ROUTE_STATIC)
2698 break;
2699 if (!ri)
2700 continue;
2701
2702 /* Create route in global routing table using this route entry's
2703 * attribute.
2704 */
2705 attr = ri->attr;
2706 global_rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi,
2707 (struct prefix *)evp, &vpn->prd);
2708 assert(global_rn);
2709 update_evpn_route_entry(bgp, vpn, afi, safi, global_rn, attr, 1,
1a98c087 2710 0, &global_ri, 0);
d62a17ae 2711
2712 /* Schedule for processing and unlock node. */
2713 bgp_process(bgp, global_rn, afi, safi);
2714 bgp_unlock_node(global_rn);
2715 }
2716
2717 return 0;
90e60aa7 2718}
2719
2720/*
2721 * Delete (and withdraw) local routes for a VNI - only from the global
2722 * table. Invoked upon router-id change.
2723 */
d62a17ae 2724static int delete_withdraw_vni_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 2725{
d62a17ae 2726 int ret;
2727 struct prefix_evpn p;
2728 struct bgp_node *global_rn;
2729 struct bgp_info *ri;
2730 afi_t afi = AFI_L2VPN;
2731 safi_t safi = SAFI_EVPN;
90e60aa7 2732
d62a17ae 2733 /* Delete and withdraw locally learnt type-2 routes (MACIP)
2734 * for this VNI - from the global table.
2735 */
2736 ret = delete_global_type2_routes(bgp, vpn);
2737 if (ret)
2738 return ret;
90e60aa7 2739
d62a17ae 2740 /* Remove type-3 route for this VNI from global table. */
2741 build_evpn_type3_prefix(&p, vpn->originator_ip);
2742 global_rn = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi,
2743 (struct prefix *)&p, &vpn->prd);
2744 if (global_rn) {
2745 /* Delete route entry in the global EVPN table. */
2746 delete_evpn_route_entry(bgp, vpn, afi, safi, global_rn, &ri);
90e60aa7 2747
d62a17ae 2748 /* Schedule for processing - withdraws to peers happen from
2749 * this table.
2750 */
2751 if (ri)
2752 bgp_process(bgp, global_rn, afi, safi);
2753 bgp_unlock_node(global_rn);
2754 }
90e60aa7 2755
d62a17ae 2756 return 0;
90e60aa7 2757}
2758
2d48ee25 2759/*
2760 * Handle router-id change. Update and advertise local routes corresponding
2761 * to this VNI from peers. Note that this is invoked after updating the
2762 * router-id. The routes in the per-VNI table are used to create routes in
2763 * the global table and schedule them.
2764 */
d62a17ae 2765static void update_router_id_vni(struct hash_backet *backet, struct bgp *bgp)
2d48ee25 2766{
d62a17ae 2767 struct bgpevpn *vpn;
2d48ee25 2768
d62a17ae 2769 vpn = (struct bgpevpn *)backet->data;
2d48ee25 2770
d62a17ae 2771 if (!vpn) {
2772 zlog_warn("%s: VNI hash entry for VNI not found", __FUNCTION__);
2773 return;
2774 }
2d48ee25 2775
d62a17ae 2776 /* Skip VNIs with configured RD. */
2777 if (is_rd_configured(vpn))
2778 return;
2d48ee25 2779
d62a17ae 2780 bgp_evpn_derive_auto_rd(bgp, vpn);
2781 update_advertise_vni_routes(bgp, vpn);
2d48ee25 2782}
2783
2784/*
2785 * Handle router-id change. Delete and withdraw local routes corresponding
2786 * to this VNI from peers. Note that this is invoked prior to updating
2787 * the router-id and is done only on the global route table, the routes
2788 * are needed in the per-VNI table to re-advertise with new router id.
2789 */
d62a17ae 2790static void withdraw_router_id_vni(struct hash_backet *backet, struct bgp *bgp)
2d48ee25 2791{
d62a17ae 2792 struct bgpevpn *vpn;
2d48ee25 2793
d62a17ae 2794 vpn = (struct bgpevpn *)backet->data;
2d48ee25 2795
d62a17ae 2796 if (!vpn) {
2797 zlog_warn("%s: VNI hash entry for VNI not found", __FUNCTION__);
2798 return;
2799 }
2d48ee25 2800
d62a17ae 2801 /* Skip VNIs with configured RD. */
2802 if (is_rd_configured(vpn))
2803 return;
2d48ee25 2804
d62a17ae 2805 delete_withdraw_vni_routes(bgp, vpn);
2d48ee25 2806}
2807
128ea8ab 2808/*
2809 * Process received EVPN type-2 route (advertise or withdraw).
2810 */
d62a17ae 2811static int process_type2_route(struct peer *peer, afi_t afi, safi_t safi,
2812 struct attr *attr, u_char *pfx, int psize,
2813 u_int32_t addpath_id)
2814{
2815 struct prefix_rd prd;
2816 struct prefix_evpn p;
2817 u_char ipaddr_len;
2818 u_char macaddr_len;
b57ba6d2
MK
2819 mpls_label_t label[BGP_MAX_LABELS]; /* holds the VNI(s) as in packet */
2820 u_int32_t num_labels = 0;
d62a17ae 2821 int ret;
2822
2823 /* Type-2 route should be either 33, 37 or 49 bytes or an
2824 * additional 3 bytes if there is a second label (VNI):
2825 * RD (8), ESI (10), Eth Tag (4), MAC Addr Len (1),
2826 * MAC Addr (6), IP len (1), IP (0, 4 or 16),
2827 * MPLS Lbl1 (3), MPLS Lbl2 (0 or 3)
2828 */
2829 if (psize != 33 && psize != 37 && psize != 49 && psize != 36
2830 && psize != 40 && psize != 52) {
2831 zlog_err("%u:%s - Rx EVPN Type-2 NLRI with invalid length %d",
2832 peer->bgp->vrf_id, peer->host, psize);
2833 return -1;
2834 }
2835
2836 /* Make prefix_rd */
2837 prd.family = AF_UNSPEC;
2838 prd.prefixlen = 64;
2839 memcpy(&prd.val, pfx, 8);
2840 pfx += 8;
2841
2842 /* Make EVPN prefix. */
2843 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 2844 p.family = AF_EVPN;
d62a17ae 2845 p.prefixlen = EVPN_TYPE_2_ROUTE_PREFIXLEN;
2846 p.prefix.route_type = BGP_EVPN_MAC_IP_ROUTE;
2847
2848 /* Skip over Ethernet Seg Identifier for now. */
2849 pfx += 10;
2850
2851 /* Skip over Ethernet Tag for now. */
2852 pfx += 4;
2853
2854 /* Get the MAC Addr len */
2855 macaddr_len = *pfx++;
2856
2857 /* Get the MAC Addr */
28328ea9
DS
2858 if (macaddr_len == (ETH_ALEN * 8)) {
2859 memcpy(&p.prefix.mac.octet, pfx, ETH_ALEN);
2860 pfx += ETH_ALEN;
d62a17ae 2861 } else {
2862 zlog_err(
2863 "%u:%s - Rx EVPN Type-2 NLRI with unsupported MAC address length %d",
2864 peer->bgp->vrf_id, peer->host, macaddr_len);
2865 return -1;
2866 }
2867
2868
2869 /* Get the IP. */
2870 ipaddr_len = *pfx++;
2871 if (ipaddr_len != 0 && ipaddr_len != IPV4_MAX_BITLEN
2872 && ipaddr_len != IPV6_MAX_BITLEN) {
2873 zlog_err(
2874 "%u:%s - Rx EVPN Type-2 NLRI with unsupported IP address length %d",
2875 peer->bgp->vrf_id, peer->host, ipaddr_len);
2876 return -1;
2877 }
2878
2879 if (ipaddr_len) {
2880 ipaddr_len /= 8; /* Convert to bytes. */
2881 p.prefix.ip.ipa_type = (ipaddr_len == IPV4_MAX_BYTELEN)
2882 ? IPADDR_V4
2883 : IPADDR_V6;
2884 memcpy(&p.prefix.ip.ip.addr, pfx, ipaddr_len);
2885 }
2886 pfx += ipaddr_len;
2887
b57ba6d2
MK
2888 /* Get the VNI(s). Stored as bytes here. */
2889 num_labels++;
2890 memset(label, 0, sizeof(label));
2891 memcpy(&label[0], pfx, BGP_LABEL_BYTES);
1b817c78 2892 pfx += BGP_LABEL_BYTES;
b57ba6d2
MK
2893 psize -= (33 + ipaddr_len);
2894 /* Do we have a second VNI? */
2895 if (psize) {
2896 num_labels++;
2897 memcpy(&label[1], pfx, BGP_LABEL_BYTES);
6b11bd8d 2898 /*
2899 * If in future, we are required to access additional fields,
1b817c78 2900 * we MUST increment pfx by BGP_LABEL_BYTES in before reading the next field
6b11bd8d 2901 */
b57ba6d2 2902 }
d62a17ae 2903
2904 /* Process the route. */
2905 if (attr)
2906 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
2907 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 2908 &prd, &label[0], num_labels, 0, NULL);
d62a17ae 2909 else
2910 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
2911 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 2912 &prd, &label[0], num_labels, NULL);
d62a17ae 2913 return ret;
128ea8ab 2914}
2915
2916/*
2917 * Process received EVPN type-3 route (advertise or withdraw).
2918 */
d62a17ae 2919static int process_type3_route(struct peer *peer, afi_t afi, safi_t safi,
2920 struct attr *attr, u_char *pfx, int psize,
2921 u_int32_t addpath_id)
2922{
2923 struct prefix_rd prd;
2924 struct prefix_evpn p;
2925 u_char ipaddr_len;
2926 int ret;
2927
2928 /* Type-3 route should be either 17 or 29 bytes: RD (8), Eth Tag (4),
2929 * IP len (1) and IP (4 or 16).
2930 */
2931 if (psize != 17 && psize != 29) {
2932 zlog_err("%u:%s - Rx EVPN Type-3 NLRI with invalid length %d",
2933 peer->bgp->vrf_id, peer->host, psize);
2934 return -1;
2935 }
2936
2937 /* Make prefix_rd */
2938 prd.family = AF_UNSPEC;
2939 prd.prefixlen = 64;
2940 memcpy(&prd.val, pfx, 8);
2941 pfx += 8;
2942
2943 /* Make EVPN prefix. */
2944 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 2945 p.family = AF_EVPN;
d62a17ae 2946 p.prefixlen = EVPN_TYPE_3_ROUTE_PREFIXLEN;
2947 p.prefix.route_type = BGP_EVPN_IMET_ROUTE;
2948
2949 /* Skip over Ethernet Tag for now. */
2950 pfx += 4;
2951
2952 /* Get the IP. */
2953 ipaddr_len = *pfx++;
2954 if (ipaddr_len == IPV4_MAX_BITLEN) {
2955 p.prefix.ip.ipa_type = IPADDR_V4;
2956 memcpy(&p.prefix.ip.ip.addr, pfx, IPV4_MAX_BYTELEN);
2957 } else {
2958 zlog_err(
2959 "%u:%s - Rx EVPN Type-3 NLRI with unsupported IP address length %d",
2960 peer->bgp->vrf_id, peer->host, ipaddr_len);
2961 return -1;
2962 }
2963
2964 /* Process the route. */
2965 if (attr)
2966 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
2967 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 2968 &prd, NULL, 0, 0, NULL);
d62a17ae 2969 else
2970 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
2971 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 2972 &prd, NULL, 0, NULL);
d62a17ae 2973 return ret;
128ea8ab 2974}
2975
2976/*
2977 * Process received EVPN type-5 route (advertise or withdraw).
2978 */
d62a17ae 2979static int process_type5_route(struct peer *peer, afi_t afi, safi_t safi,
2980 struct attr *attr, u_char *pfx, int psize,
2981 u_int32_t addpath_id, int withdraw)
2982{
2983 struct prefix_rd prd;
2984 struct prefix_evpn p;
2985 struct bgp_route_evpn evpn;
2986 u_char ippfx_len;
2987 u_int32_t eth_tag;
b57ba6d2 2988 mpls_label_t label; /* holds the VNI as in the packet */
d62a17ae 2989 int ret;
2990
2991 /* Type-5 route should be 34 or 58 bytes:
2992 * RD (8), ESI (10), Eth Tag (4), IP len (1), IP (4 or 16),
2993 * GW (4 or 16) and VNI (3).
2994 * Note that the IP and GW should both be IPv4 or both IPv6.
2995 */
2996 if (psize != 34 && psize != 58) {
2997 zlog_err("%u:%s - Rx EVPN Type-5 NLRI with invalid length %d",
2998 peer->bgp->vrf_id, peer->host, psize);
2999 return -1;
3000 }
3001
3002 /* Make prefix_rd */
3003 prd.family = AF_UNSPEC;
3004 prd.prefixlen = 64;
3005 memcpy(&prd.val, pfx, 8);
3006 pfx += 8;
3007
3008 /* Make EVPN prefix. */
3009 memset(&p, 0, sizeof(struct prefix_evpn));
b03b8898 3010 p.family = AF_EVPN;
e9fc2840 3011 p.prefixlen = EVPN_TYPE_5_ROUTE_PREFIXLEN;
d62a17ae 3012 p.prefix.route_type = BGP_EVPN_IP_PREFIX_ROUTE;
3013
3014 /* Additional information outside of prefix - ESI and GW IP */
3015 memset(&evpn, 0, sizeof(evpn));
3016
3017 /* Fetch ESI */
3018 memcpy(&evpn.eth_s_id.val, pfx, 10);
3019 pfx += 10;
3020
3021 /* Fetch Ethernet Tag. */
3022 memcpy(&eth_tag, pfx, 4);
3023 p.prefix.eth_tag = ntohl(eth_tag);
3024 pfx += 4;
3025
3026 /* Fetch IP prefix length. */
3027 ippfx_len = *pfx++;
3028 if (ippfx_len > IPV6_MAX_BITLEN) {
3029 zlog_err(
3030 "%u:%s - Rx EVPN Type-5 NLRI with invalid IP Prefix length %d",
3031 peer->bgp->vrf_id, peer->host, ippfx_len);
3032 return -1;
3033 }
3034 p.prefix.ip_prefix_length = ippfx_len;
3035
3036 /* Determine IPv4 or IPv6 prefix */
3037 /* Since the address and GW are from the same family, this just becomes
3038 * a simple check on the total size.
3039 */
3040 if (psize == 34) {
3041 SET_IPADDR_V4(&p.prefix.ip);
3042 memcpy(&p.prefix.ip.ipaddr_v4, pfx, 4);
3043 pfx += 4;
3044 memcpy(&evpn.gw_ip.ipv4, pfx, 4);
3045 pfx += 4;
d62a17ae 3046 } else {
3047 SET_IPADDR_V6(&p.prefix.ip);
3048 memcpy(&p.prefix.ip.ipaddr_v6, pfx, 16);
3049 pfx += 16;
3050 memcpy(&evpn.gw_ip.ipv6, pfx, 16);
3051 pfx += 16;
d62a17ae 3052 }
3053
b57ba6d2
MK
3054 /* Get the VNI (in MPLS label field). Stored as bytes here. */
3055 memset(&label, 0, sizeof(label));
3056 memcpy(&label, pfx, BGP_LABEL_BYTES);
6b11bd8d 3057
3058 /*
3059 * If in future, we are required to access additional fields,
1b817c78 3060 * we MUST increment pfx by BGP_LABEL_BYTES in before reading the next field
6b11bd8d 3061 */
d62a17ae 3062
3063 /* Process the route. */
3064 if (!withdraw)
3065 ret = bgp_update(peer, (struct prefix *)&p, addpath_id, attr,
3066 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 3067 &prd, &label, 1, 0, &evpn);
d62a17ae 3068 else
3069 ret = bgp_withdraw(peer, (struct prefix *)&p, addpath_id, attr,
3070 afi, safi, ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
b57ba6d2 3071 &prd, &label, 1, &evpn);
d62a17ae 3072
3073 return ret;
3074}
3075
3076static void evpn_mpattr_encode_type5(struct stream *s, struct prefix *p,
b57ba6d2
MK
3077 struct prefix_rd *prd,
3078 mpls_label_t *label, u_int32_t num_labels,
d62a17ae 3079 struct attr *attr)
3080{
3081 int len;
3082 char temp[16];
3083 struct evpn_addr *p_evpn_p;
3084
3085 memset(&temp, 0, 16);
b03b8898 3086 if (p->family != AF_EVPN)
d62a17ae 3087 return;
3088 p_evpn_p = &(p->u.prefix_evpn);
3089
e9fc2840 3090 /* len denites the total len of IP and GW-IP in the route
523cafc4 3091 IP and GW-IP have to be both ipv4 or ipv6
3092 */
d62a17ae 3093 if (IS_IPADDR_V4(&p_evpn_p->ip))
e9fc2840 3094 len = 8; /* IP and GWIP are both ipv4 */
d62a17ae 3095 else
e9fc2840 3096 len = 32; /* IP and GWIP are both ipv6 */
d62a17ae 3097 /* Prefix contains RD, ESI, EthTag, IP length, IP, GWIP and VNI */
3098 stream_putc(s, 8 + 10 + 4 + 1 + len + 3);
3099 stream_put(s, prd->val, 8);
0af35d90 3100 if (attr)
d62a17ae 3101 stream_put(s, &(attr->evpn_overlay.eth_s_id), 10);
3102 else
3103 stream_put(s, &temp, 10);
3104 stream_putl(s, p_evpn_p->eth_tag);
3105 stream_putc(s, p_evpn_p->ip_prefix_length);
3106 if (IS_IPADDR_V4(&p_evpn_p->ip))
3107 stream_put_ipv4(s, p_evpn_p->ip.ipaddr_v4.s_addr);
3108 else
3109 stream_put(s, &p_evpn_p->ip.ipaddr_v6, 16);
0af35d90 3110 if (attr) {
d62a17ae 3111 if (IS_IPADDR_V4(&p_evpn_p->ip))
3112 stream_put_ipv4(s,
3113 attr->evpn_overlay.gw_ip.ipv4.s_addr);
3114 else
3115 stream_put(s, &(attr->evpn_overlay.gw_ip.ipv6), 16);
3116 } else {
3117 if (IS_IPADDR_V4(&p_evpn_p->ip))
3118 stream_put_ipv4(s, 0);
3119 else
3120 stream_put(s, &temp, 16);
3121 }
3122
b57ba6d2 3123 if (num_labels)
d62a17ae 3124 stream_put(s, label, 3);
3125 else
3126 stream_put3(s, 0);
128ea8ab 3127}
3128
3129/*
3130 * Cleanup specific VNI upon EVPN (advertise-all-vni) being disabled.
3131 */
d62a17ae 3132static void cleanup_vni_on_disable(struct hash_backet *backet, struct bgp *bgp)
128ea8ab 3133{
d62a17ae 3134 struct bgpevpn *vpn = (struct bgpevpn *)backet->data;
128ea8ab 3135
d62a17ae 3136 /* Remove EVPN routes and schedule for processing. */
3137 delete_routes_for_vni(bgp, vpn);
128ea8ab 3138
d62a17ae 3139 /* Clear "live" flag and see if hash needs to be freed. */
3140 UNSET_FLAG(vpn->flags, VNI_FLAG_LIVE);
3141 if (!is_vni_configured(vpn))
3142 bgp_evpn_free(bgp, vpn);
128ea8ab 3143}
3144
3145/*
3146 * Free a VNI entry; iterator function called during cleanup.
3147 */
d62a17ae 3148static void free_vni_entry(struct hash_backet *backet, struct bgp *bgp)
128ea8ab 3149{
d62a17ae 3150 struct bgpevpn *vpn;
128ea8ab 3151
d62a17ae 3152 vpn = (struct bgpevpn *)backet->data;
3153 delete_all_vni_routes(bgp, vpn);
3154 bgp_evpn_free(bgp, vpn);
128ea8ab 3155}
3156
c581d8b0
MK
3157/*
3158 * Derive AUTO import RT for BGP VRF - L3VNI
3159 */
3160static void evpn_auto_rt_import_add_for_vrf(struct bgp *bgp_vrf)
3161{
10ebe1ab
MK
3162 struct bgp *bgp_def = NULL;
3163
c581d8b0 3164 form_auto_rt(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_import_rtl);
10ebe1ab
MK
3165 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
3166
3167 /* Map RT to VRF */
3168 bgp_def = bgp_get_default();
3169 if (!bgp_def)
3170 return;
3171 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
c581d8b0
MK
3172}
3173
3174/*
3175 * Delete AUTO import RT from BGP VRF - L3VNI
3176 */
3177static void evpn_auto_rt_import_delete_for_vrf(struct bgp *bgp_vrf)
3178{
3179 evpn_rt_delete_auto(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_import_rtl);
3180}
3181
3182/*
3183 * Derive AUTO export RT for BGP VRF - L3VNI
3184 */
3185static void evpn_auto_rt_export_add_for_vrf(struct bgp *bgp_vrf)
3186{
3187 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
3188 form_auto_rt(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_export_rtl);
3189}
3190
3191/*
3192 * Delete AUTO export RT from BGP VRF - L3VNI
3193 */
3194static void evpn_auto_rt_export_delete_for_vrf(struct bgp *bgp_vrf)
3195{
3196 evpn_rt_delete_auto(bgp_vrf, bgp_vrf->l3vni, bgp_vrf->vrf_export_rtl);
3197}
128ea8ab 3198
f1f8b53c
MK
3199static void bgp_evpn_handle_export_rt_change_for_vrf(struct bgp *bgp_vrf)
3200{
3201 struct bgp *bgp_def = NULL;
3202 struct listnode *node = NULL;
3203 struct bgpevpn *vpn = NULL;
3204
3205 bgp_def = bgp_get_default();
3206 if (!bgp_def)
3207 return;
3208
4992b4ae
MK
3209 /* update all type-5 routes */
3210 update_advertise_vrf_routes(bgp_vrf);
3211
3212 /* update all type-2 routes */
f1f8b53c
MK
3213 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn))
3214 update_routes_for_vni(bgp_def, vpn);
3215}
3216
128ea8ab 3217/*
3218 * Public functions.
3219 */
3220
5424b7ba 3221/* withdraw type-5 route corresponding to ip prefix */
31310b25 3222void bgp_evpn_withdraw_type5_route(struct bgp *bgp_vrf, struct prefix *p,
5424b7ba
MK
3223 afi_t afi, safi_t safi)
3224{
3225 int ret = 0;
3226 struct prefix_evpn evp;
3227 char buf[PREFIX_STRLEN];
3228
faafdfa8 3229 /* NOTE: Check needed as this is called per-route also. */
3230 if (!advertise_type5_routes(bgp_vrf, afi))
3231 return;
3232
31310b25 3233 build_type5_prefix_from_ip_prefix(&evp, p);
5424b7ba
MK
3234 ret = delete_evpn_type5_route(bgp_vrf, &evp);
3235 if (ret) {
3236 zlog_err(
3237 "%u failed to delete type-5 route for prefix %s in vrf %s",
3238 bgp_vrf->vrf_id,
31310b25 3239 prefix2str(p, buf, sizeof(buf)),
5424b7ba
MK
3240 vrf_id_to_name(bgp_vrf->vrf_id));
3241 }
3242}
3243
342dd0c6 3244/* withdraw all type-5 routes for an address family */
3245void bgp_evpn_withdraw_type5_routes(struct bgp *bgp_vrf,
053905d2 3246 afi_t afi, safi_t safi)
342dd0c6 3247{
3248 struct bgp_table *table = NULL;
3249 struct bgp_node *rn = NULL;
25f2ca53 3250 struct bgp_info *ri;
342dd0c6 3251
faafdfa8 3252 /* Bail out early if we don't have to advertise type-5 routes. */
06d2e8f3
MK
3253 if (!advertise_type5_routes(bgp_vrf, afi))
3254 return;
3255
053905d2 3256 table = bgp_vrf->rib[afi][safi];
25f2ca53 3257 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
3258 /* Only care about "selected" routes - non-imported. */
3259 /* TODO: Support for AddPath for EVPN. */
3260 for (ri = rn->info; ri; ri = ri->next) {
3261 if (CHECK_FLAG(ri->flags, BGP_INFO_SELECTED) &&
3262 (!ri->extra || !ri->extra->parent)) {
3263 bgp_evpn_withdraw_type5_route(bgp_vrf, &rn->p,
3264 afi, safi);
3265 break;
3266 }
3267 }
3268 }
5424b7ba 3269}
342dd0c6 3270
2f69f6d3 3271/*
3272 * Advertise IP prefix as type-5 route. The afi/safi and src_attr passed
3273 * to this function correspond to those of the source IP prefix (best
3274 * path in the case of the attr. In the case of a local prefix (when we
3275 * are advertising local subnets), the src_attr will be NULL.
3276 */
31310b25 3277void bgp_evpn_advertise_type5_route(struct bgp *bgp_vrf, struct prefix *p,
2f69f6d3 3278 struct attr *src_attr,
5424b7ba
MK
3279 afi_t afi, safi_t safi)
3280{
3281 int ret = 0;
3282 struct prefix_evpn evp;
3283 char buf[PREFIX_STRLEN];
3284
faafdfa8 3285 /* NOTE: Check needed as this is called per-route also. */
5424b7ba
MK
3286 if (!advertise_type5_routes(bgp_vrf, afi))
3287 return;
3288
31310b25 3289 build_type5_prefix_from_ip_prefix(&evp, p);
2f69f6d3 3290 ret = update_evpn_type5_route(bgp_vrf, &evp, src_attr);
3291 if (ret)
5424b7ba 3292 zlog_err(
2f69f6d3 3293 "%u: Failed to create type-5 route for prefix %s",
5424b7ba 3294 bgp_vrf->vrf_id,
2f69f6d3 3295 prefix2str(p, buf, sizeof(buf)));
342dd0c6 3296}
3297
2f69f6d3 3298/* Inject all prefixes of a particular address-family (currently, IPv4 or
3299 * IPv6 unicast) into EVPN as type-5 routes. This is invoked when the
3300 * advertisement is enabled.
3301 */
342dd0c6 3302void bgp_evpn_advertise_type5_routes(struct bgp *bgp_vrf,
053905d2 3303 afi_t afi, safi_t safi)
342dd0c6 3304{
3305 struct bgp_table *table = NULL;
3306 struct bgp_node *rn = NULL;
2f69f6d3 3307 struct bgp_info *ri;
342dd0c6 3308
faafdfa8 3309 /* Bail out early if we don't have to advertise type-5 routes. */
3310 if (!advertise_type5_routes(bgp_vrf, afi))
3311 return;
342dd0c6 3312
053905d2 3313 table = bgp_vrf->rib[afi][safi];
31310b25 3314 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
2f69f6d3 3315 /* Need to identify the "selected" route entry to use its
25f2ca53 3316 * attribute. Also, we only consider "non-imported" routes.
2f69f6d3 3317 * TODO: Support for AddPath for EVPN.
3318 */
3319 for (ri = rn->info; ri; ri = ri->next) {
25f2ca53 3320 if (CHECK_FLAG(ri->flags, BGP_INFO_SELECTED) &&
3321 (!ri->extra || !ri->extra->parent)) {
53c84f78
MK
3322
3323 /* apply the route-map */
3324 if (bgp_vrf->adv_cmd_rmap[afi][safi].map) {
3325 int ret = 0;
3326
3327 ret =
3328 route_map_apply(
3329 bgp_vrf->adv_cmd_rmap[afi][safi].map,
3330 &rn->p, RMAP_BGP, ri);
3331 if (ret == RMAP_DENYMATCH)
3332 continue;
3333 }
2f69f6d3 3334 bgp_evpn_advertise_type5_route(bgp_vrf, &rn->p,
3335 ri->attr,
3336 afi, safi);
3337 break;
3338 }
3339 }
31310b25 3340 }
342dd0c6 3341}
3342
c581d8b0
MK
3343void evpn_rt_delete_auto(struct bgp *bgp, vni_t vni,
3344 struct list *rtl)
3345{
3346 struct listnode *node, *nnode, *node_to_del;
3347 struct ecommunity *ecom, *ecom_auto;
3348 struct ecommunity_val eval;
3349
3350 encode_route_target_as((bgp->as & 0xFFFF), vni, &eval);
3351
3352 ecom_auto = ecommunity_new();
3353 ecommunity_add_val(ecom_auto, &eval);
3354 node_to_del = NULL;
3355
3356 for (ALL_LIST_ELEMENTS(rtl, node, nnode, ecom)) {
3357 if (ecommunity_match(ecom, ecom_auto)) {
3358 ecommunity_free(&ecom);
3359 node_to_del = node;
3360 }
3361 }
3362
3363 if (node_to_del)
3364 list_delete_node(rtl, node_to_del);
3365
3366 ecommunity_free(&ecom_auto);
3367}
3368
3369void bgp_evpn_configure_import_rt_for_vrf(struct bgp *bgp_vrf,
10ebe1ab 3370 struct ecommunity *ecomadd)
c581d8b0 3371{
5ba238b7
MK
3372 /* uninstall routes from vrf */
3373 uninstall_routes_for_vrf(bgp_vrf);
10ebe1ab
MK
3374
3375 /* Cleanup the RT to VRF mapping */
3376 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
3377
c581d8b0
MK
3378 /* Remove auto generated RT */
3379 evpn_auto_rt_import_delete_for_vrf(bgp_vrf);
3380
3381 /* Add the newly configured RT to RT list */
3382 listnode_add_sort(bgp_vrf->vrf_import_rtl, ecomadd);
3383 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
3384
10ebe1ab
MK
3385 /* map VRF to its RTs */
3386 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
3387
5ba238b7
MK
3388 /* install routes matching the new VRF */
3389 install_routes_for_vrf(bgp_vrf);
c581d8b0
MK
3390}
3391
3392void bgp_evpn_unconfigure_import_rt_for_vrf(struct bgp *bgp_vrf,
3393 struct ecommunity *ecomdel)
3394{
3395 struct listnode *node = NULL, *nnode = NULL, *node_to_del = NULL;
3396 struct ecommunity *ecom = NULL;
3397
5ba238b7
MK
3398 /* uninstall routes from vrf */
3399 uninstall_routes_for_vrf(bgp_vrf);
10ebe1ab
MK
3400
3401 /* Cleanup the RT to VRF mapping */
3402 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
3403
c581d8b0
MK
3404 /* remove the RT from the RT list */
3405 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
3406 if (ecommunity_match(ecom, ecomdel)) {
3407 ecommunity_free(&ecom);
3408 node_to_del = node;
3409 break;
3410 }
3411 }
3412
3413 if (node_to_del)
3414 list_delete_node(bgp_vrf->vrf_import_rtl, node_to_del);
3415
3416 /* fallback to auto import rt, if this was the last RT */
3417 if (list_isempty(bgp_vrf->vrf_import_rtl)) {
3418 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD);
3419 evpn_auto_rt_import_add_for_vrf(bgp_vrf);
3420 }
3421
10ebe1ab
MK
3422 /* map VRFs to its RTs */
3423 bgp_evpn_map_vrf_to_its_rts(bgp_vrf);
3424
5ba238b7
MK
3425 /* install routes matching this new RT */
3426 install_routes_for_vrf(bgp_vrf);
c581d8b0
MK
3427}
3428
3429void bgp_evpn_configure_export_rt_for_vrf(struct bgp *bgp_vrf,
3430 struct ecommunity *ecomadd)
3431{
3432 /* remove auto-generated RT */
3433 evpn_auto_rt_export_delete_for_vrf(bgp_vrf);
3434
3435 /* Add the new RT to the RT list */
3436 listnode_add_sort(bgp_vrf->vrf_export_rtl, ecomadd);
3437 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
3438
f1f8b53c
MK
3439 bgp_evpn_handle_export_rt_change_for_vrf(bgp_vrf);
3440
c581d8b0
MK
3441}
3442
3443void bgp_evpn_unconfigure_export_rt_for_vrf(struct bgp *bgp_vrf,
3444 struct ecommunity *ecomdel)
3445{
3446 struct listnode *node = NULL, *nnode = NULL, *node_to_del = NULL;
3447 struct ecommunity *ecom = NULL;
3448
3449 /* Remove the RT from the RT list */
3450 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_export_rtl, node, nnode, ecom)) {
3451 if (ecommunity_match(ecom, ecomdel)) {
3452 ecommunity_free(&ecom);
3453 node_to_del = node;
3454 break;
3455 }
3456 }
3457
3458 if (node_to_del)
3459 list_delete_node(bgp_vrf->vrf_export_rtl, node_to_del);
3460
3461 /* fall back to auto-generated RT if this was the last RT */
877702e7 3462 if (bgp_vrf->vrf_export_rtl && list_isempty(bgp_vrf->vrf_export_rtl)) {
c581d8b0
MK
3463 UNSET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD);
3464 evpn_auto_rt_export_add_for_vrf(bgp_vrf);
3465 }
3466
f1f8b53c 3467 bgp_evpn_handle_export_rt_change_for_vrf(bgp_vrf);
c581d8b0
MK
3468}
3469
2d48ee25 3470/*
3471 * Handle change to BGP router id. This is invoked twice by the change
3472 * handler, first before the router id has been changed and then after
3473 * the router id has been changed. The first invocation will result in
676f83b9 3474 * local routes for all VNIs/VRF being deleted and withdrawn and the next
2d48ee25 3475 * will result in the routes being re-advertised.
3476 */
d62a17ae 3477void bgp_evpn_handle_router_id_update(struct bgp *bgp, int withdraw)
2d48ee25 3478{
676f83b9 3479 if (withdraw) {
3480
3481 /* delete and withdraw all the type-5 routes
523cafc4 3482 stored in the global table for this vrf
3483 */
80b140af 3484 withdraw_router_id_vrf(bgp);
676f83b9 3485
3486 /* delete all the VNI routes (type-2/type-3) routes for all the
523cafc4 3487 * L2-VNIs
3488 */
d62a17ae 3489 hash_iterate(bgp->vnihash,
3490 (void (*)(struct hash_backet *,
3491 void *))withdraw_router_id_vni,
3492 bgp);
676f83b9 3493 } else {
3494
3495 /* advertise all routes in the vrf as type-5 routes with the new
523cafc4 3496 * RD
3497 */
80b140af 3498 update_router_id_vrf(bgp);
676f83b9 3499
3500 /* advertise all the VNI routes (type-2/type-3) routes with the
523cafc4 3501 * new RD
3502 */
d62a17ae 3503 hash_iterate(bgp->vnihash,
3504 (void (*)(struct hash_backet *,
3505 void *))update_router_id_vni,
3506 bgp);
676f83b9 3507 }
2d48ee25 3508}
3509
90e60aa7 3510/*
3511 * Handle change to export RT - update and advertise local routes.
3512 */
d62a17ae 3513int bgp_evpn_handle_export_rt_change(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 3514{
d62a17ae 3515 return update_routes_for_vni(bgp, vpn);
90e60aa7 3516}
3517
676f83b9 3518void bgp_evpn_handle_vrf_rd_change(struct bgp *bgp_vrf,
3519 int withdraw)
3520{
3521 if (withdraw)
3522 delete_withdraw_vrf_routes(bgp_vrf);
3523 else
3524 update_advertise_vrf_routes(bgp_vrf);
3525}
3526
90e60aa7 3527/*
3528 * Handle change to RD. This is invoked twice by the change handler,
3529 * first before the RD has been changed and then after the RD has
3530 * been changed. The first invocation will result in local routes
3531 * of this VNI being deleted and withdrawn and the next will result
3532 * in the routes being re-advertised.
3533 */
d62a17ae 3534void bgp_evpn_handle_rd_change(struct bgp *bgp, struct bgpevpn *vpn,
3535 int withdraw)
90e60aa7 3536{
d62a17ae 3537 if (withdraw)
3538 delete_withdraw_vni_routes(bgp, vpn);
3539 else
3540 update_advertise_vni_routes(bgp, vpn);
90e60aa7 3541}
3542
3543/*
3544 * Install routes for this VNI. Invoked upon change to Import RT.
3545 */
d62a17ae 3546int bgp_evpn_install_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 3547{
d62a17ae 3548 return install_routes_for_vni(bgp, vpn);
90e60aa7 3549}
3550
3551/*
3552 * Uninstall all routes installed for this VNI. Invoked upon change
3553 * to Import RT.
3554 */
d62a17ae 3555int bgp_evpn_uninstall_routes(struct bgp *bgp, struct bgpevpn *vpn)
90e60aa7 3556{
d62a17ae 3557 return uninstall_routes_for_vni(bgp, vpn);
90e60aa7 3558}
3559
b16031a2 3560/*
b57ba6d2 3561 * TODO: Hardcoded for a maximum of 2 VNIs right now
b16031a2 3562 */
b57ba6d2
MK
3563char *bgp_evpn_label2str(mpls_label_t *label, u_int32_t num_labels,
3564 char *buf, int len)
b16031a2 3565{
b57ba6d2 3566 vni_t vni1, vni2;
b16031a2 3567
b57ba6d2
MK
3568 vni1 = label2vni(label);
3569 if (num_labels == 2) {
3570 vni2 = label2vni(label+1);
3571 snprintf(buf, len, "%u/%u", vni1, vni2);
3572 } else
3573 snprintf(buf, len, "%u", vni1);
d62a17ae 3574 return buf;
b16031a2 3575}
3576
9c92b5f7
MK
3577/*
3578 * Function to convert evpn route to json format.
3579 * NOTE: We don't use prefix2str as the output here is a bit different.
3580 */
57f7feb6 3581void bgp_evpn_route2json(struct prefix_evpn *p, json_object *json)
9c92b5f7 3582{
b682f6de 3583 char buf1[ETHER_ADDR_STRLEN];
3584 char buf2[PREFIX2STR_BUFFER];
9c92b5f7 3585
b682f6de 3586 if (!json)
3587 return;
9c92b5f7 3588
dff8f48d 3589 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE) {
b682f6de 3590 json_object_int_add(json, "routeType", p->prefix.route_type);
3591 json_object_int_add(json, "ethTag", 0);
57f7feb6
MK
3592 json_object_int_add(json, "ipLen",
3593 IS_EVPN_PREFIX_IPADDR_V4(p)
3594 ? IPV4_MAX_BITLEN
3595 : IPV6_MAX_BITLEN);
b682f6de 3596 json_object_string_add(json, "ip",
57f7feb6
MK
3597 inet_ntoa(p->prefix.ip.ipaddr_v4));
3598 } else if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE) {
dff8f48d 3599 if (IS_EVPN_PREFIX_IPADDR_NONE(p)) {
57f7feb6
MK
3600 json_object_int_add(json, "routeType",
3601 p->prefix.route_type);
3602 json_object_int_add(
3603 json, "esi",
3604 0); /* TODO: we don't support esi yet */
3605 json_object_int_add(json, "ethTag", 0);
3606 json_object_int_add(json, "macLen", 8 * ETH_ALEN);
3607 json_object_string_add(json, "mac",
3608 prefix_mac2str(&p->prefix.mac,
3609 buf1,
3610 sizeof(buf1)));
dff8f48d
MK
3611 } else {
3612 u_char family;
3613
57f7feb6
MK
3614 family = IS_EVPN_PREFIX_IPADDR_V4(p) ? AF_INET
3615 : AF_INET6;
dff8f48d 3616
b682f6de 3617 json_object_int_add(json, "routeType",
57f7feb6
MK
3618 p->prefix.route_type);
3619 json_object_int_add(
3620 json, "esi",
3621 0); /* TODO: we don't support esi yet */
b682f6de 3622 json_object_int_add(json, "ethTag", 0);
57f7feb6 3623 json_object_int_add(json, "macLen", 8 * ETH_ALEN);
b682f6de 3624 json_object_string_add(json, "mac",
57f7feb6
MK
3625 prefix_mac2str(&p->prefix.mac,
3626 buf1,
3627 sizeof(buf1)));
b682f6de 3628 json_object_int_add(json, "ipLen",
57f7feb6
MK
3629 IS_EVPN_PREFIX_IPADDR_V4(p)
3630 ? IPV4_MAX_BITLEN
3631 : IPV6_MAX_BITLEN);
3632 json_object_string_add(
3633 json, "ip",
3634 inet_ntop(family, &p->prefix.ip.ip.addr, buf2,
3635 PREFIX2STR_BUFFER));
dff8f48d
MK
3636 }
3637 } else {
3638 /* Currently, this is to cater to other AF_ETHERNET code. */
3639 }
9c92b5f7
MK
3640}
3641
520d5d76 3642/*
3643 * Function to convert evpn route to string.
3644 * NOTE: We don't use prefix2str as the output here is a bit different.
3645 */
d62a17ae 3646char *bgp_evpn_route2str(struct prefix_evpn *p, char *buf, int len)
3647{
3648 char buf1[ETHER_ADDR_STRLEN];
3649 char buf2[PREFIX2STR_BUFFER];
3650
3651 if (p->prefix.route_type == BGP_EVPN_IMET_ROUTE) {
3652 snprintf(buf, len, "[%d]:[0]:[%d]:[%s]", p->prefix.route_type,
3653 IS_EVPN_PREFIX_IPADDR_V4(p) ? IPV4_MAX_BITLEN
3654 : IPV6_MAX_BITLEN,
3655 inet_ntoa(p->prefix.ip.ipaddr_v4));
3656 } else if (p->prefix.route_type == BGP_EVPN_MAC_IP_ROUTE) {
3657 if (IS_EVPN_PREFIX_IPADDR_NONE(p))
3658 snprintf(buf, len, "[%d]:[0]:[0]:[%d]:[%s]",
28328ea9 3659 p->prefix.route_type, 8 * ETH_ALEN,
d62a17ae 3660 prefix_mac2str(&p->prefix.mac, buf1,
3661 sizeof(buf1)));
3662 else {
3663 u_char family;
3664
3665 family = IS_EVPN_PREFIX_IPADDR_V4(p) ? AF_INET
3666 : AF_INET6;
3667 snprintf(buf, len, "[%d]:[0]:[0]:[%d]:[%s]:[%d]:[%s]",
28328ea9 3668 p->prefix.route_type, 8 * ETH_ALEN,
d62a17ae 3669 prefix_mac2str(&p->prefix.mac, buf1,
3670 sizeof(buf1)),
3671 family == AF_INET ? IPV4_MAX_BITLEN
3672 : IPV6_MAX_BITLEN,
3673 inet_ntop(family, &p->prefix.ip.ip.addr, buf2,
3674 PREFIX2STR_BUFFER));
3675 }
342dd0c6 3676 } else if (p->prefix.route_type == BGP_EVPN_IP_PREFIX_ROUTE) {
b3628c70 3677 snprintf(buf, len, "[%d]:[0]:[0]:[%d]:[%s]",
342dd0c6 3678 p->prefix.route_type,
3679 p->prefix.ip_prefix_length,
3680 IS_EVPN_PREFIX_IPADDR_V4(p) ?
3681 inet_ntoa(p->prefix.ip.ipaddr_v4) :
3682 inet6_ntoa(p->prefix.ip.ipaddr_v6));
d62a17ae 3683 } else {
b03b8898 3684 /* For EVPN route types not supported yet. */
f9aa3e55
QY
3685 snprintf(buf, len, "(unsupported route type %d)",
3686 p->prefix.route_type);
d62a17ae 3687 }
3688
3689 return (buf);
520d5d76 3690}
3691
128ea8ab 3692/*
3693 * Encode EVPN prefix in Update (MP_REACH)
3694 */
d62a17ae 3695void bgp_evpn_encode_prefix(struct stream *s, struct prefix *p,
b57ba6d2
MK
3696 struct prefix_rd *prd,
3697 mpls_label_t *label, u_int32_t num_labels,
d62a17ae 3698 struct attr *attr, int addpath_encode,
3699 u_int32_t addpath_tx_id)
3700{
3701 struct prefix_evpn *evp = (struct prefix_evpn *)p;
b57ba6d2 3702 int len, ipa_len = 0;
d62a17ae 3703
3704 if (addpath_encode)
3705 stream_putl(s, addpath_tx_id);
3706
3707 /* Route type */
3708 stream_putc(s, evp->prefix.route_type);
3709
3710 switch (evp->prefix.route_type) {
3711 case BGP_EVPN_MAC_IP_ROUTE:
3712 if (IS_EVPN_PREFIX_IPADDR_V4(evp))
3713 ipa_len = IPV4_MAX_BYTELEN;
3714 else if (IS_EVPN_PREFIX_IPADDR_V6(evp))
3715 ipa_len = IPV6_MAX_BYTELEN;
b57ba6d2
MK
3716 /* RD, ESI, EthTag, MAC+len, IP len, [IP], 1 VNI */
3717 len = 8 + 10 + 4 + 1 + 6 + 1 + ipa_len + 3;
3718 if (ipa_len && num_labels > 1) /* There are 2 VNIs */
3719 len += 3;
3720 stream_putc(s, len);
d62a17ae 3721 stream_put(s, prd->val, 8); /* RD */
3722 stream_put(s, 0, 10); /* ESI */
3723 stream_putl(s, 0); /* Ethernet Tag ID */
28328ea9 3724 stream_putc(s, 8 * ETH_ALEN); /* Mac Addr Len - bits */
d62a17ae 3725 stream_put(s, evp->prefix.mac.octet, 6); /* Mac Addr */
3726 stream_putc(s, 8 * ipa_len); /* IP address Length */
b57ba6d2
MK
3727 if (ipa_len) /* IP */
3728 stream_put(s, &evp->prefix.ip.ip.addr, ipa_len);
3729 /* 1st label is the L2 VNI */
3730 stream_put(s, label, BGP_LABEL_BYTES);
3731 /* Include 2nd label (L3 VNI) if advertising MAC+IP */
3732 if (ipa_len && num_labels > 1)
3733 stream_put(s, label+1, BGP_LABEL_BYTES);
d62a17ae 3734 break;
3735
3736 case BGP_EVPN_IMET_ROUTE:
3737 stream_putc(s, 17); // TODO: length - assumes IPv4 address
3738 stream_put(s, prd->val, 8); /* RD */
3739 stream_putl(s, 0); /* Ethernet Tag ID */
3740 stream_putc(s, IPV4_MAX_BITLEN); /* IP address Length - bits */
3741 /* Originating Router's IP Addr */
3742 stream_put_in_addr(s, &evp->prefix.ip.ipaddr_v4);
3743 break;
3744
3745 case BGP_EVPN_IP_PREFIX_ROUTE:
3746 /* TODO: AddPath support. */
b57ba6d2 3747 evpn_mpattr_encode_type5(s, p, prd, label, num_labels, attr);
d62a17ae 3748 break;
3749
3750 default:
3751 break;
3752 }
3753}
3754
3755int bgp_nlri_parse_evpn(struct peer *peer, struct attr *attr,
3756 struct bgp_nlri *packet, int withdraw)
3757{
3758 u_char *pnt;
3759 u_char *lim;
3760 afi_t afi;
3761 safi_t safi;
3762 u_int32_t addpath_id;
3763 int addpath_encoded;
3764 int psize = 0;
3765 u_char rtype;
3766 u_char rlen;
3767 struct prefix p;
3768
3769 /* Check peer status. */
3770 if (peer->status != Established) {
3771 zlog_err("%u:%s - EVPN update received in state %d",
3772 peer->bgp->vrf_id, peer->host, peer->status);
3773 return -1;
3774 }
3775
3776 /* Start processing the NLRI - there may be multiple in the MP_REACH */
3777 pnt = packet->nlri;
3778 lim = pnt + packet->length;
3779 afi = packet->afi;
3780 safi = packet->safi;
3781 addpath_id = 0;
3782
3783 addpath_encoded =
3784 (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ADDPATH_AF_RX_ADV)
3785 && CHECK_FLAG(peer->af_cap[afi][safi],
3786 PEER_CAP_ADDPATH_AF_TX_RCV));
3787
3788 for (; pnt < lim; pnt += psize) {
3789 /* Clear prefix structure. */
3790 memset(&p, 0, sizeof(struct prefix));
3791
3792 /* Deal with path-id if AddPath is supported. */
3793 if (addpath_encoded) {
3794 /* When packet overflow occurs return immediately. */
3795 if (pnt + BGP_ADDPATH_ID_LEN > lim)
3796 return -1;
3797
3798 addpath_id = ntohl(*((uint32_t *)pnt));
3799 pnt += BGP_ADDPATH_ID_LEN;
3800 }
3801
3802 /* All EVPN NLRI types start with type and length. */
3803 if (pnt + 2 > lim)
3804 return -1;
3805
3806 rtype = *pnt++;
3807 psize = rlen = *pnt++;
3808
3809 /* When packet overflow occur return immediately. */
3810 if (pnt + psize > lim)
3811 return -1;
3812
3813 switch (rtype) {
3814 case BGP_EVPN_MAC_IP_ROUTE:
3815 if (process_type2_route(peer, afi, safi,
3816 withdraw ? NULL : attr, pnt,
3817 psize, addpath_id)) {
3818 zlog_err(
3819 "%u:%s - Error in processing EVPN type-2 NLRI size %d",
3820 peer->bgp->vrf_id, peer->host, psize);
3821 return -1;
3822 }
3823 break;
3824
3825 case BGP_EVPN_IMET_ROUTE:
3826 if (process_type3_route(peer, afi, safi,
3827 withdraw ? NULL : attr, pnt,
3828 psize, addpath_id)) {
3829 zlog_err(
3830 "%u:%s - Error in processing EVPN type-3 NLRI size %d",
3831 peer->bgp->vrf_id, peer->host, psize);
3832 return -1;
3833 }
3834 break;
3835
3836 case BGP_EVPN_IP_PREFIX_ROUTE:
3837 if (process_type5_route(peer, afi, safi, attr, pnt,
3838 psize, addpath_id, withdraw)) {
3839 zlog_err(
3840 "%u:%s - Error in processing EVPN type-5 NLRI size %d",
3841 peer->bgp->vrf_id, peer->host, psize);
3842 return -1;
3843 }
3844 break;
3845
3846 default:
3847 break;
3848 }
3849 }
3850
3851 /* Packet length consistency check. */
3852 if (pnt != lim)
3853 return -1;
3854
3855 return 0;
128ea8ab 3856}
3857
10ebe1ab
MK
3858/*
3859 * Map the RTs (configured or automatically derived) of a VRF to the VRF.
3860 * The mapping will be used during route processing.
3861 * bgp_def: default bgp instance
3862 * bgp_vrf: specific bgp vrf instance on which RT is configured
3863 */
3864void bgp_evpn_map_vrf_to_its_rts(struct bgp *bgp_vrf)
3865{
3866 int i = 0;
3867 struct ecommunity_val *eval = NULL;
3868 struct listnode *node = NULL, *nnode = NULL;
3869 struct ecommunity *ecom = NULL;
3870
3871 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
3872 for (i = 0; i < ecom->size; i++) {
3873 eval = (struct ecommunity_val *)(ecom->val
3874 + (i
3875 * ECOMMUNITY_SIZE));
3876 map_vrf_to_rt(bgp_vrf, eval);
3877 }
3878 }
3879}
3880
3881/*
3882 * Unmap the RTs (configured or automatically derived) of a VRF from the VRF.
3883 */
3884void bgp_evpn_unmap_vrf_from_its_rts(struct bgp *bgp_vrf)
3885{
3886 int i;
3887 struct ecommunity_val *eval;
3888 struct listnode *node, *nnode;
3889 struct ecommunity *ecom;
3890
3891 for (ALL_LIST_ELEMENTS(bgp_vrf->vrf_import_rtl, node, nnode, ecom)) {
3892 for (i = 0; i < ecom->size; i++) {
3893 struct vrf_irt_node *irt;
3894 struct ecommunity_val eval_tmp;
3895
3896 eval = (struct ecommunity_val *)(ecom->val
3897 + (i
3898 * ECOMMUNITY_SIZE));
3899 /* If using "automatic" RT, we only care about the
3900 * local-admin sub-field.
3901 * This is to facilitate using VNI as the RT for EBGP
3902 * peering too.
3903 */
3904 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
3905 if (!CHECK_FLAG(bgp_vrf->vrf_flags,
3906 BGP_VRF_IMPORT_RT_CFGD))
3907 mask_ecom_global_admin(&eval_tmp, eval);
3908
3909 irt = lookup_vrf_import_rt(&eval_tmp);
3910 if (irt)
3911 unmap_vrf_from_rt(bgp_vrf, irt);
3912 }
3913 }
3914}
3915
3916
128ea8ab 3917
3918/*
3919 * Map the RTs (configured or automatically derived) of a VNI to the VNI.
3920 * The mapping will be used during route processing.
3921 */
d62a17ae 3922void bgp_evpn_map_vni_to_its_rts(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 3923{
d62a17ae 3924 int i;
3925 struct ecommunity_val *eval;
3926 struct listnode *node, *nnode;
3927 struct ecommunity *ecom;
128ea8ab 3928
d62a17ae 3929 for (ALL_LIST_ELEMENTS(vpn->import_rtl, node, nnode, ecom)) {
3930 for (i = 0; i < ecom->size; i++) {
3931 eval = (struct ecommunity_val *)(ecom->val
3932 + (i
3933 * ECOMMUNITY_SIZE));
3934 map_vni_to_rt(bgp, vpn, eval);
3935 }
3936 }
128ea8ab 3937}
3938
3939/*
3940 * Unmap the RTs (configured or automatically derived) of a VNI from the VNI.
3941 */
d62a17ae 3942void bgp_evpn_unmap_vni_from_its_rts(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 3943{
d62a17ae 3944 int i;
3945 struct ecommunity_val *eval;
3946 struct listnode *node, *nnode;
3947 struct ecommunity *ecom;
128ea8ab 3948
d62a17ae 3949 for (ALL_LIST_ELEMENTS(vpn->import_rtl, node, nnode, ecom)) {
3950 for (i = 0; i < ecom->size; i++) {
3951 struct irt_node *irt;
3952 struct ecommunity_val eval_tmp;
128ea8ab 3953
d62a17ae 3954 eval = (struct ecommunity_val *)(ecom->val
3955 + (i
3956 * ECOMMUNITY_SIZE));
3957 /* If using "automatic" RT, we only care about the
3958 * local-admin sub-field.
3959 * This is to facilitate using VNI as the RT for EBGP
3960 * peering too.
3961 */
3962 memcpy(&eval_tmp, eval, ECOMMUNITY_SIZE);
3963 if (!is_import_rt_configured(vpn))
3964 mask_ecom_global_admin(&eval_tmp, eval);
128ea8ab 3965
d62a17ae 3966 irt = lookup_import_rt(bgp, &eval_tmp);
3967 if (irt)
3968 unmap_vni_from_rt(bgp, vpn, irt);
3969 }
3970 }
128ea8ab 3971}
3972
3973/*
3974 * Derive Import RT automatically for VNI and map VNI to RT.
3975 * The mapping will be used during route processing.
3976 */
d62a17ae 3977void bgp_evpn_derive_auto_rt_import(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 3978{
c581d8b0 3979 form_auto_rt(bgp, vpn->vni, vpn->import_rtl);
d62a17ae 3980 UNSET_FLAG(vpn->flags, VNI_FLAG_IMPRT_CFGD);
128ea8ab 3981
d62a17ae 3982 /* Map RT to VNI */
3983 bgp_evpn_map_vni_to_its_rts(bgp, vpn);
128ea8ab 3984}
3985
3986/*
3987 * Derive Export RT automatically for VNI.
3988 */
d62a17ae 3989void bgp_evpn_derive_auto_rt_export(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 3990{
c581d8b0 3991 form_auto_rt(bgp, vpn->vni, vpn->export_rtl);
d62a17ae 3992 UNSET_FLAG(vpn->flags, VNI_FLAG_EXPRT_CFGD);
128ea8ab 3993}
3994
676f83b9 3995/*
3996 * Derive RD automatically for VNI using passed information - it
3997 * is of the form RouterId:unique-id-for-vni.
3998 */
3999void bgp_evpn_derive_auto_rd_for_vrf(struct bgp *bgp)
4000{
4001 char buf[100];
4002
4003 bgp->vrf_prd.family = AF_UNSPEC;
4004 bgp->vrf_prd.prefixlen = 64;
4005 sprintf(buf, "%s:%hu", inet_ntoa(bgp->router_id), bgp->vrf_rd_id);
4006 str2prefix_rd(buf, &bgp->vrf_prd);
4007}
4008
128ea8ab 4009/*
4010 * Derive RD automatically for VNI using passed information - it
4011 * is of the form RouterId:unique-id-for-vni.
4012 */
d62a17ae 4013void bgp_evpn_derive_auto_rd(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 4014{
d62a17ae 4015 char buf[100];
128ea8ab 4016
d62a17ae 4017 vpn->prd.family = AF_UNSPEC;
4018 vpn->prd.prefixlen = 64;
4019 sprintf(buf, "%s:%hu", inet_ntoa(bgp->router_id), vpn->rd_id);
cbb65f5e 4020 (void)str2prefix_rd(buf, &vpn->prd);
d62a17ae 4021 UNSET_FLAG(vpn->flags, VNI_FLAG_RD_CFGD);
128ea8ab 4022}
4023
4024/*
4025 * Lookup VNI.
4026 */
d62a17ae 4027struct bgpevpn *bgp_evpn_lookup_vni(struct bgp *bgp, vni_t vni)
128ea8ab 4028{
d62a17ae 4029 struct bgpevpn *vpn;
4030 struct bgpevpn tmp;
128ea8ab 4031
d62a17ae 4032 memset(&tmp, 0, sizeof(struct bgpevpn));
4033 tmp.vni = vni;
4034 vpn = hash_lookup(bgp->vnihash, &tmp);
4035 return vpn;
128ea8ab 4036}
4037
4038/*
4039 * Create a new vpn - invoked upon configuration or zebra notification.
4040 */
d62a17ae 4041struct bgpevpn *bgp_evpn_new(struct bgp *bgp, vni_t vni,
29c53922
MK
4042 struct in_addr originator_ip,
4043 vrf_id_t tenant_vrf_id)
128ea8ab 4044{
d62a17ae 4045 struct bgpevpn *vpn;
128ea8ab 4046
d62a17ae 4047 if (!bgp)
4048 return NULL;
128ea8ab 4049
d62a17ae 4050 vpn = XCALLOC(MTYPE_BGP_EVPN, sizeof(struct bgpevpn));
4051 if (!vpn)
4052 return NULL;
128ea8ab 4053
d62a17ae 4054 /* Set values - RD and RT set to defaults. */
4055 vpn->vni = vni;
4056 vpn->originator_ip = originator_ip;
29c53922 4057 vpn->tenant_vrf_id = tenant_vrf_id;
128ea8ab 4058
d62a17ae 4059 /* Initialize route-target import and export lists */
4060 vpn->import_rtl = list_new();
4061 vpn->import_rtl->cmp = (int (*)(void *, void *))evpn_route_target_cmp;
4062 vpn->export_rtl = list_new();
4063 vpn->export_rtl->cmp = (int (*)(void *, void *))evpn_route_target_cmp;
e9eb5f63 4064 bf_assign_index(bm->rd_idspace, vpn->rd_id);
d62a17ae 4065 derive_rd_rt_for_vni(bgp, vpn);
128ea8ab 4066
d62a17ae 4067 /* Initialize EVPN route table. */
4068 vpn->route_table = bgp_table_init(AFI_L2VPN, SAFI_EVPN);
128ea8ab 4069
d62a17ae 4070 /* Add to hash */
4071 if (!hash_get(bgp->vnihash, vpn, hash_alloc_intern)) {
4072 XFREE(MTYPE_BGP_EVPN, vpn);
4073 return NULL;
4074 }
6a8657d0
MK
4075
4076 /* add to l2vni list on corresponding vrf */
4077 bgpevpn_link_to_l3vni(vpn);
4078
d62a17ae 4079 QOBJ_REG(vpn, bgpevpn);
4080 return vpn;
128ea8ab 4081}
4082
4083/*
4084 * Free a given VPN - called in multiple scenarios such as zebra
4085 * notification, configuration being deleted, advertise-all-vni disabled etc.
4086 * This just frees appropriate memory, caller should have taken other
4087 * needed actions.
4088 */
d62a17ae 4089void bgp_evpn_free(struct bgp *bgp, struct bgpevpn *vpn)
128ea8ab 4090{
6a8657d0 4091 bgpevpn_unlink_from_l3vni(vpn);
d62a17ae 4092 bgp_table_unlock(vpn->route_table);
4093 bgp_evpn_unmap_vni_from_its_rts(bgp, vpn);
affe9e99
DS
4094 list_delete_and_null(&vpn->import_rtl);
4095 list_delete_and_null(&vpn->export_rtl);
e9eb5f63 4096 bf_release_index(bm->rd_idspace, vpn->rd_id);
d62a17ae 4097 hash_release(bgp->vnihash, vpn);
4098 QOBJ_UNREG(vpn);
4099 XFREE(MTYPE_BGP_EVPN, vpn);
128ea8ab 4100}
4101
4102/*
4103 * Import route into matching VNI(s).
4104 */
d62a17ae 4105int bgp_evpn_import_route(struct bgp *bgp, afi_t afi, safi_t safi,
4106 struct prefix *p, struct bgp_info *ri)
128ea8ab 4107{
d62a17ae 4108 return install_uninstall_evpn_route(bgp, afi, safi, p, ri, 1);
128ea8ab 4109}
4110
4111/*
4112 * Unimport route from matching VNI(s).
4113 */
d62a17ae 4114int bgp_evpn_unimport_route(struct bgp *bgp, afi_t afi, safi_t safi,
4115 struct prefix *p, struct bgp_info *ri)
128ea8ab 4116{
d62a17ae 4117 return install_uninstall_evpn_route(bgp, afi, safi, p, ri, 0);
128ea8ab 4118}
4119
db0e1937
MK
4120/* filter routes which have martian next hops */
4121int bgp_filter_evpn_routes_upon_martian_nh_change(struct bgp *bgp)
4122{
0291c246
MK
4123 afi_t afi;
4124 safi_t safi;
4125 struct bgp_node *rd_rn, *rn;
4126 struct bgp_table *table;
4127 struct bgp_info *ri;
db0e1937
MK
4128
4129 afi = AFI_L2VPN;
4130 safi = SAFI_EVPN;
4131
4132 /* Walk entire global routing table and evaluate routes which could be
4133 * imported into this VPN. Note that we cannot just look at the routes
4134 * for the VNI's RD -
4135 * remote routes applicable for this VNI could have any RD.
4136 */
4137 /* EVPN routes are a 2-level table. */
4138 for (rd_rn = bgp_table_top(bgp->rib[afi][safi]); rd_rn;
4139 rd_rn = bgp_route_next(rd_rn)) {
4140 table = (struct bgp_table *)(rd_rn->info);
4141 if (!table)
4142 continue;
4143
4144 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
4145
4146 for (ri = rn->info; ri; ri = ri->next) {
4147
4148 /* Consider "valid" remote routes applicable for
4149 * this VNI. */
4150 if (!(ri->type == ZEBRA_ROUTE_BGP
4151 && ri->sub_type == BGP_ROUTE_NORMAL))
4152 continue;
4153
60466a63 4154 if (bgp_nexthop_self(bgp, ri->attr->nexthop)) {
db0e1937
MK
4155
4156 char attr_str[BUFSIZ];
4157 char pbuf[PREFIX_STRLEN];
4158
4159 bgp_dump_attr(ri->attr, attr_str,
4160 BUFSIZ);
4161
4162 if (bgp_debug_update(ri->peer, &rn->p,
4163 NULL, 1))
4164 zlog_debug(
b682f6de 4165 "%u: prefix %s with attr %s - DENIED due to martian or self nexthop",
db0e1937
MK
4166 bgp->vrf_id,
4167 prefix2str(
60466a63 4168 &rn->p, pbuf,
db0e1937
MK
4169 sizeof(pbuf)),
4170 attr_str);
4171
4172 bgp_evpn_unimport_route(bgp, afi, safi,
4173 &rn->p, ri);
4174
60466a63
QY
4175 bgp_rib_remove(rn, ri, ri->peer, afi,
4176 safi);
db0e1937 4177 }
db0e1937
MK
4178 }
4179 }
4180 }
4181
4182 return 0;
4183}
4184
128ea8ab 4185/*
4186 * Handle del of a local MACIP.
4187 */
d62a17ae 4188int bgp_evpn_local_macip_del(struct bgp *bgp, vni_t vni, struct ethaddr *mac,
4189 struct ipaddr *ip)
128ea8ab 4190{
d62a17ae 4191 struct bgpevpn *vpn;
4192 struct prefix_evpn p;
128ea8ab 4193
d62a17ae 4194 if (!bgp->vnihash) {
4195 zlog_err("%u: VNI hash not created", bgp->vrf_id);
4196 return -1;
4197 }
128ea8ab 4198
d62a17ae 4199 /* Lookup VNI hash - should exist. */
4200 vpn = bgp_evpn_lookup_vni(bgp, vni);
4201 if (!vpn || !is_vni_live(vpn)) {
4202 zlog_warn("%u: VNI hash entry for VNI %u %s at MACIP DEL",
4203 bgp->vrf_id, vni, vpn ? "not live" : "not found");
4204 return -1;
4205 }
128ea8ab 4206
d62a17ae 4207 /* Remove EVPN type-2 route and schedule for processing. */
4208 build_evpn_type2_prefix(&p, mac, ip);
4209 delete_evpn_route(bgp, vpn, &p);
128ea8ab 4210
d62a17ae 4211 return 0;
128ea8ab 4212}
4213
4214/*
4215 * Handle add of a local MACIP.
4216 */
d62a17ae 4217int bgp_evpn_local_macip_add(struct bgp *bgp, vni_t vni, struct ethaddr *mac,
1a98c087 4218 struct ipaddr *ip, u_char flags)
128ea8ab 4219{
d62a17ae 4220 struct bgpevpn *vpn;
4221 struct prefix_evpn p;
128ea8ab 4222
d62a17ae 4223 if (!bgp->vnihash) {
4224 zlog_err("%u: VNI hash not created", bgp->vrf_id);
4225 return -1;
4226 }
128ea8ab 4227
d62a17ae 4228 /* Lookup VNI hash - should exist. */
4229 vpn = bgp_evpn_lookup_vni(bgp, vni);
4230 if (!vpn || !is_vni_live(vpn)) {
4231 zlog_warn("%u: VNI hash entry for VNI %u %s at MACIP ADD",
4232 bgp->vrf_id, vni, vpn ? "not live" : "not found");
4233 return -1;
4234 }
128ea8ab 4235
d62a17ae 4236 /* Create EVPN type-2 route and schedule for processing. */
4237 build_evpn_type2_prefix(&p, mac, ip);
1a98c087 4238 if (update_evpn_route(bgp, vpn, &p, flags)) {
d62a17ae 4239 char buf[ETHER_ADDR_STRLEN];
4240 char buf2[INET6_ADDRSTRLEN];
128ea8ab 4241
d62a17ae 4242 zlog_err(
ead40654 4243 "%u:Failed to create Type-2 route, VNI %u %s MAC %s IP %s (flags: 0x%x)",
1a98c087 4244 bgp->vrf_id, vpn->vni,
317f1fe0 4245 CHECK_FLAG(flags, ZEBRA_MACIP_TYPE_STICKY) ? "sticky gateway"
1a98c087 4246 : "",
d62a17ae 4247 prefix_mac2str(mac, buf, sizeof(buf)),
ead40654
MK
4248 ipaddr2str(ip, buf2, sizeof(buf2)),
4249 flags);
d62a17ae 4250 return -1;
4251 }
128ea8ab 4252
d62a17ae 4253 return 0;
128ea8ab 4254}
4255
6a8657d0
MK
4256static void link_l2vni_hash_to_l3vni(struct hash_backet *backet,
4257 struct bgp *bgp_vrf)
4258{
4259 struct bgpevpn *vpn = NULL;
4260 struct bgp *bgp_def = NULL;
4261
4262 bgp_def = bgp_get_default();
4263 assert(bgp_def);
4264
4265 vpn = (struct bgpevpn *)backet->data;
4266 if (vpn->tenant_vrf_id == bgp_vrf->vrf_id)
4267 bgpevpn_link_to_l3vni(vpn);
4268}
4269
fe1dc5a3
MK
4270int bgp_evpn_local_l3vni_add(vni_t l3vni,
4271 vrf_id_t vrf_id,
b67a60d2 4272 struct ethaddr *rmac,
c48d9f5f
MK
4273 struct in_addr originator_ip,
4274 int filter)
fe1dc5a3
MK
4275{
4276 struct bgp *bgp_vrf = NULL; /* bgp VRF instance */
4277 struct bgp *bgp_def = NULL; /* default bgp instance */
f1f8b53c
MK
4278 struct listnode *node = NULL;
4279 struct bgpevpn *vpn = NULL;
fe1dc5a3
MK
4280 as_t as = 0;
4281
4282 /* get the default instamce - required to get the AS number for VRF
523cafc4 4283 * auto-creatio
4284 */
fe1dc5a3
MK
4285 bgp_def = bgp_get_default();
4286 if (!bgp_def) {
4287 zlog_err("Cannot process L3VNI %u ADD - default BGP instance not yet created",
4288 l3vni);
4289 return -1;
4290 }
4291 as = bgp_def->as;
4292
4293 /* if the BGP vrf instance doesnt exist - create one */
0b5131c9 4294 bgp_vrf = bgp_lookup_by_name(vrf_id_to_name(vrf_id));
fe1dc5a3
MK
4295 if (!bgp_vrf) {
4296
4297 int ret = 0;
4298
4299 ret = bgp_get(&bgp_vrf, &as, vrf_id_to_name(vrf_id),
4300 BGP_INSTANCE_TYPE_VRF);
4301 switch (ret) {
4302 case BGP_ERR_MULTIPLE_INSTANCE_NOT_SET:
4303 zlog_err("'bgp multiple-instance' not present\n");
4304 return -1;
4305 case BGP_ERR_AS_MISMATCH:
4306 zlog_err("BGP is already running; AS is %u\n", as);
4307 return -1;
4308 case BGP_ERR_INSTANCE_MISMATCH:
4309 zlog_err("BGP instance name and AS number mismatch\n");
4310 return -1;
4311 }
4312
4313 /* mark as auto created */
4314 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_AUTO);
4315 }
4316
4317 /* associate with l3vni */
4318 bgp_vrf->l3vni = l3vni;
4319
4320 /* set the router mac - to be used in mac-ip routes for this vrf */
4321 memcpy(&bgp_vrf->rmac, rmac, sizeof(struct ethaddr));
4322
b67a60d2 4323 /* set the originator ip */
4324 bgp_vrf->originator_ip = originator_ip;
4325
c48d9f5f
MK
4326 /* set the right filter - are we using l3vni only for prefix routes? */
4327 if (filter)
4328 SET_FLAG(bgp_vrf->vrf_flags, BGP_VRF_L3VNI_PREFIX_ROUTES_ONLY);
4329
c581d8b0
MK
4330 /* auto derive RD/RT */
4331 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_IMPORT_RT_CFGD))
4332 evpn_auto_rt_import_add_for_vrf(bgp_vrf);
4333 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_EXPORT_RT_CFGD))
4334 evpn_auto_rt_export_add_for_vrf(bgp_vrf);
676f83b9 4335 bgp_evpn_derive_auto_rd_for_vrf(bgp_vrf);
fe1dc5a3 4336
6a8657d0
MK
4337 /* link all corresponding l2vnis */
4338 hash_iterate(bgp_def->vnihash,
4339 (void (*)(struct hash_backet *, void *))
4340 link_l2vni_hash_to_l3vni,
4341 bgp_vrf);
4342
c48d9f5f
MK
4343 /* Only update all corresponding type-2 routes if we are advertising two
4344 * labels along with type-2 routes
4345 */
4346 if (!filter)
4347 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn))
4348 update_routes_for_vni(bgp_def, vpn);
fe1dc5a3 4349
06d2e8f3
MK
4350 /* advertise type-5 routes if needed */
4351 update_advertise_vrf_routes(bgp_vrf);
4352
5ba238b7
MK
4353 /* install all remote routes belonging to this l3vni into correspondng
4354 * vrf */
4355 install_routes_for_vrf(bgp_vrf);
fe1dc5a3
MK
4356
4357 return 0;
4358}
4359
4360int bgp_evpn_local_l3vni_del(vni_t l3vni,
4361 vrf_id_t vrf_id)
4362{
4363 struct bgp *bgp_vrf = NULL; /* bgp vrf instance */
f1f8b53c
MK
4364 struct bgp *bgp_def = NULL; /* default bgp instance */
4365 struct listnode *node = NULL;
4366 struct bgpevpn *vpn = NULL;
fe1dc5a3
MK
4367
4368 bgp_vrf = bgp_lookup_by_vrf_id(vrf_id);
4369 if (!bgp_vrf) {
4370 zlog_err("Cannot process L3VNI %u Del - Could not find BGP instance",
4371 l3vni);
4372 return -1;
4373 }
4374
f1f8b53c
MK
4375 bgp_def = bgp_get_default();
4376 if (!bgp_def) {
4377 zlog_err("Cannot process L3VNI %u Del - Could not find default BGP instance",
4378 l3vni);
4379 return -1;
4380 }
4381
1eb88002 4382 /* unimport remote routes from VRF, if it is AUTO vrf bgp_delete will
523cafc4 4383 * take care of uninstalling the routes from zebra
4384 */
1eb88002
MK
4385 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_AUTO))
4386 uninstall_routes_for_vrf(bgp_vrf);
5ba238b7 4387
06d2e8f3
MK
4388 /* delete/withdraw all type-5 routes */
4389 delete_withdraw_vrf_routes(bgp_vrf);
4390
fe1dc5a3
MK
4391 /* remove the l3vni from vrf instance */
4392 bgp_vrf->l3vni = 0;
4393
4394 /* remove the Rmac from the BGP vrf */
4395 memset(&bgp_vrf->rmac, 0, sizeof(struct ethaddr));
4396
c581d8b0 4397 /* delete RD/RT */
23a06e11 4398 if (bgp_vrf->vrf_import_rtl && !list_isempty(bgp_vrf->vrf_import_rtl)) {
10ebe1ab 4399 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
5ba238b7 4400 list_delete_all_node(bgp_vrf->vrf_import_rtl);
23a06e11
MK
4401 }
4402 if (bgp_vrf->vrf_export_rtl && !list_isempty(bgp_vrf->vrf_export_rtl)) {
5ba238b7 4403 list_delete_all_node(bgp_vrf->vrf_export_rtl);
23a06e11 4404 }
fe1dc5a3 4405
f1f8b53c 4406 /* update all corresponding local mac-ip routes */
c48d9f5f
MK
4407 if (!CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_L3VNI_PREFIX_ROUTES_ONLY)) {
4408 for (ALL_LIST_ELEMENTS_RO(bgp_vrf->l2vnis, node, vpn)) {
4409 UNSET_FLAG(vpn->flags, VNI_FLAG_USE_TWO_LABELS);
4410 update_routes_for_vni(bgp_def, vpn);
4411 }
4412 }
fe1dc5a3
MK
4413
4414 /* Delete the instance if it was autocreated */
4415 if (CHECK_FLAG(bgp_vrf->vrf_flags, BGP_VRF_AUTO))
4416 bgp_delete(bgp_vrf);
4417
4418 return 0;
4419}
4420
128ea8ab 4421/*
4422 * Handle del of a local VNI.
4423 */
d62a17ae 4424int bgp_evpn_local_vni_del(struct bgp *bgp, vni_t vni)
128ea8ab 4425{
d62a17ae 4426 struct bgpevpn *vpn;
128ea8ab 4427
d62a17ae 4428 if (!bgp->vnihash) {
4429 zlog_err("%u: VNI hash not created", bgp->vrf_id);
4430 return -1;
4431 }
128ea8ab 4432
d62a17ae 4433 /* Locate VNI hash */
4434 vpn = bgp_evpn_lookup_vni(bgp, vni);
4435 if (!vpn) {
4436 zlog_warn("%u: VNI hash entry for VNI %u not found at DEL",
4437 bgp->vrf_id, vni);
4438 return 0;
4439 }
128ea8ab 4440
d62a17ae 4441 /* Remove all local EVPN routes and schedule for processing (to
4442 * withdraw from peers).
4443 */
4444 delete_routes_for_vni(bgp, vpn);
128ea8ab 4445
db0e1937
MK
4446 /*
4447 * tunnel is no longer active, del tunnel ip address from tip_hash
4448 */
4449 bgp_tip_del(bgp, &vpn->originator_ip);
4450
d62a17ae 4451 /* Clear "live" flag and see if hash needs to be freed. */
4452 UNSET_FLAG(vpn->flags, VNI_FLAG_LIVE);
4453 if (!is_vni_configured(vpn))
4454 bgp_evpn_free(bgp, vpn);
128ea8ab 4455
d62a17ae 4456 return 0;
128ea8ab 4457}
4458
4459/*
d1911c26 4460 * Handle add (or update) of a local VNI. The VNI changes we care
4461 * about are for the local-tunnel-ip and the (tenant) VRF.
128ea8ab 4462 */
d62a17ae 4463int bgp_evpn_local_vni_add(struct bgp *bgp, vni_t vni,
29c53922
MK
4464 struct in_addr originator_ip,
4465 vrf_id_t tenant_vrf_id)
d62a17ae 4466{
4467 struct bgpevpn *vpn;
4468 struct prefix_evpn p;
4469
4470 if (!bgp->vnihash) {
4471 zlog_err("%u: VNI hash not created", bgp->vrf_id);
4472 return -1;
4473 }
4474
4475 /* Lookup VNI. If present and no change, exit. */
4476 vpn = bgp_evpn_lookup_vni(bgp, vni);
ddd16ed5 4477 if (vpn) {
29c53922 4478
d1911c26 4479 if (is_vni_live(vpn)
4480 && IPV4_ADDR_SAME(&vpn->originator_ip, &originator_ip)
4481 && vpn->tenant_vrf_id == tenant_vrf_id)
4482 /* Probably some other param has changed that we don't
4483 * care about. */
4484 return 0;
4485
4486 /* Update tenant_vrf_id if it has changed. */
6a8657d0
MK
4487 if (vpn->tenant_vrf_id != tenant_vrf_id) {
4488 bgpevpn_unlink_from_l3vni(vpn);
29c53922 4489 vpn->tenant_vrf_id = tenant_vrf_id;
6a8657d0
MK
4490 bgpevpn_link_to_l3vni(vpn);
4491 }
29c53922 4492
d1911c26 4493 /* If tunnel endpoint IP has changed, update (and delete prior
4494 * type-3 route, if needed.)
4495 */
4496 if (!IPV4_ADDR_SAME(&vpn->originator_ip, &originator_ip))
4497 handle_tunnel_ip_change(bgp, vpn, originator_ip);
d62a17ae 4498
d1911c26 4499 /* Update all routes with new endpoint IP and/or export RT
4500 * for VRFs
4501 */
4502 if (is_vni_live(vpn))
4503 update_routes_for_vni(bgp, vpn);
d62a17ae 4504 }
4505
4506 /* Create or update as appropriate. */
4507 if (!vpn) {
29c53922 4508 vpn = bgp_evpn_new(bgp, vni, originator_ip, tenant_vrf_id);
d62a17ae 4509 if (!vpn) {
4510 zlog_err(
4511 "%u: Failed to allocate VNI entry for VNI %u - at Add",
4512 bgp->vrf_id, vni);
4513 return -1;
4514 }
4515 }
4516
db0e1937 4517 /* if the VNI is live already, there is nothing more to do */
ddd16ed5
MK
4518 if (is_vni_live(vpn))
4519 return 0;
4520
d62a17ae 4521 /* Mark as "live" */
4522 SET_FLAG(vpn->flags, VNI_FLAG_LIVE);
4523
db0e1937
MK
4524 /* tunnel is now active, add tunnel-ip to db */
4525 bgp_tip_add(bgp, &originator_ip);
4526
4527 /* filter routes as nexthop database has changed */
4528 bgp_filter_evpn_routes_upon_martian_nh_change(bgp);
4529
d62a17ae 4530 /* Create EVPN type-3 route and schedule for processing. */
4531 build_evpn_type3_prefix(&p, vpn->originator_ip);
4532 if (update_evpn_route(bgp, vpn, &p, 0)) {
4533 zlog_err("%u: Type3 route creation failure for VNI %u",
4534 bgp->vrf_id, vni);
4535 return -1;
4536 }
4537
4538 /* If we have learnt and retained remote routes (VTEPs, MACs) for this
4539 * VNI,
4540 * install them.
4541 */
4542 install_routes_for_vni(bgp, vpn);
4543
d7d97010
MK
4544 /* If we are advertising gateway mac-ip
4545 It needs to be conveyed again to zebra */
4546 bgp_zebra_advertise_gw_macip(bgp, vpn->advertise_gw_macip, vpn->vni);
4547
d62a17ae 4548 return 0;
b18825eb 4549}
14c1a7bf 4550
7724c0a1 4551/*
4552 * Cleanup EVPN information on disable - Need to delete and withdraw
4553 * EVPN routes from peers.
4554 */
d62a17ae 4555void bgp_evpn_cleanup_on_disable(struct bgp *bgp)
7724c0a1 4556{
9d303b37
DL
4557 hash_iterate(bgp->vnihash, (void (*)(struct hash_backet *,
4558 void *))cleanup_vni_on_disable,
4559 bgp);
7724c0a1 4560}
4561
14c1a7bf 4562/*
4563 * Cleanup EVPN information - invoked at the time of bgpd exit or when the
4564 * BGP instance (default) is being freed.
4565 */
d62a17ae 4566void bgp_evpn_cleanup(struct bgp *bgp)
14c1a7bf 4567{
d62a17ae 4568 if (bgp->vnihash)
9d303b37
DL
4569 hash_iterate(bgp->vnihash, (void (*)(struct hash_backet *,
4570 void *))free_vni_entry,
4571 bgp);
d62a17ae 4572 if (bgp->import_rt_hash)
4573 hash_free(bgp->import_rt_hash);
4574 bgp->import_rt_hash = NULL;
10ebe1ab
MK
4575 if (bgp->vrf_import_rt_hash)
4576 hash_free(bgp->vrf_import_rt_hash);
4577 bgp->vrf_import_rt_hash = NULL;
d62a17ae 4578 if (bgp->vnihash)
4579 hash_free(bgp->vnihash);
4580 bgp->vnihash = NULL;
c581d8b0 4581 if (bgp->vrf_import_rtl)
bb7a24ab 4582 list_delete_and_null(&bgp->vrf_import_rtl);
c581d8b0 4583 if (bgp->vrf_export_rtl)
bb7a24ab 4584 list_delete_and_null(&bgp->vrf_export_rtl);
6a8657d0 4585 if (bgp->l2vnis)
bb7a24ab 4586 list_delete_and_null(&bgp->l2vnis);
676f83b9 4587 bf_release_index(bm->rd_idspace, bgp->vrf_rd_id);
14c1a7bf 4588}
4589
4590/*
4591 * Initialization for EVPN
4592 * Create
4593 * VNI hash table
4594 * hash for RT to VNI
676f83b9 4595 * assign a unique rd id for auto derivation of vrf_prd
14c1a7bf 4596 */
d62a17ae 4597void bgp_evpn_init(struct bgp *bgp)
4598{
4599 bgp->vnihash =
4600 hash_create(vni_hash_key_make, vni_hash_cmp, "BGP VNI Hash");
4601 bgp->import_rt_hash =
4602 hash_create(import_rt_hash_key_make, import_rt_hash_cmp,
4603 "BGP Import RT Hash");
10ebe1ab
MK
4604 bgp->vrf_import_rt_hash =
4605 hash_create(vrf_import_rt_hash_key_make, vrf_import_rt_hash_cmp,
4606 "BGP VRF Import RT Hash");
c581d8b0
MK
4607 bgp->vrf_import_rtl = list_new();
4608 bgp->vrf_import_rtl->cmp =
4609 (int (*)(void *, void *))evpn_route_target_cmp;
4610
4611 bgp->vrf_export_rtl = list_new();
4612 bgp->vrf_export_rtl->cmp =
4613 (int (*)(void *, void *))evpn_route_target_cmp;
6a8657d0
MK
4614 bgp->l2vnis = list_new();
4615 bgp->l2vnis->cmp =
4616 (int (*)(void *, void *))vni_hash_cmp;
676f83b9 4617 bf_assign_index(bm->rd_idspace, bgp->vrf_rd_id);
4618
14c1a7bf 4619}
10ebe1ab
MK
4620
4621void bgp_evpn_vrf_delete(struct bgp *bgp_vrf)
4622{
4623 bgp_evpn_unmap_vrf_from_its_rts(bgp_vrf);
4624}