1 /* Route map function of bgpd.
2 * Copyright (C) 1998, 1999 Kunihiro Ishiguro
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
32 #ifdef HAVE_LIBPCREPOSIX
33 #include <pcreposix.h>
36 #endif /* HAVE_LIBPCREPOSIX */
38 #include "sockunion.h"
43 #include "bgpd/bgpd.h"
44 #include "bgpd/bgp_table.h"
45 #include "bgpd/bgp_attr.h"
46 #include "bgpd/bgp_aspath.h"
47 #include "bgpd/bgp_packet.h"
48 #include "bgpd/bgp_route.h"
49 #include "bgpd/bgp_zebra.h"
50 #include "bgpd/bgp_regex.h"
51 #include "bgpd/bgp_community.h"
52 #include "bgpd/bgp_clist.h"
53 #include "bgpd/bgp_filter.h"
54 #include "bgpd/bgp_mplsvpn.h"
55 #include "bgpd/bgp_ecommunity.h"
56 #include "bgpd/bgp_lcommunity.h"
57 #include "bgpd/bgp_vty.h"
58 #include "bgpd/bgp_debug.h"
59 #include "bgpd/bgp_evpn.h"
60 #include "bgpd/bgp_evpn_private.h"
61 #include "bgpd/bgp_evpn_vty.h"
62 #include "bgpd/bgp_mplsvpn.h"
63 #include "bgpd/bgp_pbr.h"
64 #include "bgpd/bgp_flowspec_util.h"
65 #include "bgpd/bgp_encap_types.h"
68 #include "bgpd/rfapi/bgp_rfapi_cfg.h"
71 #ifndef VTYSH_EXTRACT_PL
72 #include "bgpd/bgp_routemap_clippy.c"
75 /* Memo of route-map commands.
84 ip route-source : Done
88 ipv6 route-source: (This will not be implemented by bgpd)
89 ipv6 prefix-list : Done
90 length : (This will not be implemented by bgpd)
92 route-type : (This will not be implemented by bgpd)
94 local-preference : Done
96 set as-path prepend : Done
98 automatic-tag : (This will not be implemented by bgpd)
100 large-community : Done
101 large-comm-list : Done
104 default : (This will not be implemented by bgpd)
105 interface : (This will not be implemented by bgpd)
106 ip default : (This will not be implemented by bgpd)
108 ip precedence : (This will not be implemented by bgpd)
109 ip tos : (This will not be implemented by bgpd)
110 level : (This will not be implemented by bgpd)
111 local-preference : Done
113 metric-type : Not yet
120 set ipv6 next-hop global: Done
121 set ipv6 next-hop prefer-global: Done
122 set ipv6 next-hop local : Done
123 set as-path exclude : Done
127 /* generic value manipulation to be shared in multiple rules */
129 #define RMAP_VALUE_SET 0
130 #define RMAP_VALUE_ADD 1
131 #define RMAP_VALUE_SUB 2
139 static int route_value_match(struct rmap_value
*rv
, uint32_t value
)
141 if (rv
->variable
== 0 && value
== rv
->value
)
147 static uint32_t route_value_adjust(struct rmap_value
*rv
, uint32_t current
,
152 switch (rv
->variable
) {
161 switch (rv
->action
) {
163 if (current
> UINT32_MAX
- value
)
165 return current
+ value
;
167 if (current
<= value
)
169 return current
- value
;
175 static void *route_value_compile(const char *arg
)
177 uint8_t action
= RMAP_VALUE_SET
, var
= 0;
178 unsigned long larg
= 0;
180 struct rmap_value
*rv
;
183 action
= RMAP_VALUE_ADD
;
185 } else if (arg
[0] == '-') {
186 action
= RMAP_VALUE_SUB
;
190 if (all_digit(arg
)) {
192 larg
= strtoul(arg
, &endptr
, 10);
193 if (*arg
== 0 || *endptr
!= 0 || errno
|| larg
> UINT32_MAX
)
196 if (strcmp(arg
, "rtt") == 0)
202 rv
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_value
));
210 static void route_value_free(void *rule
)
212 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
215 /* generic as path object to be shared in multiple rules */
217 static void *route_aspath_compile(const char *arg
)
219 struct aspath
*aspath
;
221 aspath
= aspath_str2aspath(arg
);
227 static void route_aspath_free(void *rule
)
229 struct aspath
*aspath
= rule
;
233 struct bgp_match_peer_compiled
{
238 /* 'match peer (A.B.C.D|X:X::X:X|WORD)' */
240 /* Compares the peer specified in the 'match peer' clause with the peer
241 received in bgp_path_info->peer. If it is the same, or if the peer structure
242 received is a peer_group containing it, returns RMAP_MATCH. */
243 static enum route_map_cmd_result_t
244 route_match_peer(void *rule
, const struct prefix
*prefix
,
245 route_map_object_t type
, void *object
)
247 struct bgp_match_peer_compiled
*pc
;
249 union sockunion su_def
= {
250 .sin
= {.sin_family
= AF_INET
, .sin_addr
.s_addr
= INADDR_ANY
}};
251 struct peer_group
*group
;
253 struct listnode
*node
, *nnode
;
255 if (type
== RMAP_BGP
) {
258 peer
= ((struct bgp_path_info
*)object
)->peer
;
264 if (strcmp(peer
->conf_if
, pc
->interface
) == 0)
270 /* If su='0.0.0.0' (command 'match peer local'), and it's a
272 REDISTRIBUTE or DEFAULT_GENERATED route => return RMAP_MATCH
274 if (sockunion_same(su
, &su_def
)) {
276 if (CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_NETWORK
)
277 || CHECK_FLAG(peer
->rmap_type
,
278 PEER_RMAP_TYPE_REDISTRIBUTE
)
279 || CHECK_FLAG(peer
->rmap_type
,
280 PEER_RMAP_TYPE_DEFAULT
))
287 if (!CHECK_FLAG(peer
->sflags
, PEER_STATUS_GROUP
)) {
288 if (sockunion_same(su
, &peer
->su
))
294 for (ALL_LIST_ELEMENTS(group
->peer
, node
, nnode
,
296 if (sockunion_same(su
, &peer
->su
))
305 static void *route_match_peer_compile(const char *arg
)
307 struct bgp_match_peer_compiled
*pc
;
310 pc
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
,
311 sizeof(struct bgp_match_peer_compiled
));
313 ret
= str2sockunion(strcmp(arg
, "local") ? arg
: "0.0.0.0", &pc
->su
);
315 pc
->interface
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
322 /* Free route map's compiled `ip address' value. */
323 static void route_match_peer_free(void *rule
)
325 struct bgp_match_peer_compiled
*pc
= rule
;
327 XFREE(MTYPE_ROUTE_MAP_COMPILED
, pc
->interface
);
329 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
332 /* Route map commands for ip address matching. */
333 struct route_map_rule_cmd route_match_peer_cmd
= {"peer", route_match_peer
,
334 route_match_peer_compile
,
335 route_match_peer_free
};
337 #if defined(HAVE_LUA)
338 static enum route_map_cmd_result_t
339 route_match_command(void *rule
, const struct prefix
*prefix
,
340 route_map_object_t type
, void *object
)
342 int status
= RMAP_NOMATCH
;
343 u_int32_t locpref
= 0;
344 u_int32_t newlocpref
= 0;
345 enum lua_rm_status lrm_status
;
346 struct bgp_path_info
*path
= (struct bgp_path_info
*)object
;
347 lua_State
*L
= lua_initialize("/etc/frr/lua.scr");
353 * Setup the prefix information to pass in
355 lua_setup_prefix_table(L
, prefix
);
357 zlog_debug("Set up prefix table");
359 * Setup the bgp_path_info information
362 lua_pushinteger(L
, path
->attr
->med
);
363 lua_setfield(L
, -2, "metric");
364 lua_pushinteger(L
, path
->attr
->nh_ifindex
);
365 lua_setfield(L
, -2, "ifindex");
366 lua_pushstring(L
, path
->attr
->aspath
->str
);
367 lua_setfield(L
, -2, "aspath");
368 lua_pushinteger(L
, path
->attr
->local_pref
);
369 lua_setfield(L
, -2, "localpref");
370 zlog_debug("%s %d", path
->attr
->aspath
->str
, path
->attr
->nh_ifindex
);
371 lua_setglobal(L
, "nexthop");
373 zlog_debug("Set up nexthop information");
377 lrm_status
= lua_run_rm_rule(L
, rule
);
378 switch (lrm_status
) {
380 zlog_debug("RM_FAILURE");
383 zlog_debug("RM_NOMATCH");
385 case LUA_RM_MATCH_AND_CHANGE
:
386 zlog_debug("MATCH AND CHANGE");
387 lua_getglobal(L
, "nexthop");
388 path
->attr
->med
= get_integer(L
, "metric");
390 * This needs to be abstraced with the set function
392 if (path
->attr
->flag
& ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF
))
393 locpref
= path
->attr
->local_pref
;
394 newlocpref
= get_integer(L
, "localpref");
395 if (newlocpref
!= locpref
) {
396 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF
);
397 path
->attr
->local_pref
= newlocpref
;
402 zlog_debug("MATCH ONLY");
410 static void *route_match_command_compile(const char *arg
)
414 command
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
419 route_match_command_free(void *rule
)
421 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
424 struct route_map_rule_cmd route_match_command_cmd
= {
427 route_match_command_compile
,
428 route_match_command_free
432 /* `match ip address IP_ACCESS_LIST' */
434 /* Match function should return 1 if match is success else return
436 static enum route_map_cmd_result_t
437 route_match_ip_address(void *rule
, const struct prefix
*prefix
,
438 route_map_object_t type
, void *object
)
440 struct access_list
*alist
;
442 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET
) {
443 alist
= access_list_lookup(AFI_IP
, (char *)rule
);
447 return (access_list_apply(alist
, prefix
) == FILTER_DENY
454 /* Route map `ip address' match statement. `arg' should be
456 static void *route_match_ip_address_compile(const char *arg
)
458 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
461 /* Free route map's compiled `ip address' value. */
462 static void route_match_ip_address_free(void *rule
)
464 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
467 /* Route map commands for ip address matching. */
468 struct route_map_rule_cmd route_match_ip_address_cmd
= {
469 "ip address", route_match_ip_address
, route_match_ip_address_compile
,
470 route_match_ip_address_free
};
472 /* `match ip next-hop IP_ADDRESS' */
474 /* Match function return 1 if match is success else return zero. */
475 static enum route_map_cmd_result_t
476 route_match_ip_next_hop(void *rule
, const struct prefix
*prefix
,
477 route_map_object_t type
, void *object
)
479 struct access_list
*alist
;
480 struct bgp_path_info
*path
;
481 struct prefix_ipv4 p
;
483 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET
) {
486 p
.prefix
= path
->attr
->nexthop
;
487 p
.prefixlen
= IPV4_MAX_BITLEN
;
489 alist
= access_list_lookup(AFI_IP
, (char *)rule
);
493 return (access_list_apply(alist
, &p
) == FILTER_DENY
500 /* Route map `ip next-hop' match statement. `arg' is
502 static void *route_match_ip_next_hop_compile(const char *arg
)
504 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
507 /* Free route map's compiled `ip address' value. */
508 static void route_match_ip_next_hop_free(void *rule
)
510 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
513 /* Route map commands for ip next-hop matching. */
514 struct route_map_rule_cmd route_match_ip_next_hop_cmd
= {
515 "ip next-hop", route_match_ip_next_hop
, route_match_ip_next_hop_compile
,
516 route_match_ip_next_hop_free
};
518 /* `match ip route-source ACCESS-LIST' */
520 /* Match function return 1 if match is success else return zero. */
521 static enum route_map_cmd_result_t
522 route_match_ip_route_source(void *rule
, const struct prefix
*pfx
,
523 route_map_object_t type
, void *object
)
525 struct access_list
*alist
;
526 struct bgp_path_info
*path
;
528 struct prefix_ipv4 p
;
530 if (type
== RMAP_BGP
&& pfx
->family
== AF_INET
) {
534 if (!peer
|| sockunion_family(&peer
->su
) != AF_INET
)
538 p
.prefix
= peer
->su
.sin
.sin_addr
;
539 p
.prefixlen
= IPV4_MAX_BITLEN
;
541 alist
= access_list_lookup(AFI_IP
, (char *)rule
);
545 return (access_list_apply(alist
, &p
) == FILTER_DENY
552 /* Route map `ip route-source' match statement. `arg' is
554 static void *route_match_ip_route_source_compile(const char *arg
)
556 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
559 /* Free route map's compiled `ip address' value. */
560 static void route_match_ip_route_source_free(void *rule
)
562 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
565 /* Route map commands for ip route-source matching. */
566 struct route_map_rule_cmd route_match_ip_route_source_cmd
= {
567 "ip route-source", route_match_ip_route_source
,
568 route_match_ip_route_source_compile
, route_match_ip_route_source_free
};
570 static enum route_map_cmd_result_t
571 route_match_prefix_list_flowspec(afi_t afi
, struct prefix_list
*plist
,
572 const struct prefix
*p
)
575 struct bgp_pbr_entry_main api
;
577 memset(&api
, 0, sizeof(api
));
579 /* extract match from flowspec entries */
580 ret
= bgp_flowspec_match_rules_fill(
581 (uint8_t *)p
->u
.prefix_flowspec
.ptr
,
582 p
->u
.prefix_flowspec
.prefixlen
, &api
);
585 if (api
.match_bitmask
& PREFIX_DST_PRESENT
||
586 api
.match_bitmask_iprule
& PREFIX_DST_PRESENT
) {
587 if (family2afi((&api
.dst_prefix
)->family
) != afi
)
589 return prefix_list_apply(plist
, &api
.dst_prefix
) == PREFIX_DENY
592 } else if (api
.match_bitmask
& PREFIX_SRC_PRESENT
||
593 api
.match_bitmask_iprule
& PREFIX_SRC_PRESENT
) {
594 if (family2afi((&api
.src_prefix
)->family
) != afi
)
596 return (prefix_list_apply(plist
, &api
.src_prefix
) == PREFIX_DENY
603 static enum route_map_cmd_result_t
604 route_match_address_prefix_list(void *rule
, afi_t afi
,
605 const struct prefix
*prefix
,
606 route_map_object_t type
, void *object
)
608 struct prefix_list
*plist
;
610 if (type
!= RMAP_BGP
)
613 plist
= prefix_list_lookup(afi
, (char *)rule
);
617 if (prefix
->family
== AF_FLOWSPEC
)
618 return route_match_prefix_list_flowspec(afi
, plist
,
620 return (prefix_list_apply(plist
, prefix
) == PREFIX_DENY
? RMAP_NOMATCH
624 static enum route_map_cmd_result_t
625 route_match_ip_address_prefix_list(void *rule
, const struct prefix
*prefix
,
626 route_map_object_t type
, void *object
)
628 return route_match_address_prefix_list(rule
, AFI_IP
, prefix
, type
,
632 static void *route_match_ip_address_prefix_list_compile(const char *arg
)
634 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
637 static void route_match_ip_address_prefix_list_free(void *rule
)
639 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
642 struct route_map_rule_cmd route_match_ip_address_prefix_list_cmd
= {
643 "ip address prefix-list", route_match_ip_address_prefix_list
,
644 route_match_ip_address_prefix_list_compile
,
645 route_match_ip_address_prefix_list_free
};
647 /* `match ip next-hop prefix-list PREFIX_LIST' */
649 static enum route_map_cmd_result_t
650 route_match_ip_next_hop_prefix_list(void *rule
, const struct prefix
*prefix
,
651 route_map_object_t type
, void *object
)
653 struct prefix_list
*plist
;
654 struct bgp_path_info
*path
;
655 struct prefix_ipv4 p
;
657 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET
) {
660 p
.prefix
= path
->attr
->nexthop
;
661 p
.prefixlen
= IPV4_MAX_BITLEN
;
663 plist
= prefix_list_lookup(AFI_IP
, (char *)rule
);
667 return (prefix_list_apply(plist
, &p
) == PREFIX_DENY
674 static void *route_match_ip_next_hop_prefix_list_compile(const char *arg
)
676 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
679 static void route_match_ip_next_hop_prefix_list_free(void *rule
)
681 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
684 struct route_map_rule_cmd route_match_ip_next_hop_prefix_list_cmd
= {
685 "ip next-hop prefix-list", route_match_ip_next_hop_prefix_list
,
686 route_match_ip_next_hop_prefix_list_compile
,
687 route_match_ip_next_hop_prefix_list_free
};
689 /* `match ip next-hop type <blackhole>' */
691 static enum route_map_cmd_result_t
692 route_match_ip_next_hop_type(void *rule
, const struct prefix
*prefix
,
693 route_map_object_t type
, void *object
)
695 struct bgp_path_info
*path
;
697 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET
) {
698 path
= (struct bgp_path_info
*)object
;
699 if (!path
|| !path
->attr
)
702 /* If nexthop interface's index can't be resolved and nexthop is
703 set to any address then mark it as type `blackhole`.
704 This logic works for matching kernel/static routes like:
705 `ip route add blackhole 10.0.0.1`. */
706 if (path
->attr
->nexthop
.s_addr
== INADDR_ANY
707 && !path
->attr
->nh_ifindex
)
713 static void *route_match_ip_next_hop_type_compile(const char *arg
)
715 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
718 static void route_match_ip_next_hop_type_free(void *rule
)
720 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
723 static struct route_map_rule_cmd route_match_ip_next_hop_type_cmd
= {
724 "ip next-hop type", route_match_ip_next_hop_type
,
725 route_match_ip_next_hop_type_compile
,
726 route_match_ip_next_hop_type_free
};
728 /* `match ip route-source prefix-list PREFIX_LIST' */
730 static enum route_map_cmd_result_t
731 route_match_ip_route_source_prefix_list(void *rule
,
732 const struct prefix
*prefix
,
733 route_map_object_t type
, void *object
)
735 struct prefix_list
*plist
;
736 struct bgp_path_info
*path
;
738 struct prefix_ipv4 p
;
740 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET
) {
744 if (!peer
|| sockunion_family(&peer
->su
) != AF_INET
)
748 p
.prefix
= peer
->su
.sin
.sin_addr
;
749 p
.prefixlen
= IPV4_MAX_BITLEN
;
751 plist
= prefix_list_lookup(AFI_IP
, (char *)rule
);
755 return (prefix_list_apply(plist
, &p
) == PREFIX_DENY
762 static void *route_match_ip_route_source_prefix_list_compile(const char *arg
)
764 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
767 static void route_match_ip_route_source_prefix_list_free(void *rule
)
769 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
772 struct route_map_rule_cmd route_match_ip_route_source_prefix_list_cmd
= {
773 "ip route-source prefix-list", route_match_ip_route_source_prefix_list
,
774 route_match_ip_route_source_prefix_list_compile
,
775 route_match_ip_route_source_prefix_list_free
};
777 /* `match evpn default-route' */
779 /* Match function should return 1 if match is success else 0 */
780 static enum route_map_cmd_result_t
781 route_match_evpn_default_route(void *rule
, const struct prefix
*p
,
782 route_map_object_t type
, void *object
)
784 if (type
== RMAP_BGP
&& is_evpn_prefix_default(p
))
790 /* Route map commands for default-route matching. */
791 struct route_map_rule_cmd route_match_evpn_default_route_cmd
= {
792 "evpn default-route", route_match_evpn_default_route
, NULL
, NULL
};
794 /* `match mac address MAC_ACCESS_LIST' */
796 /* Match function should return 1 if match is success else return
798 static enum route_map_cmd_result_t
799 route_match_mac_address(void *rule
, const struct prefix
*prefix
,
800 route_map_object_t type
, void *object
)
802 struct access_list
*alist
;
805 if (type
== RMAP_BGP
) {
806 alist
= access_list_lookup(AFI_L2VPN
, (char *)rule
);
810 if (prefix
->u
.prefix_evpn
.route_type
!= BGP_EVPN_MAC_IP_ROUTE
)
813 p
.family
= AF_ETHERNET
;
814 p
.prefixlen
= ETH_ALEN
* 8;
815 p
.u
.prefix_eth
= prefix
->u
.prefix_evpn
.macip_addr
.mac
;
817 return (access_list_apply(alist
, &p
) == FILTER_DENY
825 /* Route map `mac address' match statement. `arg' should be
827 static void *route_match_mac_address_compile(const char *arg
)
829 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
832 /* Free route map's compiled `ip address' value. */
833 static void route_match_mac_address_free(void *rule
)
835 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
838 /* Route map commands for mac address matching. */
839 struct route_map_rule_cmd route_match_mac_address_cmd
= {
840 "mac address", route_match_mac_address
, route_match_mac_address_compile
,
841 route_match_mac_address_free
};
844 * Match function returns:
845 * ...RMAP_MATCH if match is found.
846 * ...RMAP_NOMATCH if match is not found.
847 * ...RMAP_NOOP to ignore this match check.
849 static enum route_map_cmd_result_t
850 route_match_vni(void *rule
, const struct prefix
*prefix
,
851 route_map_object_t type
, void *object
)
854 unsigned int label_cnt
= 0;
855 struct bgp_path_info
*path
= NULL
;
856 struct prefix_evpn
*evp
= (struct prefix_evpn
*) prefix
;
858 if (type
== RMAP_BGP
) {
859 vni
= *((vni_t
*)rule
);
860 path
= (struct bgp_path_info
*)object
;
863 * This rmap filter is valid for vxlan tunnel type only.
864 * For any other tunnel type, return noop to ignore
867 if (path
->attr
&& path
->attr
->encap_tunneltype
!=
868 BGP_ENCAP_TYPE_VXLAN
)
872 * Apply filter to type 1, 2, 5 routes only.
873 * Other route types do not have vni label.
875 if (evp
&& (evp
->prefix
.route_type
!= BGP_EVPN_AD_ROUTE
&&
876 evp
->prefix
.route_type
!= BGP_EVPN_MAC_IP_ROUTE
&&
877 evp
->prefix
.route_type
!= BGP_EVPN_IP_PREFIX_ROUTE
))
880 if (path
->extra
== NULL
)
883 for ( ; label_cnt
< BGP_MAX_LABELS
&&
884 label_cnt
< path
->extra
->num_labels
; label_cnt
++) {
885 if (vni
== label2vni(&path
->extra
->label
[label_cnt
]))
893 /* Route map `vni' match statement. */
894 static void *route_match_vni_compile(const char *arg
)
899 vni
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(vni_t
));
901 *vni
= strtoul(arg
, &end
, 10);
903 XFREE(MTYPE_ROUTE_MAP_COMPILED
, vni
);
910 /* Free route map's compiled `vni' value. */
911 static void route_match_vni_free(void *rule
)
913 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
916 /* Route map commands for vni matching. */
917 struct route_map_rule_cmd route_match_evpn_vni_cmd
= {
918 "evpn vni", route_match_vni
, route_match_vni_compile
,
919 route_match_vni_free
};
921 /* `match evpn route-type' */
923 /* Match function should return 1 if match is success else return
925 static enum route_map_cmd_result_t
926 route_match_evpn_route_type(void *rule
, const struct prefix
*pfx
,
927 route_map_object_t type
, void *object
)
929 uint8_t route_type
= 0;
931 if (type
== RMAP_BGP
) {
932 route_type
= *((uint8_t *)rule
);
934 if (route_type
== pfx
->u
.prefix_evpn
.route_type
)
941 /* Route map `route-type' match statement. */
942 static void *route_match_evpn_route_type_compile(const char *arg
)
944 uint8_t *route_type
= NULL
;
946 route_type
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(uint8_t));
948 if (strncmp(arg
, "ma", 2) == 0)
949 *route_type
= BGP_EVPN_MAC_IP_ROUTE
;
950 else if (strncmp(arg
, "mu", 2) == 0)
951 *route_type
= BGP_EVPN_IMET_ROUTE
;
953 *route_type
= BGP_EVPN_IP_PREFIX_ROUTE
;
958 /* Free route map's compiled `route-type' value. */
959 static void route_match_evpn_route_type_free(void *rule
)
961 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
964 /* Route map commands for evpn route-type matching. */
965 struct route_map_rule_cmd route_match_evpn_route_type_cmd
= {
966 "evpn route-type", route_match_evpn_route_type
,
967 route_match_evpn_route_type_compile
, route_match_evpn_route_type_free
};
969 /* Route map commands for VRF route leak with source vrf matching */
970 static enum route_map_cmd_result_t
971 route_match_vrl_source_vrf(void *rule
, const struct prefix
*prefix
,
972 route_map_object_t type
, void *object
)
974 struct bgp_path_info
*path
;
977 if (type
== RMAP_BGP
) {
979 path
= (struct bgp_path_info
*)object
;
981 if (strncmp(vrf_name
, "n/a", VRF_NAMSIZ
) == 0)
984 if (path
->extra
== NULL
)
987 if (strncmp(vrf_name
, vrf_id_to_name(
988 path
->extra
->bgp_orig
->vrf_id
), VRF_NAMSIZ
)
996 static void *route_match_vrl_source_vrf_compile(const char *arg
)
998 uint8_t *vrf_name
= NULL
;
1000 vrf_name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1005 /* Free route map's compiled `route-type' value. */
1006 static void route_match_vrl_source_vrf_free(void *rule
)
1008 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1011 struct route_map_rule_cmd route_match_vrl_source_vrf_cmd
= {
1012 "source-vrf", route_match_vrl_source_vrf
,
1013 route_match_vrl_source_vrf_compile
,
1014 route_match_vrl_source_vrf_free
};
1016 /* `match local-preference LOCAL-PREF' */
1018 /* Match function return 1 if match is success else return zero. */
1019 static enum route_map_cmd_result_t
1020 route_match_local_pref(void *rule
, const struct prefix
*prefix
,
1021 route_map_object_t type
, void *object
)
1023 uint32_t *local_pref
;
1024 struct bgp_path_info
*path
;
1026 if (type
== RMAP_BGP
) {
1030 if (path
->attr
->local_pref
== *local_pref
)
1033 return RMAP_NOMATCH
;
1035 return RMAP_NOMATCH
;
1038 /* Route map `match local-preference' match statement.
1039 `arg' is local-pref value */
1040 static void *route_match_local_pref_compile(const char *arg
)
1042 uint32_t *local_pref
;
1043 char *endptr
= NULL
;
1044 unsigned long tmpval
;
1046 /* Locpref value shoud be integer. */
1047 if (!all_digit(arg
))
1051 tmpval
= strtoul(arg
, &endptr
, 10);
1052 if (*endptr
!= '\0' || errno
|| tmpval
> UINT32_MAX
)
1055 local_pref
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(uint32_t));
1057 *local_pref
= tmpval
;
1061 /* Free route map's compiled `match local-preference' value. */
1062 static void route_match_local_pref_free(void *rule
)
1064 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1067 /* Route map commands for metric matching. */
1068 struct route_map_rule_cmd route_match_local_pref_cmd
= {
1069 "local-preference", route_match_local_pref
,
1070 route_match_local_pref_compile
, route_match_local_pref_free
};
1072 /* `match metric METRIC' */
1074 /* Match function return 1 if match is success else return zero. */
1075 static enum route_map_cmd_result_t
1076 route_match_metric(void *rule
, const struct prefix
*prefix
,
1077 route_map_object_t type
, void *object
)
1079 struct rmap_value
*rv
;
1080 struct bgp_path_info
*path
;
1082 if (type
== RMAP_BGP
) {
1085 return route_value_match(rv
, path
->attr
->med
);
1087 return RMAP_NOMATCH
;
1090 /* Route map commands for metric matching. */
1091 struct route_map_rule_cmd route_match_metric_cmd
= {
1092 "metric", route_match_metric
, route_value_compile
, route_value_free
,
1095 /* `match as-path ASPATH' */
1097 /* Match function for as-path match. I assume given object is */
1098 static enum route_map_cmd_result_t
1099 route_match_aspath(void *rule
, const struct prefix
*prefix
,
1100 route_map_object_t type
, void *object
)
1103 struct as_list
*as_list
;
1104 struct bgp_path_info
*path
;
1106 if (type
== RMAP_BGP
) {
1107 as_list
= as_list_lookup((char *)rule
);
1108 if (as_list
== NULL
)
1109 return RMAP_NOMATCH
;
1113 /* Perform match. */
1114 return ((as_list_apply(as_list
, path
->attr
->aspath
)
1119 return RMAP_NOMATCH
;
1122 /* Compile function for as-path match. */
1123 static void *route_match_aspath_compile(const char *arg
)
1125 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1128 /* Compile function for as-path match. */
1129 static void route_match_aspath_free(void *rule
)
1131 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1134 /* Route map commands for aspath matching. */
1135 struct route_map_rule_cmd route_match_aspath_cmd
= {
1136 "as-path", route_match_aspath
, route_match_aspath_compile
,
1137 route_match_aspath_free
};
1139 /* `match community COMMUNIY' */
1140 struct rmap_community
{
1146 /* Match function for community match. */
1147 static enum route_map_cmd_result_t
1148 route_match_community(void *rule
, const struct prefix
*prefix
,
1149 route_map_object_t type
, void *object
)
1151 struct community_list
*list
;
1152 struct bgp_path_info
*path
;
1153 struct rmap_community
*rcom
= rule
;
1155 if (type
== RMAP_BGP
) {
1159 list
= community_list_lookup(bgp_clist
, rcom
->name
,
1161 COMMUNITY_LIST_MASTER
);
1163 return RMAP_NOMATCH
;
1166 if (community_list_exact_match(path
->attr
->community
,
1170 if (community_list_match(path
->attr
->community
, list
))
1174 return RMAP_NOMATCH
;
1177 /* Compile function for community match. */
1178 static void *route_match_community_compile(const char *arg
)
1180 struct rmap_community
*rcom
;
1184 rcom
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_community
));
1186 p
= strchr(arg
, ' ');
1189 rcom
->name
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, len
+ 1);
1190 memcpy(rcom
->name
, arg
, len
);
1193 rcom
->name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1197 rcom
->name_hash
= bgp_clist_hash_key(rcom
->name
);
1201 /* Compile function for community match. */
1202 static void route_match_community_free(void *rule
)
1204 struct rmap_community
*rcom
= rule
;
1206 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
->name
);
1207 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
);
1210 /* Route map commands for community matching. */
1211 struct route_map_rule_cmd route_match_community_cmd
= {
1212 "community", route_match_community
, route_match_community_compile
,
1213 route_match_community_free
};
1215 /* Match function for lcommunity match. */
1216 static enum route_map_cmd_result_t
1217 route_match_lcommunity(void *rule
, const struct prefix
*prefix
,
1218 route_map_object_t type
, void *object
)
1220 struct community_list
*list
;
1221 struct bgp_path_info
*path
;
1222 struct rmap_community
*rcom
= rule
;
1224 if (type
== RMAP_BGP
) {
1227 list
= community_list_lookup(bgp_clist
, rcom
->name
,
1229 LARGE_COMMUNITY_LIST_MASTER
);
1231 return RMAP_NOMATCH
;
1234 if (lcommunity_list_exact_match(
1235 path
->attr
->lcommunity
,
1239 if (lcommunity_list_match(
1240 path
->attr
->lcommunity
,
1245 return RMAP_NOMATCH
;
1248 /* Compile function for community match. */
1249 static void *route_match_lcommunity_compile(const char *arg
)
1251 struct rmap_community
*rcom
;
1255 rcom
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_community
));
1257 p
= strchr(arg
, ' ');
1260 rcom
->name
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, len
+ 1);
1261 memcpy(rcom
->name
, arg
, len
);
1264 rcom
->name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1268 rcom
->name_hash
= bgp_clist_hash_key(rcom
->name
);
1272 /* Compile function for community match. */
1273 static void route_match_lcommunity_free(void *rule
)
1275 struct rmap_community
*rcom
= rule
;
1277 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
->name
);
1278 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
);
1281 /* Route map commands for community matching. */
1282 struct route_map_rule_cmd route_match_lcommunity_cmd
= {
1283 "large-community", route_match_lcommunity
,
1284 route_match_lcommunity_compile
, route_match_lcommunity_free
};
1287 /* Match function for extcommunity match. */
1288 static enum route_map_cmd_result_t
1289 route_match_ecommunity(void *rule
, const struct prefix
*prefix
,
1290 route_map_object_t type
, void *object
)
1292 struct community_list
*list
;
1293 struct bgp_path_info
*path
;
1294 struct rmap_community
*rcom
= rule
;
1296 if (type
== RMAP_BGP
) {
1299 list
= community_list_lookup(bgp_clist
, rcom
->name
,
1301 EXTCOMMUNITY_LIST_MASTER
);
1303 return RMAP_NOMATCH
;
1305 if (ecommunity_list_match(path
->attr
->ecommunity
, list
))
1308 return RMAP_NOMATCH
;
1311 /* Compile function for extcommunity match. */
1312 static void *route_match_ecommunity_compile(const char *arg
)
1314 struct rmap_community
*rcom
;
1316 rcom
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_community
));
1317 rcom
->name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1318 rcom
->name_hash
= bgp_clist_hash_key(rcom
->name
);
1323 /* Compile function for extcommunity match. */
1324 static void route_match_ecommunity_free(void *rule
)
1326 struct rmap_community
*rcom
= rule
;
1328 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
->name
);
1329 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
);
1332 /* Route map commands for community matching. */
1333 struct route_map_rule_cmd route_match_ecommunity_cmd
= {
1334 "extcommunity", route_match_ecommunity
, route_match_ecommunity_compile
,
1335 route_match_ecommunity_free
};
1337 /* `match nlri` and `set nlri` are replaced by `address-family ipv4`
1338 and `address-family vpnv4'. */
1340 /* `match origin' */
1341 static enum route_map_cmd_result_t
1342 route_match_origin(void *rule
, const struct prefix
*prefix
,
1343 route_map_object_t type
, void *object
)
1346 struct bgp_path_info
*path
;
1348 if (type
== RMAP_BGP
) {
1352 if (path
->attr
->origin
== *origin
)
1356 return RMAP_NOMATCH
;
1359 static void *route_match_origin_compile(const char *arg
)
1363 origin
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(uint8_t));
1365 if (strcmp(arg
, "igp") == 0)
1367 else if (strcmp(arg
, "egp") == 0)
1375 /* Free route map's compiled `ip address' value. */
1376 static void route_match_origin_free(void *rule
)
1378 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1381 /* Route map commands for origin matching. */
1382 struct route_map_rule_cmd route_match_origin_cmd
= {
1383 "origin", route_match_origin
, route_match_origin_compile
,
1384 route_match_origin_free
};
1386 /* match probability { */
1388 static enum route_map_cmd_result_t
1389 route_match_probability(void *rule
, const struct prefix
*prefix
,
1390 route_map_object_t type
, void *object
)
1394 switch (*(long *)rule
) {
1400 if (r
< *(long *)rule
) {
1405 return RMAP_NOMATCH
;
1408 static void *route_match_probability_compile(const char *arg
)
1414 lobule
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(long));
1424 *lobule
= RAND_MAX
/ 100 * perc
;
1430 static void route_match_probability_free(void *rule
)
1432 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1435 struct route_map_rule_cmd route_match_probability_cmd
= {
1436 "probability", route_match_probability
, route_match_probability_compile
,
1437 route_match_probability_free
};
1439 /* `match interface IFNAME' */
1440 /* Match function should return 1 if match is success else return
1442 static enum route_map_cmd_result_t
1443 route_match_interface(void *rule
, const struct prefix
*prefix
,
1444 route_map_object_t type
, void *object
)
1446 struct interface
*ifp
;
1447 struct bgp_path_info
*path
;
1449 if (type
== RMAP_BGP
) {
1452 if (!path
|| !path
->attr
)
1453 return RMAP_NOMATCH
;
1455 ifp
= if_lookup_by_name_all_vrf((char *)rule
);
1457 if (ifp
== NULL
|| ifp
->ifindex
!= path
->attr
->nh_ifindex
)
1458 return RMAP_NOMATCH
;
1462 return RMAP_NOMATCH
;
1465 /* Route map `interface' match statement. `arg' should be
1467 static void *route_match_interface_compile(const char *arg
)
1469 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
1472 /* Free route map's compiled `interface' value. */
1473 static void route_match_interface_free(void *rule
)
1475 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
1478 /* Route map commands for ip address matching. */
1479 struct route_map_rule_cmd route_match_interface_cmd
= {
1480 "interface", route_match_interface
, route_match_interface_compile
,
1481 route_match_interface_free
};
1485 /* `set ip next-hop IP_ADDRESS' */
1487 /* Match function return 1 if match is success else return zero. */
1488 static enum route_map_cmd_result_t
1489 route_match_tag(void *rule
, const struct prefix
*prefix
,
1490 route_map_object_t type
, void *object
)
1493 struct bgp_path_info
*path
;
1495 if (type
== RMAP_BGP
) {
1499 return ((path
->attr
->tag
== *tag
) ? RMAP_MATCH
: RMAP_NOMATCH
);
1502 return RMAP_NOMATCH
;
1506 /* Route map commands for tag matching. */
1507 static struct route_map_rule_cmd route_match_tag_cmd
= {
1508 "tag", route_match_tag
, route_map_rule_tag_compile
,
1509 route_map_rule_tag_free
,
1513 /* Set nexthop to object. ojbect must be pointer to struct attr. */
1514 struct rmap_ip_nexthop_set
{
1515 struct in_addr
*address
;
1520 static enum route_map_cmd_result_t
1521 route_set_ip_nexthop(void *rule
, const struct prefix
*prefix
,
1522 route_map_object_t type
, void *object
)
1524 struct rmap_ip_nexthop_set
*rins
= rule
;
1525 struct bgp_path_info
*path
;
1528 if (type
!= RMAP_BGP
)
1531 if (prefix
->family
== AF_INET6
)
1537 if (rins
->unchanged
) {
1538 SET_FLAG(path
->attr
->rmap_change_flags
,
1539 BATTR_RMAP_NEXTHOP_UNCHANGED
);
1540 } else if (rins
->peer_address
) {
1541 if ((CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IN
)
1542 || CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IMPORT
))
1544 && sockunion_family(peer
->su_remote
) == AF_INET
) {
1545 path
->attr
->nexthop
.s_addr
=
1546 sockunion2ip(peer
->su_remote
);
1547 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP
);
1548 } else if (CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_OUT
)) {
1549 /* The next hop value will be set as part of
1550 * packet rewrite. Set the flags here to indicate
1551 * that rewrite needs to be done.
1552 * Also, clear the value.
1554 SET_FLAG(path
->attr
->rmap_change_flags
,
1555 BATTR_RMAP_NEXTHOP_PEER_ADDRESS
);
1556 path
->attr
->nexthop
.s_addr
= 0;
1559 /* Set next hop value. */
1560 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP
);
1561 path
->attr
->nexthop
= *rins
->address
;
1562 SET_FLAG(path
->attr
->rmap_change_flags
,
1563 BATTR_RMAP_IPV4_NHOP_CHANGED
);
1564 /* case for MP-BGP : MPLS VPN */
1565 path
->attr
->mp_nexthop_global_in
= *rins
->address
;
1566 path
->attr
->mp_nexthop_len
= sizeof(*rins
->address
);
1572 /* Route map `ip nexthop' compile function. Given string is converted
1573 to struct in_addr structure. */
1574 static void *route_set_ip_nexthop_compile(const char *arg
)
1576 struct rmap_ip_nexthop_set
*rins
;
1577 struct in_addr
*address
= NULL
;
1578 int peer_address
= 0;
1582 if (strcmp(arg
, "peer-address") == 0)
1584 else if (strcmp(arg
, "unchanged") == 0)
1587 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
,
1588 sizeof(struct in_addr
));
1589 ret
= inet_aton(arg
, address
);
1592 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
1597 rins
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
,
1598 sizeof(struct rmap_ip_nexthop_set
));
1600 rins
->address
= address
;
1601 rins
->peer_address
= peer_address
;
1602 rins
->unchanged
= unchanged
;
1607 /* Free route map's compiled `ip nexthop' value. */
1608 static void route_set_ip_nexthop_free(void *rule
)
1610 struct rmap_ip_nexthop_set
*rins
= rule
;
1612 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rins
->address
);
1614 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rins
);
1617 /* Route map commands for ip nexthop set. */
1618 struct route_map_rule_cmd route_set_ip_nexthop_cmd
= {
1619 "ip next-hop", route_set_ip_nexthop
, route_set_ip_nexthop_compile
,
1620 route_set_ip_nexthop_free
};
1622 /* `set local-preference LOCAL_PREF' */
1624 /* Set local preference. */
1625 static enum route_map_cmd_result_t
1626 route_set_local_pref(void *rule
, const struct prefix
*prefix
,
1627 route_map_object_t type
, void *object
)
1629 struct rmap_value
*rv
;
1630 struct bgp_path_info
*path
;
1631 uint32_t locpref
= 0;
1633 if (type
== RMAP_BGP
) {
1634 /* Fetch routemap's rule information. */
1638 /* Set local preference value. */
1639 if (path
->attr
->flag
& ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF
))
1640 locpref
= path
->attr
->local_pref
;
1642 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF
);
1643 path
->attr
->local_pref
=
1644 route_value_adjust(rv
, locpref
, path
->peer
);
1650 /* Set local preference rule structure. */
1651 struct route_map_rule_cmd route_set_local_pref_cmd
= {
1652 "local-preference", route_set_local_pref
, route_value_compile
,
1656 /* `set weight WEIGHT' */
1659 static enum route_map_cmd_result_t
1660 route_set_weight(void *rule
, const struct prefix
*prefix
,
1661 route_map_object_t type
, void *object
)
1663 struct rmap_value
*rv
;
1664 struct bgp_path_info
*path
;
1666 if (type
== RMAP_BGP
) {
1667 /* Fetch routemap's rule information. */
1671 /* Set weight value. */
1672 path
->attr
->weight
= route_value_adjust(rv
, 0, path
->peer
);
1678 /* Set local preference rule structure. */
1679 struct route_map_rule_cmd route_set_weight_cmd
= {
1680 "weight", route_set_weight
, route_value_compile
, route_value_free
,
1683 /* `set metric METRIC' */
1685 /* Set metric to attribute. */
1686 static enum route_map_cmd_result_t
1687 route_set_metric(void *rule
, const struct prefix
*prefix
,
1688 route_map_object_t type
, void *object
)
1690 struct rmap_value
*rv
;
1691 struct bgp_path_info
*path
;
1694 if (type
== RMAP_BGP
) {
1695 /* Fetch routemap's rule information. */
1699 if (path
->attr
->flag
& ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC
))
1700 med
= path
->attr
->med
;
1702 path
->attr
->med
= route_value_adjust(rv
, med
, path
->peer
);
1703 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC
);
1708 /* Set metric rule structure. */
1709 struct route_map_rule_cmd route_set_metric_cmd
= {
1710 "metric", route_set_metric
, route_value_compile
, route_value_free
,
1713 /* `set as-path prepend ASPATH' */
1715 /* For AS path prepend mechanism. */
1716 static enum route_map_cmd_result_t
1717 route_set_aspath_prepend(void *rule
, const struct prefix
*prefix
,
1718 route_map_object_t type
, void *object
)
1720 struct aspath
*aspath
;
1722 struct bgp_path_info
*path
;
1724 if (type
== RMAP_BGP
) {
1727 if (path
->attr
->aspath
->refcnt
)
1728 new = aspath_dup(path
->attr
->aspath
);
1730 new = path
->attr
->aspath
;
1732 if ((uintptr_t)rule
> 10) {
1734 aspath_prepend(aspath
, new);
1736 as_t as
= aspath_leftmost(new);
1738 as
= path
->peer
->as
;
1739 new = aspath_add_seq_n(new, as
, (uintptr_t)rule
);
1742 path
->attr
->aspath
= new;
1748 static void *route_set_aspath_prepend_compile(const char *arg
)
1752 if (sscanf(arg
, "last-as %u", &num
) == 1 && num
> 0 && num
<= 10)
1753 return (void *)(uintptr_t)num
;
1755 return route_aspath_compile(arg
);
1758 static void route_set_aspath_prepend_free(void *rule
)
1760 if ((uintptr_t)rule
> 10)
1761 route_aspath_free(rule
);
1765 /* Set as-path prepend rule structure. */
1766 struct route_map_rule_cmd route_set_aspath_prepend_cmd
= {
1767 "as-path prepend", route_set_aspath_prepend
,
1768 route_set_aspath_prepend_compile
, route_set_aspath_prepend_free
,
1771 /* `set as-path exclude ASn' */
1773 /* For ASN exclude mechanism.
1774 * Iterate over ASns requested and filter them from the given AS_PATH one by
1776 * Make a deep copy of existing AS_PATH, but for the first ASn only.
1778 static enum route_map_cmd_result_t
1779 route_set_aspath_exclude(void *rule
, const struct prefix
*dummy
,
1780 route_map_object_t type
, void *object
)
1782 struct aspath
*new_path
, *exclude_path
;
1783 struct bgp_path_info
*path
;
1785 if (type
== RMAP_BGP
) {
1786 exclude_path
= rule
;
1788 if (path
->attr
->aspath
->refcnt
)
1789 new_path
= aspath_dup(path
->attr
->aspath
);
1791 new_path
= path
->attr
->aspath
;
1792 path
->attr
->aspath
=
1793 aspath_filter_exclude(new_path
, exclude_path
);
1798 /* Set ASn exlude rule structure. */
1799 struct route_map_rule_cmd route_set_aspath_exclude_cmd
= {
1800 "as-path exclude", route_set_aspath_exclude
, route_aspath_compile
,
1804 /* `set community COMMUNITY' */
1805 struct rmap_com_set
{
1806 struct community
*com
;
1811 /* For community set mechanism. */
1812 static enum route_map_cmd_result_t
1813 route_set_community(void *rule
, const struct prefix
*prefix
,
1814 route_map_object_t type
, void *object
)
1816 struct rmap_com_set
*rcs
;
1817 struct bgp_path_info
*path
;
1819 struct community
*new = NULL
;
1820 struct community
*old
;
1821 struct community
*merge
;
1823 if (type
== RMAP_BGP
) {
1827 old
= attr
->community
;
1831 attr
->flag
&= ~(ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES
));
1832 attr
->community
= NULL
;
1833 /* See the longer comment down below. */
1834 if (old
&& old
->refcnt
== 0)
1835 community_free(&old
);
1839 /* "additive" case. */
1840 if (rcs
->additive
&& old
) {
1841 merge
= community_merge(community_dup(old
), rcs
->com
);
1843 new = community_uniq_sort(merge
);
1844 community_free(&merge
);
1846 new = community_dup(rcs
->com
);
1848 /* HACK: if the old community is not intern'd,
1849 * we should free it here, or all reference to it may be
1851 * Really need to cleanup attribute caching sometime.
1853 if (old
&& old
->refcnt
== 0)
1854 community_free(&old
);
1856 /* will be interned by caller if required */
1857 attr
->community
= new;
1859 attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES
);
1865 /* Compile function for set community. */
1866 static void *route_set_community_compile(const char *arg
)
1868 struct rmap_com_set
*rcs
;
1869 struct community
*com
= NULL
;
1874 if (strcmp(arg
, "none") == 0)
1877 sp
= strstr(arg
, "additive");
1879 if (sp
&& sp
> arg
) {
1880 /* "additive" keyword is included. */
1885 com
= community_str2com(arg
);
1894 rcs
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_com_set
));
1896 rcs
->additive
= additive
;
1902 /* Free function for set community. */
1903 static void route_set_community_free(void *rule
)
1905 struct rmap_com_set
*rcs
= rule
;
1908 community_free(&rcs
->com
);
1909 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcs
);
1912 /* Set community rule structure. */
1913 struct route_map_rule_cmd route_set_community_cmd
= {
1914 "community", route_set_community
, route_set_community_compile
,
1915 route_set_community_free
,
1918 /* `set community COMMUNITY' */
1919 struct rmap_lcom_set
{
1920 struct lcommunity
*lcom
;
1926 /* For lcommunity set mechanism. */
1927 static enum route_map_cmd_result_t
1928 route_set_lcommunity(void *rule
, const struct prefix
*prefix
,
1929 route_map_object_t type
, void *object
)
1931 struct rmap_lcom_set
*rcs
;
1932 struct bgp_path_info
*path
;
1934 struct lcommunity
*new = NULL
;
1935 struct lcommunity
*old
;
1936 struct lcommunity
*merge
;
1938 if (type
== RMAP_BGP
) {
1942 old
= attr
->lcommunity
;
1947 ~(ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES
));
1948 attr
->lcommunity
= NULL
;
1950 /* See the longer comment down below. */
1951 if (old
&& old
->refcnt
== 0)
1952 lcommunity_free(&old
);
1956 if (rcs
->additive
&& old
) {
1957 merge
= lcommunity_merge(lcommunity_dup(old
),
1960 new = lcommunity_uniq_sort(merge
);
1961 lcommunity_free(&merge
);
1963 new = lcommunity_dup(rcs
->lcom
);
1965 /* HACK: if the old large-community is not intern'd,
1966 * we should free it here, or all reference to it may be
1968 * Really need to cleanup attribute caching sometime.
1970 if (old
&& old
->refcnt
== 0)
1971 lcommunity_free(&old
);
1973 /* will be intern()'d or attr_flush()'d by bgp_update_main() */
1974 attr
->lcommunity
= new;
1976 attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES
);
1982 /* Compile function for set community. */
1983 static void *route_set_lcommunity_compile(const char *arg
)
1985 struct rmap_lcom_set
*rcs
;
1986 struct lcommunity
*lcom
= NULL
;
1991 if (strcmp(arg
, "none") == 0)
1994 sp
= strstr(arg
, "additive");
1996 if (sp
&& sp
> arg
) {
1997 /* "additive" keyworkd is included. */
2002 lcom
= lcommunity_str2com(arg
);
2011 rcs
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_com_set
));
2013 rcs
->additive
= additive
;
2019 /* Free function for set lcommunity. */
2020 static void route_set_lcommunity_free(void *rule
)
2022 struct rmap_lcom_set
*rcs
= rule
;
2025 lcommunity_free(&rcs
->lcom
);
2027 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcs
);
2030 /* Set community rule structure. */
2031 struct route_map_rule_cmd route_set_lcommunity_cmd
= {
2032 "large-community", route_set_lcommunity
, route_set_lcommunity_compile
,
2033 route_set_lcommunity_free
,
2036 /* `set large-comm-list (<1-99>|<100-500>|WORD) delete' */
2038 /* For large community set mechanism. */
2039 static enum route_map_cmd_result_t
2040 route_set_lcommunity_delete(void *rule
, const struct prefix
*pfx
,
2041 route_map_object_t type
, void *object
)
2043 struct community_list
*list
;
2044 struct lcommunity
*merge
;
2045 struct lcommunity
*new;
2046 struct lcommunity
*old
;
2047 struct bgp_path_info
*path
;
2048 struct rmap_community
*rcom
= rule
;
2050 if (type
== RMAP_BGP
) {
2055 list
= community_list_lookup(bgp_clist
, rcom
->name
,
2057 LARGE_COMMUNITY_LIST_MASTER
);
2058 old
= path
->attr
->lcommunity
;
2061 merge
= lcommunity_list_match_delete(
2062 lcommunity_dup(old
), list
);
2063 new = lcommunity_uniq_sort(merge
);
2064 lcommunity_free(&merge
);
2066 /* HACK: if the old community is not intern'd,
2067 * we should free it here, or all reference to it may be
2069 * Really need to cleanup attribute caching sometime.
2071 if (old
->refcnt
== 0)
2072 lcommunity_free(&old
);
2074 if (new->size
== 0) {
2075 path
->attr
->lcommunity
= NULL
;
2076 path
->attr
->flag
&= ~ATTR_FLAG_BIT(
2077 BGP_ATTR_LARGE_COMMUNITIES
);
2078 lcommunity_free(&new);
2080 path
->attr
->lcommunity
= new;
2081 path
->attr
->flag
|= ATTR_FLAG_BIT(
2082 BGP_ATTR_LARGE_COMMUNITIES
);
2090 /* Compile function for set lcommunity. */
2091 static void *route_set_lcommunity_delete_compile(const char *arg
)
2093 struct rmap_community
*rcom
;
2095 rcom
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_community
));
2097 rcom
->name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
2098 rcom
->name_hash
= bgp_clist_hash_key(rcom
->name
);
2103 /* Free function for set lcommunity. */
2104 static void route_set_lcommunity_delete_free(void *rule
)
2106 struct rmap_community
*rcom
= rule
;
2108 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
->name
);
2109 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
);
2112 /* Set lcommunity rule structure. */
2113 struct route_map_rule_cmd route_set_lcommunity_delete_cmd
= {
2114 "large-comm-list", route_set_lcommunity_delete
,
2115 route_set_lcommunity_delete_compile
, route_set_lcommunity_delete_free
,
2119 /* `set comm-list (<1-99>|<100-500>|WORD) delete' */
2121 /* For community set mechanism. */
2122 static enum route_map_cmd_result_t
2123 route_set_community_delete(void *rule
, const struct prefix
*prefix
,
2124 route_map_object_t type
, void *object
)
2126 struct community_list
*list
;
2127 struct community
*merge
;
2128 struct community
*new;
2129 struct community
*old
;
2130 struct bgp_path_info
*path
;
2131 struct rmap_community
*rcom
= rule
;
2133 if (type
== RMAP_BGP
) {
2138 list
= community_list_lookup(bgp_clist
, rcom
->name
,
2140 COMMUNITY_LIST_MASTER
);
2141 old
= path
->attr
->community
;
2144 merge
= community_list_match_delete(community_dup(old
),
2146 new = community_uniq_sort(merge
);
2147 community_free(&merge
);
2149 /* HACK: if the old community is not intern'd,
2150 * we should free it here, or all reference to it may be
2152 * Really need to cleanup attribute caching sometime.
2154 if (old
->refcnt
== 0)
2155 community_free(&old
);
2157 if (new->size
== 0) {
2158 path
->attr
->community
= NULL
;
2160 ~ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES
);
2161 community_free(&new);
2163 path
->attr
->community
= new;
2165 ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES
);
2173 /* Compile function for set community. */
2174 static void *route_set_community_delete_compile(const char *arg
)
2176 struct rmap_community
*rcom
;
2180 frrstr_split(arg
, " ", &splits
, &num
);
2182 rcom
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct rmap_community
));
2183 rcom
->name
= XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, splits
[0]);
2184 rcom
->name_hash
= bgp_clist_hash_key(rcom
->name
);
2186 for (int i
= 0; i
< num
; i
++)
2187 XFREE(MTYPE_TMP
, splits
[i
]);
2188 XFREE(MTYPE_TMP
, splits
);
2193 /* Free function for set community. */
2194 static void route_set_community_delete_free(void *rule
)
2196 struct rmap_community
*rcom
= rule
;
2198 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
->name
);
2199 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rcom
);
2202 /* Set community rule structure. */
2203 struct route_map_rule_cmd route_set_community_delete_cmd
= {
2204 "comm-list", route_set_community_delete
,
2205 route_set_community_delete_compile
, route_set_community_delete_free
,
2208 /* `set extcommunity rt COMMUNITY' */
2210 /* For community set mechanism. Used by _rt and _soo. */
2211 static enum route_map_cmd_result_t
2212 route_set_ecommunity(void *rule
, const struct prefix
*prefix
,
2213 route_map_object_t type
, void *object
)
2215 struct ecommunity
*ecom
;
2216 struct ecommunity
*new_ecom
;
2217 struct ecommunity
*old_ecom
;
2218 struct bgp_path_info
*path
;
2220 if (type
== RMAP_BGP
) {
2227 /* We assume additive for Extended Community. */
2228 old_ecom
= path
->attr
->ecommunity
;
2231 new_ecom
= ecommunity_merge(ecommunity_dup(old_ecom
),
2234 /* old_ecom->refcnt = 1 => owned elsewhere, e.g.
2235 * bgp_update_receive()
2236 * ->refcnt = 0 => set by a previous route-map
2238 if (!old_ecom
->refcnt
)
2239 ecommunity_free(&old_ecom
);
2241 new_ecom
= ecommunity_dup(ecom
);
2243 /* will be intern()'d or attr_flush()'d by bgp_update_main() */
2244 path
->attr
->ecommunity
= new_ecom
;
2246 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES
);
2251 /* Compile function for set community. */
2252 static void *route_set_ecommunity_rt_compile(const char *arg
)
2254 struct ecommunity
*ecom
;
2256 ecom
= ecommunity_str2com(arg
, ECOMMUNITY_ROUTE_TARGET
, 0);
2259 return ecommunity_intern(ecom
);
2262 /* Free function for set community. Used by _rt and _soo */
2263 static void route_set_ecommunity_free(void *rule
)
2265 struct ecommunity
*ecom
= rule
;
2266 ecommunity_unintern(&ecom
);
2269 /* Set community rule structure. */
2270 struct route_map_rule_cmd route_set_ecommunity_rt_cmd
= {
2271 "extcommunity rt", route_set_ecommunity
,
2272 route_set_ecommunity_rt_compile
, route_set_ecommunity_free
,
2275 /* `set extcommunity soo COMMUNITY' */
2277 /* Compile function for set community. */
2278 static void *route_set_ecommunity_soo_compile(const char *arg
)
2280 struct ecommunity
*ecom
;
2282 ecom
= ecommunity_str2com(arg
, ECOMMUNITY_SITE_ORIGIN
, 0);
2286 return ecommunity_intern(ecom
);
2289 /* Set community rule structure. */
2290 struct route_map_rule_cmd route_set_ecommunity_soo_cmd
= {
2291 "extcommunity soo", route_set_ecommunity
,
2292 route_set_ecommunity_soo_compile
, route_set_ecommunity_free
,
2295 /* `set origin ORIGIN' */
2297 /* For origin set. */
2298 static enum route_map_cmd_result_t
2299 route_set_origin(void *rule
, const struct prefix
*prefix
,
2300 route_map_object_t type
, void *object
)
2303 struct bgp_path_info
*path
;
2305 if (type
== RMAP_BGP
) {
2309 path
->attr
->origin
= *origin
;
2315 /* Compile function for origin set. */
2316 static void *route_set_origin_compile(const char *arg
)
2320 origin
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(uint8_t));
2322 if (strcmp(arg
, "igp") == 0)
2324 else if (strcmp(arg
, "egp") == 0)
2332 /* Compile function for origin set. */
2333 static void route_set_origin_free(void *rule
)
2335 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2338 /* Set origin rule structure. */
2339 struct route_map_rule_cmd route_set_origin_cmd
= {
2340 "origin", route_set_origin
, route_set_origin_compile
,
2341 route_set_origin_free
,
2344 /* `set atomic-aggregate' */
2346 /* For atomic aggregate set. */
2347 static enum route_map_cmd_result_t
2348 route_set_atomic_aggregate(void *rule
, const struct prefix
*pfx
,
2349 route_map_object_t type
, void *object
)
2351 struct bgp_path_info
*path
;
2353 if (type
== RMAP_BGP
) {
2355 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE
);
2361 /* Compile function for atomic aggregate. */
2362 static void *route_set_atomic_aggregate_compile(const char *arg
)
2367 /* Compile function for atomic aggregate. */
2368 static void route_set_atomic_aggregate_free(void *rule
)
2373 /* Set atomic aggregate rule structure. */
2374 struct route_map_rule_cmd route_set_atomic_aggregate_cmd
= {
2375 "atomic-aggregate", route_set_atomic_aggregate
,
2376 route_set_atomic_aggregate_compile
, route_set_atomic_aggregate_free
,
2379 /* `set aggregator as AS A.B.C.D' */
2382 struct in_addr address
;
2385 static enum route_map_cmd_result_t
2386 route_set_aggregator_as(void *rule
, const struct prefix
*prefix
,
2387 route_map_object_t type
, void *object
)
2389 struct bgp_path_info
*path
;
2390 struct aggregator
*aggregator
;
2392 if (type
== RMAP_BGP
) {
2396 path
->attr
->aggregator_as
= aggregator
->as
;
2397 path
->attr
->aggregator_addr
= aggregator
->address
;
2398 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR
);
2404 static void *route_set_aggregator_as_compile(const char *arg
)
2406 struct aggregator
*aggregator
;
2412 XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct aggregator
));
2413 if (sscanf(arg
, "%s %s", as
, address
) != 2) {
2414 XFREE(MTYPE_ROUTE_MAP_COMPILED
, aggregator
);
2418 aggregator
->as
= strtoul(as
, NULL
, 10);
2419 ret
= inet_aton(address
, &aggregator
->address
);
2421 XFREE(MTYPE_ROUTE_MAP_COMPILED
, aggregator
);
2427 static void route_set_aggregator_as_free(void *rule
)
2429 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2432 struct route_map_rule_cmd route_set_aggregator_as_cmd
= {
2433 "aggregator as", route_set_aggregator_as
,
2434 route_set_aggregator_as_compile
, route_set_aggregator_as_free
,
2437 /* Set tag to object. object must be pointer to struct bgp_path_info */
2438 static enum route_map_cmd_result_t
2439 route_set_tag(void *rule
, const struct prefix
*prefix
,
2440 route_map_object_t type
, void *object
)
2443 struct bgp_path_info
*path
;
2445 if (type
== RMAP_BGP
) {
2450 path
->attr
->tag
= *tag
;
2456 /* Route map commands for tag set. */
2457 static struct route_map_rule_cmd route_set_tag_cmd
= {
2458 "tag", route_set_tag
, route_map_rule_tag_compile
,
2459 route_map_rule_tag_free
,
2462 /* Set label-index to object. object must be pointer to struct bgp_path_info */
2463 static enum route_map_cmd_result_t
2464 route_set_label_index(void *rule
, const struct prefix
*prefix
,
2465 route_map_object_t type
, void *object
)
2467 struct rmap_value
*rv
;
2468 struct bgp_path_info
*path
;
2469 uint32_t label_index
;
2471 if (type
== RMAP_BGP
) {
2472 /* Fetch routemap's rule information. */
2476 /* Set label-index value. */
2477 label_index
= rv
->value
;
2479 path
->attr
->label_index
= label_index
;
2480 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID
);
2487 /* Route map commands for label-index set. */
2488 static struct route_map_rule_cmd route_set_label_index_cmd
= {
2489 "label-index", route_set_label_index
, route_value_compile
,
2493 /* `match ipv6 address IP_ACCESS_LIST' */
2495 static enum route_map_cmd_result_t
2496 route_match_ipv6_address(void *rule
, const struct prefix
*prefix
,
2497 route_map_object_t type
, void *object
)
2499 struct access_list
*alist
;
2501 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET6
) {
2502 alist
= access_list_lookup(AFI_IP6
, (char *)rule
);
2504 return RMAP_NOMATCH
;
2506 return (access_list_apply(alist
, prefix
) == FILTER_DENY
2510 return RMAP_NOMATCH
;
2513 static void *route_match_ipv6_address_compile(const char *arg
)
2515 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
2518 static void route_match_ipv6_address_free(void *rule
)
2520 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2523 /* Route map commands for ip address matching. */
2524 struct route_map_rule_cmd route_match_ipv6_address_cmd
= {
2525 "ipv6 address", route_match_ipv6_address
,
2526 route_match_ipv6_address_compile
, route_match_ipv6_address_free
};
2528 /* `match ipv6 next-hop IP_ADDRESS' */
2530 static enum route_map_cmd_result_t
2531 route_match_ipv6_next_hop(void *rule
, const struct prefix
*prefix
,
2532 route_map_object_t type
, void *object
)
2534 struct in6_addr
*addr
= rule
;
2535 struct bgp_path_info
*path
;
2537 if (type
== RMAP_BGP
) {
2540 if (IPV6_ADDR_SAME(&path
->attr
->mp_nexthop_global
, addr
))
2543 if (path
->attr
->mp_nexthop_len
2544 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
2545 && IPV6_ADDR_SAME(&path
->attr
->mp_nexthop_local
, rule
))
2548 return RMAP_NOMATCH
;
2551 return RMAP_NOMATCH
;
2554 static void *route_match_ipv6_next_hop_compile(const char *arg
)
2556 struct in6_addr
*address
;
2559 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in6_addr
));
2561 ret
= inet_pton(AF_INET6
, arg
, address
);
2563 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2570 static void route_match_ipv6_next_hop_free(void *rule
)
2572 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2575 struct route_map_rule_cmd route_match_ipv6_next_hop_cmd
= {
2576 "ipv6 next-hop", route_match_ipv6_next_hop
,
2577 route_match_ipv6_next_hop_compile
, route_match_ipv6_next_hop_free
};
2579 /* `match ipv6 address prefix-list PREFIX_LIST' */
2581 static enum route_map_cmd_result_t
2582 route_match_ipv6_address_prefix_list(void *rule
, const struct prefix
*prefix
,
2583 route_map_object_t type
, void *object
)
2585 return route_match_address_prefix_list(rule
, AFI_IP6
, prefix
, type
,
2589 static void *route_match_ipv6_address_prefix_list_compile(const char *arg
)
2591 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
2594 static void route_match_ipv6_address_prefix_list_free(void *rule
)
2596 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2599 struct route_map_rule_cmd route_match_ipv6_address_prefix_list_cmd
= {
2600 "ipv6 address prefix-list", route_match_ipv6_address_prefix_list
,
2601 route_match_ipv6_address_prefix_list_compile
,
2602 route_match_ipv6_address_prefix_list_free
};
2604 /* `match ipv6 next-hop type <TYPE>' */
2606 static enum route_map_cmd_result_t
2607 route_match_ipv6_next_hop_type(void *rule
, const struct prefix
*prefix
,
2608 route_map_object_t type
, void *object
)
2610 struct bgp_path_info
*path
;
2611 struct in6_addr
*addr
= rule
;
2613 if (type
== RMAP_BGP
&& prefix
->family
== AF_INET6
) {
2614 path
= (struct bgp_path_info
*)object
;
2615 if (!path
|| !path
->attr
)
2616 return RMAP_NOMATCH
;
2618 if (IPV6_ADDR_SAME(&path
->attr
->mp_nexthop_global
, addr
)
2619 && !path
->attr
->nh_ifindex
)
2622 return RMAP_NOMATCH
;
2625 static void *route_match_ipv6_next_hop_type_compile(const char *arg
)
2627 struct in6_addr
*address
;
2630 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in6_addr
));
2632 ret
= inet_pton(AF_INET6
, "::0", address
);
2634 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2641 static void route_match_ipv6_next_hop_type_free(void *rule
)
2643 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2646 struct route_map_rule_cmd route_match_ipv6_next_hop_type_cmd
= {
2647 "ipv6 next-hop type", route_match_ipv6_next_hop_type
,
2648 route_match_ipv6_next_hop_type_compile
,
2649 route_match_ipv6_next_hop_type_free
};
2651 /* `set ipv6 nexthop global IP_ADDRESS' */
2653 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2654 static enum route_map_cmd_result_t
2655 route_set_ipv6_nexthop_global(void *rule
, const struct prefix
*p
,
2656 route_map_object_t type
, void *object
)
2658 struct in6_addr
*address
;
2659 struct bgp_path_info
*path
;
2661 if (type
== RMAP_BGP
) {
2662 /* Fetch routemap's rule information. */
2666 /* Set next hop value. */
2667 path
->attr
->mp_nexthop_global
= *address
;
2669 /* Set nexthop length. */
2670 if (path
->attr
->mp_nexthop_len
== 0)
2671 path
->attr
->mp_nexthop_len
= BGP_ATTR_NHLEN_IPV6_GLOBAL
;
2673 SET_FLAG(path
->attr
->rmap_change_flags
,
2674 BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED
);
2680 /* Route map `ip next-hop' compile function. Given string is converted
2681 to struct in_addr structure. */
2682 static void *route_set_ipv6_nexthop_global_compile(const char *arg
)
2685 struct in6_addr
*address
;
2687 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in6_addr
));
2689 ret
= inet_pton(AF_INET6
, arg
, address
);
2692 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2699 /* Free route map's compiled `ip next-hop' value. */
2700 static void route_set_ipv6_nexthop_global_free(void *rule
)
2702 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2705 /* Route map commands for ip nexthop set. */
2706 struct route_map_rule_cmd route_set_ipv6_nexthop_global_cmd
= {
2707 "ipv6 next-hop global", route_set_ipv6_nexthop_global
,
2708 route_set_ipv6_nexthop_global_compile
,
2709 route_set_ipv6_nexthop_global_free
};
2711 /* Set next-hop preference value. */
2712 static enum route_map_cmd_result_t
2713 route_set_ipv6_nexthop_prefer_global(void *rule
, const struct prefix
*prefix
,
2714 route_map_object_t type
, void *object
)
2716 struct bgp_path_info
*path
;
2719 if (type
== RMAP_BGP
) {
2720 /* Fetch routemap's rule information. */
2724 if ((CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IN
)
2725 || CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IMPORT
))
2727 && sockunion_family(peer
->su_remote
) == AF_INET6
) {
2728 /* Set next hop preference to global */
2729 path
->attr
->mp_nexthop_prefer_global
= true;
2730 SET_FLAG(path
->attr
->rmap_change_flags
,
2731 BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED
);
2733 path
->attr
->mp_nexthop_prefer_global
= false;
2734 SET_FLAG(path
->attr
->rmap_change_flags
,
2735 BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED
);
2741 static void *route_set_ipv6_nexthop_prefer_global_compile(const char *arg
)
2745 rins
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(int));
2751 /* Free route map's compiled `ip next-hop' value. */
2752 static void route_set_ipv6_nexthop_prefer_global_free(void *rule
)
2754 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2757 /* Route map commands for ip nexthop set preferred. */
2758 struct route_map_rule_cmd route_set_ipv6_nexthop_prefer_global_cmd
= {
2759 "ipv6 next-hop prefer-global", route_set_ipv6_nexthop_prefer_global
,
2760 route_set_ipv6_nexthop_prefer_global_compile
,
2761 route_set_ipv6_nexthop_prefer_global_free
};
2763 /* `set ipv6 nexthop local IP_ADDRESS' */
2765 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2766 static enum route_map_cmd_result_t
2767 route_set_ipv6_nexthop_local(void *rule
, const struct prefix
*p
,
2768 route_map_object_t type
, void *object
)
2770 struct in6_addr
*address
;
2771 struct bgp_path_info
*path
;
2773 if (type
== RMAP_BGP
) {
2774 /* Fetch routemap's rule information. */
2778 /* Set next hop value. */
2779 path
->attr
->mp_nexthop_local
= *address
;
2781 /* Set nexthop length. */
2782 if (path
->attr
->mp_nexthop_len
2783 != BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
)
2784 path
->attr
->mp_nexthop_len
=
2785 BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
;
2787 SET_FLAG(path
->attr
->rmap_change_flags
,
2788 BATTR_RMAP_IPV6_LL_NHOP_CHANGED
);
2794 /* Route map `ip nexthop' compile function. Given string is converted
2795 to struct in_addr structure. */
2796 static void *route_set_ipv6_nexthop_local_compile(const char *arg
)
2799 struct in6_addr
*address
;
2801 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in6_addr
));
2803 ret
= inet_pton(AF_INET6
, arg
, address
);
2806 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2813 /* Free route map's compiled `ip nexthop' value. */
2814 static void route_set_ipv6_nexthop_local_free(void *rule
)
2816 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2819 /* Route map commands for ip nexthop set. */
2820 struct route_map_rule_cmd route_set_ipv6_nexthop_local_cmd
= {
2821 "ipv6 next-hop local", route_set_ipv6_nexthop_local
,
2822 route_set_ipv6_nexthop_local_compile
,
2823 route_set_ipv6_nexthop_local_free
};
2825 /* `set ipv6 nexthop peer-address' */
2827 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2828 static enum route_map_cmd_result_t
2829 route_set_ipv6_nexthop_peer(void *rule
, const struct prefix
*pfx
,
2830 route_map_object_t type
, void *object
)
2832 struct in6_addr peer_address
;
2833 struct bgp_path_info
*path
;
2836 if (type
== RMAP_BGP
) {
2837 /* Fetch routemap's rule information. */
2841 if ((CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IN
)
2842 || CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_IMPORT
))
2844 && sockunion_family(peer
->su_remote
) == AF_INET6
) {
2845 peer_address
= peer
->su_remote
->sin6
.sin6_addr
;
2846 /* Set next hop value and length in attribute. */
2847 if (IN6_IS_ADDR_LINKLOCAL(&peer_address
)) {
2848 path
->attr
->mp_nexthop_local
= peer_address
;
2849 if (path
->attr
->mp_nexthop_len
!= 32)
2850 path
->attr
->mp_nexthop_len
= 32;
2852 path
->attr
->mp_nexthop_global
= peer_address
;
2853 if (path
->attr
->mp_nexthop_len
== 0)
2854 path
->attr
->mp_nexthop_len
= 16;
2857 } else if (CHECK_FLAG(peer
->rmap_type
, PEER_RMAP_TYPE_OUT
)) {
2858 /* The next hop value will be set as part of packet
2860 * Set the flags here to indicate that rewrite needs to
2862 * Also, clear the value - we clear both global and
2864 * nexthops, whether we send one or both is determined
2867 SET_FLAG(path
->attr
->rmap_change_flags
,
2868 BATTR_RMAP_NEXTHOP_PEER_ADDRESS
);
2869 /* clear next hop value. */
2870 memset(&(path
->attr
->mp_nexthop_global
), 0,
2871 sizeof(struct in6_addr
));
2872 memset(&(path
->attr
->mp_nexthop_local
), 0,
2873 sizeof(struct in6_addr
));
2880 /* Route map `ip next-hop' compile function. Given string is converted
2881 to struct in_addr structure. */
2882 static void *route_set_ipv6_nexthop_peer_compile(const char *arg
)
2886 rins
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(int));
2892 /* Free route map's compiled `ip next-hop' value. */
2893 static void route_set_ipv6_nexthop_peer_free(void *rule
)
2895 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2898 /* Route map commands for ip nexthop set. */
2899 struct route_map_rule_cmd route_set_ipv6_nexthop_peer_cmd
= {
2900 "ipv6 next-hop peer-address", route_set_ipv6_nexthop_peer
,
2901 route_set_ipv6_nexthop_peer_compile
, route_set_ipv6_nexthop_peer_free
};
2903 /* `set ipv4 vpn next-hop A.B.C.D' */
2905 static enum route_map_cmd_result_t
2906 route_set_vpnv4_nexthop(void *rule
, const struct prefix
*prefix
,
2907 route_map_object_t type
, void *object
)
2909 struct in_addr
*address
;
2910 struct bgp_path_info
*path
;
2912 if (type
== RMAP_BGP
) {
2913 /* Fetch routemap's rule information. */
2917 /* Set next hop value. */
2918 path
->attr
->mp_nexthop_global_in
= *address
;
2919 path
->attr
->mp_nexthop_len
= 4;
2925 static void *route_set_vpnv4_nexthop_compile(const char *arg
)
2928 struct in_addr
*address
;
2930 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in_addr
));
2932 ret
= inet_aton(arg
, address
);
2935 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2942 /* `set ipv6 vpn next-hop A.B.C.D' */
2944 static enum route_map_cmd_result_t
2945 route_set_vpnv6_nexthop(void *rule
, const struct prefix
*prefix
,
2946 route_map_object_t type
, void *object
)
2948 struct in6_addr
*address
;
2949 struct bgp_path_info
*path
;
2951 if (type
== RMAP_BGP
) {
2952 /* Fetch routemap's rule information. */
2956 /* Set next hop value. */
2957 memcpy(&path
->attr
->mp_nexthop_global
, address
,
2958 sizeof(struct in6_addr
));
2959 path
->attr
->mp_nexthop_len
= BGP_ATTR_NHLEN_VPNV6_GLOBAL
;
2965 static void *route_set_vpnv6_nexthop_compile(const char *arg
)
2968 struct in6_addr
*address
;
2970 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in6_addr
));
2971 ret
= inet_pton(AF_INET6
, arg
, address
);
2974 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
2981 static void route_set_vpn_nexthop_free(void *rule
)
2983 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
2986 /* Route map commands for ipv4 next-hop set. */
2987 struct route_map_rule_cmd route_set_vpnv4_nexthop_cmd
= {
2988 "ipv4 vpn next-hop", route_set_vpnv4_nexthop
,
2989 route_set_vpnv4_nexthop_compile
, route_set_vpn_nexthop_free
};
2991 /* Route map commands for ipv6 next-hop set. */
2992 struct route_map_rule_cmd route_set_vpnv6_nexthop_cmd
= {
2993 "ipv6 vpn next-hop", route_set_vpnv6_nexthop
,
2994 route_set_vpnv6_nexthop_compile
, route_set_vpn_nexthop_free
};
2996 /* `set originator-id' */
2998 /* For origin set. */
2999 static enum route_map_cmd_result_t
3000 route_set_originator_id(void *rule
, const struct prefix
*prefix
,
3001 route_map_object_t type
, void *object
)
3003 struct in_addr
*address
;
3004 struct bgp_path_info
*path
;
3006 if (type
== RMAP_BGP
) {
3010 path
->attr
->flag
|= ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID
);
3011 path
->attr
->originator_id
= *address
;
3017 /* Compile function for originator-id set. */
3018 static void *route_set_originator_id_compile(const char *arg
)
3021 struct in_addr
*address
;
3023 address
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(struct in_addr
));
3025 ret
= inet_aton(arg
, address
);
3028 XFREE(MTYPE_ROUTE_MAP_COMPILED
, address
);
3035 /* Compile function for originator_id set. */
3036 static void route_set_originator_id_free(void *rule
)
3038 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
3041 /* Set originator-id rule structure. */
3042 struct route_map_rule_cmd route_set_originator_id_cmd
= {
3043 "originator-id", route_set_originator_id
,
3044 route_set_originator_id_compile
, route_set_originator_id_free
,
3047 /* Add bgp route map rule. */
3048 static int bgp_route_match_add(struct vty
*vty
, const char *command
,
3049 const char *arg
, route_map_event_t type
)
3051 VTY_DECLVAR_CONTEXT(route_map_index
, index
);
3052 int retval
= CMD_SUCCESS
;
3055 ret
= route_map_add_match(index
, command
, arg
, type
);
3057 case RMAP_RULE_MISSING
:
3058 vty_out(vty
, "%% BGP Can't find rule.\n");
3059 retval
= CMD_WARNING_CONFIG_FAILED
;
3061 case RMAP_COMPILE_ERROR
:
3062 vty_out(vty
, "%% BGP Argument is malformed.\n");
3063 retval
= CMD_WARNING_CONFIG_FAILED
;
3065 case RMAP_COMPILE_SUCCESS
:
3066 if (type
!= RMAP_EVENT_MATCH_ADDED
) {
3067 route_map_upd8_dependency(type
, arg
, index
->map
->name
);
3075 /* Delete bgp route map rule. */
3076 static int bgp_route_match_delete(struct vty
*vty
, const char *command
,
3077 const char *arg
, route_map_event_t type
)
3079 VTY_DECLVAR_CONTEXT(route_map_index
, index
);
3081 int retval
= CMD_SUCCESS
;
3082 char *dep_name
= NULL
;
3084 char *rmap_name
= NULL
;
3086 if (type
!= RMAP_EVENT_MATCH_DELETED
) {
3087 /* ignore the mundane, the types without any dependency */
3089 if ((tmpstr
= route_map_get_match_arg(index
, command
))
3092 XSTRDUP(MTYPE_ROUTE_MAP_RULE
, tmpstr
);
3094 dep_name
= XSTRDUP(MTYPE_ROUTE_MAP_RULE
, arg
);
3096 rmap_name
= XSTRDUP(MTYPE_ROUTE_MAP_NAME
, index
->map
->name
);
3099 ret
= route_map_delete_match(index
, command
, dep_name
);
3101 case RMAP_RULE_MISSING
:
3102 vty_out(vty
, "%% BGP Can't find rule.\n");
3103 retval
= CMD_WARNING_CONFIG_FAILED
;
3105 case RMAP_COMPILE_ERROR
:
3106 vty_out(vty
, "%% BGP Argument is malformed.\n");
3107 retval
= CMD_WARNING_CONFIG_FAILED
;
3109 case RMAP_COMPILE_SUCCESS
:
3110 if (type
!= RMAP_EVENT_MATCH_DELETED
&& dep_name
)
3111 route_map_upd8_dependency(type
, dep_name
, rmap_name
);
3115 XFREE(MTYPE_ROUTE_MAP_RULE
, dep_name
);
3116 XFREE(MTYPE_ROUTE_MAP_NAME
, rmap_name
);
3122 * This is the workhorse routine for processing in/out routemap
3125 static void bgp_route_map_process_peer(const char *rmap_name
,
3126 struct route_map
*map
, struct peer
*peer
,
3127 int afi
, int safi
, int route_update
)
3129 struct bgp_filter
*filter
;
3131 if (!peer
|| !rmap_name
)
3134 filter
= &peer
->filter
[afi
][safi
];
3136 * in is for non-route-server clients,
3137 * out is for all peers
3139 if (filter
->map
[RMAP_IN
].name
3140 && (strcmp(rmap_name
, filter
->map
[RMAP_IN
].name
) == 0)) {
3141 filter
->map
[RMAP_IN
].map
= map
;
3143 if (route_update
&& peer
->status
== Established
) {
3144 if (CHECK_FLAG(peer
->af_flags
[afi
][safi
],
3145 PEER_FLAG_SOFT_RECONFIG
)) {
3146 if (bgp_debug_update(peer
, NULL
, NULL
, 1))
3148 "Processing route_map %s update on peer %s (inbound, soft-reconfig)",
3149 rmap_name
, peer
->host
);
3151 bgp_soft_reconfig_in(peer
, afi
, safi
);
3152 } else if (CHECK_FLAG(peer
->cap
,
3153 PEER_CAP_REFRESH_OLD_RCV
)
3154 || CHECK_FLAG(peer
->cap
,
3155 PEER_CAP_REFRESH_NEW_RCV
)) {
3156 if (bgp_debug_update(peer
, NULL
, NULL
, 1))
3158 "Processing route_map %s update on peer %s (inbound, route-refresh)",
3159 rmap_name
, peer
->host
);
3160 bgp_route_refresh_send(peer
, afi
, safi
, 0, 0,
3167 * For outbound, unsuppress and default-originate map change (content or
3168 * map created), merely update the "config" here, the actual route
3169 * announcement happens at the group level.
3171 if (filter
->map
[RMAP_OUT
].name
3172 && (strcmp(rmap_name
, filter
->map
[RMAP_OUT
].name
) == 0))
3173 filter
->map
[RMAP_OUT
].map
= map
;
3175 if (filter
->usmap
.name
&& (strcmp(rmap_name
, filter
->usmap
.name
) == 0))
3176 filter
->usmap
.map
= map
;
3178 if (peer
->default_rmap
[afi
][safi
].name
3179 && (strcmp(rmap_name
, peer
->default_rmap
[afi
][safi
].name
) == 0))
3180 peer
->default_rmap
[afi
][safi
].map
= map
;
3183 static void bgp_route_map_update_peer_group(const char *rmap_name
,
3184 struct route_map
*map
,
3187 struct peer_group
*group
;
3188 struct listnode
*node
, *nnode
;
3189 struct bgp_filter
*filter
;
3196 /* All the peers have been updated correctly already. This is
3197 * just updating the placeholder data. No real update required.
3199 for (ALL_LIST_ELEMENTS(bgp
->group
, node
, nnode
, group
)) {
3200 FOREACH_AFI_SAFI (afi
, safi
) {
3201 filter
= &group
->conf
->filter
[afi
][safi
];
3203 for (direct
= RMAP_IN
; direct
< RMAP_MAX
; direct
++) {
3204 if ((filter
->map
[direct
].name
)
3205 && (strcmp(rmap_name
,
3206 filter
->map
[direct
].name
)
3208 filter
->map
[direct
].map
= map
;
3211 if (filter
->usmap
.name
3212 && (strcmp(rmap_name
, filter
->usmap
.name
) == 0))
3213 filter
->usmap
.map
= map
;
3219 * Note that if an extreme number (tens of thousands) of route-maps are in use
3220 * and if bgp has an extreme number of peers, network statements, etc then this
3221 * function can consume a lot of cycles. This is due to this function being
3222 * called for each route-map and within this function we walk the list of peers,
3223 * network statements, etc looking to see if they use this route-map.
3225 static void bgp_route_map_process_update(struct bgp
*bgp
, const char *rmap_name
,
3232 struct bgp_node
*bn
;
3233 struct bgp_static
*bgp_static
;
3234 struct listnode
*node
, *nnode
;
3235 struct route_map
*map
;
3236 char buf
[INET6_ADDRSTRLEN
];
3238 map
= route_map_lookup_by_name(rmap_name
);
3240 for (ALL_LIST_ELEMENTS(bgp
->peer
, node
, nnode
, peer
)) {
3242 /* Ignore dummy peer-group structure */
3243 if (CHECK_FLAG(peer
->sflags
, PEER_STATUS_GROUP
))
3246 FOREACH_AFI_SAFI (afi
, safi
) {
3247 /* process in/out/import/export/default-orig
3249 bgp_route_map_process_peer(rmap_name
, map
, peer
, afi
,
3250 safi
, route_update
);
3254 /* for outbound/default-orig route-maps, process for groups */
3255 update_group_policy_update(bgp
, BGP_POLICY_ROUTE_MAP
, rmap_name
,
3258 /* update peer-group config (template) */
3259 bgp_route_map_update_peer_group(rmap_name
, map
, bgp
);
3261 FOREACH_AFI_SAFI (afi
, safi
) {
3262 /* For table route-map updates. */
3263 if (!bgp_fibupd_safi(safi
))
3266 if (bgp
->table_map
[afi
][safi
].name
3267 && (strcmp(rmap_name
, bgp
->table_map
[afi
][safi
].name
)
3270 /* bgp->table_map[afi][safi].map is NULL.
3271 * i.e Route map creation event.
3272 * So update applied_counter.
3273 * If it is not NULL, i.e It may be routemap updation or
3274 * deletion. so no need to update the counter.
3276 if (!bgp
->table_map
[afi
][safi
].map
)
3277 route_map_counter_increment(map
);
3278 bgp
->table_map
[afi
][safi
].map
= map
;
3280 if (BGP_DEBUG(zebra
, ZEBRA
))
3282 "Processing route_map %s update on "
3286 bgp_zebra_announce_table(bgp
, afi
, safi
);
3289 /* For network route-map updates. */
3290 for (bn
= bgp_table_top(bgp
->route
[afi
][safi
]); bn
;
3291 bn
= bgp_route_next(bn
)) {
3292 bgp_static
= bgp_node_get_bgp_static_info(bn
);
3296 if (!bgp_static
->rmap
.name
3297 || (strcmp(rmap_name
, bgp_static
->rmap
.name
) != 0))
3300 if (!bgp_static
->rmap
.map
)
3301 route_map_counter_increment(map
);
3303 bgp_static
->rmap
.map
= map
;
3305 if (route_update
&& !bgp_static
->backdoor
) {
3306 if (bgp_debug_zebra(&bn
->p
))
3308 "Processing route_map %s update on static route %s",
3310 inet_ntop(bn
->p
.family
,
3311 &bn
->p
.u
.prefix
, buf
,
3313 bgp_static_update(bgp
, &bn
->p
, bgp_static
, afi
,
3319 /* For redistribute route-map updates. */
3320 for (afi
= AFI_IP
; afi
< AFI_MAX
; afi
++)
3321 for (i
= 0; i
< ZEBRA_ROUTE_MAX
; i
++) {
3322 struct list
*red_list
;
3323 struct bgp_redist
*red
;
3325 red_list
= bgp
->redist
[afi
][i
];
3329 for (ALL_LIST_ELEMENTS_RO(red_list
, node
, red
)) {
3331 || (strcmp(rmap_name
, red
->rmap
.name
) != 0))
3335 route_map_counter_increment(map
);
3337 red
->rmap
.map
= map
;
3342 if (BGP_DEBUG(zebra
, ZEBRA
))
3344 "Processing route_map %s update on redistributed routes",
3347 bgp_redistribute_resend(bgp
, afi
, i
,
3352 /* for type5 command route-maps */
3353 FOREACH_AFI_SAFI (afi
, safi
) {
3354 if (!bgp
->adv_cmd_rmap
[afi
][safi
].name
3355 || strcmp(rmap_name
, bgp
->adv_cmd_rmap
[afi
][safi
].name
)
3359 /* Make sure the route-map is populated here if not already done */
3360 bgp
->adv_cmd_rmap
[afi
][safi
].map
= map
;
3362 if (BGP_DEBUG(zebra
, ZEBRA
))
3364 "Processing route_map %s update on advertise type5 route command",
3367 if (route_update
&& advertise_type5_routes(bgp
, afi
)) {
3368 bgp_evpn_withdraw_type5_routes(bgp
, afi
, safi
);
3369 bgp_evpn_advertise_type5_routes(bgp
, afi
, safi
);
3374 static void bgp_route_map_process_update_cb(char *rmap_name
)
3376 struct listnode
*node
, *nnode
;
3379 for (ALL_LIST_ELEMENTS(bm
->bgp
, node
, nnode
, bgp
)) {
3380 bgp_route_map_process_update(bgp
, rmap_name
, 1);
3383 /* zlog_debug("%s: calling vnc_routemap_update", __func__); */
3384 vnc_routemap_update(bgp
, __func__
);
3388 vpn_policy_routemap_event(rmap_name
);
3391 int bgp_route_map_update_timer(struct thread
*thread
)
3393 bm
->t_rmap_update
= NULL
;
3395 route_map_walk_update_list(bgp_route_map_process_update_cb
);
3400 static void bgp_route_map_mark_update(const char *rmap_name
)
3402 if (bm
->t_rmap_update
== NULL
) {
3403 struct listnode
*node
, *nnode
;
3406 /* rmap_update_timer of 0 means don't do route updates */
3407 if (bm
->rmap_update_timer
) {
3408 bm
->t_rmap_update
= NULL
;
3409 thread_add_timer(bm
->master
, bgp_route_map_update_timer
,
3410 NULL
, bm
->rmap_update_timer
,
3411 &bm
->t_rmap_update
);
3413 /* Signal the groups that a route-map update event has
3415 for (ALL_LIST_ELEMENTS(bm
->bgp
, node
, nnode
, bgp
))
3416 update_group_policy_update(bgp
,
3417 BGP_POLICY_ROUTE_MAP
,
3420 for (ALL_LIST_ELEMENTS(bm
->bgp
, node
, nnode
, bgp
))
3421 bgp_route_map_process_update(bgp
, rmap_name
, 0);
3423 zlog_debug("%s: calling vnc_routemap_update", __func__
);
3424 vnc_routemap_update(bgp
, __func__
);
3430 static void bgp_route_map_add(const char *rmap_name
)
3432 if (route_map_mark_updated(rmap_name
) == 0)
3433 bgp_route_map_mark_update(rmap_name
);
3435 route_map_notify_dependencies(rmap_name
, RMAP_EVENT_MATCH_ADDED
);
3438 static void bgp_route_map_delete(const char *rmap_name
)
3440 if (route_map_mark_updated(rmap_name
) == 0)
3441 bgp_route_map_mark_update(rmap_name
);
3443 route_map_notify_dependencies(rmap_name
, RMAP_EVENT_MATCH_DELETED
);
3446 static void bgp_route_map_event(const char *rmap_name
)
3448 if (route_map_mark_updated(rmap_name
) == 0)
3449 bgp_route_map_mark_update(rmap_name
);
3451 route_map_notify_dependencies(rmap_name
, RMAP_EVENT_MATCH_ADDED
);
3454 DEFUN (match_mac_address
,
3455 match_mac_address_cmd
,
3456 "match mac address WORD",
3459 "Match address of route\n"
3460 "MAC Access-list name\n")
3462 return bgp_route_match_add(vty
, "mac address", argv
[3]->arg
,
3463 RMAP_EVENT_FILTER_ADDED
);
3466 DEFUN (no_match_mac_address
,
3467 no_match_mac_address_cmd
,
3468 "no match mac address WORD",
3472 "Match address of route\n"
3473 "MAC acess-list name\n")
3475 return bgp_route_match_delete(vty
, "mac address", argv
[4]->arg
,
3476 RMAP_EVENT_FILTER_DELETED
);
3479 DEFUN (match_evpn_route_type
,
3480 match_evpn_route_type_cmd
,
3481 "match evpn route-type <macip | multicast | prefix>",
3484 "Match route-type\n"
3489 return bgp_route_match_add(vty
, "evpn route-type", argv
[3]->arg
,
3490 RMAP_EVENT_MATCH_ADDED
);
3493 DEFUN (no_match_evpn_route_type
,
3494 no_match_evpn_route_type_cmd
,
3495 "no match evpn route-type <macip | multicast | prefix>",
3499 "Match route-type\n"
3504 return bgp_route_match_delete(vty
, "evpn route-type", argv
[4]->arg
,
3505 RMAP_EVENT_MATCH_DELETED
);
3509 DEFUN (match_evpn_vni
,
3511 "match evpn vni " CMD_VNI_RANGE
,
3517 return bgp_route_match_add(vty
, "evpn vni", argv
[3]->arg
,
3518 RMAP_EVENT_MATCH_ADDED
);
3521 DEFUN (no_match_evpn_vni
,
3522 no_match_evpn_vni_cmd
,
3523 "no match evpn vni " CMD_VNI_RANGE
,
3530 return bgp_route_match_delete(vty
, "evpn vni", argv
[4]->arg
,
3531 RMAP_EVENT_MATCH_DELETED
);
3534 DEFUN (match_evpn_default_route
,
3535 match_evpn_default_route_cmd
,
3536 "match evpn default-route",
3539 "default EVPN type-5 route\n")
3541 return bgp_route_match_add(vty
, "evpn default-route", NULL
,
3542 RMAP_EVENT_MATCH_ADDED
);
3545 DEFUN (no_match_evpn_default_route
,
3546 no_match_evpn_default_route_cmd
,
3547 "no match evpn default-route",
3551 "default EVPN type-5 route\n")
3553 return bgp_route_match_delete(vty
, "evpn default-route", NULL
,
3554 RMAP_EVENT_MATCH_DELETED
);
3557 DEFPY(match_vrl_source_vrf
,
3558 match_vrl_source_vrf_cmd
,
3559 "match source-vrf NAME$vrf_name",
3564 return bgp_route_match_add(vty
, "source-vrf", vrf_name
,
3565 RMAP_EVENT_MATCH_ADDED
);
3568 DEFPY(no_match_vrl_source_vrf
,
3569 no_match_vrl_source_vrf_cmd
,
3570 "no match source-vrf NAME$vrf_name",
3576 return bgp_route_match_delete(vty
, "source-vrf", vrf_name
,
3577 RMAP_EVENT_MATCH_DELETED
);
3582 "match peer <A.B.C.D|X:X::X:X|WORD>",
3584 "Match peer address\n"
3585 "IP address of peer\n"
3586 "IPv6 address of peer\n"
3587 "Interface name of peer\n")
3590 return bgp_route_match_add(vty
, "peer", argv
[idx_ip
]->arg
,
3591 RMAP_EVENT_MATCH_ADDED
);
3594 DEFUN (match_peer_local
,
3595 match_peer_local_cmd
,
3598 "Match peer address\n"
3599 "Static or Redistributed routes\n")
3601 return bgp_route_match_add(vty
, "peer", "local",
3602 RMAP_EVENT_MATCH_DELETED
);
3605 DEFUN (no_match_peer
,
3607 "no match peer [<local|A.B.C.D|X:X::X:X|WORD>]",
3610 "Match peer address\n"
3611 "Static or Redistributed routes\n"
3612 "IP address of peer\n"
3613 "IPv6 address of peer\n"
3614 "Interface name of peer\n")
3618 if (argc
<= idx_peer
)
3619 return bgp_route_match_delete(vty
, "peer", NULL
,
3620 RMAP_EVENT_MATCH_DELETED
);
3621 return bgp_route_match_delete(vty
, "peer", argv
[idx_peer
]->arg
,
3622 RMAP_EVENT_MATCH_DELETED
);
3625 #if defined(HAVE_LUA)
3626 DEFUN (match_command
,
3628 "match command WORD",
3630 "Run a command to match\n"
3631 "The command to run\n")
3633 return bgp_route_match_add(vty
, "command", argv
[2]->arg
,
3634 RMAP_EVENT_FILTER_ADDED
);
3637 DEFUN (no_match_command
,
3638 no_match_command_cmd
,
3639 "no match command WORD",
3642 "Run a command to match\n"
3643 "The command to run\n")
3645 return bgp_route_match_delete(vty
, "command", argv
[3]->arg
,
3646 RMAP_EVENT_FILTER_DELETED
);
3650 /* match probability */
3651 DEFUN (match_probability
,
3652 match_probability_cmd
,
3653 "match probability (0-100)",
3655 "Match portion of routes defined by percentage value\n"
3656 "Percentage of routes\n")
3659 return bgp_route_match_add(vty
, "probability", argv
[idx_number
]->arg
,
3660 RMAP_EVENT_MATCH_ADDED
);
3664 DEFUN (no_match_probability
,
3665 no_match_probability_cmd
,
3666 "no match probability [(1-99)]",
3669 "Match portion of routes defined by percentage value\n"
3670 "Percentage of routes\n")
3673 if (argc
<= idx_number
)
3674 return bgp_route_match_delete(vty
, "probability", NULL
,
3675 RMAP_EVENT_MATCH_DELETED
);
3676 return bgp_route_match_delete(vty
, "probability", argv
[idx_number
]->arg
,
3677 RMAP_EVENT_MATCH_DELETED
);
3681 DEFUN (match_ip_route_source
,
3682 match_ip_route_source_cmd
,
3683 "match ip route-source <(1-199)|(1300-2699)|WORD>",
3686 "Match advertising source address of route\n"
3687 "IP access-list number\n"
3688 "IP access-list number (expanded range)\n"
3689 "IP standard access-list name\n")
3692 return bgp_route_match_add(vty
, "ip route-source", argv
[idx_acl
]->arg
,
3693 RMAP_EVENT_FILTER_ADDED
);
3697 DEFUN (no_match_ip_route_source
,
3698 no_match_ip_route_source_cmd
,
3699 "no match ip route-source [<(1-199)|(1300-2699)|WORD>]",
3703 "Match advertising source address of route\n"
3704 "IP access-list number\n"
3705 "IP access-list number (expanded range)\n"
3706 "IP standard access-list name\n")
3709 if (argc
<= idx_number
)
3710 return bgp_route_match_delete(vty
, "ip route-source", NULL
,
3711 RMAP_EVENT_FILTER_DELETED
);
3712 return bgp_route_match_delete(vty
, "ip route-source",
3713 argv
[idx_number
]->arg
,
3714 RMAP_EVENT_FILTER_DELETED
);
3718 DEFUN (match_ip_route_source_prefix_list
,
3719 match_ip_route_source_prefix_list_cmd
,
3720 "match ip route-source prefix-list WORD",
3723 "Match advertising source address of route\n"
3724 "Match entries of prefix-lists\n"
3725 "IP prefix-list name\n")
3728 return bgp_route_match_add(vty
, "ip route-source prefix-list",
3729 argv
[idx_word
]->arg
, RMAP_EVENT_PLIST_ADDED
);
3733 DEFUN (no_match_ip_route_source_prefix_list
,
3734 no_match_ip_route_source_prefix_list_cmd
,
3735 "no match ip route-source prefix-list [WORD]",
3739 "Match advertising source address of route\n"
3740 "Match entries of prefix-lists\n"
3741 "IP prefix-list name\n")
3744 if (argc
<= idx_word
)
3745 return bgp_route_match_delete(vty
,
3746 "ip route-source prefix-list",
3747 NULL
, RMAP_EVENT_PLIST_DELETED
);
3748 return bgp_route_match_delete(vty
, "ip route-source prefix-list",
3749 argv
[idx_word
]->arg
,
3750 RMAP_EVENT_PLIST_DELETED
);
3754 DEFUN (match_local_pref
,
3755 match_local_pref_cmd
,
3756 "match local-preference (0-4294967295)",
3758 "Match local-preference of route\n"
3762 return bgp_route_match_add(vty
, "local-preference",
3763 argv
[idx_number
]->arg
,
3764 RMAP_EVENT_MATCH_ADDED
);
3768 DEFUN (no_match_local_pref
,
3769 no_match_local_pref_cmd
,
3770 "no match local-preference [(0-4294967295)]",
3773 "Match local preference of route\n"
3774 "Local preference value\n")
3776 int idx_localpref
= 3;
3777 if (argc
<= idx_localpref
)
3778 return bgp_route_match_delete(vty
, "local-preference", NULL
,
3779 RMAP_EVENT_MATCH_DELETED
);
3780 return bgp_route_match_delete(vty
, "local-preference",
3781 argv
[idx_localpref
]->arg
,
3782 RMAP_EVENT_MATCH_DELETED
);
3786 DEFUN (match_community
,
3787 match_community_cmd
,
3788 "match community <(1-99)|(100-500)|WORD> [exact-match]",
3790 "Match BGP community list\n"
3791 "Community-list number (standard)\n"
3792 "Community-list number (expanded)\n"
3793 "Community-list name\n"
3794 "Do exact matching of communities\n")
3796 int idx_comm_list
= 2;
3801 argstr
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
,
3802 strlen(argv
[idx_comm_list
]->arg
)
3803 + strlen("exact-match") + 2);
3805 sprintf(argstr
, "%s exact-match", argv
[idx_comm_list
]->arg
);
3807 argstr
= argv
[idx_comm_list
]->arg
;
3809 ret
= bgp_route_match_add(vty
, "community", argstr
,
3810 RMAP_EVENT_CLIST_ADDED
);
3812 if (argstr
!= argv
[idx_comm_list
]->arg
)
3813 XFREE(MTYPE_ROUTE_MAP_COMPILED
, argstr
);
3818 DEFUN (no_match_community
,
3819 no_match_community_cmd
,
3820 "no match community [<(1-99)|(100-500)|WORD> [exact-match]]",
3823 "Match BGP community list\n"
3824 "Community-list number (standard)\n"
3825 "Community-list number (expanded)\n"
3826 "Community-list name\n"
3827 "Do exact matching of communities\n")
3829 return bgp_route_match_delete(vty
, "community", NULL
,
3830 RMAP_EVENT_CLIST_DELETED
);
3833 DEFUN (match_lcommunity
,
3834 match_lcommunity_cmd
,
3835 "match large-community <(1-99)|(100-500)|WORD> [exact-match]",
3837 "Match BGP large community list\n"
3838 "Large Community-list number (standard)\n"
3839 "Large Community-list number (expanded)\n"
3840 "Large Community-list name\n"
3841 "Do exact matching of communities\n")
3843 int idx_lcomm_list
= 2;
3848 argstr
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
,
3849 strlen(argv
[idx_lcomm_list
]->arg
)
3850 + strlen("exact-match") + 2);
3852 sprintf(argstr
, "%s exact-match", argv
[idx_lcomm_list
]->arg
);
3854 argstr
= argv
[idx_lcomm_list
]->arg
;
3856 ret
= bgp_route_match_add(vty
, "large-community", argstr
,
3857 RMAP_EVENT_LLIST_ADDED
);
3858 if (argstr
!= argv
[idx_lcomm_list
]->arg
)
3859 XFREE(MTYPE_ROUTE_MAP_COMPILED
, argstr
);
3864 DEFUN (no_match_lcommunity
,
3865 no_match_lcommunity_cmd
,
3866 "no match large-community [<(1-99)|(100-500)|WORD> [exact-match]]",
3869 "Match BGP large community list\n"
3870 "Large Community-list number (standard)\n"
3871 "Large Community-list number (expanded)\n"
3872 "Large Community-list name\n"
3873 "Do exact matching of communities\n")
3875 return bgp_route_match_delete(vty
, "large-community", NULL
,
3876 RMAP_EVENT_LLIST_DELETED
);
3879 DEFUN (match_ecommunity
,
3880 match_ecommunity_cmd
,
3881 "match extcommunity <(1-99)|(100-500)|WORD>",
3883 "Match BGP/VPN extended community list\n"
3884 "Extended community-list number (standard)\n"
3885 "Extended community-list number (expanded)\n"
3886 "Extended community-list name\n")
3888 int idx_comm_list
= 2;
3889 return bgp_route_match_add(vty
, "extcommunity",
3890 argv
[idx_comm_list
]->arg
,
3891 RMAP_EVENT_ECLIST_ADDED
);
3895 DEFUN (no_match_ecommunity
,
3896 no_match_ecommunity_cmd
,
3897 "no match extcommunity [<(1-99)|(100-500)|WORD>]",
3900 "Match BGP/VPN extended community list\n"
3901 "Extended community-list number (standard)\n"
3902 "Extended community-list number (expanded)\n"
3903 "Extended community-list name\n")
3905 return bgp_route_match_delete(vty
, "extcommunity", NULL
,
3906 RMAP_EVENT_ECLIST_DELETED
);
3910 DEFUN (match_aspath
,
3912 "match as-path WORD",
3914 "Match BGP AS path list\n"
3915 "AS path access-list name\n")
3918 return bgp_route_match_add(vty
, "as-path", argv
[idx_word
]->arg
,
3919 RMAP_EVENT_ASLIST_ADDED
);
3923 DEFUN (no_match_aspath
,
3924 no_match_aspath_cmd
,
3925 "no match as-path [WORD]",
3928 "Match BGP AS path list\n"
3929 "AS path access-list name\n")
3931 return bgp_route_match_delete(vty
, "as-path", NULL
,
3932 RMAP_EVENT_ASLIST_DELETED
);
3936 DEFUN (match_origin
,
3938 "match origin <egp|igp|incomplete>",
3943 "unknown heritage\n")
3946 if (strncmp(argv
[idx_origin
]->arg
, "igp", 2) == 0)
3947 return bgp_route_match_add(vty
, "origin", "igp",
3948 RMAP_EVENT_MATCH_ADDED
);
3949 if (strncmp(argv
[idx_origin
]->arg
, "egp", 1) == 0)
3950 return bgp_route_match_add(vty
, "origin", "egp",
3951 RMAP_EVENT_MATCH_ADDED
);
3952 if (strncmp(argv
[idx_origin
]->arg
, "incomplete", 2) == 0)
3953 return bgp_route_match_add(vty
, "origin", "incomplete",
3954 RMAP_EVENT_MATCH_ADDED
);
3956 vty_out(vty
, "%% Invalid match origin type\n");
3957 return CMD_WARNING_CONFIG_FAILED
;
3961 DEFUN (no_match_origin
,
3962 no_match_origin_cmd
,
3963 "no match origin [<egp|igp|incomplete>]",
3969 "unknown heritage\n")
3971 return bgp_route_match_delete(vty
, "origin", NULL
,
3972 RMAP_EVENT_MATCH_DELETED
);
3975 DEFUN (set_ip_nexthop_peer
,
3976 set_ip_nexthop_peer_cmd
,
3977 "[no] set ip next-hop peer-address",
3981 "Next hop address\n"
3982 "Use peer address (for BGP only)\n")
3984 int (*func
)(struct vty
*, struct route_map_index
*, const char *,
3985 const char *) = strmatch(argv
[0]->text
, "no")
3986 ? generic_set_delete
3989 return func(vty
, VTY_GET_CONTEXT(route_map_index
), "ip next-hop",
3993 DEFUN (set_ip_nexthop_unchanged
,
3994 set_ip_nexthop_unchanged_cmd
,
3995 "[no] set ip next-hop unchanged",
3999 "Next hop address\n"
4000 "Don't modify existing Next hop address\n")
4002 int (*func
)(struct vty
*, struct route_map_index
*, const char *,
4003 const char *) = strmatch(argv
[0]->text
, "no")
4004 ? generic_set_delete
4007 return func(vty
, VTY_GET_CONTEXT(route_map_index
), "ip next-hop",
4012 DEFUN (set_local_pref
,
4014 "set local-preference (0-4294967295)",
4016 "BGP local preference path attribute\n"
4017 "Preference value\n")
4020 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4021 "local-preference", argv
[idx_number
]->arg
);
4025 DEFUN (no_set_local_pref
,
4026 no_set_local_pref_cmd
,
4027 "no set local-preference [(0-4294967295)]",
4030 "BGP local preference path attribute\n"
4031 "Preference value\n")
4033 int idx_localpref
= 3;
4034 if (argc
<= idx_localpref
)
4035 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4036 "local-preference", NULL
);
4037 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4038 "local-preference", argv
[idx_localpref
]->arg
);
4044 "set weight (0-4294967295)",
4046 "BGP weight for routing table\n"
4050 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
), "weight",
4051 argv
[idx_number
]->arg
);
4055 DEFUN (no_set_weight
,
4057 "no set weight [(0-4294967295)]",
4060 "BGP weight for routing table\n"
4064 if (argc
<= idx_weight
)
4065 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4067 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4068 "weight", argv
[idx_weight
]->arg
);
4071 DEFUN (set_label_index
,
4072 set_label_index_cmd
,
4073 "set label-index (0-1048560)",
4075 "Label index to associate with the prefix\n"
4076 "Label index value\n")
4079 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4080 "label-index", argv
[idx_number
]->arg
);
4083 DEFUN (no_set_label_index
,
4084 no_set_label_index_cmd
,
4085 "no set label-index [(0-1048560)]",
4088 "Label index to associate with the prefix\n"
4089 "Label index value\n")
4091 int idx_label_index
= 3;
4092 if (argc
<= idx_label_index
)
4093 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4094 "label-index", NULL
);
4095 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4096 "label-index", argv
[idx_label_index
]->arg
);
4099 DEFUN (set_aspath_prepend_asn
,
4100 set_aspath_prepend_asn_cmd
,
4101 "set as-path prepend (1-4294967295)...",
4103 "Transform BGP AS_PATH attribute\n"
4104 "Prepend to the as-path\n"
4111 str
= argv_concat(argv
, argc
, idx_asn
);
4112 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4113 "as-path prepend", str
);
4114 XFREE(MTYPE_TMP
, str
);
4119 DEFUN (set_aspath_prepend_lastas
,
4120 set_aspath_prepend_lastas_cmd
,
4121 "set as-path prepend last-as (1-10)",
4123 "Transform BGP AS_PATH attribute\n"
4124 "Prepend to the as-path\n"
4125 "Use the peer's AS-number\n"
4126 "Number of times to insert\n")
4128 return set_aspath_prepend_asn(self
, vty
, argc
, argv
);
4131 DEFUN (no_set_aspath_prepend
,
4132 no_set_aspath_prepend_cmd
,
4133 "no set as-path prepend [(1-4294967295)]",
4136 "Transform BGP AS_PATH attribute\n"
4137 "Prepend to the as-path\n"
4144 str
= argv_concat(argv
, argc
, idx_asn
);
4145 ret
= generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4146 "as-path prepend", str
);
4147 XFREE(MTYPE_TMP
, str
);
4152 DEFUN (set_aspath_exclude
,
4153 set_aspath_exclude_cmd
,
4154 "set as-path exclude (1-4294967295)...",
4156 "Transform BGP AS-path attribute\n"
4157 "Exclude from the as-path\n"
4164 str
= argv_concat(argv
, argc
, idx_asn
);
4165 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4166 "as-path exclude", str
);
4167 XFREE(MTYPE_TMP
, str
);
4171 DEFUN (no_set_aspath_exclude
,
4172 no_set_aspath_exclude_cmd
,
4173 "no set as-path exclude (1-4294967295)...",
4176 "Transform BGP AS_PATH attribute\n"
4177 "Exclude from the as-path\n"
4184 str
= argv_concat(argv
, argc
, idx_asn
);
4185 ret
= generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4186 "as-path exclude", str
);
4187 XFREE(MTYPE_TMP
, str
);
4191 ALIAS(no_set_aspath_exclude
, no_set_aspath_exclude_all_cmd
,
4192 "no set as-path exclude",
4194 "Transform BGP AS_PATH attribute\n"
4195 "Exclude from the as-path\n")
4197 DEFUN (set_community
,
4199 "set community AA:NN...",
4201 "BGP community attribute\n"
4209 struct community
*com
= NULL
;
4214 b
= buffer_new(1024);
4216 for (i
= idx_aa_nn
; i
< argc
; i
++) {
4217 if (strncmp(argv
[i
]->arg
, "additive", strlen(argv
[i
]->arg
))
4224 buffer_putc(b
, ' ');
4228 if (strncmp(argv
[i
]->arg
, "internet", strlen(argv
[i
]->arg
))
4230 buffer_putstr(b
, "internet");
4233 if (strncmp(argv
[i
]->arg
, "local-AS", strlen(argv
[i
]->arg
))
4235 buffer_putstr(b
, "local-AS");
4238 if (strncmp(argv
[i
]->arg
, "no-a", strlen("no-a")) == 0
4239 && strncmp(argv
[i
]->arg
, "no-advertise",
4240 strlen(argv
[i
]->arg
))
4242 buffer_putstr(b
, "no-advertise");
4245 if (strncmp(argv
[i
]->arg
, "no-e", strlen("no-e")) == 0
4246 && strncmp(argv
[i
]->arg
, "no-export", strlen(argv
[i
]->arg
))
4248 buffer_putstr(b
, "no-export");
4251 if (strncmp(argv
[i
]->arg
, "graceful-shutdown",
4252 strlen(argv
[i
]->arg
))
4254 buffer_putstr(b
, "graceful-shutdown");
4257 buffer_putstr(b
, argv
[i
]->arg
);
4259 buffer_putc(b
, '\0');
4261 /* Fetch result string then compile it to communities attribute. */
4262 str
= buffer_getstr(b
);
4266 com
= community_str2com(str
);
4267 XFREE(MTYPE_TMP
, str
);
4270 /* Can't compile user input into communities attribute. */
4272 vty_out(vty
, "%% Malformed communities attribute\n");
4273 return CMD_WARNING_CONFIG_FAILED
;
4276 /* Set communites attribute string. */
4277 str
= community_str(com
, false);
4280 size_t argstr_sz
= strlen(str
) + strlen(" additive") + 1;
4281 argstr
= XCALLOC(MTYPE_TMP
, argstr_sz
);
4282 strlcpy(argstr
, str
, argstr_sz
);
4283 strlcat(argstr
, " additive", argstr_sz
);
4284 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4285 "community", argstr
);
4286 XFREE(MTYPE_TMP
, argstr
);
4288 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4291 community_free(&com
);
4296 DEFUN (set_community_none
,
4297 set_community_none_cmd
,
4298 "set community none",
4300 "BGP community attribute\n"
4301 "No community attribute\n")
4303 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4304 "community", "none");
4307 DEFUN (no_set_community
,
4308 no_set_community_cmd
,
4309 "no set community AA:NN...",
4312 "BGP community attribute\n"
4315 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4319 ALIAS (no_set_community
,
4320 no_set_community_short_cmd
,
4324 "BGP community attribute\n")
4327 DEFUN (set_community_delete
,
4328 set_community_delete_cmd
,
4329 "set comm-list <(1-99)|(100-500)|WORD> delete",
4331 "set BGP community list (for deletion)\n"
4332 "Community-list number (standard)\n"
4333 "Community-list number (expanded)\n"
4334 "Community-list name\n"
4335 "Delete matching communities\n")
4337 int idx_comm_list
= 2;
4340 args
= argv_concat(argv
, argc
, idx_comm_list
);
4341 generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
), "comm-list",
4343 XFREE(MTYPE_TMP
, args
);
4348 DEFUN (no_set_community_delete
,
4349 no_set_community_delete_cmd
,
4350 "no set comm-list [<(1-99)|(100-500)|WORD> delete]",
4353 "set BGP community list (for deletion)\n"
4354 "Community-list number (standard)\n"
4355 "Community-list number (expanded)\n"
4356 "Community-list name\n"
4357 "Delete matching communities\n")
4359 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4363 DEFUN (set_lcommunity
,
4365 "set large-community AA:BB:CC...",
4367 "BGP large community attribute\n"
4368 "Large Community number in aa:bb:cc format or additive\n")
4373 str
= argv_concat(argv
, argc
, 2);
4374 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4375 "large-community", str
);
4376 XFREE(MTYPE_TMP
, str
);
4381 DEFUN (set_lcommunity_none
,
4382 set_lcommunity_none_cmd
,
4383 "set large-community none",
4385 "BGP large community attribute\n"
4386 "No large community attribute\n")
4388 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4389 "large-community", "none");
4392 DEFUN (no_set_lcommunity
,
4393 no_set_lcommunity_cmd
,
4394 "no set large-community none",
4397 "BGP large community attribute\n"
4398 "No community attribute\n")
4400 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4401 "large-community", NULL
);
4404 DEFUN (no_set_lcommunity1
,
4405 no_set_lcommunity1_cmd
,
4406 "no set large-community AA:BB:CC...",
4409 "BGP large community attribute\n"
4410 "Large community in AA:BB:CC... format or additive\n")
4412 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4413 "large-community", NULL
);
4416 ALIAS (no_set_lcommunity1
,
4417 no_set_lcommunity1_short_cmd
,
4418 "no set large-community",
4421 "BGP large community attribute\n")
4423 DEFUN (set_lcommunity_delete
,
4424 set_lcommunity_delete_cmd
,
4425 "set large-comm-list <(1-99)|(100-500)|WORD> delete",
4427 "set BGP large community list (for deletion)\n"
4428 "Large Community-list number (standard)\n"
4429 "Large Communitly-list number (expanded)\n"
4430 "Large Community-list name\n"
4431 "Delete matching large communities\n")
4433 int idx_lcomm_list
= 2;
4436 args
= argv_concat(argv
, argc
, idx_lcomm_list
);
4437 generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4438 "large-comm-list", args
);
4439 XFREE(MTYPE_TMP
, args
);
4444 DEFUN (no_set_lcommunity_delete
,
4445 no_set_lcommunity_delete_cmd
,
4446 "no set large-comm-list <(1-99)|(100-500)|WORD> [delete]",
4449 "set BGP large community list (for deletion)\n"
4450 "Large Community-list number (standard)\n"
4451 "Large Communitly-list number (expanded)\n"
4452 "Large Community-list name\n"
4453 "Delete matching large communities\n")
4455 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4456 "large-comm-list", NULL
);
4459 ALIAS (no_set_lcommunity_delete
,
4460 no_set_lcommunity_delete_short_cmd
,
4461 "no set large-comm-list",
4464 "set BGP large community list (for deletion)\n")
4466 DEFUN (set_ecommunity_rt
,
4467 set_ecommunity_rt_cmd
,
4468 "set extcommunity rt ASN:NN_OR_IP-ADDRESS:NN...",
4470 "BGP extended community attribute\n"
4471 "Route Target extended community\n"
4472 "VPN extended community\n")
4478 str
= argv_concat(argv
, argc
, idx_asn_nn
);
4479 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4480 "extcommunity rt", str
);
4481 XFREE(MTYPE_TMP
, str
);
4486 DEFUN (no_set_ecommunity_rt
,
4487 no_set_ecommunity_rt_cmd
,
4488 "no set extcommunity rt ASN:NN_OR_IP-ADDRESS:NN...",
4491 "BGP extended community attribute\n"
4492 "Route Target extended community\n"
4493 "VPN extended community\n")
4495 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4496 "extcommunity rt", NULL
);
4499 ALIAS (no_set_ecommunity_rt
,
4500 no_set_ecommunity_rt_short_cmd
,
4501 "no set extcommunity rt",
4504 "BGP extended community attribute\n"
4505 "Route Target extended community\n")
4507 DEFUN (set_ecommunity_soo
,
4508 set_ecommunity_soo_cmd
,
4509 "set extcommunity soo ASN:NN_OR_IP-ADDRESS:NN...",
4511 "BGP extended community attribute\n"
4512 "Site-of-Origin extended community\n"
4513 "VPN extended community\n")
4519 str
= argv_concat(argv
, argc
, idx_asn_nn
);
4520 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4521 "extcommunity soo", str
);
4522 XFREE(MTYPE_TMP
, str
);
4527 DEFUN (no_set_ecommunity_soo
,
4528 no_set_ecommunity_soo_cmd
,
4529 "no set extcommunity soo ASN:NN_OR_IP-ADDRESS:NN...",
4532 "BGP extended community attribute\n"
4533 "Site-of-Origin extended community\n"
4534 "VPN extended community\n")
4536 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4537 "extcommunity soo", NULL
);
4540 ALIAS (no_set_ecommunity_soo
,
4541 no_set_ecommunity_soo_short_cmd
,
4542 "no set extcommunity soo",
4545 "GP extended community attribute\n"
4546 "Site-of-Origin extended community\n")
4550 "set origin <egp|igp|incomplete>",
4555 "unknown heritage\n")
4558 if (strncmp(argv
[idx_origin
]->arg
, "igp", 2) == 0)
4559 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4561 if (strncmp(argv
[idx_origin
]->arg
, "egp", 1) == 0)
4562 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4564 if (strncmp(argv
[idx_origin
]->arg
, "incomplete", 2) == 0)
4565 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4566 "origin", "incomplete");
4568 vty_out(vty
, "%% Invalid set origin type\n");
4569 return CMD_WARNING_CONFIG_FAILED
;
4573 DEFUN (no_set_origin
,
4575 "no set origin [<egp|igp|incomplete>]",
4581 "unknown heritage\n")
4583 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4588 DEFUN (set_atomic_aggregate
,
4589 set_atomic_aggregate_cmd
,
4590 "set atomic-aggregate",
4592 "BGP atomic aggregate attribute\n" )
4594 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4595 "atomic-aggregate", NULL
);
4598 DEFUN (no_set_atomic_aggregate
,
4599 no_set_atomic_aggregate_cmd
,
4600 "no set atomic-aggregate",
4603 "BGP atomic aggregate attribute\n" )
4605 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4606 "atomic-aggregate", NULL
);
4609 DEFUN (set_aggregator_as
,
4610 set_aggregator_as_cmd
,
4611 "set aggregator as (1-4294967295) A.B.C.D",
4613 "BGP aggregator attribute\n"
4614 "AS number of aggregator\n"
4616 "IP address of aggregator\n")
4621 struct in_addr address
;
4624 ret
= inet_aton(argv
[idx_ipv4
]->arg
, &address
);
4626 vty_out(vty
, "Aggregator IP address is invalid\n");
4627 return CMD_WARNING_CONFIG_FAILED
;
4630 argstr
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
,
4631 strlen(argv
[idx_number
]->arg
)
4632 + strlen(argv
[idx_ipv4
]->arg
) + 2);
4634 sprintf(argstr
, "%s %s", argv
[idx_number
]->arg
, argv
[idx_ipv4
]->arg
);
4636 ret
= generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4637 "aggregator as", argstr
);
4639 XFREE(MTYPE_ROUTE_MAP_COMPILED
, argstr
);
4645 DEFUN (no_set_aggregator_as
,
4646 no_set_aggregator_as_cmd
,
4647 "no set aggregator as [(1-4294967295) A.B.C.D]",
4650 "BGP aggregator attribute\n"
4651 "AS number of aggregator\n"
4653 "IP address of aggregator\n")
4658 struct in_addr address
;
4661 if (argc
<= idx_asn
)
4662 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4663 "aggregator as", NULL
);
4665 ret
= inet_aton(argv
[idx_ip
]->arg
, &address
);
4667 vty_out(vty
, "Aggregator IP address is invalid\n");
4668 return CMD_WARNING_CONFIG_FAILED
;
4671 argstr
= XMALLOC(MTYPE_ROUTE_MAP_COMPILED
,
4672 strlen(argv
[idx_asn
]->arg
) + strlen(argv
[idx_ip
]->arg
)
4675 sprintf(argstr
, "%s %s", argv
[idx_asn
]->arg
, argv
[idx_ip
]->arg
);
4677 ret
= generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4678 "aggregator as", argstr
);
4680 XFREE(MTYPE_ROUTE_MAP_COMPILED
, argstr
);
4685 DEFUN (match_ipv6_next_hop
,
4686 match_ipv6_next_hop_cmd
,
4687 "match ipv6 next-hop X:X::X:X",
4690 "Match IPv6 next-hop address of route\n"
4691 "IPv6 address of next hop\n")
4694 return bgp_route_match_add(vty
, "ipv6 next-hop", argv
[idx_ipv6
]->arg
,
4695 RMAP_EVENT_MATCH_ADDED
);
4698 DEFUN (no_match_ipv6_next_hop
,
4699 no_match_ipv6_next_hop_cmd
,
4700 "no match ipv6 next-hop X:X::X:X",
4704 "Match IPv6 next-hop address of route\n"
4705 "IPv6 address of next hop\n")
4708 return bgp_route_match_delete(vty
, "ipv6 next-hop", argv
[idx_ipv6
]->arg
,
4709 RMAP_EVENT_MATCH_DELETED
);
4713 DEFUN (set_ipv6_nexthop_peer
,
4714 set_ipv6_nexthop_peer_cmd
,
4715 "set ipv6 next-hop peer-address",
4718 "Next hop address\n"
4719 "Use peer address (for BGP only)\n")
4721 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4722 "ipv6 next-hop peer-address", NULL
);
4725 DEFUN (no_set_ipv6_nexthop_peer
,
4726 no_set_ipv6_nexthop_peer_cmd
,
4727 "no set ipv6 next-hop peer-address",
4731 "IPv6 next-hop address\n"
4732 "Use peer address (for BGP only)\n")
4734 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4735 "ipv6 next-hop peer-address", NULL
);
4738 DEFUN (set_ipv6_nexthop_prefer_global
,
4739 set_ipv6_nexthop_prefer_global_cmd
,
4740 "set ipv6 next-hop prefer-global",
4743 "IPv6 next-hop address\n"
4744 "Prefer global over link-local if both exist\n")
4746 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4747 "ipv6 next-hop prefer-global", NULL
);
4751 DEFUN (no_set_ipv6_nexthop_prefer_global
,
4752 no_set_ipv6_nexthop_prefer_global_cmd
,
4753 "no set ipv6 next-hop prefer-global",
4757 "IPv6 next-hop address\n"
4758 "Prefer global over link-local if both exist\n")
4760 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4761 "ipv6 next-hop prefer-global", NULL
);
4764 DEFUN (set_ipv6_nexthop_global
,
4765 set_ipv6_nexthop_global_cmd
,
4766 "set ipv6 next-hop global X:X::X:X",
4769 "IPv6 next-hop address\n"
4770 "IPv6 global address\n"
4771 "IPv6 address of next hop\n")
4774 struct in6_addr addr
;
4777 ret
= inet_pton(AF_INET6
, argv
[idx_ipv6
]->arg
, &addr
);
4779 vty_out(vty
, "%% Malformed nexthop address\n");
4780 return CMD_WARNING_CONFIG_FAILED
;
4782 if (IN6_IS_ADDR_UNSPECIFIED(&addr
) || IN6_IS_ADDR_LOOPBACK(&addr
)
4783 || IN6_IS_ADDR_MULTICAST(&addr
) || IN6_IS_ADDR_LINKLOCAL(&addr
)) {
4784 vty_out(vty
, "%% Invalid global nexthop address\n");
4785 return CMD_WARNING_CONFIG_FAILED
;
4788 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4789 "ipv6 next-hop global", argv
[idx_ipv6
]->arg
);
4793 DEFUN (no_set_ipv6_nexthop_global
,
4794 no_set_ipv6_nexthop_global_cmd
,
4795 "no set ipv6 next-hop global X:X::X:X",
4799 "IPv6 next-hop address\n"
4800 "IPv6 global address\n"
4801 "IPv6 address of next hop\n")
4804 if (argc
<= idx_ipv6
)
4805 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4806 "ipv6 next-hop global", NULL
);
4807 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4808 "ipv6 next-hop global", argv
[idx_ipv6
]->arg
);
4811 #ifdef KEEP_OLD_VPN_COMMANDS
4812 DEFUN (set_vpn_nexthop
,
4813 set_vpn_nexthop_cmd
,
4814 "set <vpnv4 next-hop A.B.C.D|vpnv6 next-hop X:X::X:X>",
4816 "VPNv4 information\n"
4817 "VPN next-hop address\n"
4818 "IP address of next hop\n"
4819 "VPNv6 information\n"
4820 "VPN next-hop address\n"
4821 "IPv6 address of next hop\n")
4827 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
4829 return generic_set_add(
4830 vty
, VTY_GET_CONTEXT(route_map_index
),
4831 "ipv4 vpn next-hop", argv
[idx_ip
]->arg
);
4833 return generic_set_add(
4834 vty
, VTY_GET_CONTEXT(route_map_index
),
4835 "ipv6 vpn next-hop", argv
[idx_ip
]->arg
);
4840 DEFUN (no_set_vpn_nexthop
,
4841 no_set_vpn_nexthop_cmd
,
4842 "no set <vpnv4 next-hop A.B.C.D|vpnv6 next-hop X:X::X:X>",
4845 "VPNv4 information\n"
4846 "VPN next-hop address\n"
4847 "IP address of next hop\n"
4848 "VPNv6 information\n"
4849 "VPN next-hop address\n"
4850 "IPv6 address of next hop\n")
4860 arg
= argv
[idx_ip
]->arg
;
4861 if (argv_find_and_parse_vpnvx(argv
, argc
, &idx
, &afi
)) {
4863 return generic_set_delete(
4864 vty
, VTY_GET_CONTEXT(route_map_index
),
4865 "ipv4 vpn next-hop", arg
);
4867 return generic_set_delete(
4868 vty
, VTY_GET_CONTEXT(route_map_index
),
4869 "ipv6 vpn next-hop", argv
[idx_ip
]->arg
);
4873 #endif /* KEEP_OLD_VPN_COMMANDS */
4875 DEFUN (set_ipx_vpn_nexthop
,
4876 set_ipx_vpn_nexthop_cmd
,
4877 "set <ipv4|ipv6> vpn next-hop <A.B.C.D|X:X::X:X>",
4879 "IPv4 information\n"
4880 "IPv6 information\n"
4882 "VPN next-hop address\n"
4883 "IP address of next hop\n"
4884 "IPv6 address of next hop\n")
4890 if (argv_find_and_parse_afi(argv
, argc
, &idx
, &afi
)) {
4892 return generic_set_add(
4893 vty
, VTY_GET_CONTEXT(route_map_index
),
4894 "ipv4 vpn next-hop", argv
[idx_ip
]->arg
);
4896 return generic_set_add(
4897 vty
, VTY_GET_CONTEXT(route_map_index
),
4898 "ipv6 vpn next-hop", argv
[idx_ip
]->arg
);
4903 DEFUN (no_set_ipx_vpn_nexthop
,
4904 no_set_ipx_vpn_nexthop_cmd
,
4905 "no set <ipv4|ipv6> vpn next-hop [<A.B.C.D|X:X::X:X>]",
4908 "IPv4 information\n"
4909 "IPv6 information\n"
4911 "VPN next-hop address\n"
4912 "IP address of next hop\n"
4913 "IPv6 address of next hop\n")
4923 arg
= argv
[idx_ip
]->arg
;
4924 if (argv_find_and_parse_afi(argv
, argc
, &idx
, &afi
)) {
4926 return generic_set_delete(
4927 vty
, VTY_GET_CONTEXT(route_map_index
),
4928 "ipv4 vpn next-hop", arg
);
4930 return generic_set_delete(
4931 vty
, VTY_GET_CONTEXT(route_map_index
),
4932 "ipv6 vpn next-hop", arg
);
4937 DEFUN (set_originator_id
,
4938 set_originator_id_cmd
,
4939 "set originator-id A.B.C.D",
4941 "BGP originator ID attribute\n"
4942 "IP address of originator\n")
4945 return generic_set_add(vty
, VTY_GET_CONTEXT(route_map_index
),
4946 "originator-id", argv
[idx_ipv4
]->arg
);
4950 DEFUN (no_set_originator_id
,
4951 no_set_originator_id_cmd
,
4952 "no set originator-id [A.B.C.D]",
4955 "BGP originator ID attribute\n"
4956 "IP address of originator\n")
4960 argv_find(argv
, argc
, "A.B.C.D", &idx
) ? argv
[idx
]->arg
: NULL
;
4962 return generic_set_delete(vty
, VTY_GET_CONTEXT(route_map_index
),
4963 "originator-id", arg
);
4967 /* Initialization of route map. */
4968 void bgp_route_map_init(void)
4972 route_map_add_hook(bgp_route_map_add
);
4973 route_map_delete_hook(bgp_route_map_delete
);
4974 route_map_event_hook(bgp_route_map_event
);
4976 route_map_match_interface_hook(generic_match_add
);
4977 route_map_no_match_interface_hook(generic_match_delete
);
4979 route_map_match_ip_address_hook(generic_match_add
);
4980 route_map_no_match_ip_address_hook(generic_match_delete
);
4982 route_map_match_ip_address_prefix_list_hook(generic_match_add
);
4983 route_map_no_match_ip_address_prefix_list_hook(generic_match_delete
);
4985 route_map_match_ip_next_hop_hook(generic_match_add
);
4986 route_map_no_match_ip_next_hop_hook(generic_match_delete
);
4988 route_map_match_ip_next_hop_prefix_list_hook(generic_match_add
);
4989 route_map_no_match_ip_next_hop_prefix_list_hook(generic_match_delete
);
4991 route_map_match_ip_next_hop_type_hook(generic_match_add
);
4992 route_map_no_match_ip_next_hop_type_hook(generic_match_delete
);
4994 route_map_match_ipv6_address_hook(generic_match_add
);
4995 route_map_no_match_ipv6_address_hook(generic_match_delete
);
4997 route_map_match_ipv6_address_prefix_list_hook(generic_match_add
);
4998 route_map_no_match_ipv6_address_prefix_list_hook(generic_match_delete
);
5000 route_map_match_ipv6_next_hop_type_hook(generic_match_add
);
5001 route_map_no_match_ipv6_next_hop_type_hook(generic_match_delete
);
5003 route_map_match_metric_hook(generic_match_add
);
5004 route_map_no_match_metric_hook(generic_match_delete
);
5006 route_map_match_tag_hook(generic_match_add
);
5007 route_map_no_match_tag_hook(generic_match_delete
);
5009 route_map_set_ip_nexthop_hook(generic_set_add
);
5010 route_map_no_set_ip_nexthop_hook(generic_set_delete
);
5012 route_map_set_ipv6_nexthop_local_hook(generic_set_add
);
5013 route_map_no_set_ipv6_nexthop_local_hook(generic_set_delete
);
5015 route_map_set_metric_hook(generic_set_add
);
5016 route_map_no_set_metric_hook(generic_set_delete
);
5018 route_map_set_tag_hook(generic_set_add
);
5019 route_map_no_set_tag_hook(generic_set_delete
);
5021 route_map_install_match(&route_match_peer_cmd
);
5022 route_map_install_match(&route_match_local_pref_cmd
);
5023 #if defined(HAVE_LUA)
5024 route_map_install_match(&route_match_command_cmd
);
5026 route_map_install_match(&route_match_ip_address_cmd
);
5027 route_map_install_match(&route_match_ip_next_hop_cmd
);
5028 route_map_install_match(&route_match_ip_route_source_cmd
);
5029 route_map_install_match(&route_match_ip_address_prefix_list_cmd
);
5030 route_map_install_match(&route_match_ip_next_hop_prefix_list_cmd
);
5031 route_map_install_match(&route_match_ip_next_hop_type_cmd
);
5032 route_map_install_match(&route_match_ip_route_source_prefix_list_cmd
);
5033 route_map_install_match(&route_match_aspath_cmd
);
5034 route_map_install_match(&route_match_community_cmd
);
5035 route_map_install_match(&route_match_lcommunity_cmd
);
5036 route_map_install_match(&route_match_ecommunity_cmd
);
5037 route_map_install_match(&route_match_local_pref_cmd
);
5038 route_map_install_match(&route_match_metric_cmd
);
5039 route_map_install_match(&route_match_origin_cmd
);
5040 route_map_install_match(&route_match_probability_cmd
);
5041 route_map_install_match(&route_match_interface_cmd
);
5042 route_map_install_match(&route_match_tag_cmd
);
5043 route_map_install_match(&route_match_mac_address_cmd
);
5044 route_map_install_match(&route_match_evpn_vni_cmd
);
5045 route_map_install_match(&route_match_evpn_route_type_cmd
);
5046 route_map_install_match(&route_match_evpn_default_route_cmd
);
5047 route_map_install_match(&route_match_vrl_source_vrf_cmd
);
5049 route_map_install_set(&route_set_ip_nexthop_cmd
);
5050 route_map_install_set(&route_set_local_pref_cmd
);
5051 route_map_install_set(&route_set_weight_cmd
);
5052 route_map_install_set(&route_set_label_index_cmd
);
5053 route_map_install_set(&route_set_metric_cmd
);
5054 route_map_install_set(&route_set_aspath_prepend_cmd
);
5055 route_map_install_set(&route_set_aspath_exclude_cmd
);
5056 route_map_install_set(&route_set_origin_cmd
);
5057 route_map_install_set(&route_set_atomic_aggregate_cmd
);
5058 route_map_install_set(&route_set_aggregator_as_cmd
);
5059 route_map_install_set(&route_set_community_cmd
);
5060 route_map_install_set(&route_set_community_delete_cmd
);
5061 route_map_install_set(&route_set_lcommunity_cmd
);
5062 route_map_install_set(&route_set_lcommunity_delete_cmd
);
5063 route_map_install_set(&route_set_vpnv4_nexthop_cmd
);
5064 route_map_install_set(&route_set_vpnv6_nexthop_cmd
);
5065 route_map_install_set(&route_set_originator_id_cmd
);
5066 route_map_install_set(&route_set_ecommunity_rt_cmd
);
5067 route_map_install_set(&route_set_ecommunity_soo_cmd
);
5068 route_map_install_set(&route_set_tag_cmd
);
5069 route_map_install_set(&route_set_label_index_cmd
);
5071 install_element(RMAP_NODE
, &match_peer_cmd
);
5072 install_element(RMAP_NODE
, &match_peer_local_cmd
);
5073 install_element(RMAP_NODE
, &no_match_peer_cmd
);
5074 install_element(RMAP_NODE
, &match_ip_route_source_cmd
);
5075 install_element(RMAP_NODE
, &no_match_ip_route_source_cmd
);
5076 install_element(RMAP_NODE
, &match_ip_route_source_prefix_list_cmd
);
5077 install_element(RMAP_NODE
, &no_match_ip_route_source_prefix_list_cmd
);
5078 install_element(RMAP_NODE
, &match_mac_address_cmd
);
5079 install_element(RMAP_NODE
, &no_match_mac_address_cmd
);
5080 install_element(RMAP_NODE
, &match_evpn_vni_cmd
);
5081 install_element(RMAP_NODE
, &no_match_evpn_vni_cmd
);
5082 install_element(RMAP_NODE
, &match_evpn_route_type_cmd
);
5083 install_element(RMAP_NODE
, &no_match_evpn_route_type_cmd
);
5084 install_element(RMAP_NODE
, &match_evpn_default_route_cmd
);
5085 install_element(RMAP_NODE
, &no_match_evpn_default_route_cmd
);
5086 install_element(RMAP_NODE
, &match_vrl_source_vrf_cmd
);
5087 install_element(RMAP_NODE
, &no_match_vrl_source_vrf_cmd
);
5089 install_element(RMAP_NODE
, &match_aspath_cmd
);
5090 install_element(RMAP_NODE
, &no_match_aspath_cmd
);
5091 install_element(RMAP_NODE
, &match_local_pref_cmd
);
5092 install_element(RMAP_NODE
, &no_match_local_pref_cmd
);
5093 install_element(RMAP_NODE
, &match_community_cmd
);
5094 install_element(RMAP_NODE
, &no_match_community_cmd
);
5095 install_element(RMAP_NODE
, &match_lcommunity_cmd
);
5096 install_element(RMAP_NODE
, &no_match_lcommunity_cmd
);
5097 install_element(RMAP_NODE
, &match_ecommunity_cmd
);
5098 install_element(RMAP_NODE
, &no_match_ecommunity_cmd
);
5099 install_element(RMAP_NODE
, &match_origin_cmd
);
5100 install_element(RMAP_NODE
, &no_match_origin_cmd
);
5101 install_element(RMAP_NODE
, &match_probability_cmd
);
5102 install_element(RMAP_NODE
, &no_match_probability_cmd
);
5104 install_element(RMAP_NODE
, &set_ip_nexthop_peer_cmd
);
5105 install_element(RMAP_NODE
, &set_ip_nexthop_unchanged_cmd
);
5106 install_element(RMAP_NODE
, &set_local_pref_cmd
);
5107 install_element(RMAP_NODE
, &no_set_local_pref_cmd
);
5108 install_element(RMAP_NODE
, &set_weight_cmd
);
5109 install_element(RMAP_NODE
, &set_label_index_cmd
);
5110 install_element(RMAP_NODE
, &no_set_weight_cmd
);
5111 install_element(RMAP_NODE
, &no_set_label_index_cmd
);
5112 install_element(RMAP_NODE
, &set_aspath_prepend_asn_cmd
);
5113 install_element(RMAP_NODE
, &set_aspath_prepend_lastas_cmd
);
5114 install_element(RMAP_NODE
, &set_aspath_exclude_cmd
);
5115 install_element(RMAP_NODE
, &no_set_aspath_prepend_cmd
);
5116 install_element(RMAP_NODE
, &no_set_aspath_exclude_cmd
);
5117 install_element(RMAP_NODE
, &no_set_aspath_exclude_all_cmd
);
5118 install_element(RMAP_NODE
, &set_origin_cmd
);
5119 install_element(RMAP_NODE
, &no_set_origin_cmd
);
5120 install_element(RMAP_NODE
, &set_atomic_aggregate_cmd
);
5121 install_element(RMAP_NODE
, &no_set_atomic_aggregate_cmd
);
5122 install_element(RMAP_NODE
, &set_aggregator_as_cmd
);
5123 install_element(RMAP_NODE
, &no_set_aggregator_as_cmd
);
5124 install_element(RMAP_NODE
, &set_community_cmd
);
5125 install_element(RMAP_NODE
, &set_community_none_cmd
);
5126 install_element(RMAP_NODE
, &no_set_community_cmd
);
5127 install_element(RMAP_NODE
, &no_set_community_short_cmd
);
5128 install_element(RMAP_NODE
, &set_community_delete_cmd
);
5129 install_element(RMAP_NODE
, &no_set_community_delete_cmd
);
5130 install_element(RMAP_NODE
, &set_lcommunity_cmd
);
5131 install_element(RMAP_NODE
, &set_lcommunity_none_cmd
);
5132 install_element(RMAP_NODE
, &no_set_lcommunity_cmd
);
5133 install_element(RMAP_NODE
, &no_set_lcommunity1_cmd
);
5134 install_element(RMAP_NODE
, &no_set_lcommunity1_short_cmd
);
5135 install_element(RMAP_NODE
, &set_lcommunity_delete_cmd
);
5136 install_element(RMAP_NODE
, &no_set_lcommunity_delete_cmd
);
5137 install_element(RMAP_NODE
, &no_set_lcommunity_delete_short_cmd
);
5138 install_element(RMAP_NODE
, &set_ecommunity_rt_cmd
);
5139 install_element(RMAP_NODE
, &no_set_ecommunity_rt_cmd
);
5140 install_element(RMAP_NODE
, &no_set_ecommunity_rt_short_cmd
);
5141 install_element(RMAP_NODE
, &set_ecommunity_soo_cmd
);
5142 install_element(RMAP_NODE
, &no_set_ecommunity_soo_cmd
);
5143 install_element(RMAP_NODE
, &no_set_ecommunity_soo_short_cmd
);
5144 #ifdef KEEP_OLD_VPN_COMMANDS
5145 install_element(RMAP_NODE
, &set_vpn_nexthop_cmd
);
5146 install_element(RMAP_NODE
, &no_set_vpn_nexthop_cmd
);
5147 #endif /* KEEP_OLD_VPN_COMMANDS */
5148 install_element(RMAP_NODE
, &set_ipx_vpn_nexthop_cmd
);
5149 install_element(RMAP_NODE
, &no_set_ipx_vpn_nexthop_cmd
);
5150 install_element(RMAP_NODE
, &set_originator_id_cmd
);
5151 install_element(RMAP_NODE
, &no_set_originator_id_cmd
);
5153 route_map_install_match(&route_match_ipv6_address_cmd
);
5154 route_map_install_match(&route_match_ipv6_next_hop_cmd
);
5155 route_map_install_match(&route_match_ipv6_address_prefix_list_cmd
);
5156 route_map_install_match(&route_match_ipv6_next_hop_type_cmd
);
5157 route_map_install_set(&route_set_ipv6_nexthop_global_cmd
);
5158 route_map_install_set(&route_set_ipv6_nexthop_prefer_global_cmd
);
5159 route_map_install_set(&route_set_ipv6_nexthop_local_cmd
);
5160 route_map_install_set(&route_set_ipv6_nexthop_peer_cmd
);
5162 install_element(RMAP_NODE
, &match_ipv6_next_hop_cmd
);
5163 install_element(RMAP_NODE
, &no_match_ipv6_next_hop_cmd
);
5164 install_element(RMAP_NODE
, &set_ipv6_nexthop_global_cmd
);
5165 install_element(RMAP_NODE
, &no_set_ipv6_nexthop_global_cmd
);
5166 install_element(RMAP_NODE
, &set_ipv6_nexthop_prefer_global_cmd
);
5167 install_element(RMAP_NODE
, &no_set_ipv6_nexthop_prefer_global_cmd
);
5168 install_element(RMAP_NODE
, &set_ipv6_nexthop_peer_cmd
);
5169 install_element(RMAP_NODE
, &no_set_ipv6_nexthop_peer_cmd
);
5170 #if defined(HAVE_LUA)
5171 install_element(RMAP_NODE
, &match_command_cmd
);
5172 install_element(RMAP_NODE
, &no_match_command_cmd
);
5176 void bgp_route_map_terminate(void)
5178 /* ToDo: Cleanup all the used memory */