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