blob: e1f4118f3c7e4d31462504f777d97df525c048fd [file] [log] [blame]
paul6e0f1b92005-11-24 12:47:17 +000012005-11-24 Paul Jakma <paul.jakma@sun.com>
2
3 * privs.c: (zcaps2sys/solaris) remove unused variable.
4 (zprivs_state_caps/solaris) Format string missing a
5 specifier.
paulb6026072005-11-24 12:51:24 +00006 * zebra.h: s/u_int/unsigned int/, u_int is a BSD type, defining
7 __USE_BSD on Linux pulls in further things from netinet/ip.h
8 which dont preprocess for some reason. There is no C99
9 shorthand type directly equivalent to u_int afaict, so don't
10 use it.
paul6e0f1b92005-11-24 12:47:17 +000011
paul190880d2005-11-14 12:07:47 +0000122005-11-14 Paul Jakma <paul.jakma@sun.com>
13
paul889e9312005-11-14 14:46:35 +000014 * (general) pass struct work-queue to callback functions.
15 * workqueue.h: (struct work_queue) move the state flag
16 variables to end.
17 Add an opaque pointer to spec, for user-data global to the
18 queue.
19 Pass reference to work_queue to all callbacks.
20 * workqueue.c: (work_queue_item_remove) pass ref to workqueue
21 to user callbacks.
22 (work_queue_run) ditto.
23
242005-11-14 Paul Jakma <paul.jakma@sun.com>
25
paul190880d2005-11-14 12:07:47 +000026 * (general) Add state to detect queue floods. There's no sense
27 trying to be sparing of CPU resources, if the queue is
28 flooding and using ever more memory resources. we should just
29 get on with clearing the queue.
30 The sense of delay and hold were wrong way around, fix.
31 * workqueue.h: (struct work_queue) Add status bitfield. Add
32 'flood' integer to workqueue spec. Add runs_since_clear
33 counter to workqueue.
34 * workqueue.c: (work_queue_new) set defaults for delay, hold
35 and flood.
36 (work_queue_add) initial schedule should use delay, not hold.
37 (show_work_queues) Print flood field, conserve whitespace.
38 (work_queue_unplug) use delay, not hold.
39 (work_queue_run) consecutive runs should be seperated by hold
40 time, not delay.
41 Keep track of number of consecutive runs, go into 'overdrive'
42 if queue is being flooded, we can't avoid making heavy use of
43 resources, better to use CPU than ever more RAM.
paul76367ea2005-11-14 14:05:35 +000044 * zebra.h: [bug #231] include stdint, if its there.
paul190880d2005-11-14 12:07:47 +000045
462005-11-05 Paul Jakma <paul.jakma@sun.com>
pauldb29ae52005-11-12 22:36:41 +000047
48 * routemap.c: (vty_show_route_map_entry) call action is
49 seperate from exit action, latter should still be printed
50 regardless of whether a call is specified.
51
paul34204aa2005-11-03 09:00:23 +0000522005-11-03 Paul Jakma <paul.jakma@sun.com>
53
54 * zebra.h: BSD BYTE_ORDER define isn't available everywhere,
55 define if needs be.
56 * checksum.h: new file. checksum.c exports in_cksum, provide
57 a header for it.
58 * checksum.c: (in_cksum) callers shouldn't have to know it uses
59 a u_short internally, change to void *.
60 * Makefile.am: Add checksum.h
61 * command.h: remove bogus trailling slash.
62 * md5.c: (general) Update it for the twentieth century. ANSI
63 declarations are widely supported now.. Don't include system
64 headers, only include zebra.h. Use POSIX types (the
65 alternative is to define u_int64_t in a portable way - rest
66 of Quagga needs same cleanup).
67 Make endian-conditional code be compiler conditional rather
68 than preprocessor conditional, so that breakage gets noticed
69 quicker.
70 * md5.h: POSIX types. Get rid of the odd __P() non-ANSI capable
71 compiler compatibility hack.
paul9c4f1c62005-11-03 11:04:07 +000072 * if.c: (connected_free) use MTYPE for connected label.
paula49ad232005-11-03 13:00:54 +000073 * memtypes.c: Add MTYPE_CONNECTED_LABEL
74 * memtypes.h: Update auto-built file.
paul34204aa2005-11-03 09:00:23 +000075
paul02416842005-10-26 05:05:16 +0000762005-10-26 Paul Jakma <paul.jakma@sun.com>
77
78 * (general) Cleanup a some calls to XFREE,strdup, etc. to use
79 the memory.h macros.
80 * memtypes.c: Add MTYPE_IF_RMAP_NAME, MTYPE_PQUEUE,
81 MTYPE_PQUEUE_DATA and MTYPE_HOST.
82 * memtypes.h: update auto-built file.
83 * if_rmap.c: Use MTYPE_IF_RMAP_NAME.
84 * pqueue.c: Use the two MTYPE_PQUEUE mtypes for allocations.
paul05865c92005-10-26 05:49:54 +000085 * command.c: Use MTYPE_HOST, MTYPE_STRVEC. Some other fixups,
86 including fixing some likely leaks in config_write_file.
87 * vty.c: memory macro usage fixes.
88 (vty_read_config) fix leak where relative config file is
89 specified.
paul02416842005-10-26 05:05:16 +000090
ajs24065a32005-10-20 22:28:14 +0000912005-10-20 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
92
ajsc188c372005-10-21 02:57:41 +000093 * sockopt.c: (setsockopt_multicast_ipv4) If IP_ADD_MEMBERSHIP
94 fails with errno equal to EADDRINUSE, then issue an info
95 message and try IP_DROP_MEMBERSHIP followed by IP_ADD_MEMBERSHIP.
96
972005-10-20 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
98
ajs24065a32005-10-20 22:28:14 +000099 * memory.c: (show_memory_vty) Omit zero statistics. Print separators
100 only if some non-zero stats have been printed in between.
101 (show_separator) New function to print a separator.
102 (show_memory_all) Keep track of whether a separator is needed
103 between the different memory statistics groups.
104
ajs50123222005-10-18 20:19:13 +00001052005-10-18 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
106
107 * memtypes.h: Add MTYPE_OSPF_VERTEX_PARENT (to match memtypes.c).
108
pauleb3da6d2005-10-18 04:20:33 +00001092005-10-18 Paul Jakma <paul.jakma@sun.com>
110
111 * memtypes.c: (memory_list_ospf) Add MTYPE_OSPF_VERTEX_PARENT.
112
ajsf52d13c2005-10-01 17:38:06 +00001132005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
114
115 * zebra.h: Declare new functions zebra_route_string() and
116 zebra_route_char().
117 * log.c: (zroute_lookup,zebra_route_string,zebra_route_char) New
118 functions to map zebra route numbers to strings.
119
vincent5e4914c2005-09-29 16:34:30 +00001202005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
121
122 * smux.[ch]: allow to retreive global OID (identified by <0
123 namelen).
124
paulceacedb2005-09-29 14:39:32 +00001252005-09-29 Paul Jakma <paul.jakma@sun.com>
126
127 * zebra.h: Solaris capabilities requires priv.h to be included.
128 * privs.{c,h}: Add support for Solaris Least-Privileges.
129 privs.h: Reduce some of the abstract capabilities, which do
130 not have rough equivalents on both systems. Rename the net
131 related caps to _NET, as they should have been in first
132 place.
133 (zprivs_terminate) should take the zebra_privs_t as argument so
134 that it can update change pointer.
135 Add an additional privilege state, ZPRIVS_UNKNOWN.
136 * privs.c: (various capability functions) Add
137 Solaris privileges variants.
138 (zprivs_state) Use privs.c specific generic types to
139 represent various capability/privilege related types, so that
140 each can be typedef'd as appropriate on each platform.
141 (zprivs_null_state) static added, to hold the state the null
142 method should report (should be raised by default, and
143 LOWERED if zprivs_terminate has been called)
144 (zprivs_state_null) Report back the zprivs_null_state.
145 (cap_map) Make it able to map abstract capability to multiple
146 system capabilities.
147 (zcaps2sys) Map to abstract capabilities to multiple system
148 privileges/capabilities.
149 (zprivs_init) move capability related init to seperate
150 function, zprivs_caps_init.
151 (zprivs_terminate) ditto, moved to zprivs_caps_terminate.
152 Set the change_state callback to the NULL state, so the
153 user can continue to run and use the callbacks.
154
vincentfbf5d032005-09-29 11:25:50 +00001552005-09-29 Alain Ritoux <alain.ritoux@6wind.com>
156
157 * filer.c: show protocol name in filter_show()
158 * plist.c: show protocol name in vty_show_prefix_entry()
159 * routemap.c: show protocol name in vty_show_route_map_entry()
160 * vty.c: in vty_command(), show protocol name if command unknown
161
vincentc1a03d42005-09-28 15:47:44 +00001622005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
163
164 * md5-gnu.h: removed
165 * md5.h: replaces md5-gnu.h
166 * Makefile.am: use correct md5.h
167 * md5.c: import from WIDE
168
paul75b2dd02005-09-21 14:06:35 +00001692005-09-21 Paul Jakma <paul.jakma@sun.com>
170
171 * memtypes.{c,h}: Add MTYPE_AS_SEG_DATA.
172
hassoe6a4feb2005-09-19 09:53:21 +00001732005-09-19 Hasso Tepper <hasso at quagga.net>
174
175 * str.[ch]: Add strndup() from glibc.
176
pauleb820af2005-09-05 11:54:13 +00001772005-09-05 Paul Jakma <paul.jakma@sun.com>
178
179 * command.c: (install_element) be more robust. Eg, cmd_init
180 need not have been called, some applications may use other
181 library subsystems, which call install_element, without the
182 application wanting commands and hence not calling cmd_init.
183
paul1e836592005-08-22 22:39:56 +00001842005-08-22 Hugo Santos <hsantos@av.it.pt>
185
186 * command.h: (enum node_type) Add BGP_IPV6M_NODE
187 * command.c: (node_parent) Handle BGP_IPV6M_NODE node
188 (config_exit, config_end) ditto
189 * vty.c: (vty_end_config) Handle BGP_IPV6M_NODE node
190
gdt0312f0c2005-08-10 13:20:03 +00001912005-08-10 Greg Troxel <gdt@fnord.ir.bbn.com>
192
193 * getopt.h: Don't declare getopt (rather than getopt_long), since
194 quagga doesn't need it.
195 * getopt.c (getopt): Don't define getopt.
196
ajs330009f2005-07-26 14:35:37 +00001972005-07-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajs7907c6c2005-07-26 19:55:31 +0000198 * prefix.c: (prefix_ipv4_new, prefix_ipv6_new): Call prefix_new
199 to allocate the memory to make sure that all struct prefix pointers
200 point to objects of the same length (avoids memory overruns
201 on struct prefix assignments).
202 (prefix_ipv4_free, prefix_ipv6_free): Simply call prefix_free.
203 It is interesting to note that these functions are never actually
204 called anywhere in the code. Instead prefix_free was already
205 being called directly, despite the previous MTYPE incompatibility.
206
2072005-07-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajs330009f2005-07-26 14:35:37 +0000208
209 * prefix.c: (ip_masklen) While loop should test that 'pnt' pointer is
210 in range before dereferencing it.
211
paul510e2092005-06-24 01:20:25 +00002122005-06-24 Pawel Worach <pawel.worach@gmail.com>
213
214 * getopt.h: add further tests for full getopt declaration on
215 various systems.
216
paul354f3b62005-06-18 16:55:20 +00002172005-06-18 Paul Jakma <paul.jakma@sun.com>
218
219 * memtypes.h: update autobuilt file to match memtypes.c changes
220
paul200df112005-06-01 11:17:05 +00002212005-06-01 Paul Jakma <paul.jakma@sun.com>
222
223 * memtypes.c: Add MTYPE_BGP_PROCESS_QUEUE and
224 MTYPE_BGP_CLEAR_NODE_QUEUE
225
paul8176c192005-05-24 09:33:52 +00002262005-05-24 Paul Jakma <paul@dishone.st>
227
228 * memtypes.h: update this auto-built file. (maybe we should just
229 remove it, is GNU awk a terrible dependency to have?)
230
pauld5c92532005-05-23 12:33:58 +00002312005-05-23 Paul Jakma <paul@dishone.st>
232
233 * memtypes.awk: use character classes, which work correctly in
234 all LC_COLLATE environments, unlike A-Z, which doesnt work in
235 eg estonian collate order. Reported by Hasso.
pauld4f09602005-05-23 12:43:34 +0000236 * routemap.c: (rmap_onmatch_goto) fix crash if 'continue' command
237 is used, which does not supply an argv[0].
238 this is a backport candidate /iff/ the trailing ; is removed
239 from VTY_GET_INTEGER_RANGE
240 * vty.h: fix the VTY_GET macros, do {..} while(0) so they have
241 correct function like syntax in usage.
paul269d74f2005-05-23 13:42:46 +0000242 * workqueue.h: Add a WQ_QUEUE_BLOCKED item_status return code,
243 to allow a queue function to indicate the queue is not
244 ready/blocked - rather than any problem with the item at hand.
245 Add a notion of being able to 'plug' and 'unplug' a queue.
246 Add helpers to plug/unplug a queue.
247 Add a completion callback, to be called when a queue is emptied.
248 * workqueue.c: (work_queue_new) remove useless list_free.
249 (work_queue_schedule) new internal helper function to schedule
250 queue, if appropriate.
251 (work_queue_add) use work_queue_schedule
252 (show_work_queues) Print 'P' if queue is plugged.
253 (work_queue_plug) new API function, plug a queue - ie prevent it
254 from 'drained' / processed / scheduled.
255 (work_queue_unplug) unplug a queue, allowing it to be drained
256 / scheduled / processed again.
257 (work_queue_run) Add support for WQ_QUEUE_BLOCKED.
258 Add comment for RETRY_NOW case.
259 Make hysteris more aggresive in ramping up granularity, improves
260 performance significantly.
261 Add support for calling completion callback when queue is emptied,
262 possibly useful for knowing when to unplug a queue.
pauld5c92532005-05-23 12:33:58 +0000263
pauldc818072005-05-19 01:30:53 +00002642005-05-19 Paul Jakma <paul@dishone.st>
265
266 * thread.c: (thread_cancel_event) the number of pending events
267 cancelled is potentially useful information, dont throw it away,
268 pass it back to the caller.
paul2ba9a372005-05-19 01:37:50 +0000269 * sockunion.c: (sockunion_getsockname) use MTYPE_SOCKUNION, not TMP
270 (sockunion_getpeername) ditto
paule387e662005-05-19 02:13:28 +0000271 * memtypes.c: (memory_list_bgp) add MTYPE_BGP_PEER_HOST
pauldc818072005-05-19 01:30:53 +0000272
paul024a7f02005-05-15 14:25:08 +00002732005-05-15 Paul Jakma <paul@dishone.st>
274
275 * getopt.h: It's not just __GNU_LIBRARY__ which defines
276 getopt, eg __EXTENSIONS__ does too on SunOS. It still seems
277 awfully fragile though.
278 * getopt.c: include zebra.h after config.h, before including
279 getopt.h so that things at least are consistent..
280 * getopt1.c: ditto
281
paul42c98192005-05-07 02:22:51 +00002822005-05-07 Yar Tikhiy <yar@comp.chem.msu.su>
283
284 * sockopt.c: Add support for BSD style ifindex in ip_mreq.
285
paul8cc41982005-05-06 21:25:49 +00002862005-05-06 Paul Jakma <paul@dishone.st>
287
288 * (general) extern and static'ification of functions in code and
289 header.
290 Cleanup any definitions with unspecified arguments.
291 Add casts for callback assignments where the callback is defined,
292 typically, as passing void *, but the function being assigned has
293 some other pointer type defined as its argument, as gcc complains
294 about casts from void * to X* via function arguments.
295 Fix some old K&R style function argument definitions.
296 Add noreturn gcc attribute to some functions, as appropriate.
297 Add unused gcc attribute to some functions (eg ones meant to help
298 while debugging)
299 Add guard defines to headers which were missing them.
300 * command.c: (install_node) add const qualifier, still doesnt shut
301 up the warning though, because of the double pointer.
302 (cmp_node) ditto
303 * keychain.c: (key_str2time) Add GET_LONG_RANGE() macro, derived
304 fromn vty.h ones to fix some of the (long) < 0 warnings.
305 * thread.c: (various) use thread_empty
306 (cpu_record_hash_key) should cast to uintptr_t, a stdint.h type
307 * vty.h: Add VTY_GET_IPV4_ADDRESS and VTY_GET_IPV4_PREFIX so they
308 removed from ospfd/ospf_vty.h
309 * zebra.h: Move definition of ZEBRA_PORT to here, to remove
310 dependence of lib on zebra/zserv.h
311
hassoe7fe8c82005-05-06 19:33:35 +00003122005-05-06 Hasso Tepper <hasso at quagga.net>
313
314 * sockunion.c: Fix warning message.
315
paul0dab9302005-05-03 09:07:56 +00003162005-05-03 Paul Jakma <paul@dishone.st>
317
318 * stream.h: Add comment about the special zero-ing ability of
319 stream_put.
320 (stream_recvmsg, stream_write) should return ssize_t and size_t
321 respectively. Should both be extern linkage.
322 (stream_recvfrom) Stream aware wrapper around recvfrom, in style
323 of stream_read_try.
324 * stream.c: (stream_recvfrom) new function, wrapper around recvfrom.
325 (stream_recvmsg, stream_write) ssize_t and size_t return values
326
ajs3df53782005-04-27 16:29:54 +00003272005-04-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
328
ajs8b70d0b2005-04-28 01:31:13 +0000329 Add wall-clock timing statistics to 'show thread cpu' output.
330 * thread.h: Define struct rusage_t to contain wall-clock time
331 and cpu time. Change GETRUSAGE macro to collect both pieces
332 of data. Make appropriate changes to struct cpu_thread_history
333 to track CPU time and real time. Change proto for
334 thread_consumed_time to return real and cpu time elapsed.
335 And declare a new global variable 'struct timeval recent_time'.
336 * thread.c (struct timeval recent_time): New global timestamp variable.
337 (timeval_adjust): If timeout is negative, set to 0 (not 10
338 microseconds). And remove upper bound of 1,000,000 seconds, since
339 this does not seem to make any sense (and it breaks
340 funcname_thread_add_timer_timeval).
341 (timeval_cmp): Should return long, not int.
342 (vty_out_cpu_thread_history): Show CPU time and real time.
343 (cpu_record_hash_print): Calculate totals for CPU and real time.
344 (cpu_record_print): Change 'show thread cpu' title to show CPU and
345 real time.
346 (thread_timer_remain_second): Put current time in global recent_time.
347 (funcname_thread_add_timer_timeval): Fix assert. Replace 2-case
348 switch assignment with a ternary expression. Use global recent_time
349 variable. Fix use of timeval_adjust (previously, the value was not
350 actually being adjusted).
351 (thread_cancel): Add missing "break" statement in case
352 THREAD_BACKGROUND.
353 (thread_timer_wait): Use global recent_time value instead of calling
354 gettimeofday. And there's no need to check for negative timeouts,
355 since timeval_subtract already sets these to zero.
356 (thread_timer_process): Timers are sorted, so bail out once we
357 encounter a timer that has not yet popped. And remove some
358 extraneous asserts.
359 (thread_fetch): Do not process foreground timers before calling
360 select. Instead, add them to the ready list just after the select.
361 Also, no need to maintain a count of the number of ready threads,
362 since we don't care how many there are, just whether there's
363 one at the head of the ready list (which is easily checked).
364 Stick current time in global variable recent_time to reduce
365 the number of calls to gettimeofday. Tighten logic for
366 calculating the select timeout.
367 (thread_consumed_time): Now returns real time and puts the elapsed
368 cpu time in an additional argument.
369 (thread_should_yield): Use real (wall-clock) time to decide whether
370 to yield.
371 (thread_call): Maintain CPU and real time statistics.
372 * vty.c (vty_command): For slow commands, show real and cpu time.
373
3742005-04-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
375
ajs3df53782005-04-27 16:29:54 +0000376 * workqueue.c (show_work_queues): Remove unused gettimeofday call.
377
paul84369682005-04-27 12:39:27 +00003782005-04-27 Paul Jakma <paul.jakma@sun.com>
379
380 * workqueue.h: (struct work_queue_item) change retry_count to ran,
381 its a count of number item has been run.
382 * workqueue.c: (show_work_queues) Fix formating of slightly
383 bugfix: fix SIGFPE if wq->runs is 0.
384 (work_queue_run) retry logic was slightly wrong.
385 cycles.best is 0 initialy, granularity is 1, so update best
386 if cycles >= granularity, not just >.
paula7bca0f2005-04-27 12:44:54 +0000387 * memory.h: memtypes is built source, default includes points to
388 top_builddir, so we should refer to lib/memtypes.h
389
ajs07334da2005-04-26 17:14:30 +00003902005-04-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
391
392 * buffer.c (buffer_write): Comment out call to buffer_flush_available.
393 This should speed up buffering at the expense of a possible increase
394 in latency in flushing the data if inside a long-running thread.
395
paulab59ae32005-04-25 13:52:26 +00003962005-04-25 Paul Jakma <paul.jakma@sun.com>
397
paul147aff02005-04-25 16:29:10 +0000398 * workqueue.{c,h}: Helper API for setting up and running queues via
399 background threads.
400 * command.c: install the 'show workqueues' command
401 * memtypes.c: Add work queue mtypes, and a rib-queue type for
402 a zebra rib work queue.
403 * memtypes.h: Updated to match memtypes.c
paulab59ae32005-04-25 13:52:26 +0000404 * Makefile.am: Refer to source files via srcdir variable, fix
405 out-of-tree build breakage.
paul147aff02005-04-25 16:29:10 +0000406 Add new workqueue files to build.
paul2c1de2a2005-04-25 14:02:44 +0000407 * memory.c: Make the string field much wider
408 * memtypes.c: Correct the prefix list str/entry strings
paul907873a2005-04-25 14:53:46 +0000409 * thread.c: Kill unused TIMER_NO_SORT bits
paulab59ae32005-04-25 13:52:26 +0000410
ajsfb9e46b2005-04-22 14:23:34 +00004112005-04-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
412
413 * thread.h: Fix type for struct thread_master add_type: should be
414 unsigned char. Also, add some documentation of thread_add_background
415 args. And remove extraneous declaration of
416 show_thread_work_queues_cmd.
417
paula48b4e62005-04-22 00:43:47 +00004182005-04-22 Paul Jakma <paul.jakma@sun.com>
419
paule1e53ed2005-04-22 13:44:17 +0000420 * memory.h: Move include of memtypes.h to after the definition of
421 struct memory_list, gcc 4.0 doesn't like arrays of incomplete
422 types.
paula48b4e62005-04-22 00:43:47 +0000423 * thread.h: Add background thread type and thread_add_background
424 macro and accompanying funcname_... function.
425 export thread_should_yield, background threads can use it.
426 Lower thread yield time to 10ms, 100ms is noticeable lag and
427 a thread would only be /starting/ to finish sometime afterward.
428 * thread.c: (general) Add background thread type and schedule
429 nearly all thread types through the ready list for fairness.
430 (timeval_adjust) static qualifier missing
431 (vty_out_cpu_thread_history) add support for printout of
432 background threads
433 (show_thread_cpu) ditto.
434 (thread_master_debug) add debug of background list
435 (thread_master_create) fixup long line
436 (thread_add_unuse) add asserts for required state.
437 (thread_master_free) free background thread list
438 (funcname_thread_add_timer_timeval) make generic, able to
439 support arbitrary timer-like thread types.
440 (funcname_thread_add_timer) pass thread type to .._add_timer_timeval
441 (funcname_thread_add_timer_msec) ditto
442 (funcname_thread_add_background) Add a background thread, with an
443 optional millisecond delay factor, using .._add_timer_timeval.
444 (thread_cancel) Add background thread type.
445 Move the thread_list_delete common to all cases to bottom of
446 function, after the switch statement..
447 (thread_cancel_event) indent
448 (thread_timer_wait) Static qualifier, and make it able to cope
449 with arbitrary timer-like thread lists, so its of use to
450 background threads too.
451 (thread_process_fd) static qualifier. Again, make it take a list
452 reference rather than thread_master. Fix indentation.
453 (thread_timer_process) Check for ready timer-like threads in the
454 given list and move them on to the ready list - code originally
455 embedded in thread_fetch.
456 (thread_fetch) Schedule all threads, other than events, through
457 the ready list, to ensure fairness. Timer readying code moved to
458 thread_timer_process so it can be reused for background threads.
459 Remove the unneeded quagga_sigevent_process, as pointed out by
460 John Lin <john.ch.lin@gmail.com>.
461 (thread_should_yield) make this available.
462
ajs924b9222005-04-16 17:11:24 +00004632005-04-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
464
465 * thread.h (thread_consumed_time): Declare new function to calculate
466 elapsed microseconds.
467 * thread.c (thread_consumed_time): Must be global not static so we
468 can call it from lib/vty.c:vty_command.
469 (thread_should_yield): Surround with `#if 0' to make clear that this
470 function is not currently being used anywhere.
471 (thread_call): If CONSUMED_TIME_CHECK is defined, print a CPU HOG
472 warning message if the thread takes more than CONSUMED_TIME_CHECK
473 microseconds.
474 * vty.c (vty_command): If CONSUMED_TIME_CHECK is defined, print a CPU
475 HOG warning message if the command takes more than CONSUMED_TIME_CHECK
476 microseconds.
477
pauldc830cb2005-04-16 15:51:05 +00004782005-04-16 Paul Jakma <paul@dishone.st>
479
480 * memtypes.c: the comment about use of comments in the comments
481 headers was causing comment within comment warnings from compiler
482 * memtypes.awk: Add extensive comments on the file format for
483 memtypes.c.
484 tighten the pattern for the MTYPE matching action (suggestion from
485 Andrew) and tighten which field we try the match on.
486
paul2fd2fd52005-04-15 11:47:15 +00004872005-04-15 Paul Jakma <paul@dishone.st>
488
489 * memtypes.c: The new, unified location for memory type definitions.
490 The memtype enum and declarations for memory_lists are built from
491 this automatically and put into memtypes.h.
492 * memtypes.awk: New script to generate memtypes.h from memtypes.c
493 * memory.h: Finally, the enum can banished!
494 * memory.c: Finally, the seperate mtype memory_list definitions can
495 be banished!
496 (log_memstats) Increase width of fields
497 (show_memory_zebra_cmd) display zebra specific memory types.
498 Increase width of fields.
499 * Makefile.am: Add memtypes.{c,h}, add BUILT_SOURCES for memtypes.h
500 Add a rule to build memtypes.h using memtypes.awk.
501 Add memtypes.awk to EXTRA_DIST.
pauld45f1f12005-04-15 22:18:37 +0000502 memtypes.awk is gawk dependent, use the GAWK automake var.
503 * memtypes.h: New file, auto-generated, checked in for convenience.
paul2fd2fd52005-04-15 11:47:15 +0000504
ajs634f9ea2005-04-11 15:51:40 +00005052005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
506
507 * zclient.h (struct zclient): Add two fields to support non-blocking
508 I/O: struct buffer *wb, and struct thread *t_write.
509 (zclient_free): Remove function.
510 (zebra_redistribute_send): Change 2nd arg from socket fd to
511 struct zclient * (needed to support non-blocking I/O and buffering).
512 (zclient_send_message): New function to send an arbitrary
513 message with non-blocking I/O.
514 * zclient.c (zclient_new): Create write buffer.
515 (zclient_free): Remove unused function.
516 (zclient_stop): Must cancel new t_write thread. Also, reset
517 all buffers: ibuf, obuf, and wb.
518 (zclient_failed): New helper function for typical error handling.
519 (zclient_flush_data): New thread to flush queued data.
520 (zclient_send_message): New function to send the message in
521 zclient->obuf to zebra using non-blocking I/O and buffering.
522 (zebra_message_send, zapi_ipv4_route, zapi_ipv6_route): Use
523 new zclient_send_message function instead of calling writen.
524 (zclient_start): Set socket non-blocking. Also, change 2nd arg
525 to zebra_redistribute_send from zclient->sock to zclient.
526 (zebra_redistribute_send): Change 2nd arg to struct zclient *.
527 Can now use zclient->obuf to assemble the message instead of
528 allocating a temporary stream. And call zclient_send_message to
529 send the message instead of writen.
530 (zclient_read): Convert to support non-blocking I/O by using
531 stream_read_try instead of deprecated stream_read.
532 (zclient_redistribute): Change 2nd arg to zebra_redistribute_send
533 from zclient->sock to zclient.
534
hasso5bb4c192005-04-09 13:27:50 +00005352005-04-09 Jeroen Simonetti <jeroens@office.netland.nl>
536
537 * routemap.c: Show description in "show route-map" output.
538
ajsd66a7b52005-04-08 16:42:03 +00005392005-04-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
540
ajs67bf16c2005-04-08 19:02:04 +0000541 * sigevent.c: On GNU_LINUX, check whether __USE_GNU is already defined.
542
5432005-04-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
544
ajs926fe8f2005-04-08 18:50:40 +0000545 * vty.c: (vty_log_fixed) Use casts to (void *) to try to eliminate
546 compiler warnings when assigning a (const char *) value to
547 struct iovec iov_base.
548
5492005-04-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
550
ajsd66a7b52005-04-08 16:42:03 +0000551 * zebra.h: If GNU_LINUX is defined, then define _GNU_SOURCE. This
552 fixes a problem where we were not getting the declaration of strnlen
553 in <string.h>.
554
hasso3a2ce6a2005-04-08 01:30:51 +00005552005-04-08 Hasso Tepper <hasso at quagga.net>
556
hasso4a8164e2005-04-08 14:20:18 +0000557 * routemap.[ch]: Added "description ..." command.
558
5592005-04-08 Hasso Tepper <hasso at quagga.net>
560
hasso3a2ce6a2005-04-08 01:30:51 +0000561 * prefix.[hc]: Pass argument to the inet6_ntoa by value making it more
562 inet_ntoa alike.
563
paul1eb8ef22005-04-07 07:30:20 +00005642005-04-07 Paul Jakma <paul.jakma@sun.com>
565
566 * linklist.h: Add usage comments.
567 Rename getdata macro to listgetdata.
568 Rename nextnode to listnextnode and fix its odd behaviour to be
569 less dangerous.
570 Make listgetdata macro assert node is not null, NULL list entries
571 should be bug condition.
572 ALL_LIST_ELEMENTS, new macro, forward-referencing macro for use
573 with for loop, Suggested by Jim Carlson of Sun.
574 Add ALL_LIST_ELEMENTS_RO for cases which obviously do not need the
575 "safety" of previous macro.
576 LISTNODE_ADD and DELETE macros renamed to ATTACH, DETACH, to
577 distinguish from the similarly named functions, and reflect their
578 effect better.
579 Add a QUAGGA_NO_DEPRECATED_INTERFACES define guarded section
580 with the old defines which were modified above,
581 for backwards compatibility - guarded to prevent Quagga using it..
582 * linklist.c: fix up for linklist.h changes.
583 * *.c: fix up for new list loop macro, try audit other loop
584 usage at same time, to some degree.
585
hasso59209902005-04-05 14:36:49 +00005862004-04-05 Hasso Tepper <hasso at quagga.net>
587
588 * lib/prefix.[hc]: inet6_ntoa utility function copied from
589 ripngd/ripngd.c (inet6_ntop).
590
paul3d1dc852005-04-05 00:45:23 +00005912004-04-05 Paul Jakma <paul@dishone.st>
592
593 * vty.c: Improve logging of failures to open vty socket(s).
594 See bugid #163.
595
ajs3cb98de2005-04-02 16:01:05 +00005962005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
597
ajs08dbfb62005-04-03 03:40:52 +0000598 * if.h: Fix comments to reflect that if_lookup_by_name and
599 if_get_by_name now require the argument strings to be NUL-terminated.
600 * if.c: (if_lookup_by_name) Compare using strcmp.
601 (if_get_by_name) Pass strlen(ifname) as 2nd arg to if_create.
602
6032005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
604
ajs018546e2005-04-02 23:05:56 +0000605 * if.c: (if_nametoindex) The man page is rather vague, but it seems
606 like the argument to if_nametoindex has an implicit maximum length
607 of IFNAMSIZ characters.
608
6092005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
610
ajsa3491982005-04-02 22:50:38 +0000611 * if.h: (if_lookup_by_name_len, if_get_by_name_len) New functions.
612 * if.c: (if_lookup_by_name_len, if_get_by_name_len) New functions.
613 (if_get_by_name) Tighten up code.
614 (interface) Use new function if_get_by_name_len.
615 * zclient.c: (zebra_interface_add_read) Use new if_get_by_name_len
616 function.
617 (zebra_interface_state_read) Use new if_lookup_by_name_len function.
618
6192005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
620
ajs851adbd2005-04-02 18:48:39 +0000621 * str.c: Replace strlcpy and strlcat with actual working versions
622 copied from rsync-2.6.2/lib/compat.c.
623
6242005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
625
ajsd2fc8892005-04-02 18:38:43 +0000626 * if.h: Remove define for IFINDEX_INTERNBASE and add define
627 IFINDEX_INTERNAL 0, since all internal (i.e. non-kernel) pseudo-
628 interfaces should have ifindex set to 0.
629 (if_new) Remove function.
630 (if_delete_retain) New function to delete an interface without
631 removing from iflist and freeing the structure.
632 (ifname2ifindex) New function.
633 * if.c: (if_new) Remove function (absorb into if_create).
634 (if_create) Replace function if_new with call to calloc.
635 Set ifp->ifindex to IFINDEX_INTERNAL. Fix off-by-one error
636 in assert to check length of interface name. Add error message
637 if interface with this name already exists.
638 (if_delete_retain) New function to delete an interface without
639 removing from iflist and freeing the structure.
640 (if_delete) Implement with help of if_delete_retain.
641 (ifindex2ifname) Reimplement using if_lookup_by_index.
642 (ifname2ifindex) New function to complement ifindex2ifname.
643 (interface) The interface command should check the name length
644 and fail with a warning message if it is too long.
645 (no_interface) Fix spelling in warning message.
646 (if_nametoindex) Reimplement using if_lookup_by_name.
647 (if_indextoname, ifaddr_ipv4_lookup) Reimplement using
648 if_lookup_by_index.
649
6502005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
651
ajs3cb98de2005-04-02 16:01:05 +0000652 * zebra.h: Should include str.h to pick up missing functions.
653 * str.h: Declare strnlen if needed.
654 * str.c: Do not include str.h since zebra.h now includes it.
655 (strnlen) New function.
656
ajsdb8eaac2005-03-16 16:13:06 +00006572005-03-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
658
659 * zebra.h: Must check whether __attribute__ should be defined before
660 including zassert.h.
661
paulb8961472005-03-14 17:35:52 +00006622005-03-14 Paul Jakma <paul.jakma@sun.com>
663
664 * command.c: (sort_node) use vector_max instead of referencing
665 (struct vector *)->max directly. Test that vector_max is > 0
666 before using it to calculate an index.
667 Fixup vector loop to make main body conditional on vector slot
668 not being empty.
669 (cmd_cmdsize) Fixup vector loop to make main body conditional on
670 vector slot not being empty.
671 (cmd_filter_by_completion) ditto
672 (cmd_filter_by_string) ditto
673 (is_cmd_ambiguous) ditto
674 (cmd_describe_command_real) Change index integers to unsigned.
675 Test that vector_max is > 0 before using it to calculate an index.
676 Return immediately with CMD_ERR_NO_MATCH if vline has no
677 active slots.
678 Fixup vector loop to make main body conditional on vector slot
679 not being empty.
680 (cmd_complete_command_real) ditto.
681 (cmd_execute_command_strict) Fixup vector loop to be conditional
682 on non-null slot.
paul909a2152005-03-14 17:41:45 +0000683 (various) Fix indentation and other whitespace.
paul55468c82005-03-14 20:19:01 +0000684 vector.h: Rename to (struct vector).max to slightly less confusing
685 active, for the number of active slots, distinct from allocated
686 or active-and-not-empty. Rename vector_max to vector_active
687 for same reason.
paulb8961472005-03-14 17:35:52 +0000688
paul9e92eea2005-03-09 13:39:26 +00006892005-03-09 Paul Jakma <paul.jakma@sun.com>
690
691 * command.c: Undo commit of sign warning fix and hidden command
692 in list_cmd. Sign warning is more subtle. list_cmd on its own
693 will be committed after.
paul4275b1d2005-03-09 13:42:23 +0000694 * command.c: (config_list_cmd) Don't list hidden or deprecated
695 commands, hiding these from tab completion is still to be done.
paul9e92eea2005-03-09 13:39:26 +0000696
paulb45da6f2005-03-08 15:16:57 +00006972005-03-08 Paul Jakma <paul.jakma@sun.com>
698
paul9c5d8562005-03-08 15:56:42 +0000699 * command.c: (banner_motd_file_cmd) use XSTRDUP/XFREE.
paul22085182005-03-08 16:00:12 +0000700 (no_banner_motd_cmd) use XFREE.
paul9c5d8562005-03-08 15:56:42 +0000701 (cmd_describe_command_real) sign compile warning fix
702 (cmd_complete_command_real) ditto.
703 (config_list_cmd) Don't list hidden or deprecated commands,
704 hiding these from tab completion is still to be done.
705 * command.h: cmd attr enum should start at 1.
paulb45da6f2005-03-08 15:16:57 +0000706 * vty.c: (vty_hello) suggestions from Andrew, read by line and
707 stub out trailling non-printable characters on each line thus
708 allowing us to specify VTY_NEWLINE to vty_out.
709
paul3b0c5d92005-03-08 10:43:43 +00007102005-03-08 Jeroen Massar <jeroen@unfix.org>
711
712 * vty.c: (vty_hello) display motd file, if set
713 * command.h: add char *motdfile to struct host
714 * command.c: (config_write_host) write out motdfile config
715 (banner_motd_file_cmd) new command, allow motd to be read from
716 file.
717 (no_banner_motd_cmd) free motdfile string, if needs be.
718 (cmd_init) init (struct host).motdfile. Add new motd file
719 commands.
720
hasso12f6ea22005-03-07 08:35:39 +00007212005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
722
723 * command.c: host.name might be NULL.
724 * vty.c: Fix fd leak.
725
ajs81fb3242005-02-24 16:02:53 +00007262005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
727
728 * stream.c: (stream_read_try) Log a warning message if a fatal
729 I/O error occurs.
730 (stream_fifo_new) Fix prototype.
731 * stream.h: Fix prototype for stream_fifo_new (need void arg).
732
ajs9fc7ebf2005-02-23 15:12:34 +00007332005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
734
ajscdb6ee92005-02-23 15:48:32 +0000735 * {vty.h,vty.c}: Remove vty_finish (duplicate of vty_reset).
736
7372005-02-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
738
ajs9fc7ebf2005-02-23 15:12:34 +0000739 * buffer.h: Make the struct buffer and struct buffer_data structures
740 private by moving them inside buffer.c. Add comments for all
741 functions. Rename buffer_write as buffer_put (to be more consistent
742 with the buffer_putc and buffer_putstr functions). Declare a new
743 buffer_write function that is used to write data to a file descriptor
744 and/or add it to the buffer queue. Remove unused function
745 buffer_flush_vty_all. Create a new enum typedef buffer_status_t
746 to be used as the return code for all buffer_flush* functions
747 and buffer_write.
748 * buffer.c: The struct buffer and struct buffer_data declarations
749 are now private to this file. In conjunction with that, remove
750 some unnecessary fields: struct buffer (alloc, unused_head,
751 unused_tail, length), struct buffer_data (prev).
752 (buffer_data_new) Removed: functionality incorporated into buffer_add.
753 (buffer_data_free) Removed: use a macro BUFFER_DATA_FREE instead.
754 (buffer_new) Use calloc instead of malloc + memset(zero).
755 Supply an appropriate default size if the specified size is 0.
756 (buffer_free) Eliminate code duplication by calling buffer_reset to
757 free the contents of the buffer (and remove unused code related
758 to unused_head).
759 (buffer_empty,buffer_putc,buffer_putstr) Aesthetic change (make more
760 compact).
761 (buffer_reset) Use macro BUFFER_DATA_FREE. No need to set
762 alloc and length to 0 (these fields have been removed).
763 (buffer_add) Fix scope to be static. Call XMALLOC directly instead
764 of calling removed buffer_data_new function. Simplify the logic
765 (since it's now a singly-linked list instead of doubly-linked).
766 (buffer_write) Renamed to buffer_put. Change to void, since return
767 code of 1 was meaningless. No need to adjust length field, since
768 it has been removed.
769 (buffer_putw,buffer_flush,buffer_flush_vty_all,buffer_flush_vty)
770 Remove unused functions.
771 (buffer_flush_all) Rewrite using buffer_flush_available to eliminate
772 a possible failure mode if IOV_MAX is less than the number of buffers
773 on the queue.
774 (buffer_flush_window) Incorporate logic from buffer_flush_vty.
775 Log an error message if there is a writev error.
776 (buffer_flush_available) Be more paranoid: check for case where
777 buffer is already empty. Use new ERRNO_IO_RETRY macro, and use
778 new enum for return codes. Simplify deletion logic (since it's
779 now a singly-linked list).
780 (buffer_write) New function for use with non-blocking I/O.
781 * vty.h: Replace the struct vty sb_buffer field with a fixed-size
782 (5-character) sb_buf field and an sb_len field, since using
783 a struct buffer was inappropriate for this task. Add some useful
784 comments about telnet window size negotiation.
785 * vty.c: Include <arpa/telnet.h> (no longer included by zebra.h).
786 Remove VTY_OBUF_SIZE (instead use buffer_new default size).
787 Make telnet_backward_char and telnet_space_char static const.
788 (vty_out) Replace buffer_write with buffer_put.
789 (vty_log_out) Check for I/O errors. If fatal, close the vty session.
790 Consolidate 3 separate writes into a single write call.
791 (vty_will_echo,vty_command,vty_next_line,vty_previous_line,
792 vty_end_config,vty_describe_fold,vty_clear_buf,vty_serv_sock_addrinfo,
793 vty_serv_sock_family,vty_serv_un,vty_use_backup_config,exec_timeout,
794 vty_config_write,vty_save_cwd) Fix scope to static.
795 (vty_new) Let buffer_new use its default buffer size.
796 (vty_write) Fix signature: 2nd arg should be const char *.
797 Replaced buffer_write with buffer_put.
798 (vty_telnet_option) Fix minor bug (window height or width greater than
799 255 was broken). Use sb_buf and sb_len instead of removed sb_buffer
800 (which was being used improperly).
801 (vty_read) On error, use ERRNO_IO_RETRY to decide whether it's fatal.
802 If the error is fatal, call buffer_reset so vty_close does not attempt
803 to flush the data. Use new sb_buf and sb_len instead of sb_buffer
804 to store the SB negotiation string.
805 (vty_flush) When vty->lines is 0, call buffer_flush_available instead
806 of buffer_flush_window. Look at the return code from buffer_flush
807 to detect I/O errors (and in that case, log an error message and
808 close the vty).
809 (vty_create) Fix scope to static. Initialize sb_len to 0 instead
810 of creating sb_buffer.
811 (vty_accept) Set socket nonblocking.
812 (vtysh_accept) Use new set_nonblocking function instead of calling
813 fcntl directly.
814 (vtysh_flush) New function called from vtysh_read (after command
815 execution) and from vtysh_write. This flushes the buffer
816 and reacts appropriately to the return code (by closing the vty
817 or scheduling further flushes).
818 (vtysh_read) Check whether error is fatal using ERRNO_IO_RETRY.
819 If not, just try again later. Otherwise, call buffer_reset before
820 calling vty_close (to avoid trying to flush the buffer in vty_close).
821 Fix logic to allow case where a command does not arrive atomically
822 in a single read call by checking for the terminating NUL char.
823 (vtysh_write) Use new vtysh_flush helper function.
824 (vty_close) No need to call buffer_empty, just call buffer_flush_all
825 in any case (it will check whether the buffer is empty).
826 Do not free sb_buffer (since it has been removed).
827 (vty_log_fixed) Use writev instead of write.
828 * zebra.h: Do not include <arpa/telnet.h>, since this is used only
829 by lib/vty.c.
830
hassoc3c07f22005-02-21 18:17:52 +00008312005-02-21 Vincenzo Eramo <eramo at infocom.ing.uniroma1.it>
832
833 * pqueue.[ch]: Introduce "update" function to meet ospf spf needs. It
834 will allow to update node when:
835 i) a node is inserted into the priority queue;
836 ii) a node position is modified in the priority queue;
837 * pqueue.h: Export trickle_down() function.
838
paul109ac962005-02-19 01:17:07 +00008392005-02-19 Paul Jakma <paul.jakma@sun.com>
840
841 * stream.c: (stream_new) fix dumb mistake.
842
ajsd7e2a812005-02-17 20:02:49 +00008432005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
844
ajs53270112005-02-17 20:07:22 +0000845 * stream.c: (stream_read_try) Use new ERRNO_IO_RETRY macro.
846
8472005-02-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
848
ajsd7e2a812005-02-17 20:02:49 +0000849 * network.h: Define a new ERRNO_IO_RETRY macro to test whether an I/O
850 operation should be retried. This eliminates the need to duplicate
851 the same logic testing for EAGAIN or EINTR in multiple places.
852
ajs42218e72005-02-16 16:25:39 +00008532005-02-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
854
ajs262feb12005-02-16 20:35:47 +0000855 * stream.h: Declare new function stream_read_try suitable for use
856 with non-blocking file descriptors. Indicate that stream_read
857 and stream_read_unblock are deprecated.
858 * stream.c: (stream_read_try) New function for use with non-blocking
859 I/O.
860 (stream_recvmsg) Should return -1 if the stream is too small to
861 contain the data.
862
8632005-02-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
864
ajs42218e72005-02-16 16:25:39 +0000865 * network.c: (set_nonblocking) Should check return code from
866 fcntl(F_GETFL).
867
ajsa269d612005-02-16 00:45:37 +00008682005-02-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
869
870 * network.h: Declare new function set_nonblocking. Indicate that
871 readn and writen are deprecated.
872 * network.c: (set_nonblocking) New function to make a file descriptor
873 non-blocking, since it seems silly to have fcntl calls sprinkled
874 throughout the code.
875
paul1dd13d42005-02-14 23:49:09 +00008762005-02-14 Paul Jakma <paul.jakma@sun.com>
paulf2e6c422005-02-12 14:35:49 +0000877
878 * stream.h: Unsigned long updated to size_t
879 * stream.c: ditto
paul050c0132005-02-14 23:47:47 +0000880 * stream.h: Add stream_copy, stream_dup, stream_recvmsg.
881 Add comment describing struct stream abstraction, and various
882 other comments.
883 Deprecate several unsafe/ambigious macros.
884 Add STREAM_WRITEABLE and STREAM_READABLE.
885 Add (stream_getl_from) for symmetry.
886 Update stream_forward_{endp,getp} to use size_t offset.
887 Make stream data a 0 length array, rather than a seperate malloc.
888 * stream.c: Add consistency checks. Update to follow stream.h
889 changes.
890 (stream_new) Alloc stream+data in one go.
891 (stream_copy) new function, copy a stream.
892 (stream_dup) new function, dup a stream.
893 (stream_recvmsg) new function, recvmsg data into a stream.
894 (stream_empty) no need to check getp == 0.
paulf2e6c422005-02-12 14:35:49 +0000895
paul9985f832005-02-09 15:51:56 +00008962005-02-09 Paul Jakma <paul.jakma@sun.com>
897
898 * stream.h: Remove putp. Update reference to putp with endp.
899 Add stream_forward_endp, which daemons were doing manually.
900 Rename stream_forward to stream_forward_getp.
901 stream.c: Remove/update references to putp.
902 introduce stream_forward_endp.
903
ajs548e6f72005-02-08 15:57:25 +00009042005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
905
906 * zebra.h: Change macro definitions SET_FLAG and UNSET_FLAG
907 to use compound assignment operators (aesthetic change).
908
ajs1e221352005-02-03 16:42:40 +00009092005-02-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
910
ajsc4c7d0c2005-02-03 19:22:05 +0000911 * log.c: (zlog_signal,zlog_backtrace_sigsafe) Eliminate use of fileno()
912 since it is not async-signal-safe.
913 (_zlog_assert_failed) Rewrite crashlog logic more compactly.
914 (zlog_set_file,zlog_reset_file,zlog_rotate) Update logfile_fd
915 for use in signal handler.
916
9172005-02-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
918
ajs1e221352005-02-03 16:42:40 +0000919 * log.c: (syslog_sigsafe) Reduce scope of syslog_fd: it is accessed
920 inside this function only.
921 (open_crashlog) New function to open /var/tmp/quagga.<daemon>.crashlog
922 with flags O_WRONLY|O_CREAT|O_EXCL to save some crash info.
923 (zlog_signal,_zlog_assert_failed) Increase logging priority from
924 LOG_ERR to LOG_CRIT. If no file logging is configured, try to use
925 open_crashlog to create a crash logfile.
926 (zlog_backtrace_sigsafe) If a crashlog file descriptor is open,
927 dump a backtrace to that file.
928
ajs847947f2005-02-02 18:38:48 +00009292005-02-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
930
931 * if.h: Declare if_flag_dump.
932
ajs6a52d0d2005-01-30 18:49:28 +00009332005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
934
935 * daemon.c: (daemon) Replace perror with zlog_err.
936 * vty.c: (vty_serv_un) Replace perror with zlog_err.
937
ajs3b8b1852005-01-29 18:19:13 +00009382005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
939
940 * buffer.h: Fix comment on buffer_getstr to reflect that it now
941 uses XMALLOC.
942 * buffer.c: (buffer_getstr) Use XMALLOC(MTYPE_TMP) instead of malloc.
943 * filter.c: (access_list_remark,ipv6_access_list_remark) Use
944 argv_concat instead of buffer_getstr.
945 * if.c: (interface_desc) Use argv_concat instead of buffer_getstr.
946 * plist.c: (ip_prefix_list_description,ipv6_prefix_list_description)
947 Use argv_concat instead of buffer_getstr.
948
ajsf6834d42005-01-28 20:28:35 +00009492005-01-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
950
ajsafb8b602005-01-28 20:41:07 +0000951 * lib/buffer.h: Document behavior of buffer_getstr function.
952 * lib/buffer.c: (buffer_getstr) Fix bug: must handle case where
953 the string extends beyond the head struct buffer_data.
954
9552005-01-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
956
ajsf6834d42005-01-28 20:28:35 +0000957 * lib/command.h: Document behavior of argv_concat function.
958 * lib/command.c: (argv_concat) Calculate total string length first so
959 we can call malloc just once (instead of realloc'ing to add each
960 string element).
961 (do_echo,config_logmsg) Allow for possible NULL return value from
962 argv_concat.
963
hasso13bfca72005-01-23 21:42:25 +00009642005-01-23 Hasso Tepper <hasso at quagga.net>
965
966 * lib/command.[ch]: Make node_parent() function nonstatic. vtyh.c will
967 use it as well.
968
ajs31364272005-01-18 22:18:59 +00009692005-01-18 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
970
971 * log.h: Test for SA_SIGINFO to see whether zlog_signal takes final
972 two args (siginfo and program_counter).
973 * log.c: (hex_append) Include this function only if SA_SIGINFO or
974 HAVE_GLIBC_BACKTRACE is defined.
975 (zlog_signal) Final two args (siginfo and program_counter) now
976 depend on whether SA_SIGINFO is defined on this platform.
977 * sigevent.c: (program_counter) Do not include this function if
978 SA_SIGINFO is not defined on this platform.
979 (exit_handler,core_handler) Test for SA_SIGINFO to decide whether
980 2nd & 3rd arguments are present and to decide how to invoke
981 zlog_signal.
982 (trap_default_signals) Test for SA_SIGINFO and invoke sigaction
983 appropriately.
984
ajs239c26f2005-01-17 15:22:28 +00009852005-01-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
986
987 * log.h: Change prototype for zlog_backtrace_sigsafe to take additional
988 program_counter argument.
989 * log.c: (zlog_backtrace_sigsafe) Add additional program_counter
990 argument. If it is non-NULL, use backtrace_symbols_fd to resolve
991 the address.
992 (zlog_signal) Call zlog_backtrace_sigsafe with additional
993 program_counter argument.
994
hasso87d683b2005-01-16 23:31:54 +00009952005-01-17 Hasso Tepper <hasso at quagga.net>
996
997 * command.[ch], vty.c: cmd_execute_command() function must not attempt
998 to walk up in the node tree if called from vtysh. Different daemons
999 might have commands with same syntax in different nodes (for example
1000 "router-id x.x.x.x" commands in zebra/ospfd/ospf6d daemons).
1001
ajscb585b62005-01-14 17:09:38 +000010022005-01-14 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1003
1004 * command.c (print_version): Do not bother even to examine host.name,
1005 since it is always NULL when this function is called from main.
1006
gdtf867d322005-01-14 15:47:33 +000010072005-01-14 Greg Troxel <gdt@fnord.ir.bbn.com>
1008
1009 * command.c (print_version): Don't print host.name if it is NULL.
1010 Fixes segfault on Solaris reported by Goetz von Escher <goetz@open.ch>
1011
ajse22f5512005-01-12 16:18:17 +000010122005-01-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1013
ajs40abf232005-01-12 17:27:27 +00001014 * sigevent.c: (trap_default_signals) Use the SA_SIGINFO flag to
1015 pass additional siginfo_t and ucontext_t arguments to core_handler
1016 and exit_handler.
1017 (core_handler,exit_handler) Now invoked with 3 arguments (using
1018 SA_SIGINFO). Pass additional info to zlog_signal.
1019 (program_counter) New function to find program counter in ucontext_t,
1020 needs to be enhanced to support more platforms (currently works only
1021 on Linux/x86).
1022 * log.h: Change the zlog_signal prototype to add new arguments
1023 siginfo_t * and program_counter.
1024 * log.c: (zlog_signal) Add new arguments siginfo and program_counter.
1025 Include si_addr and program counter (if non-NULL) in message.
1026 And remove #ifdef HAVE_GLIBC_BACKTRACE around hex_append, since
1027 that is now used to render the si_addr and PC pointers.
1028
10292005-01-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1030
ajse22f5512005-01-12 16:18:17 +00001031 * zebra.h: If not C99 and no va_copy macro available, fall back to
1032 memcpy (solves a build problem on FreeBSD 4.x).
1033
ajsb99760a2005-01-04 16:24:43 +000010342005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1035
1036 * zebra.h: Define ZCMSG_FIRSTHDR appropriately based on whether
1037 config.h indicates HAVE_BROKEN_CMSG_FIRSTHDR (as determined
1038 by the configure test program).
1039 * sockopt.c: (getsockopt_cmsg_data) Use ZCMSG_FIRSTHDR instead
1040 of CMSG_FIRSTHDR.
1041
hassocba8a602005-01-02 18:51:01 +000010422005-01-02 Hasso Tepper <hasso at quagga.net>
1043
1044 * command.c: Revert int -> unsigned int fixes in
1045 cmd_describe_command_real() and cmd_complete_command_real(). index can
1046 be actually negative and it caused crash with "do<TAB>" in vty.
1047
gdt1d69fdf2004-12-29 18:53:30 +000010482004-12-29 Greg Troxel <gdt@poblano.ir.bbn.com>
1049
gdtd44debe2004-12-29 20:06:23 +00001050 * sockopt.c (getsockopt_ipv4_ifindex): Document calling
1051 convention. Beef up comments. Handle the case where the cmsghdr
1052 has a zero controllen, or more specifically when the wanted option
1053 is not present. This is needed for Solaris 8, and in general for
1054 any platform for which configure finds a method and it can fail.
1055 Mark some changes with XXX to be cleaned up post 0.98.
1056
ajsaf04bd72004-12-28 17:00:12 +000010572004-12-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1058
ajs1d75c8c2004-12-28 21:43:17 +00001059 * sockopt.c: (setsockopt_ipv4_ifindex) Improve error message.
1060 When neither IP_PKTINFO nor IP_RECVIF is defined, make return value
1061 deterministic (-1).
1062
10632004-12-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1064
ajsaf04bd72004-12-28 17:00:12 +00001065 * thread.c: (funcname_thread_add_timer_msec) Reduce overflow risk.
1066
paul4ba9b922004-12-21 22:34:58 +000010672004-12-21 Paul Jakma <paul.jakma@sun.com>
1068
1069 * if.h: Add more 'non-generic' IFF_ flags.
1070 * if.c: IFF_NOXMIT/IFF_VIRTUAL interfaces are 'loopback like'
paul0e43a2b2004-12-22 00:15:34 +00001071 * stream.c: Dont allocate streams with 0 sized data buffers
paul4ba9b922004-12-21 22:34:58 +00001072
ajs202d08c2004-12-17 20:50:00 +000010732004-12-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajs2885f722004-12-17 23:16:33 +00001074
1075 * command.c: (do_echo) Added new "echo" command, useful for
1076 watchdog pinging to make sure the daemon is responsive.
1077
10782004-12-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajs202d08c2004-12-17 20:50:00 +00001079
1080 * pid_output.c: (pid_output_lock) Eliminate static function, and just
1081 use the #ifdef to decide which version of the function to include.
1082 This eliminates a compilation problem with gcc4. And fix the
1083 non-fcntl version so that it actually compiles. Exit with
1084 status 1 instead of -1 on error.
1085
ajs81fc57c2004-12-15 17:41:14 +000010862004-12-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1087
1088 * sigevent.c: (trap_default_signals) Ignore SIGPIPE instead of exiting.
1089
ajs3378d202004-12-10 22:43:17 +000010902004-12-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1091
1092 * log.c: (zlog_signal,_zlog_assert_failed) Change logging level back to
1093 LOG_ERR instead of LOG_EMERG.
1094
ajsc3324c62004-12-09 17:26:31 +000010952004-12-09 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1096
1097 * log.c: (hex_append) No need to include this function if
1098 HAVE_GLIBC_BACKTRACE is not defined.
1099
ajsb9e70282004-12-08 17:14:45 +000011002004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1101
1102 * prefix.c: (prefix_copy) Error message before abort should
1103 have severity LOG_ERR, not LOG_INFO.
1104 * memory.c: (mtype_log) Log level should be LOG_DEBUG, not LOG_INFO.
1105
ajs274a4a42004-12-07 15:39:31 +000011062004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1107
ajs8ddca702004-12-07 18:53:52 +00001108 * {smux.c,zclient.c}: Change level of debug messages to LOG_DEBUG.
1109
11102004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1111
ajs82146b82004-12-07 17:15:55 +00001112 * command.c: (config_write_host) Note that "log trap" is deprecated
1113 when writing out the config.
1114
11152004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1116
ajs274a4a42004-12-07 15:39:31 +00001117 * log.h: Replace struct zlog flags and maskpri fields with maxlvl
1118 array to support individual logging levels for each destination.
1119 Remove the 2nd argument to openzlog since the default logging config
1120 should be standardized inside the library. Replaced the
1121 zlog_set_flag and zlog_reset_flag functions with zlog_set_level.
1122 And zlog_set_file now requires an additional log_level argument.
1123 Declare zlog_proto_names for use inside command.c in the
1124 "show logging" command. Added defines useful for command
1125 construction.
1126 * log.c: (vzlog) Decide where to send the message based on the
1127 individual logging levels configured for each destination.
1128 Remove support for ZLOG_STDERR since it was never actually used.
1129 Support record-priority for terminal monitors.
1130 (zlog_signal,zlog_backtrace_sigsafe) Support destination-specific
1131 logging levels. Remove stderr support (was never used). Added
1132 support for terminal monitor logging.
1133 (_zlog_assert_failed) Increase message severity to LOG_EMERG.
1134 (openzlog) Remove 2nd argument since default config should be
1135 standardized in library. By default, terminal monitoring
1136 is set to debug, and all other logging is disabled.
1137 (zlog_set_flag,zlog_reset_flag) Removed.
1138 (zlog_set_level) New function to replace zlog_set_flag and
1139 zlog_reset_flag. Supports destination-specific logging levels.
1140 (zlog_set_file,zlog_reset_file) Support file-specific logging level.
1141 (zlog_rotate) Log an error message if fopen fails, and support
1142 new file-specific logging level.
1143 * command.h: Change DEFUN_CMD_FUNC_DECL and DEFUN_CMD_FUNC_TEXT so that
1144 command functions will be static instead of global. Remove
1145 declarations for config_exit and config_help. Define new macros
1146 DEFUNSH_ATTR, DEFUNSH_HIDDEN, and DEFUNSH_DEPRECATED so we can
1147 have deprecated commands in vtysh. Similarly, for completeness,
1148 define macros ALIAS_SH, ALIAS_SH_HIDDEN, and ALIAS_SH_DEPRECATED.
1149 Also, fix bug in ALIAS_ATTR macro (didn't matter because it
1150 was never used).
1151 * command.c: Make many functions static instead of global.
1152 (facility_name,facility_match,level_match) New functions
1153 to support enhanced destination-specific logging levels.
1154 (config_write_host) Support new destination-specific logging levels.
1155 (config_logmsg) Added new "logmsg" command to help test logging
1156 system.
1157 (show_logging) Added "show logging" command to show the current
1158 configuration of the logging system.
1159 (config_log_stdout_level) Support explicit stdout logging level.
1160 (no_config_log_stdout) Now takes optional LEVEL arg.
1161 (config_log_monitor,config_log_monitor_level,no_config_log_monitor)
1162 New commands creating new "log monitor" commands to set terminal
1163 monitoring log level.
1164 (config_log_file_level) Support explicit file logging level.
1165 (config_log_syslog_level) Support explicit syslog logging level.
1166 (config_log_facility,no_config_log_facility) Implement new
1167 "log facility" command.
1168 (cmd_init) Add hooks for new commands: "show logging", "logmsg",
1169 "log stdout <level>", "log monitor", "log monitor <level>",
1170 "no log monitor", "log file <filename> <level>",
1171 "no log file <filename> <level>", "log syslog <level>",
1172 "log facility", and "no log facility".
1173 * vty.h: Added a "level" argument to vty_log so it can support
1174 "log record-priority". Declare new function vty_log_fixed for
1175 use in signal handlers.
1176 * vty.c: (vty_log,vty_log_out) Added a "level" argument to support
1177 "log record-priority" for vty terminal monitors.
1178 (vty_down_level) Use config_exit_cmd.func instead of calling
1179 config_exit directly (since command functions will now be static
1180 instead of global).
1181 (vty_log_fixed) New function to send terminal monitor messages
1182 from inside a signal handler.
1183
ajs887c44a2004-12-03 16:36:46 +000011842004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1185
ajs5e764772004-12-03 19:03:33 +00001186 * log.h: Document appropriate use of syslog logging priorities
1187 inside quagga.
1188
11892004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1190
ajs56f20692004-12-03 17:40:31 +00001191 * command.h: Remove fields log_stdout and log_syslog from struct host,
1192 since they are just trying to duplicate information in the
1193 zlog_default structure. Note that this fixes a bug since those
1194 fields were not registering any logging that was established
1195 in the initial call to openzlog (this affects only the zebra and
1196 ospf6d daemons). It is probably a bug to turn on any logging by
1197 default in the call to openzlog.
1198 * command.c: (config_write_host) Get logging info from zlog_default
1199 instead of now-removed fields host.log_stdout and host.log_syslog.
1200 (config_log_stdout,no_config_log_stdout) Do not set now-removed field
1201 host.log_stdout, since this info is recorded in zlog_default.
1202 (config_log_file) Use XSTRDUP (instead of strdup) to set host.logfile.
1203 (config_log_syslog,config_log_syslog_facility,no_config_log_syslog)
1204 Do not set now-removed field host.log_syslog, since this info is
1205 recorded in zlog_default.
1206
12072004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1208
ajs887c44a2004-12-03 16:36:46 +00001209 * version.h.in: Remove declaration for pid_output_lock, this function
1210 is now static, not global.
1211 * pid_output.c: (pid_output_lock) This function should be static, not
1212 global. And remove "old umask" error message, since it was really
1213 an unimportant debug message, not an error.
1214 (pid_output) Need to declare static function pid_output_lock.
1215
ajs7d149b82004-11-28 23:00:01 +000012162004-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1217
1218 * log.h: Remove several unused fields from struct zlog. Add comments
1219 for other fields, and add one new field syslog_options that is
1220 used in the new syslog_sigsafe implementation.
1221 * log.c: (syslog_sigsafe) New function to send syslog messages in
1222 an async-signal safe way that can be used inside a signal handler.
1223 (syslog_connect) New function to connect to syslog daemon inside a
1224 signal handler. This function supports only systems where /dev/log
1225 is a unix datagram socket (e.g. not Solaris).
1226 (zlog_signal) Call syslog_sigsafe if syslog logging is enabled.
1227 (zlog_backtrace_sigsafe) Call syslog_sigsafe if syslog logging is
1228 enabled.
1229 (openzlog) Save syslog_options for use in syslog_sigsafe.
1230 (num_append) Fix bug: handle 0 properly.
1231 (hex_append) New function to print a u_long in hex format.
1232
hasso2557aed2004-11-28 21:16:20 +000012332004-11-28 Hasso Tepper <hasso at quagga.net>
1234
1235 * command.h: DEFUN_DEPRECATED passes attribute to DEFUN as well.
1236
ajsd1c51d72004-11-26 14:14:30 +000012372004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1238
ajs48d6c692004-11-26 20:52:59 +00001239 * log.c, log.h, memory.c: Change function name from zlog_backtrace_safe
1240 to the more self-explanatory zlog_backtrace_sigsafe.
1241
12422004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1243
ajs5b85fac2004-11-26 19:36:42 +00001244 * debug.[ch]: Remove unused files.
1245 * Makefile.am: Remove references to debug.c and debug.h
1246
12472004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1248
ajs063ee522004-11-26 18:11:14 +00001249 * log.c: (zlog_backtrace) New function to log a backtrace.
1250 (zlog_backtrace_safe) Log a backtrace in an async-signal-safe way.
1251 Unfortunately, this function does not support syslog logging yet.
1252 (zlog_signal) Move backtrace code into separate function
1253 zlog_backtrace_safe.
1254 (_zlog_assert_failed) Call zlog_backtrace before aborting.
1255 * log.h: Declare new functions zlog_backtrace and zlog_backtrace_safe.
1256 * memory.c: (zerror) Call zlog_backtrace before aborting.
1257
12582004-11-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1259
ajsd1c51d72004-11-26 14:14:30 +00001260 * Makefile.am: Need to add zassert.h to pkginclude_HEADERS.
1261
ajse5879ca2004-11-25 16:07:53 +000012622004-11-25 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1263
ajs4cf0d0d2004-11-25 17:14:34 +00001264 * zebra.h: If not C99 and there's no va_copy macro and there is
1265 a __va_copy macro, define va_copy as __va_copy.
1266
12672004-11-25 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1268
ajse5879ca2004-11-25 16:07:53 +00001269 * pid_output.c: (pid_output_lock) Fix 2 bugs: when locking, should
1270 set l_whence to SEEK_SET, not SEEK_END. And after writing new
1271 pid to file, must ftruncate to eliminate any extraneous bytes left
1272 over from the last time a pid was written.
1273
ajscee3df12004-11-24 17:14:49 +000012742004-11-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1275
1276 * zassert.h: New header file to declare a quagga-specific assert macro.
1277 * log.c: (_zlog_assert_failed) New function called when assert fails
1278 to log the error and abort.
1279 * zebra.h: Include "zassert.h" instead of <assert.h>.
1280 * regex.c: Include "zassert.h" instead of <assert.h>.
1281
ajsd246bd92004-11-23 17:35:08 +000012822004-11-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1283
ajs59a06a92004-11-23 18:19:14 +00001284 * sigevent.c: (signal_init) Set up some default signal handlers
1285 so that processes will issue an error message before terminating
1286 or dumping core.
1287 (trap_default_signals) New function to set up signal handlers
1288 for various signals that may kill the process.
1289 (exit_handler) Call zlog_signal, then _exit.
1290 (core_handler) Call zlog_signal, then abort.
1291 * log.h: Declare new function zlog_signal.
1292 * log.c: (zlog_signal) New function to log information about
1293 a received signal before the process dies. Try to log a
1294 backtrace also.
1295 (quagga_signal_handler,signal_set) Should be static.
1296
12972004-11-23 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1298
ajsd246bd92004-11-23 17:35:08 +00001299 * log.c: (vzlog) Take a single va_list argument and use va_copy
1300 as necessary for multiple traversals.
1301 (zlog) Pass only one va_list to vzlog.
1302 (zlog_*,plog_*) Use a macro for boilerplate code; pass only one
1303 va_list to vzlog.
1304 (zlog_set_file) Remove unused 2nd argument (flags).
1305 (zlog_save_cwd,zlog_get_cwd,zlog_free_cwd) Remove unused functions.
1306 * log.h: Remove ZLOG_*_INDEX defines (no longer used).
1307 Remove unused 2nd argument from zlog_set_file prototype.
1308 Fix prototype for zlog_rotate.
1309 * command.c: (config_log_file) Remove unused 2nd arg to zlog_set_file.
1310 * vty.c: (vty_out) Fix stdarg usage to perform multiple traversals
1311 properly.
1312 (vty_log) Must use va_copy for multiple traversals of va_list arg.
1313
ajsca359762004-11-19 23:40:16 +000013142004-11-19 David Young <dyoung@pobox.com>
1315
1316 * log.c: (safe_strerror) New function: safe wrapper for strerror.
1317
ajsff29bb32004-11-19 18:29:22 +000013182004-11-19 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1319
1320 * sockopt.c: (setsockopt_so_recvbuf) Stop error message from being
1321 printed every time.
1322
ajsf858e492004-11-16 14:25:30 +000013232004-11-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1324
1325 * memory.h: Fix prototype for memory_init().
1326 * memory.c: Declare many functions and data structures static instead
1327 of global. Fix prototype for memory_init().
1328
gdt69e13252004-11-15 18:51:15 +000013292004-11-15 Greg Troxel <gdt@fnord.ir.bbn.com>
1330
1331 * sockopt.h: Avoid CMSG_ALIGN, and declare that sizes are without
1332 alignment (users should use CMSG_SPACE).
1333
1334 * zebra.h: Rationalize CMSG_SPACE compatibility defines. Warn if
1335 asumming 4-byte alignment, since this isn't safe.
1336
ajs7fa25ff2004-11-15 16:12:32 +000013372004-11-15 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1338
1339 * memory.c: (zerror) Use zlog_err instead of fprintf to stderr.
1340 Instead of exiting, log currenty memory usage and then abort.
1341 (log_memstats) New function to log memory statistics, called by
1342 zerror.
1343 (show_memory_all) Loop over new mlists array instead of calling
1344 show_memory_vty separately for each memory_list.
1345
paulb86718e2004-11-08 17:34:07 +000013462004-11-08 Paul Jakma <paul@dishone.st>
paulb35e5b42004-11-07 22:27:27 +00001347
paul2265d202004-11-08 15:43:21 +00001348 * buffer.c: Add missing include of log.h.
1349 (buffer_flush_available) written is compared against
1350 mostly against unsigned types, only for the writev do we need
1351 signed compare, so declare it as size_t and cast it to ssize_t
1352 just for the error compare when we've called writev.
1353 * buffer.h: Add comment that buffer data sizes really should be
1354 size_t.
1355
13562004-11-07 Paul Jakma <paul@dishone.st>
1357
1358 * version.h.in: add autoconf configure_input output var
paulb35e5b42004-11-07 22:27:27 +00001359
ajs49ff6d92004-11-04 19:26:16 +000013602004-11-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1361
ajs5a646652004-11-05 01:25:55 +00001362 * vty.h: Remove fields in struct vty that were related to VTY_CONTINUE
1363 capabilities (that were used only in bgpd/bgp_route.c and are now
1364 removed). Also remove some other fields that were not being
1365 used at all.
1366 * vty.c: (vty_execute) Do not test for obsolete status values VTY_START
1367 and VTY_CONTINUE.
1368 (vty_read) Remove calls to vty->output_func since that was part
1369 of the VTY_CONTINUE infrastructure that has been removed.
1370 (vty_flush) Remove code to support VTY_START and VTY_CONTINUE.
1371 (vty_close) Remove code to cancel vty->t_output thread, since that
1372 thread was never actually used.
1373
13742004-11-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
1375
ajs49ff6d92004-11-04 19:26:16 +00001376 * vty.c: Vtysh connections to daemons should use buffering.
1377 (vty_out) Remove exception for vty_shell_serv, just use buffer_write.
1378 (vty_new) Increase output buffer size to 4096 rounded up to a
1379 multiple of pagesize.
1380 (vtysh_read) After command has been executed and all output buffered,
1381 call buffer_flush_available and schedule further writes if the
1382 buffers are not yet empty.
1383 (vtysh_write) New function to flush output to vtysh when the socket
1384 is writeable.
1385 (vty_event) Added new VTYSH_WRITE event for flushing buffers to vtysh
1386 clients. Also, should save read thread in vty->t_read so the
1387 thread can be cancelled in vty_close.
1388 * buffer.h: In struct buffer_data, remove unused "parent" field.
1389 Convert "unsigned char *data" to "unsigned char data[0]" to save
1390 a malloc. Declare new function buffer_flush_available that works
1391 with non-blocking sockets.
1392 * buffer.c: (buffer_data_new) Use a single malloc now that data is
1393 a variable-size array at end of structure.
1394 (buffer_data_free) Just a single free now that data is part of the
1395 structure.
1396 (buffer_write) Simplify the logic to make behavior more transparent.
1397 (buffer_flush) Decrease b->length as data is written out.
1398 (buffer_flush_vty_all) Decrease b->length as buffers are freed.
1399 (buffer_flush_vty) Decrease b->length as data is written out.
1400 (buffer_flush_available) New function to flush non-blocking sockets.
1401
paule064d6d2004-11-01 08:59:21 +000014022004-11-01 Paul Jakma <paul@dishone.st>
1403
1404 * sockopt.c: (setsockopt_pktinfo) remove, its unused.
1405
paul75e15fe2004-10-31 02:13:09 +000014062004-10-31 Paul Jakma <paul@dishone.st>
1407
1408 * vty.c: As per Andrew's suggestions..
1409 (vty_serv_un) remove flags.
1410 (vtysh_accept) close socket if we cant set NONBLOCK. Add flags.
paul66cbbce2004-10-31 16:15:33 +00001411 * keychain.c: Convert some more strtoul users to VTY_GET_INTEGER.
paul9d11a192004-10-31 16:19:24 +00001412 * memory.h: Add MTYPE_THREAD_FUNCNAME and MTYPE_THREAD_STATS
1413 * thread.c: Update stats and funcname alloc/free to use previous
paul039b9572004-10-31 16:43:17 +00001414 specific memory type defines. Use XCALLOC and sizeof the type,
1415 not the pointer.
paul70e149e2004-10-31 16:29:50 +00001416 * smux.c: fix int to size_t compile warnings
paul75e15fe2004-10-31 02:13:09 +00001417
pauldccfb192004-10-29 08:29:36 +000014182004-10-29 Paul Jakma <paul@dishone.st>
1419
1420 * vty.c: Move setting of sock to O_NONBLOCK from vty_serv_un
1421 to vtysh_accept, where sock is the actual fd we wanted to set to
1422 O_NONBLOCK, ie the /connected/ vtysh unix socket.
1423
hasso508ec912004-10-23 14:26:49 +000014242004-10-23 Hasso Tepper <hasso at quagga.net>
1425
1426 * zclient.c: Unbreak reading interface update message. Might fix
1427 blocker bugzilla #109.
1428
paul23b9c612004-10-22 11:51:57 +000014292004-10-22 Paul Jakma <paul@dishone.st>
paul7d9c6e52004-10-22 10:54:39 +00001430
1431 * sockopt.c: (getsockopt_ipv4_ifindex) no ifindex should be 0, not
paul23b9c612004-10-22 11:51:57 +00001432 -1.
1433 (setsockopt_pktinfo) unexported
1434 * sockopt.h: Cleanup SOCKOPT_CMSG defines a bit. Add a throwaway
1435 define for SOPT_SIZE_CMSG_IFINDEX_IPV4 for systems which have
paul4ccb2c42004-10-22 22:52:33 +00001436 neither IP_RECVIF nor IP_PKTINFO (eg openbsd), thanks to Rivo
1437 Nurges for highlighting problem and fix.
paul4927cf02004-10-22 16:55:10 +00001438 Fix elif that should be an else.
paul406d6712004-10-22 12:27:44 +00001439 * command.h: Cleanup the defines a bit, add helper defines and
1440 collapse all defines to use those. Add an attribute field to
1441 cmd_element to support, eg hidden or deprecated commands, add
1442 defun defines for such. All that's left to do is add logic
1443 to command.c to check these attributes... ;)
paulaf0d97e2004-10-22 23:24:43 +00001444 * zebra.h: reserve ZEBRA_ROUTE_HSLS
paul7d9c6e52004-10-22 10:54:39 +00001445
hasso6590f2c2004-10-19 20:40:08 +000014462004-10-19 Hasso Tepper <hasso at quagga.net>
1447
1448 * version.h.in: Define copyright string QUAGGA_COPYRIGHT.
1449 * print_version.c: Remove. print_version () function moved to
1450 command.[c|h].
1451 * command.c: Use QUAGGA_COPYRIGHT.
1452 * Makefile.am: Remove useless version.c and print_version.c files.
1453
hasso3fb9cd62004-10-19 19:44:43 +000014542004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
1455
1456 * zclient.c: (zebra_interface_address_read) If the destination address
1457 is encoded as all zeroes, load it as a NULL pointer.
1458 * if.h: Add comment describing struct connected destination field
1459 and indicating that it may be NULL. Define macros
1460 CONNECTED_DEST_HOST and CONNECTED_POINTOPOINT_HOST to help
1461 with PtP logic (distinguish between host and subnet addressing).
1462 * if.c: (if_lookup_address) Fix PtP logic to handle subnet addressing
1463 properly,
1464 (connected_lookup_address) ditto.
1465 (connected_add_by_prefix) Handle case where destination is NULL,
1466 * prefix.[c|h]: New functions ipv4_network_addr and
1467 ipv4_broadcast_addr.
1468
hassoddd85ed2004-10-13 08:18:07 +000014692004-10-13 Hasso Tepper <hasso at quagga.net>
1470
1471 * command.c: Make CMD_ERR_NOTHING_TODO nonfatal if reading
1472 configuration from file. Fixes critical bugzilla #113.
hassoc75105a2004-10-13 10:33:26 +00001473 * smux.c, smux.h: Remove all defaults to initialize smux connection to
1474 snmpd by default even if not configured to do so. "smux peer OID
1475 <password>" initializes now connection and "no smux peer" terminates
1476 it.
hassoddd85ed2004-10-13 08:18:07 +00001477
paul42d49862004-10-13 05:22:18 +000014782004-10-13 Paul Jakma <paul@dishone.st>
1479
1480 * (global) more const'ification.
1481 * sockunion.c: (sockunion_su2str) buffer should be sized
1482 SU_ADDRSTRLEN.
1483 (sockunion_log) do not return stack variables, strdup buf before
1484 return.
1485 * vty.h: Fix up the VTY_GET_INTEGER macros. Testing caller supplied
1486 values against ULONG_MAX is daft, when caller probably has passed
1487 a type that can not hold ULONG_MAX. use a temporary long instead.
1488 Add VTY_GET_LONG, make VTY_GET_INTEGER_RANGE use it, make
1489 VTY_GET_INTEGER a define for VTY_GET_INTEGER_RANGE.
1490
hassoa1494112004-10-11 12:53:17 +000014912004-10-11 Hasso Tepper <hasso at quagga.net>
1492
1493 * command.h: Sync DEFUNSH with other macros.
1494 * sockunion.c, sockunion.h: More const strings.
1495
paul9076fbd2004-10-11 09:40:58 +000014962004-10-11 Paul Jakma <paul@dishone.st>
1497
1498 * thread.c: (funcname_thread_add_timer)
1499 (funcname_thread_add_timer_msec) Fix mistakes from last change.
1500 Pointed out by Liu Xin in [quagga-dev 1609].
paulc9eca012004-10-11 11:28:44 +00001501 * if.h: mtu's should be unsigned.
1502 * routemap.{c,h}: const char updates
1503 * smux.{c,h}: ditto
paul9076fbd2004-10-11 09:40:58 +00001504
paul9035efa2004-10-10 11:56:56 +000015052004-10-10 Paul Jakma <paul@dishone.st>
paul47ca2952004-10-10 08:03:18 +00001506
1507 * version.h.in: (pid_output*) add const qualifier.
paul9035efa2004-10-10 11:56:56 +00001508 * command.h: Change DEFUN func to take const char *[] rather
1509 than char **, to begin process of fixing compile warnings in lib/.
1510 Nearly all other changes in this commit follow from this change.
1511 * buffer.{c,h}: (buffer_write) pointer-arithmetic is gccism, take
1512 const void * and cast an automatic const char *p to it.
1513 (buffer_putstr) add const
1514 * command.c: (zencrypt) const qualifier
1515 (cmd_execute_command_real) ditto
1516 (cmd_execute_command_strict) ditto
1517 (config_log_file) ditto.
1518 Fix leak of getcwd() returned string.
1519 * memory.{c,h}: Add MTYPE_DISTRIBUTE_IFNAME for struct dist ifname.
1520 * distribute.{c,h}: Update with const qualifier.
1521 (distribute_free) use MTYPE_DISTRIBUTE_IFNAME
1522 (distribute_lookup) Cast to char *, note that it's ok.
1523 (distribute_hash_alloc) use MTYPE_DISTRIBUTE_IFNAME.
1524 (distribute_get) Cast to char *, note that it's ok.
1525 * filter.c: Update with const qualifier.
1526 * if.{c,h}: ditto.
1527 * if_rmap.{c,h}: ditto.
1528 (if_rmap_lookup) Cast to char *, note that it's ok.
1529 (if_rmap_get) ditto.
1530 * log.{c,h}: Update with const qualifier.
1531 * plist.{c,h}: ditto.
1532 * routemap.{c,h}: ditto.
1533 * smux.{c,h}: ditto. Fix some signed/unsigned comparisons.
1534 * sockopt.c: (getsockopt_cmsg_data) add return for error case.
1535 * vty.c: Update with const qualifier.
1536
hasso27a43a82004-10-08 06:29:12 +000015372004-10-08 Hasso Tepper <hasso at quagga.net>
1538
1539 * routemap.c, routemap.h: Make some string arguments const.
1540
paul5973ee72004-10-08 01:36:54 +000015412004-10-05 Paul Jakma <paul@dishone.st>
1542
1543 * version.h.in: print_version declaration is here, not in automake
1544 generated version.h.
1545
hassoea8e9d92004-10-07 21:32:14 +000015462004-10-08 Hasso Tepper <hasso at quagga.net>
1547
1548 * command.c, command.h: Make argument of cmd_make_strvec function
1549 const.
1550 * command.c: Make hostname commands usable in vtysh again.
1551
hasso6ad96ea2004-10-07 19:33:46 +000015522004-10-07 Hasso Tepper <hasso at quagga.net>
1553
1554 * command.c, pid_output.c, print_version.c, vty.c, vty.h: Make more
1555 strings const.
1556
hasso8c328f12004-10-05 21:01:23 +000015572004-10-05 Hasso Tepper <hasso at quagga.net>
1558
1559 * *.[c|h]: Make many strings cons and a lot of int -> unsigned int
1560 changes to fix warnings.
1561
paul96e27c92004-10-05 14:33:43 +000015622004-10-05 Paul Jakma <paul@dishone.st>
1563
1564 * sockopt.{c,h}: add sockopt_iphdrincl_swab_{htosys,systoh},
1565 functions to change byte order between system IP_HDRINCL order
1566 and host order.
paul98c91ac2004-10-05 14:57:50 +00001567 * thread.c: (funcname_thread_add_timer_timeval) new function, add
1568 timer at specified timeval.
1569 (funcname_thread_add_timer) use funcname_thread_add_timer_timeval.
1570 (funcname_thread_add_timer_msec) ditto
paul96e27c92004-10-05 14:33:43 +00001571
hassob04c6992004-10-04 19:10:31 +000015722004-10-04 Hasso Tepper <hasso at quagga.net>
1573
1574 * memory.c, memory.h: Make char * argument of strdup functions const.
1575 * prefix.c, prefix.h: Make many arguments const. Reorder stuff in
1576 header.
1577 * log.h: Make log message const in struct message.
1578 * log.c: Fix some indenting.
1579 * network.c, network.h: Make second argument of writen() const.
1580
hassoe7168df2004-10-03 20:11:32 +000015812004-10-03 Hasso Tepper <hasso at quagga.net>
1582
1583 * command.h: Introduce SERVICE_NODE for "service <...>" commands.
1584 * command.c: Don't initialize commands that don't make sense if vtysh
1585 is used.
1586 * vty.c: Make VTY_NODE appear in vtysh.
1587
hasso18a6dce2004-10-03 18:18:34 +000015882004-10-03 James R. Leu <jleu at mindspring.com>
1589
1590 * zclient.c, zclient.h: zclient functions for router id handling.
1591 * zebra.h: New message types for router id handling.
1592
paul9172ee02004-09-27 12:46:37 +000015932004-09-27 Paul Jakma <paul@dishone.st>
1594
1595 * zebra.h: Add WANT_OSPF_WRITE_FRAGMENT for ospfd
1596 to try to fragment oversized packets. Enabled only for Linux.
1597 Add HAVE_IP_HDRINCL_BSD_ORDER to define struct ip byte order,
1598 to consolidate various ad-hoc platform defines for same thing.
1599
hassoe473b032004-09-26 16:08:11 +000016002004-09-26 Hasso Tepper <hasso at quagga.net>
1601
1602 * vty.c, sockopt.c: Fix compiler warnings.
1603
hasso52dc7ee2004-09-23 19:18:23 +000016042004-09-23 Hasso Tepper <hasso at quagga.net>
1605
1606 * linklist.h: Remove list and listnode typedefs.
1607 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
1608
paul0b3acf42004-09-17 08:39:08 +000016092004-09-17 Paul Jakma <paul@dishone.st>
1610
paulb89e60c2004-09-21 15:43:13 +00001611 * sockopt.c: Add missing bracket
1612
16132004-09-17 Paul Jakma <paul@dishone.st>
1614
paul0b3acf42004-09-17 08:39:08 +00001615 * sockopt.{c,h}: Add setsockopt_so_recvbuf, for ripd and ripngd.
1616
paul33394762004-09-13 11:27:57 +000016172004-09-13 Paul Jakma <paul@dishone.st>
1618
1619 * command.c: Update the copyright string in the default motd.
1620
gdt630e4802004-08-31 17:28:41 +000016212004-08-31 David Wiggins <dwiggins@bbn.com>
1622
1623 * hash.c (hash_iterate): Save next pointer before calling
1624 procedure, so that iteration works even if the called procedure
1625 deletes the hash backet.
1626
1627 * linklist.h (listtail): new macro, not yet used.
1628
hasso34553cc2004-08-27 13:56:39 +000016292004-08-27 Hasso Tepper <hasso at quagga.net>
1630
1631 * command.c: Install "terminal length" commands only if vty is used.
1632 Vtysh will handle it itself.
1633
gdtafa43b22004-08-26 13:12:41 +000016342004-08-26 Greg Troxel <gdt@fnord.ir.bbn.com>
1635
1636 * sockopt.h: Define method-independent macro for callers of
1637 get_ifindex to use for cmsg length.
1638
paule6822762004-08-19 04:13:29 +000016392004-08-19 Paul Jakma <paul@dishone.st>
1640
paulefba6ce2004-08-25 13:47:16 +00001641 * zebra.h: add MAX and MIN defines (eg for ospf6d)
1642
16432004-08-19 Paul Jakma <paul@dishone.st>
1644
paule6822762004-08-19 04:13:29 +00001645 * sockopt.c: include sockopt.h
1646 rename some of the _pktinfo_ functions to _ifindex, where that is
1647 their purpose.
1648 (getsockopt_ipv6_pktinfo_ifindex) renamed to
1649 getsockopt_ipv6_ifindex.
1650 (setsockopt_ipv4_pktinfo) renamed to setsockopt_ipv4_ifindex
1651 (setsockopt_pktinfo) update with previous and add comment re
1652 AF_INET portability.
1653 (setsockopt_ifindex) generic ifindex function ala
1654 setsockopt_pktinfo.
1655 (getsockopt_ipv4_pktinfo_ifindex) renamed to
1656 getsockopt_ipv4_ifindex.
1657 (getsockopt_ipv4_ifindex) rejiggling to reduce repeated
1658 ifdef/elses. pktinfo case forgot to set ifindex.
1659 (getsockopt_pktinfo_ifindex) renamed to
1660 getsockopt_ifindex. update some calls to renamed functions.
1661 * sockopt.h: Update renamed exported functions
1662 Rename the CMSG_SIZE macros to IFINDEX.
1663 Guard IPv4 PKTINFO in a conditional define.
1664
paulc0618de2004-08-18 21:52:58 +000016652004-08-18 Paul Jakma <paul@dishone.st>
1666
1667 * vty.c: (vty_serv_un) set unix vty socket to nonblocking
1668 to prevent inadvertent blocking of daemons by use of
1669 vtysh. TODO: disentangle manual paging from the buffer_write
1670 path so that unix vty can use this path too and be reliable.
1671
gdt33f92322004-07-23 16:14:32 +000016722004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
1673
1674 * sockopt.c (getsockopt_ipv4_pktinfo_ifindex): Make this compile
1675 on NetBSD, and add comments to make it less confusing. Change the
1676 sense of the SUNOS_5 test to make parallel structure between the
1677 variables and the code.
1678
paul4f7baa02004-07-23 15:11:07 +000016792004-07-23 Paul Jakma <paul@dishone.st>
1680
1681 * sockopt.h: Add SOPT_SIZE_CMSG_PKTINFO{_IPV{4,6}} define, for
1682 sizeof pktinfo as appropriate, to be used when allocating msg
1683 buffers. export setsockopt_pktinfo() and
1684 getsockopt_pktinfo_ifindex()
1685 * sockopt.c: (setsockopt_pktinfo_ifindex) new function to portably
1686 set received ifindex sock option.
1687 (getsockopt_pktinfo_ifindex) portably retrieve ifindex.
1688 (getsockopt_cmsg_data) retrieve indicated control info from
1689 message header.
1690 (getsockopt_ipv6_pktinfo_ifindex) ipv6 version of above.
1691 (setsockopt_ipv4_pktinfo) v4 version
1692 (setsockopt_pktinfo) the exported version
1693 (getsockopt_ipv4_pktinfo_ifindex) v4 specific version
1694 (getsockopt_pktinfo_ifindex) the exported version
1695
paul05c447d2004-07-22 19:14:27 +000016962004-07-14 Paul Jakma <paul@dishone.st>
1697
1698 * sigevent.c: (quagga_signal_handler) add a global caught flag, set
1699 the flags to a constant rather increment to be kinder.
1700 (quagga_sigevent_process) new function, to do core of what
1701 quagga_signal_timer did. dont block signals at all as sig->caught
1702 is volatile sig_atomic_t and should be safe to access from signal
1703 and normal contexts. The signal blocking is unneeded paranoia, but
1704 is left intact under an ifdef, should some platform require it.
1705 Check global caught flag before iterating through array.
1706 (quagga_signal_timer) nearly everything moved to
1707 quagga_sigevent_process. Left in under ifdef, in case some
1708 platform could use a regular timer check for signals.
1709 * sigevent.h: quagga_sigevent_process declaration.
1710 * thread.c: (thread_fetch) check for signals at beginning of
1711 scheduler loop, check for signals if select returns EINTR.
1712
gdtb7797132004-07-13 13:47:25 +000017132004-07-13 Greg Troxel <gdt@poblano.ir.bbn.com>
1714
1715 * sigevent.c: Don't block SIGTRAP and SIGKILL. Blocking SIGTRAP
1716 confuses gdb, at least on NetBSD 2.0_BETA, where the block
1717 succeeds.
1718
paul5510e832004-07-09 14:00:01 +000017192004-07-09 Paul Jakma <paul@dishone.st>
1720
1721 * Merge Kunihiro's 'show route-map' change and add
1722 compatibility aliases for route-map continue
paulb9790b32004-07-09 14:05:47 +00001723 * jhash.{c,h}: New files. Bob Jenkins' public domain hashing
1724 function, as implemented in linux kernel by David Miller.
paul5510e832004-07-09 14:00:01 +00001725
paulb06c14f2004-07-09 12:24:42 +000017262004-07-09 Juris Kalnins <juris@mt.lv>
1727
1728 * if.c: (if_cmp_func) fix for interface names where name is same,
1729 but one has no number, eg "devtyp" and "devtyp0".
1730
gdt87efd642004-06-30 17:36:11 +000017312004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
1732
1733 * Makefile.am: Make libzebra shared.
1734
paul138ce752004-06-21 10:35:59 +000017352004-06-21 Paul Jakma <paul@dishone.st>
1736
1737 * ChangeLog: fix my last update config.h -> zebra.h ;)
1738 * zebra.h: Fix gcc check.
1739
paul02ff83c2004-06-11 11:27:03 +000017402004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
1741
1742 * filter.c: (access_list_remark_cmd) buffer_putstr doesnt need cast
1743 to u_char. (ipv6_access_list_remark_cmd) ditto.
1744 if.c: ditto
1745 * network.c: (readn/writen) pointer arg should be type u_char.
1746 * plist.c: needs to include stream.h, not declare stream functions
1747 internally.
1748 (various) Add static qualifier to internal functions.
1749 (prefix_list_type_str) extraneous breaks in switch statement.
1750 (ip_prefix_list_description_cmd) buffer_putstr doesnt need cast
1751 * stream.h: depends on plist.h and export stream_put_prefix
1752 * vty.c: (vty_<telnet option build functions>) should use
1753 unsigned char, telnet options are 0 -> 255.
1754 * zclient.c: various u_char<->char type cleanups.
1755 * zebra.h: Having to define CMSG_* can apply to more than just
1756 BSDI_NRL.
1757
paul51a87982004-06-09 10:36:05 +000017582004-06-09 Paul Jakma <paul@dishone.st>
1759
paul138ce752004-06-21 10:35:59 +00001760 * zebra.h: __attribute__ is a gcc'ism
paul51a87982004-06-09 10:36:05 +00001761
paul5228ad22004-06-04 17:58:18 +000017622004-06-04 Paul Jakma <paul@dishone.st>
1763
1764 * type mismatch fixes
1765
hasso6708fa32004-05-18 18:46:54 +000017662004-05-18 Hasso Tepper <hasso@estpak.ee>
1767
1768 * pqueue.[c|h]: Added as part of ospf6d merge from Zebra repository.
1769
paul0a589352004-05-08 11:48:26 +000017702004-05-08 Paul Jakma <paul@dishone.st>
1771
1772 * zclient.c (zapi_ipv4_route) Follow Sowmini's lead and describe
1773 message format.
1774
17752004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
1776
1777 * zclient.c: (zapi_ipv4_add) collapsed into zapi_ipv4_route
1778 (zapi_ipv4_delete) ditto.
1779 (zapi_ipv4_route) add/delete a route by way of cmd arg.
1780 (zapi_ipv6_add) collapsed into zapi_ipv6_route.
1781 (zapi_ipv6_delete) ditto.
1782 (zapi_ipv6_route) add/delete a route by way of cmd arg.
1783 (zebra_interface_address_delete_read) collapsed into
1784 zebra_interface_address_read.
1785 (zebra_interface_address_delete_read) ditto.
1786 (zebra_interface_address_read) read address add/delete messages
1787 by way of type argument. Describe command message format.
1788 (zebra_interface_add_read) Unconditionally read new ifmtu6 field.
1789 Describe command message format.
1790 (zebra_interface_state_read) Unconditionally read new ifmtu6 field.
1791 (zclient_redistribute_set) Collapsed into zclient_redistribute
1792 (zclient_redistribute_unset) ditto
1793 (zclient_redistribute) set/unset redistribution.
1794 (zclient_redistribute_default_set) Collapsed into
1795 zclient_redistribute_default.
1796 (zclient_redistribute_default_unset) ditto.
1797 (zclient_redistribute_default) Redistribute default set/unset.
1798 * zclient.h: delete zapi_ipv{4,6}_add, zapi_ipv{4,6}_delete. Add
1799 zapi_ipv{4,6}_route. delete zclient_redistribute_set/unset. Add
1800 zclient_redistribute. Ditto for
1801 zclient_redistribute_default_{set/unset}.
1802
paul4a7aac12004-05-08 05:00:31 +000018032004-05-08 Sowmini Varadhan <sowmini.varadhan@sun.com>
1804
1805 * if.h: Add mtu6 field to struct interface, IPv6 MTU may differ
1806 from IPv4, and Solaris treats the MTU's differently.
1807 Add connected_add_by_prefix, for use by later patch.
1808 * if.c: (connected_add_by_prefix) Add prefix to connected list.
1809 (if_flag_dump) Solaris: Dump IFF_IPv4/6 flag
1810 (if_dump) Dump mtu6 flag, for HAVE_IPV6.
paul22528292004-05-08 05:10:38 +00001811 * command.c: (sockunion_getsockname) use socklen_t for len.
1812 (sockunion_getpeername) ditto.
paul0a589352004-05-08 11:48:26 +00001813
paul31fcdd32004-04-21 11:00:43 +000018142004-04-21 Boris Kovalenko <boris@tagnet.ru>
1815
1816 * daemon.c: (daemon) fix check for error return from setsid
1817
paulc49b3062004-01-19 21:23:37 +000018182004-01-19 Paul Jakma <paul@dishone.st>
1819
1820 * sigevent.{c,h}: New files, implement event handled signals.
1821 see signal_init() in sigevent.h.
1822
jardinc32e1b52003-12-23 09:06:51 +000018232003-12-23 Vincent Jardin <jardin@6wind.com>
1824
1825 * {command.c, memory.c, vty.c, zebra.h}: Add isisd support
1826
gdt3dbf9962003-12-22 20:18:18 +000018272003-12-22 Greg Troxel <gdt@fnord.ir.bbn.com>
1828
1829 * vty.c (vty_use_backup_config): Don't free filenames before using
1830 them for unlink.
1831
paul54aba542003-08-21 20:28:24 +000018322003-08-20 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1833
1834 * command.c: Fix <cr> display problem for command line
1835 description
1836
paule9af5c72003-05-24 11:54:31 +000018372003-05-24 Anil Madhavapeddy
1838
1839 * (sockunion.c): Incorrect bounds specified in sockunion_log()
1840
paul445f1432003-05-16 19:00:31 +000018412003-05-08 Sergiy Vyshnevetskiy <serg @ vostok.net>
1842
1843 * vty.c: -A option
1844
18452003-04-19 Hasso Tepper <hasso@estpak.ee>
1846
1847 * rip_routemap.c: sync daemon's route-map commands to have same
1848 syntax
1849
paul718e3742002-12-13 20:15:29 +000018502002-09-28 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1851
1852 * vty.c (vty_flush): One line more on vty.
1853
18542002-09-27 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1855
1856 * vector.c (vector_lookup): Add new function.
1857
18582002-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1859
1860 * thread.c (timeval_adjust): Fix unconditional crush due to
1861 FreeBSD's select() system call timeval value check.
1862
18632002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1864
1865 * zebra-0.93 released.
1866
18672002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1868
1869 * if.c (ifc_pointopoint): Add ifc_pointopoint() accoding to Frank
1870 van Maarseveen's suggestion.
1871
18722002-06-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1873
1874 * command.c: Change bcopy() to memcpy().
1875
18762001-12-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1877
1878 * command.c (config_password): Fix host.password clear bug.
1879 Reported by Wang Jian <lark@linux.net.cn>.
1880
18812001-08-29 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1882
1883 * thread.c (thread_should_yield): New function to check thread
1884 should yeild it's execution to other thread. Suggested by: Rick
1885 Payne <rickp@ayrnetworks.com>
1886
18872001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1888
1889 * thread.c (thread_timer_cmp): Rewrite function.
1890
1891 * hash.c: Add hash_get(). Change hash_pull() to hash_release().
1892
18932001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1894
1895 * zebra-0.92a released.
1896
18972001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1898
1899 * zebra-0.92 released.
1900
19012001-08-12 Akihiro Mizutani <mizutani@dml.com>
1902
1903 * prefix.c (netmask_str2prefix_str): Convert "1.1.0.0 255.255.0.0"
1904 string to "1.1.0.0/16".
1905
19062001-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1907
1908 * filter.c (access_list_lookup): access_list_lookup's first
1909 argument is changed from address family to AFI.
1910
1911 * plist.c: (prefix_list_lookup): Likewise.
1912
19132001-07-27 Akihiro Mizutani <mizutani@dml.com>
1914
1915 * plist.c: ge and le display order is changed. Old compatible
1916 rule (len <= ge-value <= le-value) is removed.
1917
19182001-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1919
1920 * prefix.h: Temporary fix for alignment of prefix problem.
1921
19222001-06-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1923
1924 * prefix.h (struct prefix): Remove safi and padding field.
1925 (struct prefix_ipv4): Likewise.
1926 (struct prefix_ipv6): Likewise.
1927 (struct prefix_ls): Likewise.
1928 (struct prefix_rd): Likewise.
1929
1930 * command.h (enum node_type): Preparation for BGP new config.
1931
1932 * vty.c (vty_end_config): Likewise.
1933
19342001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1935
1936 * routemap.c (route_map_rule_delete): Call func_free when
1937 route-map rule is deleted.
1938
19392001-06-14 "Akihiro Mizutani" <mizutani@dml.com>
1940
1941 * routemap.c (route_map_index_lookup): Prevent to use deny and
1942 permit for same route-map sequence.
1943
19442001-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1945
1946 * vty.c (vty_read_config): Fix warning.
1947
19482001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1949
1950 * command.c (IPV6_PREFIX_STR): Add '.' and '%' for IPv6 address
1951 strings.
1952
19532001-03-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1954
1955 * zebra.h (_XPG4_2): Define _XPG4_2 and __EXTENSIONS__ for
1956 CMSG_FIRSTHDR.
1957
19582001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1959
1960 * zebra.h (struct in_pktinfo): structure in_pktinfo declaration.
1961
19622001-02-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1963
1964 * memory.c (memory_list_lib): Add MTYPE_NEXTHOP for "show memory
1965 lib" member.
1966
19672001-02-13 Matthew Grant <grantma@anathoth.gen.nz>
1968
1969 * vty.c (vty_read_config): Revert check of integrate_default when
1970 VTYSH is defined.
1971
19722001-02-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1973
1974 * vty.c (vty_read_config): Do not check integrate_default. That
1975 should be used only by vtysh.
1976
19772001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
1978
1979 * vty.c (vty_serv_un): Set umask 0077.
1980 (vty_read_config): Stat for vtysh Zebra.conf, if found startup and
1981 wait for boot configuration.
1982
1983 * if.c (if_lookup_address): Make it smart implementation.
1984
1985 * sockopt.c (setsockopt_multicast_ipv4): Set up a multicast socket
1986 options for IPv4 This is here so that people only have to do their
1987 OS multicast mess in one place rather than all through zebra,
1988 ospfd, and ripd .
1989
19902001-02-04 Akihiro Mizutani <mizutani@dml.com>
1991
1992 * plist.c (vty_prefix_list_install): Even when argument is
1993 invalid, new memory is allocated. Now memory allocation is done
1994 after argument check.
1995
19962001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1997
1998 * zebra-0.91 is released.
1999
20002001-01-31 Akihiro Mizutani <mizutani@dml.com>
2001
2002 * vty.c (vty_login): Add vty login command.
2003
20042001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
2005
2006 * vty.c (vty_reset): Close accept socket.
2007
20082001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2009
2010 * memory.h (enum): MTYPE_ATTR_TRANSIT is added for unknown transit
2011 attribute.
2012
20132001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2014
2015 * zclient.c (zebra_interface_address_add_read): Fetch interface
2016 address flag.
2017 (zebra_interface_address_delete_read): Likewise.
2018
20192001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2020
2021 * table.c (route_node_match_ipv4): Utility function for IPv4
2022 address lookup.
2023 (route_node_match_ipv6): Utility function for IPv4 address lookup.
2024
20252001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
2026
2027 * if.c: Delete RIP_API part until new implementation comes out.
2028
20292001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2030
2031 * hash.h (struct Hash): Rename alloc to count. Change type to
2032 unsigned long.
2033
2034 * stream.c (stream_getc_from): New function.
2035 (stream_getw_from): Likewise.
2036
2037 * zebra.h (ZEBRA_FLAG_STATIC): Add new flag for persistent route.
2038
20392001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2040
2041 * flap.c: File is removed.
2042
2043 * flap.c: Likewise.
2044
2045 * roken.h: Likewise.
2046
2047 * buffer.c (buffer_new): Remove type option to buffer_new().
2048
20492001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2050
2051 * zclient.c (zapi_ipv4_delete): Remove OLD_RIB part.
2052
20532001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2054
2055 * zebra-0.90 is released.
2056
2057 * command.c: Update Copyright year.
2058
20592001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
2060
2061 * if.c (if_create): Register connected_free() function for
2062 deletion.
2063 (if_delete): Free connected information when the interface is
2064 deleted.
2065 (if_lookup_by_index): Fix argument type from int to unsigned int.
2066 (connected_add): Keep list in order if old info found, essential
2067 for repeatable operation in some daemons.
2068
20692001-01-09 endo@suri.co.jp (Masahiko Endo)
2070
2071 * vty.c (vty_flush): When vty->statis is VTY_CLOSE do not add vty
2072 read thread.
2073
20742001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2075
2076 * filter.c (access_list_delete): Access-list name is not freed.
2077
2078 * plist.c (prefix_list_delete): Prefix-list name is not freed.
2079
20802000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2081
2082 * zclient.c (zclient_start): Change to use UNIX domain
2083 socket for zebra communication.
2084
2085 * vector.c (vector_init): vector_alloc and vector_data_alloc is
2086 removed. All memory allocation count should be maintained by
2087 XMALLOC and XFREE macros.
2088
20892000-12-28 Kunihiro Ishiguro <kunihiro@zebra.org>
2090
2091 * zebra.h (ZEBRA_NEXTHOP_IFINDEX): Define ZEBRA_NEXTHOP_* values.
2092
20932000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2094
2095 * zebra.h (ZEBRA_ERR_RTEXIST): Make zebra error code to negative
2096 value.
2097
20982000-12-25 "Wataru Uno" <wataru@po.ntts.co.jp>
2099
2100 * vty.c (vtysh_read): Don't allocate new buffer because buffer is
2101 allocated in vty_new ().
2102
21032000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2104
2105 * memory.h (enum): Add MTYPE_AS_FILTER_STR.
2106
2107 * command.c (config_write_terminal): Display "end" at the end of
2108 configuration.
2109
2110 * plist.c (vty_prefix_list_install): Use AF_INET to determine
2111 lenum length.
2112
21132000-12-13 "Wataru Uno" <wataru@po.ntts.co.jp>
2114
2115 * buffer.c (buffer_flush_vty): If IOV_MAX defined in the System,
2116 then all lines write by IOV_MAX.
2117
21182000-12-12 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
2119
2120 * command.c (config_write_file): Robust method for writing
2121 configuration file and recover from backing up config file.
2122
21232000-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2124
2125 * smux.c (smux_connect): More fail check.
2126 (smux_trap): When SMUX connection is not established, do nothing.
2127
21282000-11-28 Gleb Natapov <gleb@nbase.co.il>
2129
2130 * thread.c (thread_fetch): Execut event list first. Old event
2131 list is renamed to ready list. With this change, event thread is
2132 executed before any other thread.
2133
2134 * thread.h (struct thread_master): Add ready list.
2135
21362000-11-28 Kunihiro Ishiguro <kunihiro@zebra.org>
2137
2138 * linklist.c (listnode_add_after): Add node right after the
2139 listnode pointer.
2140
21412000-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2142
2143 * smux.h: Pass struct variable to WriteMethod.
2144
21452000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
2146
2147 * if.c (if_lookup_address): When looking up interface with IP
2148 address, Sometimes multiple interfaces will match. Now PtP
2149 interfaces prevail in such a case which seem the right thing to
2150 do: There will probably also be host routes which usually prevail
2151 over network routes.
2152
21532000-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2154
2155 * smux.c (smux_trap): SMUX trap implementation.
2156
21572000-11-19 Akihiro Mizutani <mizutani@dml.com>
2158
2159 * plist.c: Add automatic conversion function of an old rule.
2160 ex.) 10.0.0.0/8 ge 8 -> 10.0.0.0/8 le 32
2161
21622000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
2163
2164 * zclient.c (zebra_interface_add_read): Read hardware address when
2165 hw_addr_len is greater than 0.
2166
21672000-11-15 Akihiro Mizutani <mizutani@dml.com>
2168
2169 * plist.c: The rule of "len <= ge-value <= le-value"
2170 was changed to "len < ge-value <= le-value".
2171
21722000-11-09 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
2173
2174 * memory.[ch]: Added #define and functions for ospf6d.
2175
2176 * log.[ch]: some platform says that the data of used va_list
2177 is undefined. Changed to hold list of va_list for each
2178 vsnprintf.
2179
21802000-11-07 Rick Payne <rickp@rossfell.co.uk>
2181
2182 * memory.h (enum): Add MTYPE_COMMUNITY_REGEXP.
2183
21842000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2185
2186 * command.c (config_exit): Fix bug of missing break after case
2187 BGP_VPNV4_NODE.
2188
21892000-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2190
2191 * vector.c (vector_unset): Check i is not nevative.
2192
21932000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
2194
2195 * smux.c (smux_sock): Set terminating '\0'. Check address family.
2196
2197 * vty.c (vty_serv_sock_addrinfo): Set terminating '\0'. Use
2198 gai_strerror. Check address family.
2199
22002000-10-23 Jochen Friedrich <jochen@scram.de>
2201
2202 * smux.c: Use linklist rather than vector.
2203 (smux_getnext): A SMUX subagent has to behave as if it manages the
2204 whole SNMP MIB tree itself. It's the duty of the master agent to
2205 collect the best answer and return it to the manager. See RFC 1227
2206 chapter 3.1.6 for the glory details :-). ucd-snmp really behaves
2207 bad here as it actually might ask multiple times for the same
2208 GETNEXT request as it throws away the answer when it expects it in
2209 a different subtree and might come back later with the very same
2210 request.
2211
22122000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2213
2214 * command.c (cmd_init): Log related command are only installed for
2215 terminal mode.
2216
22172000-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2218
2219 * Makefile.am (libzebra_a_SOURCES): Remove duplicated buffer.c.
2220
2221 * zebra.h: Remove #warn directive.
2222
22232000-10-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2224
2225 * keychain.c (keychain_init): Register "key chain" command to
2226 KEYCHAIN_NODE and KEYCHAIN_KEY_NODE.
2227
2228 * vty.c (vty_end_config): Fix missing vty_cinfig_unlock for other
2229 CONFIG_NODE.
2230
2231 * command.c (config_end): Likewise.
2232
2233 * keychain.c (keychain_get): Key is sorted by it's identifier
2234 value.
2235
22362000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
2237
2238 * linklist.c (list_delete_all_node): Call delete function if it is
2239 defined.
2240
2241 * command.c (cmd_execute_command_strict): Add modification for
2242 vtysh.
2243 (cmd_execute_command_strict): Remove first argument cmdvec because
2244 it is global varibale in command.c.
2245
22462000-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2247
2248 * command.c (cmd_init): Install
2249 copy_runningconfig_startupconfig_cmd only in terminal mode.
2250
2251 * linklist.c (list_delete_node): Simplify the function.
2252 (listnode_lookup): Renamed from list_lookup_node.
2253
22542000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2255
2256 * stream.h: Undef stream_read and stream_write without
2257 parenthesis.
2258
2259 * newlist.c: File removed.
2260
2261 * newlist.h: Likewise.
2262
2263 * linklist.c (list_new): Remove list_init(). To allocate new
2264 linked list, please use list_new().
2265 (listnode_add): Remove list_add_node(). To add new node to linked
2266 list, please use listnode_add().
2267 (list_delete_by_val): Revemove fucntion.
2268
22692000-10-16 Nobuaki Tanaka <nobby@po.ntts.co.jp>
2270
2271 * table.c (route_table_free): Reimplement route_table_free().
2272
22732000-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2274
2275 * keychain.c (keychain_get): Register key_delete_func to key
2276 list's delete function. Use linklist.c instead of newlist.c.
2277
22782000-10-04 Akihiro Mizutani <mizutani@dml.com>
2279
2280 * filter.c (access_list_remark): Add access-list's remark command.
2281 (no_access_list): "no access-list 100 permit any" error message
2282 bug is fixed.
2283
22842000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2285
2286 * memory.h (enum): Add MTYPE_SOCKUNION.
2287
22882000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2289
2290 * zebra-0.89 is released.
2291
22922000-10-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2293
2294 * linklist.c (list_add_node_head): Delete unused function.
2295 (list_add_node_tail): Likewise.
2296
22972000-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2298
2299 * stream.c (stream_read_unblock): Add new function for unblocking
2300 read.
2301
23022000-09-26 Jochen Friedrich <jochen@nwe.de>
2303
2304 * smux.c (smux_register): Fix bug of can't register more than one
2305 MIB with SMUX.
2306
23072000-09-26 Makoto Otsuka <otsuka@inl.ntts.co.jp>
2308
2309 * vty.c (vty_close): Fix memory leak of sb_buffer.
2310 (vty_new): Likewise.
2311
23122000-09-21 steve@Watt.COM (Steve Watt)
2313
2314 * log.h: Do not declare zlog_priority[0] variable.
2315
23162000-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2317
2318 * linklist.h (struct _list ): Add member cmp for compare function.
2319 (struct _list ): Member up is deleted
2320
23212000-09-12 David Lipovkov <dlipovkov@OpticalAccess.com>
2322
2323 * if.c: Include RIP_API header when RIP API is enabled.
2324
23252000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2326
2327 * prefix.c (prefix_free): Siplify prefix_free().
2328
2329 * keychain.c (key_match_for_accept): strncmp check bug is fixed.
2330
23312000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2332
2333 * zebra.h: Merge roken.h into zebra.h.
2334
23352000-09-05 Akihiro Mizutani <mizutani@dml.com>
2336
2337 * routemap.c (route_map_init_vty): Install route-map command to
2338 RMAP_NODE.
2339
23402000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2341
2342 * thread.c (thread_get_id): Remove pthread related garbage.
2343
2344 * command.h (struct host): Likewise.
2345
2346 * zebra.h: Likewise.
2347
23482000-08-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2349
2350 * command.h (node_type ): Add AAA node for authentication.
2351
2352 * vty.c (vty_close): Do not close stdout.
2353
23542000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2355
2356 * vty.c (vty_init_vtysh): Added for vtysh.
2357
2358 * distribute.c (districute_list_prefix_all): Interface independent
2359 filter can be set.
2360 (distribute_list_all): Likewise.
2361 (config_show_distribute): Display current distribute-list status
2362 for "show ip protocols".
2363
23642000-08-18 Akihiro Mizutani <mizutani@dml.com>
2365
2366 * command.c (config_terminal_no_length): no terminal monitor ->
2367 terminal no monitor
2368 (cmd_init): Do not install service_terminal_length_cmd into
2369 ENABLE_NODE.
2370
2371 * vty.c (terminal_no_monitor): no terminal length -> terminal no
2372 length.
2373
23742000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2375
2376 * zebra-0.88 is released.
2377
23782000-08-17 Magnus Ahltorp <ahltorp@nada.kth.se>
2379
2380 * vty.h (struct vty ): Add iac_sb_in_progress and sb_buffer for
2381 better IAC handling.
2382
2383 * vty.c (vty_telnet_option): Change telnet option handling.
2384
23852000-08-15 Gleb Natapov <gleb@nbase.co.il>
2386
2387 * zclient.c (zclient_redistribute_unset): New function added.
2388
23892000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2390
2391 * zclient.c (zebra_interface_add_read): Change ifindex restore
2392 size from two octet to four.
2393 (zebra_interface_state_read): Likewise.
2394 (zebra_interface_address_add_read): Likewise.
2395
23962000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2397
2398 * vty.c (vty_event): Use vector_set_index() instead of
2399 vector_set().
2400
24012000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2402
2403 * zebra.h (ZEBRA_XXX_DISTANCE_DEFAULT): Define Default
2404 Administrative Distance of each protocol.
2405
24062000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
2407
2408 * if.h (struct interface ): Add new member bandwidth to struct
2409 interface.
2410
2411 * zclient.c (zebra_interface_add_read): Fetch bandwidth value.
2412 (zebra_interface_state_read): Likewise.
2413
24142000-08-07 Gleb Natapov <gleb@nbase.co.il>
2415
2416 * routemap.c (route_map_event_hook): New hook route_map_event_hook
2417 is added. This hook is called when route-map is changed. The
2418 parameters passed to the hook are 'event' and 'route-map name'
2419
2420 * routemap.h: Add prototype for route_map_event_hook().
2421
24222000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2423
2424 * zclient.c (zebra_ipv4_route): zebra_ipv4_route(),
2425 zebra_ipv4_add(), zebra_ipv4_delete() are removed.
2426
2427 * routemap.c (route_map_empty): Add new function.
2428 (route_map_delete): Use route_map_index_delete() instead of
2429 route_map_index_free().
2430 (route_map_index_free): Function removed.
2431
24322000-08-06 Gleb Natapov <gleb@nbase.co.il>
2433
2434 * routemap.c (route_map_index_delete): Add check for route-map is
2435 empty or not.
2436
24372000-08-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2438
2439 * zclient.c (zebra_ipv4_add): Change socket arguemnt with struct
2440 zclient.
2441
24422000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2443
2444 * zclient.h (struct zebra): Add obuf for output buffer.
2445
2446 * if.c: Remove #ifdef NRL enclosing if_nametoindex() and
2447 if_indextoname().
2448
24492000-08-02 David Lipovkov <davidl@nbase.co.il>
2450
2451 * if.h (IF_PSEUDO_UNSET): IF_PSEUDO related macro added.
2452 (IF_UNKNOWN_SET): IF_UNKNOWN related macro deleted.
2453
2454 * if.c (interface_pseudo): Add "pseudo" command to interface node.
2455 (no_interface_pseudo): Add "no pseudo" command to interface node.
2456
2457 * zclient.c (zebra_interface_add_read): Set pseudo flag when it is
2458 send from zebra.
2459
24602000-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2461
2462 * zebra.h (ZEBRA_IPV4_NEXTHOP_LOOKUP): Add new message.
2463 (ZEBRA_IPV6_NEXTHOP_LOOKUP): Likewise.
2464
2465 * vty.c (vty_serv_un): Use AF_UNIX for backward compatibility.
2466
24672000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
2468
2469 * vty.c: Use vector for VTY server thread listing instead of
2470 single value.
2471
24722000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2473
2474 * keychain.c (no_key_chain): "no key chain WORD" command is added.
2475
24762000-07-29 Kunihiro Ishiguro <kunihiro@zebra.org>
2477
2478 * command.c (config_from_file): If command fail in
2479 KEYCHAIN_KEY_NODE, down to KEYCHAIN_NODE.
2480
2481 * vty.h (struct vty ): Add index_sub member.
2482
24832000-07-27 Akihiro Mizutani <mizutani@dml.com>
2484
2485 * if.c: Help strings updates.
2486
24872000-07-11 Akihiro Mizutani <mizutani@dml.com>
2488
2489 * command.c (no_config_enable_password): Add "no enable password"
2490 command.
2491 (config_write_host): Display password string.
2492
2493 * routemap.c (route_map_delete_match): Add support for delete
2494 match without argument.
2495 (route_map_delete_set): Likewise.
2496
24972000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2498
2499 * command.h (node_type ): Change KEYCHAIN_NODE and
2500 KEYCHAIN_KEY_NODE place just before INTERFACE_NODE.
2501
25022000-07-09 Jochen Friedrich <jochen@scram.de>
2503
2504 * smux.c (config_write_smux): Fixes the option to override OID and
2505 password for SMUX.
2506
25072000-07-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2508
2509 * command.h (node_type ): Add SMUX_NODE for SMUX configuration.
2510
25112000-07-09 Toshiaki Takada <takada@zebra.org>
2512
2513 * command.c: Sort descvec command's help.
2514
2515 * vty.c (vty_describe_command): Display '<cr>' at the end of
2516 descriptions.
2517
25182000-07-05 Toshiaki Takada <takada@zebra.org>
2519
2520 * command.c (cmd_ipv6_match), (cmd_ipv6_prefix_match): Fix bug
2521 treatment of double colon.
2522
25232000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2524
2525 * zclient.h: Add zclient_redistribute_default_{set,unset}().
2526
2527 * keychain.c: New file for authentication key management.
2528 * keychain.h: Likewise.
2529
2530 * tcpfilter.c: New file for TCP/UDP base filtering using ipfw or
2531 ipchains.
2532 * tcpfilter.h: Likewise.
2533
2534 * flap.h: New file for route flap dampening.
2535 * flap.c: Likewise.
2536
25372000-07-04 Toshiaki Takada <takada@zebra.org>
2538
2539 * filter.c (struct filter): Add exact flag.
2540 (access_list): Add exact-match command.
2541 (ipv6_access_list): Add exact-match command.
2542
25432000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2544
2545 * zebra.h (ZEBRA_REDISTRIBUTE_DEFAULT_ADD): New message for
2546 request default route.
2547
25482000-07-01 Hideaki YOSHIFUJI ($B5HF#1QL@(B) <yoshfuji@ecei.tohoku.ac.jp>
2549
2550 * smux.c: Add IPv6 smux connection code.
2551
25522000-06-15 Kunihiro Ishiguro <kunihiro@zebra.org>
2553
2554 * vty.c (vty_complete_command): To cooperate readline library,
2555 returned string is newly allocated. So some match function case
2556 need, free of memory.
2557
25582000-06-12 Akihiro Mizutani <mizutani@dml.com>
2559
2560 * distribute.c: Fix help strings.
2561
25622000-06-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2563
2564 * command.c (cmd_complete_command): Add check for vector_slot
2565 (vline, index) is not NULL when calculating lcd.
2566 (cmd_entry_function): First check variable arguemnt to prevent it
2567 from completion.
2568
25692000-06-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2570
2571 * vty.h (struct vty ): Add output_count member for displaying
2572 output route count. Remove arugment arg from output_func because
2573 the value is passed by vty argument. Change output to output_rn.
2574 Add output_clean function pointer member. Add output_type member.
2575
25762000-06-10 Toshiaki Takada <takada@zebra.org>
2577
2578 * command.c (show_startup_config): Add "show startup-config"
2579 command.
2580
25812000-06-06 Akihiro Mizutani <mizutani@dml.com>
2582
2583 * filter.c: Fix help strings.
2584
25852000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2586
2587 * prefix.h (struct prefix_rd): New prefix structure for routing
2588 distinguisher.
2589 (struct prefix): Add padding to every prefix structure.
2590
2591
2592 * routemap.c (route_map_add_match): When completely same match
2593 statement exists, don't duplicate it.
2594
25952000-06-05 Akihiro Mizutani <mizutani@dml.com>
2596
2597 * routemap.c: Change NAME to WORD.
2598
2599 * plist.c: Fix help strings.
2600
26012000-06-02 Akihiro Mizutani <mizutani@dml.com>
2602
2603 * routemap.c: Fix route-map help strings.
2604
26052000-06-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2606
2607 * command.c (cmd_filter_by_completion): Fix CMD_VARARG treatment
2608 to filter other non vararg commands.
2609
2610 * routemap.c (route_map_init_vty): Use install_default() for
2611 install common commands into route-map node..
2612
26132000-06-01 Akihiro Mizutani <mizutani@dml.com>
2614
2615 * command.h (OSPF_STR): Macro added.
2616
26172000-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
2618
2619 * command.c (cmd_complete_command): LCD completion must not modify
2620 installed command string.
2621
2622 * plist.c (ipv6_prefix_list): Fix wrong syntax definition. Change
2623 X:X::X:X to X:X::X:X/M.
2624
26252000-05-31 Toshiaki Takada <takada@zebra.org>
2626
2627 * vty.c (show_history): New defun added.
2628
26292000-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2630
2631 * command.h (CMD_COMPLETE_LIST_MATCH): New define for completion
2632 list. CMD_COMPLETE_MATCH is used for LCD completion.
2633
2634 * vty.c (vty_complete_command): Matched string's LCD is completed.
2635
2636 * command.c (cmd_lcd): New function for calculate LCD of matched
2637 strings.
2638
26392000-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2640
2641 * command.c (install_default): config_write_terminal_cmd,
2642 config_write_file_cmd, config_write_memory_cmd are added to
2643 default node.
2644
2645 * memory.c (memory_init): Divide show memory command into each
2646 sort.
2647
2648 * command.c (cmd_init): config_write_terminal_cmd,
2649 config_write_file_cmd, config_write_memory_cmd are added to
2650 CONFIG_NODE.
2651
2652 * routemap.c (route_map_index_free): New function.
2653 (no_route_map_all): New DEFUN for "no route-map NAME".
2654
2655 * filter.c (no_access_list_all): New DEFUN for delete access-list
2656 with NAME.
2657 (no_ipv6_access_list_all): Likewise.
2658
26592000-05-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2660
2661 * plist.c: Change IPV6_PREFIX to X:X::X:X. When "any" is
2662 specified, user can not use "ge" and "le" statement.
2663
26642000-05-22 Thomas Molkenbur <tmo@datus.datus.com>
2665
2666 * routemap.c (route_map_add_set): Fix bug of next pointer missing.
2667
2668 * table.c (route_table_free): Like wise.
2669
26702000-05-22 Toshiaki Takada <takada@zebra.org>
2671
2672 * vty.c (vty_stop_input): Set history pointer to the latest one.
2673
2674 * vty.c (vty_hist_add): Do not add command line history when input
2675 is as same as previous one.
2676
26772000-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2678
2679 * memory.h (enum): Add MTYPE_ECOMMUNITY and MTYPE_ECOMMUNITY_VAL.
2680
26812000-05-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2682
2683 * command.h (node_type ): Add BGP_VPNV4_NODE.
2684
26852000-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2686
2687 * vty.c (vtysh_accept): Add cast of struct sockaddr * to bind
2688 argument. Reported by: Vesselin Mladenov <mladenov@netbg.com>.
2689
2690 * filter.c (ipv6_access_list): Add IPv6 prefix example instead of
2691 IPv4 example. Reported by: Love <lha@s3.kth.se>.
2692
2693 * command.c (cmd_complete_command): Make it sure last element of
2694 matchvec is NULL. This fix problem which cause crush in
2695 vty_complete_command(). Reported by: JINMEI Tatuya
2696 <jinmei@isl.rdc.toshiba.co.jp>.
2697
26982000-04-28 Love <lha@s3.kth.se>
2699
2700 * prefix.h (struct prefix): Add padding.
2701
27022000-04-28 Kunihiro Ishiguro <kunihiro@zebra.org>
2703
2704 * command.c (show_version): Update copyright year.
2705
27062000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2707
2708 * routemap.c (route_map_apply): When map is NULL, return deny.
2709
27102000-04-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2711
2712 * filter.c (access_list_apply): When access is NULL, return deny.
2713
2714 * plist.c (prefix_list_apply): When plist is NULL, return deny.
2715
27162000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2717
2718 * command.h (node_type ): Change RDISC_NODE to IRDP_NODE.
2719
27202000-04-18 Toshiaki Takada <takada@zebra.org>
2721
2722 * filter.[ch] (access_list_add_hook), (access_list_delete_hook):
2723 Add argument for hook function to give struct access_list *.
2724
27252000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2726
2727 * plist.c (prefix_list_entry_match): In case of le nor ge is
2728 specified, exact match is performed.
2729 (prefix_list_entry_match): Add any entry matching check.
2730
27312000-04-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2732
2733 * vty.c (exec_timeout): Separate timeout setting to minutes and
2734 seconds.
2735 (no_exec_timeout): Add "no exec-timeout" command.
2736
2737 * vty.h (VTY_TIMEOUT_DEFAULT): Change default value from 300 to
2738 600.
2739
27402000-03-31 Jochen Friedrich <jochen@scram.de>
2741
2742 * smux.h (SMUX_CLOSE): The SMUX_CLOSE PDU is implicit integer, so
2743 it is a primitive encoding and not constructed.
2744
27452000-03-28 Toshiaki Takada <takada@zebra.org>
2746
2747 * memory.[ch] (enum): Add MTYPE_OSPF_EXTERNAL_INFO.
2748
27492000-03-26 Love <lha@s3.kth.se>
2750
2751 * zclient.c (zclient_read): Add nbytes size check for
2752 ZEBRA_HEADER_SIZE. Check return value of steam_read ().
2753
27542000-03-26 Rick Payne <rickp@rossfell.co.uk>
2755
2756 * routemap.c: Add flexible route-map commands such as on-match
2757 next, on-match goto N.
2758
2759 * routemap.h: Likewise
2760
27612000-03-23 Adrian Bool <aid@u.net.uk>
2762
2763 * command.c (config_log_trap): Add new command "log trap
2764 PRIORITY".
2765
27662000-03-14 Toshiaki Takada <takada@zebra.org>
2767
2768 * memory.c (struct memory_list): Add Link List and Link Node
2769 to view.
2770
2771 * memory.h (enum): Remove MTYPE_OSPF_EXTERNAL_ROUTE.
2772
27732000-01-20 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
2774
2775 * str.c (snprintf): Fix bug of calling sprintf instead of
2776 vsprintf.
2777
27782000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2779
2780 * memory.h (enum): Add MTYPE_RIP_PEER.
2781
27822000-01-15 Toshiaki Takada <takada@zebra.org>
2783
2784 * memory.h (enum): Add MTYPE_OSPF_CRYPT_KEY.
2785
27862000-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
2787
2788 * command.h (node_type ): Add MASC_NODE for masc.
2789
27902000-01-09 Wang Jianliang <wangjl@soim.net>
2791
2792 * routemap.c (route_map_index_add): When route_map_index is not
2793 empty and insert new item at the head, it can cause core dump.
2794 Fix "if (index == map->head)" to "if (point == map->head).
2795 (route_map_add_set): If there is an old set command, override old
2796 set command with new one.
2797 (route_map_index_delete): Use while() instead of for for() for
2798 logical correctness.
2799
28001999-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2801
2802 * memory.h (enum): Add MTYPE_BGP_STATIC.
2803
28041999-12-23 Alex Zinin <zinin@amt.ru>
2805 * zebra.h, zclient.*: dynamic int up/down message
2806 support
2807
28081999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2809
2810 * thread.c (thread_cancel_event): Add a function for clean up
2811 events.
2812
28131999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2814
2815 * dropline.c: Delete file.
2816 dropline.h: Linewise.
2817
28181999-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2819
2820 * filter.c (access_list_filter_delete): Wrong pointer
2821 access->master was pointed out after access is freed. I store
2822 master value at the beginning of the function.
2823
28241999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2825
2826 * vty.c (exec_timeout): Change of VTY timeout affect to current
2827 VTY connection.
2828 (vty_accept): Instead of immediate exit() return -1.
2829
28301999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2831
2832 * vty.c (vty_configure_lock): Configuration lock function added.
2833 Only one VTY can use CONFI_NODE at the same time.
2834
2835 * log.c: Delete zvlog_* functions. Now zlog_* does the same
2836 thing.
2837
2838 * log.c (log_init): Function removed.
2839 (log_close): Likewise.
2840 (log_flush): Likewise.
2841 (log_open): Likewise.
2842
2843 * vty.c (terminal_monitor): Add new command.
2844 (no_terminal_monitor): Likewise.
2845
2846 * log.c (old_log): Function removed.
2847 (old_log2): Likewise.
2848 (old_log_warn): Likewise.
2849
28501999-12-04 Toshiaki Takada <takada@zebra.org>
2851
2852 * command.c (cmd_ipv6_match): New function added.
2853 (cmd_ipv6_prefix_match): Likewise.
2854
28551999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2856
2857 * command.c (cmd_ipv6_match):
2858
2859 * table.c: Delete #ifdef HAVE_MBGPV4.
2860
2861 * prefix.h (struct prefix): Add safi member.
2862 (struct prefix_ipv4): Likewise.
2863 (struct prefix_ipv6): Likewise.
2864
28651999-12-04 Rumen Svobodnikov <rumen@linux.tu-varna.acad.bg>
2866
2867 * memory.c (struct mstat): Revert to support MEMORY_LOG.
2868
28691999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2870
2871 * version.h: Bump up to 0.81c for testing new kernel codes.
2872
28731999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2874
2875 * thread.h (struct thread): Pthread support is disabled all
2876 platform.
2877
28781999-11-21 Michael Handler <handler@sub-rosa.com>
2879
2880 * Include <limits.h> and <strings.h> under SUNOS_5.
2881
28821999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2883
2884 * sockunion.c (in6addr_cmp): Enclosed by #define HAVE_IPV6
28851999-11-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2886
2887 * command.h (node_type ): Add BGP_IPV4_NODE and BGP_IPV6_NODE.
2888
28891999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2890
2891 * command.c (disable): Add `disable' command.
2892
28931999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2894
2895 * plist.c (vty_prefix_list_install): Add any check.
2896
28971999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2898
2899 * command.h (node_type ): Add DUMP_NODE.
2900
29011999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2902
2903 * smux.c: Change default SMUX oid to compatible with gated.
2904
29051999-10-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2906
2907 * if_rmap.c: New file added.
2908
2909 * if_rmap.h: New file added.
2910
29111999-10-29 Alex Zinin <zinin@amt.ru>
2912
2913 * hash.c: add hash_free() function
2914
29151999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2916
2917 * hash.c (hash_clean): Add clean function.
2918
2919 * plist.c (prefix_list_reset): Add reset function.
2920
2921 * filter.c (access_list_reset): Add reset function.
2922
29231999-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2924
2925 * client.c: Merged with zclient.c.
2926 * client.h: Merged with zclient.h.
2927
29281999-10-15 Jordan Mendelson <jordy@wserv.com>
2929
2930 * md5.c: Imported from GNU C Library.
2931 * md5-gnu.h: Likewise.
2932
29331999-10-15 Jochen Friedrich <jochen@scram.de>
2934
2935 * smux.c (smux_getresp_send): SMUX_GETRSP codes improvement.
2936
29371999-10-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2938
2939 * smux.h: New file added.
2940
2941 * snmp.c: Rename to smux.c.
2942
29431999-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2944
2945 * command.c (cmd_execute_command_strict): Filter ambious commands.
2946 (cmd_filter_by_string): Change to return enum match_type.
2947
29481999-10-01 Toshiaki Takada <takada@zebra.org>
2949
2950 * vty.c (vty_describe_fold): New function which does VTY
2951 description line fold.
2952 * vty.c (vty_describe_command): Set description column.
2953
29541999-09-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2955
2956 * plist.c (prefix_list_init_ipv4): VTY user interface is improved.
2957
29581999-09-26 Kunihiro Ishiguro <kunihiro@zebra.org>
2959
2960 * command.c (cmd_filter_by_string): Fix bug of CMD_IPV4 and
2961 CMD_IPV4_PREFIX check. Both return type must be exact_match.
2962
29631999-09-24 Toshiaki Takada <takada@zebra.org>
2964
2965 * command.c (cmd_filter_by_completion),
2966 (is_cmd_ambiguous): Check IPv4 address, IPv4 prefix and range
2967 parameter matches range.
2968
29691999-09-22 Kunihiro Ishiguro <kunihiro@zebra.org>
2970
2971 * routemap.c (route_map_apply): Returm RM_DENYMATCH when no match
2972 is performed.
2973
29741999-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
2975
2976 * vty.c (vty_read): Control-C stop VTY_MORE mode.
2977
29781999-09-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2979
2980 * command.h (node_type ): Add ACCESS_IPV6_NODE and
2981 PREFIX_IPV6_NODE.
2982
2983 * distribute.h: New file added.
2984
2985 * command.h (node_type ): Delete DISTRIBUTE_NODE.
2986
29871999-09-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2988
2989 * vty.c (vty_terminate_all): New function added for reload
2990 support.
2991
29921999-09-06 Kunihiro Ishiguro <kunihiro@zebra.org>
2993
2994 * memory.h (enum): Add new type MTYPE_OSPF_EXTERNAL_ROUTE.
2995
29961999-08-31 Janos Farkas <chexum@shadow.banki.hu>
2997
2998 * vty.c (vty_read): Handle also 0x7f (alt-backspace), just like
2999 esc-ctrl-h (delete word backwards).
3000
30011999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3002
3003 * if.h: Add if_nametoindex for NRL.
3004
30051999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
3006
3007 * if.c (if_create): New function.
3008
30091999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
3010
3011 * snmp.c: New file.
3012
30131999-08-21 Kunihiro Ishiguro <kunihiro@zebra.org>
3014
3015 * stream.c (stream_put): stream_memcpy () is changed to stream_put
3016 (). stream_get () is added.
3017
30181999-08-18 Toshiaki Takada <takada@zebra.org>
3019
3020 * memory.h (enum): Add MTYPE_OSPF_LSA_DATA.
3021
30221999-08-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3023
3024 * table.c (route_table_finish): add function frees table.
3025
30261999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
3027
3028 * memory.h (enum): Add MTYPE_RTADV_PREFIX.
3029
30301999-08-11 Kunihiro Ishiguro <kunihiro@zebra.org>
3031
3032 * if.h (struct interface ): hw_address, hw_address_len added.
3033
30341999-08-10 Kunihiro Ishiguro <kunihiro@zebra.org>
3035
3036 * if.h (struct interface ): Change structure member if_data to
3037 info, index to ifindex.
3038
30391999-08-08 Rick Payne <rickp@rossfell.co.uk>
3040
3041 * routemap.c: Multi protocol route-map modification.
3042
3043 * routemap.c (route_map_apply): Route match process bug is fixed.
3044
30451999-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3046
3047 * thread.c (thread_fetch): When signal comes, goto retry point.
3048
30491999-08-04 Kunihiro Ishiguro <kunihiro@zebra.org>
3050
3051 * Makefile.am: Add sockopt.c and sockopt.h
3052 * sockopt.c: New file.
3053 * sockopt.h: New file.
3054
30551999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3056
3057 * version.h (ZEBRA_VERSION): Release zebra-0.75
3058
30591999-08-01 Kunihiro Ishiguro <kunihiro@zebra.org>
3060
3061 * memory.h (enum): Add MTYPE_RIPNG_AGGREGATE.
3062
30631999-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
3064
3065 * sockunion.h: Add sockunion_getpeername ().
3066
30671999-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
3068
3069 * version.h: Release zebra-0.74
3070
30711999-07-26 Kunihiro Ishiguro <kunihiro@zebra.org>
3072
3073 * command.h (struct host): Delete lines from struct host. Add
3074 lines to struct vty.
3075
3076 * command.c: Delete `lines LINES'. Terminal display line settings
3077 should be done by `terminal length' command.
3078
30791999-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3080
3081 * memory.h (enum): MTYPE_OSPF_PATH are added.
3082
30831999-07-22 Toshiaki Takada <takada@zebra.org>
3084
3085 * memory.h (enum): MTYPE_OSPF_NEXTHOP is added.
3086
30871999-07-21 Toshiaki Takada <takada@zebra.org>
3088
3089 * linklist.c (list_add_node_prev), (list_add_node_next),
3090 (list_add_list): New function added.
3091
3092 * table.c (route_table_free): New function added.
3093
30941999-07-21 Kunihiro Ishiguro <kunihiro@zebra.org>
3095
3096 * plist.c (config_write_prefix): Set write flag when configuration
3097 is written.
3098
30991999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3100
3101 * prefix.c : prefix_cmp() added. change apply_mask() to
3102 apply_mask_ipv4(), and new apply_mask() added.
3103
31041999-07-14 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3105
3106 * prefix.c (prefix2str): append prefixlen.
3107
31081999-07-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3109
3110 * command.c (config_terminal): Change "config terminal" to
3111 "configure terminal". Reported by Georg Hitsch
3112 <georg@atnet.at>.
3113 (config_terminal_length): `terminal length <0-512>' is added. At
3114 this moment this command is only usef for vty interface.
3115 Suggested by Georg Hitsch <georg@atnet.at>.
3116
31171999-07-12 Kunihiro Ishiguro <kunihiro@zebra.org>
3118
3119 * routemap.c (rulecmp): Add wrapper function of strcmp.
3120
31211999-07-08 Rick Payne <rickp@rossfell.co.uk>
3122
3123 * sockunion.c (inet_aton): Fix bug of inet_aton.
3124
31251999-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
3126
3127 * version.h (ZEBRA_VERSION): Start zebra-0.73
3128
31291999-07-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3130
3131 * version.h: Bump up to 0.72.
3132
31331999-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3134
3135 * command.c (install_default): New function for install default
3136 commands to the node.
3137
3138 * memory.h (enum): MTYPE_NEXTHOP is added.
3139
31401999-07-01 <kunihiro@zebra.org>
3141
3142 * command.c (no_banner_motd): `no banner motd' command added.
3143
31441999-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3145
3146 * regex.c: Update to glibc-2.1.1's posix/regex.c
3147
3148 * regex-gnu.h: Update to glibc-2.1.1's posix/regex.h
3149
3150 * prefix.h (IPV4_ADDR_SAME): Macro added.
3151 (IPV6_ADDR_SAME): Likewise.
3152
31531999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3154
3155 * memory.h (enum): Add MTYPE_OSPF_VERTEX
3156
3157 * version.h: Bump up to 0.71.
3158
3159 * vty.c (vty_serv_sock_addrinfo): Use addrinfo function to bind
3160 VTY socket when IPv6 is enabled.
3161
31621999-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
3163
3164 * vty.c (vty_serv_sock): Change vty_serv_sock determine which
3165 address family to bind.
3166
3167 * command.c: Add quit command.
3168
31691999-06-26 NOGUCHI kay <kay@dti.ad.jp>
3170
3171 * vty.c (vty_read_config): Fix bug of configuration file path
3172 detection.
3173
31741999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3175
3176 * version.h: Bump up to 0.70.
3177
31781999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
3179
3180 * buffer.h (GETL): Remove GETL macro.
3181
3182 * version.h: Bump up to 0.69.
3183
31841999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3185
3186 * if.c (connected_add): Commented out connected_log.
3187
31881999-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3189
3190 * command.h (struct cmd_element ): strvec and descvec is combined
3191 into newstrvec.
3192
3193 * command.c (desc_make): Function removed.
3194 (desc_next): Function removed.
3195
3196 * command.h (struct cmd_element ): docvec is removed from struct
3197 cmd_element.
3198
31991999-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
3200
3201 * command.c (cmd_execute_command): Remove command NULL check.
3202
3203 * command.h (struct cmd_element ): Add newstrvec entry to struct
3204 cmd_element.
3205 (DEFUN2): DEFUN2 macro is removed. DEFUN is extended to support
3206 (a|b|c) statement.
3207 (DESC): DESC macro is removed.
3208
3209 * vty.c (vty_complete_command): When return value is
3210 CMD_ERR_NO_MATCH, don't display error message.
3211
32121999-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
3213
3214 * table.c (route_next_until): New function.
3215
3216 * version.h: Bump up to 0.68.
3217
32181999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3219
3220 * vty.c (vty_close): Free vty->buf when vty is closed.
3221
3222 * memory.h (enum): Add MTYPE_COMMUNITY_ENTRY and
3223 MTYPE_COMMUNITY_LIST.
3224
3225 * vty.h (struct vty ): Change buf from static length buffer to
3226 variable length buffer.
3227
3228 * vty.c (vty_ensure): New function added.
3229
32301999-06-04 Kunihiro Ishiguro <kunihiro@zebra.org>
3231
3232 * command.h (node_type ): Add COMMUNITY_LIST_NODE.
3233
3234 * command.c (config_enable_password): Freeing host.enable bug is
3235 fixed.
3236 (config_enable_password): Add argc count check.
3237
32381999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
3239
3240 * version.h: Bump up to 0.67.
3241
32421999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3243
3244 * command.c (zencrypt): New function for encrypt password.
3245
3246 * command.h (struct host): Add password_encrypt and
3247 enable_encrypt.
3248
32491999-05-30 Jochen Friedrich <jochen@scram.de>
3250
3251 * command.h (struct host): New member encrypt is added for
3252 encrypted password.
3253
32541999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3255
3256 * vty.c: Remove all_digit_check function. Instead use all_digit.
3257
3258 * prefix.c (all_digit): New function for checking string is made
3259 from digit character.
3260
32611999-05-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3262
3263 * Makefile.am (libzebra_a_SOURCES): Add zclient.c.
3264 (noinst_HEADERS): Add zclient.h
3265
3266 * zclient.[ch]: New file for zebra client routine.
3267
3268 * memory.h (enum): Add MTYPE_ZEBRA.
3269
32701999-05-19 Kunihiro Ishiguro <kunihiro@zebra.org>
3271
3272 * version.h (ZEBRA_VERSION): Update to 0.66.
3273
32741999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
3275
3276 * buffer.h (GETC,GETW): Macro deleted.
3277
32781999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
3279
3280 * prefix.h (IPV4_NET0, IPV4_NET127): Macro added.
3281
32821999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
3283
3284 * vty.c (service_advanced_vty): New command added.
3285 (no_service_advanced_vty): Likewise.
3286
32871999-05-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3288
3289 * vty.c (vty_auth): If advanced flag is set and enable password is
3290 not set, directly login to the ENABLE_NODE. This feature is
3291 originally designed and implemented by Stephen R. van den Berg
3292 <srb@cuci.nl>.
3293
3294 * command.h (host): Add advanced flag to struct host for advanced
3295 vty terminal interface.
3296
3297 * version.h (ZEBRA_VERSION): Update to 0.65 for next beta release.
3298
32991999-05-14 Stephen R. van den Berg <srb@cuci.nl>
3300
3301 * command.h (node_type ): Add TABLE_NODE.
3302
3303 * vty.c (vty_telnet_option): Check host.lines value.
3304
3305 * command.c (config_lines): DEFUN for 'lines LINES' command.
3306
3307 * zebra.h: Include <sys/utsname.h> for uname().
3308 (RT_TABLE_MAIN): Defined as 0 if OS does not support multiple
3309 routing table.
3310
3311 * vty.c (vty_auth): Directly login to the ENABLE_NODE when enable
3312 password is not set.
3313 (vty_prompt): Get machine's hostname when hostname is not set.
3314
33151999-05-11 James Willard <james@whispering.org>
3316
3317 * command.c (config_exit): Close connection when `exit' command is
3318 executed at ENABLE_NODE.
3319
33201999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
3321
3322 * vty.c (vty_stop_input): `C-c' key change node to ENABLE_NODE.
3323
3324 * command.c (cmd_execute_command_strict): Matched command size
3325 check added.
3326 (cmd_make_desc_line): New function for DEFUN2.
3327
3328 * command.h (struct cmd_element ): Add descsize.
3329
33301999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
3331
3332 * command.h (struct cmd_element ): Remame descvec to docvec.
3333 (struct cmd_element ): Add descvec for new description system.
3334
3335 * command.c (desc_make): Check cmd->descvec.
3336
33371999-05-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3338
3339 * memory.h (enum): Add MTYPE_CLUSTER, MTYPE_CLUSTER_VAL.
3340
33411999-05-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3342
3343 * version.h (ZEBRA_VERSION): Bump up to 0.64 for next beta
3344 release.
3345
33461999-05-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3347
3348 * linklist.c (list_delete_all_node): bug fix.
3349 previous code loses current position when node
3350 is deleted.
3351
33521999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
3353
3354 * command.h (DESC): Macro added.
3355 (struct cmd_element2): Delete struct cmd_element2.
3356
3357 * plist.c (prefix_list): Sequential number option check is added.
3358
33591999-05-02 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3360
3361 * log.c (zvlog_{debug,info,notice,warn,err}): have been
3362 added. now we can log both console and file, but still
3363 need some fix about config write.
3364
33651999-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3366
3367 * log.c (zvlog_debug): Fix yasu's change.
3368
33691999-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
3370
3371 * plist.c (prefix_list): Fix typo.
3372
33731999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3374
3375 * Set version to 0.63 for first beta package.
3376
33771999-04-27 Carlos Barcenilla <barce@frlp.utn.edu.ar>
3378
3379 * prefix.c (str2prefix_ipv4): Fix prefix length check.
3380 (str2prefix_ipv6): Likewise.
3381
33821999-04-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3383
3384 * memory.h (enum): Add MTPYE_PREFIX_LIST and
3385 MTYPE_PREFIX_LIST_ENTRY.
3386
3387 * command.h (node_type ): Add PREFIX_NODE.
3388
33891999-04-25 Carlos Barcenilla <barce@frlp.utn.edu.ar>
3390
3391 * command.c: ALIAS (config_write_memory_cmd) and ALIAS
3392 (copy_runningconfig_startupconfig_cmd) is added.
3393
3394 * table.c (route_node_lookup): Unused match variable deletion.
3395
33961999-04-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3397
3398 * Makefile.am (libzebra_a_SOURCES): plist.c added.
3399 (noinst_HEADERS): plist.h added.
3400
3401 * plist.c, plist.h: New file added.
3402
3403 * memory.h (enum): Rename MTYPE_AS_PASN to MTYPE_AS_STR.
3404 * memory.c: Likewise.
3405
34061999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
3407
3408 * command.c (show_version): `show version' command added.
3409
34101999-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
3411
3412 * prefix.c (str2prefix_ipv6): Prefix length overflow check.
3413
34141999-04-19 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
3415
3416 * prefix.c (str2prefix_ipv4): Prefix length overflow check.
3417
34181999-04-19 Alex Bligh <amb@gxn.net>
3419
3420 * prefix.c (sockunion2hostprefix): Function added.
3421 (sockunion2prefix): Address family was not set. Now it is set.
3422
3423 * vty.c: VTY access-class command is added.
3424
34251999-04-18 Kunihiro Ishiguro <kunihiro@zebra.org>
3426
3427 * memory.c: Change xmalloc to zmalloc. xcalloc, xrealloc, xfree,
3428 xstrdup are likewise.
3429
34301999-04-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3431
3432 * thread.c: Add thread_execute for other routing daemon.
3433 OSPF tasks need to be generated by "sheduled" and "executed".
3434
34351999-04-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3436
3437 * buffer.c: Rewrite buffer_write and buffer_flush related
3438 functions for fixing bugs. Reason of the problem and fix is
3439 suggested by Alex Bligh <amb@gxn.net>.
3440
34411999-04-12 Alex Bligh <amb@gxn.net>
3442
3443 * command.c (cmd_entry_function_descr): Added for variable
3444 argument help display.
3445
34461999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3447
3448 * regex.c, regex-gnu.h: Imported from GNU sed-3.02 distribution.
3449
34501999-03-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3451
3452 * stream.c: stream_fifo_free bug is fixed.
3453
34541999-03-19 Toshiaki Takada <takada@zebra.org>
3455
3456 * stream.c (stream_strncpy): Added for getting any length bytes
3457 from stream.
3458
34591999-03-16 Kunihiro Ishiguro <kunihiro@zebra.org>
3460
3461 * version.h (ZEBRA_BUG_ADDRESS): New macro added.
3462
34631999-03-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3464
3465 * buffer.c (buffer_flush_window): If ep is same as buffer's size
3466 length and lp is overrun one octet.
3467
34681999-03-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3469
3470 * vty.h: add VTY's timeout function.
3471
34721999-03-05 <kunihiro@zebra.org>
3473
3474 * command.h (node_type ): Add OSPF6_node.
3475
34761999-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
3477
3478 * zebra.h: Check HAVE_SYS_SELECT_H when include <sys/select.h>
3479
34801999-03-03 Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
3481
3482 * zebra.h: Include <net/if_var.h> if it exists.
3483
34841999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3485
3486 * getopt.[ch],getopt1.c: Sync with glibc-2.1.
3487
3488 * log.c (zlog): Tempolary ZLOG_STDOUT feature added.
3489
3490 * command.h: Include vector.h and vty.h
3491
34921999-02-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3493
3494 * routemap.h (struct route_map_rule_cmd): Add prefix arguemnt.
3495
3496 * routemap.c (route_map_apply_index): Add prefix argument.
3497 (route_map_apply): Likewise.
3498
3499 * memory.h (enum): Add MTYPE_ROUTE_MAP_COMPILED.
3500
3501 * stream.c: Add stream_fifo related functions.
3502
35031999-02-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3504
3505 * daemon.c: Return integer value. File descriptor close is added.
3506
3507 * memory.h (enum): add MTYPE_OSPF_LSA.
3508
35091999-02-23 Kunihiro Ishiguro <kunihiro@zebra.org>
3510
3511 * rsh.c: Remove empty file.
3512
35131999-02-22 <kunihiro@zebra.org>
3514
3515 * routemap.c: Add add/delete hook to route_map_master.
3516
35171999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
3518
3519 * str.[ch] added to supply wrappers for snprintf(), strlcat() and
3520 strlcpy on system without these.
3521
35221999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
3523
3524 * syslog support added
3525
35261999-02-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3527
3528 * filter.c (access_list_add_hook): added for hook function management.
3529 * filter.c (access_list_delete_hook): Likewise.
3530
35311999-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
3532
3533 * stream.c: New file.
3534 * stream.h: New file.
3535 * Divide stream related fucntions from buffer.[ch] into stream.[ch].
3536
35371999-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3538
3539 * memory.h (enum): add MTYPE_STREAM, MTYPE_STREAM_DATA
3540
3541 * buffer.c (stream_new): Set MTYPE_STREAM to XMALLOC argument.
3542
35431998-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
3544
3545 * routemap.c: route_map_index_delete() added.
3546
35471998-12-22 Kunihiro Ishiguro <kunihiro@zebra.org>
3548
3549 * buffer.c (buffer_empty): check cp instead of sp.
3550
35511998-12-17 Kunihiro Ishiguro <kunihiro@zebra.org>
3552
3553 * radix.[ch]: Deleted.
3554
35551998-12-15 Magnus Ahltorp <map@stacken.kth.se>
3556
3557 * buffer.c: Prototype fixes.
3558 * prefix.c: Likewise.
3559 * sockunion.c: Likewise.
3560 * sockunion.h: Likewise.
3561
35621998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3563
3564 * vty.c (vty_read): DELETE key works as vty_delete_char.
3565
35661998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
3567
3568 * log.c (time_print): chane %y to %Y.
3569
35701998-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
3571
3572 * distribute.c: new file.
3573
35741998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
3575
3576 * filter.c: Remove all of struct prefix_{ipv4,ipv6} and add
3577 complete support of IPv6 access list.
3578
3579 * command.c (config_write_element): function delete.
3580 (config_write_host): function add. password and enable password
3581 isn't printed to vty interface.
3582
35831998-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
3584
3585 * filter.c: Change prefix_ipv4 to prefix and add support of
3586 prefix_ipv6 filtering.
3587
35881998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3589
3590 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6 inet6-apps
3591 header includes.
3592
35931998-12-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3594
3595 * log.c (log_flush): fix function name typo.
3596
35971998-12-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
3598
3599 * memory.h: OSPF memory type is added.
3600
36011998-11-15 Kunihiro Ishiguro <kunihiro@zebra.org>
3602
3603 * command.c (sort_node): add sort_node() for pretty printing of
3604 command on vty interface.
3605 (config_password): delete the restriction of charaster of password
3606 string.
3607
36081998-09-05 Kunihiro Ishiguro <kunihiro@debian.zebra.org>
3609
3610 * prefix.c (prefix_ipv4_any): add prefix_ipv4_any().
3611
36121998-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
3613
3614 * network.h: New file.
3615
36161998-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
3617
3618 * vty.c (vty_will_echo): function name change from vty_off_echo.
3619
36201998-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
3621
3622 * buffer.h: add PUTC,PUTW,PUTL macros.
3623
36241998-07-22 Kunihiro Ishiguro <kunihiro@zebra.org>
3625
3626 * route.[ch]: renamed to prefix.[ch]
3627
36281998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
3629
3630 * prefix_in, prefix_in6 is replaced by prefix_ipv4, prefix_ipv6.
3631
3632 * Makefile.am: @INCLUDES@ is deleted from INCLUDES.
3633
36341998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3635
3636 * host.[ch]: merged with command.[ch]
3637
36381998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
3639
3640 * Makefile.am (libzebra_a_SOURCES): add route.c to libzebra_a_SOURCES.
3641
36421998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3643
3644 * route.c (str2prefix): str2prefix () is gone.
3645
36461998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
3647
3648 * vty.c (vty_read_config): change CONDIR to SYSCONFDIR.
3649
3650 * .cvsignore: add file.
3651
3652 * memory.c (xerror): add arguent `type' and `size'.
3653
3654 * socket.c: deleted.
3655
36561998-05-02 Kunihiro Ishiguro <kunihiro@zebra.org>
3657
3658 * vector.c: malloc,free,realloc -> XMALLOC,XFREE,XREALLOC.
3659 * linklist.c: same as above.
3660
36611998-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3662
3663 * filter.[ch]: added.
3664
36651998-04-01 Kunihiro Ishiguro <kunihiro@zebra.org>
3666
3667 * vty.c (config_who): return CMD_SUCCESS
3668
36691998-04-01 Jochen Friedrich <jochen@scram.de>
3670
3671 * table.c (route_dump_node): route_dump_node is IPv6 specific
3672 function so move #ifdef to the end of route_dump_node ().
3673
36741998-03-05 "Hannes R. Boehm" <hannes@boehm.org>
3675
3676 * if.c: DEFUN(interface_desc) added.
3677
36781998-03-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3679
3680 * if.c: separated from ripd/rip_interface.c
3681
36821998-03-04 Kunihiro Ishiguro <kunihiro@zebra.org>
3683
3684 * thread.[ch] : added.
3685
36861998-02-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3687
3688 * vty.c (vty_delete_char): fix size bug.
3689 (vty_backward_pure_word): function added.
3690 (vty_read): ESC + 'f' perform vty_forward_word.
3691 (vty_read): ESC + 'b' perform vty_backward_word.
3692
36931998-02-11 Kunihiro Ishiguro <kunihiro@zebra.org>
3694
3695 * radix.c (radix_lookup_rt): add mask check.
3696 (radix_delete_duproute): add mask check.
3697
36981998-02-10 Kunihiro Ishiguro <kunihiro@zebra.org>
3699
3700 * command.c (config_write_file): fix vty -> file_vty.
3701
37021998-02-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3703
3704 * command.c (cmd_filter_ambiguous): add complex type treatment.
3705
37061998-02-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3707
3708 * vty.c (vty_time_print): function added.
3709 (vty_complete_command): now [...] element isn't shown by completion.
3710
37111998-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
3712
3713 * command.c : change from cmd_install_node() to install_node().
3714
37151998-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
3716
3717 * route.[ch]: struct rt{} is replaced by struct prefix{}.
3718
37191998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3720
3721 * command.c (cmd_execute_command): check command length.
3722
3723 * timer.c (zebra_timer_set): add zebra_timer_set.
3724
37251998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
3726
3727 * command.h (node_type ): add ZEBRA_NODE.
3728
3729 * command.c (config_exit): add RIP_NODE.
3730 (config_write_file): add RIP_NODE.
3731
37321998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
3733
3734 * print_version.c (print_version): Now Copyright is 1996-1998.
3735
3736 * sockunion.c (sockunion_log): moved from ../zebra/route.c
3737
37381997-12-30 Kunihiro Ishiguro <kunihiro@zebra.org>
3739
3740 * host.c (config_logfile): change 'log PATH' to 'logfile PATH'.
3741
3742 * sockunion.c (sockunion_sameprefix): add same prefix for
3743 sockunion.
3744
37451997-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
3746
3747 * radix.[ch] : are moved from ../zebra directroy.
3748
3749 * command.c (config_from_file): if command execution failed down
3750 level to CONFIG_NODE.
3751
3752 * host.c: config_log function which enable 'log FILENAME' command.
3753
37541997-12-23 Kunihiro Ishiguro <kunihiro@zebra.org>
3755
3756 * vty.c: add vty_transpose_chars (). Now you can use '^T' to
3757 transpose character.
3758
3759 * command.c: cmd_cmdsize add, this is useful to check incomplete
3760 command.
3761
37621997-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
3763
3764 * fd.h: add family for address family
3765
37661997-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
3767
3768 * command.o
3769 * vty.o
3770 * host.o is moved from ../zebra
3771
37721997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
3773
3774 * make library directory.
3775