]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_routemap.c
Merge pull request #4733 from opensourcerouting/route-map-yang
[mirror_frr.git] / bgpd / bgp_routemap.c
1 /* Route map function of bgpd.
2 * Copyright (C) 1998, 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "prefix.h"
24 #include "filter.h"
25 #include "routemap.h"
26 #include "command.h"
27 #include "linklist.h"
28 #include "plist.h"
29 #include "memory.h"
30 #include "log.h"
31 #include "frrlua.h"
32 #ifdef HAVE_LIBPCREPOSIX
33 #include <pcreposix.h>
34 #else
35 #include <regex.h>
36 #endif /* HAVE_LIBPCREPOSIX */
37 #include "buffer.h"
38 #include "sockunion.h"
39 #include "hash.h"
40 #include "queue.h"
41 #include "frrstr.h"
42
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"
66
67 #if ENABLE_BGP_VNC
68 #include "bgpd/rfapi/bgp_rfapi_cfg.h"
69 #endif
70
71 #ifndef VTYSH_EXTRACT_PL
72 #include "bgpd/bgp_routemap_clippy.c"
73 #endif
74
75 /* Memo of route-map commands.
76
77 o Cisco route-map
78
79 match as-path : Done
80 community : Done
81 interface : Done
82 ip address : Done
83 ip next-hop : Done
84 ip route-source : Done
85 ip prefix-list : Done
86 ipv6 address : Done
87 ipv6 next-hop : 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)
91 metric : Done
92 route-type : (This will not be implemented by bgpd)
93 tag : Done
94 local-preference : Done
95
96 set as-path prepend : Done
97 as-path tag : Not yet
98 automatic-tag : (This will not be implemented by bgpd)
99 community : Done
100 large-community : Done
101 large-comm-list : Done
102 comm-list : Not yet
103 dampning : Not yet
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)
107 ip next-hop : Done
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
112 metric : Done
113 metric-type : Not yet
114 origin : Done
115 tag : Done
116 weight : Done
117
118 o Local extensions
119
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
124
125 */
126
127 /* generic value manipulation to be shared in multiple rules */
128
129 #define RMAP_VALUE_SET 0
130 #define RMAP_VALUE_ADD 1
131 #define RMAP_VALUE_SUB 2
132
133 struct rmap_value {
134 uint8_t action;
135 uint8_t variable;
136 uint32_t value;
137 };
138
139 static int route_value_match(struct rmap_value *rv, uint32_t value)
140 {
141 if (rv->variable == 0 && value == rv->value)
142 return RMAP_MATCH;
143
144 return RMAP_NOMATCH;
145 }
146
147 static uint32_t route_value_adjust(struct rmap_value *rv, uint32_t current,
148 struct peer *peer)
149 {
150 uint32_t value;
151
152 switch (rv->variable) {
153 case 1:
154 value = peer->rtt;
155 break;
156 default:
157 value = rv->value;
158 break;
159 }
160
161 switch (rv->action) {
162 case RMAP_VALUE_ADD:
163 if (current > UINT32_MAX - value)
164 return UINT32_MAX;
165 return current + value;
166 case RMAP_VALUE_SUB:
167 if (current <= value)
168 return 0;
169 return current - value;
170 default:
171 return value;
172 }
173 }
174
175 static void *route_value_compile(const char *arg)
176 {
177 uint8_t action = RMAP_VALUE_SET, var = 0;
178 unsigned long larg = 0;
179 char *endptr = NULL;
180 struct rmap_value *rv;
181
182 if (arg[0] == '+') {
183 action = RMAP_VALUE_ADD;
184 arg++;
185 } else if (arg[0] == '-') {
186 action = RMAP_VALUE_SUB;
187 arg++;
188 }
189
190 if (all_digit(arg)) {
191 errno = 0;
192 larg = strtoul(arg, &endptr, 10);
193 if (*arg == 0 || *endptr != 0 || errno || larg > UINT32_MAX)
194 return NULL;
195 } else {
196 if (strcmp(arg, "rtt") == 0)
197 var = 1;
198 else
199 return NULL;
200 }
201
202 rv = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_value));
203
204 rv->action = action;
205 rv->variable = var;
206 rv->value = larg;
207 return rv;
208 }
209
210 static void route_value_free(void *rule)
211 {
212 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
213 }
214
215 /* generic as path object to be shared in multiple rules */
216
217 static void *route_aspath_compile(const char *arg)
218 {
219 struct aspath *aspath;
220
221 aspath = aspath_str2aspath(arg);
222 if (!aspath)
223 return NULL;
224 return aspath;
225 }
226
227 static void route_aspath_free(void *rule)
228 {
229 struct aspath *aspath = rule;
230 aspath_free(aspath);
231 }
232
233 struct bgp_match_peer_compiled {
234 char *interface;
235 union sockunion su;
236 };
237
238 /* 'match peer (A.B.C.D|X:X::X:X|WORD)' */
239
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)
246 {
247 struct bgp_match_peer_compiled *pc;
248 union sockunion *su;
249 union sockunion su_def = {
250 .sin = {.sin_family = AF_INET, .sin_addr.s_addr = INADDR_ANY}};
251 struct peer_group *group;
252 struct peer *peer;
253 struct listnode *node, *nnode;
254
255 if (type == RMAP_BGP) {
256 pc = rule;
257 su = &pc->su;
258 peer = ((struct bgp_path_info *)object)->peer;
259
260 if (pc->interface) {
261 if (!peer->conf_if)
262 return RMAP_NOMATCH;
263
264 if (strcmp(peer->conf_if, pc->interface) == 0)
265 return RMAP_MATCH;
266
267 return RMAP_NOMATCH;
268 }
269
270 /* If su='0.0.0.0' (command 'match peer local'), and it's a
271 NETWORK,
272 REDISTRIBUTE or DEFAULT_GENERATED route => return RMAP_MATCH
273 */
274 if (sockunion_same(su, &su_def)) {
275 int ret;
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))
281 ret = RMAP_MATCH;
282 else
283 ret = RMAP_NOMATCH;
284 return ret;
285 }
286
287 if (!CHECK_FLAG(peer->sflags, PEER_STATUS_GROUP)) {
288 if (sockunion_same(su, &peer->su))
289 return RMAP_MATCH;
290
291 return RMAP_NOMATCH;
292 } else {
293 group = peer->group;
294 for (ALL_LIST_ELEMENTS(group->peer, node, nnode,
295 peer)) {
296 if (sockunion_same(su, &peer->su))
297 return RMAP_MATCH;
298 }
299 return RMAP_NOMATCH;
300 }
301 }
302 return RMAP_NOMATCH;
303 }
304
305 static void *route_match_peer_compile(const char *arg)
306 {
307 struct bgp_match_peer_compiled *pc;
308 int ret;
309
310 pc = XCALLOC(MTYPE_ROUTE_MAP_COMPILED,
311 sizeof(struct bgp_match_peer_compiled));
312
313 ret = str2sockunion(strcmp(arg, "local") ? arg : "0.0.0.0", &pc->su);
314 if (ret < 0) {
315 pc->interface = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
316 return pc;
317 }
318
319 return pc;
320 }
321
322 /* Free route map's compiled `ip address' value. */
323 static void route_match_peer_free(void *rule)
324 {
325 struct bgp_match_peer_compiled *pc = rule;
326
327 XFREE(MTYPE_ROUTE_MAP_COMPILED, pc->interface);
328
329 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
330 }
331
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};
336
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)
341 {
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");
348
349 if (L == NULL)
350 return status;
351
352 /*
353 * Setup the prefix information to pass in
354 */
355 lua_setup_prefix_table(L, prefix);
356
357 zlog_debug("Set up prefix table");
358 /*
359 * Setup the bgp_path_info information
360 */
361 lua_newtable(L);
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");
372
373 zlog_debug("Set up nexthop information");
374 /*
375 * Run the rule
376 */
377 lrm_status = lua_run_rm_rule(L, rule);
378 switch (lrm_status) {
379 case LUA_RM_FAILURE:
380 zlog_debug("RM_FAILURE");
381 break;
382 case LUA_RM_NOMATCH:
383 zlog_debug("RM_NOMATCH");
384 break;
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");
389 /*
390 * This needs to be abstraced with the set function
391 */
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;
398 }
399 status = RMAP_MATCH;
400 break;
401 case LUA_RM_MATCH:
402 zlog_debug("MATCH ONLY");
403 status = RMAP_MATCH;
404 break;
405 }
406 lua_close(L);
407 return status;
408 }
409
410 static void *route_match_command_compile(const char *arg)
411 {
412 char *command;
413
414 command = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
415 return command;
416 }
417
418 static void
419 route_match_command_free(void *rule)
420 {
421 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
422 }
423
424 struct route_map_rule_cmd route_match_command_cmd = {
425 "command",
426 route_match_command,
427 route_match_command_compile,
428 route_match_command_free
429 };
430 #endif
431
432 /* `match ip address IP_ACCESS_LIST' */
433
434 /* Match function should return 1 if match is success else return
435 zero. */
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)
439 {
440 struct access_list *alist;
441
442 if (type == RMAP_BGP && prefix->family == AF_INET) {
443 alist = access_list_lookup(AFI_IP, (char *)rule);
444 if (alist == NULL)
445 return RMAP_NOMATCH;
446
447 return (access_list_apply(alist, prefix) == FILTER_DENY
448 ? RMAP_NOMATCH
449 : RMAP_MATCH);
450 }
451 return RMAP_NOMATCH;
452 }
453
454 /* Route map `ip address' match statement. `arg' should be
455 access-list name. */
456 static void *route_match_ip_address_compile(const char *arg)
457 {
458 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
459 }
460
461 /* Free route map's compiled `ip address' value. */
462 static void route_match_ip_address_free(void *rule)
463 {
464 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
465 }
466
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};
471
472 /* `match ip next-hop IP_ADDRESS' */
473
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)
478 {
479 struct access_list *alist;
480 struct bgp_path_info *path;
481 struct prefix_ipv4 p;
482
483 if (type == RMAP_BGP && prefix->family == AF_INET) {
484 path = object;
485 p.family = AF_INET;
486 p.prefix = path->attr->nexthop;
487 p.prefixlen = IPV4_MAX_BITLEN;
488
489 alist = access_list_lookup(AFI_IP, (char *)rule);
490 if (alist == NULL)
491 return RMAP_NOMATCH;
492
493 return (access_list_apply(alist, &p) == FILTER_DENY
494 ? RMAP_NOMATCH
495 : RMAP_MATCH);
496 }
497 return RMAP_NOMATCH;
498 }
499
500 /* Route map `ip next-hop' match statement. `arg' is
501 access-list name. */
502 static void *route_match_ip_next_hop_compile(const char *arg)
503 {
504 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
505 }
506
507 /* Free route map's compiled `ip address' value. */
508 static void route_match_ip_next_hop_free(void *rule)
509 {
510 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
511 }
512
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};
517
518 /* `match ip route-source ACCESS-LIST' */
519
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)
524 {
525 struct access_list *alist;
526 struct bgp_path_info *path;
527 struct peer *peer;
528 struct prefix_ipv4 p;
529
530 if (type == RMAP_BGP && pfx->family == AF_INET) {
531 path = object;
532 peer = path->peer;
533
534 if (!peer || sockunion_family(&peer->su) != AF_INET)
535 return RMAP_NOMATCH;
536
537 p.family = AF_INET;
538 p.prefix = peer->su.sin.sin_addr;
539 p.prefixlen = IPV4_MAX_BITLEN;
540
541 alist = access_list_lookup(AFI_IP, (char *)rule);
542 if (alist == NULL)
543 return RMAP_NOMATCH;
544
545 return (access_list_apply(alist, &p) == FILTER_DENY
546 ? RMAP_NOMATCH
547 : RMAP_MATCH);
548 }
549 return RMAP_NOMATCH;
550 }
551
552 /* Route map `ip route-source' match statement. `arg' is
553 access-list name. */
554 static void *route_match_ip_route_source_compile(const char *arg)
555 {
556 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
557 }
558
559 /* Free route map's compiled `ip address' value. */
560 static void route_match_ip_route_source_free(void *rule)
561 {
562 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
563 }
564
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};
569
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)
573 {
574 int ret;
575 struct bgp_pbr_entry_main api;
576
577 memset(&api, 0, sizeof(api));
578
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);
583 if (ret < 0)
584 return RMAP_NOMATCH;
585 if (api.match_bitmask & PREFIX_DST_PRESENT ||
586 api.match_bitmask_iprule & PREFIX_DST_PRESENT) {
587 if (family2afi((&api.dst_prefix)->family) != afi)
588 return RMAP_NOMATCH;
589 return prefix_list_apply(plist, &api.dst_prefix) == PREFIX_DENY
590 ? RMAP_NOMATCH
591 : RMAP_MATCH;
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)
595 return RMAP_NOMATCH;
596 return (prefix_list_apply(plist, &api.src_prefix) == PREFIX_DENY
597 ? RMAP_NOMATCH
598 : RMAP_MATCH);
599 }
600 return RMAP_NOMATCH;
601 }
602
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)
607 {
608 struct prefix_list *plist;
609
610 if (type != RMAP_BGP)
611 return RMAP_NOMATCH;
612
613 plist = prefix_list_lookup(afi, (char *)rule);
614 if (plist == NULL)
615 return RMAP_NOMATCH;
616
617 if (prefix->family == AF_FLOWSPEC)
618 return route_match_prefix_list_flowspec(afi, plist,
619 prefix);
620 return (prefix_list_apply(plist, prefix) == PREFIX_DENY ? RMAP_NOMATCH
621 : RMAP_MATCH);
622 }
623
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)
627 {
628 return route_match_address_prefix_list(rule, AFI_IP, prefix, type,
629 object);
630 }
631
632 static void *route_match_ip_address_prefix_list_compile(const char *arg)
633 {
634 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
635 }
636
637 static void route_match_ip_address_prefix_list_free(void *rule)
638 {
639 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
640 }
641
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};
646
647 /* `match ip next-hop prefix-list PREFIX_LIST' */
648
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)
652 {
653 struct prefix_list *plist;
654 struct bgp_path_info *path;
655 struct prefix_ipv4 p;
656
657 if (type == RMAP_BGP && prefix->family == AF_INET) {
658 path = object;
659 p.family = AF_INET;
660 p.prefix = path->attr->nexthop;
661 p.prefixlen = IPV4_MAX_BITLEN;
662
663 plist = prefix_list_lookup(AFI_IP, (char *)rule);
664 if (plist == NULL)
665 return RMAP_NOMATCH;
666
667 return (prefix_list_apply(plist, &p) == PREFIX_DENY
668 ? RMAP_NOMATCH
669 : RMAP_MATCH);
670 }
671 return RMAP_NOMATCH;
672 }
673
674 static void *route_match_ip_next_hop_prefix_list_compile(const char *arg)
675 {
676 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
677 }
678
679 static void route_match_ip_next_hop_prefix_list_free(void *rule)
680 {
681 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
682 }
683
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};
688
689 /* `match ip next-hop type <blackhole>' */
690
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)
694 {
695 struct bgp_path_info *path;
696
697 if (type == RMAP_BGP && prefix->family == AF_INET) {
698 path = (struct bgp_path_info *)object;
699 if (!path || !path->attr)
700 return RMAP_NOMATCH;
701
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)
708 return RMAP_MATCH;
709 }
710 return RMAP_NOMATCH;
711 }
712
713 static void *route_match_ip_next_hop_type_compile(const char *arg)
714 {
715 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
716 }
717
718 static void route_match_ip_next_hop_type_free(void *rule)
719 {
720 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
721 }
722
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};
727
728 /* `match ip route-source prefix-list PREFIX_LIST' */
729
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)
734 {
735 struct prefix_list *plist;
736 struct bgp_path_info *path;
737 struct peer *peer;
738 struct prefix_ipv4 p;
739
740 if (type == RMAP_BGP && prefix->family == AF_INET) {
741 path = object;
742 peer = path->peer;
743
744 if (!peer || sockunion_family(&peer->su) != AF_INET)
745 return RMAP_NOMATCH;
746
747 p.family = AF_INET;
748 p.prefix = peer->su.sin.sin_addr;
749 p.prefixlen = IPV4_MAX_BITLEN;
750
751 plist = prefix_list_lookup(AFI_IP, (char *)rule);
752 if (plist == NULL)
753 return RMAP_NOMATCH;
754
755 return (prefix_list_apply(plist, &p) == PREFIX_DENY
756 ? RMAP_NOMATCH
757 : RMAP_MATCH);
758 }
759 return RMAP_NOMATCH;
760 }
761
762 static void *route_match_ip_route_source_prefix_list_compile(const char *arg)
763 {
764 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
765 }
766
767 static void route_match_ip_route_source_prefix_list_free(void *rule)
768 {
769 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
770 }
771
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};
776
777 /* `match evpn default-route' */
778
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)
783 {
784 if (type == RMAP_BGP && is_evpn_prefix_default(p))
785 return RMAP_MATCH;
786
787 return RMAP_NOMATCH;
788 }
789
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};
793
794 /* `match mac address MAC_ACCESS_LIST' */
795
796 /* Match function should return 1 if match is success else return
797 zero. */
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)
801 {
802 struct access_list *alist;
803 struct prefix p;
804
805 if (type == RMAP_BGP) {
806 alist = access_list_lookup(AFI_L2VPN, (char *)rule);
807 if (alist == NULL)
808 return RMAP_NOMATCH;
809
810 if (prefix->u.prefix_evpn.route_type != BGP_EVPN_MAC_IP_ROUTE)
811 return RMAP_NOMATCH;
812
813 p.family = AF_ETHERNET;
814 p.prefixlen = ETH_ALEN * 8;
815 p.u.prefix_eth = prefix->u.prefix_evpn.macip_addr.mac;
816
817 return (access_list_apply(alist, &p) == FILTER_DENY
818 ? RMAP_NOMATCH
819 : RMAP_MATCH);
820 }
821
822 return RMAP_NOMATCH;
823 }
824
825 /* Route map `mac address' match statement. `arg' should be
826 access-list name. */
827 static void *route_match_mac_address_compile(const char *arg)
828 {
829 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
830 }
831
832 /* Free route map's compiled `ip address' value. */
833 static void route_match_mac_address_free(void *rule)
834 {
835 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
836 }
837
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};
842
843 /*
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.
848 */
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)
852 {
853 vni_t vni = 0;
854 unsigned int label_cnt = 0;
855 struct bgp_path_info *path = NULL;
856 struct prefix_evpn *evp = (struct prefix_evpn *) prefix;
857
858 if (type == RMAP_BGP) {
859 vni = *((vni_t *)rule);
860 path = (struct bgp_path_info *)object;
861
862 /*
863 * This rmap filter is valid for vxlan tunnel type only.
864 * For any other tunnel type, return noop to ignore
865 * this check.
866 */
867 if (path->attr && path->attr->encap_tunneltype !=
868 BGP_ENCAP_TYPE_VXLAN)
869 return RMAP_NOOP;
870
871 /*
872 * Apply filter to type 1, 2, 5 routes only.
873 * Other route types do not have vni label.
874 */
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))
878 return RMAP_NOOP;
879
880 if (path->extra == NULL)
881 return RMAP_NOMATCH;
882
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]))
886 return RMAP_MATCH;
887 }
888 }
889
890 return RMAP_NOMATCH;
891 }
892
893 /* Route map `vni' match statement. */
894 static void *route_match_vni_compile(const char *arg)
895 {
896 vni_t *vni = NULL;
897 char *end = NULL;
898
899 vni = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(vni_t));
900
901 *vni = strtoul(arg, &end, 10);
902 if (*end != '\0') {
903 XFREE(MTYPE_ROUTE_MAP_COMPILED, vni);
904 return NULL;
905 }
906
907 return vni;
908 }
909
910 /* Free route map's compiled `vni' value. */
911 static void route_match_vni_free(void *rule)
912 {
913 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
914 }
915
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};
920
921 /* `match evpn route-type' */
922
923 /* Match function should return 1 if match is success else return
924 zero. */
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)
928 {
929 uint8_t route_type = 0;
930
931 if (type == RMAP_BGP) {
932 route_type = *((uint8_t *)rule);
933
934 if (route_type == pfx->u.prefix_evpn.route_type)
935 return RMAP_MATCH;
936 }
937
938 return RMAP_NOMATCH;
939 }
940
941 /* Route map `route-type' match statement. */
942 static void *route_match_evpn_route_type_compile(const char *arg)
943 {
944 uint8_t *route_type = NULL;
945
946 route_type = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(uint8_t));
947
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;
952 else
953 *route_type = BGP_EVPN_IP_PREFIX_ROUTE;
954
955 return route_type;
956 }
957
958 /* Free route map's compiled `route-type' value. */
959 static void route_match_evpn_route_type_free(void *rule)
960 {
961 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
962 }
963
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};
968
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)
973 {
974 struct bgp_path_info *path;
975 char *vrf_name;
976
977 if (type == RMAP_BGP) {
978 vrf_name = rule;
979 path = (struct bgp_path_info *)object;
980
981 if (strncmp(vrf_name, "n/a", VRF_NAMSIZ) == 0)
982 return RMAP_NOMATCH;
983
984 if (path->extra == NULL)
985 return RMAP_NOMATCH;
986
987 if (strncmp(vrf_name, vrf_id_to_name(
988 path->extra->bgp_orig->vrf_id), VRF_NAMSIZ)
989 == 0)
990 return RMAP_MATCH;
991 }
992
993 return RMAP_NOMATCH;
994 }
995
996 static void *route_match_vrl_source_vrf_compile(const char *arg)
997 {
998 uint8_t *vrf_name = NULL;
999
1000 vrf_name = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
1001
1002 return vrf_name;
1003 }
1004
1005 /* Free route map's compiled `route-type' value. */
1006 static void route_match_vrl_source_vrf_free(void *rule)
1007 {
1008 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1009 }
1010
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};
1015
1016 /* `match local-preference LOCAL-PREF' */
1017
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)
1022 {
1023 uint32_t *local_pref;
1024 struct bgp_path_info *path;
1025
1026 if (type == RMAP_BGP) {
1027 local_pref = rule;
1028 path = object;
1029
1030 if (path->attr->local_pref == *local_pref)
1031 return RMAP_MATCH;
1032 else
1033 return RMAP_NOMATCH;
1034 }
1035 return RMAP_NOMATCH;
1036 }
1037
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)
1041 {
1042 uint32_t *local_pref;
1043 char *endptr = NULL;
1044 unsigned long tmpval;
1045
1046 /* Locpref value shoud be integer. */
1047 if (!all_digit(arg))
1048 return NULL;
1049
1050 errno = 0;
1051 tmpval = strtoul(arg, &endptr, 10);
1052 if (*endptr != '\0' || errno || tmpval > UINT32_MAX)
1053 return NULL;
1054
1055 local_pref = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(uint32_t));
1056
1057 *local_pref = tmpval;
1058 return local_pref;
1059 }
1060
1061 /* Free route map's compiled `match local-preference' value. */
1062 static void route_match_local_pref_free(void *rule)
1063 {
1064 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1065 }
1066
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};
1071
1072 /* `match metric METRIC' */
1073
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)
1078 {
1079 struct rmap_value *rv;
1080 struct bgp_path_info *path;
1081
1082 if (type == RMAP_BGP) {
1083 rv = rule;
1084 path = object;
1085 return route_value_match(rv, path->attr->med);
1086 }
1087 return RMAP_NOMATCH;
1088 }
1089
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,
1093 };
1094
1095 /* `match as-path ASPATH' */
1096
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)
1101 {
1102
1103 struct as_list *as_list;
1104 struct bgp_path_info *path;
1105
1106 if (type == RMAP_BGP) {
1107 as_list = as_list_lookup((char *)rule);
1108 if (as_list == NULL)
1109 return RMAP_NOMATCH;
1110
1111 path = object;
1112
1113 /* Perform match. */
1114 return ((as_list_apply(as_list, path->attr->aspath)
1115 == AS_FILTER_DENY)
1116 ? RMAP_NOMATCH
1117 : RMAP_MATCH);
1118 }
1119 return RMAP_NOMATCH;
1120 }
1121
1122 /* Compile function for as-path match. */
1123 static void *route_match_aspath_compile(const char *arg)
1124 {
1125 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
1126 }
1127
1128 /* Compile function for as-path match. */
1129 static void route_match_aspath_free(void *rule)
1130 {
1131 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1132 }
1133
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};
1138
1139 /* `match community COMMUNIY' */
1140 struct rmap_community {
1141 char *name;
1142 uint32_t name_hash;
1143 int exact;
1144 };
1145
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)
1150 {
1151 struct community_list *list;
1152 struct bgp_path_info *path;
1153 struct rmap_community *rcom = rule;
1154
1155 if (type == RMAP_BGP) {
1156 path = object;
1157 rcom = rule;
1158
1159 list = community_list_lookup(bgp_clist, rcom->name,
1160 rcom->name_hash,
1161 COMMUNITY_LIST_MASTER);
1162 if (!list)
1163 return RMAP_NOMATCH;
1164
1165 if (rcom->exact) {
1166 if (community_list_exact_match(path->attr->community,
1167 list))
1168 return RMAP_MATCH;
1169 } else {
1170 if (community_list_match(path->attr->community, list))
1171 return RMAP_MATCH;
1172 }
1173 }
1174 return RMAP_NOMATCH;
1175 }
1176
1177 /* Compile function for community match. */
1178 static void *route_match_community_compile(const char *arg)
1179 {
1180 struct rmap_community *rcom;
1181 int len;
1182 char *p;
1183
1184 rcom = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_community));
1185
1186 p = strchr(arg, ' ');
1187 if (p) {
1188 len = p - arg;
1189 rcom->name = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, len + 1);
1190 memcpy(rcom->name, arg, len);
1191 rcom->exact = 1;
1192 } else {
1193 rcom->name = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
1194 rcom->exact = 0;
1195 }
1196
1197 rcom->name_hash = bgp_clist_hash_key(rcom->name);
1198 return rcom;
1199 }
1200
1201 /* Compile function for community match. */
1202 static void route_match_community_free(void *rule)
1203 {
1204 struct rmap_community *rcom = rule;
1205
1206 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom->name);
1207 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom);
1208 }
1209
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};
1214
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)
1219 {
1220 struct community_list *list;
1221 struct bgp_path_info *path;
1222 struct rmap_community *rcom = rule;
1223
1224 if (type == RMAP_BGP) {
1225 path = object;
1226
1227 list = community_list_lookup(bgp_clist, rcom->name,
1228 rcom->name_hash,
1229 LARGE_COMMUNITY_LIST_MASTER);
1230 if (!list)
1231 return RMAP_NOMATCH;
1232
1233 if (rcom->exact) {
1234 if (lcommunity_list_exact_match(
1235 path->attr->lcommunity,
1236 list))
1237 return RMAP_MATCH;
1238 } else {
1239 if (lcommunity_list_match(
1240 path->attr->lcommunity,
1241 list))
1242 return RMAP_MATCH;
1243 }
1244 }
1245 return RMAP_NOMATCH;
1246 }
1247
1248 /* Compile function for community match. */
1249 static void *route_match_lcommunity_compile(const char *arg)
1250 {
1251 struct rmap_community *rcom;
1252 int len;
1253 char *p;
1254
1255 rcom = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_community));
1256
1257 p = strchr(arg, ' ');
1258 if (p) {
1259 len = p - arg;
1260 rcom->name = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, len + 1);
1261 memcpy(rcom->name, arg, len);
1262 rcom->exact = 1;
1263 } else {
1264 rcom->name = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
1265 rcom->exact = 0;
1266 }
1267
1268 rcom->name_hash = bgp_clist_hash_key(rcom->name);
1269 return rcom;
1270 }
1271
1272 /* Compile function for community match. */
1273 static void route_match_lcommunity_free(void *rule)
1274 {
1275 struct rmap_community *rcom = rule;
1276
1277 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom->name);
1278 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom);
1279 }
1280
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};
1285
1286
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)
1291 {
1292 struct community_list *list;
1293 struct bgp_path_info *path;
1294 struct rmap_community *rcom = rule;
1295
1296 if (type == RMAP_BGP) {
1297 path = object;
1298
1299 list = community_list_lookup(bgp_clist, rcom->name,
1300 rcom->name_hash,
1301 EXTCOMMUNITY_LIST_MASTER);
1302 if (!list)
1303 return RMAP_NOMATCH;
1304
1305 if (ecommunity_list_match(path->attr->ecommunity, list))
1306 return RMAP_MATCH;
1307 }
1308 return RMAP_NOMATCH;
1309 }
1310
1311 /* Compile function for extcommunity match. */
1312 static void *route_match_ecommunity_compile(const char *arg)
1313 {
1314 struct rmap_community *rcom;
1315
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);
1319
1320 return rcom;
1321 }
1322
1323 /* Compile function for extcommunity match. */
1324 static void route_match_ecommunity_free(void *rule)
1325 {
1326 struct rmap_community *rcom = rule;
1327
1328 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom->name);
1329 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom);
1330 }
1331
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};
1336
1337 /* `match nlri` and `set nlri` are replaced by `address-family ipv4`
1338 and `address-family vpnv4'. */
1339
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)
1344 {
1345 uint8_t *origin;
1346 struct bgp_path_info *path;
1347
1348 if (type == RMAP_BGP) {
1349 origin = rule;
1350 path = object;
1351
1352 if (path->attr->origin == *origin)
1353 return RMAP_MATCH;
1354 }
1355
1356 return RMAP_NOMATCH;
1357 }
1358
1359 static void *route_match_origin_compile(const char *arg)
1360 {
1361 uint8_t *origin;
1362
1363 origin = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(uint8_t));
1364
1365 if (strcmp(arg, "igp") == 0)
1366 *origin = 0;
1367 else if (strcmp(arg, "egp") == 0)
1368 *origin = 1;
1369 else
1370 *origin = 2;
1371
1372 return origin;
1373 }
1374
1375 /* Free route map's compiled `ip address' value. */
1376 static void route_match_origin_free(void *rule)
1377 {
1378 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1379 }
1380
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};
1385
1386 /* match probability { */
1387
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)
1391 {
1392 long r = random();
1393
1394 switch (*(long *)rule) {
1395 case 0:
1396 break;
1397 case RAND_MAX:
1398 return RMAP_MATCH;
1399 default:
1400 if (r < *(long *)rule) {
1401 return RMAP_MATCH;
1402 }
1403 }
1404
1405 return RMAP_NOMATCH;
1406 }
1407
1408 static void *route_match_probability_compile(const char *arg)
1409 {
1410 long *lobule;
1411 unsigned perc;
1412
1413 perc = atoi(arg);
1414 lobule = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(long));
1415
1416 switch (perc) {
1417 case 0:
1418 *lobule = 0;
1419 break;
1420 case 100:
1421 *lobule = RAND_MAX;
1422 break;
1423 default:
1424 *lobule = RAND_MAX / 100 * perc;
1425 }
1426
1427 return lobule;
1428 }
1429
1430 static void route_match_probability_free(void *rule)
1431 {
1432 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1433 }
1434
1435 struct route_map_rule_cmd route_match_probability_cmd = {
1436 "probability", route_match_probability, route_match_probability_compile,
1437 route_match_probability_free};
1438
1439 /* `match interface IFNAME' */
1440 /* Match function should return 1 if match is success else return
1441 zero. */
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)
1445 {
1446 struct interface *ifp;
1447 struct bgp_path_info *path;
1448
1449 if (type == RMAP_BGP) {
1450 path = object;
1451
1452 if (!path || !path->attr)
1453 return RMAP_NOMATCH;
1454
1455 ifp = if_lookup_by_name_all_vrf((char *)rule);
1456
1457 if (ifp == NULL || ifp->ifindex != path->attr->nh_ifindex)
1458 return RMAP_NOMATCH;
1459
1460 return RMAP_MATCH;
1461 }
1462 return RMAP_NOMATCH;
1463 }
1464
1465 /* Route map `interface' match statement. `arg' should be
1466 interface name. */
1467 static void *route_match_interface_compile(const char *arg)
1468 {
1469 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
1470 }
1471
1472 /* Free route map's compiled `interface' value. */
1473 static void route_match_interface_free(void *rule)
1474 {
1475 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
1476 }
1477
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};
1482
1483 /* } */
1484
1485 /* `set ip next-hop IP_ADDRESS' */
1486
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)
1491 {
1492 route_tag_t *tag;
1493 struct bgp_path_info *path;
1494
1495 if (type == RMAP_BGP) {
1496 tag = rule;
1497 path = object;
1498
1499 return ((path->attr->tag == *tag) ? RMAP_MATCH : RMAP_NOMATCH);
1500 }
1501
1502 return RMAP_NOMATCH;
1503 }
1504
1505
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,
1510 };
1511
1512
1513 /* Set nexthop to object. ojbect must be pointer to struct attr. */
1514 struct rmap_ip_nexthop_set {
1515 struct in_addr *address;
1516 int peer_address;
1517 int unchanged;
1518 };
1519
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)
1523 {
1524 struct rmap_ip_nexthop_set *rins = rule;
1525 struct bgp_path_info *path;
1526 struct peer *peer;
1527
1528 if (type != RMAP_BGP)
1529 return RMAP_OKAY;
1530
1531 if (prefix->family == AF_INET6)
1532 return RMAP_OKAY;
1533
1534 path = object;
1535 peer = path->peer;
1536
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))
1543 && peer->su_remote
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.
1553 */
1554 SET_FLAG(path->attr->rmap_change_flags,
1555 BATTR_RMAP_NEXTHOP_PEER_ADDRESS);
1556 path->attr->nexthop.s_addr = 0;
1557 }
1558 } else {
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);
1567 }
1568
1569 return RMAP_OKAY;
1570 }
1571
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)
1575 {
1576 struct rmap_ip_nexthop_set *rins;
1577 struct in_addr *address = NULL;
1578 int peer_address = 0;
1579 int unchanged = 0;
1580 int ret;
1581
1582 if (strcmp(arg, "peer-address") == 0)
1583 peer_address = 1;
1584 else if (strcmp(arg, "unchanged") == 0)
1585 unchanged = 1;
1586 else {
1587 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED,
1588 sizeof(struct in_addr));
1589 ret = inet_aton(arg, address);
1590
1591 if (ret == 0) {
1592 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
1593 return NULL;
1594 }
1595 }
1596
1597 rins = XCALLOC(MTYPE_ROUTE_MAP_COMPILED,
1598 sizeof(struct rmap_ip_nexthop_set));
1599
1600 rins->address = address;
1601 rins->peer_address = peer_address;
1602 rins->unchanged = unchanged;
1603
1604 return rins;
1605 }
1606
1607 /* Free route map's compiled `ip nexthop' value. */
1608 static void route_set_ip_nexthop_free(void *rule)
1609 {
1610 struct rmap_ip_nexthop_set *rins = rule;
1611
1612 XFREE(MTYPE_ROUTE_MAP_COMPILED, rins->address);
1613
1614 XFREE(MTYPE_ROUTE_MAP_COMPILED, rins);
1615 }
1616
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};
1621
1622 /* `set local-preference LOCAL_PREF' */
1623
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)
1628 {
1629 struct rmap_value *rv;
1630 struct bgp_path_info *path;
1631 uint32_t locpref = 0;
1632
1633 if (type == RMAP_BGP) {
1634 /* Fetch routemap's rule information. */
1635 rv = rule;
1636 path = object;
1637
1638 /* Set local preference value. */
1639 if (path->attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF))
1640 locpref = path->attr->local_pref;
1641
1642 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
1643 path->attr->local_pref =
1644 route_value_adjust(rv, locpref, path->peer);
1645 }
1646
1647 return RMAP_OKAY;
1648 }
1649
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,
1653 route_value_free,
1654 };
1655
1656 /* `set weight WEIGHT' */
1657
1658 /* Set 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)
1662 {
1663 struct rmap_value *rv;
1664 struct bgp_path_info *path;
1665
1666 if (type == RMAP_BGP) {
1667 /* Fetch routemap's rule information. */
1668 rv = rule;
1669 path = object;
1670
1671 /* Set weight value. */
1672 path->attr->weight = route_value_adjust(rv, 0, path->peer);
1673 }
1674
1675 return RMAP_OKAY;
1676 }
1677
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,
1681 };
1682
1683 /* `set metric METRIC' */
1684
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)
1689 {
1690 struct rmap_value *rv;
1691 struct bgp_path_info *path;
1692 uint32_t med = 0;
1693
1694 if (type == RMAP_BGP) {
1695 /* Fetch routemap's rule information. */
1696 rv = rule;
1697 path = object;
1698
1699 if (path->attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC))
1700 med = path->attr->med;
1701
1702 path->attr->med = route_value_adjust(rv, med, path->peer);
1703 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
1704 }
1705 return RMAP_OKAY;
1706 }
1707
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,
1711 };
1712
1713 /* `set as-path prepend ASPATH' */
1714
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)
1719 {
1720 struct aspath *aspath;
1721 struct aspath *new;
1722 struct bgp_path_info *path;
1723
1724 if (type == RMAP_BGP) {
1725 path = object;
1726
1727 if (path->attr->aspath->refcnt)
1728 new = aspath_dup(path->attr->aspath);
1729 else
1730 new = path->attr->aspath;
1731
1732 if ((uintptr_t)rule > 10) {
1733 aspath = rule;
1734 aspath_prepend(aspath, new);
1735 } else {
1736 as_t as = aspath_leftmost(new);
1737 if (!as)
1738 as = path->peer->as;
1739 new = aspath_add_seq_n(new, as, (uintptr_t)rule);
1740 }
1741
1742 path->attr->aspath = new;
1743 }
1744
1745 return RMAP_OKAY;
1746 }
1747
1748 static void *route_set_aspath_prepend_compile(const char *arg)
1749 {
1750 unsigned int num;
1751
1752 if (sscanf(arg, "last-as %u", &num) == 1 && num > 0 && num <= 10)
1753 return (void *)(uintptr_t)num;
1754
1755 return route_aspath_compile(arg);
1756 }
1757
1758 static void route_set_aspath_prepend_free(void *rule)
1759 {
1760 if ((uintptr_t)rule > 10)
1761 route_aspath_free(rule);
1762 }
1763
1764
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,
1769 };
1770
1771 /* `set as-path exclude ASn' */
1772
1773 /* For ASN exclude mechanism.
1774 * Iterate over ASns requested and filter them from the given AS_PATH one by
1775 * one.
1776 * Make a deep copy of existing AS_PATH, but for the first ASn only.
1777 */
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)
1781 {
1782 struct aspath *new_path, *exclude_path;
1783 struct bgp_path_info *path;
1784
1785 if (type == RMAP_BGP) {
1786 exclude_path = rule;
1787 path = object;
1788 if (path->attr->aspath->refcnt)
1789 new_path = aspath_dup(path->attr->aspath);
1790 else
1791 new_path = path->attr->aspath;
1792 path->attr->aspath =
1793 aspath_filter_exclude(new_path, exclude_path);
1794 }
1795 return RMAP_OKAY;
1796 }
1797
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,
1801 route_aspath_free,
1802 };
1803
1804 /* `set community COMMUNITY' */
1805 struct rmap_com_set {
1806 struct community *com;
1807 int additive;
1808 int none;
1809 };
1810
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)
1815 {
1816 struct rmap_com_set *rcs;
1817 struct bgp_path_info *path;
1818 struct attr *attr;
1819 struct community *new = NULL;
1820 struct community *old;
1821 struct community *merge;
1822
1823 if (type == RMAP_BGP) {
1824 rcs = rule;
1825 path = object;
1826 attr = path->attr;
1827 old = attr->community;
1828
1829 /* "none" case. */
1830 if (rcs->none) {
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);
1836 return RMAP_OKAY;
1837 }
1838
1839 /* "additive" case. */
1840 if (rcs->additive && old) {
1841 merge = community_merge(community_dup(old), rcs->com);
1842
1843 new = community_uniq_sort(merge);
1844 community_free(&merge);
1845 } else
1846 new = community_dup(rcs->com);
1847
1848 /* HACK: if the old community is not intern'd,
1849 * we should free it here, or all reference to it may be
1850 * lost.
1851 * Really need to cleanup attribute caching sometime.
1852 */
1853 if (old && old->refcnt == 0)
1854 community_free(&old);
1855
1856 /* will be interned by caller if required */
1857 attr->community = new;
1858
1859 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
1860 }
1861
1862 return RMAP_OKAY;
1863 }
1864
1865 /* Compile function for set community. */
1866 static void *route_set_community_compile(const char *arg)
1867 {
1868 struct rmap_com_set *rcs;
1869 struct community *com = NULL;
1870 char *sp;
1871 int additive = 0;
1872 int none = 0;
1873
1874 if (strcmp(arg, "none") == 0)
1875 none = 1;
1876 else {
1877 sp = strstr(arg, "additive");
1878
1879 if (sp && sp > arg) {
1880 /* "additive" keyword is included. */
1881 additive = 1;
1882 *(sp - 1) = '\0';
1883 }
1884
1885 com = community_str2com(arg);
1886
1887 if (additive)
1888 *(sp - 1) = ' ';
1889
1890 if (!com)
1891 return NULL;
1892 }
1893
1894 rcs = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_com_set));
1895 rcs->com = com;
1896 rcs->additive = additive;
1897 rcs->none = none;
1898
1899 return rcs;
1900 }
1901
1902 /* Free function for set community. */
1903 static void route_set_community_free(void *rule)
1904 {
1905 struct rmap_com_set *rcs = rule;
1906
1907 if (rcs->com)
1908 community_free(&rcs->com);
1909 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcs);
1910 }
1911
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,
1916 };
1917
1918 /* `set community COMMUNITY' */
1919 struct rmap_lcom_set {
1920 struct lcommunity *lcom;
1921 int additive;
1922 int none;
1923 };
1924
1925
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)
1930 {
1931 struct rmap_lcom_set *rcs;
1932 struct bgp_path_info *path;
1933 struct attr *attr;
1934 struct lcommunity *new = NULL;
1935 struct lcommunity *old;
1936 struct lcommunity *merge;
1937
1938 if (type == RMAP_BGP) {
1939 rcs = rule;
1940 path = object;
1941 attr = path->attr;
1942 old = attr->lcommunity;
1943
1944 /* "none" case. */
1945 if (rcs->none) {
1946 attr->flag &=
1947 ~(ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES));
1948 attr->lcommunity = NULL;
1949
1950 /* See the longer comment down below. */
1951 if (old && old->refcnt == 0)
1952 lcommunity_free(&old);
1953 return RMAP_OKAY;
1954 }
1955
1956 if (rcs->additive && old) {
1957 merge = lcommunity_merge(lcommunity_dup(old),
1958 rcs->lcom);
1959
1960 new = lcommunity_uniq_sort(merge);
1961 lcommunity_free(&merge);
1962 } else
1963 new = lcommunity_dup(rcs->lcom);
1964
1965 /* HACK: if the old large-community is not intern'd,
1966 * we should free it here, or all reference to it may be
1967 * lost.
1968 * Really need to cleanup attribute caching sometime.
1969 */
1970 if (old && old->refcnt == 0)
1971 lcommunity_free(&old);
1972
1973 /* will be intern()'d or attr_flush()'d by bgp_update_main() */
1974 attr->lcommunity = new;
1975
1976 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES);
1977 }
1978
1979 return RMAP_OKAY;
1980 }
1981
1982 /* Compile function for set community. */
1983 static void *route_set_lcommunity_compile(const char *arg)
1984 {
1985 struct rmap_lcom_set *rcs;
1986 struct lcommunity *lcom = NULL;
1987 char *sp;
1988 int additive = 0;
1989 int none = 0;
1990
1991 if (strcmp(arg, "none") == 0)
1992 none = 1;
1993 else {
1994 sp = strstr(arg, "additive");
1995
1996 if (sp && sp > arg) {
1997 /* "additive" keyworkd is included. */
1998 additive = 1;
1999 *(sp - 1) = '\0';
2000 }
2001
2002 lcom = lcommunity_str2com(arg);
2003
2004 if (additive)
2005 *(sp - 1) = ' ';
2006
2007 if (!lcom)
2008 return NULL;
2009 }
2010
2011 rcs = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_com_set));
2012 rcs->lcom = lcom;
2013 rcs->additive = additive;
2014 rcs->none = none;
2015
2016 return rcs;
2017 }
2018
2019 /* Free function for set lcommunity. */
2020 static void route_set_lcommunity_free(void *rule)
2021 {
2022 struct rmap_lcom_set *rcs = rule;
2023
2024 if (rcs->lcom) {
2025 lcommunity_free(&rcs->lcom);
2026 }
2027 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcs);
2028 }
2029
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,
2034 };
2035
2036 /* `set large-comm-list (<1-99>|<100-500>|WORD) delete' */
2037
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)
2042 {
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;
2049
2050 if (type == RMAP_BGP) {
2051 if (!rcom)
2052 return RMAP_OKAY;
2053
2054 path = object;
2055 list = community_list_lookup(bgp_clist, rcom->name,
2056 rcom->name_hash,
2057 LARGE_COMMUNITY_LIST_MASTER);
2058 old = path->attr->lcommunity;
2059
2060 if (list && old) {
2061 merge = lcommunity_list_match_delete(
2062 lcommunity_dup(old), list);
2063 new = lcommunity_uniq_sort(merge);
2064 lcommunity_free(&merge);
2065
2066 /* HACK: if the old community is not intern'd,
2067 * we should free it here, or all reference to it may be
2068 * lost.
2069 * Really need to cleanup attribute caching sometime.
2070 */
2071 if (old->refcnt == 0)
2072 lcommunity_free(&old);
2073
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);
2079 } else {
2080 path->attr->lcommunity = new;
2081 path->attr->flag |= ATTR_FLAG_BIT(
2082 BGP_ATTR_LARGE_COMMUNITIES);
2083 }
2084 }
2085 }
2086
2087 return RMAP_OKAY;
2088 }
2089
2090 /* Compile function for set lcommunity. */
2091 static void *route_set_lcommunity_delete_compile(const char *arg)
2092 {
2093 struct rmap_community *rcom;
2094 char **splits;
2095 int num;
2096
2097 frrstr_split(arg, " ", &splits, &num);
2098
2099 rcom = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_community));
2100 rcom->name = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, splits[0]);
2101 rcom->name_hash = bgp_clist_hash_key(rcom->name);
2102
2103 for (int i = 0; i < num; i++)
2104 XFREE(MTYPE_TMP, splits[i]);
2105 XFREE(MTYPE_TMP, splits);
2106
2107 return rcom;
2108 }
2109
2110 /* Free function for set lcommunity. */
2111 static void route_set_lcommunity_delete_free(void *rule)
2112 {
2113 struct rmap_community *rcom = rule;
2114
2115 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom->name);
2116 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom);
2117 }
2118
2119 /* Set lcommunity rule structure. */
2120 struct route_map_rule_cmd route_set_lcommunity_delete_cmd = {
2121 "large-comm-list", route_set_lcommunity_delete,
2122 route_set_lcommunity_delete_compile, route_set_lcommunity_delete_free,
2123 };
2124
2125
2126 /* `set comm-list (<1-99>|<100-500>|WORD) delete' */
2127
2128 /* For community set mechanism. */
2129 static enum route_map_cmd_result_t
2130 route_set_community_delete(void *rule, const struct prefix *prefix,
2131 route_map_object_t type, void *object)
2132 {
2133 struct community_list *list;
2134 struct community *merge;
2135 struct community *new;
2136 struct community *old;
2137 struct bgp_path_info *path;
2138 struct rmap_community *rcom = rule;
2139
2140 if (type == RMAP_BGP) {
2141 if (!rcom)
2142 return RMAP_OKAY;
2143
2144 path = object;
2145 list = community_list_lookup(bgp_clist, rcom->name,
2146 rcom->name_hash,
2147 COMMUNITY_LIST_MASTER);
2148 old = path->attr->community;
2149
2150 if (list && old) {
2151 merge = community_list_match_delete(community_dup(old),
2152 list);
2153 new = community_uniq_sort(merge);
2154 community_free(&merge);
2155
2156 /* HACK: if the old community is not intern'd,
2157 * we should free it here, or all reference to it may be
2158 * lost.
2159 * Really need to cleanup attribute caching sometime.
2160 */
2161 if (old->refcnt == 0)
2162 community_free(&old);
2163
2164 if (new->size == 0) {
2165 path->attr->community = NULL;
2166 path->attr->flag &=
2167 ~ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
2168 community_free(&new);
2169 } else {
2170 path->attr->community = new;
2171 path->attr->flag |=
2172 ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
2173 }
2174 }
2175 }
2176
2177 return RMAP_OKAY;
2178 }
2179
2180 /* Compile function for set community. */
2181 static void *route_set_community_delete_compile(const char *arg)
2182 {
2183 struct rmap_community *rcom;
2184 char **splits;
2185 int num;
2186
2187 frrstr_split(arg, " ", &splits, &num);
2188
2189 rcom = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_community));
2190 rcom->name = XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, splits[0]);
2191 rcom->name_hash = bgp_clist_hash_key(rcom->name);
2192
2193 for (int i = 0; i < num; i++)
2194 XFREE(MTYPE_TMP, splits[i]);
2195 XFREE(MTYPE_TMP, splits);
2196
2197 return rcom;
2198 }
2199
2200 /* Free function for set community. */
2201 static void route_set_community_delete_free(void *rule)
2202 {
2203 struct rmap_community *rcom = rule;
2204
2205 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom->name);
2206 XFREE(MTYPE_ROUTE_MAP_COMPILED, rcom);
2207 }
2208
2209 /* Set community rule structure. */
2210 struct route_map_rule_cmd route_set_community_delete_cmd = {
2211 "comm-list", route_set_community_delete,
2212 route_set_community_delete_compile, route_set_community_delete_free,
2213 };
2214
2215 /* `set extcommunity rt COMMUNITY' */
2216
2217 /* For community set mechanism. Used by _rt and _soo. */
2218 static enum route_map_cmd_result_t
2219 route_set_ecommunity(void *rule, const struct prefix *prefix,
2220 route_map_object_t type, void *object)
2221 {
2222 struct ecommunity *ecom;
2223 struct ecommunity *new_ecom;
2224 struct ecommunity *old_ecom;
2225 struct bgp_path_info *path;
2226
2227 if (type == RMAP_BGP) {
2228 ecom = rule;
2229 path = object;
2230
2231 if (!ecom)
2232 return RMAP_OKAY;
2233
2234 /* We assume additive for Extended Community. */
2235 old_ecom = path->attr->ecommunity;
2236
2237 if (old_ecom) {
2238 new_ecom = ecommunity_merge(ecommunity_dup(old_ecom),
2239 ecom);
2240
2241 /* old_ecom->refcnt = 1 => owned elsewhere, e.g.
2242 * bgp_update_receive()
2243 * ->refcnt = 0 => set by a previous route-map
2244 * statement */
2245 if (!old_ecom->refcnt)
2246 ecommunity_free(&old_ecom);
2247 } else
2248 new_ecom = ecommunity_dup(ecom);
2249
2250 /* will be intern()'d or attr_flush()'d by bgp_update_main() */
2251 path->attr->ecommunity = new_ecom;
2252
2253 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES);
2254 }
2255 return RMAP_OKAY;
2256 }
2257
2258 /* Compile function for set community. */
2259 static void *route_set_ecommunity_rt_compile(const char *arg)
2260 {
2261 struct ecommunity *ecom;
2262
2263 ecom = ecommunity_str2com(arg, ECOMMUNITY_ROUTE_TARGET, 0);
2264 if (!ecom)
2265 return NULL;
2266 return ecommunity_intern(ecom);
2267 }
2268
2269 /* Free function for set community. Used by _rt and _soo */
2270 static void route_set_ecommunity_free(void *rule)
2271 {
2272 struct ecommunity *ecom = rule;
2273 ecommunity_unintern(&ecom);
2274 }
2275
2276 /* Set community rule structure. */
2277 struct route_map_rule_cmd route_set_ecommunity_rt_cmd = {
2278 "extcommunity rt", route_set_ecommunity,
2279 route_set_ecommunity_rt_compile, route_set_ecommunity_free,
2280 };
2281
2282 /* `set extcommunity soo COMMUNITY' */
2283
2284 /* Compile function for set community. */
2285 static void *route_set_ecommunity_soo_compile(const char *arg)
2286 {
2287 struct ecommunity *ecom;
2288
2289 ecom = ecommunity_str2com(arg, ECOMMUNITY_SITE_ORIGIN, 0);
2290 if (!ecom)
2291 return NULL;
2292
2293 return ecommunity_intern(ecom);
2294 }
2295
2296 /* Set community rule structure. */
2297 struct route_map_rule_cmd route_set_ecommunity_soo_cmd = {
2298 "extcommunity soo", route_set_ecommunity,
2299 route_set_ecommunity_soo_compile, route_set_ecommunity_free,
2300 };
2301
2302 /* `set origin ORIGIN' */
2303
2304 /* For origin set. */
2305 static enum route_map_cmd_result_t
2306 route_set_origin(void *rule, const struct prefix *prefix,
2307 route_map_object_t type, void *object)
2308 {
2309 uint8_t *origin;
2310 struct bgp_path_info *path;
2311
2312 if (type == RMAP_BGP) {
2313 origin = rule;
2314 path = object;
2315
2316 path->attr->origin = *origin;
2317 }
2318
2319 return RMAP_OKAY;
2320 }
2321
2322 /* Compile function for origin set. */
2323 static void *route_set_origin_compile(const char *arg)
2324 {
2325 uint8_t *origin;
2326
2327 origin = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(uint8_t));
2328
2329 if (strcmp(arg, "igp") == 0)
2330 *origin = 0;
2331 else if (strcmp(arg, "egp") == 0)
2332 *origin = 1;
2333 else
2334 *origin = 2;
2335
2336 return origin;
2337 }
2338
2339 /* Compile function for origin set. */
2340 static void route_set_origin_free(void *rule)
2341 {
2342 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2343 }
2344
2345 /* Set origin rule structure. */
2346 struct route_map_rule_cmd route_set_origin_cmd = {
2347 "origin", route_set_origin, route_set_origin_compile,
2348 route_set_origin_free,
2349 };
2350
2351 /* `set atomic-aggregate' */
2352
2353 /* For atomic aggregate set. */
2354 static enum route_map_cmd_result_t
2355 route_set_atomic_aggregate(void *rule, const struct prefix *pfx,
2356 route_map_object_t type, void *object)
2357 {
2358 struct bgp_path_info *path;
2359
2360 if (type == RMAP_BGP) {
2361 path = object;
2362 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE);
2363 }
2364
2365 return RMAP_OKAY;
2366 }
2367
2368 /* Compile function for atomic aggregate. */
2369 static void *route_set_atomic_aggregate_compile(const char *arg)
2370 {
2371 return (void *)1;
2372 }
2373
2374 /* Compile function for atomic aggregate. */
2375 static void route_set_atomic_aggregate_free(void *rule)
2376 {
2377 return;
2378 }
2379
2380 /* Set atomic aggregate rule structure. */
2381 struct route_map_rule_cmd route_set_atomic_aggregate_cmd = {
2382 "atomic-aggregate", route_set_atomic_aggregate,
2383 route_set_atomic_aggregate_compile, route_set_atomic_aggregate_free,
2384 };
2385
2386 /* `set aggregator as AS A.B.C.D' */
2387 struct aggregator {
2388 as_t as;
2389 struct in_addr address;
2390 };
2391
2392 static enum route_map_cmd_result_t
2393 route_set_aggregator_as(void *rule, const struct prefix *prefix,
2394 route_map_object_t type, void *object)
2395 {
2396 struct bgp_path_info *path;
2397 struct aggregator *aggregator;
2398
2399 if (type == RMAP_BGP) {
2400 path = object;
2401 aggregator = rule;
2402
2403 path->attr->aggregator_as = aggregator->as;
2404 path->attr->aggregator_addr = aggregator->address;
2405 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR);
2406 }
2407
2408 return RMAP_OKAY;
2409 }
2410
2411 static void *route_set_aggregator_as_compile(const char *arg)
2412 {
2413 struct aggregator *aggregator;
2414 char as[10];
2415 char address[20];
2416 int ret;
2417
2418 aggregator =
2419 XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct aggregator));
2420 if (sscanf(arg, "%s %s", as, address) != 2) {
2421 XFREE(MTYPE_ROUTE_MAP_COMPILED, aggregator);
2422 return NULL;
2423 }
2424
2425 aggregator->as = strtoul(as, NULL, 10);
2426 ret = inet_aton(address, &aggregator->address);
2427 if (ret == 0) {
2428 XFREE(MTYPE_ROUTE_MAP_COMPILED, aggregator);
2429 return NULL;
2430 }
2431 return aggregator;
2432 }
2433
2434 static void route_set_aggregator_as_free(void *rule)
2435 {
2436 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2437 }
2438
2439 struct route_map_rule_cmd route_set_aggregator_as_cmd = {
2440 "aggregator as", route_set_aggregator_as,
2441 route_set_aggregator_as_compile, route_set_aggregator_as_free,
2442 };
2443
2444 /* Set tag to object. object must be pointer to struct bgp_path_info */
2445 static enum route_map_cmd_result_t
2446 route_set_tag(void *rule, const struct prefix *prefix,
2447 route_map_object_t type, void *object)
2448 {
2449 route_tag_t *tag;
2450 struct bgp_path_info *path;
2451
2452 if (type == RMAP_BGP) {
2453 tag = rule;
2454 path = object;
2455
2456 /* Set tag value */
2457 path->attr->tag = *tag;
2458 }
2459
2460 return RMAP_OKAY;
2461 }
2462
2463 /* Route map commands for tag set. */
2464 static struct route_map_rule_cmd route_set_tag_cmd = {
2465 "tag", route_set_tag, route_map_rule_tag_compile,
2466 route_map_rule_tag_free,
2467 };
2468
2469 /* Set label-index to object. object must be pointer to struct bgp_path_info */
2470 static enum route_map_cmd_result_t
2471 route_set_label_index(void *rule, const struct prefix *prefix,
2472 route_map_object_t type, void *object)
2473 {
2474 struct rmap_value *rv;
2475 struct bgp_path_info *path;
2476 uint32_t label_index;
2477
2478 if (type == RMAP_BGP) {
2479 /* Fetch routemap's rule information. */
2480 rv = rule;
2481 path = object;
2482
2483 /* Set label-index value. */
2484 label_index = rv->value;
2485 if (label_index) {
2486 path->attr->label_index = label_index;
2487 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID);
2488 }
2489 }
2490
2491 return RMAP_OKAY;
2492 }
2493
2494 /* Route map commands for label-index set. */
2495 static struct route_map_rule_cmd route_set_label_index_cmd = {
2496 "label-index", route_set_label_index, route_value_compile,
2497 route_value_free,
2498 };
2499
2500 /* `match ipv6 address IP_ACCESS_LIST' */
2501
2502 static enum route_map_cmd_result_t
2503 route_match_ipv6_address(void *rule, const struct prefix *prefix,
2504 route_map_object_t type, void *object)
2505 {
2506 struct access_list *alist;
2507
2508 if (type == RMAP_BGP && prefix->family == AF_INET6) {
2509 alist = access_list_lookup(AFI_IP6, (char *)rule);
2510 if (alist == NULL)
2511 return RMAP_NOMATCH;
2512
2513 return (access_list_apply(alist, prefix) == FILTER_DENY
2514 ? RMAP_NOMATCH
2515 : RMAP_MATCH);
2516 }
2517 return RMAP_NOMATCH;
2518 }
2519
2520 static void *route_match_ipv6_address_compile(const char *arg)
2521 {
2522 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
2523 }
2524
2525 static void route_match_ipv6_address_free(void *rule)
2526 {
2527 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2528 }
2529
2530 /* Route map commands for ip address matching. */
2531 struct route_map_rule_cmd route_match_ipv6_address_cmd = {
2532 "ipv6 address", route_match_ipv6_address,
2533 route_match_ipv6_address_compile, route_match_ipv6_address_free};
2534
2535 /* `match ipv6 next-hop IP_ADDRESS' */
2536
2537 static enum route_map_cmd_result_t
2538 route_match_ipv6_next_hop(void *rule, const struct prefix *prefix,
2539 route_map_object_t type, void *object)
2540 {
2541 struct in6_addr *addr = rule;
2542 struct bgp_path_info *path;
2543
2544 if (type == RMAP_BGP) {
2545 path = object;
2546
2547 if (IPV6_ADDR_SAME(&path->attr->mp_nexthop_global, addr))
2548 return RMAP_MATCH;
2549
2550 if (path->attr->mp_nexthop_len
2551 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
2552 && IPV6_ADDR_SAME(&path->attr->mp_nexthop_local, rule))
2553 return RMAP_MATCH;
2554
2555 return RMAP_NOMATCH;
2556 }
2557
2558 return RMAP_NOMATCH;
2559 }
2560
2561 static void *route_match_ipv6_next_hop_compile(const char *arg)
2562 {
2563 struct in6_addr *address;
2564 int ret;
2565
2566 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in6_addr));
2567
2568 ret = inet_pton(AF_INET6, arg, address);
2569 if (!ret) {
2570 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2571 return NULL;
2572 }
2573
2574 return address;
2575 }
2576
2577 static void route_match_ipv6_next_hop_free(void *rule)
2578 {
2579 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2580 }
2581
2582 struct route_map_rule_cmd route_match_ipv6_next_hop_cmd = {
2583 "ipv6 next-hop", route_match_ipv6_next_hop,
2584 route_match_ipv6_next_hop_compile, route_match_ipv6_next_hop_free};
2585
2586 /* `match ipv6 address prefix-list PREFIX_LIST' */
2587
2588 static enum route_map_cmd_result_t
2589 route_match_ipv6_address_prefix_list(void *rule, const struct prefix *prefix,
2590 route_map_object_t type, void *object)
2591 {
2592 return route_match_address_prefix_list(rule, AFI_IP6, prefix, type,
2593 object);
2594 }
2595
2596 static void *route_match_ipv6_address_prefix_list_compile(const char *arg)
2597 {
2598 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
2599 }
2600
2601 static void route_match_ipv6_address_prefix_list_free(void *rule)
2602 {
2603 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2604 }
2605
2606 struct route_map_rule_cmd route_match_ipv6_address_prefix_list_cmd = {
2607 "ipv6 address prefix-list", route_match_ipv6_address_prefix_list,
2608 route_match_ipv6_address_prefix_list_compile,
2609 route_match_ipv6_address_prefix_list_free};
2610
2611 /* `match ipv6 next-hop type <TYPE>' */
2612
2613 static enum route_map_cmd_result_t
2614 route_match_ipv6_next_hop_type(void *rule, const struct prefix *prefix,
2615 route_map_object_t type, void *object)
2616 {
2617 struct bgp_path_info *path;
2618 struct in6_addr *addr = rule;
2619
2620 if (type == RMAP_BGP && prefix->family == AF_INET6) {
2621 path = (struct bgp_path_info *)object;
2622 if (!path || !path->attr)
2623 return RMAP_NOMATCH;
2624
2625 if (IPV6_ADDR_SAME(&path->attr->mp_nexthop_global, addr)
2626 && !path->attr->nh_ifindex)
2627 return RMAP_MATCH;
2628 }
2629 return RMAP_NOMATCH;
2630 }
2631
2632 static void *route_match_ipv6_next_hop_type_compile(const char *arg)
2633 {
2634 struct in6_addr *address;
2635 int ret;
2636
2637 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in6_addr));
2638
2639 ret = inet_pton(AF_INET6, "::0", address);
2640 if (!ret) {
2641 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2642 return NULL;
2643 }
2644
2645 return address;
2646 }
2647
2648 static void route_match_ipv6_next_hop_type_free(void *rule)
2649 {
2650 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2651 }
2652
2653 struct route_map_rule_cmd route_match_ipv6_next_hop_type_cmd = {
2654 "ipv6 next-hop type", route_match_ipv6_next_hop_type,
2655 route_match_ipv6_next_hop_type_compile,
2656 route_match_ipv6_next_hop_type_free};
2657
2658 /* `set ipv6 nexthop global IP_ADDRESS' */
2659
2660 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2661 static enum route_map_cmd_result_t
2662 route_set_ipv6_nexthop_global(void *rule, const struct prefix *p,
2663 route_map_object_t type, void *object)
2664 {
2665 struct in6_addr *address;
2666 struct bgp_path_info *path;
2667
2668 if (type == RMAP_BGP) {
2669 /* Fetch routemap's rule information. */
2670 address = rule;
2671 path = object;
2672
2673 /* Set next hop value. */
2674 path->attr->mp_nexthop_global = *address;
2675
2676 /* Set nexthop length. */
2677 if (path->attr->mp_nexthop_len == 0)
2678 path->attr->mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL;
2679
2680 SET_FLAG(path->attr->rmap_change_flags,
2681 BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED);
2682 }
2683
2684 return RMAP_OKAY;
2685 }
2686
2687 /* Route map `ip next-hop' compile function. Given string is converted
2688 to struct in_addr structure. */
2689 static void *route_set_ipv6_nexthop_global_compile(const char *arg)
2690 {
2691 int ret;
2692 struct in6_addr *address;
2693
2694 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in6_addr));
2695
2696 ret = inet_pton(AF_INET6, arg, address);
2697
2698 if (ret == 0) {
2699 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2700 return NULL;
2701 }
2702
2703 return address;
2704 }
2705
2706 /* Free route map's compiled `ip next-hop' value. */
2707 static void route_set_ipv6_nexthop_global_free(void *rule)
2708 {
2709 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2710 }
2711
2712 /* Route map commands for ip nexthop set. */
2713 struct route_map_rule_cmd route_set_ipv6_nexthop_global_cmd = {
2714 "ipv6 next-hop global", route_set_ipv6_nexthop_global,
2715 route_set_ipv6_nexthop_global_compile,
2716 route_set_ipv6_nexthop_global_free};
2717
2718 /* Set next-hop preference value. */
2719 static enum route_map_cmd_result_t
2720 route_set_ipv6_nexthop_prefer_global(void *rule, const struct prefix *prefix,
2721 route_map_object_t type, void *object)
2722 {
2723 struct bgp_path_info *path;
2724 struct peer *peer;
2725
2726 if (type == RMAP_BGP) {
2727 /* Fetch routemap's rule information. */
2728 path = object;
2729 peer = path->peer;
2730
2731 if ((CHECK_FLAG(peer->rmap_type, PEER_RMAP_TYPE_IN)
2732 || CHECK_FLAG(peer->rmap_type, PEER_RMAP_TYPE_IMPORT))
2733 && peer->su_remote
2734 && sockunion_family(peer->su_remote) == AF_INET6) {
2735 /* Set next hop preference to global */
2736 path->attr->mp_nexthop_prefer_global = true;
2737 SET_FLAG(path->attr->rmap_change_flags,
2738 BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED);
2739 } else {
2740 path->attr->mp_nexthop_prefer_global = false;
2741 SET_FLAG(path->attr->rmap_change_flags,
2742 BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED);
2743 }
2744 }
2745 return RMAP_OKAY;
2746 }
2747
2748 static void *route_set_ipv6_nexthop_prefer_global_compile(const char *arg)
2749 {
2750 int *rins = NULL;
2751
2752 rins = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(int));
2753 *rins = 1;
2754
2755 return rins;
2756 }
2757
2758 /* Free route map's compiled `ip next-hop' value. */
2759 static void route_set_ipv6_nexthop_prefer_global_free(void *rule)
2760 {
2761 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2762 }
2763
2764 /* Route map commands for ip nexthop set preferred. */
2765 struct route_map_rule_cmd route_set_ipv6_nexthop_prefer_global_cmd = {
2766 "ipv6 next-hop prefer-global", route_set_ipv6_nexthop_prefer_global,
2767 route_set_ipv6_nexthop_prefer_global_compile,
2768 route_set_ipv6_nexthop_prefer_global_free};
2769
2770 /* `set ipv6 nexthop local IP_ADDRESS' */
2771
2772 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2773 static enum route_map_cmd_result_t
2774 route_set_ipv6_nexthop_local(void *rule, const struct prefix *p,
2775 route_map_object_t type, void *object)
2776 {
2777 struct in6_addr *address;
2778 struct bgp_path_info *path;
2779
2780 if (type == RMAP_BGP) {
2781 /* Fetch routemap's rule information. */
2782 address = rule;
2783 path = object;
2784
2785 /* Set next hop value. */
2786 path->attr->mp_nexthop_local = *address;
2787
2788 /* Set nexthop length. */
2789 if (path->attr->mp_nexthop_len
2790 != BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL)
2791 path->attr->mp_nexthop_len =
2792 BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL;
2793
2794 SET_FLAG(path->attr->rmap_change_flags,
2795 BATTR_RMAP_IPV6_LL_NHOP_CHANGED);
2796 }
2797
2798 return RMAP_OKAY;
2799 }
2800
2801 /* Route map `ip nexthop' compile function. Given string is converted
2802 to struct in_addr structure. */
2803 static void *route_set_ipv6_nexthop_local_compile(const char *arg)
2804 {
2805 int ret;
2806 struct in6_addr *address;
2807
2808 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in6_addr));
2809
2810 ret = inet_pton(AF_INET6, arg, address);
2811
2812 if (ret == 0) {
2813 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2814 return NULL;
2815 }
2816
2817 return address;
2818 }
2819
2820 /* Free route map's compiled `ip nexthop' value. */
2821 static void route_set_ipv6_nexthop_local_free(void *rule)
2822 {
2823 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2824 }
2825
2826 /* Route map commands for ip nexthop set. */
2827 struct route_map_rule_cmd route_set_ipv6_nexthop_local_cmd = {
2828 "ipv6 next-hop local", route_set_ipv6_nexthop_local,
2829 route_set_ipv6_nexthop_local_compile,
2830 route_set_ipv6_nexthop_local_free};
2831
2832 /* `set ipv6 nexthop peer-address' */
2833
2834 /* Set nexthop to object. ojbect must be pointer to struct attr. */
2835 static enum route_map_cmd_result_t
2836 route_set_ipv6_nexthop_peer(void *rule, const struct prefix *pfx,
2837 route_map_object_t type, void *object)
2838 {
2839 struct in6_addr peer_address;
2840 struct bgp_path_info *path;
2841 struct peer *peer;
2842
2843 if (type == RMAP_BGP) {
2844 /* Fetch routemap's rule information. */
2845 path = object;
2846 peer = path->peer;
2847
2848 if ((CHECK_FLAG(peer->rmap_type, PEER_RMAP_TYPE_IN)
2849 || CHECK_FLAG(peer->rmap_type, PEER_RMAP_TYPE_IMPORT))
2850 && peer->su_remote
2851 && sockunion_family(peer->su_remote) == AF_INET6) {
2852 peer_address = peer->su_remote->sin6.sin6_addr;
2853 /* Set next hop value and length in attribute. */
2854 if (IN6_IS_ADDR_LINKLOCAL(&peer_address)) {
2855 path->attr->mp_nexthop_local = peer_address;
2856 if (path->attr->mp_nexthop_len != 32)
2857 path->attr->mp_nexthop_len = 32;
2858 } else {
2859 path->attr->mp_nexthop_global = peer_address;
2860 if (path->attr->mp_nexthop_len == 0)
2861 path->attr->mp_nexthop_len = 16;
2862 }
2863
2864 } else if (CHECK_FLAG(peer->rmap_type, PEER_RMAP_TYPE_OUT)) {
2865 /* The next hop value will be set as part of packet
2866 * rewrite.
2867 * Set the flags here to indicate that rewrite needs to
2868 * be done.
2869 * Also, clear the value - we clear both global and
2870 * link-local
2871 * nexthops, whether we send one or both is determined
2872 * elsewhere.
2873 */
2874 SET_FLAG(path->attr->rmap_change_flags,
2875 BATTR_RMAP_NEXTHOP_PEER_ADDRESS);
2876 /* clear next hop value. */
2877 memset(&(path->attr->mp_nexthop_global), 0,
2878 sizeof(struct in6_addr));
2879 memset(&(path->attr->mp_nexthop_local), 0,
2880 sizeof(struct in6_addr));
2881 }
2882 }
2883
2884 return RMAP_OKAY;
2885 }
2886
2887 /* Route map `ip next-hop' compile function. Given string is converted
2888 to struct in_addr structure. */
2889 static void *route_set_ipv6_nexthop_peer_compile(const char *arg)
2890 {
2891 int *rins = NULL;
2892
2893 rins = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(int));
2894 *rins = 1;
2895
2896 return rins;
2897 }
2898
2899 /* Free route map's compiled `ip next-hop' value. */
2900 static void route_set_ipv6_nexthop_peer_free(void *rule)
2901 {
2902 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2903 }
2904
2905 /* Route map commands for ip nexthop set. */
2906 struct route_map_rule_cmd route_set_ipv6_nexthop_peer_cmd = {
2907 "ipv6 next-hop peer-address", route_set_ipv6_nexthop_peer,
2908 route_set_ipv6_nexthop_peer_compile, route_set_ipv6_nexthop_peer_free};
2909
2910 /* `set ipv4 vpn next-hop A.B.C.D' */
2911
2912 static enum route_map_cmd_result_t
2913 route_set_vpnv4_nexthop(void *rule, const struct prefix *prefix,
2914 route_map_object_t type, void *object)
2915 {
2916 struct in_addr *address;
2917 struct bgp_path_info *path;
2918
2919 if (type == RMAP_BGP) {
2920 /* Fetch routemap's rule information. */
2921 address = rule;
2922 path = object;
2923
2924 /* Set next hop value. */
2925 path->attr->mp_nexthop_global_in = *address;
2926 path->attr->mp_nexthop_len = 4;
2927 }
2928
2929 return RMAP_OKAY;
2930 }
2931
2932 static void *route_set_vpnv4_nexthop_compile(const char *arg)
2933 {
2934 int ret;
2935 struct in_addr *address;
2936
2937 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in_addr));
2938
2939 ret = inet_aton(arg, address);
2940
2941 if (ret == 0) {
2942 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2943 return NULL;
2944 }
2945
2946 return address;
2947 }
2948
2949 /* `set ipv6 vpn next-hop A.B.C.D' */
2950
2951 static enum route_map_cmd_result_t
2952 route_set_vpnv6_nexthop(void *rule, const struct prefix *prefix,
2953 route_map_object_t type, void *object)
2954 {
2955 struct in6_addr *address;
2956 struct bgp_path_info *path;
2957
2958 if (type == RMAP_BGP) {
2959 /* Fetch routemap's rule information. */
2960 address = rule;
2961 path = object;
2962
2963 /* Set next hop value. */
2964 memcpy(&path->attr->mp_nexthop_global, address,
2965 sizeof(struct in6_addr));
2966 path->attr->mp_nexthop_len = BGP_ATTR_NHLEN_VPNV6_GLOBAL;
2967 }
2968
2969 return RMAP_OKAY;
2970 }
2971
2972 static void *route_set_vpnv6_nexthop_compile(const char *arg)
2973 {
2974 int ret;
2975 struct in6_addr *address;
2976
2977 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in6_addr));
2978 ret = inet_pton(AF_INET6, arg, address);
2979
2980 if (ret == 0) {
2981 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
2982 return NULL;
2983 }
2984
2985 return address;
2986 }
2987
2988 static void route_set_vpn_nexthop_free(void *rule)
2989 {
2990 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
2991 }
2992
2993 /* Route map commands for ipv4 next-hop set. */
2994 struct route_map_rule_cmd route_set_vpnv4_nexthop_cmd = {
2995 "ipv4 vpn next-hop", route_set_vpnv4_nexthop,
2996 route_set_vpnv4_nexthop_compile, route_set_vpn_nexthop_free};
2997
2998 /* Route map commands for ipv6 next-hop set. */
2999 struct route_map_rule_cmd route_set_vpnv6_nexthop_cmd = {
3000 "ipv6 vpn next-hop", route_set_vpnv6_nexthop,
3001 route_set_vpnv6_nexthop_compile, route_set_vpn_nexthop_free};
3002
3003 /* `set originator-id' */
3004
3005 /* For origin set. */
3006 static enum route_map_cmd_result_t
3007 route_set_originator_id(void *rule, const struct prefix *prefix,
3008 route_map_object_t type, void *object)
3009 {
3010 struct in_addr *address;
3011 struct bgp_path_info *path;
3012
3013 if (type == RMAP_BGP) {
3014 address = rule;
3015 path = object;
3016
3017 path->attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID);
3018 path->attr->originator_id = *address;
3019 }
3020
3021 return RMAP_OKAY;
3022 }
3023
3024 /* Compile function for originator-id set. */
3025 static void *route_set_originator_id_compile(const char *arg)
3026 {
3027 int ret;
3028 struct in_addr *address;
3029
3030 address = XMALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(struct in_addr));
3031
3032 ret = inet_aton(arg, address);
3033
3034 if (ret == 0) {
3035 XFREE(MTYPE_ROUTE_MAP_COMPILED, address);
3036 return NULL;
3037 }
3038
3039 return address;
3040 }
3041
3042 /* Compile function for originator_id set. */
3043 static void route_set_originator_id_free(void *rule)
3044 {
3045 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
3046 }
3047
3048 /* Set originator-id rule structure. */
3049 struct route_map_rule_cmd route_set_originator_id_cmd = {
3050 "originator-id", route_set_originator_id,
3051 route_set_originator_id_compile, route_set_originator_id_free,
3052 };
3053
3054 /* Add bgp route map rule. */
3055 static int bgp_route_match_add(struct vty *vty, const char *command,
3056 const char *arg, route_map_event_t type)
3057 {
3058 VTY_DECLVAR_CONTEXT(route_map_index, index);
3059 int retval = CMD_SUCCESS;
3060 int ret;
3061
3062 ret = route_map_add_match(index, command, arg, type);
3063 switch (ret) {
3064 case RMAP_RULE_MISSING:
3065 vty_out(vty, "%% BGP Can't find rule.\n");
3066 retval = CMD_WARNING_CONFIG_FAILED;
3067 break;
3068 case RMAP_COMPILE_ERROR:
3069 vty_out(vty, "%% BGP Argument is malformed.\n");
3070 retval = CMD_WARNING_CONFIG_FAILED;
3071 break;
3072 case RMAP_COMPILE_SUCCESS:
3073 if (type != RMAP_EVENT_MATCH_ADDED) {
3074 route_map_upd8_dependency(type, arg, index->map->name);
3075 }
3076 break;
3077 }
3078
3079 return retval;
3080 }
3081
3082 /* Delete bgp route map rule. */
3083 static int bgp_route_match_delete(struct vty *vty, const char *command,
3084 const char *arg, route_map_event_t type)
3085 {
3086 VTY_DECLVAR_CONTEXT(route_map_index, index);
3087 int ret;
3088 int retval = CMD_SUCCESS;
3089 char *dep_name = NULL;
3090 const char *tmpstr;
3091 char *rmap_name = NULL;
3092
3093 if (type != RMAP_EVENT_MATCH_DELETED) {
3094 /* ignore the mundane, the types without any dependency */
3095 if (arg == NULL) {
3096 if ((tmpstr = route_map_get_match_arg(index, command))
3097 != NULL)
3098 dep_name =
3099 XSTRDUP(MTYPE_ROUTE_MAP_RULE, tmpstr);
3100 } else {
3101 dep_name = XSTRDUP(MTYPE_ROUTE_MAP_RULE, arg);
3102 }
3103 rmap_name = XSTRDUP(MTYPE_ROUTE_MAP_NAME, index->map->name);
3104 }
3105
3106 ret = route_map_delete_match(index, command, dep_name);
3107 switch (ret) {
3108 case RMAP_RULE_MISSING:
3109 vty_out(vty, "%% BGP Can't find rule.\n");
3110 retval = CMD_WARNING_CONFIG_FAILED;
3111 break;
3112 case RMAP_COMPILE_ERROR:
3113 vty_out(vty, "%% BGP Argument is malformed.\n");
3114 retval = CMD_WARNING_CONFIG_FAILED;
3115 break;
3116 case RMAP_COMPILE_SUCCESS:
3117 if (type != RMAP_EVENT_MATCH_DELETED && dep_name)
3118 route_map_upd8_dependency(type, dep_name, rmap_name);
3119 break;
3120 }
3121
3122 XFREE(MTYPE_ROUTE_MAP_RULE, dep_name);
3123 XFREE(MTYPE_ROUTE_MAP_NAME, rmap_name);
3124
3125 return retval;
3126 }
3127
3128 /*
3129 * This is the workhorse routine for processing in/out routemap
3130 * modifications.
3131 */
3132 static void bgp_route_map_process_peer(const char *rmap_name,
3133 struct route_map *map, struct peer *peer,
3134 int afi, int safi, int route_update)
3135 {
3136 struct bgp_filter *filter;
3137
3138 if (!peer || !rmap_name)
3139 return;
3140
3141 filter = &peer->filter[afi][safi];
3142 /*
3143 * in is for non-route-server clients,
3144 * out is for all peers
3145 */
3146 if (filter->map[RMAP_IN].name
3147 && (strcmp(rmap_name, filter->map[RMAP_IN].name) == 0)) {
3148 filter->map[RMAP_IN].map = map;
3149
3150 if (route_update && peer->status == Established) {
3151 if (CHECK_FLAG(peer->af_flags[afi][safi],
3152 PEER_FLAG_SOFT_RECONFIG)) {
3153 if (bgp_debug_update(peer, NULL, NULL, 1))
3154 zlog_debug(
3155 "Processing route_map %s update on peer %s (inbound, soft-reconfig)",
3156 rmap_name, peer->host);
3157
3158 bgp_soft_reconfig_in(peer, afi, safi);
3159 } else if (CHECK_FLAG(peer->cap,
3160 PEER_CAP_REFRESH_OLD_RCV)
3161 || CHECK_FLAG(peer->cap,
3162 PEER_CAP_REFRESH_NEW_RCV)) {
3163 if (bgp_debug_update(peer, NULL, NULL, 1))
3164 zlog_debug(
3165 "Processing route_map %s update on peer %s (inbound, route-refresh)",
3166 rmap_name, peer->host);
3167 bgp_route_refresh_send(peer, afi, safi, 0, 0,
3168 0);
3169 }
3170 }
3171 }
3172
3173 /*
3174 * For outbound, unsuppress and default-originate map change (content or
3175 * map created), merely update the "config" here, the actual route
3176 * announcement happens at the group level.
3177 */
3178 if (filter->map[RMAP_OUT].name
3179 && (strcmp(rmap_name, filter->map[RMAP_OUT].name) == 0))
3180 filter->map[RMAP_OUT].map = map;
3181
3182 if (filter->usmap.name && (strcmp(rmap_name, filter->usmap.name) == 0))
3183 filter->usmap.map = map;
3184
3185 if (peer->default_rmap[afi][safi].name
3186 && (strcmp(rmap_name, peer->default_rmap[afi][safi].name) == 0))
3187 peer->default_rmap[afi][safi].map = map;
3188 }
3189
3190 static void bgp_route_map_update_peer_group(const char *rmap_name,
3191 struct route_map *map,
3192 struct bgp *bgp)
3193 {
3194 struct peer_group *group;
3195 struct listnode *node, *nnode;
3196 struct bgp_filter *filter;
3197 int afi, safi;
3198 int direct;
3199
3200 if (!bgp)
3201 return;
3202
3203 /* All the peers have been updated correctly already. This is
3204 * just updating the placeholder data. No real update required.
3205 */
3206 for (ALL_LIST_ELEMENTS(bgp->group, node, nnode, group)) {
3207 FOREACH_AFI_SAFI (afi, safi) {
3208 filter = &group->conf->filter[afi][safi];
3209
3210 for (direct = RMAP_IN; direct < RMAP_MAX; direct++) {
3211 if ((filter->map[direct].name)
3212 && (strcmp(rmap_name,
3213 filter->map[direct].name)
3214 == 0))
3215 filter->map[direct].map = map;
3216 }
3217
3218 if (filter->usmap.name
3219 && (strcmp(rmap_name, filter->usmap.name) == 0))
3220 filter->usmap.map = map;
3221 }
3222 }
3223 }
3224
3225 /*
3226 * Note that if an extreme number (tens of thousands) of route-maps are in use
3227 * and if bgp has an extreme number of peers, network statements, etc then this
3228 * function can consume a lot of cycles. This is due to this function being
3229 * called for each route-map and within this function we walk the list of peers,
3230 * network statements, etc looking to see if they use this route-map.
3231 */
3232 static void bgp_route_map_process_update(struct bgp *bgp, const char *rmap_name,
3233 int route_update)
3234 {
3235 int i;
3236 afi_t afi;
3237 safi_t safi;
3238 struct peer *peer;
3239 struct bgp_node *bn;
3240 struct bgp_static *bgp_static;
3241 struct listnode *node, *nnode;
3242 struct route_map *map;
3243 char buf[INET6_ADDRSTRLEN];
3244
3245 map = route_map_lookup_by_name(rmap_name);
3246
3247 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
3248
3249 /* Ignore dummy peer-group structure */
3250 if (CHECK_FLAG(peer->sflags, PEER_STATUS_GROUP))
3251 continue;
3252
3253 FOREACH_AFI_SAFI (afi, safi) {
3254 /* process in/out/import/export/default-orig
3255 * route-maps */
3256 bgp_route_map_process_peer(rmap_name, map, peer, afi,
3257 safi, route_update);
3258 }
3259 }
3260
3261 /* for outbound/default-orig route-maps, process for groups */
3262 update_group_policy_update(bgp, BGP_POLICY_ROUTE_MAP, rmap_name,
3263 route_update, 0);
3264
3265 /* update peer-group config (template) */
3266 bgp_route_map_update_peer_group(rmap_name, map, bgp);
3267
3268 FOREACH_AFI_SAFI (afi, safi) {
3269 /* For table route-map updates. */
3270 if (!bgp_fibupd_safi(safi))
3271 continue;
3272
3273 if (bgp->table_map[afi][safi].name
3274 && (strcmp(rmap_name, bgp->table_map[afi][safi].name)
3275 == 0)) {
3276
3277 /* bgp->table_map[afi][safi].map is NULL.
3278 * i.e Route map creation event.
3279 * So update applied_counter.
3280 * If it is not NULL, i.e It may be routemap updation or
3281 * deletion. so no need to update the counter.
3282 */
3283 if (!bgp->table_map[afi][safi].map)
3284 route_map_counter_increment(map);
3285 bgp->table_map[afi][safi].map = map;
3286
3287 if (BGP_DEBUG(zebra, ZEBRA))
3288 zlog_debug(
3289 "Processing route_map %s update on "
3290 "table map",
3291 rmap_name);
3292 if (route_update)
3293 bgp_zebra_announce_table(bgp, afi, safi);
3294 }
3295
3296 /* For network route-map updates. */
3297 for (bn = bgp_table_top(bgp->route[afi][safi]); bn;
3298 bn = bgp_route_next(bn)) {
3299 bgp_static = bgp_node_get_bgp_static_info(bn);
3300 if (!bgp_static)
3301 continue;
3302
3303 if (!bgp_static->rmap.name
3304 || (strcmp(rmap_name, bgp_static->rmap.name) != 0))
3305 continue;
3306
3307 if (!bgp_static->rmap.map)
3308 route_map_counter_increment(map);
3309
3310 bgp_static->rmap.map = map;
3311
3312 if (route_update && !bgp_static->backdoor) {
3313 if (bgp_debug_zebra(&bn->p))
3314 zlog_debug(
3315 "Processing route_map %s update on static route %s",
3316 rmap_name,
3317 inet_ntop(bn->p.family,
3318 &bn->p.u.prefix, buf,
3319 INET6_ADDRSTRLEN));
3320 bgp_static_update(bgp, &bn->p, bgp_static, afi,
3321 safi);
3322 }
3323 }
3324 }
3325
3326 /* For redistribute route-map updates. */
3327 for (afi = AFI_IP; afi < AFI_MAX; afi++)
3328 for (i = 0; i < ZEBRA_ROUTE_MAX; i++) {
3329 struct list *red_list;
3330 struct bgp_redist *red;
3331
3332 red_list = bgp->redist[afi][i];
3333 if (!red_list)
3334 continue;
3335
3336 for (ALL_LIST_ELEMENTS_RO(red_list, node, red)) {
3337 if (!red->rmap.name
3338 || (strcmp(rmap_name, red->rmap.name) != 0))
3339 continue;
3340
3341 if (!red->rmap.map)
3342 route_map_counter_increment(map);
3343
3344 red->rmap.map = map;
3345
3346 if (!route_update)
3347 continue;
3348
3349 if (BGP_DEBUG(zebra, ZEBRA))
3350 zlog_debug(
3351 "Processing route_map %s update on redistributed routes",
3352 rmap_name);
3353
3354 bgp_redistribute_resend(bgp, afi, i,
3355 red->instance);
3356 }
3357 }
3358
3359 /* for type5 command route-maps */
3360 FOREACH_AFI_SAFI (afi, safi) {
3361 if (!bgp->adv_cmd_rmap[afi][safi].name
3362 || strcmp(rmap_name, bgp->adv_cmd_rmap[afi][safi].name)
3363 != 0)
3364 continue;
3365
3366 /* Make sure the route-map is populated here if not already done */
3367 bgp->adv_cmd_rmap[afi][safi].map = map;
3368
3369 if (BGP_DEBUG(zebra, ZEBRA))
3370 zlog_debug(
3371 "Processing route_map %s update on advertise type5 route command",
3372 rmap_name);
3373
3374 if (route_update && advertise_type5_routes(bgp, afi)) {
3375 bgp_evpn_withdraw_type5_routes(bgp, afi, safi);
3376 bgp_evpn_advertise_type5_routes(bgp, afi, safi);
3377 }
3378 }
3379 }
3380
3381 static void bgp_route_map_process_update_cb(char *rmap_name)
3382 {
3383 struct listnode *node, *nnode;
3384 struct bgp *bgp;
3385
3386 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
3387 bgp_route_map_process_update(bgp, rmap_name, 1);
3388
3389 #if ENABLE_BGP_VNC
3390 /* zlog_debug("%s: calling vnc_routemap_update", __func__); */
3391 vnc_routemap_update(bgp, __func__);
3392 #endif
3393 }
3394
3395 vpn_policy_routemap_event(rmap_name);
3396 }
3397
3398 int bgp_route_map_update_timer(struct thread *thread)
3399 {
3400 bm->t_rmap_update = NULL;
3401
3402 route_map_walk_update_list(bgp_route_map_process_update_cb);
3403
3404 return (0);
3405 }
3406
3407 static void bgp_route_map_mark_update(const char *rmap_name)
3408 {
3409 if (bm->t_rmap_update == NULL) {
3410 struct listnode *node, *nnode;
3411 struct bgp *bgp;
3412
3413 /* rmap_update_timer of 0 means don't do route updates */
3414 if (bm->rmap_update_timer) {
3415 bm->t_rmap_update = NULL;
3416 thread_add_timer(bm->master, bgp_route_map_update_timer,
3417 NULL, bm->rmap_update_timer,
3418 &bm->t_rmap_update);
3419
3420 /* Signal the groups that a route-map update event has
3421 * started */
3422 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp))
3423 update_group_policy_update(bgp,
3424 BGP_POLICY_ROUTE_MAP,
3425 rmap_name, 1, 1);
3426 } else {
3427 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp))
3428 bgp_route_map_process_update(bgp, rmap_name, 0);
3429 #if ENABLE_BGP_VNC
3430 zlog_debug("%s: calling vnc_routemap_update", __func__);
3431 vnc_routemap_update(bgp, __func__);
3432 #endif
3433 }
3434 }
3435 }
3436
3437 static void bgp_route_map_add(const char *rmap_name)
3438 {
3439 if (route_map_mark_updated(rmap_name) == 0)
3440 bgp_route_map_mark_update(rmap_name);
3441
3442 route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED);
3443 }
3444
3445 static void bgp_route_map_delete(const char *rmap_name)
3446 {
3447 if (route_map_mark_updated(rmap_name) == 0)
3448 bgp_route_map_mark_update(rmap_name);
3449
3450 route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_DELETED);
3451 }
3452
3453 static void bgp_route_map_event(const char *rmap_name)
3454 {
3455 if (route_map_mark_updated(rmap_name) == 0)
3456 bgp_route_map_mark_update(rmap_name);
3457
3458 route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED);
3459 }
3460
3461 DEFUN (match_mac_address,
3462 match_mac_address_cmd,
3463 "match mac address WORD",
3464 MATCH_STR
3465 "mac address\n"
3466 "Match address of route\n"
3467 "MAC Access-list name\n")
3468 {
3469 return bgp_route_match_add(vty, "mac address", argv[3]->arg,
3470 RMAP_EVENT_FILTER_ADDED);
3471 }
3472
3473 DEFUN (no_match_mac_address,
3474 no_match_mac_address_cmd,
3475 "no match mac address WORD",
3476 NO_STR
3477 MATCH_STR
3478 "mac\n"
3479 "Match address of route\n"
3480 "MAC acess-list name\n")
3481 {
3482 return bgp_route_match_delete(vty, "mac address", argv[4]->arg,
3483 RMAP_EVENT_FILTER_DELETED);
3484 }
3485
3486 DEFUN (match_evpn_route_type,
3487 match_evpn_route_type_cmd,
3488 "match evpn route-type <macip | multicast | prefix>",
3489 MATCH_STR
3490 EVPN_HELP_STR
3491 "Match route-type\n"
3492 "mac-ip route\n"
3493 "IMET route\n"
3494 "prefix route\n")
3495 {
3496 return bgp_route_match_add(vty, "evpn route-type", argv[3]->arg,
3497 RMAP_EVENT_MATCH_ADDED);
3498 }
3499
3500 DEFUN (no_match_evpn_route_type,
3501 no_match_evpn_route_type_cmd,
3502 "no match evpn route-type <macip | multicast | prefix>",
3503 NO_STR
3504 MATCH_STR
3505 EVPN_HELP_STR
3506 "Match route-type\n"
3507 "mac-ip route\n"
3508 "IMET route\n"
3509 "prefix route\n")
3510 {
3511 return bgp_route_match_delete(vty, "evpn route-type", argv[4]->arg,
3512 RMAP_EVENT_MATCH_DELETED);
3513 }
3514
3515
3516 DEFUN (match_evpn_vni,
3517 match_evpn_vni_cmd,
3518 "match evpn vni " CMD_VNI_RANGE,
3519 MATCH_STR
3520 EVPN_HELP_STR
3521 "Match VNI\n"
3522 "VNI ID\n")
3523 {
3524 return bgp_route_match_add(vty, "evpn vni", argv[3]->arg,
3525 RMAP_EVENT_MATCH_ADDED);
3526 }
3527
3528 DEFUN (no_match_evpn_vni,
3529 no_match_evpn_vni_cmd,
3530 "no match evpn vni " CMD_VNI_RANGE,
3531 NO_STR
3532 MATCH_STR
3533 EVPN_HELP_STR
3534 "Match VNI\n"
3535 "VNI ID\n")
3536 {
3537 return bgp_route_match_delete(vty, "evpn vni", argv[4]->arg,
3538 RMAP_EVENT_MATCH_DELETED);
3539 }
3540
3541 DEFUN (match_evpn_default_route,
3542 match_evpn_default_route_cmd,
3543 "match evpn default-route",
3544 MATCH_STR
3545 EVPN_HELP_STR
3546 "default EVPN type-5 route\n")
3547 {
3548 return bgp_route_match_add(vty, "evpn default-route", NULL,
3549 RMAP_EVENT_MATCH_ADDED);
3550 }
3551
3552 DEFUN (no_match_evpn_default_route,
3553 no_match_evpn_default_route_cmd,
3554 "no match evpn default-route",
3555 NO_STR
3556 MATCH_STR
3557 EVPN_HELP_STR
3558 "default EVPN type-5 route\n")
3559 {
3560 return bgp_route_match_delete(vty, "evpn default-route", NULL,
3561 RMAP_EVENT_MATCH_DELETED);
3562 }
3563
3564 DEFPY(match_vrl_source_vrf,
3565 match_vrl_source_vrf_cmd,
3566 "match source-vrf NAME$vrf_name",
3567 MATCH_STR
3568 "source vrf\n"
3569 "The VRF name\n")
3570 {
3571 return bgp_route_match_add(vty, "source-vrf", vrf_name,
3572 RMAP_EVENT_MATCH_ADDED);
3573 }
3574
3575 DEFPY(no_match_vrl_source_vrf,
3576 no_match_vrl_source_vrf_cmd,
3577 "no match source-vrf NAME$vrf_name",
3578 NO_STR
3579 MATCH_STR
3580 "source vrf\n"
3581 "The VRF name\n")
3582 {
3583 return bgp_route_match_delete(vty, "source-vrf", vrf_name,
3584 RMAP_EVENT_MATCH_DELETED);
3585 }
3586
3587 DEFUN (match_peer,
3588 match_peer_cmd,
3589 "match peer <A.B.C.D|X:X::X:X|WORD>",
3590 MATCH_STR
3591 "Match peer address\n"
3592 "IP address of peer\n"
3593 "IPv6 address of peer\n"
3594 "Interface name of peer\n")
3595 {
3596 int idx_ip = 2;
3597 return bgp_route_match_add(vty, "peer", argv[idx_ip]->arg,
3598 RMAP_EVENT_MATCH_ADDED);
3599 }
3600
3601 DEFUN (match_peer_local,
3602 match_peer_local_cmd,
3603 "match peer local",
3604 MATCH_STR
3605 "Match peer address\n"
3606 "Static or Redistributed routes\n")
3607 {
3608 return bgp_route_match_add(vty, "peer", "local",
3609 RMAP_EVENT_MATCH_DELETED);
3610 }
3611
3612 DEFUN (no_match_peer,
3613 no_match_peer_cmd,
3614 "no match peer [<local|A.B.C.D|X:X::X:X|WORD>]",
3615 NO_STR
3616 MATCH_STR
3617 "Match peer address\n"
3618 "Static or Redistributed routes\n"
3619 "IP address of peer\n"
3620 "IPv6 address of peer\n"
3621 "Interface name of peer\n")
3622 {
3623 int idx_peer = 3;
3624
3625 if (argc <= idx_peer)
3626 return bgp_route_match_delete(vty, "peer", NULL,
3627 RMAP_EVENT_MATCH_DELETED);
3628 return bgp_route_match_delete(vty, "peer", argv[idx_peer]->arg,
3629 RMAP_EVENT_MATCH_DELETED);
3630 }
3631
3632 #if defined(HAVE_LUA)
3633 DEFUN (match_command,
3634 match_command_cmd,
3635 "match command WORD",
3636 MATCH_STR
3637 "Run a command to match\n"
3638 "The command to run\n")
3639 {
3640 return bgp_route_match_add(vty, "command", argv[2]->arg,
3641 RMAP_EVENT_FILTER_ADDED);
3642 }
3643
3644 DEFUN (no_match_command,
3645 no_match_command_cmd,
3646 "no match command WORD",
3647 NO_STR
3648 MATCH_STR
3649 "Run a command to match\n"
3650 "The command to run\n")
3651 {
3652 return bgp_route_match_delete(vty, "command", argv[3]->arg,
3653 RMAP_EVENT_FILTER_DELETED);
3654 }
3655 #endif
3656
3657 /* match probability */
3658 DEFUN (match_probability,
3659 match_probability_cmd,
3660 "match probability (0-100)",
3661 MATCH_STR
3662 "Match portion of routes defined by percentage value\n"
3663 "Percentage of routes\n")
3664 {
3665 int idx_number = 2;
3666 return bgp_route_match_add(vty, "probability", argv[idx_number]->arg,
3667 RMAP_EVENT_MATCH_ADDED);
3668 }
3669
3670
3671 DEFUN (no_match_probability,
3672 no_match_probability_cmd,
3673 "no match probability [(1-99)]",
3674 NO_STR
3675 MATCH_STR
3676 "Match portion of routes defined by percentage value\n"
3677 "Percentage of routes\n")
3678 {
3679 int idx_number = 3;
3680 if (argc <= idx_number)
3681 return bgp_route_match_delete(vty, "probability", NULL,
3682 RMAP_EVENT_MATCH_DELETED);
3683 return bgp_route_match_delete(vty, "probability", argv[idx_number]->arg,
3684 RMAP_EVENT_MATCH_DELETED);
3685 }
3686
3687
3688 DEFUN (match_ip_route_source,
3689 match_ip_route_source_cmd,
3690 "match ip route-source <(1-199)|(1300-2699)|WORD>",
3691 MATCH_STR
3692 IP_STR
3693 "Match advertising source address of route\n"
3694 "IP access-list number\n"
3695 "IP access-list number (expanded range)\n"
3696 "IP standard access-list name\n")
3697 {
3698 int idx_acl = 3;
3699 return bgp_route_match_add(vty, "ip route-source", argv[idx_acl]->arg,
3700 RMAP_EVENT_FILTER_ADDED);
3701 }
3702
3703
3704 DEFUN (no_match_ip_route_source,
3705 no_match_ip_route_source_cmd,
3706 "no match ip route-source [<(1-199)|(1300-2699)|WORD>]",
3707 NO_STR
3708 MATCH_STR
3709 IP_STR
3710 "Match advertising source address of route\n"
3711 "IP access-list number\n"
3712 "IP access-list number (expanded range)\n"
3713 "IP standard access-list name\n")
3714 {
3715 int idx_number = 4;
3716 if (argc <= idx_number)
3717 return bgp_route_match_delete(vty, "ip route-source", NULL,
3718 RMAP_EVENT_FILTER_DELETED);
3719 return bgp_route_match_delete(vty, "ip route-source",
3720 argv[idx_number]->arg,
3721 RMAP_EVENT_FILTER_DELETED);
3722 }
3723
3724
3725 DEFUN (match_ip_route_source_prefix_list,
3726 match_ip_route_source_prefix_list_cmd,
3727 "match ip route-source prefix-list WORD",
3728 MATCH_STR
3729 IP_STR
3730 "Match advertising source address of route\n"
3731 "Match entries of prefix-lists\n"
3732 "IP prefix-list name\n")
3733 {
3734 int idx_word = 4;
3735 return bgp_route_match_add(vty, "ip route-source prefix-list",
3736 argv[idx_word]->arg, RMAP_EVENT_PLIST_ADDED);
3737 }
3738
3739
3740 DEFUN (no_match_ip_route_source_prefix_list,
3741 no_match_ip_route_source_prefix_list_cmd,
3742 "no match ip route-source prefix-list [WORD]",
3743 NO_STR
3744 MATCH_STR
3745 IP_STR
3746 "Match advertising source address of route\n"
3747 "Match entries of prefix-lists\n"
3748 "IP prefix-list name\n")
3749 {
3750 int idx_word = 5;
3751 if (argc <= idx_word)
3752 return bgp_route_match_delete(vty,
3753 "ip route-source prefix-list",
3754 NULL, RMAP_EVENT_PLIST_DELETED);
3755 return bgp_route_match_delete(vty, "ip route-source prefix-list",
3756 argv[idx_word]->arg,
3757 RMAP_EVENT_PLIST_DELETED);
3758 }
3759
3760
3761 DEFUN (match_local_pref,
3762 match_local_pref_cmd,
3763 "match local-preference (0-4294967295)",
3764 MATCH_STR
3765 "Match local-preference of route\n"
3766 "Metric value\n")
3767 {
3768 int idx_number = 2;
3769 return bgp_route_match_add(vty, "local-preference",
3770 argv[idx_number]->arg,
3771 RMAP_EVENT_MATCH_ADDED);
3772 }
3773
3774
3775 DEFUN (no_match_local_pref,
3776 no_match_local_pref_cmd,
3777 "no match local-preference [(0-4294967295)]",
3778 NO_STR
3779 MATCH_STR
3780 "Match local preference of route\n"
3781 "Local preference value\n")
3782 {
3783 int idx_localpref = 3;
3784 if (argc <= idx_localpref)
3785 return bgp_route_match_delete(vty, "local-preference", NULL,
3786 RMAP_EVENT_MATCH_DELETED);
3787 return bgp_route_match_delete(vty, "local-preference",
3788 argv[idx_localpref]->arg,
3789 RMAP_EVENT_MATCH_DELETED);
3790 }
3791
3792
3793 DEFUN (match_community,
3794 match_community_cmd,
3795 "match community <(1-99)|(100-500)|WORD> [exact-match]",
3796 MATCH_STR
3797 "Match BGP community list\n"
3798 "Community-list number (standard)\n"
3799 "Community-list number (expanded)\n"
3800 "Community-list name\n"
3801 "Do exact matching of communities\n")
3802 {
3803 int idx_comm_list = 2;
3804 int ret;
3805 char *argstr;
3806
3807 if (argc == 4) {
3808 argstr = XMALLOC(MTYPE_ROUTE_MAP_COMPILED,
3809 strlen(argv[idx_comm_list]->arg)
3810 + strlen("exact-match") + 2);
3811
3812 sprintf(argstr, "%s exact-match", argv[idx_comm_list]->arg);
3813 } else
3814 argstr = argv[idx_comm_list]->arg;
3815
3816 ret = bgp_route_match_add(vty, "community", argstr,
3817 RMAP_EVENT_CLIST_ADDED);
3818
3819 if (argstr != argv[idx_comm_list]->arg)
3820 XFREE(MTYPE_ROUTE_MAP_COMPILED, argstr);
3821
3822 return ret;
3823 }
3824
3825 DEFUN (no_match_community,
3826 no_match_community_cmd,
3827 "no match community [<(1-99)|(100-500)|WORD> [exact-match]]",
3828 NO_STR
3829 MATCH_STR
3830 "Match BGP community list\n"
3831 "Community-list number (standard)\n"
3832 "Community-list number (expanded)\n"
3833 "Community-list name\n"
3834 "Do exact matching of communities\n")
3835 {
3836 return bgp_route_match_delete(vty, "community", NULL,
3837 RMAP_EVENT_CLIST_DELETED);
3838 }
3839
3840 DEFUN (match_lcommunity,
3841 match_lcommunity_cmd,
3842 "match large-community <(1-99)|(100-500)|WORD> [exact-match]",
3843 MATCH_STR
3844 "Match BGP large community list\n"
3845 "Large Community-list number (standard)\n"
3846 "Large Community-list number (expanded)\n"
3847 "Large Community-list name\n"
3848 "Do exact matching of communities\n")
3849 {
3850 int idx_lcomm_list = 2;
3851 int ret;
3852 char *argstr;
3853
3854 if (argc == 4) {
3855 argstr = XMALLOC(MTYPE_ROUTE_MAP_COMPILED,
3856 strlen(argv[idx_lcomm_list]->arg)
3857 + strlen("exact-match") + 2);
3858
3859 sprintf(argstr, "%s exact-match", argv[idx_lcomm_list]->arg);
3860 } else
3861 argstr = argv[idx_lcomm_list]->arg;
3862
3863 ret = bgp_route_match_add(vty, "large-community", argstr,
3864 RMAP_EVENT_LLIST_ADDED);
3865 if (argstr != argv[idx_lcomm_list]->arg)
3866 XFREE(MTYPE_ROUTE_MAP_COMPILED, argstr);
3867
3868 return ret;
3869 }
3870
3871 DEFUN (no_match_lcommunity,
3872 no_match_lcommunity_cmd,
3873 "no match large-community [<(1-99)|(100-500)|WORD> [exact-match]]",
3874 NO_STR
3875 MATCH_STR
3876 "Match BGP large community list\n"
3877 "Large Community-list number (standard)\n"
3878 "Large Community-list number (expanded)\n"
3879 "Large Community-list name\n"
3880 "Do exact matching of communities\n")
3881 {
3882 return bgp_route_match_delete(vty, "large-community", NULL,
3883 RMAP_EVENT_LLIST_DELETED);
3884 }
3885
3886 DEFUN (match_ecommunity,
3887 match_ecommunity_cmd,
3888 "match extcommunity <(1-99)|(100-500)|WORD>",
3889 MATCH_STR
3890 "Match BGP/VPN extended community list\n"
3891 "Extended community-list number (standard)\n"
3892 "Extended community-list number (expanded)\n"
3893 "Extended community-list name\n")
3894 {
3895 int idx_comm_list = 2;
3896 return bgp_route_match_add(vty, "extcommunity",
3897 argv[idx_comm_list]->arg,
3898 RMAP_EVENT_ECLIST_ADDED);
3899 }
3900
3901
3902 DEFUN (no_match_ecommunity,
3903 no_match_ecommunity_cmd,
3904 "no match extcommunity [<(1-99)|(100-500)|WORD>]",
3905 NO_STR
3906 MATCH_STR
3907 "Match BGP/VPN extended community list\n"
3908 "Extended community-list number (standard)\n"
3909 "Extended community-list number (expanded)\n"
3910 "Extended community-list name\n")
3911 {
3912 return bgp_route_match_delete(vty, "extcommunity", NULL,
3913 RMAP_EVENT_ECLIST_DELETED);
3914 }
3915
3916
3917 DEFUN (match_aspath,
3918 match_aspath_cmd,
3919 "match as-path WORD",
3920 MATCH_STR
3921 "Match BGP AS path list\n"
3922 "AS path access-list name\n")
3923 {
3924 int idx_word = 2;
3925 return bgp_route_match_add(vty, "as-path", argv[idx_word]->arg,
3926 RMAP_EVENT_ASLIST_ADDED);
3927 }
3928
3929
3930 DEFUN (no_match_aspath,
3931 no_match_aspath_cmd,
3932 "no match as-path [WORD]",
3933 NO_STR
3934 MATCH_STR
3935 "Match BGP AS path list\n"
3936 "AS path access-list name\n")
3937 {
3938 return bgp_route_match_delete(vty, "as-path", NULL,
3939 RMAP_EVENT_ASLIST_DELETED);
3940 }
3941
3942
3943 DEFUN (match_origin,
3944 match_origin_cmd,
3945 "match origin <egp|igp|incomplete>",
3946 MATCH_STR
3947 "BGP origin code\n"
3948 "remote EGP\n"
3949 "local IGP\n"
3950 "unknown heritage\n")
3951 {
3952 int idx_origin = 2;
3953 if (strncmp(argv[idx_origin]->arg, "igp", 2) == 0)
3954 return bgp_route_match_add(vty, "origin", "igp",
3955 RMAP_EVENT_MATCH_ADDED);
3956 if (strncmp(argv[idx_origin]->arg, "egp", 1) == 0)
3957 return bgp_route_match_add(vty, "origin", "egp",
3958 RMAP_EVENT_MATCH_ADDED);
3959 if (strncmp(argv[idx_origin]->arg, "incomplete", 2) == 0)
3960 return bgp_route_match_add(vty, "origin", "incomplete",
3961 RMAP_EVENT_MATCH_ADDED);
3962
3963 vty_out(vty, "%% Invalid match origin type\n");
3964 return CMD_WARNING_CONFIG_FAILED;
3965 }
3966
3967
3968 DEFUN (no_match_origin,
3969 no_match_origin_cmd,
3970 "no match origin [<egp|igp|incomplete>]",
3971 NO_STR
3972 MATCH_STR
3973 "BGP origin code\n"
3974 "remote EGP\n"
3975 "local IGP\n"
3976 "unknown heritage\n")
3977 {
3978 return bgp_route_match_delete(vty, "origin", NULL,
3979 RMAP_EVENT_MATCH_DELETED);
3980 }
3981
3982 DEFUN (set_ip_nexthop_peer,
3983 set_ip_nexthop_peer_cmd,
3984 "[no] set ip next-hop peer-address",
3985 NO_STR
3986 SET_STR
3987 IP_STR
3988 "Next hop address\n"
3989 "Use peer address (for BGP only)\n")
3990 {
3991 int (*func)(struct vty *, struct route_map_index *, const char *,
3992 const char *) = strmatch(argv[0]->text, "no")
3993 ? generic_set_delete
3994 : generic_set_add;
3995
3996 return func(vty, VTY_GET_CONTEXT(route_map_index), "ip next-hop",
3997 "peer-address");
3998 }
3999
4000 DEFUN (set_ip_nexthop_unchanged,
4001 set_ip_nexthop_unchanged_cmd,
4002 "[no] set ip next-hop unchanged",
4003 NO_STR
4004 SET_STR
4005 IP_STR
4006 "Next hop address\n"
4007 "Don't modify existing Next hop address\n")
4008 {
4009 int (*func)(struct vty *, struct route_map_index *, const char *,
4010 const char *) = strmatch(argv[0]->text, "no")
4011 ? generic_set_delete
4012 : generic_set_add;
4013
4014 return func(vty, VTY_GET_CONTEXT(route_map_index), "ip next-hop",
4015 "unchanged");
4016 }
4017
4018
4019 DEFUN (set_local_pref,
4020 set_local_pref_cmd,
4021 "set local-preference (0-4294967295)",
4022 SET_STR
4023 "BGP local preference path attribute\n"
4024 "Preference value\n")
4025 {
4026 int idx_number = 2;
4027 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4028 "local-preference", argv[idx_number]->arg);
4029 }
4030
4031
4032 DEFUN (no_set_local_pref,
4033 no_set_local_pref_cmd,
4034 "no set local-preference [(0-4294967295)]",
4035 NO_STR
4036 SET_STR
4037 "BGP local preference path attribute\n"
4038 "Preference value\n")
4039 {
4040 int idx_localpref = 3;
4041 if (argc <= idx_localpref)
4042 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4043 "local-preference", NULL);
4044 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4045 "local-preference", argv[idx_localpref]->arg);
4046 }
4047
4048
4049 DEFUN (set_weight,
4050 set_weight_cmd,
4051 "set weight (0-4294967295)",
4052 SET_STR
4053 "BGP weight for routing table\n"
4054 "Weight value\n")
4055 {
4056 int idx_number = 2;
4057 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index), "weight",
4058 argv[idx_number]->arg);
4059 }
4060
4061
4062 DEFUN (no_set_weight,
4063 no_set_weight_cmd,
4064 "no set weight [(0-4294967295)]",
4065 NO_STR
4066 SET_STR
4067 "BGP weight for routing table\n"
4068 "Weight value\n")
4069 {
4070 int idx_weight = 3;
4071 if (argc <= idx_weight)
4072 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4073 "weight", NULL);
4074 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4075 "weight", argv[idx_weight]->arg);
4076 }
4077
4078 DEFUN (set_label_index,
4079 set_label_index_cmd,
4080 "set label-index (0-1048560)",
4081 SET_STR
4082 "Label index to associate with the prefix\n"
4083 "Label index value\n")
4084 {
4085 int idx_number = 2;
4086 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4087 "label-index", argv[idx_number]->arg);
4088 }
4089
4090 DEFUN (no_set_label_index,
4091 no_set_label_index_cmd,
4092 "no set label-index [(0-1048560)]",
4093 NO_STR
4094 SET_STR
4095 "Label index to associate with the prefix\n"
4096 "Label index value\n")
4097 {
4098 int idx_label_index = 3;
4099 if (argc <= idx_label_index)
4100 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4101 "label-index", NULL);
4102 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4103 "label-index", argv[idx_label_index]->arg);
4104 }
4105
4106 DEFUN (set_aspath_prepend_asn,
4107 set_aspath_prepend_asn_cmd,
4108 "set as-path prepend (1-4294967295)...",
4109 SET_STR
4110 "Transform BGP AS_PATH attribute\n"
4111 "Prepend to the as-path\n"
4112 "AS number\n")
4113 {
4114 int idx_asn = 3;
4115 int ret;
4116 char *str;
4117
4118 str = argv_concat(argv, argc, idx_asn);
4119 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4120 "as-path prepend", str);
4121 XFREE(MTYPE_TMP, str);
4122
4123 return ret;
4124 }
4125
4126 DEFUN (set_aspath_prepend_lastas,
4127 set_aspath_prepend_lastas_cmd,
4128 "set as-path prepend last-as (1-10)",
4129 SET_STR
4130 "Transform BGP AS_PATH attribute\n"
4131 "Prepend to the as-path\n"
4132 "Use the peer's AS-number\n"
4133 "Number of times to insert\n")
4134 {
4135 return set_aspath_prepend_asn(self, vty, argc, argv);
4136 }
4137
4138 DEFUN (no_set_aspath_prepend,
4139 no_set_aspath_prepend_cmd,
4140 "no set as-path prepend [(1-4294967295)]",
4141 NO_STR
4142 SET_STR
4143 "Transform BGP AS_PATH attribute\n"
4144 "Prepend to the as-path\n"
4145 "AS number\n")
4146 {
4147 int idx_asn = 4;
4148 int ret;
4149 char *str;
4150
4151 str = argv_concat(argv, argc, idx_asn);
4152 ret = generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4153 "as-path prepend", str);
4154 XFREE(MTYPE_TMP, str);
4155 return ret;
4156 }
4157
4158
4159 DEFUN (set_aspath_exclude,
4160 set_aspath_exclude_cmd,
4161 "set as-path exclude (1-4294967295)...",
4162 SET_STR
4163 "Transform BGP AS-path attribute\n"
4164 "Exclude from the as-path\n"
4165 "AS number\n")
4166 {
4167 int idx_asn = 3;
4168 int ret;
4169 char *str;
4170
4171 str = argv_concat(argv, argc, idx_asn);
4172 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4173 "as-path exclude", str);
4174 XFREE(MTYPE_TMP, str);
4175 return ret;
4176 }
4177
4178 DEFUN (no_set_aspath_exclude,
4179 no_set_aspath_exclude_cmd,
4180 "no set as-path exclude (1-4294967295)...",
4181 NO_STR
4182 SET_STR
4183 "Transform BGP AS_PATH attribute\n"
4184 "Exclude from the as-path\n"
4185 "AS number\n")
4186 {
4187 int idx_asn = 4;
4188 int ret;
4189 char *str;
4190
4191 str = argv_concat(argv, argc, idx_asn);
4192 ret = generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4193 "as-path exclude", str);
4194 XFREE(MTYPE_TMP, str);
4195 return ret;
4196 }
4197
4198 ALIAS(no_set_aspath_exclude, no_set_aspath_exclude_all_cmd,
4199 "no set as-path exclude",
4200 NO_STR SET_STR
4201 "Transform BGP AS_PATH attribute\n"
4202 "Exclude from the as-path\n")
4203
4204 DEFUN (set_community,
4205 set_community_cmd,
4206 "set community AA:NN...",
4207 SET_STR
4208 "BGP community attribute\n"
4209 COMMUNITY_VAL_STR)
4210 {
4211 int idx_aa_nn = 2;
4212 int i;
4213 int first = 0;
4214 int additive = 0;
4215 struct buffer *b;
4216 struct community *com = NULL;
4217 char *str;
4218 char *argstr;
4219 int ret;
4220
4221 b = buffer_new(1024);
4222
4223 for (i = idx_aa_nn; i < argc; i++) {
4224 if (strncmp(argv[i]->arg, "additive", strlen(argv[i]->arg))
4225 == 0) {
4226 additive = 1;
4227 continue;
4228 }
4229
4230 if (first)
4231 buffer_putc(b, ' ');
4232 else
4233 first = 1;
4234
4235 if (strncmp(argv[i]->arg, "internet", strlen(argv[i]->arg))
4236 == 0) {
4237 buffer_putstr(b, "internet");
4238 continue;
4239 }
4240 if (strncmp(argv[i]->arg, "local-AS", strlen(argv[i]->arg))
4241 == 0) {
4242 buffer_putstr(b, "local-AS");
4243 continue;
4244 }
4245 if (strncmp(argv[i]->arg, "no-a", strlen("no-a")) == 0
4246 && strncmp(argv[i]->arg, "no-advertise",
4247 strlen(argv[i]->arg))
4248 == 0) {
4249 buffer_putstr(b, "no-advertise");
4250 continue;
4251 }
4252 if (strncmp(argv[i]->arg, "no-e", strlen("no-e")) == 0
4253 && strncmp(argv[i]->arg, "no-export", strlen(argv[i]->arg))
4254 == 0) {
4255 buffer_putstr(b, "no-export");
4256 continue;
4257 }
4258 if (strncmp(argv[i]->arg, "graceful-shutdown",
4259 strlen(argv[i]->arg))
4260 == 0) {
4261 buffer_putstr(b, "graceful-shutdown");
4262 continue;
4263 }
4264 buffer_putstr(b, argv[i]->arg);
4265 }
4266 buffer_putc(b, '\0');
4267
4268 /* Fetch result string then compile it to communities attribute. */
4269 str = buffer_getstr(b);
4270 buffer_free(b);
4271
4272 if (str) {
4273 com = community_str2com(str);
4274 XFREE(MTYPE_TMP, str);
4275 }
4276
4277 /* Can't compile user input into communities attribute. */
4278 if (!com) {
4279 vty_out(vty, "%% Malformed communities attribute\n");
4280 return CMD_WARNING_CONFIG_FAILED;
4281 }
4282
4283 /* Set communites attribute string. */
4284 str = community_str(com, false);
4285
4286 if (additive) {
4287 size_t argstr_sz = strlen(str) + strlen(" additive") + 1;
4288 argstr = XCALLOC(MTYPE_TMP, argstr_sz);
4289 strlcpy(argstr, str, argstr_sz);
4290 strlcat(argstr, " additive", argstr_sz);
4291 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4292 "community", argstr);
4293 XFREE(MTYPE_TMP, argstr);
4294 } else
4295 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4296 "community", str);
4297
4298 community_free(&com);
4299
4300 return ret;
4301 }
4302
4303 DEFUN (set_community_none,
4304 set_community_none_cmd,
4305 "set community none",
4306 SET_STR
4307 "BGP community attribute\n"
4308 "No community attribute\n")
4309 {
4310 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4311 "community", "none");
4312 }
4313
4314 DEFUN (no_set_community,
4315 no_set_community_cmd,
4316 "no set community AA:NN...",
4317 NO_STR
4318 SET_STR
4319 "BGP community attribute\n"
4320 COMMUNITY_VAL_STR)
4321 {
4322 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4323 "community", NULL);
4324 }
4325
4326 ALIAS (no_set_community,
4327 no_set_community_short_cmd,
4328 "no set community",
4329 NO_STR
4330 SET_STR
4331 "BGP community attribute\n")
4332
4333
4334 DEFUN (set_community_delete,
4335 set_community_delete_cmd,
4336 "set comm-list <(1-99)|(100-500)|WORD> delete",
4337 SET_STR
4338 "set BGP community list (for deletion)\n"
4339 "Community-list number (standard)\n"
4340 "Community-list number (expanded)\n"
4341 "Community-list name\n"
4342 "Delete matching communities\n")
4343 {
4344 int idx_comm_list = 2;
4345 char *args;
4346
4347 args = argv_concat(argv, argc, idx_comm_list);
4348 generic_set_add(vty, VTY_GET_CONTEXT(route_map_index), "comm-list",
4349 args);
4350 XFREE(MTYPE_TMP, args);
4351
4352 return CMD_SUCCESS;
4353 }
4354
4355 DEFUN (no_set_community_delete,
4356 no_set_community_delete_cmd,
4357 "no set comm-list [<(1-99)|(100-500)|WORD> delete]",
4358 NO_STR
4359 SET_STR
4360 "set BGP community list (for deletion)\n"
4361 "Community-list number (standard)\n"
4362 "Community-list number (expanded)\n"
4363 "Community-list name\n"
4364 "Delete matching communities\n")
4365 {
4366 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4367 "comm-list", NULL);
4368 }
4369
4370 DEFUN (set_lcommunity,
4371 set_lcommunity_cmd,
4372 "set large-community AA:BB:CC...",
4373 SET_STR
4374 "BGP large community attribute\n"
4375 "Large Community number in aa:bb:cc format or additive\n")
4376 {
4377 int ret;
4378 char *str;
4379
4380 str = argv_concat(argv, argc, 2);
4381 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4382 "large-community", str);
4383 XFREE(MTYPE_TMP, str);
4384
4385 return ret;
4386 }
4387
4388 DEFUN (set_lcommunity_none,
4389 set_lcommunity_none_cmd,
4390 "set large-community none",
4391 SET_STR
4392 "BGP large community attribute\n"
4393 "No large community attribute\n")
4394 {
4395 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4396 "large-community", "none");
4397 }
4398
4399 DEFUN (no_set_lcommunity,
4400 no_set_lcommunity_cmd,
4401 "no set large-community none",
4402 NO_STR
4403 SET_STR
4404 "BGP large community attribute\n"
4405 "No community attribute\n")
4406 {
4407 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4408 "large-community", NULL);
4409 }
4410
4411 DEFUN (no_set_lcommunity1,
4412 no_set_lcommunity1_cmd,
4413 "no set large-community AA:BB:CC...",
4414 NO_STR
4415 SET_STR
4416 "BGP large community attribute\n"
4417 "Large community in AA:BB:CC... format or additive\n")
4418 {
4419 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4420 "large-community", NULL);
4421 }
4422
4423 ALIAS (no_set_lcommunity1,
4424 no_set_lcommunity1_short_cmd,
4425 "no set large-community",
4426 NO_STR
4427 SET_STR
4428 "BGP large community attribute\n")
4429
4430 DEFUN (set_lcommunity_delete,
4431 set_lcommunity_delete_cmd,
4432 "set large-comm-list <(1-99)|(100-500)|WORD> delete",
4433 SET_STR
4434 "set BGP large community list (for deletion)\n"
4435 "Large Community-list number (standard)\n"
4436 "Large Communitly-list number (expanded)\n"
4437 "Large Community-list name\n"
4438 "Delete matching large communities\n")
4439 {
4440 int idx_lcomm_list = 2;
4441 char *args;
4442
4443 args = argv_concat(argv, argc, idx_lcomm_list);
4444 generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4445 "large-comm-list", args);
4446 XFREE(MTYPE_TMP, args);
4447
4448 return CMD_SUCCESS;
4449 }
4450
4451 DEFUN (no_set_lcommunity_delete,
4452 no_set_lcommunity_delete_cmd,
4453 "no set large-comm-list <(1-99)|(100-500)|WORD> [delete]",
4454 NO_STR
4455 SET_STR
4456 "set BGP large community list (for deletion)\n"
4457 "Large Community-list number (standard)\n"
4458 "Large Communitly-list number (expanded)\n"
4459 "Large Community-list name\n"
4460 "Delete matching large communities\n")
4461 {
4462 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4463 "large-comm-list", NULL);
4464 }
4465
4466 ALIAS (no_set_lcommunity_delete,
4467 no_set_lcommunity_delete_short_cmd,
4468 "no set large-comm-list",
4469 NO_STR
4470 SET_STR
4471 "set BGP large community list (for deletion)\n")
4472
4473 DEFUN (set_ecommunity_rt,
4474 set_ecommunity_rt_cmd,
4475 "set extcommunity rt ASN:NN_OR_IP-ADDRESS:NN...",
4476 SET_STR
4477 "BGP extended community attribute\n"
4478 "Route Target extended community\n"
4479 "VPN extended community\n")
4480 {
4481 int idx_asn_nn = 3;
4482 int ret;
4483 char *str;
4484
4485 str = argv_concat(argv, argc, idx_asn_nn);
4486 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4487 "extcommunity rt", str);
4488 XFREE(MTYPE_TMP, str);
4489
4490 return ret;
4491 }
4492
4493 DEFUN (no_set_ecommunity_rt,
4494 no_set_ecommunity_rt_cmd,
4495 "no set extcommunity rt ASN:NN_OR_IP-ADDRESS:NN...",
4496 NO_STR
4497 SET_STR
4498 "BGP extended community attribute\n"
4499 "Route Target extended community\n"
4500 "VPN extended community\n")
4501 {
4502 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4503 "extcommunity rt", NULL);
4504 }
4505
4506 ALIAS (no_set_ecommunity_rt,
4507 no_set_ecommunity_rt_short_cmd,
4508 "no set extcommunity rt",
4509 NO_STR
4510 SET_STR
4511 "BGP extended community attribute\n"
4512 "Route Target extended community\n")
4513
4514 DEFUN (set_ecommunity_soo,
4515 set_ecommunity_soo_cmd,
4516 "set extcommunity soo ASN:NN_OR_IP-ADDRESS:NN...",
4517 SET_STR
4518 "BGP extended community attribute\n"
4519 "Site-of-Origin extended community\n"
4520 "VPN extended community\n")
4521 {
4522 int idx_asn_nn = 3;
4523 int ret;
4524 char *str;
4525
4526 str = argv_concat(argv, argc, idx_asn_nn);
4527 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4528 "extcommunity soo", str);
4529 XFREE(MTYPE_TMP, str);
4530 return ret;
4531 }
4532
4533
4534 DEFUN (no_set_ecommunity_soo,
4535 no_set_ecommunity_soo_cmd,
4536 "no set extcommunity soo ASN:NN_OR_IP-ADDRESS:NN...",
4537 NO_STR
4538 SET_STR
4539 "BGP extended community attribute\n"
4540 "Site-of-Origin extended community\n"
4541 "VPN extended community\n")
4542 {
4543 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4544 "extcommunity soo", NULL);
4545 }
4546
4547 ALIAS (no_set_ecommunity_soo,
4548 no_set_ecommunity_soo_short_cmd,
4549 "no set extcommunity soo",
4550 NO_STR
4551 SET_STR
4552 "GP extended community attribute\n"
4553 "Site-of-Origin extended community\n")
4554
4555 DEFUN (set_origin,
4556 set_origin_cmd,
4557 "set origin <egp|igp|incomplete>",
4558 SET_STR
4559 "BGP origin code\n"
4560 "remote EGP\n"
4561 "local IGP\n"
4562 "unknown heritage\n")
4563 {
4564 int idx_origin = 2;
4565 if (strncmp(argv[idx_origin]->arg, "igp", 2) == 0)
4566 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4567 "origin", "igp");
4568 if (strncmp(argv[idx_origin]->arg, "egp", 1) == 0)
4569 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4570 "origin", "egp");
4571 if (strncmp(argv[idx_origin]->arg, "incomplete", 2) == 0)
4572 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4573 "origin", "incomplete");
4574
4575 vty_out(vty, "%% Invalid set origin type\n");
4576 return CMD_WARNING_CONFIG_FAILED;
4577 }
4578
4579
4580 DEFUN (no_set_origin,
4581 no_set_origin_cmd,
4582 "no set origin [<egp|igp|incomplete>]",
4583 NO_STR
4584 SET_STR
4585 "BGP origin code\n"
4586 "remote EGP\n"
4587 "local IGP\n"
4588 "unknown heritage\n")
4589 {
4590 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4591 "origin", NULL);
4592 }
4593
4594
4595 DEFUN (set_atomic_aggregate,
4596 set_atomic_aggregate_cmd,
4597 "set atomic-aggregate",
4598 SET_STR
4599 "BGP atomic aggregate attribute\n" )
4600 {
4601 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4602 "atomic-aggregate", NULL);
4603 }
4604
4605 DEFUN (no_set_atomic_aggregate,
4606 no_set_atomic_aggregate_cmd,
4607 "no set atomic-aggregate",
4608 NO_STR
4609 SET_STR
4610 "BGP atomic aggregate attribute\n" )
4611 {
4612 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4613 "atomic-aggregate", NULL);
4614 }
4615
4616 DEFUN (set_aggregator_as,
4617 set_aggregator_as_cmd,
4618 "set aggregator as (1-4294967295) A.B.C.D",
4619 SET_STR
4620 "BGP aggregator attribute\n"
4621 "AS number of aggregator\n"
4622 "AS number\n"
4623 "IP address of aggregator\n")
4624 {
4625 int idx_number = 3;
4626 int idx_ipv4 = 4;
4627 int ret;
4628 struct in_addr address;
4629 char *argstr;
4630
4631 ret = inet_aton(argv[idx_ipv4]->arg, &address);
4632 if (ret == 0) {
4633 vty_out(vty, "Aggregator IP address is invalid\n");
4634 return CMD_WARNING_CONFIG_FAILED;
4635 }
4636
4637 argstr = XMALLOC(MTYPE_ROUTE_MAP_COMPILED,
4638 strlen(argv[idx_number]->arg)
4639 + strlen(argv[idx_ipv4]->arg) + 2);
4640
4641 sprintf(argstr, "%s %s", argv[idx_number]->arg, argv[idx_ipv4]->arg);
4642
4643 ret = generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4644 "aggregator as", argstr);
4645
4646 XFREE(MTYPE_ROUTE_MAP_COMPILED, argstr);
4647
4648 return ret;
4649 }
4650
4651
4652 DEFUN (no_set_aggregator_as,
4653 no_set_aggregator_as_cmd,
4654 "no set aggregator as [(1-4294967295) A.B.C.D]",
4655 NO_STR
4656 SET_STR
4657 "BGP aggregator attribute\n"
4658 "AS number of aggregator\n"
4659 "AS number\n"
4660 "IP address of aggregator\n")
4661 {
4662 int idx_asn = 4;
4663 int idx_ip = 5;
4664 int ret;
4665 struct in_addr address;
4666 char *argstr;
4667
4668 if (argc <= idx_asn)
4669 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4670 "aggregator as", NULL);
4671
4672 ret = inet_aton(argv[idx_ip]->arg, &address);
4673 if (ret == 0) {
4674 vty_out(vty, "Aggregator IP address is invalid\n");
4675 return CMD_WARNING_CONFIG_FAILED;
4676 }
4677
4678 argstr = XMALLOC(MTYPE_ROUTE_MAP_COMPILED,
4679 strlen(argv[idx_asn]->arg) + strlen(argv[idx_ip]->arg)
4680 + 2);
4681
4682 sprintf(argstr, "%s %s", argv[idx_asn]->arg, argv[idx_ip]->arg);
4683
4684 ret = generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4685 "aggregator as", argstr);
4686
4687 XFREE(MTYPE_ROUTE_MAP_COMPILED, argstr);
4688
4689 return ret;
4690 }
4691
4692 DEFUN (match_ipv6_next_hop,
4693 match_ipv6_next_hop_cmd,
4694 "match ipv6 next-hop X:X::X:X",
4695 MATCH_STR
4696 IPV6_STR
4697 "Match IPv6 next-hop address of route\n"
4698 "IPv6 address of next hop\n")
4699 {
4700 int idx_ipv6 = 3;
4701 return bgp_route_match_add(vty, "ipv6 next-hop", argv[idx_ipv6]->arg,
4702 RMAP_EVENT_MATCH_ADDED);
4703 }
4704
4705 DEFUN (no_match_ipv6_next_hop,
4706 no_match_ipv6_next_hop_cmd,
4707 "no match ipv6 next-hop X:X::X:X",
4708 NO_STR
4709 MATCH_STR
4710 IPV6_STR
4711 "Match IPv6 next-hop address of route\n"
4712 "IPv6 address of next hop\n")
4713 {
4714 int idx_ipv6 = 4;
4715 return bgp_route_match_delete(vty, "ipv6 next-hop", argv[idx_ipv6]->arg,
4716 RMAP_EVENT_MATCH_DELETED);
4717 }
4718
4719
4720 DEFUN (set_ipv6_nexthop_peer,
4721 set_ipv6_nexthop_peer_cmd,
4722 "set ipv6 next-hop peer-address",
4723 SET_STR
4724 IPV6_STR
4725 "Next hop address\n"
4726 "Use peer address (for BGP only)\n")
4727 {
4728 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4729 "ipv6 next-hop peer-address", NULL);
4730 }
4731
4732 DEFUN (no_set_ipv6_nexthop_peer,
4733 no_set_ipv6_nexthop_peer_cmd,
4734 "no set ipv6 next-hop peer-address",
4735 NO_STR
4736 SET_STR
4737 IPV6_STR
4738 "IPv6 next-hop address\n"
4739 "Use peer address (for BGP only)\n")
4740 {
4741 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4742 "ipv6 next-hop peer-address", NULL);
4743 }
4744
4745 DEFUN (set_ipv6_nexthop_prefer_global,
4746 set_ipv6_nexthop_prefer_global_cmd,
4747 "set ipv6 next-hop prefer-global",
4748 SET_STR
4749 IPV6_STR
4750 "IPv6 next-hop address\n"
4751 "Prefer global over link-local if both exist\n")
4752 {
4753 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4754 "ipv6 next-hop prefer-global", NULL);
4755 ;
4756 }
4757
4758 DEFUN (no_set_ipv6_nexthop_prefer_global,
4759 no_set_ipv6_nexthop_prefer_global_cmd,
4760 "no set ipv6 next-hop prefer-global",
4761 NO_STR
4762 SET_STR
4763 IPV6_STR
4764 "IPv6 next-hop address\n"
4765 "Prefer global over link-local if both exist\n")
4766 {
4767 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4768 "ipv6 next-hop prefer-global", NULL);
4769 }
4770
4771 DEFUN (set_ipv6_nexthop_global,
4772 set_ipv6_nexthop_global_cmd,
4773 "set ipv6 next-hop global X:X::X:X",
4774 SET_STR
4775 IPV6_STR
4776 "IPv6 next-hop address\n"
4777 "IPv6 global address\n"
4778 "IPv6 address of next hop\n")
4779 {
4780 int idx_ipv6 = 4;
4781 struct in6_addr addr;
4782 int ret;
4783
4784 ret = inet_pton(AF_INET6, argv[idx_ipv6]->arg, &addr);
4785 if (!ret) {
4786 vty_out(vty, "%% Malformed nexthop address\n");
4787 return CMD_WARNING_CONFIG_FAILED;
4788 }
4789 if (IN6_IS_ADDR_UNSPECIFIED(&addr) || IN6_IS_ADDR_LOOPBACK(&addr)
4790 || IN6_IS_ADDR_MULTICAST(&addr) || IN6_IS_ADDR_LINKLOCAL(&addr)) {
4791 vty_out(vty, "%% Invalid global nexthop address\n");
4792 return CMD_WARNING_CONFIG_FAILED;
4793 }
4794
4795 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4796 "ipv6 next-hop global", argv[idx_ipv6]->arg);
4797 }
4798
4799
4800 DEFUN (no_set_ipv6_nexthop_global,
4801 no_set_ipv6_nexthop_global_cmd,
4802 "no set ipv6 next-hop global X:X::X:X",
4803 NO_STR
4804 SET_STR
4805 IPV6_STR
4806 "IPv6 next-hop address\n"
4807 "IPv6 global address\n"
4808 "IPv6 address of next hop\n")
4809 {
4810 int idx_ipv6 = 5;
4811 if (argc <= idx_ipv6)
4812 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4813 "ipv6 next-hop global", NULL);
4814 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4815 "ipv6 next-hop global", argv[idx_ipv6]->arg);
4816 }
4817
4818 #ifdef KEEP_OLD_VPN_COMMANDS
4819 DEFUN (set_vpn_nexthop,
4820 set_vpn_nexthop_cmd,
4821 "set <vpnv4 next-hop A.B.C.D|vpnv6 next-hop X:X::X:X>",
4822 SET_STR
4823 "VPNv4 information\n"
4824 "VPN next-hop address\n"
4825 "IP address of next hop\n"
4826 "VPNv6 information\n"
4827 "VPN next-hop address\n"
4828 "IPv6 address of next hop\n")
4829 {
4830 int idx_ip = 3;
4831 afi_t afi;
4832 int idx = 0;
4833
4834 if (argv_find_and_parse_vpnvx(argv, argc, &idx, &afi)) {
4835 if (afi == AFI_IP)
4836 return generic_set_add(
4837 vty, VTY_GET_CONTEXT(route_map_index),
4838 "ipv4 vpn next-hop", argv[idx_ip]->arg);
4839 else
4840 return generic_set_add(
4841 vty, VTY_GET_CONTEXT(route_map_index),
4842 "ipv6 vpn next-hop", argv[idx_ip]->arg);
4843 }
4844 return CMD_SUCCESS;
4845 }
4846
4847 DEFUN (no_set_vpn_nexthop,
4848 no_set_vpn_nexthop_cmd,
4849 "no set <vpnv4 next-hop A.B.C.D|vpnv6 next-hop X:X::X:X>",
4850 NO_STR
4851 SET_STR
4852 "VPNv4 information\n"
4853 "VPN next-hop address\n"
4854 "IP address of next hop\n"
4855 "VPNv6 information\n"
4856 "VPN next-hop address\n"
4857 "IPv6 address of next hop\n")
4858 {
4859 int idx_ip = 4;
4860 char *arg;
4861 afi_t afi;
4862 int idx = 0;
4863
4864 if (argc <= idx_ip)
4865 arg = NULL;
4866 else
4867 arg = argv[idx_ip]->arg;
4868 if (argv_find_and_parse_vpnvx(argv, argc, &idx, &afi)) {
4869 if (afi == AFI_IP)
4870 return generic_set_delete(
4871 vty, VTY_GET_CONTEXT(route_map_index),
4872 "ipv4 vpn next-hop", arg);
4873 else
4874 return generic_set_delete(
4875 vty, VTY_GET_CONTEXT(route_map_index),
4876 "ipv6 vpn next-hop", argv[idx_ip]->arg);
4877 }
4878 return CMD_SUCCESS;
4879 }
4880 #endif /* KEEP_OLD_VPN_COMMANDS */
4881
4882 DEFUN (set_ipx_vpn_nexthop,
4883 set_ipx_vpn_nexthop_cmd,
4884 "set <ipv4|ipv6> vpn next-hop <A.B.C.D|X:X::X:X>",
4885 SET_STR
4886 "IPv4 information\n"
4887 "IPv6 information\n"
4888 "VPN information\n"
4889 "VPN next-hop address\n"
4890 "IP address of next hop\n"
4891 "IPv6 address of next hop\n")
4892 {
4893 int idx_ip = 4;
4894 afi_t afi;
4895 int idx = 0;
4896
4897 if (argv_find_and_parse_afi(argv, argc, &idx, &afi)) {
4898 if (afi == AFI_IP)
4899 return generic_set_add(
4900 vty, VTY_GET_CONTEXT(route_map_index),
4901 "ipv4 vpn next-hop", argv[idx_ip]->arg);
4902 else
4903 return generic_set_add(
4904 vty, VTY_GET_CONTEXT(route_map_index),
4905 "ipv6 vpn next-hop", argv[idx_ip]->arg);
4906 }
4907 return CMD_SUCCESS;
4908 }
4909
4910 DEFUN (no_set_ipx_vpn_nexthop,
4911 no_set_ipx_vpn_nexthop_cmd,
4912 "no set <ipv4|ipv6> vpn next-hop [<A.B.C.D|X:X::X:X>]",
4913 NO_STR
4914 SET_STR
4915 "IPv4 information\n"
4916 "IPv6 information\n"
4917 "VPN information\n"
4918 "VPN next-hop address\n"
4919 "IP address of next hop\n"
4920 "IPv6 address of next hop\n")
4921 {
4922 int idx_ip = 5;
4923 char *arg;
4924 afi_t afi;
4925 int idx = 0;
4926
4927 if (argc <= idx_ip)
4928 arg = NULL;
4929 else
4930 arg = argv[idx_ip]->arg;
4931 if (argv_find_and_parse_afi(argv, argc, &idx, &afi)) {
4932 if (afi == AFI_IP)
4933 return generic_set_delete(
4934 vty, VTY_GET_CONTEXT(route_map_index),
4935 "ipv4 vpn next-hop", arg);
4936 else
4937 return generic_set_delete(
4938 vty, VTY_GET_CONTEXT(route_map_index),
4939 "ipv6 vpn next-hop", arg);
4940 }
4941 return CMD_SUCCESS;
4942 }
4943
4944 DEFUN (set_originator_id,
4945 set_originator_id_cmd,
4946 "set originator-id A.B.C.D",
4947 SET_STR
4948 "BGP originator ID attribute\n"
4949 "IP address of originator\n")
4950 {
4951 int idx_ipv4 = 2;
4952 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
4953 "originator-id", argv[idx_ipv4]->arg);
4954 }
4955
4956
4957 DEFUN (no_set_originator_id,
4958 no_set_originator_id_cmd,
4959 "no set originator-id [A.B.C.D]",
4960 NO_STR
4961 SET_STR
4962 "BGP originator ID attribute\n"
4963 "IP address of originator\n")
4964 {
4965 int idx = 0;
4966 char *arg =
4967 argv_find(argv, argc, "A.B.C.D", &idx) ? argv[idx]->arg : NULL;
4968
4969 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
4970 "originator-id", arg);
4971 }
4972
4973
4974 /* Initialization of route map. */
4975 void bgp_route_map_init(void)
4976 {
4977 route_map_init();
4978
4979 route_map_add_hook(bgp_route_map_add);
4980 route_map_delete_hook(bgp_route_map_delete);
4981 route_map_event_hook(bgp_route_map_event);
4982
4983 route_map_match_interface_hook(generic_match_add);
4984 route_map_no_match_interface_hook(generic_match_delete);
4985
4986 route_map_match_ip_address_hook(generic_match_add);
4987 route_map_no_match_ip_address_hook(generic_match_delete);
4988
4989 route_map_match_ip_address_prefix_list_hook(generic_match_add);
4990 route_map_no_match_ip_address_prefix_list_hook(generic_match_delete);
4991
4992 route_map_match_ip_next_hop_hook(generic_match_add);
4993 route_map_no_match_ip_next_hop_hook(generic_match_delete);
4994
4995 route_map_match_ip_next_hop_prefix_list_hook(generic_match_add);
4996 route_map_no_match_ip_next_hop_prefix_list_hook(generic_match_delete);
4997
4998 route_map_match_ip_next_hop_type_hook(generic_match_add);
4999 route_map_no_match_ip_next_hop_type_hook(generic_match_delete);
5000
5001 route_map_match_ipv6_address_hook(generic_match_add);
5002 route_map_no_match_ipv6_address_hook(generic_match_delete);
5003
5004 route_map_match_ipv6_address_prefix_list_hook(generic_match_add);
5005 route_map_no_match_ipv6_address_prefix_list_hook(generic_match_delete);
5006
5007 route_map_match_ipv6_next_hop_type_hook(generic_match_add);
5008 route_map_no_match_ipv6_next_hop_type_hook(generic_match_delete);
5009
5010 route_map_match_metric_hook(generic_match_add);
5011 route_map_no_match_metric_hook(generic_match_delete);
5012
5013 route_map_match_tag_hook(generic_match_add);
5014 route_map_no_match_tag_hook(generic_match_delete);
5015
5016 route_map_set_ip_nexthop_hook(generic_set_add);
5017 route_map_no_set_ip_nexthop_hook(generic_set_delete);
5018
5019 route_map_set_ipv6_nexthop_local_hook(generic_set_add);
5020 route_map_no_set_ipv6_nexthop_local_hook(generic_set_delete);
5021
5022 route_map_set_metric_hook(generic_set_add);
5023 route_map_no_set_metric_hook(generic_set_delete);
5024
5025 route_map_set_tag_hook(generic_set_add);
5026 route_map_no_set_tag_hook(generic_set_delete);
5027
5028 route_map_install_match(&route_match_peer_cmd);
5029 route_map_install_match(&route_match_local_pref_cmd);
5030 #if defined(HAVE_LUA)
5031 route_map_install_match(&route_match_command_cmd);
5032 #endif
5033 route_map_install_match(&route_match_ip_address_cmd);
5034 route_map_install_match(&route_match_ip_next_hop_cmd);
5035 route_map_install_match(&route_match_ip_route_source_cmd);
5036 route_map_install_match(&route_match_ip_address_prefix_list_cmd);
5037 route_map_install_match(&route_match_ip_next_hop_prefix_list_cmd);
5038 route_map_install_match(&route_match_ip_next_hop_type_cmd);
5039 route_map_install_match(&route_match_ip_route_source_prefix_list_cmd);
5040 route_map_install_match(&route_match_aspath_cmd);
5041 route_map_install_match(&route_match_community_cmd);
5042 route_map_install_match(&route_match_lcommunity_cmd);
5043 route_map_install_match(&route_match_ecommunity_cmd);
5044 route_map_install_match(&route_match_local_pref_cmd);
5045 route_map_install_match(&route_match_metric_cmd);
5046 route_map_install_match(&route_match_origin_cmd);
5047 route_map_install_match(&route_match_probability_cmd);
5048 route_map_install_match(&route_match_interface_cmd);
5049 route_map_install_match(&route_match_tag_cmd);
5050 route_map_install_match(&route_match_mac_address_cmd);
5051 route_map_install_match(&route_match_evpn_vni_cmd);
5052 route_map_install_match(&route_match_evpn_route_type_cmd);
5053 route_map_install_match(&route_match_evpn_default_route_cmd);
5054 route_map_install_match(&route_match_vrl_source_vrf_cmd);
5055
5056 route_map_install_set(&route_set_ip_nexthop_cmd);
5057 route_map_install_set(&route_set_local_pref_cmd);
5058 route_map_install_set(&route_set_weight_cmd);
5059 route_map_install_set(&route_set_label_index_cmd);
5060 route_map_install_set(&route_set_metric_cmd);
5061 route_map_install_set(&route_set_aspath_prepend_cmd);
5062 route_map_install_set(&route_set_aspath_exclude_cmd);
5063 route_map_install_set(&route_set_origin_cmd);
5064 route_map_install_set(&route_set_atomic_aggregate_cmd);
5065 route_map_install_set(&route_set_aggregator_as_cmd);
5066 route_map_install_set(&route_set_community_cmd);
5067 route_map_install_set(&route_set_community_delete_cmd);
5068 route_map_install_set(&route_set_lcommunity_cmd);
5069 route_map_install_set(&route_set_lcommunity_delete_cmd);
5070 route_map_install_set(&route_set_vpnv4_nexthop_cmd);
5071 route_map_install_set(&route_set_vpnv6_nexthop_cmd);
5072 route_map_install_set(&route_set_originator_id_cmd);
5073 route_map_install_set(&route_set_ecommunity_rt_cmd);
5074 route_map_install_set(&route_set_ecommunity_soo_cmd);
5075 route_map_install_set(&route_set_tag_cmd);
5076 route_map_install_set(&route_set_label_index_cmd);
5077
5078 install_element(RMAP_NODE, &match_peer_cmd);
5079 install_element(RMAP_NODE, &match_peer_local_cmd);
5080 install_element(RMAP_NODE, &no_match_peer_cmd);
5081 install_element(RMAP_NODE, &match_ip_route_source_cmd);
5082 install_element(RMAP_NODE, &no_match_ip_route_source_cmd);
5083 install_element(RMAP_NODE, &match_ip_route_source_prefix_list_cmd);
5084 install_element(RMAP_NODE, &no_match_ip_route_source_prefix_list_cmd);
5085 install_element(RMAP_NODE, &match_mac_address_cmd);
5086 install_element(RMAP_NODE, &no_match_mac_address_cmd);
5087 install_element(RMAP_NODE, &match_evpn_vni_cmd);
5088 install_element(RMAP_NODE, &no_match_evpn_vni_cmd);
5089 install_element(RMAP_NODE, &match_evpn_route_type_cmd);
5090 install_element(RMAP_NODE, &no_match_evpn_route_type_cmd);
5091 install_element(RMAP_NODE, &match_evpn_default_route_cmd);
5092 install_element(RMAP_NODE, &no_match_evpn_default_route_cmd);
5093 install_element(RMAP_NODE, &match_vrl_source_vrf_cmd);
5094 install_element(RMAP_NODE, &no_match_vrl_source_vrf_cmd);
5095
5096 install_element(RMAP_NODE, &match_aspath_cmd);
5097 install_element(RMAP_NODE, &no_match_aspath_cmd);
5098 install_element(RMAP_NODE, &match_local_pref_cmd);
5099 install_element(RMAP_NODE, &no_match_local_pref_cmd);
5100 install_element(RMAP_NODE, &match_community_cmd);
5101 install_element(RMAP_NODE, &no_match_community_cmd);
5102 install_element(RMAP_NODE, &match_lcommunity_cmd);
5103 install_element(RMAP_NODE, &no_match_lcommunity_cmd);
5104 install_element(RMAP_NODE, &match_ecommunity_cmd);
5105 install_element(RMAP_NODE, &no_match_ecommunity_cmd);
5106 install_element(RMAP_NODE, &match_origin_cmd);
5107 install_element(RMAP_NODE, &no_match_origin_cmd);
5108 install_element(RMAP_NODE, &match_probability_cmd);
5109 install_element(RMAP_NODE, &no_match_probability_cmd);
5110
5111 install_element(RMAP_NODE, &set_ip_nexthop_peer_cmd);
5112 install_element(RMAP_NODE, &set_ip_nexthop_unchanged_cmd);
5113 install_element(RMAP_NODE, &set_local_pref_cmd);
5114 install_element(RMAP_NODE, &no_set_local_pref_cmd);
5115 install_element(RMAP_NODE, &set_weight_cmd);
5116 install_element(RMAP_NODE, &set_label_index_cmd);
5117 install_element(RMAP_NODE, &no_set_weight_cmd);
5118 install_element(RMAP_NODE, &no_set_label_index_cmd);
5119 install_element(RMAP_NODE, &set_aspath_prepend_asn_cmd);
5120 install_element(RMAP_NODE, &set_aspath_prepend_lastas_cmd);
5121 install_element(RMAP_NODE, &set_aspath_exclude_cmd);
5122 install_element(RMAP_NODE, &no_set_aspath_prepend_cmd);
5123 install_element(RMAP_NODE, &no_set_aspath_exclude_cmd);
5124 install_element(RMAP_NODE, &no_set_aspath_exclude_all_cmd);
5125 install_element(RMAP_NODE, &set_origin_cmd);
5126 install_element(RMAP_NODE, &no_set_origin_cmd);
5127 install_element(RMAP_NODE, &set_atomic_aggregate_cmd);
5128 install_element(RMAP_NODE, &no_set_atomic_aggregate_cmd);
5129 install_element(RMAP_NODE, &set_aggregator_as_cmd);
5130 install_element(RMAP_NODE, &no_set_aggregator_as_cmd);
5131 install_element(RMAP_NODE, &set_community_cmd);
5132 install_element(RMAP_NODE, &set_community_none_cmd);
5133 install_element(RMAP_NODE, &no_set_community_cmd);
5134 install_element(RMAP_NODE, &no_set_community_short_cmd);
5135 install_element(RMAP_NODE, &set_community_delete_cmd);
5136 install_element(RMAP_NODE, &no_set_community_delete_cmd);
5137 install_element(RMAP_NODE, &set_lcommunity_cmd);
5138 install_element(RMAP_NODE, &set_lcommunity_none_cmd);
5139 install_element(RMAP_NODE, &no_set_lcommunity_cmd);
5140 install_element(RMAP_NODE, &no_set_lcommunity1_cmd);
5141 install_element(RMAP_NODE, &no_set_lcommunity1_short_cmd);
5142 install_element(RMAP_NODE, &set_lcommunity_delete_cmd);
5143 install_element(RMAP_NODE, &no_set_lcommunity_delete_cmd);
5144 install_element(RMAP_NODE, &no_set_lcommunity_delete_short_cmd);
5145 install_element(RMAP_NODE, &set_ecommunity_rt_cmd);
5146 install_element(RMAP_NODE, &no_set_ecommunity_rt_cmd);
5147 install_element(RMAP_NODE, &no_set_ecommunity_rt_short_cmd);
5148 install_element(RMAP_NODE, &set_ecommunity_soo_cmd);
5149 install_element(RMAP_NODE, &no_set_ecommunity_soo_cmd);
5150 install_element(RMAP_NODE, &no_set_ecommunity_soo_short_cmd);
5151 #ifdef KEEP_OLD_VPN_COMMANDS
5152 install_element(RMAP_NODE, &set_vpn_nexthop_cmd);
5153 install_element(RMAP_NODE, &no_set_vpn_nexthop_cmd);
5154 #endif /* KEEP_OLD_VPN_COMMANDS */
5155 install_element(RMAP_NODE, &set_ipx_vpn_nexthop_cmd);
5156 install_element(RMAP_NODE, &no_set_ipx_vpn_nexthop_cmd);
5157 install_element(RMAP_NODE, &set_originator_id_cmd);
5158 install_element(RMAP_NODE, &no_set_originator_id_cmd);
5159
5160 route_map_install_match(&route_match_ipv6_address_cmd);
5161 route_map_install_match(&route_match_ipv6_next_hop_cmd);
5162 route_map_install_match(&route_match_ipv6_address_prefix_list_cmd);
5163 route_map_install_match(&route_match_ipv6_next_hop_type_cmd);
5164 route_map_install_set(&route_set_ipv6_nexthop_global_cmd);
5165 route_map_install_set(&route_set_ipv6_nexthop_prefer_global_cmd);
5166 route_map_install_set(&route_set_ipv6_nexthop_local_cmd);
5167 route_map_install_set(&route_set_ipv6_nexthop_peer_cmd);
5168
5169 install_element(RMAP_NODE, &match_ipv6_next_hop_cmd);
5170 install_element(RMAP_NODE, &no_match_ipv6_next_hop_cmd);
5171 install_element(RMAP_NODE, &set_ipv6_nexthop_global_cmd);
5172 install_element(RMAP_NODE, &no_set_ipv6_nexthop_global_cmd);
5173 install_element(RMAP_NODE, &set_ipv6_nexthop_prefer_global_cmd);
5174 install_element(RMAP_NODE, &no_set_ipv6_nexthop_prefer_global_cmd);
5175 install_element(RMAP_NODE, &set_ipv6_nexthop_peer_cmd);
5176 install_element(RMAP_NODE, &no_set_ipv6_nexthop_peer_cmd);
5177 #if defined(HAVE_LUA)
5178 install_element(RMAP_NODE, &match_command_cmd);
5179 install_element(RMAP_NODE, &no_match_command_cmd);
5180 #endif
5181 }
5182
5183 void bgp_route_map_terminate(void)
5184 {
5185 /* ToDo: Cleanup all the used memory */
5186 route_map_finish();
5187 }