blob: 7555ca77bf4c105f5cc2684dd343231a59dc9ebf [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Route map function of bgpd.
2 Copyright (C) 1998, 1999 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
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"
Jeremy Jackson25f45882009-01-12 16:06:12 -050031#ifdef HAVE_LIBPCREPOSIX
32# include <pcreposix.h>
paul718e3742002-12-13 20:15:29 +000033#else
Jeremy Jackson25f45882009-01-12 16:06:12 -050034# ifdef HAVE_GNU_REGEX
35# include <regex.h>
36# else
37# include "regex-gnu.h"
38# endif /* HAVE_GNU_REGEX */
39#endif /* HAVE_LIBPCREPOSIX */
paul718e3742002-12-13 20:15:29 +000040#include "buffer.h"
41#include "sockunion.h"
42
43#include "bgpd/bgpd.h"
44#include "bgpd/bgp_table.h"
45#include "bgpd/bgp_attr.h"
46#include "bgpd/bgp_aspath.h"
47#include "bgpd/bgp_route.h"
48#include "bgpd/bgp_regex.h"
49#include "bgpd/bgp_community.h"
50#include "bgpd/bgp_clist.h"
51#include "bgpd/bgp_filter.h"
52#include "bgpd/bgp_mplsvpn.h"
53#include "bgpd/bgp_ecommunity.h"
Paul Jakma320da872008-07-02 13:40:33 +000054#include "bgpd/bgp_vty.h"
paul718e3742002-12-13 20:15:29 +000055
56/* Memo of route-map commands.
57
58o Cisco route-map
59
60 match as-path : Done
61 community : Done
62 interface : Not yet
63 ip address : Done
64 ip next-hop : Done
hassoc1643bb2005-02-02 16:43:17 +000065 ip route-source : Done
paul718e3742002-12-13 20:15:29 +000066 ip prefix-list : Done
67 ipv6 address : Done
68 ipv6 next-hop : Done
69 ipv6 route-source: (This will not be implemented by bgpd)
70 ipv6 prefix-list : Done
71 length : (This will not be implemented by bgpd)
72 metric : Done
73 route-type : (This will not be implemented by bgpd)
74 tag : (This will not be implemented by bgpd)
75
76 set as-path prepend : Done
77 as-path tag : Not yet
78 automatic-tag : (This will not be implemented by bgpd)
79 community : Done
80 comm-list : Not yet
81 dampning : Not yet
82 default : (This will not be implemented by bgpd)
83 interface : (This will not be implemented by bgpd)
84 ip default : (This will not be implemented by bgpd)
85 ip next-hop : Done
86 ip precedence : (This will not be implemented by bgpd)
87 ip tos : (This will not be implemented by bgpd)
88 level : (This will not be implemented by bgpd)
89 local-preference : Done
90 metric : Done
91 metric-type : Not yet
92 origin : Done
93 tag : (This will not be implemented by bgpd)
94 weight : Done
95
Timo Teräs2aa640b2014-05-20 08:57:26 +030096o Local extensions
paul718e3742002-12-13 20:15:29 +000097
98 set ipv6 next-hop global: Done
99 set ipv6 next-hop local : Done
Denis Ovsienko841f7a52008-04-10 11:47:45 +0000100 set as-path exclude : Done
paul718e3742002-12-13 20:15:29 +0000101
102*/
David Lamparter6b0655a2014-06-04 06:53:35 +0200103
Timo Teräs38f22ab2015-04-29 09:43:02 +0300104 /* generic value manipulation to be shared in multiple rules */
105
106#define RMAP_VALUE_SET 0
107#define RMAP_VALUE_ADD 1
108#define RMAP_VALUE_SUB 2
109
110struct rmap_value
111{
112 u_int8_t action;
Timo Teräsef757702015-04-29 09:43:04 +0300113 u_int8_t variable;
Timo Teräs38f22ab2015-04-29 09:43:02 +0300114 u_int32_t value;
115};
116
117static int
118route_value_match (struct rmap_value *rv, u_int32_t value)
119{
Timo Teräsef757702015-04-29 09:43:04 +0300120 if (rv->variable == 0 && value == rv->value)
Timo Teräs38f22ab2015-04-29 09:43:02 +0300121 return RMAP_MATCH;
122
123 return RMAP_NOMATCH;
124}
125
126static u_int32_t
Timo Teräsef757702015-04-29 09:43:04 +0300127route_value_adjust (struct rmap_value *rv, u_int32_t current, struct peer *peer)
Timo Teräs38f22ab2015-04-29 09:43:02 +0300128{
Timo Teräsef757702015-04-29 09:43:04 +0300129 u_int32_t value;
130
131 switch (rv->variable)
132 {
133 case 1:
134 value = peer->rtt;
135 break;
136 default:
137 value = rv->value;
138 break;
139 }
Timo Teräs38f22ab2015-04-29 09:43:02 +0300140
141 switch (rv->action)
142 {
143 case RMAP_VALUE_ADD:
144 if (current > UINT32_MAX-value)
145 return UINT32_MAX;
146 return current + value;
147 case RMAP_VALUE_SUB:
148 if (current <= value)
149 return 0;
150 return current - value;
151 default:
152 return value;
153 }
154}
155
156static void *
157route_value_compile (const char *arg)
158{
Timo Teräsef757702015-04-29 09:43:04 +0300159 u_int8_t action = RMAP_VALUE_SET, var = 0;
160 unsigned long larg = 0;
Timo Teräs38f22ab2015-04-29 09:43:02 +0300161 char *endptr = NULL;
162 struct rmap_value *rv;
163
164 if (arg[0] == '+')
165 {
166 action = RMAP_VALUE_ADD;
167 arg++;
168 }
169 else if (arg[0] == '-')
170 {
171 action = RMAP_VALUE_SUB;
172 arg++;
173 }
174
Timo Teräsef757702015-04-29 09:43:04 +0300175 if (all_digit(arg))
176 {
177 errno = 0;
178 larg = strtoul (arg, &endptr, 10);
179 if (*arg == 0 || *endptr != 0 || errno || larg > UINT32_MAX)
180 return NULL;
181 }
182 else
183 {
184 if (strcmp(arg, "rtt") == 0)
185 var = 1;
186 else
187 return NULL;
188 }
Timo Teräs38f22ab2015-04-29 09:43:02 +0300189
190 rv = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof(struct rmap_value));
191 if (!rv)
192 return NULL;
193
194 rv->action = action;
Timo Teräsef757702015-04-29 09:43:04 +0300195 rv->variable = var;
Timo Teräs38f22ab2015-04-29 09:43:02 +0300196 rv->value = larg;
197 return rv;
198}
199
200static void
201route_value_free (void *rule)
202{
203 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
204}
205
Timo Teräsb304dcb2014-05-20 09:04:49 +0300206 /* generic as path object to be shared in multiple rules */
207
208static void *
209route_aspath_compile (const char *arg)
210{
211 struct aspath *aspath;
212
213 aspath = aspath_str2aspath (arg);
214 if (! aspath)
215 return NULL;
216 return aspath;
217}
218
219static void
220route_aspath_free (void *rule)
221{
222 struct aspath *aspath = rule;
223 aspath_free (aspath);
224}
225
paulfee0f4c2004-09-13 05:12:46 +0000226 /* 'match peer (A.B.C.D|X:X::X:X)' */
227
228/* Compares the peer specified in the 'match peer' clause with the peer
229 received in bgp_info->peer. If it is the same, or if the peer structure
230 received is a peer_group containing it, returns RMAP_MATCH. */
paul94f2b392005-06-28 12:44:16 +0000231static route_map_result_t
paulfee0f4c2004-09-13 05:12:46 +0000232route_match_peer (void *rule, struct prefix *prefix, route_map_object_t type,
233 void *object)
234{
235 union sockunion *su;
David Lamparter6ed810d2015-04-21 10:13:07 +0200236 union sockunion su_def = { .sin = { .sin_family = AF_INET,
237 .sin_addr.s_addr = INADDR_ANY } };
paulfee0f4c2004-09-13 05:12:46 +0000238 struct peer_group *group;
239 struct peer *peer;
paul1eb8ef22005-04-07 07:30:20 +0000240 struct listnode *node, *nnode;
paulfee0f4c2004-09-13 05:12:46 +0000241
242 if (type == RMAP_BGP)
243 {
244 su = rule;
245 peer = ((struct bgp_info *) object)->peer;
246
247 if ( ! CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_IMPORT) &&
248 ! CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_EXPORT) )
249 return RMAP_NOMATCH;
250
251 /* If su='0.0.0.0' (command 'match peer local'), and it's a NETWORK,
252 REDISTRIBUTE or DEFAULT_GENERATED route => return RMAP_MATCH */
Jorge Boncompte [DTI2]c63b83f2012-04-10 16:57:24 +0200253 if (sockunion_same (su, &su_def))
paulfee0f4c2004-09-13 05:12:46 +0000254 {
paul22db9de2005-05-19 01:50:11 +0000255 int ret;
paulfee0f4c2004-09-13 05:12:46 +0000256 if ( CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_NETWORK) ||
257 CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_REDISTRIBUTE) ||
258 CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_DEFAULT))
paul22db9de2005-05-19 01:50:11 +0000259 ret = RMAP_MATCH;
paulfee0f4c2004-09-13 05:12:46 +0000260 else
paul22db9de2005-05-19 01:50:11 +0000261 ret = RMAP_NOMATCH;
paul22db9de2005-05-19 01:50:11 +0000262 return ret;
paulfee0f4c2004-09-13 05:12:46 +0000263 }
Jorge Boncompte [DTI2]c63b83f2012-04-10 16:57:24 +0200264
paulfee0f4c2004-09-13 05:12:46 +0000265 if (! CHECK_FLAG (peer->sflags, PEER_STATUS_GROUP))
266 {
267 if (sockunion_same (su, &peer->su))
268 return RMAP_MATCH;
269
270 return RMAP_NOMATCH;
271 }
272 else
273 {
274 group = peer->group;
paul1eb8ef22005-04-07 07:30:20 +0000275 for (ALL_LIST_ELEMENTS (group->peer, node, nnode, peer))
paulfee0f4c2004-09-13 05:12:46 +0000276 {
277 if (sockunion_same (su, &peer->su))
278 return RMAP_MATCH;
paulfee0f4c2004-09-13 05:12:46 +0000279 }
Paul Jakma30a22312008-08-15 14:05:22 +0100280 return RMAP_NOMATCH;
paulfee0f4c2004-09-13 05:12:46 +0000281 }
282 }
283 return RMAP_NOMATCH;
284}
285
paul94f2b392005-06-28 12:44:16 +0000286static void *
paulfd79ac92004-10-13 05:06:08 +0000287route_match_peer_compile (const char *arg)
paulfee0f4c2004-09-13 05:12:46 +0000288{
289 union sockunion *su;
290 int ret;
291
292 su = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (union sockunion));
293
Jorge Boncompte [DTI2]4fe080d2012-04-13 13:46:08 +0200294 ret = str2sockunion (strcmp(arg, "local") ? arg : "0.0.0.0", su);
paulfee0f4c2004-09-13 05:12:46 +0000295 if (ret < 0) {
296 XFREE (MTYPE_ROUTE_MAP_COMPILED, su);
297 return NULL;
298 }
299
300 return su;
301}
302
303/* Free route map's compiled `ip address' value. */
paul94f2b392005-06-28 12:44:16 +0000304static void
paulfee0f4c2004-09-13 05:12:46 +0000305route_match_peer_free (void *rule)
306{
307 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
308}
309
310/* Route map commands for ip address matching. */
311struct route_map_rule_cmd route_match_peer_cmd =
312{
313 "peer",
314 route_match_peer,
315 route_match_peer_compile,
316 route_match_peer_free
317};
318
paul718e3742002-12-13 20:15:29 +0000319/* `match ip address IP_ACCESS_LIST' */
320
321/* Match function should return 1 if match is success else return
322 zero. */
paul94f2b392005-06-28 12:44:16 +0000323static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000324route_match_ip_address (void *rule, struct prefix *prefix,
325 route_map_object_t type, void *object)
326{
327 struct access_list *alist;
328 /* struct prefix_ipv4 match; */
329
330 if (type == RMAP_BGP)
331 {
332 alist = access_list_lookup (AFI_IP, (char *) rule);
333 if (alist == NULL)
334 return RMAP_NOMATCH;
335
336 return (access_list_apply (alist, prefix) == FILTER_DENY ?
337 RMAP_NOMATCH : RMAP_MATCH);
338 }
339 return RMAP_NOMATCH;
340}
341
342/* Route map `ip address' match statement. `arg' should be
343 access-list name. */
paul94f2b392005-06-28 12:44:16 +0000344static void *
paulfd79ac92004-10-13 05:06:08 +0000345route_match_ip_address_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000346{
347 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
348}
349
350/* Free route map's compiled `ip address' value. */
paul94f2b392005-06-28 12:44:16 +0000351static void
paul718e3742002-12-13 20:15:29 +0000352route_match_ip_address_free (void *rule)
353{
354 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
355}
356
357/* Route map commands for ip address matching. */
358struct route_map_rule_cmd route_match_ip_address_cmd =
359{
360 "ip address",
361 route_match_ip_address,
362 route_match_ip_address_compile,
363 route_match_ip_address_free
364};
David Lamparter6b0655a2014-06-04 06:53:35 +0200365
paul718e3742002-12-13 20:15:29 +0000366/* `match ip next-hop IP_ADDRESS' */
367
368/* Match function return 1 if match is success else return zero. */
paul94f2b392005-06-28 12:44:16 +0000369static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000370route_match_ip_next_hop (void *rule, struct prefix *prefix,
371 route_map_object_t type, void *object)
372{
373 struct access_list *alist;
374 struct bgp_info *bgp_info;
375 struct prefix_ipv4 p;
376
377 if (type == RMAP_BGP)
378 {
379 bgp_info = object;
380 p.family = AF_INET;
381 p.prefix = bgp_info->attr->nexthop;
382 p.prefixlen = IPV4_MAX_BITLEN;
383
384 alist = access_list_lookup (AFI_IP, (char *) rule);
385 if (alist == NULL)
386 return RMAP_NOMATCH;
387
388 return (access_list_apply (alist, &p) == FILTER_DENY ?
389 RMAP_NOMATCH : RMAP_MATCH);
390 }
391 return RMAP_NOMATCH;
392}
393
394/* Route map `ip next-hop' match statement. `arg' is
395 access-list name. */
paul94f2b392005-06-28 12:44:16 +0000396static void *
paulfd79ac92004-10-13 05:06:08 +0000397route_match_ip_next_hop_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000398{
399 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
400}
401
402/* Free route map's compiled `ip address' value. */
paul94f2b392005-06-28 12:44:16 +0000403static void
paul718e3742002-12-13 20:15:29 +0000404route_match_ip_next_hop_free (void *rule)
405{
406 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
407}
408
409/* Route map commands for ip next-hop matching. */
410struct route_map_rule_cmd route_match_ip_next_hop_cmd =
411{
412 "ip next-hop",
413 route_match_ip_next_hop,
414 route_match_ip_next_hop_compile,
415 route_match_ip_next_hop_free
416};
David Lamparter6b0655a2014-06-04 06:53:35 +0200417
hassoc1643bb2005-02-02 16:43:17 +0000418/* `match ip route-source ACCESS-LIST' */
419
420/* Match function return 1 if match is success else return zero. */
paul94f2b392005-06-28 12:44:16 +0000421static route_map_result_t
hassoc1643bb2005-02-02 16:43:17 +0000422route_match_ip_route_source (void *rule, struct prefix *prefix,
423 route_map_object_t type, void *object)
424{
425 struct access_list *alist;
426 struct bgp_info *bgp_info;
427 struct peer *peer;
428 struct prefix_ipv4 p;
429
430 if (type == RMAP_BGP)
431 {
432 bgp_info = object;
433 peer = bgp_info->peer;
434
435 if (! peer || sockunion_family (&peer->su) != AF_INET)
436 return RMAP_NOMATCH;
437
438 p.family = AF_INET;
439 p.prefix = peer->su.sin.sin_addr;
440 p.prefixlen = IPV4_MAX_BITLEN;
441
442 alist = access_list_lookup (AFI_IP, (char *) rule);
443 if (alist == NULL)
444 return RMAP_NOMATCH;
445
446 return (access_list_apply (alist, &p) == FILTER_DENY ?
447 RMAP_NOMATCH : RMAP_MATCH);
448 }
449 return RMAP_NOMATCH;
450}
451
452/* Route map `ip route-source' match statement. `arg' is
453 access-list name. */
paul94f2b392005-06-28 12:44:16 +0000454static void *
hassoc1643bb2005-02-02 16:43:17 +0000455route_match_ip_route_source_compile (const char *arg)
456{
457 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
458}
459
460/* Free route map's compiled `ip address' value. */
paul94f2b392005-06-28 12:44:16 +0000461static void
hassoc1643bb2005-02-02 16:43:17 +0000462route_match_ip_route_source_free (void *rule)
463{
464 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
465}
466
467/* Route map commands for ip route-source matching. */
468struct route_map_rule_cmd route_match_ip_route_source_cmd =
469{
470 "ip route-source",
471 route_match_ip_route_source,
472 route_match_ip_route_source_compile,
473 route_match_ip_route_source_free
474};
David Lamparter6b0655a2014-06-04 06:53:35 +0200475
paul718e3742002-12-13 20:15:29 +0000476/* `match ip address prefix-list PREFIX_LIST' */
477
paul94f2b392005-06-28 12:44:16 +0000478static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000479route_match_ip_address_prefix_list (void *rule, struct prefix *prefix,
480 route_map_object_t type, void *object)
481{
482 struct prefix_list *plist;
483
484 if (type == RMAP_BGP)
485 {
486 plist = prefix_list_lookup (AFI_IP, (char *) rule);
487 if (plist == NULL)
488 return RMAP_NOMATCH;
489
490 return (prefix_list_apply (plist, prefix) == PREFIX_DENY ?
491 RMAP_NOMATCH : RMAP_MATCH);
492 }
493 return RMAP_NOMATCH;
494}
495
paul94f2b392005-06-28 12:44:16 +0000496static void *
paulfd79ac92004-10-13 05:06:08 +0000497route_match_ip_address_prefix_list_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000498{
499 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
500}
501
paul94f2b392005-06-28 12:44:16 +0000502static void
paul718e3742002-12-13 20:15:29 +0000503route_match_ip_address_prefix_list_free (void *rule)
504{
505 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
506}
507
508struct route_map_rule_cmd route_match_ip_address_prefix_list_cmd =
509{
510 "ip address prefix-list",
511 route_match_ip_address_prefix_list,
512 route_match_ip_address_prefix_list_compile,
513 route_match_ip_address_prefix_list_free
514};
David Lamparter6b0655a2014-06-04 06:53:35 +0200515
paul718e3742002-12-13 20:15:29 +0000516/* `match ip next-hop prefix-list PREFIX_LIST' */
517
paul94f2b392005-06-28 12:44:16 +0000518static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000519route_match_ip_next_hop_prefix_list (void *rule, struct prefix *prefix,
520 route_map_object_t type, void *object)
521{
522 struct prefix_list *plist;
523 struct bgp_info *bgp_info;
524 struct prefix_ipv4 p;
525
526 if (type == RMAP_BGP)
527 {
528 bgp_info = object;
529 p.family = AF_INET;
530 p.prefix = bgp_info->attr->nexthop;
531 p.prefixlen = IPV4_MAX_BITLEN;
532
533 plist = prefix_list_lookup (AFI_IP, (char *) rule);
534 if (plist == NULL)
535 return RMAP_NOMATCH;
536
537 return (prefix_list_apply (plist, &p) == PREFIX_DENY ?
538 RMAP_NOMATCH : RMAP_MATCH);
539 }
540 return RMAP_NOMATCH;
541}
542
paul94f2b392005-06-28 12:44:16 +0000543static void *
paulfd79ac92004-10-13 05:06:08 +0000544route_match_ip_next_hop_prefix_list_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000545{
546 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
547}
548
paul94f2b392005-06-28 12:44:16 +0000549static void
paul718e3742002-12-13 20:15:29 +0000550route_match_ip_next_hop_prefix_list_free (void *rule)
551{
552 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
553}
554
555struct route_map_rule_cmd route_match_ip_next_hop_prefix_list_cmd =
556{
557 "ip next-hop prefix-list",
558 route_match_ip_next_hop_prefix_list,
559 route_match_ip_next_hop_prefix_list_compile,
560 route_match_ip_next_hop_prefix_list_free
561};
David Lamparter6b0655a2014-06-04 06:53:35 +0200562
hassoc1643bb2005-02-02 16:43:17 +0000563/* `match ip route-source prefix-list PREFIX_LIST' */
564
paul94f2b392005-06-28 12:44:16 +0000565static route_map_result_t
hassoc1643bb2005-02-02 16:43:17 +0000566route_match_ip_route_source_prefix_list (void *rule, struct prefix *prefix,
567 route_map_object_t type, void *object)
568{
569 struct prefix_list *plist;
570 struct bgp_info *bgp_info;
571 struct peer *peer;
572 struct prefix_ipv4 p;
573
574 if (type == RMAP_BGP)
575 {
576 bgp_info = object;
577 peer = bgp_info->peer;
578
579 if (! peer || sockunion_family (&peer->su) != AF_INET)
580 return RMAP_NOMATCH;
581
582 p.family = AF_INET;
583 p.prefix = peer->su.sin.sin_addr;
584 p.prefixlen = IPV4_MAX_BITLEN;
585
586 plist = prefix_list_lookup (AFI_IP, (char *) rule);
587 if (plist == NULL)
588 return RMAP_NOMATCH;
589
590 return (prefix_list_apply (plist, &p) == PREFIX_DENY ?
591 RMAP_NOMATCH : RMAP_MATCH);
592 }
593 return RMAP_NOMATCH;
594}
595
paul94f2b392005-06-28 12:44:16 +0000596static void *
hassoc1643bb2005-02-02 16:43:17 +0000597route_match_ip_route_source_prefix_list_compile (const char *arg)
598{
599 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
600}
601
paul94f2b392005-06-28 12:44:16 +0000602static void
hassoc1643bb2005-02-02 16:43:17 +0000603route_match_ip_route_source_prefix_list_free (void *rule)
604{
605 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
606}
607
608struct route_map_rule_cmd route_match_ip_route_source_prefix_list_cmd =
609{
610 "ip route-source prefix-list",
611 route_match_ip_route_source_prefix_list,
612 route_match_ip_route_source_prefix_list_compile,
613 route_match_ip_route_source_prefix_list_free
614};
David Lamparter6b0655a2014-06-04 06:53:35 +0200615
paul718e3742002-12-13 20:15:29 +0000616/* `match metric METRIC' */
617
618/* Match function return 1 if match is success else return zero. */
paul94f2b392005-06-28 12:44:16 +0000619static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000620route_match_metric (void *rule, struct prefix *prefix,
621 route_map_object_t type, void *object)
622{
Timo Teräs38f22ab2015-04-29 09:43:02 +0300623 struct rmap_value *rv;
paul718e3742002-12-13 20:15:29 +0000624 struct bgp_info *bgp_info;
625
626 if (type == RMAP_BGP)
627 {
Timo Teräs38f22ab2015-04-29 09:43:02 +0300628 rv = rule;
paul718e3742002-12-13 20:15:29 +0000629 bgp_info = object;
Timo Teräs38f22ab2015-04-29 09:43:02 +0300630 return route_value_match(rv, bgp_info->attr->med);
paul718e3742002-12-13 20:15:29 +0000631 }
632 return RMAP_NOMATCH;
633}
634
paul718e3742002-12-13 20:15:29 +0000635/* Route map commands for metric matching. */
636struct route_map_rule_cmd route_match_metric_cmd =
637{
638 "metric",
639 route_match_metric,
Timo Teräs38f22ab2015-04-29 09:43:02 +0300640 route_value_compile,
641 route_value_free,
paul718e3742002-12-13 20:15:29 +0000642};
David Lamparter6b0655a2014-06-04 06:53:35 +0200643
paul718e3742002-12-13 20:15:29 +0000644/* `match as-path ASPATH' */
645
646/* Match function for as-path match. I assume given object is */
paul94f2b392005-06-28 12:44:16 +0000647static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000648route_match_aspath (void *rule, struct prefix *prefix,
649 route_map_object_t type, void *object)
650{
651
652 struct as_list *as_list;
653 struct bgp_info *bgp_info;
654
655 if (type == RMAP_BGP)
656 {
657 as_list = as_list_lookup ((char *) rule);
658 if (as_list == NULL)
659 return RMAP_NOMATCH;
660
661 bgp_info = object;
662
663 /* Perform match. */
664 return ((as_list_apply (as_list, bgp_info->attr->aspath) == AS_FILTER_DENY) ? RMAP_NOMATCH : RMAP_MATCH);
665 }
666 return RMAP_NOMATCH;
667}
668
669/* Compile function for as-path match. */
paul94f2b392005-06-28 12:44:16 +0000670static void *
paulfd79ac92004-10-13 05:06:08 +0000671route_match_aspath_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000672{
673 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
674}
675
676/* Compile function for as-path match. */
paul94f2b392005-06-28 12:44:16 +0000677static void
paul718e3742002-12-13 20:15:29 +0000678route_match_aspath_free (void *rule)
679{
680 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
681}
682
683/* Route map commands for aspath matching. */
684struct route_map_rule_cmd route_match_aspath_cmd =
685{
686 "as-path",
687 route_match_aspath,
688 route_match_aspath_compile,
689 route_match_aspath_free
690};
David Lamparter6b0655a2014-06-04 06:53:35 +0200691
paul718e3742002-12-13 20:15:29 +0000692/* `match community COMMUNIY' */
693struct rmap_community
694{
695 char *name;
696 int exact;
697};
698
699/* Match function for community match. */
paul94f2b392005-06-28 12:44:16 +0000700static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000701route_match_community (void *rule, struct prefix *prefix,
702 route_map_object_t type, void *object)
703{
704 struct community_list *list;
705 struct bgp_info *bgp_info;
706 struct rmap_community *rcom;
707
708 if (type == RMAP_BGP)
709 {
710 bgp_info = object;
711 rcom = rule;
712
hassofee6e4e2005-02-02 16:29:31 +0000713 list = community_list_lookup (bgp_clist, rcom->name, COMMUNITY_LIST_MASTER);
paul718e3742002-12-13 20:15:29 +0000714 if (! list)
715 return RMAP_NOMATCH;
716
717 if (rcom->exact)
718 {
719 if (community_list_exact_match (bgp_info->attr->community, list))
720 return RMAP_MATCH;
721 }
722 else
723 {
724 if (community_list_match (bgp_info->attr->community, list))
725 return RMAP_MATCH;
726 }
727 }
728 return RMAP_NOMATCH;
729}
730
731/* Compile function for community match. */
paul94f2b392005-06-28 12:44:16 +0000732static void *
paulfd79ac92004-10-13 05:06:08 +0000733route_match_community_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000734{
735 struct rmap_community *rcom;
736 int len;
737 char *p;
738
739 rcom = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct rmap_community));
740
741 p = strchr (arg, ' ');
742 if (p)
743 {
744 len = p - arg;
745 rcom->name = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, len + 1);
746 memcpy (rcom->name, arg, len);
747 rcom->exact = 1;
748 }
749 else
750 {
751 rcom->name = XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
752 rcom->exact = 0;
753 }
754 return rcom;
755}
756
757/* Compile function for community match. */
paul94f2b392005-06-28 12:44:16 +0000758static void
paul718e3742002-12-13 20:15:29 +0000759route_match_community_free (void *rule)
760{
761 struct rmap_community *rcom = rule;
762
763 XFREE (MTYPE_ROUTE_MAP_COMPILED, rcom->name);
764 XFREE (MTYPE_ROUTE_MAP_COMPILED, rcom);
765}
766
767/* Route map commands for community matching. */
768struct route_map_rule_cmd route_match_community_cmd =
769{
770 "community",
771 route_match_community,
772 route_match_community_compile,
773 route_match_community_free
774};
David Lamparter6b0655a2014-06-04 06:53:35 +0200775
paul73ffb252003-04-19 15:49:49 +0000776/* Match function for extcommunity match. */
paul94f2b392005-06-28 12:44:16 +0000777static route_map_result_t
paul73ffb252003-04-19 15:49:49 +0000778route_match_ecommunity (void *rule, struct prefix *prefix,
779 route_map_object_t type, void *object)
780{
781 struct community_list *list;
782 struct bgp_info *bgp_info;
783
784 if (type == RMAP_BGP)
785 {
786 bgp_info = object;
Paul Jakmafb982c22007-05-04 20:15:47 +0000787
788 if (!bgp_info->attr->extra)
789 return RMAP_NOMATCH;
790
paul73ffb252003-04-19 15:49:49 +0000791 list = community_list_lookup (bgp_clist, (char *) rule,
hassofee6e4e2005-02-02 16:29:31 +0000792 EXTCOMMUNITY_LIST_MASTER);
paul73ffb252003-04-19 15:49:49 +0000793 if (! list)
794 return RMAP_NOMATCH;
795
Paul Jakmafb982c22007-05-04 20:15:47 +0000796 if (ecommunity_list_match (bgp_info->attr->extra->ecommunity, list))
paul73ffb252003-04-19 15:49:49 +0000797 return RMAP_MATCH;
798 }
799 return RMAP_NOMATCH;
800}
801
802/* Compile function for extcommunity match. */
paul94f2b392005-06-28 12:44:16 +0000803static void *
paulfd79ac92004-10-13 05:06:08 +0000804route_match_ecommunity_compile (const char *arg)
paul73ffb252003-04-19 15:49:49 +0000805{
806 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
807}
808
809/* Compile function for extcommunity match. */
paul94f2b392005-06-28 12:44:16 +0000810static void
paul73ffb252003-04-19 15:49:49 +0000811route_match_ecommunity_free (void *rule)
812{
813 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
814}
815
816/* Route map commands for community matching. */
817struct route_map_rule_cmd route_match_ecommunity_cmd =
818{
819 "extcommunity",
820 route_match_ecommunity,
821 route_match_ecommunity_compile,
822 route_match_ecommunity_free
823};
David Lamparter6b0655a2014-06-04 06:53:35 +0200824
paul718e3742002-12-13 20:15:29 +0000825/* `match nlri` and `set nlri` are replaced by `address-family ipv4`
826 and `address-family vpnv4'. */
David Lamparter6b0655a2014-06-04 06:53:35 +0200827
paul718e3742002-12-13 20:15:29 +0000828/* `match origin' */
paul94f2b392005-06-28 12:44:16 +0000829static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000830route_match_origin (void *rule, struct prefix *prefix,
831 route_map_object_t type, void *object)
832{
833 u_char *origin;
834 struct bgp_info *bgp_info;
835
836 if (type == RMAP_BGP)
837 {
838 origin = rule;
839 bgp_info = object;
840
841 if (bgp_info->attr->origin == *origin)
842 return RMAP_MATCH;
843 }
844
845 return RMAP_NOMATCH;
846}
847
paul94f2b392005-06-28 12:44:16 +0000848static void *
paulfd79ac92004-10-13 05:06:08 +0000849route_match_origin_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000850{
851 u_char *origin;
852
853 origin = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (u_char));
854
855 if (strcmp (arg, "igp") == 0)
856 *origin = 0;
857 else if (strcmp (arg, "egp") == 0)
858 *origin = 1;
859 else
860 *origin = 2;
861
862 return origin;
863}
864
865/* Free route map's compiled `ip address' value. */
paul94f2b392005-06-28 12:44:16 +0000866static void
paul718e3742002-12-13 20:15:29 +0000867route_match_origin_free (void *rule)
868{
869 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
870}
871
872/* Route map commands for origin matching. */
873struct route_map_rule_cmd route_match_origin_cmd =
874{
875 "origin",
876 route_match_origin,
877 route_match_origin_compile,
878 route_match_origin_free
879};
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400880
881/* match probability { */
882
883static route_map_result_t
884route_match_probability (void *rule, struct prefix *prefix,
885 route_map_object_t type, void *object)
886{
Donald Sharpf31bab42015-06-19 19:26:19 -0400887 long r = random();
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400888
David Lamparter8c9cd852015-04-19 14:40:02 +0200889 switch (*(long *) rule)
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400890 {
891 case 0: break;
892 case RAND_MAX: return RMAP_MATCH;
893 default:
David Lamparter8c9cd852015-04-19 14:40:02 +0200894 if (r < *(long *) rule)
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400895 {
896 return RMAP_MATCH;
897 }
898 }
899
900 return RMAP_NOMATCH;
901}
902
903static void *
904route_match_probability_compile (const char *arg)
905{
David Lamparter8c9cd852015-04-19 14:40:02 +0200906 long *lobule;
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400907 unsigned perc;
908
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400909 perc = atoi (arg);
David Lamparter8c9cd852015-04-19 14:40:02 +0200910 lobule = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (long));
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +0400911
912 switch (perc)
913 {
914 case 0: *lobule = 0; break;
915 case 100: *lobule = RAND_MAX; break;
916 default: *lobule = RAND_MAX / 100 * perc;
917 }
918
919 return lobule;
920}
921
922static void
923route_match_probability_free (void *rule)
924{
925 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
926}
927
928struct route_map_rule_cmd route_match_probability_cmd =
929{
930 "probability",
931 route_match_probability,
932 route_match_probability_compile,
933 route_match_probability_free
934};
935
936/* } */
937
paul718e3742002-12-13 20:15:29 +0000938/* `set ip next-hop IP_ADDRESS' */
939
940/* Set nexthop to object. ojbect must be pointer to struct attr. */
paulac41b2a2003-08-12 05:32:27 +0000941struct rmap_ip_nexthop_set
942{
943 struct in_addr *address;
944 int peer_address;
945};
946
paul94f2b392005-06-28 12:44:16 +0000947static route_map_result_t
paul718e3742002-12-13 20:15:29 +0000948route_set_ip_nexthop (void *rule, struct prefix *prefix,
949 route_map_object_t type, void *object)
950{
paulac41b2a2003-08-12 05:32:27 +0000951 struct rmap_ip_nexthop_set *rins = rule;
paul718e3742002-12-13 20:15:29 +0000952 struct bgp_info *bgp_info;
paulac41b2a2003-08-12 05:32:27 +0000953 struct peer *peer;
paul718e3742002-12-13 20:15:29 +0000954
955 if (type == RMAP_BGP)
956 {
paul718e3742002-12-13 20:15:29 +0000957 bgp_info = object;
paulac41b2a2003-08-12 05:32:27 +0000958 peer = bgp_info->peer;
959
960 if (rins->peer_address)
961 {
paulfee0f4c2004-09-13 05:12:46 +0000962 if ((CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_IN) ||
963 CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_IMPORT))
paulac41b2a2003-08-12 05:32:27 +0000964 && peer->su_remote
965 && sockunion_family (peer->su_remote) == AF_INET)
966 {
Jorge Boncompte [DTI2]0c5ed3e2012-04-10 16:57:22 +0200967 bgp_info->attr->nexthop.s_addr = sockunion2ip (peer->su_remote);
paulac41b2a2003-08-12 05:32:27 +0000968 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
969 }
970 else if (CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_OUT)
971 && peer->su_local
972 && sockunion_family (peer->su_local) == AF_INET)
973 {
Jorge Boncompte [DTI2]0c5ed3e2012-04-10 16:57:22 +0200974 bgp_info->attr->nexthop.s_addr = sockunion2ip (peer->su_local);
paulac41b2a2003-08-12 05:32:27 +0000975 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
976 }
977 }
978 else
979 {
980 /* Set next hop value. */
981 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_NEXT_HOP);
982 bgp_info->attr->nexthop = *rins->address;
983 }
paul718e3742002-12-13 20:15:29 +0000984 }
985
986 return RMAP_OKAY;
987}
988
989/* Route map `ip nexthop' compile function. Given string is converted
990 to struct in_addr structure. */
paul94f2b392005-06-28 12:44:16 +0000991static void *
paulfd79ac92004-10-13 05:06:08 +0000992route_set_ip_nexthop_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +0000993{
paulac41b2a2003-08-12 05:32:27 +0000994 struct rmap_ip_nexthop_set *rins;
995 struct in_addr *address = NULL;
996 int peer_address = 0;
paul718e3742002-12-13 20:15:29 +0000997 int ret;
paul718e3742002-12-13 20:15:29 +0000998
paulac41b2a2003-08-12 05:32:27 +0000999 if (strcmp (arg, "peer-address") == 0)
1000 peer_address = 1;
1001 else
paul718e3742002-12-13 20:15:29 +00001002 {
paulac41b2a2003-08-12 05:32:27 +00001003 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in_addr));
1004 ret = inet_aton (arg, address);
1005
1006 if (ret == 0)
1007 {
1008 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
1009 return NULL;
1010 }
paul718e3742002-12-13 20:15:29 +00001011 }
1012
Stephen Hemminger393deb92008-08-18 14:13:29 -07001013 rins = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct rmap_ip_nexthop_set));
paulac41b2a2003-08-12 05:32:27 +00001014
1015 rins->address = address;
1016 rins->peer_address = peer_address;
1017
1018 return rins;
paul718e3742002-12-13 20:15:29 +00001019}
1020
1021/* Free route map's compiled `ip nexthop' value. */
paul94f2b392005-06-28 12:44:16 +00001022static void
paul718e3742002-12-13 20:15:29 +00001023route_set_ip_nexthop_free (void *rule)
1024{
paulac41b2a2003-08-12 05:32:27 +00001025 struct rmap_ip_nexthop_set *rins = rule;
1026
1027 if (rins->address)
1028 XFREE (MTYPE_ROUTE_MAP_COMPILED, rins->address);
1029
1030 XFREE (MTYPE_ROUTE_MAP_COMPILED, rins);
paul718e3742002-12-13 20:15:29 +00001031}
1032
1033/* Route map commands for ip nexthop set. */
1034struct route_map_rule_cmd route_set_ip_nexthop_cmd =
1035{
1036 "ip next-hop",
1037 route_set_ip_nexthop,
1038 route_set_ip_nexthop_compile,
1039 route_set_ip_nexthop_free
1040};
David Lamparter6b0655a2014-06-04 06:53:35 +02001041
paul718e3742002-12-13 20:15:29 +00001042/* `set local-preference LOCAL_PREF' */
1043
1044/* Set local preference. */
paul94f2b392005-06-28 12:44:16 +00001045static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001046route_set_local_pref (void *rule, struct prefix *prefix,
1047 route_map_object_t type, void *object)
1048{
Timo Teräs38f22ab2015-04-29 09:43:02 +03001049 struct rmap_value *rv;
paul718e3742002-12-13 20:15:29 +00001050 struct bgp_info *bgp_info;
Timo Teräs38f22ab2015-04-29 09:43:02 +03001051 u_int32_t locpref = 0;
paul718e3742002-12-13 20:15:29 +00001052
1053 if (type == RMAP_BGP)
1054 {
1055 /* Fetch routemap's rule information. */
Timo Teräs38f22ab2015-04-29 09:43:02 +03001056 rv = rule;
paul718e3742002-12-13 20:15:29 +00001057 bgp_info = object;
1058
1059 /* Set local preference value. */
Timo Teräs38f22ab2015-04-29 09:43:02 +03001060 if (bgp_info->attr->flag & ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF))
1061 locpref = bgp_info->attr->local_pref;
1062
paul718e3742002-12-13 20:15:29 +00001063 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_LOCAL_PREF);
Timo Teräsef757702015-04-29 09:43:04 +03001064 bgp_info->attr->local_pref = route_value_adjust(rv, locpref, bgp_info->peer);
paul718e3742002-12-13 20:15:29 +00001065 }
1066
1067 return RMAP_OKAY;
1068}
1069
paul718e3742002-12-13 20:15:29 +00001070/* Set local preference rule structure. */
1071struct route_map_rule_cmd route_set_local_pref_cmd =
1072{
1073 "local-preference",
1074 route_set_local_pref,
Timo Teräs38f22ab2015-04-29 09:43:02 +03001075 route_value_compile,
1076 route_value_free,
paul718e3742002-12-13 20:15:29 +00001077};
David Lamparter6b0655a2014-06-04 06:53:35 +02001078
paul718e3742002-12-13 20:15:29 +00001079/* `set weight WEIGHT' */
1080
1081/* Set weight. */
paul94f2b392005-06-28 12:44:16 +00001082static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001083route_set_weight (void *rule, struct prefix *prefix, route_map_object_t type,
1084 void *object)
1085{
Timo Teräs38f22ab2015-04-29 09:43:02 +03001086 struct rmap_value *rv;
paul718e3742002-12-13 20:15:29 +00001087 struct bgp_info *bgp_info;
Timo Teräs38f22ab2015-04-29 09:43:02 +03001088 u_int32_t weight;
paul718e3742002-12-13 20:15:29 +00001089
1090 if (type == RMAP_BGP)
1091 {
1092 /* Fetch routemap's rule information. */
Timo Teräs38f22ab2015-04-29 09:43:02 +03001093 rv = rule;
paul718e3742002-12-13 20:15:29 +00001094 bgp_info = object;
1095
1096 /* Set weight value. */
Timo Teräsef757702015-04-29 09:43:04 +03001097 weight = route_value_adjust(rv, 0, bgp_info->peer);
Timo Teräs38f22ab2015-04-29 09:43:02 +03001098 if (weight)
1099 (bgp_attr_extra_get (bgp_info->attr))->weight = weight;
Paul Jakmafb982c22007-05-04 20:15:47 +00001100 else if (bgp_info->attr->extra)
1101 bgp_info->attr->extra->weight = 0;
paul718e3742002-12-13 20:15:29 +00001102 }
1103
1104 return RMAP_OKAY;
1105}
1106
paul718e3742002-12-13 20:15:29 +00001107/* Set local preference rule structure. */
1108struct route_map_rule_cmd route_set_weight_cmd =
1109{
1110 "weight",
1111 route_set_weight,
Timo Teräs38f22ab2015-04-29 09:43:02 +03001112 route_value_compile,
1113 route_value_free,
paul718e3742002-12-13 20:15:29 +00001114};
David Lamparter6b0655a2014-06-04 06:53:35 +02001115
paul718e3742002-12-13 20:15:29 +00001116/* `set metric METRIC' */
1117
1118/* Set metric to attribute. */
paul94f2b392005-06-28 12:44:16 +00001119static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001120route_set_metric (void *rule, struct prefix *prefix,
1121 route_map_object_t type, void *object)
1122{
Timo Teräs38f22ab2015-04-29 09:43:02 +03001123 struct rmap_value *rv;
paul718e3742002-12-13 20:15:29 +00001124 struct bgp_info *bgp_info;
Timo Teräs38f22ab2015-04-29 09:43:02 +03001125 u_int32_t med = 0;
paul718e3742002-12-13 20:15:29 +00001126
1127 if (type == RMAP_BGP)
1128 {
1129 /* Fetch routemap's rule information. */
Timo Teräs38f22ab2015-04-29 09:43:02 +03001130 rv = rule;
paul718e3742002-12-13 20:15:29 +00001131 bgp_info = object;
1132
Timo Teräs38f22ab2015-04-29 09:43:02 +03001133 if (bgp_info->attr->flag & ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC))
1134 med = bgp_info->attr->med;
1135
Timo Teräsef757702015-04-29 09:43:04 +03001136 bgp_info->attr->med = route_value_adjust(rv, med, bgp_info->peer);
paul718e3742002-12-13 20:15:29 +00001137 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_MULTI_EXIT_DISC);
paul718e3742002-12-13 20:15:29 +00001138 }
1139 return RMAP_OKAY;
1140}
1141
paul718e3742002-12-13 20:15:29 +00001142/* Set metric rule structure. */
1143struct route_map_rule_cmd route_set_metric_cmd =
1144{
1145 "metric",
1146 route_set_metric,
Timo Teräs38f22ab2015-04-29 09:43:02 +03001147 route_value_compile,
1148 route_value_free,
paul718e3742002-12-13 20:15:29 +00001149};
David Lamparter6b0655a2014-06-04 06:53:35 +02001150
paul718e3742002-12-13 20:15:29 +00001151/* `set as-path prepend ASPATH' */
1152
1153/* For AS path prepend mechanism. */
paul94f2b392005-06-28 12:44:16 +00001154static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001155route_set_aspath_prepend (void *rule, struct prefix *prefix, route_map_object_t type, void *object)
1156{
1157 struct aspath *aspath;
1158 struct aspath *new;
1159 struct bgp_info *binfo;
1160
1161 if (type == RMAP_BGP)
1162 {
paul718e3742002-12-13 20:15:29 +00001163 binfo = object;
1164
1165 if (binfo->attr->aspath->refcnt)
1166 new = aspath_dup (binfo->attr->aspath);
1167 else
1168 new = binfo->attr->aspath;
1169
Timo Teräs85c854a2014-09-30 11:31:53 +03001170 if ((uintptr_t)rule > 10)
1171 {
1172 aspath = rule;
1173 aspath_prepend (aspath, new);
1174 }
1175 else
1176 {
1177 as_t as = aspath_leftmost(new);
1178 if (!as) as = binfo->peer->as;
1179 new = aspath_add_seq_n (new, as, (uintptr_t) rule);
1180 }
1181
paul718e3742002-12-13 20:15:29 +00001182 binfo->attr->aspath = new;
1183 }
1184
1185 return RMAP_OKAY;
1186}
1187
Timo Teräs85c854a2014-09-30 11:31:53 +03001188static void *
1189route_set_aspath_prepend_compile (const char *arg)
1190{
1191 unsigned int num;
1192
1193 if (sscanf(arg, "last-as %u", &num) == 1 && num > 0 && num < 10)
1194 return (void*)(uintptr_t)num;
1195
1196 return route_aspath_compile(arg);
1197}
1198
1199static void
1200route_set_aspath_prepend_free (void *rule)
1201{
1202 if ((uintptr_t)rule > 10)
1203 route_aspath_free(rule);
1204}
1205
1206
Timo Teräs2aa640b2014-05-20 08:57:26 +03001207/* Set as-path prepend rule structure. */
paul718e3742002-12-13 20:15:29 +00001208struct route_map_rule_cmd route_set_aspath_prepend_cmd =
1209{
1210 "as-path prepend",
1211 route_set_aspath_prepend,
Timo Teräs85c854a2014-09-30 11:31:53 +03001212 route_set_aspath_prepend_compile,
1213 route_set_aspath_prepend_free,
paul718e3742002-12-13 20:15:29 +00001214};
David Lamparter6b0655a2014-06-04 06:53:35 +02001215
Denis Ovsienko841f7a52008-04-10 11:47:45 +00001216/* `set as-path exclude ASn' */
1217
1218/* For ASN exclude mechanism.
1219 * Iterate over ASns requested and filter them from the given AS_PATH one by one.
1220 * Make a deep copy of existing AS_PATH, but for the first ASn only.
1221 */
1222static route_map_result_t
1223route_set_aspath_exclude (void *rule, struct prefix *dummy, route_map_object_t type, void *object)
1224{
1225 struct aspath * new_path, * exclude_path;
1226 struct bgp_info *binfo;
1227
1228 if (type == RMAP_BGP)
1229 {
1230 exclude_path = rule;
1231 binfo = object;
1232 if (binfo->attr->aspath->refcnt)
1233 new_path = aspath_dup (binfo->attr->aspath);
1234 else
1235 new_path = binfo->attr->aspath;
1236 binfo->attr->aspath = aspath_filter_exclude (new_path, exclude_path);
1237 }
1238 return RMAP_OKAY;
1239}
1240
Denis Ovsienko841f7a52008-04-10 11:47:45 +00001241/* Set ASn exlude rule structure. */
1242struct route_map_rule_cmd route_set_aspath_exclude_cmd =
1243{
1244 "as-path exclude",
1245 route_set_aspath_exclude,
Timo Teräsb304dcb2014-05-20 09:04:49 +03001246 route_aspath_compile,
1247 route_aspath_free,
Denis Ovsienko841f7a52008-04-10 11:47:45 +00001248};
David Lamparter6b0655a2014-06-04 06:53:35 +02001249
paul718e3742002-12-13 20:15:29 +00001250/* `set community COMMUNITY' */
1251struct rmap_com_set
1252{
1253 struct community *com;
1254 int additive;
1255 int none;
1256};
1257
1258/* For community set mechanism. */
paul94f2b392005-06-28 12:44:16 +00001259static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001260route_set_community (void *rule, struct prefix *prefix,
1261 route_map_object_t type, void *object)
1262{
1263 struct rmap_com_set *rcs;
1264 struct bgp_info *binfo;
1265 struct attr *attr;
1266 struct community *new = NULL;
1267 struct community *old;
1268 struct community *merge;
Paul Jakmaaa94ca82006-02-18 10:49:04 +00001269
paul718e3742002-12-13 20:15:29 +00001270 if (type == RMAP_BGP)
1271 {
1272 rcs = rule;
1273 binfo = object;
1274 attr = binfo->attr;
1275 old = attr->community;
1276
1277 /* "none" case. */
1278 if (rcs->none)
1279 {
1280 attr->flag &= ~(ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES));
1281 attr->community = NULL;
Christian Frankeb06b35f2012-12-07 14:26:09 +00001282 /* See the longer comment down below. */
1283 if (old && old->refcnt == 0)
1284 community_free(old);
paul718e3742002-12-13 20:15:29 +00001285 return RMAP_OKAY;
1286 }
1287
1288 /* "additive" case. */
1289 if (rcs->additive && old)
1290 {
1291 merge = community_merge (community_dup (old), rcs->com);
Paul Jakmaaa94ca82006-02-18 10:49:04 +00001292
1293 /* HACK: if the old community is not intern'd,
1294 * we should free it here, or all reference to it may be lost.
1295 * Really need to cleanup attribute caching sometime.
1296 */
1297 if (old->refcnt == 0)
1298 community_free (old);
paul718e3742002-12-13 20:15:29 +00001299 new = community_uniq_sort (merge);
1300 community_free (merge);
1301 }
1302 else
1303 new = community_dup (rcs->com);
Paul Jakmaaa94ca82006-02-18 10:49:04 +00001304
1305 /* will be interned by caller if required */
Paul Jakma4a2035f2011-04-01 15:58:27 +01001306 attr->community = new;
hasso70601e02005-05-27 03:26:57 +00001307
paul718e3742002-12-13 20:15:29 +00001308 attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
1309 }
1310
1311 return RMAP_OKAY;
1312}
1313
1314/* Compile function for set community. */
paul94f2b392005-06-28 12:44:16 +00001315static void *
paulfd79ac92004-10-13 05:06:08 +00001316route_set_community_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001317{
1318 struct rmap_com_set *rcs;
1319 struct community *com = NULL;
1320 char *sp;
1321 int additive = 0;
1322 int none = 0;
1323
1324 if (strcmp (arg, "none") == 0)
1325 none = 1;
1326 else
1327 {
1328 sp = strstr (arg, "additive");
1329
1330 if (sp && sp > arg)
1331 {
1332 /* "additive" keyworkd is included. */
1333 additive = 1;
1334 *(sp - 1) = '\0';
1335 }
1336
1337 com = community_str2com (arg);
1338
1339 if (additive)
1340 *(sp - 1) = ' ';
1341
1342 if (! com)
1343 return NULL;
1344 }
1345
Stephen Hemminger393deb92008-08-18 14:13:29 -07001346 rcs = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct rmap_com_set));
Paul Jakma4a2035f2011-04-01 15:58:27 +01001347 rcs->com = com;
paul718e3742002-12-13 20:15:29 +00001348 rcs->additive = additive;
1349 rcs->none = none;
1350
1351 return rcs;
1352}
1353
1354/* Free function for set community. */
paul94f2b392005-06-28 12:44:16 +00001355static void
paul718e3742002-12-13 20:15:29 +00001356route_set_community_free (void *rule)
1357{
1358 struct rmap_com_set *rcs = rule;
1359
1360 if (rcs->com)
1361 community_free (rcs->com);
1362 XFREE (MTYPE_ROUTE_MAP_COMPILED, rcs);
1363}
1364
1365/* Set community rule structure. */
1366struct route_map_rule_cmd route_set_community_cmd =
1367{
1368 "community",
1369 route_set_community,
1370 route_set_community_compile,
1371 route_set_community_free,
1372};
David Lamparter6b0655a2014-06-04 06:53:35 +02001373
hassofee6e4e2005-02-02 16:29:31 +00001374/* `set comm-list (<1-99>|<100-500>|WORD) delete' */
paul718e3742002-12-13 20:15:29 +00001375
1376/* For community set mechanism. */
paul94f2b392005-06-28 12:44:16 +00001377static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001378route_set_community_delete (void *rule, struct prefix *prefix,
1379 route_map_object_t type, void *object)
1380{
1381 struct community_list *list;
1382 struct community *merge;
1383 struct community *new;
1384 struct community *old;
1385 struct bgp_info *binfo;
1386
1387 if (type == RMAP_BGP)
1388 {
1389 if (! rule)
1390 return RMAP_OKAY;
1391
1392 binfo = object;
hassofee6e4e2005-02-02 16:29:31 +00001393 list = community_list_lookup (bgp_clist, rule, COMMUNITY_LIST_MASTER);
paul718e3742002-12-13 20:15:29 +00001394 old = binfo->attr->community;
1395
1396 if (list && old)
1397 {
1398 merge = community_list_match_delete (community_dup (old), list);
1399 new = community_uniq_sort (merge);
1400 community_free (merge);
1401
Michael Lambert604a9b42010-09-13 11:48:11 -04001402 /* HACK: if the old community is not intern'd,
1403 * we should free it here, or all reference to it may be lost.
1404 * Really need to cleanup attribute caching sometime.
1405 */
1406 if (old->refcnt == 0)
1407 community_free (old);
1408
paul718e3742002-12-13 20:15:29 +00001409 if (new->size == 0)
1410 {
1411 binfo->attr->community = NULL;
1412 binfo->attr->flag &= ~ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
1413 community_free (new);
1414 }
1415 else
1416 {
Paul Jakma4a2035f2011-04-01 15:58:27 +01001417 binfo->attr->community = new;
paul718e3742002-12-13 20:15:29 +00001418 binfo->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_COMMUNITIES);
1419 }
1420 }
1421 }
1422
1423 return RMAP_OKAY;
1424}
1425
1426/* Compile function for set community. */
paul94f2b392005-06-28 12:44:16 +00001427static void *
paulfd79ac92004-10-13 05:06:08 +00001428route_set_community_delete_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001429{
1430 char *p;
1431 char *str;
1432 int len;
1433
1434 p = strchr (arg, ' ');
1435 if (p)
1436 {
1437 len = p - arg;
1438 str = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, len + 1);
1439 memcpy (str, arg, len);
1440 }
1441 else
1442 str = NULL;
1443
1444 return str;
1445}
1446
1447/* Free function for set community. */
paul94f2b392005-06-28 12:44:16 +00001448static void
paul718e3742002-12-13 20:15:29 +00001449route_set_community_delete_free (void *rule)
1450{
1451 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1452}
1453
1454/* Set community rule structure. */
1455struct route_map_rule_cmd route_set_community_delete_cmd =
1456{
1457 "comm-list",
1458 route_set_community_delete,
1459 route_set_community_delete_compile,
1460 route_set_community_delete_free,
1461};
David Lamparter6b0655a2014-06-04 06:53:35 +02001462
paul718e3742002-12-13 20:15:29 +00001463/* `set extcommunity rt COMMUNITY' */
1464
David Lamparter73d78ea2014-06-04 00:58:47 +02001465/* For community set mechanism. Used by _rt and _soo. */
paul94f2b392005-06-28 12:44:16 +00001466static route_map_result_t
David Lamparter73d78ea2014-06-04 00:58:47 +02001467route_set_ecommunity (void *rule, struct prefix *prefix,
1468 route_map_object_t type, void *object)
paul718e3742002-12-13 20:15:29 +00001469{
1470 struct ecommunity *ecom;
1471 struct ecommunity *new_ecom;
1472 struct ecommunity *old_ecom;
1473 struct bgp_info *bgp_info;
1474
1475 if (type == RMAP_BGP)
1476 {
1477 ecom = rule;
1478 bgp_info = object;
1479
1480 if (! ecom)
1481 return RMAP_OKAY;
1482
1483 /* We assume additive for Extended Community. */
Paul Jakmafb982c22007-05-04 20:15:47 +00001484 old_ecom = (bgp_attr_extra_get (bgp_info->attr))->ecommunity;
paul718e3742002-12-13 20:15:29 +00001485
1486 if (old_ecom)
David Lamparter27bf90a2014-06-04 00:59:01 +02001487 {
1488 new_ecom = ecommunity_merge (ecommunity_dup (old_ecom), ecom);
1489
1490 /* old_ecom->refcnt = 1 => owned elsewhere, e.g. bgp_update_receive()
1491 * ->refcnt = 0 => set by a previous route-map statement */
1492 if (!old_ecom->refcnt)
1493 ecommunity_free (&old_ecom);
1494 }
paul718e3742002-12-13 20:15:29 +00001495 else
1496 new_ecom = ecommunity_dup (ecom);
1497
David Lamparter27bf90a2014-06-04 00:59:01 +02001498 /* will be intern()'d or attr_flush()'d by bgp_update_main() */
1499 bgp_info->attr->extra->ecommunity = new_ecom;
hasso70601e02005-05-27 03:26:57 +00001500
paul718e3742002-12-13 20:15:29 +00001501 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_EXT_COMMUNITIES);
1502 }
1503 return RMAP_OKAY;
1504}
1505
1506/* Compile function for set community. */
paul94f2b392005-06-28 12:44:16 +00001507static void *
paulfd79ac92004-10-13 05:06:08 +00001508route_set_ecommunity_rt_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001509{
1510 struct ecommunity *ecom;
1511
1512 ecom = ecommunity_str2com (arg, ECOMMUNITY_ROUTE_TARGET, 0);
1513 if (! ecom)
1514 return NULL;
Paul Jakmaf6f434b2010-11-23 21:28:03 +00001515 return ecommunity_intern (ecom);
paul718e3742002-12-13 20:15:29 +00001516}
1517
David Lamparter73d78ea2014-06-04 00:58:47 +02001518/* Free function for set community. Used by _rt and _soo */
paul94f2b392005-06-28 12:44:16 +00001519static void
David Lamparter73d78ea2014-06-04 00:58:47 +02001520route_set_ecommunity_free (void *rule)
paul718e3742002-12-13 20:15:29 +00001521{
1522 struct ecommunity *ecom = rule;
Paul Jakmaf6f434b2010-11-23 21:28:03 +00001523 ecommunity_unintern (&ecom);
paul718e3742002-12-13 20:15:29 +00001524}
1525
1526/* Set community rule structure. */
1527struct route_map_rule_cmd route_set_ecommunity_rt_cmd =
1528{
1529 "extcommunity rt",
David Lamparter73d78ea2014-06-04 00:58:47 +02001530 route_set_ecommunity,
paul718e3742002-12-13 20:15:29 +00001531 route_set_ecommunity_rt_compile,
David Lamparter73d78ea2014-06-04 00:58:47 +02001532 route_set_ecommunity_free,
paul718e3742002-12-13 20:15:29 +00001533};
1534
1535/* `set extcommunity soo COMMUNITY' */
1536
paul718e3742002-12-13 20:15:29 +00001537/* Compile function for set community. */
paul94f2b392005-06-28 12:44:16 +00001538static void *
paulfd79ac92004-10-13 05:06:08 +00001539route_set_ecommunity_soo_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001540{
1541 struct ecommunity *ecom;
1542
1543 ecom = ecommunity_str2com (arg, ECOMMUNITY_SITE_ORIGIN, 0);
1544 if (! ecom)
1545 return NULL;
1546
Paul Jakmaf6f434b2010-11-23 21:28:03 +00001547 return ecommunity_intern (ecom);
paul718e3742002-12-13 20:15:29 +00001548}
1549
paul718e3742002-12-13 20:15:29 +00001550/* Set community rule structure. */
1551struct route_map_rule_cmd route_set_ecommunity_soo_cmd =
1552{
1553 "extcommunity soo",
David Lamparter73d78ea2014-06-04 00:58:47 +02001554 route_set_ecommunity,
paul718e3742002-12-13 20:15:29 +00001555 route_set_ecommunity_soo_compile,
David Lamparter73d78ea2014-06-04 00:58:47 +02001556 route_set_ecommunity_free,
paul718e3742002-12-13 20:15:29 +00001557};
David Lamparter6b0655a2014-06-04 06:53:35 +02001558
paul718e3742002-12-13 20:15:29 +00001559/* `set origin ORIGIN' */
1560
1561/* For origin set. */
paul94f2b392005-06-28 12:44:16 +00001562static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001563route_set_origin (void *rule, struct prefix *prefix, route_map_object_t type, void *object)
1564{
1565 u_char *origin;
1566 struct bgp_info *bgp_info;
1567
1568 if (type == RMAP_BGP)
1569 {
1570 origin = rule;
1571 bgp_info = object;
1572
1573 bgp_info->attr->origin = *origin;
1574 }
1575
1576 return RMAP_OKAY;
1577}
1578
1579/* Compile function for origin set. */
paul94f2b392005-06-28 12:44:16 +00001580static void *
paulfd79ac92004-10-13 05:06:08 +00001581route_set_origin_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001582{
1583 u_char *origin;
1584
1585 origin = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (u_char));
1586
1587 if (strcmp (arg, "igp") == 0)
1588 *origin = 0;
1589 else if (strcmp (arg, "egp") == 0)
1590 *origin = 1;
1591 else
1592 *origin = 2;
1593
1594 return origin;
1595}
1596
1597/* Compile function for origin set. */
paul94f2b392005-06-28 12:44:16 +00001598static void
paul718e3742002-12-13 20:15:29 +00001599route_set_origin_free (void *rule)
1600{
1601 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1602}
1603
Timo Teräs2aa640b2014-05-20 08:57:26 +03001604/* Set origin rule structure. */
paul718e3742002-12-13 20:15:29 +00001605struct route_map_rule_cmd route_set_origin_cmd =
1606{
1607 "origin",
1608 route_set_origin,
1609 route_set_origin_compile,
1610 route_set_origin_free,
1611};
David Lamparter6b0655a2014-06-04 06:53:35 +02001612
paul718e3742002-12-13 20:15:29 +00001613/* `set atomic-aggregate' */
1614
1615/* For atomic aggregate set. */
paul94f2b392005-06-28 12:44:16 +00001616static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001617route_set_atomic_aggregate (void *rule, struct prefix *prefix,
1618 route_map_object_t type, void *object)
1619{
1620 struct bgp_info *bgp_info;
1621
1622 if (type == RMAP_BGP)
1623 {
1624 bgp_info = object;
1625 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ATOMIC_AGGREGATE);
1626 }
1627
1628 return RMAP_OKAY;
1629}
1630
1631/* Compile function for atomic aggregate. */
paul94f2b392005-06-28 12:44:16 +00001632static void *
paulfd79ac92004-10-13 05:06:08 +00001633route_set_atomic_aggregate_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001634{
1635 return (void *)1;
1636}
1637
1638/* Compile function for atomic aggregate. */
paul94f2b392005-06-28 12:44:16 +00001639static void
paul718e3742002-12-13 20:15:29 +00001640route_set_atomic_aggregate_free (void *rule)
1641{
1642 return;
1643}
1644
1645/* Set atomic aggregate rule structure. */
1646struct route_map_rule_cmd route_set_atomic_aggregate_cmd =
1647{
1648 "atomic-aggregate",
1649 route_set_atomic_aggregate,
1650 route_set_atomic_aggregate_compile,
1651 route_set_atomic_aggregate_free,
1652};
David Lamparter6b0655a2014-06-04 06:53:35 +02001653
paul718e3742002-12-13 20:15:29 +00001654/* `set aggregator as AS A.B.C.D' */
1655struct aggregator
1656{
1657 as_t as;
1658 struct in_addr address;
1659};
1660
paul94f2b392005-06-28 12:44:16 +00001661static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001662route_set_aggregator_as (void *rule, struct prefix *prefix,
1663 route_map_object_t type, void *object)
1664{
1665 struct bgp_info *bgp_info;
1666 struct aggregator *aggregator;
Paul Jakmafb982c22007-05-04 20:15:47 +00001667 struct attr_extra *ae;
paul718e3742002-12-13 20:15:29 +00001668
1669 if (type == RMAP_BGP)
1670 {
1671 bgp_info = object;
1672 aggregator = rule;
Paul Jakmafb982c22007-05-04 20:15:47 +00001673 ae = bgp_attr_extra_get (bgp_info->attr);
1674
1675 ae->aggregator_as = aggregator->as;
1676 ae->aggregator_addr = aggregator->address;
paul718e3742002-12-13 20:15:29 +00001677 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_AGGREGATOR);
1678 }
1679
1680 return RMAP_OKAY;
1681}
1682
paul94f2b392005-06-28 12:44:16 +00001683static void *
paulfd79ac92004-10-13 05:06:08 +00001684route_set_aggregator_as_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001685{
1686 struct aggregator *aggregator;
1687 char as[10];
1688 char address[20];
1689
Stephen Hemminger393deb92008-08-18 14:13:29 -07001690 aggregator = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct aggregator));
paul718e3742002-12-13 20:15:29 +00001691 sscanf (arg, "%s %s", as, address);
1692
1693 aggregator->as = strtoul (as, NULL, 10);
1694 inet_aton (address, &aggregator->address);
1695
1696 return aggregator;
1697}
1698
paul94f2b392005-06-28 12:44:16 +00001699static void
paul718e3742002-12-13 20:15:29 +00001700route_set_aggregator_as_free (void *rule)
1701{
1702 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1703}
1704
1705struct route_map_rule_cmd route_set_aggregator_as_cmd =
1706{
1707 "aggregator as",
1708 route_set_aggregator_as,
1709 route_set_aggregator_as_compile,
1710 route_set_aggregator_as_free,
1711};
David Lamparter6b0655a2014-06-04 06:53:35 +02001712
paul718e3742002-12-13 20:15:29 +00001713#ifdef HAVE_IPV6
1714/* `match ipv6 address IP_ACCESS_LIST' */
1715
paul94f2b392005-06-28 12:44:16 +00001716static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001717route_match_ipv6_address (void *rule, struct prefix *prefix,
1718 route_map_object_t type, void *object)
1719{
1720 struct access_list *alist;
1721
1722 if (type == RMAP_BGP)
1723 {
1724 alist = access_list_lookup (AFI_IP6, (char *) rule);
1725 if (alist == NULL)
1726 return RMAP_NOMATCH;
1727
1728 return (access_list_apply (alist, prefix) == FILTER_DENY ?
1729 RMAP_NOMATCH : RMAP_MATCH);
1730 }
1731 return RMAP_NOMATCH;
1732}
1733
paul94f2b392005-06-28 12:44:16 +00001734static void *
paulfd79ac92004-10-13 05:06:08 +00001735route_match_ipv6_address_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001736{
1737 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
1738}
1739
paul94f2b392005-06-28 12:44:16 +00001740static void
paul718e3742002-12-13 20:15:29 +00001741route_match_ipv6_address_free (void *rule)
1742{
1743 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1744}
1745
1746/* Route map commands for ip address matching. */
1747struct route_map_rule_cmd route_match_ipv6_address_cmd =
1748{
1749 "ipv6 address",
1750 route_match_ipv6_address,
1751 route_match_ipv6_address_compile,
1752 route_match_ipv6_address_free
1753};
David Lamparter6b0655a2014-06-04 06:53:35 +02001754
paul718e3742002-12-13 20:15:29 +00001755/* `match ipv6 next-hop IP_ADDRESS' */
1756
paul94f2b392005-06-28 12:44:16 +00001757static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001758route_match_ipv6_next_hop (void *rule, struct prefix *prefix,
1759 route_map_object_t type, void *object)
1760{
Paul Jakma7aa9dce2014-09-19 14:42:23 +01001761 struct in6_addr *addr = rule;
paul718e3742002-12-13 20:15:29 +00001762 struct bgp_info *bgp_info;
1763
1764 if (type == RMAP_BGP)
1765 {
paul718e3742002-12-13 20:15:29 +00001766 bgp_info = object;
Paul Jakmafb982c22007-05-04 20:15:47 +00001767
1768 if (!bgp_info->attr->extra)
1769 return RMAP_NOMATCH;
1770
Paul Jakma7aa9dce2014-09-19 14:42:23 +01001771 if (IPV6_ADDR_SAME (&bgp_info->attr->extra->mp_nexthop_global, addr))
paul718e3742002-12-13 20:15:29 +00001772 return RMAP_MATCH;
1773
Paul Jakmafb982c22007-05-04 20:15:47 +00001774 if (bgp_info->attr->extra->mp_nexthop_len == 32 &&
Paul Jakma7aa9dce2014-09-19 14:42:23 +01001775 IPV6_ADDR_SAME (&bgp_info->attr->extra->mp_nexthop_local, addr))
paul718e3742002-12-13 20:15:29 +00001776 return RMAP_MATCH;
1777
1778 return RMAP_NOMATCH;
1779 }
1780
1781 return RMAP_NOMATCH;
1782}
1783
paul94f2b392005-06-28 12:44:16 +00001784static void *
paulfd79ac92004-10-13 05:06:08 +00001785route_match_ipv6_next_hop_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001786{
1787 struct in6_addr *address;
1788 int ret;
1789
1790 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in6_addr));
1791
1792 ret = inet_pton (AF_INET6, arg, address);
1793 if (!ret)
1794 {
1795 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
1796 return NULL;
1797 }
1798
1799 return address;
1800}
1801
paul94f2b392005-06-28 12:44:16 +00001802static void
paul718e3742002-12-13 20:15:29 +00001803route_match_ipv6_next_hop_free (void *rule)
1804{
1805 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1806}
1807
1808struct route_map_rule_cmd route_match_ipv6_next_hop_cmd =
1809{
1810 "ipv6 next-hop",
1811 route_match_ipv6_next_hop,
1812 route_match_ipv6_next_hop_compile,
1813 route_match_ipv6_next_hop_free
1814};
David Lamparter6b0655a2014-06-04 06:53:35 +02001815
paul718e3742002-12-13 20:15:29 +00001816/* `match ipv6 address prefix-list PREFIX_LIST' */
1817
paul94f2b392005-06-28 12:44:16 +00001818static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001819route_match_ipv6_address_prefix_list (void *rule, struct prefix *prefix,
1820 route_map_object_t type, void *object)
1821{
1822 struct prefix_list *plist;
1823
1824 if (type == RMAP_BGP)
1825 {
1826 plist = prefix_list_lookup (AFI_IP6, (char *) rule);
1827 if (plist == NULL)
1828 return RMAP_NOMATCH;
1829
1830 return (prefix_list_apply (plist, prefix) == PREFIX_DENY ?
1831 RMAP_NOMATCH : RMAP_MATCH);
1832 }
1833 return RMAP_NOMATCH;
1834}
1835
paul94f2b392005-06-28 12:44:16 +00001836static void *
paulfd79ac92004-10-13 05:06:08 +00001837route_match_ipv6_address_prefix_list_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001838{
1839 return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg);
1840}
1841
paul94f2b392005-06-28 12:44:16 +00001842static void
paul718e3742002-12-13 20:15:29 +00001843route_match_ipv6_address_prefix_list_free (void *rule)
1844{
1845 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1846}
1847
1848struct route_map_rule_cmd route_match_ipv6_address_prefix_list_cmd =
1849{
1850 "ipv6 address prefix-list",
1851 route_match_ipv6_address_prefix_list,
1852 route_match_ipv6_address_prefix_list_compile,
1853 route_match_ipv6_address_prefix_list_free
1854};
David Lamparter6b0655a2014-06-04 06:53:35 +02001855
paul718e3742002-12-13 20:15:29 +00001856/* `set ipv6 nexthop global IP_ADDRESS' */
1857
1858/* Set nexthop to object. ojbect must be pointer to struct attr. */
paul94f2b392005-06-28 12:44:16 +00001859static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001860route_set_ipv6_nexthop_global (void *rule, struct prefix *prefix,
1861 route_map_object_t type, void *object)
1862{
1863 struct in6_addr *address;
1864 struct bgp_info *bgp_info;
1865
1866 if (type == RMAP_BGP)
1867 {
1868 /* Fetch routemap's rule information. */
1869 address = rule;
1870 bgp_info = object;
1871
1872 /* Set next hop value. */
Paul Jakmafb982c22007-05-04 20:15:47 +00001873 (bgp_attr_extra_get (bgp_info->attr))->mp_nexthop_global = *address;
paul718e3742002-12-13 20:15:29 +00001874
1875 /* Set nexthop length. */
Paul Jakmafb982c22007-05-04 20:15:47 +00001876 if (bgp_info->attr->extra->mp_nexthop_len == 0)
1877 bgp_info->attr->extra->mp_nexthop_len = 16;
paul718e3742002-12-13 20:15:29 +00001878 }
1879
1880 return RMAP_OKAY;
1881}
1882
1883/* Route map `ip next-hop' compile function. Given string is converted
1884 to struct in_addr structure. */
paul94f2b392005-06-28 12:44:16 +00001885static void *
paulfd79ac92004-10-13 05:06:08 +00001886route_set_ipv6_nexthop_global_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001887{
1888 int ret;
1889 struct in6_addr *address;
1890
1891 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in6_addr));
1892
1893 ret = inet_pton (AF_INET6, arg, address);
1894
1895 if (ret == 0)
1896 {
1897 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
1898 return NULL;
1899 }
1900
1901 return address;
1902}
1903
1904/* Free route map's compiled `ip next-hop' value. */
paul94f2b392005-06-28 12:44:16 +00001905static void
paul718e3742002-12-13 20:15:29 +00001906route_set_ipv6_nexthop_global_free (void *rule)
1907{
1908 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1909}
1910
1911/* Route map commands for ip nexthop set. */
1912struct route_map_rule_cmd route_set_ipv6_nexthop_global_cmd =
1913{
1914 "ipv6 next-hop global",
1915 route_set_ipv6_nexthop_global,
1916 route_set_ipv6_nexthop_global_compile,
1917 route_set_ipv6_nexthop_global_free
1918};
David Lamparter6b0655a2014-06-04 06:53:35 +02001919
paul718e3742002-12-13 20:15:29 +00001920/* `set ipv6 nexthop local IP_ADDRESS' */
1921
1922/* Set nexthop to object. ojbect must be pointer to struct attr. */
paul94f2b392005-06-28 12:44:16 +00001923static route_map_result_t
paul718e3742002-12-13 20:15:29 +00001924route_set_ipv6_nexthop_local (void *rule, struct prefix *prefix,
1925 route_map_object_t type, void *object)
1926{
1927 struct in6_addr *address;
1928 struct bgp_info *bgp_info;
1929
1930 if (type == RMAP_BGP)
1931 {
1932 /* Fetch routemap's rule information. */
1933 address = rule;
1934 bgp_info = object;
1935
1936 /* Set next hop value. */
Paul Jakmafb982c22007-05-04 20:15:47 +00001937 (bgp_attr_extra_get (bgp_info->attr))->mp_nexthop_local = *address;
paul718e3742002-12-13 20:15:29 +00001938
1939 /* Set nexthop length. */
Paul Jakmafb982c22007-05-04 20:15:47 +00001940 if (bgp_info->attr->extra->mp_nexthop_len != 32)
1941 bgp_info->attr->extra->mp_nexthop_len = 32;
paul718e3742002-12-13 20:15:29 +00001942 }
1943
1944 return RMAP_OKAY;
1945}
1946
1947/* Route map `ip nexthop' compile function. Given string is converted
1948 to struct in_addr structure. */
paul94f2b392005-06-28 12:44:16 +00001949static void *
paulfd79ac92004-10-13 05:06:08 +00001950route_set_ipv6_nexthop_local_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00001951{
1952 int ret;
1953 struct in6_addr *address;
1954
1955 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in6_addr));
1956
1957 ret = inet_pton (AF_INET6, arg, address);
1958
1959 if (ret == 0)
1960 {
1961 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
1962 return NULL;
1963 }
1964
1965 return address;
1966}
1967
1968/* Free route map's compiled `ip nexthop' value. */
paul94f2b392005-06-28 12:44:16 +00001969static void
paul718e3742002-12-13 20:15:29 +00001970route_set_ipv6_nexthop_local_free (void *rule)
1971{
1972 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
1973}
1974
1975/* Route map commands for ip nexthop set. */
1976struct route_map_rule_cmd route_set_ipv6_nexthop_local_cmd =
1977{
1978 "ipv6 next-hop local",
1979 route_set_ipv6_nexthop_local,
1980 route_set_ipv6_nexthop_local_compile,
1981 route_set_ipv6_nexthop_local_free
1982};
Dinesh G Duttad5233a2014-09-30 14:19:57 -07001983
1984/* `set ipv6 nexthop peer-address' */
1985
1986/* Set nexthop to object. ojbect must be pointer to struct attr. */
1987static route_map_result_t
1988route_set_ipv6_nexthop_peer (void *rule, struct prefix *prefix,
1989 route_map_object_t type, void *object)
1990{
Dinesh G Duttad5233a2014-09-30 14:19:57 -07001991 struct in6_addr peer_address;
1992 struct bgp_info *bgp_info;
1993 struct peer *peer;
1994 char peer_addr_buf[INET6_ADDRSTRLEN];
1995
1996 if (type == RMAP_BGP)
1997 {
1998 /* Fetch routemap's rule information. */
Dinesh G Duttad5233a2014-09-30 14:19:57 -07001999 bgp_info = object;
2000 peer = bgp_info->peer;
2001
2002 if ((CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_IN) ||
2003 CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_IMPORT))
2004 && peer->su_remote
2005 && sockunion_family (peer->su_remote) == AF_INET6)
2006 {
2007 inet_pton (AF_INET6, sockunion2str (peer->su_remote,
2008 peer_addr_buf,
2009 INET6_ADDRSTRLEN),
2010 &peer_address);
2011 }
2012 else if (CHECK_FLAG (peer->rmap_type, PEER_RMAP_TYPE_OUT)
2013 && peer->su_local
2014 && sockunion_family (peer->su_local) == AF_INET6)
2015 {
2016 inet_pton (AF_INET, sockunion2str (peer->su_local,
2017 peer_addr_buf,
2018 INET6_ADDRSTRLEN),
2019 &peer_address);
2020 }
2021
2022 if (IN6_IS_ADDR_LINKLOCAL(&peer_address))
2023 {
2024 /* Set next hop value. */
2025 (bgp_attr_extra_get (bgp_info->attr))->mp_nexthop_local = peer_address;
2026
2027 /* Set nexthop length. */
2028 if (bgp_info->attr->extra->mp_nexthop_len != 32)
2029 bgp_info->attr->extra->mp_nexthop_len = 32;
2030 }
2031 else
2032 {
2033 /* Set next hop value. */
2034 (bgp_attr_extra_get (bgp_info->attr))->mp_nexthop_global = peer_address;
2035
2036 /* Set nexthop length. */
2037 if (bgp_info->attr->extra->mp_nexthop_len == 0)
2038 bgp_info->attr->extra->mp_nexthop_len = 16;
2039 }
2040 }
2041
2042 return RMAP_OKAY;
2043}
2044
2045/* Route map `ip next-hop' compile function. Given string is converted
2046 to struct in_addr structure. */
2047static void *
2048route_set_ipv6_nexthop_peer_compile (const char *arg)
2049{
Dinesh G Duttad5233a2014-09-30 14:19:57 -07002050 int *rins = NULL;
2051
2052 rins = XCALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (int));
2053 *rins = 1;
2054
2055 return rins;
2056}
2057
2058/* Free route map's compiled `ip next-hop' value. */
2059static void
2060route_set_ipv6_nexthop_peer_free (void *rule)
2061{
2062 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
2063}
2064
2065/* Route map commands for ip nexthop set. */
2066struct route_map_rule_cmd route_set_ipv6_nexthop_peer_cmd =
2067{
2068 "ipv6 next-hop peer-address",
2069 route_set_ipv6_nexthop_peer,
2070 route_set_ipv6_nexthop_peer_compile,
2071 route_set_ipv6_nexthop_peer_free
2072};
2073
paul718e3742002-12-13 20:15:29 +00002074#endif /* HAVE_IPV6 */
David Lamparter6b0655a2014-06-04 06:53:35 +02002075
paul718e3742002-12-13 20:15:29 +00002076/* `set vpnv4 nexthop A.B.C.D' */
2077
paul94f2b392005-06-28 12:44:16 +00002078static route_map_result_t
paul718e3742002-12-13 20:15:29 +00002079route_set_vpnv4_nexthop (void *rule, struct prefix *prefix,
2080 route_map_object_t type, void *object)
2081{
2082 struct in_addr *address;
2083 struct bgp_info *bgp_info;
2084
2085 if (type == RMAP_BGP)
2086 {
2087 /* Fetch routemap's rule information. */
2088 address = rule;
2089 bgp_info = object;
2090
2091 /* Set next hop value. */
Paul Jakmafb982c22007-05-04 20:15:47 +00002092 (bgp_attr_extra_get (bgp_info->attr))->mp_nexthop_global_in = *address;
paul718e3742002-12-13 20:15:29 +00002093 }
2094
2095 return RMAP_OKAY;
2096}
2097
paul94f2b392005-06-28 12:44:16 +00002098static void *
paulfd79ac92004-10-13 05:06:08 +00002099route_set_vpnv4_nexthop_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00002100{
2101 int ret;
2102 struct in_addr *address;
2103
2104 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in_addr));
2105
2106 ret = inet_aton (arg, address);
2107
2108 if (ret == 0)
2109 {
2110 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
2111 return NULL;
2112 }
2113
2114 return address;
2115}
2116
paul94f2b392005-06-28 12:44:16 +00002117static void
paul718e3742002-12-13 20:15:29 +00002118route_set_vpnv4_nexthop_free (void *rule)
2119{
2120 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
2121}
2122
2123/* Route map commands for ip nexthop set. */
2124struct route_map_rule_cmd route_set_vpnv4_nexthop_cmd =
2125{
2126 "vpnv4 next-hop",
2127 route_set_vpnv4_nexthop,
2128 route_set_vpnv4_nexthop_compile,
2129 route_set_vpnv4_nexthop_free
2130};
David Lamparter6b0655a2014-06-04 06:53:35 +02002131
paul718e3742002-12-13 20:15:29 +00002132/* `set originator-id' */
2133
2134/* For origin set. */
paul94f2b392005-06-28 12:44:16 +00002135static route_map_result_t
paul718e3742002-12-13 20:15:29 +00002136route_set_originator_id (void *rule, struct prefix *prefix, route_map_object_t type, void *object)
2137{
2138 struct in_addr *address;
2139 struct bgp_info *bgp_info;
2140
2141 if (type == RMAP_BGP)
2142 {
2143 address = rule;
2144 bgp_info = object;
2145
2146 bgp_info->attr->flag |= ATTR_FLAG_BIT (BGP_ATTR_ORIGINATOR_ID);
Paul Jakmafb982c22007-05-04 20:15:47 +00002147 (bgp_attr_extra_get (bgp_info->attr))->originator_id = *address;
paul718e3742002-12-13 20:15:29 +00002148 }
2149
2150 return RMAP_OKAY;
2151}
2152
2153/* Compile function for originator-id set. */
paul94f2b392005-06-28 12:44:16 +00002154static void *
paulfd79ac92004-10-13 05:06:08 +00002155route_set_originator_id_compile (const char *arg)
paul718e3742002-12-13 20:15:29 +00002156{
2157 int ret;
2158 struct in_addr *address;
2159
2160 address = XMALLOC (MTYPE_ROUTE_MAP_COMPILED, sizeof (struct in_addr));
2161
2162 ret = inet_aton (arg, address);
2163
2164 if (ret == 0)
2165 {
2166 XFREE (MTYPE_ROUTE_MAP_COMPILED, address);
2167 return NULL;
2168 }
2169
2170 return address;
2171}
2172
2173/* Compile function for originator_id set. */
paul94f2b392005-06-28 12:44:16 +00002174static void
paul718e3742002-12-13 20:15:29 +00002175route_set_originator_id_free (void *rule)
2176{
2177 XFREE (MTYPE_ROUTE_MAP_COMPILED, rule);
2178}
2179
Timo Teräs2aa640b2014-05-20 08:57:26 +03002180/* Set originator-id rule structure. */
paul718e3742002-12-13 20:15:29 +00002181struct route_map_rule_cmd route_set_originator_id_cmd =
2182{
2183 "originator-id",
2184 route_set_originator_id,
2185 route_set_originator_id_compile,
2186 route_set_originator_id_free,
2187};
David Lamparter6b0655a2014-06-04 06:53:35 +02002188
paul718e3742002-12-13 20:15:29 +00002189/* Add bgp route map rule. */
paul94f2b392005-06-28 12:44:16 +00002190static int
paul718e3742002-12-13 20:15:29 +00002191bgp_route_match_add (struct vty *vty, struct route_map_index *index,
paulfd79ac92004-10-13 05:06:08 +00002192 const char *command, const char *arg)
paul718e3742002-12-13 20:15:29 +00002193{
2194 int ret;
2195
2196 ret = route_map_add_match (index, command, arg);
2197 if (ret)
2198 {
2199 switch (ret)
2200 {
2201 case RMAP_RULE_MISSING:
2202 vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
2203 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002204 case RMAP_COMPILE_ERROR:
2205 vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
2206 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002207 }
2208 }
2209 return CMD_SUCCESS;
2210}
2211
2212/* Delete bgp route map rule. */
paul94f2b392005-06-28 12:44:16 +00002213static int
paul718e3742002-12-13 20:15:29 +00002214bgp_route_match_delete (struct vty *vty, struct route_map_index *index,
paulfd79ac92004-10-13 05:06:08 +00002215 const char *command, const char *arg)
paul718e3742002-12-13 20:15:29 +00002216{
2217 int ret;
2218
2219 ret = route_map_delete_match (index, command, arg);
2220 if (ret)
2221 {
2222 switch (ret)
2223 {
2224 case RMAP_RULE_MISSING:
2225 vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
2226 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002227 case RMAP_COMPILE_ERROR:
2228 vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
2229 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002230 }
2231 }
2232 return CMD_SUCCESS;
2233}
2234
2235/* Add bgp route map rule. */
paul94f2b392005-06-28 12:44:16 +00002236static int
paul718e3742002-12-13 20:15:29 +00002237bgp_route_set_add (struct vty *vty, struct route_map_index *index,
paulfd79ac92004-10-13 05:06:08 +00002238 const char *command, const char *arg)
paul718e3742002-12-13 20:15:29 +00002239{
2240 int ret;
2241
2242 ret = route_map_add_set (index, command, arg);
2243 if (ret)
2244 {
2245 switch (ret)
2246 {
2247 case RMAP_RULE_MISSING:
2248 vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
2249 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002250 case RMAP_COMPILE_ERROR:
2251 vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
2252 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002253 }
2254 }
2255 return CMD_SUCCESS;
2256}
2257
2258/* Delete bgp route map rule. */
paul94f2b392005-06-28 12:44:16 +00002259static int
paul718e3742002-12-13 20:15:29 +00002260bgp_route_set_delete (struct vty *vty, struct route_map_index *index,
paulfd79ac92004-10-13 05:06:08 +00002261 const char *command, const char *arg)
paul718e3742002-12-13 20:15:29 +00002262{
2263 int ret;
2264
2265 ret = route_map_delete_set (index, command, arg);
2266 if (ret)
2267 {
2268 switch (ret)
2269 {
2270 case RMAP_RULE_MISSING:
2271 vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
2272 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002273 case RMAP_COMPILE_ERROR:
2274 vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
2275 return CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00002276 }
2277 }
2278 return CMD_SUCCESS;
2279}
2280
2281/* Hook function for updating route_map assignment. */
paul94f2b392005-06-28 12:44:16 +00002282static void
paulfd79ac92004-10-13 05:06:08 +00002283bgp_route_map_update (const char *unused)
paul718e3742002-12-13 20:15:29 +00002284{
2285 int i;
2286 afi_t afi;
2287 safi_t safi;
2288 int direct;
paul1eb8ef22005-04-07 07:30:20 +00002289 struct listnode *node, *nnode;
2290 struct listnode *mnode, *mnnode;
paul718e3742002-12-13 20:15:29 +00002291 struct bgp *bgp;
2292 struct peer *peer;
2293 struct peer_group *group;
2294 struct bgp_filter *filter;
2295 struct bgp_node *bn;
2296 struct bgp_static *bgp_static;
2297
2298 /* For neighbor route-map updates. */
paul1eb8ef22005-04-07 07:30:20 +00002299 for (ALL_LIST_ELEMENTS (bm->bgp, mnode, mnnode, bgp))
paul718e3742002-12-13 20:15:29 +00002300 {
paul1eb8ef22005-04-07 07:30:20 +00002301 for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer))
paul718e3742002-12-13 20:15:29 +00002302 {
2303 for (afi = AFI_IP; afi < AFI_MAX; afi++)
2304 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
2305 {
2306 filter = &peer->filter[afi][safi];
2307
paulfee0f4c2004-09-13 05:12:46 +00002308 for (direct = RMAP_IN; direct < RMAP_MAX; direct++)
paul718e3742002-12-13 20:15:29 +00002309 {
2310 if (filter->map[direct].name)
2311 filter->map[direct].map =
2312 route_map_lookup_by_name (filter->map[direct].name);
2313 else
2314 filter->map[direct].map = NULL;
2315 }
2316
2317 if (filter->usmap.name)
2318 filter->usmap.map = route_map_lookup_by_name (filter->usmap.name);
2319 else
2320 filter->usmap.map = NULL;
2321 }
2322 }
paul1eb8ef22005-04-07 07:30:20 +00002323 for (ALL_LIST_ELEMENTS (bgp->group, node, nnode, group))
paul718e3742002-12-13 20:15:29 +00002324 {
2325 for (afi = AFI_IP; afi < AFI_MAX; afi++)
2326 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
2327 {
2328 filter = &group->conf->filter[afi][safi];
2329
paulfee0f4c2004-09-13 05:12:46 +00002330 for (direct = RMAP_IN; direct < RMAP_MAX; direct++)
paul718e3742002-12-13 20:15:29 +00002331 {
2332 if (filter->map[direct].name)
2333 filter->map[direct].map =
2334 route_map_lookup_by_name (filter->map[direct].name);
2335 else
2336 filter->map[direct].map = NULL;
2337 }
2338
2339 if (filter->usmap.name)
2340 filter->usmap.map = route_map_lookup_by_name (filter->usmap.name);
2341 else
2342 filter->usmap.map = NULL;
2343 }
2344 }
2345 }
2346
2347 /* For default-originate route-map updates. */
paul1eb8ef22005-04-07 07:30:20 +00002348 for (ALL_LIST_ELEMENTS (bm->bgp, mnode, mnnode, bgp))
paul718e3742002-12-13 20:15:29 +00002349 {
paul1eb8ef22005-04-07 07:30:20 +00002350 for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer))
paul718e3742002-12-13 20:15:29 +00002351 {
2352 for (afi = AFI_IP; afi < AFI_MAX; afi++)
2353 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
2354 {
2355 if (peer->default_rmap[afi][safi].name)
2356 peer->default_rmap[afi][safi].map =
2357 route_map_lookup_by_name (peer->default_rmap[afi][safi].name);
2358 else
2359 peer->default_rmap[afi][safi].map = NULL;
2360 }
2361 }
2362 }
2363
2364 /* For network route-map updates. */
paul1eb8ef22005-04-07 07:30:20 +00002365 for (ALL_LIST_ELEMENTS (bm->bgp, mnode, mnnode, bgp))
paul718e3742002-12-13 20:15:29 +00002366 {
2367 for (afi = AFI_IP; afi < AFI_MAX; afi++)
2368 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
2369 for (bn = bgp_table_top (bgp->route[afi][safi]); bn;
2370 bn = bgp_route_next (bn))
2371 if ((bgp_static = bn->info) != NULL)
2372 {
2373 if (bgp_static->rmap.name)
2374 bgp_static->rmap.map =
2375 route_map_lookup_by_name (bgp_static->rmap.name);
2376 else
2377 bgp_static->rmap.map = NULL;
2378 }
2379 }
2380
2381 /* For redistribute route-map updates. */
paul1eb8ef22005-04-07 07:30:20 +00002382 for (ALL_LIST_ELEMENTS (bm->bgp, mnode, mnnode, bgp))
paul718e3742002-12-13 20:15:29 +00002383 {
2384 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
2385 {
Donald Sharpf3cfc462016-01-07 09:33:28 -05002386 if (bgp->rmap[AFI_IP][i].name)
2387 bgp->rmap[AFI_IP][i].map =
2388 route_map_lookup_by_name (bgp->rmap[AFI_IP][i].name);
2389 if (bgp->rmap[AFI_IP6][i].name)
2390 bgp->rmap[AFI_IP6][i].map =
2391 route_map_lookup_by_name (bgp->rmap[AFI_IP][i].name);
paul718e3742002-12-13 20:15:29 +00002392 }
2393 }
2394}
David Lamparter6b0655a2014-06-04 06:53:35 +02002395
paulfee0f4c2004-09-13 05:12:46 +00002396DEFUN (match_peer,
2397 match_peer_cmd,
2398 "match peer (A.B.C.D|X:X::X:X)",
2399 MATCH_STR
2400 "Match peer address\n"
2401 "IPv6 address of peer\n"
2402 "IP address of peer\n")
2403{
2404 return bgp_route_match_add (vty, vty->index, "peer", argv[0]);
2405}
2406
2407DEFUN (match_peer_local,
2408 match_peer_local_cmd,
2409 "match peer local",
2410 MATCH_STR
2411 "Match peer address\n"
2412 "Static or Redistributed routes\n")
2413{
Jorge Boncompte [DTI2]4fe080d2012-04-13 13:46:08 +02002414 return bgp_route_match_add (vty, vty->index, "peer", "local");
paulfee0f4c2004-09-13 05:12:46 +00002415}
2416
2417DEFUN (no_match_peer,
2418 no_match_peer_cmd,
2419 "no match peer",
2420 NO_STR
2421 MATCH_STR
2422 "Match peer address\n")
2423{
2424 if (argc == 0)
2425 return bgp_route_match_delete (vty, vty->index, "peer", NULL);
2426
2427 return bgp_route_match_delete (vty, vty->index, "peer", argv[0]);
2428}
2429
2430ALIAS (no_match_peer,
2431 no_match_peer_val_cmd,
2432 "no match peer (A.B.C.D|X:X::X:X)",
2433 NO_STR
2434 MATCH_STR
2435 "Match peer address\n"
2436 "IPv6 address of peer\n"
2437 "IP address of peer\n")
2438
2439ALIAS (no_match_peer,
2440 no_match_peer_local_cmd,
2441 "no match peer local",
2442 NO_STR
2443 MATCH_STR
2444 "Match peer address\n"
2445 "Static or Redistributed routes\n")
2446
paul718e3742002-12-13 20:15:29 +00002447DEFUN (match_ip_address,
2448 match_ip_address_cmd,
2449 "match ip address (<1-199>|<1300-2699>|WORD)",
2450 MATCH_STR
2451 IP_STR
2452 "Match address of route\n"
2453 "IP access-list number\n"
2454 "IP access-list number (expanded range)\n"
2455 "IP Access-list name\n")
2456{
2457 return bgp_route_match_add (vty, vty->index, "ip address", argv[0]);
2458}
2459
2460DEFUN (no_match_ip_address,
2461 no_match_ip_address_cmd,
2462 "no match ip address",
2463 NO_STR
2464 MATCH_STR
2465 IP_STR
2466 "Match address of route\n")
2467{
2468 if (argc == 0)
2469 return bgp_route_match_delete (vty, vty->index, "ip address", NULL);
2470
2471 return bgp_route_match_delete (vty, vty->index, "ip address", argv[0]);
2472}
2473
2474ALIAS (no_match_ip_address,
2475 no_match_ip_address_val_cmd,
2476 "no match ip address (<1-199>|<1300-2699>|WORD)",
2477 NO_STR
2478 MATCH_STR
2479 IP_STR
2480 "Match address of route\n"
2481 "IP access-list number\n"
2482 "IP access-list number (expanded range)\n"
2483 "IP Access-list name\n")
2484
2485DEFUN (match_ip_next_hop,
2486 match_ip_next_hop_cmd,
2487 "match ip next-hop (<1-199>|<1300-2699>|WORD)",
2488 MATCH_STR
2489 IP_STR
2490 "Match next-hop address of route\n"
2491 "IP access-list number\n"
2492 "IP access-list number (expanded range)\n"
2493 "IP Access-list name\n")
2494{
2495 return bgp_route_match_add (vty, vty->index, "ip next-hop", argv[0]);
2496}
2497
2498DEFUN (no_match_ip_next_hop,
2499 no_match_ip_next_hop_cmd,
2500 "no match ip next-hop",
2501 NO_STR
2502 MATCH_STR
2503 IP_STR
2504 "Match next-hop address of route\n")
2505{
2506 if (argc == 0)
2507 return bgp_route_match_delete (vty, vty->index, "ip next-hop", NULL);
2508
2509 return bgp_route_match_delete (vty, vty->index, "ip next-hop", argv[0]);
2510}
2511
2512ALIAS (no_match_ip_next_hop,
2513 no_match_ip_next_hop_val_cmd,
2514 "no match ip next-hop (<1-199>|<1300-2699>|WORD)",
2515 NO_STR
2516 MATCH_STR
2517 IP_STR
2518 "Match next-hop address of route\n"
2519 "IP access-list number\n"
2520 "IP access-list number (expanded range)\n"
2521 "IP Access-list name\n")
2522
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +04002523/* match probability { */
2524
2525DEFUN (match_probability,
2526 match_probability_cmd,
2527 "match probability <0-100>",
2528 MATCH_STR
2529 "Match portion of routes defined by percentage value\n"
2530 "Percentage of routes\n")
2531{
2532 return bgp_route_match_add (vty, vty->index, "probability", argv[0]);
2533}
2534
2535DEFUN (no_match_probability,
2536 no_match_probability_cmd,
2537 "no match probability",
2538 NO_STR
2539 MATCH_STR
2540 "Match portion of routes defined by percentage value\n")
2541{
2542 return bgp_route_match_delete (vty, vty->index, "probability", argc ? argv[0] : NULL);
2543}
2544
2545ALIAS (no_match_probability,
2546 no_match_probability_val_cmd,
2547 "no match probability <1-99>",
2548 NO_STR
2549 MATCH_STR
2550 "Match portion of routes defined by percentage value\n"
2551 "Percentage of routes\n")
2552
2553/* } */
2554
hassoc1643bb2005-02-02 16:43:17 +00002555DEFUN (match_ip_route_source,
2556 match_ip_route_source_cmd,
2557 "match ip route-source (<1-199>|<1300-2699>|WORD)",
2558 MATCH_STR
2559 IP_STR
2560 "Match advertising source address of route\n"
2561 "IP access-list number\n"
2562 "IP access-list number (expanded range)\n"
2563 "IP standard access-list name\n")
2564{
2565 return bgp_route_match_add (vty, vty->index, "ip route-source", argv[0]);
2566}
2567
2568DEFUN (no_match_ip_route_source,
2569 no_match_ip_route_source_cmd,
2570 "no match ip route-source",
2571 NO_STR
2572 MATCH_STR
2573 IP_STR
2574 "Match advertising source address of route\n")
2575{
2576 if (argc == 0)
2577 return bgp_route_match_delete (vty, vty->index, "ip route-source", NULL);
2578
2579 return bgp_route_match_delete (vty, vty->index, "ip route-source", argv[0]);
2580}
2581
2582ALIAS (no_match_ip_route_source,
2583 no_match_ip_route_source_val_cmd,
2584 "no match ip route-source (<1-199>|<1300-2699>|WORD)",
2585 NO_STR
2586 MATCH_STR
2587 IP_STR
2588 "Match advertising source address of route\n"
2589 "IP access-list number\n"
2590 "IP access-list number (expanded range)\n"
Paul Jakma30a22312008-08-15 14:05:22 +01002591 "IP standard access-list name\n")
hassoc1643bb2005-02-02 16:43:17 +00002592
paul718e3742002-12-13 20:15:29 +00002593DEFUN (match_ip_address_prefix_list,
2594 match_ip_address_prefix_list_cmd,
2595 "match ip address prefix-list WORD",
2596 MATCH_STR
2597 IP_STR
2598 "Match address of route\n"
2599 "Match entries of prefix-lists\n"
2600 "IP prefix-list name\n")
2601{
2602 return bgp_route_match_add (vty, vty->index, "ip address prefix-list", argv[0]);
2603}
2604
2605DEFUN (no_match_ip_address_prefix_list,
2606 no_match_ip_address_prefix_list_cmd,
2607 "no match ip address prefix-list",
2608 NO_STR
2609 MATCH_STR
2610 IP_STR
2611 "Match address of route\n"
2612 "Match entries of prefix-lists\n")
2613{
2614 if (argc == 0)
2615 return bgp_route_match_delete (vty, vty->index, "ip address prefix-list", NULL);
2616
2617 return bgp_route_match_delete (vty, vty->index, "ip address prefix-list", argv[0]);
2618}
2619
2620ALIAS (no_match_ip_address_prefix_list,
2621 no_match_ip_address_prefix_list_val_cmd,
2622 "no match ip address prefix-list WORD",
2623 NO_STR
2624 MATCH_STR
2625 IP_STR
2626 "Match address of route\n"
2627 "Match entries of prefix-lists\n"
2628 "IP prefix-list name\n")
2629
2630DEFUN (match_ip_next_hop_prefix_list,
2631 match_ip_next_hop_prefix_list_cmd,
2632 "match ip next-hop prefix-list WORD",
2633 MATCH_STR
2634 IP_STR
2635 "Match next-hop address of route\n"
2636 "Match entries of prefix-lists\n"
2637 "IP prefix-list name\n")
2638{
2639 return bgp_route_match_add (vty, vty->index, "ip next-hop prefix-list", argv[0]);
2640}
2641
2642DEFUN (no_match_ip_next_hop_prefix_list,
2643 no_match_ip_next_hop_prefix_list_cmd,
2644 "no match ip next-hop prefix-list",
2645 NO_STR
2646 MATCH_STR
2647 IP_STR
2648 "Match next-hop address of route\n"
2649 "Match entries of prefix-lists\n")
2650{
2651 if (argc == 0)
2652 return bgp_route_match_delete (vty, vty->index, "ip next-hop prefix-list", NULL);
2653
2654 return bgp_route_match_delete (vty, vty->index, "ip next-hop prefix-list", argv[0]);
2655}
2656
2657ALIAS (no_match_ip_next_hop_prefix_list,
2658 no_match_ip_next_hop_prefix_list_val_cmd,
2659 "no match ip next-hop prefix-list WORD",
2660 NO_STR
2661 MATCH_STR
2662 IP_STR
2663 "Match next-hop address of route\n"
2664 "Match entries of prefix-lists\n"
2665 "IP prefix-list name\n")
2666
hassoc1643bb2005-02-02 16:43:17 +00002667DEFUN (match_ip_route_source_prefix_list,
2668 match_ip_route_source_prefix_list_cmd,
2669 "match ip route-source prefix-list WORD",
2670 MATCH_STR
2671 IP_STR
2672 "Match advertising source address of route\n"
2673 "Match entries of prefix-lists\n"
2674 "IP prefix-list name\n")
2675{
2676 return bgp_route_match_add (vty, vty->index, "ip route-source prefix-list", argv[0]);
2677}
2678
2679DEFUN (no_match_ip_route_source_prefix_list,
2680 no_match_ip_route_source_prefix_list_cmd,
2681 "no match ip route-source prefix-list",
2682 NO_STR
2683 MATCH_STR
2684 IP_STR
2685 "Match advertising source address of route\n"
2686 "Match entries of prefix-lists\n")
2687{
2688 if (argc == 0)
2689 return bgp_route_match_delete (vty, vty->index, "ip route-source prefix-list", NULL);
2690
2691 return bgp_route_match_delete (vty, vty->index, "ip route-source prefix-list", argv[0]);
2692}
2693
2694ALIAS (no_match_ip_route_source_prefix_list,
2695 no_match_ip_route_source_prefix_list_val_cmd,
2696 "no match ip route-source prefix-list WORD",
2697 NO_STR
2698 MATCH_STR
2699 IP_STR
2700 "Match advertising source address of route\n"
2701 "Match entries of prefix-lists\n"
Paul Jakma30a22312008-08-15 14:05:22 +01002702 "IP prefix-list name\n")
hassoc1643bb2005-02-02 16:43:17 +00002703
paul718e3742002-12-13 20:15:29 +00002704DEFUN (match_metric,
2705 match_metric_cmd,
2706 "match metric <0-4294967295>",
2707 MATCH_STR
2708 "Match metric of route\n"
2709 "Metric value\n")
2710{
2711 return bgp_route_match_add (vty, vty->index, "metric", argv[0]);
2712}
2713
2714DEFUN (no_match_metric,
2715 no_match_metric_cmd,
2716 "no match metric",
2717 NO_STR
2718 MATCH_STR
2719 "Match metric of route\n")
2720{
2721 if (argc == 0)
2722 return bgp_route_match_delete (vty, vty->index, "metric", NULL);
2723
2724 return bgp_route_match_delete (vty, vty->index, "metric", argv[0]);
2725}
2726
2727ALIAS (no_match_metric,
2728 no_match_metric_val_cmd,
2729 "no match metric <0-4294967295>",
2730 NO_STR
2731 MATCH_STR
2732 "Match metric of route\n"
2733 "Metric value\n")
2734
2735DEFUN (match_community,
2736 match_community_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002737 "match community (<1-99>|<100-500>|WORD)",
paul718e3742002-12-13 20:15:29 +00002738 MATCH_STR
2739 "Match BGP community list\n"
2740 "Community-list number (standard)\n"
2741 "Community-list number (expanded)\n"
2742 "Community-list name\n")
2743{
2744 return bgp_route_match_add (vty, vty->index, "community", argv[0]);
2745}
2746
2747DEFUN (match_community_exact,
2748 match_community_exact_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002749 "match community (<1-99>|<100-500>|WORD) exact-match",
paul718e3742002-12-13 20:15:29 +00002750 MATCH_STR
2751 "Match BGP community list\n"
2752 "Community-list number (standard)\n"
2753 "Community-list number (expanded)\n"
2754 "Community-list name\n"
2755 "Do exact matching of communities\n")
2756{
2757 int ret;
2758 char *argstr;
2759
2760 argstr = XMALLOC (MTYPE_ROUTE_MAP_COMPILED,
2761 strlen (argv[0]) + strlen ("exact-match") + 2);
2762
2763 sprintf (argstr, "%s exact-match", argv[0]);
2764
2765 ret = bgp_route_match_add (vty, vty->index, "community", argstr);
2766
2767 XFREE (MTYPE_ROUTE_MAP_COMPILED, argstr);
2768
2769 return ret;
2770}
2771
2772DEFUN (no_match_community,
2773 no_match_community_cmd,
2774 "no match community",
2775 NO_STR
2776 MATCH_STR
2777 "Match BGP community list\n")
2778{
2779 return bgp_route_match_delete (vty, vty->index, "community", NULL);
2780}
2781
2782ALIAS (no_match_community,
2783 no_match_community_val_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002784 "no match community (<1-99>|<100-500>|WORD)",
paul718e3742002-12-13 20:15:29 +00002785 NO_STR
2786 MATCH_STR
2787 "Match BGP community list\n"
2788 "Community-list number (standard)\n"
2789 "Community-list number (expanded)\n"
2790 "Community-list name\n")
2791
2792ALIAS (no_match_community,
2793 no_match_community_exact_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002794 "no match community (<1-99>|<100-500>|WORD) exact-match",
paul718e3742002-12-13 20:15:29 +00002795 NO_STR
2796 MATCH_STR
2797 "Match BGP community list\n"
2798 "Community-list number (standard)\n"
2799 "Community-list number (expanded)\n"
2800 "Community-list name\n"
2801 "Do exact matching of communities\n")
2802
paul73ffb252003-04-19 15:49:49 +00002803DEFUN (match_ecommunity,
2804 match_ecommunity_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002805 "match extcommunity (<1-99>|<100-500>|WORD)",
paul73ffb252003-04-19 15:49:49 +00002806 MATCH_STR
2807 "Match BGP/VPN extended community list\n"
2808 "Extended community-list number (standard)\n"
2809 "Extended community-list number (expanded)\n"
2810 "Extended community-list name\n")
2811{
2812 return bgp_route_match_add (vty, vty->index, "extcommunity", argv[0]);
2813}
2814
2815DEFUN (no_match_ecommunity,
2816 no_match_ecommunity_cmd,
2817 "no match extcommunity",
2818 NO_STR
2819 MATCH_STR
2820 "Match BGP/VPN extended community list\n")
2821{
2822 return bgp_route_match_delete (vty, vty->index, "extcommunity", NULL);
2823}
2824
2825ALIAS (no_match_ecommunity,
2826 no_match_ecommunity_val_cmd,
hassofee6e4e2005-02-02 16:29:31 +00002827 "no match extcommunity (<1-99>|<100-500>|WORD)",
paul73ffb252003-04-19 15:49:49 +00002828 NO_STR
2829 MATCH_STR
2830 "Match BGP/VPN extended community list\n"
2831 "Extended community-list number (standard)\n"
2832 "Extended community-list number (expanded)\n"
2833 "Extended community-list name\n")
2834
paul718e3742002-12-13 20:15:29 +00002835DEFUN (match_aspath,
2836 match_aspath_cmd,
2837 "match as-path WORD",
2838 MATCH_STR
2839 "Match BGP AS path list\n"
2840 "AS path access-list name\n")
2841{
2842 return bgp_route_match_add (vty, vty->index, "as-path", argv[0]);
2843}
2844
2845DEFUN (no_match_aspath,
2846 no_match_aspath_cmd,
2847 "no match as-path",
2848 NO_STR
2849 MATCH_STR
2850 "Match BGP AS path list\n")
2851{
2852 return bgp_route_match_delete (vty, vty->index, "as-path", NULL);
2853}
2854
2855ALIAS (no_match_aspath,
2856 no_match_aspath_val_cmd,
2857 "no match as-path WORD",
2858 NO_STR
2859 MATCH_STR
2860 "Match BGP AS path list\n"
2861 "AS path access-list name\n")
2862
2863DEFUN (match_origin,
2864 match_origin_cmd,
2865 "match origin (egp|igp|incomplete)",
2866 MATCH_STR
2867 "BGP origin code\n"
2868 "remote EGP\n"
2869 "local IGP\n"
2870 "unknown heritage\n")
2871{
2872 if (strncmp (argv[0], "igp", 2) == 0)
2873 return bgp_route_match_add (vty, vty->index, "origin", "igp");
2874 if (strncmp (argv[0], "egp", 1) == 0)
2875 return bgp_route_match_add (vty, vty->index, "origin", "egp");
2876 if (strncmp (argv[0], "incomplete", 2) == 0)
2877 return bgp_route_match_add (vty, vty->index, "origin", "incomplete");
2878
2879 return CMD_WARNING;
2880}
2881
2882DEFUN (no_match_origin,
2883 no_match_origin_cmd,
2884 "no match origin",
2885 NO_STR
2886 MATCH_STR
2887 "BGP origin code\n")
2888{
2889 return bgp_route_match_delete (vty, vty->index, "origin", NULL);
2890}
2891
2892ALIAS (no_match_origin,
2893 no_match_origin_val_cmd,
2894 "no match origin (egp|igp|incomplete)",
2895 NO_STR
2896 MATCH_STR
2897 "BGP origin code\n"
2898 "remote EGP\n"
2899 "local IGP\n"
2900 "unknown heritage\n")
2901
2902DEFUN (set_ip_nexthop,
2903 set_ip_nexthop_cmd,
paulaf5cd0a2003-11-02 07:24:40 +00002904 "set ip next-hop A.B.C.D",
paul718e3742002-12-13 20:15:29 +00002905 SET_STR
2906 IP_STR
2907 "Next hop address\n"
paulaf5cd0a2003-11-02 07:24:40 +00002908 "IP address of next hop\n")
paul718e3742002-12-13 20:15:29 +00002909{
2910 union sockunion su;
2911 int ret;
2912
2913 ret = str2sockunion (argv[0], &su);
2914 if (ret < 0)
2915 {
2916 vty_out (vty, "%% Malformed Next-hop address%s", VTY_NEWLINE);
2917 return CMD_WARNING;
2918 }
2919
2920 return bgp_route_set_add (vty, vty->index, "ip next-hop", argv[0]);
2921}
2922
paulaf5cd0a2003-11-02 07:24:40 +00002923DEFUN (set_ip_nexthop_peer,
2924 set_ip_nexthop_peer_cmd,
2925 "set ip next-hop peer-address",
2926 SET_STR
2927 IP_STR
2928 "Next hop address\n"
2929 "Use peer address (for BGP only)\n")
2930{
2931 return bgp_route_set_add (vty, vty->index, "ip next-hop", "peer-address");
2932}
2933
paul94f2b392005-06-28 12:44:16 +00002934DEFUN_DEPRECATED (no_set_ip_nexthop_peer,
paulaf5cd0a2003-11-02 07:24:40 +00002935 no_set_ip_nexthop_peer_cmd,
2936 "no set ip next-hop peer-address",
2937 NO_STR
2938 SET_STR
2939 IP_STR
2940 "Next hop address\n"
2941 "Use peer address (for BGP only)\n")
2942{
2943 return bgp_route_set_delete (vty, vty->index, "ip next-hop", NULL);
2944}
2945
2946
paul718e3742002-12-13 20:15:29 +00002947DEFUN (no_set_ip_nexthop,
2948 no_set_ip_nexthop_cmd,
2949 "no set ip next-hop",
2950 NO_STR
2951 SET_STR
paul718e3742002-12-13 20:15:29 +00002952 "Next hop address\n")
2953{
paulaf5cd0a2003-11-02 07:24:40 +00002954 if (argc == 0)
paul718e3742002-12-13 20:15:29 +00002955 return bgp_route_set_delete (vty, vty->index, "ip next-hop", NULL);
2956
2957 return bgp_route_set_delete (vty, vty->index, "ip next-hop", argv[0]);
2958}
2959
2960ALIAS (no_set_ip_nexthop,
2961 no_set_ip_nexthop_val_cmd,
paulaf5cd0a2003-11-02 07:24:40 +00002962 "no set ip next-hop A.B.C.D",
paul718e3742002-12-13 20:15:29 +00002963 NO_STR
2964 SET_STR
2965 IP_STR
2966 "Next hop address\n"
paulaf5cd0a2003-11-02 07:24:40 +00002967 "IP address of next hop\n")
paul718e3742002-12-13 20:15:29 +00002968
2969DEFUN (set_metric,
2970 set_metric_cmd,
paul73ffb252003-04-19 15:49:49 +00002971 "set metric <0-4294967295>",
paul718e3742002-12-13 20:15:29 +00002972 SET_STR
2973 "Metric value for destination routing protocol\n"
paul73ffb252003-04-19 15:49:49 +00002974 "Metric value\n")
paul718e3742002-12-13 20:15:29 +00002975{
2976 return bgp_route_set_add (vty, vty->index, "metric", argv[0]);
2977}
2978
paul73ffb252003-04-19 15:49:49 +00002979ALIAS (set_metric,
2980 set_metric_addsub_cmd,
2981 "set metric <+/-metric>",
2982 SET_STR
2983 "Metric value for destination routing protocol\n"
hasso033e8612005-05-28 04:50:54 +00002984 "Add or subtract metric\n")
paul73ffb252003-04-19 15:49:49 +00002985
Timo Teräsef757702015-04-29 09:43:04 +03002986ALIAS (set_metric,
2987 set_metric_rtt_cmd,
2988 "set metric (rtt|+rtt|-rtt)",
2989 SET_STR
2990 "Metric value for destination routing protocol\n"
2991 "Assign round trip time\n"
2992 "Add round trip time\n"
2993 "Subtract round trip time\n")
2994
paul718e3742002-12-13 20:15:29 +00002995DEFUN (no_set_metric,
2996 no_set_metric_cmd,
2997 "no set metric",
2998 NO_STR
2999 SET_STR
3000 "Metric value for destination routing protocol\n")
3001{
3002 if (argc == 0)
3003 return bgp_route_set_delete (vty, vty->index, "metric", NULL);
3004
3005 return bgp_route_set_delete (vty, vty->index, "metric", argv[0]);
3006}
3007
3008ALIAS (no_set_metric,
3009 no_set_metric_val_cmd,
3010 "no set metric <0-4294967295>",
3011 NO_STR
3012 SET_STR
3013 "Metric value for destination routing protocol\n"
3014 "Metric value\n")
3015
3016DEFUN (set_local_pref,
3017 set_local_pref_cmd,
3018 "set local-preference <0-4294967295>",
3019 SET_STR
3020 "BGP local preference path attribute\n"
3021 "Preference value\n")
3022{
3023 return bgp_route_set_add (vty, vty->index, "local-preference", argv[0]);
3024}
3025
3026DEFUN (no_set_local_pref,
3027 no_set_local_pref_cmd,
3028 "no set local-preference",
3029 NO_STR
3030 SET_STR
3031 "BGP local preference path attribute\n")
3032{
3033 if (argc == 0)
3034 return bgp_route_set_delete (vty, vty->index, "local-preference", NULL);
3035
3036 return bgp_route_set_delete (vty, vty->index, "local-preference", argv[0]);
3037}
3038
3039ALIAS (no_set_local_pref,
3040 no_set_local_pref_val_cmd,
3041 "no set local-preference <0-4294967295>",
3042 NO_STR
3043 SET_STR
3044 "BGP local preference path attribute\n"
3045 "Preference value\n")
3046
3047DEFUN (set_weight,
3048 set_weight_cmd,
3049 "set weight <0-4294967295>",
3050 SET_STR
3051 "BGP weight for routing table\n"
3052 "Weight value\n")
3053{
3054 return bgp_route_set_add (vty, vty->index, "weight", argv[0]);
3055}
3056
3057DEFUN (no_set_weight,
3058 no_set_weight_cmd,
3059 "no set weight",
3060 NO_STR
3061 SET_STR
3062 "BGP weight for routing table\n")
3063{
3064 if (argc == 0)
3065 return bgp_route_set_delete (vty, vty->index, "weight", NULL);
3066
3067 return bgp_route_set_delete (vty, vty->index, "weight", argv[0]);
3068}
3069
3070ALIAS (no_set_weight,
3071 no_set_weight_val_cmd,
3072 "no set weight <0-4294967295>",
3073 NO_STR
3074 SET_STR
3075 "BGP weight for routing table\n"
3076 "Weight value\n")
3077
3078DEFUN (set_aspath_prepend,
3079 set_aspath_prepend_cmd,
Denis Ovsienko10819ec2009-06-09 15:15:33 +04003080 "set as-path prepend ." CMD_AS_RANGE,
paul718e3742002-12-13 20:15:29 +00003081 SET_STR
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003082 "Transform BGP AS_PATH attribute\n"
paul718e3742002-12-13 20:15:29 +00003083 "Prepend to the as-path\n"
3084 "AS number\n")
3085{
3086 int ret;
3087 char *str;
3088
3089 str = argv_concat (argv, argc, 0);
3090 ret = bgp_route_set_add (vty, vty->index, "as-path prepend", str);
3091 XFREE (MTYPE_TMP, str);
3092
3093 return ret;
3094}
3095
Timo Teräs85c854a2014-09-30 11:31:53 +03003096ALIAS (set_aspath_prepend,
3097 set_aspath_prepend_lastas_cmd,
3098 "set as-path prepend (last-as) <1-10>",
3099 SET_STR
3100 "Transform BGP AS_PATH attribute\n"
3101 "Prepend to the as-path\n"
3102 "Use the peer's AS-number\n"
David Lamparterb7d50212015-03-03 08:53:18 +01003103 "Number of times to insert")
Timo Teräs85c854a2014-09-30 11:31:53 +03003104
paul718e3742002-12-13 20:15:29 +00003105DEFUN (no_set_aspath_prepend,
3106 no_set_aspath_prepend_cmd,
3107 "no set as-path prepend",
3108 NO_STR
3109 SET_STR
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003110 "Transform BGP AS_PATH attribute\n"
paul718e3742002-12-13 20:15:29 +00003111 "Prepend to the as-path\n")
3112{
Denis Ovsienkoa7f93f32007-12-18 15:13:06 +00003113 int ret;
3114 char *str;
3115
3116 if (argc == 0)
3117 return bgp_route_set_delete (vty, vty->index, "as-path prepend", NULL);
3118
3119 str = argv_concat (argv, argc, 0);
3120 ret = bgp_route_set_delete (vty, vty->index, "as-path prepend", str);
3121 XFREE (MTYPE_TMP, str);
3122 return ret;
paul718e3742002-12-13 20:15:29 +00003123}
3124
3125ALIAS (no_set_aspath_prepend,
3126 no_set_aspath_prepend_val_cmd,
Denis Ovsienko10819ec2009-06-09 15:15:33 +04003127 "no set as-path prepend ." CMD_AS_RANGE,
paul718e3742002-12-13 20:15:29 +00003128 NO_STR
3129 SET_STR
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003130 "Transform BGP AS_PATH attribute\n"
paul718e3742002-12-13 20:15:29 +00003131 "Prepend to the as-path\n"
3132 "AS number\n")
3133
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003134DEFUN (set_aspath_exclude,
3135 set_aspath_exclude_cmd,
Denis Ovsienko10819ec2009-06-09 15:15:33 +04003136 "set as-path exclude ." CMD_AS_RANGE,
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003137 SET_STR
3138 "Transform BGP AS-path attribute\n"
3139 "Exclude from the as-path\n"
3140 "AS number\n")
3141{
3142 int ret;
3143 char *str;
3144
3145 str = argv_concat (argv, argc, 0);
3146 ret = bgp_route_set_add (vty, vty->index, "as-path exclude", str);
3147 XFREE (MTYPE_TMP, str);
3148 return ret;
3149}
3150
3151DEFUN (no_set_aspath_exclude,
3152 no_set_aspath_exclude_cmd,
3153 "no set as-path exclude",
3154 NO_STR
3155 SET_STR
3156 "Transform BGP AS_PATH attribute\n"
3157 "Exclude from the as-path\n")
3158{
3159 int ret;
3160 char *str;
3161
3162 if (argc == 0)
3163 return bgp_route_set_delete (vty, vty->index, "as-path exclude", NULL);
3164
3165 str = argv_concat (argv, argc, 0);
3166 ret = bgp_route_set_delete (vty, vty->index, "as-path exclude", str);
3167 XFREE (MTYPE_TMP, str);
3168 return ret;
3169}
3170
3171ALIAS (no_set_aspath_exclude,
3172 no_set_aspath_exclude_val_cmd,
Denis Ovsienko10819ec2009-06-09 15:15:33 +04003173 "no set as-path exclude ." CMD_AS_RANGE,
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003174 NO_STR
3175 SET_STR
3176 "Transform BGP AS_PATH attribute\n"
3177 "Exclude from the as-path\n"
3178 "AS number\n")
3179
paul718e3742002-12-13 20:15:29 +00003180DEFUN (set_community,
3181 set_community_cmd,
3182 "set community .AA:NN",
3183 SET_STR
3184 "BGP community attribute\n"
3185 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
3186{
3187 int i;
3188 int first = 0;
3189 int additive = 0;
3190 struct buffer *b;
3191 struct community *com = NULL;
3192 char *str;
3193 char *argstr;
3194 int ret;
3195
3196 b = buffer_new (1024);
3197
3198 for (i = 0; i < argc; i++)
3199 {
3200 if (strncmp (argv[i], "additive", strlen (argv[i])) == 0)
3201 {
3202 additive = 1;
3203 continue;
3204 }
3205
3206 if (first)
3207 buffer_putc (b, ' ');
3208 else
3209 first = 1;
3210
3211 if (strncmp (argv[i], "internet", strlen (argv[i])) == 0)
3212 {
3213 buffer_putstr (b, "internet");
3214 continue;
3215 }
3216 if (strncmp (argv[i], "local-AS", strlen (argv[i])) == 0)
3217 {
3218 buffer_putstr (b, "local-AS");
3219 continue;
3220 }
3221 if (strncmp (argv[i], "no-a", strlen ("no-a")) == 0
3222 && strncmp (argv[i], "no-advertise", strlen (argv[i])) == 0)
3223 {
3224 buffer_putstr (b, "no-advertise");
3225 continue;
3226 }
3227 if (strncmp (argv[i], "no-e", strlen ("no-e"))== 0
3228 && strncmp (argv[i], "no-export", strlen (argv[i])) == 0)
3229 {
3230 buffer_putstr (b, "no-export");
3231 continue;
3232 }
3233 buffer_putstr (b, argv[i]);
3234 }
3235 buffer_putc (b, '\0');
3236
3237 /* Fetch result string then compile it to communities attribute. */
3238 str = buffer_getstr (b);
3239 buffer_free (b);
3240
3241 if (str)
3242 {
3243 com = community_str2com (str);
ajs3b8b1852005-01-29 18:19:13 +00003244 XFREE (MTYPE_TMP, str);
paul718e3742002-12-13 20:15:29 +00003245 }
3246
3247 /* Can't compile user input into communities attribute. */
3248 if (! com)
3249 {
3250 vty_out (vty, "%% Malformed communities attribute%s", VTY_NEWLINE);
3251 return CMD_WARNING;
3252 }
3253
3254 /* Set communites attribute string. */
3255 str = community_str (com);
3256
3257 if (additive)
3258 {
3259 argstr = XCALLOC (MTYPE_TMP, strlen (str) + strlen (" additive") + 1);
3260 strcpy (argstr, str);
3261 strcpy (argstr + strlen (str), " additive");
3262 ret = bgp_route_set_add (vty, vty->index, "community", argstr);
3263 XFREE (MTYPE_TMP, argstr);
3264 }
3265 else
3266 ret = bgp_route_set_add (vty, vty->index, "community", str);
3267
3268 community_free (com);
3269
3270 return ret;
3271}
3272
3273DEFUN (set_community_none,
3274 set_community_none_cmd,
3275 "set community none",
3276 SET_STR
3277 "BGP community attribute\n"
3278 "No community attribute\n")
3279{
3280 return bgp_route_set_add (vty, vty->index, "community", "none");
3281}
3282
3283DEFUN (no_set_community,
3284 no_set_community_cmd,
3285 "no set community",
3286 NO_STR
3287 SET_STR
3288 "BGP community attribute\n")
3289{
3290 return bgp_route_set_delete (vty, vty->index, "community", NULL);
3291}
3292
3293ALIAS (no_set_community,
3294 no_set_community_val_cmd,
3295 "no set community .AA:NN",
3296 NO_STR
3297 SET_STR
3298 "BGP community attribute\n"
3299 "Community number in aa:nn format or local-AS|no-advertise|no-export|internet or additive\n")
3300
3301ALIAS (no_set_community,
3302 no_set_community_none_cmd,
3303 "no set community none",
3304 NO_STR
3305 SET_STR
3306 "BGP community attribute\n"
3307 "No community attribute\n")
3308
3309DEFUN (set_community_delete,
3310 set_community_delete_cmd,
hassofee6e4e2005-02-02 16:29:31 +00003311 "set comm-list (<1-99>|<100-500>|WORD) delete",
paul718e3742002-12-13 20:15:29 +00003312 SET_STR
3313 "set BGP community list (for deletion)\n"
3314 "Community-list number (standard)\n"
3315 "Communitly-list number (expanded)\n"
3316 "Community-list name\n"
3317 "Delete matching communities\n")
3318{
3319 char *str;
3320
3321 str = XCALLOC (MTYPE_TMP, strlen (argv[0]) + strlen (" delete") + 1);
3322 strcpy (str, argv[0]);
3323 strcpy (str + strlen (argv[0]), " delete");
3324
3325 bgp_route_set_add (vty, vty->index, "comm-list", str);
3326
3327 XFREE (MTYPE_TMP, str);
3328 return CMD_SUCCESS;
3329}
3330
3331DEFUN (no_set_community_delete,
3332 no_set_community_delete_cmd,
3333 "no set comm-list",
3334 NO_STR
3335 SET_STR
3336 "set BGP community list (for deletion)\n")
3337{
3338 return bgp_route_set_delete (vty, vty->index, "comm-list", NULL);
3339}
3340
3341ALIAS (no_set_community_delete,
3342 no_set_community_delete_val_cmd,
hassofee6e4e2005-02-02 16:29:31 +00003343 "no set comm-list (<1-99>|<100-500>|WORD) delete",
paul718e3742002-12-13 20:15:29 +00003344 NO_STR
3345 SET_STR
3346 "set BGP community list (for deletion)\n"
3347 "Community-list number (standard)\n"
3348 "Communitly-list number (expanded)\n"
3349 "Community-list name\n"
3350 "Delete matching communities\n")
3351
3352DEFUN (set_ecommunity_rt,
3353 set_ecommunity_rt_cmd,
3354 "set extcommunity rt .ASN:nn_or_IP-address:nn",
3355 SET_STR
3356 "BGP extended community attribute\n"
Denis Ovsienkoe6b6a562009-06-01 20:20:36 +04003357 "Route Target extended community\n"
paul718e3742002-12-13 20:15:29 +00003358 "VPN extended community\n")
3359{
3360 int ret;
3361 char *str;
3362
3363 str = argv_concat (argv, argc, 0);
3364 ret = bgp_route_set_add (vty, vty->index, "extcommunity rt", str);
3365 XFREE (MTYPE_TMP, str);
3366
3367 return ret;
3368}
3369
3370DEFUN (no_set_ecommunity_rt,
3371 no_set_ecommunity_rt_cmd,
3372 "no set extcommunity rt",
3373 NO_STR
3374 SET_STR
3375 "BGP extended community attribute\n"
Denis Ovsienkoe6b6a562009-06-01 20:20:36 +04003376 "Route Target extended community\n")
paul718e3742002-12-13 20:15:29 +00003377{
3378 return bgp_route_set_delete (vty, vty->index, "extcommunity rt", NULL);
3379}
3380
3381ALIAS (no_set_ecommunity_rt,
3382 no_set_ecommunity_rt_val_cmd,
3383 "no set extcommunity rt .ASN:nn_or_IP-address:nn",
3384 NO_STR
3385 SET_STR
3386 "BGP extended community attribute\n"
Denis Ovsienkoe6b6a562009-06-01 20:20:36 +04003387 "Route Target extended community\n"
paul718e3742002-12-13 20:15:29 +00003388 "VPN extended community\n")
3389
3390DEFUN (set_ecommunity_soo,
3391 set_ecommunity_soo_cmd,
3392 "set extcommunity soo .ASN:nn_or_IP-address:nn",
3393 SET_STR
3394 "BGP extended community attribute\n"
3395 "Site-of-Origin extended community\n"
3396 "VPN extended community\n")
3397{
3398 int ret;
3399 char *str;
3400
3401 str = argv_concat (argv, argc, 0);
3402 ret = bgp_route_set_add (vty, vty->index, "extcommunity soo", str);
3403 XFREE (MTYPE_TMP, str);
3404 return ret;
3405}
3406
3407DEFUN (no_set_ecommunity_soo,
3408 no_set_ecommunity_soo_cmd,
3409 "no set extcommunity soo",
3410 NO_STR
3411 SET_STR
3412 "BGP extended community attribute\n"
3413 "Site-of-Origin extended community\n")
3414{
3415 return bgp_route_set_delete (vty, vty->index, "extcommunity soo", NULL);
3416}
3417
3418ALIAS (no_set_ecommunity_soo,
3419 no_set_ecommunity_soo_val_cmd,
3420 "no set extcommunity soo .ASN:nn_or_IP-address:nn",
3421 NO_STR
3422 SET_STR
3423 "BGP extended community attribute\n"
3424 "Site-of-Origin extended community\n"
3425 "VPN extended community\n")
3426
3427DEFUN (set_origin,
3428 set_origin_cmd,
3429 "set origin (egp|igp|incomplete)",
3430 SET_STR
3431 "BGP origin code\n"
3432 "remote EGP\n"
3433 "local IGP\n"
3434 "unknown heritage\n")
3435{
3436 if (strncmp (argv[0], "igp", 2) == 0)
3437 return bgp_route_set_add (vty, vty->index, "origin", "igp");
3438 if (strncmp (argv[0], "egp", 1) == 0)
3439 return bgp_route_set_add (vty, vty->index, "origin", "egp");
3440 if (strncmp (argv[0], "incomplete", 2) == 0)
3441 return bgp_route_set_add (vty, vty->index, "origin", "incomplete");
3442
3443 return CMD_WARNING;
3444}
3445
3446DEFUN (no_set_origin,
3447 no_set_origin_cmd,
3448 "no set origin",
3449 NO_STR
3450 SET_STR
3451 "BGP origin code\n")
3452{
3453 return bgp_route_set_delete (vty, vty->index, "origin", NULL);
3454}
3455
3456ALIAS (no_set_origin,
3457 no_set_origin_val_cmd,
3458 "no set origin (egp|igp|incomplete)",
3459 NO_STR
3460 SET_STR
3461 "BGP origin code\n"
3462 "remote EGP\n"
3463 "local IGP\n"
3464 "unknown heritage\n")
3465
3466DEFUN (set_atomic_aggregate,
3467 set_atomic_aggregate_cmd,
3468 "set atomic-aggregate",
3469 SET_STR
3470 "BGP atomic aggregate attribute\n" )
3471{
3472 return bgp_route_set_add (vty, vty->index, "atomic-aggregate", NULL);
3473}
3474
3475DEFUN (no_set_atomic_aggregate,
3476 no_set_atomic_aggregate_cmd,
3477 "no set atomic-aggregate",
3478 NO_STR
3479 SET_STR
3480 "BGP atomic aggregate attribute\n" )
3481{
3482 return bgp_route_set_delete (vty, vty->index, "atomic-aggregate", NULL);
3483}
3484
3485DEFUN (set_aggregator_as,
3486 set_aggregator_as_cmd,
Paul Jakma320da872008-07-02 13:40:33 +00003487 "set aggregator as " CMD_AS_RANGE " A.B.C.D",
paul718e3742002-12-13 20:15:29 +00003488 SET_STR
3489 "BGP aggregator attribute\n"
3490 "AS number of aggregator\n"
3491 "AS number\n"
3492 "IP address of aggregator\n")
3493{
3494 int ret;
Paul Jakma7aa9dce2014-09-19 14:42:23 +01003495 as_t as __attribute__((unused)); /* dummy for VTY_GET_INTEGER_RANGE */
paul718e3742002-12-13 20:15:29 +00003496 struct in_addr address;
paul718e3742002-12-13 20:15:29 +00003497 char *argstr;
3498
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00003499 VTY_GET_INTEGER_RANGE ("AS", as, argv[0], 1, BGP_AS4_MAX);
paulfd79ac92004-10-13 05:06:08 +00003500
paul718e3742002-12-13 20:15:29 +00003501 ret = inet_aton (argv[1], &address);
3502 if (ret == 0)
3503 {
3504 vty_out (vty, "Aggregator IP address is invalid%s", VTY_NEWLINE);
3505 return CMD_WARNING;
3506 }
3507
3508 argstr = XMALLOC (MTYPE_ROUTE_MAP_COMPILED,
3509 strlen (argv[0]) + strlen (argv[1]) + 2);
3510
3511 sprintf (argstr, "%s %s", argv[0], argv[1]);
3512
3513 ret = bgp_route_set_add (vty, vty->index, "aggregator as", argstr);
3514
3515 XFREE (MTYPE_ROUTE_MAP_COMPILED, argstr);
3516
3517 return ret;
3518}
3519
3520DEFUN (no_set_aggregator_as,
3521 no_set_aggregator_as_cmd,
3522 "no set aggregator as",
3523 NO_STR
3524 SET_STR
3525 "BGP aggregator attribute\n"
3526 "AS number of aggregator\n")
3527{
3528 int ret;
Paul Jakma7aa9dce2014-09-19 14:42:23 +01003529 as_t as __attribute__((unused)); /* dummy for VTY_GET_INTEGER_RANGE */
paul718e3742002-12-13 20:15:29 +00003530 struct in_addr address;
paul718e3742002-12-13 20:15:29 +00003531 char *argstr;
3532
3533 if (argv == 0)
3534 return bgp_route_set_delete (vty, vty->index, "aggregator as", NULL);
3535
Paul Jakma0b2aa3a2007-10-14 22:32:21 +00003536 VTY_GET_INTEGER_RANGE ("AS", as, argv[0], 1, BGP_AS4_MAX);
paul718e3742002-12-13 20:15:29 +00003537
3538 ret = inet_aton (argv[1], &address);
3539 if (ret == 0)
3540 {
3541 vty_out (vty, "Aggregator IP address is invalid%s", VTY_NEWLINE);
3542 return CMD_WARNING;
3543 }
3544
3545 argstr = XMALLOC (MTYPE_ROUTE_MAP_COMPILED,
3546 strlen (argv[0]) + strlen (argv[1]) + 2);
3547
3548 sprintf (argstr, "%s %s", argv[0], argv[1]);
3549
3550 ret = bgp_route_set_delete (vty, vty->index, "aggregator as", argstr);
3551
3552 XFREE (MTYPE_ROUTE_MAP_COMPILED, argstr);
3553
3554 return ret;
3555}
3556
3557ALIAS (no_set_aggregator_as,
3558 no_set_aggregator_as_val_cmd,
Paul Jakma320da872008-07-02 13:40:33 +00003559 "no set aggregator as " CMD_AS_RANGE " A.B.C.D",
paul718e3742002-12-13 20:15:29 +00003560 NO_STR
3561 SET_STR
3562 "BGP aggregator attribute\n"
3563 "AS number of aggregator\n"
3564 "AS number\n"
3565 "IP address of aggregator\n")
3566
David Lamparter6b0655a2014-06-04 06:53:35 +02003567
paul718e3742002-12-13 20:15:29 +00003568#ifdef HAVE_IPV6
3569DEFUN (match_ipv6_address,
3570 match_ipv6_address_cmd,
3571 "match ipv6 address WORD",
3572 MATCH_STR
3573 IPV6_STR
3574 "Match IPv6 address of route\n"
3575 "IPv6 access-list name\n")
3576{
3577 return bgp_route_match_add (vty, vty->index, "ipv6 address", argv[0]);
3578}
3579
3580DEFUN (no_match_ipv6_address,
3581 no_match_ipv6_address_cmd,
3582 "no match ipv6 address WORD",
3583 NO_STR
3584 MATCH_STR
3585 IPV6_STR
3586 "Match IPv6 address of route\n"
3587 "IPv6 access-list name\n")
3588{
3589 return bgp_route_match_delete (vty, vty->index, "ipv6 address", argv[0]);
3590}
3591
3592DEFUN (match_ipv6_next_hop,
3593 match_ipv6_next_hop_cmd,
3594 "match ipv6 next-hop X:X::X:X",
3595 MATCH_STR
3596 IPV6_STR
3597 "Match IPv6 next-hop address of route\n"
3598 "IPv6 address of next hop\n")
3599{
3600 return bgp_route_match_add (vty, vty->index, "ipv6 next-hop", argv[0]);
3601}
3602
3603DEFUN (no_match_ipv6_next_hop,
3604 no_match_ipv6_next_hop_cmd,
3605 "no match ipv6 next-hop X:X::X:X",
3606 NO_STR
3607 MATCH_STR
3608 IPV6_STR
3609 "Match IPv6 next-hop address of route\n"
3610 "IPv6 address of next hop\n")
3611{
3612 return bgp_route_match_delete (vty, vty->index, "ipv6 next-hop", argv[0]);
3613}
3614
3615DEFUN (match_ipv6_address_prefix_list,
3616 match_ipv6_address_prefix_list_cmd,
3617 "match ipv6 address prefix-list WORD",
3618 MATCH_STR
3619 IPV6_STR
3620 "Match address of route\n"
3621 "Match entries of prefix-lists\n"
3622 "IP prefix-list name\n")
3623{
3624 return bgp_route_match_add (vty, vty->index, "ipv6 address prefix-list", argv[0]);
3625}
3626
3627DEFUN (no_match_ipv6_address_prefix_list,
3628 no_match_ipv6_address_prefix_list_cmd,
3629 "no match ipv6 address prefix-list WORD",
3630 NO_STR
3631 MATCH_STR
3632 IPV6_STR
3633 "Match address of route\n"
3634 "Match entries of prefix-lists\n"
3635 "IP prefix-list name\n")
3636{
3637 return bgp_route_match_delete (vty, vty->index, "ipv6 address prefix-list", argv[0]);
3638}
3639
Dinesh G Duttad5233a2014-09-30 14:19:57 -07003640DEFUN (set_ipv6_nexthop_peer,
3641 set_ipv6_nexthop_peer_cmd,
3642 "set ipv6 next-hop peer-address",
3643 SET_STR
3644 IPV6_STR
3645 "Next hop address\n"
3646 "Use peer address (for BGP only)\n")
3647{
3648 return bgp_route_set_add (vty, vty->index, "ipv6 next-hop peer-address", NULL);
3649}
3650
3651DEFUN (no_set_ipv6_nexthop_peer,
3652 no_set_ipv6_nexthop_peer_cmd,
3653 "no set ipv6 next-hop peer-address",
3654 NO_STR
3655 SET_STR
3656 IPV6_STR
3657 "IPv6 next-hop address\n"
3658 )
3659{
3660 return bgp_route_set_delete (vty, vty->index, "ipv6 next-hop", argv[0]);
3661}
3662
paul718e3742002-12-13 20:15:29 +00003663DEFUN (set_ipv6_nexthop_global,
3664 set_ipv6_nexthop_global_cmd,
3665 "set ipv6 next-hop global X:X::X:X",
3666 SET_STR
3667 IPV6_STR
3668 "IPv6 next-hop address\n"
3669 "IPv6 global address\n"
3670 "IPv6 address of next hop\n")
3671{
3672 return bgp_route_set_add (vty, vty->index, "ipv6 next-hop global", argv[0]);
3673}
3674
3675DEFUN (no_set_ipv6_nexthop_global,
3676 no_set_ipv6_nexthop_global_cmd,
3677 "no set ipv6 next-hop global",
3678 NO_STR
3679 SET_STR
3680 IPV6_STR
3681 "IPv6 next-hop address\n"
3682 "IPv6 global address\n")
3683{
3684 if (argc == 0)
3685 return bgp_route_set_delete (vty, vty->index, "ipv6 next-hop global", NULL);
3686
3687 return bgp_route_set_delete (vty, vty->index, "ipv6 next-hop global", argv[0]);
3688}
3689
3690ALIAS (no_set_ipv6_nexthop_global,
3691 no_set_ipv6_nexthop_global_val_cmd,
3692 "no set ipv6 next-hop global X:X::X:X",
3693 NO_STR
3694 SET_STR
3695 IPV6_STR
3696 "IPv6 next-hop address\n"
3697 "IPv6 global address\n"
3698 "IPv6 address of next hop\n")
3699
3700DEFUN (set_ipv6_nexthop_local,
3701 set_ipv6_nexthop_local_cmd,
3702 "set ipv6 next-hop local X:X::X:X",
3703 SET_STR
3704 IPV6_STR
3705 "IPv6 next-hop address\n"
3706 "IPv6 local address\n"
3707 "IPv6 address of next hop\n")
3708{
3709 return bgp_route_set_add (vty, vty->index, "ipv6 next-hop local", argv[0]);
3710}
3711
3712DEFUN (no_set_ipv6_nexthop_local,
3713 no_set_ipv6_nexthop_local_cmd,
3714 "no set ipv6 next-hop local",
3715 NO_STR
3716 SET_STR
3717 IPV6_STR
3718 "IPv6 next-hop address\n"
3719 "IPv6 local address\n")
3720{
3721 if (argc == 0)
3722 return bgp_route_set_delete (vty, vty->index, "ipv6 next-hop local", NULL);
3723
3724 return bgp_route_set_delete (vty, vty->index, "ipv6 next-hop local", argv[0]);
3725}
3726
3727ALIAS (no_set_ipv6_nexthop_local,
3728 no_set_ipv6_nexthop_local_val_cmd,
3729 "no set ipv6 next-hop local X:X::X:X",
3730 NO_STR
3731 SET_STR
3732 IPV6_STR
3733 "IPv6 next-hop address\n"
3734 "IPv6 local address\n"
3735 "IPv6 address of next hop\n")
3736#endif /* HAVE_IPV6 */
3737
3738DEFUN (set_vpnv4_nexthop,
3739 set_vpnv4_nexthop_cmd,
3740 "set vpnv4 next-hop A.B.C.D",
3741 SET_STR
3742 "VPNv4 information\n"
3743 "VPNv4 next-hop address\n"
3744 "IP address of next hop\n")
3745{
3746 return bgp_route_set_add (vty, vty->index, "vpnv4 next-hop", argv[0]);
3747}
3748
3749DEFUN (no_set_vpnv4_nexthop,
3750 no_set_vpnv4_nexthop_cmd,
3751 "no set vpnv4 next-hop",
3752 NO_STR
3753 SET_STR
3754 "VPNv4 information\n"
3755 "VPNv4 next-hop address\n")
3756{
3757 if (argc == 0)
3758 return bgp_route_set_delete (vty, vty->index, "vpnv4 next-hop", NULL);
3759
3760 return bgp_route_set_delete (vty, vty->index, "vpnv4 next-hop", argv[0]);
3761}
3762
3763ALIAS (no_set_vpnv4_nexthop,
3764 no_set_vpnv4_nexthop_val_cmd,
3765 "no set vpnv4 next-hop A.B.C.D",
3766 NO_STR
3767 SET_STR
3768 "VPNv4 information\n"
3769 "VPNv4 next-hop address\n"
3770 "IP address of next hop\n")
3771
3772DEFUN (set_originator_id,
3773 set_originator_id_cmd,
3774 "set originator-id A.B.C.D",
3775 SET_STR
3776 "BGP originator ID attribute\n"
3777 "IP address of originator\n")
3778{
3779 return bgp_route_set_add (vty, vty->index, "originator-id", argv[0]);
3780}
3781
3782DEFUN (no_set_originator_id,
3783 no_set_originator_id_cmd,
3784 "no set originator-id",
3785 NO_STR
3786 SET_STR
3787 "BGP originator ID attribute\n")
3788{
3789 if (argc == 0)
3790 return bgp_route_set_delete (vty, vty->index, "originator-id", NULL);
3791
3792 return bgp_route_set_delete (vty, vty->index, "originator-id", argv[0]);
3793}
3794
3795ALIAS (no_set_originator_id,
3796 no_set_originator_id_val_cmd,
3797 "no set originator-id A.B.C.D",
3798 NO_STR
3799 SET_STR
3800 "BGP originator ID attribute\n"
3801 "IP address of originator\n")
3802
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003803DEFUN_DEPRECATED (set_pathlimit_ttl,
Paul Jakma41367172007-08-06 15:24:51 +00003804 set_pathlimit_ttl_cmd,
3805 "set pathlimit ttl <1-255>",
3806 SET_STR
3807 "BGP AS-Pathlimit attribute\n"
3808 "Set AS-Path Hop-count TTL\n")
3809{
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003810 return CMD_SUCCESS;
Paul Jakma41367172007-08-06 15:24:51 +00003811}
3812
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003813DEFUN_DEPRECATED (no_set_pathlimit_ttl,
Paul Jakma41367172007-08-06 15:24:51 +00003814 no_set_pathlimit_ttl_cmd,
3815 "no set pathlimit ttl",
3816 NO_STR
3817 SET_STR
3818 "BGP AS-Pathlimit attribute\n"
3819 "Set AS-Path Hop-count TTL\n")
3820{
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003821 return CMD_SUCCESS;
Paul Jakma41367172007-08-06 15:24:51 +00003822}
3823
3824ALIAS (no_set_pathlimit_ttl,
3825 no_set_pathlimit_ttl_val_cmd,
3826 "no set pathlimit ttl <1-255>",
3827 NO_STR
3828 MATCH_STR
3829 "BGP AS-Pathlimit attribute\n"
3830 "Set AS-Path Hop-count TTL\n")
3831
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003832DEFUN_DEPRECATED (match_pathlimit_as,
Paul Jakma41367172007-08-06 15:24:51 +00003833 match_pathlimit_as_cmd,
3834 "match pathlimit as <1-65535>",
3835 MATCH_STR
3836 "BGP AS-Pathlimit attribute\n"
3837 "Match Pathlimit AS number\n")
3838{
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003839 return CMD_SUCCESS;
Paul Jakma41367172007-08-06 15:24:51 +00003840}
3841
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003842DEFUN_DEPRECATED (no_match_pathlimit_as,
Paul Jakma41367172007-08-06 15:24:51 +00003843 no_match_pathlimit_as_cmd,
3844 "no match pathlimit as",
3845 NO_STR
3846 MATCH_STR
3847 "BGP AS-Pathlimit attribute\n"
3848 "Match Pathlimit AS number\n")
3849{
Paul Jakmac8f3fe32010-12-05 20:28:02 +00003850 return CMD_SUCCESS;
Paul Jakma41367172007-08-06 15:24:51 +00003851}
3852
3853ALIAS (no_match_pathlimit_as,
3854 no_match_pathlimit_as_val_cmd,
3855 "no match pathlimit as <1-65535>",
3856 NO_STR
3857 MATCH_STR
3858 "BGP AS-Pathlimit attribute\n"
3859 "Match Pathlimit ASN\n")
3860
David Lamparter6b0655a2014-06-04 06:53:35 +02003861
paul718e3742002-12-13 20:15:29 +00003862/* Initialization of route map. */
3863void
paul94f2b392005-06-28 12:44:16 +00003864bgp_route_map_init (void)
paul718e3742002-12-13 20:15:29 +00003865{
3866 route_map_init ();
3867 route_map_init_vty ();
3868 route_map_add_hook (bgp_route_map_update);
3869 route_map_delete_hook (bgp_route_map_update);
3870
paulfee0f4c2004-09-13 05:12:46 +00003871 route_map_install_match (&route_match_peer_cmd);
paul718e3742002-12-13 20:15:29 +00003872 route_map_install_match (&route_match_ip_address_cmd);
3873 route_map_install_match (&route_match_ip_next_hop_cmd);
hassoc1643bb2005-02-02 16:43:17 +00003874 route_map_install_match (&route_match_ip_route_source_cmd);
paul718e3742002-12-13 20:15:29 +00003875 route_map_install_match (&route_match_ip_address_prefix_list_cmd);
3876 route_map_install_match (&route_match_ip_next_hop_prefix_list_cmd);
hassoc1643bb2005-02-02 16:43:17 +00003877 route_map_install_match (&route_match_ip_route_source_prefix_list_cmd);
paul718e3742002-12-13 20:15:29 +00003878 route_map_install_match (&route_match_aspath_cmd);
3879 route_map_install_match (&route_match_community_cmd);
paul73ffb252003-04-19 15:49:49 +00003880 route_map_install_match (&route_match_ecommunity_cmd);
paul718e3742002-12-13 20:15:29 +00003881 route_map_install_match (&route_match_metric_cmd);
3882 route_map_install_match (&route_match_origin_cmd);
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +04003883 route_map_install_match (&route_match_probability_cmd);
paul718e3742002-12-13 20:15:29 +00003884
3885 route_map_install_set (&route_set_ip_nexthop_cmd);
3886 route_map_install_set (&route_set_local_pref_cmd);
3887 route_map_install_set (&route_set_weight_cmd);
3888 route_map_install_set (&route_set_metric_cmd);
3889 route_map_install_set (&route_set_aspath_prepend_cmd);
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003890 route_map_install_set (&route_set_aspath_exclude_cmd);
paul718e3742002-12-13 20:15:29 +00003891 route_map_install_set (&route_set_origin_cmd);
3892 route_map_install_set (&route_set_atomic_aggregate_cmd);
3893 route_map_install_set (&route_set_aggregator_as_cmd);
3894 route_map_install_set (&route_set_community_cmd);
3895 route_map_install_set (&route_set_community_delete_cmd);
3896 route_map_install_set (&route_set_vpnv4_nexthop_cmd);
3897 route_map_install_set (&route_set_originator_id_cmd);
3898 route_map_install_set (&route_set_ecommunity_rt_cmd);
3899 route_map_install_set (&route_set_ecommunity_soo_cmd);
3900
paulfee0f4c2004-09-13 05:12:46 +00003901 install_element (RMAP_NODE, &match_peer_cmd);
3902 install_element (RMAP_NODE, &match_peer_local_cmd);
3903 install_element (RMAP_NODE, &no_match_peer_cmd);
3904 install_element (RMAP_NODE, &no_match_peer_val_cmd);
3905 install_element (RMAP_NODE, &no_match_peer_local_cmd);
paul718e3742002-12-13 20:15:29 +00003906 install_element (RMAP_NODE, &match_ip_address_cmd);
3907 install_element (RMAP_NODE, &no_match_ip_address_cmd);
3908 install_element (RMAP_NODE, &no_match_ip_address_val_cmd);
3909 install_element (RMAP_NODE, &match_ip_next_hop_cmd);
3910 install_element (RMAP_NODE, &no_match_ip_next_hop_cmd);
3911 install_element (RMAP_NODE, &no_match_ip_next_hop_val_cmd);
hassoc1643bb2005-02-02 16:43:17 +00003912 install_element (RMAP_NODE, &match_ip_route_source_cmd);
3913 install_element (RMAP_NODE, &no_match_ip_route_source_cmd);
3914 install_element (RMAP_NODE, &no_match_ip_route_source_val_cmd);
paul718e3742002-12-13 20:15:29 +00003915 install_element (RMAP_NODE, &match_ip_address_prefix_list_cmd);
3916 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_cmd);
3917 install_element (RMAP_NODE, &no_match_ip_address_prefix_list_val_cmd);
3918 install_element (RMAP_NODE, &match_ip_next_hop_prefix_list_cmd);
3919 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_cmd);
3920 install_element (RMAP_NODE, &no_match_ip_next_hop_prefix_list_val_cmd);
hassoc1643bb2005-02-02 16:43:17 +00003921 install_element (RMAP_NODE, &match_ip_route_source_prefix_list_cmd);
3922 install_element (RMAP_NODE, &no_match_ip_route_source_prefix_list_cmd);
3923 install_element (RMAP_NODE, &no_match_ip_route_source_prefix_list_val_cmd);
paul718e3742002-12-13 20:15:29 +00003924
3925 install_element (RMAP_NODE, &match_aspath_cmd);
3926 install_element (RMAP_NODE, &no_match_aspath_cmd);
3927 install_element (RMAP_NODE, &no_match_aspath_val_cmd);
3928 install_element (RMAP_NODE, &match_metric_cmd);
3929 install_element (RMAP_NODE, &no_match_metric_cmd);
3930 install_element (RMAP_NODE, &no_match_metric_val_cmd);
3931 install_element (RMAP_NODE, &match_community_cmd);
3932 install_element (RMAP_NODE, &match_community_exact_cmd);
3933 install_element (RMAP_NODE, &no_match_community_cmd);
3934 install_element (RMAP_NODE, &no_match_community_val_cmd);
3935 install_element (RMAP_NODE, &no_match_community_exact_cmd);
paul73ffb252003-04-19 15:49:49 +00003936 install_element (RMAP_NODE, &match_ecommunity_cmd);
3937 install_element (RMAP_NODE, &no_match_ecommunity_cmd);
3938 install_element (RMAP_NODE, &no_match_ecommunity_val_cmd);
paul718e3742002-12-13 20:15:29 +00003939 install_element (RMAP_NODE, &match_origin_cmd);
3940 install_element (RMAP_NODE, &no_match_origin_cmd);
3941 install_element (RMAP_NODE, &no_match_origin_val_cmd);
Vyacheslav Trushkin1add1152011-11-22 20:15:10 +04003942 install_element (RMAP_NODE, &match_probability_cmd);
3943 install_element (RMAP_NODE, &no_match_probability_cmd);
3944 install_element (RMAP_NODE, &no_match_probability_val_cmd);
paul718e3742002-12-13 20:15:29 +00003945
3946 install_element (RMAP_NODE, &set_ip_nexthop_cmd);
paulaf5cd0a2003-11-02 07:24:40 +00003947 install_element (RMAP_NODE, &set_ip_nexthop_peer_cmd);
paul718e3742002-12-13 20:15:29 +00003948 install_element (RMAP_NODE, &no_set_ip_nexthop_cmd);
3949 install_element (RMAP_NODE, &no_set_ip_nexthop_val_cmd);
3950 install_element (RMAP_NODE, &set_local_pref_cmd);
3951 install_element (RMAP_NODE, &no_set_local_pref_cmd);
3952 install_element (RMAP_NODE, &no_set_local_pref_val_cmd);
3953 install_element (RMAP_NODE, &set_weight_cmd);
3954 install_element (RMAP_NODE, &no_set_weight_cmd);
3955 install_element (RMAP_NODE, &no_set_weight_val_cmd);
3956 install_element (RMAP_NODE, &set_metric_cmd);
paul73ffb252003-04-19 15:49:49 +00003957 install_element (RMAP_NODE, &set_metric_addsub_cmd);
Timo Teräsef757702015-04-29 09:43:04 +03003958 install_element (RMAP_NODE, &set_metric_rtt_cmd);
paul718e3742002-12-13 20:15:29 +00003959 install_element (RMAP_NODE, &no_set_metric_cmd);
3960 install_element (RMAP_NODE, &no_set_metric_val_cmd);
3961 install_element (RMAP_NODE, &set_aspath_prepend_cmd);
Timo Teräs85c854a2014-09-30 11:31:53 +03003962 install_element (RMAP_NODE, &set_aspath_prepend_lastas_cmd);
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003963 install_element (RMAP_NODE, &set_aspath_exclude_cmd);
paul718e3742002-12-13 20:15:29 +00003964 install_element (RMAP_NODE, &no_set_aspath_prepend_cmd);
3965 install_element (RMAP_NODE, &no_set_aspath_prepend_val_cmd);
Denis Ovsienko841f7a52008-04-10 11:47:45 +00003966 install_element (RMAP_NODE, &no_set_aspath_exclude_cmd);
3967 install_element (RMAP_NODE, &no_set_aspath_exclude_val_cmd);
paul718e3742002-12-13 20:15:29 +00003968 install_element (RMAP_NODE, &set_origin_cmd);
3969 install_element (RMAP_NODE, &no_set_origin_cmd);
3970 install_element (RMAP_NODE, &no_set_origin_val_cmd);
3971 install_element (RMAP_NODE, &set_atomic_aggregate_cmd);
3972 install_element (RMAP_NODE, &no_set_atomic_aggregate_cmd);
3973 install_element (RMAP_NODE, &set_aggregator_as_cmd);
3974 install_element (RMAP_NODE, &no_set_aggregator_as_cmd);
3975 install_element (RMAP_NODE, &no_set_aggregator_as_val_cmd);
3976 install_element (RMAP_NODE, &set_community_cmd);
3977 install_element (RMAP_NODE, &set_community_none_cmd);
3978 install_element (RMAP_NODE, &no_set_community_cmd);
3979 install_element (RMAP_NODE, &no_set_community_val_cmd);
3980 install_element (RMAP_NODE, &no_set_community_none_cmd);
3981 install_element (RMAP_NODE, &set_community_delete_cmd);
3982 install_element (RMAP_NODE, &no_set_community_delete_cmd);
3983 install_element (RMAP_NODE, &no_set_community_delete_val_cmd);
3984 install_element (RMAP_NODE, &set_ecommunity_rt_cmd);
3985 install_element (RMAP_NODE, &no_set_ecommunity_rt_cmd);
3986 install_element (RMAP_NODE, &no_set_ecommunity_rt_val_cmd);
3987 install_element (RMAP_NODE, &set_ecommunity_soo_cmd);
3988 install_element (RMAP_NODE, &no_set_ecommunity_soo_cmd);
3989 install_element (RMAP_NODE, &no_set_ecommunity_soo_val_cmd);
3990 install_element (RMAP_NODE, &set_vpnv4_nexthop_cmd);
3991 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_cmd);
3992 install_element (RMAP_NODE, &no_set_vpnv4_nexthop_val_cmd);
3993 install_element (RMAP_NODE, &set_originator_id_cmd);
3994 install_element (RMAP_NODE, &no_set_originator_id_cmd);
3995 install_element (RMAP_NODE, &no_set_originator_id_val_cmd);
3996
3997#ifdef HAVE_IPV6
3998 route_map_install_match (&route_match_ipv6_address_cmd);
3999 route_map_install_match (&route_match_ipv6_next_hop_cmd);
4000 route_map_install_match (&route_match_ipv6_address_prefix_list_cmd);
4001 route_map_install_set (&route_set_ipv6_nexthop_global_cmd);
4002 route_map_install_set (&route_set_ipv6_nexthop_local_cmd);
Dinesh G Duttad5233a2014-09-30 14:19:57 -07004003 route_map_install_set (&route_set_ipv6_nexthop_peer_cmd);
4004
paul718e3742002-12-13 20:15:29 +00004005 install_element (RMAP_NODE, &match_ipv6_address_cmd);
4006 install_element (RMAP_NODE, &no_match_ipv6_address_cmd);
4007 install_element (RMAP_NODE, &match_ipv6_next_hop_cmd);
4008 install_element (RMAP_NODE, &no_match_ipv6_next_hop_cmd);
4009 install_element (RMAP_NODE, &match_ipv6_address_prefix_list_cmd);
4010 install_element (RMAP_NODE, &no_match_ipv6_address_prefix_list_cmd);
4011 install_element (RMAP_NODE, &set_ipv6_nexthop_global_cmd);
4012 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_cmd);
4013 install_element (RMAP_NODE, &no_set_ipv6_nexthop_global_val_cmd);
4014 install_element (RMAP_NODE, &set_ipv6_nexthop_local_cmd);
4015 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_cmd);
4016 install_element (RMAP_NODE, &no_set_ipv6_nexthop_local_val_cmd);
Dinesh G Duttad5233a2014-09-30 14:19:57 -07004017 install_element (RMAP_NODE, &set_ipv6_nexthop_peer_cmd);
4018 install_element (RMAP_NODE, &no_set_ipv6_nexthop_peer_cmd);
paul718e3742002-12-13 20:15:29 +00004019#endif /* HAVE_IPV6 */
Paul Jakma41367172007-08-06 15:24:51 +00004020
Paul Jakmac8f3fe32010-12-05 20:28:02 +00004021 /* AS-Pathlimit: functionality removed, commands kept for
4022 * compatibility.
4023 */
Paul Jakma41367172007-08-06 15:24:51 +00004024 install_element (RMAP_NODE, &set_pathlimit_ttl_cmd);
4025 install_element (RMAP_NODE, &no_set_pathlimit_ttl_cmd);
4026 install_element (RMAP_NODE, &no_set_pathlimit_ttl_val_cmd);
4027 install_element (RMAP_NODE, &match_pathlimit_as_cmd);
4028 install_element (RMAP_NODE, &no_match_pathlimit_as_cmd);
4029 install_element (RMAP_NODE, &no_match_pathlimit_as_val_cmd);
paul718e3742002-12-13 20:15:29 +00004030}