2 * IS-IS Rout(e)ing protocol - isis_routemap.c
4 * Copyright (C) 2013-2015 Christian Franke <chris@opensourcerouting.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
11 * This program is distributed in the hope that it will be useful,but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
37 #include "isis_constants.h"
38 #include "isis_common.h"
39 #include "isis_flags.h"
41 #include "isis_misc.h"
42 #include "isis_adjacency.h"
43 #include "isis_circuit.h"
47 #include "isis_route.h"
48 #include "isis_zebra.h"
49 #include "isis_routemap.h"
51 static enum route_map_cmd_result_t
52 route_match_ip_address(void *rule
, const struct prefix
*prefix
,
53 route_map_object_t type
, void *object
)
55 struct access_list
*alist
;
57 if (type
!= RMAP_ISIS
)
60 alist
= access_list_lookup(AFI_IP
, (char *)rule
);
61 if (access_list_apply(alist
, prefix
) != FILTER_DENY
)
67 static void *route_match_ip_address_compile(const char *arg
)
69 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
72 static void route_match_ip_address_free(void *rule
)
74 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
77 static const struct route_map_rule_cmd route_match_ip_address_cmd
= {
79 route_match_ip_address
,
80 route_match_ip_address_compile
,
81 route_match_ip_address_free
84 /* ------------------------------------------------------------*/
86 static enum route_map_cmd_result_t
87 route_match_ip_address_prefix_list(void *rule
, const struct prefix
*prefix
,
88 route_map_object_t type
, void *object
)
90 struct prefix_list
*plist
;
92 if (type
!= RMAP_ISIS
)
95 plist
= prefix_list_lookup(AFI_IP
, (char *)rule
);
96 if (prefix_list_apply(plist
, prefix
) != PREFIX_DENY
)
102 static void *route_match_ip_address_prefix_list_compile(const char *arg
)
104 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
107 static void route_match_ip_address_prefix_list_free(void *rule
)
109 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
112 static const struct route_map_rule_cmd
113 route_match_ip_address_prefix_list_cmd
= {
114 "ip address prefix-list",
115 route_match_ip_address_prefix_list
,
116 route_match_ip_address_prefix_list_compile
,
117 route_match_ip_address_prefix_list_free
120 /* ------------------------------------------------------------*/
122 static enum route_map_cmd_result_t
123 route_match_ipv6_address(void *rule
, const struct prefix
*prefix
,
124 route_map_object_t type
, void *object
)
126 struct access_list
*alist
;
128 if (type
!= RMAP_ISIS
)
131 alist
= access_list_lookup(AFI_IP6
, (char *)rule
);
132 if (access_list_apply(alist
, prefix
) != FILTER_DENY
)
138 static void *route_match_ipv6_address_compile(const char *arg
)
140 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
143 static void route_match_ipv6_address_free(void *rule
)
145 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
148 static const struct route_map_rule_cmd route_match_ipv6_address_cmd
= {
150 route_match_ipv6_address
,
151 route_match_ipv6_address_compile
,
152 route_match_ipv6_address_free
155 /* ------------------------------------------------------------*/
157 static enum route_map_cmd_result_t
158 route_match_ipv6_address_prefix_list(void *rule
, const struct prefix
*prefix
,
159 route_map_object_t type
, void *object
)
161 struct prefix_list
*plist
;
163 if (type
!= RMAP_ISIS
)
166 plist
= prefix_list_lookup(AFI_IP6
, (char *)rule
);
167 if (prefix_list_apply(plist
, prefix
) != PREFIX_DENY
)
173 static void *route_match_ipv6_address_prefix_list_compile(const char *arg
)
175 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED
, arg
);
178 static void route_match_ipv6_address_prefix_list_free(void *rule
)
180 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
183 static const struct route_map_rule_cmd
184 route_match_ipv6_address_prefix_list_cmd
= {
185 "ipv6 address prefix-list",
186 route_match_ipv6_address_prefix_list
,
187 route_match_ipv6_address_prefix_list_compile
,
188 route_match_ipv6_address_prefix_list_free
191 /* ------------------------------------------------------------*/
193 static enum route_map_cmd_result_t
194 route_set_metric(void *rule
, const struct prefix
*prefix
,
195 route_map_object_t type
, void *object
)
198 struct isis_ext_info
*info
;
200 if (type
== RMAP_ISIS
) {
204 info
->metric
= *metric
;
209 static void *route_set_metric_compile(const char *arg
)
211 unsigned long metric
;
215 metric
= strtoul(arg
, &endp
, 10);
216 if (arg
[0] == '\0' || *endp
!= '\0' || metric
> MAX_WIDE_PATH_METRIC
)
219 ret
= XCALLOC(MTYPE_ROUTE_MAP_COMPILED
, sizeof(*ret
));
225 static void route_set_metric_free(void *rule
)
227 XFREE(MTYPE_ROUTE_MAP_COMPILED
, rule
);
230 static const struct route_map_rule_cmd route_set_metric_cmd
= {
233 route_set_metric_compile
,
234 route_set_metric_free
237 void isis_route_map_init(void)
241 route_map_match_ip_address_hook(generic_match_add
);
242 route_map_no_match_ip_address_hook(generic_match_delete
);
244 route_map_match_ip_address_prefix_list_hook(generic_match_add
);
245 route_map_no_match_ip_address_prefix_list_hook(generic_match_delete
);
247 route_map_match_ipv6_address_hook(generic_match_add
);
248 route_map_no_match_ipv6_address_hook(generic_match_delete
);
250 route_map_match_ipv6_address_prefix_list_hook(generic_match_add
);
251 route_map_no_match_ipv6_address_prefix_list_hook(generic_match_delete
);
253 route_map_set_metric_hook(generic_set_add
);
254 route_map_no_set_metric_hook(generic_set_delete
);
256 route_map_install_match(&route_match_ip_address_cmd
);
257 route_map_install_match(&route_match_ip_address_prefix_list_cmd
);
258 route_map_install_match(&route_match_ipv6_address_cmd
);
259 route_map_install_match(&route_match_ipv6_address_prefix_list_cmd
);
260 route_map_install_set(&route_set_metric_cmd
);