2 * Zebra connect library for OSPFd
3 * Copyright (C) 1997, 98, 99, 2000 Kunihiro Ishiguro, Toshiaki Takada
5 * This file is part of GNU Zebra.
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
38 #include "ospfd/ospfd.h"
39 #include "ospfd/ospf_interface.h"
40 #include "ospfd/ospf_ism.h"
41 #include "ospfd/ospf_asbr.h"
42 #include "ospfd/ospf_asbr.h"
43 #include "ospfd/ospf_abr.h"
44 #include "ospfd/ospf_lsa.h"
45 #include "ospfd/ospf_dump.h"
46 #include "ospfd/ospf_route.h"
47 #include "ospfd/ospf_zebra.h"
49 #include "ospfd/ospf_snmp.h"
50 #endif /* HAVE_SNMP */
52 /* Zebra structure to hold current status. */
53 struct zclient
*zclient
= NULL
;
55 /* For registering threads. */
56 extern struct thread_master
*master
;
57 struct in_addr router_id_zebra
;
59 /* Router-id update message from zebra. */
61 ospf_router_id_update_zebra (int command
, struct zclient
*zclient
,
65 struct prefix router_id
;
66 zebra_router_id_update_read(zclient
->ibuf
,&router_id
);
68 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
71 prefix2str(&router_id
, buf
, sizeof(buf
));
72 zlog_debug("Zebra rcvd: router id update %s", buf
);
75 router_id_zebra
= router_id
.u
.prefix4
;
77 ospf
= ospf_lookup ();
80 ospf_router_id_update (ospf
);
85 /* Inteface addition message from zebra. */
87 ospf_interface_add (int command
, struct zclient
*zclient
, zebra_size_t length
)
89 struct interface
*ifp
;
91 ifp
= zebra_interface_add_read (zclient
->ibuf
);
93 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
94 zlog_debug ("Zebra: interface add %s index %d flags %llx metric %d mtu %d",
95 ifp
->name
, ifp
->ifindex
, (unsigned long long)ifp
->flags
,
96 ifp
->metric
, ifp
->mtu
);
100 if (!OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp
), type
))
102 SET_IF_PARAM (IF_DEF_PARAMS (ifp
), type
);
103 IF_DEF_PARAMS (ifp
)->type
= ospf_default_iftype(ifp
);
106 ospf_if_update (NULL
, ifp
);
109 ospf_snmp_if_update (ifp
);
110 #endif /* HAVE_SNMP */
116 ospf_interface_delete (int command
, struct zclient
*zclient
,
119 struct interface
*ifp
;
121 struct route_node
*rn
;
124 /* zebra_interface_state_read() updates interface structure in iflist */
125 ifp
= zebra_interface_state_read (s
);
131 zlog_warn ("Zebra: got delete of %s, but interface is still up",
134 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
136 ("Zebra: interface delete %s index %d flags %lld metric %d mtu %d",
137 ifp
->name
, ifp
->ifindex
, ifp
->flags
, ifp
->metric
, ifp
->mtu
);
140 ospf_snmp_if_delete (ifp
);
141 #endif /* HAVE_SNMP */
143 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
145 ospf_if_free ((struct ospf_interface
*) rn
->info
);
147 ifp
->ifindex
= IFINDEX_INTERNAL
;
151 static struct interface
*
152 zebra_interface_if_lookup (struct stream
*s
)
154 char ifname_tmp
[INTERFACE_NAMSIZ
];
156 /* Read interface name. */
157 stream_get (ifname_tmp
, s
, INTERFACE_NAMSIZ
);
159 /* And look it up. */
160 return if_lookup_by_name_len(ifname_tmp
,
161 strnlen(ifname_tmp
, INTERFACE_NAMSIZ
));
165 ospf_interface_state_up (int command
, struct zclient
*zclient
,
168 struct interface
*ifp
;
169 struct ospf_interface
*oi
;
170 struct route_node
*rn
;
172 ifp
= zebra_interface_if_lookup (zclient
->ibuf
);
177 /* Interface is already up. */
178 if (if_is_operative (ifp
))
180 /* Temporarily keep ifp values. */
181 struct interface if_tmp
;
182 memcpy (&if_tmp
, ifp
, sizeof (struct interface
));
184 zebra_interface_if_set_value (zclient
->ibuf
, ifp
);
186 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
187 zlog_debug ("Zebra: Interface[%s] state update.", ifp
->name
);
189 if (if_tmp
.bandwidth
!= ifp
->bandwidth
)
191 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
192 zlog_debug ("Zebra: Interface[%s] bandwidth change %d -> %d.",
193 ifp
->name
, if_tmp
.bandwidth
, ifp
->bandwidth
);
195 ospf_if_recalculate_output_cost (ifp
);
198 if (if_tmp
.mtu
!= ifp
->mtu
)
200 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
201 zlog_debug ("Zebra: Interface[%s] MTU change %u -> %u.",
202 ifp
->name
, if_tmp
.mtu
, ifp
->mtu
);
204 /* Must reset the interface (simulate down/up) when MTU changes. */
210 zebra_interface_if_set_value (zclient
->ibuf
, ifp
);
212 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
213 zlog_debug ("Zebra: Interface[%s] state change to up.", ifp
->name
);
215 for (rn
= route_top (IF_OIFS (ifp
)); rn
; rn
= route_next (rn
))
217 if ((oi
= rn
->info
) == NULL
)
227 ospf_interface_state_down (int command
, struct zclient
*zclient
,
230 struct interface
*ifp
;
231 struct ospf_interface
*oi
;
232 struct route_node
*node
;
234 ifp
= zebra_interface_state_read (zclient
->ibuf
);
239 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
240 zlog_debug ("Zebra: Interface[%s] state change to down.", ifp
->name
);
242 for (node
= route_top (IF_OIFS (ifp
)); node
; node
= route_next (node
))
244 if ((oi
= node
->info
) == NULL
)
253 ospf_interface_address_add (int command
, struct zclient
*zclient
,
258 c
= zebra_interface_address_read (command
, zclient
->ibuf
);
263 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
266 prefix2str(c
->address
, buf
, sizeof(buf
));
267 zlog_debug("Zebra: interface %s address add %s", c
->ifp
->name
, buf
);
270 ospf_if_update (NULL
, c
->ifp
);
273 ospf_snmp_if_update (c
->ifp
);
274 #endif /* HAVE_SNMP */
280 ospf_interface_address_delete (int command
, struct zclient
*zclient
,
284 struct interface
*ifp
;
285 struct ospf_interface
*oi
;
286 struct route_node
*rn
;
289 c
= zebra_interface_address_read (command
, zclient
->ibuf
);
294 if (IS_DEBUG_OSPF (zebra
, ZEBRA_INTERFACE
))
297 prefix2str(c
->address
, buf
, sizeof(buf
));
298 zlog_debug("Zebra: interface %s address delete %s", c
->ifp
->name
, buf
);
303 p
.prefixlen
= IPV4_MAX_PREFIXLEN
;
305 rn
= route_node_lookup (IF_OIFS (ifp
), &p
);
315 /* Call interface hook functions to clean up */
319 ospf_snmp_if_update (c
->ifp
);
320 #endif /* HAVE_SNMP */
328 ospf_zebra_add (struct prefix_ipv4
*p
, struct ospf_route
*or)
335 struct ospf_path
*path
;
336 struct listnode
*node
;
338 if (zclient
->redist
[ZEBRA_ROUTE_OSPF
])
343 /* OSPF pass nexthop and metric */
344 SET_FLAG (message
, ZAPI_MESSAGE_NEXTHOP
);
345 SET_FLAG (message
, ZAPI_MESSAGE_METRIC
);
347 /* Distance value. */
348 distance
= ospf_distance_apply (p
, or);
350 SET_FLAG (message
, ZAPI_MESSAGE_DISTANCE
);
356 /* Put command, type, flags, message. */
357 zclient_create_header (s
, ZEBRA_IPV4_ROUTE_ADD
);
358 stream_putc (s
, ZEBRA_ROUTE_OSPF
);
359 stream_putc (s
, flags
);
360 stream_putc (s
, message
);
362 /* Put prefix information. */
363 psize
= PSIZE (p
->prefixlen
);
364 stream_putc (s
, p
->prefixlen
);
365 stream_write (s
, (u_char
*) & p
->prefix
, psize
);
368 stream_putc (s
, or->paths
->count
);
370 /* Nexthop, ifindex, distance and metric information. */
371 for (ALL_LIST_ELEMENTS_RO (or->paths
, node
, path
))
373 if (path
->nexthop
.s_addr
!= INADDR_ANY
)
375 stream_putc (s
, ZEBRA_NEXTHOP_IPV4
);
376 stream_put_in_addr (s
, &path
->nexthop
);
380 stream_putc (s
, ZEBRA_NEXTHOP_IFINDEX
);
382 stream_putl (s
, path
->ifindex
);
387 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
389 char buf
[2][INET_ADDRSTRLEN
];
390 zlog_debug("Zebra: Route add %s/%d nexthop %s",
391 inet_ntop(AF_INET
, &p
->prefix
,
392 buf
[0], sizeof(buf
[0])),
394 inet_ntop(AF_INET
, &path
->nexthop
,
395 buf
[1], sizeof(buf
[1])));
399 if (CHECK_FLAG (message
, ZAPI_MESSAGE_DISTANCE
))
400 stream_putc (s
, distance
);
401 if (CHECK_FLAG (message
, ZAPI_MESSAGE_METRIC
))
403 if (or->path_type
== OSPF_PATH_TYPE1_EXTERNAL
)
404 stream_putl (s
, or->cost
+ or->u
.ext
.type2_cost
);
405 else if (or->path_type
== OSPF_PATH_TYPE2_EXTERNAL
)
406 stream_putl (s
, or->u
.ext
.type2_cost
);
408 stream_putl (s
, or->cost
);
411 stream_putw_at (s
, 0, stream_get_endp (s
));
413 zclient_send_message(zclient
);
418 ospf_zebra_delete (struct prefix_ipv4
*p
, struct ospf_route
*or)
420 struct zapi_ipv4 api
;
421 struct ospf_path
*path
;
422 struct in_addr
*nexthop
;
423 struct listnode
*node
, *nnode
;
425 if (zclient
->redist
[ZEBRA_ROUTE_OSPF
])
427 api
.type
= ZEBRA_ROUTE_OSPF
;
433 for (ALL_LIST_ELEMENTS (or->paths
, node
, nnode
, path
))
435 if (path
->nexthop
.s_addr
!= INADDR_ANY
)
437 SET_FLAG (api
.message
, ZAPI_MESSAGE_NEXTHOP
);
439 nexthop
= &path
->nexthop
;
440 api
.nexthop
= &nexthop
;
442 else if (if_lookup_by_index(path
->ifindex
))
444 SET_FLAG (api
.message
, ZAPI_MESSAGE_NEXTHOP
);
446 api
.ifindex
= &path
->ifindex
;
448 else if ( IS_DEBUG_OSPF(zebra
,ZEBRA_REDISTRIBUTE
) )
450 zlog_debug("Zebra: no ifp %s %d",
451 inet_ntoa(p
->prefix
),
455 zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE
, zclient
, p
, &api
);
457 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
) && api
.nexthop_num
)
459 char buf
[2][INET_ADDRSTRLEN
];
460 zlog_debug("Zebra: Route delete %s/%d nexthop %s",
461 inet_ntop(AF_INET
, &p
->prefix
, buf
[0], sizeof(buf
[0])),
463 inet_ntop(AF_INET
, *api
.nexthop
,
464 buf
[1], sizeof(buf
[1])));
466 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
) && api
.ifindex_num
)
468 zlog_debug ("Zebra: Route delete %s/%d ifindex %d",
469 inet_ntoa (p
->prefix
),
470 p
->prefixlen
, *api
.ifindex
);
477 ospf_zebra_add_discard (struct prefix_ipv4
*p
)
479 struct zapi_ipv4 api
;
481 if (zclient
->redist
[ZEBRA_ROUTE_OSPF
])
483 api
.type
= ZEBRA_ROUTE_OSPF
;
484 api
.flags
= ZEBRA_FLAG_BLACKHOLE
;
486 SET_FLAG (api
.message
, ZAPI_MESSAGE_NEXTHOP
);
490 zapi_ipv4_route (ZEBRA_IPV4_ROUTE_ADD
, zclient
, p
, &api
);
492 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
493 zlog_debug ("Zebra: Route add discard %s/%d",
494 inet_ntoa (p
->prefix
), p
->prefixlen
);
499 ospf_zebra_delete_discard (struct prefix_ipv4
*p
)
501 struct zapi_ipv4 api
;
503 if (zclient
->redist
[ZEBRA_ROUTE_OSPF
])
505 api
.type
= ZEBRA_ROUTE_OSPF
;
506 api
.flags
= ZEBRA_FLAG_BLACKHOLE
;
508 SET_FLAG (api
.message
, ZAPI_MESSAGE_NEXTHOP
);
512 zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE
, zclient
, p
, &api
);
514 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
515 zlog_debug ("Zebra: Route delete discard %s/%d",
516 inet_ntoa (p
->prefix
), p
->prefixlen
);
522 ospf_is_type_redistributed (int type
)
524 return (DEFAULT_ROUTE_TYPE (type
)) ?
525 zclient
->default_information
: zclient
->redist
[type
];
529 ospf_redistribute_set (struct ospf
*ospf
, int type
, int mtype
, int mvalue
)
533 if (ospf_is_type_redistributed (type
))
535 if (mtype
!= ospf
->dmetric
[type
].type
)
537 ospf
->dmetric
[type
].type
= mtype
;
538 force
= LSA_REFRESH_FORCE
;
540 if (mvalue
!= ospf
->dmetric
[type
].value
)
542 ospf
->dmetric
[type
].value
= mvalue
;
543 force
= LSA_REFRESH_FORCE
;
546 ospf_external_lsa_refresh_type (ospf
, type
, force
);
548 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
549 zlog_debug ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
550 ospf_redist_string(type
),
551 metric_type (ospf
, type
), metric_value (ospf
, type
));
556 ospf
->dmetric
[type
].type
= mtype
;
557 ospf
->dmetric
[type
].value
= mvalue
;
559 zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD
, zclient
, type
);
561 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
562 zlog_debug ("Redistribute[%s]: Start Type[%d], Metric[%d]",
563 ospf_redist_string(type
),
564 metric_type (ospf
, type
), metric_value (ospf
, type
));
566 ospf_asbr_status_update (ospf
, ++ospf
->redistribute
);
572 ospf_redistribute_unset (struct ospf
*ospf
, int type
)
574 if (type
== zclient
->redist_default
)
577 if (!ospf_is_type_redistributed (type
))
580 zclient_redistribute (ZEBRA_REDISTRIBUTE_DELETE
, zclient
, type
);
582 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
583 zlog_debug ("Redistribute[%s]: Stop",
584 ospf_redist_string(type
));
586 ospf
->dmetric
[type
].type
= -1;
587 ospf
->dmetric
[type
].value
= -1;
589 /* Remove the routes from OSPF table. */
590 ospf_redistribute_withdraw (ospf
, type
);
592 ospf_asbr_status_update (ospf
, --ospf
->redistribute
);
598 ospf_redistribute_default_set (struct ospf
*ospf
, int originate
,
599 int mtype
, int mvalue
)
601 ospf
->default_originate
= originate
;
602 ospf
->dmetric
[DEFAULT_ROUTE
].type
= mtype
;
603 ospf
->dmetric
[DEFAULT_ROUTE
].value
= mvalue
;
605 if (ospf_is_type_redistributed (DEFAULT_ROUTE
))
607 /* if ospf->default_originate changes value, is calling
608 ospf_external_lsa_refresh_default sufficient to implement
610 ospf_external_lsa_refresh_default (ospf
);
612 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
613 zlog_debug ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
614 ospf_redist_string(DEFAULT_ROUTE
),
615 metric_type (ospf
, DEFAULT_ROUTE
),
616 metric_value (ospf
, DEFAULT_ROUTE
));
620 zclient_redistribute_default (ZEBRA_REDISTRIBUTE_DEFAULT_ADD
, zclient
);
622 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
623 zlog_debug ("Redistribute[DEFAULT]: Start Type[%d], Metric[%d]",
624 metric_type (ospf
, DEFAULT_ROUTE
),
625 metric_value (ospf
, DEFAULT_ROUTE
));
627 if (ospf
->router_id
.s_addr
== 0)
628 ospf
->external_origin
|= (1 << DEFAULT_ROUTE
);
630 thread_add_timer (master
, ospf_default_originate_timer
, ospf
, 1);
632 ospf_asbr_status_update (ospf
, ++ospf
->redistribute
);
638 ospf_redistribute_default_unset (struct ospf
*ospf
)
640 if (!ospf_is_type_redistributed (DEFAULT_ROUTE
))
643 ospf
->default_originate
= DEFAULT_ORIGINATE_NONE
;
644 ospf
->dmetric
[DEFAULT_ROUTE
].type
= -1;
645 ospf
->dmetric
[DEFAULT_ROUTE
].value
= -1;
647 zclient_redistribute_default (ZEBRA_REDISTRIBUTE_DEFAULT_DELETE
, zclient
);
649 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
650 zlog_debug ("Redistribute[DEFAULT]: Stop");
652 ospf_asbr_status_update (ospf
, --ospf
->redistribute
);
658 ospf_external_lsa_originate_check (struct ospf
*ospf
,
659 struct external_info
*ei
)
661 /* If prefix is multicast, then do not originate LSA. */
662 if (IN_MULTICAST (htonl (ei
->p
.prefix
.s_addr
)))
664 zlog_info ("LSA[Type5:%s]: Not originate AS-external-LSA, "
665 "Prefix belongs multicast", inet_ntoa (ei
->p
.prefix
));
669 /* Take care of default-originate. */
670 if (is_prefix_default (&ei
->p
))
671 if (ospf
->default_originate
== DEFAULT_ORIGINATE_NONE
)
673 zlog_info ("LSA[Type5:0.0.0.0]: Not originate AS-exntenal-LSA "
681 /* If connected prefix is OSPF enable interface, then do not announce. */
683 ospf_distribute_check_connected (struct ospf
*ospf
, struct external_info
*ei
)
685 struct listnode
*node
;
686 struct ospf_interface
*oi
;
689 for (ALL_LIST_ELEMENTS_RO (ospf
->oiflist
, node
, oi
))
690 if (prefix_match (oi
->address
, (struct prefix
*) &ei
->p
))
695 /* return 1 if external LSA must be originated, 0 otherwise */
697 ospf_redistribute_check (struct ospf
*ospf
,
698 struct external_info
*ei
, int *changed
)
700 struct route_map_set_values save_values
;
701 struct prefix_ipv4
*p
= &ei
->p
;
702 u_char type
= is_prefix_default (&ei
->p
) ? DEFAULT_ROUTE
: ei
->type
;
707 if (!ospf_external_lsa_originate_check (ospf
, ei
))
710 /* Take care connected route. */
711 if (type
== ZEBRA_ROUTE_CONNECT
&&
712 !ospf_distribute_check_connected (ospf
, ei
))
715 if (!DEFAULT_ROUTE_TYPE (type
) && DISTRIBUTE_NAME (ospf
, type
))
716 /* distirbute-list exists, but access-list may not? */
717 if (DISTRIBUTE_LIST (ospf
, type
))
718 if (access_list_apply (DISTRIBUTE_LIST (ospf
, type
), p
) == FILTER_DENY
)
720 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
721 zlog_debug ("Redistribute[%s]: %s/%d filtered by ditribute-list.",
722 ospf_redist_string(type
),
723 inet_ntoa (p
->prefix
), p
->prefixlen
);
727 save_values
= ei
->route_map_set
;
728 ospf_reset_route_map_set_values (&ei
->route_map_set
);
730 /* apply route-map if needed */
731 if (ROUTEMAP_NAME (ospf
, type
))
735 ret
= route_map_apply (ROUTEMAP (ospf
, type
), (struct prefix
*) p
,
738 if (ret
== RMAP_DENYMATCH
)
740 ei
->route_map_set
= save_values
;
741 if (IS_DEBUG_OSPF (zebra
, ZEBRA_REDISTRIBUTE
))
742 zlog_debug ("Redistribute[%s]: %s/%d filtered by route-map.",
743 ospf_redist_string(type
),
744 inet_ntoa (p
->prefix
), p
->prefixlen
);
748 /* check if 'route-map set' changed something */
750 *changed
= !ospf_route_map_set_compare (&ei
->route_map_set
,
757 /* OSPF route-map set for redistribution */
759 ospf_routemap_set (struct ospf
*ospf
, int type
, const char *name
)
761 if (ROUTEMAP_NAME (ospf
, type
))
762 free (ROUTEMAP_NAME (ospf
, type
));
764 ROUTEMAP_NAME (ospf
, type
) = strdup (name
);
765 ROUTEMAP (ospf
, type
) = route_map_lookup_by_name (name
);
769 ospf_routemap_unset (struct ospf
*ospf
, int type
)
771 if (ROUTEMAP_NAME (ospf
, type
))
772 free (ROUTEMAP_NAME (ospf
, type
));
774 ROUTEMAP_NAME (ospf
, type
) = NULL
;
775 ROUTEMAP (ospf
, type
) = NULL
;
778 /* Zebra route add and delete treatment. */
780 ospf_zebra_read_ipv4 (int command
, struct zclient
*zclient
,
784 struct zapi_ipv4 api
;
785 unsigned long ifindex
;
786 struct in_addr nexthop
;
787 struct prefix_ipv4 p
;
788 struct external_info
*ei
;
795 /* Type, flags, message. */
796 api
.type
= stream_getc (s
);
797 api
.flags
= stream_getc (s
);
798 api
.message
= stream_getc (s
);
801 memset (&p
, 0, sizeof (struct prefix_ipv4
));
803 p
.prefixlen
= stream_getc (s
);
804 stream_get (&p
.prefix
, s
, PSIZE (p
.prefixlen
));
806 if (IPV4_NET127(ntohl(p
.prefix
.s_addr
)))
809 /* Nexthop, ifindex, distance, metric. */
810 if (CHECK_FLAG (api
.message
, ZAPI_MESSAGE_NEXTHOP
))
812 api
.nexthop_num
= stream_getc (s
);
813 nexthop
.s_addr
= stream_get_ipv4 (s
);
815 if (CHECK_FLAG (api
.message
, ZAPI_MESSAGE_IFINDEX
))
817 api
.ifindex_num
= stream_getc (s
);
818 /* XXX assert(api.ifindex_num == 1); */
819 ifindex
= stream_getl (s
);
821 if (CHECK_FLAG (api
.message
, ZAPI_MESSAGE_DISTANCE
))
822 api
.distance
= stream_getc (s
);
823 if (CHECK_FLAG (api
.message
, ZAPI_MESSAGE_METRIC
))
824 api
.metric
= stream_getl (s
);
826 ospf
= ospf_lookup ();
830 if (command
== ZEBRA_IPV4_ROUTE_ADD
)
832 /* XXX|HACK|TODO|FIXME:
833 * Maybe we should ignore reject/blackhole routes? Testing shows that
834 * there is no problems though and this is only way to "summarize"
835 * routes in ASBR at the moment. Maybe we need just a better generalised
836 * solution for these types?
838 * if ( CHECK_FLAG (api.flags, ZEBRA_FLAG_BLACKHOLE)
839 * || CHECK_FLAG (api.flags, ZEBRA_FLAG_REJECT))
843 ei
= ospf_external_info_add (api
.type
, p
, ifindex
, nexthop
);
845 if (ospf
->router_id
.s_addr
== 0)
846 /* Set flags to generate AS-external-LSA originate event
847 for each redistributed protocols later. */
848 ospf
->external_origin
|= (1 << api
.type
);
853 if (is_prefix_default (&p
))
854 ospf_external_lsa_refresh_default (ospf
);
857 struct ospf_lsa
*current
;
859 current
= ospf_external_info_find_lsa (ospf
, &ei
->p
);
861 ospf_external_lsa_originate (ospf
, ei
);
862 else if (IS_LSA_MAXAGE (current
))
863 ospf_external_lsa_refresh (ospf
, current
,
864 ei
, LSA_REFRESH_FORCE
);
866 zlog_warn ("ospf_zebra_read_ipv4() : %s already exists",
867 inet_ntoa (p
.prefix
));
872 else /* if (command == ZEBRA_IPV4_ROUTE_DELETE) */
874 ospf_external_info_delete (api
.type
, p
);
875 if (is_prefix_default (&p
))
876 ospf_external_lsa_refresh_default (ospf
);
878 ospf_external_lsa_flush (ospf
, api
.type
, &p
, ifindex
/*, nexthop */);
886 ospf_distribute_list_out_set (struct ospf
*ospf
, int type
, const char *name
)
888 /* Lookup access-list for distribute-list. */
889 DISTRIBUTE_LIST (ospf
, type
) = access_list_lookup (AFI_IP
, name
);
891 /* Clear previous distribute-name. */
892 if (DISTRIBUTE_NAME (ospf
, type
))
893 free (DISTRIBUTE_NAME (ospf
, type
));
895 /* Set distribute-name. */
896 DISTRIBUTE_NAME (ospf
, type
) = strdup (name
);
898 /* If access-list have been set, schedule update timer. */
899 if (DISTRIBUTE_LIST (ospf
, type
))
900 ospf_distribute_list_update (ospf
, type
);
906 ospf_distribute_list_out_unset (struct ospf
*ospf
, int type
, const char *name
)
908 /* Schedule update timer. */
909 if (DISTRIBUTE_LIST (ospf
, type
))
910 ospf_distribute_list_update (ospf
, type
);
912 /* Unset distribute-list. */
913 DISTRIBUTE_LIST (ospf
, type
) = NULL
;
915 /* Clear distribute-name. */
916 if (DISTRIBUTE_NAME (ospf
, type
))
917 free (DISTRIBUTE_NAME (ospf
, type
));
919 DISTRIBUTE_NAME (ospf
, type
) = NULL
;
924 /* distribute-list update timer. */
926 ospf_distribute_list_update_timer (struct thread
*thread
)
928 struct route_node
*rn
;
929 struct external_info
*ei
;
930 struct route_table
*rt
;
931 struct ospf_lsa
*lsa
;
935 type
= (intptr_t)THREAD_ARG (thread
);
936 assert (type
<= ZEBRA_ROUTE_MAX
);
938 rt
= EXTERNAL_INFO (type
);
940 ospf
= ospf_lookup ();
944 ospf
->t_distribute_update
= NULL
;
946 zlog_info ("Zebra[Redistribute]: distribute-list update timer fired!");
948 /* foreach all external info. */
950 for (rn
= route_top (rt
); rn
; rn
= route_next (rn
))
951 if ((ei
= rn
->info
) != NULL
)
953 if (is_prefix_default (&ei
->p
))
954 ospf_external_lsa_refresh_default (ospf
);
955 else if ((lsa
= ospf_external_info_find_lsa (ospf
, &ei
->p
)))
956 ospf_external_lsa_refresh (ospf
, lsa
, ei
, LSA_REFRESH_IF_CHANGED
);
958 ospf_external_lsa_originate (ospf
, ei
);
963 #define OSPF_DISTRIBUTE_UPDATE_DELAY 5
965 /* Update distribute-list and set timer to apply access-list. */
967 ospf_distribute_list_update (struct ospf
*ospf
, int type
)
969 struct route_table
*rt
;
971 /* External info does not exist. */
972 if (!(rt
= EXTERNAL_INFO (type
)))
975 /* If exists previously invoked thread, then cancel it. */
976 if (ospf
->t_distribute_update
)
977 OSPF_TIMER_OFF (ospf
->t_distribute_update
);
980 ospf
->t_distribute_update
=
981 thread_add_timer (master
, ospf_distribute_list_update_timer
,
982 (void *) type
, OSPF_DISTRIBUTE_UPDATE_DELAY
);
985 /* If access-list is updated, apply some check. */
987 ospf_filter_update (struct access_list
*access
)
992 struct ospf_area
*area
;
993 struct listnode
*node
;
995 /* If OSPF instatnce does not exist, return right now. */
996 ospf
= ospf_lookup ();
1000 /* Update distribute-list, and apply filter. */
1001 for (type
= 0; type
<= ZEBRA_ROUTE_MAX
; type
++)
1003 if (ROUTEMAP (ospf
, type
) != NULL
)
1005 /* if route-map is not NULL it may be using this access list */
1006 ospf_distribute_list_update (ospf
, type
);
1010 /* There is place for route-map for default-information (ZEBRA_ROUTE_MAX),
1011 * but no distribute list. */
1012 if (type
== ZEBRA_ROUTE_MAX
)
1015 if (DISTRIBUTE_NAME (ospf
, type
))
1017 /* Keep old access-list for distribute-list. */
1018 struct access_list
*old
= DISTRIBUTE_LIST (ospf
, type
);
1020 /* Update access-list for distribute-list. */
1021 DISTRIBUTE_LIST (ospf
, type
) =
1022 access_list_lookup (AFI_IP
, DISTRIBUTE_NAME (ospf
, type
));
1024 /* No update for this distribute type. */
1025 if (old
== NULL
&& DISTRIBUTE_LIST (ospf
, type
) == NULL
)
1028 /* Schedule distribute-list update timer. */
1029 if (DISTRIBUTE_LIST (ospf
, type
) == NULL
||
1030 strcmp (DISTRIBUTE_NAME (ospf
, type
), access
->name
) == 0)
1031 ospf_distribute_list_update (ospf
, type
);
1035 /* Update Area access-list. */
1036 for (ALL_LIST_ELEMENTS_RO (ospf
->areas
, node
, area
))
1038 if (EXPORT_NAME (area
))
1040 EXPORT_LIST (area
) = NULL
;
1044 if (IMPORT_NAME (area
))
1046 IMPORT_LIST (area
) = NULL
;
1051 /* Schedule ABR tasks -- this will be changed -- takada. */
1052 if (IS_OSPF_ABR (ospf
) && abr_inv
)
1053 ospf_schedule_abr_task (ospf
);
1056 /* If prefix-list is updated, do some updates. */
1058 ospf_prefix_list_update (struct prefix_list
*plist
)
1063 struct ospf_area
*area
;
1064 struct listnode
*node
;
1066 /* If OSPF instatnce does not exist, return right now. */
1067 ospf
= ospf_lookup ();
1071 /* Update all route-maps which are used as redistribution filters.
1072 * They might use prefix-list.
1074 for (type
= 0; type
<= ZEBRA_ROUTE_MAX
; type
++)
1076 if (ROUTEMAP (ospf
, type
) != NULL
)
1078 /* If route-map is not NULL it may be using this prefix list */
1079 ospf_distribute_list_update (ospf
, type
);
1084 /* Update area filter-lists. */
1085 for (ALL_LIST_ELEMENTS_RO (ospf
->areas
, node
, area
))
1087 /* Update filter-list in. */
1088 if (PREFIX_NAME_IN (area
))
1089 if (strcmp (PREFIX_NAME_IN (area
), plist
->name
) == 0)
1091 PREFIX_LIST_IN (area
) =
1092 prefix_list_lookup (AFI_IP
, PREFIX_NAME_IN (area
));
1096 /* Update filter-list out. */
1097 if (PREFIX_NAME_OUT (area
))
1098 if (strcmp (PREFIX_NAME_OUT (area
), plist
->name
) == 0)
1100 PREFIX_LIST_IN (area
) =
1101 prefix_list_lookup (AFI_IP
, PREFIX_NAME_OUT (area
));
1106 /* Schedule ABR task. */
1107 if (IS_OSPF_ABR (ospf
) && abr_inv
)
1108 ospf_schedule_abr_task (ospf
);
1111 static struct ospf_distance
*
1112 ospf_distance_new (void)
1114 return XCALLOC (MTYPE_OSPF_DISTANCE
, sizeof (struct ospf_distance
));
1118 ospf_distance_free (struct ospf_distance
*odistance
)
1120 XFREE (MTYPE_OSPF_DISTANCE
, odistance
);
1124 ospf_distance_set (struct vty
*vty
, struct ospf
*ospf
,
1125 const char *distance_str
,
1127 const char *access_list_str
)
1130 struct prefix_ipv4 p
;
1132 struct route_node
*rn
;
1133 struct ospf_distance
*odistance
;
1135 ret
= str2prefix_ipv4 (ip_str
, &p
);
1138 vty_out (vty
, "Malformed prefix%s", VTY_NEWLINE
);
1142 distance
= atoi (distance_str
);
1144 /* Get OSPF distance node. */
1145 rn
= route_node_get (ospf
->distance_table
, (struct prefix
*) &p
);
1148 odistance
= rn
->info
;
1149 route_unlock_node (rn
);
1153 odistance
= ospf_distance_new ();
1154 rn
->info
= odistance
;
1157 /* Set distance value. */
1158 odistance
->distance
= distance
;
1160 /* Reset access-list configuration. */
1161 if (odistance
->access_list
)
1163 free (odistance
->access_list
);
1164 odistance
->access_list
= NULL
;
1166 if (access_list_str
)
1167 odistance
->access_list
= strdup (access_list_str
);
1173 ospf_distance_unset (struct vty
*vty
, struct ospf
*ospf
,
1174 const char *distance_str
,
1175 const char *ip_str
, char
1176 const *access_list_str
)
1179 struct prefix_ipv4 p
;
1181 struct route_node
*rn
;
1182 struct ospf_distance
*odistance
;
1184 ret
= str2prefix_ipv4 (ip_str
, &p
);
1187 vty_out (vty
, "Malformed prefix%s", VTY_NEWLINE
);
1191 distance
= atoi (distance_str
);
1193 rn
= route_node_lookup (ospf
->distance_table
, (struct prefix
*) &p
);
1196 vty_out (vty
, "Can't find specified prefix%s", VTY_NEWLINE
);
1200 odistance
= rn
->info
;
1202 if (odistance
->access_list
)
1203 free (odistance
->access_list
);
1204 ospf_distance_free (odistance
);
1207 route_unlock_node (rn
);
1208 route_unlock_node (rn
);
1214 ospf_distance_reset (struct ospf
*ospf
)
1216 struct route_node
*rn
;
1217 struct ospf_distance
*odistance
;
1219 for (rn
= route_top (ospf
->distance_table
); rn
; rn
= route_next (rn
))
1220 if ((odistance
= rn
->info
) != NULL
)
1222 if (odistance
->access_list
)
1223 free (odistance
->access_list
);
1224 ospf_distance_free (odistance
);
1226 route_unlock_node (rn
);
1231 ospf_distance_apply (struct prefix_ipv4
*p
, struct ospf_route
*or)
1235 ospf
= ospf_lookup ();
1239 if (ospf
->distance_intra
)
1240 if (or->path_type
== OSPF_PATH_INTRA_AREA
)
1241 return ospf
->distance_intra
;
1243 if (ospf
->distance_inter
)
1244 if (or->path_type
== OSPF_PATH_INTER_AREA
)
1245 return ospf
->distance_inter
;
1247 if (ospf
->distance_external
)
1248 if (or->path_type
== OSPF_PATH_TYPE1_EXTERNAL
1249 || or->path_type
== OSPF_PATH_TYPE2_EXTERNAL
)
1250 return ospf
->distance_external
;
1252 if (ospf
->distance_all
)
1253 return ospf
->distance_all
;
1261 /* Allocate zebra structure. */
1262 zclient
= zclient_new ();
1263 zclient_init (zclient
, ZEBRA_ROUTE_OSPF
);
1264 zclient
->router_id_update
= ospf_router_id_update_zebra
;
1265 zclient
->interface_add
= ospf_interface_add
;
1266 zclient
->interface_delete
= ospf_interface_delete
;
1267 zclient
->interface_up
= ospf_interface_state_up
;
1268 zclient
->interface_down
= ospf_interface_state_down
;
1269 zclient
->interface_address_add
= ospf_interface_address_add
;
1270 zclient
->interface_address_delete
= ospf_interface_address_delete
;
1271 zclient
->ipv4_route_add
= ospf_zebra_read_ipv4
;
1272 zclient
->ipv4_route_delete
= ospf_zebra_read_ipv4
;
1274 access_list_add_hook (ospf_filter_update
);
1275 access_list_delete_hook (ospf_filter_update
);
1276 prefix_list_add_hook (ospf_prefix_list_update
);
1277 prefix_list_delete_hook (ospf_prefix_list_update
);