]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_routemap.c
Correct build TLV functions
[mirror_frr.git] / ospfd / ospf_routemap.c
1 /*
2 * Route map function of ospfd.
3 * Copyright (C) 2000 IP Infusion Inc.
4 *
5 * Written by Toshiaki Takada.
6 *
7 * This file is part of GNU Zebra.
8 *
9 * GNU Zebra is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * GNU Zebra is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #include <zebra.h>
25
26 #include "memory.h"
27 #include "prefix.h"
28 #include "table.h"
29 #include "vty.h"
30 #include "routemap.h"
31 #include "command.h"
32 #include "log.h"
33 #include "plist.h"
34 #include "vrf.h"
35
36 #include "ospfd/ospfd.h"
37 #include "ospfd/ospf_asbr.h"
38 #include "ospfd/ospf_interface.h"
39 #include "ospfd/ospf_lsa.h"
40 #include "ospfd/ospf_route.h"
41 #include "ospfd/ospf_zebra.h"
42
43 /* Hook function for updating route_map assignment. */
44 static void ospf_route_map_update(const char *name)
45 {
46 struct ospf *ospf;
47 int type;
48
49 /* If OSPF instatnce does not exist, return right now. */
50 ospf = ospf_lookup();
51 if (ospf == NULL)
52 return;
53
54 /* Update route-map */
55 for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) {
56 struct list *red_list;
57 struct listnode *node;
58 struct ospf_redist *red;
59
60 red_list = ospf->redist[type];
61 if (!red_list)
62 continue;
63
64 for (ALL_LIST_ELEMENTS_RO(red_list, node, red)) {
65 if (ROUTEMAP_NAME(red)
66 && strcmp(ROUTEMAP_NAME(red), name) == 0) {
67 /* Keep old route-map. */
68 struct route_map *old = ROUTEMAP(red);
69
70 /* Update route-map. */
71 ROUTEMAP(red) = route_map_lookup_by_name(
72 ROUTEMAP_NAME(red));
73
74 /* No update for this distribute type. */
75 if (old == NULL && ROUTEMAP(red) == NULL)
76 continue;
77
78 ospf_distribute_list_update(ospf, type,
79 red->instance);
80 }
81 }
82 }
83 }
84
85 static void ospf_route_map_event(route_map_event_t event, const char *name)
86 {
87 struct ospf *ospf;
88 int type;
89
90 /* If OSPF instatnce does not exist, return right now. */
91 ospf = ospf_lookup();
92 if (ospf == NULL)
93 return;
94
95 for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) {
96 struct list *red_list;
97 struct listnode *node;
98 struct ospf_redist *red;
99
100 red_list = ospf->redist[type];
101 if (!red_list)
102 continue;
103
104 for (ALL_LIST_ELEMENTS_RO(red_list, node, red)) {
105 if (ROUTEMAP_NAME(red) && ROUTEMAP(red)
106 && !strcmp(ROUTEMAP_NAME(red), name)) {
107 ospf_distribute_list_update(ospf, type,
108 red->instance);
109 }
110 }
111 }
112 }
113
114 /* `match ip netxthop ' */
115 /* Match function return 1 if match is success else return zero. */
116 static route_map_result_t route_match_ip_nexthop(void *rule,
117 struct prefix *prefix,
118 route_map_object_t type,
119 void *object)
120 {
121 struct access_list *alist;
122 struct external_info *ei = object;
123 struct prefix_ipv4 p;
124
125 if (type == RMAP_OSPF) {
126 p.family = AF_INET;
127 p.prefix = ei->nexthop;
128 p.prefixlen = IPV4_MAX_BITLEN;
129
130 alist = access_list_lookup(AFI_IP, (char *)rule);
131 if (alist == NULL)
132 return RMAP_NOMATCH;
133
134 return (access_list_apply(alist, &p) == FILTER_DENY
135 ? RMAP_NOMATCH
136 : RMAP_MATCH);
137 }
138 return RMAP_NOMATCH;
139 }
140
141 /* Route map `ip next-hop' match statement. `arg' should be
142 access-list name. */
143 static void *route_match_ip_nexthop_compile(const char *arg)
144 {
145 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
146 }
147
148 /* Free route map's compiled `ip address' value. */
149 static void route_match_ip_nexthop_free(void *rule)
150 {
151 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
152 }
153
154 /* Route map commands for metric matching. */
155 struct route_map_rule_cmd route_match_ip_nexthop_cmd = {
156 "ip next-hop", route_match_ip_nexthop, route_match_ip_nexthop_compile,
157 route_match_ip_nexthop_free};
158
159 /* `match ip next-hop prefix-list PREFIX_LIST' */
160
161 static route_map_result_t
162 route_match_ip_next_hop_prefix_list(void *rule, struct prefix *prefix,
163 route_map_object_t type, void *object)
164 {
165 struct prefix_list *plist;
166 struct external_info *ei = object;
167 struct prefix_ipv4 p;
168
169 if (type == RMAP_OSPF) {
170 p.family = AF_INET;
171 p.prefix = ei->nexthop;
172 p.prefixlen = IPV4_MAX_BITLEN;
173
174 plist = prefix_list_lookup(AFI_IP, (char *)rule);
175 if (plist == NULL)
176 return RMAP_NOMATCH;
177
178 return (prefix_list_apply(plist, &p) == PREFIX_DENY
179 ? RMAP_NOMATCH
180 : RMAP_MATCH);
181 }
182 return RMAP_NOMATCH;
183 }
184
185 static void *route_match_ip_next_hop_prefix_list_compile(const char *arg)
186 {
187 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
188 }
189
190 static void route_match_ip_next_hop_prefix_list_free(void *rule)
191 {
192 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
193 }
194
195 struct route_map_rule_cmd route_match_ip_next_hop_prefix_list_cmd = {
196 "ip next-hop prefix-list", route_match_ip_next_hop_prefix_list,
197 route_match_ip_next_hop_prefix_list_compile,
198 route_match_ip_next_hop_prefix_list_free};
199
200 /* `match ip address IP_ACCESS_LIST' */
201 /* Match function should return 1 if match is success else return
202 zero. */
203 static route_map_result_t route_match_ip_address(void *rule,
204 struct prefix *prefix,
205 route_map_object_t type,
206 void *object)
207 {
208 struct access_list *alist;
209 /* struct prefix_ipv4 match; */
210
211 if (type == RMAP_OSPF) {
212 alist = access_list_lookup(AFI_IP, (char *)rule);
213 if (alist == NULL)
214 return RMAP_NOMATCH;
215
216 return (access_list_apply(alist, prefix) == FILTER_DENY
217 ? RMAP_NOMATCH
218 : RMAP_MATCH);
219 }
220 return RMAP_NOMATCH;
221 }
222
223 /* Route map `ip address' match statement. `arg' should be
224 access-list name. */
225 static void *route_match_ip_address_compile(const char *arg)
226 {
227 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
228 }
229
230 /* Free route map's compiled `ip address' value. */
231 static void route_match_ip_address_free(void *rule)
232 {
233 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
234 }
235
236 /* Route map commands for ip address matching. */
237 struct route_map_rule_cmd route_match_ip_address_cmd = {
238 "ip address", route_match_ip_address, route_match_ip_address_compile,
239 route_match_ip_address_free};
240
241 /* `match ip address prefix-list PREFIX_LIST' */
242 static route_map_result_t
243 route_match_ip_address_prefix_list(void *rule, struct prefix *prefix,
244 route_map_object_t type, void *object)
245 {
246 struct prefix_list *plist;
247
248 if (type == RMAP_OSPF) {
249 plist = prefix_list_lookup(AFI_IP, (char *)rule);
250 if (plist == NULL)
251 return RMAP_NOMATCH;
252
253 return (prefix_list_apply(plist, prefix) == PREFIX_DENY
254 ? RMAP_NOMATCH
255 : RMAP_MATCH);
256 }
257 return RMAP_NOMATCH;
258 }
259
260 static void *route_match_ip_address_prefix_list_compile(const char *arg)
261 {
262 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
263 }
264
265 static void route_match_ip_address_prefix_list_free(void *rule)
266 {
267 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
268 }
269
270 struct route_map_rule_cmd route_match_ip_address_prefix_list_cmd = {
271 "ip address prefix-list", route_match_ip_address_prefix_list,
272 route_match_ip_address_prefix_list_compile,
273 route_match_ip_address_prefix_list_free};
274
275 /* `match interface IFNAME' */
276 /* Match function should return 1 if match is success else return
277 zero. */
278 static route_map_result_t route_match_interface(void *rule,
279 struct prefix *prefix,
280 route_map_object_t type,
281 void *object)
282 {
283 struct interface *ifp;
284 struct external_info *ei;
285
286 if (type == RMAP_OSPF) {
287 ei = object;
288 ifp = if_lookup_by_name((char *)rule, VRF_DEFAULT);
289
290 if (ifp == NULL || ifp->ifindex != ei->ifindex)
291 return RMAP_NOMATCH;
292
293 return RMAP_MATCH;
294 }
295 return RMAP_NOMATCH;
296 }
297
298 /* Route map `interface' match statement. `arg' should be
299 interface name. */
300 static void *route_match_interface_compile(const char *arg)
301 {
302 return XSTRDUP(MTYPE_ROUTE_MAP_COMPILED, arg);
303 }
304
305 /* Free route map's compiled `interface' value. */
306 static void route_match_interface_free(void *rule)
307 {
308 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
309 }
310
311 /* Route map commands for ip address matching. */
312 struct route_map_rule_cmd route_match_interface_cmd = {
313 "interface", route_match_interface, route_match_interface_compile,
314 route_match_interface_free};
315
316 /* Match function return 1 if match is success else return zero. */
317 static route_map_result_t route_match_tag(void *rule, struct prefix *prefix,
318 route_map_object_t type, void *object)
319 {
320 route_tag_t *tag;
321 struct external_info *ei;
322
323 if (type == RMAP_OSPF) {
324 tag = rule;
325 ei = object;
326
327 return ((ei->tag == *tag) ? RMAP_MATCH : RMAP_NOMATCH);
328 }
329
330 return RMAP_NOMATCH;
331 }
332
333 /* Route map commands for tag matching. */
334 static struct route_map_rule_cmd route_match_tag_cmd = {
335 "tag",
336 route_match_tag,
337 route_map_rule_tag_compile,
338 route_map_rule_tag_free,
339 };
340
341
342 /* `set metric METRIC' */
343 /* Set metric to attribute. */
344 static route_map_result_t route_set_metric(void *rule, struct prefix *prefix,
345 route_map_object_t type,
346 void *object)
347 {
348 u_int32_t *metric;
349 struct external_info *ei;
350
351 if (type == RMAP_OSPF) {
352 /* Fetch routemap's rule information. */
353 metric = rule;
354 ei = object;
355
356 /* Set metric out value. */
357 ei->route_map_set.metric = *metric;
358 }
359 return RMAP_OKAY;
360 }
361
362 /* set metric compilation. */
363 static void *route_set_metric_compile(const char *arg)
364 {
365 u_int32_t *metric;
366
367 /* OSPF doesn't support the +/- in
368 set metric <+/-metric> check
369 Ignore the +/- component */
370 if (!all_digit(arg)) {
371 if ((arg[0] == '+' || arg[0] == '-') && all_digit(arg + 1)) {
372 zlog_warn("OSPF does not support 'set metric +/-'");
373 arg++;
374 } else {
375 if (strmatch(arg, "+rtt") || strmatch(arg, "-rtt"))
376 zlog_warn(
377 "OSPF does not support 'set metric +rtt / -rtt'");
378 return NULL;
379 }
380 }
381 metric = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(u_int32_t));
382 *metric = strtoul(arg, NULL, 10);
383
384 return metric;
385 }
386
387 /* Free route map's compiled `set metric' value. */
388 static void route_set_metric_free(void *rule)
389 {
390 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
391 }
392
393 /* Set metric rule structure. */
394 struct route_map_rule_cmd route_set_metric_cmd = {
395 "metric",
396 route_set_metric,
397 route_set_metric_compile,
398 route_set_metric_free,
399 };
400
401 /* `set metric-type TYPE' */
402 /* Set metric-type to attribute. */
403 static route_map_result_t route_set_metric_type(void *rule,
404 struct prefix *prefix,
405 route_map_object_t type,
406 void *object)
407 {
408 u_int32_t *metric_type;
409 struct external_info *ei;
410
411 if (type == RMAP_OSPF) {
412 /* Fetch routemap's rule information. */
413 metric_type = rule;
414 ei = object;
415
416 /* Set metric out value. */
417 ei->route_map_set.metric_type = *metric_type;
418 }
419 return RMAP_OKAY;
420 }
421
422 /* set metric-type compilation. */
423 static void *route_set_metric_type_compile(const char *arg)
424 {
425 u_int32_t *metric_type;
426
427 metric_type = XCALLOC(MTYPE_ROUTE_MAP_COMPILED, sizeof(u_int32_t));
428 if (strcmp(arg, "type-1") == 0)
429 *metric_type = EXTERNAL_METRIC_TYPE_1;
430 else if (strcmp(arg, "type-2") == 0)
431 *metric_type = EXTERNAL_METRIC_TYPE_2;
432
433 if (*metric_type == EXTERNAL_METRIC_TYPE_1
434 || *metric_type == EXTERNAL_METRIC_TYPE_2)
435 return metric_type;
436
437 XFREE(MTYPE_ROUTE_MAP_COMPILED, metric_type);
438 return NULL;
439 }
440
441 /* Free route map's compiled `set metric-type' value. */
442 static void route_set_metric_type_free(void *rule)
443 {
444 XFREE(MTYPE_ROUTE_MAP_COMPILED, rule);
445 }
446
447 /* Set metric rule structure. */
448 struct route_map_rule_cmd route_set_metric_type_cmd = {
449 "metric-type",
450 route_set_metric_type,
451 route_set_metric_type_compile,
452 route_set_metric_type_free,
453 };
454
455 static route_map_result_t route_set_tag(void *rule, struct prefix *prefix,
456 route_map_object_t type, void *object)
457 {
458 route_tag_t *tag;
459 struct external_info *ei;
460
461 if (type == RMAP_OSPF) {
462 tag = rule;
463 ei = object;
464
465 /* Set tag value */
466 ei->tag = *tag;
467 }
468
469 return RMAP_OKAY;
470 }
471
472 /* Route map commands for tag set. */
473 static struct route_map_rule_cmd route_set_tag_cmd = {
474 "tag",
475 route_set_tag,
476 route_map_rule_tag_compile,
477 route_map_rule_tag_free,
478 };
479
480 DEFUN (set_metric_type,
481 set_metric_type_cmd,
482 "set metric-type <type-1|type-2>",
483 SET_STR
484 "Type of metric for destination routing protocol\n"
485 "OSPF[6] external type 1 metric\n"
486 "OSPF[6] external type 2 metric\n")
487 {
488 char *ext = argv[2]->text;
489 return generic_set_add(vty, VTY_GET_CONTEXT(route_map_index),
490 "metric-type", ext);
491 }
492
493 DEFUN (no_set_metric_type,
494 no_set_metric_type_cmd,
495 "no set metric-type [<type-1|type-2>]",
496 NO_STR
497 SET_STR
498 "Type of metric for destination routing protocol\n"
499 "OSPF[6] external type 1 metric\n"
500 "OSPF[6] external type 2 metric\n")
501 {
502 char *ext = (argc == 4) ? argv[3]->text : NULL;
503 return generic_set_delete(vty, VTY_GET_CONTEXT(route_map_index),
504 "metric-type", ext);
505 }
506
507 /* Route-map init */
508 void ospf_route_map_init(void)
509 {
510 route_map_init();
511
512 route_map_add_hook(ospf_route_map_update);
513 route_map_delete_hook(ospf_route_map_update);
514 route_map_event_hook(ospf_route_map_event);
515
516 route_map_set_metric_hook(generic_set_add);
517 route_map_no_set_metric_hook(generic_set_delete);
518
519 route_map_match_ip_next_hop_hook(generic_match_add);
520 route_map_no_match_ip_next_hop_hook(generic_match_delete);
521
522 route_map_match_interface_hook(generic_match_add);
523 route_map_no_match_interface_hook(generic_match_delete);
524
525 route_map_match_ip_address_hook(generic_match_add);
526 route_map_no_match_ip_address_hook(generic_match_delete);
527
528 route_map_match_ip_address_prefix_list_hook(generic_match_add);
529 route_map_no_match_ip_address_prefix_list_hook(generic_match_delete);
530
531 route_map_match_ip_next_hop_prefix_list_hook(generic_match_add);
532 route_map_no_match_ip_next_hop_prefix_list_hook(generic_match_delete);
533
534 route_map_match_tag_hook(generic_match_add);
535 route_map_no_match_tag_hook(generic_match_delete);
536
537 route_map_set_metric_hook(generic_set_add);
538 route_map_no_set_metric_hook(generic_set_delete);
539
540 route_map_set_tag_hook(generic_set_add);
541 route_map_no_set_tag_hook(generic_set_delete);
542
543 route_map_install_match(&route_match_ip_nexthop_cmd);
544 route_map_install_match(&route_match_ip_next_hop_prefix_list_cmd);
545 route_map_install_match(&route_match_ip_address_cmd);
546 route_map_install_match(&route_match_ip_address_prefix_list_cmd);
547 route_map_install_match(&route_match_interface_cmd);
548 route_map_install_match(&route_match_tag_cmd);
549
550 route_map_install_set(&route_set_metric_cmd);
551 route_map_install_set(&route_set_metric_type_cmd);
552 route_map_install_set(&route_set_tag_cmd);
553
554 install_element(RMAP_NODE, &set_metric_type_cmd);
555 install_element(RMAP_NODE, &no_set_metric_type_cmd);
556 }