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