blob: ea90c845f4e385016dfe90ca6a8991593b3d73df [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Zebra connect library for OSPFd
3 * Copyright (C) 1997, 98, 99, 2000 Kunihiro Ishiguro, Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
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
10 * later version.
11 *
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.
16 *
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.
21 */
22
23#include <zebra.h>
24
25#include "thread.h"
26#include "command.h"
27#include "network.h"
28#include "prefix.h"
29#include "routemap.h"
30#include "table.h"
31#include "stream.h"
32#include "memory.h"
33#include "zclient.h"
34#include "filter.h"
35#include "log.h"
36
37#include "ospfd/ospfd.h"
38#include "ospfd/ospf_interface.h"
39#include "ospfd/ospf_ism.h"
40#include "ospfd/ospf_asbr.h"
41#include "ospfd/ospf_asbr.h"
42#include "ospfd/ospf_abr.h"
43#include "ospfd/ospf_lsa.h"
44#include "ospfd/ospf_dump.h"
45#include "ospfd/ospf_route.h"
46#include "ospfd/ospf_zebra.h"
47#ifdef HAVE_SNMP
48#include "ospfd/ospf_snmp.h"
49#endif /* HAVE_SNMP */
50
51/* Zebra structure to hold current status. */
52struct zclient *zclient = NULL;
53
54/* For registering threads. */
55extern struct thread_master *master;
56
57/* Inteface addition message from zebra. */
58int
59ospf_interface_add (int command, struct zclient *zclient, zebra_size_t length)
60{
61 struct interface *ifp;
paul020709f2003-04-04 02:44:16 +000062 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +000063
64 ifp = zebra_interface_add_read (zclient->ibuf);
65
66 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
67 zlog_info ("Zebra: interface add %s index %d flags %ld metric %d mtu %d",
paulcf795c52003-06-19 02:13:25 +000068 ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu);
paul718e3742002-12-13 20:15:29 +000069
paulcf795c52003-06-19 02:13:25 +000070 assert (ifp->info);
paulf2c80652002-12-13 21:44:27 +000071
paul718e3742002-12-13 20:15:29 +000072 if (!OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp), type))
73 {
74 SET_IF_PARAM (IF_DEF_PARAMS (ifp), type);
75 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_BROADCAST;
paulcf795c52003-06-19 02:13:25 +000076
paul718e3742002-12-13 20:15:29 +000077 if (if_is_broadcast (ifp))
paulcf795c52003-06-19 02:13:25 +000078 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_BROADCAST;
paul718e3742002-12-13 20:15:29 +000079 else if (if_is_pointopoint (ifp))
paulcf795c52003-06-19 02:13:25 +000080 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_POINTOPOINT;
paul718e3742002-12-13 20:15:29 +000081 else if (if_is_loopback (ifp))
paulcf795c52003-06-19 02:13:25 +000082 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_LOOPBACK;
paul718e3742002-12-13 20:15:29 +000083 }
84
paul020709f2003-04-04 02:44:16 +000085 ospf = ospf_lookup ();
86 if (ospf != NULL)
87 ospf_if_update (ospf);
paul718e3742002-12-13 20:15:29 +000088
89#ifdef HAVE_SNMP
90 ospf_snmp_if_update (ifp);
91#endif /* HAVE_SNMP */
92
93 return 0;
94}
95
96int
97ospf_interface_delete (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +000098 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +000099{
100 struct interface *ifp;
101 struct stream *s;
102 struct route_node *rn;
103
paulcf795c52003-06-19 02:13:25 +0000104 s = zclient->ibuf;
paul718e3742002-12-13 20:15:29 +0000105 /* zebra_interface_state_read() updates interface structure in iflist */
106 ifp = zebra_interface_state_read (s);
107
108 if (ifp == NULL)
109 return 0;
110
111 if (if_is_up (ifp))
112 zlog_warn ("Zebra: got delete of %s, but interface is still up",
paulcf795c52003-06-19 02:13:25 +0000113 ifp->name);
114
paul718e3742002-12-13 20:15:29 +0000115 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
paulcf795c52003-06-19 02:13:25 +0000116 zlog_info
117 ("Zebra: interface delete %s index %d flags %ld metric %d mtu %d",
118 ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu);
paul718e3742002-12-13 20:15:29 +0000119
120#ifdef HAVE_SNMP
121 ospf_snmp_if_delete (ifp);
122#endif /* HAVE_SNMP */
123
124 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
125 if (rn->info)
126 ospf_if_free ((struct ospf_interface *) rn->info);
127
128 for (rn = route_top (IF_OIFS_PARAMS (ifp)); rn; rn = route_next (rn))
129 if (rn->info)
130 ospf_del_if_params (rn->info);
paulcf795c52003-06-19 02:13:25 +0000131
paul718e3742002-12-13 20:15:29 +0000132 if_delete (ifp);
133
134 return 0;
135}
136
137struct interface *
138zebra_interface_if_lookup (struct stream *s)
139{
140 struct interface *ifp;
141 u_char ifname_tmp[INTERFACE_NAMSIZ];
142
143 /* Read interface name. */
144 stream_get (ifname_tmp, s, INTERFACE_NAMSIZ);
145
146 /* Lookup this by interface index. */
147 ifp = if_lookup_by_name (ifname_tmp);
148
149 /* If such interface does not exist, indicate an error */
150 if (!ifp)
151 return NULL;
152
153 return ifp;
154}
155
156void
157zebra_interface_if_set_value (struct stream *s, struct interface *ifp)
158{
159 /* Read interface's index. */
160 ifp->ifindex = stream_getl (s);
161
162 /* Read interface's value. */
paul2e3b2e42002-12-13 21:03:13 +0000163 ifp->status = stream_getc (s);
paul718e3742002-12-13 20:15:29 +0000164 ifp->flags = stream_getl (s);
165 ifp->metric = stream_getl (s);
166 ifp->mtu = stream_getl (s);
167 ifp->bandwidth = stream_getl (s);
168}
169
170int
171ospf_interface_state_up (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000172 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000173{
174 struct interface *ifp;
175 struct interface if_tmp;
176 struct ospf_interface *oi;
177 struct route_node *rn;
paulcf795c52003-06-19 02:13:25 +0000178
paul718e3742002-12-13 20:15:29 +0000179 ifp = zebra_interface_if_lookup (zclient->ibuf);
180
181 if (ifp == NULL)
182 return 0;
183
184 /* Interface is already up. */
paul2e3b2e42002-12-13 21:03:13 +0000185 if (if_is_operative (ifp))
paul718e3742002-12-13 20:15:29 +0000186 {
187 /* Temporarily keep ifp values. */
188 memcpy (&if_tmp, ifp, sizeof (struct interface));
189
190 zebra_interface_if_set_value (zclient->ibuf, ifp);
191
192 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
paulcf795c52003-06-19 02:13:25 +0000193 zlog_info ("Zebra: Interface[%s] state update.", ifp->name);
paul718e3742002-12-13 20:15:29 +0000194
195 if (if_tmp.bandwidth != ifp->bandwidth)
paulcf795c52003-06-19 02:13:25 +0000196 {
197 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
198 zlog_info ("Zebra: Interface[%s] bandwidth change %d -> %d.",
199 ifp->name, if_tmp.bandwidth, ifp->bandwidth);
paul718e3742002-12-13 20:15:29 +0000200
paulcf795c52003-06-19 02:13:25 +0000201 ospf_if_recalculate_output_cost (ifp);
202 }
paul718e3742002-12-13 20:15:29 +0000203 return 0;
204 }
paulcf795c52003-06-19 02:13:25 +0000205
paul718e3742002-12-13 20:15:29 +0000206 zebra_interface_if_set_value (zclient->ibuf, ifp);
paulcf795c52003-06-19 02:13:25 +0000207
paul718e3742002-12-13 20:15:29 +0000208 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
209 zlog_info ("Zebra: Interface[%s] state change to up.", ifp->name);
paulcf795c52003-06-19 02:13:25 +0000210
211 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +0000212 {
paulcf795c52003-06-19 02:13:25 +0000213 if ((oi = rn->info) == NULL)
214 continue;
215
paul718e3742002-12-13 20:15:29 +0000216 ospf_if_up (oi);
217 }
paulcf795c52003-06-19 02:13:25 +0000218
paul718e3742002-12-13 20:15:29 +0000219 return 0;
220}
221
222int
223ospf_interface_state_down (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000224 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000225{
226 struct interface *ifp;
227 struct ospf_interface *oi;
228 struct route_node *node;
229
230 ifp = zebra_interface_state_read (zclient->ibuf);
231
232 if (ifp == NULL)
233 return 0;
234
235 if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
236 zlog_info ("Zebra: Interface[%s] state change to down.", ifp->name);
237
paulcf795c52003-06-19 02:13:25 +0000238 for (node = route_top (IF_OIFS (ifp)); node; node = route_next (node))
paul718e3742002-12-13 20:15:29 +0000239 {
paulcf795c52003-06-19 02:13:25 +0000240 if ((oi = node->info) == NULL)
241 continue;
paul718e3742002-12-13 20:15:29 +0000242 ospf_if_down (oi);
243 }
244
245 return 0;
246}
247
248int
249ospf_interface_address_add (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000250 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000251{
paul020709f2003-04-04 02:44:16 +0000252 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000253 struct connected *c;
254
255 c = zebra_interface_address_add_read (zclient->ibuf);
256
257 if (c == NULL)
258 return 0;
259
paul020709f2003-04-04 02:44:16 +0000260 ospf = ospf_lookup ();
261 if (ospf != NULL)
262 ospf_if_update (ospf);
paul718e3742002-12-13 20:15:29 +0000263
264#ifdef HAVE_SNMP
265 ospf_snmp_if_update (c->ifp);
266#endif /* HAVE_SNMP */
267
268 return 0;
269}
270
271int
272ospf_interface_address_delete (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000273 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000274{
paul020709f2003-04-04 02:44:16 +0000275 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000276 struct connected *c;
277 struct interface *ifp;
278 struct ospf_interface *oi;
279 struct route_node *rn;
280 struct prefix p;
281
282 c = zebra_interface_address_delete_read (zclient->ibuf);
283
284 if (c == NULL)
285 return 0;
286
287 ifp = c->ifp;
288 p = *c->address;
289 p.prefixlen = IPV4_MAX_PREFIXLEN;
290
291 rn = route_node_lookup (IF_OIFS (ifp), &p);
paulcf795c52003-06-19 02:13:25 +0000292 if (!rn)
paul718e3742002-12-13 20:15:29 +0000293 return 0;
294
295 assert (rn->info);
296 oi = rn->info;
paulcf795c52003-06-19 02:13:25 +0000297
paul718e3742002-12-13 20:15:29 +0000298 /* Call interface hook functions to clean up */
299 ospf_if_free (oi);
paulcf795c52003-06-19 02:13:25 +0000300
paul718e3742002-12-13 20:15:29 +0000301#ifdef HAVE_SNMP
302 ospf_snmp_if_update (c->ifp);
303#endif /* HAVE_SNMP */
304
305 connected_free (c);
306
paul020709f2003-04-04 02:44:16 +0000307 ospf = ospf_lookup ();
308 if (ospf != NULL)
309 ospf_if_update (ospf);
paul718e3742002-12-13 20:15:29 +0000310
311 return 0;
312}
paul72357f22003-06-19 02:11:23 +0000313
paul718e3742002-12-13 20:15:29 +0000314void
315ospf_zebra_add (struct prefix_ipv4 *p, struct ospf_route *or)
316{
317 u_char message;
318 u_char distance;
319 u_char flags;
320 int psize;
321 struct stream *s;
322 struct ospf_path *path;
323 listnode node;
324
325 if (zclient->redist[ZEBRA_ROUTE_OSPF])
326 {
327 message = 0;
328 flags = 0;
329
330 /* OSPF pass nexthop and metric */
331 SET_FLAG (message, ZAPI_MESSAGE_NEXTHOP);
332 SET_FLAG (message, ZAPI_MESSAGE_METRIC);
333
334 /* Distance value. */
335 distance = ospf_distance_apply (p, or);
336 if (distance)
paul72357f22003-06-19 02:11:23 +0000337 SET_FLAG (message, ZAPI_MESSAGE_DISTANCE);
paul718e3742002-12-13 20:15:29 +0000338
339 /* Make packet. */
340 s = zclient->obuf;
341 stream_reset (s);
342
343 /* Length place holder. */
344 stream_putw (s, 0);
345
346 /* Put command, type, flags, message. */
347 stream_putc (s, ZEBRA_IPV4_ROUTE_ADD);
348 stream_putc (s, ZEBRA_ROUTE_OSPF);
349 stream_putc (s, flags);
350 stream_putc (s, message);
paulcf795c52003-06-19 02:13:25 +0000351
paul718e3742002-12-13 20:15:29 +0000352 /* Put prefix information. */
353 psize = PSIZE (p->prefixlen);
354 stream_putc (s, p->prefixlen);
paulcf795c52003-06-19 02:13:25 +0000355 stream_write (s, (u_char *) & p->prefix, psize);
paul718e3742002-12-13 20:15:29 +0000356
357 /* Nexthop count. */
paul96735ee2003-08-10 02:51:22 +0000358 stream_putc (s, or->paths->count);
paul718e3742002-12-13 20:15:29 +0000359
360 /* Nexthop, ifindex, distance and metric information. */
paul96735ee2003-08-10 02:51:22 +0000361 for (node = listhead (or->paths); node; nextnode (node))
paul72357f22003-06-19 02:11:23 +0000362 {
paulcf795c52003-06-19 02:13:25 +0000363 path = getdata (node);
paul718e3742002-12-13 20:15:29 +0000364
paulcf795c52003-06-19 02:13:25 +0000365 if (path->nexthop.s_addr != INADDR_ANY)
366 {
367 stream_putc (s, ZEBRA_NEXTHOP_IPV4);
368 stream_put_in_addr (s, &path->nexthop);
369 }
370 else
371 {
372 stream_putc (s, ZEBRA_NEXTHOP_IFINDEX);
373 if (path->oi)
374 stream_putl (s, path->oi->ifp->ifindex);
375 else
376 stream_putl (s, 0);
377 }
paul72357f22003-06-19 02:11:23 +0000378
379 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
380 {
381 zlog_info ("Zebra: Route add %s/%d nexthop %s",
paulcf795c52003-06-19 02:13:25 +0000382 inet_ntoa (p->prefix),
383 p->prefixlen, inet_ntoa (path->nexthop));
384 }
385 }
paul718e3742002-12-13 20:15:29 +0000386
387 if (CHECK_FLAG (message, ZAPI_MESSAGE_DISTANCE))
paulcf795c52003-06-19 02:13:25 +0000388 stream_putc (s, distance);
paul718e3742002-12-13 20:15:29 +0000389 if (CHECK_FLAG (message, ZAPI_MESSAGE_METRIC))
paulcf795c52003-06-19 02:13:25 +0000390 {
391 if (or->path_type == OSPF_PATH_TYPE1_EXTERNAL)
392 stream_putl (s, or->cost + or->u.ext.type2_cost);
393 else if (or->path_type == OSPF_PATH_TYPE2_EXTERNAL)
394 stream_putl (s, or->u.ext.type2_cost);
395 else
396 stream_putl (s, or->cost);
397 }
paul718e3742002-12-13 20:15:29 +0000398
399 stream_putw_at (s, 0, stream_get_endp (s));
400
401 writen (zclient->sock, s->data, stream_get_endp (s));
paul718e3742002-12-13 20:15:29 +0000402 }
403}
404
405void
406ospf_zebra_delete (struct prefix_ipv4 *p, struct ospf_route *or)
407{
408 struct zapi_ipv4 api;
paul72357f22003-06-19 02:11:23 +0000409 struct ospf_path *path;
410 struct in_addr *nexthop;
411 listnode node;
paul718e3742002-12-13 20:15:29 +0000412
413 if (zclient->redist[ZEBRA_ROUTE_OSPF])
414 {
415 api.type = ZEBRA_ROUTE_OSPF;
416 api.flags = 0;
417 api.message = 0;
paul72357f22003-06-19 02:11:23 +0000418 api.ifindex_num = 0;
419 api.nexthop_num = 0;
paul718e3742002-12-13 20:15:29 +0000420
paul96735ee2003-08-10 02:51:22 +0000421 for (node = listhead (or->paths); node; nextnode (node))
paulcf795c52003-06-19 02:13:25 +0000422 {
423 path = getdata (node);
paul718e3742002-12-13 20:15:29 +0000424
paulcf795c52003-06-19 02:13:25 +0000425 if (path->nexthop.s_addr != INADDR_ANY)
426 {
pauld8e1d6b2003-08-10 04:04:41 +0000427 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
paulcf795c52003-06-19 02:13:25 +0000428 api.nexthop_num = 1;
429 nexthop = &path->nexthop;
430 api.nexthop = &nexthop;
431 }
paulbb8ff1e2003-08-12 06:00:30 +0000432 else if (path->oi->ifp)
433 {
434 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
435 api.ifindex_num = 1;
436 api.ifindex = &path->oi->ifp->ifindex;
437 }
438 else if ( IS_DEBUG_OSPF(zebra,ZEBRA_REDISTRIBUTE) )
439 {
440 zlog_info("Zebra: no ifp %s %d",
441 inet_ntoa(p->prefix),
442 p->prefixlen);
443 }
paul72357f22003-06-19 02:11:23 +0000444
445 zapi_ipv4_delete (zclient, p, &api);
446
447 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE) && api.nexthop_num)
paulcf795c52003-06-19 02:13:25 +0000448 {
449 zlog_info ("Zebra: Route delete %s/%d nexthop %s",
450 inet_ntoa (p->prefix),
451 p->prefixlen, inet_ntoa (**api.nexthop));
452 }
paulbb8ff1e2003-08-12 06:00:30 +0000453 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE) && api.ifindex_num)
454 {
455 zlog_info ("Zebra: Route delete %s/%d ifindex %d",
456 inet_ntoa (p->prefix),
457 p->prefixlen, *api.ifindex);
458 }
paulcf795c52003-06-19 02:13:25 +0000459 }
paul718e3742002-12-13 20:15:29 +0000460 }
461}
462
463void
464ospf_zebra_add_discard (struct prefix_ipv4 *p)
465{
466 struct zapi_ipv4 api;
467
468 if (zclient->redist[ZEBRA_ROUTE_OSPF])
469 {
470 api.type = ZEBRA_ROUTE_OSPF;
471 api.flags = ZEBRA_FLAG_BLACKHOLE;
472 api.message = 0;
473 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
474 api.nexthop_num = 0;
475 api.ifindex_num = 0;
476
477 zapi_ipv4_add (zclient, p, &api);
478 }
479}
480
481void
482ospf_zebra_delete_discard (struct prefix_ipv4 *p)
483{
484 struct zapi_ipv4 api;
485
486 if (zclient->redist[ZEBRA_ROUTE_OSPF])
487 {
488 api.type = ZEBRA_ROUTE_OSPF;
489 api.flags = ZEBRA_FLAG_BLACKHOLE;
490 api.message = 0;
491 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
492 api.nexthop_num = 0;
493 api.ifindex_num = 0;
494
495 zapi_ipv4_delete (zclient, p, &api);
paul72357f22003-06-19 02:11:23 +0000496
497 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000498 zlog_info ("Zebra: Route delete discard %s/%d",
499 inet_ntoa (p->prefix), p->prefixlen);
paul72357f22003-06-19 02:11:23 +0000500
paul718e3742002-12-13 20:15:29 +0000501 }
502}
503
504int
505ospf_is_type_redistributed (int type)
506{
507 return (DEFAULT_ROUTE_TYPE (type)) ?
508 zclient->default_information : zclient->redist[type];
509}
510
511int
paul020709f2003-04-04 02:44:16 +0000512ospf_redistribute_set (struct ospf *ospf, int type, int mtype, int mvalue)
paul718e3742002-12-13 20:15:29 +0000513{
514 int force = 0;
paulcf795c52003-06-19 02:13:25 +0000515
paul718e3742002-12-13 20:15:29 +0000516 if (ospf_is_type_redistributed (type))
517 {
paul68980082003-03-25 05:07:42 +0000518 if (mtype != ospf->dmetric[type].type)
paulcf795c52003-06-19 02:13:25 +0000519 {
520 ospf->dmetric[type].type = mtype;
521 force = LSA_REFRESH_FORCE;
522 }
paul68980082003-03-25 05:07:42 +0000523 if (mvalue != ospf->dmetric[type].value)
paulcf795c52003-06-19 02:13:25 +0000524 {
525 ospf->dmetric[type].value = mvalue;
526 force = LSA_REFRESH_FORCE;
527 }
528
paul68980082003-03-25 05:07:42 +0000529 ospf_external_lsa_refresh_type (ospf, type, force);
paulcf795c52003-06-19 02:13:25 +0000530
paul718e3742002-12-13 20:15:29 +0000531 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000532 zlog_info ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
533 LOOKUP (ospf_redistributed_proto, type),
534 metric_type (ospf, type), metric_value (ospf, type));
535
paul718e3742002-12-13 20:15:29 +0000536 return CMD_SUCCESS;
537 }
538
paul68980082003-03-25 05:07:42 +0000539 ospf->dmetric[type].type = mtype;
540 ospf->dmetric[type].value = mvalue;
paul718e3742002-12-13 20:15:29 +0000541
542 zclient_redistribute_set (zclient, type);
543
544 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
545 zlog_info ("Redistribute[%s]: Start Type[%d], Metric[%d]",
paulcf795c52003-06-19 02:13:25 +0000546 LOOKUP (ospf_redistributed_proto, type),
547 metric_type (ospf, type), metric_value (ospf, type));
548
paul68980082003-03-25 05:07:42 +0000549 ospf_asbr_status_update (ospf, ++ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000550
551 return CMD_SUCCESS;
552}
553
554int
paul020709f2003-04-04 02:44:16 +0000555ospf_redistribute_unset (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000556{
557 if (type == zclient->redist_default)
558 return CMD_SUCCESS;
559
paulcf795c52003-06-19 02:13:25 +0000560 if (!ospf_is_type_redistributed (type))
paul718e3742002-12-13 20:15:29 +0000561 return CMD_SUCCESS;
562
563 zclient_redistribute_unset (zclient, type);
paulcf795c52003-06-19 02:13:25 +0000564
paul718e3742002-12-13 20:15:29 +0000565 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
566 zlog_info ("Redistribute[%s]: Stop",
paulcf795c52003-06-19 02:13:25 +0000567 LOOKUP (ospf_redistributed_proto, type));
paul718e3742002-12-13 20:15:29 +0000568
paul68980082003-03-25 05:07:42 +0000569 ospf->dmetric[type].type = -1;
570 ospf->dmetric[type].value = -1;
paul718e3742002-12-13 20:15:29 +0000571
572 /* Remove the routes from OSPF table. */
573 ospf_redistribute_withdraw (type);
574
paul68980082003-03-25 05:07:42 +0000575 ospf_asbr_status_update (ospf, --ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000576
577 return CMD_SUCCESS;
578}
579
580int
paul020709f2003-04-04 02:44:16 +0000581ospf_redistribute_default_set (struct ospf *ospf, int originate,
paulcf795c52003-06-19 02:13:25 +0000582 int mtype, int mvalue)
paul718e3742002-12-13 20:15:29 +0000583{
584 int force = 0;
paul020709f2003-04-04 02:44:16 +0000585
paul718e3742002-12-13 20:15:29 +0000586 if (ospf_is_type_redistributed (DEFAULT_ROUTE))
587 {
paul68980082003-03-25 05:07:42 +0000588 if (mtype != ospf->dmetric[DEFAULT_ROUTE].type)
paulcf795c52003-06-19 02:13:25 +0000589 {
590 ospf->dmetric[DEFAULT_ROUTE].type = mtype;
591 force = 1;
592 }
paul68980082003-03-25 05:07:42 +0000593 if (mvalue != ospf->dmetric[DEFAULT_ROUTE].value)
paulcf795c52003-06-19 02:13:25 +0000594 {
595 force = 1;
596 ospf->dmetric[DEFAULT_ROUTE].value = mvalue;
597 }
598
paul68980082003-03-25 05:07:42 +0000599 ospf_external_lsa_refresh_default (ospf);
paulcf795c52003-06-19 02:13:25 +0000600
paul718e3742002-12-13 20:15:29 +0000601 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000602 zlog_info ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
603 LOOKUP (ospf_redistributed_proto, DEFAULT_ROUTE),
604 metric_type (ospf, DEFAULT_ROUTE),
605 metric_value (ospf, DEFAULT_ROUTE));
paul718e3742002-12-13 20:15:29 +0000606 return CMD_SUCCESS;
607 }
608
paul68980082003-03-25 05:07:42 +0000609 ospf->default_originate = originate;
610 ospf->dmetric[DEFAULT_ROUTE].type = mtype;
611 ospf->dmetric[DEFAULT_ROUTE].value = mvalue;
paul718e3742002-12-13 20:15:29 +0000612
613 zclient_redistribute_default_set (zclient);
paulcf795c52003-06-19 02:13:25 +0000614
paul718e3742002-12-13 20:15:29 +0000615 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
616 zlog_info ("Redistribute[DEFAULT]: Start Type[%d], Metric[%d]",
paulcf795c52003-06-19 02:13:25 +0000617 metric_type (ospf, DEFAULT_ROUTE),
618 metric_value (ospf, DEFAULT_ROUTE));
paul718e3742002-12-13 20:15:29 +0000619
paul68980082003-03-25 05:07:42 +0000620 if (ospf->router_id.s_addr == 0)
621 ospf->external_origin |= (1 << DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +0000622 else
623 thread_add_timer (master, ospf_default_originate_timer,
paulcf795c52003-06-19 02:13:25 +0000624 &ospf->default_originate, 1);
paul718e3742002-12-13 20:15:29 +0000625
paul68980082003-03-25 05:07:42 +0000626 ospf_asbr_status_update (ospf, ++ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000627
628 return CMD_SUCCESS;
629}
630
631int
paul020709f2003-04-04 02:44:16 +0000632ospf_redistribute_default_unset (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000633{
634 if (!ospf_is_type_redistributed (DEFAULT_ROUTE))
635 return CMD_SUCCESS;
636
paul68980082003-03-25 05:07:42 +0000637 ospf->default_originate = DEFAULT_ORIGINATE_NONE;
638 ospf->dmetric[DEFAULT_ROUTE].type = -1;
639 ospf->dmetric[DEFAULT_ROUTE].value = -1;
paul718e3742002-12-13 20:15:29 +0000640
641 zclient_redistribute_default_unset (zclient);
642
643 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
644 zlog_info ("Redistribute[DEFAULT]: Stop");
paulcf795c52003-06-19 02:13:25 +0000645
paul68980082003-03-25 05:07:42 +0000646 ospf_asbr_status_update (ospf, --ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000647
648 return CMD_SUCCESS;
649}
650
651int
paul020709f2003-04-04 02:44:16 +0000652ospf_external_lsa_originate_check (struct ospf *ospf,
paulcf795c52003-06-19 02:13:25 +0000653 struct external_info *ei)
paul718e3742002-12-13 20:15:29 +0000654{
655 /* If prefix is multicast, then do not originate LSA. */
656 if (IN_MULTICAST (htonl (ei->p.prefix.s_addr)))
657 {
658 zlog_info ("LSA[Type5:%s]: Not originate AS-external-LSA, "
paulcf795c52003-06-19 02:13:25 +0000659 "Prefix belongs multicast", inet_ntoa (ei->p.prefix));
paul718e3742002-12-13 20:15:29 +0000660 return 0;
661 }
662
663 /* Take care of default-originate. */
664 if (is_prefix_default (&ei->p))
paul68980082003-03-25 05:07:42 +0000665 if (ospf->default_originate == DEFAULT_ORIGINATE_NONE)
paul718e3742002-12-13 20:15:29 +0000666 {
paulcf795c52003-06-19 02:13:25 +0000667 zlog_info ("LSA[Type5:0.0.0.0]: Not originate AS-exntenal-LSA "
668 "for default");
669 return 0;
paul718e3742002-12-13 20:15:29 +0000670 }
671
672 return 1;
673}
674
675/* If connected prefix is OSPF enable interface, then do not announce. */
676int
paulcf795c52003-06-19 02:13:25 +0000677ospf_distribute_check_connected (struct ospf *ospf, struct external_info *ei)
paul718e3742002-12-13 20:15:29 +0000678{
679 struct route_node *rn;
680
paul68980082003-03-25 05:07:42 +0000681 for (rn = route_top (ospf->networks); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +0000682 if (rn->info != NULL)
paulcf795c52003-06-19 02:13:25 +0000683 if (prefix_match (&rn->p, (struct prefix *) &ei->p))
684 {
685 route_unlock_node (rn);
686 return 0;
687 }
paul718e3742002-12-13 20:15:29 +0000688
689 return 1;
690}
691
692/* return 1 if external LSA must be originated, 0 otherwise */
693int
paul68980082003-03-25 05:07:42 +0000694ospf_redistribute_check (struct ospf *ospf,
paulcf795c52003-06-19 02:13:25 +0000695 struct external_info *ei, int *changed)
paul718e3742002-12-13 20:15:29 +0000696{
697 struct route_map_set_values save_values;
698 struct prefix_ipv4 *p = &ei->p;
699 u_char type = is_prefix_default (&ei->p) ? DEFAULT_ROUTE : ei->type;
paulcf795c52003-06-19 02:13:25 +0000700
paul718e3742002-12-13 20:15:29 +0000701 if (changed)
702 *changed = 0;
703
paul020709f2003-04-04 02:44:16 +0000704 if (!ospf_external_lsa_originate_check (ospf, ei))
paul718e3742002-12-13 20:15:29 +0000705 return 0;
706
707 /* Take care connected route. */
paul68980082003-03-25 05:07:42 +0000708 if (type == ZEBRA_ROUTE_CONNECT &&
709 !ospf_distribute_check_connected (ospf, ei))
paul718e3742002-12-13 20:15:29 +0000710 return 0;
711
paul020709f2003-04-04 02:44:16 +0000712 if (!DEFAULT_ROUTE_TYPE (type) && DISTRIBUTE_NAME (ospf, type))
paul718e3742002-12-13 20:15:29 +0000713 /* distirbute-list exists, but access-list may not? */
paul020709f2003-04-04 02:44:16 +0000714 if (DISTRIBUTE_LIST (ospf, type))
715 if (access_list_apply (DISTRIBUTE_LIST (ospf, type), p) == FILTER_DENY)
paulcf795c52003-06-19 02:13:25 +0000716 {
717 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
718 zlog_info ("Redistribute[%s]: %s/%d filtered by ditribute-list.",
719 LOOKUP (ospf_redistributed_proto, type),
720 inet_ntoa (p->prefix), p->prefixlen);
721 return 0;
722 }
paul718e3742002-12-13 20:15:29 +0000723
724 save_values = ei->route_map_set;
725 ospf_reset_route_map_set_values (&ei->route_map_set);
paulcf795c52003-06-19 02:13:25 +0000726
paul718e3742002-12-13 20:15:29 +0000727 /* apply route-map if needed */
paul020709f2003-04-04 02:44:16 +0000728 if (ROUTEMAP_NAME (ospf, type))
paul718e3742002-12-13 20:15:29 +0000729 {
730 int ret;
731
paulcf795c52003-06-19 02:13:25 +0000732 ret = route_map_apply (ROUTEMAP (ospf, type), (struct prefix *) p,
733 RMAP_OSPF, ei);
paul718e3742002-12-13 20:15:29 +0000734
735 if (ret == RMAP_DENYMATCH)
paulcf795c52003-06-19 02:13:25 +0000736 {
737 ei->route_map_set = save_values;
738 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
739 zlog_info ("Redistribute[%s]: %s/%d filtered by route-map.",
740 LOOKUP (ospf_redistributed_proto, type),
741 inet_ntoa (p->prefix), p->prefixlen);
742 return 0;
743 }
744
paul718e3742002-12-13 20:15:29 +0000745 /* check if 'route-map set' changed something */
746 if (changed)
paulcf795c52003-06-19 02:13:25 +0000747 *changed = !ospf_route_map_set_compare (&ei->route_map_set,
748 &save_values);
paul718e3742002-12-13 20:15:29 +0000749 }
750
751 return 1;
752}
753
754/* OSPF route-map set for redistribution */
755void
paul020709f2003-04-04 02:44:16 +0000756ospf_routemap_set (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000757{
paul020709f2003-04-04 02:44:16 +0000758 if (ROUTEMAP_NAME (ospf, type))
759 free (ROUTEMAP_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000760
paul020709f2003-04-04 02:44:16 +0000761 ROUTEMAP_NAME (ospf, type) = strdup (name);
762 ROUTEMAP (ospf, type) = route_map_lookup_by_name (name);
paul718e3742002-12-13 20:15:29 +0000763}
764
765void
paul020709f2003-04-04 02:44:16 +0000766ospf_routemap_unset (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000767{
paul020709f2003-04-04 02:44:16 +0000768 if (ROUTEMAP_NAME (ospf, type))
769 free (ROUTEMAP_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000770
paul020709f2003-04-04 02:44:16 +0000771 ROUTEMAP_NAME (ospf, type) = NULL;
772 ROUTEMAP (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000773}
774
775/* Zebra route add and delete treatment. */
776int
777ospf_zebra_read_ipv4 (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000778 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000779{
780 struct stream *s;
781 struct zapi_ipv4 api;
782 unsigned long ifindex;
783 struct in_addr nexthop;
784 struct prefix_ipv4 p;
785 struct external_info *ei;
paul020709f2003-04-04 02:44:16 +0000786 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000787
788 s = zclient->ibuf;
789 ifindex = 0;
790 nexthop.s_addr = 0;
791
792 /* Type, flags, message. */
793 api.type = stream_getc (s);
794 api.flags = stream_getc (s);
795 api.message = stream_getc (s);
796
797 /* IPv4 prefix. */
798 memset (&p, 0, sizeof (struct prefix_ipv4));
799 p.family = AF_INET;
800 p.prefixlen = stream_getc (s);
801 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
802
803 /* Nexthop, ifindex, distance, metric. */
804 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
805 {
806 api.nexthop_num = stream_getc (s);
807 nexthop.s_addr = stream_get_ipv4 (s);
808 }
809 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
810 {
811 api.ifindex_num = stream_getc (s);
812 ifindex = stream_getl (s);
813 }
814 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
815 api.distance = stream_getc (s);
816 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
817 api.metric = stream_getl (s);
818
paul020709f2003-04-04 02:44:16 +0000819 ospf = ospf_lookup ();
820 if (ospf == NULL)
821 return 0;
822
paul718e3742002-12-13 20:15:29 +0000823 if (command == ZEBRA_IPV4_ROUTE_ADD)
824 {
paul7021c422003-07-15 12:52:22 +0000825 /* XXX|HACK|TODO|FIXME:
826 * ignore reject/blackhole routes
827 * need a better generalised solution for these types
828 * really.
829 */
830 if ( CHECK_FLAG (api.flags, ZEBRA_FLAG_BLACKHOLE)
831 || CHECK_FLAG (api.flags, ZEBRA_FLAG_REJECT))
832 return 0;
833
paul718e3742002-12-13 20:15:29 +0000834 ei = ospf_external_info_add (api.type, p, ifindex, nexthop);
835
paul68980082003-03-25 05:07:42 +0000836 if (ospf->router_id.s_addr == 0)
paulcf795c52003-06-19 02:13:25 +0000837 /* Set flags to generate AS-external-LSA originate event
838 for each redistributed protocols later. */
839 ospf->external_origin |= (1 << api.type);
paul718e3742002-12-13 20:15:29 +0000840 else
paulcf795c52003-06-19 02:13:25 +0000841 {
842 if (ei)
843 {
844 if (is_prefix_default (&p))
845 ospf_external_lsa_refresh_default (ospf);
846 else
847 {
848 struct ospf_lsa *current;
paul718e3742002-12-13 20:15:29 +0000849
paulcf795c52003-06-19 02:13:25 +0000850 current = ospf_external_info_find_lsa (ospf, &ei->p);
851 if (!current)
852 ospf_external_lsa_originate (ospf, ei);
853 else if (IS_LSA_MAXAGE (current))
854 ospf_external_lsa_refresh (ospf, current,
855 ei, LSA_REFRESH_FORCE);
856 else
857 zlog_warn ("ospf_zebra_read_ipv4() : %s already exists",
858 inet_ntoa (p.prefix));
859 }
860 }
861 }
paul718e3742002-12-13 20:15:29 +0000862 }
paulcf795c52003-06-19 02:13:25 +0000863 else /* if (command == ZEBRA_IPV4_ROUTE_DELETE) */
paul718e3742002-12-13 20:15:29 +0000864 {
865 ospf_external_info_delete (api.type, p);
paul7021c422003-07-15 12:52:22 +0000866 if (is_prefix_default (&p))
paulcf795c52003-06-19 02:13:25 +0000867 ospf_external_lsa_refresh_default (ospf);
paul7021c422003-07-15 12:52:22 +0000868 else
869 ospf_external_lsa_flush (ospf, api.type, &p, ifindex, nexthop);
paul718e3742002-12-13 20:15:29 +0000870 }
871
872 return 0;
873}
paul718e3742002-12-13 20:15:29 +0000874
paulcf795c52003-06-19 02:13:25 +0000875
paul718e3742002-12-13 20:15:29 +0000876int
paul68980082003-03-25 05:07:42 +0000877ospf_distribute_list_out_set (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000878{
879 /* Lookup access-list for distribute-list. */
paul020709f2003-04-04 02:44:16 +0000880 DISTRIBUTE_LIST (ospf, type) = access_list_lookup (AFI_IP, name);
paul718e3742002-12-13 20:15:29 +0000881
882 /* Clear previous distribute-name. */
paul020709f2003-04-04 02:44:16 +0000883 if (DISTRIBUTE_NAME (ospf, type))
884 free (DISTRIBUTE_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000885
886 /* Set distribute-name. */
paul020709f2003-04-04 02:44:16 +0000887 DISTRIBUTE_NAME (ospf, type) = strdup (name);
paul718e3742002-12-13 20:15:29 +0000888
889 /* If access-list have been set, schedule update timer. */
paul020709f2003-04-04 02:44:16 +0000890 if (DISTRIBUTE_LIST (ospf, type))
paul68980082003-03-25 05:07:42 +0000891 ospf_distribute_list_update (ospf, type);
paul718e3742002-12-13 20:15:29 +0000892
893 return CMD_SUCCESS;
894}
895
896int
paul68980082003-03-25 05:07:42 +0000897ospf_distribute_list_out_unset (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000898{
899 /* Schedule update timer. */
paul020709f2003-04-04 02:44:16 +0000900 if (DISTRIBUTE_LIST (ospf, type))
paul68980082003-03-25 05:07:42 +0000901 ospf_distribute_list_update (ospf, type);
paul718e3742002-12-13 20:15:29 +0000902
903 /* Unset distribute-list. */
paul020709f2003-04-04 02:44:16 +0000904 DISTRIBUTE_LIST (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000905
906 /* Clear distribute-name. */
paul020709f2003-04-04 02:44:16 +0000907 if (DISTRIBUTE_NAME (ospf, type))
908 free (DISTRIBUTE_NAME (ospf, type));
paulcf795c52003-06-19 02:13:25 +0000909
paul020709f2003-04-04 02:44:16 +0000910 DISTRIBUTE_NAME (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000911
912 return CMD_SUCCESS;
913}
914
915/* distribute-list update timer. */
916int
917ospf_distribute_list_update_timer (struct thread *thread)
918{
919 struct route_node *rn;
920 struct external_info *ei;
921 struct route_table *rt;
922 struct ospf_lsa *lsa;
923 u_char type;
paul020709f2003-04-04 02:44:16 +0000924 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000925
926 type = (int) THREAD_ARG (thread);
927 rt = EXTERNAL_INFO (type);
928
paul020709f2003-04-04 02:44:16 +0000929 ospf = ospf_lookup ();
930 if (ospf == NULL)
931 return 0;
932
paul68980082003-03-25 05:07:42 +0000933 ospf->t_distribute_update = NULL;
paul718e3742002-12-13 20:15:29 +0000934
935 zlog_info ("Zebra[Redistribute]: distribute-list update timer fired!");
936
937 /* foreach all external info. */
938 if (rt)
939 for (rn = route_top (rt); rn; rn = route_next (rn))
940 if ((ei = rn->info) != NULL)
paulcf795c52003-06-19 02:13:25 +0000941 {
942 if (is_prefix_default (&ei->p))
943 ospf_external_lsa_refresh_default (ospf);
944 else if ((lsa = ospf_external_info_find_lsa (ospf, &ei->p)))
945 ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_IF_CHANGED);
946 else
947 ospf_external_lsa_originate (ospf, ei);
948 }
paul718e3742002-12-13 20:15:29 +0000949 return 0;
950}
951
952#define OSPF_DISTRIBUTE_UPDATE_DELAY 5
953
954/* Update distribute-list and set timer to apply access-list. */
955void
paul68980082003-03-25 05:07:42 +0000956ospf_distribute_list_update (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000957{
958 struct route_table *rt;
paulcf795c52003-06-19 02:13:25 +0000959
paul718e3742002-12-13 20:15:29 +0000960 /* External info does not exist. */
961 if (!(rt = EXTERNAL_INFO (type)))
962 return;
963
964 /* If exists previously invoked thread, then cancel it. */
paul68980082003-03-25 05:07:42 +0000965 if (ospf->t_distribute_update)
966 OSPF_TIMER_OFF (ospf->t_distribute_update);
paul718e3742002-12-13 20:15:29 +0000967
968 /* Set timer. */
paul68980082003-03-25 05:07:42 +0000969 ospf->t_distribute_update =
paul718e3742002-12-13 20:15:29 +0000970 thread_add_timer (master, ospf_distribute_list_update_timer,
paulcf795c52003-06-19 02:13:25 +0000971 (void *) type, OSPF_DISTRIBUTE_UPDATE_DELAY);
paul718e3742002-12-13 20:15:29 +0000972}
973
974/* If access-list is updated, apply some check. */
975void
976ospf_filter_update (struct access_list *access)
977{
paul020709f2003-04-04 02:44:16 +0000978 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000979 int type;
980 int abr_inv = 0;
981 struct ospf_area *area;
982 listnode node;
983
984 /* If OSPF instatnce does not exist, return right now. */
paul020709f2003-04-04 02:44:16 +0000985 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +0000986 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +0000987 return;
988
paul718e3742002-12-13 20:15:29 +0000989 /* Update distribute-list, and apply filter. */
990 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
991 {
paul020709f2003-04-04 02:44:16 +0000992 if (ROUTEMAP (ospf, type) != NULL)
paulcf795c52003-06-19 02:13:25 +0000993 {
994 /* if route-map is not NULL it may be using this access list */
995 ospf_distribute_list_update (ospf, type);
996 continue;
997 }
998
paul718e3742002-12-13 20:15:29 +0000999
paul020709f2003-04-04 02:44:16 +00001000 if (DISTRIBUTE_NAME (ospf, type))
paulcf795c52003-06-19 02:13:25 +00001001 {
1002 /* Keep old access-list for distribute-list. */
1003 struct access_list *old = DISTRIBUTE_LIST (ospf, type);
1004
1005 /* Update access-list for distribute-list. */
1006 DISTRIBUTE_LIST (ospf, type) =
1007 access_list_lookup (AFI_IP, DISTRIBUTE_NAME (ospf, type));
1008
1009 /* No update for this distribute type. */
1010 if (old == NULL && DISTRIBUTE_LIST (ospf, type) == NULL)
1011 continue;
1012
1013 /* Schedule distribute-list update timer. */
1014 if (DISTRIBUTE_LIST (ospf, type) == NULL ||
1015 strcmp (DISTRIBUTE_NAME (ospf, type), access->name) == 0)
1016 ospf_distribute_list_update (ospf, type);
1017 }
paul718e3742002-12-13 20:15:29 +00001018 }
1019
1020 /* Update Area access-list. */
paul68980082003-03-25 05:07:42 +00001021 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +00001022 if ((area = getdata (node)) != NULL)
1023 {
paulcf795c52003-06-19 02:13:25 +00001024 if (EXPORT_NAME (area))
1025 {
1026 EXPORT_LIST (area) = NULL;
1027 abr_inv++;
1028 }
paul718e3742002-12-13 20:15:29 +00001029
paulcf795c52003-06-19 02:13:25 +00001030 if (IMPORT_NAME (area))
1031 {
1032 IMPORT_LIST (area) = NULL;
1033 abr_inv++;
1034 }
paul718e3742002-12-13 20:15:29 +00001035 }
1036
1037 /* Schedule ABR tasks -- this will be changed -- takada. */
paul020709f2003-04-04 02:44:16 +00001038 if (IS_OSPF_ABR (ospf) && abr_inv)
paul68980082003-03-25 05:07:42 +00001039 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001040}
paul718e3742002-12-13 20:15:29 +00001041
paulcf795c52003-06-19 02:13:25 +00001042
paul718e3742002-12-13 20:15:29 +00001043struct ospf_distance *
1044ospf_distance_new ()
1045{
1046 struct ospf_distance *new;
1047 new = XMALLOC (MTYPE_OSPF_DISTANCE, sizeof (struct ospf_distance));
1048 memset (new, 0, sizeof (struct ospf_distance));
1049 return new;
1050}
1051
1052void
1053ospf_distance_free (struct ospf_distance *odistance)
1054{
1055 XFREE (MTYPE_OSPF_DISTANCE, odistance);
1056}
1057
1058int
paul020709f2003-04-04 02:44:16 +00001059ospf_distance_set (struct vty *vty, struct ospf *ospf, char *distance_str,
paulcf795c52003-06-19 02:13:25 +00001060 char *ip_str, char *access_list_str)
paul718e3742002-12-13 20:15:29 +00001061{
1062 int ret;
1063 struct prefix_ipv4 p;
1064 u_char distance;
1065 struct route_node *rn;
1066 struct ospf_distance *odistance;
1067
1068 ret = str2prefix_ipv4 (ip_str, &p);
1069 if (ret == 0)
1070 {
1071 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
1072 return CMD_WARNING;
1073 }
1074
1075 distance = atoi (distance_str);
1076
1077 /* Get OSPF distance node. */
paul68980082003-03-25 05:07:42 +00001078 rn = route_node_get (ospf->distance_table, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +00001079 if (rn->info)
1080 {
1081 odistance = rn->info;
1082 route_unlock_node (rn);
1083 }
1084 else
1085 {
1086 odistance = ospf_distance_new ();
1087 rn->info = odistance;
1088 }
1089
1090 /* Set distance value. */
1091 odistance->distance = distance;
1092
1093 /* Reset access-list configuration. */
1094 if (odistance->access_list)
1095 {
1096 free (odistance->access_list);
1097 odistance->access_list = NULL;
1098 }
1099 if (access_list_str)
1100 odistance->access_list = strdup (access_list_str);
1101
1102 return CMD_SUCCESS;
1103}
1104
1105int
paul020709f2003-04-04 02:44:16 +00001106ospf_distance_unset (struct vty *vty, struct ospf *ospf, char *distance_str,
paulcf795c52003-06-19 02:13:25 +00001107 char *ip_str, char *access_list_str)
paul718e3742002-12-13 20:15:29 +00001108{
1109 int ret;
1110 struct prefix_ipv4 p;
1111 u_char distance;
1112 struct route_node *rn;
1113 struct ospf_distance *odistance;
1114
1115 ret = str2prefix_ipv4 (ip_str, &p);
1116 if (ret == 0)
1117 {
1118 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
1119 return CMD_WARNING;
1120 }
1121
1122 distance = atoi (distance_str);
1123
paulcf795c52003-06-19 02:13:25 +00001124 rn = route_node_lookup (ospf->distance_table, (struct prefix *) &p);
1125 if (!rn)
paul718e3742002-12-13 20:15:29 +00001126 {
1127 vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE);
1128 return CMD_WARNING;
1129 }
1130
1131 odistance = rn->info;
1132
1133 if (odistance->access_list)
1134 free (odistance->access_list);
1135 ospf_distance_free (odistance);
1136
1137 rn->info = NULL;
1138 route_unlock_node (rn);
1139 route_unlock_node (rn);
1140
1141 return CMD_SUCCESS;
1142}
1143
1144void
paul68980082003-03-25 05:07:42 +00001145ospf_distance_reset (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001146{
1147 struct route_node *rn;
1148 struct ospf_distance *odistance;
1149
paul68980082003-03-25 05:07:42 +00001150 for (rn = route_top (ospf->distance_table); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00001151 if ((odistance = rn->info) != NULL)
1152 {
paulcf795c52003-06-19 02:13:25 +00001153 if (odistance->access_list)
1154 free (odistance->access_list);
1155 ospf_distance_free (odistance);
1156 rn->info = NULL;
1157 route_unlock_node (rn);
paul718e3742002-12-13 20:15:29 +00001158 }
1159}
1160
1161u_char
1162ospf_distance_apply (struct prefix_ipv4 *p, struct ospf_route *or)
1163{
paul020709f2003-04-04 02:44:16 +00001164 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00001165
paul020709f2003-04-04 02:44:16 +00001166 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00001167 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00001168 return 0;
1169
paul68980082003-03-25 05:07:42 +00001170 if (ospf->distance_intra)
paul718e3742002-12-13 20:15:29 +00001171 if (or->path_type == OSPF_PATH_INTRA_AREA)
paul68980082003-03-25 05:07:42 +00001172 return ospf->distance_intra;
paul718e3742002-12-13 20:15:29 +00001173
paul68980082003-03-25 05:07:42 +00001174 if (ospf->distance_inter)
paul718e3742002-12-13 20:15:29 +00001175 if (or->path_type == OSPF_PATH_INTER_AREA)
paul68980082003-03-25 05:07:42 +00001176 return ospf->distance_inter;
paul718e3742002-12-13 20:15:29 +00001177
paul68980082003-03-25 05:07:42 +00001178 if (ospf->distance_external)
paul718e3742002-12-13 20:15:29 +00001179 if (or->path_type == OSPF_PATH_TYPE1_EXTERNAL
paulcf795c52003-06-19 02:13:25 +00001180 || or->path_type == OSPF_PATH_TYPE2_EXTERNAL)
paul68980082003-03-25 05:07:42 +00001181 return ospf->distance_external;
paulcf795c52003-06-19 02:13:25 +00001182
paul68980082003-03-25 05:07:42 +00001183 if (ospf->distance_all)
1184 return ospf->distance_all;
paul718e3742002-12-13 20:15:29 +00001185
1186 return 0;
1187}
1188
1189void
1190ospf_zebra_init ()
1191{
1192 /* Allocate zebra structure. */
1193 zclient = zclient_new ();
1194 zclient_init (zclient, ZEBRA_ROUTE_OSPF);
1195 zclient->interface_add = ospf_interface_add;
1196 zclient->interface_delete = ospf_interface_delete;
1197 zclient->interface_up = ospf_interface_state_up;
1198 zclient->interface_down = ospf_interface_state_down;
1199 zclient->interface_address_add = ospf_interface_address_add;
1200 zclient->interface_address_delete = ospf_interface_address_delete;
1201 zclient->ipv4_route_add = ospf_zebra_read_ipv4;
1202 zclient->ipv4_route_delete = ospf_zebra_read_ipv4;
1203
1204 access_list_add_hook (ospf_filter_update);
1205 access_list_delete_hook (ospf_filter_update);
1206}