]> git.proxmox.com Git - mirror_frr.git/blob - zebra/ChangeLog
[debug] Improve zebra kernel socket debug message to include IP addresses.
[mirror_frr.git] / zebra / ChangeLog
1 2006-05-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
2
3 * kernel_socket.c: (ifam_read_mesg) Improve debug message
4 to show the IP address.
5
6 2006-05-15 Paul Jakma <paul.jakma@sun.com>
7
8 * zserv.c: (general) Remove the private zebra_command_str
9 in favour of newly added libzebra zserv_command_string.
10
11 2006-05-11 Paul Jakma <paul.jakma@sun.com>
12
13 * interface.c: (if_delete_update) route_node_lookup may return
14 NULL, should fix Coverity CID #31.
15
16 2006-02-09 Paul Jakma <paul.jakma@sun.com>
17
18 * rib.h: (struct {rib,nexthop}) Rearrange fields to avoid
19 needless padding.
20 (struct rib) Remove the indirect pointer, not used anywhere!
21
22 2006-02-02 Paul Jakma <paul.jakma@sun.com>
23
24 * interface.c: (if_dump_vty) move flags to their line, neater.
25
26 2006-01-30 Paul Jakma <paul.jakma@sun.com>
27
28 * zebra_rib.c: (rib_process) Fourth time lucky on this jinxed
29 commit, last commit had a hole that could allow connected
30 route selection to escape beyond the connected route logic.
31 This time I cross-checked with Gunnar first. ;)
32
33 2006-01-25 Gunnar Stigen <gunnar.stigen@axxessit.no>
34
35 * zebra_rib.c: (rib_process) Application of Gunnar's earlier
36 metric selection RIB change included incorrect tidy-ups made
37 by commiter. Fix. (NB: any errors here are again due to paul).
38
39 2006-01-25 Paul Jakma <paul.jakma@sun.com>
40
41 * (general) More solaris PF_ROUTE hacks. The IFF_UP mangling
42 for solaris was incomplete on the PF_ROUTE side. fix it.
43 This changeset generally uglifies things. For some future
44 work I'd like to see the state changes seperated out from
45 the details of the code. Differences between systems might
46 then be slightly easier to implement without convoluted
47 hacks.
48 Changes should be specific to Solaris mostly, however
49 also tested on FreeBSD 6.
50 * if_ioctl_solaris.c: (interface_list_ioctl) ignore ~IFF_UP
51 interfaces, we'll hear about them when/if interface goes up
52 through NEWADDR.
53 Update flags explicitely at end of it to kick mangling.
54 * ioctl_solaris.c: (if_mangle_up) removed to interface.c, in
55 kind.
56 (lifreq_set_name) more convenient to take the string, than
57 the ifp.
58 (if_get_flags_direct) new convenience function, returns
59 the actual flags. Used during bootstrap in if_ioctl_solaris.c
60 to peek at flags of logical interfaces to see whether or
61 not to ignore them.
62 (if_get_flags) ENXIO means it's gone, poke out IFF_UP and
63 kick flags update.
64 (if_{un,}set_flags) flags argument should be 64bit.
65 * ioctl.{c,h}: flags argument should be 64bit.
66 * interface.h: Add a 'primary_state' flag to struct zebra_if on
67 SUNOS_5.
68 Export if_flags_update.
69 * interface.c: (if_flags_mangle) moved over in kind from
70 ioctl_solaris.c. Nasty kludge to try get IFF_UP right, as
71 much as is possible. Also keep track of the actual IFF_UP
72 value for the primary interface, so we can know when the ifp
73 must be deleted.
74 (if_flags_update) Take a new interface flags value, apply it
75 to the interface, and take whatever actions are required due
76 to flag transitions.
77 (if_refresh) flag state change logic is moved out to
78 previous. Just call if_get_flags, which will end up using
79 previous to effect the update of flags.
80 (if_flag_dump_vty) IFF_IPV{4,6} aren't interesting, VIRTUAL
81 and NOXMIT are though.
82 * kernel_socket.c: (ifm_read) Down->Down transitions shouldn't
83 create ifp, for non-IFANNOUNCE systems.
84 Use if_flags_update to update flags.
85 flag transition logic is now handled automatically through
86 if_flags_update.
87 (ifam_read) Better to call if_refresh *after* adding
88 connected addresses, as connected count affects IFF_UP on
89 IFF_UP-mangled systems.
90 On Solaris, Up->Down due to DELADDR means we need to delete
91 the ifp - the IFINFO might already have been and gone.
92 * rt.h: include other dependent headers.
93
94 2006-01-19 Paul Jakma <paul.jakma@sun.com>
95
96 * (general) various miscellaneous compiler warning fixes.
97 Remove redundant break statements from switch clauses
98 which return.
99 Remove stray semi-colons which cause empty-statement
100 warnings.
101 * main.c: (sighup) remove private declaration of external
102 function.
103 (main) return from main, not exit, cause it annoys SOS.
104
105 2006-01-18 Gunnar Stigen <gunnar.stigen@axxessit.no>
106
107 * zebra_rib.c: Take interface metric into account.
108
109 2006-01-17 Paul Jakma <paul.jakma@sun.com>
110
111 * kernel_socket.c: (ifam_read) Read metric from RTM_NEWADDR.
112 If interface is an alias, pass the alias as a label for
113 connected_add_ipv{4,6}.
114 * rt_netlink.c: (netlink_interface_addr) print out
115 IFA_CACHEINFO info, if present, when debugging kernel
116 messages.
117
118 2006-01-17 Gunnar Stigen <gunnar.stigen@axxessit.no>
119
120 * connected.c: (connected_up_ipv{4,6}) Include interface metric on
121 connected routes.
122 * if_ioctl.c: (if_getaddrs) Be defensive about assuming
123 that struct ifaddrs will have ifa_addr filled in.
124
125 2006-01-16 Paul Jakma <paul.jakma@sun.com>
126
127 * zserv.c: Read/write updated Zserv header.
128
129 2006-01-11 Paul Jakma <paul.jakma@sun.com>
130
131 * zserv.c: (zsend_interface_{add,delete,update}) if flags are
132 8 bytes now, update to write out with stream_putq.
133
134 2005-12-29 Greg Troxel <gdt@fnord.ir.bbn.com>
135
136 * kernel_socket.c: remove dead code (from David Young).
137
138 * rt_socket.c (kernel_rtm_ipv4): Use AF_INET rather than AF_UNSPEC
139 for mask. From David Young.
140
141 2005-11-26 Paul Jakma <paul.jakma@sun.com>
142
143 * connected.{c,h}: (connected_add_ipv6) label should have
144 const qualifier, fix declarations.
145
146 2005-11-24 Paul Jakma <paul.jakma@sun.com>
147
148 * kernel_socket.h: New header for functions exported to sysctl
149 methods.
150 * kernel_socket.c: include previous.
151 Remove static qualifier from couple of functions which are
152 used by sysctl methods.
153 Add a workaround for a bogus gcc warning to the RTA_ macros.
154 * Makefile.am: Add kernel_socket.h to noinst_HEADERS
155 * if_sysctl.c: include rt.h and kernel_socket.h and remove
156 redundant prototypes.
157 * rtread_sysctl.c: ditto.
158 (route_read) fix mismatch of return values.
159 * {rt,zserv,rib}.h: Include lib headers depended on.
160
161 2005-11-23 Paul Jakma <paul.jakma@sun.com>
162
163 * (general) fix some small compile errors, and mark several
164 functions as static.
165 * kernel_socket.c: (ifan_read) should be static.
166 fix missing brackets.
167 (ifm_read,ifam_read,rtm_read_mesg,kernel_read) Make static
168 (ifam_read_mesg) make static. fix incorrect variable name.
169 (rtm_read) make static. Fix call to rib_delete_ipv4 which
170 should be rib_delete_ipv6.
171 (routing_socket,kernel_init) should be static. Void argument
172 should be specified as such, not left incomplete.
173 * rt_netlink.c: rt.h should be included, contains prototypes of
174 exported functions.
175 (kernel_delete_ipv6_old) fix sign of index argument.
176 * rt_socket.c: Exact same as previous. Also, make various
177 functions static.
178 * rtread_getmsg.c: Include zserv.h, which prototypes
179 route_read. Make static.
180 * rtread_sysctl.c: zserv.h and rt.h should be included.
181 fix definition of route_read.
182
183 2005-11-14 Paul Jakma <paul.jakma@sun.com>
184
185 * zebra_rib.c: (rib_process) convert to new workqueue specs and
186 shut up gcc, which complains about cast from void via
187 function parameters, for some dumb reason. Do the cast
188 inside the function instead.
189 (rib_queue_qnode_del) ditto.
190 (rib_queue_init) no need for the casts anymore.
191
192 2005-11-12 Alexander Gall <gall@switch.ch>
193
194 * See [quagga-dev 1815]
195 * kernel_socket.c: (rtm_write) Use SAROUNDUP when HAVE_SIN_LEN
196 is not available.
197 * rt_socket.c: (kernel_rtm_ipv6(_multipath)) set family to
198 AF_INET6 on ipv6 routes.
199
200 2005-11-12 Paul Jakma <paul.jakma@sun.com>
201
202 * kernel_socket.c: Add RTA_NAME_GET macro to extract name from
203 sockaddr_dl. Add some more RTF_ flags.
204 * (ifan_read) Add some debug messages.
205 * (ifm_read) Add more debug messages. More robust cross-checks
206 of index against name.
207 Fall back to by-name lookup if the index lookup fails, future
208 proofing more than anything else.
209 (ifam_read_mesg) Read RTA_IFP. Add debug messages.
210 (ifam_read) More debug. If there's an RTA_IFP and it isn't
211 the name of the interface, save it as the label.
212 (rtm_read_mesg) Read RTA_IFP.
213 (rtm_read) allow name to be retrieved.
214 (rtmsg_debug) expand on the debug message.
215
216 2005-11-11 Paul Jakma <paul.jakma@sun.com>
217
218 * kernel_socket.c: (ifm_read) arithmetic on void pointer
219 warning.
220 (ifam_read) Fix error from connected-with-label merge,
221 something crept in from the pending Solaris kernel_socket.c
222 patch which shouldn't have.
223
224 2005-11-03 Paul Jakma <paul.jakma@sun.com>
225
226 * connected.{c,h}: Include memory.h
227 (connected_add_ipv4) Use MTYPE for ifc label.
228 (connected_add_ipv6) Also should accept label. Store it in ifp.
229 (connected_del_ipv4) Taking label as argument is pointless.
230 * rt_netlink.c: (netlink_interface_addr) update label usage
231 for connected_{add,delete} functions.
232 * if_ioctl.c: (if_getaddrs) NULL label for connected_add_ipv6.
233 * if_ioctl_solaris.c: (interface_list_ioctl) Pass LIFC_NOXMIT
234 so we also find out about NOXMIT interfaces like VNI.
235 Bit of hackery to turn interface names into the primary
236 interface name, later with routing socket messages we only
237 will about primary interfaces anyway, so we must normalise
238 the name.
239 (if_get_addr) take label as argument, so it can
240 be passed to connected_add.
241 If label is provided, then it is interface name to issue the
242 ioctl for address information on, not the ifp name.
243 (interface_list) List AF_UNSPEC too, just in case.
244 * if_proc.c: (ifaddr_proc_ipv6) label for connected_add_ipv6.
245 * interface.c: (if_addr_wakeup) Some very bogus code - sets
246 IFF_RUNNING - add comment.
247 (if_refresh)
248 (ip_address_install) Use MTYPE for ifc label.
249 * ioctl_solaris.c: (if_mangle_up) New function. Hackery to make
250 IFF_UP reflect whether any addresses are left on the
251 interface, as we get signalled for IFF_UP flags change on the
252 primary interface only. Logical interfaces dont generate
253 IFINFO, but we do get an RTM_DELADDR.
254 (if_get_flags) Call if_mangle_up before return.
255 * kernel_socket.c: (ifam_read) Fixup calls to
256 connected_{add,delete} to match above changes. Rename gate
257 variable to brd, less confusing.
258 Pass the interface name as a label, if it is not same name
259 as ifp->name.
260
261 2005-10-11 Paul Jakma <paul.jakma@sun.com>
262
263 * connected.{c,h}: (connected_{add,delete}_ipv4) label should
264 be const qualified.
265
266 2005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
267
268 * zebra_vty.c: (route_type_str) Remove obsolete function: use new
269 library function zebra_route_string() instead. Note that there
270 are a few differences: for IPv6 routes, we now get "ripng" and
271 "ospf6" instead of the old behavior ("rip" and "ospf").
272 (route_type_char) Remove obsolete function: ues new library function
273 zebra_route_char() instead. Note that there is one difference:
274 the old function returned 'S' for a ZEBRA_ROUTE_SYSTEM route,
275 whereas the new one returns 'X'.
276 (vty_show_ip_route_detail,vty_show_ipv6_route_detail) Replace
277 route_type_str() with zebra_route_string().
278 (vty_show_ip_route,vty_show_ipv6_route) Replace route_type_char()
279 with zebra_route_char().
280
281 2005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
282
283 * rt_netlink.c: (netlink_request) Use memset to clear structure
284 before calling sendto (eliminates a valgrind error message about
285 uninitialized data).
286
287 2005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
288
289 * zserv.c: Always provied distance for route add
290
291 2005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
292
293 * connected.c: flag connected_up_ipv6() and connected_down_ipv6()
294 usage with HAVE_IPV6
295
296 2005-09-24 Hasso Tepper <hasso at quagga.net>
297
298 * rib.h: Add note about behaviour of rib_add_ipv[46]* functions -
299 add is treated as implicit withdraw.
300
301 2005-09-21 David Young <dyoung@ojctech.com>
302
303 * zebra_rib.c: Reduce the height of some staircases. Fix
304 rib_delete_ipv6() to match routes in the RIB by their gateway as
305 well as by destination.
306
307 2005-09-21 Paul Jakma <paul.jakma@sun.com>
308
309 * zebra_rib.c: (static_uninstall_ipv{4,6}) Fix regression wrt
310 removal of static routes with multiple-hops introduced with
311 the workqueue conversion. We should free the relevant
312 nexthop and then get rib_process to run, otherwise we just
313 get same static route back again (with no way to unconfigure
314 it, because its already deleted from configuration).
315
316 2005-09-12 Paul Jakma <paul.jakma@sun.com>
317
318 * (general) RTM_CHANGE and implicit withdraw on RTM_NEWADDR
319 support.
320 * connected.c: (connected_withdraw) new function. withdraw a
321 connected subnet address set from zebra, and pass information
322 along to clients.
323 (connected_announce) similar, but to announce a new connected
324 subnet address set.
325 (connected_check_ipv4) renamed to connected_check, as its
326 AFI independent.
327 (connected_add_ipv{4,6}) Remove the connected address announce
328 stuff, use connected_announce instead.
329 If connected_check indicates address is already present,
330 treat it as an implicit withdraw of the existing address, ie
331 remove the old address details and replace with the new
332 details.
333 (connected_delete_ipv{4,6}) Use connected_withdraw.
334 (connected_check_ipv6) deleted in favour of connected_check.
335 * connected.h: Rename connected_check_ipv4 to connected_check.
336 delete connected_check_ipv6.
337 * interface.c: Use connected_check rather than the AFI specific
338 symbols.
339 * kernel_socket.c: (rtm_read) RTM_CHANGE support. Create a
340 rib delete event for the existing route, before adding route
341 again.
342 (kernel_read) we can handle RTM_CHANGE now.
343
344 2005-08-27 Hasso Tepper <hasso at quagga.net>
345
346 * zebra_rib.c, rib.h: Add distance and metric arguments to the
347 rib_add_ipv6() function so that IPv6 routes in RIB can have correct
348 metric. No IPv6 routing daemon uses distance yet though.
349 * zserv.c, connected.c, kernel_socket.c, rt_netlink.c,
350 rtread_proc.c,zserv.c: Pass metric and distance info to the
351 rib_add_ipv6().
352
353 2005-07-29 Paul Jakma <paul.jakma@sun.com>
354
355 * interface.c: (if_delete_update) should always be available, not
356 just on RTM_IFANNOUNCE/NETLINK systems.
357 * kernel_socket.c: (ifan_read) only call if_delete_update when
358 interface departs, dont if_delete, because we wish to retain
359 interface configuration state even when interfaces are removed.
360 (ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning
361 to down state is only chance we have to clean up interface in case
362 it is deleted (eg Solaris down -> unplumb -> plumb up).
363 * redistribute.c: (zebra_interface_delete_update) should always be
364 available, we /will/ call it now on all systems, via
365 if_delete_update.
366 * zserv.c: (zsend_interface_delete) ditto
367 (zsend_interface_address) Update the call-flow diagramme, to
368 reflect that if_delete_update /is/ now called on all systems,
369 potentially.
370 * zserv.h: (zsend_interface_delete) unconditionally exported, as
371 above.
372
373 2005-06-28 Paul Jakma <paul.jakma@sun.com>
374
375 * (global) Extern and static'ification, with related fixups
376 of declarations, ensuring files include their own headers, etc.
377 * if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in
378 list loop
379 * kernel_socket.c: (RTA_{ADDR,ATTR}_GET) fix mistake, NULL check
380 should be on DEST argument
381
382 2005-06-14 Paul Jakma <paul.jakma@sun.com>
383
384 * kernel_socket.c: consolidate the IFAM{ADDR,MASK}GET and
385 RTM{ADDR,MASK}GET macros into generic rta_addrs macros,
386 RTA_{ADDR,ATTR}_GET.
387 (af_check) could use 'inline' attribute
388 (ifam_read_mesg) remove IFAM{ADDR,MASK}GET macro, change to
389 generic macro.
390 (rtm_read_mesg) similar
391
392 2005-06-12 Hasso Tepper <hasso at quagga.net>
393
394 * rt_netlink.c: Remove netlink-addr socket declaration, it's not used.
395 * rt_netlink.c (netlink_parse_info): Fix debug messages - nlmsg_pid is
396 unsigned and one zlog call had swapped arguments.
397 * rt_netlink.c (netlink_route_multipath): Fix compile with disabled
398 IPv6 support.
399
400 2005-05-31 Paul Jakma <paul.jakma@sun.com>
401
402 * zserv.c: (zsend_route_multipath) Fix bug if route is sent
403 with no NEXTHOP_FLAG_FIB nexthops. As ZAPI_MESSAGE_IFINDEX
404 and ZAPI_MESSAGE_NEXTHOP are always set, clients would try
405 read non-existent nexthop information and hit stream assert.
406 Zserv is still broken for multi-nexthop messages, but it always was.
407
408 2005-05-06 Paul Jakma <paul.jakma@sun.com>
409
410 * zserv.h: Remove ZEBRA_PORT definition, its in lib/zebra.h now
411
412 2005-04-28 Paul Jakma <paul.jakma@sun.com>
413
414 * rib.h: (struct rib) Add lock field for refcounting.
415 * zserv.h: (struct zebra_t) Add a ribq workqueue to the zebra
416 'master' struct.
417 * zserv.c: (zread_ipv4_add) XMALLOC then memset should be XCALLOC.
418 * zebra_rib.c: Clean up refcounting of route_node, make struct rib
419 refcounted and convert rib_process to work-queue. In general,
420 rib's should be rib_addnode'd and delnode'd to route_nodes, and
421 these symmetrical functions will manage the locking of referenced
422 route_node and freeing of struct rib - rather than having users
423 manage each seperately - with much scope for bugs..
424 (newrib_free) removed and replaced with rib_lock
425 (rib_lock) new function, check state of lock and increment.
426 (rib_unlock) new function, check lock state and decrement. Free
427 struct rib if refcount hits 0, freeing struct nexthop's, as
428 newrib_free did.
429 (rib_addnode) Add RIB to route_node, locking both.
430 (rib_delnode) Delete RIB from route_node, unlocking each.
431 (rib_process) Converted to a work-queue work function.
432 Functional changes are minimal, just arguments, comments and
433 whitespace.
434 (rib_queue_add_qnode) Helper function to setup a ribq item.
435 (rib_queue_add) Helper function, same arguments as old
436 rib_process, to replace in callers of rib_process.
437 (rib_queue_qnode_del) ribq deconstructor.
438 (rib_queue_init) Create the ribq.
439 (rib_init) call rib_queue_init.
440 (remainder) Sanitise refcounting of route_node's. Convert to
441 rib_queue_add, rib_addnode and rib_delnode. Change XMALLOC/memset
442 to XCALLOC. Remove calls to nexthop_delete and nexthop_free.
443
444 2005-04-10 Paul Jakma <paul@dishone.st>
445
446 * if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args
447 in ALL_LIST_ELEMENTS_RO macro.
448
449 2005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
450
451 * zserv.c (zebra_client_read): Fix bug: first read attempt should
452 read ZEBRA_HEADER_SIZE minus the number of bytes already read.
453 Improve efficiency by maintaining a calculation of the number
454 of bytes read instead of calling stream_get_endp multiple times.
455 If message length is too small, issue a warning message (not debug)
456 before closing the connection. And also check that message length
457 is not too big.
458
459 2005-04-09 Hasso Tepper <hasso at quagga.net>
460
461 * rt_netlink.c: One tiny missing comma caused pointless debug messages
462 about IPv6 nexthops.
463
464 2005-04-09 Hasso Tepper <hasso at quagga.net>
465
466 * rt_netlink.c (netlink_parse_info): Fix warning. It's safe to cast
467 status to unsigned here, because we already checked that it isn't
468 negative or 0.
469 * rt_netlink.c (netlink_interface_addr): Prefix length belongs to the
470 address, not to the interface.
471 * rt_netlink.c (netlink_route_multipath): Fix debug. No useless info
472 is printed out now and IPv6 info is handeled.
473
474 2005-04-05 Paul Jakma <paul@dishone.st>
475
476 * zserv.c: print more helpful errors when we fail to successfully
477 bind and listen on zserv socket. Closes bugzilla #163.
478
479 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
480
481 * if_ioctl.c: (interface_list_ioctl) Use if_get_by_name_len.
482 * if_proc.c: (ifaddr_proc_ipv6) Increase size of ifname buffer to
483 avoid overflow.
484 * kernel_socket.c: (ifan_read) Use if_get_by_name_len.
485
486 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
487
488 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
489 to save a memcpy.
490 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
491 if_get_by_name_len function.
492
493 2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
494
495 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
496 (if_delete_update) After distributing the interface deletion message,
497 set ifp->ifindex to IFINDEX_INTERNAL.
498 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
499 IFINDEX_INTERNAL.
500 (zebra_interface) Check return code from interface_cmd.func.
501 Do not set internal ifindex values to if_new_intern_ifindex(),
502 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
503 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
504 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
505 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
506 Detects interface rename events by checking if that ifindex is already
507 being used. If it is, delete the old interface before assigning
508 the ifindex to the new interface.
509 (netlink_interface, netlink_link_change) Call set_ifindex to update
510 the ifindex.
511
512 2005-03-31 Hasso Tepper <hasso at quagga.net>
513
514 * rt_netlink.c (netlink_talk_filter): Show always warning message,
515 it's not for debug.
516 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
517 although we do now actually.
518 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
519 netlink_cmd to send messages to the kernel.
520
521 2005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
522
523 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
524 other irdp_* functions.
525 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
526 call irdp_sock_init to create the IRDP socket.
527 (irdp_if_init) Rename to irdp_init().
528 (get_iflist_ifp) Remove function that is a duplicate of
529 if_lookup_by_index.
530 (*) Make many functions static. And remove superfluous "\n" from
531 several zlog messages.
532 * irdp_main.c: (irdp_init) Remove function that used to call
533 irdp_if_init() and irdp_sock_init(), since we will now create
534 the socket only upon first use.
535 (irdp_sock_init) Do not update global irdp_sock variable, just
536 return the fd and assume that the caller will do so. If setsockopt
537 calls fail, close the socket before returning -1.
538 (*) Make many functions static.
539 * irdp_packet.c: Initialize irdp_sock to -1.
540 (irdp_read_raw) Call standard library function if_lookup_by_index
541 instead of get_iflist_ifp.
542 (irdp_recvmsg) Should be static, not global.
543
544 2005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
545
546 * rt_netlink.c: (netlink_link_change) If the status of an
547 operative interface changes (e.g. MTU changes), the client
548 daemons should be notified by calling zebra_interface_up_update.
549 Previously, the information was being updated in zebra's
550 interface structure, but the clients were not notified of
551 changes to an operative interface.
552
553 2005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
554 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
555 IPv6 Neighbor Discovery according to RFC3775, section 7:
556 o 1-bit Home Agent flag management in Router Advertisement (7.1).
557 o 1-bit Router Address flag management in Prefix Information
558 Option (7.2).
559 o Advertisement Interval Option (7.3)
560 o Home Agent Information Option (7.4)
561 o Changes to Sending Router Advertisements more frequently (7.5)
562
563 2005-03-13 Hasso Tepper <hasso at quagga.net>
564
565 * zebra/interaface.c: "show interface description" command
566 implemented.
567
568 2005-03-12 Paul Jakma <paul@dishone.st>
569
570 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
571 No stock Linux kernel has ever supported it, and even if it had
572 it's not generally a good idea.
573
574 2005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
575
576 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
577
578 2005-03-06 Hasso Tepper <hasso at quagga.net>
579
580 * interface.c: Fix CRC and frame errors statistics in Linux.
581
582 2005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
583
584 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
585 Remove global message_queue and t_write (need separate buffering for
586 each client).
587 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
588 related to old buggy buffering code.
589 (zserv_delayed_close) New thread callback function to delete a client.
590 (zserv_flush_data) New thread callback function to flush buffered
591 data to client.
592 (zebra_server_send_message) Rewritten to use buffer_write (so
593 buffering of writes and non-blocking I/O work properly).
594 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
595 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
596 (this is not really an error). Return value from
597 zebra_server_send_message.
598 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
599 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
600 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
601 from zebra_server_send_message.
602 (zsend_router_id_update) Must use zebra_server_send_message instead
603 of deprecated writen function. Return 0 instead of -1 if this client
604 is not subscribed to router-id updates (since this is not really
605 an error).
606 (zread_interface_add) Change type to static int. If
607 zsend_interface_add fails or zsend_interface_address fails, return -1
608 immediately (since the client has had an I/O error).
609 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
610 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
611 to indicate success.
612 (zread_ipv4_nexthop_lookup) Return value from
613 zsend_ipv4_nexthop_lookup.
614 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
615 (zebra_read_ipv6) Remove unused function.
616 (zread_ipv6_nexthop_lookup) Return value from
617 zsend_ipv6_nexthop_lookup.
618 (zread_router_id_add) Return value from zsend_router_id_update.
619 (zebra_client_close) Call buffer_free(client->wb) and
620 thread_cancel(client->t_suicide).
621 (zebra_client_create) Allocate client->wb using buffer_new.
622 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
623 Use ZEBRA_HEADER_SIZE instead of 3.
624 (zebra_accept) Fix bug: reset accept thread at top. Make client
625 socket non-blocking using the set_nonblocking function.
626 (config_write_forwarding) Fix scope to static.
627 (zebra_init) Remove initialization code for old buggy write buffering.
628 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
629 (to enable buffered writes with non-blocking I/), and
630 struct thread *t_suicide to support delayed close on I/O
631 errors.
632 * router-id.h: Remove prototypes for zread_router_id_add and
633 zread_router_id_delete (their scope should be static to zserv.c).
634
635 2005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
636
637 * redistribute.c: (zebra_check_addr,is_default,
638 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
639
640 2005-02-20 Hasso Tepper <hasso at quagga.net>
641
642 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
643 if we are not debugging.
644
645 2005-02-19 Paul Jakma <paul@dishone.st>
646
647 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
648 STREAM_READABLE.
649
650 2005-02-14 Paul Jakma <paul@dishone.st>
651
652 * Not all Linux netlink systems have IFLA_WIRELESS
653
654 2005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
655
656 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
657 zlog_err.
658 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
659 zlog_err.
660
661 2005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
662
663 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
664 zserv_privs.change.
665 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
666 zserv_privs.change.
667 * ipforward_solaris.c: (solaris_nd) Save errno before calling
668 zserv_privs.change.
669 * irdp_main.c: (irdp_sock_init) Save errno before calling
670 zserv_privs.change.
671
672 2005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
673
674 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
675 netlink_talk) Save errno before calling zserv_privs.change.
676
677 2005-01-24 Martin Pot <mpot at martybugs.net>
678
679 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
680
681 2005-01-18 Hasso Tepper <hasso at quagga.net>
682
683 * interface.c: Better statistics output in "show interface" command in
684 case of /proc being used.
685
686 2005-01-17 Hasso Tepper <hasso at quagga.net>
687
688 * main.c: With --nl-bufsize argument is required.
689
690 2005-01-05 Paul Jakma <paul@dishone.st>
691
692 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
693 for now, as we dont actually deal with with resending.... See
694 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
695 * kernel_socket.c: (routing_socket) ditto.
696
697 2005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
698
699 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
700 instead of CMSG_FIRSTHDR.
701
702 2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
703
704 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
705 with no peer specified to PtP interfaces only.
706
707 2004-12-18 Hasso Tepper <hasso at quagga.net>
708
709 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
710 work for isis routes.
711
712 2004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
713
714 * kernel_socket.c (rtmsg_debug): char * => const char *
715
716 2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
717
718 * *.c: Change level of debug messages to LOG_DEBUG.
719
720 2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
721
722 * main.c: (main) The 2nd argument to openzlog has been removed.
723 So stdout logging will no longer be enabled by default.
724 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
725 from LOG_WARNING to LOG_INFO.
726
727 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
728
729 * main.c: (sigint) Use zlog_notice for termination message.
730 (main) Add a startup announcement using zlog_notice.
731
732 2004-11-25 Hasso Tepper <hasso at quagga.net>
733
734 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
735 it confuses extract.pl.
736 * main.c: Make group to run as configurable.
737
738 2004-10-28 Hasso Tepper <hasso at quagga.net>
739
740 * interface.c: Remove dead "ip tunnel" command.
741
742 2004-10-22 Paul Jakma <paul@dishone.st>
743
744 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
745
746 2004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
747
748 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
749 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
750 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
751 function.
752 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
753 macro.
754 (connected_down_ipv4) ditto.
755 (connected_add_ipv4) Validate destination address, print warnings
756 if it does not make sense.
757
758 2004-10-19 Hasso Tepper <hasso at quagga.net>
759
760 * zserv.c: Fix regression introduced with zserv cleanup.
761
762 2004-10-13 Hasso Tepper <hasso at quagga.net>
763
764 * zebra_snmp.c: Remove defaults used to initialize smux connection to
765 snmpd. Connection is initialized only if smux peer is configured.
766 * zserv.c: Remove useless warnings "forwarding is already on".
767
768 2004-10-12 Hasso Tepper <hasso at quagga.net>
769
770 * zebra_vty.c: Unbreak "show ip route" command help and make it work
771 for isis routes.
772 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
773 output. Fixes Bugzilla #119.
774 * *.c: Make some strings const and some (unsigned) casts to fix
775 compiler warnings.
776
777 2004-10-07 Hasso Tepper <hasso at quagga.net>
778
779 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
780 Fix warnings: make strings const, signed -> unsigned.
781
782 2004-10-05 Paul Jakma <paul@dishone.st>
783
784 * irdp_packet.c: (parse_irdp_packet) style issues.
785 Use sockopt_iphdrincl_swab_systoh.
786 Try unbork the code. Checksum the ICMP data and actually
787 compare it to received checksum. Check data length against
788 claimed length in header.
789 Always use ntoh.. when accessing addresses, even when the
790 comparison happens to be endian-safe.
791 (send_packet) minor style isues. Use
792 sockopt_iphdrincl_swab_htosys.
793 (irdp_iph_hton/ntoh) IP header to/from network/host order.
794
795 2004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
796
797 * interface.c, interface.h: A new prefix tree of connected subnets is
798 associated with each interface structure in zebra, in which each
799 live (ie, non-synthetic) node holds a list of installed addresses
800 that belong to that prefix. Remove secondary address logic from cli.
801 See [quagga-dev 872] for detailed explanation.
802 * connected.c: Use if_subnet_add() and if_subnet_delete().
803
804 2004-10-03 James R. Leu <jleu at mindspring.com>
805
806 * router-id.c, router-id.h: New files. Router id selection process. If
807 there is non 127.x.x.x address in loopack interface, lowest of them
808 is chosen. If there isn't, lowest from other interfaces addresses
809 are chosen. "router-id x.x.x.x" vty command to manual override.
810 * Makefile.am: Compile new files.
811 * main.c: Initialize router id.
812 * redistribute.c: Add interface addresses into router id selection
813 lists as they (dis)appear.
814 * zserv.c, zserv.h: Sending router id related messages to daemons.
815
816 2004-09-26 Hasso Tepper <hasso at quagga.net>
817
818 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
819 rtadv.c, zebra_vty.c: Fix compiler warnings.
820
821 2004-09-24 Paul Jakma <paul@dishone.st>
822
823 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
824 add missing listnode declaration.
825
826 2004-09-24 Paul Jakma <paul@dishone.st>
827
828 * irdp_{interface,main}.c: lists typedef removal cleanup.
829 update some list loops to LIST_LOOP. some miscellaneous style
830 and indent fixups.
831 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
832 in loop.
833 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
834 to pointer.
835 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
836 update some list loops to LIST_LOOP.
837
838 2004-09-23 Hasso Tepper <hasso at quagga.net>
839
840 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
841
842 2004-09-22 Paul Jakma <paul.jakma@sun.com>
843
844 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
845 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
846 crash.
847
848 2004-08-31 Hasso Tepper <hasso at quagga.net>
849
850 * main.c, rt_netlink.c: Added -s command line switch for tuning
851 netlink receive buffer size in Linux to avoid buffer overruns.
852
853 2004-08-26 Miles Nordin <carton@Ivy.NET>
854
855 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
856 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
857 forwarding status correctly.)
858
859 2004-08-23 Paul Jakma <paul@dishone.st>
860
861 * zserv.c: (zebra_init) remove implicit ip forward enabling
862
863 2004-08-19 Paul Jakma <paul@dishone.st>
864
865 * irdp_main.c: update to match sockopt renames.
866 * irdp_packet.c: include sockopt.h and update to match sockopt
867 renames.
868
869 2004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
870
871 * rtadv.c (rtadv_send_packet): Allocate space for control messages
872 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
873 is to 8 bytes instead of 4, and overwriting the address. Use the
874 provided macros for determining lengths.
875
876 2004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
877
878 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
879 * zserv.c: ditto
880 * ioctl_solaris.c: ditto.
881 * interface.c: cast for LLADDR
882 * interface.h: Add guards, include redistribute.h and remove
883 extraneous definitions of zebra_interface_{up,down}_update
884 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
885 * redistribute.h: include dependent header, zserv.h
886 * zserv.h: include dependent header, rib.h
887
888 2004-07-23 Paul Jakma <paul@dishone.st>
889
890 * irdp_main.c: use setsockopt_pktinfo_ipv4
891 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
892 getsockopt_pktinfo_ifindex()
893
894 2004-07-13 David Wiggins <dwiggins@bbn.com
895
896 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
897
898 2004-07-13 Hasso Tepper <hasso@estpak.ee>
899
900 * irdp_main.c: Add privilege change.
901
902 2004-07-12 Hasso Tepper <hasso@estpak.ee>
903
904 * irdp_interface.c: follow common style while naming vty command
905 functions. Avoids confusion in extract.pl.
906
907 2004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
908
909 * main.c: define thread_master variable so that linking with
910 libzebra.so doesn't fail. Arguably zclient.o should be in a
911 separate library, but this is far less disruptive.
912
913 2004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
914
915 * Added IRDP support.
916
917 2004-05-18 Hasso Tepper <hasso@estpak.ee>
918
919 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
920 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
921 "ipv6 nd prefix" command to allow various combinations of parameters
922 and flags. No defaults in configuration. Replaced on-link and
923 autoconfig with off-link and no-autoconfig flags in command syntax.
924 Cosmetic fixes in all commands. Documentation to reflect all changes.
925
926 2004-05-11 Paul Jakma <paul@dishone.st>
927
928 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
929 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
930 add privs.h header.
931 * ioctl_solaris.c: ditto
932 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
933 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
934 RHS in assignments :)
935 * redistribute.c: (zebra_interface_delete_update) only used
936 if RTM_IFANNOUNCE and NETLINK is available.
937
938 2004-05-09 Paul Jakma <paul@dishone.st>
939
940 * zserv.c: (zsend_route_multipath) Set the nexthop_num
941 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
942 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
943 (zsend_ipv4_add) cruft, deleted.
944 (zsend_ipv4_delete) ditto.
945 (zsend_ipv6_add) ditto.
946 (zsend_ipv6_delete) ditto.
947 * ioctl.c: (if_get_mtu) set mtu6 to mtu
948 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
949 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
950 (netlink_link_change) ditto
951 * ipforward_solaris.c: fix typo of ND variable.
952 * if_ioctl_solaris.c: Add zprivs support.
953 * ioctl_solaris.c: ditto.
954
955 2004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
956
957 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
958 into single zsend_route_multipath function.
959 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
960 (zsend_interface_address_{add,delete}) collapsed into
961 zsend_interface_address.
962 (zsend_interface_add) send mtu6.
963 (zsend_interface_delete) ditto.
964 (zebra_write) remove unused function.
965 (various) Apply static qualifier. Add comments.
966 * zserv.h: Definitions changed as per above.
967 * redistribute.c: Changes as per zserv.c.
968 * interface.c: (if_delete_update) only used with HAVE_NETLINK
969 and RTM_IFANNOUNCE.
970 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
971 (if_dump_vty) print mtu6 if not same as mtu
972 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
973 * ioctl_solaris.c: New file, Common solaris ioctl methods.
974
975 2004-04-06 Krzysztof Oledzki <oleq@ans.pl>
976
977 * rt_netlink.c: Do not ignore metric when reading kernel routing
978 table on Linux with rt_netlink interface.
979
980 2004-03-18 Hasso Tepper <hasso@estpak.ee>
981
982 * interface.c: Temporary fix for handling secondary addresses
983 with label.
984
985 2004-02-12 Hasso Tepper <hasso@estpak.ee>
986
987 * zserv.c: Added "ipv6 forwarding" command.
988
989 2004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
990
991 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
992 for reading kernel messages to ensure enough space (necessary on
993 Solaris due to sockaddr_dl being large). Thanks to Sowmini
994 Varadhan for help with this change.
995
996 2004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
997
998 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
999
1000 2004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
1001 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
1002 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
1003 to just the accomodation of broken kernels. Check sockaddr_dl
1004 carefully up front, and later assume any non-NULL sdl pointer is
1005 valid. Clean up types and variable declarations, and rename
1006 WRAPUP to SAROUNDUP to make the name fit the behavior.
1007
1008 2004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
1009
1010 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
1011 structure, because on Solaris sockaddr_dl is far larger than the
1012 base sockaddr structure. (The code had previously been failing to
1013 read all the data.)
1014
1015 2004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
1016
1017 * kernel_socket.c (kernel_read): Look up interfaces by index
1018 first, so that state changes which do not include a sockaddr_dl
1019 now work. Add many sanity checks. In
1020 particular, do not assume that a sockaddr_dl follows a message
1021 without checking the ifm_addrs flags, and do not trust the length
1022 in a sockaddr_dl. Add/clarify many comments.
1023
1024 2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
1025
1026 * rtadv.c: reorder includes to avoid compiler warning (define
1027 structs before using them in prototypes)
1028
1029 2003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
1030
1031 * zserv.c: Add "ip forwarding" command.
1032
1033 2003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
1034
1035 * zebra_rib.c: Fix memory leaks for ifname nexthops
1036
1037 2003-04-19 Israel Keys <ikeys@agile.tv>
1038
1039 * rt_netlink.c: BLOCK on netlink while initialising
1040
1041 2003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
1042
1043 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
1044 it exists.
1045
1046 2002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
1047
1048 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
1049
1050 2002-09-10 Jochen Friedrich <chris+zebra@scram.de>
1051
1052 * rt_netlink.c: Add check for EAGAIN.
1053 * kernel_socket.c: Likewise
1054
1055 2002-06-12 Israel Keys <ikeys@oz.agile.tv>
1056
1057 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
1058 message so that we get an ACK for successful netlink commands.
1059 Change the netlink socket to BLOCKING while we wait for a
1060 response; be it an ACK or an NLMSG_ERROR. Change
1061 netlink_parse_info to deal with ACK messages.
1062
1063 2001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1064
1065 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
1066 work for ICMPv6 socket.
1067
1068 2001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1069
1070 * rib.c (rib_process): Select connected route any case.
1071
1072 2001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1073
1074 * interface.c (no_ip_address_secondary): Add "no" to command.
1075
1076 2001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
1077
1078 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
1079 to infinity as the freebsd4.4 workaroud.
1080
1081 2001-08-26 mihail.balikov@interbgc.com
1082
1083 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
1084 A.B.C.255.
1085
1086 2001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
1087
1088 * rtadv.c: Do not send RA to loopback interface.
1089
1090 2001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1091
1092 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
1093 route treatment.
1094
1095 2001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1096
1097 * zebra-0.92a released.
1098
1099 2001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1100
1101 * rib.c: Kernel route is treated as EGP routes in nexthop active
1102 check.
1103
1104 2001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
1105
1106 * zebra-0.92 released.
1107
1108 2001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
1109
1110 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
1111 show route commands.
1112
1113 2001-07-29 Yon Uriarte <havanna_moon@gmx.net>
1114
1115 * zserv.c (zsend_ipv4_add_multipath): Add
1116 NEXTHOP_TYPE_IPV4_IFINDEX check.
1117
1118 2001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
1119
1120 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
1121 autonomous address-configuration flag patch.
1122 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
1123 suppress-ra".
1124
1125 2001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
1126
1127 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
1128 command.
1129
1130 2001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1131
1132 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
1133 multicast FIB support both IPv4 and IPv6.
1134
1135 2001-07-24 Hal Snyder <hal@vailsys.com>
1136
1137 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
1138 full list of interfaces on some configurations of OpenBSD.
1139
1140 2001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
1141
1142 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
1143 send-ra" bug.
1144 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
1145 availability.
1146 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
1147 added.
1148 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
1149
1150 2001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1151
1152 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
1153
1154 * rt_ioctl.c: Likewise.
1155
1156 2001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1157
1158 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
1159 interface is not p2p.
1160
1161 2001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1162
1163 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
1164
1165 2001-04-06 Toshiaki Takada <takada@zebra.org>
1166
1167 * zserv.c (zsend_interface_delete): Use client->obuf instead of
1168 allocating new stream.
1169
1170 2001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1171
1172 * rt_netlink.c: Revert RTPROT_BOOT change.
1173
1174 2001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1175
1176 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
1177 (netlink_routing_table): Likewise.
1178
1179 2001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
1180
1181 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
1182 protocol daemons.
1183
1184 2001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1185
1186 * rt_netlink.c (netlink_routing_table): Do not return
1187 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
1188 <mokeefe@qualcomm.com>.
1189
1190 2001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1191
1192 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
1193 Suggested by: Chris Dunlop <chris@onthe.net.au>.
1194
1195 2001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1196
1197 * rib.c (nexthop_active_ipv4): When nexthop type is
1198 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
1199
1200 * zserv.c: Initialize rtm_table_default with 0.
1201
1202 * zebra-0.91 is released.
1203
1204 2001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1205
1206 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
1207 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1208
1209 2001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1210
1211 * connected.c (connected_up_ipv6): When point-to-point destination
1212 address is ::, use local address for connected network.
1213 (connected_down_ipv6): Likewise.
1214
1215 2001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1216
1217 * zserv.c (zebra_serv): Add missing close() call. Reported by:
1218 David Waitzman <djw@vineyard.net>.
1219
1220 2001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1221
1222 * rib.c (rib_lookup_ipv4): New function for checking exact match
1223 IGP route.
1224
1225 2001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1226
1227 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
1228 route-type".
1229
1230 2001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1231
1232 * interface.c (zebra_interface): Do not call
1233 zebra_interface_add_update for inactive interface.
1234
1235 * zserv.c (zsend_interface_address_add): Send interface address
1236 flag.
1237 (zsend_interface_address_delete): Likewise.
1238
1239 2001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1240
1241 * interface.c (if_addr_add): Add flags.
1242
1243 * connected.c (ifa_add_ipv4): Add new function for interface
1244 address handling.
1245 (ifa_delete_ipv4): Likewise.
1246
1247 2001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1248
1249 * rib.c (rib_update): Update IPv6 RIB.
1250
1251 * kernel_socket.c (ifam_read): Call if_refresh() for update
1252 interface flag status. This is for implicit interface up on *BSD.
1253
1254 * interface.c (if_refresh): Add interface flag refresh function.
1255
1256 * kernel_socket.c (rtm_read): Fetch link-local address interface
1257 index.
1258 (ifan_read): We need to fetch interface information. Suggested
1259 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
1260
1261 * rib.c (static_ipv6_nexthop_same): Add check for
1262 NEXTHOP_TYPE_IPV6_IFNAME.
1263
1264 2001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1265
1266 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
1267 taken into place.
1268
1269 2001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1270
1271 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
1272 configuration.
1273 (rib_delete_ipv6): Handle same route conter for IPv6 connected
1274 route.
1275 (show_ipv6_route_protocol): New command.
1276 (show_ipv6_route_addr): Likewise.
1277 (show_ipv6_route_prefix): Likewise.
1278 (rib_update): Sweep kernel route when it is cleaned up.
1279
1280 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
1281 treatmenet.
1282
1283 * rt_netlink.c (kernel_init): Likewise.
1284
1285 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
1286
1287 * rib.c (rib_add_ipv4): Cope with same connected route on a
1288 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
1289 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
1290
1291 * rib.h (struct new_rib): Add refcnt to keep track on the
1292 reference of same connected route.
1293
1294 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
1295
1296 2001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1297
1298 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
1299 (rtm_type_str): Add RTM_IFANNOUNCE check.
1300 (ifan_read): New function.
1301 (kernel_read): Add case for RTM_IFANNOUNCE.
1302
1303 2001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1304
1305 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
1306
1307 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
1308 treatment.
1309
1310 * connected.c (connected_up_ipv6): Add dest value check.
1311
1312 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
1313 ifindex.
1314 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
1315 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
1316 checked by ifindex.
1317
1318 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
1319
1320 * redistribute.c (redistribute_add): Use
1321 zsend_ipv6_add_multipath().
1322 (redistribute_delete_multipath): Use
1323 zsend_ipv6_delete_multipath().
1324
1325 * interface.c (ip_address): Check current IP address to avoid
1326 duplicate.
1327
1328 * rib.c (rib_delete_ipv4): When deleted route is connected route,
1329 check ifindex.
1330 (rib_add_ipv4): When connected route is added do not perform
1331 implicit withdraw.
1332 (rib_delete_ipv4): Check ifindex for connected route.
1333
1334 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
1335 ZEBRA_FLAG_STATIC for indicate as persistent route.
1336 (ifam_read): Unset interface index from link-local address when
1337 IPv6 stack is KAME.
1338
1339 * rib.c (rib_update): Do not delete persistent kernel route.
1340
1341 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
1342
1343 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
1344 (kernel_delete_ipv6_multipath): Likewise.
1345
1346 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
1347
1348 2001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1349
1350 * rib.c (rib_update): Revert Matthew Grant's patch
1351 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
1352 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
1353 that. Add support for address deletion situation.
1354
1355 2001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1356
1357 * interface.c: Remove HAVE_IF_PSEUDO part.
1358
1359 * rib.h: Likewise.
1360
1361 * rt_netlink.c (netlink_link_change): Likewise.
1362
1363 2001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1364
1365 * zserv.c: Remove OLD_RIB codes.
1366
1367 2001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1368
1369 * zebra-0.90 is released.
1370
1371 2001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
1372
1373 * interface.c (if_new_intern_ifindex): Allocate a new internal
1374 interface index.
1375 (if_addr_refresh): Fix up ip addresses configured via zebra.
1376 (if_add_update): Handle an interface addition.
1377 (if_delete_update): Handle an interface delete event.
1378
1379 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
1380 interface goes down.
1381
1382 2001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1383
1384 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
1385 NetBSD also use this function. Suggested by Jasper Wallace
1386 <jasper@ivision.co.uk>.
1387
1388 2001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1389
1390 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
1391 one.
1392
1393 2001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1394
1395 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
1396 flag, so treat it.
1397
1398 2001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1399
1400 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
1401 sent from netlink_cmd, the same message comes from netlink. To
1402 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
1403 instead of netlink_cmd.sock.
1404
1405 2001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1406
1407 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
1408 Change "/tmp/zserv" to "/tmp/.zserv".
1409
1410 2000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
1411
1412 * rt_netlink.c (struct nlsock): Divide kernel message into listen
1413 socket and command socket.
1414 (netlink_talk): Remove socket listen code. Use netlink_parse_info
1415 for read kernel response.
1416
1417 2000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1418
1419 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
1420 routes.
1421
1422 2000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1423
1424 * rt_netlink.c (netlink_route_multipath): Metric value is
1425 reflected to kernel routing table.
1426
1427 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
1428
1429 * kernel_socket.c (rtm_write): Likewise.
1430
1431 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
1432 nexthop lookup.
1433
1434 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
1435 new RIB implementation.
1436
1437 2000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1438
1439 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
1440
1441 2000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1442
1443 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
1444 proper redistribution.
1445
1446 2000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1447
1448 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
1449 (show_ip_route_protocol): Support new RIB.
1450
1451 * rt_netlink.c (netlink_route_change): Do not return when gate is
1452 NULL.
1453
1454 2000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1455
1456 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
1457 updated.
1458 (rib_add_ipv4): Free implicit withdraw route's RIB.
1459
1460 2000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1461
1462 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
1463
1464 * redistribute.c (redistribute_add_multipath): Redistribution
1465 works with new rib code.
1466
1467 2000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1468
1469 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
1470 number.
1471 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
1472
1473 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
1474 activity is changed.
1475 (nexthop_active_check): Before checking interface is up, make it
1476 sure the interface exist.
1477
1478 2000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1479
1480 * rib.c (ip_route): New RIB prototype.
1481
1482 2000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
1483
1484 * zserv.c (zsend_interface_add): Send hardware address when
1485 hw_addr_len is greater than 0.
1486
1487 2000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1488
1489 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1490 network should be installed into routing table.
1491 (connected_down_ipv4): Likewise.
1492 (connected_add_ipv4): Change to use connected_up_ipv4.
1493 (connected_delete_ipv4): Likewise.
1494
1495 2000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1496
1497 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1498 <laforge@gnumonks.org>'s ptop patch then back to original code to
1499 avoid duplicated connected route problem. Suggested by Frank van
1500 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1501
1502 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1503 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1504 <itojun@iijlab.net>.
1505
1506 2000-10-23 Jochen Friedrich <jochen@scram.de>
1507
1508 * main.c (main): Call zebra_snmp_init() when it is enabled.
1509
1510 2000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1511
1512 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1513 protocol.
1514
1515 2000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1516
1517 * rib.c (rib_add_ipv4): Same check bug is fixed.
1518
1519 2000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1520
1521 * rib.c (rib_if_down): Remove kernel route when the interface goes
1522 down.
1523
1524 * debug.c: New command "debug zebra kernel" is added.
1525
1526 2000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1527
1528 * zebra-0.89 is released.
1529
1530 2000-09-24 Harald Welte <laforge@gnumonks.org>
1531
1532 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1533 treatment in netlink interface.
1534
1535 2000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1536
1537 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1538 must withdraw routes when interface goes down.
1539 (rib_add_ipv4): Check nexthop when replace route.
1540
1541 2000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1542
1543 * if_ioctl.c (if_getaddrs): New function for looking up
1544 interface's address by getifaddrs().
1545
1546 2000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1547
1548 * connected.c (connected_delete_ipv4): Add check for connected
1549 address is found or not.
1550 (connected_add_ipv6): Reflect IPv6 connected address change to
1551 protocol daemons.
1552 (connected_delete_ipv6): Likewise.
1553
1554 2000-09-07 David Lipovkov <davidl@nbase.co.il>
1555
1556 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1557 interface patch to original. Because ospfd deletes routes using
1558 zero ifindex.
1559
1560 2000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1561
1562 * zebra-0.88 is released.
1563
1564 2000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1565
1566 * rib.c (show_ip_route_protocol): Help string correction.
1567 (show_ip_route_prefix): Check prefix mask.
1568 (show_ip_route_vty_detail): Display distance and metric.
1569
1570 2000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1571
1572 * zserv.c (zsend_interface_add): Change ifindex store size from
1573 two octet to four.
1574 (zsend_interface_delete): Likewise.
1575 (zsend_interface_address_add): Likewise.
1576 (zsend_interface_address_delete): Likewise.
1577 (zsend_interface_up): Likewise.
1578 (zsend_interface_down): Likewise.
1579
1580 2000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1581
1582 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1583
1584 2000-08-10 Toshiaki Takada <takada@zebra.org>
1585
1586 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1587 zebra_interface_up_update () instead of using if_up() and if_down().
1588
1589 2000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1590
1591 * interface.c (bandwidth_if): Fix help string.
1592
1593 2000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1594
1595 * interface.c (if_dump_vty): Display bandwidth value.
1596 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1597 When interface is up, force protocol daemons to recalculate routes
1598 due to cost change.
1599 (no_bandwidth_if): Likewise.
1600 (if_config_write): Output bandwidth configuration.
1601
1602 * zserv.c (zsend_interface_add): Send bandwidth value.
1603 (zsend_interface_up): Likewise.
1604 (zsend_interface_down): Likewise.
1605
1606
1607 2000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1608
1609 * rib.c (show_ip_route_protocol): "show ip route
1610 (bgp|connected|kernel|ospf|rip|static)" is added.
1611
1612 2000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1613
1614 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1615 nexthop is found.
1616 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1617
1618 2000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1619
1620 * redistribute.c (redistribute_delete): Fix bug of default route
1621 redistribute treatment.
1622
1623 2000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1624
1625 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1626 Change default distance value.
1627
1628 Old New
1629 ------------------------------------------
1630 system 10 0
1631 kernel 20 0
1632 connected 30 0
1633 static 40 1
1634 rip 50 120
1635 ripng 50 120
1636 ospf 60 110
1637 ospf6 49 110
1638 bgp 70 200(iBGP) 20(eBGP)
1639 ------------------------------------------
1640
1641 * zserv.c (client_lookup): Function removed.
1642 (zsend_interface_add): Use client's output buffer. Check ifinfo
1643 flag.
1644 (zsend_interface_delete): Likewise.
1645 Delete ipv4_static_radix and ipv6_static_radix.
1646
1647 2000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1648
1649 * zserv.h (struct zebra_client): When client request interface
1650 information, ifinfo is set.
1651
1652 * rib.c: Temporary Revert changes for pseudo interface.
1653
1654 * rib.h: Likewise.
1655
1656 * zserv.c: Likewise.
1657
1658 * interface.c: Likewise.
1659
1660 2000-08-02 David Lipovkov <davidl@nbase.co.il>
1661
1662 * interface.c (zebra_if_init): Install interface "pseudo"
1663 commands.
1664
1665 * rib.c (rib_create): ifname argument is added.
1666 (rib_add_ipv4_pseudo): New function is added.
1667 (rib_delete_ipv4_pseudo): Likewise.
1668
1669 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1670 pseudo interface functions.
1671
1672 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1673
1674 * zserv.c (ip_route): When destination is pseudo interface, call
1675 rib_add_ipv4_pseudo().
1676
1677 * zserv.c (no_ip_route): Trim "unknown" argument.
1678
1679 2000-07-26 kunitake@dti.ad.jp
1680
1681 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1682 to 6.
1683
1684 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1685
1686 2000-07-24 Akihiro Mizutani <mizutani@dml.com>
1687
1688 * interface.c: Use install_default() for common VTY commands.
1689
1690 2000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1691
1692 * if_ioctl.c (interface_list_ioctl): A interface list size is
1693 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1694
1695 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1696
1697 2000-07-09 Chris Dunlop <chris@onthe.net.au>
1698
1699 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1700
1701 2000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1702
1703 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1704 message handling.
1705
1706 2000-07-02 David Lipovkov <davidl@nbase.co.il>
1707
1708 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1709
1710 2000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1711
1712 * rib.c: Remove old kernel route when new route comes in.
1713
1714 2000-06-13 David Lipovkov <davidl@nbase.co.il>
1715
1716 * rib.c (rib_if_up): Add check for unknown interface.
1717
1718 2000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1719
1720 * rib.h: Define INTERFACE_UNKNOWN.
1721
1722 2000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1723
1724 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1725 finished.
1726
1727 2000-06-05 David Lipovkov <davidl@nbase.co.il>
1728
1729 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1730
1731 * redistribute.c (zebra_interface_delete_update): New function.
1732
1733 * redistribute.h (zebra_interface_delete_update): New function
1734 prototype.
1735
1736 * rib.c (rib_if_delete): New function. Walk down all routes and
1737 delete all on the interface.
1738
1739 * rib.h: New function prototype.
1740
1741 * rt_netlink.c (netlink_link_change): Call
1742 zebra_interface_delete_update ().
1743
1744 2000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1745
1746 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1747 checking interface's address.
1748
1749 2000-04-26 Jochen Friedrich <jochen@nwe.de>
1750
1751 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1752
1753 * GNOME-SMI: New file.
1754
1755 2000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1756
1757 * irdp.c: New file from 1997 development code.
1758 * irdp.h: Likewise.
1759
1760 2000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1761
1762 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1763 logging with IS_ZEBRA_DEBUG_PACKET.
1764
1765 2000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1766
1767 * zserv.c (zebra_client_close): Remove client structure from
1768 client_list when connection is terminated.
1769
1770 2000-03-21 David Lipovkov <davidl@nbase.co.il>
1771
1772 * connected.c (connected_add_ipv4): Allows all necessary structure
1773 updates for connected route, but doesn't insert it into rib if
1774 it's interface is down.
1775
1776 2000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1777
1778 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1779 2.5.1.
1780
1781 2000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1782
1783 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1784 from str2prefix_ipv6().
1785
1786 2000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1787
1788 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1789 IPv6 with /128 routes.
1790 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1791 should have mask for cloning.
1792
1793 1999-12-26 Jochen.Friedrich@genorz.de
1794
1795 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1796
1797 1999-12-23 Alex Zinin <zinin@amt.ru>
1798 * interface.*: dynamic int up/down support
1799
1800 1999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1801
1802 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1803
1804 * rtread_proc.c (proc_route_read): Don't use dropline().
1805
1806 1999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1807
1808 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1809 process's pid.
1810
1811 1999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1812
1813 * main.c (main): Change to default log output to ZLOG_STDOUT.
1814
1815 * zserv.c (zebra_serv): More detailed error print.
1816
1817 1999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1818
1819 * kernel_socket.c (rtm_read): Check old pid for static route
1820 insertion check.
1821
1822 1999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1823
1824 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1825 statistics counter.
1826
1827 * mtu_kvm.c: New file added.
1828
1829 1999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1830
1831 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1832 route to the directly connected interface.
1833
1834 1999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1835
1836 * rt_socket.c: Delete USE_HOST_BIT definition.
1837
1838 1999-11-21 Michael Handler <handler@sub-rosa.com>
1839
1840 * rtread_getmsg.c: Undef some definition to resolve conflict.
1841
1842 1999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1843
1844 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1845 value for gateway specification.
1846
1847 1999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1848
1849 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1850 128 under IPv6, don't use RTF_HOST.
1851
1852 1999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1853
1854 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1855
1856 1999-11-21 Michael Handler <handler@sub-rosa.com>
1857
1858 * rtread_getmsg.c: Added for Solaris 2.6 support.
1859
1860 1999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1861
1862 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1863
1864 * rt_socket.c (kernel_read): Better BSD routing socket support.
1865
1866 1999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1867
1868 * client_main.c: Disable making obsolete zebra test `client'
1869 command.
1870
1871 1999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1872
1873 * zebra.c: Renamed to zserv.c.
1874
1875 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1876 renamed to zserv.h.
1877
1878 1999-10-15 Jordan Mendelson <jordy@wserv.com>
1879
1880 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1881 interface. Remove ugly MAX_INTERFACE handling codes.
1882
1883 1999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1884
1885 * Fix serious bug of IPv6 route deletion.
1886
1887 1999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1888
1889 * ioctl.c (if_set_prefix): Properly set broadcast address.
1890
1891 1999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1892
1893 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1894 can install connected route to kernel via zebra
1895
1896 1999-08-24 VOP <vop@unity.net>
1897
1898 * rib.c: Include "sockunion.h"
1899
1900 1999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1901
1902 * ipforward.h: New file.
1903
1904 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1905 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1906
1907 1999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1908
1909 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1910 ZEBRA_INTERFACE_{ADD,DELETE} added.
1911
1912 1999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1913
1914 * rib.c: show ip route A.B.C.D works.
1915
1916 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1917
1918 1999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1919
1920 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1921
1922 1999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1923
1924 * interface.h: New file.
1925 * Makefile.am: Add interface.h
1926
1927 1999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1928
1929 * redistribute.c (zebra_redistribute): give ifindex to client.
1930
1931 1999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1932
1933 * main.c (longopts): -k, --keep_kernel option added.
1934
1935 1999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1936
1937 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1938
1939 1999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1940
1941 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1942
1943 1999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1944
1945 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1946
1947 1999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1948
1949 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1950
1951 1999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1952
1953 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1954
1955 1999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1956
1957 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1958
1959 1999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1960
1961 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1962 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1963
1964 1999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1965
1966 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1967
1968 1999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1969
1970 * zebra.c (zebra_serv): Only accept loopback address connection.
1971
1972 1999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1973
1974 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1975
1976 1999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1977
1978 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1979
1980 1999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1981
1982 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1983 using /proc file system is added.
1984
1985 1999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1986
1987 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1988 adding #else at the middle of function. Suggested by David Luyer
1989 <luyer@ucs.uwa.edu.au>.
1990
1991 1999-05-29 <kunihiro@zebra.org>
1992
1993 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1994
1995 1999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1996
1997 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1998 the sort of routes.
1999
2000 1999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
2001
2002 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
2003 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
2004 parse the message.
2005 (netlink_talk): Likewise
2006
2007 1999-05-17 <kunihiro@zebra.org>
2008
2009 * redistribute.c (zebra_check_addr): Added for loopback address
2010 check.
2011
2012 1999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
2013
2014 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
2015 change treatment.
2016
2017 * Makefile.am (noinst_HEADERS): redistribute.h added.
2018
2019 * redistribute.h: New file.
2020
2021 1999-05-14 Stephen R. van den Berg <srb@cuci.nl>
2022
2023 * zebra.c (show_table): Show all table configuration DEFUN.
2024 (config_table): Config table number DEFUN.
2025
2026 * rt_netlink.c: Add support for multiple routing table.
2027
2028 * rib.c (rib_weed_table): New function added for delete all
2029 routes from specified routing table.
2030
2031 * main.c (signal_init): SIGTERM call sigint.
2032 (sigint): Loggging more better message.
2033
2034 1999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2035
2036 * rt_netlink.c: Change log () to zlog ().
2037
2038 1999-05-07 <kunihiro@zebra.org>
2039
2040 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
2041
2042 1999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2043
2044 * interface.c: Add `no ip address' command.
2045
2046 1999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
2047
2048 * rt_netlink.c (kernel_read): Function added for asynchronous
2049 zebra between kernel communication.
2050
2051 1999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2052
2053 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
2054 Reported by Achim Patzner <ap@bnc.net>.
2055
2056 1999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2057
2058 * Makefile.am: Install configuration sample with 600 permission.
2059
2060 1999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2061
2062 * Makefile.am: Add -I.. to INCLUDES.
2063
2064 1999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
2065
2066 * syslog support added
2067
2068 1999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
2069
2070 * if_sysctl.c (interface_list): allocated memory free when unknown
2071 ifm_type is returned.
2072
2073 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
2074
2075 1998-12-15 Magnus Ahltorp <map@stacken.kth.se>
2076
2077 * interface.c: Header include added.
2078
2079 1998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2080
2081 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
2082
2083 1998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2084
2085 * if_ioctl.c (interface_list_ioctl): interface flag must be
2086 checked before check addresses of the interface.
2087
2088 1998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2089
2090 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
2091
2092 1998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
2093
2094 * ioctl.c: Linux version before 2.1.0 need interface route setup.
2095
2096 1998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
2097
2098 * change HYDRANGEA to KAME
2099
2100 1998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2101
2102 * if_ioctl.c (if_addr_ioctl): set address family for getting
2103 interface's address.
2104 (if_get_index): silently return when can't get interface's index.
2105
2106 1998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
2107
2108 * main.c (main): batch mode option '-b' added.
2109
2110 1998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
2111
2112 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
2113 * interface.c (shutdown_if): add interface shutdown and no
2114 shutdown command.
2115
2116 1998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
2117
2118 * rib.c (rib_add_ipv6): delete rib_add_in6.
2119
2120 1998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
2121
2122 * main.c: retain flag is added.
2123
2124 1998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2125
2126 * rtable.[ch]: merged with rib.[ch]
2127
2128 1998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2129
2130 * connected.h: renamed from ifa.h.
2131
2132 1998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
2133
2134 * rename if.c to interface.c
2135 * rename ifa.c to connected.c
2136
2137 * Porting to Debian GNU/Linux 2.0 (hamm).
2138
2139 1998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2140
2141 * rt_netlink.c: renamed from krt_netlink.c
2142
2143 * fib.c: deleted.
2144 * rt_kvm.c: deleted.
2145 * rtread_getmsg.c: deleted.
2146
2147 1998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2148
2149 * if.c (multicast): add multicast flag [un]set fucntion.
2150
2151 1998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2152
2153 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
2154 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
2155
2156 1998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2157
2158 * zebra.c: Modify for compile on Solaris.
2159
2160 1998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2161
2162 * main.c: change CONFDIR to SYSCONFDIR.
2163
2164 1998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2165
2166 * .cvsignore: added.
2167
2168 1998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2169
2170 * client.c: moves to ../lib.
2171
2172 1998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2173
2174 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
2175 structure assignment.
2176
2177 1998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
2178
2179 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
2180
2181 1998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
2182
2183 * if.c (if_init): add config_exit_cmd and config_help_cmd.
2184
2185 1998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2186
2187 * rt_ioctl.c (route_ioctl): EPERM treatment added.
2188
2189 1998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2190
2191 * rt_socket.c (kernel_read): communication port zebra between
2192 kernel is now handled by kernel_read.
2193
2194 1998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2195
2196 * main.c (main): zebra [-P port] can specify vty port number.
2197
2198 1997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2199
2200 * zebra.c: change select will be block.
2201
2202 1997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2203
2204 * add static route treatment.
2205
2206 1997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2207
2208 * rt_netlink.c: add netlink support over GNU/Linux system.
2209
2210 1997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2211
2212 * all inet_addr is changed to inet_aton.
2213
2214 * zebra.c (ip_route): add ip route command for static routes.
2215
2216 1997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2217
2218 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
2219
2220 1997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
2221
2222 * if.c: add interface command.
2223
2224 1997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2225
2226 * ipforward_proc.c : Now works on Linux.
2227
2228 1997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2229
2230 * command.c : add completion feature.
2231
2232 1997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2233
2234 * vty.c (vty_command): add vty interface.
2235
2236 1997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2237
2238 * zebra.c: add verbose mode.
2239
2240 1997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
2241
2242 * Hydrangea for FreeBSD supported
2243 * in.h: add some prototype.
2244
2245 1997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2246
2247 * rt_socket.c and rtread.c completely rewritten.
2248
2249 1997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2250
2251 * rt_socket.c: rename kernel_sock to routing_socket
2252
2253 1997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2254
2255 * if.c (if_new): interface structure change from linklist to vector.
2256
2257 1997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2258
2259 * vector.c (vector_init): create vector related function
2260
2261 1997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2262
2263 * Makefile.in: add tags target
2264
2265 * start IPv6 support for INRIA FreeBSD.
2266