blob: 34be69699ecf29a76020ad454e72267267ef13b8 [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. */
358 stream_putc (s, or->path->count);
359
360 /* Nexthop, ifindex, distance and metric information. */
361 for (node = listhead (or->path); 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;
420 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
paul718e3742002-12-13 20:15:29 +0000421
paul72357f22003-06-19 02:11:23 +0000422 for (node = listhead (or->path); node; nextnode (node))
paulcf795c52003-06-19 02:13:25 +0000423 {
424 path = getdata (node);
paul718e3742002-12-13 20:15:29 +0000425
paulcf795c52003-06-19 02:13:25 +0000426 if (path->nexthop.s_addr != INADDR_ANY)
427 {
428 api.nexthop_num = 1;
429 nexthop = &path->nexthop;
430 api.nexthop = &nexthop;
431 }
432 else
433 {
434 api.ifindex_num = 1;
435 api.ifindex = &path->oi->ifp->ifindex;
436 }
paul72357f22003-06-19 02:11:23 +0000437
438 zapi_ipv4_delete (zclient, p, &api);
439
440 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE) && api.nexthop_num)
paulcf795c52003-06-19 02:13:25 +0000441 {
442 zlog_info ("Zebra: Route delete %s/%d nexthop %s",
443 inet_ntoa (p->prefix),
444 p->prefixlen, inet_ntoa (**api.nexthop));
445 }
446 }
paul718e3742002-12-13 20:15:29 +0000447 }
448}
449
450void
451ospf_zebra_add_discard (struct prefix_ipv4 *p)
452{
453 struct zapi_ipv4 api;
454
455 if (zclient->redist[ZEBRA_ROUTE_OSPF])
456 {
457 api.type = ZEBRA_ROUTE_OSPF;
458 api.flags = ZEBRA_FLAG_BLACKHOLE;
459 api.message = 0;
460 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
461 api.nexthop_num = 0;
462 api.ifindex_num = 0;
463
464 zapi_ipv4_add (zclient, p, &api);
465 }
466}
467
468void
469ospf_zebra_delete_discard (struct prefix_ipv4 *p)
470{
471 struct zapi_ipv4 api;
472
473 if (zclient->redist[ZEBRA_ROUTE_OSPF])
474 {
475 api.type = ZEBRA_ROUTE_OSPF;
476 api.flags = ZEBRA_FLAG_BLACKHOLE;
477 api.message = 0;
478 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
479 api.nexthop_num = 0;
480 api.ifindex_num = 0;
481
482 zapi_ipv4_delete (zclient, p, &api);
paul72357f22003-06-19 02:11:23 +0000483
484 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000485 zlog_info ("Zebra: Route delete discard %s/%d",
486 inet_ntoa (p->prefix), p->prefixlen);
paul72357f22003-06-19 02:11:23 +0000487
paul718e3742002-12-13 20:15:29 +0000488 }
489}
490
491int
492ospf_is_type_redistributed (int type)
493{
494 return (DEFAULT_ROUTE_TYPE (type)) ?
495 zclient->default_information : zclient->redist[type];
496}
497
498int
paul020709f2003-04-04 02:44:16 +0000499ospf_redistribute_set (struct ospf *ospf, int type, int mtype, int mvalue)
paul718e3742002-12-13 20:15:29 +0000500{
501 int force = 0;
paulcf795c52003-06-19 02:13:25 +0000502
paul718e3742002-12-13 20:15:29 +0000503 if (ospf_is_type_redistributed (type))
504 {
paul68980082003-03-25 05:07:42 +0000505 if (mtype != ospf->dmetric[type].type)
paulcf795c52003-06-19 02:13:25 +0000506 {
507 ospf->dmetric[type].type = mtype;
508 force = LSA_REFRESH_FORCE;
509 }
paul68980082003-03-25 05:07:42 +0000510 if (mvalue != ospf->dmetric[type].value)
paulcf795c52003-06-19 02:13:25 +0000511 {
512 ospf->dmetric[type].value = mvalue;
513 force = LSA_REFRESH_FORCE;
514 }
515
paul68980082003-03-25 05:07:42 +0000516 ospf_external_lsa_refresh_type (ospf, type, force);
paulcf795c52003-06-19 02:13:25 +0000517
paul718e3742002-12-13 20:15:29 +0000518 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000519 zlog_info ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
520 LOOKUP (ospf_redistributed_proto, type),
521 metric_type (ospf, type), metric_value (ospf, type));
522
paul718e3742002-12-13 20:15:29 +0000523 return CMD_SUCCESS;
524 }
525
paul68980082003-03-25 05:07:42 +0000526 ospf->dmetric[type].type = mtype;
527 ospf->dmetric[type].value = mvalue;
paul718e3742002-12-13 20:15:29 +0000528
529 zclient_redistribute_set (zclient, type);
530
531 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
532 zlog_info ("Redistribute[%s]: Start Type[%d], Metric[%d]",
paulcf795c52003-06-19 02:13:25 +0000533 LOOKUP (ospf_redistributed_proto, type),
534 metric_type (ospf, type), metric_value (ospf, type));
535
paul68980082003-03-25 05:07:42 +0000536 ospf_asbr_status_update (ospf, ++ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000537
538 return CMD_SUCCESS;
539}
540
541int
paul020709f2003-04-04 02:44:16 +0000542ospf_redistribute_unset (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000543{
544 if (type == zclient->redist_default)
545 return CMD_SUCCESS;
546
paulcf795c52003-06-19 02:13:25 +0000547 if (!ospf_is_type_redistributed (type))
paul718e3742002-12-13 20:15:29 +0000548 return CMD_SUCCESS;
549
550 zclient_redistribute_unset (zclient, type);
paulcf795c52003-06-19 02:13:25 +0000551
paul718e3742002-12-13 20:15:29 +0000552 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
553 zlog_info ("Redistribute[%s]: Stop",
paulcf795c52003-06-19 02:13:25 +0000554 LOOKUP (ospf_redistributed_proto, type));
paul718e3742002-12-13 20:15:29 +0000555
paul68980082003-03-25 05:07:42 +0000556 ospf->dmetric[type].type = -1;
557 ospf->dmetric[type].value = -1;
paul718e3742002-12-13 20:15:29 +0000558
559 /* Remove the routes from OSPF table. */
560 ospf_redistribute_withdraw (type);
561
paul68980082003-03-25 05:07:42 +0000562 ospf_asbr_status_update (ospf, --ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000563
564 return CMD_SUCCESS;
565}
566
567int
paul020709f2003-04-04 02:44:16 +0000568ospf_redistribute_default_set (struct ospf *ospf, int originate,
paulcf795c52003-06-19 02:13:25 +0000569 int mtype, int mvalue)
paul718e3742002-12-13 20:15:29 +0000570{
571 int force = 0;
paul020709f2003-04-04 02:44:16 +0000572
paul718e3742002-12-13 20:15:29 +0000573 if (ospf_is_type_redistributed (DEFAULT_ROUTE))
574 {
paul68980082003-03-25 05:07:42 +0000575 if (mtype != ospf->dmetric[DEFAULT_ROUTE].type)
paulcf795c52003-06-19 02:13:25 +0000576 {
577 ospf->dmetric[DEFAULT_ROUTE].type = mtype;
578 force = 1;
579 }
paul68980082003-03-25 05:07:42 +0000580 if (mvalue != ospf->dmetric[DEFAULT_ROUTE].value)
paulcf795c52003-06-19 02:13:25 +0000581 {
582 force = 1;
583 ospf->dmetric[DEFAULT_ROUTE].value = mvalue;
584 }
585
paul68980082003-03-25 05:07:42 +0000586 ospf_external_lsa_refresh_default (ospf);
paulcf795c52003-06-19 02:13:25 +0000587
paul718e3742002-12-13 20:15:29 +0000588 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
paulcf795c52003-06-19 02:13:25 +0000589 zlog_info ("Redistribute[%s]: Refresh Type[%d], Metric[%d]",
590 LOOKUP (ospf_redistributed_proto, DEFAULT_ROUTE),
591 metric_type (ospf, DEFAULT_ROUTE),
592 metric_value (ospf, DEFAULT_ROUTE));
paul718e3742002-12-13 20:15:29 +0000593 return CMD_SUCCESS;
594 }
595
paul68980082003-03-25 05:07:42 +0000596 ospf->default_originate = originate;
597 ospf->dmetric[DEFAULT_ROUTE].type = mtype;
598 ospf->dmetric[DEFAULT_ROUTE].value = mvalue;
paul718e3742002-12-13 20:15:29 +0000599
600 zclient_redistribute_default_set (zclient);
paulcf795c52003-06-19 02:13:25 +0000601
paul718e3742002-12-13 20:15:29 +0000602 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
603 zlog_info ("Redistribute[DEFAULT]: Start Type[%d], Metric[%d]",
paulcf795c52003-06-19 02:13:25 +0000604 metric_type (ospf, DEFAULT_ROUTE),
605 metric_value (ospf, DEFAULT_ROUTE));
paul718e3742002-12-13 20:15:29 +0000606
paul68980082003-03-25 05:07:42 +0000607 if (ospf->router_id.s_addr == 0)
608 ospf->external_origin |= (1 << DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +0000609 else
610 thread_add_timer (master, ospf_default_originate_timer,
paulcf795c52003-06-19 02:13:25 +0000611 &ospf->default_originate, 1);
paul718e3742002-12-13 20:15:29 +0000612
paul68980082003-03-25 05:07:42 +0000613 ospf_asbr_status_update (ospf, ++ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000614
615 return CMD_SUCCESS;
616}
617
618int
paul020709f2003-04-04 02:44:16 +0000619ospf_redistribute_default_unset (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +0000620{
621 if (!ospf_is_type_redistributed (DEFAULT_ROUTE))
622 return CMD_SUCCESS;
623
paul68980082003-03-25 05:07:42 +0000624 ospf->default_originate = DEFAULT_ORIGINATE_NONE;
625 ospf->dmetric[DEFAULT_ROUTE].type = -1;
626 ospf->dmetric[DEFAULT_ROUTE].value = -1;
paul718e3742002-12-13 20:15:29 +0000627
628 zclient_redistribute_default_unset (zclient);
629
630 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
631 zlog_info ("Redistribute[DEFAULT]: Stop");
paulcf795c52003-06-19 02:13:25 +0000632
paul68980082003-03-25 05:07:42 +0000633 ospf_asbr_status_update (ospf, --ospf->redistribute);
paul718e3742002-12-13 20:15:29 +0000634
635 return CMD_SUCCESS;
636}
637
638int
paul020709f2003-04-04 02:44:16 +0000639ospf_external_lsa_originate_check (struct ospf *ospf,
paulcf795c52003-06-19 02:13:25 +0000640 struct external_info *ei)
paul718e3742002-12-13 20:15:29 +0000641{
642 /* If prefix is multicast, then do not originate LSA. */
643 if (IN_MULTICAST (htonl (ei->p.prefix.s_addr)))
644 {
645 zlog_info ("LSA[Type5:%s]: Not originate AS-external-LSA, "
paulcf795c52003-06-19 02:13:25 +0000646 "Prefix belongs multicast", inet_ntoa (ei->p.prefix));
paul718e3742002-12-13 20:15:29 +0000647 return 0;
648 }
649
650 /* Take care of default-originate. */
651 if (is_prefix_default (&ei->p))
paul68980082003-03-25 05:07:42 +0000652 if (ospf->default_originate == DEFAULT_ORIGINATE_NONE)
paul718e3742002-12-13 20:15:29 +0000653 {
paulcf795c52003-06-19 02:13:25 +0000654 zlog_info ("LSA[Type5:0.0.0.0]: Not originate AS-exntenal-LSA "
655 "for default");
656 return 0;
paul718e3742002-12-13 20:15:29 +0000657 }
658
659 return 1;
660}
661
662/* If connected prefix is OSPF enable interface, then do not announce. */
663int
paulcf795c52003-06-19 02:13:25 +0000664ospf_distribute_check_connected (struct ospf *ospf, struct external_info *ei)
paul718e3742002-12-13 20:15:29 +0000665{
666 struct route_node *rn;
667
paul68980082003-03-25 05:07:42 +0000668 for (rn = route_top (ospf->networks); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +0000669 if (rn->info != NULL)
paulcf795c52003-06-19 02:13:25 +0000670 if (prefix_match (&rn->p, (struct prefix *) &ei->p))
671 {
672 route_unlock_node (rn);
673 return 0;
674 }
paul718e3742002-12-13 20:15:29 +0000675
676 return 1;
677}
678
679/* return 1 if external LSA must be originated, 0 otherwise */
680int
paul68980082003-03-25 05:07:42 +0000681ospf_redistribute_check (struct ospf *ospf,
paulcf795c52003-06-19 02:13:25 +0000682 struct external_info *ei, int *changed)
paul718e3742002-12-13 20:15:29 +0000683{
684 struct route_map_set_values save_values;
685 struct prefix_ipv4 *p = &ei->p;
686 u_char type = is_prefix_default (&ei->p) ? DEFAULT_ROUTE : ei->type;
paulcf795c52003-06-19 02:13:25 +0000687
paul718e3742002-12-13 20:15:29 +0000688 if (changed)
689 *changed = 0;
690
paul020709f2003-04-04 02:44:16 +0000691 if (!ospf_external_lsa_originate_check (ospf, ei))
paul718e3742002-12-13 20:15:29 +0000692 return 0;
693
694 /* Take care connected route. */
paul68980082003-03-25 05:07:42 +0000695 if (type == ZEBRA_ROUTE_CONNECT &&
696 !ospf_distribute_check_connected (ospf, ei))
paul718e3742002-12-13 20:15:29 +0000697 return 0;
698
paul020709f2003-04-04 02:44:16 +0000699 if (!DEFAULT_ROUTE_TYPE (type) && DISTRIBUTE_NAME (ospf, type))
paul718e3742002-12-13 20:15:29 +0000700 /* distirbute-list exists, but access-list may not? */
paul020709f2003-04-04 02:44:16 +0000701 if (DISTRIBUTE_LIST (ospf, type))
702 if (access_list_apply (DISTRIBUTE_LIST (ospf, type), p) == FILTER_DENY)
paulcf795c52003-06-19 02:13:25 +0000703 {
704 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
705 zlog_info ("Redistribute[%s]: %s/%d filtered by ditribute-list.",
706 LOOKUP (ospf_redistributed_proto, type),
707 inet_ntoa (p->prefix), p->prefixlen);
708 return 0;
709 }
paul718e3742002-12-13 20:15:29 +0000710
711 save_values = ei->route_map_set;
712 ospf_reset_route_map_set_values (&ei->route_map_set);
paulcf795c52003-06-19 02:13:25 +0000713
paul718e3742002-12-13 20:15:29 +0000714 /* apply route-map if needed */
paul020709f2003-04-04 02:44:16 +0000715 if (ROUTEMAP_NAME (ospf, type))
paul718e3742002-12-13 20:15:29 +0000716 {
717 int ret;
718
paulcf795c52003-06-19 02:13:25 +0000719 ret = route_map_apply (ROUTEMAP (ospf, type), (struct prefix *) p,
720 RMAP_OSPF, ei);
paul718e3742002-12-13 20:15:29 +0000721
722 if (ret == RMAP_DENYMATCH)
paulcf795c52003-06-19 02:13:25 +0000723 {
724 ei->route_map_set = save_values;
725 if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
726 zlog_info ("Redistribute[%s]: %s/%d filtered by route-map.",
727 LOOKUP (ospf_redistributed_proto, type),
728 inet_ntoa (p->prefix), p->prefixlen);
729 return 0;
730 }
731
paul718e3742002-12-13 20:15:29 +0000732 /* check if 'route-map set' changed something */
733 if (changed)
paulcf795c52003-06-19 02:13:25 +0000734 *changed = !ospf_route_map_set_compare (&ei->route_map_set,
735 &save_values);
paul718e3742002-12-13 20:15:29 +0000736 }
737
738 return 1;
739}
740
741/* OSPF route-map set for redistribution */
742void
paul020709f2003-04-04 02:44:16 +0000743ospf_routemap_set (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000744{
paul020709f2003-04-04 02:44:16 +0000745 if (ROUTEMAP_NAME (ospf, type))
746 free (ROUTEMAP_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000747
paul020709f2003-04-04 02:44:16 +0000748 ROUTEMAP_NAME (ospf, type) = strdup (name);
749 ROUTEMAP (ospf, type) = route_map_lookup_by_name (name);
paul718e3742002-12-13 20:15:29 +0000750}
751
752void
paul020709f2003-04-04 02:44:16 +0000753ospf_routemap_unset (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000754{
paul020709f2003-04-04 02:44:16 +0000755 if (ROUTEMAP_NAME (ospf, type))
756 free (ROUTEMAP_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000757
paul020709f2003-04-04 02:44:16 +0000758 ROUTEMAP_NAME (ospf, type) = NULL;
759 ROUTEMAP (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000760}
761
762/* Zebra route add and delete treatment. */
763int
764ospf_zebra_read_ipv4 (int command, struct zclient *zclient,
paulcf795c52003-06-19 02:13:25 +0000765 zebra_size_t length)
paul718e3742002-12-13 20:15:29 +0000766{
767 struct stream *s;
768 struct zapi_ipv4 api;
769 unsigned long ifindex;
770 struct in_addr nexthop;
771 struct prefix_ipv4 p;
772 struct external_info *ei;
paul020709f2003-04-04 02:44:16 +0000773 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000774
775 s = zclient->ibuf;
776 ifindex = 0;
777 nexthop.s_addr = 0;
778
779 /* Type, flags, message. */
780 api.type = stream_getc (s);
781 api.flags = stream_getc (s);
782 api.message = stream_getc (s);
783
784 /* IPv4 prefix. */
785 memset (&p, 0, sizeof (struct prefix_ipv4));
786 p.family = AF_INET;
787 p.prefixlen = stream_getc (s);
788 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
789
790 /* Nexthop, ifindex, distance, metric. */
791 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
792 {
793 api.nexthop_num = stream_getc (s);
794 nexthop.s_addr = stream_get_ipv4 (s);
795 }
796 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
797 {
798 api.ifindex_num = stream_getc (s);
799 ifindex = stream_getl (s);
800 }
801 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
802 api.distance = stream_getc (s);
803 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
804 api.metric = stream_getl (s);
805
paul020709f2003-04-04 02:44:16 +0000806 ospf = ospf_lookup ();
807 if (ospf == NULL)
808 return 0;
809
paul718e3742002-12-13 20:15:29 +0000810 if (command == ZEBRA_IPV4_ROUTE_ADD)
811 {
paul7021c422003-07-15 12:52:22 +0000812 /* XXX|HACK|TODO|FIXME:
813 * ignore reject/blackhole routes
814 * need a better generalised solution for these types
815 * really.
816 */
817 if ( CHECK_FLAG (api.flags, ZEBRA_FLAG_BLACKHOLE)
818 || CHECK_FLAG (api.flags, ZEBRA_FLAG_REJECT))
819 return 0;
820
paul718e3742002-12-13 20:15:29 +0000821 ei = ospf_external_info_add (api.type, p, ifindex, nexthop);
822
paul68980082003-03-25 05:07:42 +0000823 if (ospf->router_id.s_addr == 0)
paulcf795c52003-06-19 02:13:25 +0000824 /* Set flags to generate AS-external-LSA originate event
825 for each redistributed protocols later. */
826 ospf->external_origin |= (1 << api.type);
paul718e3742002-12-13 20:15:29 +0000827 else
paulcf795c52003-06-19 02:13:25 +0000828 {
829 if (ei)
830 {
831 if (is_prefix_default (&p))
832 ospf_external_lsa_refresh_default (ospf);
833 else
834 {
835 struct ospf_lsa *current;
paul718e3742002-12-13 20:15:29 +0000836
paulcf795c52003-06-19 02:13:25 +0000837 current = ospf_external_info_find_lsa (ospf, &ei->p);
838 if (!current)
839 ospf_external_lsa_originate (ospf, ei);
840 else if (IS_LSA_MAXAGE (current))
841 ospf_external_lsa_refresh (ospf, current,
842 ei, LSA_REFRESH_FORCE);
843 else
844 zlog_warn ("ospf_zebra_read_ipv4() : %s already exists",
845 inet_ntoa (p.prefix));
846 }
847 }
848 }
paul718e3742002-12-13 20:15:29 +0000849 }
paulcf795c52003-06-19 02:13:25 +0000850 else /* if (command == ZEBRA_IPV4_ROUTE_DELETE) */
paul718e3742002-12-13 20:15:29 +0000851 {
852 ospf_external_info_delete (api.type, p);
paul7021c422003-07-15 12:52:22 +0000853 if (is_prefix_default (&p))
paulcf795c52003-06-19 02:13:25 +0000854 ospf_external_lsa_refresh_default (ospf);
paul7021c422003-07-15 12:52:22 +0000855 else
856 ospf_external_lsa_flush (ospf, api.type, &p, ifindex, nexthop);
paul718e3742002-12-13 20:15:29 +0000857 }
858
859 return 0;
860}
paul718e3742002-12-13 20:15:29 +0000861
paulcf795c52003-06-19 02:13:25 +0000862
paul718e3742002-12-13 20:15:29 +0000863int
paul68980082003-03-25 05:07:42 +0000864ospf_distribute_list_out_set (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000865{
866 /* Lookup access-list for distribute-list. */
paul020709f2003-04-04 02:44:16 +0000867 DISTRIBUTE_LIST (ospf, type) = access_list_lookup (AFI_IP, name);
paul718e3742002-12-13 20:15:29 +0000868
869 /* Clear previous distribute-name. */
paul020709f2003-04-04 02:44:16 +0000870 if (DISTRIBUTE_NAME (ospf, type))
871 free (DISTRIBUTE_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +0000872
873 /* Set distribute-name. */
paul020709f2003-04-04 02:44:16 +0000874 DISTRIBUTE_NAME (ospf, type) = strdup (name);
paul718e3742002-12-13 20:15:29 +0000875
876 /* If access-list have been set, schedule update timer. */
paul020709f2003-04-04 02:44:16 +0000877 if (DISTRIBUTE_LIST (ospf, type))
paul68980082003-03-25 05:07:42 +0000878 ospf_distribute_list_update (ospf, type);
paul718e3742002-12-13 20:15:29 +0000879
880 return CMD_SUCCESS;
881}
882
883int
paul68980082003-03-25 05:07:42 +0000884ospf_distribute_list_out_unset (struct ospf *ospf, int type, char *name)
paul718e3742002-12-13 20:15:29 +0000885{
886 /* Schedule update timer. */
paul020709f2003-04-04 02:44:16 +0000887 if (DISTRIBUTE_LIST (ospf, type))
paul68980082003-03-25 05:07:42 +0000888 ospf_distribute_list_update (ospf, type);
paul718e3742002-12-13 20:15:29 +0000889
890 /* Unset distribute-list. */
paul020709f2003-04-04 02:44:16 +0000891 DISTRIBUTE_LIST (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000892
893 /* Clear distribute-name. */
paul020709f2003-04-04 02:44:16 +0000894 if (DISTRIBUTE_NAME (ospf, type))
895 free (DISTRIBUTE_NAME (ospf, type));
paulcf795c52003-06-19 02:13:25 +0000896
paul020709f2003-04-04 02:44:16 +0000897 DISTRIBUTE_NAME (ospf, type) = NULL;
paul718e3742002-12-13 20:15:29 +0000898
899 return CMD_SUCCESS;
900}
901
902/* distribute-list update timer. */
903int
904ospf_distribute_list_update_timer (struct thread *thread)
905{
906 struct route_node *rn;
907 struct external_info *ei;
908 struct route_table *rt;
909 struct ospf_lsa *lsa;
910 u_char type;
paul020709f2003-04-04 02:44:16 +0000911 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000912
913 type = (int) THREAD_ARG (thread);
914 rt = EXTERNAL_INFO (type);
915
paul020709f2003-04-04 02:44:16 +0000916 ospf = ospf_lookup ();
917 if (ospf == NULL)
918 return 0;
919
paul68980082003-03-25 05:07:42 +0000920 ospf->t_distribute_update = NULL;
paul718e3742002-12-13 20:15:29 +0000921
922 zlog_info ("Zebra[Redistribute]: distribute-list update timer fired!");
923
924 /* foreach all external info. */
925 if (rt)
926 for (rn = route_top (rt); rn; rn = route_next (rn))
927 if ((ei = rn->info) != NULL)
paulcf795c52003-06-19 02:13:25 +0000928 {
929 if (is_prefix_default (&ei->p))
930 ospf_external_lsa_refresh_default (ospf);
931 else if ((lsa = ospf_external_info_find_lsa (ospf, &ei->p)))
932 ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_IF_CHANGED);
933 else
934 ospf_external_lsa_originate (ospf, ei);
935 }
paul718e3742002-12-13 20:15:29 +0000936 return 0;
937}
938
939#define OSPF_DISTRIBUTE_UPDATE_DELAY 5
940
941/* Update distribute-list and set timer to apply access-list. */
942void
paul68980082003-03-25 05:07:42 +0000943ospf_distribute_list_update (struct ospf *ospf, int type)
paul718e3742002-12-13 20:15:29 +0000944{
945 struct route_table *rt;
paulcf795c52003-06-19 02:13:25 +0000946
paul718e3742002-12-13 20:15:29 +0000947 /* External info does not exist. */
948 if (!(rt = EXTERNAL_INFO (type)))
949 return;
950
951 /* If exists previously invoked thread, then cancel it. */
paul68980082003-03-25 05:07:42 +0000952 if (ospf->t_distribute_update)
953 OSPF_TIMER_OFF (ospf->t_distribute_update);
paul718e3742002-12-13 20:15:29 +0000954
955 /* Set timer. */
paul68980082003-03-25 05:07:42 +0000956 ospf->t_distribute_update =
paul718e3742002-12-13 20:15:29 +0000957 thread_add_timer (master, ospf_distribute_list_update_timer,
paulcf795c52003-06-19 02:13:25 +0000958 (void *) type, OSPF_DISTRIBUTE_UPDATE_DELAY);
paul718e3742002-12-13 20:15:29 +0000959}
960
961/* If access-list is updated, apply some check. */
962void
963ospf_filter_update (struct access_list *access)
964{
paul020709f2003-04-04 02:44:16 +0000965 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +0000966 int type;
967 int abr_inv = 0;
968 struct ospf_area *area;
969 listnode node;
970
971 /* If OSPF instatnce does not exist, return right now. */
paul020709f2003-04-04 02:44:16 +0000972 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +0000973 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +0000974 return;
975
paul718e3742002-12-13 20:15:29 +0000976 /* Update distribute-list, and apply filter. */
977 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
978 {
paul020709f2003-04-04 02:44:16 +0000979 if (ROUTEMAP (ospf, type) != NULL)
paulcf795c52003-06-19 02:13:25 +0000980 {
981 /* if route-map is not NULL it may be using this access list */
982 ospf_distribute_list_update (ospf, type);
983 continue;
984 }
985
paul718e3742002-12-13 20:15:29 +0000986
paul020709f2003-04-04 02:44:16 +0000987 if (DISTRIBUTE_NAME (ospf, type))
paulcf795c52003-06-19 02:13:25 +0000988 {
989 /* Keep old access-list for distribute-list. */
990 struct access_list *old = DISTRIBUTE_LIST (ospf, type);
991
992 /* Update access-list for distribute-list. */
993 DISTRIBUTE_LIST (ospf, type) =
994 access_list_lookup (AFI_IP, DISTRIBUTE_NAME (ospf, type));
995
996 /* No update for this distribute type. */
997 if (old == NULL && DISTRIBUTE_LIST (ospf, type) == NULL)
998 continue;
999
1000 /* Schedule distribute-list update timer. */
1001 if (DISTRIBUTE_LIST (ospf, type) == NULL ||
1002 strcmp (DISTRIBUTE_NAME (ospf, type), access->name) == 0)
1003 ospf_distribute_list_update (ospf, type);
1004 }
paul718e3742002-12-13 20:15:29 +00001005 }
1006
1007 /* Update Area access-list. */
paul68980082003-03-25 05:07:42 +00001008 for (node = listhead (ospf->areas); node; nextnode (node))
paul718e3742002-12-13 20:15:29 +00001009 if ((area = getdata (node)) != NULL)
1010 {
paulcf795c52003-06-19 02:13:25 +00001011 if (EXPORT_NAME (area))
1012 {
1013 EXPORT_LIST (area) = NULL;
1014 abr_inv++;
1015 }
paul718e3742002-12-13 20:15:29 +00001016
paulcf795c52003-06-19 02:13:25 +00001017 if (IMPORT_NAME (area))
1018 {
1019 IMPORT_LIST (area) = NULL;
1020 abr_inv++;
1021 }
paul718e3742002-12-13 20:15:29 +00001022 }
1023
1024 /* Schedule ABR tasks -- this will be changed -- takada. */
paul020709f2003-04-04 02:44:16 +00001025 if (IS_OSPF_ABR (ospf) && abr_inv)
paul68980082003-03-25 05:07:42 +00001026 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001027}
paul718e3742002-12-13 20:15:29 +00001028
paulcf795c52003-06-19 02:13:25 +00001029
paul718e3742002-12-13 20:15:29 +00001030struct ospf_distance *
1031ospf_distance_new ()
1032{
1033 struct ospf_distance *new;
1034 new = XMALLOC (MTYPE_OSPF_DISTANCE, sizeof (struct ospf_distance));
1035 memset (new, 0, sizeof (struct ospf_distance));
1036 return new;
1037}
1038
1039void
1040ospf_distance_free (struct ospf_distance *odistance)
1041{
1042 XFREE (MTYPE_OSPF_DISTANCE, odistance);
1043}
1044
1045int
paul020709f2003-04-04 02:44:16 +00001046ospf_distance_set (struct vty *vty, struct ospf *ospf, char *distance_str,
paulcf795c52003-06-19 02:13:25 +00001047 char *ip_str, char *access_list_str)
paul718e3742002-12-13 20:15:29 +00001048{
1049 int ret;
1050 struct prefix_ipv4 p;
1051 u_char distance;
1052 struct route_node *rn;
1053 struct ospf_distance *odistance;
1054
1055 ret = str2prefix_ipv4 (ip_str, &p);
1056 if (ret == 0)
1057 {
1058 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
1059 return CMD_WARNING;
1060 }
1061
1062 distance = atoi (distance_str);
1063
1064 /* Get OSPF distance node. */
paul68980082003-03-25 05:07:42 +00001065 rn = route_node_get (ospf->distance_table, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +00001066 if (rn->info)
1067 {
1068 odistance = rn->info;
1069 route_unlock_node (rn);
1070 }
1071 else
1072 {
1073 odistance = ospf_distance_new ();
1074 rn->info = odistance;
1075 }
1076
1077 /* Set distance value. */
1078 odistance->distance = distance;
1079
1080 /* Reset access-list configuration. */
1081 if (odistance->access_list)
1082 {
1083 free (odistance->access_list);
1084 odistance->access_list = NULL;
1085 }
1086 if (access_list_str)
1087 odistance->access_list = strdup (access_list_str);
1088
1089 return CMD_SUCCESS;
1090}
1091
1092int
paul020709f2003-04-04 02:44:16 +00001093ospf_distance_unset (struct vty *vty, struct ospf *ospf, char *distance_str,
paulcf795c52003-06-19 02:13:25 +00001094 char *ip_str, char *access_list_str)
paul718e3742002-12-13 20:15:29 +00001095{
1096 int ret;
1097 struct prefix_ipv4 p;
1098 u_char distance;
1099 struct route_node *rn;
1100 struct ospf_distance *odistance;
1101
1102 ret = str2prefix_ipv4 (ip_str, &p);
1103 if (ret == 0)
1104 {
1105 vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
1106 return CMD_WARNING;
1107 }
1108
1109 distance = atoi (distance_str);
1110
paulcf795c52003-06-19 02:13:25 +00001111 rn = route_node_lookup (ospf->distance_table, (struct prefix *) &p);
1112 if (!rn)
paul718e3742002-12-13 20:15:29 +00001113 {
1114 vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE);
1115 return CMD_WARNING;
1116 }
1117
1118 odistance = rn->info;
1119
1120 if (odistance->access_list)
1121 free (odistance->access_list);
1122 ospf_distance_free (odistance);
1123
1124 rn->info = NULL;
1125 route_unlock_node (rn);
1126 route_unlock_node (rn);
1127
1128 return CMD_SUCCESS;
1129}
1130
1131void
paul68980082003-03-25 05:07:42 +00001132ospf_distance_reset (struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00001133{
1134 struct route_node *rn;
1135 struct ospf_distance *odistance;
1136
paul68980082003-03-25 05:07:42 +00001137 for (rn = route_top (ospf->distance_table); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00001138 if ((odistance = rn->info) != NULL)
1139 {
paulcf795c52003-06-19 02:13:25 +00001140 if (odistance->access_list)
1141 free (odistance->access_list);
1142 ospf_distance_free (odistance);
1143 rn->info = NULL;
1144 route_unlock_node (rn);
paul718e3742002-12-13 20:15:29 +00001145 }
1146}
1147
1148u_char
1149ospf_distance_apply (struct prefix_ipv4 *p, struct ospf_route *or)
1150{
paul020709f2003-04-04 02:44:16 +00001151 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00001152
paul020709f2003-04-04 02:44:16 +00001153 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00001154 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00001155 return 0;
1156
paul68980082003-03-25 05:07:42 +00001157 if (ospf->distance_intra)
paul718e3742002-12-13 20:15:29 +00001158 if (or->path_type == OSPF_PATH_INTRA_AREA)
paul68980082003-03-25 05:07:42 +00001159 return ospf->distance_intra;
paul718e3742002-12-13 20:15:29 +00001160
paul68980082003-03-25 05:07:42 +00001161 if (ospf->distance_inter)
paul718e3742002-12-13 20:15:29 +00001162 if (or->path_type == OSPF_PATH_INTER_AREA)
paul68980082003-03-25 05:07:42 +00001163 return ospf->distance_inter;
paul718e3742002-12-13 20:15:29 +00001164
paul68980082003-03-25 05:07:42 +00001165 if (ospf->distance_external)
paul718e3742002-12-13 20:15:29 +00001166 if (or->path_type == OSPF_PATH_TYPE1_EXTERNAL
paulcf795c52003-06-19 02:13:25 +00001167 || or->path_type == OSPF_PATH_TYPE2_EXTERNAL)
paul68980082003-03-25 05:07:42 +00001168 return ospf->distance_external;
paulcf795c52003-06-19 02:13:25 +00001169
paul68980082003-03-25 05:07:42 +00001170 if (ospf->distance_all)
1171 return ospf->distance_all;
paul718e3742002-12-13 20:15:29 +00001172
1173 return 0;
1174}
1175
1176void
1177ospf_zebra_init ()
1178{
1179 /* Allocate zebra structure. */
1180 zclient = zclient_new ();
1181 zclient_init (zclient, ZEBRA_ROUTE_OSPF);
1182 zclient->interface_add = ospf_interface_add;
1183 zclient->interface_delete = ospf_interface_delete;
1184 zclient->interface_up = ospf_interface_state_up;
1185 zclient->interface_down = ospf_interface_state_down;
1186 zclient->interface_address_add = ospf_interface_address_add;
1187 zclient->interface_address_delete = ospf_interface_address_delete;
1188 zclient->ipv4_route_add = ospf_zebra_read_ipv4;
1189 zclient->ipv4_route_delete = ospf_zebra_read_ipv4;
1190
1191 access_list_add_hook (ospf_filter_update);
1192 access_list_delete_hook (ospf_filter_update);
1193}