2 * OSPF AS Boundary Router functions.
3 * Copyright (C) 1999, 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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34 #include "ospfd/ospfd.h"
35 #include "ospfd/ospf_interface.h"
36 #include "ospfd/ospf_asbr.h"
37 #include "ospfd/ospf_lsa.h"
38 #include "ospfd/ospf_lsdb.h"
39 #include "ospfd/ospf_neighbor.h"
40 #include "ospfd/ospf_spf.h"
41 #include "ospfd/ospf_flood.h"
42 #include "ospfd/ospf_route.h"
43 #include "ospfd/ospf_zebra.h"
44 #include "ospfd/ospf_dump.h"
47 /* Remove external route. */
48 void ospf_external_route_remove(struct ospf
*ospf
, struct prefix_ipv4
*p
)
50 struct route_node
*rn
;
51 struct ospf_route
* or ;
53 rn
= route_node_lookup(ospf
->old_external_route
, (struct prefix
*)p
);
55 if ((or = rn
->info
)) {
56 zlog_info("Route[%s/%d]: external path deleted",
57 inet_ntoa(p
->prefix
), p
->prefixlen
);
59 /* Remove route from zebra. */
60 if (or->type
== OSPF_DESTINATION_NETWORK
)
62 ospf
, (struct prefix_ipv4
*)&rn
->p
, or);
67 route_unlock_node(rn
);
68 route_unlock_node(rn
);
72 zlog_info("Route[%s/%d]: no such external path", inet_ntoa(p
->prefix
),
76 /* Add an External info for AS-external-LSA. */
77 struct external_info
*ospf_external_info_new(uint8_t type
,
78 unsigned short instance
)
80 struct external_info
*new;
82 new = (struct external_info
*)XCALLOC(MTYPE_OSPF_EXTERNAL_INFO
,
83 sizeof(struct external_info
));
85 new->instance
= instance
;
87 ospf_reset_route_map_set_values(&new->route_map_set
);
91 static void ospf_external_info_free(struct external_info
*ei
)
93 XFREE(MTYPE_OSPF_EXTERNAL_INFO
, ei
);
96 void ospf_reset_route_map_set_values(struct route_map_set_values
*values
)
99 values
->metric_type
= -1;
102 int ospf_route_map_set_compare(struct route_map_set_values
*values1
,
103 struct route_map_set_values
*values2
)
105 return values1
->metric
== values2
->metric
106 && values1
->metric_type
== values2
->metric_type
;
109 /* Add an External info for AS-external-LSA. */
110 struct external_info
*
111 ospf_external_info_add(struct ospf
*ospf
, uint8_t type
, unsigned short instance
,
112 struct prefix_ipv4 p
, ifindex_t ifindex
,
113 struct in_addr nexthop
, route_tag_t tag
)
115 struct external_info
*new;
116 struct route_node
*rn
;
117 struct ospf_external
*ext
;
118 char inetbuf
[INET6_BUFSIZ
];
120 ext
= ospf_external_lookup(ospf
, type
, instance
);
122 ext
= ospf_external_add(ospf
, type
, instance
);
124 rn
= route_node_get(EXTERNAL_INFO(ext
), (struct prefix
*)&p
);
125 /* If old info exists, -- discard new one or overwrite with new one? */
129 if ((new->ifindex
== ifindex
)
130 && (new->nexthop
.s_addr
== nexthop
.s_addr
)
131 && (new->tag
== tag
)) {
132 route_unlock_node(rn
);
133 return NULL
; /* NULL => no LSA to refresh */
136 inet_ntop(AF_INET
, (void *)&nexthop
.s_addr
, inetbuf
,
138 if (IS_DEBUG_OSPF(lsa
, LSA_GENERATE
))
140 "Redistribute[%s][%d][%u]: %s/%d discarding old info with NH %s.",
141 ospf_redist_string(type
), instance
,
142 ospf
->vrf_id
, inet_ntoa(p
.prefix
),
143 p
.prefixlen
, inetbuf
);
144 XFREE(MTYPE_OSPF_EXTERNAL_INFO
, rn
->info
);
148 /* Create new External info instance. */
149 new = ospf_external_info_new(type
, instance
);
151 new->ifindex
= ifindex
;
152 new->nexthop
= nexthop
;
155 /* we don't unlock rn from the get() because we're attaching the info */
159 if (IS_DEBUG_OSPF(lsa
, LSA_GENERATE
)) {
160 inet_ntop(AF_INET
, (void *)&nexthop
.s_addr
, inetbuf
,
163 "Redistribute[%s][%u]: %s/%d external info created, with NH %s",
164 ospf_redist_string(type
), ospf
->vrf_id
,
165 inet_ntoa(p
.prefix
), p
.prefixlen
, inetbuf
);
170 void ospf_external_info_delete(struct ospf
*ospf
, uint8_t type
,
171 unsigned short instance
, struct prefix_ipv4 p
)
173 struct route_node
*rn
;
174 struct ospf_external
*ext
;
176 ext
= ospf_external_lookup(ospf
, type
, instance
);
180 rn
= route_node_lookup(EXTERNAL_INFO(ext
), (struct prefix
*)&p
);
182 ospf_external_info_free(rn
->info
);
184 route_unlock_node(rn
);
185 route_unlock_node(rn
);
189 struct external_info
*ospf_external_info_lookup(struct ospf
*ospf
, uint8_t type
,
190 unsigned short instance
,
191 struct prefix_ipv4
*p
)
193 struct route_node
*rn
;
194 struct ospf_external
*ext
;
196 ext
= ospf_external_lookup(ospf
, type
, instance
);
200 rn
= route_node_lookup(EXTERNAL_INFO(ext
), (struct prefix
*)p
);
202 route_unlock_node(rn
);
210 struct ospf_lsa
*ospf_external_info_find_lsa(struct ospf
*ospf
,
211 struct prefix_ipv4
*p
)
213 struct ospf_lsa
*lsa
;
214 struct as_external_lsa
*al
;
215 struct in_addr mask
, id
;
217 lsa
= ospf_lsdb_lookup_by_id(ospf
->lsdb
, OSPF_AS_EXTERNAL_LSA
,
218 p
->prefix
, ospf
->router_id
);
223 al
= (struct as_external_lsa
*)lsa
->data
;
225 masklen2ip(p
->prefixlen
, &mask
);
227 if (mask
.s_addr
!= al
->mask
.s_addr
) {
228 id
.s_addr
= p
->prefix
.s_addr
| (~mask
.s_addr
);
229 lsa
= ospf_lsdb_lookup_by_id(ospf
->lsdb
, OSPF_AS_EXTERNAL_LSA
,
230 id
, ospf
->router_id
);
239 /* Update ASBR status. */
240 void ospf_asbr_status_update(struct ospf
*ospf
, uint8_t status
)
242 zlog_info("ASBR[Status:%d]: Update", status
);
247 if (IS_OSPF_ASBR(ospf
)) {
248 zlog_info("ASBR[Status:%d]: Already ASBR", status
);
251 SET_FLAG(ospf
->flags
, OSPF_FLAG_ASBR
);
253 /* Already non ASBR. */
254 if (!IS_OSPF_ASBR(ospf
)) {
255 zlog_info("ASBR[Status:%d]: Already non ASBR", status
);
258 UNSET_FLAG(ospf
->flags
, OSPF_FLAG_ASBR
);
261 /* Transition from/to status ASBR, schedule timer. */
262 ospf_spf_calculate_schedule(ospf
, SPF_FLAG_ASBR_STATUS_CHANGE
);
263 ospf_router_lsa_update(ospf
);
266 void ospf_redistribute_withdraw(struct ospf
*ospf
, uint8_t type
,
267 unsigned short instance
)
269 struct route_node
*rn
;
270 struct external_info
*ei
;
271 struct ospf_external
*ext
;
273 ext
= ospf_external_lookup(ospf
, type
, instance
);
277 /* Delete external info for specified type. */
278 if (EXTERNAL_INFO(ext
))
279 for (rn
= route_top(EXTERNAL_INFO(ext
)); rn
;
282 if (ospf_external_info_find_lsa(ospf
, &ei
->p
)) {
283 if (is_prefix_default(&ei
->p
)
284 && ospf
->default_originate
285 != DEFAULT_ORIGINATE_NONE
)
287 ospf_external_lsa_flush(
289 ei
->ifindex
/*, ei->nexthop */);
291 ospf_external_info_free(ei
);
292 route_unlock_node(rn
);