blob: 13faf906cdc58b97e26513754db0ef72951dddfc [file] [log] [blame]
paulf9ad9372005-10-21 00:45:17 +000012005-10-21 Paul Jakma <paul.jakma@sun.com>
2
3 * (general) OSPF fast, sub-second hello and 1s dead-interval
4 support.
5 * ospf_dump.c: (ospf_timer_dump) Print out milliseconds too.
6 Callers typically specify a length of 9, so most see
7 millisecs unless they specify the additional length.
8 * ospf_interface.h: (struct ospf_interface) new interface param,
9 fast_hello.
10 * ospf_interface.c: (ospf_if_table_lookup) add brackets,
11 gcc warning fix.
12 (ospf_new_if_params) Initialise fast_hello param.
13 (ospf_free_if_params) Check whether fast_hello is configured.
14 (ospf_if_new_hook) set fast_hello to default.
15 * ospf_ism.h: Wrap OSPF_ISM_TIMER_ON inside do {} while (0) to
16 prevent funny side-effects from its if statement when this
17 macro is used conditionally by other macros.
18 (OSPF_ISM_TIMER_MSEC_ON) new macro, set in milliseconds.
19 (OSPF_HELLO_TIMER_ON) new macro to set hello timer according
20 to whether fast_hello is set.
21 * ospf_ism.c: Update all setting of the hello timer to use
22 either OSPF_ISM_TIMER_MSEC_ON or OSPF_HELLO_TIMER_ON. The
23 former is used when hello is to be sent immediately.
24 * ospf_nsm.c: ditto
25 * ospf_packet.c: (ospf_hello) hello-interval is not checked
26 for mismatch if fast_hello is set.
27 (ospf_read) Annoying nit, fix "no ospf_interface" to be debug
28 rather than a warning, as it can be perfectly normal to
29 receive packets when logical subnets are used.
30 (ospf_make_hello) Set hello-interval to 0 if fast-hellos are
31 configured.
32 * ospf_vty.c: (ospf_auto_cost_reference_bandwidth) annoying
33 nit, don't vty_out if this command is given, it gets tired
34 quick.
35 (show_ip_ospf_interface_sub) Print the hello-interval
36 according to whether fast-hello is set or not.
37 Print the extra 5 millisec characters from (ospf_timer_dump)
38 if fast-hello is configured.
39 (ospf_vty_dead_interval_set) new function, common to all
40 forms of dead-interval command, to set dead-interval and
41 fast-hello correctly. If a dead-interval is given, unset
42 fast-hello, else if a hello-multiplier is set, set
43 dead-interval to 1 and fast-hello to given multiplier.
44 (ip_ospf_dead_interval_addr_cmd) use
45 ospf_vty_dead_interval_set().
46 (ip_ospf_dead_interval_minimal_addr_cmd) ditto.
47 (no_ip_ospf_dead_interval) Unset fast-hello.
48 (no_ip_ospf_hello_interval) Bug-fix, unset of hello-interval
49 should set it to OSPF_HELLO_INTERVAL_DEFAULT, not
50 OSPF_ROUTER_DEAD_INTERVAL_DEFAULT.
51 (config_write_interface) Write out fast-hello.
52 (ospf_config_write) Write a comment about
53 "auto-cost reference-bandwidth" having to be equal on all
54 routers. Hopefully just as noticeable as old practice of
55 writing to vty, but less annoying.
56 (ospf_vty_if_init) install the two new dead-interval
57 commands.
58 * ospfd.h: Add defines for OSPF_ROUTER_DEAD_INTERVAL_MINIMAL
59 and OSPF_FAST_HELLO_DEFAULT.
60
pauleb3da6d2005-10-18 04:20:33 +0000612005-10-18 Paul Jakma <paul.jakma@sun.com>
62
63 * (general) SPF memory management cleanup and fix for rare
64 double-free bug.
65 * ospf_spf.h: (struct vertex_parent) New struct to hold parent
66 specific data, eg the backlink and the parent vertex pointer,
67 and point to the appropriate general struct vertex_nexthop.
68 (struct vertex_nexthop) remove parent vertex pointer, so
69 this struct can be shared across vertices.
70 (struct vertex) rename list child to list children. Remove
71 list of nexthops, replace with list of vertex_parents.
72 * ospf_spf.c: (update_stat) trivial, remove cast from void *.
73 (vertex_nexthop_new) remove init of parent - field is gone
74 from struct vertex_nexthop.
75 (ospf_canonical_nexthops_free) Remove the canonical
76 vertex_nexthop memory objects. These are the vertex_nexthops
77 attached to the first level of router vertices from the root.
78 (vertex_parent_new) new function, create a vertex_parent.
79 (vertex_parent_free) ditto, but free it.
80 (ospf_vertex_new) Update to match changes to struct vertex.
81 (ospf_vertex_free) Recursively free a struct vertex and its
82 children. The parent list is used as a reference count.
83 vertex_nexthops must be free seperately, if required.
84 (ospf_vertex_dump) update to match struct vertex changes.
85 Print out backlink of parents too.
86 (ospf_vertex_add_parent) ditto.
87 (ospf_lsa_has_link) update comment.
88 (ospf_nexthop_add_unique) removed, not needed anymore.
89 (ospf_nexthop_merge) ditto.
90 (ospf_spf_consider_nexthop) renamed to ospf_spf_add_parent.
91 Simplified to just create vertex_parent and add it.
92 (ospf_spf_flush_parents) new function, flush out the parent
93 list.
94 (ospf_nexthop_calculation) Take the relevant route_lsa_link
95 as an argument, which simplifies things and removes the need
96 for the hack in ospf_nexthop_add_unique - ospf_spf_next
97 already knew exactly which link the cost calculated was for.
98 Update to match struct vertex changes too.
99 (ospf_spf_next) Don't create a vertex for W unnecessarily, if
100 it's there's a vertex already created for W, use it, and
101 hence there's no need to free it either.
102 Update some manipulation/comparisons of distance to match.
103 Flush the parent list if a lower cost path is found.
104 (ospf_spf_route_free) unused, removed.
105 (ospf_spf_dump) match the struct vertex changes, and dump the
106 ifname if possible.
107 (ospf_spf_calculate) At end of SPF, free the canonical nexthops
108 and call ospf_vertex_free on the root vertex to free the
109 entire tree.
110 * ospf_interface.c: (ospf_vl_set_params) match struct vertex
111 changes.
112 * ospf_route.c: (ospf_intra_route_add) ditto
113 (ospf_route_copy_nexthops_from_vertex) ditto
114
paul36238142005-10-11 04:12:54 +00001152005-10-11 Paul Jakma <paul.jakma@sun.com>
116
117 * ospf_api.c: sign warnings.
118 * ospf_apiserver.c: sign warning and convert all the struct
119 in_addr initialisations so as not to make assumptions about
120 how this struct is organised, initialise the s_addr member
121 explicitely.
122 * ospf_packet.c: Add const qualifier to auth_key.
123
vincent77df1f72005-10-06 07:46:22 +00001242005-10-06 Alain Ritoux <alain.ritoux@6wind.com>
125
126 * ospf_snmp.c: Avoid mixing interface and ospf_interface objects
127 which now allows snmpwalk to work with ospfIfTable and
128 also with ospfIfMetricTable
129
ajsf52d13c2005-10-01 17:38:06 +00001302005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
131
132 * ospf_dump.c: Remove local hard-coded table ospf_redistributed_proto.
133 (ospf_redist_string) New function implemented using new library
134 function zebra_route_string(). Note that there are a few differences
135 in the output that will result: the new function returns strings
136 that are lower-case, whereas the old table was mixed case. Also,
137 the old table mapped ZEBRA_ROUTE_OSPF6 to "OSPFv3", whereas the
138 new function returns "ospf6".
139 * ospfd.h: Remove extern struct message ospf_redistributed_proto[],
140 and add extern const char *ospf_redist_string(u_int route_type)
141 instead.
142 * ospf_asbr.c: (ospf_external_info_add) In two messages, use
143 ospf_redist_string instead of LOOKUP(ospf_redistributed_proto).
144 * ospf_vty.c: Remove local hard-coded table distribute_str.
145 (config_write_ospf_redistribute,config_write_ospf_distribute): Use
146 new library function zebra_route_string() instead of distribute_str[].
147 * ospf_zebra.c: (ospf_redistribute_set,ospf_redistribute_unset,
148 ospf_redistribute_default_set,ospf_redistribute_check)
149 In debug messages, use ospf_redist_string() instead of
150 LOOKUP(ospf_redistributed_proto).
151
jardin6638c1a2005-10-01 00:08:54 +00001522005-09-30 Vincent Jardin <vincent.jardin@6wind.com>
153
154 * ospf_dump.c, ospf_ia.c, ospf_spf.c, ospf_ase.c:
155 remove unused DEBUG
156
vincentba682532005-09-29 13:52:57 +00001572005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
158
vincent5e4914c2005-09-29 16:34:30 +0000159 * ospf_ism.c: generate SNMP traps on Interface state change
160 * ospf_nsm.c: generate SNMP traps on Neighbour state change
161 * ospf_snmp.[ch]: support for SNMP traps for interface and neighbours.
162
1632005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
164
vincentba682532005-09-29 13:52:57 +0000165 * ospf_vty.c: forece default route LSA to be re_issued whenever
166 cost is changed ( [no] ip ospf area XXX default-cost YYY)
167 Support ignore-mtu option
168 * ospfd.h: define OSPF_MTU_IGNORE_DEFAULT
169 * ospf_packet.c: support ignore-mtu option
170 * ospf_interface.h: field added for skipping MTU check
171 * ospf_interface.c: fix memory leak in ospf_crypt_key_delete()
172 Set mtu_ignore field to default value
173 * ospf_abr.[ch]: export ospf_abr_announce_network_to_area()
174 * ospf_ism.h: add MACRO to convert internal ISM status into SNMP
175 correct values
176 * ospf_snmp.c: add sanity check on LSA type in lsdb_lookup_next()
177 convert OSPFIFSTATE internal status into SNMP values
178
vincentc1a03d42005-09-28 15:47:44 +00001792005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
180
181 * ospf_packet.c: use new md5 API
182
ajs5339cfd2005-09-19 13:28:05 +00001832005-09-19 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
184
185 * ospf_lsa.h: (ospf_external_lsa_flush) Comment out the 5th argument
186 (nexthop) since it is not used in the function (except inside
187 some commented-out code).
188 * ospf_lsa.c: (ospf_external_lsa_flush,ospf_external_lsa_refresh)
189 Comment out the 5th argument to ospf_external_lsa_flush.
190 * ospf_asbr.c: (ospf_redistribute_withdraw) Comment out 5th arg
191 to ospf_external_lsa_flush.
192 * ospf_vty.c: (no_ospf_default_information_originate) Eliminate 5th
193 uninitialized nexthop arg to ospf_external_lsa_flush.
194 * ospf_zebra.c: (ospf_zebra_read_ipv4) Comment out 5th arg
195 to ospf_external_lsa_flush.
196 * ospfd.c: (ospf_network_set) Comment out 5th arg
197 to ospf_external_lsa_flush.
198
ajse6a0bf92005-09-17 18:53:38 +00001992005-09-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
200
201 * ospf_opaque.c:
202 (ospf_opaque_lsa_refresh_schedule,ospf_opaque_lsa_flush_schedule)
203 No need to call ospf_lookup(), just use lsa0->area->ospf instead.
204
hassobb5b7552005-08-21 20:01:15 +00002052005-08-21 Hasso Tepper <hasso at quagga.net>
206
207 * ospf_vty.c: Make "show ip ospf neighbor xxx" commands work.
208 Interface should be specified by name now.
209
hasso54bedb52005-08-17 13:31:47 +00002102005-08-17 Hasso Tepper <hasso at quagga.net>
211
212 * ospf_vty.c: Check carefully if interface exists before trying to
213 print info about it.
214
hasso01018ce2005-08-05 07:40:15 +00002152005-08-05 Hasso Tepper <hasso at quagga.net>
216
217 * ospf_zebra.c: Don't assert/stop before type == ZEBRA_ROUTE_MAX if
218 dealing with routemaps. There is ospf->route_map[ZEBRA_ROUTE_MAX]
219 for default-information.
220
paulc8987752005-07-26 06:07:22 +00002212005-07-26 Paul Jakma <paul.jakma@sun.com>
222
223 * ospf_abr.c: (ospf_abr_announce_network_to_area) SET_FLAG
224 should be on lsa not old, which may be freed for one thing,
225 obviously.
226
pauld57834f2005-07-12 20:04:22 +00002272005-07-12 Paul Jakma <paul.jakma@sun.com>
228
229 * ospfd.h: add OSPF_ABR_DEFAULT for convenience, make
230 OSPF_ABR_CISCO be the default ABR type.
231 * ospfd.c: (ospf_new) initialise abr_type to OSPF_ABR_DEFAULT
232 * ospf_vty.c: (no_ospf_abr_type_cmd) add standard as a negatable
233 abr_type. default abr_type should be OSPF_ABR_DEFAULT.
234 (ospf_config_write) test whether default abr_type against
235 OSPF_ABR_DEFAULT, rather than any specific ABR_TYPE.
236
hasso8469bd72005-06-20 20:50:10 +00002372005-06-20 Hasso Tepper <hasso at quagga.net>
hassof4833e92005-06-20 20:42:26 +0000238
239 * ospf_nsm.c: Make database exchange for NSSA database work.
240
paul7461d452005-06-13 13:57:16 +00002412005-06-13 Paul Jakma <paul.jakma@sun.com>
242
243 * ospf_spf.c: Try get more information on a SEGV under
244 ospf_spf_vertex_add_parent.
245 (ospf_vertex_free) NULL out the child and nexthop lists
246 (ospf_vertex_add_parent) nexthop and child can not be NULL
247 vertex_nexthop's parent->child list can not be NULL
248 (ospf_spf_next) w and cw are per-loop iteration variables, move
249 declarations into loop body.
250
hasso1ddd7292005-06-07 19:54:04 +00002512005-06-07 Hasso Tepper <hasso at quagga.net>
252
253 * ospf_apiserver.c: Fix obvious error in notifying clients about ISM
254 changes - oi->ifp->status doesn't give to us info about ISM,
255 oi->state does.
256
paul7e440862005-06-01 11:20:51 +00002572005-06-01 Akihiro Mizutani <mizutani@net-chef.net>
258
259 * ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug.
260
paul500e4182005-05-26 17:11:13 +00002612005-05-26 Paul Jakma <paul.jakma@sun.com>
262
263 * ospf_abr.c: (ospf_abr_update_aggregate) Fix comment, cost bug itself
264 had been fixed long ago by Sowmini.
265
paula3387a42005-05-18 23:29:57 +00002662005-05-19 Paul Jakma <paul.jakma@sun.com>
267
268 * ospf_interface.c: (ospf_if_table_lookup) Fix a serious bug
269 a less serious one.
270 1: this function is supposed to lookup
271 entries in the oifs ospf_interface route_table and return either
272 an existing oi or NULL to indicate not found, its caller depends
273 on this, yet this function uses route_node_get which /always/
274 returns a route_node - one is created if none exists. Use
275 route_node_lookup instead. This should fix root cause of the
276 reports of the (ospf_add_to_if) assert being hit.
277 2: oi's are inserted into this table with prefixlength set to
278 /32 (indeed, it should be a hash table, not a route_table),
279 however prefixlength to lookup was not changed, if no valid entry
280 can be inserted other than /32, then nothng but /32 should be
281 looked up. This possibly only worked by fluke..
282 Fix confirmed by 2 reporters (one list, one IRC), definitely a
283 backport candidate once it has been incubated in HEAD for a while.
284 Thanks to Patrick Friedel and Ivan Warren for testing.
285
paul69310a62005-05-11 18:09:59 +00002862005-05-11 Paul Jakma <paul.jakma@sun.com>
287
288 * (general) Fix memory leaks in opaque AS-scope LSAs, reported and
289 with much debugging done by by scott collins <scollins@agile.tv>.
290 * ospf_lsa.c: (ospf_discard_from_db) dont call
291 ospf_ase_unregister_external_lsa for opaque-lsa's, opaques are
292 never registered with ase in the first place.
293 * ospf_packet.c: (general) Disabuse opaque related code of its
294 tendency to try gather up things into temporary lists.
295 (ospf_ls_upd) remove the temporary lists opaque uses, call
296 opaque functions inline, just like all other types.
297 (ospf_ls_ack) ditto.
298 (ospf_recv_packet) fixup sign warning.
299 * ospf_opaque.c: (general) fix the unneeded use of lists, and
300 untwist some of the logic.
301 (ospf_opaque_self_originated_lsa_received) take a single LSA
302 as argument, not a list of them. Remove the list loop. Logic
303 otherwise unchanged.
304 (ospf_opaque_ls_ack_received) Mostly ditto. But untwist the logic,
305 move the actions up into the switch block, remove the goto's and
306 sanitise the logic near the end a bit.
307 * ospf_opaque.h: Adjust definitions of aforementioned functions
308 in ospf_opaque.c to match.
309
paul42c98192005-05-07 02:22:51 +00003102005-05-07 Yar Tikhiy <yar@comp.chem.msu.su>
311
312 * ospf_network.c: Log ifindex on multicast membership leave/join
313 events.
314
paul4dadc292005-05-06 21:37:42 +00003152005-05-06 Paul Jakma <paul.jakma@sun.com>
316
317 * (general) extern and static qualifiers added.
318 unspecified arguments in definitions fixed, typically they should
319 be 'void'.
320 function casts added for callbacks.
321 Guards added to headers which lacked them.
322 Proper headers included rather than relying on incomplete
323 definitions.
324 gcc noreturn function attribute where appropriate.
325 * ospf_opaque.c: remove the private definition of ospf_lsa's
326 ospf_lsa_refresh_delay.
327 * ospf_lsa.h: export ospf_lsa_refresh_delay
328 * ospf_packet.c: (ospf_make_md5_digest) make *auth_key const,
329 correct thing to do - removes need for the casts later.
330 * ospf_vty.c: Use vty.h's VTY_GET_INTEGER rather than ospf_vty's
331 home-brewed versions, shuts up several warnings.
332 * ospf_vty.h: remove VTY_GET_UINT32. VTY_GET_IPV4_ADDRESS and
333 VTY_GET_IPV4_PREFIX moved to lib/vty.h.
334 * ospf_zebra.c: (ospf_distribute_list_update_timer) hacky
335 overloading of the THREAD_ARG pointer should at least use
336 uintptr_t.
337
paul9e67dc22005-04-15 12:10:17 +00003382005-04-15 Zhipeng Gong <zpgong@cdc.3upsystems.com>
339
340 * ospf_abr.c: (ospf_abr_announce_network_to_area) dont forget
341 to approve LSAs for the case where metric has changed, lsa gets
342 flushed otherwise. (backport candidate).
343
ajs634f9ea2005-04-11 15:51:40 +00003442005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
345
346 * ospf_zebra.c (ospf_zebra_add): Call zclient_send_message instead
347 of writen.
348
ajsd2fc8892005-04-02 18:38:43 +00003492005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
350
ajse4319de2005-04-02 23:23:55 +0000351 * ospf_interface.h: (ospf_if_lookup_by_name) Remove declaration of a
352 function that does not exist.
353
3542005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
355
ajs21fefa92005-04-02 23:16:41 +0000356 * ospf_zebra.c: (zebra_interface_if_lookup) Must use
357 if_lookup_by_name_len.
358
3592005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
360
ajsa3491982005-04-02 22:50:38 +0000361 * ospf_interface.c: (ospf_vl_new) Use strnlen to fix call to if_create.
362
3632005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
364
ajsd2fc8892005-04-02 18:38:43 +0000365 * ospf_vty.c: (show_ip_ospf_interface_sub) Show ifindex and interface
366 flags to help with debugging.
367 * ospf_zebra.c: (ospf_interface_delete) After deleting, set ifp->ifindex
368 to IFINDEX_INTERNAL.
369 (zebra_interface_if_lookup) Make function static. Tighten up code.
370
ajsaca72fd2005-03-31 15:18:21 +00003712005-03-31 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
372
373 * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging
374 is turned on.
375
ajsfd651fa2005-03-29 16:08:16 +00003762005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
377
ajsa608bbf2005-03-29 17:03:49 +0000378 * ospf_zebra.c: (ospf_interface_state_up) If the MTU of an operative
379 interface changes, print a debug message and call ospf_if_reset()
380 to simulate down/up on the interface.
381 * ospf_interface.h: Declare new function ospf_if_reset().
382 * ospf_interface.c: (ospf_if_reset) New function to call ospf_if_down
383 and ospf_if_up for all ospf interfaces attached to an interface.
384
3852005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
386
ajs5dcbdf82005-03-29 16:13:49 +0000387 * ospf_packet.c: (ospf_write_frags) Enhance error message to
388 show MTU. Also make function static.
389 (ospf_write) Enhance error message to show interface name and MTU.
390 Also make function static.
391
3922005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
393
394 * ospf_vty.c: (show_ip_ospf_interface_sub) Display interface MTU and
395 bandwidth; this is useful for debugging problems. Also, the function
396 should be static.
ajsfd651fa2005-03-29 16:08:16 +0000397
hasso1b639042005-03-27 13:32:25 +00003982005-03-27 Hasso Tepper <hasso at quagga.net>
399
400 * ospf_snmp.c: Don't crash in snmp query if ospf instance doesn't
401 exist at all.
402
hasso343f5cc2005-03-25 19:48:40 +00004032005-03-25 Hasso Tepper <hasso at quagga.net>
404
405 * ospfd.h: Include log.h, fixes compile with gcc-4.0.
406
ajs9dbc7972005-03-13 19:27:22 +00004072005-03-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
408
409 * ospf_lsa.c: (ospf_lsa_refresh_walker) If the system clock jumps
410 backward, then current time may be less than
411 ospf->lsa_refresher_started. This was causing invalid values
412 for ospf->lsa_refresh_queue.index resulting in infinite loops.
413 Problem fixed by casting the expression to unsigned before taking
414 the modulus.
415
ajs5c333492005-02-23 15:43:01 +00004162005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
417
418 * ospfd.h: Add new field struct stream *ibuf to struct ospf.
419 * ospfd.c: (ospf_new) Check return code from ospf_sock_init.
420 Allocate ibuf using stream_new(OSPF_MAX_PACKET_SIZE+1).
421 (ospf_finish) Call stream_free(ospf->ibuf.
422 * ospf_packet.c: (ospf_read) Call stream_reset(ospf->ibuf) and then
423 pass it to ospf_recv_packet for use in receiving the packet
424 (instead of allocating a new stream for each packet received).
425 Eliminate all calls to stream_free(ibuf).
426 (ospf_recv_packet) The struct stream *ibuf is now passed in as
427 an argument. No need to use recvfrom to peek at the packet
428 header (to see how big it is), just use ospf->ibuf which is
429 always large enough (this eliminates a system call to recvfrom).
430 Therefore, no need to allocate a stream just for this packet,
431 and no need to free it when done.
432
hasso462f20d2005-02-23 11:29:02 +00004332005-02-23 Vincenzo Eramo <eramo at infocom.ing.uniroma1.it>
434
435 * ospf_lsa.h: New flag to the LSA structure for the SPF calculation.
436 * ospf_lsdb.h: Export ospf_lsdb_clean_stat() function.
437 * ospf_spf.h: Add link to the LSA stat structure into vertex.
438 * ospf_spf.c: New functions cmp() and update_stat() to manage
439 candidates. Remove ospf_spf_has_vertex(), ospf_vertex_lookup(),
440 ospf_install_candidate() and ospf_spf_register() functions not needed
441 any more. Update ospf_vertex_new(), ospf_spf_next() and
442 ospf_spf_calculate() functions to use pqueue instead of linked list.
443
hassoe40dcce2005-02-21 14:58:42 +00004442005-02-21 Hasso Tepper <hasso at quagga.net>
445
446 * ospf_ase.c: Don't show messages related to the ase calculations if
447 we are not debugging.
448
hasso306541b2005-02-19 17:58:40 +00004492005-02-19 Hasso Tepper <hasso at quagga.net>
450
451 * ospf_api.h: char isn't always signed, but it has to be it here.
452
paulfa81b712005-02-19 01:19:20 +00004532005-02-19 Paul Jakma <paul.jakma@sun.com>
454
455 * ospf_packet.c: (ospf_stream_copy) remove
456 (ospf_packet_dup) use stream_copy instead of ospf_stream_copy
457
ajs038163f2005-02-17 19:55:59 +00004582005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
459
460 * ospf_packet.c: (ospf_recv_packet) If there is somehow a runt
461 packet in the queue, it must be discarded. Improve warning messages.
462 Fix scope to static.
463 (ospf_read) Fix bug: should reset the read thread in all cases
464 to make sure we continue to get incoming messages.
465
paul658b03a2005-02-15 10:10:55 +00004662005-02-15 Paul Jakma <paul.jakma@sun.com>
467
468 * ospf_packet.c: (ospf_recv_packet) Fix silly error wrt allocating
469 ibuf. Thanks Andrew.
470
paulbfdc44a2005-02-14 23:48:42 +00004712005-02-14 Paul Jakma <paul.jakma@sun.com>
472
473 * ospf_packet.c: (ospf_recv_packet) use stream_recvmsg.
474
hasso082253f2005-02-11 08:31:54 +00004752005-02-11 Hasso Tepper <hasso at quagga.net>
476
477 * ospf_lsdb.c: Fix sum of checksums calculation.
478
ajs083ee9d2005-02-09 15:35:50 +00004792005-02-09 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
480
481 * ospf_packet.c: (ospf_write) If sendmsg fails, give more info in the
482 error message.
483
ajsba6454e2005-02-08 15:37:30 +00004842005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
485
ajs8cfde372005-02-08 15:59:16 +0000486 * ospf_interface.h: Reduce structure padding by putting new u_char
487 field multicast_memberships in a better spot (grouped with
488 other u_char fields type and state).
489
4902005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
491
ajsba6454e2005-02-08 15:37:30 +0000492 * ospf_interface.h: Improve passive_interface comment. Add new
493 multicast_memberships bitmask to struct ospf_interface to track
494 active multicast subscriptions. Declare new function
495 ospf_if_set_multicast.
496 * ospf_interface.c: (ospf_if_set_multicast) New function to configure
497 multicast memberships properly based on the current
498 multicast_memberships status and the current values of the
499 ospf_interface state, type, and passive_interface status.
500 (ospf_if_up) Remove call to ospf_if_add_allspfrouters (this is
501 now handled by ism_change_state's call to ospf_if_set_multicast).
502 (ospf_if_down) Remove call to ospf_if_drop_allspfrouters (now
503 handled by ism_change_state).
504 * ospf_ism.c: (ospf_dr_election) Remove logic to join or leave
505 the DRouters multicast group (now handled by ism_change_state's call
506 to ospf_if_set_multicast).
507 (ism_change_state) Add call to ospf_if_set_multicast to change
508 multicast memberships as necessary to reflect the new interface state.
509 * ospf_packet.c: (ospf_hello) When a Hello packet is received on a
510 passive interface: 1. Increase the severity of the error message
511 from LOG_INFO to LOG_WARNING; 2. Add more information to the error
512 message (packet destination address and interface address);
513 and 3. If the packet was sent to ospf-all-routers, then try
514 to fix the multicast group memberships.
515 (ospf_read) When a packet is received on an interface whose state
516 is ISM_Down, enhance the warning message to show the packet
517 destination address, and try to update/fix the multicast group
518 memberships if the packet was sent to a multicast address.
519 When a packet is received for ospf-designated-routers, but the
520 current interface state is not DR or BDR, then increase the
521 severity level of the error message from LOG_INFO to LOG_WARNING,
522 and try to fix the multicast group memberships.
523 * ospf_vty.c: (ospf_passive_interface) Call ospf_if_set_multicast for
524 any ospf interface that may have changed from active to passive.
525 (no_ospf_passive_interface) Call ospf_if_set_multicast for
526 any ospf interface that may have changed from passive to active.
527 (show_ip_ospf_interface_sub) Show multicast group memberships.
528
paul3a9eb092005-02-08 11:29:41 +00005292005-02-08 Paul Jakma <paul@dishone.st>
530
531 * ospf_packet.c: (various) Remove unneeded stream_set_putp abuse.
532
ajs847947f2005-02-02 18:38:48 +00005332005-02-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
534
535 * ospf_packet.c: (ospf_read) Fix bug: must check for state ISM_Down,
536 not for event ISM_InterfaceDown. And improve the message by
537 adding the interface flags.
538
ajs0b7d97d2005-01-30 17:24:02 +00005392005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
540
541 * ospf_network.c: (ospf_sock_init) Save errno before calling
542 ospfd_privs.change.
543
ajsc3eab872005-01-29 15:52:07 +00005442005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
545
546 * ospf_packet.c: (ospf_packet_add) If oi->obuf is NULL, print
547 an error message and return.
548 (ospf_read) If the interface state is ISM_InterfaceDown, issue
549 a warning message and ignore the packet.
550
gdt86f1fd92005-01-10 14:20:43 +00005512005-01-10 Greg Troxel <gdt@fnord.ir.bbn.com>
552
553 * ospf_packet.h: Remove commented out definition of
554 OSPF_MAX_PACKET; neither it or the uncommented one are used any more.
555
556 * ospf_packet.c (ospf_make_ls_upd): Leave room for authentication
557 when deciding if an update will fit.
558 (ospf_packet_authspace): Factor out calculation of size required
559 for authentication.
560 (ospf_make_db_desc): Use ospf_max_packet, not OSPF_MAX_PACKET.
561 Don't confuse readers that there is a macro.
562
ajs3dc56b52004-12-30 15:11:19 +00005632004-12-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
564
565 * ospf_network.c: Improve all setsockopt error messages to give detailed
566 information on the arguments.
567
ajsb87f7722004-12-29 20:41:26 +00005682004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
569
ajs17eaa722004-12-29 21:04:48 +0000570 * ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done"
571 messages from LOG_WARNING to LOG_INFO, since this seems to be
572 normal.
573
5742004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
575
ajsb87f7722004-12-29 20:41:26 +0000576 * ospf_packet.c: (ospf_read) Always look up the interface if
577 ospf_recv_packet returns NULL ifp, since some platforms such
578 as Solaris 8 appear to support ifindex retrieval but don't.
579
hasso1d806282004-12-22 09:43:20 +00005802004-12-22 Hasso Tepper <hasso at quagga.net>
581
582 * ospf_dump.c: Show debug configuration in vtysh.
hassoc6b87812004-12-22 13:09:59 +0000583 * ospf_vty.c: Fix "show ip ospf" output. Router can't be elected in
584 any case if it's configured as "translate-never".
hassofe71a972004-12-22 16:16:02 +0000585 * ospf_lsdb.[ch]: New function to calculate sum of checksums.
586 * ospf_vty.c: Bugfix to show really number of AS external LSAs, not
587 number of all LSAs with AS scope, this includes opaque as LSAs as
588 well, show this number separately. Show numbers and sums of
589 checksums for each type of LSAs.
590 * ospf_lsa.c: Calculate checksum before putting LSA into database.
hasso1d806282004-12-22 09:43:20 +0000591
ajsbc18d612004-12-15 15:07:19 +00005922004-12-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
593
594 * ospf_interface.h: Declare new function ospf_default_iftype.
595 * ospf_interface.c: (ospf_default_iftype) New function to centralize
596 this logic in one place.
597 * ospf_zebra.c: (ospf_interface_add) Use new function
598 ospf_default_iftype.
599 * ospf_vty.c: (no_ip_ospf_network,config_write_interface) Fix logic
600 by using new function ospf_default_iftype.
601
ajs3aa8d5f2004-12-11 18:00:06 +00006022004-12-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
603
604 * ospf_packet.c: (ospf_db_desc) Should be static, not global.
605 (ospf_hello,ospf_db_desc,ospf_ls_upd,ospf_ls_ack) Improve warning
606 messages to include identifying information (e.g. router id).
607 * ospf_nsm.c: (nsm_change_state) Improve info message to include
608 router id and state names.
609
gdt91f3e522004-12-09 14:51:03 +00006102004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
611
gdt3fb9de72004-12-09 16:30:04 +0000612 * ospf_apiserver.c (ospf_apiserver_term): Obtain struct
613 ospf_apiserver * from listnode. Remove unused variables. Follows
614 suggestion from Jay Fenlason.
gdt91f3e522004-12-09 14:51:03 +0000615
ajs9b0e25c2004-12-08 19:06:51 +00006162004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
617
618 * *.c: Change level of debug messages to LOG_DEBUG.
619
ajs274a4a42004-12-07 15:39:31 +00006202004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
621
622 * ospf_main.c: (main) The 2nd argument to openzlog has been removed.
623
ajs887c44a2004-12-03 16:36:46 +00006242004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
625
ajs1210fa62004-12-03 16:43:24 +0000626 * ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message
627 from LOG_NOTICE to LOG_DEBUG.
628
6292004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
630
ajs887c44a2004-12-03 16:36:46 +0000631 * ospf_main.c: (sigint) Use zlog_notice for termination message.
632 (main) Issue a startup announcement using zlog_notice.
633
ajsbec595a2004-11-30 22:38:43 +00006342004-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
635
636 * ospf_packet.c: (ospf_db_desc_proc) Fix spelling of packet in warning
637 message and in comment.
638 (ospf_db_desc) Warning message that a packet is being discarded
639 should give the router id of the packet source. Fix spelling
640 of packet in two warning messages.
641 (ospf_ls_req) Warning message that a link state request is being
642 discarded should give the router id of the neighbor that sent it.
643
ajs5b85fac2004-11-26 19:36:42 +00006442004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
645
646 * ospf_main.c: Remove #include "debug.h" (was not being used, and
647 lib/debug.h has now been deleted).
648
hassoc0652302004-11-25 19:33:48 +00006492004-11-25 Hasso Tepper <hasso at quagga.net>
650
651 * ospf_main.c: Make group to run as configurable.
652
gdt69e13252004-11-15 18:51:15 +00006532004-11-15 Greg Troxel <gdt@fnord.ir.bbn.com>
654
655 * ospf_packet.c (ospf_recv_packet): Assume CMSG_SPACE is present
656 and works (lib/zebra.h provides if OS doesn't).
657
paul788dab12004-11-15 11:48:37 +00006582004-11-15 Paul Jakma <paul@dishone.st>
659
660 * ospf_{apiserver,te}.c: ospf_lsa_free's should be ospf_lsa_unlock.
661
paul05e85fa2004-11-12 10:52:19 +00006622004-11-12 Paul Jakma <paul@dishone.st>
663
664 * ospf_ia.c: (process_summary_lsa) Only an ABR has any reason to
665 ignore stub area summary default. Even so it seems a strange
666 check, add a comment to that effect.
667
paulf3ae74c2004-11-04 20:35:31 +00006682004-11-04 Paul Jakma <paul@dishone.st>
669
670 * ospfd.c: (ospf_network_match_iface) revert to previous network
671 statement match behaviour.
672
paul62d8e962004-11-02 20:26:45 +00006732004-11-02 Paul Jakma <paul@dishone.st>
674
675 * ospf_packet.c: (ospf_write_frags) remove iov arg, msg already points
676 to it. Add convenience pointer to msg->msg_iov[1], and use this,
677 fixing the unfortunate borkenness introduced in moving of this code
678 to a function.
679 (ospf_write) remove iovp and fix up call to previous.
680 (ospf_ls_upd_packet_new) cast size to long int - unfortunately
681 glibc's size_t format modifier is not portable.
682
paul37ccfa32004-10-31 11:24:51 +00006832004-10-31 Paul Jakma <paul@dishone.st>
684
685 * ospf_packet.c: (ospf_write_frags) Add debug output
686 (ospf_write) set type early, so we can pass it to
687 ospf_write_frags.
688 (ospf_ls_upd_packet_new) print size in debug output when too large
689 packet is encountered.
paul64511f32004-10-31 18:01:13 +0000690 * ospf_zebra.c: (ospf_distribute_list_update_timer) Ugly misuse of
691 THREAD_ARG to store an integer, but it should at least use same
692 same type to retrieve the value. Assert value is sane.
paul37ccfa32004-10-31 11:24:51 +0000693
paulac191232004-10-22 12:05:17 +00006942004-10-22 Paul Jakma <paul@dishone.st>
695
696 * ospf_network.c: (ospf_sock_init) call neutral setsock_ifindex()
697 function.
698 * ospf_packet.c: (ospf_read) manually look up ifindex
paul4ccb2c42004-10-22 22:52:33 +0000699 if system could not have returned one, eg openbsd, thanks to Rivo
700 Nurges for highlighting problem and fix.
paul06f953f2004-10-22 17:00:38 +0000701 Change setsockopt_pktinfo to setsockopt_ifindex.
paulac191232004-10-22 12:05:17 +0000702
hasso3fb9cd62004-10-19 19:44:43 +00007032004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
704
705 * ospf_snmp.c: (ospf_snmp_if_update) Fix logic to handle PtP links
706 with dedicated subnets properly.
707 * ospf_lsa.c: (lsa_link_ptop_set) ditto.
708 * ospfd.c: (ospf_network_match_iface) ditto.
709 (ospf_network_run) ditto.
710 * ospf_interface.c: (ospf_if_is_configured) ditto.
711 (ospf_if_lookup_by_prefix) ditto.
712 (ospf_if_lookup_recv_if) ditto.
713 * ospf_vty.c: (show_ip_ospf_interface_sub) Display the peer or
714 broadcast address if present.
715
hassod68614d2004-10-13 09:32:48 +00007162004-10-13 Hasso Tepper <hasso at quagga.net>
717
718 * ospf_main.c: Unbreak compilation with ospfapi disabled.
hassoc75105a2004-10-13 10:33:26 +0000719 * ospf_snmp.c: Remove defaults used to initialize smux connection to
720 snmpd. Connection is initialized only if smux peer is configured.
hassod68614d2004-10-13 09:32:48 +0000721
hassof4d58ce2004-10-12 06:13:54 +00007222004-10-12 Hasso Tepper <hasso at quagga.net>
723
724 * ospf_main.c, ospf_opaque.c: Unbreak ospfclient compilation - move
725 static variable from ospf_main.c into ospf_opaque.c.
726
hassoc3abdb72004-10-11 16:27:03 +00007272004-10-11 Hasso Tepper <hasso at quagga.net>
728
729 * ospf_main.c, ospf_opaque.c: Disable ospfapi init by default. New
730 command line switch to enable it.
731
paul6b333612004-10-11 10:11:25 +00007322004-10-11 Paul Jakma <paul@dishone.st>
733
734 * ospf_dump.c: (ospf_ip_header_dump) Assume header is in host order
735 remove ntohs that should have dissappeared. Take struct ip
736 as argument, caller has to know there's an IP header at start of
737 stream anyway.
738 * ospf_dump.h: update declaration of ospf_ip_header_dump.
739 * ospf_packet.c: (ospf_write) correct call to
740 sockopt_iphdrincl_swab_htosys which was munging the header.
741 (ospf_recv_packet) ip_len is needed for old OpenBSD fixup.
742 (ospf_read) sockopt_iphdrincl_swab_systoh ip header as soon as
743 we have it.
paul6c835672004-10-11 11:00:30 +0000744 * (global) Const char update and signed/unsigned fixes.
745 * (various headers) size defines should be unsigned.
746 * ospf_interface.h: remove duplicated defines, include the
747 authoritative header - though, these defines should probably
748 be moved to a dedicated header, or ospfd.h.
749 * ospf_lsa.h: (struct lsa) ls_seqnum should be unsigned.
750 * ospf_packet.c: (ospf_write) cast result of shift to unsigned.
paul6b333612004-10-11 10:11:25 +0000751
hassoeb1ce602004-10-08 08:17:22 +00007522004-10-08 Hasso Tepper <hasso at quagga.net>
753
754 * *.[c|h]: Fix compiler warnings: make some strings const, signed ->
755 unsigned, remove unused variables etc.
756
gdt54ade992004-10-07 19:38:20 +00007572004-10-07 Greg Troxel <gdt@claude.ir.bbn.com>
758
759 * ospf_apiserver.c (ospf_apiserver_unregister_opaque_type): Don't
760 use of variable names 'node' and 'nextnode' to avoid possible
761 conflict with list macros. Move variable declaration inside for
762 loop after a statement to top of function.
763
paulaa20c6f2004-10-07 14:19:36 +00007642004-10-07 Paul Jakma <paul@dishone.st>
765
766 * ospf_snmp.c: Missed list typedef update
767 * ospf_dump.c: Include sockopt.h for header swab functions.
768
paul18b12c32004-10-05 14:38:29 +00007692004-10-05 Paul Jakma <paul@dishone.st>
770
771 * ospf_packet.c: replace ospf_swap_iph_to... with
772 sockopt_iphdrincl_swab_...
773
hasso18a6dce2004-10-03 18:18:34 +00007742004-10-03 James R. Leu <jleu at mindspring.com>
775
776 * ospf_zebra.c: Read router id related messages from zebra daemon.
777 Schedule router-id update thread if it's changed.
778 * ospfd.c: Remove own router-id selection function. Use router id from
779 zebra daemon if it isn't manually overriden in configuration.
780
paul68defd62004-09-27 07:27:13 +00007812004-09-27 Paul Jakma <paul@dishone.st>
782
paul6a99f832004-09-27 12:56:30 +0000783 * ospf_dump.c: (ospf_ip_header_dump) Use HAVE_IP_HDRINCL_BSD_ORDER
784 Apply to offset too. Print ip_cksum, lets not worry about
785 possible 2.0.37 compile problems.
786 * ospf_packet.c: (ospf_swap_iph_to{n,h}) Use
787 HAVE_IP_HDRINCL_BSD_ORDER.
788 (ospf_recv_packet) ditto.
789 (ospf_write) Fixup iov argument to ospf_write_frags.
790 (struct msghdr).msg_name is caddr_t on most platforms.
paul68defd62004-09-27 07:27:13 +0000791 (ospf_recv_packet) ditto. And msg_flags is not always there
792 memset struct then set fields we care about rather than
793 initialise all fields individually.
794
hassoc9e52be2004-09-26 16:09:34 +00007952004-09-26 Hasso Tepper <hasso at quagga.net>
796
797 * ospf_abr.c, ospf_dump.c, ospf_lsa.c, ospf_packet.c, ospf_vty.c,
798 ospf_zebra.c: Fix compiler warnings.
799
paul87d6f872004-09-24 08:01:38 +00008002004-09-24 Paul Jakma <paul@dishone.st>
801
802 * ospf_apiserver.{c,h}: lists typedef removal cleanup.
803 update some list loops to LIST_LOOP. some miscellaneous indent
804 fixups.
805 (ospf_apiserver_unregister_opaque_type) fix listnode_delete of
806 referenced node in loop.
paul1603c062004-09-24 08:23:24 +0000807 (ospf_apiserver_term) loops calling ospf_apiserver_free, which
808 deletes referenced nodes from apiserver_list, fixed.
paul87d6f872004-09-24 08:01:38 +0000809 * ospf_interface.h: lists typedef removal cleanup.
810 * ospf_opaque.{c,h}: lists typedef removal cleanup. update some list
811 loops to LIST_LOOP. miscellaneous style and indent fixups.
812 * ospf_te.{c,h}: ditto
813 * ospf_packet.c: lists typedef removal cleanup.
paula2570682004-09-24 08:09:57 +0000814 (ospf_write) ifdef fragmentation support. move actual
815 fragmentation out to a new, similarly ifdefed, function.
816 (ospf_write_frags) fragmented write support, moved from previous.
paul87d6f872004-09-24 08:01:38 +0000817
hasso52dc7ee2004-09-23 19:18:23 +00008182004-09-23 Hasso Tepper <hasso at quagga.net>
819
820 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
821
paul68b73392004-09-12 14:21:37 +00008222004-09-12 Paul Jakma <paul@dishone.st>
823
824 * ospf_packet.c: Fix bugzilla #107
825 (ospf_packet_max) get rid of the magic 88 constant
826 (ospf_swab_iph_ton) new function. set ip header to network order,
827 taking BSDisms into account.
828 (ospf_swab_iph_toh) the inverse.
829 (ospf_write) Add support for IP fragmentation, will only work on
830 linux though, other kernels make it impossible. get rid of the
831 magic 4 constant.
832 (ospf_make_ls_upd) Bound check to end of stream, not to
833 interface mtu.
834 (ospf_ls_upd_packet_new) New function, allocate upd packet
835 taking oversized LSAs into account.
836 (ospf_ls_upd_queue_send) use ospf_ls_upd_packet_new to allocate,
837 rather than statically allocating mtu sized packet buffer, which
838 actually was wrong - it didnt take ip header into account, which
839 should not be included in packet buffer.
840 (ospf_ls_upd_send_queue_event) minor tweaks and remove
841 TODO comment.
842
gdt630e4802004-08-31 17:28:41 +00008432004-08-31 David Wiggins <dwiggins@bbn.com>
844
845 * ospf_spf.c (ospf_spf_calculate): Many more comments and debug
846 print statements. New function ospf_vertex_dump used in debugging.
847
8482004-08-31 David Wiggins <dwiggins@bbn.com>
849
850 * ospf_spf.h (struct vertex): Comments for flags and structure members.
851
8522004-08-31 David Wiggins <dwiggins@bbn.com>
853
854 * ospf_route.c: When finding an alternate route, log cost as well.
855
8562004-08-31 David Wiggins <dwiggins@bbn.com>
857
858 * ospf_interface.c (ospf_lookup_if_params): Initialize af in
859 struct prefix allocated on stack.
860
8612004-08-31 David Wiggins <dwiggins@bbn.com>
862
863 * ospf_packet.c (ospf_ls_ack_send_delayed): In p2mp mode, send
864 acks to AllSPFRouters, rather than All-DR.
865
hasso7b901432004-08-31 13:37:42 +00008662004-08-27 Hasso Tepper <hasso at quagga.net>
867
868 * ospf_vty.c: Don't print ospf network type under interface only
869 if interface is in broadcast mode and interface type really is
870 broadcast. Fixes Bugzilla #108.
871
gdtd7d93992004-08-27 12:03:42 +00008722004-08-27 David Wiggins <dwiggins@bbn.com>
873
874 * ospf_spf.c (ospf_nexthop_calculation): Initialize address family
875 in on-stack struct prefix_ipv4. Fixes point-to-multipoint SPF
876 calculation.
877
gdtd0deca62004-08-26 13:14:07 +00008782004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com>
879
880 * ospf_packet.c (ospf_recv_packet): adjust size declaration of
gdtd7d93992004-08-27 12:03:42 +0000881 buffer used to get interface index so that it compiles on other
882 than Linux and includes the required alignment space. Probably
883 this was only working on sparc/sparc64 because most of
884 sockaddr_dl was not being written.
gdtd0deca62004-08-26 13:14:07 +0000885
paul863082d2004-08-19 04:43:43 +00008862004-08-19 Paul Jakma <paul@dishone.st>
887
888 * ospf_packet.c: update to match sockopt renames.
889
paul75ee0b82004-08-05 09:10:31 +00008902004-08-04 Paul Jakma <paul@dishone.st>
891
892 * ospf_spf.c: (ospf_spf_consider_nexthop) Add comment about issue.
893 Compare only against list head - all nexthops must be same cost
894 anyway, fixes a reference-listnode-after-delete bug noted by
895 Kir Kostuchenko.
896 (ospf_nexthop_calculation) Use ospf_spf_consider_nexthop for all
897 candidates attached to root.
898
paul36c64ef2004-07-27 11:19:11 +00008992004-07-27 Paul Jakma <paul@dishone.st>
900
paul48fe13b2004-07-27 17:40:44 +0000901 * ospf_packet.c: (ospf_ls_upd_send_queue_event) fix thinko from
902 last fix for ospfd wedging due to oversize LSAs: dont list loop on
903 ospf_ls_upd_queue_send() - guaranteed segfault.
904
9052004-07-27 Paul Jakma <paul@dishone.st>
906
paul36c64ef2004-07-27 11:19:11 +0000907 * ospf_opaque.c: (ospf_opaque_lsa_flush_schedule) do not NULL out
908 the LSA as then free_opaque_info_per_id() can never unlock (and
909 free) the LSA. Reported by Gunnar Stigen.
910
paul2dd8bb42004-07-23 15:13:48 +00009112004-07-23 Paul Jakma <paul@dishone.st>
912
913 * ospf_network.c: Replace PKTINFO/RECVIF with call to
914 setsockopt_pktinfo
915 * ospf_packet.c: Use getsockopt_pktinfo_ifindex and
916 SOPT_SIZE_CMSG_PKTINFO_IPV4.
917
paul59ea14c2004-07-14 20:50:36 +00009182004-07-14 Paul Jakma <paul@dishone.st>
919
920 * ospf_packet.c: (ospf_ls_upd_send_queue_event) Partial fix for
921 problem reported by Peter Frost amongst others, where function
922 will spin indefinitely if update list contains LSAs greater than
923 MTU-headers or other condition leading to update list never being
924 cleared. Problem of what to do with these LSAs remains.
925 (ospf_make_ls_upd) add comment about large LSA problem,
926 indentation cleanup.
927
gdtb2c1b282004-07-01 12:35:36 +00009282004-07-01 Greg Troxel <gdt@fnord.ir.bbn.com>
929
930 * Makefile.am (lib_LTLIBRARIES): make libospf shared
931
gdt87efd642004-06-30 17:36:11 +00009322004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
933
934 * Makefile.am: Add shlib support.
935
hassobeebba72004-06-20 21:00:27 +00009362004-06-10 Hasso Tepper <hasso@estpak.ee>
937
938 * *: Removed ifdefs HAVE_NSSA.
939
paul553ff112004-06-06 09:41:00 +00009402004-06-06 Paul Jakma <paul@dishone.st>
941
942 * ospf_dump.c,ospf_lsa.c: Fix typos of merge of previous.
943 ospf_flood.c: (ospf_process_self_originated_lsa) fix zlog format
944
paul0c2be262004-05-31 14:16:54 +00009452004-05-31 Sagun Shakya <sagun.shakya@sun.com>
946
947 * ospf_dump.c: (ospf_lsa_header_dump) LOOKUP can return null if
948 index is out of range.
949 ospf_flood.c: endianness fix
950 ospf_lsa.c: Missing ntohl's on (struct lsa *)->data->ls_seqnum
951 in various places.
952
hassodd669bb2004-05-10 07:43:59 +00009532004-05-10 Hasso Tepper <hasso@estpak.ee>
954
955 * ospf_zebra.c, ospfd.c: Move ospf_prefix_list_update() function
956 to ospf_zebra.c from ospfd.c and add redistribution updates if
957 route-map is used in redistribution.
958 * ospf_main.c: Remove now useless call to ospf_init().
959
paul0a589352004-05-08 11:48:26 +00009602004-05-08 Paul Jakma <paul@dishone.st>
961
962 * ospf_zebra.c: Sync with lib/zclient changes
963
pauld3f0d622004-05-05 15:27:15 +00009642004-05-05 Paul Jakma <paul@dishone.st>
965
paul5bd41892004-05-05 17:29:24 +0000966 * ospf_network.c: (ospf_sock_init) Check whether IP_HDRINCL is
967 defined. Warn at compile and runtime. Use
968 IPTOS_PREC_INTERNETCONTROL otherwise.
pauld3f0d622004-05-05 15:27:15 +0000969 * ospf_packet.c: (ospf_associate_packet_vl) cleanup, move
970 some of the checks up to ospf_read, return either a
971 virtual link oi, or NULL.
972 (ospf_read) Cleanup, make it responsible for checks. Remove
973 the nbr lookup - moved to ospf_neighbor. Adjust all nbr
974 lookups to use new wrappers exported by ospf_neighbor.
975 * ospf_neighbor.h: Add ospf_neigbour_get and ospf_nbr_lookup.
976 * ospf_neighbor.c: (ospf_neigbour_get) Index ospf_interface
977 neighbour table by router-id for virtual-link ospf_interfaces,
978 not by peer_addr (which breaks for asymmetric vlinks)
979 (ospf_nbr_lookup) add a wrapper for nbr lookups to deal with
980 above.
paulcd59da62004-05-05 17:26:55 +0000981 * ospf_interface.c: (ospf_vl_set_params) Catch changes of interface
982 address for either end of a virtual-link, and hence potential cost
983 changes.
984
hassoa0a39762004-04-23 08:51:10 +00009852004-04-22 Hasso Tepper <hasso@estpak.ee>
986
987 * ospf_zebra.c: Don't ignore reject/bh routes, it's the only way
988 to "summarize" routes in ASBR at the moment.
989
hasso8585d4e2004-04-20 17:25:12 +00009902004-04-20 Hasso Tepper <hasso@estpak.ee>
991
992 * ospfd.c: Unset NP flag if area is going to be normal or stub.
993 Fixes UNH OSPF_NSSA.1.2a comment.
994 * ospf_abr.c: Originate default into stub/nssa area even if
995 summaries are disabled.
996 * ospf_zebra.c: Don't attempt to redistribute 127.0.0.0/8.
997
hassoc266ac72004-04-19 17:31:00 +00009982004-04-19 Hasso Tepper <hasso@estpak.ee>
999
1000 * ospf_vty.c: Don't warn that export- and import-list can't be
1001 configured to backbone area if they are applied and are working
1002 fine.
1003
hasso128d31d2004-04-04 12:52:33 +000010042004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
1005
1006 * ospf_packet.c: Don't drop packets in Solaris x86.
1007 [quagga-dev 1005].
1008
hasso0d85b992004-03-18 19:18:33 +000010092004-03-18 Amir Guindehi <amir@datacore.ch>
1010
1011 * ospf_opaque.c: Attempt to correct the incorrect behavior of
1012 Quagga's ospfd in the special situation that a node's opaque
1013 capability has changed as "ON -> OFF -> ON". [quagga-dev 843].
1014
paul7f352b82004-02-19 19:37:47 +000010152004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
1016
1017 * ospf_abr.c: (ospf_abr_update_aggregate) UNH 3.12b,c, address range
1018 should be configured with the highest cost path within the range,
1019 not lowest.
1020
paul940b01a2004-02-17 20:07:30 +000010212004-02-17 Paul Jakma <paul@dishone.st>
1022
1023 * ospf_zebra.c: (ospf_interface_delete) Do not delete the interface
1024 params, nor the interface structure, if an interface delete
1025 message is received from zebra.
1026 * ospf_interface.c: (ospf_if_delete_hook) Delete the interface
1027 params and interface, ie that which was previously removed in
1028 (ospf_interface_delete) above.
1029
hasso2db3d052004-02-11 21:52:13 +000010302004-02-11 Hasso Tepper <hasso@estpak.ee>
1031 * ospf_interface.c, ospf_zebra.c: Don't attempt to read path->oi->ifp
1032 if oi doesn't exist any more.
1033
hassocb05eb22004-02-11 21:10:19 +000010342004-02-11 Vadim Suraev <vadim.suraev@terayon.com>
1035 * ospf_packet.c (ospf_ls_upd): Router should flush received network
1036 LSA if it was originated with older router-id ([zebra 14710] #6).
1037
10382003-12-08 Mattias Amnefelt <mattiasa@kth.se>
paul239aecc2003-12-08 10:34:54 +00001039
1040 * ospf_packet.c: (ospf_recv_packet) OpenBSD now leaves iph.ip_len
1041 network byte order.
1042
gdt8f40e892003-12-05 14:01:43 +000010432003-12-05 Greg Troxel <gdt@poblano.ir.bbn.com>
1044
1045 * ospfd.c (ospf_network_match_iface): Rewrite code for clarity
1046 while trying not to change semantics. Add ifdefed-out code to
1047 avoid matching ppp interfaces whose destination address does not
1048 also match the prefix under consideration, to help out people with
1049 problems due to as-yet-unfixed bugs with p2p interfaces coming and
1050 going.
1051
paul736d3442003-07-24 23:22:57 +000010522003-07-25 kamatchi soundaram <kamatchi@tdd.sj.nec.com>
1053
1054 * ospf_packet.c (ospf_ls_upd_send_queue_event): get next route
1055 node in body of the loop to avoid chance that route node
1056 is unlocked and deleted before the next iteration tries to
1057 get next route node.
1058
paul0a825c72003-05-24 13:48:16 +000010592003-05-24 Kenji Yabuuchi
1060
1061 * ospf_interface.c(ospf_if_lookup_recv_if): Use the most specific
1062 match for interface lookup.
1063
paul551a8972003-05-18 15:22:55 +000010642003-05-18 Hasso Tepper <hasso@estpak.ee>
paul445f1432003-05-16 19:00:31 +00001065
paul551a8972003-05-18 15:22:55 +00001066 * ospf_vty.c: Show NSSA LSA route info in "show ip ospf database"
1067 output
paul445f1432003-05-16 19:00:31 +00001068
pauld7480322003-05-16 17:31:51 +000010692003-05-16 Hasso Tepper <hasso@estpak.ee>
1070
1071 * ospf_lsa.c: Fix handling of NSSA
1072
paul551a8972003-05-18 15:22:55 +000010732003-04-23 Hasso Tepper <hasso@estpak.ee>
1074
1075 * ospf_vty.c: fix "router xxx" node commands in vtysh
1076
paul445f1432003-05-16 19:00:31 +000010772003-04-19 Hasso Tepper <hasso@estpak.ee>
1078
1079 * {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS
1080 * ospf_routemap.c: sync daemon's route-map commands to have same
1081 syntax.
1082
10832003-04-19 Sergey Vyshnevetskiy <serg@vostok.net>
1084
1085 * ospf_packet.c: Add missing param to zlog
1086 * ospf_flood.c: remove unused vars
1087
10882003-04-17 Denis Ovsienko <zebra@pilot.org.ua>
1089
1090 * ospf_interface.c: fix incorrect memset
1091
paul28a13842003-05-16 20:30:37 +000010922003-04-10 Amir Guindehi <amir@datacore.ch>
paul445f1432003-05-16 19:00:31 +00001093
1094 * ospf_lsa.[ch]: opaque LSA fix, use ospf_lookup.
1095
10962003-04-03 David Watson <dwatson@eecs.umich.edu>
1097
1098 * ospf_lsa.c: byte order fix
1099
paul07661cb2003-03-18 00:03:05 +000011002002-03-17 Amir Guindehi <amir@datacore.ch>
1101
1102 * ospf_apiserver.[ch]: Merge Ralph Keller's OSPFAPI support.
1103 * ospf_api.[ch]: Merge Ralph Keller's OSPFAPI support.
1104 * ospfclient: OSPFAPI demonstration client.
1105
11062003-01-23 Masahiko Endo <endo@suri.co.jp>
1107
1108 * ospf_ism.c: NSM event schedule bug fix.
1109
11102002-10-30 Greg Troxel <gdt@ir.bbn.com>
1111
1112 * ospf_packet.c (ospf_make_md5_digest): MD5 length fix.
1113
paul718e3742002-12-13 20:15:29 +000011142002-10-23 endo@suri.co.jp (Masahiko Endo)
1115
1116 * ospf_opaque.c: Update Opaque LSA patch.
1117
11182002-10-23 Ralph Keller <keller@tik.ee.ethz.ch>
1119
1120 * ospf_vty.c (show_ip_ospf_database): Fix CLI parse.
1121
11222002-10-23 Juris Kalnins <juris@mt.lv>
1123
1124 * ospf_interface.c (ospf_if_stream_unset): When write queue
1125 becomes empty stop write timer.
1126
11272002-10-10 Greg Troxel <gdt@ir.bbn.com>
1128
1129 * ospf_packet.c (ospf_check_md5_digest): Change >= to > to make it
1130 conform to RFC.
1131
11322002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1133
1134 * zebra-0.93 released.
1135
11362002-06-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1137
1138 * ospf_spf.c (ospf_nexthop_calculation): Add NULL set to oi and
1139 check of l2. Reported by: Daniel Drown <dan-zebra@drown.org>
1140 (ospf_lsa_has_link): LSA Length calculation fix. Reported by:
1141 Paul Jakma <paulj@alphyra.ie>.
1142
1143 * ospfd.c (ospf_if_update): Fix nextnode reference bug. Reported
1144 by: juris@mt.lv.
1145
11462002-01-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1147
1148 * ospfd.c: Merge [zebra 11445] Masahiko ENDO's Opaque-LSA support.
1149
11502001-08-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1151
1152 * ospf_interface.c (ospf_add_to_if): Use /32 address to register
1153 OSPF interface information.
1154 (ospf_delete_from_if): Likewise.
1155
1156 * ospf_zebra.c (ospf_interface_address_delete): Likewise.
1157
11582001-08-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1159
1160 * ospf_zebra.c (ospf_redistribute_unset): When redistribute type
1161 is OSPF, do not unset redistribute flag.
1162
11632001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1164
1165 * zebra-0.92a released.
1166
11672001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1168
1169 * zebra-0.92 released.
1170
11712001-08-12 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1172
1173 * ospfd.c (ospf_config_write): auto-cost reference-bandwidth
1174 configuration display.
1175
11762001-07-24 David Watson <dwatson@eecs.umich.edu>
1177
1178 * ospf_spf.c (ospf_spf_next): Modify ospf_vertex_add_parent to
1179 check for an existing link before connecting the parent and child.
1180 ospf_nexthop_calculation is also modified to check for duplicate
1181 entries when copying from the parent. Finally, ospf_spf_next
1182 removes duplicates when it merges two equal cost candidates.
1183
11842001-07-23 itojun@iijlab.net
1185
1186 * ospfd.c (show_ip_ospf_neighbor): Check ospf_top before use it
1187 [zebra 8549].
1188
11892001-07-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1190
1191 * ospf_packet.c (ospf_write): Remove defined(__OpenBSD__) to make
1192 it work on OpenBSD.
1193
11942001-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1195
1196 * ospf_zebra.c (config_write_ospf_default_metric): Display
1197 default-metric configuration.
1198
11992001-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1200
1201 * ospf_ia.h (OSPF_EXAMINE_SUMMARIES_ALL): Remove old macros.
1202
12032001-05-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1204
1205 * ospf_snmp.c (ospfIfEntry): Fix interface lookup bug to avoid
1206 crush.
1207 (ospfIfMetricEntry): Likewise.
1208
12092001-03-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1210
1211 * ospf_packet.c (ospf_read): Fix typo. Reported by: "Jen B
1212 Lin'Kova" <jen@stack.net>.
1213
12142001-03-15 Gleb Natapov <gleb@nbase.co.il>
1215
1216 * ospf_interface.c (ip_ospf_network): Set interface parameter.
1217 (interface_config_write): Add check for OSPF_IFTYPE_LOOPBACK.
1218
1219 * ospf_zebra.c (ospf_interface_add): Set interface parameter.
1220
12212001-02-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1222
1223 * ospf_packet.c (ospf_recv_packet): Solaris also need to add
1224 (iph.ip_hl << 2) to iph.ip_len.
1225
12262001-02-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1227
1228 * ospfd.h (OSPF_LS_REFRESH_TIME): Fix OSPF_LS_REFRESH_TIME value.
1229 Suggested by: David Watson <dwatson@eecs.umich.edu>.
1230
1231 * ospf_zebra.c (zebra_init): Remove zebra node.
1232
1233 * ospfd.c (ospf_area_range_set): Function name is changed from
1234 ospf_ara_range_cmd.
1235 (ospf_area_range_unset): New function which separated from DEFUN.
1236 New commands are added:
1237 "no area A.B.C.D range A.B.C.D/M advertise"
1238 "no area <0-4294967295> range A.B.C.D/M advertise"
1239 "no area A.B.C.D range A.B.C.D/M not-advertise"
1240 "no area <0-4294967295> range A.B.C.D/M not-advertise"
1241
1242 * ospf_lsa.c (ospf_lsa_more_recent): Fix previous change.
1243
12442001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
1245
1246 * ospf_network.c (ospf_if_add_allspfrouters): Use
1247 setsockopt_multicast_ipv4.
1248 (ospf_if_drop_allspfrouters): Likewise.
1249
1250 * ospf_lsa.c (ospf_router_lsa_install): Add rt_recalc flag.
1251 (ospf_network_lsa_install): Likewise.
1252 (ospf_summary_lsa_install): Likewise.
1253 (ospf_summary_asbr_lsa_install): Likewise.
1254 (ospf_external_lsa_install): Likewise.
1255 (ospf_lsa_install): Call ospf_lsa_different to check this LSA is
1256 new one or not.
1257
12582001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1259
1260 * ospf_zebra.c (ospf_interface_delete): Do not free interface
1261 structure when ospfd receive interface delete message to support
1262 pseudo interface.
1263
12642001-02-01 Dick Glasspool <dick@ipinfusion.com>
1265
1266 * ospfd.c (area_range_notadvertise): Change area range "suppress"
1267 command to "not-advertise".
1268
1269 * ospfd.h (OSPF_LS_REFRESH_TIME): Change OSPF_LS_REFRESH_TIME from
1270 1800 to 60.
1271
1272 * ospf_abr.c (ospf_abr_update_aggregate): When update_aggregate is
1273 updating the area-range, the lowest cost is now saved.
1274
1275 * ospf_lsa.c (ospf_lsa_more_recent): Routing to compare sequence
1276 numbers rather than creating overflow during calculation.
1277
12782001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1279
1280 * zebra-0.91 is released.
1281
12822001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1283
1284 * ospf_packet.c (ospf_db_desc_proc): Do not continue process when
1285 NSM_SeqNumberMismatch is scheduled.
1286 (ospf_ls_req): Free ls_upd when return from this function.
1287 (ospf_ls_upd_timer): When update list is empty do not call
1288 ospf_ls_upd_send(). Suggested by: endo@suri.co.jp (Masahiko
1289 Endo).
1290
12912001-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1292
1293 * ospf_lsa.c (ospf_maxage_flood): Flood LSA when it reaches
1294 MaxAge. RFC2328 Section 14.
1295 (ospf_maxage_lsa_remover): Call above function during removing
1296 MaxAge LSA.
1297
12982001-01-26 Dick Glasspool <dick@ipinfusion.com>
1299
1300 * ospf_flood.c (ospf_flood_through_as): Function is updated for
1301 NSSA Translations now done at ospf_abr.c with no change in P-bit.
1302
1303 * ospf_lsa.c (ospf_get_nssa_ip): Get 1st IP connection for Forward
1304 Addr.
1305 (ospf_install_flood_nssa): Leave Type-7 LSA at Lock Count = 2.
1306
1307 * ospf_ase.c (ospf_ase_calculate_route): Add debug codes.
1308
1309 * ospf_abr.c (ospf_abr_translate_nssa): Recalculate LSA checksum.
1310
1311 * ospf_packet.h (OSPF_SEND_PACKET_LOOP): Added for test packet.
1312
1313 * ospf_dump.c (ospf_lsa_type_msg): Add OSPF_GROUP_MEMBER_LSA and
1314 OSPF_AS_NSSA_LSA.
1315
1316 * ospfd.c (data_injection): Function to inject LSA. This is
1317 debugging command.
1318
13192001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1320
1321 * ospf_route.c (ospf_route_match_same): Remove function.
1322 (ospf_route_match_same_new): Renamed to ospf_route_match_same.
1323
1324 * ospf_zebra.c (ospf_interface_address_delete): Add check for
1325 oi->address. Suggested by Matthew Grant
1326 <grantma@anathoth.gen.nz>.
1327 (ospf_zebra_add): Remove function.
1328 (ospf_zebra_add_multipath): Rename to ospf_zebra_add.
1329
1330 * ospf_interface.c: Remove HAVE_IF_PSEUDO part.
1331
1332 * ospf_zebra.c: Likewise.
1333
13342001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1335
1336 * ospf_ase.c: Remove OLD_RIB part.
1337
1338 * ospf_route.c: Likewise.
1339
1340 * zebra-0.90 is released.
1341
1342 * ospf_packet.c (ospf_recv_packet): Use ip_len adjestment code to
1343 NetBSD.
1344
13452001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1346
1347 * ospf_route.c (ospf_route_delete): Use
1348 ospf_zebra_delete_multipath.
1349
13502001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
1351
1352 * ospf_interface.c (ospf_if_cleanup): Function name is renamed
1353 from ospf_if_free(). Rewrite whole procudure to support primary
1354 address deletion.
1355
1356 * ospf_zebra.c (ospf_interface_address_delete): Add primary
1357 address deletion process.
1358
13592001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1360
1361 * ospf_packet.c (ospf_recv_packet): OpenBSD has same ip_len
1362 treatment like FreeBSD.
1363
13642001-01-09 endo@suri.co.jp (Masahiko Endo)
1365
1366 * ospf_packet.c (ospf_recv_packet): FreeBSD kernel network code
1367 strips IP header size from receiving IP Packet. So we adjust
1368 ip_len to whole IP packet size by adding IP header size.
1369
13702001-01-08 endo@suri.co.jp (Masahiko Endo)
1371
1372 * ospf_network.c (ospf_serv_sock): When socket() is failed return
1373 immediately.
1374 (ospf_serv_sock): Close socket when it is not used.
1375
1376 * ospf_packet.c (ospf_write): Set sin_len when HAVE_SIN_LEN is
1377 defined.
1378 (ospf_write): When bind is fined, close sock.
1379
13802001-01-07 Gleb Natapov <gleb@nbase.co.il>
1381
1382 * ospf_zebra.c (ospf_interface_state_up): Fixes coredump that
1383 appears when you try to configure bandwidth on the ppp interface
1384 that is not yet configured in ospfd.
1385
13862001-01-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1387
1388 * ospf_route.c (show_ip_ospf_route_external): "show ip ospf route"
1389 will print nexthops for AS-external routes.
1390
1391 * ospf_ase.c (ospf_ase_route_match_same): New function to compare
1392 ASE route under multipath environment.
1393 (ospf_ase_compare_tables): Likewise.
1394
13952001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1396
1397 * ospfd.h (OSPF_VTYSH_PATH): Change "/tmp/ospfd" to "/tmp/.ospfd".
1398
13992000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1400
1401 * ospf_route.c (ospf_route_install): Install multipath information
1402 to zebra daemon.
1403
1404 * ospf_zebra.c (ospf_zebra_add_multipath): Function for passing
1405 multipath information to zebra daemon.
1406
14072000-12-25 Dick Glasspool <dick@ipinfusion.com>
1408
1409 * ospf_packet.c (ospf_write): Call ospf_packet_delete when sendto
1410 fail.
1411 (DISCARD_LSA): Add argument N for logging point of DISCARD_LSA is
1412 called.
1413
1414 * ospf_lsa.c (ospf_external_lsa_refresh): NSSA install_flood will
1415 leave Type-7 LSA at Lock Count = 2.
1416
1417 * ospf_flood.c (ospf_flood_through): Flood_though_as updated for
1418 NSSA no P-bit off during Area flooding, but P-bit is turned off
1419 for mulitple NSSA AS flooding.
1420
1421 * ospf_ase.c (ospf_ase_calculate_timer): Added calculations for
1422 Type-7 LSDB.
1423
1424 * ospf_abr.c (ospf_abr_translate_nssa): Removed one unlock call.
1425 (ospf_abr_announce_nssa_defaults): Corrected Debug from EVENT to
1426 NSSA.
1427
14282000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1429
1430 * ospf_zebra.c (ospf_zebra_read_ipv4): Checking the age of the
1431 found LSA and if the LSA is MAXAGE we should call refresh instead
1432 of originate.
1433
14342000-12-18 Dick Glasspool <dick@ipinfusion.com>
1435
1436 * ospf_abr.c: Removed redundant "...flood" in
1437 announce_network_to_area(). Repaired nssa Unlock by using
1438 discard.
1439
1440 * ospf_packet.c: Removed old NSSA translate during mk_ls_update.
1441
1442 * ospfd.c: Free up all data bases including NSSA.
1443
1444 * ospf_lsa.c: Now allow removal of XLATE LSA's Check in
1445 discard_callback. Added routine to get ip addr from within the
1446 ifp.
1447
1448 * ospf_flood.c: Now set Forward Address for outgoing Type-7.
1449
1450 * ospf_lsa.h: Added prototype for the below. struct in_addr
1451 ospf_get_ip_from_ifp (struct interface *ifp).
1452
14532000-12-14 Gleb Natapov <gleb@nbase.co.il>
1454
1455 * ospf_packet.c (ospf_recv_packet): New OSPF pakcet read method.
1456 Now maximum packet length may be 65535 bytes (maximum IP packet
1457 length).
1458
1459 * ospf_interface.c (ospf_if_stream_set): Don't make input buffer.
1460
1461 * ospfd.c (config_write_network_area): Remove unnecessary area
1462 lookup code.
1463
14642000-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1465
1466 * ospf_packet.c (ospf_read): Accept packet bigger than MTU value.
1467
14682000-12-13 Gleb Natapov <gleb@nbase.co.il>
1469
1470 * ospfd.c (config_write_network_area): Fix bug in
1471 config_write_network_area function.
1472
14732000-12-12 Gleb Natapov <gleb@nbase.co.il>
1474
1475 * ospf_abr.c (ospf_abr_announce_network_to_area): Make Summary
1476 LSA's origination and refreshment as same as other type of LSA.
1477
1478 * ospf_lsa.c (ospf_summary_lsa_refresh): Return struct ospf_lsa *.
1479
1480 * ospf_lsa.c (ospf_summary_asbr_lsa_refresh): Likewise.
1481
14822000-12-08 Dick Glasspool <dick@ipinfusion.com>
1483
1484 The bulk of NSSA changes are contained herein; This version will
1485 require manual setting of "always" for NSSA Translator, and will
1486 not perform aggregation yet.
1487
1488 * ospf_dump.c: "debug ospf nssa" is added.
1489
1490 * ospf_dump.h: Likewise.
1491
1492 * ospf_packet.c (ospf_hello): Display router ID on Bad NSSA Hello.
1493
1494 * ospfd.c: Discard_LSA to stay away from LOCAL_XLT Process NSSA
1495 'never, candidate, always'. Change "suppress" to "not-advertise".
1496
1497 * ospfd.h: Add TranslatorRole to struct ospf_area. Add anyNSSA to
1498 struct ospf.
1499
1500 * ospf_ase.c (ospf_ase_calculate_route): External to stay away
1501 from LOCAL_XLT
1502
1503 * ospf_nsm.c (ospf_db_summary_add): External to stay away from
1504 LOCAL_XLT
1505
1506 * ospf_abr.c: Major logic added for abr_nssa_task(). If ABR, and
1507 NSSA translator, then do it. Approve the global list, and flush
1508 any unapproved.
1509
1510 * ospf_lsa.h: New LSA flag OSPF_LSA_LOCAL_XLT to indicate that the
1511 Type-5 resulted from a Local Type-7 translation; not used for
1512 flooding, but used for flushing.
1513
1514 * ospf_flood.c: New NSSA flooding.
1515
15162000-12-08 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1517
1518 * ospfd.c (ospf_find_vl_data): New function for looking up virtual
1519 link data.
1520 (ospf_vl_set_security): Virtual link configuration with
1521 authentication.
1522 (ospf_vl_set_timers): Set timers for virtual link.
1523
1524 * New commands are added.
1525 "area A.B.C.D virtual-link A.B.C.D"
1526 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535>"
1527 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> authentication-key AUTH_KEY"
1528 "area A.B.C.D virtual-link A.B.C.D authentication-key AUTH_KEY"
1529 "area A.B.C.D virtual-link A.B.C.D hello-interval <1-65535> retransmit-interval <3-65535> transmit-delay <1-65535> dead-interval <1-65535> message-digest-key <1-255> md5 KEY"
1530 "area A.B.C.D virtual-link A.B.C.D message-digest-key <1-255> md5 KEY"
1531
1532 * ospf_packet.c (ospf_check_md5_digest): Add neighbor's
1533 cryptographic sequence number treatment.
1534 (ospf_check_auth): OSPF input buffer is added to argument.
1535 (ospf_read): Save neighbor's cryptographic sequence number.
1536
1537 * ospf_nsm.c (nsm_change_status): Clear cryptographic sequence
1538 number when neighbor status is changed to NSM down.
1539
1540 * ospf_neighbor.c (ospf_nbr_new): Set zero to crypt_seqnum.
1541
1542 * ospf_neighbor.h (struct ospf_neighbor): Add cryptographic
1543 sequence number to neighbor structure.
1544
15452000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1546
1547 * ospf_snmp.c (ospfIfLookup): OSPF MIB updates.
1548 (ospfExtLsdbEntry): Add OspfExtLsdbTable treatment.
1549
15502000-11-28 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1551
1552 * ospfd.c (ospf_interface_down): Clear a ls_upd_queue queue of the
1553 interface.
1554 (ospf_ls_upd_queue_empty): New function to empty ls update queue
1555 of the OSPF interface.
1556 (no_router_ospf): 'no router ospf' unregister redistribution
1557 requests from zebra.
1558
15592000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org>
1560
1561 * ospf_ism.c (ism_change_status): Increment status change number.
1562
1563 * ospf_interface.h (struct ospf_interface): Add new member for
1564 status change statistics.
1565
1566 * Makefile.am: Update dependencies.
1567
1568 * ospf_zebra.c (ospf_interface_add): OSPF SNMP interface update.
1569 (ospf_interface_delete): OSPF SNMP interface delete.
1570
1571 * ospf_snmp.h: New file is added.
1572
15732000-11-23 Dick Glasspool <dick@ipinfusion.com>
1574
1575 * ospfd.h: Add new ospf_area structure member for
1576 NSSATranslatorRole and NSSATranslator state.
1577
1578 * ospfd.c: Provided for eventual commands to specify NSSA
1579 elections for "translator- ALWAYS/NEVER/CANDIDATE". Provided for
1580 decimal integer version of area-suppress.
1581
1582 * ospf_flood.c: Flood Type-7's only into NSSA (not AS).
1583
1584 * ospf_lsa.c: Undo some previous changes for NSSA. If NSSA
1585 translator, advertise Nt bit.
1586
1587 * ospf_route.c: 1st version of "sh ip os border-routers".
1588
15892000-11-23 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1590
1591 * ospfd.c (area_vlink): Virtual link can not configured in stub
1592 area.
1593
15942000-11-23 Gleb Natapov <gleb@nbase.co.il>
1595
1596 * ospf_packet.c (ospf_db_desc): In states Loading and Full the
1597 slave must resend its last Database Description packet in response
1598 to duplicate Database Description packets received from the
1599 master. For this reason the slave must wait RouterDeadInterval
1600 seconds before freeing the last Database Description packet.
1601 Reception of a Database Description packet from the master after
1602 this interval will generate a SeqNumberMismatch neighbor
1603 event. RFC2328 Section 10.8
1604 (ospf_make_db_desc): DD Master flag treatment.
1605
1606 * ospf_nsm.c (nsm_twoway_received): Move DD related procedure to
1607 nsm_change_status().
1608 (nsm_bad_ls_req): Likewise.
1609 (nsm_adj_ok): Likewise.
1610 (nsm_seq_number_mismatch): Likewise.
1611 (nsm_oneway_received): Likewise.
1612
1613 * ospf_neighbor.h (struct ospf_neighbor): New structure member
1614 last_send_ts for timestemp when last Database Description packet
1615 was sent.
1616
1617 * ospf_nsm.c (ospf_db_desc_timer): Make it sure nbr->last_send is
1618 there. Call ospf_db_desc_resend() in any case.
1619
16202000-11-16 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1621
1622 * ospf_lsa.c (lsa_link_broadcast_set): When there is no DR on
1623 network (suppose you have only one router with interface priority
1624 0). It's router LSA does not contain the link information about
1625 this network.
1626
1627 * ospf_nsm.c (nsm_timer_set): When you change a priority of
1628 interface from/to 0 ISM_NeighborChange event should be scheduled
1629 in order to elect new DR/BDR on the network.
1630
1631 * ospf_interface.c (ip_ospf_priority): Likewise.
1632
1633 * ospf_flood.c (ospf_ls_retransmit_add): When we add some LSA into
1634 retransmit list we need to check whether the present old LSA in
1635 retransmit list is not more recent than the new
1636 one.
1637
16382000-11-09 Dick Glasspool <dick@ipinfusion.com>
1639
1640 * ospf_packet.c: Allows for NSSA Type-7 LSA's throughout the NSSA
1641 area. Any that exit the NSSA area are translated to type-5 LSA's.
1642 The instantiated image is restored after translation.
1643 (ospf_ls_upd_send_list): Renamed to ospf_ls_upd_queu_send().
1644 (ospf_ls_upd_send): Old function which enclosed by #ifdef 0 is
1645 removed.
1646 (ospf_ls_ack_send): Likewise.
1647
1648 * ospf_flood.c: NSSA-LSA's without P-bit will be restricted to
1649 local area. Otherwise they are allowed out the area to be
1650 translated by ospf_packet.c.
1651
1652 * ospf_lsa.c: Undo some previous changes for NSSA.
1653
1654 * ospf_lsdb.h: New access for type 7.
1655
16562000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1657
1658 * ospf_route.c (ospf_path_exist): New function to check nexthop
1659 and interface are in current OSPF path or not.
1660 (ospf_route_copy_nexthops_from_vertex): Add nexthop to OSPF path
1661 when it is not there. Reported by Michael Rozhavsky
1662 <mrozhavsky@opticalaccess.com>
1663
16642000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1665
1666 * ospf_dump.c (config_write_debug): Add seventh string "detail" is
1667 added for flag is OSPF_DEBUG_SEND | OSPF_DEBUG_RECV |
1668 OSPF_DEBUG_DETAIL.
1669
16702000-11-06 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1671
1672 * ospf_lsa.c (router_lsa_flags): ASBR can't exit in stub area.
1673
16742000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1675
1676 * ospf_lsa.c (ospf_router_lsa_originate): Reduce unconditional
1677 logging.
1678
16792000-11-06 Dick Glasspool <dick@ipinfusion.com>
1680
1681 * ospfd.h: Add ait_ntoa function prototype.
1682
1683 * ospfd.c (ait_ntoa): New function for displaying area ID and
1684 Stub/NSSA status.
1685 (show_ip_ospf_interface_sub): Use ait_ntoa.
1686 (show_ip_ospf_nbr_static_detail_sub): Likewise.
1687 (show_ip_ospf_neighbor_detail_sub): Likewise.
1688
1689 * ospf_route.c (ospf_intra_route_add): Set external routing type
1690 to ospf route.
1691 (ospf_intra_add_router): Likewise.
1692 (ospf_intra_add_transit): Likewise.
1693 (ospf_intra_add_stub): Likewise.
1694 (ospf_add_discard_route): Likewise.
1695 (show_ip_ospf_route_network): Use ait_ntoa.
1696 (show_ip_ospf_route_network): Likewise.
1697 (show_ip_ospf_route_router): Likewise.
1698
1699 * ospf_lsa.c (show_lsa_detail): Use ait_ntoa.
1700 (show_lsa_detail_adv_router): Likewise.
1701 (show_ip_ospf_database_summary): Likewise.
1702
1703 * ospf_route.h (struct route_standard): Add new member
1704 external_routing.
1705
1706 * ospf_ia.c (process_summary_lsa): Set external routing tyep to ospf
1707 route.
1708 (ospf_update_network_route): Likewise.
1709 (ospf_update_router_route): Likewise.
1710
17112000-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1712
1713 * ospf_flood.c (ospf_process_self_originated_lsa): Enclose
1714 OSPF_AS_NSSA_LSA treatment with #ifdef HAVE_NSSA.
1715
17162000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1717
1718 * Unconditional logging is enclosed with if (IS_DEBUG_OSPF_EVENT).
1719 Please specify "debug ospf event" for enable logging.
1720
1721 * ospf_ism.c: Do not extern debug flag varible. It is done by
1722 ospf_debug.h
1723 * ospf_asbr.c: Likewise.
1724 * ospf_lsa.c: Likewise.
1725 * ospf_nsm.c: Likewise.
1726 * ospf_zebra.c: Likewise.
1727
1728 * ospf_dump.c (debug_ospf_event): New command "debug ospf event"
1729 is added.
1730
1731 * ospfd.c (router_ospf): Change logging from vty_out() to
1732 zlog_info().
1733 (ospf_area_stub_cmd): Likewise.
1734
1735 * ospf_dump.h: Extern term_debug flags.
1736 (OSPF_DEBUG_EVENT): Add new flag.
1737 (IS_DEBUG_OSPF_EVENT): Add new macro.
1738
17392000-11-03 Dick Glasspool <dick@ipinfusion.com>
1740
1741 * ospf_flood.c (ospf_process_self_originated_lsa):
1742 OSPF_AS_NSSA_LSA is treated as same as OSPF_AS_EXTERNAL_LSA.
1743 (ospf_flood): Type-5's have no change. Type-7's can be received,
1744 and will Flood the AS as Type-5's They will also flood the local
1745 NSSA Area as Type-7's. The LSDB will be updated as Type-5's, and
1746 during re-fresh will be converted back to Type-7's (if within an
1747 NSSA).
1748 (ospf_flood_through): Incoming Type-7's were allowed here if our
1749 neighbor was an NSSA. So Flood our area with the Type-7 and also
1750 if we are an ABR, flood thru AS as Type-5.
1751
1752 * ospf_lsa.c (ospf_external_lsa_refresh): Flood NSSA both NSSA
1753 area and other area.
1754
1755 * ospf_packet.c (ospf_db_desc_proc): When AS External LSA is
1756 exists in DD packet, make it sure that this area is not stub.
1757 (ospf_ls_upd_list_lsa): When LSA type is NSSA then set lsa's area
1758 to NULL.
1759 (ospf_ls_upd): If the LSA is AS External LSA and the area is stub
1760 then discard the lsa. If the LSA is NSSA LSA and the area is not
1761 NSSA then discard the lsa.
1762
17632000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1764
1765 * ospfd.c (ospf_interface_run): Fix bug of Hello packet's option
1766 is not properly set when interface comes up.
1767
17682000-11-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1769
1770 * ospfd.h (OSPF_OPTION_O): Add new hello header option.
1771
17722000-11-01 Dick Glasspool <dick@ipinfusion.com>
1773
1774 * ospf_lsa.h: Define OSPF_MAX_LSA to 8 when HAVE_NSSA is enabled.
1775 (OSPF_GROUP_MEMBER_LSA): Define OSPF_GROUP_MEMBER_LSA.
1776
1777 * ospf_lsa.c (show_database_desc): Add "Group Membership LSA"
1778 string.
1779
17802000-10-31 Dick Glasspool <dick@ipinfusion.com>
1781
1782 * ospf_lsa.h (OSPF_AS_NSSA_LSA): Define OSPF_AS_NSSA_LSA.
1783
1784 * ospf_lsa.c (show_ip_ospf_database): NSSA database display
1785 function is added. ALIASES which have "show ip ospf database
1786 nssa-external" is added.
1787 (show_ip_ospf_border_routers): New command "show ip ospf
1788 border-routers" is added.
1789
17902000-10-30 Dick Glasspool <dick@ipinfusion.com>
1791
1792 * ospfd.c (router_ospf): NSSA Enabled message is added for
1793 testing.
1794 (ospf_area_type_set): Are type set for NSSA area.
1795 (ospf_area_stub_cmd): Special translation of no_summary into NSSA
1796 and summary information. If NSSA is enabled pass the information
1797 to ospf_area_type_set().
1798 (area_nssa): New commands are added:
1799 "area A.B.C.D nssa"
1800 "area <0-4294967295> nssa"
1801 "area A.B.C.D nssa no-summary"
1802 "area <0-4294967295> nssa no-summary"
1803 (ospf_no_area_stub_cmd): Special translation of no_summary into
1804 NSSA and summary information. If external_routing is
1805 OSPF_AREA_NSSA unset area with ospf_area_type_set (area,
1806 OSPF_AREA_DEFAULT).
1807 (show_ip_ospf_area): Display NSSA status.
1808 (config_write_ospf_area): Show NSSA configuration.
1809
1810 * ospf_packet.c (ospf_hello): For NSSA support, ensure that NP is
1811 on and E is off.
1812
18132000-10-26 Gleb Natapov <gleb@nbase.co.il>
1814
1815 * ospf_lsa.c (ospf_network_lsa_body_set): The network-LSA lists
1816 those routers that are fully adjacent to the Designated Router;
1817 each fully adjacent router is identified by its OSPF Router ID.
1818 The Designated Router includes itself in this list. RFC2328,
1819 Section 12.4.2.
1820
18212000-10-23 Jochen Friedrich <jochen@scram.de>
1822
1823 * ospf_snmp.c: ospf_oid and ospfd_oid are used in smux_open after
1824 it is registered. So those variables must be static.
1825
18262000-10-18 K N Sridhar <sridhar@euler.ece.iisc.ernet.in>
1827
1828 * ospfd.c: Add area_default_cost_decimal_cmd and
1829 no_area_default_cost_decimal_cmd alias.
1830
18312000-10-05 Gleb Natapov <gleb@nbase.co.il>
1832
1833 * ospfd.c (ospf_network_new): Fix setting area format.
1834 (no_router_ospf): Check area existance when calling
1835 ospf_interface_down().
1836
1837 * ospf_flood.c (ospf_external_info_check): Fix bug of refreshing
1838 default route.
1839
18402000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1841
1842 * zebra-0.89 is released.
1843
18442000-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1845
1846 * ospf_snmp.c (ospfHostEntry): OSPF Host MIB is implemented.
1847
1848 * ospfd.c (ospf_nbr_static_cmp): OSPF neighbor is sorted by it's
1849 address.
1850
18512000-09-28 Michael Rozhavsky <mike@nbase.co.il>
1852
1853 * ospf_interface.c (ospf_if_free): Fix deleting self neighbor twice.
1854
18552000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1856
1857 * ospf_packet.c (ospf_read): Solaris on x86 has ip_len with host
1858 byte order.
1859
18602000-09-25 Toshiaki Takada <takada@zebra.org>
1861
1862 * ospfd.c (ospf_compatible_rfc1583), (no_ospf_compatible_rfc1583):
1863 Add CISCO compatible command.
1864
18652000-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1866
1867 * ospf_abr.c (ospf_area_range_lookup): New function is added for
1868 area range lookup in OSPF-MIB.
1869 (ospf_area_range_lookup_next): Likewise.
1870
18712000-09-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1872
1873 * ospfd.c (no_router_ospf): Delete virtual link before deleting
1874 area structure.
1875
1876 * ospf_lsa.c (ospf_external_lsa_refresh_type): Check
1877 EXTERNAL_INFO(type).
1878
1879 * ospfd.c (no_router_ospf): Call ospf_vl_delete() instead of
1880 ospf_vl_data_free().
1881
1882 * ospf_interface.c (ospf_vl_shutdown): Execute ISM_InterfaceDown
1883 when ospf_vl_shutdown is called.
1884 (ospf_vl_delete): Call ospf_vl_shutdown() to delete virtual link
1885 interface's thread.
1886
18872000-09-21 Gleb Natapov <gleb@nbase.co.il>
1888
1889 * ospf_lsa.c: New implementation of OSPF refresh.
1890
18912000-09-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1892
1893 * ospf_snmp.c (ospfLsdbLookup): Add LSDB MIB implementation.
1894
18952000-09-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1896
1897 * ospf_snmp.c (ospfStubAreaEntry): Add OSPF stub area MIB.
1898
18992000-09-18 Gleb Natapov <gleb@nbase.co.il>
1900
1901 * ospf_route.h (route_standard): Change member from `struct area'
1902 to area_id.
1903
1904 * ospf_abr.c (ospf_abr_announce_network), (ospf_abr_should_announce),
1905 (ospf_abr_process_network_rt), (ospf_abr_announce_rtr),
1906 (ospf_abr_process_router_rt):
1907 * ospf_ase.c (ospf_find_asbr_route),
1908 (ospf_find_asbr_router_through_area),
1909 * ospf_ia.c (ospf_find_abr_route), (ospf_ia_router_route),
1910 (process_summary_lsa), (ospf_update_network_route),
1911 (ospf_update_router_route):
1912 * ospf_route.c (ospf_intra_route_add), (ospf_intra_add_router),
1913 (ospf_intra_add_transit), (ospf_intra_add_stub),
1914 (ospf_route_table_dump), (show_ip_ospf_route_network),
1915 (show_ip_ospf_route_router), (ospf_asbr_route_cmp),
1916 (ospf_prune_unreachable_routers):
1917 * ospf_spf.c (ospf_rtrs_print):
1918 * ospfd.c (ospf_rtrs_free): Fix the struct change above.
1919
19202000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1921
1922 * ospf_network.c (ospf_serv_sock_init): Enclose SO_BINDTODEVICE
1923 with ifdef.
1924
19252000-09-13 Gleb Natapov <gleb@nbase.co.il>
1926
1927 * ospf_ism.c (ospf_elect_dr), (ospf_elect_bdr): Fix DR election.
1928
1929 * ospf_network.c (ospf_serv_sock_init): Add socket option
1930 SO_BINDTODEVICE on read socket.
1931
1932 * ospf_packet.c (ospf_hello): Ignore Hello packet if E-bit does
1933 not match.
1934
1935 * ospfd.c (ospf_area_check_free), (ospf_area_get),
1936 (ospf_area_add_if): New function added.
1937
19382000-09-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1939
1940 * ospf_route.c (ospf_intra_add_router): Update ABR and ASBR router
1941 count.
1942
1943 * ospf_spf.c (ospf_spf_init): Rest ABR and ASBR router count
1944 starting SPF calculation.
1945
1946 * ospfd.h (struct ospf_area): Add ABR and ASBR router count.
1947
19482000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1949
1950 * ospfd.c (ospf_area_id_cmp): New area structure is sorted by area
1951 ID.
1952
1953 * ospf_lsa.c (ospf_router_lsa_originate): For OSPF MIB update
1954 lsa_originate_count.
1955 (ospf_network_lsa_originate): Likewise.
1956 (ospf_summary_lsa_originate): Likewise.
1957 (ospf_summary_asbr_lsa_originate): Likewise.
1958 (ospf_external_lsa_originate): Likewise.
1959
19602000-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1961
1962 * ospf_snmp.c (ospf_variables): ospfRouterID's type RouterID
1963 syntax is IpAddress.
1964 (ospf_admin_stat): New function for OSPF administrative status
1965 check.
1966
19672000-09-10 Jochen Friedrich <jochen@scram.de>
1968
1969 * ospf_snmp.c: Implement OSPF MIB skeleton.
1970
19712000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1972
1973 * ospf_snmp.c: New file is added.
1974
19752000-09-07 David Lipovkov <davidl@nbase.co.il>
1976
1977 * ospf_zebra.c (ospf_interface_delete): Add pseudo interface
1978 treatment.
1979
1980 * ospf_interface.c (interface_config_write): Likewise.
1981
19822000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1983
1984 * zebra-0.88 is released.
1985
19862000-08-17 Michael Rozhavsky <mike@nbase.co.il>
1987
1988 * ospfd.c (ospf_area_free): Remove virtual link configuration only
1989 when Area is removed.
1990
19912000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1992
1993 * ospfd.c (network_area): Revert check for EXTERNAL_INFO
1994 (ZEBRA_ROUTE_CONNECT).
1995 (no_network_area): Likewise.
1996
19972000-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1998
1999 * ospfd.h (struct ospf): Add distance_table and
2000 distance_{all,intra,inter,external}.
2001
2002 * ospf_zebra.c: Add OSPF distance related functions.
2003
20042000-08-15 Gleb Natapov <gleb@nbase.co.il>
2005
2006 * ospf_asbr.c (ospf_external_info_find_lsa): New function added.
2007
2008 * ospf_lsa.c (ospf_default_external_info),
2009 (ospf_default_originate_timer), (ospf_external_lsa_refresh_default):
2010 New function added.
2011
2012 * ospf_zebra.c
2013 (ospf_default_information_originate_metric_type_routemap),
2014 (ospf_default_information_originate_always_metric_type_routemap):
2015 Change name and add route-map function.
2016 (ospf_default_information_originate_metric_routemap),
2017 (ospf_default_information_originate_routemap),
2018 (ospf_default_information_originate_type_metric_routemap):
2019 New DEFUN added.
2020
20212000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2022
2023 * ospf_zebra.c (zebra_interface_if_set_value): Change ifindex
2024 restore size from two octet to four.
2025
20262000-08-14 Michael Rozhavsky <mike@nbase.co.il>
2027
2028 * ospf_ase.c (ospf_ase_incremental_update): Implement incremental
2029 AS-external-LSA in 16.6 of RFC2328.
2030
20312000-08-14 Matthew Grant <grantma@anathoth.gen.nz>
2032
2033 * ospf_interface.c (ospf_if_get_output_cost): Change cost
2034 calculation algorithm.
2035
2036 * ospf_packet (ospf_ls_upd): Fix problem of LSA retransmitting.
2037
20382000-08-11 Michael Rozhavsky <mike@nbase.co.il>
2039
2040 * ospf_lsa.c (ospf_maxage_lsa_remover): Fix maxage remover for
2041 AS-external-LSAs.
2042
20432000-08-10 Toshiaki Takada <takada@zebra.org>
2044
2045 * ospfd.c (auto_cost_reference_bandwidth): New DEFUN added.
2046 `auto-cost reference-bandwidth' OSPF router command added.
2047
20482000-08-08 Gleb Natapov <gleb@nbase.co.il>
2049
2050 * ospf_routemap.c (ospf_route_map_update): New function added.
2051 Add route-map event hook.
2052
20532000-08-08 Toshiaki Takada <takada@zebra.org>
2054
2055 * ospf_zebra.c (ospf_distribute_check_connected): If redistribute
2056 prefix is connected route on OSPF enabled interface, suppress to
2057 announce it.
2058
20592000-08-08 Matthew Grant <grantma@anathoth.gen.nz>
2060
2061 * ospf_interface.c (ospf_if_get_output_cost):
2062 New function added. Handle bandwidth parameter for cost
2063 calculation.
2064
20652000-08-08 Michael Rozhavsky <mike@nbase.co.il>
2066
2067 * ospf_interface.c (interface_config_write): Show interface
2068 configuration regardless interface is down.
2069
2070 * ospf_ase.c (ospf_ase_caocluate_route): Whole rewritten external
2071 route calculate function.
2072
20732000-08-08 Gleb Natapov <gleb@nbase.co.il>
2074
2075 * ospf_routemap.c: New file added.
2076
2077 * ospf_asbr.c (ospf_reset_route_map_set_values),
2078 (ospf_route_map_set_compare): New function added.
2079
2080 * ospf_lsa.c (ospf_external_lsa_body_set): Set routemap metric
2081 with AS-external-LSA.
2082
20832000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2084
2085 * ospf_ase.c (ospf_ase_calculate_route_add): Pass new->cost to
2086 ospf_zebra_add as metric.
2087 (ospf_ase_calculate_route_add): Likewise.
2088
2089 * ospf_route.c (ospf_route_install): Pass or->cost to
2090 ospf_zebra_add as metric.
2091
2092 * ospf_zebra.c (ospf_zebra_add): Add metric arguemnt.
2093 (ospf_zebra_delete): Likewise.
2094
20952000-08-03 Matthew Grant <grantma@anathoth.gen.nz>
2096
2097 * ospf_flood.c (ospf_flood_delayed_lsa_ack): New function added.
2098 Dispatch delayed-ACK with flooding AS-external-LSA across virtual
2099 link.
2100
21012000-07-31 Matthew Grant <grantma@anathoth.gen.nz>
2102
2103 * ospfd.c (show_ip_ospf_area): Fix lack of VTY_NEWLINE when
2104 `show ip ospf'.
2105
2106 * ospf_interface.c (ospf_if_free): Fix bug of crash with
2107 Point-to-Point interface.
2108
21092000-07-27 Michael Rozhavsky <mike@nbase.co.il>
2110
2111 * ospf_flood.c (ospf_process_self_originated_lsa):
2112 Make sure to clear LSA->param (redistributed external information)
2113 before refreshment.
2114
21152000-07-27 Gleb Natapov <gleb@nbase.co.il>
2116
2117 * ospfd.c (refresh_group_limit), (refresh_per_slice),
2118 (refresh_age_diff): New defun added. Refresher related parameter
2119 can be configurable.
2120
21212000-07-27 Akihiro Mizutani <mizutani@dml.com>
2122
2123 * ospf_interface.c (interface_config_write): Print `description'
2124 config directive to work.
2125
21262000-07-24 Akihiro Mizutani <mizutani@dml.com>
2127
2128 * ospf_interface.c (ospf_if_init): Use install_default for
2129 INTERFACE_NODE.
2130
21312000-07-24 Gleb Natapov <gleb@nbase.co.il>
2132
2133 * ospf_packet.c (ospf_ls_upd_send_list), (ospf_ls_upd_send_event),
2134 (ospf_ls_ack_send_list), (ospf_ls_ack_send_event): New function added.
2135 This make sending always as many LS update/Ack combined in one ospf
2136 packet.
2137
21382000-07-24 Gleb Natapov <gleb@nbase.co.il>
2139
2140 * ospf_packet.c (ospf_ls_upd_list_lsa): Set NULL to lsa->area if
2141 LSA is AS-external-LSA.
2142
2143 * ospf_nsm.c (nsm_reset_nbr): Do not cancel Inactivity timer.
2144
21452000-07-21 Toshiaki Takada <takada@zebra.org>
2146
2147 * ospf_zebra.c (ospf_default_originate_timer): Set timer for
2148 `default-information originate'. Fix some default originate
2149 related functions.
2150
21512000-07-12 Toshiaki Takada <takada@zebra.org>
2152
2153 * ospf_lsa.c (stream_put_ospf_metric): New function added.
2154
21552000-07-12 Toshiaki Takada <takada@zebra.org>
2156
2157 * ospf_lsa.c (show_ip_ospf_database_router),
2158 (show_ip_ospf_database_network), (show_ip_ospf_database_summary),
2159 (show_ip_ospf_database_summary_asbr), (show_ip_ospf_database_externel),
2160 (show_router_lsa), (show_any_lsa), (show_router_lsa_self),
2161 (show_any_lsa_self): Functions removed.
2162
2163 (show_lsa_prefix_set), (show_lsa_detail_proc), (show_lsa_detail),
2164 (show_lsa_detail_adv_router_proc), (show_lsa_detail_adv_router):
2165 New functions added. Replace above functions.
2166
2167 (show_ip_ospf_database_all), (show_ip_ospf_database_self_originated):
2168 Functions removed.
2169 (show_ip_ospf_database_summary): New functions added. Replace
2170 above functions.
2171
2172 (show_ip_ospf_database_cmd): DEFUN rearranged.
2173 (show_ip_ospf_database_type_id_cmd),
2174 (show_ip_ospf_database_type_id_adv_router_cmd),
2175 (show_ip_ospf_database_type_is_self_cmd): New ALIASes added.
2176 (show_ip_ospf_database_type_adv_rotuer_cmd): New DEFUN added.
2177 (show_ip_ospf_database_type_self_cmd): New ALIAS added.
2178
21792000-07-11 Toshiaki Takada <takada@zebra.org>
2180
2181 * ospf_asbr.c (ospf_external_info_new),
2182 (ospf_external_info_free): New functions added.
2183
2184 * ospf_lsa.h (ospf_lsa): Add new member `void *param' to set
2185 origination parameter for external-LSA.
2186 Remove member `redistribute'.
2187
2188 * ospf_zebra.c (ospf_redistirbute_set): When `redistribute'
2189 command executed, metric and metric-type values are overridden.
2190 If one of those is changed refresh AS-external-LSAs for appropriate
2191 type.
2192
21932000-07-11 Michael Rozhavsky <mike@nbase.co.il>
2194
2195 * ospf_lsa.c (ospf_summary_lsa_refresh),
2196 (ospf_summary_asbr_lsa_refresh): Make sure to refresh summary-LSAs.
2197
2198 * ospf_abr.c (set_metric): New function added.
2199
22002000-07-07 Toshiaki Takada <takada@zebra.org>
2201
2202 * ospf_zebra.c (ospf_default_information_originate_metric_type),
2203 (ospf_default_information_originate_type_metric): New defun added.
2204 Metic and Metric type can be set to default route.
2205 (ospf_default_information_originate_always_metric_type):
2206 (ospf_default_information_originate_always_type_metric):
2207 New defun added. Metric and Metric type can be set to default
2208 always route.
2209
2210 * ospf_zebra.c (ospf_default_metric), (no_ospf_default_metric):
2211 New defun added.
2212
22132000-07-06 Gleb Natapov <gleb@nbase.co.il>
2214
2215 * ospf_flood.c (ospf_flood_through_area): Fix bug of considering
2216 on the same interface the LSA was received from.
2217
22182000-07-06 Michael Rozhavsky <mike@nbase.co.il>
2219
2220 * ospfd.c (ospf_config_write): Fix bug of printing `area stub'
2221 command with `write mem'.
2222
2223 * ospfd.c (no_router_ospf): Remove installed routes from zebra.
2224
2225 * ospf_zebra.c (ospf_interface_delete): Fix function to handle
2226 zebra interface delete event.
2227
22282000-07-06 Toshiaki Takada <takada@zebra.org>
2229
2230 * ospf_zebra.c (ospf_default_information_originate),
2231 (ospf_default_information_originate_always): New DEFUN added.
2232
22332000-07-05 Michael Rozhavsky <mike@nbase.co.il>
2234
2235 * ospf_route.c (ospf_terminate): Make sure to remove external route
2236 when SIGINT received.
2237
22382000-07-03 Gleb Natapov <gleb@nbase.co.il>
2239
2240 * ospf_flood.c, ospf_ism.c, ospf_lsa,c, ospfd.c: Make sure to free
2241 many structure with `no router ospf'.
2242
22432000-06-30 Gleb Natapov <gleb@nbase.co.il>
2244
2245 * ospf_neighbor.c (ospf_nbr_new),
2246 ospf_nsm.c (nsm_timer_set): Start LS update timer only
2247 when neighbor enters Exchange state.
2248
22492000-06-29 Gleb Natapov <gleb@nbase.co.il>
2250
2251 * ospf_nsm.c (nsm_timer_set), (nsm_exchange_done),
2252 ospf_packet.c (ospf_db_desc_proc):
2253 Do not cancel DD retransmit timer when Master.
2254
22552000-06-29 Gleb Natapov <gleb@nbase.co.il>
2256
2257 * ospf_abr.c (ospf_abr_announce_network_to_area),
2258 (ospf_abr_announce_rtr_to_area)
2259 ospf_ase.c (ospf_ase_rtrs_register_lsa),
2260 ospf_flood.c (ospf_process_self_originated_lsa),
2261 (ospf_flood_through_area), (ospf_ls_request_delete),
2262 ospf_interface.c (ospf_if_free),
2263 ospf_ism.c (ism_change_status),
2264 ospf_lsa.c (ospf_router_lsa_update_timer),
2265 (ospf_router_lsa_install), (ospf_network_lsa_install),
2266 (ospf_lsa_maxage_delete), (ospf_lsa_action),
2267 (ospf_schedule_lsa_flood_area),
2268 ospf_nsm.c (nsm_change_status),
2269 ospf_packet.c (ospf_make_ls_req_func), (ospf_make_ls_ack):
2270 Use ospf_lsa_{lock,unlock} for all looking-up of LSA.
2271
2272 * ospf_flood.c (ospf_ls_request_free): Function deleted.
2273
2274 * ospf_lsa.c (ospf_discard_from_db): New function added.
2275
22762000-06-26 Toshiaki Takada <takada@zebra.org>
2277
2278 * ospfd.h (ospf): struct member `external_lsa' name changed to
2279 `lsdb'.
2280
22812000-06-26 Toshiaki Takada <takada@zebra.org>
2282
2283 * ospf_lsa.c (ospf_lsa_install), (ospf_router_lsa_install),
2284 (ospf_network_lsa_install), (ospf_summary_lsa_install),
2285 (ospf_summary_asbr_lsa_install), (ospf_external_lsa_install):
2286 Functions re-arranged.
2287
2288 * ospf_lsa.c (IS_LSA_MAXAGE), (IS_LSA_SELF): Macro added.
2289
22902000-06-20 Michael Rozhavsky <mike@nbase.co.il>
2291
2292 * ospf_packet.c (ospf_ls_req), (ospf_ls_upd), (ospf_ls_ack): Add
2293 verification of LS type.
2294
22952000-06-20 Gleb Natapov <gleb@nbase.co.il>
2296
2297 * ospf_ase.c (ospf_ase_calculate_timer): Add more sanity check
2298 whether rn->info is NULL.
2299
23002000-06-20 Toshiaki Takada <takada@zebra.org>
2301
2302 * ospfd.c (show_ip_ospf_interface_sub): Show Router-ID of both
2303 DR and Backup correctly with `show ip ospf interface' command.
2304
23052000-06-20 Toshiaki Takada <takada@zebra.org>
2306
2307 * ospf_lsa.c (ospf_lsa_lock), (ospf_lsa_unlock),
2308 (ospf_lsa_discard): These functions are used for avoiding
2309 unexpected reference to freed LSAs.
2310
23112000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2312
2313 * ospf_packet.c (ospf_ls_upd): Initialize lsa by NULL to avoid
2314 warning.
2315
23162000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2317
2318 * ospf_ase.h (ospf_ase_rtrs_register_lsa): Add prototype.
2319
23202000-06-12 Toshiaki Takada <takada@zebra.org>
2321
2322 * ospf_lsa.c (ospf_external_lsa_install): Make sure to register
2323 LSA to rtrs_external when replacing AS-external-LSAs in LSDB.
2324 Fix core dump.
2325
23262000-06-10 Toshiaki Takada <takada@zebra.org>
2327
2328 * ospf_lsdb.c (id_to_prefix), (ospf_lsdb_hash_key),
2329 (ospf_lsdb_hash_cmp), (ospf_lsdb_new), (ospf_lsdb_iterator),
2330 (lsdb_free), (ospf_lsdb_free), (ospf_lsdb_add), (ospf_lsdb_delete),
2331 (find_lsa), (ospf_lsdb_lookup), (find_by_id),
2332 (ospf_lsdb_lookup_by_id), (ospf_lsdb_lookup_by_header): Functinos
2333 removed for migration to new_lsdb.
2334
2335 * ospf_lsa.c (ospf_summary_lsa_install),
2336 (ospf_summary_asbr_lsa_install), (ospf_maxage_lsa_remover),
2337 (ospf_lsa_maxage_walker), (ospf_lsa_lookup),
2338 (ospf_lsa_lookup_by_id): Use new_lsdb instead of ospf_lsdb.
2339 (count_lsa), (ospf_lsa_count_table), (ospf_lsa_count),
2340 (ospf_get_free_id_for_prefix): Funcitions removed.
2341
23422000-06-09 Gleb Natapov <gleb@nbase.co.il>
2343
2344 * ospf_ism.c (ism_interface_down): Prevent some unneeded DR changes.
2345
2346 * ospf_packet.c (ospf_db_desc_proc): Fix memory leak.
2347 (ospf_hello): Always copy router-ID when hello is received.
2348
23492000-06-08 Gleb Natapov <gleb@nbase.co.il>
2350
2351 * ospf_lsa.h (struct ospf_lsa): Add member of pointer to struct
2352 ospf_area.
2353
23542000-06-08 Michael Rozhavsky <mike@nbase.co.il>
2355
2356 * ospf_ase.c (ospf_asbr_route_same): New function added.
2357 This function makes sure external route calculation more
2358 precisely.
2359
23602000-06-07 Michael Rozhavsky <mike@nbase.co.il>
2361
2362 * ospf_ism.c (ism_change_status): Use ospf_lsa_flush_area for
2363 network-LSA deletion instead of using ospf_lsdb_delete.
2364 Also cancel network-LSA origination timer.
2365
23662000-06-07 Levi Harper <lharper@kennedytech.com>
2367
2368 * ospf_interface.c (ospf_if_down): Close read fd when an interface
2369 goes down.
2370
23712000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2372
2373 * ospf_asbr.c (ospf_external_info_lookup): Add explicit brace for
2374 avoid ambiguous else.
2375
2376 * ospf_flood.c (ospf_external_info_check): Likewise.
2377
23782000-06-05 Toshiaki Takada <takada@zebra.org>
2379
2380 * ospf_nsm.c (nsm_adj_ok): Fix bug of DR election.
2381
23822000-06-04 Toshiaki Takada <takada@zebra.org>
2383
2384 * ospf_zebra.c (ospf_default_information_originate),
2385 (no_ospf_default_information_originate): New DEFUN added.
2386
23872000-06-03 Toshiaki Takada <takada@zebra.org>
2388
2389 * ospf_lsa.h, ospf_asbr.h (external_info): Struct moved from
2390 ospf_lsa.h to ospf_asbr.h.
2391
2392 * ospf_lsa.c, ospf_asbr.c (ospf_external_info_add),
2393 (ospf_external_info_delete): Function moved from ospf_lsa.c
2394 to ospf_asbr.c.
2395
23962000-06-03 Toshiaki Takada <takada@zebra.org>
2397
2398 * ospf_flood.c (ospf_external_info_check): New function added.
2399 (ospf_process_self_orignated_lsa): Make sure to flush
2400 self-originated AS-external-LSA, when router reboot and no longer
2401 originate those AS-external-LSA.
2402
24032000-06-02 Toshiaki Takada <takada@zebra.org>
2404
2405 * ospf_network.c (ospf_serv_sock): Remove SO_DONTROUTE
2406 socket option.
2407
2408 * ospf_packet.c (ospf_write): Set MSG_DONTROUTE flag for
2409 unicast destination packets.
2410
24112000-06-02 Toshiaki Takada <takada@zebra.org>
2412
2413 * ospf_lsdb.c (new_lsdb_delete): Delete entry from LSDB only when
2414 specified LSA matches.
2415
24162000-06-02 Gleb Natapov <gleb@nbase.co.il>
2417
2418 * ospf_network.c (ospf_serv_sock): Set SO_DONTROUTE
2419 socket option.
2420
24212000-06-01 Akihiro Mizutani <mizutani@dml.com>
2422
2423 * ospf_dump.c: Replace string `Debugging functions\n' with DEBUG_STR.
2424 Replace string `OSPF information\n' with OSPF_STR.
2425
24262000-06-01 Toshiaki Takada <takada@zebra.org>
2427
2428 * ospf_lsdb.[ch]: Use new_lsdb struct for network-LSA instead of
2429 ospf_lsdb.
2430
24312000-06-01 Toshiaki Takada <takada@zebra.org>
2432
2433 * ospf_dump.c (config_debug_ospf_packet), (config_debug_ospf_event),
2434 (config_debug_ospf_ism), (config_debug_ospf_nsm),
2435 (config_debug_ospf_lsa), (config_debug_ospf_zebra),
2436 (term_debug_ospf_packet), (term_debug_ospf_event),
2437 (term_debug_ospf_ism), (term_debug_ospf_nsm),
2438 (term_debug_ospf_lsa), (term_debug_ospf_zebra): Repalce debug_ospf_*
2439 variable to use for debug option flags.
2440
2441 (debug_ospf_packet), (debug_ospf_ism), (debug_ospf_nsm),
2442 (debug_ospf_lsa), (debug_ospf_zebra): Set {config,term}_debug_*
2443 flags when vty->node is CONFIG_NODE, otherwise set only term_debug_*
2444 flags.
2445
2446 * ospf_dump.h (CONF_DEBUG_PACKET_ON), (CONF_DEBUG_PACKET_OFF),
2447 (TERM_DEBUG_PACKET_ON), (TERM_DEBUG_PACKET_OFF),
2448 (CONF_DEBUG_ON), (CONF_DEBUG_OFF), (IS_CONF_DEBUG_OSPF_PACKET),
2449 (IS_CONF_DEBUG_OSPF): New Macro added.
2450
24512000-05-31 Toshiaki Takada <takada@zebra.org>
2452
2453 * ospfd.c (clear_ip_ospf_neighbor): New DEFUN added.
2454 Currently this command is used for only debugging.
2455
2456 * ospf_nsm.c (nsm_change_status): Make sure thread cancellation
2457 for network-LSA when DR has no full neighbors.
2458
2459 * ospf_nsm.c (ospf_db_summary_clear): New function added.
2460
24612000-05-30 Toshiaki Takada <takada@zebra.org>
2462
2463 * ospf_lsdb.c (new_lsdb_insert): LSAs are always freed by
2464 maxage_lsa_remover when LSA is replaced.
2465
24662000-05-25 Gleb Natapov <gleb@nbase.co.il>
2467
2468 * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all): Add argument
2469 `struct ospf_area' to remove LSA from Link State retransmission list
2470 of neighbor from only one Area.
2471
24722000-05-24 Michael Rozhavsky <mike@nbase.co.il>
2473
2474 * ospf_lsdb.c (ospf_lsdb_add): Preserve flags field when
2475 overriting old LSA with new LSA.
2476
24772000-05-24 Gleb Natapov <gleb@nbase.co.il>
2478
2479 * ospf_lsa.c (ospf_router_lsa_body_set): Fix bug of router-LSA
2480 size calculation.
2481
24822000-05-22 Michael Rozhavsky <mike@nbase.co.il>
2483
2484 * ospf_route.c (ospf_intra_add_stub):
2485 * ospf_spf.h (struct vertex): Use u_int32_t for distance (cost)
2486 value instead of u_int16_t.
2487
24882000-05-22 Axel Gerlach <agerlach@datus.datus.com>
2489
2490 * ospf_ia.c (ospf_ia_network_route): Fix bug of Inter-area route
2491 equal cost path calculation.
2492
24932000-05-21 Toshiaki Takada <takada@zebra.org>
2494
2495 * ospf_ase.c (ospf_ase_calculate_route_delete): New function added.
2496 Make sure, when rotuer route is deleted, related external routes
2497 are also deleted.
2498
24992000-05-20 Toshiaki Takada <takada@zebra.org>
2500
2501 * ospfd.c (ospf_interface_down): Make sure interface flag is disable
2502 and set fd to -1.
2503
25042000-05-16 Toshiaki Takada <takada@zebra.org>
2505
2506 * ospf_asbr.c (ospf_asbr_should_announce), (ospf_asbr_route_remove):
2507 Functions removed.
2508
2509 * ospfd.h (EXTERNAL_INFO): Macro added.
2510 Substitute `ospf_top->external_info[type]' with it.
2511
25122000-05-16 Toshiaki Takada <takada@zebra.org>
2513
2514 * ospf_lsa.c (ospf_rtrs_external_remove): New function added.
2515
25162000-05-14 Gleb Natapov <gleb@nbase.co.il>
2517
2518 * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all)
2519 * ospf_lsdb.c (new_lsdb_insert)
2520 * ospf_packet.c (ospf_ls_ack): Fix database synchonization problem.
2521
25222000-05-14 Gleb Natapov <gleb@nbase.co.il>
2523
2524 * ospf_lsa.h (tv_adjust), (tv_ceil), (tv_floor), (int2tv),
2525 (tv_add), (tv_sub), (tv_cmp): Prototype definition added.
2526
2527 * ospf_nsm.h (ospf_db_summary_delete_all): Prototype definition added.
2528
25292000-05-13 Toshiaki Takada <takada@zebra.org>
2530
2531 * ospf_lsa.[ch] (ospf_lsa): struct timestamp type is changed from
2532 time_t to struct timeval.
2533 (tv_adjust), (tv_ceil), (tv_floor), (int2tv), (tv_add),
2534 (tv_sub), (tv_cmp): timeval utillity functions added.
2535
25362000-05-12 Toshiaki Takada <takada@zebra.org>
2537
2538 * ospf_lsa.[ch] (ospf_schedule_update_router_lsas): Delete function.
2539 Change to use macro OSPF_LSA_UPDATE_TIMER instead of using
2540 this function.
2541 router-LSA refresh timer related stuff is re-organized.
2542
25432000-05-10 Gleb Natapov <gleb@nbase.co.il>
2544
2545 * ospf_interface.c (ospf_vl_set_params):
2546 * ospf_packet.c (ospf_check_network_mask):
2547 * ospf_spf.[ch] (ospf_spf_next):
2548 Remove field address from `struct vertex', and search for peer
2549 address of virtual link in function `ospf_vl_set_params' instead.
2550
25512000-05-10 Gleb Natapov <gleb@nbase.co.il>
2552
2553 * ospf_packet.c (ospf_ls_upd): Fix some memory leak related LSA.
2554
25552000-05-08 Thomas Molkenbur <tmo@datus.com>
2556
2557 * ospf_packet.c (ospf_packet_dup): Replace ospf_steram_copy()
2558 with ospf_stream_dup() to fix memory leak.
2559
25602000-05-08 Michael Rozhavsky <mike@nbase.co.il>
2561
2562 * ospf_flood.c (ospf_flood_through_area): Fix the problem of
2563 LSA update without DROther.
2564
25652000-05-04 Gleb Natapov <gleb@nbase.co.il>
2566
2567 * ospf_spf.c (ospf_vertex_free): Fix memory leak of SPF calculation.
2568
25692000-05-03 Toshiaki Takada <takada@zebra.org>
2570
2571 * ospf_neighbor.c (ospf_db_summary_add): Use new_lsdb struct
2572 instead linked-list.
2573 (ospf_db_summary_count), (ospf_db_summary_isempty):
2574 New function added.
2575
2576 * ospf_lsa.c (ospf_rotuer_lsa): Re-arrange and divide functions.
2577
25782000-05-02 Gleb Natapov <gleb@nbase.co.il>
2579
2580 * ospf_lsdb.c (new_lsdb_cleanup): Fix memory leak. When LSDB are
2581 not needed any more, then free them.
2582
25832000-05-02 Toshiaki Takada <takada@zebra.org>
2584
2585 * ospfd.c (timers_spf), (no_timers_spf): New defun added.
2586 SPF calculation timers related stuff is rearranged.
2587
2588 * ospf_spf.c (ospf_spf_calculate_timer_add): Function removed.
2589 SPF timer is scheduled by SPF calculation delay and holdtime
2590 configuration variable.
2591
2592 * ospf_lsa.c (ospf_external_lsa_nexthop_get): Set AS-external-LSA's
2593 forwarding address when nexthop learned by other protocols is
2594 in the OSPF domain.
2595
2596 * ospf_zebra.c (ospf_redistribute_source_metric_type),
2597 (ospf_redistribute_source_type_metric): Re-arrange DEFUNs and
2598 ALIASes.
2599
26002000-05-01 Toshiaki Takada <takada@zebra.org>
2601
2602 * ospf_flood.c (ospf_ls_retransmit_count),
2603 (ospf_ls_retransmit_isempty): New function added.
2604
2605 (ospf_ls_retransmit_add), (ospf_ls_retransmit_delete),
2606 (ospf_ls_retransmit_clear), (ospf_ls_retransmit_lookup),
2607 (ospf_ls_retransmit_delete_all), (ospf_ls_retransmit_delete_nbr_all),
2608 (ospf_ls_retransmit_add_nbr_all): Replace these functions to use
2609 new_lsdb.
2610
26112000-04-29 Toshiaki Takada <takada@zebra.org>
2612
2613 * ospfd.c (no_network_area): Add check Area-ID whether specified
2614 Area-ID with prefix matches config.
2615
26162000-04-27 Toshiaki Takada <takada@zebra.org>
2617
2618 * ospf_lsa.c (ospf_maxage_lsa_remover): Fix problem of
2619 remaining withdrawn routes on zebra.
2620
26212000-04-25 Michael Rozhavsky <mike@nbase.co.il>
2622
2623 * ospf_nsm.c (nsm_kill_nbr), (nsm_ll_down), (nsm_change_status),
2624 (ospf_nsm_event): Fix network-LSA re-origination problem.
2625
26262000-04-24 Toshiaki Takada <takada@zebra.org>
2627
2628 * ospf_nsm.c (ospf_db_desc_timer): Fix bug of segmentation fault
2629 with DD retransmission.
2630
2631 * ospf_nsm.c (nsm_kill_nbr): Fix bug of re-origination when
2632 a neighbor disappears.
2633
26342000-04-23 Michael Rozhavsky <mike@nbase.co.il>
2635
2636 * ospf_abr.c (ospf_abr_announce_network_to_area): Fix bug of
2637 summary-LSAs reorigination. Correctly copy OSPF_LSA_APPROVED
2638 flag to new LSA. when summary-LSA is reoriginatd.
2639
2640 * ospf_flood.c (ospf_flood_through_area): Fix bug of flooding
2641 procedure. Change the condition of interface selection.
2642
26432000-04-21 Toshiaki Takada <takada@zebra.org>
2644
2645 * ospf_lsa.c (ospf_refresher_register_lsa): Fix bug of refresh never
2646 occurs.
2647
2648 * ospfd.c (show_ip_ospf_neighbor_id): New defun added.
2649 `show ip ospf neighbor' related commands are re-arranged.
2650
26512000-04-20 Toshiaki Takada <takada@zebra.org>
2652
2653 * ospf_dump.c (debug_ospf_zebra): New defun added.
2654 Suppress zebra related debug information.
2655
26562000-04-19 Toshiaki Takada <takada@zebra.org>
2657
2658 * ospf_zebra.c (ospf_distribute_list_update_timer),
2659 (ospf_distribute_list_update), (ospf_filter_update):
2660 New function added. Re-organize `distribute-list' router ospf
2661 command.
2662
26632000-04-13 Michael Rozhavsky <mike@nbase.co.il>
2664
2665 * ospf_packet.c (ospf_make_ls_upd): Add check for MAX_AGE.
2666
26672000-04-14 Michael Rozhavsky <mike@nbase.co.il>
2668
2669 * ospf_packet.c (ospf_make_ls_upd): Increment LS age by configured
2670 interface transmit_delay.
2671
26722000-04-14 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2673
2674 * ospf_interface.c (ip_ospf_cost), (no_ip_ospf_cost):
2675 Add to schedule router_lsa origination when the interface cost changes.
2676
26772000-04-12 Toshiaki Takada <takada@zebra.org>
2678
2679 * ospf_lsa.c (ospf_refresher_register_lsa),
2680 (ospf_refresher_unregister_lsa): Fix bug of core dumped.
2681
2682 * ospfd.c (no_router_ospf): Fix bug of core dumped.
2683
26842000-03-29 Toshiaki Takada <takada@zebra.org>
2685
2686 * ospf_nsm.c (nsm_oneway_received): Fix bug of MS flag unset.
2687
26882000-03-29 Michael Rozhavsky <mike@nbase.co.il>
2689
2690 * ospf_lsa.c (ospf_network_lsa):
2691 * ospf_nsm.c (ospf_nsm_event): Fix bug of Network-LSA originated
2692 in stub network.
2693
26942000-03-28 Toshiaki Takada <takada@zebra.org>
2695
2696 * ospf_nsm.c (nsm_bad_ls_req), (nsm_seq_number_mismatch),
2697 (nsm_oneway_received): Fix bug of NSM state flapping between
2698 ExStart and Exchange.
2699
27002000-03-28 Toshiaki Takada <takada@zebra.org>
2701
2702 * ospf_packet.h (strcut ospf_header): Fix the size of ospf_header,
2703 change u_int8_t to u_char.
2704
27052000-03-27 Toshiaki Takada <takada@zebra.org>
2706
2707 * ospf_lsa.c (ospf_lsa_checksum): Take care of BIGENDIAN architecture.
2708
27092000-03-27 Toshiaki Takada <takada@zebra.org>
2710
2711 * ospfd.c (ospf_interface_run): Make sure Address family matches.
2712
27132000-03-26 Love <lha@s3.kth.se>
2714
2715 * ospf_packet.c (ospf_write): Chack result of sendto().
2716
27172000-03-26 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2718
2719 * ospf_nsm.c (nsm_oneway_received): Fix bug of 1-WayReceived in NSM.
2720
27212000-03-23 Libor Pechacek <farco@clnet.cz>
2722
2723 * ospf_lsa.c (ospf_network_lsa)
2724 * ospf_lsdb.c (new_lsdb_insert): Fix bug of accessing to
2725 unallocated memory.
2726
27272000-03-23 Toshiaki Takada <takada@zebra.org>
2728
2729 * ospfd.c (ospf_config_write): Fix bug of duplicate line for
2730 `area A.B.C.D authentication'.
2731
27322000-03-22 Toshiaki Takada <takada@zebra.org>
2733
2734 * ospf_debug.c (debug_ospf_lsa), (no_debug_ospf_lsa): Defun added.
2735 Suppress all zlog related to LSAs with this config option.
2736
27372000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2738
2739 * ospf_nsm.c (ospf_nsm_event): Add check for NSM_InactivityTimer.
2740
27412000-03-21 Toshiaki Takada <takada@zebra.org>
2742
2743 * ospf_packet.c (ospf_ls_upd_timer), (ospf_ls_req):
2744 Fix bug of memory leak about linklist.
2745
2746 * ospf_flood.c (ospf_flood_through_area): Likewise.
2747
27482000-03-18 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2749
2750 * ospf_flood.c (ospf_ls_retransmit_lookup): Add checksum comparison
2751 to identify LSA uniquely. This fix routes lost.
2752
27532000-03-18 Toshiaki Takada <takada@zebra.org>
2754
2755 * ospf_ase.c (ospf_find_asbr_route): Add sanity check with router
2756 routing table.
2757
27582000-03-17 Alex Zinin <zinin@amt.ru>
2759
2760 * ospf_spf.[ch]: Bug fix.
2761 The 2nd stage of Dijkstra could consider one vertex
2762 more than once if there is more than one link
2763 between the routers, thus adding extra CPU overhead
2764 and extra next-hops.
2765 Fixed.
2766
27672000-03-15 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2768
2769 * ospf_nsm.c (nsm_inactivity_timer): Changed to call nsm_kill_nbr().
2770
27712000-03-14 Toshiaki Takada <takada@zebra.org>
2772
2773 * ospf_route.c (ospf_route_copy_nexthops): Fix bug of memory leak of
2774 ospf_path. Actually ignore merging ospf_route with completely same
2775 paths.
2776
27772000-03-12 Toshiaki Takada <takada@zebra.org>
2778
2779 * ospf_lsa.c (show_as_external_lsa_detail): fix bug of
2780 external route tag byte order.
2781
27822000-03-11 Toshiaki Takada <takada@zebra.org>
2783
2784 * ospf_lsdb.c (ospf_lsdb_insert): New function added.
2785
27862000-03-09 Toshiaki Takada <takada@zebra.org>
2787
2788 * ospf_lsa.c (ospf_external_lsa_install),
2789 (ospf_lsa_lookup), (show_ip_ospf_database_all),
2790 (show_ip_ospf_database_self_originate): Use struct new_lsdb for
2791 LSDB of AS-external-LSAs instead of ospf_lsdb.
2792
2793 * ospf_lsa.c (ospf_lsa_unique_id): New function added.
2794 Use for assigning Unique Link State ID instead of
2795 ospf_get_free_id_for_prefix().
2796
27972000-03-09 Toshiaki Takada <takada@zebra.org>
2798
2799 * ospf_ase.c (ospf_ase_calculate_timer): Fix bug of segmentation
2800 fault reported by George Bonser <george@siteROCK.com>.
2801
28022000-03-07 Libor Pechacek <farco@clnet.cz>
2803
2804 * ospfd.c (ospf_interface_down): Fix bug of segmentation fault.
2805
28062000-03-06 Toshiaki Takada <takada@zebra.org>
2807
2808 * ospf_route.c (ospf_route_cmp): Change meaning of return values.
2809
28102000-03-02 Alex Zinin <zinin@amt.ru>
2811 * ospfd.h, ospf_ia.h
2812 New Shortcut ABR code. Now area's flag can be configured
2813 with Default, Enable, and Disable values.
2814 More info will be in the new ver of I-D soon (see IETF web).
2815
28162000-02-25 Toshiaki Takada <takada@zebra.org>
2817
2818 * ospf_lsa.c (ospf_lsa_header_set), (ospf_external_lsa_body_set),
2819 (osfp_external_lsa_originate), (ospf_external_lsa_queue),
2820 (ospf_external_lsa_originate_from_queue): New function added.
2821 (ospf_external_lsa): Function removed.
2822
2823 * ospf_zebra.c (ospf_zebra_read_ipv4): Originate AS-external-LSA
2824 when listen a route from Zebra, instead creating external route.
2825
2826 * ospf_asbr.c (ospf_asbr_route_add_flood_lsa),
2827 (ospf_asbr_route_add_queue_lsa),
2828 (ospf_asbr_route_install_lsa), (ospf_asbr_route_add):
2829 Functions removed.
2830
2831 * ospf_ase.c (process_ase_lsa): Function will not be used.
2832 (ospf_ase_calculate), (ospf_ase_calculate_route_add),
2833 (ospf_ase_calculate_new_route), (ospf_ase_caluculate_asbr_route):
2834 process_ase_lsa () is separated to these functions.
2835
2836 OSPF AS-external-LSA origination is whole re-organized.
2837
28382000-02-18 Toshiaki Takada <takada@zebra.org>
2839
2840 * ospf_packet.c (ospf_ls_upd): Fix bug of OSPF LSA memory leak.
2841
2842 * ospf_asbr.c (ospf_asbr_route_add_flood_lsa),
2843 (ospf_asbr_route_add_queue_lsa): Fix bug of OSPF external route
2844 memory leak.
2845
28462000-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2847
2848 * ospf_asbr.c (ospf_asbr_route_install_lsa): Re-calculate LSA
2849 checksum after change Advertised Router field.
2850
28512000-02-09 Toshiaki Takada <takada@zebra.org>
2852
2853 * ospf_asbr.c (ospf_external_route_lookup): Add new function.
2854
28552000-02-08 Toshiaki Takada <takada@zebra.org>
2856
2857 * ospfd.c (ospf_router_id_get), (ospf_router_id_update),
2858 (ospf_router_id_update_timer): Router ID decision algorithm is changed.
2859 Router ID is chosen from all of eligible interface addresses even if
2860 it is not enable to OSPF.
2861
28622000-02-08 Toshiaki Takada <takada@zebra.org>
2863
2864 * ospf_asbr.c (ospf_asbr_route_add): Function divided to
2865 ospf_asbr_route_add_flood_lsa, ospf_asbr_route_add_queue_lsa and
2866 ospf_asbr_route_install_lsa. If Router-ID is not set, then LSA is
2867 waited to install to LSDB.
2868 `0.0.0.0 adv_router' AS-external-LSA origination bug was fixed.
2869
28702000-02-01 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2871
2872 * ospf_flood.c (ospf_ls_retransmit_lookup): Compare LS seqnum
2873 in the ACK before deleting.
2874
2875 * ospf_packet.c (ospf_hello): Reset the flags after a shutdown
2876 and no shutdown of the interface.
2877
28782000-01-31 Toshiaki Takada <takada@zebra.org>
2879
2880 * ospf_packet.c (ospf_ls_req): Send multiple Link State Update
2881 packets respond to a Link State Request packet.
2882
2883 * ospfd.c (show_ip_ospf_neighbor_detail_sub): Show thread state.
2884
2885 * ospf_interface.c (ospf_vl_new): Crash when backbone area
2886 is not configured and set virtual-link to no-backbone area,
2887 bug fixed.
2888
28892000-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2890
2891 * ospf_neighbor.h (struct ospf_neighbor): Add pointer to last send
2892 LS Request LSA.
2893
2894 * ospf_packet.c (ospf_ls_upd): Comment out LS request list
2895 treatment. That should be done in OSPF flooding procedure.
2896
2897 * ospf_flood.c (ospf_flood_through_area): Enclose
2898 ospf_check_nbr_loding inside if-else close.
2899
29002000-01-31 Toshiaki Takada <takada@zebra.org>
2901
2902 * ospf_packet.c (ospf_make_ls_upd): Fix bug of #LSAs counting.
2903
29042000-01-29 Toshiaki Takada <takada@zebra.org>
2905
2906 * ospf_packet.c (ospf_make_md5_digest): Fix bug of md5 authentication.
2907
29082000-01-28 Toshiaki Takada <takada@zebra.org>
2909
2910 * ospfd.c (show_ip_ospf): Show Number of ASE-LSAs.
2911
29122000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2913
2914 * ospf_packet.c (ospf_make_db_desc): Don't use rm_list for
2915 removing LSA from nbr->db_summary.
2916
29172000-01-27 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
2918
2919 * ospf_packet.c (ospf_ls_upd_send): Set AllSPFRouters to
2920 destination when the link is point-to-point.
2921 (ospf_ls_ack_send_delayed): Likewise.
2922
29232000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2924
2925 * ospf_flood.c (ospf_ls_request_delete_all): Fix bug of next
2926 pointer lookup after the node is freed.
2927
29282000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2929
2930 * ospf_asbr.c (ospf_asbr_route_add): Instead of scanning all AS
2931 external route, use ospf_top->external_self.
2932
29332000-01-27 Toshiaki Takada <takada@zebra.org>
2934
2935 * ospf_lsa.c (ospf_forward_address_get): New function added.
2936
2937 * ospf_asbr.c (ospf_asbr_check_lsas): Originate AS-external-LSA
2938 only when it should be replaced.
2939
29402000-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2941
2942 * ospf_flood.c (ospf_ls_retransmit_clear): Delete list node.
2943
2944 * ospf_lsa.c (ospf_lsa_free): Reduce logging message using
2945 ospf_zlog value.
2946
2947 * ospf_ism.c (ism_change_status): Fix bug of DR -> non DR status
2948 change. Self originated LSA is freed but not deleted from lsdb.
2949
29502000-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2951
2952 * ospf_ism.c (ism_interface_down): Don't use router_id for
2953 detecting self neighbor structure. Instead of that compare
2954 pointer itself.
2955
2956 * ospf_neighbor.c (ospf_nbr_free): Cancel all timer when neighbor
2957 is deleted.
2958 (ospf_nbr_free): Free last send packet.
2959
2960 * ospf_neighbor.h (struct ospf_neighbor): Remove host strucutre.
2961 Instead of that src is introduced.
2962
2963 * ospf_nsm.h: Enclose macro defenition with do {} while (0).
2964
29652000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2966
2967 * ospfd.c: Change part of passive interface implementation. For
2968 passive interface just disabling sending/receiving Hello on the
2969 interface.
2970
29712000-01-16 Kai Bankett <kai.bankett@vew-telnet.net>
2972
2973 * ospf_interface.h (OSPF_IF_PASSIVE): Add passive flag.
2974 * ospf_interface.c (ospf_if_lookup_by_name): Add new function.
2975 * ospf_lsa.c (ospf_router_lsa): Skip passive interface.
2976 * ospfd.c (passive_interface): New command passive-interface is
2977 added.
2978 (ospf_config_write): Print passive interface.
2979
29802000-01-15 Toshiaki Takada <takada@zebra.org>
2981
2982 * ospf_interface.h (crypt_key): New struct added to store
2983 multiple cryptographic autheitication keys.
2984 (ospf_interface): struct changed.
2985
2986 * ospf_interface.c: ospf_crypt_key_new, ospf_crypt_key_add,
2987 ospf_crypt_key_lookup, ospf_crypt_key_delete: new functions added.
2988
2989 * ospf_packet.c (ip_ospf_message_digest_key): Changed to store
2990 multiple cryptographic authentication keys.
2991
29922000-01-14 Toshiaki Takada <takada@zebra.org>
2993
2994 * ospf_interface.c: DEFUN (if_ospf_*) commands changed name to
2995 ip_ospf_* ().
2996 Old notation `ospf *' still remains backward compatibility.
2997
29981999-12-29 Alex Zinin <zinin@amt.ru>
2999 * ospf_lsa.c: ospf_lsa_more_recent() bug fix
3000 * ospf_nsm.c, ospf_packet.c: remove nbr data struct when
3001 int goes down, also check DD flags correctly (bug fix)
3002
30031999-12-28 Alex Zinin <zinin@amt.ru>
3004 * "redistribute <source> metric-type (1|2) metric <XXX>" added
3005
30061999-12-23 Alex Zinin <zinin@amt.ru>
3007 * added RFC1583Compatibility flag
3008 * added dynamic interface up/down functionality
3009
30101999-11-19 Toshiaki Takada <takada@zebra.org>
3011
3012 * ospf_neighbor.h (struct ospf_neighbor): Add member state_change
3013 for NSM state change statistics.
3014
30151999-11-19 Toshiaki Takada <takada@zebra.org>
3016
3017 * ospfd.c (show_ip_ospf_neighbor_detail),
3018 (show_ip_ospf_neighbor_int_detail): DEFUN Added.
3019
30201999-11-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3021
3022 * ospf_asbr.c (ospf_asbr_check_lsas): Add check of
3023 lsa->refresh_list.
3024
30251999-11-11 Toshiaki Takada <takada@zebra.org>
3026
3027 * ospf_ia.[ch] (OSPF_EXAMINE_SUMMARIES_ALL): Macro added.
3028 This macro is expanded to ospf_examine_summaries ()
3029 for SUMMARY_LSA and SUMMARY_LSA_ASBR.
3030 (OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL): Macro added.
3031 This macro is expanded to ospf_examine_transit_summaries ()
3032 for SUMMARY_LSA and SUMMARY_LSA_ASBR.
3033
30341999-11-11 Toshiaki Takada <takada@zebra.org>
3035
3036 * ospf_lsa.[ch] (ospf_find_self_summary_lsa_by_prefix): Changed to
3037 macro OSPF_SUMMARY_LSA_SELF_FIND_BY_PREFIX.
3038 (ospf_find_self_summary_asbr_lsa_by_prefix): Changed to
3039 macro OSPF_SUMMARY_ASBR_LSA_SELF_FIND_BY_PREFIX.
3040 (ospf_find_self_external_lsa_by_prefix): Changed to
3041 macro OSPF_EXTERNAL_LSA_SELF_FIND_BY_PREFIX.
3042
30431999-11-11 Toshiaki Takada <takada@zebra.org>
3044
3045 * ospfd.c (ospf_abr_type): ospf_abr_type_cisco, ospf_abr_type_ibm,
3046 ospf_abr_type_shortcut and ospf_abr_type_standard DEFUNs are
3047 combined.
3048 * ospfd.c (no_ospf_abr_type): no_ospf_abr_type_cisco,
3049 no_ospf_abr_type_ibm and no_ospf_abr_type_shortcut DEFUNS are
3050 combined.
3051
30521999-11-10 Toshiaki Takada <takada@zebra.org>
3053
3054 * ospf_route.c (ospf_lookup_int_by_prefix): Move function to
3055 ospf_interface.c and change name to ospf_if_lookup_by_prefix ().
3056
30571999-11-01 Alex Zinin <zinin@amt.ru>
3058 * ospf_packet.c
3059 some correction to LSU processing
3060
3061 * ospf_lsa.c ospfd.h
3062 randomize initial LSA refreshment interval
3063 and limit the size of LSA-group to 10
3064 to let randomization work more effectively.
3065
30661999-10-31 Alex Zinin <zinin@amt.ru>
3067 * ospf_interface.c
3068 cancel t_network_lsa_self
3069 when freeing int structure
3070
3071 * ospf_abr.c ospf_asbr.c ospf_flood.c ospf_lsa.c
3072 ospf_lsa.h ospf_lsdb.h ospfd.c ospfd.h
3073
3074 Summary and ASE LSA refreshment functions
3075 added---LSA refreshment is paced to 70 LSAs
3076 per sec to avoid link overflow. Refreshment events
3077 are further randomized within a 10 sec interval
3078 to avoid syncing.
3079
3080 Also the sigfault of memcmp() in ospf_lsa_is_different()
3081 is fixed.
3082
30831999-10-30 Alex Zinin <zinin@amt.ru>
3084 * ospf_nsm.c
3085 Fix the bug where MAX_AGE LSAs
3086 are included into the DB summary.
3087
3088 * ospf_interface.c
3089 allocate 2*MTU input buffer instead of just MTU
3090 for the cases when the other router mistakenly
3091 sends larger packets thus causing fragmentation, etc.
3092
3093 * ospf_nsm.c
3094 in nsm_reset_nbr() lists should be freed
3095 not when they are empty.
3096
30971999-10-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3098
3099 * ospf_zebra.c (ospf_acl_hook): Move OSPF_IS_ASBR and OSPF_IS_ABR
3100 check inside of if (ospf_top).
3101
31021999-10-29 Alex Zinin <zinin@amt.ru>
3103 * ospf_lsa.c ospf_lsdb.c :
3104 add assertion in lsa and lsa->data alloc functions,
3105 as well as in lsdb_add for new->data
3106
3107 * ospf_lsdb.c: free hash table correctly
3108
31091999-10-28 John Capo <jc@irbs.com>
3110
3111 * ospf_packet.h (OSPF_PACKET_MAX): Correct MAX packet length
3112 calculation
3113
31141999-10-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3115
3116 * OSPF-TRAP-MIB.txt: New file added. Edited version of RFC1850.
3117
3118 * OSPF-MIB.txt: New file added. Edited version of RFC1850.
3119
31201999-10-27 Alex Zinin <zinin@amt.ru>
3121 * ospfd, ospf_zebra, ospf_abr
3122 "area import-list" command is added.
3123 This command allows to filter the inter-area routes
3124 injected into an area. Access list hook function
3125 extended to invalidate area exp/imp lists.
3126
31271999-10-25 Yoshinobu Inoue <shin@nd.net.fujitsu.co.jp>
3128
3129 * ospfd.c (ospf_interface_run): Enable to detect P2P network
3130 on an OSPF interface.
3131
31321999-10-19 Jordan Mendelson <jordy@wserv.com>
3133
3134 * ospf_lsdb.c (ospf_lsdb_add): Fix bug of crash
3135 in ospf_ls_retransmit_lookup ().
3136
31371999-10-19 Vladimir B. Grebenschikov <vova@express.ru>
3138
3139 * ospf_route.c: Workaround about installation of OSPF routes into
3140 the zebra daemon. Add checking of existance routes. Free
3141 ospf_top->old_table if it exists.
3142
31431999-10-15 Jordan Mendelson <jordy@wserv.com>
3144
3145 * Add support for MD5 authentication.
3146
31471999-10-12 Alex Zinin <zinin@amt.ru>
3148 * ospfd.c, ospfd.h, ospf_abr.c:
3149 a new command "area export-list" was added, it allows
3150 the admin. to control which intra-area routes are
3151 announced to other areas by the ABR
3152
31531999-10-12 Alex Zinin <zinin@amt.ru>
3154 * ospf_asbr.c (ospf_asbr_check_lsas): Fix bug of coredump
3155 when "no redistribute" is used after a distribute list
3156 denying some networks was used
3157
31581999-10-05 Toshiaki Takada <takada@zebra.org>
3159
3160 * ospf_route.c (ospf_path_dup): New function added.
3161
31621999-10-05 Toshiaki Takada <takada@zebra.org>
3163
3164 * ospf_interface.[ch]: Some of VL related funciton name changed.
3165
31661999-09-27 Alex Zinin <zinin@amt.ru>
3167
3168 * ospf_zebra.c: Distribute-list functionality added
3169
31701999-09-27 Toshiaki Takada <takada@zebra.org>
3171
3172 * ospfd.c (show_ip_ospf): Fix bug of segmentation fault when no ospf
3173 instance exists.
3174
31751999-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3176
3177 * ospfd.c (ospf_interface_down): Fix bug of misusing nextnode()
3178 instead of node->next. Reported by Hiroki Ishibashi
3179 <ishibasi@dcd.abk.nec.co.jp>.
3180
3181 * ospf_route.c (show_ip_ospf_route): Add check for ospf is enabled
3182 or not.
3183
31841999-09-23 Alex Zinin <zinin@amt.ru>
3185
3186 * stub area support added
3187
31881999-09-23 Alex Zinin <zinin@amt.ru>
3189
3190 * fwd_addr in ASE-LSAs is now set correctly
3191 * ASE routing changed to check the fwd_addr
3192 and skip the route if the addr points to one
3193 of our interfaces to avoid loops.
3194
31951999-09-22 Alex Zinin <zinin@amt.ru>
3196
3197 * ospf_interface:
3198 ospf_vls_in_area() added, it returns
3199 the number of VLs configured through the area
3200
3201 * ospf_interface.c ospf_lsa.c ospf_lsdb.c ospfd.c
3202 honor correct mem alloc
3203
32041999-09-22 Alex Zinin <zinin@amt.ru>
3205
3206 * memory.[ch]:
3207 Some OSPF mem types added,
3208 plus more info in "show mem"
3209
32101999-09-21 Alex Zinin <zinin@amt.ru>
3211
3212 * ospfd.c:
3213 "area range substitute" added.
3214 It can be used on NAT-enabled (IP-masquarade)
3215 routers to announce private networks
3216 from an area as public ones into the outside
3217 world (not in the RFC, btw :)
3218
32191999-09-21 Alex Zinin <zinin@amt.ru>
3220
3221 * ospfd.c:
3222 "area range suppress" added.
3223 This command allows to instruct the router
3224 to be silent about specific ranges, i.e.,
3225 it is a method of route filtering on area
3226 borders
3227
32281999-09-21 Alex Zinin <zinin@amt.ru>
3229
3230 * ospfd.c VLs removed when "no network area" executed
3231
32321999-09-20 Alex Zinin <zinin@amt.ru>
3233
3234 * ospf_ase.c bug fix for not-zero fwd_addr
3235 and directly connected routes.
3236
32371999-09-20 Yon Uriarte <yon@plannet.de>
3238
3239 * ospf_packet.c (ospf_make_ls_req): Introduce delta value for
3240 checking the length of OSPF packet exceeds MTU or not.
3241
3242 * ospf_lsa.c (ospf_lsa_different): Apply ntohs for checking
3243 l1->data->length.
3244
32451999-09-18 Alex Zinin <zinin@amt.ru>
3246
3247 * ospf_lsa.c bug fix for ospf_network_lsa() to
3248 include itself into the RID list
3249
32501999-09-10 Alex Zinin <zinin@amt.ru>
3251
3252 * Alternative ABR behaviors IBM/Cisco/Shortcut
3253 implemented
3254
32551999-09-10 Alex Zinin <zinin@amt.ru>
3256
3257 * router and network-LSA origination
3258 changed to honor MinLSInterval
3259
32601999-09-08 Alex Zinin <zinin@amt.ru>
3261
3262 * modified ABR behavior to honor VLs and transit
3263 areas
3264
32651999-09-07 Alex Zinin <zinin@amt.ru>
3266
3267 * completed VL functionality
3268
32691999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3270
3271 * ospf_asbr.c: New file.
3272 ospf_asbr.h: New file.
3273
3274 * ospf_zebra.c (ospf_redistribute_connected): Add redistribute
3275 related stuff.
3276
32771999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3278
3279 * ospfd.h (OSPF_FLAG_VIRTUAL_LINK): Change OSPF_FLAG_VEND to
3280 OSPF_FLAG_VIRTUAL_LINK for comprehensiveness.
3281
32821999-09-03 Kunihiro Ishiguro <kunihiro@zebra.org>
3283
3284 * ospf_spf.c (ospf_spf_register): Change name from
3285 ospf_spf_route_add() to ospf_spf_register().
3286 Include "ospfd/ospf_abr.h" for ospf_abr_task() prototype.
3287
32881999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3289
3290 * ospf_lsa.c (ospf_external_lsa_install): Change to update
3291 lsa->data rather than install new one, when same id lsa is already
3292 installed.
3293
32941999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
3295
3296 * ospf_lsa.c (ospf_router_lsa_install): Return lsa value.
3297 (ospf_network_lsa_install): Likewise.
3298 (ospf_summary_lsa_install): Likewise.
3299 (ospf_summary_asbr_lsa_install): Likewise.
3300 (ospf_external_lsa_install): Likewise.
3301
3302 * ospf_spf.c (ospf_spf_calculate): Comment out debug function
3303 ospf_rtrs_print().
3304
33051999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
3306
3307 * ospf_spf.c (ospf_rtrs_free): Add ospf_spf_calculate() for
3308 freeing rtrs.
3309
33101999-08-31 Toshiaki Takada <takada@zebra.org>
3311
3312 * ospf_lsa.c (show_ip_ospf_database_summary),
3313 (show_ip_ospf_database_summary_asbr),
3314 (show_ip_ospf_database_external): New function added.
3315 `show ip ospf database summary',
3316 `show ip ospf database asbr-summary'
3317 `show ip ospf database external' command can be used.
3318
3319 * ospf_lsa.c (ospf_lsa_count_table): New function added.
3320 (show_ip_ospf_database_all): show nothing if a type of LSA
3321 does not exist.
3322
33231999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
3324
3325 * ospf_lsa.c (ospf_maxage_lsa_remover): Preserve next pointer when
3326 the node is deleted.
3327
33281999-08-31 Toshiaki Takada <takada@zebra.org>
3329
3330 * ospf_flood.c (ospf_ls_retransmit_lookup): change to return
3331 struct ospf_lsa *.
3332 (ospf_ls_request_new), (ospf_ls_request_free),
3333 (ospf_ls_request_add), (ospf_ls_request_delete),
3334 (ospf_ls_request_delete_all), (ospf_ls_request_lookup):
3335 New function added.
3336
3337 * ospf_packet.c (ospf_ls_upd_send_lsa): New function added.
3338
3339 * ospf_lsa.h (LS_AGE): Slightly change macro definition.
3340
3341 * ospf_lsa.c (ospf_lsa_more_recent), (ospf_lsa_diffrent):
3342 Use LS_AGE macro.
3343
33441999-08-30 Alex Zinin <zinin@amt.ru>
3345
3346 * ospfd.c
3347 fix a bug with area range config write
3348 added "show ip ospf" command, it will be enhanced later on
3349
33501999-08-30 Alex Zinin <zinin@amt.ru>
3351
3352 * ospf_lsa.c
3353 updated ospf_router_lsa() to honor flags (B-bit)
3354
33551999-08-30 Alex Zinin <zinin@amt.ru>
3356
3357 * ospf_abr.c
3358 wrote major functions implementing ABR activity
3359
33601999-08-30 Alex Zinin <zinin@amt.ru>
3361
3362 * ospf_ia.c ospf_route.c ospf_route.h
3363 fixed the bug with ospf_route.origin field.
3364 Now it holds pointer to lsa_header
3365
33661999-08-30 Alex Zinin <zinin@amt.ru>
3367
3368 * ospf_flood.c ospf_flood.h:
3369 transformed ospf_flood_if_select into ospf_flood_through_area()
3370 added new ospf_flood_if_select() and ospf_flood_through_as()
3371
33721999-08-30 Toshiaki Takada <takada@zebra.org>
3373
3374 * ospf_flood.[ch]: New file added.
3375
3376 * ospf_packet.c (ospf_lsa_flooding),
3377 (ospf_lsa_flooding_select_if): functions move to ospf_flood.c
3378
3379 * ospf_neighbor.c (ospf_put_lsa_on_retransm_list),
3380 (ospf_remove_lsa_from_retransm_list),
3381 (ospf_nbr_remove_all_lsas_from_retransm_list),
3382 (ospf_lsa_remove_from_ls_retransmit):
3383 (ospf_lsa_retransmit): functions move to
3384 ospf_flood.c, and change function's name:
3385
3386 ospf_put_lsa_on_retransm_list ()
3387 -> ospf_ls_retransmit_add ()
3388 ospf_remove_lsa_from_retransm_list ()
3389 -> ospf_ls_retransmit_delete ()
3390 ospf_nbr_remove_all_lsas_from_retransm_list ()
3391 -> ospf_ls_retransmit_clear ()
3392 ospf_lsa_remove_from_ls_retransmit ()
3393 -> ospf_ls_retransmit_delete_nbr_all ()
3394 ospf_lsa_retransmit ()
3395 -> ospf_ls_retransmit_add_nbr_all ()
3396
3397 * ospf_lsa.c (ospf_lsa_lookup_from_list): function move to
3398 ospf_flood.c, and change name to ospf_ls_retransmit_lookup ().
3399
34001999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3401
3402 * ospf_neighbor.c (ospf_nbr_lookup_by_addr): Use
3403 route_node_lookup() instead of route_node_get().
3404
3405 * ospf_packet.c (ospf_ls_upd): Temporary comment out (6) check.
3406
34071999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3408
3409 * ospf_route.c (ospf_lookup_int_by_prefix): Add check of
3410 oi->address.
3411
34121999-08-29 Alex Zinin <zinin@amt.ru>
3413 * ospf_lsa.c
3414 MaxAge LSA deletion functions added.
3415
34161999-08-29 Alex Zinin <zinin@amt.ru>
3417 * ospf_neighbor.c
3418 ospf_nbr_lookup_by_addr(): added route_unlock_node()
3419 when function returns NULL if (rn->info == NULL)
3420
34211999-08-29 Alex Zinin <zinin@amt.ru>
3422 * ospfd.c
3423 added a hack for area range deletion
3424
34251999-08-29 Alex Zinin <zinin@amt.ru>
3426 * ospf_lsa.h
3427 included lsdb field into struct ospf_lsa, to find
3428 LSDB easier when removing MaxAge LSAs.
3429
34301999-08-29 Alex Zinin <zinin@amt.ru>
3431 * ospf_lsa.c ospf_neighbor.c ospf_nsm.c
3432 ospf_packet.c changed to honor new retransmit list
3433 management functions
3434
34351999-08-29 Alex Zinin <zinin@amt.ru>
3436 * ospf_neighbor.c , .h added new retransmit list functions.
3437
34381999-08-29 Alex Zinin <zinin@amt.ru>
3439 * Makefile.in
3440 added ospf_ase, ospf_abr, ospf_ia
3441
34421999-08-29 Alex Zinin <zinin@amt.ru>
3443 * ospf_spf.c:
3444 - changed ospf_next_hop_calculation() to include interface
3445 and nexthop addr for directly connected routers---more informative
3446 and solves problem with route installation into the kernel
3447 - changed ospf_nexthop_out_if_addr() to support routers, not only
3448 transit networks
3449 - added ospf_process_stubs();
3450
34511999-08-29 Alex Zinin <zinin@amt.ru>
3452 * ospf_lsa.c:
3453 - changed ospf_router_lsa() to provide correct links
3454 for p-t-p interfaces;
3455 - changed ospf_summary_lsa_install() to support table
3456 of self-originated summary-LSAs;
3457 - added ospf_summary_asbr_lsa_install() and ospf_external_lsa_install()
3458 - changed ospf_lsa_install() accordingly
3459 - changed show_ip_ospf_database_router_links() to support p-t-p
3460
34611999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3462
3463 * ospf_packet.c (ospf_make_db_desc): Only master can clear more
3464 flag.
3465
34661999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3467
3468 * ospf_packet.c (ospf_read): Add check of IP src address.
3469
34701999-08-28 Alex Zinin <zinin@amt.ru>
3471 * ospf_neighbor.h
3472 added ospf_nbr_lookup_by_routerid()
3473
34741999-08-28 Alex Zinin <zinin@amt.ru>
3475 * ospfd.h
3476 added ABR/ASBR flag definitions and fields;
3477 added iflist field to area structure;
3478 summary_lsa_self and summary_lsa_asbr_self are changed
3479 to be route tables;
3480 added ranges field---configured area ranges;
3481 A separate Routers RT added;
3482 area range config commands and config write added
3483
3484
34851999-08-28 Alex Zinin <zinin@amt.ru>
3486 * ospf_route.c :
3487 ospf_route_free()--added code to free the list of paths;
3488 The following functions added:
3489 ospf_intra_add_router();
3490 ospf_intra_add_transit();
3491 ospf_intra_add_stub();
3492 the last function uses new ospf_int_lookup_by_prefix();
3493 show_ip_ospf_route_cmd()--changed to support new RT structure;
3494 added ospf_cmp_routes()--general route comparision function;
3495 added ospf_route_copy_nexthops() and ospf_route_copy_nexthops_from_vertex()
3496 they are used in ASE and IA routing;
3497 added ospf_subst_route() and ospf_add_route();
3498
34991999-08-28 Alex Zinin <zinin@amt.ru>
3500 * ospf_route.h :
3501 changed struct ospf_path to include output interface,
3502 changed struct ospf_route to support IA and ASE routing.
3503 added prototypes of the function used in IA and ASE modules.
3504
35051999-08-28 Alex Zinin <zinin@amt.ru>
3506 * ospf_lsa.h ospf_lsa.c :
3507 added ospf_my_lsa(), an interface independent version of
3508 ospf_lsa_is_self_originated(), it will be used in ASE and IA-routing.
3509
35101999-08-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3511
3512 * ospf_interface.c (interface_config_write): Add check for
3513 oi->nbr_self.
3514
35151999-08-25 Toshiaki Takada <takada@zebra.org>
3516
3517 * ospf_lsa.c (ospf_lsa_dup): New function added.
3518
3519 * ospf_packet.c (ospf_write), (ospf_read): Print send/recv
3520 interface in debug message.
3521
35221999-08-25 Toshiaki Takada <takada@zebra.org>
3523
3524 * ospf_packet.c (ospf_ls_ack_send): The name is changed from
3525 `ospf_ls_ack_send'.
3526 (ospf_ls_ack_send_delayed) (ospf_ls_ack_timer): New function added.
3527 Delayed Link State Acknowledgment is scheduled by timer.
3528
35291999-08-25 Alex Zinin <zinin@amt.ru>
3530
3531 * ospf_lsa.c (ospf_router_lsa): Incorrectly included link to
3532 a stub network instead of link to a transit network into
3533 originated router-LSA, bug fixed.
3534
35351999-08-24 Toshiaki Takada <takada@zebra.org>
3536
3537 * ospfd.c (ospf_update_router_id): New function added.
3538
3539 * ospf_network.c (ospf_write): Create new socket per transmission.
3540 And select outgoing interface whether dst is unicast or multicast.
3541
3542 * ospf_packet.c: LSA flooding will work.
3543
35441999-08-24 VOP <vop@unity.net>
3545
3546 * ospf_route.c: Include "sockunion.h"
3547
35481999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3549
3550 * ospf_network.c (ospf_serv_sock_init): Enclose
3551 IPTOS_PREC_INTERNETCONTROL setting with #ifdef for OS which does
3552 not have the definition.
3553
35541999-08-23 Toshiaki Takada <takada@zebra.org>
3555
3556 * ospf_packet.c: Fix bug of DD processing.
3557
35581999-08-18 Toshiaki Takada <takada@zebra.org>
3559
3560 * ospf_lsa.c (show_ip_ospf_database): Show actual `LS age'.
3561
35621999-08-17 Toshiaki Takada <takada@zebra.org>
3563
3564 * ospf_lsa.h (OSPF_MAX_LSA): The value of OSPF_MAX_LSA is
3565 corrected. The bug of `mes_lookup' is fixed.
3566 This had been reported by Poul-Henning Kamp <phk@freebsd.org>.
3567
3568 * ospf_lsa.c (ospf_router_lsa_install): The name is changed from
3569 `ospf_add_router_lsa'.
3570 (ospf_network_lsa_install): The name is changed from
3571 `ospf_add_network_lsa'.
3572
3573 * ospf_interface.h (ospf_interface): Add member `nbr_self'.
3574
3575 * ospf_interface.c (ospf_if_is_enable): New function added.
3576
35771999-08-16 Toshiaki Takada <takada@zebra.org>
3578
3579 * ospf_lsa.h (struct lsa_header): The name is changed from
3580 `struct ospf_lsa'.
3581 (struct ospf_lsa): New struct added to control each LSA's aging
3582 and timers.
3583
3584 * ospf_lsa.c (ospf_lsa_data_free): The name is change from
3585 `ospf_lsa_free'.
3586 (ospf_lsa_data_new), (ospf_lsa_new), (ospf_lsa_free),
3587 (ospf_lsa_different), (ospf_lsa_install): New function added.
3588
3589 * ospf_packet.c (ospf_ls_upd_list_lsa): New function added.
3590
35911999-08-12 Toshiaki Takada <takada@zebra.org>
3592
3593 * ospf_nsm.c (nsm_reset_nbr): New function added.
3594 KillNbr and LLDown neighbor event call this function.
3595
35961999-08-10 Toshiaki Takada <takada@zebra.org>
3597
3598 * ospf_packet.c (ospf_ls_retransmit)
3599 (ospf_ls_upd_timer): New function added.
3600 Set retransmission timer for Link State Update.
3601
36021999-07-29 Toshiaki Takada <takada@zebra.org>
3603
3604 * ospf_ism.c (ospf_dr_election): Fix bug of DR election.
3605
36061999-07-28 Toshiaki Takada <takada@zebra.org>
3607
3608 * ospf_network.c (ospf_serv_sock_init): Set IP precedence field
3609 with IPTOS_PREC_INTERNET_CONTROL.
3610
3611 * ospf_nsm.c (nsm_change_status): Schedule NeighborChange event
3612 if NSM status change.
3613
3614 * ospf_packet.c (ospf_make_hello): Never include a neighbor in
3615 Hello packet, when the neighbor goes down.
3616
36171999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org>
3618
3619 * Makefile.am (noinst_HEADERS): Add ospf_route.h.
3620
3621 * ospf_route.c (show_ip_ospf_route): Add `show ip ospf route'
3622 command.
3623
36241999-07-25 Toshiaki Takada <takada@zebra.org>
3625
3626 * ospf_lsa.c (ospf_router_lsa): Fix bug of LS sequence number
3627 assignement.
3628
36291999-07-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3630
3631 * ospf_route.c (ospf_route_table_free): New function added.
3632
3633 * ospf_spf.c (ospf_spf_next): Free vertex w when cw's and w's
3634 distance is same.
3635
3636 * ospfd.h (struct ospf): Add old_table.
3637
3638 * ospf_main.c (sighup): Call of log_rotate () removed.
3639
3640 * ospf_lsa.c (ospf_lsa_is_self_originated): Fix bug of checking
3641 area->lsa as self LSA. This should be area->lsa_self.
3642
36431999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3644
3645 * ospf_zebra.c (ospf_zebra_add): ospf_zebra_add
3646 (),ospf_zebra_delete () added.
3647
3648 * ospf_spf.c (ospf_spf_calculate): Call ospf_intra_route_add ().
3649
36501999-07-24 Toshiaki Takada <takada@zebra.org>
3651
3652 * ospf_lsa.c: Change LS sequence number treatment.
3653 (ospf_lsa_is_self_originated): New function added.
3654 (show_ip_ospf_database_self_originated): New DEFUN added.
3655
36561999-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
3657
3658 * ospf_interface.c (ospf_if_lookup_by_addr): Add loopback check.
3659
36601999-07-22 Toshiaki Takada <takada@zebra.org>
3661
3662 * ospf_spf.c (ospf_nexthop_new), (ospf_nexthop_free),
3663 (ospf_nexthop_dup): function added.
3664 (ospf_nexthop_calculation): function changed.
3665
3666 * ospf_interface.c (ospf_if_lookup_by_addr): function added.
3667
36681999-07-21 Toshiaki Takada <takada@zebra.org>
3669
3670 * ospf_spf.c (ospf_spf_closest_vertex): function removed.
3671
36721999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
3673
3674 * ospf_spf.c (ospf_spf_next): Apply ntohs for fetching metric.
3675
36761999-07-21 Toshiaki Takada <takada@zebra.org>
3677
3678 * ospf_neighbor.c (ospf_nbr_lookup_by_router_id): fundtion removed.
3679
3680 * ospf_lsa.c (show_ip_ospf_database_router): describe each
3681 connected link.
3682
36831999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
3684
3685 * ospf_spf.c (ospf_spf_next): V is router LSA or network LSA so
3686 change behavior according to LSA type.
3687 (ospf_lsa_has_link): Link check function is added.
3688
36891999-07-20 Kunihiro Ishiguro <kunihiro@zebra.org>
3690
3691 * ospf_spf.c (ospf_spf_calculate_schedule): Add new function for
3692 SPF calcultion schedule addtition.
3693 (ospf_spf_calculate_timer_add): Rough 30 sec interval SPF calc
3694 timer is added.
3695 (ospf_spf_next_router): Delete ospf_spf_next_network ().
3696
3697 * ospf_lsa.c (show_ip_ospf_database_all): Network-LSA display
3698 header typo correction. Display of router LSA's #link added.
3699
37001999-07-19 Toshiaki Takada <takada@zebra.org>
3701
3702 * ospf_packet.c (ospf_check_network_mask): Added new function for
3703 receiving Raw IP packet on an appropriate interface.
3704
37051999-07-16 Toshiaki Takada <takada@zebra.org>
3706
3707 * ospfd.c (ospf_router_id): new DEFUN added.
3708
37091999-07-15 Toshiaki Takada <takada@zebra.org>
3710
3711 * ospf_spf.c (ospf_spf_init), (ospf_spf_free),
3712 (ospf_spf_has_vertex), (ospf_vertex_lookup),
3713 (ospf_spf_next_router), (ospf_spf_next_network),
3714 (ospf_spf_closest_vertex), (ospf_spf_calculate):
3715 function added.
3716
37171999-07-13 Toshiaki Takada <takada@zebra.org>
3718
3719 * ospf_ism.c: fix bug of DR Election.
3720
3721 * ospf_nsm.c: fix bug of adjacency forming.
3722
37231999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3724
3725 * ospfd.c (ospf_init): Change to use install_default.
3726
37271999-07-01 Rick Payne <rickp@rossfell.co.uk>
3728
3729 * ospf_zebra.c (zebra_init): Install standard commands to
3730 ZEBRA_NODE.
3731
37321999-06-30 Toshiaki Takada <takada@zebra.org>
3733
3734 * ospf_dump.c: Whole debug command is improved.
3735 (ISM|NSM) (events|status|timers) debug option added.
3736 (show_debugging_ospf): new DEFUN added.
3737
37381999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3739
3740 * ospf_lsa.c (ospf_lsa_lookup_from_list): Change !IPV4_ADDR_CMP to
3741 IPV4_ADDR_SAME.
3742
37431999-06-29 Toshiaki Takada <takada@zebra.org>
3744
3745 * ospf_dump.c (ospf_summary_lsa_dump): Add summary-LSA dump routine.
3746 (ospf_as_external_lsa_dump): Add AS-external-LSA dump routine.
3747
3748 * ospf_nsm.c (nsm_twoway_received): fix condtion of adjacnet.
3749
3750 * ospf_ism.c (ospf_dr_election): fix DR Election.
3751
3752 * ospf_dump.c (ospf_nbr_state_message): fix `show ip ospf neighbor'
3753 command's state.
3754
37551999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3756
3757 * ospf_dump.c (ospf_router_lsa_dump): Add router-LSA dump routine.
3758
37591999-06-28 Toshiaki Takada <takada@zebra.org>
3760
3761 * ospf_lsa.c (show_ip_ospf_database_network): fix bug of
3762 `show ip ospf database network' command output.
3763
3764 * ospf_nsm.c (nsm_inactivity_timer): Clear list of Link State
3765 Retransmission, Database Summary and Link State Request.
3766
3767 * ospf_packet.c (ospf_ls_req_timer): New function added.
3768 Set Link State Request retransmission timer.
3769
37701999-06-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3771
3772 * ospf_main.c (main): Change default output from ZLOG_SYSLOG to
3773 ZLOG_STDOUT.
3774
3775 * ospfd.c (ospf_init): Register show_ip_ospf_interface_cmd and
3776 show_ip_ospf_neighbor_cmd to VIEW_NODE.
3777
3778 * ospf_lsa.c (ospf_lsa_init): Register show_ip_ospf_database_cmd
3779 and show_ip_ospf_database_type_cmd to VIEW_NODE.
3780
37811999-06-25 Toshiaki Takada <takada@zebra.org>
3782
3783 * ospf_packet.c: fix bug of DD making.
3784 fix bug of LS-Update reading.
3785
37861999-06-23 Toshiaki Takada <takada@zebra.org>
3787
3788 * ospf_packet.c: All type of packets are changed to use
3789 fifo queue structure.
3790 (ospf_fill_header) function added.
3791
37921999-06-22 Toshiaki Takada <takada@zebra.org>
3793
3794 * ospf_packet.c (ospf_packet_new): New function added to handle
3795 sending ospf packet by fifo queue structure.
3796 (ospf_packet_free), (ospf_fifo_new), (ospf_fifo_push),
3797 (ospf_fifo_pop), (ospf_fifo_head), (ospf_fifo_flush),
3798 (ospf_fifo_free): Likewise.
3799
38001999-06-21 Toshiaki Takada <takada@zebra.org>
3801
3802 * ospf_nsm.c (ospf_db_desc_timer): function added.
3803 (nsm_timer_set) function added.
3804 * ospf_dump.c (ospf_option_dump): function added.
3805 * ospf_packet.c (ospf_ls_req) (ospf_make_ls_req): function added.
3806
38071999-06-20 Toshiaki Takada <takada@zebra.org>
3808
3809 * ospf_lsa.c (ospf_lsa_more_recent): function added.
3810 * ospf_neighbor.h (struct ospf_neighbor): Change member ms_flag
3811 to dd_flags.
3812
38131999-06-19 Toshiaki Takada <takada@zebra.org>
3814
3815 * ospf_lsa.c: DEFUN (show_ip_ospf_database) Added.
3816 * ospf_interface.c (if_ospf_cost), (if_ospf_dead_interval),
3817 (if_ospf_hello_interval), (if_ospf_priority),
3818 (if_ospf_retransmit_interval), (if_ospf_transmit_delay)
3819 argument changed from NUMBER to <range>.
3820 DEFUN (if_ospf_network_broadcast),
3821 DEFUN (if_ospf_network_non_broadcast),
3822 DEFUN (if_ospf_network_point_to_multipoint),
3823 DEFUN (if_ospf_network_point_to_point) functions are combined to
3824 DEFUN (if_ospf_network).
3825
38261999-06-18 Toshiaki Takada <takada@zebra.org>
3827
3828 * ospf_lsa.c: ospf_add_router_lsa (), ospf_add_network_lsa (),
3829 ospf_lsa_lookup (), ospf_lsa_count () Added.
3830
38311999-06-15 Toshiaki Takada <takada@zebra.org>
3832
3833 * DEFUN (ospf_debug_ism), DEFUN (ospf_debug_nsm),
3834 DEFUN (no_ospf_debug_ism), DEFUN (no_ospf_debug_nsm) Added.
3835 `debug ospf ism' command shows debug message.
3836 `debuf ospf nsm' command shows debug message.
3837
38381999-06-14 Toshiaki Takada <takada@zebra.org>
3839
3840 * ospf_lsa.c: ospf_network_lsa () Added.
3841 ospf_lsa_checksum () Added.
3842 * DEFUN (ospf_debug_packet), DEFUN (no_ospf_debug_packet) Added.
3843 `debug ospf packet' command shows debug message.
3844
38451999-06-13 Toshiaki Takada <takada@zebra.org>
3846
3847 * ospf_packet.h: Remove struct ospf_ls_req {}, ospf_ls_upd {},
3848 ospf_ls_ack {}.
3849
38501999-06-11 Toshiaki Takada <takada@zebra.org>
3851
3852 * ospf_dump.c: fix IP packet length treatment.
3853
38541999-06-10 Toshiaki Takada <takada@zebra.org>
3855
3856 * ospf_ism.h: Add OSPF_ISM_EVENT_EXECUTE() Macro Added.
3857 * ospf_nsm.h: Add OSPF_NSM_EVENT_EXECUTE() Macro Added.
3858
3859 * ospf_packet.c: ospf_db_desc (), ospf_db_desc_send () Added.
3860 ospf_make_hello (), ospf_make_db_desc () Added.
3861 ospf_db_desc_proc () Added.n
3862
3863 * Database Description packet can be processed.
3864
38651999-06-08 Toshiaki Takada <takada@zebra.org>
3866
3867 * ospf_lsa.c: New file.
3868
38691999-06-07 Toshiaki Takada <takada@zebra.org>
3870
3871 * ospf_neighbor.c: ospf_fully_adjacent_count () Added.
3872
38731999-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3874
3875 * ospf_spf.[ch]: New file.
3876
38771999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3878
3879 * ospf_zebra.c: Changed to use lib/zclient.c routines.
3880
3881 * ospf_zebra.h (zebra_start): Remove struct zebra.
3882
38831999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3884
3885 * ospfd.c (ospf_config_write): Add cast (unsigned long int) to
3886 ntohl for sprintf warning.
3887
38881999-05-19 Toshiaki Takada <takada@zebra.org>
3889
3890 * ospf_ism.c (ospf_dr_election): Join AllDRouters Multicast group
3891 if interface state changes to DR or BDR.
3892
38931999-05-14 Stephen R. van den Berg <srb@cuci.nl>
3894
3895 * ospf_main.c (signal_init): SIGTERM call sigint.
3896 (sigint): Logging more better message.
3897
38981999-05-12 Toshiaki Takada <takada@zebra.org>
3899
3900 * ospfd.c: Fix bug of `no router ospf' statement, it will work.
3901
39021999-05-11 Toshiaki Takada <takada@zebra.org>
3903
3904 * ospf_neighbor.c: ospf_nbr_free () Added.
3905
39061999-05-10 Toshiaki Takada <takada@zebra.org>
3907
3908 * ospfd.h: struct ospf_area { }, struct ospf_network { } Changed.
3909 * Fix bug of `no network' statement, it will work.
3910
39111999-05-07 Toshiaki Takada <takada@zebra.org>
3912
3913 * ospf_interface.c, ospf_zebra.c: Fix bug of last interface is not
3914 updated by ospf_if_update ().
3915
39161999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3917
3918 * Makefile.am (noinst_HEADERS): Add ospf_lsa.h for distribution.
3919
39201999-04-25 Toshiaki Takada <takada@zebra.org>
3921
3922 * ospf_interface.c: DEFUN (no_if_ospf_cost),
3923 DEFUN (no_if_ospf_dead_interval),
3924 DEFUN (no_if_ospf_hello_interval),
3925 DEFUN (no_if_ospf_priority),
3926 DEFUN (no_if_ospf_retransmit_interval),
3927 DEFUN (no_if_ospf_transmit_delay) Added.
3928
3929 interface_config_write () suppress showing interface
3930 default values.
3931
39321999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3933
3934 * ospf_dump.c (ospf_timer_dump): If thread is NULL return "inactive".
3935
3936 * ospfd.c (ospf_if_update): Fix bug of using ospf_area { } instead
3937 of ospf_network { }. So `router ospf' statement in ospfd.conf
3938 works again.
3939 (ospf_if_update): Call ospf_get_router_id for updating router ID.
3940
39411999-04-25 Toshiaki Takada <takada@zebra.org>
3942
3943 * ospf_interface.c: DEFUN (if_ospf_network) deleted.
3944 DEFUN (if_ospf_network_broadcast),
3945 DEFUN (if_ospf_network_non_broadcast),
3946 DEFUN (if_ospf_network_point_to_multipoint),
3947 DEFUN (if_ospf_network_point_to_point),
3948 DEFUN (no_if_ospf_network) Added.
3949
39501999-04-23 Toshiaki Takada <takada@zebra.org>
3951
3952 * ospfd.h: struct area { } changed to struct ospf_network { }.
3953 Add struct ospf_area { }.
3954 * ospfd.c: Add ospf_area_lookup_by_area_id (), ospf_network_new (),
3955 and ospf_network_free ().
3956 DEFUN (area_authentication), DEFUN (no_area_authentication) Added.
3957
39581999-04-22 Toshiaki Takada <takada@zebra.org>
3959
3960 * ospf_lsa.h: New file.
3961 * ospf_packet.h: LSA related struct definition are moved to
3962 ospf_lsa.h.
3963 * ospf_packet.c: ospf_verify_header () Added.
3964
39651999-04-21 Toshiaki Takada <takada@zebra.org>
3966
3967 * ospf_ism.c: ospf_elect_dr () and related function is changed.
3968 DR Election bug fixed.
3969 * ospf_dump.c: ospf_nbr_state_message (), ospf_timer_dump () Added.
3970 * ospfd.c: DEFUN (show_ip_ospf_neighbor) Added.
3971
39721999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
3973
3974 * ospf_main.c (main): access_list_init () is added for vty
3975 connection filtering.
3976
39771999-04-16 Toshiaki Takada <takada@zebra.org>
3978
3979 * ospfd.c: DEFUN (show_ip_ospf_interface) Added.
3980 * ospf_neighbor.c: ospf_nbr_count () Added.
3981
39821999-04-15 Toshiaki Takada <takada@zebra.org>
3983
3984 * ospfd.h: struct ospf { } Changed.
3985 * ospfd.c: ospf_lookup_by_process_id () Deleted.
3986 * ospf_ism.c: ospf_wait_timer () Added. WaitTimer will work.
3987
39881999-04-14 Toshiaki Takada <takada@zebra.org>
3989
3990 * ospf_ism.c: ospf_elect_dr () Added.
3991 * ospf_network.c: ospf_if_ipmulticast () Added.
3992
39931999-04-11 Toshiaki Takada <takada@zebra.org>
3994
3995 * ospf_interface.c: interface_config_write (),
3996 DEFUN (if_ip_ospf_cost),
3997 DEFUN (if_ip_ospf_dead_interval),
3998 DEFUN (if_ip_ospf_hello_interval),
3999 DEFUN (if_ip_ospf_priority),
4000 DEFUN (if_ip_ospf_retransmit_interval) and
4001 DEFUN (if_ip_ospf_transmit_delay) Added.
4002
40031999-04-08 Toshiaki Takada <takada@zebra.org>
4004
4005 * ospf_dump.c: ospf_packet_db_desc_dump () Added.
4006 * ospf_neighbor.c: ospf_nbr_bidirectional () Added.
4007 * ospf_nsm.c: nsm_twoway_received () Added.
4008
40091999-04-02 Toshiaki Takada <takada@zebra.org>
4010
4011 * ospf_neighbor.c: New file.
4012 * ospf_neighbor.h: New file.
4013 * ospf_nsm.c: New file.
4014 * ospf_nsm.h: New file.
4015 * ospf_packet.c: Add ospf_make_header (), ospf_hello () and
4016 ospf_hello_send (). Now OSPFd can receive Hello and send Hello.
4017
40181999-03-27 Kunihiro Ishiguro <kunihiro@zebra.org>
4019
4020 * ospf_packet.c: Add ospf_recv_packet (). Now OSPF Hello can receive.
4021
40221999-03-19 Toshiaki Takada <takada@zebra.org>
4023
4024 * ospf_packet.c: New file.
4025 * ospf_packet.h: New file.
4026 * ospf_network.c: New file.
4027 * ospf_network.h: New file.
4028 * ospfd.h: move OSPF message structure has moved to ospf_packet.h.
4029
40301999-03-17 Kunihiro Ishiguro <kunihiro@zebra.org>
4031
4032 * ospf_zebra.c (ospf_zebra_get_interface): Fix for IPv6 interface
4033 address.
4034
4035 * Makefile.am (install-sysconfDATA): Overwrite install-sysconfDATA
4036 for install ospfd.conf.sample as owner read only file.
4037
4038 * ospf_main.c (usage): Change to use ZEBRA_BUG_ADDRESS.
4039
40401999-03-15 Toshiaki Takada <takada@zebra.org>
4041
4042 * ospf_ism.c: New file.
4043 * ospf_ism.h: New file.
4044 * ospf_dump.c: New file.
4045 * ospf_dump.h: New file.
4046
4047 * ospfd.h: Add (struct ospf), (struct config_network),
4048 (struct message) structure.
4049
4050 * ospf_interface.c: Add ospf_if_match_network ().
4051 * ospf_interface.h (struct ospf_interface): Change struct members.
4052
4053 * ospfd.c: ospf_lookup_by_process_id (), ospf_network_new (),
4054 DEFUN (network_area): Added.
4055
4056 * ospfd.conf.sample: Change sample configuration.
4057
40581999-03-05 Toshiaki Takada <takada@zebra.org>
4059
4060 * ospf_interface.c: New file.
4061 * ospf_interface.h: New file.
4062 * ospf_zebra.h: New file.
4063 * ospf_zebra.c: Add interface function for zebra daemon.
4064 * ospfd.c: New file.
4065
40661999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org>
4067
4068 * Move IPv6 codes and files to ospf6d directory.
4069
40701999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
4071
4072 * syslog support added
4073
40741998-12-22 Toshiaki Takada <takada@zebra.org>
4075
4076 * ospfd.h: New file.
4077 * ospf_lsa.h: New file.
4078
40791998-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
4080
4081 * Makefile.am: New file.
4082 * ospf_main.c: New file.
4083