2 * Copyright (C) 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
4 * This file is part of GNU Zebra.
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34 #include "bgpd/bgpd.h"
35 #include "bgpd/bgp_debug.h"
36 #include "bgpd/bgp_errors.h"
37 #include "bgpd/bgp_table.h"
38 #include "bgpd/bgp_route.h"
39 #include "bgpd/bgp_attr.h"
40 #include "bgpd/bgp_label.h"
41 #include "bgpd/bgp_mplsvpn.h"
42 #include "bgpd/bgp_packet.h"
43 #include "bgpd/bgp_vty.h"
44 #include "bgpd/bgp_vpn.h"
45 #include "bgpd/bgp_ecommunity.h"
46 #include "bgpd/bgp_zebra.h"
47 #include "bgpd/bgp_nexthop.h"
48 #include "bgpd/bgp_nht.h"
51 #include "bgpd/rfapi/rfapi_backend.h"
55 * Definitions and external declarations.
57 extern struct zclient
*zclient
;
59 extern int argv_find_and_parse_vpnvx(struct cmd_token
**argv
, int argc
,
60 int *index
, afi_t
*afi
)
63 if (argv_find(argv
, argc
, "vpnv4", index
)) {
67 } else if (argv_find(argv
, argc
, "vpnv6", index
)) {
75 uint32_t decode_label(mpls_label_t
*label_pnt
)
78 uint8_t *pnt
= (uint8_t *)label_pnt
;
80 l
= ((uint32_t)*pnt
++ << 12);
81 l
|= (uint32_t)*pnt
++ << 4;
82 l
|= (uint32_t)((*pnt
& 0xf0) >> 4);
86 void encode_label(mpls_label_t label
, mpls_label_t
*label_pnt
)
88 uint8_t *pnt
= (uint8_t *)label_pnt
;
91 if (label
== BGP_PREVENT_VRF_2_VRF_LEAK
) {
95 *pnt
++ = (label
>> 12) & 0xff;
96 *pnt
++ = (label
>> 4) & 0xff;
97 *pnt
++ = ((label
<< 4) + 1) & 0xff; /* S=1 */
100 int bgp_nlri_parse_vpn(struct peer
*peer
, struct attr
*attr
,
101 struct bgp_nlri
*packet
)
111 struct prefix_rd prd
;
112 mpls_label_t label
= {0};
119 prd
.family
= AF_UNSPEC
;
123 lim
= pnt
+ packet
->length
;
129 (CHECK_FLAG(peer
->af_cap
[afi
][safi
], PEER_CAP_ADDPATH_AF_RX_ADV
)
130 && CHECK_FLAG(peer
->af_cap
[afi
][safi
],
131 PEER_CAP_ADDPATH_AF_TX_RCV
));
133 #define VPN_PREFIXLEN_MIN_BYTES (3 + 8) /* label + RD */
134 for (; pnt
< lim
; pnt
+= psize
) {
135 /* Clear prefix structure. */
136 memset(&p
, 0, sizeof(struct prefix
));
138 if (addpath_encoded
) {
140 /* When packet overflow occurs return immediately. */
141 if (pnt
+ BGP_ADDPATH_ID_LEN
> lim
)
144 addpath_id
= ntohl(*((uint32_t *)pnt
));
145 pnt
+= BGP_ADDPATH_ID_LEN
;
148 /* Fetch prefix length. */
150 p
.family
= afi2family(packet
->afi
);
151 psize
= PSIZE(prefixlen
);
153 if (prefixlen
< VPN_PREFIXLEN_MIN_BYTES
* 8) {
156 "%s [Error] Update packet error / VPN (prefix length %d less than VPN min length)",
157 peer
->host
, prefixlen
);
161 /* sanity check against packet data */
162 if ((pnt
+ psize
) > lim
) {
165 "%s [Error] Update packet error / VPN (prefix length %d exceeds packet size %u)",
166 peer
->host
, prefixlen
, (uint
)(lim
- pnt
));
170 /* sanity check against storage for the IP address portion */
171 if ((psize
- VPN_PREFIXLEN_MIN_BYTES
) > (ssize_t
)sizeof(p
.u
)) {
174 "%s [Error] Update packet error / VPN (psize %d exceeds storage size %zu)",
176 prefixlen
- VPN_PREFIXLEN_MIN_BYTES
* 8,
181 /* Sanity check against max bitlen of the address family */
182 if ((psize
- VPN_PREFIXLEN_MIN_BYTES
) > prefix_blen(&p
)) {
185 "%s [Error] Update packet error / VPN (psize %d exceeds family (%u) max byte len %u)",
187 prefixlen
- VPN_PREFIXLEN_MIN_BYTES
* 8,
188 p
.family
, prefix_blen(&p
));
192 /* Copy label to prefix. */
193 memcpy(&label
, pnt
, BGP_LABEL_BYTES
);
194 bgp_set_valid_label(&label
);
196 /* Copy routing distinguisher to rd. */
197 memcpy(&prd
.val
, pnt
+ BGP_LABEL_BYTES
, 8);
199 /* Decode RD type. */
200 type
= decode_rd_type(pnt
+ BGP_LABEL_BYTES
);
204 decode_rd_as(pnt
+ 5, &rd_as
);
208 decode_rd_as4(pnt
+ 5, &rd_as
);
212 decode_rd_ip(pnt
+ 5, &rd_ip
);
216 case RD_TYPE_VNC_ETH
:
221 flog_err(EC_BGP_UPDATE_RCV
, "Unknown RD type %d", type
);
222 break; /* just report */
227 - VPN_PREFIXLEN_MIN_BYTES
* 8; /* exclude label & RD */
228 memcpy(p
.u
.val
, pnt
+ VPN_PREFIXLEN_MIN_BYTES
,
229 psize
- VPN_PREFIXLEN_MIN_BYTES
);
232 bgp_update(peer
, &p
, addpath_id
, attr
, packet
->afi
,
233 SAFI_MPLS_VPN
, ZEBRA_ROUTE_BGP
,
234 BGP_ROUTE_NORMAL
, &prd
, &label
, 1, 0, NULL
);
236 bgp_withdraw(peer
, &p
, addpath_id
, attr
, packet
->afi
,
237 SAFI_MPLS_VPN
, ZEBRA_ROUTE_BGP
,
238 BGP_ROUTE_NORMAL
, &prd
, &label
, 1, NULL
);
241 /* Packet length consistency check. */
245 "%s [Error] Update packet error / VPN (%zu data remaining after parsing)",
246 peer
->host
, lim
- pnt
);
251 #undef VPN_PREFIXLEN_MIN_BYTES
255 * This function informs zebra of the label this vrf sets on routes
256 * leaked to VPN. Zebra should install this label in the kernel with
257 * an action of "pop label and then use this vrf's IP FIB to route the PDU."
259 * Sending this vrf-label association is qualified by a) whether vrf->vpn
260 * exporting is active ("export vpn" is enabled, vpn-policy RD and RT list
261 * are set) and b) whether vpn-policy label is set.
263 * If any of these conditions do not hold, then we send MPLS_LABEL_NONE
264 * for this vrf, which zebra interprets to mean "delete this vrf-label
267 void vpn_leak_zebra_vrf_label_update(struct bgp
*bgp
, afi_t afi
)
269 mpls_label_t label
= MPLS_LABEL_NONE
;
270 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_LABEL
);
272 if (bgp
->vrf_id
== VRF_UNKNOWN
) {
275 "%s: vrf %s: afi %s: vrf_id not set, "
276 "can't set zebra vrf label",
277 __func__
, bgp
->name_pretty
, afi2str(afi
));
282 if (vpn_leak_to_vpn_active(bgp
, afi
, NULL
)) {
283 label
= bgp
->vpn_policy
[afi
].tovpn_label
;
287 zlog_debug("%s: vrf %s: afi %s: setting label %d for vrf id %d",
288 __func__
, bgp
->name_pretty
, afi2str(afi
), label
,
292 zclient_send_vrf_label(zclient
, bgp
->vrf_id
, afi
, label
, ZEBRA_LSP_BGP
);
293 bgp
->vpn_policy
[afi
].tovpn_zebra_vrf_label_last_sent
= label
;
297 * If zebra tells us vrf has become unconfigured, tell zebra not to
298 * use this label to forward to the vrf anymore
300 void vpn_leak_zebra_vrf_label_withdraw(struct bgp
*bgp
, afi_t afi
)
302 mpls_label_t label
= MPLS_LABEL_NONE
;
303 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_LABEL
);
305 if (bgp
->vrf_id
== VRF_UNKNOWN
) {
308 "%s: vrf_id not set, can't delete zebra vrf label",
315 zlog_debug("%s: deleting label for vrf %s (id=%d)", __func__
,
316 bgp
->name_pretty
, bgp
->vrf_id
);
319 zclient_send_vrf_label(zclient
, bgp
->vrf_id
, afi
, label
, ZEBRA_LSP_BGP
);
320 bgp
->vpn_policy
[afi
].tovpn_zebra_vrf_label_last_sent
= label
;
323 int vpn_leak_label_callback(
328 struct vpn_policy
*vp
= (struct vpn_policy
*)labelid
;
329 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_LABEL
);
332 zlog_debug("%s: label=%u, allocated=%d",
333 __func__
, label
, allocated
);
337 * previously-allocated label is now invalid
339 if (CHECK_FLAG(vp
->flags
, BGP_VPN_POLICY_TOVPN_LABEL_AUTO
) &&
340 (vp
->tovpn_label
!= MPLS_LABEL_NONE
)) {
342 vpn_leak_prechange(BGP_VPN_POLICY_DIR_TOVPN
,
343 vp
->afi
, bgp_get_default(), vp
->bgp
);
344 vp
->tovpn_label
= MPLS_LABEL_NONE
;
345 vpn_leak_postchange(BGP_VPN_POLICY_DIR_TOVPN
,
346 vp
->afi
, bgp_get_default(), vp
->bgp
);
352 * New label allocation
354 if (!CHECK_FLAG(vp
->flags
, BGP_VPN_POLICY_TOVPN_LABEL_AUTO
)) {
357 * not currently configured for auto label, reject allocation
362 if (vp
->tovpn_label
!= MPLS_LABEL_NONE
) {
363 if (label
== vp
->tovpn_label
) {
364 /* already have same label, accept but do nothing */
367 /* Shouldn't happen: different label allocation */
368 flog_err(EC_BGP_LABEL
,
369 "%s: %s had label %u but got new assignment %u",
370 __func__
, vp
->bgp
->name_pretty
, vp
->tovpn_label
,
375 vpn_leak_prechange(BGP_VPN_POLICY_DIR_TOVPN
,
376 vp
->afi
, bgp_get_default(), vp
->bgp
);
377 vp
->tovpn_label
= label
;
378 vpn_leak_postchange(BGP_VPN_POLICY_DIR_TOVPN
,
379 vp
->afi
, bgp_get_default(), vp
->bgp
);
384 static int ecom_intersect(struct ecommunity
*e1
, struct ecommunity
*e2
)
392 for (i
= 0; i
< e1
->size
; ++i
) {
393 for (j
= 0; j
< e2
->size
; ++j
) {
394 if (!memcmp(e1
->val
+ (i
* ECOMMUNITY_SIZE
),
395 e2
->val
+ (j
* ECOMMUNITY_SIZE
),
405 static bool labels_same(struct bgp_path_info
*bpi
, mpls_label_t
*label
,
417 if (n
!= bpi
->extra
->num_labels
)
420 for (i
= 0; i
< n
; ++i
) {
421 if (label
[i
] != bpi
->extra
->label
[i
])
428 * make encoded route labels match specified encoded label set
430 static void setlabels(struct bgp_path_info
*bpi
,
431 mpls_label_t
*label
, /* array of labels */
436 assert(num_labels
<= BGP_MAX_LABELS
);
440 bpi
->extra
->num_labels
= 0;
444 struct bgp_path_info_extra
*extra
= bgp_path_info_extra_get(bpi
);
447 for (i
= 0; i
< num_labels
; ++i
) {
448 extra
->label
[i
] = label
[i
];
449 if (!bgp_is_valid_label(&label
[i
])) {
450 bgp_set_valid_label(&extra
->label
[i
]);
453 extra
->num_labels
= num_labels
;
457 * returns pointer to new bgp_path_info upon success
459 static struct bgp_path_info
*
460 leak_update(struct bgp
*bgp
, /* destination bgp instance */
461 struct bgp_node
*bn
, struct attr
*new_attr
, /* already interned */
462 afi_t afi
, safi_t safi
, struct bgp_path_info
*source_bpi
,
463 mpls_label_t
*label
, uint32_t num_labels
, void *parent
,
464 struct bgp
*bgp_orig
, struct prefix
*nexthop_orig
,
465 int nexthop_self_flag
, int debug
)
467 struct prefix
*p
= &bn
->p
;
468 struct bgp_path_info
*bpi
;
469 struct bgp_path_info
*bpi_ultimate
;
470 struct bgp_path_info
*new;
471 char buf_prefix
[PREFIX_STRLEN
];
474 prefix2str(&bn
->p
, buf_prefix
, sizeof(buf_prefix
));
475 zlog_debug("%s: entry: leak-to=%s, p=%s, type=%d, sub_type=%d",
476 __func__
, bgp
->name_pretty
, buf_prefix
,
477 source_bpi
->type
, source_bpi
->sub_type
);
481 * Routes that are redistributed into BGP from zebra do not get
482 * nexthop tracking. However, if those routes are subsequently
483 * imported to other RIBs within BGP, the leaked routes do not
484 * carry the original BGP_ROUTE_REDISTRIBUTE sub_type. Therefore,
485 * in order to determine if the route we are currently leaking
486 * should have nexthop tracking, we must find the ultimate
487 * parent so we can check its sub_type.
489 * As of now, source_bpi may at most be a second-generation route
490 * (only one hop back to ultimate parent for vrf-vpn-vrf scheme).
491 * Using a loop here supports more complex intra-bgp import-export
492 * schemes that could be implemented in the future.
495 for (bpi_ultimate
= source_bpi
;
496 bpi_ultimate
->extra
&& bpi_ultimate
->extra
->parent
;
497 bpi_ultimate
= bpi_ultimate
->extra
->parent
)
503 for (bpi
= bn
->info
; bpi
; bpi
= bpi
->next
) {
504 if (bpi
->extra
&& bpi
->extra
->parent
== parent
)
509 bool labelssame
= labels_same(bpi
, label
, num_labels
);
511 if (attrhash_cmp(bpi
->attr
, new_attr
) && labelssame
512 && !CHECK_FLAG(bpi
->flags
, BGP_PATH_REMOVED
)) {
514 bgp_attr_unintern(&new_attr
);
517 "%s: ->%s: %s: Found route, no change",
518 __func__
, bgp
->name_pretty
,
523 /* attr is changed */
524 bgp_path_info_set_flag(bn
, bpi
, BGP_PATH_ATTR_CHANGED
);
526 /* Rewrite BGP route information. */
527 if (CHECK_FLAG(bpi
->flags
, BGP_PATH_REMOVED
))
528 bgp_path_info_restore(bn
, bpi
);
530 bgp_aggregate_decrement(bgp
, p
, bpi
, afi
, safi
);
531 bgp_attr_unintern(&bpi
->attr
);
532 bpi
->attr
= new_attr
;
533 bpi
->uptime
= bgp_clock();
539 setlabels(bpi
, label
, num_labels
);
541 if (nexthop_self_flag
)
542 bgp_path_info_set_flag(bn
, bpi
, BGP_PATH_ANNC_NH_SELF
);
544 struct bgp
*bgp_nexthop
= bgp
;
547 if (bpi
->extra
&& bpi
->extra
->bgp_orig
)
548 bgp_nexthop
= bpi
->extra
->bgp_orig
;
550 /* No nexthop tracking for redistributed routes */
551 if (bpi_ultimate
->sub_type
== BGP_ROUTE_REDISTRIBUTE
)
555 * TBD do we need to do anything about the
556 * 'connected' parameter?
558 nh_valid
= bgp_find_or_add_nexthop(bgp
, bgp_nexthop
,
562 zlog_debug("%s: nexthop is %svalid (in vrf %s)",
563 __func__
, (nh_valid
? "" : "not "),
564 bgp_nexthop
->name_pretty
);
567 bgp_path_info_set_flag(bn
, bpi
, BGP_PATH_VALID
);
569 /* Process change. */
570 bgp_aggregate_increment(bgp
, p
, bpi
, afi
, safi
);
571 bgp_process(bgp
, bn
, afi
, safi
);
575 zlog_debug("%s: ->%s: %s Found route, changed attr",
576 __func__
, bgp
->name_pretty
, buf_prefix
);
581 new = info_make(ZEBRA_ROUTE_BGP
, BGP_ROUTE_IMPORTED
, 0,
582 bgp
->peer_self
, new_attr
, bn
);
584 if (nexthop_self_flag
)
585 bgp_path_info_set_flag(bn
, new, BGP_PATH_ANNC_NH_SELF
);
587 bgp_path_info_extra_get(new);
590 setlabels(new, label
, num_labels
);
592 new->extra
->parent
= bgp_path_info_lock(parent
);
593 bgp_lock_node((struct bgp_node
*)((struct bgp_path_info
*)parent
)->net
);
595 new->extra
->bgp_orig
= bgp_lock(bgp_orig
);
597 new->extra
->nexthop_orig
= *nexthop_orig
;
600 * nexthop tracking for unicast routes
602 struct bgp
*bgp_nexthop
= bgp
;
605 if (new->extra
->bgp_orig
)
606 bgp_nexthop
= new->extra
->bgp_orig
;
609 * No nexthop tracking for redistributed routes because
610 * their originating protocols will do the tracking and
611 * withdraw those routes if the nexthops become unreachable
613 if (bpi_ultimate
->sub_type
== BGP_ROUTE_REDISTRIBUTE
)
617 * TBD do we need to do anything about the
618 * 'connected' parameter?
620 nh_valid
= bgp_find_or_add_nexthop(bgp
, bgp_nexthop
,
624 zlog_debug("%s: nexthop is %svalid (in vrf %s)",
625 __func__
, (nh_valid
? "" : "not "),
626 bgp_nexthop
->name_pretty
);
628 bgp_path_info_set_flag(bn
, new, BGP_PATH_VALID
);
630 bgp_aggregate_increment(bgp
, p
, new, afi
, safi
);
631 bgp_path_info_add(bn
, new);
634 bgp_process(bgp
, bn
, afi
, safi
);
637 zlog_debug("%s: ->%s: %s: Added new route", __func__
,
638 bgp
->name_pretty
, buf_prefix
);
643 /* cf vnc_import_bgp_add_route_mode_nvegroup() and add_vnc_route() */
644 void vpn_leak_from_vrf_update(struct bgp
*bgp_vpn
, /* to */
645 struct bgp
*bgp_vrf
, /* from */
646 struct bgp_path_info
*path_vrf
) /* route */
648 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_FROM_VRF
);
649 struct prefix
*p
= &path_vrf
->net
->p
;
650 afi_t afi
= family2afi(p
->family
);
651 struct attr static_attr
= {0};
652 struct attr
*new_attr
= NULL
;
653 safi_t safi
= SAFI_MPLS_VPN
;
654 mpls_label_t label_val
;
657 const char *debugmsg
;
658 int nexthop_self_flag
= 0;
661 zlog_debug("%s: from vrf %s", __func__
, bgp_vrf
->name_pretty
);
663 if (debug
&& path_vrf
->attr
->ecommunity
) {
664 char *s
= ecommunity_ecom2str(path_vrf
->attr
->ecommunity
,
665 ECOMMUNITY_FORMAT_ROUTE_MAP
, 0);
667 zlog_debug("%s: %s path_vrf->type=%d, EC{%s}", __func__
,
668 bgp_vrf
->name
, path_vrf
->type
, s
);
669 XFREE(MTYPE_ECOMMUNITY_STR
, s
);
677 zlog_debug("%s: can't get afi of prefix", __func__
);
681 /* loop check - should not be an imported route. */
682 if (path_vrf
->extra
&& path_vrf
->extra
->bgp_orig
)
686 if (!vpn_leak_to_vpn_active(bgp_vrf
, afi
, &debugmsg
)) {
688 zlog_debug("%s: %s skipping: %s", __func__
,
689 bgp_vrf
->name
, debugmsg
);
693 bgp_attr_dup(&static_attr
, path_vrf
->attr
); /* shallow copy */
698 if (bgp_vrf
->vpn_policy
[afi
].rmap
[BGP_VPN_POLICY_DIR_TOVPN
]) {
699 struct bgp_path_info info
;
700 route_map_result_t ret
;
702 memset(&info
, 0, sizeof(info
));
703 info
.peer
= bgp_vpn
->peer_self
;
704 info
.attr
= &static_attr
;
705 ret
= route_map_apply(
706 bgp_vrf
->vpn_policy
[afi
].rmap
[BGP_VPN_POLICY_DIR_TOVPN
],
708 if (RMAP_DENYMATCH
== ret
) {
709 bgp_attr_flush(&static_attr
); /* free any added parts */
712 "%s: vrf %s route map \"%s\" says DENY, returning",
713 __func__
, bgp_vrf
->name_pretty
,
714 bgp_vrf
->vpn_policy
[afi
]
715 .rmap
[BGP_VPN_POLICY_DIR_TOVPN
]
721 if (debug
&& static_attr
.ecommunity
) {
722 char *s
= ecommunity_ecom2str(static_attr
.ecommunity
,
723 ECOMMUNITY_FORMAT_ROUTE_MAP
, 0);
725 zlog_debug("%s: post route map static_attr.ecommunity{%s}",
727 XFREE(MTYPE_ECOMMUNITY_STR
, s
);
731 * Add the vpn-policy rt-list
733 struct ecommunity
*old_ecom
;
734 struct ecommunity
*new_ecom
;
736 old_ecom
= static_attr
.ecommunity
;
738 new_ecom
= ecommunity_merge(
739 ecommunity_dup(old_ecom
),
740 bgp_vrf
->vpn_policy
[afi
]
741 .rtlist
[BGP_VPN_POLICY_DIR_TOVPN
]);
742 if (!old_ecom
->refcnt
)
743 ecommunity_free(&old_ecom
);
745 new_ecom
= ecommunity_dup(
746 bgp_vrf
->vpn_policy
[afi
]
747 .rtlist
[BGP_VPN_POLICY_DIR_TOVPN
]);
749 static_attr
.ecommunity
= new_ecom
;
750 SET_FLAG(static_attr
.flag
, ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES
));
752 if (debug
&& static_attr
.ecommunity
) {
753 char *s
= ecommunity_ecom2str(static_attr
.ecommunity
,
754 ECOMMUNITY_FORMAT_ROUTE_MAP
, 0);
756 zlog_debug("%s: post merge static_attr.ecommunity{%s}",
758 XFREE(MTYPE_ECOMMUNITY_STR
, s
);
762 /* if policy nexthop not set, use 0 */
763 if (CHECK_FLAG(bgp_vrf
->vpn_policy
[afi
].flags
,
764 BGP_VPN_POLICY_TOVPN_NEXTHOP_SET
)) {
765 struct prefix
*nexthop
=
766 &bgp_vrf
->vpn_policy
[afi
].tovpn_nexthop
;
768 switch (nexthop
->family
) {
770 /* prevent mp_nexthop_global_in <- self in bgp_route.c
772 static_attr
.nexthop
.s_addr
= nexthop
->u
.prefix4
.s_addr
;
774 static_attr
.mp_nexthop_global_in
= nexthop
->u
.prefix4
;
775 static_attr
.mp_nexthop_len
= 4;
779 static_attr
.mp_nexthop_global
= nexthop
->u
.prefix6
;
780 static_attr
.mp_nexthop_len
= 16;
787 if (!CHECK_FLAG(bgp_vrf
->af_flags
[afi
][SAFI_UNICAST
],
788 BGP_CONFIG_VRF_TO_VRF_EXPORT
)) {
791 * For ipv4, copy to multiprotocol
794 static_attr
.mp_nexthop_global_in
=
796 static_attr
.mp_nexthop_len
= 4;
798 * XXX Leave static_attr.nexthop
802 ~ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP
);
805 /* Update based on next-hop family to account for
806 * RFC 5549 (BGP unnumbered) scenario. Note that
807 * specific action is only needed for the case of
808 * IPv4 nexthops as the attr has been copied
812 && !BGP_ATTR_NEXTHOP_AFI_IP6(path_vrf
->attr
)) {
813 static_attr
.mp_nexthop_global_in
.s_addr
=
814 static_attr
.nexthop
.s_addr
;
815 static_attr
.mp_nexthop_len
= 4;
817 ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP
);
820 nexthop_self_flag
= 1;
823 label_val
= bgp_vrf
->vpn_policy
[afi
].tovpn_label
;
824 if (label_val
== MPLS_LABEL_NONE
) {
825 encode_label(MPLS_LABEL_IMPLICIT_NULL
, &label
);
827 encode_label(label_val
, &label
);
830 /* Set originator ID to "me" */
831 SET_FLAG(static_attr
.flag
, ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID
));
832 static_attr
.originator_id
= bgp_vpn
->router_id
;
835 new_attr
= bgp_attr_intern(
836 &static_attr
); /* hashed refcounted everything */
837 bgp_attr_flush(&static_attr
); /* free locally-allocated parts */
839 if (debug
&& new_attr
->ecommunity
) {
840 char *s
= ecommunity_ecom2str(new_attr
->ecommunity
,
841 ECOMMUNITY_FORMAT_ROUTE_MAP
, 0);
843 zlog_debug("%s: new_attr->ecommunity{%s}", __func__
, s
);
844 XFREE(MTYPE_ECOMMUNITY_STR
, s
);
847 /* Now new_attr is an allocated interned attr */
849 bn
= bgp_afi_node_get(bgp_vpn
->rib
[afi
][safi
], afi
, safi
, p
,
850 &(bgp_vrf
->vpn_policy
[afi
].tovpn_rd
));
852 struct bgp_path_info
*new_info
;
854 new_info
= leak_update(bgp_vpn
, bn
, new_attr
, afi
, safi
, path_vrf
,
855 &label
, 1, path_vrf
, bgp_vrf
, NULL
,
856 nexthop_self_flag
, debug
);
859 * Routes actually installed in the vpn RIB must also be
860 * offered to all vrfs (because now they originate from
863 * Acceptance into other vrfs depends on rt-lists.
864 * Originating vrf will not accept the looped back route
865 * because of loop checking.
868 vpn_leak_to_vrf_update(bgp_vrf
, new_info
);
871 void vpn_leak_from_vrf_withdraw(struct bgp
*bgp_vpn
, /* to */
872 struct bgp
*bgp_vrf
, /* from */
873 struct bgp_path_info
*path_vrf
) /* route */
875 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_FROM_VRF
);
876 struct prefix
*p
= &path_vrf
->net
->p
;
877 afi_t afi
= family2afi(p
->family
);
878 safi_t safi
= SAFI_MPLS_VPN
;
879 struct bgp_path_info
*bpi
;
881 const char *debugmsg
;
882 char buf_prefix
[PREFIX_STRLEN
];
885 prefix2str(p
, buf_prefix
, sizeof(buf_prefix
));
887 "%s: entry: leak-from=%s, p=%s, type=%d, sub_type=%d",
888 __func__
, bgp_vrf
->name_pretty
, buf_prefix
,
889 path_vrf
->type
, path_vrf
->sub_type
);
892 if (path_vrf
->sub_type
!= BGP_ROUTE_NORMAL
893 && path_vrf
->sub_type
!= BGP_ROUTE_STATIC
894 && path_vrf
->sub_type
!= BGP_ROUTE_REDISTRIBUTE
) {
897 zlog_debug("%s: wrong sub_type %d", __func__
,
906 zlog_debug("%s: can't get afi of prefix", __func__
);
910 if (!vpn_leak_to_vpn_active(bgp_vrf
, afi
, &debugmsg
)) {
912 zlog_debug("%s: skipping: %s", __func__
, debugmsg
);
917 zlog_debug("%s: withdrawing (path_vrf=%p)", __func__
, path_vrf
);
919 bn
= bgp_afi_node_get(bgp_vpn
->rib
[afi
][safi
], afi
, safi
, p
,
920 &(bgp_vrf
->vpn_policy
[afi
].tovpn_rd
));
924 * match original bpi imported from
926 for (bpi
= (bn
? bn
->info
: NULL
); bpi
; bpi
= bpi
->next
) {
927 if (bpi
->extra
&& bpi
->extra
->parent
== path_vrf
) {
933 /* withdraw from looped vrfs as well */
934 vpn_leak_to_vrf_withdraw(bgp_vpn
, bpi
);
936 bgp_aggregate_decrement(bgp_vpn
, p
, bpi
, afi
, safi
);
937 bgp_path_info_delete(bn
, bpi
);
938 bgp_process(bgp_vpn
, bn
, afi
, safi
);
943 void vpn_leak_from_vrf_withdraw_all(struct bgp
*bgp_vpn
, /* to */
944 struct bgp
*bgp_vrf
, /* from */
947 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_FROM_VRF
);
948 struct bgp_node
*prn
;
949 safi_t safi
= SAFI_MPLS_VPN
;
952 * Walk vpn table, delete bpi with bgp_orig == bgp_vrf
954 for (prn
= bgp_table_top(bgp_vpn
->rib
[afi
][safi
]); prn
;
955 prn
= bgp_route_next(prn
)) {
957 struct bgp_table
*table
;
959 struct bgp_path_info
*bpi
;
961 /* This is the per-RD table of prefixes */
967 for (bn
= bgp_table_top(table
); bn
; bn
= bgp_route_next(bn
)) {
969 char buf
[PREFIX2STR_BUFFER
];
971 if (debug
&& bn
->info
) {
973 "%s: looking at prefix %s", __func__
,
974 prefix2str(&bn
->p
, buf
, sizeof(buf
)));
977 for (bpi
= bn
->info
; bpi
; bpi
= bpi
->next
) {
979 zlog_debug("%s: type %d, sub_type %d",
982 if (bpi
->sub_type
!= BGP_ROUTE_IMPORTED
)
986 if ((struct bgp
*)bpi
->extra
->bgp_orig
990 zlog_debug("%s: deleting it\n",
992 bgp_aggregate_decrement(bgp_vpn
, &bn
->p
,
994 bgp_path_info_delete(bn
, bpi
);
995 bgp_process(bgp_vpn
, bn
, afi
, safi
);
1002 void vpn_leak_from_vrf_update_all(struct bgp
*bgp_vpn
, /* to */
1003 struct bgp
*bgp_vrf
, /* from */
1006 struct bgp_node
*bn
;
1007 struct bgp_path_info
*bpi
;
1008 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_FROM_VRF
);
1011 zlog_debug("%s: entry, afi=%d, vrf=%s", __func__
, afi
,
1012 bgp_vrf
->name_pretty
);
1014 for (bn
= bgp_table_top(bgp_vrf
->rib
[afi
][SAFI_UNICAST
]); bn
;
1015 bn
= bgp_route_next(bn
)) {
1018 zlog_debug("%s: node=%p", __func__
, bn
);
1020 for (bpi
= bn
->info
; bpi
; bpi
= bpi
->next
) {
1023 "%s: calling vpn_leak_from_vrf_update",
1025 vpn_leak_from_vrf_update(bgp_vpn
, bgp_vrf
, bpi
);
1031 vpn_leak_to_vrf_update_onevrf(struct bgp
*bgp_vrf
, /* to */
1032 struct bgp
*bgp_vpn
, /* from */
1033 struct bgp_path_info
*path_vpn
) /* route */
1035 struct prefix
*p
= &path_vpn
->net
->p
;
1036 afi_t afi
= family2afi(p
->family
);
1038 struct attr static_attr
= {0};
1039 struct attr
*new_attr
= NULL
;
1040 struct bgp_node
*bn
;
1041 safi_t safi
= SAFI_UNICAST
;
1042 const char *debugmsg
;
1043 struct prefix nexthop_orig
;
1044 mpls_label_t
*pLabels
= NULL
;
1045 uint32_t num_labels
= 0;
1046 int nexthop_self_flag
= 1;
1047 struct bgp_path_info
*bpi_ultimate
= NULL
;
1048 int origin_local
= 0;
1049 struct bgp
*src_vrf
;
1051 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_TO_VRF
);
1053 if (!vpn_leak_from_vpn_active(bgp_vrf
, afi
, &debugmsg
)) {
1055 zlog_debug("%s: skipping: %s", __func__
, debugmsg
);
1059 /* Check for intersection of route targets */
1060 if (!ecom_intersect(
1061 bgp_vrf
->vpn_policy
[afi
].rtlist
[BGP_VPN_POLICY_DIR_FROMVPN
],
1062 path_vpn
->attr
->ecommunity
)) {
1068 zlog_debug("%s: updating to vrf %s", __func__
,
1069 bgp_vrf
->name_pretty
);
1071 bgp_attr_dup(&static_attr
, path_vpn
->attr
); /* shallow copy */
1074 * Nexthop: stash and clear
1076 * Nexthop is valid in context of VPN core, but not in destination vrf.
1077 * Stash it for later label resolution by vrf ingress path and then
1078 * overwrite with 0, i.e., "me", for the sake of vrf advertisement.
1080 uint8_t nhfamily
= NEXTHOP_FAMILY(path_vpn
->attr
->mp_nexthop_len
);
1082 if (nhfamily
!= AF_UNSPEC
)
1083 static_attr
.flag
|= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP
);
1084 memset(&nexthop_orig
, 0, sizeof(nexthop_orig
));
1085 nexthop_orig
.family
= nhfamily
;
1090 nexthop_orig
.u
.prefix4
= path_vpn
->attr
->mp_nexthop_global_in
;
1091 nexthop_orig
.prefixlen
= 32;
1093 if (CHECK_FLAG(bgp_vrf
->af_flags
[afi
][safi
],
1094 BGP_CONFIG_VRF_TO_VRF_IMPORT
)) {
1095 static_attr
.nexthop
.s_addr
=
1096 nexthop_orig
.u
.prefix4
.s_addr
;
1098 static_attr
.mp_nexthop_global_in
=
1099 path_vpn
->attr
->mp_nexthop_global_in
;
1100 static_attr
.mp_nexthop_len
=
1101 path_vpn
->attr
->mp_nexthop_len
;
1106 nexthop_orig
.u
.prefix6
= path_vpn
->attr
->mp_nexthop_global
;
1107 nexthop_orig
.prefixlen
= 128;
1109 if (CHECK_FLAG(bgp_vrf
->af_flags
[afi
][safi
],
1110 BGP_CONFIG_VRF_TO_VRF_IMPORT
)) {
1111 static_attr
.mp_nexthop_global
= nexthop_orig
.u
.prefix6
;
1117 * route map handling
1119 if (bgp_vrf
->vpn_policy
[afi
].rmap
[BGP_VPN_POLICY_DIR_FROMVPN
]) {
1120 struct bgp_path_info info
;
1121 route_map_result_t ret
;
1123 memset(&info
, 0, sizeof(info
));
1124 info
.peer
= bgp_vrf
->peer_self
;
1125 info
.attr
= &static_attr
;
1126 ret
= route_map_apply(bgp_vrf
->vpn_policy
[afi
]
1127 .rmap
[BGP_VPN_POLICY_DIR_FROMVPN
],
1128 p
, RMAP_BGP
, &info
);
1129 if (RMAP_DENYMATCH
== ret
) {
1130 bgp_attr_flush(&static_attr
); /* free any added parts */
1133 "%s: vrf %s vpn-policy route map \"%s\" says DENY, returning",
1134 __func__
, bgp_vrf
->name_pretty
,
1135 bgp_vrf
->vpn_policy
[afi
]
1136 .rmap
[BGP_VPN_POLICY_DIR_FROMVPN
]
1141 * if route-map changed nexthop, don't nexthop-self on output
1143 if (!CHECK_FLAG(static_attr
.rmap_change_flags
,
1144 BATTR_RMAP_NEXTHOP_UNCHANGED
))
1145 nexthop_self_flag
= 0;
1148 new_attr
= bgp_attr_intern(&static_attr
);
1149 bgp_attr_flush(&static_attr
);
1151 bn
= bgp_afi_node_get(bgp_vrf
->rib
[afi
][safi
], afi
, safi
, p
, NULL
);
1154 * ensure labels are copied
1156 * However, there is a special case: if the route originated in
1157 * another local VRF (as opposed to arriving via VPN), then the
1158 * nexthop is reached by hairpinning through this router (me)
1159 * using IP forwarding only (no LSP). Therefore, the route
1160 * imported to the VRF should not have labels attached. Note
1161 * that nexthop tracking is also involved: eliminating the
1162 * labels for these routes enables the non-labeled nexthops
1163 * from the originating VRF to be considered valid for this route.
1165 if (!CHECK_FLAG(bgp_vrf
->af_flags
[afi
][safi
],
1166 BGP_CONFIG_VRF_TO_VRF_IMPORT
)) {
1167 /* work back to original route */
1168 for (bpi_ultimate
= path_vpn
;
1169 bpi_ultimate
->extra
&& bpi_ultimate
->extra
->parent
;
1170 bpi_ultimate
= bpi_ultimate
->extra
->parent
)
1174 * if original route was unicast,
1175 * then it did not arrive over vpn
1177 if (bpi_ultimate
->net
) {
1178 struct bgp_table
*table
;
1180 table
= bgp_node_table(bpi_ultimate
->net
);
1181 if (table
&& (table
->safi
== SAFI_UNICAST
))
1186 if (!origin_local
&& path_vpn
->extra
1187 && path_vpn
->extra
->num_labels
) {
1188 num_labels
= path_vpn
->extra
->num_labels
;
1189 if (num_labels
> BGP_MAX_LABELS
)
1190 num_labels
= BGP_MAX_LABELS
;
1191 pLabels
= path_vpn
->extra
->label
;
1196 char buf_prefix
[PREFIX_STRLEN
];
1197 prefix2str(p
, buf_prefix
, sizeof(buf_prefix
));
1198 zlog_debug("%s: pfx %s: num_labels %d", __func__
, buf_prefix
,
1203 * For VRF-2-VRF route-leaking,
1204 * the source will be the originating VRF.
1206 if (path_vpn
->extra
&& path_vpn
->extra
->bgp_orig
)
1207 src_vrf
= path_vpn
->extra
->bgp_orig
;
1211 leak_update(bgp_vrf
, bn
, new_attr
, afi
, safi
, path_vpn
, pLabels
,
1212 num_labels
, path_vpn
, /* parent */
1213 src_vrf
, &nexthop_orig
, nexthop_self_flag
, debug
);
1216 void vpn_leak_to_vrf_update(struct bgp
*bgp_vpn
, /* from */
1217 struct bgp_path_info
*path_vpn
) /* route */
1219 struct listnode
*mnode
, *mnnode
;
1222 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_TO_VRF
);
1225 zlog_debug("%s: start (path_vpn=%p)", __func__
, path_vpn
);
1227 /* Loop over VRFs */
1228 for (ALL_LIST_ELEMENTS(bm
->bgp
, mnode
, mnnode
, bgp
)) {
1230 if (!path_vpn
->extra
1231 || path_vpn
->extra
->bgp_orig
!= bgp
) { /* no loop */
1232 vpn_leak_to_vrf_update_onevrf(bgp
, bgp_vpn
, path_vpn
);
1237 void vpn_leak_to_vrf_withdraw(struct bgp
*bgp_vpn
, /* from */
1238 struct bgp_path_info
*path_vpn
) /* route */
1242 safi_t safi
= SAFI_UNICAST
;
1244 struct listnode
*mnode
, *mnnode
;
1245 struct bgp_node
*bn
;
1246 struct bgp_path_info
*bpi
;
1247 const char *debugmsg
;
1248 char buf_prefix
[PREFIX_STRLEN
];
1250 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_TO_VRF
);
1253 prefix2str(&path_vpn
->net
->p
, buf_prefix
, sizeof(buf_prefix
));
1254 zlog_debug("%s: entry: p=%s, type=%d, sub_type=%d", __func__
,
1255 buf_prefix
, path_vpn
->type
, path_vpn
->sub_type
);
1259 zlog_debug("%s: start (path_vpn=%p)", __func__
, path_vpn
);
1261 if (!path_vpn
->net
) {
1263 /* BGP_ROUTE_RFP routes do not have path_vpn->net set (yet) */
1264 if (path_vpn
->type
== ZEBRA_ROUTE_BGP
1265 && path_vpn
->sub_type
== BGP_ROUTE_RFP
) {
1272 "%s: path_vpn->net unexpectedly NULL, no prefix, bailing",
1277 p
= &path_vpn
->net
->p
;
1278 afi
= family2afi(p
->family
);
1280 /* Loop over VRFs */
1281 for (ALL_LIST_ELEMENTS(bm
->bgp
, mnode
, mnnode
, bgp
)) {
1282 if (!vpn_leak_from_vpn_active(bgp
, afi
, &debugmsg
)) {
1284 zlog_debug("%s: skipping: %s", __func__
,
1289 /* Check for intersection of route targets */
1290 if (!ecom_intersect(bgp
->vpn_policy
[afi
]
1291 .rtlist
[BGP_VPN_POLICY_DIR_FROMVPN
],
1292 path_vpn
->attr
->ecommunity
)) {
1298 zlog_debug("%s: withdrawing from vrf %s", __func__
,
1301 bn
= bgp_afi_node_get(bgp
->rib
[afi
][safi
], afi
, safi
, p
, NULL
);
1302 for (bpi
= (bn
? bn
->info
: NULL
); bpi
; bpi
= bpi
->next
) {
1304 && (struct bgp_path_info
*)bpi
->extra
->parent
1312 zlog_debug("%s: deleting bpi %p", __func__
,
1314 bgp_aggregate_decrement(bgp
, p
, bpi
, afi
, safi
);
1315 bgp_path_info_delete(bn
, bpi
);
1316 bgp_process(bgp
, bn
, afi
, safi
);
1318 bgp_unlock_node(bn
);
1322 void vpn_leak_to_vrf_withdraw_all(struct bgp
*bgp_vrf
, /* to */
1325 struct bgp_node
*bn
;
1326 struct bgp_path_info
*bpi
;
1327 safi_t safi
= SAFI_UNICAST
;
1328 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_TO_VRF
);
1331 zlog_debug("%s: entry", __func__
);
1333 * Walk vrf table, delete bpi with bgp_orig in a different vrf
1335 for (bn
= bgp_table_top(bgp_vrf
->rib
[afi
][safi
]); bn
;
1336 bn
= bgp_route_next(bn
)) {
1338 for (bpi
= bn
->info
; bpi
; bpi
= bpi
->next
) {
1339 if (bpi
->extra
&& bpi
->extra
->bgp_orig
!= bgp_vrf
) {
1342 bgp_aggregate_decrement(bgp_vrf
, &bn
->p
, bpi
,
1344 bgp_path_info_delete(bn
, bpi
);
1345 bgp_process(bgp_vrf
, bn
, afi
, safi
);
1351 void vpn_leak_to_vrf_update_all(struct bgp
*bgp_vrf
, /* to */
1352 struct bgp
*bgp_vpn
, /* from */
1355 struct prefix_rd prd
;
1356 struct bgp_node
*prn
;
1357 safi_t safi
= SAFI_MPLS_VPN
;
1364 for (prn
= bgp_table_top(bgp_vpn
->rib
[afi
][safi
]); prn
;
1365 prn
= bgp_route_next(prn
)) {
1367 struct bgp_table
*table
;
1368 struct bgp_node
*bn
;
1369 struct bgp_path_info
*bpi
;
1371 memset(&prd
, 0, sizeof(prd
));
1372 prd
.family
= AF_UNSPEC
;
1374 memcpy(prd
.val
, prn
->p
.u
.val
, 8);
1376 /* This is the per-RD table of prefixes */
1382 for (bn
= bgp_table_top(table
); bn
; bn
= bgp_route_next(bn
)) {
1384 for (bpi
= bn
->info
; bpi
; bpi
= bpi
->next
) {
1387 && bpi
->extra
->bgp_orig
== bgp_vrf
)
1390 vpn_leak_to_vrf_update_onevrf(bgp_vrf
, bgp_vpn
,
1398 * This function is called for definition/deletion/change to a route-map
1400 static void vpn_policy_routemap_update(struct bgp
*bgp
, const char *rmap_name
)
1402 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_RMAP_EVENT
);
1404 struct route_map
*rmap
;
1406 if (bgp
->inst_type
!= BGP_INSTANCE_TYPE_DEFAULT
1407 && bgp
->inst_type
!= BGP_INSTANCE_TYPE_VRF
) {
1412 rmap
= route_map_lookup_by_name(rmap_name
); /* NULL if deleted */
1414 for (afi
= 0; afi
< AFI_MAX
; ++afi
) {
1416 if (bgp
->vpn_policy
[afi
].rmap_name
[BGP_VPN_POLICY_DIR_TOVPN
]
1417 && !strcmp(rmap_name
,
1418 bgp
->vpn_policy
[afi
]
1419 .rmap_name
[BGP_VPN_POLICY_DIR_TOVPN
])) {
1423 "%s: rmap \"%s\" matches vrf-policy tovpn for as %d afi %s",
1424 __func__
, rmap_name
, bgp
->as
,
1427 vpn_leak_prechange(BGP_VPN_POLICY_DIR_TOVPN
, afi
,
1428 bgp_get_default(), bgp
);
1430 zlog_debug("%s: after vpn_leak_prechange",
1433 /* in case of definition/deletion */
1434 bgp
->vpn_policy
[afi
].rmap
[BGP_VPN_POLICY_DIR_TOVPN
] =
1437 vpn_leak_postchange(BGP_VPN_POLICY_DIR_TOVPN
, afi
,
1438 bgp_get_default(), bgp
);
1441 zlog_debug("%s: after vpn_leak_postchange",
1445 if (bgp
->vpn_policy
[afi
].rmap_name
[BGP_VPN_POLICY_DIR_FROMVPN
]
1446 && !strcmp(rmap_name
,
1447 bgp
->vpn_policy
[afi
]
1448 .rmap_name
[BGP_VPN_POLICY_DIR_FROMVPN
])) {
1451 zlog_debug("%s: rmap \"%s\" matches vrf-policy fromvpn for as %d afi %s",
1452 __func__
, rmap_name
, bgp
->as
,
1456 vpn_leak_prechange(BGP_VPN_POLICY_DIR_FROMVPN
, afi
,
1457 bgp_get_default(), bgp
);
1459 /* in case of definition/deletion */
1460 bgp
->vpn_policy
[afi
].rmap
[BGP_VPN_POLICY_DIR_FROMVPN
] =
1463 vpn_leak_postchange(BGP_VPN_POLICY_DIR_FROMVPN
, afi
,
1464 bgp_get_default(), bgp
);
1469 void vpn_policy_routemap_event(const char *rmap_name
)
1471 int debug
= BGP_DEBUG(vpn
, VPN_LEAK_RMAP_EVENT
);
1472 struct listnode
*mnode
, *mnnode
;
1476 zlog_debug("%s: entry", __func__
);
1478 if (bm
->bgp
== NULL
) /* may be called during cleanup */
1481 for (ALL_LIST_ELEMENTS(bm
->bgp
, mnode
, mnnode
, bgp
))
1482 vpn_policy_routemap_update(bgp
, rmap_name
);
1485 void vrf_import_from_vrf(struct bgp
*to_bgp
, struct bgp
*from_bgp
,
1486 afi_t afi
, safi_t safi
)
1488 const char *export_name
;
1489 vpn_policy_direction_t idir
, edir
;
1492 struct ecommunity
*ecom
;
1493 bool first_export
= false;
1495 export_name
= to_bgp
->name
? to_bgp
->name
: BGP_DEFAULT_NAME
;
1496 idir
= BGP_VPN_POLICY_DIR_FROMVPN
;
1497 edir
= BGP_VPN_POLICY_DIR_TOVPN
;
1500 * Cross-ref both VRFs. Also, note if this is the first time
1501 * any VRF is importing from "import_vrf".
1503 vname
= (from_bgp
->name
? XSTRDUP(MTYPE_TMP
, from_bgp
->name
)
1504 : XSTRDUP(MTYPE_TMP
, BGP_DEFAULT_NAME
));
1506 listnode_add(to_bgp
->vpn_policy
[afi
].import_vrf
, vname
);
1508 if (!listcount(from_bgp
->vpn_policy
[afi
].export_vrf
))
1509 first_export
= true;
1510 vname
= XSTRDUP(MTYPE_TMP
, export_name
);
1511 listnode_add(from_bgp
->vpn_policy
[afi
].export_vrf
, vname
);
1513 /* Update import RT for current VRF using export RT of the VRF we're
1514 * importing from. First though, make sure "import_vrf" has that
1518 form_auto_rd(from_bgp
->router_id
, from_bgp
->vrf_rd_id
,
1519 &from_bgp
->vrf_prd_auto
);
1520 from_bgp
->vpn_policy
[afi
].tovpn_rd
= from_bgp
->vrf_prd_auto
;
1521 SET_FLAG(from_bgp
->vpn_policy
[afi
].flags
,
1522 BGP_VPN_POLICY_TOVPN_RD_SET
);
1523 prefix_rd2str(&from_bgp
->vpn_policy
[afi
].tovpn_rd
,
1525 from_bgp
->vpn_policy
[afi
].rtlist
[edir
] =
1526 ecommunity_str2com(buf
, ECOMMUNITY_ROUTE_TARGET
, 0);
1527 SET_FLAG(from_bgp
->af_flags
[afi
][safi
],
1528 BGP_CONFIG_VRF_TO_VRF_EXPORT
);
1529 from_bgp
->vpn_policy
[afi
].tovpn_label
=
1530 BGP_PREVENT_VRF_2_VRF_LEAK
;
1532 ecom
= from_bgp
->vpn_policy
[afi
].rtlist
[edir
];
1533 if (to_bgp
->vpn_policy
[afi
].rtlist
[idir
])
1534 to_bgp
->vpn_policy
[afi
].rtlist
[idir
] =
1535 ecommunity_merge(to_bgp
->vpn_policy
[afi
]
1536 .rtlist
[idir
], ecom
);
1538 to_bgp
->vpn_policy
[afi
].rtlist
[idir
] = ecommunity_dup(ecom
);
1539 SET_FLAG(to_bgp
->af_flags
[afi
][safi
], BGP_CONFIG_VRF_TO_VRF_IMPORT
);
1541 /* Does "import_vrf" first need to export its routes or that
1542 * is already done and we just need to import those routes
1543 * from the global table?
1546 vpn_leak_postchange(edir
, afi
, bgp_get_default(), from_bgp
);
1548 vpn_leak_postchange(idir
, afi
, bgp_get_default(), to_bgp
);
1551 void vrf_unimport_from_vrf(struct bgp
*to_bgp
, struct bgp
*from_bgp
,
1552 afi_t afi
, safi_t safi
)
1554 const char *export_name
, *tmp_name
;
1555 vpn_policy_direction_t idir
, edir
;
1557 struct ecommunity
*ecom
;
1558 struct listnode
*node
;
1560 export_name
= to_bgp
->name
? to_bgp
->name
: BGP_DEFAULT_NAME
;
1561 tmp_name
= from_bgp
->name
? from_bgp
->name
: BGP_DEFAULT_NAME
;
1562 idir
= BGP_VPN_POLICY_DIR_FROMVPN
;
1563 edir
= BGP_VPN_POLICY_DIR_TOVPN
;
1565 /* Were we importing from "import_vrf"? */
1566 for (ALL_LIST_ELEMENTS_RO(to_bgp
->vpn_policy
[afi
].import_vrf
, node
,
1568 if (strcmp(vname
, tmp_name
) == 0)
1573 * We do not check in the cli if the passed in bgp
1574 * instance is actually imported into us before
1575 * we call this function. As such if we do not
1576 * find this in the import_vrf list than
1577 * we just need to return safely.
1582 /* Remove "import_vrf" from our import list. */
1583 listnode_delete(to_bgp
->vpn_policy
[afi
].import_vrf
, vname
);
1584 XFREE(MTYPE_TMP
, vname
);
1586 /* Remove routes imported from "import_vrf". */
1587 /* TODO: In the current logic, we have to first remove all
1588 * imported routes and then (if needed) import back routes
1590 vpn_leak_prechange(idir
, afi
, bgp_get_default(), to_bgp
);
1592 if (to_bgp
->vpn_policy
[afi
].import_vrf
->count
== 0) {
1593 UNSET_FLAG(to_bgp
->af_flags
[afi
][safi
],
1594 BGP_CONFIG_VRF_TO_VRF_IMPORT
);
1595 ecommunity_free(&to_bgp
->vpn_policy
[afi
].rtlist
[idir
]);
1597 ecom
= from_bgp
->vpn_policy
[afi
].rtlist
[edir
];
1598 ecommunity_del_val(to_bgp
->vpn_policy
[afi
].rtlist
[idir
],
1599 (struct ecommunity_val
*)ecom
->val
);
1600 vpn_leak_postchange(idir
, afi
, bgp_get_default(), to_bgp
);
1605 * So SA is assuming that since the ALL_LIST_ELEMENTS_RO
1606 * below is checking for NULL that export_vrf can be
1607 * NULL, consequently it is complaining( like a cabbage )
1608 * that we could dereference and crash in the listcount(..)
1610 * So make it happy, under protest, with liberty and justice
1613 assert(from_bgp
->vpn_policy
[afi
].export_vrf
);
1615 /* Remove us from "import_vrf's" export list. If no other VRF
1616 * is importing from "import_vrf", cleanup appropriately.
1618 for (ALL_LIST_ELEMENTS_RO(from_bgp
->vpn_policy
[afi
].export_vrf
,
1620 if (strcmp(vname
, export_name
) == 0)
1625 * If we have gotten to this point then the vname must
1626 * exist. If not, we are in a world of trouble and
1627 * have slag sitting around.
1629 * import_vrf and export_vrf must match in having
1630 * the in/out names as appropriate.
1634 listnode_delete(from_bgp
->vpn_policy
[afi
].export_vrf
, vname
);
1635 XFREE(MTYPE_TMP
, vname
);
1637 if (!listcount(from_bgp
->vpn_policy
[afi
].export_vrf
)) {
1638 vpn_leak_prechange(edir
, afi
, bgp_get_default(), from_bgp
);
1639 ecommunity_free(&from_bgp
->vpn_policy
[afi
].rtlist
[edir
]);
1640 UNSET_FLAG(from_bgp
->af_flags
[afi
][safi
],
1641 BGP_CONFIG_VRF_TO_VRF_EXPORT
);
1642 memset(&from_bgp
->vpn_policy
[afi
].tovpn_rd
, 0,
1643 sizeof(struct prefix_rd
));
1644 UNSET_FLAG(from_bgp
->vpn_policy
[afi
].flags
,
1645 BGP_VPN_POLICY_TOVPN_RD_SET
);
1646 from_bgp
->vpn_policy
[afi
].tovpn_label
= MPLS_LABEL_NONE
;
1651 /* For testing purpose, static route of MPLS-VPN. */
1652 DEFUN (vpnv4_network
,
1654 "network A.B.C.D/M rd ASN:NN_OR_IP-ADDRESS:NN <tag|label> (0-1048575)",
1655 "Specify a network to announce via BGP\n"
1657 "Specify Route Distinguisher\n"
1658 "VPN Route Distinguisher\n"
1659 "VPN NLRI label (tag)\n"
1660 "VPN NLRI label (tag)\n"
1663 int idx_ipv4_prefixlen
= 1;
1664 int idx_ext_community
= 3;
1666 return bgp_static_set_safi(
1667 AFI_IP
, SAFI_MPLS_VPN
, vty
, argv
[idx_ipv4_prefixlen
]->arg
,
1668 argv
[idx_ext_community
]->arg
, argv
[idx_label
]->arg
, NULL
, 0,
1669 NULL
, NULL
, NULL
, NULL
);
1672 DEFUN (vpnv4_network_route_map
,
1673 vpnv4_network_route_map_cmd
,
1674 "network A.B.C.D/M rd ASN:NN_OR_IP-ADDRESS:NN <tag|label> (0-1048575) route-map WORD",
1675 "Specify a network to announce via BGP\n"
1677 "Specify Route Distinguisher\n"
1678 "VPN Route Distinguisher\n"
1679 "VPN NLRI label (tag)\n"
1680 "VPN NLRI label (tag)\n"
1685 int idx_ipv4_prefixlen
= 1;
1686 int idx_ext_community
= 3;
1689 return bgp_static_set_safi(
1690 AFI_IP
, SAFI_MPLS_VPN
, vty
, argv
[idx_ipv4_prefixlen
]->arg
,
1691 argv
[idx_ext_community
]->arg
, argv
[idx_label
]->arg
,
1692 argv
[idx_word_2
]->arg
, 0, NULL
, NULL
, NULL
, NULL
);
1695 /* For testing purpose, static route of MPLS-VPN. */
1696 DEFUN (no_vpnv4_network
,
1697 no_vpnv4_network_cmd
,
1698 "no network A.B.C.D/M rd ASN:NN_OR_IP-ADDRESS:NN <tag|label> (0-1048575)",
1700 "Specify a network to announce via BGP\n"
1702 "Specify Route Distinguisher\n"
1703 "VPN Route Distinguisher\n"
1704 "VPN NLRI label (tag)\n"
1705 "VPN NLRI label (tag)\n"
1708 int idx_ipv4_prefixlen
= 2;
1709 int idx_ext_community
= 4;
1711 return bgp_static_unset_safi(AFI_IP
, SAFI_MPLS_VPN
, vty
,
1712 argv
[idx_ipv4_prefixlen
]->arg
,
1713 argv
[idx_ext_community
]->arg
,
1714 argv
[idx_label
]->arg
, 0, NULL
, NULL
, NULL
);
1717 DEFUN (vpnv6_network
,
1719 "network X:X::X:X/M rd ASN:NN_OR_IP-ADDRESS:NN <tag|label> (0-1048575) [route-map WORD]",
1720 "Specify a network to announce via BGP\n"
1721 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1722 "Specify Route Distinguisher\n"
1723 "VPN Route Distinguisher\n"
1724 "VPN NLRI label (tag)\n"
1725 "VPN NLRI label (tag)\n"
1730 int idx_ipv6_prefix
= 1;
1731 int idx_ext_community
= 3;
1735 return bgp_static_set_safi(
1736 AFI_IP6
, SAFI_MPLS_VPN
, vty
, argv
[idx_ipv6_prefix
]->arg
,
1737 argv
[idx_ext_community
]->arg
, argv
[idx_label
]->arg
,
1738 argv
[idx_word_2
]->arg
, 0, NULL
, NULL
, NULL
, NULL
);
1740 return bgp_static_set_safi(
1741 AFI_IP6
, SAFI_MPLS_VPN
, vty
, argv
[idx_ipv6_prefix
]->arg
,
1742 argv
[idx_ext_community
]->arg
, argv
[idx_label
]->arg
,
1743 NULL
, 0, NULL
, NULL
, NULL
, NULL
);
1746 /* For testing purpose, static route of MPLS-VPN. */
1747 DEFUN (no_vpnv6_network
,
1748 no_vpnv6_network_cmd
,
1749 "no network X:X::X:X/M rd ASN:NN_OR_IP-ADDRESS:NN <tag|label> (0-1048575)",
1751 "Specify a network to announce via BGP\n"
1752 "IPv6 prefix <network>/<length>, e.g., 3ffe::/16\n"
1753 "Specify Route Distinguisher\n"
1754 "VPN Route Distinguisher\n"
1755 "VPN NLRI label (tag)\n"
1756 "VPN NLRI label (tag)\n"
1759 int idx_ipv6_prefix
= 2;
1760 int idx_ext_community
= 4;
1762 return bgp_static_unset_safi(AFI_IP6
, SAFI_MPLS_VPN
, vty
,
1763 argv
[idx_ipv6_prefix
]->arg
,
1764 argv
[idx_ext_community
]->arg
,
1765 argv
[idx_label
]->arg
, 0, NULL
, NULL
, NULL
);
1768 int bgp_show_mpls_vpn(struct vty
*vty
, afi_t afi
, struct prefix_rd
*prd
,
1769 enum bgp_show_type type
, void *output_arg
, int tags
,
1773 struct bgp_table
*table
;
1775 bgp
= bgp_get_default();
1778 vty_out(vty
, "No BGP process is configured\n");
1780 vty_out(vty
, "{}\n");
1783 table
= bgp
->rib
[afi
][SAFI_MPLS_VPN
];
1784 return bgp_show_table_rd(vty
, bgp
, SAFI_MPLS_VPN
, table
, prd
, type
,
1785 output_arg
, use_json
);
1788 DEFUN (show_bgp_ip_vpn_all_rd
,
1789 show_bgp_ip_vpn_all_rd_cmd
,
1790 "show bgp "BGP_AFI_CMD_STR
" vpn all [rd ASN:NN_OR_IP-ADDRESS:NN] [json]",
1794 "Display VPN NLRI specific information\n"
1795 "Display VPN NLRI specific information\n"
1796 "Display information for a route distinguisher\n"
1797 "VPN Route Distinguisher\n"
1801 struct prefix_rd prd
;
1805 if (argv_find_and_parse_afi(argv
, argc
, &idx
, &afi
)) {
1806 if (argv_find(argv
, argc
, "rd", &idx
)) {
1807 ret
= str2prefix_rd(argv
[idx
+ 1]->arg
, &prd
);
1810 "%% Malformed Route Distinguisher\n");
1813 return bgp_show_mpls_vpn(vty
, afi
, &prd
,
1814 bgp_show_type_normal
, NULL
, 0,
1815 use_json(argc
, argv
));
1817 return bgp_show_mpls_vpn(vty
, afi
, NULL
,
1818 bgp_show_type_normal
, NULL
, 0,
1819 use_json(argc
, argv
));
1825 ALIAS(show_bgp_ip_vpn_all_rd
,
1826 show_bgp_ip_vpn_rd_cmd
,
1827 "show bgp "BGP_AFI_CMD_STR
" vpn rd ASN:NN_OR_IP-ADDRESS:NN [json]",
1831 "Display VPN NLRI specific information\n"
1832 "Display information for a route distinguisher\n"
1833 "VPN Route Distinguisher\n"
1836 #ifdef KEEP_OLD_VPN_COMMANDS
1837 DEFUN (show_ip_bgp_vpn_rd
,
1838 show_ip_bgp_vpn_rd_cmd
,
1839 "show ip bgp "BGP_AFI_CMD_STR
" vpn rd ASN:NN_OR_IP-ADDRESS:NN",
1844 "Address Family modifier\n"
1845 "Display information for a route distinguisher\n"
1846 "VPN Route Distinguisher\n")
1848 int idx_ext_community
= argc
- 1;
1850 struct prefix_rd prd
;
1854 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
1855 ret
= str2prefix_rd(argv
[idx_ext_community
]->arg
, &prd
);
1857 vty_out(vty
, "%% Malformed Route Distinguisher\n");
1860 return bgp_show_mpls_vpn(vty
, afi
, &prd
, bgp_show_type_normal
,
1866 DEFUN (show_ip_bgp_vpn_all
,
1867 show_ip_bgp_vpn_all_cmd
,
1868 "show [ip] bgp <vpnv4|vpnv6>",
1877 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
))
1878 return bgp_show_mpls_vpn(vty
, afi
, NULL
, bgp_show_type_normal
,
1883 DEFUN (show_ip_bgp_vpn_all_tags
,
1884 show_ip_bgp_vpn_all_tags_cmd
,
1885 "show [ip] bgp <vpnv4|vpnv6> all tags",
1890 "Display information about all VPNv4/VPNV6 NLRIs\n"
1891 "Display BGP tags for prefixes\n")
1896 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
))
1897 return bgp_show_mpls_vpn(vty
, afi
, NULL
, bgp_show_type_normal
,
1902 DEFUN (show_ip_bgp_vpn_rd_tags
,
1903 show_ip_bgp_vpn_rd_tags_cmd
,
1904 "show [ip] bgp <vpnv4|vpnv6> rd ASN:NN_OR_IP-ADDRESS:NN tags",
1909 "Display information for a route distinguisher\n"
1910 "VPN Route Distinguisher\n"
1911 "Display BGP tags for prefixes\n")
1913 int idx_ext_community
= 5;
1915 struct prefix_rd prd
;
1919 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
1920 ret
= str2prefix_rd(argv
[idx_ext_community
]->arg
, &prd
);
1922 vty_out(vty
, "%% Malformed Route Distinguisher\n");
1925 return bgp_show_mpls_vpn(vty
, afi
, &prd
, bgp_show_type_normal
,
1931 DEFUN (show_ip_bgp_vpn_all_neighbor_routes
,
1932 show_ip_bgp_vpn_all_neighbor_routes_cmd
,
1933 "show [ip] bgp <vpnv4|vpnv6> all neighbors A.B.C.D routes [json]",
1938 "Display information about all VPNv4/VPNv6 NLRIs\n"
1939 "Detailed information on TCP and BGP neighbor connections\n"
1940 "Neighbor to display information about\n"
1941 "Display routes learned from neighbor\n"
1948 bool uj
= use_json(argc
, argv
);
1952 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
1953 ret
= str2sockunion(argv
[idx_ipv4
]->arg
, &su
);
1956 json_object
*json_no
= NULL
;
1957 json_no
= json_object_new_object();
1958 json_object_string_add(json_no
, "warning",
1959 "Malformed address");
1960 vty_out(vty
, "%s\n",
1961 json_object_to_json_string(json_no
));
1962 json_object_free(json_no
);
1964 vty_out(vty
, "Malformed address: %s\n",
1965 argv
[idx_ipv4
]->arg
);
1969 peer
= peer_lookup(NULL
, &su
);
1970 if (!peer
|| !peer
->afc
[afi
][SAFI_MPLS_VPN
]) {
1972 json_object
*json_no
= NULL
;
1973 json_no
= json_object_new_object();
1974 json_object_string_add(
1976 "No such neighbor or address family");
1977 vty_out(vty
, "%s\n",
1978 json_object_to_json_string(json_no
));
1979 json_object_free(json_no
);
1982 "%% No such neighbor or address family\n");
1986 return bgp_show_mpls_vpn(vty
, afi
, NULL
, bgp_show_type_neighbor
,
1992 DEFUN (show_ip_bgp_vpn_rd_neighbor_routes
,
1993 show_ip_bgp_vpn_rd_neighbor_routes_cmd
,
1994 "show [ip] bgp <vpnv4|vpnv6> rd ASN:NN_OR_IP-ADDRESS:NN neighbors A.B.C.D routes [json]",
1999 "Display information for a route distinguisher\n"
2000 "VPN Route Distinguisher\n"
2001 "Detailed information on TCP and BGP neighbor connections\n"
2002 "Neighbor to display information about\n"
2003 "Display routes learned from neighbor\n"
2006 int idx_ext_community
= 5;
2011 struct prefix_rd prd
;
2012 bool uj
= use_json(argc
, argv
);
2016 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
2017 ret
= str2prefix_rd(argv
[idx_ext_community
]->arg
, &prd
);
2020 json_object
*json_no
= NULL
;
2021 json_no
= json_object_new_object();
2022 json_object_string_add(
2024 "Malformed Route Distinguisher");
2025 vty_out(vty
, "%s\n",
2026 json_object_to_json_string(json_no
));
2027 json_object_free(json_no
);
2030 "%% Malformed Route Distinguisher\n");
2034 ret
= str2sockunion(argv
[idx_ipv4
]->arg
, &su
);
2037 json_object
*json_no
= NULL
;
2038 json_no
= json_object_new_object();
2039 json_object_string_add(json_no
, "warning",
2040 "Malformed address");
2041 vty_out(vty
, "%s\n",
2042 json_object_to_json_string(json_no
));
2043 json_object_free(json_no
);
2045 vty_out(vty
, "Malformed address: %s\n",
2046 argv
[idx_ext_community
]->arg
);
2050 peer
= peer_lookup(NULL
, &su
);
2051 if (!peer
|| !peer
->afc
[afi
][SAFI_MPLS_VPN
]) {
2053 json_object
*json_no
= NULL
;
2054 json_no
= json_object_new_object();
2055 json_object_string_add(
2057 "No such neighbor or address family");
2058 vty_out(vty
, "%s\n",
2059 json_object_to_json_string(json_no
));
2060 json_object_free(json_no
);
2063 "%% No such neighbor or address family\n");
2067 return bgp_show_mpls_vpn(vty
, afi
, &prd
, bgp_show_type_neighbor
,
2073 DEFUN (show_ip_bgp_vpn_all_neighbor_advertised_routes
,
2074 show_ip_bgp_vpn_all_neighbor_advertised_routes_cmd
,
2075 "show [ip] bgp <vpnv4|vpnv6> all neighbors A.B.C.D advertised-routes [json]",
2080 "Display information about all VPNv4/VPNv6 NLRIs\n"
2081 "Detailed information on TCP and BGP neighbor connections\n"
2082 "Neighbor to display information about\n"
2083 "Display the routes advertised to a BGP neighbor\n"
2090 bool uj
= use_json(argc
, argv
);
2094 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
2095 ret
= str2sockunion(argv
[idx_ipv4
]->arg
, &su
);
2098 json_object
*json_no
= NULL
;
2099 json_no
= json_object_new_object();
2100 json_object_string_add(json_no
, "warning",
2101 "Malformed address");
2102 vty_out(vty
, "%s\n",
2103 json_object_to_json_string(json_no
));
2104 json_object_free(json_no
);
2106 vty_out(vty
, "Malformed address: %s\n",
2107 argv
[idx_ipv4
]->arg
);
2110 peer
= peer_lookup(NULL
, &su
);
2111 if (!peer
|| !peer
->afc
[afi
][SAFI_MPLS_VPN
]) {
2113 json_object
*json_no
= NULL
;
2114 json_no
= json_object_new_object();
2115 json_object_string_add(
2117 "No such neighbor or address family");
2118 vty_out(vty
, "%s\n",
2119 json_object_to_json_string(json_no
));
2120 json_object_free(json_no
);
2123 "%% No such neighbor or address family\n");
2126 return show_adj_route_vpn(vty
, peer
, NULL
, AFI_IP
,
2132 DEFUN (show_ip_bgp_vpn_rd_neighbor_advertised_routes
,
2133 show_ip_bgp_vpn_rd_neighbor_advertised_routes_cmd
,
2134 "show [ip] bgp <vpnv4|vpnv6> rd ASN:NN_OR_IP-ADDRESS:NN neighbors A.B.C.D advertised-routes [json]",
2139 "Display information for a route distinguisher\n"
2140 "VPN Route Distinguisher\n"
2141 "Detailed information on TCP and BGP neighbor connections\n"
2142 "Neighbor to display information about\n"
2143 "Display the routes advertised to a BGP neighbor\n"
2146 int idx_ext_community
= 5;
2150 struct prefix_rd prd
;
2152 bool uj
= use_json(argc
, argv
);
2156 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
2157 ret
= str2sockunion(argv
[idx_ipv4
]->arg
, &su
);
2160 json_object
*json_no
= NULL
;
2161 json_no
= json_object_new_object();
2162 json_object_string_add(json_no
, "warning",
2163 "Malformed address");
2164 vty_out(vty
, "%s\n",
2165 json_object_to_json_string(json_no
));
2166 json_object_free(json_no
);
2168 vty_out(vty
, "Malformed address: %s\n",
2169 argv
[idx_ext_community
]->arg
);
2172 peer
= peer_lookup(NULL
, &su
);
2173 if (!peer
|| !peer
->afc
[afi
][SAFI_MPLS_VPN
]) {
2175 json_object
*json_no
= NULL
;
2176 json_no
= json_object_new_object();
2177 json_object_string_add(
2179 "No such neighbor or address family");
2180 vty_out(vty
, "%s\n",
2181 json_object_to_json_string(json_no
));
2182 json_object_free(json_no
);
2185 "%% No such neighbor or address family\n");
2189 ret
= str2prefix_rd(argv
[idx_ext_community
]->arg
, &prd
);
2192 json_object
*json_no
= NULL
;
2193 json_no
= json_object_new_object();
2194 json_object_string_add(
2196 "Malformed Route Distinguisher");
2197 vty_out(vty
, "%s\n",
2198 json_object_to_json_string(json_no
));
2199 json_object_free(json_no
);
2202 "%% Malformed Route Distinguisher\n");
2206 return show_adj_route_vpn(vty
, peer
, &prd
, AFI_IP
,
2211 #endif /* KEEP_OLD_VPN_COMMANDS */
2213 void bgp_mplsvpn_init(void)
2215 install_element(BGP_VPNV4_NODE
, &vpnv4_network_cmd
);
2216 install_element(BGP_VPNV4_NODE
, &vpnv4_network_route_map_cmd
);
2217 install_element(BGP_VPNV4_NODE
, &no_vpnv4_network_cmd
);
2219 install_element(BGP_VPNV6_NODE
, &vpnv6_network_cmd
);
2220 install_element(BGP_VPNV6_NODE
, &no_vpnv6_network_cmd
);
2222 install_element(VIEW_NODE
, &show_bgp_ip_vpn_all_rd_cmd
);
2223 install_element(VIEW_NODE
, &show_bgp_ip_vpn_rd_cmd
);
2224 #ifdef KEEP_OLD_VPN_COMMANDS
2225 install_element(VIEW_NODE
, &show_ip_bgp_vpn_rd_cmd
);
2226 install_element(VIEW_NODE
, &show_ip_bgp_vpn_all_cmd
);
2227 install_element(VIEW_NODE
, &show_ip_bgp_vpn_all_tags_cmd
);
2228 install_element(VIEW_NODE
, &show_ip_bgp_vpn_rd_tags_cmd
);
2229 install_element(VIEW_NODE
, &show_ip_bgp_vpn_all_neighbor_routes_cmd
);
2230 install_element(VIEW_NODE
, &show_ip_bgp_vpn_rd_neighbor_routes_cmd
);
2231 install_element(VIEW_NODE
,
2232 &show_ip_bgp_vpn_all_neighbor_advertised_routes_cmd
);
2233 install_element(VIEW_NODE
,
2234 &show_ip_bgp_vpn_rd_neighbor_advertised_routes_cmd
);
2235 #endif /* KEEP_OLD_VPN_COMMANDS */
2238 vrf_id_t
get_first_vrf_for_redirect_with_rt(struct ecommunity
*eckey
)
2240 struct listnode
*mnode
, *mnnode
;
2243 for (ALL_LIST_ELEMENTS(bm
->bgp
, mnode
, mnnode
, bgp
)) {
2244 struct ecommunity
*ec
;
2246 if (bgp
->inst_type
!= BGP_INSTANCE_TYPE_VRF
)
2249 ec
= bgp
->vpn_policy
[AFI_IP
].import_redirect_rtlist
;
2251 if (ecom_intersect(ec
, eckey
))
2258 * The purpose of this function is to process leaks that were deferred
2259 * from earlier per-vrf configuration due to not-yet-existing default
2260 * vrf, in other words, configuration such as:
2262 * router bgp MMM vrf FOO
2263 * address-family ipv4 unicast
2265 * exit-address-family
2270 * This function gets called when the default instance ("router bgp NNN")
2273 void vpn_leak_postchange_all(void)
2275 struct listnode
*next
;
2277 struct bgp
*bgp_default
= bgp_get_default();
2279 assert(bgp_default
);
2281 /* First, do any exporting from VRFs to the single VPN RIB */
2282 for (ALL_LIST_ELEMENTS_RO(bm
->bgp
, next
, bgp
)) {
2284 if (bgp
->inst_type
!= BGP_INSTANCE_TYPE_VRF
)
2287 vpn_leak_postchange(
2288 BGP_VPN_POLICY_DIR_TOVPN
,
2293 vpn_leak_postchange(
2294 BGP_VPN_POLICY_DIR_TOVPN
,
2300 /* Now, do any importing to VRFs from the single VPN RIB */
2301 for (ALL_LIST_ELEMENTS_RO(bm
->bgp
, next
, bgp
)) {
2303 if (bgp
->inst_type
!= BGP_INSTANCE_TYPE_VRF
)
2306 vpn_leak_postchange(
2307 BGP_VPN_POLICY_DIR_FROMVPN
,
2312 vpn_leak_postchange(
2313 BGP_VPN_POLICY_DIR_FROMVPN
,