]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ChangeLog
[bgpd] Add support for AS_PATHLIMIT / draft-ietf-idr-as-pathlimit
[mirror_frr.git] / ospfd / ChangeLog
CommitLineData
5dcf71df
PJ
12007-05-09 Milan Kocian <milon@wq.cz>
2
3 * ospf_vty.c: Fix commands: 'ip ospf authentication A.B.C.D',
4 'no ip ospf authentication A.B.C.D', 'no ip ospf
5 authentication-key A.B.C.D'. Simply fix argv's indexes and
6 argc check in DEFUN functions.
7
08d3d5b3
PJ
82007-05-07 Paul Jakma <paul.jakma@sun.com>
9
10 * ospf_spf.c: (ospf_vertex_new) Dont init vertices to infinity,
11 just let 0 be a special case.
12 (ospf_spf_add_parent) 0 distance candidate vertex is special,
13 cost still to be initialised - asserting that new distance
14 is <= existing only makes sense where w already has a cost.
15 (ospf_spf_next) Infinite cost links should not be followed,
16 bar those of the root.
17
f0ec832a
AS
182007-04-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
19
20 * ospfd.c: (ospf_network_match_iface) Comment out
21 COMPATIBILITY_MODE. Going forward, the ospf "network" command
22 will use a simple test: does the network command prefix
23 contain the connected (destination) prefix of the interface?
24
e8a56f02
AS
252007-04-21 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
26
27 * ospf_interface.c: (ospf_if_set_multicast) Fix bug: was testing
28 interface passive status improperly in light of the recent
29 'passive-interface default' patch. Now need to test
30 OSPF_IF_PASSIVE_STATUS(oi) instead of
31 OSPF_IF_PARAM(oi, passive_interface).
32
b75ae99e
PJ
332007-03-23 Paul Jakma <paul.jakma@sun.com>
34
35 * ospf_spf.c: (various) Add more debug statements.
85ef784e
PJ
36 (ospf_nexthop_calculation) Fix silly regression causing ospfd
37 to fail to calculate paths past networks not attached to root
38 vertex, introduced with bug #330 fixes.
b75ae99e 39
ad81f8cc
AS
402007-03-14 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
41
42 * ospf_snmp.c: (ospf_snmp_neighbor_state) New function to
43 map internal quagga neighbor states to SNMP standard values.
44 (ospfNbrEntry) Call new ospf_snmp_neighbor_state function.
45
56b3ea09
AS
462007-03-14 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
47
48 * ospf_zebra.c: (ospf_zebra_add, ospf_zebra_delete) Fix bug
49 where inet_ntoa was used twice in the same debug message,
50 which doesn't work because there's a single shared buffer
51 for the returned string. The fix is to use inet_ntop.
52
4056a544
AS
532007-02-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
54
55 * ospfd.c: (ospf_terminate) Exit immediately if ospf is not
56 actually running (e.g. the config file was empty). Fixes
57 bug where SIGTERM would not kill ospfd.
58
bd34fb34
PJ
592007-02-26 Paul Jakma <paul.jakma@sun.com>
60
61 * ospf_spf.c: Fix regression introduced with bug #330 fix: The
62 cost update added to ospf_spf_add_parent only handled PtP
63 case, differing from same functionality in higher-level
64 ospf_spf_next. Regression diagnosed by Anders Pedersen,
65 mailnews+router-quagga-dev@news.cohaesio.com.
66 (ospf_vertex_new) Initialise vertices to max-cost.
67 (ospf_spf_init) Root vertex always creates with 0 cost.
68 (ospf_spf_add_parent) Remove the buggy V->W cost calculating
69 code, instead take the new distance as a parameter.
70 (ospf_nexthop_calculation) Take distance as parameter, so it
71 can be passed down to add_parent.
72 (ospf_spf_next) Dont initialise candiate vertex distance,
73 vertex_new does so already. Pass distance down to
74 nexthop_calculation (see above).
75
bc20c1a4
PJ
762007-01-24 Paul Jakma <paul.jakma@sun.com>
77
78 * ospf_spf.c: Bug #330: Nexthop calculation sometimes may fail,
79 and it needs to indicate this result to SPF.
80 (ospf_spf_add_parent) Flush of parent list needs to be done here,
81 for simplicity.
82 (ospf_nexthop_calculation) Caller needs to know whether
83 nexthop calculation succeeded. Every return statement must
84 correctly indicate such.
85 (ospf_spf_next) Queueing/prioritisation of vertices in SPF
86 must take into account whether nexthop_calculation succeeded,
87 or SPF may fail to find best paths.
88
e4529636
AS
892006-12-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
90
91 * ospf_interface.c: (ospf_if_is_configured, ospf_if_lookup_by_prefix,
92 ospf_if_lookup_recv_if) Simplify logic using new CONNECTED_PREFIX
93 macro.
94 * ospf_lsa.c: (lsa_link_ptop_set) Using the new CONNECTED_PREFIX
95 macro, both options collapse into the same code.
96 * ospf_snmp.c: (ospf_snmp_if_update) Simplify logic using new
97 CONNECTED_ID macro.
98 (ospf_snmp_is_if_have_addr) Simplify logic using new CONNECTED_PREFIX
99 macro.
100 * ospf_vty.c: (show_ip_ospf_interface_sub) Use new CONNECTED_PEER macro
101 instead of testing the IFF_POINTOPOINT flag.
102 * ospfd.c: (ospf_network_match_iface) Use new CONNECTED_PEER macro
103 instead of testing with if_is_pointopoint. And add commented-out
104 code to implement alternative (in my opinion) more elegant behavior
105 that has no special-case treatment for PtP addresses.
106 (ospf_network_run) Use new CONNECTED_ID macro to simplify logic.
107
ed589c15
AS
1082006-12-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
109
110 * ospfd.c: (ospf_network_run) Remove an offending 'break' statement.
111 Previously, after creating a single ospf_interface on a given
112 network interface, the code would skip to the next interface
113 without considering other connected addresses on the interface.
114 After removing the 'break', we now consider all connected addresses.
115
7f643ebf
AS
1162006-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
117
118 * ospf_zebra.c: (ospf_router_id_update_zebra,
119 ospf_interface_address_add, ospf_interface_address_delete)
120 If (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) is enabled, then
121 add a debug message about what Zebra is telling us.
122 (ospf_zebra_add_discard) Add a debug message matching the one
123 already in ospf_zebra_delete_discard.
124
43540886
AS
1252006-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
126
127 * ospf_vty.c: (ospf_passive_interface_default) Take additional
128 'newval' arg so we can update ospf->passive_interface_default inside
129 this function. More importantly, we now call ospf_if_set_multicast
130 on all ospf_interfaces.
131 (ospf_passive_interface, no_ospf_passive_interface) Fix bug:
132 for 'default' case, argv[0] is undefined, so we must test for
133 (argc == 0) before using argv[0]. And since
134 ospf_passive_interface_default now calls ospf_if_set_multicast as
135 needed, we can just return after calling
136 ospf_passive_interface_default.
137
8fb8a504
AS
1382006-10-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
139
140 * ospf_zebra.c: (ospf_redistribute_default_set) Fix bug where
141 a new value for ospf->default_originate was being ignored
142 if a previous 'default-information originate' command
143 had already been processed.
144
7ffa8fa2
PJ
1452006-10-22 Yar Tikhiy <yar@comp.chem.msu.su>
146
147 * (general) Add support for passive-interface default (with
148 minor edits by Paul Jakma).
149 * ospf_interface.h: Add OSPF_IF_PASSIVE_STATUS macro, looking
150 at configured value, or the global 'default' value, as
151 required.
152 * ospf_interface.c: (ospf_if_new_hook) Leave passive
153 unconfigured per default, allowing global 'default' to
154 take effect for unconfigured interfaces.
155 * ospf_packet.c: (various) use OSPF_IF_PASSIVE_STATUS
156 * ospf_vty.c: (ospf_passive_interface_default) new function,
157 unset passive from all interfaces if default is enabled, as
158 the per-iface settings become redundant.
159 (ospf_passive_interface_update) new func, update passive
160 setting taking global default into account.
161 ({no,}ospf_passive_interface_addr_cmd) Add support for
162 'default' variant of command.
163 (show_ip_ospf_interface_sub) Update to take global
164 default into account when printing passive status.
165 (ospf_config_write) ditto.
166 * ospfd.c: (ospf_new) set global passive-interface default.
167 * ospfd.h: (struct ospf) Add field for global
168 passive-interface.
169
08c83671
AS
1702006-09-25 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
171
172 * ospf_packet.c: (ospf_packet_dup, ospf_make_md5_digest)
173 Fix zlog_warn messages to eliminate compiler warnings.
174 (ospf_hello) Improve warning messages to show why we
175 are complaining.
176
b5aeb441
PJ
1772006-08-28 Andy Gay <andy@andynet.net>
178
179 * ospf_packet.c: (ospf_make_db_desc) Assert added with More-bit
180 fixes does not hold up with addition of Ogier DB-Exchange
181 optimisation, which can empty the db-summary list in between
182 sent DD packets. Remove assert, update More-bit always when
183 in Exchange.
184
29b5a044
PJ
1852006-08-27 J.J. Krabbendam <jkrabbendam@aimsys.nl>
186
187 * ospfd.c: (ospf_finish_final) default redistribute should be
188 unset too, fixes bug where reconfiguring ospfd completely
189 can no longer enable default redistribution.
190
2518efd1
PJ
1912006-08-25 Paul Jakma <paul.jakma@sun.com>
192
193 * (general) Bug #134. Be more robust to backward time changes,
194 use the newly added libzebra time functions.
195 In most cases: recent_time -> recent_relative_time()
196 gettimeofday -> quagga_gettime (QUAGGA_CLK_MONOTONIC, ..)
197 time -> quagga_time.
198 (ospf_make_md5_digest) time() call deliberately not changed.
199 (ospf_external_lsa_refresh) remove useless gettimeofday, LSA
200 tv_orig time was already set in ospf_lsa_new, called via
201 ospf_external_lsa_new.
202
ba122e77
PJ
2032006-08-04 Paul Jakma <paul.jakma@sun.com>
204
205 * ospf_lsdb.c: (ospf_lsdb_delete_entry) new function, consolidate
206 exact same functionality replicated in other functions.
207 (ospf_lsdb_add) Strip out code by using ospf_lsdb_delete_entry.
208 (ospf_lsdb_delete) ditto.
209 (ospf_lsdb_delete_all) ditto.
210
8dd24ee6
PJ
2112006-08-03 Paul Jakma <paul.jakma@sun.com>
212
213 * ospf_packet.c: (ospf_make_db_desc) Unset the DD More bit
214 after constructing the packet, if appropriate.
215 (ospf_db_desc_proc) Speed up Exchange, slave should raise
216 ExchangeDone earlier, as RFC mandates, by forming its reply
217 before deciding whether both sides are done, avoids a
218 needless round of empty DD packet exchanges at the end of
219 Exchange, hence speeding up ExchangeDone.
f0894cf8 220 Implement draft-ogier-ospf-dbex-opt DB-exchange optimisation.
8dd24ee6
PJ
221 (ospf_db_desc) use UNSET_FLAG macro.
222
1670008b
AS
2232006-07-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
224
225 * ospfd.c: (ospf_router_id_update) Fix and document the algorithm for
226 selecting the router ID: if there is not a statically configured ID,
227 then stick to the most recent value to avoid disruptive changes.
228 This should fix bug #288.
229
1fe6ed38
PJ
2302006-07-26 Paul Jakma <paul.jakma@sun.com>
231
232 * ospf_lsa.{c,h}: (ospf_lsa_unlock) Change to take a double pointer
233 to the LSA to be 'unlocked', so that, if the LSA is freed, the
234 callers pointer to the LSA can be NULLed out, allowing any further
235 use of that pointer to provoke a crash sooner rather than later.
236 * ospf_*.c: (general) Adjust callers of ospf_lsa_unlock to match
237 previous. Try annotate 'locking' somewhat to show which 'locks'
238 are protecting what LSA reference, if not obvious.
239 * ospf_opaque.c: (ospf_opaque_lsa_install) Trivial: remove useless
240 goto, replace with return.
241 * ospf_packet.c: (ospf_make_ls_ack) Trivial: merge two list loops,
242 the dual-loop predated the delete-safe list-loop macro.
243
3fed4160
PJ
2442006-07-25 Paul Jakma <paul.jakma@sun.com>
245
246 * ospf_neigbor.h: (struct ospf_neighbor) Add some additional
247 neighbour state statistics fields, timestamps for progressive
248 and regressive state changes, and pointer to event string
249 for the latter state change.
250 * ospf_nsm.c: (nsm_notice_state_change) Update new state changs
251 history as required.
252 * ospf_vty.c: (show_ip_ospf_neighbor_detail_sub) Print out above
253 new per-neighbour state change stats.
254
539e1523
PJ
2552006-07-10 Paul Jakma <paul.jakma@sun.com>
256
257 * ospf_nsm.c: (nsm_change_state) call nsm_clear_adj for all
258 adjacency losses, hence removing need for nsm_reset_nbr.
259 (nsm_reset_nbr) kill it, clear_adj in previous does fine.
260 (nsm_kill_nbr,nsm_start) remove nsm_reset_nbr call.
261 (ospf_nsm_event) Allow NSM function to be NULL, this along with
262 removal of nsm_reset_nbr, allows a bunch of now useless functiosn
263 to be removed.
264 Remove some useless variables.
265 (nsm_ignore) now useless, remove.
266 (nsm_bad_ls_req) ditto
267 (nsm_seq_number_mismatch) "
268 (nsm_oneway_received) "
269 (nsm_inactivity_timer) "
270 (nsm_ll_down) "
271 (NSM) replace removed action functions with NULL.
3d63f380
PJ
272 (nsm_notice_state_changes) Move state change logging code to new
273 func to declutter nsm_change_state and ospf_nsm_event.
274 Log event with AdjChange, it's useful to know.
275 (nsm_change_state) move adjchange and snmp logging to previous.
276 (ospf_nsm_event) call nsm_notice_state_changes from here.
277 Move the debug message to entry of function, so it gets out
278 even if something goes wrong.
90c33177
PJ
279 Record state change timestamp and event in nbr struct.
280 * ospf_neighbor.h: (struct ospf_neighbor) Add fields to record
281 timestamp of last NSM change and event.
282 * ospf_vty.c: (show_ip_ospf_neighbor_detail_sub) Print
283 last state change timestamp and event, if available.
539e1523 284
13cd3dc1
AS
2852006-07-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
286
287 * ospf_packet.c: (ospf_hello) Improve NetworkMask mismatch warning
288 message to include interface name and conflicting prefix lengths.
289
1f2c2743
PJ
2902006-07-07 Paul Jakma <paul.jakma@sun.com>
291
292 * ospf_nsm.h: Add a NSM_Deleted neighbour state, to act as dummy
293 state indicating the neighbour is to be deleted.
294 * ospf_nsm.c: (general) Use the NSM_Deleted state to delete
295 neighbours, thus allowing code to be slightly more obvious
296 in its flow.
297 (nsm_timer_set) Add NSM_Deleted. Add another timer the code
298 missed.
299 (nsm_kill_nbr) No need for special case call to nsm_change_state
300 anymore.
301 Make the assert and error-handling for same case more readable
302 (Andrew Schorr)
303 Remove the call to ospf_nbr_delete, nsm_change_state can do
304 this generally now via NSM_Deleted.
305 (struct ... NSM) Add the dummy NSM_Deleted state, the 3 events
306 that can lead to nsm_kill_nbr all now transition the NBR to
307 NSM_Deleted and the general change_state function can be left
308 to do the work.
309 (ospf_nsm_event) Special casing of events and early-return can
310 be removed now.
311 On transition into Deleted, delete the nbr.
312 * ospf_dump.c: (ospf_nsm_state_msg) Add Deleted.
313
aa2737a0
PJ
3142006-07-06 Paul Jakma <paul.jakma@sun.com>
315
316 * ospf_nsm.c: (ospf_nsm_event) LLDown event also results in nbr
317 being deleted, requires early-return too. Likely explains
318 some crash reports after interface events.
319
f7a76abf
PJ
3202006-07-04 Paul Jakma <paul.jakma@sun.com>
321
322 * ospf_nsm.c: (general) Various small cleanups from Andrew's
323 review of last set of patches.
324 (nsm_timer_set) Loading, Full and default can share
325 same code too.
326 (nsm_should_adj) Can just be one big OR.
327 (nsm_twoway_received) Collapse into return statement.
328
d7b0fb62
PJ
3292006-07-02 Paul Jakma <paul.jakma@sun.com>
330
331 * ospf_nsm.c: (nsm_should_adj) New function, just consolidate the
332 10.4 adjacency check from nsm_twoway_received/nsm_adj_ok.
333 (nsm_twoway_received/nsm_adj_ok) Use former.
d1b1cd8f
PJ
334 (nsm_clear_adj) clear adjacency related state for a
335 neighbour, needed for some state changes from > ExStart down
336 to ExStart or less, which need not go through nsm_reset_nbr.
337 (nsm_reset_nbr) move code to former. Should be static.
ba0beb4a
PJ
338 (ospf_nsm_event) Don't allow action functions to change
339 next_state if the NSM tables do not indicate next_state is
340 conditional, log warning if one tries - existing code
341 appears fine though.
d1b1cd8f
PJ
342 Remove long dead code.
343 Use nsm_clear_adj for state changes that take down
344 adjacencies to TwoWay/ExStart.
e55dd53b
PJ
345 (nsm_timer_set) ls_req timer should be OFF in early states.
346 Compact several identical sections.
347 Set inactivity timer to OFF for Down, for documentary
348 purposes.
d1b1cd8f
PJ
349 (nsm_kill_nbr) Oops, action function shouldn't try return
350 1 for error.
5db95bc2 351 * ospf_lsa.c: (ospf_translated_nssa_refresh) CID #13.
d7b0fb62 352
1c066bfe
AS
3532006-06-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
354
355 * ospf_vty.c: (show_ip_ospf_neighbor_id) Should show all instances
356 of that neighbor (since it may appear on multiple interfaces)
357 instead of bailing out after showing the first match.
358
7694787c
AS
3592006-06-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
360
361 * ospf_nsm.c: (nsm_twoway_received) When deciding whether to
362 change from state Init to ExStart, the test for whether the
363 neighboring router is DR or BDR should be against the
364 local router's notion of DR/BDR, not the neighbor's view.
365
d7e60dd7
AS
3662006-06-28 Erik Muller <erikm@internap.com>
367
368 * ospfd.h: Define 2 new struct ospf config flags:
369 OSPF_LOG_ADJACENCY_CHANGES and OSPF_LOG_ADJACENCY_DETAIL
370 * ospf_nsm.c (nsm_change_state): Log adjacency changes if
371 requested.
372 * ospf_vty.c (ospf_log_adjacency_changes): New command function
373 to implement ospf subcommand "log-adjacency-changes [detail]".
374 (no_ospf_log_adjacency_changes) Turn off log-adjacency-changes.
375 (show_ip_ospf) Show whether adjacency changes are logged.
376 (ospf_config_write) Add "log-adjacency-changes [detail]" to config.
377 (ospf_vty_init) Add ospf_log_adjacency_changes and
378 no_ospf_log_adjacency_changes.
379
9560fa8a
PJ
3802006-06-26 Paul Jakma <paul.jakma@sun.com>
381
382 * ospf_abr.c: (general) NSSA translate-candidate ABRs need to
383 be ASBRs, or other routers may rightfully refuse to install
384 translated type-5s LSAs. reported by dendroot@gmail.com.
385 (ospf_abr_nssa_check_status) Detect change in translator
386 state when ABR, and inc/dec redistribute count as when we
387 leave/enter the disabled state - so that translate-enabled
388 ABR properly sets ASBR bit on non-NSSA areas.
389 Run the resulting function through indent to clean it up.
390 * ospf_lsa.c: (router_lsa_flags) For purposes of ASBR bit,
391 NSSA area is same as stub area.
392
9aecfae2
AS
3932006-06-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
394
395 * ospf_snmp.c: (ospfTrapNbrStateChange, ospfTrapIfStateChange) Improve
396 info log message to indicate why the trap is being sent.
397
0ffb7094
AS
3982006-06-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
399
400 * ospf_dump.c: (config_write_debug) Fix typo to show debug ospf nsm
401 status properly (not ism status).
402
6e72cb6a
AS
4032006-06-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
404
405 * ospf_vty.c: ({no_,}ospf_passive_interface) Replace if_lookup_by_name
406 with a call to if_get_by_name -- if the interface does not exist
407 already, it should be created. And remove the obsolete warning
408 message.
409
429ac78c
PJ
4102006-06-15 Paul Jakma <paul.jakma@sun.com>
411
412 * ospf_interface.h: (struct ospf_if_info) Add reference counts
413 for multicast group memberships. Add various macros to help
414 manipulate/check membership state.
415 * ospf_interface.c: (ospf_if_set_multicast) Maintain the
416 ospf_if_info reference counts, and only actually drop
417 memberships if it hits 0, to avoid losing membership when
418 OSPF is disabled on an interface with multiple active OSPF
419 interfaces.
420 * ospf_packet.c: (ospf_{hello,read}) Use the new macros to
421 check/set
422 multicast membership.
423 * ospf_vty.c: (show_ip_ospf_interface_sub) ditto.
424
ac904dec
PJ
4252006-05-31 Paul Jakma <paul.jakma@sun.com>
426
427 * ospf_lsdb.c: (ospf_lsdb_delete) robustify against NULL arguments,
428 print warning.
429 * ospf_lsa.c: (ospf_discard_from_db) ditto.
430 (ospf_maxage_lsa_remover) Check lsa->lsdb for validity, possible
431 mitigation (but not solution) for bug #269.
432
88871b1d
PJ
4332006-05-30 Paul Jakma <paul.jakma@sun.com>
434
435 * ospf_packet.c: (ospf_read) Debug message about packets
436 received on unenabled interfaces should be conditional on
437 debug being set.
438
d1c65c21
PJ
4392006-05-23 Paul Jakma <paul.jakma@sun.com>
440
441 * ospf_vty.c: (general) Replace in-place route redistribution
442 command and help strings with the new auto-generated defines
443 from lib/route_types.h
444
ae128056
PJ
4452006-05-13 Paul Jakma <paul.jakma@sun.com>
446
447 * ospf_lsa.c: (ospf_translated_nssa_refresh) fix the sanity
448 check to match the assert, small error in CID #13 fix.
449
70461d79
PJ
4502006-05-12 Paul Jakma <paul.jakma@sun.com>
451
452 * ospf_lsa.c: (ospf_lsa_action) Get rid of the ospf_lookup
453 call, which is not checked for NULL return, by stripping out
454 functionality which is never used, hence fixing Coverity CID
455 #29.
456 (struct lsa_action) remove unused member.
e54e6e57
PJ
457 (ospf_translated_nssa_refresh) Add non-assert sanity check,
458 in case DEBUG isn't defined.
459 Debug message when no type7 exists should print the ID from
460 the type5, not the type7, fixes CID #13.
461 * ospf_interface.c: (ospf_if_exists) Fix missing NULL return
e43be0ed 462 check on ospf_lookup, CID #27.
6db3a6f7
PJ
463 * ospf_asbr.c: (ospf_redistribute_withdraw) remove ospf_lookup
464 call by taking the struct ospf * as argument, which the
465 caller has, fixing CID #28.
466 * ospf_asbr.h: (ospf_redistribute_withdraw) update declaration
467 * ospf_zebra.c: (ospf_redistribute_unset) update call to
468 ospf_redistribute_withdraw to match.
bfd7c7dc
PJ
469 * ospf_ia.c: (ospf_update_router_route) ospf->backbone could be
470 NULL when passed to ospf_find_asbr_route_through_area,
471 check for NULL first, CID #14.
deb1561c
PJ
472 * ospf_ism.c: (ism_change_state) NULL check on oi->area is
473 useless, it's always valid. Only possibility where it
474 couldn't be is if there is a race between abr_task and
475 cleaning up oi's, in which case a NULL check here isn't going
476 to do anything. Fixes CID #15.
70461d79 477
cac3b5c4
PJ
4782006-05-11 Paul Jakma <paul.jakma@sun.com>
479
480 * ospf_vty.c: (general) Audit ospf_lookup calls in commands,
481 ensure check for NULL result, make vty messages consistent.
482 (show_ip_ospf_interface) Missing NULL check on ospf_lookup
483 result, fixes Coverity CID #70.
1a8ec2b9
PJ
484 (no_ospf_area_filter_list) Check NULL result from
485 ospf_area_lookup_by_area_id, fixes Coverity CID #69
894f8b66
PJ
486 * ospf_route.c: (ospf_route_delete_same_ext) Fix deref before
487 NULL check by moving into check-protected block, fix CID #49.
214a4454
PJ
488 * ospf_abr.c: (ospf_area_range_cost_set) Shouldn't create a new
489 range, should just lookup to see if one exists, the new range
490 is just leaked. Fixes CID #46.
4021b60a
PJ
491 * ospf_lsa.c: (ospf_default_originate_timer) Let the thread
492 take (struct ospf *) as thread argument, rather than (struct
493 ospf *)->default_originate, thus avoiding having to call
494 ospf_lookup.
495 * ospf_zebra.c: (ospf_redistribute_default_set) change setup
496 of ospf_default_originate_timer thread to match.
497 * ospfd.c: (ospf_router_id_update) ditto.
cac3b5c4 498
9c27ef9b
PJ
4992006-04-24 Paul Jakma <paul.jakma@sun.com>
500
501 * (general) More Virtual-link fixes, again with much help in
502 testing / debug from Juergen Kammer. Primarily in SPF.
503 * ospf_spf.h: Add guard. ospf_interface.h will include this
504 header.
505 * ospf_interface.h: Modify ospf_vl_lookup definition to take
506 struct ospf as argument, so as to allow for NULL area
507 argument.
508 (struct ospf_vl_data) Remove out_oi, instead add a struct
509 vertex_nexthop, to use as initial nexthop for backbone paths
510 through a vlink.
511 * ospf_interface.c: (ospf_vl_lookup) Modified to allow
512 NULL area to be passed to indicate "any" (first) area.
513 Add extra debug.
514 (ospf_vl_set_params) vl_oi -> nexthop. Add extra debug.
515 (ospf_vl_up_check) Fix debug, inet_ntoa returns a static
516 buffer..
517 * ospf_route.c: (ospf_intra_add_router) Vlinks dont go through
518 backbone, don't bother checking.
519 * ospf_spf.c: (static struct list vertex_list) Record vertices
520 that will need to be freed.
521 (cmp) Order network before router vertices, as required,
522 wasn't implemented.
523 (vertex_nexthop_free) Mild additional robustness check.
524 (vertex_parent_free) Take void argument, as this function
525 is passed as list deconstructor for vertex parent list.
526 (ospf_vertex_new) More debug. Set deconstructor for parent
527 list. Track allocated vertices on the vertex_list.
528 (ospf_vertex_free) Get rid of the tricky recursive cleanup of
529 vertices. Now frees only the given vertex.
530 (ospf_vertex_add_parent) Fix assert.
531 (ospf_nexthop_calculation) Fix calculation of nexthop for
532 VLink vertices, lookup the vl_data and use its previously
533 recorded nexthop information.
534 (ospf_spf_calculate) Vertices are freed simply by deleting
535 vertex_list nodes and letting ospf_vertex_free as deconstructor
536 work per-node.
537 (ospf_spf_calculate_timer) Trivial optimisation, leave
538 backbone SPF calculation till last to reduce SPF churn on
539 VLink updates.
540 * ospf_vty.c: (ospf_find_vl_data) update call to ospf_vl_lookup
541 (no_ospf_area_vlink_cmd) ditto.
542 (show_ip_ospf_interface_sub) For Vlinks, the peer address is
543 more interesting than the output interface.
544
478aab98
PJ
5452006-04-03 Paul Jakma <paul.jakma@sun.com>
546
547 * (general) Fix issues with handling of Vlinks and entries
548 in the nbrs route-table which were highlighted by the
549 nsm/nbr_self fixes from bug #234. Many thanks to Juergen
550 Kammer for his help and efforts in testing out debug patches to
551 pinpoint the issue.
552 * ospf_interface.c: (ospf_vl_new) Add nbr_self for Vlink.
553 * ospf_neighbor.c: (ospf_nbr_key) new static function, helper
554 to create key in nbrs table for a given nbr.
555 (ospf_nbr_delete) Use ospf_nbr_key. Add an assert() to
556 document an expected state.
557 (ospf_nbr_add_self) Ditto.
558 (ospf_nbr_lookup_by_addr) Add an assert.
559 * ospf_nsm.c: (nsm_kill_nbr) Can never kill the nbr_self
560 psuedo-neighbour.
561
075c2011
PJ
5622006-03-27 Paul Jakma <paul.jakma@sun.com>
563
564 * ospf_lsa.c: (ospf_lsa_checksum) Add an explicit cast to avoid
565 the ambiguities of ANSI and C99 C with respect to type
566 conversion. Detailed problem report and test case with
567 example data supplied by Dmitry Ivanov <dimss@telecentrs.lv>.
568
1a8ee0ec
PJ
5692006-03-25 Paul Jakma <paul.jakma@sun.com>
570
571 * ospf_interface.c: (ospf_if_lookup_recv_if) Ignore loopbacks,
572 we can never ever receive packets on those. Should fix
573 case where CARP is run with address in same subnet as real
574 interface. Problem report and diagnosis thanks to:
575 Landon Fuller <landonf@opendarwin.org>.
576 However, ospf_read() still can't deal deterministically with
577 multiple interfaces in same subnet.
578
c2b478d7
PJ
5792006-03-23 Steve Lawson <steve.lawson@aheadcomusa.com>
580
581 * ospf_lsa.c: (ospf_lsa_install) Fix incorrect byte-order
582 conversion of OSPF_MAX_SEQUENCE_NUMBER
583
e8e1946e 5842006-01-19 Paul Jakma <paul.jakma@sun.com>
585
586 * (general) various miscellaneous compiler warning fixes.
587 Remove redundant break statements from switch clauses
588 which return.
589 return from main, not exit, cause it annoys SOS.
590 Remove stray semi-colons which cause empty-statement
591 warnings.
592
779adb01 5932006-01-18 Juergen Kammer <j.kammer@eurodata.de>
594
595 * ospf_lsa.c: (ospf_router_lsa_new) dont take reference to the
596 stream data until it is constructed, data reference is
597 volatile due to the potential resize in link_info_set
598
5992006-01-18 Paul Jakma <paul.jakma@sun.com>
600
601 * ospf_lsa.c: (link_info_set) Resize the stream if required and
602 possible. Return number of links added.
603 (lsa_link_*_set) use return value from previous.
604 * ospf_lsa.h: Add OSPF_ROUTER_LSA_LINK_SIZE define.
605
c6371718 6062006-01-17 Paul Jakma <paul.jakma@sun.com>
607
608 * ospf_packet.c: (ospf_verify_header) print out the types
609 involved if there's a mismatch.
610 * ospf_zebra.c: (ospf_zebra_add) Adjust to new zserv format.
611
818e56cf 6122006-01-10 Len Sorensen <lennartsorensen@ruggedcom.com>
613
614 * (general) Bug #234, see also [quagga-dev 3902].
615 Fix problem with nbr_self not being properly reinitialised
616 when an interface comes up, after having been down.
1a643f88 617 Some re-arrangement done by Paul Jakma, any bugs introduced
618 on top of Len's suggested changes are his.
818e56cf 619 * ospf_neighbor.c: (ospf_nbr_add_self) centralise
620 initialisation of nbr_self parameters here.
621 * ospf_interface.c: (ospf_if_new) deleting initialisation of
622 parameters of nbr_self, just rely on call to
623 ospf_nbr_add_self.
624 (ospf_if_cleanup) ditto.
625 * ospfd.c: (ospf_network_run) ditto.
626
98429f6d 6272006-01-10 Juris Kalnins <juris@mt.lv>
628
629 * ospf_zebra.c: (ospf_interface_address_delete) fix rare leak of
630 struct connected in an error case.
818e56cf 631 * ospf_packet.c: (ospf_make_md5_digest) fix odd, if not
632 undefined effect, assignment of an increment expression.
98429f6d 633
86752843 6342006-01-10 Paul Jakma <paul.jakma@sun.com>
635
636 * ospfd.c: (ospf_network_run) checking to see if router-id
637 is set should be on ospf->router_id, not router_id_static.
638 This was causing ospfd to not start if router-id had not
639 been configured statically.
640 (ospf_if_update) ditto.
c42c177d 641 * ospf_vty.c: (config_write_ospf_distribute) trim down
642 redundant strings.
86752843 643
00c290e0 6442005-11-26 Paul Jakma <paul.jakma@sun.com>
645
646 * ospf_api.c: (struct opaque_lsa) change from gcc zero-length
647 array to C99 incomplete type array.
c9c93d50 648 * (general) s/graceful/deferred/ in all files, the former term
649 is confusing wrt OSPF Graceful-Restart.
650 * ospfd.c: (ospf_deferred_shutdown_check) dont return
651 a function which returns void. SOS complains about this.
652 (ospf_finish)
00c290e0 653
b29800a6 6542005-11-20 Paul Jakma <paul.jakma@sun.com>
655
656 * ospfd.h: remove the OSPF_ROUTER_ID_UPDATE_DELAY define
657 (struct ospf) remove the router_id timer thread.
658 remove export of ospf_router_id_update_timer.
659 * ospfd.c: (ospf_router_id_update) call ospf_if_update to
660 poke interfaces into action after ID has been configured.
661 (ospf_router_id_update_timer) removed.
662 (ospf_finish_final) t_router_id_update timer is gone.
663 (ospf_network_run) router-id update timer gone.
664 call ospf_router_id_update directly if ID not configured.
665 In the per-iface loop, don't ospf_if_up interfaces if
666 ID is still not configured. The update function will call
667 ospf_if_update anyway.
668 (ospf_if_update) ID update timer is gone. Just return if no
669 ID is set.
670 * ospf_vty.c: (ospf_router_id) call ospf_router_id_update, no
671 timer needed.
672 * ospf_zebra.c: (ospf_router_id_update_zebra) call
673 ospf_router_id_update directly, not via timer.
c24d602e 674 * ospf_abr.c: (ospf_abr_announce_network_to_area) check
675 returned LSA of ospf_summary_lsa_refresh and print warning if
676 it failed.
677 (ospf_abr_announce_network_to_area) similar
678 (ospf_abr_announce_rtr_to_area) similar
679 * ospf_lsa.c: (ospf_router_lsa_new) check LSA returned is valid.
680 (ospf_router_lsa_originate) similar
681 (ospf_router_lsa_refresh, ospf_network_lsa_new) similar
682 (ospf_summary_lsa_new) Check ID is valid.
683 (ospf_summary_lsa_originate) ditto, and check returned LSA from
684 previous function is !NULL.
685 (ospf_summary_lsa_refresh) check ospf_summary_lsa_new return
686 is !NULL.
687 (ospf_summary_asbr_lsa_new) ID valid check.
688 (ospf_summary_asbr_lsa_originate) similar.
b29800a6 689
649654ab 6902005-11-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
691
692 * ospf_dump.h: Define OSPF_TIME_DUMP_SIZE as appropriate buffer size
693 for use with ospf_timer_dump and ospf_timeval_dump.
694 * ospf_vty.c: Change all buffer sizes used with ospf_timer_dump and
695 ospf_timeval_dump to have size OSPF_TIME_DUMP_SIZE.
696 (show_ip_ospf_interface_sub) Fix possible buffer overflow in
697 call to ospf_timer_dump.
698
70cd3474 6992005-11-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
700
701 * ospf_ism.h: (OSPF_ISM_TIMER_OFF) Improve macro syntax by enclosing
702 in 'do {...} while(0)'.
703
31a5976b 7042005-11-14 Paul Jakma <paul.jakma@sun.com>
705
706 * ospfd.c: (ospf_new) stub-shutdown should just default to
707 unconfigured, too strange otherwise.
708 (ospf_finish_final) t_opaque_lsa_self TIMER_OFF should be
709 preprocessor conditional on HAVE_OPAQUE_LSA.
710 * ospfd.h: (struct ospf) remove the SHUTDOWN_DEFAULT define.
711 no longer used, plus it wasn't in range that the command
712 accepted.
713 * ospf_zebra.h: Depends on vty.h, include it.
714
58e1befe 7152005-11-11 Paul Jakma <paul.jakma@sun.com>
716
717 * ospf_spf.c: (ospf_canonical_nexthops_free) Free only
718 the nexthops pointing to the root vertex. We may visit a
719 vertex twice or the vertex may have some inherited nexthops,
720 if we free other nexthops we could crash.
721
c8c1521a 7222005-11-04 Paul Jakma <paul.jakma@sun.com>
723
724 * ospf_{dump,spf,vty}.c: Oops, use the internal tv_sub
725 function rather than unportable timersub.
726
484315fd 7272005-11-03 Paul Jakma <paul.jakma@sun.com>
728
729 * ospf_apiserver.c: (apiserver_sync_callback) stray semi-colon
730 * ospf_packet.c: include checksum.h, remove the in_cksum extern
731 * prototypes.
732 * ospf_te.h: Add braces, quell warning.
6d45276f 733 * ospf_packet.c: Change level of some warnings to
734 informational.
c8c1521a 735
88d6cf37 7362005-10-29 Paul Jakma <paul.jakma@sun.com>
737
738 * (general) RFC3137 stub-router support
739 * ospfd.h: Add OSPF_OUTPUT_COST_INFINITE define.
740 (struct ospf_master) Add a OSPF_MASTER_SHUTDOWN flag for
741 options, to allow shutdown to distinguish between complete
742 shutdown and shutdown of a subset of ospf instances.
743 (struct ospf)
744 Add stub_router_{startup,shutdown_}time, configuration of startup
745 and shutdown time for stub-router.
746 Add t_graceful_shutdown struct thread, timer for graceful
747 shutdown, if needed.
748 (struct ospf_area) Add stub_router_state - run time state of
749 stub-router for an area. Add flags for ADMIN, IS and WAS
750 states.
751 Add t_stub_router, timer thread to resend router-lsa for an
752 area.
753 * ospf_lsa.c: (ospf_link_cost) new simple function to spit out
754 either the given lnks cost or infinite cost if stub-router is
755 in effect.
756 (lsa_link_{ptop,broadcast,virtuallink,ptomp}_set) use
757 previous function for transit-links.
758 (ospf_stub_router_timer) timer thread for end of startup stub
759 router. Change state as required for the area and setup
760 re-origination of router-lsa.
761 (ospf_stub_router_check) Check/do whether stub-router should be
762 enabled, and whether it requires timer to be setup.
763 (ospf_router_lsa_new) call previous function at top.
764 (ospf_router_lsa_originate) no external callers, made static.
765 * ospf_lsa.h: (ospf_router_lsa_originate) removed.
766 * ospf_main.c: (sigint) make static.
767 remove call to exit, as ospf_terminate now deals with
768 exiting.
769 * ospf_route.c: (ospf_terminate) removed, now in ospfd.c.
770 * ospf_vty.c: (show_ip_ospf_area) print out state of
771 stub-router, if active.
772 (show_ip_ospf) print out configuration of stub-router
773 support, and details of graceful-shutdown if the timer is
774 active.
775 ((no)?ospf_max_metric_router_lsa_{admin,startup,shutdown}) new
776 commands to (de-)?configure stub-router support.
777 (config_write_stub_router) write out config of stub-router.
778 (ospf_config_write) call previous.
779 (ospf_vty_init) install the new stub-router commands.
780 * ospfd.c: various functions made static.
781 (ospf_new) Set defaults for stub-router. Graceful shutdown
782 is made to default on, just to be adventerous.
783 (ospf_graceful_shutdown_finish) new function, final part of
784 shutdown.
785 (ospf_graceful_shutdown_timer) timer thread wrapper for
786 graceful-shutdown.
787 (ospf_graceful_shutdown_check) check whether to setup timer
788 for shutdown or proceed directly to final shutdown.
789 (ospf_terminate) moved here from ospf_route.c, call
790 ospf_finish for each instance.
791 (ospf_finish) renamed to ospf_finish_final and made static.
792 (ospf_finish) new function, exported wrapper around
793 ospf_graceful_shutdown_check.
794 (ospf_finish_final) complete shutdown of an instance.
795 Add missing TIMER_OFF's of two timer threads.
796 (ospf_area_free) opaque self lsa timer should be turned off.
797
b8ad39d4 7982005-10-23 Paul Jakma <paul.jakma@sun.com>
799
e029d448 800 * ospf_apiserver.c: (ospf_apiserver_term) This function should
801 not have side-effects (eg segv) if no apiserver instances are
802 active, ie be robust.
b8ad39d4 803 * ospf_vty.c: (show_ip_ospf) fix display of SPF timer if it
804 has not yet been run.
805
ea4ffc90 8062005-10-21 Paul Jakma <paul.jakma@sun.com>
807
808 * ospf_dump.c: (ospf_timeval_dump) fix ms adjustment, thanks to
809 Andrew Schorr.
810 * ospf_vty.c: (ospf_config_write) fix write out of spf timers
811 configuration.
812
d24f6e2a 8132005-10-21 Paul Jakma <paul.jakma@sun.com>
814
815 * (general) SPF millisecond resolution timer with adaptive,
816 linear back-off holdtime. Prettification of ospf_timer_dump.
817 * ospf_dump.c: (ospf_timeval_dump) new function. The guts of
818 ospf_timer_dump, but made to be more dynamic in printing out
819 the relative timeval, sliding the precision printed out
820 according to the value.
821 (ospf_timer_dump) guts moved to ospf_timeval_dump.
822 * ospf_dump.h: export ospf_timeval_dump.
823 * ospf_flood.c: (ospf_flood) remove gettimeofday, use
824 the libzebra exported recent_time instead, as it's not
825 terribly critical to have time exactly right - the dropped
826 LSA will be retransmited to us if we don't ACK it.
827 * ospf_packet.c: (ospf_ls_upd_timer) Ditto, but here we're
828 not transmitting, just putting LSA back on update transmit list.
829 * ospfd.h: delay and holdtimes should be unsigned.
830 Add spf_max_holdtime and spf_hold_multiplier.
831 Update default defines for delay and hold time to be in msec.
832 (struct ospf) change the SPF timestamp to a struct timeval.
833 Remove ospf_timers_spf_(un)?set.
834 * ospfd.c: (ospf_timers_spf_{set,unset}) removed.
835 (ospf_new) initialise spf_max_holdtime and spf_hold_multiplier
836 * ospf_spf.c: (ospf_spf_calculate) SPF timestamp is a timeval
837 now, update with gettimeofday.
838 (ospf_spf_calculate_schedule) Change SPF timers to millisecond
839 resolution.
840 Make the holdtime be adaptive, with a linear increase in
841 holdtime ever consecutive SPF run which occurs within holdtime
842 of previous SPF, bounded by spf_max_holdtime.
843 * ospf_vty.c: Update spf timers commands.
844 (ospf_timers_spf_set) trivial helper.
845 (ospf_timers_throttle_spf_cmd) new command to set SPF delay,
846 initial hold and max hold times with millisecond resolution.
847 (ospf_timers_spf_cmd) Deprecated. Accept the old values,
848 convert to msec, truncate to new limits.
849 (no_ospf_timers_throttle_spf_cmd) set timers to defaults.
850 (no_ospf_timers_spf_cmd) deprecated form, same as previous.
851 (show_ip_ospf_cmd) Display SPF parameters and times.
852 (show_ip_ospf_neighbour_header) Centralise the 'sh ip os ne'
853 header.
854 (show_ip_ospf_neighbor_sub) Fix the field widths. Get rid of
855 the multiple spaces which were making the lines even longer.
856 (show_ip_ospf_neighbor_cmd) Use show_ip_ospf_neighbour_header
857 (show_ip_ospf_neighbor_all_cmd) ditto and fix the field
858 widths for NBMA neighbours.
859 (show_ip_ospf_neighbor_int) Use header function.
860 (show_ip_ospf_nbr_nbma_detail_sub) use sizeof for timebuf,
861 local array - safer.
862 (show_ip_ospf_neighbor_detail_sub) ditto
863 (ospf_vty_init) install the new SPF throttle timer commands.
864
f9ad937f 8652005-10-21 Paul Jakma <paul.jakma@sun.com>
866
867 * (general) OSPF fast, sub-second hello and 1s dead-interval
868 support.
869 * ospf_dump.c: (ospf_timer_dump) Print out milliseconds too.
870 Callers typically specify a length of 9, so most see
871 millisecs unless they specify the additional length.
872 * ospf_interface.h: (struct ospf_interface) new interface param,
873 fast_hello.
874 * ospf_interface.c: (ospf_if_table_lookup) add brackets,
875 gcc warning fix.
876 (ospf_new_if_params) Initialise fast_hello param.
877 (ospf_free_if_params) Check whether fast_hello is configured.
878 (ospf_if_new_hook) set fast_hello to default.
879 * ospf_ism.h: Wrap OSPF_ISM_TIMER_ON inside do {} while (0) to
880 prevent funny side-effects from its if statement when this
881 macro is used conditionally by other macros.
882 (OSPF_ISM_TIMER_MSEC_ON) new macro, set in milliseconds.
883 (OSPF_HELLO_TIMER_ON) new macro to set hello timer according
884 to whether fast_hello is set.
885 * ospf_ism.c: Update all setting of the hello timer to use
886 either OSPF_ISM_TIMER_MSEC_ON or OSPF_HELLO_TIMER_ON. The
887 former is used when hello is to be sent immediately.
888 * ospf_nsm.c: ditto
889 * ospf_packet.c: (ospf_hello) hello-interval is not checked
890 for mismatch if fast_hello is set.
891 (ospf_read) Annoying nit, fix "no ospf_interface" to be debug
892 rather than a warning, as it can be perfectly normal to
893 receive packets when logical subnets are used.
894 (ospf_make_hello) Set hello-interval to 0 if fast-hellos are
895 configured.
896 * ospf_vty.c: (ospf_auto_cost_reference_bandwidth) annoying
897 nit, don't vty_out if this command is given, it gets tired
898 quick.
899 (show_ip_ospf_interface_sub) Print the hello-interval
900 according to whether fast-hello is set or not.
901 Print the extra 5 millisec characters from (ospf_timer_dump)
902 if fast-hello is configured.
903 (ospf_vty_dead_interval_set) new function, common to all
904 forms of dead-interval command, to set dead-interval and
905 fast-hello correctly. If a dead-interval is given, unset
906 fast-hello, else if a hello-multiplier is set, set
907 dead-interval to 1 and fast-hello to given multiplier.
908 (ip_ospf_dead_interval_addr_cmd) use
909 ospf_vty_dead_interval_set().
910 (ip_ospf_dead_interval_minimal_addr_cmd) ditto.
911 (no_ip_ospf_dead_interval) Unset fast-hello.
912 (no_ip_ospf_hello_interval) Bug-fix, unset of hello-interval
913 should set it to OSPF_HELLO_INTERVAL_DEFAULT, not
914 OSPF_ROUTER_DEAD_INTERVAL_DEFAULT.
915 (config_write_interface) Write out fast-hello.
916 (ospf_config_write) Write a comment about
917 "auto-cost reference-bandwidth" having to be equal on all
918 routers. Hopefully just as noticeable as old practice of
919 writing to vty, but less annoying.
920 (ospf_vty_if_init) install the two new dead-interval
921 commands.
922 * ospfd.h: Add defines for OSPF_ROUTER_DEAD_INTERVAL_MINIMAL
923 and OSPF_FAST_HELLO_DEFAULT.
924
eb3da6df 9252005-10-18 Paul Jakma <paul.jakma@sun.com>
926
927 * (general) SPF memory management cleanup and fix for rare
928 double-free bug.
929 * ospf_spf.h: (struct vertex_parent) New struct to hold parent
930 specific data, eg the backlink and the parent vertex pointer,
931 and point to the appropriate general struct vertex_nexthop.
932 (struct vertex_nexthop) remove parent vertex pointer, so
933 this struct can be shared across vertices.
934 (struct vertex) rename list child to list children. Remove
935 list of nexthops, replace with list of vertex_parents.
936 * ospf_spf.c: (update_stat) trivial, remove cast from void *.
937 (vertex_nexthop_new) remove init of parent - field is gone
938 from struct vertex_nexthop.
939 (ospf_canonical_nexthops_free) Remove the canonical
940 vertex_nexthop memory objects. These are the vertex_nexthops
941 attached to the first level of router vertices from the root.
942 (vertex_parent_new) new function, create a vertex_parent.
943 (vertex_parent_free) ditto, but free it.
944 (ospf_vertex_new) Update to match changes to struct vertex.
945 (ospf_vertex_free) Recursively free a struct vertex and its
946 children. The parent list is used as a reference count.
947 vertex_nexthops must be free seperately, if required.
948 (ospf_vertex_dump) update to match struct vertex changes.
949 Print out backlink of parents too.
950 (ospf_vertex_add_parent) ditto.
951 (ospf_lsa_has_link) update comment.
952 (ospf_nexthop_add_unique) removed, not needed anymore.
953 (ospf_nexthop_merge) ditto.
954 (ospf_spf_consider_nexthop) renamed to ospf_spf_add_parent.
955 Simplified to just create vertex_parent and add it.
956 (ospf_spf_flush_parents) new function, flush out the parent
957 list.
958 (ospf_nexthop_calculation) Take the relevant route_lsa_link
959 as an argument, which simplifies things and removes the need
960 for the hack in ospf_nexthop_add_unique - ospf_spf_next
961 already knew exactly which link the cost calculated was for.
962 Update to match struct vertex changes too.
963 (ospf_spf_next) Don't create a vertex for W unnecessarily, if
964 it's there's a vertex already created for W, use it, and
965 hence there's no need to free it either.
966 Update some manipulation/comparisons of distance to match.
967 Flush the parent list if a lower cost path is found.
968 (ospf_spf_route_free) unused, removed.
969 (ospf_spf_dump) match the struct vertex changes, and dump the
970 ifname if possible.
971 (ospf_spf_calculate) At end of SPF, free the canonical nexthops
972 and call ospf_vertex_free on the root vertex to free the
973 entire tree.
974 * ospf_interface.c: (ospf_vl_set_params) match struct vertex
975 changes.
976 * ospf_route.c: (ospf_intra_route_add) ditto
977 (ospf_route_copy_nexthops_from_vertex) ditto
978
3623814a 9792005-10-11 Paul Jakma <paul.jakma@sun.com>
980
981 * ospf_api.c: sign warnings.
982 * ospf_apiserver.c: sign warning and convert all the struct
983 in_addr initialisations so as not to make assumptions about
984 how this struct is organised, initialise the s_addr member
985 explicitely.
986 * ospf_packet.c: Add const qualifier to auth_key.
987
77df1f78 9882005-10-06 Alain Ritoux <alain.ritoux@6wind.com>
989
990 * ospf_snmp.c: Avoid mixing interface and ospf_interface objects
991 which now allows snmpwalk to work with ospfIfTable and
992 also with ospfIfMetricTable
993
f52d13cb 9942005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
995
996 * ospf_dump.c: Remove local hard-coded table ospf_redistributed_proto.
997 (ospf_redist_string) New function implemented using new library
998 function zebra_route_string(). Note that there are a few differences
999 in the output that will result: the new function returns strings
1000 that are lower-case, whereas the old table was mixed case. Also,
1001 the old table mapped ZEBRA_ROUTE_OSPF6 to "OSPFv3", whereas the
1002 new function returns "ospf6".
1003 * ospfd.h: Remove extern struct message ospf_redistributed_proto[],
1004 and add extern const char *ospf_redist_string(u_int route_type)
1005 instead.
1006 * ospf_asbr.c: (ospf_external_info_add) In two messages, use
1007 ospf_redist_string instead of LOOKUP(ospf_redistributed_proto).
1008 * ospf_vty.c: Remove local hard-coded table distribute_str.
1009 (config_write_ospf_redistribute,config_write_ospf_distribute): Use
1010 new library function zebra_route_string() instead of distribute_str[].
1011 * ospf_zebra.c: (ospf_redistribute_set,ospf_redistribute_unset,
1012 ospf_redistribute_default_set,ospf_redistribute_check)
1013 In debug messages, use ospf_redist_string() instead of
1014 LOOKUP(ospf_redistributed_proto).
1015
6638c1ab 10162005-09-30 Vincent Jardin <vincent.jardin@6wind.com>
1017
1018 * ospf_dump.c, ospf_ia.c, ospf_spf.c, ospf_ase.c:
1019 remove unused DEBUG
1020
5e4914c3 10212005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
1022
1023 * ospf_ism.c: generate SNMP traps on Interface state change
1024 * ospf_nsm.c: generate SNMP traps on Neighbour state change
1025 * ospf_snmp.[ch]: support for SNMP traps for interface and neighbours.
1026
ba682537 10272005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
1028
1029 * ospf_vty.c: forece default route LSA to be re_issued whenever
1030 cost is changed ( [no] ip ospf area XXX default-cost YYY)
1031 Support ignore-mtu option
1032 * ospfd.h: define OSPF_MTU_IGNORE_DEFAULT
1033 * ospf_packet.c: support ignore-mtu option
1034 * ospf_interface.h: field added for skipping MTU check
1035 * ospf_interface.c: fix memory leak in ospf_crypt_key_delete()
1036 Set mtu_ignore field to default value
1037 * ospf_abr.[ch]: export ospf_abr_announce_network_to_area()
1038 * ospf_ism.h: add MACRO to convert internal ISM status into SNMP
1039 correct values
1040 * ospf_snmp.c: add sanity check on LSA type in lsdb_lookup_next()
1041 convert OSPFIFSTATE internal status into SNMP values
1042
c1a03d47 10432005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
1044
1045 * ospf_packet.c: use new md5 API
1046
5339cfdb 10472005-09-19 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1048
1049 * ospf_lsa.h: (ospf_external_lsa_flush) Comment out the 5th argument
1050 (nexthop) since it is not used in the function (except inside
1051 some commented-out code).
1052 * ospf_lsa.c: (ospf_external_lsa_flush,ospf_external_lsa_refresh)
1053 Comment out the 5th argument to ospf_external_lsa_flush.
1054 * ospf_asbr.c: (ospf_redistribute_withdraw) Comment out 5th arg
1055 to ospf_external_lsa_flush.
1056 * ospf_vty.c: (no_ospf_default_information_originate) Eliminate 5th
1057 uninitialized nexthop arg to ospf_external_lsa_flush.
1058 * ospf_zebra.c: (ospf_zebra_read_ipv4) Comment out 5th arg
1059 to ospf_external_lsa_flush.
1060 * ospfd.c: (ospf_network_set) Comment out 5th arg
1061 to ospf_external_lsa_flush.
1062
e6a0bf9c 10632005-09-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1064
1065 * ospf_opaque.c:
1066 (ospf_opaque_lsa_refresh_schedule,ospf_opaque_lsa_flush_schedule)
1067 No need to call ospf_lookup(), just use lsa0->area->ospf instead.
1068
bb5b7552 10692005-08-21 Hasso Tepper <hasso at quagga.net>
1070
1071 * ospf_vty.c: Make "show ip ospf neighbor xxx" commands work.
1072 Interface should be specified by name now.
1073
54bedb55 10742005-08-17 Hasso Tepper <hasso at quagga.net>
1075
1076 * ospf_vty.c: Check carefully if interface exists before trying to
1077 print info about it.
1078
01018ce4 10792005-08-05 Hasso Tepper <hasso at quagga.net>
1080
1081 * ospf_zebra.c: Don't assert/stop before type == ZEBRA_ROUTE_MAX if
1082 dealing with routemaps. There is ospf->route_map[ZEBRA_ROUTE_MAX]
1083 for default-information.
1084
c898775c 10852005-07-26 Paul Jakma <paul.jakma@sun.com>
1086
1087 * ospf_abr.c: (ospf_abr_announce_network_to_area) SET_FLAG
1088 should be on lsa not old, which may be freed for one thing,
1089 obviously.
1090
d57834f6 10912005-07-12 Paul Jakma <paul.jakma@sun.com>
1092
1093 * ospfd.h: add OSPF_ABR_DEFAULT for convenience, make
1094 OSPF_ABR_CISCO be the default ABR type.
1095 * ospfd.c: (ospf_new) initialise abr_type to OSPF_ABR_DEFAULT
1096 * ospf_vty.c: (no_ospf_abr_type_cmd) add standard as a negatable
1097 abr_type. default abr_type should be OSPF_ABR_DEFAULT.
1098 (ospf_config_write) test whether default abr_type against
1099 OSPF_ABR_DEFAULT, rather than any specific ABR_TYPE.
1100
8469bd75 11012005-06-20 Hasso Tepper <hasso at quagga.net>
f4833e9f 1102
1103 * ospf_nsm.c: Make database exchange for NSSA database work.
1104
7461d459 11052005-06-13 Paul Jakma <paul.jakma@sun.com>
1106
1107 * ospf_spf.c: Try get more information on a SEGV under
1108 ospf_spf_vertex_add_parent.
1109 (ospf_vertex_free) NULL out the child and nexthop lists
1110 (ospf_vertex_add_parent) nexthop and child can not be NULL
1111 vertex_nexthop's parent->child list can not be NULL
1112 (ospf_spf_next) w and cw are per-loop iteration variables, move
1113 declarations into loop body.
1114
1ddd729e 11152005-06-07 Hasso Tepper <hasso at quagga.net>
1116
1117 * ospf_apiserver.c: Fix obvious error in notifying clients about ISM
1118 changes - oi->ifp->status doesn't give to us info about ISM,
1119 oi->state does.
1120
7e440869 11212005-06-01 Akihiro Mizutani <mizutani@net-chef.net>
1122
1123 * ospf_ism.c (ospf_elect_bdr/ospf_elect_dr): Fix DR election bug.
1124
500e4189 11252005-05-26 Paul Jakma <paul.jakma@sun.com>
1126
1127 * ospf_abr.c: (ospf_abr_update_aggregate) Fix comment, cost bug itself
1128 had been fixed long ago by Sowmini.
1129
a3387a44 11302005-05-19 Paul Jakma <paul.jakma@sun.com>
1131
1132 * ospf_interface.c: (ospf_if_table_lookup) Fix a serious bug
1133 a less serious one.
1134 1: this function is supposed to lookup
1135 entries in the oifs ospf_interface route_table and return either
1136 an existing oi or NULL to indicate not found, its caller depends
1137 on this, yet this function uses route_node_get which /always/
1138 returns a route_node - one is created if none exists. Use
1139 route_node_lookup instead. This should fix root cause of the
1140 reports of the (ospf_add_to_if) assert being hit.
1141 2: oi's are inserted into this table with prefixlength set to
1142 /32 (indeed, it should be a hash table, not a route_table),
1143 however prefixlength to lookup was not changed, if no valid entry
1144 can be inserted other than /32, then nothng but /32 should be
1145 looked up. This possibly only worked by fluke..
1146 Fix confirmed by 2 reporters (one list, one IRC), definitely a
1147 backport candidate once it has been incubated in HEAD for a while.
1148 Thanks to Patrick Friedel and Ivan Warren for testing.
1149
69310a67 11502005-05-11 Paul Jakma <paul.jakma@sun.com>
1151
1152 * (general) Fix memory leaks in opaque AS-scope LSAs, reported and
1153 with much debugging done by by scott collins <scollins@agile.tv>.
1154 * ospf_lsa.c: (ospf_discard_from_db) dont call
1155 ospf_ase_unregister_external_lsa for opaque-lsa's, opaques are
1156 never registered with ase in the first place.
1157 * ospf_packet.c: (general) Disabuse opaque related code of its
1158 tendency to try gather up things into temporary lists.
1159 (ospf_ls_upd) remove the temporary lists opaque uses, call
1160 opaque functions inline, just like all other types.
1161 (ospf_ls_ack) ditto.
1162 (ospf_recv_packet) fixup sign warning.
1163 * ospf_opaque.c: (general) fix the unneeded use of lists, and
1164 untwist some of the logic.
1165 (ospf_opaque_self_originated_lsa_received) take a single LSA
1166 as argument, not a list of them. Remove the list loop. Logic
1167 otherwise unchanged.
1168 (ospf_opaque_ls_ack_received) Mostly ditto. But untwist the logic,
1169 move the actions up into the switch block, remove the goto's and
1170 sanitise the logic near the end a bit.
1171 * ospf_opaque.h: Adjust definitions of aforementioned functions
1172 in ospf_opaque.c to match.
1173
42c98199 11742005-05-07 Yar Tikhiy <yar@comp.chem.msu.su>
1175
1176 * ospf_network.c: Log ifindex on multicast membership leave/join
1177 events.
1178
4dadc291 11792005-05-06 Paul Jakma <paul.jakma@sun.com>
1180
1181 * (general) extern and static qualifiers added.
1182 unspecified arguments in definitions fixed, typically they should
1183 be 'void'.
1184 function casts added for callbacks.
1185 Guards added to headers which lacked them.
1186 Proper headers included rather than relying on incomplete
1187 definitions.
1188 gcc noreturn function attribute where appropriate.
1189 * ospf_opaque.c: remove the private definition of ospf_lsa's
1190 ospf_lsa_refresh_delay.
1191 * ospf_lsa.h: export ospf_lsa_refresh_delay
1192 * ospf_packet.c: (ospf_make_md5_digest) make *auth_key const,
1193 correct thing to do - removes need for the casts later.
1194 * ospf_vty.c: Use vty.h's VTY_GET_INTEGER rather than ospf_vty's
1195 home-brewed versions, shuts up several warnings.
1196 * ospf_vty.h: remove VTY_GET_UINT32. VTY_GET_IPV4_ADDRESS and
1197 VTY_GET_IPV4_PREFIX moved to lib/vty.h.
1198 * ospf_zebra.c: (ospf_distribute_list_update_timer) hacky
1199 overloading of the THREAD_ARG pointer should at least use
1200 uintptr_t.
1201
9e67dc27 12022005-04-15 Zhipeng Gong <zpgong@cdc.3upsystems.com>
1203
1204 * ospf_abr.c: (ospf_abr_announce_network_to_area) dont forget
1205 to approve LSAs for the case where metric has changed, lsa gets
1206 flushed otherwise. (backport candidate).
1207
634f9ea2 12082005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1209
1210 * ospf_zebra.c (ospf_zebra_add): Call zclient_send_message instead
1211 of writen.
1212
e4319de3 12132005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1214
1215 * ospf_interface.h: (ospf_if_lookup_by_name) Remove declaration of a
1216 function that does not exist.
1217
21fefa98 12182005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1219
1220 * ospf_zebra.c: (zebra_interface_if_lookup) Must use
1221 if_lookup_by_name_len.
1222
a349198f 12232005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1224
1225 * ospf_interface.c: (ospf_vl_new) Use strnlen to fix call to if_create.
1226
d2fc8896 12272005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1228
1229 * ospf_vty.c: (show_ip_ospf_interface_sub) Show ifindex and interface
1230 flags to help with debugging.
1231 * ospf_zebra.c: (ospf_interface_delete) After deleting, set ifp->ifindex
1232 to IFINDEX_INTERNAL.
1233 (zebra_interface_if_lookup) Make function static. Tighten up code.
1234
aca72fda 12352005-03-31 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1236
1237 * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging
1238 is turned on.
1239
a608bbf2 12402005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1241
1242 * ospf_zebra.c: (ospf_interface_state_up) If the MTU of an operative
1243 interface changes, print a debug message and call ospf_if_reset()
1244 to simulate down/up on the interface.
1245 * ospf_interface.h: Declare new function ospf_if_reset().
1246 * ospf_interface.c: (ospf_if_reset) New function to call ospf_if_down
1247 and ospf_if_up for all ospf interfaces attached to an interface.
1248
fd651fa6 12492005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1250
5dcbdf82 1251 * ospf_packet.c: (ospf_write_frags) Enhance error message to
1252 show MTU. Also make function static.
1253 (ospf_write) Enhance error message to show interface name and MTU.
1254 Also make function static.
1255
12562005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1257
1258 * ospf_vty.c: (show_ip_ospf_interface_sub) Display interface MTU and
1259 bandwidth; this is useful for debugging problems. Also, the function
1260 should be static.
fd651fa6 1261
1b639047 12622005-03-27 Hasso Tepper <hasso at quagga.net>
1263
1264 * ospf_snmp.c: Don't crash in snmp query if ospf instance doesn't
1265 exist at all.
1266
343f5cc7 12672005-03-25 Hasso Tepper <hasso at quagga.net>
1268
1269 * ospfd.h: Include log.h, fixes compile with gcc-4.0.
1270
9dbc7972 12712005-03-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1272
1273 * ospf_lsa.c: (ospf_lsa_refresh_walker) If the system clock jumps
1274 backward, then current time may be less than
1275 ospf->lsa_refresher_started. This was causing invalid values
1276 for ospf->lsa_refresh_queue.index resulting in infinite loops.
1277 Problem fixed by casting the expression to unsigned before taking
1278 the modulus.
1279
5c33349b 12802005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1281
1282 * ospfd.h: Add new field struct stream *ibuf to struct ospf.
1283 * ospfd.c: (ospf_new) Check return code from ospf_sock_init.
1284 Allocate ibuf using stream_new(OSPF_MAX_PACKET_SIZE+1).
1285 (ospf_finish) Call stream_free(ospf->ibuf.
1286 * ospf_packet.c: (ospf_read) Call stream_reset(ospf->ibuf) and then
1287 pass it to ospf_recv_packet for use in receiving the packet
1288 (instead of allocating a new stream for each packet received).
1289 Eliminate all calls to stream_free(ibuf).
1290 (ospf_recv_packet) The struct stream *ibuf is now passed in as
1291 an argument. No need to use recvfrom to peek at the packet
1292 header (to see how big it is), just use ospf->ibuf which is
1293 always large enough (this eliminates a system call to recvfrom).
1294 Therefore, no need to allocate a stream just for this packet,
1295 and no need to free it when done.
1296
462f20d5 12972005-02-23 Vincenzo Eramo <eramo at infocom.ing.uniroma1.it>
1298
1299 * ospf_lsa.h: New flag to the LSA structure for the SPF calculation.
1300 * ospf_lsdb.h: Export ospf_lsdb_clean_stat() function.
1301 * ospf_spf.h: Add link to the LSA stat structure into vertex.
1302 * ospf_spf.c: New functions cmp() and update_stat() to manage
1303 candidates. Remove ospf_spf_has_vertex(), ospf_vertex_lookup(),
1304 ospf_install_candidate() and ospf_spf_register() functions not needed
1305 any more. Update ospf_vertex_new(), ospf_spf_next() and
1306 ospf_spf_calculate() functions to use pqueue instead of linked list.
1307
e40dcce1 13082005-02-21 Hasso Tepper <hasso at quagga.net>
1309
1310 * ospf_ase.c: Don't show messages related to the ase calculations if
1311 we are not debugging.
1312
306541b3 13132005-02-19 Hasso Tepper <hasso at quagga.net>
1314
1315 * ospf_api.h: char isn't always signed, but it has to be it here.
1316
fa81b713 13172005-02-19 Paul Jakma <paul.jakma@sun.com>
1318
1319 * ospf_packet.c: (ospf_stream_copy) remove
1320 (ospf_packet_dup) use stream_copy instead of ospf_stream_copy
1321
038163fa 13222005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1323
1324 * ospf_packet.c: (ospf_recv_packet) If there is somehow a runt
1325 packet in the queue, it must be discarded. Improve warning messages.
1326 Fix scope to static.
1327 (ospf_read) Fix bug: should reset the read thread in all cases
1328 to make sure we continue to get incoming messages.
1329
658b03a6 13302005-02-15 Paul Jakma <paul.jakma@sun.com>
1331
1332 * ospf_packet.c: (ospf_recv_packet) Fix silly error wrt allocating
1333 ibuf. Thanks Andrew.
1334
bfdc44af 13352005-02-14 Paul Jakma <paul.jakma@sun.com>
1336
1337 * ospf_packet.c: (ospf_recv_packet) use stream_recvmsg.
1338
082253f5 13392005-02-11 Hasso Tepper <hasso at quagga.net>
1340
1341 * ospf_lsdb.c: Fix sum of checksums calculation.
1342
083ee9d9 13432005-02-09 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1344
1345 * ospf_packet.c: (ospf_write) If sendmsg fails, give more info in the
1346 error message.
1347
8cfde376 13482005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1349
1350 * ospf_interface.h: Reduce structure padding by putting new u_char
1351 field multicast_memberships in a better spot (grouped with
1352 other u_char fields type and state).
1353
ba6454ec 13542005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1355
1356 * ospf_interface.h: Improve passive_interface comment. Add new
1357 multicast_memberships bitmask to struct ospf_interface to track
1358 active multicast subscriptions. Declare new function
1359 ospf_if_set_multicast.
1360 * ospf_interface.c: (ospf_if_set_multicast) New function to configure
1361 multicast memberships properly based on the current
1362 multicast_memberships status and the current values of the
1363 ospf_interface state, type, and passive_interface status.
1364 (ospf_if_up) Remove call to ospf_if_add_allspfrouters (this is
1365 now handled by ism_change_state's call to ospf_if_set_multicast).
1366 (ospf_if_down) Remove call to ospf_if_drop_allspfrouters (now
1367 handled by ism_change_state).
1368 * ospf_ism.c: (ospf_dr_election) Remove logic to join or leave
1369 the DRouters multicast group (now handled by ism_change_state's call
1370 to ospf_if_set_multicast).
1371 (ism_change_state) Add call to ospf_if_set_multicast to change
1372 multicast memberships as necessary to reflect the new interface state.
1373 * ospf_packet.c: (ospf_hello) When a Hello packet is received on a
1374 passive interface: 1. Increase the severity of the error message
1375 from LOG_INFO to LOG_WARNING; 2. Add more information to the error
1376 message (packet destination address and interface address);
1377 and 3. If the packet was sent to ospf-all-routers, then try
1378 to fix the multicast group memberships.
1379 (ospf_read) When a packet is received on an interface whose state
1380 is ISM_Down, enhance the warning message to show the packet
1381 destination address, and try to update/fix the multicast group
1382 memberships if the packet was sent to a multicast address.
1383 When a packet is received for ospf-designated-routers, but the
1384 current interface state is not DR or BDR, then increase the
1385 severity level of the error message from LOG_INFO to LOG_WARNING,
1386 and try to fix the multicast group memberships.
1387 * ospf_vty.c: (ospf_passive_interface) Call ospf_if_set_multicast for
1388 any ospf interface that may have changed from active to passive.
1389 (no_ospf_passive_interface) Call ospf_if_set_multicast for
1390 any ospf interface that may have changed from passive to active.
1391 (show_ip_ospf_interface_sub) Show multicast group memberships.
1392
3a9eb091 13932005-02-08 Paul Jakma <paul@dishone.st>
1394
1395 * ospf_packet.c: (various) Remove unneeded stream_set_putp abuse.
1396
847947f2 13972005-02-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1398
1399 * ospf_packet.c: (ospf_read) Fix bug: must check for state ISM_Down,
1400 not for event ISM_InterfaceDown. And improve the message by
1401 adding the interface flags.
1402
0b7d97d2 14032005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1404
1405 * ospf_network.c: (ospf_sock_init) Save errno before calling
1406 ospfd_privs.change.
1407
c3eab871 14082005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1409
1410 * ospf_packet.c: (ospf_packet_add) If oi->obuf is NULL, print
1411 an error message and return.
1412 (ospf_read) If the interface state is ISM_InterfaceDown, issue
1413 a warning message and ignore the packet.
1414
86f1fd96 14152005-01-10 Greg Troxel <gdt@fnord.ir.bbn.com>
1416
1417 * ospf_packet.h: Remove commented out definition of
1418 OSPF_MAX_PACKET; neither it or the uncommented one are used any more.
1419
1420 * ospf_packet.c (ospf_make_ls_upd): Leave room for authentication
1421 when deciding if an update will fit.
1422 (ospf_packet_authspace): Factor out calculation of size required
1423 for authentication.
1424 (ospf_make_db_desc): Use ospf_max_packet, not OSPF_MAX_PACKET.
1425 Don't confuse readers that there is a macro.
1426
3dc56b5b 14272004-12-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1428
1429 * ospf_network.c: Improve all setsockopt error messages to give detailed
1430 information on the arguments.
1431
17eaa728 14322004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1433
1434 * ospf_packet.c: (ospf_db_desc) Reduce severity of "Negotiation done"
1435 messages from LOG_WARNING to LOG_INFO, since this seems to be
1436 normal.
1437
b87f772a 14382004-12-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1439
1440 * ospf_packet.c: (ospf_read) Always look up the interface if
1441 ospf_recv_packet returns NULL ifp, since some platforms such
1442 as Solaris 8 appear to support ifindex retrieval but don't.
1443
1d806288 14442004-12-22 Hasso Tepper <hasso at quagga.net>
1445
1446 * ospf_dump.c: Show debug configuration in vtysh.
c6b87819 1447 * ospf_vty.c: Fix "show ip ospf" output. Router can't be elected in
1448 any case if it's configured as "translate-never".
fe71a97d 1449 * ospf_lsdb.[ch]: New function to calculate sum of checksums.
1450 * ospf_vty.c: Bugfix to show really number of AS external LSAs, not
1451 number of all LSAs with AS scope, this includes opaque as LSAs as
1452 well, show this number separately. Show numbers and sums of
1453 checksums for each type of LSAs.
1454 * ospf_lsa.c: Calculate checksum before putting LSA into database.
1d806288 1455
bc18d616 14562004-12-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1457
1458 * ospf_interface.h: Declare new function ospf_default_iftype.
1459 * ospf_interface.c: (ospf_default_iftype) New function to centralize
1460 this logic in one place.
1461 * ospf_zebra.c: (ospf_interface_add) Use new function
1462 ospf_default_iftype.
1463 * ospf_vty.c: (no_ip_ospf_network,config_write_interface) Fix logic
1464 by using new function ospf_default_iftype.
1465
3aa8d5f9 14662004-12-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1467
1468 * ospf_packet.c: (ospf_db_desc) Should be static, not global.
1469 (ospf_hello,ospf_db_desc,ospf_ls_upd,ospf_ls_ack) Improve warning
1470 messages to include identifying information (e.g. router id).
1471 * ospf_nsm.c: (nsm_change_state) Improve info message to include
1472 router id and state names.
1473
91f3e525 14742004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
1475
3fb9de74 1476 * ospf_apiserver.c (ospf_apiserver_term): Obtain struct
1477 ospf_apiserver * from listnode. Remove unused variables. Follows
1478 suggestion from Jay Fenlason.
91f3e525 1479
9b0e25c0 14802004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1481
1482 * *.c: Change level of debug messages to LOG_DEBUG.
1483
274a4a44 14842004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1485
1486 * ospf_main.c: (main) The 2nd argument to openzlog has been removed.
1487
1210fa66 14882004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1489
1490 * ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message
1491 from LOG_NOTICE to LOG_DEBUG.
1492
887c44a4 14932004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1494
1495 * ospf_main.c: (sigint) Use zlog_notice for termination message.
1496 (main) Issue a startup announcement using zlog_notice.
1497
bec595ad 14982004-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1499
1500 * ospf_packet.c: (ospf_db_desc_proc) Fix spelling of packet in warning
1501 message and in comment.
1502 (ospf_db_desc) Warning message that a packet is being discarded
1503 should give the router id of the packet source. Fix spelling
1504 of packet in two warning messages.
1505 (ospf_ls_req) Warning message that a link state request is being
1506 discarded should give the router id of the neighbor that sent it.
1507
5b85facc 15082004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1509
1510 * ospf_main.c: Remove #include "debug.h" (was not being used, and
1511 lib/debug.h has now been deleted).
1512
c065230a 15132004-11-25 Hasso Tepper <hasso at quagga.net>
1514
1515 * ospf_main.c: Make group to run as configurable.
1516
69e1325f 15172004-11-15 Greg Troxel <gdt@fnord.ir.bbn.com>
1518
1519 * ospf_packet.c (ospf_recv_packet): Assume CMSG_SPACE is present
1520 and works (lib/zebra.h provides if OS doesn't).
1521
788dab10 15222004-11-15 Paul Jakma <paul@dishone.st>
1523
1524 * ospf_{apiserver,te}.c: ospf_lsa_free's should be ospf_lsa_unlock.
1525
05e85fa9 15262004-11-12 Paul Jakma <paul@dishone.st>
1527
1528 * ospf_ia.c: (process_summary_lsa) Only an ABR has any reason to
1529 ignore stub area summary default. Even so it seems a strange
1530 check, add a comment to that effect.
1531
f3ae74cd 15322004-11-04 Paul Jakma <paul@dishone.st>
1533
1534 * ospfd.c: (ospf_network_match_iface) revert to previous network
1535 statement match behaviour.
1536
62d8e96a 15372004-11-02 Paul Jakma <paul@dishone.st>
1538
1539 * ospf_packet.c: (ospf_write_frags) remove iov arg, msg already points
1540 to it. Add convenience pointer to msg->msg_iov[1], and use this,
1541 fixing the unfortunate borkenness introduced in moving of this code
1542 to a function.
1543 (ospf_write) remove iovp and fix up call to previous.
1544 (ospf_ls_upd_packet_new) cast size to long int - unfortunately
1545 glibc's size_t format modifier is not portable.
1546
37ccfa3d 15472004-10-31 Paul Jakma <paul@dishone.st>
1548
1549 * ospf_packet.c: (ospf_write_frags) Add debug output
1550 (ospf_write) set type early, so we can pass it to
1551 ospf_write_frags.
1552 (ospf_ls_upd_packet_new) print size in debug output when too large
1553 packet is encountered.
64511f39 1554 * ospf_zebra.c: (ospf_distribute_list_update_timer) Ugly misuse of
1555 THREAD_ARG to store an integer, but it should at least use same
1556 same type to retrieve the value. Assert value is sane.
37ccfa3d 1557
ac191232 15582004-10-22 Paul Jakma <paul@dishone.st>
1559
1560 * ospf_network.c: (ospf_sock_init) call neutral setsock_ifindex()
1561 function.
1562 * ospf_packet.c: (ospf_read) manually look up ifindex
4ccb2c46 1563 if system could not have returned one, eg openbsd, thanks to Rivo
1564 Nurges for highlighting problem and fix.
06f953f7 1565 Change setsockopt_pktinfo to setsockopt_ifindex.
ac191232 1566
3fb9cd6e 15672004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
1568
1569 * ospf_snmp.c: (ospf_snmp_if_update) Fix logic to handle PtP links
1570 with dedicated subnets properly.
1571 * ospf_lsa.c: (lsa_link_ptop_set) ditto.
1572 * ospfd.c: (ospf_network_match_iface) ditto.
1573 (ospf_network_run) ditto.
1574 * ospf_interface.c: (ospf_if_is_configured) ditto.
1575 (ospf_if_lookup_by_prefix) ditto.
1576 (ospf_if_lookup_recv_if) ditto.
1577 * ospf_vty.c: (show_ip_ospf_interface_sub) Display the peer or
1578 broadcast address if present.
1579
d68614db 15802004-10-13 Hasso Tepper <hasso at quagga.net>
1581
1582 * ospf_main.c: Unbreak compilation with ospfapi disabled.
c75105ab 1583 * ospf_snmp.c: Remove defaults used to initialize smux connection to
1584 snmpd. Connection is initialized only if smux peer is configured.
d68614db 1585
f4d58ce5 15862004-10-12 Hasso Tepper <hasso at quagga.net>
1587
1588 * ospf_main.c, ospf_opaque.c: Unbreak ospfclient compilation - move
1589 static variable from ospf_main.c into ospf_opaque.c.
1590
c3abdb72 15912004-10-11 Hasso Tepper <hasso at quagga.net>
1592
1593 * ospf_main.c, ospf_opaque.c: Disable ospfapi init by default. New
1594 command line switch to enable it.
1595
6b333611 15962004-10-11 Paul Jakma <paul@dishone.st>
1597
1598 * ospf_dump.c: (ospf_ip_header_dump) Assume header is in host order
1599 remove ntohs that should have dissappeared. Take struct ip
1600 as argument, caller has to know there's an IP header at start of
1601 stream anyway.
1602 * ospf_dump.h: update declaration of ospf_ip_header_dump.
1603 * ospf_packet.c: (ospf_write) correct call to
1604 sockopt_iphdrincl_swab_htosys which was munging the header.
1605 (ospf_recv_packet) ip_len is needed for old OpenBSD fixup.
1606 (ospf_read) sockopt_iphdrincl_swab_systoh ip header as soon as
1607 we have it.
6c835671 1608 * (global) Const char update and signed/unsigned fixes.
1609 * (various headers) size defines should be unsigned.
1610 * ospf_interface.h: remove duplicated defines, include the
1611 authoritative header - though, these defines should probably
1612 be moved to a dedicated header, or ospfd.h.
1613 * ospf_lsa.h: (struct lsa) ls_seqnum should be unsigned.
1614 * ospf_packet.c: (ospf_write) cast result of shift to unsigned.
6b333611 1615
eb1ce605 16162004-10-08 Hasso Tepper <hasso at quagga.net>
1617
1618 * *.[c|h]: Fix compiler warnings: make some strings const, signed ->
1619 unsigned, remove unused variables etc.
1620
54ade996 16212004-10-07 Greg Troxel <gdt@claude.ir.bbn.com>
1622
1623 * ospf_apiserver.c (ospf_apiserver_unregister_opaque_type): Don't
1624 use of variable names 'node' and 'nextnode' to avoid possible
1625 conflict with list macros. Move variable declaration inside for
1626 loop after a statement to top of function.
1627
aa20c6f1 16282004-10-07 Paul Jakma <paul@dishone.st>
1629
1630 * ospf_snmp.c: Missed list typedef update
1631 * ospf_dump.c: Include sockopt.h for header swab functions.
1632
18b12c38 16332004-10-05 Paul Jakma <paul@dishone.st>
1634
1635 * ospf_packet.c: replace ospf_swap_iph_to... with
1636 sockopt_iphdrincl_swab_...
1637
18a6dce6 16382004-10-03 James R. Leu <jleu at mindspring.com>
1639
1640 * ospf_zebra.c: Read router id related messages from zebra daemon.
1641 Schedule router-id update thread if it's changed.
1642 * ospfd.c: Remove own router-id selection function. Use router id from
1643 zebra daemon if it isn't manually overriden in configuration.
1644
68defd6d 16452004-09-27 Paul Jakma <paul@dishone.st>
1646
6a99f831 1647 * ospf_dump.c: (ospf_ip_header_dump) Use HAVE_IP_HDRINCL_BSD_ORDER
1648 Apply to offset too. Print ip_cksum, lets not worry about
1649 possible 2.0.37 compile problems.
1650 * ospf_packet.c: (ospf_swap_iph_to{n,h}) Use
1651 HAVE_IP_HDRINCL_BSD_ORDER.
1652 (ospf_recv_packet) ditto.
1653 (ospf_write) Fixup iov argument to ospf_write_frags.
1654 (struct msghdr).msg_name is caddr_t on most platforms.
68defd6d 1655 (ospf_recv_packet) ditto. And msg_flags is not always there
1656 memset struct then set fields we care about rather than
1657 initialise all fields individually.
1658
c9e52be3 16592004-09-26 Hasso Tepper <hasso at quagga.net>
1660
1661 * ospf_abr.c, ospf_dump.c, ospf_lsa.c, ospf_packet.c, ospf_vty.c,
1662 ospf_zebra.c: Fix compiler warnings.
1663
87d6f87a 16642004-09-24 Paul Jakma <paul@dishone.st>
1665
1666 * ospf_apiserver.{c,h}: lists typedef removal cleanup.
1667 update some list loops to LIST_LOOP. some miscellaneous indent
1668 fixups.
1669 (ospf_apiserver_unregister_opaque_type) fix listnode_delete of
1670 referenced node in loop.
1603c06b 1671 (ospf_apiserver_term) loops calling ospf_apiserver_free, which
1672 deletes referenced nodes from apiserver_list, fixed.
87d6f87a 1673 * ospf_interface.h: lists typedef removal cleanup.
1674 * ospf_opaque.{c,h}: lists typedef removal cleanup. update some list
1675 loops to LIST_LOOP. miscellaneous style and indent fixups.
1676 * ospf_te.{c,h}: ditto
1677 * ospf_packet.c: lists typedef removal cleanup.
a2570683 1678 (ospf_write) ifdef fragmentation support. move actual
1679 fragmentation out to a new, similarly ifdefed, function.
1680 (ospf_write_frags) fragmented write support, moved from previous.
87d6f87a 1681
52dc7ee6 16822004-09-23 Hasso Tepper <hasso at quagga.net>
1683
1684 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
1685
68b7339a 16862004-09-12 Paul Jakma <paul@dishone.st>
1687
1688 * ospf_packet.c: Fix bugzilla #107
1689 (ospf_packet_max) get rid of the magic 88 constant
1690 (ospf_swab_iph_ton) new function. set ip header to network order,
1691 taking BSDisms into account.
1692 (ospf_swab_iph_toh) the inverse.
1693 (ospf_write) Add support for IP fragmentation, will only work on
1694 linux though, other kernels make it impossible. get rid of the
1695 magic 4 constant.
1696 (ospf_make_ls_upd) Bound check to end of stream, not to
1697 interface mtu.
1698 (ospf_ls_upd_packet_new) New function, allocate upd packet
1699 taking oversized LSAs into account.
1700 (ospf_ls_upd_queue_send) use ospf_ls_upd_packet_new to allocate,
1701 rather than statically allocating mtu sized packet buffer, which
1702 actually was wrong - it didnt take ip header into account, which
1703 should not be included in packet buffer.
1704 (ospf_ls_upd_send_queue_event) minor tweaks and remove
1705 TODO comment.
1706
630e4807 17072004-08-31 David Wiggins <dwiggins@bbn.com>
1708
1709 * ospf_spf.c (ospf_spf_calculate): Many more comments and debug
1710 print statements. New function ospf_vertex_dump used in debugging.
1711
17122004-08-31 David Wiggins <dwiggins@bbn.com>
1713
1714 * ospf_spf.h (struct vertex): Comments for flags and structure members.
1715
17162004-08-31 David Wiggins <dwiggins@bbn.com>
1717
1718 * ospf_route.c: When finding an alternate route, log cost as well.
1719
17202004-08-31 David Wiggins <dwiggins@bbn.com>
1721
1722 * ospf_interface.c (ospf_lookup_if_params): Initialize af in
1723 struct prefix allocated on stack.
1724
17252004-08-31 David Wiggins <dwiggins@bbn.com>
1726
1727 * ospf_packet.c (ospf_ls_ack_send_delayed): In p2mp mode, send
1728 acks to AllSPFRouters, rather than All-DR.
1729
7b90143f 17302004-08-27 Hasso Tepper <hasso at quagga.net>
1731
1732 * ospf_vty.c: Don't print ospf network type under interface only
1733 if interface is in broadcast mode and interface type really is
1734 broadcast. Fixes Bugzilla #108.
1735
d7d93997 17362004-08-27 David Wiggins <dwiggins@bbn.com>
1737
1738 * ospf_spf.c (ospf_nexthop_calculation): Initialize address family
1739 in on-stack struct prefix_ipv4. Fixes point-to-multipoint SPF
1740 calculation.
1741
d0deca68 17422004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com>
1743
1744 * ospf_packet.c (ospf_recv_packet): adjust size declaration of
d7d93997 1745 buffer used to get interface index so that it compiles on other
1746 than Linux and includes the required alignment space. Probably
1747 this was only working on sparc/sparc64 because most of
1748 sockaddr_dl was not being written.
d0deca68 1749
863082d5 17502004-08-19 Paul Jakma <paul@dishone.st>
1751
1752 * ospf_packet.c: update to match sockopt renames.
1753
75ee0b8e 17542004-08-04 Paul Jakma <paul@dishone.st>
1755
1756 * ospf_spf.c: (ospf_spf_consider_nexthop) Add comment about issue.
1757 Compare only against list head - all nexthops must be same cost
1758 anyway, fixes a reference-listnode-after-delete bug noted by
1759 Kir Kostuchenko.
1760 (ospf_nexthop_calculation) Use ospf_spf_consider_nexthop for all
1761 candidates attached to root.
1762
48fe13bf 17632004-07-27 Paul Jakma <paul@dishone.st>
1764
1765 * ospf_packet.c: (ospf_ls_upd_send_queue_event) fix thinko from
1766 last fix for ospfd wedging due to oversize LSAs: dont list loop on
1767 ospf_ls_upd_queue_send() - guaranteed segfault.
1768
36c64efd 17692004-07-27 Paul Jakma <paul@dishone.st>
1770
1771 * ospf_opaque.c: (ospf_opaque_lsa_flush_schedule) do not NULL out
1772 the LSA as then free_opaque_info_per_id() can never unlock (and
1773 free) the LSA. Reported by Gunnar Stigen.
1774
2dd8bb4e 17752004-07-23 Paul Jakma <paul@dishone.st>
1776
1777 * ospf_network.c: Replace PKTINFO/RECVIF with call to
1778 setsockopt_pktinfo
1779 * ospf_packet.c: Use getsockopt_pktinfo_ifindex and
1780 SOPT_SIZE_CMSG_PKTINFO_IPV4.
1781
59ea14c6 17822004-07-14 Paul Jakma <paul@dishone.st>
1783
1784 * ospf_packet.c: (ospf_ls_upd_send_queue_event) Partial fix for
1785 problem reported by Peter Frost amongst others, where function
1786 will spin indefinitely if update list contains LSAs greater than
1787 MTU-headers or other condition leading to update list never being
1788 cleared. Problem of what to do with these LSAs remains.
1789 (ospf_make_ls_upd) add comment about large LSA problem,
1790 indentation cleanup.
1791
b2c1b282 17922004-07-01 Greg Troxel <gdt@fnord.ir.bbn.com>
1793
1794 * Makefile.am (lib_LTLIBRARIES): make libospf shared
1795
87efd646 17962004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
1797
1798 * Makefile.am: Add shlib support.
1799
beebba75 18002004-06-10 Hasso Tepper <hasso@estpak.ee>
1801
1802 * *: Removed ifdefs HAVE_NSSA.
1803
553ff113 18042004-06-06 Paul Jakma <paul@dishone.st>
1805
1806 * ospf_dump.c,ospf_lsa.c: Fix typos of merge of previous.
1807 ospf_flood.c: (ospf_process_self_originated_lsa) fix zlog format
1808
0c2be26c 18092004-05-31 Sagun Shakya <sagun.shakya@sun.com>
1810
1811 * ospf_dump.c: (ospf_lsa_header_dump) LOOKUP can return null if
1812 index is out of range.
1813 ospf_flood.c: endianness fix
1814 ospf_lsa.c: Missing ntohl's on (struct lsa *)->data->ls_seqnum
1815 in various places.
1816
dd669bb0 18172004-05-10 Hasso Tepper <hasso@estpak.ee>
1818
1819 * ospf_zebra.c, ospfd.c: Move ospf_prefix_list_update() function
1820 to ospf_zebra.c from ospfd.c and add redistribution updates if
1821 route-map is used in redistribution.
1822 * ospf_main.c: Remove now useless call to ospf_init().
1823
0a589359 18242004-05-08 Paul Jakma <paul@dishone.st>
1825
1826 * ospf_zebra.c: Sync with lib/zclient changes
1827
d3f0d621 18282004-05-05 Paul Jakma <paul@dishone.st>
1829
5bd4189c 1830 * ospf_network.c: (ospf_sock_init) Check whether IP_HDRINCL is
1831 defined. Warn at compile and runtime. Use
1832 IPTOS_PREC_INTERNETCONTROL otherwise.
d3f0d621 1833 * ospf_packet.c: (ospf_associate_packet_vl) cleanup, move
1834 some of the checks up to ospf_read, return either a
1835 virtual link oi, or NULL.
1836 (ospf_read) Cleanup, make it responsible for checks. Remove
1837 the nbr lookup - moved to ospf_neighbor. Adjust all nbr
1838 lookups to use new wrappers exported by ospf_neighbor.
1839 * ospf_neighbor.h: Add ospf_neigbour_get and ospf_nbr_lookup.
1840 * ospf_neighbor.c: (ospf_neigbour_get) Index ospf_interface
1841 neighbour table by router-id for virtual-link ospf_interfaces,
1842 not by peer_addr (which breaks for asymmetric vlinks)
1843 (ospf_nbr_lookup) add a wrapper for nbr lookups to deal with
1844 above.
cd59da68 1845 * ospf_interface.c: (ospf_vl_set_params) Catch changes of interface
1846 address for either end of a virtual-link, and hence potential cost
1847 changes.
1848
a0a39761 18492004-04-22 Hasso Tepper <hasso@estpak.ee>
1850
1851 * ospf_zebra.c: Don't ignore reject/bh routes, it's the only way
1852 to "summarize" routes in ASBR at the moment.
1853
8585d4e5 18542004-04-20 Hasso Tepper <hasso@estpak.ee>
1855
1856 * ospfd.c: Unset NP flag if area is going to be normal or stub.
1857 Fixes UNH OSPF_NSSA.1.2a comment.
1858 * ospf_abr.c: Originate default into stub/nssa area even if
1859 summaries are disabled.
1860 * ospf_zebra.c: Don't attempt to redistribute 127.0.0.0/8.
1861
c266ac78 18622004-04-19 Hasso Tepper <hasso@estpak.ee>
1863
1864 * ospf_vty.c: Don't warn that export- and import-list can't be
1865 configured to backbone area if they are applied and are working
1866 fine.
1867
128d31d3 18682004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
1869
1870 * ospf_packet.c: Don't drop packets in Solaris x86.
1871 [quagga-dev 1005].
1872
0d85b995 18732004-03-18 Amir Guindehi <amir@datacore.ch>
1874
1875 * ospf_opaque.c: Attempt to correct the incorrect behavior of
1876 Quagga's ospfd in the special situation that a node's opaque
1877 capability has changed as "ON -> OFF -> ON". [quagga-dev 843].
1878
7f352b86 18792004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
1880
1881 * ospf_abr.c: (ospf_abr_update_aggregate) UNH 3.12b,c, address range
1882 should be configured with the highest cost path within the range,
1883 not lowest.
1884
940b01aa 18852004-02-17 Paul Jakma <paul@dishone.st>
1886
1887 * ospf_zebra.c: (ospf_interface_delete) Do not delete the interface
1888 params, nor the interface structure, if an interface delete
1889 message is received from zebra.
1890 * ospf_interface.c: (ospf_if_delete_hook) Delete the interface
1891 params and interface, ie that which was previously removed in
1892 (ospf_interface_delete) above.
1893
2db3d05d 18942004-02-11 Hasso Tepper <hasso@estpak.ee>
1895 * ospf_interface.c, ospf_zebra.c: Don't attempt to read path->oi->ifp
1896 if oi doesn't exist any more.
1897
cb05eb28 18982004-02-11 Vadim Suraev <vadim.suraev@terayon.com>
1899 * ospf_packet.c (ospf_ls_upd): Router should flush received network
1900 LSA if it was originated with older router-id ([zebra 14710] #6).
1901
19022003-12-08 Mattias Amnefelt <mattiasa@kth.se>
239aecc0 1903
1904 * ospf_packet.c: (ospf_recv_packet) OpenBSD now leaves iph.ip_len
1905 network byte order.
1906
8f40e891 19072003-12-05 Greg Troxel <gdt@poblano.ir.bbn.com>
1908
1909 * ospfd.c (ospf_network_match_iface): Rewrite code for clarity
1910 while trying not to change semantics. Add ifdefed-out code to
1911 avoid matching ppp interfaces whose destination address does not
1912 also match the prefix under consideration, to help out people with
1913 problems due to as-yet-unfixed bugs with p2p interfaces coming and
1914 going.
1915
736d3441 19162003-07-25 kamatchi soundaram <kamatchi@tdd.sj.nec.com>
1917
1918 * ospf_packet.c (ospf_ls_upd_send_queue_event): get next route
1919 node in body of the loop to avoid chance that route node
1920 is unlocked and deleted before the next iteration tries to
1921 get next route node.
1922
0a825c79 19232003-05-24 Kenji Yabuuchi
1924
1925 * ospf_interface.c(ospf_if_lookup_recv_if): Use the most specific
1926 match for interface lookup.
1927
551a8979 19282003-05-18 Hasso Tepper <hasso@estpak.ee>
445f1435 1929
551a8979 1930 * ospf_vty.c: Show NSSA LSA route info in "show ip ospf database"
1931 output
445f1435 1932
d748032f 19332003-05-16 Hasso Tepper <hasso@estpak.ee>
1934
1935 * ospf_lsa.c: Fix handling of NSSA
1936
551a8979 19372003-04-23 Hasso Tepper <hasso@estpak.ee>
1938
1939 * ospf_vty.c: fix "router xxx" node commands in vtysh
1940
445f1435 19412003-04-19 Hasso Tepper <hasso@estpak.ee>
1942
1943 * {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS
1944 * ospf_routemap.c: sync daemon's route-map commands to have same
1945 syntax.
1946
19472003-04-19 Sergey Vyshnevetskiy <serg@vostok.net>
1948
1949 * ospf_packet.c: Add missing param to zlog
1950 * ospf_flood.c: remove unused vars
1951
19522003-04-17 Denis Ovsienko <zebra@pilot.org.ua>
1953
1954 * ospf_interface.c: fix incorrect memset
1955
28a13841 19562003-04-10 Amir Guindehi <amir@datacore.ch>
445f1435 1957
1958 * ospf_lsa.[ch]: opaque LSA fix, use ospf_lookup.
1959
19602003-04-03 David Watson <dwatson@eecs.umich.edu>
1961
1962 * ospf_lsa.c: byte order fix
1963
07661cb5 19642002-03-17 Amir Guindehi <amir@datacore.ch>
1965
1966 * ospf_apiserver.[ch]: Merge Ralph Keller's OSPFAPI support.
1967 * ospf_api.[ch]: Merge Ralph Keller's OSPFAPI support.
1968 * ospfclient: OSPFAPI demonstration client.
1969
19702003-01-23 Masahiko Endo <endo@suri.co.jp>
1971
1972 * ospf_ism.c: NSM event schedule bug fix.
1973
19742002-10-30 Greg Troxel <gdt@ir.bbn.com>
1975
1976 * ospf_packet.c (ospf_make_md5_digest): MD5 length fix.
1977
718e3744 19782002-10-23 endo@suri.co.jp (Masahiko Endo)
1979
1980 * ospf_opaque.c: Update Opaque LSA patch.
1981
19822002-10-23 Ralph Keller <keller@tik.ee.ethz.ch>
1983
1984 * ospf_vty.c (show_ip_ospf_database): Fix CLI parse.
1985
19862002-10-23 Juris Kalnins <juris@mt.lv>
1987
1988 * ospf_interface.c (ospf_if_stream_unset): When write queue
1989 becomes empty stop write timer.
1990
19912002-10-10 Greg Troxel <gdt@ir.bbn.com>
1992
1993 * ospf_packet.c (ospf_check_md5_digest): Change >= to > to make it
1994 conform to RFC.
1995
19962002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1997
1998 * zebra-0.93 released.
1999
20002002-06-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2001
2002 * ospf_spf.c (ospf_nexthop_calculation): Add NULL set to oi and
2003 check of l2. Reported by: Daniel Drown <dan-zebra@drown.org>
2004 (ospf_lsa_has_link): LSA Length calculation fix. Reported by:
2005 Paul Jakma <paulj@alphyra.ie>.
2006
2007 * ospfd.c (ospf_if_update): Fix nextnode reference bug. Reported
2008 by: juris@mt.lv.
2009
20102002-01-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2011
2012 * ospfd.c: Merge [zebra 11445] Masahiko ENDO's Opaque-LSA support.
2013
20142001-08-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2015
2016 * ospf_interface.c (ospf_add_to_if): Use /32 address to register
2017 OSPF interface information.
2018 (ospf_delete_from_if): Likewise.
2019
2020 * ospf_zebra.c (ospf_interface_address_delete): Likewise.
2021
20222001-08-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2023
2024 * ospf_zebra.c (ospf_redistribute_unset): When redistribute type
2025 is OSPF, do not unset redistribute flag.
2026
20272001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2028
2029 * zebra-0.92a released.
2030
20312001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2032
2033 * zebra-0.92 released.
2034
20352001-08-12 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2036
2037 * ospfd.c (ospf_config_write): auto-cost reference-bandwidth
2038 configuration display.
2039
20402001-07-24 David Watson <dwatson@eecs.umich.edu>
2041
2042 * ospf_spf.c (ospf_spf_next): Modify ospf_vertex_add_parent to
2043 check for an existing link before connecting the parent and child.
2044 ospf_nexthop_calculation is also modified to check for duplicate
2045 entries when copying from the parent. Finally, ospf_spf_next
2046 removes duplicates when it merges two equal cost candidates.
2047
20482001-07-23 itojun@iijlab.net
2049
2050 * ospfd.c (show_ip_ospf_neighbor): Check ospf_top before use it
2051 [zebra 8549].
2052
20532001-07-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2054
2055 * ospf_packet.c (ospf_write): Remove defined(__OpenBSD__) to make
2056 it work on OpenBSD.
2057
20582001-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2059
2060 * ospf_zebra.c (config_write_ospf_default_metric): Display
2061 default-metric configuration.
2062
20632001-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2064
2065 * ospf_ia.h (OSPF_EXAMINE_SUMMARIES_ALL): Remove old macros.
2066
20672001-05-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
2068
2069 * ospf_snmp.c (ospfIfEntry): Fix interface lookup bug to avoid
2070 crush.
2071 (ospfIfMetricEntry): Likewise.
2072
20732001-03-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2074
2075 * ospf_packet.c (ospf_read): Fix typo. Reported by: "Jen B
2076 Lin'Kova" <jen@stack.net>.
2077
20782001-03-15 Gleb Natapov <gleb@nbase.co.il>
2079
2080 * ospf_interface.c (ip_ospf_network): Set interface parameter.
2081 (interface_config_write): Add check for OSPF_IFTYPE_LOOPBACK.
2082
2083 * ospf_zebra.c (ospf_interface_add): Set interface parameter.
2084
20852001-02-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2086
2087 * ospf_packet.c (ospf_recv_packet): Solaris also need to add
2088 (iph.ip_hl << 2) to iph.ip_len.
2089
20902001-02-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2091
2092 * ospfd.h (OSPF_LS_REFRESH_TIME): Fix OSPF_LS_REFRESH_TIME value.
2093 Suggested by: David Watson <dwatson@eecs.umich.edu>.
2094
2095 * ospf_zebra.c (zebra_init): Remove zebra node.
2096
2097 * ospfd.c (ospf_area_range_set): Function name is changed from
2098 ospf_ara_range_cmd.
2099 (ospf_area_range_unset): New function which separated from DEFUN.
2100 New commands are added:
2101 "no area A.B.C.D range A.B.C.D/M advertise"
2102 "no area <0-4294967295> range A.B.C.D/M advertise"
2103 "no area A.B.C.D range A.B.C.D/M not-advertise"
2104 "no area <0-4294967295> range A.B.C.D/M not-advertise"
2105
2106 * ospf_lsa.c (ospf_lsa_more_recent): Fix previous change.
2107
21082001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
2109
2110 * ospf_network.c (ospf_if_add_allspfrouters): Use
2111 setsockopt_multicast_ipv4.
2112 (ospf_if_drop_allspfrouters): Likewise.
2113
2114 * ospf_lsa.c (ospf_router_lsa_install): Add rt_recalc flag.
2115 (ospf_network_lsa_install): Likewise.
2116 (ospf_summary_lsa_install): Likewise.
2117 (ospf_summary_asbr_lsa_install): Likewise.
2118 (ospf_external_lsa_install): Likewise.
2119 (ospf_lsa_install): Call ospf_lsa_different to check this LSA is
2120 new one or not.
2121
21222001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2123
2124 * ospf_zebra.c (ospf_interface_delete): Do not free interface
2125 structure when ospfd receive interface delete message to support
2126 pseudo interface.
2127
21282001-02-01 Dick Glasspool <dick@ipinfusion.com>
2129
2130 * ospfd.c (area_range_notadvertise): Change area range "suppress"
2131 command to "not-advertise".
2132
2133 * ospfd.h (OSPF_LS_REFRESH_TIME): Change OSPF_LS_REFRESH_TIME from
2134 1800 to 60.
2135
2136 * ospf_abr.c (ospf_abr_update_aggregate): When update_aggregate is
2137 updating the area-range, the lowest cost is now saved.
2138
2139 * ospf_lsa.c (ospf_lsa_more_recent): Routing to compare sequence
2140 numbers rather than creating overflow during calculation.
2141
21422001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2143
2144 * zebra-0.91 is released.
2145
21462001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
2147
2148 * ospf_packet.c (ospf_db_desc_proc): Do not continue process when
2149 NSM_SeqNumberMismatch is scheduled.
2150 (ospf_ls_req): Free ls_upd when return from this function.
2151 (ospf_ls_upd_timer): When update list is empty do not call
2152 ospf_ls_upd_send(). Suggested by: endo@suri.co.jp (Masahiko
2153 Endo).
2154
21552001-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2156
2157 * ospf_lsa.c (ospf_maxage_flood): Flood LSA when it reaches
2158 MaxAge. RFC2328 Section 14.
2159 (ospf_maxage_lsa_remover): Call above function during removing
2160 MaxAge LSA.
2161
21622001-01-26 Dick Glasspool <dick@ipinfusion.com>
2163
2164 * ospf_flood.c (ospf_flood_through_as): Function is updated for
2165 NSSA Translations now done at ospf_abr.c with no change in P-bit.
2166
2167 * ospf_lsa.c (ospf_get_nssa_ip): Get 1st IP connection for Forward
2168 Addr.
2169 (ospf_install_flood_nssa): Leave Type-7 LSA at Lock Count = 2.
2170
2171 * ospf_ase.c (ospf_ase_calculate_route): Add debug codes.
2172
2173 * ospf_abr.c (ospf_abr_translate_nssa): Recalculate LSA checksum.
2174
2175 * ospf_packet.h (OSPF_SEND_PACKET_LOOP): Added for test packet.
2176
2177 * ospf_dump.c (ospf_lsa_type_msg): Add OSPF_GROUP_MEMBER_LSA and
2178 OSPF_AS_NSSA_LSA.
2179
2180 * ospfd.c (data_injection): Function to inject LSA. This is
2181 debugging command.
2182
21832001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2184
2185 * ospf_route.c (ospf_route_match_same): Remove function.
2186 (ospf_route_match_same_new): Renamed to ospf_route_match_same.
2187
2188 * ospf_zebra.c (ospf_interface_address_delete): Add check for
2189 oi->address. Suggested by Matthew Grant
2190 <grantma@anathoth.gen.nz>.
2191 (ospf_zebra_add): Remove function.
2192 (ospf_zebra_add_multipath): Rename to ospf_zebra_add.
2193
2194 * ospf_interface.c: Remove HAVE_IF_PSEUDO part.
2195
2196 * ospf_zebra.c: Likewise.
2197
21982001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2199
2200 * ospf_ase.c: Remove OLD_RIB part.
2201
2202 * ospf_route.c: Likewise.
2203
2204 * zebra-0.90 is released.
2205
2206 * ospf_packet.c (ospf_recv_packet): Use ip_len adjestment code to
2207 NetBSD.
2208
22092001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2210
2211 * ospf_route.c (ospf_route_delete): Use
2212 ospf_zebra_delete_multipath.
2213
22142001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
2215
2216 * ospf_interface.c (ospf_if_cleanup): Function name is renamed
2217 from ospf_if_free(). Rewrite whole procudure to support primary
2218 address deletion.
2219
2220 * ospf_zebra.c (ospf_interface_address_delete): Add primary
2221 address deletion process.
2222
22232001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2224
2225 * ospf_packet.c (ospf_recv_packet): OpenBSD has same ip_len
2226 treatment like FreeBSD.
2227
22282001-01-09 endo@suri.co.jp (Masahiko Endo)
2229
2230 * ospf_packet.c (ospf_recv_packet): FreeBSD kernel network code
2231 strips IP header size from receiving IP Packet. So we adjust
2232 ip_len to whole IP packet size by adding IP header size.
2233
22342001-01-08 endo@suri.co.jp (Masahiko Endo)
2235
2236 * ospf_network.c (ospf_serv_sock): When socket() is failed return
2237 immediately.
2238 (ospf_serv_sock): Close socket when it is not used.
2239
2240 * ospf_packet.c (ospf_write): Set sin_len when HAVE_SIN_LEN is
2241 defined.
2242 (ospf_write): When bind is fined, close sock.
2243
22442001-01-07 Gleb Natapov <gleb@nbase.co.il>
2245
2246 * ospf_zebra.c (ospf_interface_state_up): Fixes coredump that
2247 appears when you try to configure bandwidth on the ppp interface
2248 that is not yet configured in ospfd.
2249
22502001-01-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2251
2252 * ospf_route.c (show_ip_ospf_route_external): "show ip ospf route"
2253 will print nexthops for AS-external routes.
2254
2255 * ospf_ase.c (ospf_ase_route_match_same): New function to compare
2256 ASE route under multipath environment.
2257 (ospf_ase_compare_tables): Likewise.
2258
22592001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2260
2261 * ospfd.h (OSPF_VTYSH_PATH): Change "/tmp/ospfd" to "/tmp/.ospfd".
2262
22632000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org>
2264
2265 * ospf_route.c (ospf_route_install): Install multipath information
2266 to zebra daemon.
2267
2268 * ospf_zebra.c (ospf_zebra_add_multipath): Function for passing
2269 multipath information to zebra daemon.
2270
22712000-12-25 Dick Glasspool <dick@ipinfusion.com>
2272
2273 * ospf_packet.c (ospf_write): Call ospf_packet_delete when sendto
2274 fail.
2275 (DISCARD_LSA): Add argument N for logging point of DISCARD_LSA is
2276 called.
2277
2278 * ospf_lsa.c (ospf_external_lsa_refresh): NSSA install_flood will
2279 leave Type-7 LSA at Lock Count = 2.
2280
2281 * ospf_flood.c (ospf_flood_through): Flood_though_as updated for
2282 NSSA no P-bit off during Area flooding, but P-bit is turned off
2283 for mulitple NSSA AS flooding.
2284
2285 * ospf_ase.c (ospf_ase_calculate_timer): Added calculations for
2286 Type-7 LSDB.
2287
2288 * ospf_abr.c (ospf_abr_translate_nssa): Removed one unlock call.
2289 (ospf_abr_announce_nssa_defaults): Corrected Debug from EVENT to
2290 NSSA.
2291
22922000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2293
2294 * ospf_zebra.c (ospf_zebra_read_ipv4): Checking the age of the
2295 found LSA and if the LSA is MAXAGE we should call refresh instead
2296 of originate.
2297
22982000-12-18 Dick Glasspool <dick@ipinfusion.com>
2299
2300 * ospf_abr.c: Removed redundant "...flood" in
2301 announce_network_to_area(). Repaired nssa Unlock by using
2302 discard.
2303
2304 * ospf_packet.c: Removed old NSSA translate during mk_ls_update.
2305
2306 * ospfd.c: Free up all data bases including NSSA.
2307
2308 * ospf_lsa.c: Now allow removal of XLATE LSA's Check in
2309 discard_callback. Added routine to get ip addr from within the
2310 ifp.
2311
2312 * ospf_flood.c: Now set Forward Address for outgoing Type-7.
2313
2314 * ospf_lsa.h: Added prototype for the below. struct in_addr
2315 ospf_get_ip_from_ifp (struct interface *ifp).
2316
23172000-12-14 Gleb Natapov <gleb@nbase.co.il>
2318
2319 * ospf_packet.c (ospf_recv_packet): New OSPF pakcet read method.
2320 Now maximum packet length may be 65535 bytes (maximum IP packet
2321 length).
2322
2323 * ospf_interface.c (ospf_if_stream_set): Don't make input buffer.
2324
2325 * ospfd.c (config_write_network_area): Remove unnecessary area
2326 lookup code.
2327
23282000-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2329
2330 * ospf_packet.c (ospf_read): Accept packet bigger than MTU value.
2331
23322000-12-13 Gleb Natapov <gleb@nbase.co.il>
2333
2334 * ospfd.c (config_write_network_area): Fix bug in
2335 config_write_network_area function.
2336
23372000-12-12 Gleb Natapov <gleb@nbase.co.il>
2338
2339 * ospf_abr.c (ospf_abr_announce_network_to_area): Make Summary
2340 LSA's origination and refreshment as same as other type of LSA.
2341
2342 * ospf_lsa.c (ospf_summary_lsa_refresh): Return struct ospf_lsa *.
2343
2344 * ospf_lsa.c (ospf_summary_asbr_lsa_refresh): Likewise.
2345
23462000-12-08 Dick Glasspool <dick@ipinfusion.com>
2347
2348 The bulk of NSSA changes are contained herein; This version will
2349 require manual setting of "always" for NSSA Translator, and will
2350 not perform aggregation yet.
2351
2352 * ospf_dump.c: "debug ospf nssa" is added.
2353
2354 * ospf_dump.h: Likewise.
2355
2356 * ospf_packet.c (ospf_hello): Display router ID on Bad NSSA Hello.
2357
2358 * ospfd.c: Discard_LSA to stay away from LOCAL_XLT Process NSSA
2359 'never, candidate, always'. Change "suppress" to "not-advertise".
2360
2361 * ospfd.h: Add TranslatorRole to struct ospf_area. Add anyNSSA to
2362 struct ospf.
2363
2364 * ospf_ase.c (ospf_ase_calculate_route): External to stay away
2365 from LOCAL_XLT
2366
2367 * ospf_nsm.c (ospf_db_summary_add): External to stay away from
2368 LOCAL_XLT
2369
2370 * ospf_abr.c: Major logic added for abr_nssa_task(). If ABR, and
2371 NSSA translator, then do it. Approve the global list, and flush
2372 any unapproved.
2373
2374 * ospf_lsa.h: New LSA flag OSPF_LSA_LOCAL_XLT to indicate that the
2375 Type-5 resulted from a Local Type-7 translation; not used for
2376 flooding, but used for flushing.
2377
2378 * ospf_flood.c: New NSSA flooding.
2379
23802000-12-08 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2381
2382 * ospfd.c (ospf_find_vl_data): New function for looking up virtual
2383 link data.
2384 (ospf_vl_set_security): Virtual link configuration with
2385 authentication.
2386 (ospf_vl_set_timers): Set timers for virtual link.
2387
2388 * New commands are added.
2389 "area A.B.C.D virtual-link A.B.C.D"
2390 "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>"
2391 "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"
2392 "area A.B.C.D virtual-link A.B.C.D authentication-key AUTH_KEY"
2393 "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"
2394 "area A.B.C.D virtual-link A.B.C.D message-digest-key <1-255> md5 KEY"
2395
2396 * ospf_packet.c (ospf_check_md5_digest): Add neighbor's
2397 cryptographic sequence number treatment.
2398 (ospf_check_auth): OSPF input buffer is added to argument.
2399 (ospf_read): Save neighbor's cryptographic sequence number.
2400
2401 * ospf_nsm.c (nsm_change_status): Clear cryptographic sequence
2402 number when neighbor status is changed to NSM down.
2403
2404 * ospf_neighbor.c (ospf_nbr_new): Set zero to crypt_seqnum.
2405
2406 * ospf_neighbor.h (struct ospf_neighbor): Add cryptographic
2407 sequence number to neighbor structure.
2408
24092000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2410
2411 * ospf_snmp.c (ospfIfLookup): OSPF MIB updates.
2412 (ospfExtLsdbEntry): Add OspfExtLsdbTable treatment.
2413
24142000-11-28 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2415
2416 * ospfd.c (ospf_interface_down): Clear a ls_upd_queue queue of the
2417 interface.
2418 (ospf_ls_upd_queue_empty): New function to empty ls update queue
2419 of the OSPF interface.
2420 (no_router_ospf): 'no router ospf' unregister redistribution
2421 requests from zebra.
2422
24232000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org>
2424
2425 * ospf_ism.c (ism_change_status): Increment status change number.
2426
2427 * ospf_interface.h (struct ospf_interface): Add new member for
2428 status change statistics.
2429
2430 * Makefile.am: Update dependencies.
2431
2432 * ospf_zebra.c (ospf_interface_add): OSPF SNMP interface update.
2433 (ospf_interface_delete): OSPF SNMP interface delete.
2434
2435 * ospf_snmp.h: New file is added.
2436
24372000-11-23 Dick Glasspool <dick@ipinfusion.com>
2438
2439 * ospfd.h: Add new ospf_area structure member for
2440 NSSATranslatorRole and NSSATranslator state.
2441
2442 * ospfd.c: Provided for eventual commands to specify NSSA
2443 elections for "translator- ALWAYS/NEVER/CANDIDATE". Provided for
2444 decimal integer version of area-suppress.
2445
2446 * ospf_flood.c: Flood Type-7's only into NSSA (not AS).
2447
2448 * ospf_lsa.c: Undo some previous changes for NSSA. If NSSA
2449 translator, advertise Nt bit.
2450
2451 * ospf_route.c: 1st version of "sh ip os border-routers".
2452
24532000-11-23 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2454
2455 * ospfd.c (area_vlink): Virtual link can not configured in stub
2456 area.
2457
24582000-11-23 Gleb Natapov <gleb@nbase.co.il>
2459
2460 * ospf_packet.c (ospf_db_desc): In states Loading and Full the
2461 slave must resend its last Database Description packet in response
2462 to duplicate Database Description packets received from the
2463 master. For this reason the slave must wait RouterDeadInterval
2464 seconds before freeing the last Database Description packet.
2465 Reception of a Database Description packet from the master after
2466 this interval will generate a SeqNumberMismatch neighbor
2467 event. RFC2328 Section 10.8
2468 (ospf_make_db_desc): DD Master flag treatment.
2469
2470 * ospf_nsm.c (nsm_twoway_received): Move DD related procedure to
2471 nsm_change_status().
2472 (nsm_bad_ls_req): Likewise.
2473 (nsm_adj_ok): Likewise.
2474 (nsm_seq_number_mismatch): Likewise.
2475 (nsm_oneway_received): Likewise.
2476
2477 * ospf_neighbor.h (struct ospf_neighbor): New structure member
2478 last_send_ts for timestemp when last Database Description packet
2479 was sent.
2480
2481 * ospf_nsm.c (ospf_db_desc_timer): Make it sure nbr->last_send is
2482 there. Call ospf_db_desc_resend() in any case.
2483
24842000-11-16 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2485
2486 * ospf_lsa.c (lsa_link_broadcast_set): When there is no DR on
2487 network (suppose you have only one router with interface priority
2488 0). It's router LSA does not contain the link information about
2489 this network.
2490
2491 * ospf_nsm.c (nsm_timer_set): When you change a priority of
2492 interface from/to 0 ISM_NeighborChange event should be scheduled
2493 in order to elect new DR/BDR on the network.
2494
2495 * ospf_interface.c (ip_ospf_priority): Likewise.
2496
2497 * ospf_flood.c (ospf_ls_retransmit_add): When we add some LSA into
2498 retransmit list we need to check whether the present old LSA in
2499 retransmit list is not more recent than the new
2500 one.
2501
25022000-11-09 Dick Glasspool <dick@ipinfusion.com>
2503
2504 * ospf_packet.c: Allows for NSSA Type-7 LSA's throughout the NSSA
2505 area. Any that exit the NSSA area are translated to type-5 LSA's.
2506 The instantiated image is restored after translation.
2507 (ospf_ls_upd_send_list): Renamed to ospf_ls_upd_queu_send().
2508 (ospf_ls_upd_send): Old function which enclosed by #ifdef 0 is
2509 removed.
2510 (ospf_ls_ack_send): Likewise.
2511
2512 * ospf_flood.c: NSSA-LSA's without P-bit will be restricted to
2513 local area. Otherwise they are allowed out the area to be
2514 translated by ospf_packet.c.
2515
2516 * ospf_lsa.c: Undo some previous changes for NSSA.
2517
2518 * ospf_lsdb.h: New access for type 7.
2519
25202000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2521
2522 * ospf_route.c (ospf_path_exist): New function to check nexthop
2523 and interface are in current OSPF path or not.
2524 (ospf_route_copy_nexthops_from_vertex): Add nexthop to OSPF path
2525 when it is not there. Reported by Michael Rozhavsky
2526 <mrozhavsky@opticalaccess.com>
2527
25282000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2529
2530 * ospf_dump.c (config_write_debug): Add seventh string "detail" is
2531 added for flag is OSPF_DEBUG_SEND | OSPF_DEBUG_RECV |
2532 OSPF_DEBUG_DETAIL.
2533
25342000-11-06 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2535
2536 * ospf_lsa.c (router_lsa_flags): ASBR can't exit in stub area.
2537
25382000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2539
2540 * ospf_lsa.c (ospf_router_lsa_originate): Reduce unconditional
2541 logging.
2542
25432000-11-06 Dick Glasspool <dick@ipinfusion.com>
2544
2545 * ospfd.h: Add ait_ntoa function prototype.
2546
2547 * ospfd.c (ait_ntoa): New function for displaying area ID and
2548 Stub/NSSA status.
2549 (show_ip_ospf_interface_sub): Use ait_ntoa.
2550 (show_ip_ospf_nbr_static_detail_sub): Likewise.
2551 (show_ip_ospf_neighbor_detail_sub): Likewise.
2552
2553 * ospf_route.c (ospf_intra_route_add): Set external routing type
2554 to ospf route.
2555 (ospf_intra_add_router): Likewise.
2556 (ospf_intra_add_transit): Likewise.
2557 (ospf_intra_add_stub): Likewise.
2558 (ospf_add_discard_route): Likewise.
2559 (show_ip_ospf_route_network): Use ait_ntoa.
2560 (show_ip_ospf_route_network): Likewise.
2561 (show_ip_ospf_route_router): Likewise.
2562
2563 * ospf_lsa.c (show_lsa_detail): Use ait_ntoa.
2564 (show_lsa_detail_adv_router): Likewise.
2565 (show_ip_ospf_database_summary): Likewise.
2566
2567 * ospf_route.h (struct route_standard): Add new member
2568 external_routing.
2569
2570 * ospf_ia.c (process_summary_lsa): Set external routing tyep to ospf
2571 route.
2572 (ospf_update_network_route): Likewise.
2573 (ospf_update_router_route): Likewise.
2574
25752000-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2576
2577 * ospf_flood.c (ospf_process_self_originated_lsa): Enclose
2578 OSPF_AS_NSSA_LSA treatment with #ifdef HAVE_NSSA.
2579
25802000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2581
2582 * Unconditional logging is enclosed with if (IS_DEBUG_OSPF_EVENT).
2583 Please specify "debug ospf event" for enable logging.
2584
2585 * ospf_ism.c: Do not extern debug flag varible. It is done by
2586 ospf_debug.h
2587 * ospf_asbr.c: Likewise.
2588 * ospf_lsa.c: Likewise.
2589 * ospf_nsm.c: Likewise.
2590 * ospf_zebra.c: Likewise.
2591
2592 * ospf_dump.c (debug_ospf_event): New command "debug ospf event"
2593 is added.
2594
2595 * ospfd.c (router_ospf): Change logging from vty_out() to
2596 zlog_info().
2597 (ospf_area_stub_cmd): Likewise.
2598
2599 * ospf_dump.h: Extern term_debug flags.
2600 (OSPF_DEBUG_EVENT): Add new flag.
2601 (IS_DEBUG_OSPF_EVENT): Add new macro.
2602
26032000-11-03 Dick Glasspool <dick@ipinfusion.com>
2604
2605 * ospf_flood.c (ospf_process_self_originated_lsa):
2606 OSPF_AS_NSSA_LSA is treated as same as OSPF_AS_EXTERNAL_LSA.
2607 (ospf_flood): Type-5's have no change. Type-7's can be received,
2608 and will Flood the AS as Type-5's They will also flood the local
2609 NSSA Area as Type-7's. The LSDB will be updated as Type-5's, and
2610 during re-fresh will be converted back to Type-7's (if within an
2611 NSSA).
2612 (ospf_flood_through): Incoming Type-7's were allowed here if our
2613 neighbor was an NSSA. So Flood our area with the Type-7 and also
2614 if we are an ABR, flood thru AS as Type-5.
2615
2616 * ospf_lsa.c (ospf_external_lsa_refresh): Flood NSSA both NSSA
2617 area and other area.
2618
2619 * ospf_packet.c (ospf_db_desc_proc): When AS External LSA is
2620 exists in DD packet, make it sure that this area is not stub.
2621 (ospf_ls_upd_list_lsa): When LSA type is NSSA then set lsa's area
2622 to NULL.
2623 (ospf_ls_upd): If the LSA is AS External LSA and the area is stub
2624 then discard the lsa. If the LSA is NSSA LSA and the area is not
2625 NSSA then discard the lsa.
2626
26272000-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2628
2629 * ospfd.c (ospf_interface_run): Fix bug of Hello packet's option
2630 is not properly set when interface comes up.
2631
26322000-11-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2633
2634 * ospfd.h (OSPF_OPTION_O): Add new hello header option.
2635
26362000-11-01 Dick Glasspool <dick@ipinfusion.com>
2637
2638 * ospf_lsa.h: Define OSPF_MAX_LSA to 8 when HAVE_NSSA is enabled.
2639 (OSPF_GROUP_MEMBER_LSA): Define OSPF_GROUP_MEMBER_LSA.
2640
2641 * ospf_lsa.c (show_database_desc): Add "Group Membership LSA"
2642 string.
2643
26442000-10-31 Dick Glasspool <dick@ipinfusion.com>
2645
2646 * ospf_lsa.h (OSPF_AS_NSSA_LSA): Define OSPF_AS_NSSA_LSA.
2647
2648 * ospf_lsa.c (show_ip_ospf_database): NSSA database display
2649 function is added. ALIASES which have "show ip ospf database
2650 nssa-external" is added.
2651 (show_ip_ospf_border_routers): New command "show ip ospf
2652 border-routers" is added.
2653
26542000-10-30 Dick Glasspool <dick@ipinfusion.com>
2655
2656 * ospfd.c (router_ospf): NSSA Enabled message is added for
2657 testing.
2658 (ospf_area_type_set): Are type set for NSSA area.
2659 (ospf_area_stub_cmd): Special translation of no_summary into NSSA
2660 and summary information. If NSSA is enabled pass the information
2661 to ospf_area_type_set().
2662 (area_nssa): New commands are added:
2663 "area A.B.C.D nssa"
2664 "area <0-4294967295> nssa"
2665 "area A.B.C.D nssa no-summary"
2666 "area <0-4294967295> nssa no-summary"
2667 (ospf_no_area_stub_cmd): Special translation of no_summary into
2668 NSSA and summary information. If external_routing is
2669 OSPF_AREA_NSSA unset area with ospf_area_type_set (area,
2670 OSPF_AREA_DEFAULT).
2671 (show_ip_ospf_area): Display NSSA status.
2672 (config_write_ospf_area): Show NSSA configuration.
2673
2674 * ospf_packet.c (ospf_hello): For NSSA support, ensure that NP is
2675 on and E is off.
2676
26772000-10-26 Gleb Natapov <gleb@nbase.co.il>
2678
2679 * ospf_lsa.c (ospf_network_lsa_body_set): The network-LSA lists
2680 those routers that are fully adjacent to the Designated Router;
2681 each fully adjacent router is identified by its OSPF Router ID.
2682 The Designated Router includes itself in this list. RFC2328,
2683 Section 12.4.2.
2684
26852000-10-23 Jochen Friedrich <jochen@scram.de>
2686
2687 * ospf_snmp.c: ospf_oid and ospfd_oid are used in smux_open after
2688 it is registered. So those variables must be static.
2689
26902000-10-18 K N Sridhar <sridhar@euler.ece.iisc.ernet.in>
2691
2692 * ospfd.c: Add area_default_cost_decimal_cmd and
2693 no_area_default_cost_decimal_cmd alias.
2694
26952000-10-05 Gleb Natapov <gleb@nbase.co.il>
2696
2697 * ospfd.c (ospf_network_new): Fix setting area format.
2698 (no_router_ospf): Check area existance when calling
2699 ospf_interface_down().
2700
2701 * ospf_flood.c (ospf_external_info_check): Fix bug of refreshing
2702 default route.
2703
27042000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2705
2706 * zebra-0.89 is released.
2707
27082000-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2709
2710 * ospf_snmp.c (ospfHostEntry): OSPF Host MIB is implemented.
2711
2712 * ospfd.c (ospf_nbr_static_cmp): OSPF neighbor is sorted by it's
2713 address.
2714
27152000-09-28 Michael Rozhavsky <mike@nbase.co.il>
2716
2717 * ospf_interface.c (ospf_if_free): Fix deleting self neighbor twice.
2718
27192000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2720
2721 * ospf_packet.c (ospf_read): Solaris on x86 has ip_len with host
2722 byte order.
2723
27242000-09-25 Toshiaki Takada <takada@zebra.org>
2725
2726 * ospfd.c (ospf_compatible_rfc1583), (no_ospf_compatible_rfc1583):
2727 Add CISCO compatible command.
2728
27292000-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2730
2731 * ospf_abr.c (ospf_area_range_lookup): New function is added for
2732 area range lookup in OSPF-MIB.
2733 (ospf_area_range_lookup_next): Likewise.
2734
27352000-09-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2736
2737 * ospfd.c (no_router_ospf): Delete virtual link before deleting
2738 area structure.
2739
2740 * ospf_lsa.c (ospf_external_lsa_refresh_type): Check
2741 EXTERNAL_INFO(type).
2742
2743 * ospfd.c (no_router_ospf): Call ospf_vl_delete() instead of
2744 ospf_vl_data_free().
2745
2746 * ospf_interface.c (ospf_vl_shutdown): Execute ISM_InterfaceDown
2747 when ospf_vl_shutdown is called.
2748 (ospf_vl_delete): Call ospf_vl_shutdown() to delete virtual link
2749 interface's thread.
2750
27512000-09-21 Gleb Natapov <gleb@nbase.co.il>
2752
2753 * ospf_lsa.c: New implementation of OSPF refresh.
2754
27552000-09-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2756
2757 * ospf_snmp.c (ospfLsdbLookup): Add LSDB MIB implementation.
2758
27592000-09-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2760
2761 * ospf_snmp.c (ospfStubAreaEntry): Add OSPF stub area MIB.
2762
27632000-09-18 Gleb Natapov <gleb@nbase.co.il>
2764
2765 * ospf_route.h (route_standard): Change member from `struct area'
2766 to area_id.
2767
2768 * ospf_abr.c (ospf_abr_announce_network), (ospf_abr_should_announce),
2769 (ospf_abr_process_network_rt), (ospf_abr_announce_rtr),
2770 (ospf_abr_process_router_rt):
2771 * ospf_ase.c (ospf_find_asbr_route),
2772 (ospf_find_asbr_router_through_area),
2773 * ospf_ia.c (ospf_find_abr_route), (ospf_ia_router_route),
2774 (process_summary_lsa), (ospf_update_network_route),
2775 (ospf_update_router_route):
2776 * ospf_route.c (ospf_intra_route_add), (ospf_intra_add_router),
2777 (ospf_intra_add_transit), (ospf_intra_add_stub),
2778 (ospf_route_table_dump), (show_ip_ospf_route_network),
2779 (show_ip_ospf_route_router), (ospf_asbr_route_cmp),
2780 (ospf_prune_unreachable_routers):
2781 * ospf_spf.c (ospf_rtrs_print):
2782 * ospfd.c (ospf_rtrs_free): Fix the struct change above.
2783
27842000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2785
2786 * ospf_network.c (ospf_serv_sock_init): Enclose SO_BINDTODEVICE
2787 with ifdef.
2788
27892000-09-13 Gleb Natapov <gleb@nbase.co.il>
2790
2791 * ospf_ism.c (ospf_elect_dr), (ospf_elect_bdr): Fix DR election.
2792
2793 * ospf_network.c (ospf_serv_sock_init): Add socket option
2794 SO_BINDTODEVICE on read socket.
2795
2796 * ospf_packet.c (ospf_hello): Ignore Hello packet if E-bit does
2797 not match.
2798
2799 * ospfd.c (ospf_area_check_free), (ospf_area_get),
2800 (ospf_area_add_if): New function added.
2801
28022000-09-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2803
2804 * ospf_route.c (ospf_intra_add_router): Update ABR and ASBR router
2805 count.
2806
2807 * ospf_spf.c (ospf_spf_init): Rest ABR and ASBR router count
2808 starting SPF calculation.
2809
2810 * ospfd.h (struct ospf_area): Add ABR and ASBR router count.
2811
28122000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2813
2814 * ospfd.c (ospf_area_id_cmp): New area structure is sorted by area
2815 ID.
2816
2817 * ospf_lsa.c (ospf_router_lsa_originate): For OSPF MIB update
2818 lsa_originate_count.
2819 (ospf_network_lsa_originate): Likewise.
2820 (ospf_summary_lsa_originate): Likewise.
2821 (ospf_summary_asbr_lsa_originate): Likewise.
2822 (ospf_external_lsa_originate): Likewise.
2823
28242000-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2825
2826 * ospf_snmp.c (ospf_variables): ospfRouterID's type RouterID
2827 syntax is IpAddress.
2828 (ospf_admin_stat): New function for OSPF administrative status
2829 check.
2830
28312000-09-10 Jochen Friedrich <jochen@scram.de>
2832
2833 * ospf_snmp.c: Implement OSPF MIB skeleton.
2834
28352000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2836
2837 * ospf_snmp.c: New file is added.
2838
28392000-09-07 David Lipovkov <davidl@nbase.co.il>
2840
2841 * ospf_zebra.c (ospf_interface_delete): Add pseudo interface
2842 treatment.
2843
2844 * ospf_interface.c (interface_config_write): Likewise.
2845
28462000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2847
2848 * zebra-0.88 is released.
2849
28502000-08-17 Michael Rozhavsky <mike@nbase.co.il>
2851
2852 * ospfd.c (ospf_area_free): Remove virtual link configuration only
2853 when Area is removed.
2854
28552000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2856
2857 * ospfd.c (network_area): Revert check for EXTERNAL_INFO
2858 (ZEBRA_ROUTE_CONNECT).
2859 (no_network_area): Likewise.
2860
28612000-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2862
2863 * ospfd.h (struct ospf): Add distance_table and
2864 distance_{all,intra,inter,external}.
2865
2866 * ospf_zebra.c: Add OSPF distance related functions.
2867
28682000-08-15 Gleb Natapov <gleb@nbase.co.il>
2869
2870 * ospf_asbr.c (ospf_external_info_find_lsa): New function added.
2871
2872 * ospf_lsa.c (ospf_default_external_info),
2873 (ospf_default_originate_timer), (ospf_external_lsa_refresh_default):
2874 New function added.
2875
2876 * ospf_zebra.c
2877 (ospf_default_information_originate_metric_type_routemap),
2878 (ospf_default_information_originate_always_metric_type_routemap):
2879 Change name and add route-map function.
2880 (ospf_default_information_originate_metric_routemap),
2881 (ospf_default_information_originate_routemap),
2882 (ospf_default_information_originate_type_metric_routemap):
2883 New DEFUN added.
2884
28852000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2886
2887 * ospf_zebra.c (zebra_interface_if_set_value): Change ifindex
2888 restore size from two octet to four.
2889
28902000-08-14 Michael Rozhavsky <mike@nbase.co.il>
2891
2892 * ospf_ase.c (ospf_ase_incremental_update): Implement incremental
2893 AS-external-LSA in 16.6 of RFC2328.
2894
28952000-08-14 Matthew Grant <grantma@anathoth.gen.nz>
2896
2897 * ospf_interface.c (ospf_if_get_output_cost): Change cost
2898 calculation algorithm.
2899
2900 * ospf_packet (ospf_ls_upd): Fix problem of LSA retransmitting.
2901
29022000-08-11 Michael Rozhavsky <mike@nbase.co.il>
2903
2904 * ospf_lsa.c (ospf_maxage_lsa_remover): Fix maxage remover for
2905 AS-external-LSAs.
2906
29072000-08-10 Toshiaki Takada <takada@zebra.org>
2908
2909 * ospfd.c (auto_cost_reference_bandwidth): New DEFUN added.
2910 `auto-cost reference-bandwidth' OSPF router command added.
2911
29122000-08-08 Gleb Natapov <gleb@nbase.co.il>
2913
2914 * ospf_routemap.c (ospf_route_map_update): New function added.
2915 Add route-map event hook.
2916
29172000-08-08 Toshiaki Takada <takada@zebra.org>
2918
2919 * ospf_zebra.c (ospf_distribute_check_connected): If redistribute
2920 prefix is connected route on OSPF enabled interface, suppress to
2921 announce it.
2922
29232000-08-08 Matthew Grant <grantma@anathoth.gen.nz>
2924
2925 * ospf_interface.c (ospf_if_get_output_cost):
2926 New function added. Handle bandwidth parameter for cost
2927 calculation.
2928
29292000-08-08 Michael Rozhavsky <mike@nbase.co.il>
2930
2931 * ospf_interface.c (interface_config_write): Show interface
2932 configuration regardless interface is down.
2933
2934 * ospf_ase.c (ospf_ase_caocluate_route): Whole rewritten external
2935 route calculate function.
2936
29372000-08-08 Gleb Natapov <gleb@nbase.co.il>
2938
2939 * ospf_routemap.c: New file added.
2940
2941 * ospf_asbr.c (ospf_reset_route_map_set_values),
2942 (ospf_route_map_set_compare): New function added.
2943
2944 * ospf_lsa.c (ospf_external_lsa_body_set): Set routemap metric
2945 with AS-external-LSA.
2946
29472000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2948
2949 * ospf_ase.c (ospf_ase_calculate_route_add): Pass new->cost to
2950 ospf_zebra_add as metric.
2951 (ospf_ase_calculate_route_add): Likewise.
2952
2953 * ospf_route.c (ospf_route_install): Pass or->cost to
2954 ospf_zebra_add as metric.
2955
2956 * ospf_zebra.c (ospf_zebra_add): Add metric arguemnt.
2957 (ospf_zebra_delete): Likewise.
2958
29592000-08-03 Matthew Grant <grantma@anathoth.gen.nz>
2960
2961 * ospf_flood.c (ospf_flood_delayed_lsa_ack): New function added.
2962 Dispatch delayed-ACK with flooding AS-external-LSA across virtual
2963 link.
2964
29652000-07-31 Matthew Grant <grantma@anathoth.gen.nz>
2966
2967 * ospfd.c (show_ip_ospf_area): Fix lack of VTY_NEWLINE when
2968 `show ip ospf'.
2969
2970 * ospf_interface.c (ospf_if_free): Fix bug of crash with
2971 Point-to-Point interface.
2972
29732000-07-27 Michael Rozhavsky <mike@nbase.co.il>
2974
2975 * ospf_flood.c (ospf_process_self_originated_lsa):
2976 Make sure to clear LSA->param (redistributed external information)
2977 before refreshment.
2978
29792000-07-27 Gleb Natapov <gleb@nbase.co.il>
2980
2981 * ospfd.c (refresh_group_limit), (refresh_per_slice),
2982 (refresh_age_diff): New defun added. Refresher related parameter
2983 can be configurable.
2984
29852000-07-27 Akihiro Mizutani <mizutani@dml.com>
2986
2987 * ospf_interface.c (interface_config_write): Print `description'
2988 config directive to work.
2989
29902000-07-24 Akihiro Mizutani <mizutani@dml.com>
2991
2992 * ospf_interface.c (ospf_if_init): Use install_default for
2993 INTERFACE_NODE.
2994
29952000-07-24 Gleb Natapov <gleb@nbase.co.il>
2996
2997 * ospf_packet.c (ospf_ls_upd_send_list), (ospf_ls_upd_send_event),
2998 (ospf_ls_ack_send_list), (ospf_ls_ack_send_event): New function added.
2999 This make sending always as many LS update/Ack combined in one ospf
3000 packet.
3001
30022000-07-24 Gleb Natapov <gleb@nbase.co.il>
3003
3004 * ospf_packet.c (ospf_ls_upd_list_lsa): Set NULL to lsa->area if
3005 LSA is AS-external-LSA.
3006
3007 * ospf_nsm.c (nsm_reset_nbr): Do not cancel Inactivity timer.
3008
30092000-07-21 Toshiaki Takada <takada@zebra.org>
3010
3011 * ospf_zebra.c (ospf_default_originate_timer): Set timer for
3012 `default-information originate'. Fix some default originate
3013 related functions.
3014
30152000-07-12 Toshiaki Takada <takada@zebra.org>
3016
3017 * ospf_lsa.c (stream_put_ospf_metric): New function added.
3018
30192000-07-12 Toshiaki Takada <takada@zebra.org>
3020
3021 * ospf_lsa.c (show_ip_ospf_database_router),
3022 (show_ip_ospf_database_network), (show_ip_ospf_database_summary),
3023 (show_ip_ospf_database_summary_asbr), (show_ip_ospf_database_externel),
3024 (show_router_lsa), (show_any_lsa), (show_router_lsa_self),
3025 (show_any_lsa_self): Functions removed.
3026
3027 (show_lsa_prefix_set), (show_lsa_detail_proc), (show_lsa_detail),
3028 (show_lsa_detail_adv_router_proc), (show_lsa_detail_adv_router):
3029 New functions added. Replace above functions.
3030
3031 (show_ip_ospf_database_all), (show_ip_ospf_database_self_originated):
3032 Functions removed.
3033 (show_ip_ospf_database_summary): New functions added. Replace
3034 above functions.
3035
3036 (show_ip_ospf_database_cmd): DEFUN rearranged.
3037 (show_ip_ospf_database_type_id_cmd),
3038 (show_ip_ospf_database_type_id_adv_router_cmd),
3039 (show_ip_ospf_database_type_is_self_cmd): New ALIASes added.
3040 (show_ip_ospf_database_type_adv_rotuer_cmd): New DEFUN added.
3041 (show_ip_ospf_database_type_self_cmd): New ALIAS added.
3042
30432000-07-11 Toshiaki Takada <takada@zebra.org>
3044
3045 * ospf_asbr.c (ospf_external_info_new),
3046 (ospf_external_info_free): New functions added.
3047
3048 * ospf_lsa.h (ospf_lsa): Add new member `void *param' to set
3049 origination parameter for external-LSA.
3050 Remove member `redistribute'.
3051
3052 * ospf_zebra.c (ospf_redistirbute_set): When `redistribute'
3053 command executed, metric and metric-type values are overridden.
3054 If one of those is changed refresh AS-external-LSAs for appropriate
3055 type.
3056
30572000-07-11 Michael Rozhavsky <mike@nbase.co.il>
3058
3059 * ospf_lsa.c (ospf_summary_lsa_refresh),
3060 (ospf_summary_asbr_lsa_refresh): Make sure to refresh summary-LSAs.
3061
3062 * ospf_abr.c (set_metric): New function added.
3063
30642000-07-07 Toshiaki Takada <takada@zebra.org>
3065
3066 * ospf_zebra.c (ospf_default_information_originate_metric_type),
3067 (ospf_default_information_originate_type_metric): New defun added.
3068 Metic and Metric type can be set to default route.
3069 (ospf_default_information_originate_always_metric_type):
3070 (ospf_default_information_originate_always_type_metric):
3071 New defun added. Metric and Metric type can be set to default
3072 always route.
3073
3074 * ospf_zebra.c (ospf_default_metric), (no_ospf_default_metric):
3075 New defun added.
3076
30772000-07-06 Gleb Natapov <gleb@nbase.co.il>
3078
3079 * ospf_flood.c (ospf_flood_through_area): Fix bug of considering
3080 on the same interface the LSA was received from.
3081
30822000-07-06 Michael Rozhavsky <mike@nbase.co.il>
3083
3084 * ospfd.c (ospf_config_write): Fix bug of printing `area stub'
3085 command with `write mem'.
3086
3087 * ospfd.c (no_router_ospf): Remove installed routes from zebra.
3088
3089 * ospf_zebra.c (ospf_interface_delete): Fix function to handle
3090 zebra interface delete event.
3091
30922000-07-06 Toshiaki Takada <takada@zebra.org>
3093
3094 * ospf_zebra.c (ospf_default_information_originate),
3095 (ospf_default_information_originate_always): New DEFUN added.
3096
30972000-07-05 Michael Rozhavsky <mike@nbase.co.il>
3098
3099 * ospf_route.c (ospf_terminate): Make sure to remove external route
3100 when SIGINT received.
3101
31022000-07-03 Gleb Natapov <gleb@nbase.co.il>
3103
3104 * ospf_flood.c, ospf_ism.c, ospf_lsa,c, ospfd.c: Make sure to free
3105 many structure with `no router ospf'.
3106
31072000-06-30 Gleb Natapov <gleb@nbase.co.il>
3108
3109 * ospf_neighbor.c (ospf_nbr_new),
3110 ospf_nsm.c (nsm_timer_set): Start LS update timer only
3111 when neighbor enters Exchange state.
3112
31132000-06-29 Gleb Natapov <gleb@nbase.co.il>
3114
3115 * ospf_nsm.c (nsm_timer_set), (nsm_exchange_done),
3116 ospf_packet.c (ospf_db_desc_proc):
3117 Do not cancel DD retransmit timer when Master.
3118
31192000-06-29 Gleb Natapov <gleb@nbase.co.il>
3120
3121 * ospf_abr.c (ospf_abr_announce_network_to_area),
3122 (ospf_abr_announce_rtr_to_area)
3123 ospf_ase.c (ospf_ase_rtrs_register_lsa),
3124 ospf_flood.c (ospf_process_self_originated_lsa),
3125 (ospf_flood_through_area), (ospf_ls_request_delete),
3126 ospf_interface.c (ospf_if_free),
3127 ospf_ism.c (ism_change_status),
3128 ospf_lsa.c (ospf_router_lsa_update_timer),
3129 (ospf_router_lsa_install), (ospf_network_lsa_install),
3130 (ospf_lsa_maxage_delete), (ospf_lsa_action),
3131 (ospf_schedule_lsa_flood_area),
3132 ospf_nsm.c (nsm_change_status),
3133 ospf_packet.c (ospf_make_ls_req_func), (ospf_make_ls_ack):
3134 Use ospf_lsa_{lock,unlock} for all looking-up of LSA.
3135
3136 * ospf_flood.c (ospf_ls_request_free): Function deleted.
3137
3138 * ospf_lsa.c (ospf_discard_from_db): New function added.
3139
31402000-06-26 Toshiaki Takada <takada@zebra.org>
3141
3142 * ospfd.h (ospf): struct member `external_lsa' name changed to
3143 `lsdb'.
3144
31452000-06-26 Toshiaki Takada <takada@zebra.org>
3146
3147 * ospf_lsa.c (ospf_lsa_install), (ospf_router_lsa_install),
3148 (ospf_network_lsa_install), (ospf_summary_lsa_install),
3149 (ospf_summary_asbr_lsa_install), (ospf_external_lsa_install):
3150 Functions re-arranged.
3151
3152 * ospf_lsa.c (IS_LSA_MAXAGE), (IS_LSA_SELF): Macro added.
3153
31542000-06-20 Michael Rozhavsky <mike@nbase.co.il>
3155
3156 * ospf_packet.c (ospf_ls_req), (ospf_ls_upd), (ospf_ls_ack): Add
3157 verification of LS type.
3158
31592000-06-20 Gleb Natapov <gleb@nbase.co.il>
3160
3161 * ospf_ase.c (ospf_ase_calculate_timer): Add more sanity check
3162 whether rn->info is NULL.
3163
31642000-06-20 Toshiaki Takada <takada@zebra.org>
3165
3166 * ospfd.c (show_ip_ospf_interface_sub): Show Router-ID of both
3167 DR and Backup correctly with `show ip ospf interface' command.
3168
31692000-06-20 Toshiaki Takada <takada@zebra.org>
3170
3171 * ospf_lsa.c (ospf_lsa_lock), (ospf_lsa_unlock),
3172 (ospf_lsa_discard): These functions are used for avoiding
3173 unexpected reference to freed LSAs.
3174
31752000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3176
3177 * ospf_packet.c (ospf_ls_upd): Initialize lsa by NULL to avoid
3178 warning.
3179
31802000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
3181
3182 * ospf_ase.h (ospf_ase_rtrs_register_lsa): Add prototype.
3183
31842000-06-12 Toshiaki Takada <takada@zebra.org>
3185
3186 * ospf_lsa.c (ospf_external_lsa_install): Make sure to register
3187 LSA to rtrs_external when replacing AS-external-LSAs in LSDB.
3188 Fix core dump.
3189
31902000-06-10 Toshiaki Takada <takada@zebra.org>
3191
3192 * ospf_lsdb.c (id_to_prefix), (ospf_lsdb_hash_key),
3193 (ospf_lsdb_hash_cmp), (ospf_lsdb_new), (ospf_lsdb_iterator),
3194 (lsdb_free), (ospf_lsdb_free), (ospf_lsdb_add), (ospf_lsdb_delete),
3195 (find_lsa), (ospf_lsdb_lookup), (find_by_id),
3196 (ospf_lsdb_lookup_by_id), (ospf_lsdb_lookup_by_header): Functinos
3197 removed for migration to new_lsdb.
3198
3199 * ospf_lsa.c (ospf_summary_lsa_install),
3200 (ospf_summary_asbr_lsa_install), (ospf_maxage_lsa_remover),
3201 (ospf_lsa_maxage_walker), (ospf_lsa_lookup),
3202 (ospf_lsa_lookup_by_id): Use new_lsdb instead of ospf_lsdb.
3203 (count_lsa), (ospf_lsa_count_table), (ospf_lsa_count),
3204 (ospf_get_free_id_for_prefix): Funcitions removed.
3205
32062000-06-09 Gleb Natapov <gleb@nbase.co.il>
3207
3208 * ospf_ism.c (ism_interface_down): Prevent some unneeded DR changes.
3209
3210 * ospf_packet.c (ospf_db_desc_proc): Fix memory leak.
3211 (ospf_hello): Always copy router-ID when hello is received.
3212
32132000-06-08 Gleb Natapov <gleb@nbase.co.il>
3214
3215 * ospf_lsa.h (struct ospf_lsa): Add member of pointer to struct
3216 ospf_area.
3217
32182000-06-08 Michael Rozhavsky <mike@nbase.co.il>
3219
3220 * ospf_ase.c (ospf_asbr_route_same): New function added.
3221 This function makes sure external route calculation more
3222 precisely.
3223
32242000-06-07 Michael Rozhavsky <mike@nbase.co.il>
3225
3226 * ospf_ism.c (ism_change_status): Use ospf_lsa_flush_area for
3227 network-LSA deletion instead of using ospf_lsdb_delete.
3228 Also cancel network-LSA origination timer.
3229
32302000-06-07 Levi Harper <lharper@kennedytech.com>
3231
3232 * ospf_interface.c (ospf_if_down): Close read fd when an interface
3233 goes down.
3234
32352000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3236
3237 * ospf_asbr.c (ospf_external_info_lookup): Add explicit brace for
3238 avoid ambiguous else.
3239
3240 * ospf_flood.c (ospf_external_info_check): Likewise.
3241
32422000-06-05 Toshiaki Takada <takada@zebra.org>
3243
3244 * ospf_nsm.c (nsm_adj_ok): Fix bug of DR election.
3245
32462000-06-04 Toshiaki Takada <takada@zebra.org>
3247
3248 * ospf_zebra.c (ospf_default_information_originate),
3249 (no_ospf_default_information_originate): New DEFUN added.
3250
32512000-06-03 Toshiaki Takada <takada@zebra.org>
3252
3253 * ospf_lsa.h, ospf_asbr.h (external_info): Struct moved from
3254 ospf_lsa.h to ospf_asbr.h.
3255
3256 * ospf_lsa.c, ospf_asbr.c (ospf_external_info_add),
3257 (ospf_external_info_delete): Function moved from ospf_lsa.c
3258 to ospf_asbr.c.
3259
32602000-06-03 Toshiaki Takada <takada@zebra.org>
3261
3262 * ospf_flood.c (ospf_external_info_check): New function added.
3263 (ospf_process_self_orignated_lsa): Make sure to flush
3264 self-originated AS-external-LSA, when router reboot and no longer
3265 originate those AS-external-LSA.
3266
32672000-06-02 Toshiaki Takada <takada@zebra.org>
3268
3269 * ospf_network.c (ospf_serv_sock): Remove SO_DONTROUTE
3270 socket option.
3271
3272 * ospf_packet.c (ospf_write): Set MSG_DONTROUTE flag for
3273 unicast destination packets.
3274
32752000-06-02 Toshiaki Takada <takada@zebra.org>
3276
3277 * ospf_lsdb.c (new_lsdb_delete): Delete entry from LSDB only when
3278 specified LSA matches.
3279
32802000-06-02 Gleb Natapov <gleb@nbase.co.il>
3281
3282 * ospf_network.c (ospf_serv_sock): Set SO_DONTROUTE
3283 socket option.
3284
32852000-06-01 Akihiro Mizutani <mizutani@dml.com>
3286
3287 * ospf_dump.c: Replace string `Debugging functions\n' with DEBUG_STR.
3288 Replace string `OSPF information\n' with OSPF_STR.
3289
32902000-06-01 Toshiaki Takada <takada@zebra.org>
3291
3292 * ospf_lsdb.[ch]: Use new_lsdb struct for network-LSA instead of
3293 ospf_lsdb.
3294
32952000-06-01 Toshiaki Takada <takada@zebra.org>
3296
3297 * ospf_dump.c (config_debug_ospf_packet), (config_debug_ospf_event),
3298 (config_debug_ospf_ism), (config_debug_ospf_nsm),
3299 (config_debug_ospf_lsa), (config_debug_ospf_zebra),
3300 (term_debug_ospf_packet), (term_debug_ospf_event),
3301 (term_debug_ospf_ism), (term_debug_ospf_nsm),
3302 (term_debug_ospf_lsa), (term_debug_ospf_zebra): Repalce debug_ospf_*
3303 variable to use for debug option flags.
3304
3305 (debug_ospf_packet), (debug_ospf_ism), (debug_ospf_nsm),
3306 (debug_ospf_lsa), (debug_ospf_zebra): Set {config,term}_debug_*
3307 flags when vty->node is CONFIG_NODE, otherwise set only term_debug_*
3308 flags.
3309
3310 * ospf_dump.h (CONF_DEBUG_PACKET_ON), (CONF_DEBUG_PACKET_OFF),
3311 (TERM_DEBUG_PACKET_ON), (TERM_DEBUG_PACKET_OFF),
3312 (CONF_DEBUG_ON), (CONF_DEBUG_OFF), (IS_CONF_DEBUG_OSPF_PACKET),
3313 (IS_CONF_DEBUG_OSPF): New Macro added.
3314
33152000-05-31 Toshiaki Takada <takada@zebra.org>
3316
3317 * ospfd.c (clear_ip_ospf_neighbor): New DEFUN added.
3318 Currently this command is used for only debugging.
3319
3320 * ospf_nsm.c (nsm_change_status): Make sure thread cancellation
3321 for network-LSA when DR has no full neighbors.
3322
3323 * ospf_nsm.c (ospf_db_summary_clear): New function added.
3324
33252000-05-30 Toshiaki Takada <takada@zebra.org>
3326
3327 * ospf_lsdb.c (new_lsdb_insert): LSAs are always freed by
3328 maxage_lsa_remover when LSA is replaced.
3329
33302000-05-25 Gleb Natapov <gleb@nbase.co.il>
3331
3332 * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all): Add argument
3333 `struct ospf_area' to remove LSA from Link State retransmission list
3334 of neighbor from only one Area.
3335
33362000-05-24 Michael Rozhavsky <mike@nbase.co.il>
3337
3338 * ospf_lsdb.c (ospf_lsdb_add): Preserve flags field when
3339 overriting old LSA with new LSA.
3340
33412000-05-24 Gleb Natapov <gleb@nbase.co.il>
3342
3343 * ospf_lsa.c (ospf_router_lsa_body_set): Fix bug of router-LSA
3344 size calculation.
3345
33462000-05-22 Michael Rozhavsky <mike@nbase.co.il>
3347
3348 * ospf_route.c (ospf_intra_add_stub):
3349 * ospf_spf.h (struct vertex): Use u_int32_t for distance (cost)
3350 value instead of u_int16_t.
3351
33522000-05-22 Axel Gerlach <agerlach@datus.datus.com>
3353
3354 * ospf_ia.c (ospf_ia_network_route): Fix bug of Inter-area route
3355 equal cost path calculation.
3356
33572000-05-21 Toshiaki Takada <takada@zebra.org>
3358
3359 * ospf_ase.c (ospf_ase_calculate_route_delete): New function added.
3360 Make sure, when rotuer route is deleted, related external routes
3361 are also deleted.
3362
33632000-05-20 Toshiaki Takada <takada@zebra.org>
3364
3365 * ospfd.c (ospf_interface_down): Make sure interface flag is disable
3366 and set fd to -1.
3367
33682000-05-16 Toshiaki Takada <takada@zebra.org>
3369
3370 * ospf_asbr.c (ospf_asbr_should_announce), (ospf_asbr_route_remove):
3371 Functions removed.
3372
3373 * ospfd.h (EXTERNAL_INFO): Macro added.
3374 Substitute `ospf_top->external_info[type]' with it.
3375
33762000-05-16 Toshiaki Takada <takada@zebra.org>
3377
3378 * ospf_lsa.c (ospf_rtrs_external_remove): New function added.
3379
33802000-05-14 Gleb Natapov <gleb@nbase.co.il>
3381
3382 * ospf_flood.c (ospf_ls_retransmit_delete_nbr_all)
3383 * ospf_lsdb.c (new_lsdb_insert)
3384 * ospf_packet.c (ospf_ls_ack): Fix database synchonization problem.
3385
33862000-05-14 Gleb Natapov <gleb@nbase.co.il>
3387
3388 * ospf_lsa.h (tv_adjust), (tv_ceil), (tv_floor), (int2tv),
3389 (tv_add), (tv_sub), (tv_cmp): Prototype definition added.
3390
3391 * ospf_nsm.h (ospf_db_summary_delete_all): Prototype definition added.
3392
33932000-05-13 Toshiaki Takada <takada@zebra.org>
3394
3395 * ospf_lsa.[ch] (ospf_lsa): struct timestamp type is changed from
3396 time_t to struct timeval.
3397 (tv_adjust), (tv_ceil), (tv_floor), (int2tv), (tv_add),
3398 (tv_sub), (tv_cmp): timeval utillity functions added.
3399
34002000-05-12 Toshiaki Takada <takada@zebra.org>
3401
3402 * ospf_lsa.[ch] (ospf_schedule_update_router_lsas): Delete function.
3403 Change to use macro OSPF_LSA_UPDATE_TIMER instead of using
3404 this function.
3405 router-LSA refresh timer related stuff is re-organized.
3406
34072000-05-10 Gleb Natapov <gleb@nbase.co.il>
3408
3409 * ospf_interface.c (ospf_vl_set_params):
3410 * ospf_packet.c (ospf_check_network_mask):
3411 * ospf_spf.[ch] (ospf_spf_next):
3412 Remove field address from `struct vertex', and search for peer
3413 address of virtual link in function `ospf_vl_set_params' instead.
3414
34152000-05-10 Gleb Natapov <gleb@nbase.co.il>
3416
3417 * ospf_packet.c (ospf_ls_upd): Fix some memory leak related LSA.
3418
34192000-05-08 Thomas Molkenbur <tmo@datus.com>
3420
3421 * ospf_packet.c (ospf_packet_dup): Replace ospf_steram_copy()
3422 with ospf_stream_dup() to fix memory leak.
3423
34242000-05-08 Michael Rozhavsky <mike@nbase.co.il>
3425
3426 * ospf_flood.c (ospf_flood_through_area): Fix the problem of
3427 LSA update without DROther.
3428
34292000-05-04 Gleb Natapov <gleb@nbase.co.il>
3430
3431 * ospf_spf.c (ospf_vertex_free): Fix memory leak of SPF calculation.
3432
34332000-05-03 Toshiaki Takada <takada@zebra.org>
3434
3435 * ospf_neighbor.c (ospf_db_summary_add): Use new_lsdb struct
3436 instead linked-list.
3437 (ospf_db_summary_count), (ospf_db_summary_isempty):
3438 New function added.
3439
3440 * ospf_lsa.c (ospf_rotuer_lsa): Re-arrange and divide functions.
3441
34422000-05-02 Gleb Natapov <gleb@nbase.co.il>
3443
3444 * ospf_lsdb.c (new_lsdb_cleanup): Fix memory leak. When LSDB are
3445 not needed any more, then free them.
3446
34472000-05-02 Toshiaki Takada <takada@zebra.org>
3448
3449 * ospfd.c (timers_spf), (no_timers_spf): New defun added.
3450 SPF calculation timers related stuff is rearranged.
3451
3452 * ospf_spf.c (ospf_spf_calculate_timer_add): Function removed.
3453 SPF timer is scheduled by SPF calculation delay and holdtime
3454 configuration variable.
3455
3456 * ospf_lsa.c (ospf_external_lsa_nexthop_get): Set AS-external-LSA's
3457 forwarding address when nexthop learned by other protocols is
3458 in the OSPF domain.
3459
3460 * ospf_zebra.c (ospf_redistribute_source_metric_type),
3461 (ospf_redistribute_source_type_metric): Re-arrange DEFUNs and
3462 ALIASes.
3463
34642000-05-01 Toshiaki Takada <takada@zebra.org>
3465
3466 * ospf_flood.c (ospf_ls_retransmit_count),
3467 (ospf_ls_retransmit_isempty): New function added.
3468
3469 (ospf_ls_retransmit_add), (ospf_ls_retransmit_delete),
3470 (ospf_ls_retransmit_clear), (ospf_ls_retransmit_lookup),
3471 (ospf_ls_retransmit_delete_all), (ospf_ls_retransmit_delete_nbr_all),
3472 (ospf_ls_retransmit_add_nbr_all): Replace these functions to use
3473 new_lsdb.
3474
34752000-04-29 Toshiaki Takada <takada@zebra.org>
3476
3477 * ospfd.c (no_network_area): Add check Area-ID whether specified
3478 Area-ID with prefix matches config.
3479
34802000-04-27 Toshiaki Takada <takada@zebra.org>
3481
3482 * ospf_lsa.c (ospf_maxage_lsa_remover): Fix problem of
3483 remaining withdrawn routes on zebra.
3484
34852000-04-25 Michael Rozhavsky <mike@nbase.co.il>
3486
3487 * ospf_nsm.c (nsm_kill_nbr), (nsm_ll_down), (nsm_change_status),
3488 (ospf_nsm_event): Fix network-LSA re-origination problem.
3489
34902000-04-24 Toshiaki Takada <takada@zebra.org>
3491
3492 * ospf_nsm.c (ospf_db_desc_timer): Fix bug of segmentation fault
3493 with DD retransmission.
3494
3495 * ospf_nsm.c (nsm_kill_nbr): Fix bug of re-origination when
3496 a neighbor disappears.
3497
34982000-04-23 Michael Rozhavsky <mike@nbase.co.il>
3499
3500 * ospf_abr.c (ospf_abr_announce_network_to_area): Fix bug of
3501 summary-LSAs reorigination. Correctly copy OSPF_LSA_APPROVED
3502 flag to new LSA. when summary-LSA is reoriginatd.
3503
3504 * ospf_flood.c (ospf_flood_through_area): Fix bug of flooding
3505 procedure. Change the condition of interface selection.
3506
35072000-04-21 Toshiaki Takada <takada@zebra.org>
3508
3509 * ospf_lsa.c (ospf_refresher_register_lsa): Fix bug of refresh never
3510 occurs.
3511
3512 * ospfd.c (show_ip_ospf_neighbor_id): New defun added.
3513 `show ip ospf neighbor' related commands are re-arranged.
3514
35152000-04-20 Toshiaki Takada <takada@zebra.org>
3516
3517 * ospf_dump.c (debug_ospf_zebra): New defun added.
3518 Suppress zebra related debug information.
3519
35202000-04-19 Toshiaki Takada <takada@zebra.org>
3521
3522 * ospf_zebra.c (ospf_distribute_list_update_timer),
3523 (ospf_distribute_list_update), (ospf_filter_update):
3524 New function added. Re-organize `distribute-list' router ospf
3525 command.
3526
35272000-04-13 Michael Rozhavsky <mike@nbase.co.il>
3528
3529 * ospf_packet.c (ospf_make_ls_upd): Add check for MAX_AGE.
3530
35312000-04-14 Michael Rozhavsky <mike@nbase.co.il>
3532
3533 * ospf_packet.c (ospf_make_ls_upd): Increment LS age by configured
3534 interface transmit_delay.
3535
35362000-04-14 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3537
3538 * ospf_interface.c (ip_ospf_cost), (no_ip_ospf_cost):
3539 Add to schedule router_lsa origination when the interface cost changes.
3540
35412000-04-12 Toshiaki Takada <takada@zebra.org>
3542
3543 * ospf_lsa.c (ospf_refresher_register_lsa),
3544 (ospf_refresher_unregister_lsa): Fix bug of core dumped.
3545
3546 * ospfd.c (no_router_ospf): Fix bug of core dumped.
3547
35482000-03-29 Toshiaki Takada <takada@zebra.org>
3549
3550 * ospf_nsm.c (nsm_oneway_received): Fix bug of MS flag unset.
3551
35522000-03-29 Michael Rozhavsky <mike@nbase.co.il>
3553
3554 * ospf_lsa.c (ospf_network_lsa):
3555 * ospf_nsm.c (ospf_nsm_event): Fix bug of Network-LSA originated
3556 in stub network.
3557
35582000-03-28 Toshiaki Takada <takada@zebra.org>
3559
3560 * ospf_nsm.c (nsm_bad_ls_req), (nsm_seq_number_mismatch),
3561 (nsm_oneway_received): Fix bug of NSM state flapping between
3562 ExStart and Exchange.
3563
35642000-03-28 Toshiaki Takada <takada@zebra.org>
3565
3566 * ospf_packet.h (strcut ospf_header): Fix the size of ospf_header,
3567 change u_int8_t to u_char.
3568
35692000-03-27 Toshiaki Takada <takada@zebra.org>
3570
3571 * ospf_lsa.c (ospf_lsa_checksum): Take care of BIGENDIAN architecture.
3572
35732000-03-27 Toshiaki Takada <takada@zebra.org>
3574
3575 * ospfd.c (ospf_interface_run): Make sure Address family matches.
3576
35772000-03-26 Love <lha@s3.kth.se>
3578
3579 * ospf_packet.c (ospf_write): Chack result of sendto().
3580
35812000-03-26 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3582
3583 * ospf_nsm.c (nsm_oneway_received): Fix bug of 1-WayReceived in NSM.
3584
35852000-03-23 Libor Pechacek <farco@clnet.cz>
3586
3587 * ospf_lsa.c (ospf_network_lsa)
3588 * ospf_lsdb.c (new_lsdb_insert): Fix bug of accessing to
3589 unallocated memory.
3590
35912000-03-23 Toshiaki Takada <takada@zebra.org>
3592
3593 * ospfd.c (ospf_config_write): Fix bug of duplicate line for
3594 `area A.B.C.D authentication'.
3595
35962000-03-22 Toshiaki Takada <takada@zebra.org>
3597
3598 * ospf_debug.c (debug_ospf_lsa), (no_debug_ospf_lsa): Defun added.
3599 Suppress all zlog related to LSAs with this config option.
3600
36012000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org>
3602
3603 * ospf_nsm.c (ospf_nsm_event): Add check for NSM_InactivityTimer.
3604
36052000-03-21 Toshiaki Takada <takada@zebra.org>
3606
3607 * ospf_packet.c (ospf_ls_upd_timer), (ospf_ls_req):
3608 Fix bug of memory leak about linklist.
3609
3610 * ospf_flood.c (ospf_flood_through_area): Likewise.
3611
36122000-03-18 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3613
3614 * ospf_flood.c (ospf_ls_retransmit_lookup): Add checksum comparison
3615 to identify LSA uniquely. This fix routes lost.
3616
36172000-03-18 Toshiaki Takada <takada@zebra.org>
3618
3619 * ospf_ase.c (ospf_find_asbr_route): Add sanity check with router
3620 routing table.
3621
36222000-03-17 Alex Zinin <zinin@amt.ru>
3623
3624 * ospf_spf.[ch]: Bug fix.
3625 The 2nd stage of Dijkstra could consider one vertex
3626 more than once if there is more than one link
3627 between the routers, thus adding extra CPU overhead
3628 and extra next-hops.
3629 Fixed.
3630
36312000-03-15 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3632
3633 * ospf_nsm.c (nsm_inactivity_timer): Changed to call nsm_kill_nbr().
3634
36352000-03-14 Toshiaki Takada <takada@zebra.org>
3636
3637 * ospf_route.c (ospf_route_copy_nexthops): Fix bug of memory leak of
3638 ospf_path. Actually ignore merging ospf_route with completely same
3639 paths.
3640
36412000-03-12 Toshiaki Takada <takada@zebra.org>
3642
3643 * ospf_lsa.c (show_as_external_lsa_detail): fix bug of
3644 external route tag byte order.
3645
36462000-03-11 Toshiaki Takada <takada@zebra.org>
3647
3648 * ospf_lsdb.c (ospf_lsdb_insert): New function added.
3649
36502000-03-09 Toshiaki Takada <takada@zebra.org>
3651
3652 * ospf_lsa.c (ospf_external_lsa_install),
3653 (ospf_lsa_lookup), (show_ip_ospf_database_all),
3654 (show_ip_ospf_database_self_originate): Use struct new_lsdb for
3655 LSDB of AS-external-LSAs instead of ospf_lsdb.
3656
3657 * ospf_lsa.c (ospf_lsa_unique_id): New function added.
3658 Use for assigning Unique Link State ID instead of
3659 ospf_get_free_id_for_prefix().
3660
36612000-03-09 Toshiaki Takada <takada@zebra.org>
3662
3663 * ospf_ase.c (ospf_ase_calculate_timer): Fix bug of segmentation
3664 fault reported by George Bonser <george@siteROCK.com>.
3665
36662000-03-07 Libor Pechacek <farco@clnet.cz>
3667
3668 * ospfd.c (ospf_interface_down): Fix bug of segmentation fault.
3669
36702000-03-06 Toshiaki Takada <takada@zebra.org>
3671
3672 * ospf_route.c (ospf_route_cmp): Change meaning of return values.
3673
36742000-03-02 Alex Zinin <zinin@amt.ru>
3675 * ospfd.h, ospf_ia.h
3676 New Shortcut ABR code. Now area's flag can be configured
3677 with Default, Enable, and Disable values.
3678 More info will be in the new ver of I-D soon (see IETF web).
3679
36802000-02-25 Toshiaki Takada <takada@zebra.org>
3681
3682 * ospf_lsa.c (ospf_lsa_header_set), (ospf_external_lsa_body_set),
3683 (osfp_external_lsa_originate), (ospf_external_lsa_queue),
3684 (ospf_external_lsa_originate_from_queue): New function added.
3685 (ospf_external_lsa): Function removed.
3686
3687 * ospf_zebra.c (ospf_zebra_read_ipv4): Originate AS-external-LSA
3688 when listen a route from Zebra, instead creating external route.
3689
3690 * ospf_asbr.c (ospf_asbr_route_add_flood_lsa),
3691 (ospf_asbr_route_add_queue_lsa),
3692 (ospf_asbr_route_install_lsa), (ospf_asbr_route_add):
3693 Functions removed.
3694
3695 * ospf_ase.c (process_ase_lsa): Function will not be used.
3696 (ospf_ase_calculate), (ospf_ase_calculate_route_add),
3697 (ospf_ase_calculate_new_route), (ospf_ase_caluculate_asbr_route):
3698 process_ase_lsa () is separated to these functions.
3699
3700 OSPF AS-external-LSA origination is whole re-organized.
3701
37022000-02-18 Toshiaki Takada <takada@zebra.org>
3703
3704 * ospf_packet.c (ospf_ls_upd): Fix bug of OSPF LSA memory leak.
3705
3706 * ospf_asbr.c (ospf_asbr_route_add_flood_lsa),
3707 (ospf_asbr_route_add_queue_lsa): Fix bug of OSPF external route
3708 memory leak.
3709
37102000-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
3711
3712 * ospf_asbr.c (ospf_asbr_route_install_lsa): Re-calculate LSA
3713 checksum after change Advertised Router field.
3714
37152000-02-09 Toshiaki Takada <takada@zebra.org>
3716
3717 * ospf_asbr.c (ospf_external_route_lookup): Add new function.
3718
37192000-02-08 Toshiaki Takada <takada@zebra.org>
3720
3721 * ospfd.c (ospf_router_id_get), (ospf_router_id_update),
3722 (ospf_router_id_update_timer): Router ID decision algorithm is changed.
3723 Router ID is chosen from all of eligible interface addresses even if
3724 it is not enable to OSPF.
3725
37262000-02-08 Toshiaki Takada <takada@zebra.org>
3727
3728 * ospf_asbr.c (ospf_asbr_route_add): Function divided to
3729 ospf_asbr_route_add_flood_lsa, ospf_asbr_route_add_queue_lsa and
3730 ospf_asbr_route_install_lsa. If Router-ID is not set, then LSA is
3731 waited to install to LSDB.
3732 `0.0.0.0 adv_router' AS-external-LSA origination bug was fixed.
3733
37342000-02-01 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3735
3736 * ospf_flood.c (ospf_ls_retransmit_lookup): Compare LS seqnum
3737 in the ACK before deleting.
3738
3739 * ospf_packet.c (ospf_hello): Reset the flags after a shutdown
3740 and no shutdown of the interface.
3741
37422000-01-31 Toshiaki Takada <takada@zebra.org>
3743
3744 * ospf_packet.c (ospf_ls_req): Send multiple Link State Update
3745 packets respond to a Link State Request packet.
3746
3747 * ospfd.c (show_ip_ospf_neighbor_detail_sub): Show thread state.
3748
3749 * ospf_interface.c (ospf_vl_new): Crash when backbone area
3750 is not configured and set virtual-link to no-backbone area,
3751 bug fixed.
3752
37532000-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3754
3755 * ospf_neighbor.h (struct ospf_neighbor): Add pointer to last send
3756 LS Request LSA.
3757
3758 * ospf_packet.c (ospf_ls_upd): Comment out LS request list
3759 treatment. That should be done in OSPF flooding procedure.
3760
3761 * ospf_flood.c (ospf_flood_through_area): Enclose
3762 ospf_check_nbr_loding inside if-else close.
3763
37642000-01-31 Toshiaki Takada <takada@zebra.org>
3765
3766 * ospf_packet.c (ospf_make_ls_upd): Fix bug of #LSAs counting.
3767
37682000-01-29 Toshiaki Takada <takada@zebra.org>
3769
3770 * ospf_packet.c (ospf_make_md5_digest): Fix bug of md5 authentication.
3771
37722000-01-28 Toshiaki Takada <takada@zebra.org>
3773
3774 * ospfd.c (show_ip_ospf): Show Number of ASE-LSAs.
3775
37762000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3777
3778 * ospf_packet.c (ospf_make_db_desc): Don't use rm_list for
3779 removing LSA from nbr->db_summary.
3780
37812000-01-27 Sira Panduranga Rao <pandu@euler.ece.iisc.ernet.in>
3782
3783 * ospf_packet.c (ospf_ls_upd_send): Set AllSPFRouters to
3784 destination when the link is point-to-point.
3785 (ospf_ls_ack_send_delayed): Likewise.
3786
37872000-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3788
3789 * ospf_flood.c (ospf_ls_request_delete_all): Fix bug of next
3790 pointer lookup after the node is freed.
3791
37922000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
3793
3794 * ospf_asbr.c (ospf_asbr_route_add): Instead of scanning all AS
3795 external route, use ospf_top->external_self.
3796
37972000-01-27 Toshiaki Takada <takada@zebra.org>
3798
3799 * ospf_lsa.c (ospf_forward_address_get): New function added.
3800
3801 * ospf_asbr.c (ospf_asbr_check_lsas): Originate AS-external-LSA
3802 only when it should be replaced.
3803
38042000-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3805
3806 * ospf_flood.c (ospf_ls_retransmit_clear): Delete list node.
3807
3808 * ospf_lsa.c (ospf_lsa_free): Reduce logging message using
3809 ospf_zlog value.
3810
3811 * ospf_ism.c (ism_change_status): Fix bug of DR -> non DR status
3812 change. Self originated LSA is freed but not deleted from lsdb.
3813
38142000-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3815
3816 * ospf_ism.c (ism_interface_down): Don't use router_id for
3817 detecting self neighbor structure. Instead of that compare
3818 pointer itself.
3819
3820 * ospf_neighbor.c (ospf_nbr_free): Cancel all timer when neighbor
3821 is deleted.
3822 (ospf_nbr_free): Free last send packet.
3823
3824 * ospf_neighbor.h (struct ospf_neighbor): Remove host strucutre.
3825 Instead of that src is introduced.
3826
3827 * ospf_nsm.h: Enclose macro defenition with do {} while (0).
3828
38292000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
3830
3831 * ospfd.c: Change part of passive interface implementation. For
3832 passive interface just disabling sending/receiving Hello on the
3833 interface.
3834
38352000-01-16 Kai Bankett <kai.bankett@vew-telnet.net>
3836
3837 * ospf_interface.h (OSPF_IF_PASSIVE): Add passive flag.
3838 * ospf_interface.c (ospf_if_lookup_by_name): Add new function.
3839 * ospf_lsa.c (ospf_router_lsa): Skip passive interface.
3840 * ospfd.c (passive_interface): New command passive-interface is
3841 added.
3842 (ospf_config_write): Print passive interface.
3843
38442000-01-15 Toshiaki Takada <takada@zebra.org>
3845
3846 * ospf_interface.h (crypt_key): New struct added to store
3847 multiple cryptographic autheitication keys.
3848 (ospf_interface): struct changed.
3849
3850 * ospf_interface.c: ospf_crypt_key_new, ospf_crypt_key_add,
3851 ospf_crypt_key_lookup, ospf_crypt_key_delete: new functions added.
3852
3853 * ospf_packet.c (ip_ospf_message_digest_key): Changed to store
3854 multiple cryptographic authentication keys.
3855
38562000-01-14 Toshiaki Takada <takada@zebra.org>
3857
3858 * ospf_interface.c: DEFUN (if_ospf_*) commands changed name to
3859 ip_ospf_* ().
3860 Old notation `ospf *' still remains backward compatibility.
3861
38621999-12-29 Alex Zinin <zinin@amt.ru>
3863 * ospf_lsa.c: ospf_lsa_more_recent() bug fix
3864 * ospf_nsm.c, ospf_packet.c: remove nbr data struct when
3865 int goes down, also check DD flags correctly (bug fix)
3866
38671999-12-28 Alex Zinin <zinin@amt.ru>
3868 * "redistribute <source> metric-type (1|2) metric <XXX>" added
3869
38701999-12-23 Alex Zinin <zinin@amt.ru>
3871 * added RFC1583Compatibility flag
3872 * added dynamic interface up/down functionality
3873
38741999-11-19 Toshiaki Takada <takada@zebra.org>
3875
3876 * ospf_neighbor.h (struct ospf_neighbor): Add member state_change
3877 for NSM state change statistics.
3878
38791999-11-19 Toshiaki Takada <takada@zebra.org>
3880
3881 * ospfd.c (show_ip_ospf_neighbor_detail),
3882 (show_ip_ospf_neighbor_int_detail): DEFUN Added.
3883
38841999-11-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3885
3886 * ospf_asbr.c (ospf_asbr_check_lsas): Add check of
3887 lsa->refresh_list.
3888
38891999-11-11 Toshiaki Takada <takada@zebra.org>
3890
3891 * ospf_ia.[ch] (OSPF_EXAMINE_SUMMARIES_ALL): Macro added.
3892 This macro is expanded to ospf_examine_summaries ()
3893 for SUMMARY_LSA and SUMMARY_LSA_ASBR.
3894 (OSPF_EXAMINE_TRANSIT_SUMMARIES_ALL): Macro added.
3895 This macro is expanded to ospf_examine_transit_summaries ()
3896 for SUMMARY_LSA and SUMMARY_LSA_ASBR.
3897
38981999-11-11 Toshiaki Takada <takada@zebra.org>
3899
3900 * ospf_lsa.[ch] (ospf_find_self_summary_lsa_by_prefix): Changed to
3901 macro OSPF_SUMMARY_LSA_SELF_FIND_BY_PREFIX.
3902 (ospf_find_self_summary_asbr_lsa_by_prefix): Changed to
3903 macro OSPF_SUMMARY_ASBR_LSA_SELF_FIND_BY_PREFIX.
3904 (ospf_find_self_external_lsa_by_prefix): Changed to
3905 macro OSPF_EXTERNAL_LSA_SELF_FIND_BY_PREFIX.
3906
39071999-11-11 Toshiaki Takada <takada@zebra.org>
3908
3909 * ospfd.c (ospf_abr_type): ospf_abr_type_cisco, ospf_abr_type_ibm,
3910 ospf_abr_type_shortcut and ospf_abr_type_standard DEFUNs are
3911 combined.
3912 * ospfd.c (no_ospf_abr_type): no_ospf_abr_type_cisco,
3913 no_ospf_abr_type_ibm and no_ospf_abr_type_shortcut DEFUNS are
3914 combined.
3915
39161999-11-10 Toshiaki Takada <takada@zebra.org>
3917
3918 * ospf_route.c (ospf_lookup_int_by_prefix): Move function to
3919 ospf_interface.c and change name to ospf_if_lookup_by_prefix ().
3920
39211999-11-01 Alex Zinin <zinin@amt.ru>
3922 * ospf_packet.c
3923 some correction to LSU processing
3924
3925 * ospf_lsa.c ospfd.h
3926 randomize initial LSA refreshment interval
3927 and limit the size of LSA-group to 10
3928 to let randomization work more effectively.
3929
39301999-10-31 Alex Zinin <zinin@amt.ru>
3931 * ospf_interface.c
3932 cancel t_network_lsa_self
3933 when freeing int structure
3934
3935 * ospf_abr.c ospf_asbr.c ospf_flood.c ospf_lsa.c
3936 ospf_lsa.h ospf_lsdb.h ospfd.c ospfd.h
3937
3938 Summary and ASE LSA refreshment functions
3939 added---LSA refreshment is paced to 70 LSAs
3940 per sec to avoid link overflow. Refreshment events
3941 are further randomized within a 10 sec interval
3942 to avoid syncing.
3943
3944 Also the sigfault of memcmp() in ospf_lsa_is_different()
3945 is fixed.
3946
39471999-10-30 Alex Zinin <zinin@amt.ru>
3948 * ospf_nsm.c
3949 Fix the bug where MAX_AGE LSAs
3950 are included into the DB summary.
3951
3952 * ospf_interface.c
3953 allocate 2*MTU input buffer instead of just MTU
3954 for the cases when the other router mistakenly
3955 sends larger packets thus causing fragmentation, etc.
3956
3957 * ospf_nsm.c
3958 in nsm_reset_nbr() lists should be freed
3959 not when they are empty.
3960
39611999-10-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3962
3963 * ospf_zebra.c (ospf_acl_hook): Move OSPF_IS_ASBR and OSPF_IS_ABR
3964 check inside of if (ospf_top).
3965
39661999-10-29 Alex Zinin <zinin@amt.ru>
3967 * ospf_lsa.c ospf_lsdb.c :
3968 add assertion in lsa and lsa->data alloc functions,
3969 as well as in lsdb_add for new->data
3970
3971 * ospf_lsdb.c: free hash table correctly
3972
39731999-10-28 John Capo <jc@irbs.com>
3974
3975 * ospf_packet.h (OSPF_PACKET_MAX): Correct MAX packet length
3976 calculation
3977
39781999-10-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3979
3980 * OSPF-TRAP-MIB.txt: New file added. Edited version of RFC1850.
3981
3982 * OSPF-MIB.txt: New file added. Edited version of RFC1850.
3983
39841999-10-27 Alex Zinin <zinin@amt.ru>
3985 * ospfd, ospf_zebra, ospf_abr
3986 "area import-list" command is added.
3987 This command allows to filter the inter-area routes
3988 injected into an area. Access list hook function
3989 extended to invalidate area exp/imp lists.
3990
39911999-10-25 Yoshinobu Inoue <shin@nd.net.fujitsu.co.jp>
3992
3993 * ospfd.c (ospf_interface_run): Enable to detect P2P network
3994 on an OSPF interface.
3995
39961999-10-19 Jordan Mendelson <jordy@wserv.com>
3997
3998 * ospf_lsdb.c (ospf_lsdb_add): Fix bug of crash
3999 in ospf_ls_retransmit_lookup ().
4000
40011999-10-19 Vladimir B. Grebenschikov <vova@express.ru>
4002
4003 * ospf_route.c: Workaround about installation of OSPF routes into
4004 the zebra daemon. Add checking of existance routes. Free
4005 ospf_top->old_table if it exists.
4006
40071999-10-15 Jordan Mendelson <jordy@wserv.com>
4008
4009 * Add support for MD5 authentication.
4010
40111999-10-12 Alex Zinin <zinin@amt.ru>
4012 * ospfd.c, ospfd.h, ospf_abr.c:
4013 a new command "area export-list" was added, it allows
4014 the admin. to control which intra-area routes are
4015 announced to other areas by the ABR
4016
40171999-10-12 Alex Zinin <zinin@amt.ru>
4018 * ospf_asbr.c (ospf_asbr_check_lsas): Fix bug of coredump
4019 when "no redistribute" is used after a distribute list
4020 denying some networks was used
4021
40221999-10-05 Toshiaki Takada <takada@zebra.org>
4023
4024 * ospf_route.c (ospf_path_dup): New function added.
4025
40261999-10-05 Toshiaki Takada <takada@zebra.org>
4027
4028 * ospf_interface.[ch]: Some of VL related funciton name changed.
4029
40301999-09-27 Alex Zinin <zinin@amt.ru>
4031
4032 * ospf_zebra.c: Distribute-list functionality added
4033
40341999-09-27 Toshiaki Takada <takada@zebra.org>
4035
4036 * ospfd.c (show_ip_ospf): Fix bug of segmentation fault when no ospf
4037 instance exists.
4038
40391999-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
4040
4041 * ospfd.c (ospf_interface_down): Fix bug of misusing nextnode()
4042 instead of node->next. Reported by Hiroki Ishibashi
4043 <ishibasi@dcd.abk.nec.co.jp>.
4044
4045 * ospf_route.c (show_ip_ospf_route): Add check for ospf is enabled
4046 or not.
4047
40481999-09-23 Alex Zinin <zinin@amt.ru>
4049
4050 * stub area support added
4051
40521999-09-23 Alex Zinin <zinin@amt.ru>
4053
4054 * fwd_addr in ASE-LSAs is now set correctly
4055 * ASE routing changed to check the fwd_addr
4056 and skip the route if the addr points to one
4057 of our interfaces to avoid loops.
4058
40591999-09-22 Alex Zinin <zinin@amt.ru>
4060
4061 * ospf_interface:
4062 ospf_vls_in_area() added, it returns
4063 the number of VLs configured through the area
4064
4065 * ospf_interface.c ospf_lsa.c ospf_lsdb.c ospfd.c
4066 honor correct mem alloc
4067
40681999-09-22 Alex Zinin <zinin@amt.ru>
4069
4070 * memory.[ch]:
4071 Some OSPF mem types added,
4072 plus more info in "show mem"
4073
40741999-09-21 Alex Zinin <zinin@amt.ru>
4075
4076 * ospfd.c:
4077 "area range substitute" added.
4078 It can be used on NAT-enabled (IP-masquarade)
4079 routers to announce private networks
4080 from an area as public ones into the outside
4081 world (not in the RFC, btw :)
4082
40831999-09-21 Alex Zinin <zinin@amt.ru>
4084
4085 * ospfd.c:
4086 "area range suppress" added.
4087 This command allows to instruct the router
4088 to be silent about specific ranges, i.e.,
4089 it is a method of route filtering on area
4090 borders
4091
40921999-09-21 Alex Zinin <zinin@amt.ru>
4093
4094 * ospfd.c VLs removed when "no network area" executed
4095
40961999-09-20 Alex Zinin <zinin@amt.ru>
4097
4098 * ospf_ase.c bug fix for not-zero fwd_addr
4099 and directly connected routes.
4100
41011999-09-20 Yon Uriarte <yon@plannet.de>
4102
4103 * ospf_packet.c (ospf_make_ls_req): Introduce delta value for
4104 checking the length of OSPF packet exceeds MTU or not.
4105
4106 * ospf_lsa.c (ospf_lsa_different): Apply ntohs for checking
4107 l1->data->length.
4108
41091999-09-18 Alex Zinin <zinin@amt.ru>
4110
4111 * ospf_lsa.c bug fix for ospf_network_lsa() to
4112 include itself into the RID list
4113
41141999-09-10 Alex Zinin <zinin@amt.ru>
4115
4116 * Alternative ABR behaviors IBM/Cisco/Shortcut
4117 implemented
4118
41191999-09-10 Alex Zinin <zinin@amt.ru>
4120
4121 * router and network-LSA origination
4122 changed to honor MinLSInterval
4123
41241999-09-08 Alex Zinin <zinin@amt.ru>
4125
4126 * modified ABR behavior to honor VLs and transit
4127 areas
4128
41291999-09-07 Alex Zinin <zinin@amt.ru>
4130
4131 * completed VL functionality
4132
41331999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org>
4134
4135 * ospf_asbr.c: New file.
4136 ospf_asbr.h: New file.
4137
4138 * ospf_zebra.c (ospf_redistribute_connected): Add redistribute
4139 related stuff.
4140
41411999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org>
4142
4143 * ospfd.h (OSPF_FLAG_VIRTUAL_LINK): Change OSPF_FLAG_VEND to
4144 OSPF_FLAG_VIRTUAL_LINK for comprehensiveness.
4145
41461999-09-03 Kunihiro Ishiguro <kunihiro@zebra.org>
4147
4148 * ospf_spf.c (ospf_spf_register): Change name from
4149 ospf_spf_route_add() to ospf_spf_register().
4150 Include "ospfd/ospf_abr.h" for ospf_abr_task() prototype.
4151
41521999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
4153
4154 * ospf_lsa.c (ospf_external_lsa_install): Change to update
4155 lsa->data rather than install new one, when same id lsa is already
4156 installed.
4157
41581999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
4159
4160 * ospf_lsa.c (ospf_router_lsa_install): Return lsa value.
4161 (ospf_network_lsa_install): Likewise.
4162 (ospf_summary_lsa_install): Likewise.
4163 (ospf_summary_asbr_lsa_install): Likewise.
4164 (ospf_external_lsa_install): Likewise.
4165
4166 * ospf_spf.c (ospf_spf_calculate): Comment out debug function
4167 ospf_rtrs_print().
4168
41691999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
4170
4171 * ospf_spf.c (ospf_rtrs_free): Add ospf_spf_calculate() for
4172 freeing rtrs.
4173
41741999-08-31 Toshiaki Takada <takada@zebra.org>
4175
4176 * ospf_lsa.c (show_ip_ospf_database_summary),
4177 (show_ip_ospf_database_summary_asbr),
4178 (show_ip_ospf_database_external): New function added.
4179 `show ip ospf database summary',
4180 `show ip ospf database asbr-summary'
4181 `show ip ospf database external' command can be used.
4182
4183 * ospf_lsa.c (ospf_lsa_count_table): New function added.
4184 (show_ip_ospf_database_all): show nothing if a type of LSA
4185 does not exist.
4186
41871999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
4188
4189 * ospf_lsa.c (ospf_maxage_lsa_remover): Preserve next pointer when
4190 the node is deleted.
4191
41921999-08-31 Toshiaki Takada <takada@zebra.org>
4193
4194 * ospf_flood.c (ospf_ls_retransmit_lookup): change to return
4195 struct ospf_lsa *.
4196 (ospf_ls_request_new), (ospf_ls_request_free),
4197 (ospf_ls_request_add), (ospf_ls_request_delete),
4198 (ospf_ls_request_delete_all), (ospf_ls_request_lookup):
4199 New function added.
4200
4201 * ospf_packet.c (ospf_ls_upd_send_lsa): New function added.
4202
4203 * ospf_lsa.h (LS_AGE): Slightly change macro definition.
4204
4205 * ospf_lsa.c (ospf_lsa_more_recent), (ospf_lsa_diffrent):
4206 Use LS_AGE macro.
4207
42081999-08-30 Alex Zinin <zinin@amt.ru>
4209
4210 * ospfd.c
4211 fix a bug with area range config write
4212 added "show ip ospf" command, it will be enhanced later on
4213
42141999-08-30 Alex Zinin <zinin@amt.ru>
4215
4216 * ospf_lsa.c
4217 updated ospf_router_lsa() to honor flags (B-bit)
4218
42191999-08-30 Alex Zinin <zinin@amt.ru>
4220
4221 * ospf_abr.c
4222 wrote major functions implementing ABR activity
4223
42241999-08-30 Alex Zinin <zinin@amt.ru>
4225
4226 * ospf_ia.c ospf_route.c ospf_route.h
4227 fixed the bug with ospf_route.origin field.
4228 Now it holds pointer to lsa_header
4229
42301999-08-30 Alex Zinin <zinin@amt.ru>
4231
4232 * ospf_flood.c ospf_flood.h:
4233 transformed ospf_flood_if_select into ospf_flood_through_area()
4234 added new ospf_flood_if_select() and ospf_flood_through_as()
4235
42361999-08-30 Toshiaki Takada <takada@zebra.org>
4237
4238 * ospf_flood.[ch]: New file added.
4239
4240 * ospf_packet.c (ospf_lsa_flooding),
4241 (ospf_lsa_flooding_select_if): functions move to ospf_flood.c
4242
4243 * ospf_neighbor.c (ospf_put_lsa_on_retransm_list),
4244 (ospf_remove_lsa_from_retransm_list),
4245 (ospf_nbr_remove_all_lsas_from_retransm_list),
4246 (ospf_lsa_remove_from_ls_retransmit):
4247 (ospf_lsa_retransmit): functions move to
4248 ospf_flood.c, and change function's name:
4249
4250 ospf_put_lsa_on_retransm_list ()
4251 -> ospf_ls_retransmit_add ()
4252 ospf_remove_lsa_from_retransm_list ()
4253 -> ospf_ls_retransmit_delete ()
4254 ospf_nbr_remove_all_lsas_from_retransm_list ()
4255 -> ospf_ls_retransmit_clear ()
4256 ospf_lsa_remove_from_ls_retransmit ()
4257 -> ospf_ls_retransmit_delete_nbr_all ()
4258 ospf_lsa_retransmit ()
4259 -> ospf_ls_retransmit_add_nbr_all ()
4260
4261 * ospf_lsa.c (ospf_lsa_lookup_from_list): function move to
4262 ospf_flood.c, and change name to ospf_ls_retransmit_lookup ().
4263
42641999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org>
4265
4266 * ospf_neighbor.c (ospf_nbr_lookup_by_addr): Use
4267 route_node_lookup() instead of route_node_get().
4268
4269 * ospf_packet.c (ospf_ls_upd): Temporary comment out (6) check.
4270
42711999-08-30 Kunihiro Ishiguro <kunihiro@zebra.org>
4272
4273 * ospf_route.c (ospf_lookup_int_by_prefix): Add check of
4274 oi->address.
4275
42761999-08-29 Alex Zinin <zinin@amt.ru>
4277 * ospf_lsa.c
4278 MaxAge LSA deletion functions added.
4279
42801999-08-29 Alex Zinin <zinin@amt.ru>
4281 * ospf_neighbor.c
4282 ospf_nbr_lookup_by_addr(): added route_unlock_node()
4283 when function returns NULL if (rn->info == NULL)
4284
42851999-08-29 Alex Zinin <zinin@amt.ru>
4286 * ospfd.c
4287 added a hack for area range deletion
4288
42891999-08-29 Alex Zinin <zinin@amt.ru>
4290 * ospf_lsa.h
4291 included lsdb field into struct ospf_lsa, to find
4292 LSDB easier when removing MaxAge LSAs.
4293
42941999-08-29 Alex Zinin <zinin@amt.ru>
4295 * ospf_lsa.c ospf_neighbor.c ospf_nsm.c
4296 ospf_packet.c changed to honor new retransmit list
4297 management functions
4298
42991999-08-29 Alex Zinin <zinin@amt.ru>
4300 * ospf_neighbor.c , .h added new retransmit list functions.
4301
43021999-08-29 Alex Zinin <zinin@amt.ru>
4303 * Makefile.in
4304 added ospf_ase, ospf_abr, ospf_ia
4305
43061999-08-29 Alex Zinin <zinin@amt.ru>
4307 * ospf_spf.c:
4308 - changed ospf_next_hop_calculation() to include interface
4309 and nexthop addr for directly connected routers---more informative
4310 and solves problem with route installation into the kernel
4311 - changed ospf_nexthop_out_if_addr() to support routers, not only
4312 transit networks
4313 - added ospf_process_stubs();
4314
43151999-08-29 Alex Zinin <zinin@amt.ru>
4316 * ospf_lsa.c:
4317 - changed ospf_router_lsa() to provide correct links
4318 for p-t-p interfaces;
4319 - changed ospf_summary_lsa_install() to support table
4320 of self-originated summary-LSAs;
4321 - added ospf_summary_asbr_lsa_install() and ospf_external_lsa_install()
4322 - changed ospf_lsa_install() accordingly
4323 - changed show_ip_ospf_database_router_links() to support p-t-p
4324
43251999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org>
4326
4327 * ospf_packet.c (ospf_make_db_desc): Only master can clear more
4328 flag.
4329
43301999-08-29 Kunihiro Ishiguro <kunihiro@zebra.org>
4331
4332 * ospf_packet.c (ospf_read): Add check of IP src address.
4333
43341999-08-28 Alex Zinin <zinin@amt.ru>
4335 * ospf_neighbor.h
4336 added ospf_nbr_lookup_by_routerid()
4337
43381999-08-28 Alex Zinin <zinin@amt.ru>
4339 * ospfd.h
4340 added ABR/ASBR flag definitions and fields;
4341 added iflist field to area structure;
4342 summary_lsa_self and summary_lsa_asbr_self are changed
4343 to be route tables;
4344 added ranges field---configured area ranges;
4345 A separate Routers RT added;
4346 area range config commands and config write added
4347
4348
43491999-08-28 Alex Zinin <zinin@amt.ru>
4350 * ospf_route.c :
4351 ospf_route_free()--added code to free the list of paths;
4352 The following functions added:
4353 ospf_intra_add_router();
4354 ospf_intra_add_transit();
4355 ospf_intra_add_stub();
4356 the last function uses new ospf_int_lookup_by_prefix();
4357 show_ip_ospf_route_cmd()--changed to support new RT structure;
4358 added ospf_cmp_routes()--general route comparision function;
4359 added ospf_route_copy_nexthops() and ospf_route_copy_nexthops_from_vertex()
4360 they are used in ASE and IA routing;
4361 added ospf_subst_route() and ospf_add_route();
4362
43631999-08-28 Alex Zinin <zinin@amt.ru>
4364 * ospf_route.h :
4365 changed struct ospf_path to include output interface,
4366 changed struct ospf_route to support IA and ASE routing.
4367 added prototypes of the function used in IA and ASE modules.
4368
43691999-08-28 Alex Zinin <zinin@amt.ru>
4370 * ospf_lsa.h ospf_lsa.c :
4371 added ospf_my_lsa(), an interface independent version of
4372 ospf_lsa_is_self_originated(), it will be used in ASE and IA-routing.
4373
43741999-08-27 Kunihiro Ishiguro <kunihiro@zebra.org>
4375
4376 * ospf_interface.c (interface_config_write): Add check for
4377 oi->nbr_self.
4378
43791999-08-25 Toshiaki Takada <takada@zebra.org>
4380
4381 * ospf_lsa.c (ospf_lsa_dup): New function added.
4382
4383 * ospf_packet.c (ospf_write), (ospf_read): Print send/recv
4384 interface in debug message.
4385
43861999-08-25 Toshiaki Takada <takada@zebra.org>
4387
4388 * ospf_packet.c (ospf_ls_ack_send): The name is changed from
4389 `ospf_ls_ack_send'.
4390 (ospf_ls_ack_send_delayed) (ospf_ls_ack_timer): New function added.
4391 Delayed Link State Acknowledgment is scheduled by timer.
4392
43931999-08-25 Alex Zinin <zinin@amt.ru>
4394
4395 * ospf_lsa.c (ospf_router_lsa): Incorrectly included link to
4396 a stub network instead of link to a transit network into
4397 originated router-LSA, bug fixed.
4398
43991999-08-24 Toshiaki Takada <takada@zebra.org>
4400
4401 * ospfd.c (ospf_update_router_id): New function added.
4402
4403 * ospf_network.c (ospf_write): Create new socket per transmission.
4404 And select outgoing interface whether dst is unicast or multicast.
4405
4406 * ospf_packet.c: LSA flooding will work.
4407
44081999-08-24 VOP <vop@unity.net>
4409
4410 * ospf_route.c: Include "sockunion.h"
4411
44121999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
4413
4414 * ospf_network.c (ospf_serv_sock_init): Enclose
4415 IPTOS_PREC_INTERNETCONTROL setting with #ifdef for OS which does
4416 not have the definition.
4417
44181999-08-23 Toshiaki Takada <takada@zebra.org>
4419
4420 * ospf_packet.c: Fix bug of DD processing.
4421
44221999-08-18 Toshiaki Takada <takada@zebra.org>
4423
4424 * ospf_lsa.c (show_ip_ospf_database): Show actual `LS age'.
4425
44261999-08-17 Toshiaki Takada <takada@zebra.org>
4427
4428 * ospf_lsa.h (OSPF_MAX_LSA): The value of OSPF_MAX_LSA is
4429 corrected. The bug of `mes_lookup' is fixed.
4430 This had been reported by Poul-Henning Kamp <phk@freebsd.org>.
4431
4432 * ospf_lsa.c (ospf_router_lsa_install): The name is changed from
4433 `ospf_add_router_lsa'.
4434 (ospf_network_lsa_install): The name is changed from
4435 `ospf_add_network_lsa'.
4436
4437 * ospf_interface.h (ospf_interface): Add member `nbr_self'.
4438
4439 * ospf_interface.c (ospf_if_is_enable): New function added.
4440
44411999-08-16 Toshiaki Takada <takada@zebra.org>
4442
4443 * ospf_lsa.h (struct lsa_header): The name is changed from
4444 `struct ospf_lsa'.
4445 (struct ospf_lsa): New struct added to control each LSA's aging
4446 and timers.
4447
4448 * ospf_lsa.c (ospf_lsa_data_free): The name is change from
4449 `ospf_lsa_free'.
4450 (ospf_lsa_data_new), (ospf_lsa_new), (ospf_lsa_free),
4451 (ospf_lsa_different), (ospf_lsa_install): New function added.
4452
4453 * ospf_packet.c (ospf_ls_upd_list_lsa): New function added.
4454
44551999-08-12 Toshiaki Takada <takada@zebra.org>
4456
4457 * ospf_nsm.c (nsm_reset_nbr): New function added.
4458 KillNbr and LLDown neighbor event call this function.
4459
44601999-08-10 Toshiaki Takada <takada@zebra.org>
4461
4462 * ospf_packet.c (ospf_ls_retransmit)
4463 (ospf_ls_upd_timer): New function added.
4464 Set retransmission timer for Link State Update.
4465
44661999-07-29 Toshiaki Takada <takada@zebra.org>
4467
4468 * ospf_ism.c (ospf_dr_election): Fix bug of DR election.
4469
44701999-07-28 Toshiaki Takada <takada@zebra.org>
4471
4472 * ospf_network.c (ospf_serv_sock_init): Set IP precedence field
4473 with IPTOS_PREC_INTERNET_CONTROL.
4474
4475 * ospf_nsm.c (nsm_change_status): Schedule NeighborChange event
4476 if NSM status change.
4477
4478 * ospf_packet.c (ospf_make_hello): Never include a neighbor in
4479 Hello packet, when the neighbor goes down.
4480
44811999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org>
4482
4483 * Makefile.am (noinst_HEADERS): Add ospf_route.h.
4484
4485 * ospf_route.c (show_ip_ospf_route): Add `show ip ospf route'
4486 command.
4487
44881999-07-25 Toshiaki Takada <takada@zebra.org>
4489
4490 * ospf_lsa.c (ospf_router_lsa): Fix bug of LS sequence number
4491 assignement.
4492
44931999-07-25 Kunihiro Ishiguro <kunihiro@zebra.org>
4494
4495 * ospf_route.c (ospf_route_table_free): New function added.
4496
4497 * ospf_spf.c (ospf_spf_next): Free vertex w when cw's and w's
4498 distance is same.
4499
4500 * ospfd.h (struct ospf): Add old_table.
4501
4502 * ospf_main.c (sighup): Call of log_rotate () removed.
4503
4504 * ospf_lsa.c (ospf_lsa_is_self_originated): Fix bug of checking
4505 area->lsa as self LSA. This should be area->lsa_self.
4506
45071999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
4508
4509 * ospf_zebra.c (ospf_zebra_add): ospf_zebra_add
4510 (),ospf_zebra_delete () added.
4511
4512 * ospf_spf.c (ospf_spf_calculate): Call ospf_intra_route_add ().
4513
45141999-07-24 Toshiaki Takada <takada@zebra.org>
4515
4516 * ospf_lsa.c: Change LS sequence number treatment.
4517 (ospf_lsa_is_self_originated): New function added.
4518 (show_ip_ospf_database_self_originated): New DEFUN added.
4519
45201999-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
4521
4522 * ospf_interface.c (ospf_if_lookup_by_addr): Add loopback check.
4523
45241999-07-22 Toshiaki Takada <takada@zebra.org>
4525
4526 * ospf_spf.c (ospf_nexthop_new), (ospf_nexthop_free),
4527 (ospf_nexthop_dup): function added.
4528 (ospf_nexthop_calculation): function changed.
4529
4530 * ospf_interface.c (ospf_if_lookup_by_addr): function added.
4531
45321999-07-21 Toshiaki Takada <takada@zebra.org>
4533
4534 * ospf_spf.c (ospf_spf_closest_vertex): function removed.
4535
45361999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
4537
4538 * ospf_spf.c (ospf_spf_next): Apply ntohs for fetching metric.
4539
45401999-07-21 Toshiaki Takada <takada@zebra.org>
4541
4542 * ospf_neighbor.c (ospf_nbr_lookup_by_router_id): fundtion removed.
4543
4544 * ospf_lsa.c (show_ip_ospf_database_router): describe each
4545 connected link.
4546
45471999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
4548
4549 * ospf_spf.c (ospf_spf_next): V is router LSA or network LSA so
4550 change behavior according to LSA type.
4551 (ospf_lsa_has_link): Link check function is added.
4552
45531999-07-20 Kunihiro Ishiguro <kunihiro@zebra.org>
4554
4555 * ospf_spf.c (ospf_spf_calculate_schedule): Add new function for
4556 SPF calcultion schedule addtition.
4557 (ospf_spf_calculate_timer_add): Rough 30 sec interval SPF calc
4558 timer is added.
4559 (ospf_spf_next_router): Delete ospf_spf_next_network ().
4560
4561 * ospf_lsa.c (show_ip_ospf_database_all): Network-LSA display
4562 header typo correction. Display of router LSA's #link added.
4563
45641999-07-19 Toshiaki Takada <takada@zebra.org>
4565
4566 * ospf_packet.c (ospf_check_network_mask): Added new function for
4567 receiving Raw IP packet on an appropriate interface.
4568
45691999-07-16 Toshiaki Takada <takada@zebra.org>
4570
4571 * ospfd.c (ospf_router_id): new DEFUN added.
4572
45731999-07-15 Toshiaki Takada <takada@zebra.org>
4574
4575 * ospf_spf.c (ospf_spf_init), (ospf_spf_free),
4576 (ospf_spf_has_vertex), (ospf_vertex_lookup),
4577 (ospf_spf_next_router), (ospf_spf_next_network),
4578 (ospf_spf_closest_vertex), (ospf_spf_calculate):
4579 function added.
4580
45811999-07-13 Toshiaki Takada <takada@zebra.org>
4582
4583 * ospf_ism.c: fix bug of DR Election.
4584
4585 * ospf_nsm.c: fix bug of adjacency forming.
4586
45871999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
4588
4589 * ospfd.c (ospf_init): Change to use install_default.
4590
45911999-07-01 Rick Payne <rickp@rossfell.co.uk>
4592
4593 * ospf_zebra.c (zebra_init): Install standard commands to
4594 ZEBRA_NODE.
4595
45961999-06-30 Toshiaki Takada <takada@zebra.org>
4597
4598 * ospf_dump.c: Whole debug command is improved.
4599 (ISM|NSM) (events|status|timers) debug option added.
4600 (show_debugging_ospf): new DEFUN added.
4601
46021999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
4603
4604 * ospf_lsa.c (ospf_lsa_lookup_from_list): Change !IPV4_ADDR_CMP to
4605 IPV4_ADDR_SAME.
4606
46071999-06-29 Toshiaki Takada <takada@zebra.org>
4608
4609 * ospf_dump.c (ospf_summary_lsa_dump): Add summary-LSA dump routine.
4610 (ospf_as_external_lsa_dump): Add AS-external-LSA dump routine.
4611
4612 * ospf_nsm.c (nsm_twoway_received): fix condtion of adjacnet.
4613
4614 * ospf_ism.c (ospf_dr_election): fix DR Election.
4615
4616 * ospf_dump.c (ospf_nbr_state_message): fix `show ip ospf neighbor'
4617 command's state.
4618
46191999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
4620
4621 * ospf_dump.c (ospf_router_lsa_dump): Add router-LSA dump routine.
4622
46231999-06-28 Toshiaki Takada <takada@zebra.org>
4624
4625 * ospf_lsa.c (show_ip_ospf_database_network): fix bug of
4626 `show ip ospf database network' command output.
4627
4628 * ospf_nsm.c (nsm_inactivity_timer): Clear list of Link State
4629 Retransmission, Database Summary and Link State Request.
4630
4631 * ospf_packet.c (ospf_ls_req_timer): New function added.
4632 Set Link State Request retransmission timer.
4633
46341999-06-27 Kunihiro Ishiguro <kunihiro@zebra.org>
4635
4636 * ospf_main.c (main): Change default output from ZLOG_SYSLOG to
4637 ZLOG_STDOUT.
4638
4639 * ospfd.c (ospf_init): Register show_ip_ospf_interface_cmd and
4640 show_ip_ospf_neighbor_cmd to VIEW_NODE.
4641
4642 * ospf_lsa.c (ospf_lsa_init): Register show_ip_ospf_database_cmd
4643 and show_ip_ospf_database_type_cmd to VIEW_NODE.
4644
46451999-06-25 Toshiaki Takada <takada@zebra.org>
4646
4647 * ospf_packet.c: fix bug of DD making.
4648 fix bug of LS-Update reading.
4649
46501999-06-23 Toshiaki Takada <takada@zebra.org>
4651
4652 * ospf_packet.c: All type of packets are changed to use
4653 fifo queue structure.
4654 (ospf_fill_header) function added.
4655
46561999-06-22 Toshiaki Takada <takada@zebra.org>
4657
4658 * ospf_packet.c (ospf_packet_new): New function added to handle
4659 sending ospf packet by fifo queue structure.
4660 (ospf_packet_free), (ospf_fifo_new), (ospf_fifo_push),
4661 (ospf_fifo_pop), (ospf_fifo_head), (ospf_fifo_flush),
4662 (ospf_fifo_free): Likewise.
4663
46641999-06-21 Toshiaki Takada <takada@zebra.org>
4665
4666 * ospf_nsm.c (ospf_db_desc_timer): function added.
4667 (nsm_timer_set) function added.
4668 * ospf_dump.c (ospf_option_dump): function added.
4669 * ospf_packet.c (ospf_ls_req) (ospf_make_ls_req): function added.
4670
46711999-06-20 Toshiaki Takada <takada@zebra.org>
4672
4673 * ospf_lsa.c (ospf_lsa_more_recent): function added.
4674 * ospf_neighbor.h (struct ospf_neighbor): Change member ms_flag
4675 to dd_flags.
4676
46771999-06-19 Toshiaki Takada <takada@zebra.org>
4678
4679 * ospf_lsa.c: DEFUN (show_ip_ospf_database) Added.
4680 * ospf_interface.c (if_ospf_cost), (if_ospf_dead_interval),
4681 (if_ospf_hello_interval), (if_ospf_priority),
4682 (if_ospf_retransmit_interval), (if_ospf_transmit_delay)
4683 argument changed from NUMBER to <range>.
4684 DEFUN (if_ospf_network_broadcast),
4685 DEFUN (if_ospf_network_non_broadcast),
4686 DEFUN (if_ospf_network_point_to_multipoint),
4687 DEFUN (if_ospf_network_point_to_point) functions are combined to
4688 DEFUN (if_ospf_network).
4689
46901999-06-18 Toshiaki Takada <takada@zebra.org>
4691
4692 * ospf_lsa.c: ospf_add_router_lsa (), ospf_add_network_lsa (),
4693 ospf_lsa_lookup (), ospf_lsa_count () Added.
4694
46951999-06-15 Toshiaki Takada <takada@zebra.org>
4696
4697 * DEFUN (ospf_debug_ism), DEFUN (ospf_debug_nsm),
4698 DEFUN (no_ospf_debug_ism), DEFUN (no_ospf_debug_nsm) Added.
4699 `debug ospf ism' command shows debug message.
4700 `debuf ospf nsm' command shows debug message.
4701
47021999-06-14 Toshiaki Takada <takada@zebra.org>
4703
4704 * ospf_lsa.c: ospf_network_lsa () Added.
4705 ospf_lsa_checksum () Added.
4706 * DEFUN (ospf_debug_packet), DEFUN (no_ospf_debug_packet) Added.
4707 `debug ospf packet' command shows debug message.
4708
47091999-06-13 Toshiaki Takada <takada@zebra.org>
4710
4711 * ospf_packet.h: Remove struct ospf_ls_req {}, ospf_ls_upd {},
4712 ospf_ls_ack {}.
4713
47141999-06-11 Toshiaki Takada <takada@zebra.org>
4715
4716 * ospf_dump.c: fix IP packet length treatment.
4717
47181999-06-10 Toshiaki Takada <takada@zebra.org>
4719
4720 * ospf_ism.h: Add OSPF_ISM_EVENT_EXECUTE() Macro Added.
4721 * ospf_nsm.h: Add OSPF_NSM_EVENT_EXECUTE() Macro Added.
4722
4723 * ospf_packet.c: ospf_db_desc (), ospf_db_desc_send () Added.
4724 ospf_make_hello (), ospf_make_db_desc () Added.
4725 ospf_db_desc_proc () Added.n
4726
4727 * Database Description packet can be processed.
4728
47291999-06-08 Toshiaki Takada <takada@zebra.org>
4730
4731 * ospf_lsa.c: New file.
4732
47331999-06-07 Toshiaki Takada <takada@zebra.org>
4734
4735 * ospf_neighbor.c: ospf_fully_adjacent_count () Added.
4736
47371999-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
4738
4739 * ospf_spf.[ch]: New file.
4740
47411999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
4742
4743 * ospf_zebra.c: Changed to use lib/zclient.c routines.
4744
4745 * ospf_zebra.h (zebra_start): Remove struct zebra.
4746
47471999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
4748
4749 * ospfd.c (ospf_config_write): Add cast (unsigned long int) to
4750 ntohl for sprintf warning.
4751
47521999-05-19 Toshiaki Takada <takada@zebra.org>
4753
4754 * ospf_ism.c (ospf_dr_election): Join AllDRouters Multicast group
4755 if interface state changes to DR or BDR.
4756
47571999-05-14 Stephen R. van den Berg <srb@cuci.nl>
4758
4759 * ospf_main.c (signal_init): SIGTERM call sigint.
4760 (sigint): Logging more better message.
4761
47621999-05-12 Toshiaki Takada <takada@zebra.org>
4763
4764 * ospfd.c: Fix bug of `no router ospf' statement, it will work.
4765
47661999-05-11 Toshiaki Takada <takada@zebra.org>
4767
4768 * ospf_neighbor.c: ospf_nbr_free () Added.
4769
47701999-05-10 Toshiaki Takada <takada@zebra.org>
4771
4772 * ospfd.h: struct ospf_area { }, struct ospf_network { } Changed.
4773 * Fix bug of `no network' statement, it will work.
4774
47751999-05-07 Toshiaki Takada <takada@zebra.org>
4776
4777 * ospf_interface.c, ospf_zebra.c: Fix bug of last interface is not
4778 updated by ospf_if_update ().
4779
47801999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
4781
4782 * Makefile.am (noinst_HEADERS): Add ospf_lsa.h for distribution.
4783
47841999-04-25 Toshiaki Takada <takada@zebra.org>
4785
4786 * ospf_interface.c: DEFUN (no_if_ospf_cost),
4787 DEFUN (no_if_ospf_dead_interval),
4788 DEFUN (no_if_ospf_hello_interval),
4789 DEFUN (no_if_ospf_priority),
4790 DEFUN (no_if_ospf_retransmit_interval),
4791 DEFUN (no_if_ospf_transmit_delay) Added.
4792
4793 interface_config_write () suppress showing interface
4794 default values.
4795
47961999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org>
4797
4798 * ospf_dump.c (ospf_timer_dump): If thread is NULL return "inactive".
4799
4800 * ospfd.c (ospf_if_update): Fix bug of using ospf_area { } instead
4801 of ospf_network { }. So `router ospf' statement in ospfd.conf
4802 works again.
4803 (ospf_if_update): Call ospf_get_router_id for updating router ID.
4804
48051999-04-25 Toshiaki Takada <takada@zebra.org>
4806
4807 * ospf_interface.c: DEFUN (if_ospf_network) deleted.
4808 DEFUN (if_ospf_network_broadcast),
4809 DEFUN (if_ospf_network_non_broadcast),
4810 DEFUN (if_ospf_network_point_to_multipoint),
4811 DEFUN (if_ospf_network_point_to_point),
4812 DEFUN (no_if_ospf_network) Added.
4813
48141999-04-23 Toshiaki Takada <takada@zebra.org>
4815
4816 * ospfd.h: struct area { } changed to struct ospf_network { }.
4817 Add struct ospf_area { }.
4818 * ospfd.c: Add ospf_area_lookup_by_area_id (), ospf_network_new (),
4819 and ospf_network_free ().
4820 DEFUN (area_authentication), DEFUN (no_area_authentication) Added.
4821
48221999-04-22 Toshiaki Takada <takada@zebra.org>
4823
4824 * ospf_lsa.h: New file.
4825 * ospf_packet.h: LSA related struct definition are moved to
4826 ospf_lsa.h.
4827 * ospf_packet.c: ospf_verify_header () Added.
4828
48291999-04-21 Toshiaki Takada <takada@zebra.org>
4830
4831 * ospf_ism.c: ospf_elect_dr () and related function is changed.
4832 DR Election bug fixed.
4833 * ospf_dump.c: ospf_nbr_state_message (), ospf_timer_dump () Added.
4834 * ospfd.c: DEFUN (show_ip_ospf_neighbor) Added.
4835
48361999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
4837
4838 * ospf_main.c (main): access_list_init () is added for vty
4839 connection filtering.
4840
48411999-04-16 Toshiaki Takada <takada@zebra.org>
4842
4843 * ospfd.c: DEFUN (show_ip_ospf_interface) Added.
4844 * ospf_neighbor.c: ospf_nbr_count () Added.
4845
48461999-04-15 Toshiaki Takada <takada@zebra.org>
4847
4848 * ospfd.h: struct ospf { } Changed.
4849 * ospfd.c: ospf_lookup_by_process_id () Deleted.
4850 * ospf_ism.c: ospf_wait_timer () Added. WaitTimer will work.
4851
48521999-04-14 Toshiaki Takada <takada@zebra.org>
4853
4854 * ospf_ism.c: ospf_elect_dr () Added.
4855 * ospf_network.c: ospf_if_ipmulticast () Added.
4856
48571999-04-11 Toshiaki Takada <takada@zebra.org>
4858
4859 * ospf_interface.c: interface_config_write (),
4860 DEFUN (if_ip_ospf_cost),
4861 DEFUN (if_ip_ospf_dead_interval),
4862 DEFUN (if_ip_ospf_hello_interval),
4863 DEFUN (if_ip_ospf_priority),
4864 DEFUN (if_ip_ospf_retransmit_interval) and
4865 DEFUN (if_ip_ospf_transmit_delay) Added.
4866
48671999-04-08 Toshiaki Takada <takada@zebra.org>
4868
4869 * ospf_dump.c: ospf_packet_db_desc_dump () Added.
4870 * ospf_neighbor.c: ospf_nbr_bidirectional () Added.
4871 * ospf_nsm.c: nsm_twoway_received () Added.
4872
48731999-04-02 Toshiaki Takada <takada@zebra.org>
4874
4875 * ospf_neighbor.c: New file.
4876 * ospf_neighbor.h: New file.
4877 * ospf_nsm.c: New file.
4878 * ospf_nsm.h: New file.
4879 * ospf_packet.c: Add ospf_make_header (), ospf_hello () and
4880 ospf_hello_send (). Now OSPFd can receive Hello and send Hello.
4881
48821999-03-27 Kunihiro Ishiguro <kunihiro@zebra.org>
4883
4884 * ospf_packet.c: Add ospf_recv_packet (). Now OSPF Hello can receive.
4885
48861999-03-19 Toshiaki Takada <takada@zebra.org>
4887
4888 * ospf_packet.c: New file.
4889 * ospf_packet.h: New file.
4890 * ospf_network.c: New file.
4891 * ospf_network.h: New file.
4892 * ospfd.h: move OSPF message structure has moved to ospf_packet.h.
4893
48941999-03-17 Kunihiro Ishiguro <kunihiro@zebra.org>
4895
4896 * ospf_zebra.c (ospf_zebra_get_interface): Fix for IPv6 interface
4897 address.
4898
4899 * Makefile.am (install-sysconfDATA): Overwrite install-sysconfDATA
4900 for install ospfd.conf.sample as owner read only file.
4901
4902 * ospf_main.c (usage): Change to use ZEBRA_BUG_ADDRESS.
4903
49041999-03-15 Toshiaki Takada <takada@zebra.org>
4905
4906 * ospf_ism.c: New file.
4907 * ospf_ism.h: New file.
4908 * ospf_dump.c: New file.
4909 * ospf_dump.h: New file.
4910
4911 * ospfd.h: Add (struct ospf), (struct config_network),
4912 (struct message) structure.
4913
4914 * ospf_interface.c: Add ospf_if_match_network ().
4915 * ospf_interface.h (struct ospf_interface): Change struct members.
4916
4917 * ospfd.c: ospf_lookup_by_process_id (), ospf_network_new (),
4918 DEFUN (network_area): Added.
4919
4920 * ospfd.conf.sample: Change sample configuration.
4921
49221999-03-05 Toshiaki Takada <takada@zebra.org>
4923
4924 * ospf_interface.c: New file.
4925 * ospf_interface.h: New file.
4926 * ospf_zebra.h: New file.
4927 * ospf_zebra.c: Add interface function for zebra daemon.
4928 * ospfd.c: New file.
4929
49301999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org>
4931
4932 * Move IPv6 codes and files to ospf6d directory.
4933
49341999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
4935
4936 * syslog support added
4937
49381998-12-22 Toshiaki Takada <takada@zebra.org>
4939
4940 * ospfd.h: New file.
4941 * ospf_lsa.h: New file.
4942
49431998-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
4944
4945 * Makefile.am: New file.
4946 * ospf_main.c: New file.
4947