blob: 16f83ae754156ef3e60fea64b498719eb8bd3bee [file] [log] [blame]
paul0fb58d52005-11-14 14:31:49 +000012005-11-14 Paul Jakma <paul.jakma@sun.com>
2
3 * zebra_rib.c: (rib_process) convert to new workqueue specs and
4 shut up gcc, which complains about cast from void via
5 function parameters, for some dumb reason. Do the cast
6 inside the function instead.
7 (rib_queue_qnode_del) ditto.
8 (rib_queue_init) no need for the casts anymore.
9
paul6fe70d12005-11-12 22:55:10 +0000102005-11-12 Alexander Gall <gall@switch.ch>
11
12 * See [quagga-dev 1815]
13 * kernel_socket.c: (rtm_write) Use SAROUNDUP when HAVE_SIN_LEN
14 is not available.
15 * rt_socket.c: (kernel_rtm_ipv6(_multipath)) set family to
16 AF_INET6 on ipv6 routes.
17
182005-11-12 Paul Jakma <paul.jakma@sun.com>
19
20 * kernel_socket.c: Add RTA_NAME_GET macro to extract name from
21 sockaddr_dl. Add some more RTF_ flags.
22 * (ifan_read) Add some debug messages.
23 * (ifm_read) Add more debug messages. More robust cross-checks
24 of index against name.
25 Fall back to by-name lookup if the index lookup fails, future
26 proofing more than anything else.
27 (ifam_read_mesg) Read RTA_IFP. Add debug messages.
28 (ifam_read) More debug. If there's an RTA_IFP and it isn't
29 the name of the interface, save it as the label.
30 (rtm_read_mesg) Read RTA_IFP.
31 (rtm_read) allow name to be retrieved.
32 (rtmsg_debug) expand on the debug message.
33
paul0994c3a2005-11-11 09:52:40 +0000342005-11-11 Paul Jakma <paul.jakma@sun.com>
35
36 * kernel_socket.c: (ifm_read) arithmetic on void pointer
37 warning.
38 (ifam_read) Fix error from connected-with-label merge,
39 something crept in from the pending Solaris kernel_socket.c
40 patch which shouldn't have.
41
paul0752ef02005-11-03 12:35:21 +0000422005-11-03 Paul Jakma <paul.jakma@sun.com>
43
44 * connected.{c,h}: Include memory.h
45 (connected_add_ipv4) Use MTYPE for ifc label.
46 (connected_add_ipv6) Also should accept label. Store it in ifp.
47 (connected_del_ipv4) Taking label as argument is pointless.
48 * rt_netlink.c: (netlink_interface_addr) update label usage
49 for connected_{add,delete} functions.
50 * if_ioctl.c: (if_getaddrs) NULL label for connected_add_ipv6.
51 * if_ioctl_solaris.c: (interface_list_ioctl) Pass LIFC_NOXMIT
52 so we also find out about NOXMIT interfaces like VNI.
53 Bit of hackery to turn interface names into the primary
54 interface name, later with routing socket messages we only
55 will about primary interfaces anyway, so we must normalise
56 the name.
57 (if_get_addr) take label as argument, so it can
58 be passed to connected_add.
59 If label is provided, then it is interface name to issue the
60 ioctl for address information on, not the ifp name.
61 (interface_list) List AF_UNSPEC too, just in case.
62 * if_proc.c: (ifaddr_proc_ipv6) label for connected_add_ipv6.
63 * interface.c: (if_addr_wakeup) Some very bogus code - sets
64 IFF_RUNNING - add comment.
65 (if_refresh)
66 (ip_address_install) Use MTYPE for ifc label.
67 * ioctl_solaris.c: (if_mangle_up) New function. Hackery to make
68 IFF_UP reflect whether any addresses are left on the
69 interface, as we get signalled for IFF_UP flags change on the
70 primary interface only. Logical interfaces dont generate
71 IFINFO, but we do get an RTM_DELADDR.
72 (if_get_flags) Call if_mangle_up before return.
73 * kernel_socket.c: (ifam_read) Fixup calls to
74 connected_{add,delete} to match above changes. Rename gate
75 variable to brd, less confusing.
76 Pass the interface name as a label, if it is not same name
77 as ifp->name.
78
pauld06b2a62005-10-11 03:53:54 +0000792005-10-11 Paul Jakma <paul.jakma@sun.com>
80
81 * connected.{c,h}: (connected_{add,delete}_ipv4) label should
82 be const qualified.
83
ajsc05612b2005-10-01 16:36:54 +0000842005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
85
ajsf52d13c2005-10-01 17:38:06 +000086 * zebra_vty.c: (route_type_str) Remove obsolete function: use new
87 library function zebra_route_string() instead. Note that there
88 are a few differences: for IPv6 routes, we now get "ripng" and
89 "ospf6" instead of the old behavior ("rip" and "ospf").
90 (route_type_char) Remove obsolete function: ues new library function
91 zebra_route_char() instead. Note that there is one difference:
92 the old function returned 'S' for a ZEBRA_ROUTE_SYSTEM route,
93 whereas the new one returns 'X'.
94 (vty_show_ip_route_detail,vty_show_ipv6_route_detail) Replace
95 route_type_str() with zebra_route_string().
96 (vty_show_ip_route,vty_show_ipv6_route) Replace route_type_char()
97 with zebra_route_char().
98
992005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
100
ajsc05612b2005-10-01 16:36:54 +0000101 * rt_netlink.c: (netlink_request) Use memset to clear structure
102 before calling sendto (eliminates a valgrind error message about
103 uninitialized data).
vincentaa2e32b2005-09-28 13:42:11 +0000104
1052005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
106
vincentfbf5d032005-09-29 11:25:50 +0000107 * zserv.c: Always provied distance for route add
108
1092005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
110
vincentaa2e32b2005-09-28 13:42:11 +0000111 * connected.c: flag connected_up_ipv6() and connected_down_ipv6()
112 usage with HAVE_IPV6
113
hassod24af182005-09-24 14:00:26 +00001142005-09-24 Hasso Tepper <hasso at quagga.net>
115
116 * rib.h: Add note about behaviour of rib_add_ipv[46]* functions -
117 add is treated as implicit withdraw.
118
hassoebf1ead2005-09-21 14:58:20 +00001192005-09-21 David Young <dyoung@ojctech.com>
120
121 * zebra_rib.c: Reduce the height of some staircases. Fix
122 rib_delete_ipv6() to match routes in the RIB by their gateway as
123 well as by destination.
124
paul319572c2005-09-21 12:30:08 +00001252005-09-21 Paul Jakma <paul.jakma@sun.com>
126
127 * zebra_rib.c: (static_uninstall_ipv{4,6}) Fix regression wrt
128 removal of static routes with multiple-hops introduced with
129 the workqueue conversion. We should free the relevant
130 nexthop and then get rib_process to run, otherwise we just
131 get same static route back again (with no way to unconfigure
132 it, because its already deleted from configuration).
133
paulca162182005-09-12 16:58:52 +00001342005-09-12 Paul Jakma <paul.jakma@sun.com>
135
136 * (general) RTM_CHANGE and implicit withdraw on RTM_NEWADDR
137 support.
138 * connected.c: (connected_withdraw) new function. withdraw a
139 connected subnet address set from zebra, and pass information
140 along to clients.
141 (connected_announce) similar, but to announce a new connected
142 subnet address set.
143 (connected_check_ipv4) renamed to connected_check, as its
144 AFI independent.
145 (connected_add_ipv{4,6}) Remove the connected address announce
146 stuff, use connected_announce instead.
147 If connected_check indicates address is already present,
148 treat it as an implicit withdraw of the existing address, ie
149 remove the old address details and replace with the new
150 details.
151 (connected_delete_ipv{4,6}) Use connected_withdraw.
152 (connected_check_ipv6) deleted in favour of connected_check.
153 * connected.h: Rename connected_check_ipv4 to connected_check.
154 delete connected_check_ipv6.
155 * interface.c: Use connected_check rather than the AFI specific
156 symbols.
157 * kernel_socket.c: (rtm_read) RTM_CHANGE support. Create a
158 rib delete event for the existing route, before adding route
159 again.
160 (kernel_read) we can handle RTM_CHANGE now.
161
hassobe61c4e2005-08-27 06:05:47 +00001622005-08-27 Hasso Tepper <hasso at quagga.net>
163
164 * zebra_rib.c, rib.h: Add distance and metric arguments to the
165 rib_add_ipv6() function so that IPv6 routes in RIB can have correct
166 metric. No IPv6 routing daemon uses distance yet though.
167 * zserv.c, connected.c, kernel_socket.c, rt_netlink.c,
168 rtread_proc.c,zserv.c: Pass metric and distance info to the
169 rib_add_ipv6().
170
paul6eb88272005-07-29 14:36:00 +00001712005-07-29 Paul Jakma <paul.jakma@sun.com>
172
173 * interface.c: (if_delete_update) should always be available, not
174 just on RTM_IFANNOUNCE/NETLINK systems.
175 * kernel_socket.c: (ifan_read) only call if_delete_update when
176 interface departs, dont if_delete, because we wish to retain
177 interface configuration state even when interfaces are removed.
178 (ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning
179 to down state is only chance we have to clean up interface in case
180 it is deleted (eg Solaris down -> unplumb -> plumb up).
181 * redistribute.c: (zebra_interface_delete_update) should always be
182 available, we /will/ call it now on all systems, via
183 if_delete_update.
184 * zserv.c: (zsend_interface_delete) ditto
185 (zsend_interface_address) Update the call-flow diagramme, to
186 reflect that if_delete_update /is/ now called on all systems,
187 potentially.
188 * zserv.h: (zsend_interface_delete) unconditionally exported, as
189 above.
190
paula1ac18c2005-06-28 17:17:12 +00001912005-06-28 Paul Jakma <paul.jakma@sun.com>
192
193 * (global) Extern and static'ification, with related fixups
194 of declarations, ensuring files include their own headers, etc.
paulea6f82b2005-06-28 17:20:26 +0000195 * if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in
paula1ac18c2005-06-28 17:17:12 +0000196 list loop
paulea6f82b2005-06-28 17:20:26 +0000197 * kernel_socket.c: (RTA_{ADDR,ATTR}_GET) fix mistake, NULL check
198 should be on DEST argument
paula1ac18c2005-06-28 17:17:12 +0000199
paul62debbb2005-06-14 14:07:07 +00002002005-06-14 Paul Jakma <paul.jakma@sun.com>
201
202 * kernel_socket.c: consolidate the IFAM{ADDR,MASK}GET and
203 RTM{ADDR,MASK}GET macros into generic rta_addrs macros,
204 RTA_{ADDR,ATTR}_GET.
205 (af_check) could use 'inline' attribute
206 (ifam_read_mesg) remove IFAM{ADDR,MASK}GET macro, change to
207 generic macro.
208 (rtm_read_mesg) similar
209
hasso1ada8192005-06-12 11:28:18 +00002102005-06-12 Hasso Tepper <hasso at quagga.net>
211
212 * rt_netlink.c: Remove netlink-addr socket declaration, it's not used.
213 * rt_netlink.c (netlink_parse_info): Fix debug messages - nlmsg_pid is
214 unsigned and one zlog call had swapped arguments.
215 * rt_netlink.c (netlink_route_multipath): Fix compile with disabled
216 IPv6 support.
217
paul1dcb5172005-05-31 08:38:50 +00002182005-05-31 Paul Jakma <paul.jakma@sun.com>
219
220 * zserv.c: (zsend_route_multipath) Fix bug if route is sent
221 with no NEXTHOP_FLAG_FIB nexthops. As ZAPI_MESSAGE_IFINDEX
222 and ZAPI_MESSAGE_NEXTHOP are always set, clients would try
223 read non-existent nexthop information and hit stream assert.
224 Zserv is still broken for multi-nexthop messages, but it always was.
225
paul69e10ad2005-05-06 21:27:33 +00002262005-05-06 Paul Jakma <paul.jakma@sun.com>
227
228 * zserv.h: Remove ZEBRA_PORT definition, its in lib/zebra.h now
229
paul4d38fdb2005-04-28 17:35:14 +00002302005-04-28 Paul Jakma <paul.jakma@sun.com>
231
232 * rib.h: (struct rib) Add lock field for refcounting.
233 * zserv.h: (struct zebra_t) Add a ribq workqueue to the zebra
234 'master' struct.
235 * zserv.c: (zread_ipv4_add) XMALLOC then memset should be XCALLOC.
236 * zebra_rib.c: Clean up refcounting of route_node, make struct rib
237 refcounted and convert rib_process to work-queue. In general,
238 rib's should be rib_addnode'd and delnode'd to route_nodes, and
239 these symmetrical functions will manage the locking of referenced
240 route_node and freeing of struct rib - rather than having users
241 manage each seperately - with much scope for bugs..
242 (newrib_free) removed and replaced with rib_lock
243 (rib_lock) new function, check state of lock and increment.
244 (rib_unlock) new function, check lock state and decrement. Free
245 struct rib if refcount hits 0, freeing struct nexthop's, as
246 newrib_free did.
247 (rib_addnode) Add RIB to route_node, locking both.
248 (rib_delnode) Delete RIB from route_node, unlocking each.
249 (rib_process) Converted to a work-queue work function.
250 Functional changes are minimal, just arguments, comments and
251 whitespace.
252 (rib_queue_add_qnode) Helper function to setup a ribq item.
253 (rib_queue_add) Helper function, same arguments as old
254 rib_process, to replace in callers of rib_process.
255 (rib_queue_qnode_del) ribq deconstructor.
256 (rib_queue_init) Create the ribq.
257 (rib_init) call rib_queue_init.
258 (remainder) Sanitise refcounting of route_node's. Convert to
259 rib_queue_add, rib_addnode and rib_delnode. Change XMALLOC/memset
260 to XCALLOC. Remove calls to nexthop_delete and nexthop_free.
261
paulcf460ef2005-04-10 16:54:26 +00002622005-04-10 Paul Jakma <paul@dishone.st>
263
264 * if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args
265 in ALL_LIST_ELEMENTS_RO macro.
266
ajs57a14772005-04-10 15:01:56 +00002672005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
268
269 * zserv.c (zebra_client_read): Fix bug: first read attempt should
270 read ZEBRA_HEADER_SIZE minus the number of bytes already read.
271 Improve efficiency by maintaining a calculation of the number
272 of bytes read instead of calling stream_get_endp multiple times.
273 If message length is too small, issue a warning message (not debug)
274 before closing the connection. And also check that message length
275 is not too big.
276
hasso206d8052005-04-09 16:38:51 +00002772005-04-09 Hasso Tepper <hasso at quagga.net>
278
hassofa599802005-04-09 16:59:28 +0000279 * rt_netlink.c: One tiny missing comma caused pointless debug messages
280 about IPv6 nexthops.
281
2822005-04-09 Hasso Tepper <hasso at quagga.net>
283
hasso206d8052005-04-09 16:38:51 +0000284 * rt_netlink.c (netlink_parse_info): Fix warning. It's safe to cast
285 status to unsigned here, because we already checked that it isn't
286 negative or 0.
287 * rt_netlink.c (netlink_interface_addr): Prefix length belongs to the
288 address, not to the interface.
289 * rt_netlink.c (netlink_route_multipath): Fix debug. No useless info
290 is printed out now and IPv6 info is handeled.
291
paul3d1dc852005-04-05 00:45:23 +00002922005-04-05 Paul Jakma <paul@dishone.st>
293
294 * zserv.c: print more helpful errors when we fail to successfully
295 bind and listen on zserv socket. Closes bugzilla #163.
296
ajsd2fc8892005-04-02 18:38:43 +00002972005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
298
ajs08dbfb62005-04-03 03:40:52 +0000299 * if_ioctl.c: (interface_list_ioctl) Use if_get_by_name_len.
300 * if_proc.c: (ifaddr_proc_ipv6) Increase size of ifname buffer to
301 avoid overflow.
302 * kernel_socket.c: (ifan_read) Use if_get_by_name_len.
303
3042005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
305
ajsa3491982005-04-02 22:50:38 +0000306 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
307 to save a memcpy.
308 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
309 if_get_by_name_len function.
310
3112005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
312
ajsd2fc8892005-04-02 18:38:43 +0000313 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
314 (if_delete_update) After distributing the interface deletion message,
315 set ifp->ifindex to IFINDEX_INTERNAL.
316 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
317 IFINDEX_INTERNAL.
318 (zebra_interface) Check return code from interface_cmd.func.
319 Do not set internal ifindex values to if_new_intern_ifindex(),
320 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
321 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
322 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
323 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
324 Detects interface rename events by checking if that ifindex is already
325 being used. If it is, delete the old interface before assigning
326 the ifindex to the new interface.
327 (netlink_interface, netlink_link_change) Call set_ifindex to update
328 the ifindex.
329
hassob7ed1ec2005-03-31 20:13:49 +00003302005-03-31 Hasso Tepper <hasso at quagga.net>
331
332 * rt_netlink.c (netlink_talk_filter): Show always warning message,
333 it's not for debug.
334 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
335 although we do now actually.
336 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
337 netlink_cmd to send messages to the kernel.
338
ajs2da40f42005-03-30 16:33:13 +00003392005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
340
341 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
342 other irdp_* functions.
343 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
344 call irdp_sock_init to create the IRDP socket.
345 (irdp_if_init) Rename to irdp_init().
346 (get_iflist_ifp) Remove function that is a duplicate of
347 if_lookup_by_index.
348 (*) Make many functions static. And remove superfluous "\n" from
349 several zlog messages.
350 * irdp_main.c: (irdp_init) Remove function that used to call
351 irdp_if_init() and irdp_sock_init(), since we will now create
352 the socket only upon first use.
353 (irdp_sock_init) Do not update global irdp_sock variable, just
354 return the fd and assume that the caller will do so. If setsockopt
355 calls fail, close the socket before returning -1.
356 (*) Make many functions static.
357 * irdp_packet.c: Initialize irdp_sock to -1.
358 (irdp_read_raw) Call standard library function if_lookup_by_index
359 instead of get_iflist_ifp.
360 (irdp_recvmsg) Should be static, not global.
361
ajsa608bbf2005-03-29 17:03:49 +00003622005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
363
364 * rt_netlink.c: (netlink_link_change) If the status of an
365 operative interface changes (e.g. MTU changes), the client
366 daemons should be notified by calling zebra_interface_up_update.
367 Previously, the information was being updated in zebra's
368 interface structure, but the clients were not notified of
369 changes to an operative interface.
370
vincent7cee1bb2005-03-25 13:08:53 +00003712005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
372 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
373 IPv6 Neighbor Discovery according to RFC3775, section 7:
374 o 1-bit Home Agent flag management in Router Advertisement (7.1).
375 o 1-bit Router Address flag management in Prefix Information
376 Option (7.2).
377 o Advertisement Interval Option (7.3)
378 o Home Agent Information Option (7.4)
379 o Changes to Sending Router Advertisements more frequently (7.5)
380
hassoed9bb6d2005-03-13 19:17:21 +00003812005-03-13 Hasso Tepper <hasso at quagga.net>
382
383 * zebra/interaface.c: "show interface description" command
384 implemented.
385
paulc1f01f32005-03-12 06:33:14 +00003862005-03-12 Paul Jakma <paul@dishone.st>
387
388 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
389 No stock Linux kernel has ever supported it, and even if it had
390 it's not generally a good idea.
391
hasso42a66d72005-03-07 08:19:44 +00003922005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
393
394 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
395
hasso3452d472005-03-06 13:42:05 +00003962005-03-06 Hasso Tepper <hasso at quagga.net>
397
398 * interface.c: Fix CRC and frame errors statistics in Linux.
399
ajs719e9742005-02-28 20:52:15 +00004002005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
401
402 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
403 Remove global message_queue and t_write (need separate buffering for
404 each client).
405 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
406 related to old buggy buffering code.
407 (zserv_delayed_close) New thread callback function to delete a client.
408 (zserv_flush_data) New thread callback function to flush buffered
409 data to client.
410 (zebra_server_send_message) Rewritten to use buffer_write (so
411 buffering of writes and non-blocking I/O work properly).
412 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
413 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
414 (this is not really an error). Return value from
415 zebra_server_send_message.
416 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
417 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
418 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
419 from zebra_server_send_message.
420 (zsend_router_id_update) Must use zebra_server_send_message instead
421 of deprecated writen function. Return 0 instead of -1 if this client
422 is not subscribed to router-id updates (since this is not really
423 an error).
424 (zread_interface_add) Change type to static int. If
425 zsend_interface_add fails or zsend_interface_address fails, return -1
426 immediately (since the client has had an I/O error).
427 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
428 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
429 to indicate success.
430 (zread_ipv4_nexthop_lookup) Return value from
431 zsend_ipv4_nexthop_lookup.
432 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
433 (zebra_read_ipv6) Remove unused function.
434 (zread_ipv6_nexthop_lookup) Return value from
435 zsend_ipv6_nexthop_lookup.
436 (zread_router_id_add) Return value from zsend_router_id_update.
437 (zebra_client_close) Call buffer_free(client->wb) and
438 thread_cancel(client->t_suicide).
439 (zebra_client_create) Allocate client->wb using buffer_new.
440 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
441 Use ZEBRA_HEADER_SIZE instead of 3.
442 (zebra_accept) Fix bug: reset accept thread at top. Make client
443 socket non-blocking using the set_nonblocking function.
444 (config_write_forwarding) Fix scope to static.
445 (zebra_init) Remove initialization code for old buggy write buffering.
446 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
447 (to enable buffered writes with non-blocking I/), and
448 struct thread *t_suicide to support delayed close on I/O
449 errors.
450 * router-id.h: Remove prototypes for zread_router_id_add and
451 zread_router_id_delete (their scope should be static to zserv.c).
452
ajs27da3982005-02-24 16:06:33 +00004532005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
454
455 * redistribute.c: (zebra_check_addr,is_default,
456 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
457
hassoe8274dc2005-02-20 19:09:23 +00004582005-02-20 Hasso Tepper <hasso at quagga.net>
459
460 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
461 if we are not debugging.
462
paule31f2292005-02-19 02:00:26 +00004632005-02-19 Paul Jakma <paul@dishone.st>
464
465 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
466 STREAM_READABLE.
467
paul1e193152005-02-14 23:53:05 +00004682005-02-14 Paul Jakma <paul@dishone.st>
469
470 * Not all Linux netlink systems have IFLA_WIRELESS
471
ajs6a52d0d2005-01-30 18:49:28 +00004722005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
473
474 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
475 zlog_err.
476 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
477 zlog_err.
478
ajs4be019d2005-01-29 16:12:41 +00004792005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
480
ajs4460e7a2005-01-29 17:07:40 +0000481 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
482 zserv_privs.change.
483 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
484 zserv_privs.change.
485 * ipforward_solaris.c: (solaris_nd) Save errno before calling
486 zserv_privs.change.
487 * irdp_main.c: (irdp_sock_init) Save errno before calling
488 zserv_privs.change.
489
4902005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
491
ajs4be019d2005-01-29 16:12:41 +0000492 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
493 netlink_talk) Save errno before calling zserv_privs.change.
494
paulc15cb242005-01-24 09:05:27 +00004952005-01-24 Martin Pot <mpot at martybugs.net>
496
497 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
498
hasso6f2c27a2005-01-18 13:44:35 +00004992005-01-18 Hasso Tepper <hasso at quagga.net>
500
501 * interface.c: Better statistics output in "show interface" command in
502 case of /proc being used.
503
hasso583d8002005-01-16 23:34:02 +00005042005-01-17 Hasso Tepper <hasso at quagga.net>
505
506 * main.c: With --nl-bufsize argument is required.
507
paul865b8522005-01-05 08:30:35 +00005082005-01-05 Paul Jakma <paul@dishone.st>
509
510 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
511 for now, as we dont actually deal with with resending.... See
512 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
513 * kernel_socket.c: (routing_socket) ditto.
514
ajsb99760a2005-01-04 16:24:43 +00005152005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
516
517 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
518 instead of CMSG_FIRSTHDR.
519
ajs341a8f12004-12-22 16:32:16 +00005202004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
521
522 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
523 with no peer specified to PtP interfaces only.
524
hassob8adec12004-12-18 16:03:28 +00005252004-12-18 Hasso Tepper <hasso at quagga.net>
526
527 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
528 work for isis routes.
529
gdt6a250b02004-12-09 14:48:12 +00005302004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
531
532 * kernel_socket.c (rtmsg_debug): char * => const char *
533
ajs274a4a42004-12-07 15:39:31 +00005342004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
535
ajsb6178002004-12-07 21:12:56 +0000536 * *.c: Change level of debug messages to LOG_DEBUG.
537
5382004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
539
ajs274a4a42004-12-07 15:39:31 +0000540 * main.c: (main) The 2nd argument to openzlog has been removed.
541 So stdout logging will no longer be enabled by default.
542 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
543 from LOG_WARNING to LOG_INFO.
544
ajs887c44a2004-12-03 16:36:46 +00005452004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
546
547 * main.c: (sigint) Use zlog_notice for termination message.
548 (main) Add a startup announcement using zlog_notice.
549
hassoaccb1562004-11-25 19:21:07 +00005502004-11-25 Hasso Tepper <hasso at quagga.net>
551
552 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
553 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000554 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000555
hasso6bd7c6a2004-10-28 17:32:27 +00005562004-10-28 Hasso Tepper <hasso at quagga.net>
557
558 * interface.c: Remove dead "ip tunnel" command.
559
paul06f953f2004-10-22 17:00:38 +00005602004-10-22 Paul Jakma <paul@dishone.st>
561
562 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
563
hasso3fb9cd62004-10-19 19:44:43 +00005642004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
565
566 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
567 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
568 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
569 function.
570 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
571 macro.
572 (connected_down_ipv4) ditto.
573 (connected_add_ipv4) Validate destination address, print warnings
574 if it does not make sense.
575
hassoc1eaa442004-10-19 06:26:01 +00005762004-10-19 Hasso Tepper <hasso at quagga.net>
577
578 * zserv.c: Fix regression introduced with zserv cleanup.
579
hassoc75105a2004-10-13 10:33:26 +00005802004-10-13 Hasso Tepper <hasso at quagga.net>
581
582 * zebra_snmp.c: Remove defaults used to initialize smux connection to
583 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000584 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000585
hasso39ff11d2004-10-12 15:55:19 +00005862004-10-12 Hasso Tepper <hasso at quagga.net>
587
588 * zebra_vty.c: Unbreak "show ip route" command help and make it work
589 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000590 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
591 output. Fixes Bugzilla #119.
592 * *.c: Make some strings const and some (unsigned) casts to fix
593 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000594
hassofce954f2004-10-07 20:29:24 +00005952004-10-07 Hasso Tepper <hasso at quagga.net>
596
597 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
598 Fix warnings: make strings const, signed -> unsigned.
599
paul72164662004-10-05 14:39:43 +00006002004-10-05 Paul Jakma <paul@dishone.st>
601
602 * irdp_packet.c: (parse_irdp_packet) style issues.
603 Use sockopt_iphdrincl_swab_systoh.
604 Try unbork the code. Checksum the ICMP data and actually
605 compare it to received checksum. Check data length against
606 claimed length in header.
607 Always use ntoh.. when accessing addresses, even when the
608 comparison happens to be endian-safe.
609 (send_packet) minor style isues. Use
610 sockopt_iphdrincl_swab_htosys.
611 (irdp_iph_hton/ntoh) IP header to/from network/host order.
612
hassoeef1fe12004-10-03 18:46:08 +00006132004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
614
615 * interface.c, interface.h: A new prefix tree of connected subnets is
616 associated with each interface structure in zebra, in which each
617 live (ie, non-synthetic) node holds a list of installed addresses
618 that belong to that prefix. Remove secondary address logic from cli.
619 See [quagga-dev 872] for detailed explanation.
620 * connected.c: Use if_subnet_add() and if_subnet_delete().
621
hasso18a6dce2004-10-03 18:18:34 +00006222004-10-03 James R. Leu <jleu at mindspring.com>
623
624 * router-id.c, router-id.h: New files. Router id selection process. If
625 there is non 127.x.x.x address in loopack interface, lowest of them
626 is chosen. If there isn't, lowest from other interfaces addresses
627 are chosen. "router-id x.x.x.x" vty command to manual override.
628 * Makefile.am: Compile new files.
629 * main.c: Initialize router id.
630 * redistribute.c: Add interface addresses into router id selection
631 lists as they (dis)appear.
632 * zserv.c, zserv.h: Sending router id related messages to daemons.
633
hassoc9e52be2004-09-26 16:09:34 +00006342004-09-26 Hasso Tepper <hasso at quagga.net>
635
636 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
637 rtadv.c, zebra_vty.c: Fix compiler warnings.
638
paul0c0f9112004-09-24 08:24:42 +00006392004-09-24 Paul Jakma <paul@dishone.st>
640
paul26f7a242004-09-24 08:45:10 +0000641 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
642 add missing listnode declaration.
643
6442004-09-24 Paul Jakma <paul@dishone.st>
645
paul0c0f9112004-09-24 08:24:42 +0000646 * irdp_{interface,main}.c: lists typedef removal cleanup.
647 update some list loops to LIST_LOOP. some miscellaneous style
648 and indent fixups.
649 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000650 in loop.
paul0c0f9112004-09-24 08:24:42 +0000651 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
652 to pointer.
653 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
654 update some list loops to LIST_LOOP.
655
hasso52dc7ee2004-09-23 19:18:23 +00006562004-09-23 Hasso Tepper <hasso at quagga.net>
657
658 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
659
paul44983cf2004-09-22 13:15:58 +00006602004-09-22 Paul Jakma <paul.jakma@sun.com>
661
662 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
663 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
664 crash.
665
hassoc34b6b52004-08-31 13:41:49 +00006662004-08-31 Hasso Tepper <hasso at quagga.net>
667
668 * main.c, rt_netlink.c: Added -s command line switch for tuning
669 netlink receive buffer size in Linux to avoid buffer overruns.
670
gdta5ea6872004-08-26 13:24:00 +00006712004-08-26 Miles Nordin <carton@Ivy.NET>
672
673 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
674 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
675 forwarding status correctly.)
676
paul3e0b3a52004-08-23 18:58:32 +00006772004-08-23 Paul Jakma <paul@dishone.st>
678
679 * zserv.c: (zebra_init) remove implicit ip forward enabling
680
paul0de1cde2004-08-19 04:45:33 +00006812004-08-19 Paul Jakma <paul@dishone.st>
682
683 * irdp_main.c: update to match sockopt renames.
684 * irdp_packet.c: include sockopt.h and update to match sockopt
685 renames.
686
gdt57492d52004-08-11 18:06:38 +00006872004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
688
689 * rtadv.c (rtadv_send_packet): Allocate space for control messages
690 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
691 is to 8 bytes instead of 4, and overwriting the address. Use the
692 provided macros for determining lengths.
693
paul5b73a672004-07-23 15:26:14 +00006942004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
695
696 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
697 * zserv.c: ditto
698 * ioctl_solaris.c: ditto.
699 * interface.c: cast for LLADDR
700 * interface.h: Add guards, include redistribute.h and remove
701 extraneous definitions of zebra_interface_{up,down}_update
702 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
703 * redistribute.h: include dependent header, zserv.h
704 * zserv.h: include dependent header, rib.h
705
paul1470baf2004-07-23 15:25:01 +00007062004-07-23 Paul Jakma <paul@dishone.st>
707
708 * irdp_main.c: use setsockopt_pktinfo_ipv4
709 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
710 getsockopt_pktinfo_ifindex()
711
gdtcced60d2004-07-13 16:45:54 +00007122004-07-13 David Wiggins <dwiggins@bbn.com
713
714 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
715
hasso25dac852004-07-13 03:06:51 +00007162004-07-13 Hasso Tepper <hasso@estpak.ee>
717
718 * irdp_main.c: Add privilege change.
719
hasso996933f2004-07-12 16:32:56 +00007202004-07-12 Hasso Tepper <hasso@estpak.ee>
721
722 * irdp_interface.c: follow common style while naming vty command
723 functions. Avoids confusion in extract.pl.
724
gdt87efd642004-06-30 17:36:11 +00007252004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
726
727 * main.c: define thread_master variable so that linking with
728 libzebra.so doesn't fail. Arguably zclient.o should be in a
729 separate library, but this is far less disruptive.
730
hassoca776982004-06-12 14:33:05 +00007312004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
732
733 * Added IRDP support.
734
hasso3e31cde2004-05-18 11:58:59 +00007352004-05-18 Hasso Tepper <hasso@estpak.ee>
736
737 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
738 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
739 "ipv6 nd prefix" command to allow various combinations of parameters
740 and flags. No defaults in configuration. Replaced on-link and
741 autoconfig with off-link and no-autoconfig flags in command syntax.
742 Cosmetic fixes in all commands. Documentation to reflect all changes.
743
paul19877dd2004-05-11 10:49:35 +00007442004-05-11 Paul Jakma <paul@dishone.st>
745
746 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000747 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
748 add privs.h header.
749 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000750 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
751 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
752 RHS in assignments :)
753 * redistribute.c: (zebra_interface_delete_update) only used
754 if RTM_IFANNOUNCE and NETLINK is available.
755
paulb9df2d22004-05-09 09:09:59 +00007562004-05-09 Paul Jakma <paul@dishone.st>
757
758 * zserv.c: (zsend_route_multipath) Set the nexthop_num
759 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
760 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
761 (zsend_ipv4_add) cruft, deleted.
762 (zsend_ipv4_delete) ditto.
763 (zsend_ipv6_add) ditto.
764 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000765 * ioctl.c: (if_get_mtu) set mtu6 to mtu
766 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
767 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
768 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000769 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000770 * if_ioctl_solaris.c: Add zprivs support.
771 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000772
paulb9df2d22004-05-09 09:09:59 +00007732004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
774
775 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
776 into single zsend_route_multipath function.
777 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
778 (zsend_interface_address_{add,delete}) collapsed into
779 zsend_interface_address.
780 (zsend_interface_add) send mtu6.
781 (zsend_interface_delete) ditto.
782 (zebra_write) remove unused function.
783 (various) Apply static qualifier. Add comments.
784 * zserv.h: Definitions changed as per above.
785 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000786 * interface.c: (if_delete_update) only used with HAVE_NETLINK
787 and RTM_IFANNOUNCE.
788 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
789 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000790 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
791 * ioctl_solaris.c: New file, Common solaris ioctl methods.
792
hasso34195bf2004-04-06 12:07:06 +00007932004-04-06 Krzysztof Oledzki <oleq@ans.pl>
794
795 * rt_netlink.c: Do not ignore metric when reading kernel routing
796 table on Linux with rt_netlink interface.
797
7982004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000799
800 * interface.c: Temporary fix for handling secondary addresses
801 with label.
802
hasso55906722004-02-11 22:42:16 +00008032004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000804
hasso55906722004-02-11 22:42:16 +0000805 * zserv.c: Added "ipv6 forwarding" command.
806
gdtb27900b2004-01-08 15:44:29 +00008072004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
808
809 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
810 for reading kernel messages to ensure enough space (necessary on
811 Solaris due to sockaddr_dl being large). Thanks to Sowmini
812 Varadhan for help with this change.
813
gdt9ccabd12004-01-06 18:23:02 +00008142004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
815
816 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
817
gdtdbee01f2004-01-06 00:36:51 +00008182004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000819 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
820 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
821 to just the accomodation of broken kernels. Check sockaddr_dl
822 carefully up front, and later assume any non-NULL sdl pointer is
823 valid. Clean up types and variable declarations, and rename
824 WRAPUP to SAROUNDUP to make the name fit the behavior.
825
8262004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000827
828 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
829 structure, because on Solaris sockaddr_dl is far larger than the
830 base sockaddr structure. (The code had previously been failing to
831 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000832
gdtda26e3b2004-01-05 17:20:59 +00008332004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
834
835 * kernel_socket.c (kernel_read): Look up interfaces by index
836 first, so that state changes which do not include a sockaddr_dl
837 now work. Add many sanity checks. In
838 particular, do not assume that a sockaddr_dl follows a message
839 without checking the ifm_addrs flags, and do not trust the length
840 in a sockaddr_dl. Add/clarify many comments.
841
gdt4b5e1352003-12-03 17:54:34 +00008422003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
843
844 * rtadv.c: reorder includes to avoid compiler warning (define
845 structs before using them in prototypes)
846
hasso647e4f12003-05-25 11:43:52 +00008472003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
848
849 * zserv.c: Add "ip forwarding" command.
850
paul445f1432003-05-16 19:00:31 +00008512003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
852
853 * zebra_rib.c: Fix memory leaks for ifname nexthops
854
8552003-04-19 Israel Keys <ikeys@agile.tv>
856
857 * rt_netlink.c: BLOCK on netlink while initialising
858
8592003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
860
861 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
862 it exists.
863
paul718e3742002-12-13 20:15:29 +00008642002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
865
866 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
867
8682002-09-10 Jochen Friedrich <chris+zebra@scram.de>
869
870 * rt_netlink.c: Add check for EAGAIN.
871 * kernel_socket.c: Likewise
872
8732002-06-12 Israel Keys <ikeys@oz.agile.tv>
874
875 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
876 message so that we get an ACK for successful netlink commands.
877 Change the netlink socket to BLOCKING while we wait for a
878 response; be it an ACK or an NLMSG_ERROR. Change
879 netlink_parse_info to deal with ACK messages.
880
8812001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
882
883 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
884 work for ICMPv6 socket.
885
8862001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
887
888 * rib.c (rib_process): Select connected route any case.
889
8902001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
891
892 * interface.c (no_ip_address_secondary): Add "no" to command.
893
8942001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
895
896 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
897 to infinity as the freebsd4.4 workaroud.
898
8992001-08-26 mihail.balikov@interbgc.com
900
901 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
902 A.B.C.255.
903
9042001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
905
906 * rtadv.c: Do not send RA to loopback interface.
907
9082001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
909
910 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
911 route treatment.
912
9132001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
914
915 * zebra-0.92a released.
916
9172001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
918
919 * rib.c: Kernel route is treated as EGP routes in nexthop active
920 check.
921
9222001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
923
924 * zebra-0.92 released.
925
9262001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
927
928 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
929 show route commands.
930
9312001-07-29 Yon Uriarte <havanna_moon@gmx.net>
932
933 * zserv.c (zsend_ipv4_add_multipath): Add
934 NEXTHOP_TYPE_IPV4_IFINDEX check.
935
9362001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
937
938 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
939 autonomous address-configuration flag patch.
940 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
941 suppress-ra".
942
9432001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
944
945 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
946 command.
947
9482001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
949
950 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
951 multicast FIB support both IPv4 and IPv6.
952
9532001-07-24 Hal Snyder <hal@vailsys.com>
954
955 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
956 full list of interfaces on some configurations of OpenBSD.
957
9582001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
959
960 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
961 send-ra" bug.
962 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
963 availability.
964 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
965 added.
966 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
967
9682001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
969
970 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
971
972 * rt_ioctl.c: Likewise.
973
9742001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
975
976 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
977 interface is not p2p.
978
9792001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
980
981 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
982
9832001-04-06 Toshiaki Takada <takada@zebra.org>
984
985 * zserv.c (zsend_interface_delete): Use client->obuf instead of
986 allocating new stream.
987
9882001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
989
990 * rt_netlink.c: Revert RTPROT_BOOT change.
991
9922001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
993
994 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
995 (netlink_routing_table): Likewise.
996
9972001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
998
999 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
1000 protocol daemons.
1001
10022001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1003
1004 * rt_netlink.c (netlink_routing_table): Do not return
1005 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
1006 <mokeefe@qualcomm.com>.
1007
10082001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1009
1010 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
1011 Suggested by: Chris Dunlop <chris@onthe.net.au>.
1012
10132001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1014
1015 * rib.c (nexthop_active_ipv4): When nexthop type is
1016 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
1017
1018 * zserv.c: Initialize rtm_table_default with 0.
1019
1020 * zebra-0.91 is released.
1021
10222001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1023
1024 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
1025 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1026
10272001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1028
1029 * connected.c (connected_up_ipv6): When point-to-point destination
1030 address is ::, use local address for connected network.
1031 (connected_down_ipv6): Likewise.
1032
10332001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1034
1035 * zserv.c (zebra_serv): Add missing close() call. Reported by:
1036 David Waitzman <djw@vineyard.net>.
1037
10382001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1039
1040 * rib.c (rib_lookup_ipv4): New function for checking exact match
1041 IGP route.
1042
10432001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1044
1045 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
1046 route-type".
1047
10482001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1049
1050 * interface.c (zebra_interface): Do not call
1051 zebra_interface_add_update for inactive interface.
1052
1053 * zserv.c (zsend_interface_address_add): Send interface address
1054 flag.
1055 (zsend_interface_address_delete): Likewise.
1056
10572001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1058
1059 * interface.c (if_addr_add): Add flags.
1060
1061 * connected.c (ifa_add_ipv4): Add new function for interface
1062 address handling.
1063 (ifa_delete_ipv4): Likewise.
1064
10652001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1066
1067 * rib.c (rib_update): Update IPv6 RIB.
1068
1069 * kernel_socket.c (ifam_read): Call if_refresh() for update
1070 interface flag status. This is for implicit interface up on *BSD.
1071
1072 * interface.c (if_refresh): Add interface flag refresh function.
1073
1074 * kernel_socket.c (rtm_read): Fetch link-local address interface
1075 index.
1076 (ifan_read): We need to fetch interface information. Suggested
1077 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
1078
1079 * rib.c (static_ipv6_nexthop_same): Add check for
1080 NEXTHOP_TYPE_IPV6_IFNAME.
1081
10822001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1083
1084 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
1085 taken into place.
1086
10872001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1088
1089 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
1090 configuration.
1091 (rib_delete_ipv6): Handle same route conter for IPv6 connected
1092 route.
1093 (show_ipv6_route_protocol): New command.
1094 (show_ipv6_route_addr): Likewise.
1095 (show_ipv6_route_prefix): Likewise.
1096 (rib_update): Sweep kernel route when it is cleaned up.
1097
1098 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
1099 treatmenet.
1100
1101 * rt_netlink.c (kernel_init): Likewise.
1102
1103 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
1104
1105 * rib.c (rib_add_ipv4): Cope with same connected route on a
1106 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
1107 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
1108
1109 * rib.h (struct new_rib): Add refcnt to keep track on the
1110 reference of same connected route.
1111
1112 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
1113
11142001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1115
1116 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
1117 (rtm_type_str): Add RTM_IFANNOUNCE check.
1118 (ifan_read): New function.
1119 (kernel_read): Add case for RTM_IFANNOUNCE.
1120
11212001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1122
1123 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
1124
1125 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
1126 treatment.
1127
1128 * connected.c (connected_up_ipv6): Add dest value check.
1129
1130 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
1131 ifindex.
1132 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
1133 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
1134 checked by ifindex.
1135
1136 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
1137
1138 * redistribute.c (redistribute_add): Use
1139 zsend_ipv6_add_multipath().
1140 (redistribute_delete_multipath): Use
1141 zsend_ipv6_delete_multipath().
1142
1143 * interface.c (ip_address): Check current IP address to avoid
1144 duplicate.
1145
1146 * rib.c (rib_delete_ipv4): When deleted route is connected route,
1147 check ifindex.
1148 (rib_add_ipv4): When connected route is added do not perform
1149 implicit withdraw.
1150 (rib_delete_ipv4): Check ifindex for connected route.
1151
1152 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
1153 ZEBRA_FLAG_STATIC for indicate as persistent route.
1154 (ifam_read): Unset interface index from link-local address when
1155 IPv6 stack is KAME.
1156
1157 * rib.c (rib_update): Do not delete persistent kernel route.
1158
1159 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
1160
1161 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
1162 (kernel_delete_ipv6_multipath): Likewise.
1163
1164 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
1165
11662001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1167
1168 * rib.c (rib_update): Revert Matthew Grant's patch
1169 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
1170 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
1171 that. Add support for address deletion situation.
1172
11732001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1174
1175 * interface.c: Remove HAVE_IF_PSEUDO part.
1176
1177 * rib.h: Likewise.
1178
1179 * rt_netlink.c (netlink_link_change): Likewise.
1180
11812001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1182
1183 * zserv.c: Remove OLD_RIB codes.
1184
11852001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1186
1187 * zebra-0.90 is released.
1188
11892001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
1190
1191 * interface.c (if_new_intern_ifindex): Allocate a new internal
1192 interface index.
1193 (if_addr_refresh): Fix up ip addresses configured via zebra.
1194 (if_add_update): Handle an interface addition.
1195 (if_delete_update): Handle an interface delete event.
1196
1197 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
1198 interface goes down.
1199
12002001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1201
1202 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
1203 NetBSD also use this function. Suggested by Jasper Wallace
1204 <jasper@ivision.co.uk>.
1205
12062001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1207
1208 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
1209 one.
1210
12112001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1212
1213 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
1214 flag, so treat it.
1215
12162001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1217
1218 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
1219 sent from netlink_cmd, the same message comes from netlink. To
1220 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
1221 instead of netlink_cmd.sock.
1222
12232001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1224
1225 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
1226 Change "/tmp/zserv" to "/tmp/.zserv".
1227
12282000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
1229
1230 * rt_netlink.c (struct nlsock): Divide kernel message into listen
1231 socket and command socket.
1232 (netlink_talk): Remove socket listen code. Use netlink_parse_info
1233 for read kernel response.
1234
12352000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1236
1237 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
1238 routes.
1239
12402000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1241
1242 * rt_netlink.c (netlink_route_multipath): Metric value is
1243 reflected to kernel routing table.
1244
1245 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
1246
1247 * kernel_socket.c (rtm_write): Likewise.
1248
1249 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
1250 nexthop lookup.
1251
1252 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
1253 new RIB implementation.
1254
12552000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1256
1257 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
1258
12592000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1260
1261 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
1262 proper redistribution.
1263
12642000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1265
1266 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
1267 (show_ip_route_protocol): Support new RIB.
1268
1269 * rt_netlink.c (netlink_route_change): Do not return when gate is
1270 NULL.
1271
12722000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1273
1274 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
1275 updated.
1276 (rib_add_ipv4): Free implicit withdraw route's RIB.
1277
12782000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1279
1280 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
1281
1282 * redistribute.c (redistribute_add_multipath): Redistribution
1283 works with new rib code.
1284
12852000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1286
1287 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
1288 number.
1289 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
1290
1291 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
1292 activity is changed.
1293 (nexthop_active_check): Before checking interface is up, make it
1294 sure the interface exist.
1295
12962000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1297
1298 * rib.c (ip_route): New RIB prototype.
1299
13002000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
1301
1302 * zserv.c (zsend_interface_add): Send hardware address when
1303 hw_addr_len is greater than 0.
1304
13052000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1306
1307 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1308 network should be installed into routing table.
1309 (connected_down_ipv4): Likewise.
1310 (connected_add_ipv4): Change to use connected_up_ipv4.
1311 (connected_delete_ipv4): Likewise.
1312
13132000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1314
1315 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1316 <laforge@gnumonks.org>'s ptop patch then back to original code to
1317 avoid duplicated connected route problem. Suggested by Frank van
1318 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1319
1320 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1321 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1322 <itojun@iijlab.net>.
1323
13242000-10-23 Jochen Friedrich <jochen@scram.de>
1325
1326 * main.c (main): Call zebra_snmp_init() when it is enabled.
1327
13282000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1329
1330 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1331 protocol.
1332
13332000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1334
1335 * rib.c (rib_add_ipv4): Same check bug is fixed.
1336
13372000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1338
1339 * rib.c (rib_if_down): Remove kernel route when the interface goes
1340 down.
1341
1342 * debug.c: New command "debug zebra kernel" is added.
1343
13442000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1345
1346 * zebra-0.89 is released.
1347
13482000-09-24 Harald Welte <laforge@gnumonks.org>
1349
1350 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1351 treatment in netlink interface.
1352
13532000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1354
1355 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1356 must withdraw routes when interface goes down.
1357 (rib_add_ipv4): Check nexthop when replace route.
1358
13592000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1360
1361 * if_ioctl.c (if_getaddrs): New function for looking up
1362 interface's address by getifaddrs().
1363
13642000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1365
1366 * connected.c (connected_delete_ipv4): Add check for connected
1367 address is found or not.
1368 (connected_add_ipv6): Reflect IPv6 connected address change to
1369 protocol daemons.
1370 (connected_delete_ipv6): Likewise.
1371
13722000-09-07 David Lipovkov <davidl@nbase.co.il>
1373
1374 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1375 interface patch to original. Because ospfd deletes routes using
1376 zero ifindex.
1377
13782000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1379
1380 * zebra-0.88 is released.
1381
13822000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1383
1384 * rib.c (show_ip_route_protocol): Help string correction.
1385 (show_ip_route_prefix): Check prefix mask.
1386 (show_ip_route_vty_detail): Display distance and metric.
1387
13882000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1389
1390 * zserv.c (zsend_interface_add): Change ifindex store size from
1391 two octet to four.
1392 (zsend_interface_delete): Likewise.
1393 (zsend_interface_address_add): Likewise.
1394 (zsend_interface_address_delete): Likewise.
1395 (zsend_interface_up): Likewise.
1396 (zsend_interface_down): Likewise.
1397
13982000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1399
1400 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1401
14022000-08-10 Toshiaki Takada <takada@zebra.org>
1403
1404 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1405 zebra_interface_up_update () instead of using if_up() and if_down().
1406
14072000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1408
1409 * interface.c (bandwidth_if): Fix help string.
1410
14112000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1412
1413 * interface.c (if_dump_vty): Display bandwidth value.
1414 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1415 When interface is up, force protocol daemons to recalculate routes
1416 due to cost change.
1417 (no_bandwidth_if): Likewise.
1418 (if_config_write): Output bandwidth configuration.
1419
1420 * zserv.c (zsend_interface_add): Send bandwidth value.
1421 (zsend_interface_up): Likewise.
1422 (zsend_interface_down): Likewise.
1423
1424
14252000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1426
1427 * rib.c (show_ip_route_protocol): "show ip route
1428 (bgp|connected|kernel|ospf|rip|static)" is added.
1429
14302000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1431
1432 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1433 nexthop is found.
1434 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1435
14362000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1437
1438 * redistribute.c (redistribute_delete): Fix bug of default route
1439 redistribute treatment.
1440
14412000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1442
1443 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1444 Change default distance value.
1445
1446 Old New
1447 ------------------------------------------
1448 system 10 0
1449 kernel 20 0
1450 connected 30 0
1451 static 40 1
1452 rip 50 120
1453 ripng 50 120
1454 ospf 60 110
1455 ospf6 49 110
1456 bgp 70 200(iBGP) 20(eBGP)
1457 ------------------------------------------
1458
1459 * zserv.c (client_lookup): Function removed.
1460 (zsend_interface_add): Use client's output buffer. Check ifinfo
1461 flag.
1462 (zsend_interface_delete): Likewise.
1463 Delete ipv4_static_radix and ipv6_static_radix.
1464
14652000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1466
1467 * zserv.h (struct zebra_client): When client request interface
1468 information, ifinfo is set.
1469
1470 * rib.c: Temporary Revert changes for pseudo interface.
1471
1472 * rib.h: Likewise.
1473
1474 * zserv.c: Likewise.
1475
1476 * interface.c: Likewise.
1477
14782000-08-02 David Lipovkov <davidl@nbase.co.il>
1479
1480 * interface.c (zebra_if_init): Install interface "pseudo"
1481 commands.
1482
1483 * rib.c (rib_create): ifname argument is added.
1484 (rib_add_ipv4_pseudo): New function is added.
1485 (rib_delete_ipv4_pseudo): Likewise.
1486
1487 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1488 pseudo interface functions.
1489
1490 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1491
1492 * zserv.c (ip_route): When destination is pseudo interface, call
1493 rib_add_ipv4_pseudo().
1494
1495 * zserv.c (no_ip_route): Trim "unknown" argument.
1496
14972000-07-26 kunitake@dti.ad.jp
1498
1499 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1500 to 6.
1501
1502 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1503
15042000-07-24 Akihiro Mizutani <mizutani@dml.com>
1505
1506 * interface.c: Use install_default() for common VTY commands.
1507
15082000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1509
1510 * if_ioctl.c (interface_list_ioctl): A interface list size is
1511 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1512
1513 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1514
15152000-07-09 Chris Dunlop <chris@onthe.net.au>
1516
1517 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1518
15192000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1520
1521 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1522 message handling.
1523
15242000-07-02 David Lipovkov <davidl@nbase.co.il>
1525
1526 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1527
15282000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1529
1530 * rib.c: Remove old kernel route when new route comes in.
1531
15322000-06-13 David Lipovkov <davidl@nbase.co.il>
1533
1534 * rib.c (rib_if_up): Add check for unknown interface.
1535
15362000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1537
1538 * rib.h: Define INTERFACE_UNKNOWN.
1539
15402000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1541
1542 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1543 finished.
1544
15452000-06-05 David Lipovkov <davidl@nbase.co.il>
1546
1547 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1548
1549 * redistribute.c (zebra_interface_delete_update): New function.
1550
1551 * redistribute.h (zebra_interface_delete_update): New function
1552 prototype.
1553
1554 * rib.c (rib_if_delete): New function. Walk down all routes and
1555 delete all on the interface.
1556
1557 * rib.h: New function prototype.
1558
1559 * rt_netlink.c (netlink_link_change): Call
1560 zebra_interface_delete_update ().
1561
15622000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1563
1564 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1565 checking interface's address.
1566
15672000-04-26 Jochen Friedrich <jochen@nwe.de>
1568
1569 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1570
1571 * GNOME-SMI: New file.
1572
15732000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1574
1575 * irdp.c: New file from 1997 development code.
1576 * irdp.h: Likewise.
1577
15782000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1579
1580 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1581 logging with IS_ZEBRA_DEBUG_PACKET.
1582
15832000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1584
1585 * zserv.c (zebra_client_close): Remove client structure from
1586 client_list when connection is terminated.
1587
15882000-03-21 David Lipovkov <davidl@nbase.co.il>
1589
1590 * connected.c (connected_add_ipv4): Allows all necessary structure
1591 updates for connected route, but doesn't insert it into rib if
1592 it's interface is down.
1593
15942000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1595
1596 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1597 2.5.1.
1598
15992000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1600
1601 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1602 from str2prefix_ipv6().
1603
16042000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1605
1606 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1607 IPv6 with /128 routes.
1608 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1609 should have mask for cloning.
1610
16111999-12-26 Jochen.Friedrich@genorz.de
1612
1613 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1614
16151999-12-23 Alex Zinin <zinin@amt.ru>
1616 * interface.*: dynamic int up/down support
1617
16181999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1619
1620 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1621
1622 * rtread_proc.c (proc_route_read): Don't use dropline().
1623
16241999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1625
1626 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1627 process's pid.
1628
16291999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1630
1631 * main.c (main): Change to default log output to ZLOG_STDOUT.
1632
1633 * zserv.c (zebra_serv): More detailed error print.
1634
16351999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1636
1637 * kernel_socket.c (rtm_read): Check old pid for static route
1638 insertion check.
1639
16401999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1641
1642 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1643 statistics counter.
1644
1645 * mtu_kvm.c: New file added.
1646
16471999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1648
1649 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1650 route to the directly connected interface.
1651
16521999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1653
1654 * rt_socket.c: Delete USE_HOST_BIT definition.
1655
16561999-11-21 Michael Handler <handler@sub-rosa.com>
1657
1658 * rtread_getmsg.c: Undef some definition to resolve conflict.
1659
16601999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1661
1662 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1663 value for gateway specification.
1664
16651999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1666
1667 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1668 128 under IPv6, don't use RTF_HOST.
1669
16701999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1671
1672 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1673
16741999-11-21 Michael Handler <handler@sub-rosa.com>
1675
1676 * rtread_getmsg.c: Added for Solaris 2.6 support.
1677
16781999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1679
1680 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1681
1682 * rt_socket.c (kernel_read): Better BSD routing socket support.
1683
16841999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1685
1686 * client_main.c: Disable making obsolete zebra test `client'
1687 command.
1688
16891999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1690
1691 * zebra.c: Renamed to zserv.c.
1692
1693 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1694 renamed to zserv.h.
1695
16961999-10-15 Jordan Mendelson <jordy@wserv.com>
1697
1698 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1699 interface. Remove ugly MAX_INTERFACE handling codes.
1700
17011999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1702
1703 * Fix serious bug of IPv6 route deletion.
1704
17051999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1706
1707 * ioctl.c (if_set_prefix): Properly set broadcast address.
1708
17091999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1710
1711 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1712 can install connected route to kernel via zebra
1713
17141999-08-24 VOP <vop@unity.net>
1715
1716 * rib.c: Include "sockunion.h"
1717
17181999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1719
1720 * ipforward.h: New file.
1721
1722 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1723 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1724
17251999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1726
1727 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1728 ZEBRA_INTERFACE_{ADD,DELETE} added.
1729
17301999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1731
1732 * rib.c: show ip route A.B.C.D works.
1733
1734 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1735
17361999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1737
1738 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1739
17401999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1741
1742 * interface.h: New file.
1743 * Makefile.am: Add interface.h
1744
17451999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1746
1747 * redistribute.c (zebra_redistribute): give ifindex to client.
1748
17491999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1750
1751 * main.c (longopts): -k, --keep_kernel option added.
1752
17531999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1754
1755 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1756
17571999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1758
1759 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1760
17611999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1762
1763 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1764
17651999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1766
1767 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1768
17691999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1770
1771 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1772
17731999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1774
1775 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1776
17771999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1778
1779 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1780 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1781
17821999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1783
1784 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1785
17861999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1787
1788 * zebra.c (zebra_serv): Only accept loopback address connection.
1789
17901999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1791
1792 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1793
17941999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1795
1796 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1797
17981999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1799
1800 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1801 using /proc file system is added.
1802
18031999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1804
1805 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1806 adding #else at the middle of function. Suggested by David Luyer
1807 <luyer@ucs.uwa.edu.au>.
1808
18091999-05-29 <kunihiro@zebra.org>
1810
1811 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1812
18131999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1814
1815 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1816 the sort of routes.
1817
18181999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1819
1820 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1821 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1822 parse the message.
1823 (netlink_talk): Likewise
1824
18251999-05-17 <kunihiro@zebra.org>
1826
1827 * redistribute.c (zebra_check_addr): Added for loopback address
1828 check.
1829
18301999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1831
1832 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1833 change treatment.
1834
1835 * Makefile.am (noinst_HEADERS): redistribute.h added.
1836
1837 * redistribute.h: New file.
1838
18391999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1840
1841 * zebra.c (show_table): Show all table configuration DEFUN.
1842 (config_table): Config table number DEFUN.
1843
1844 * rt_netlink.c: Add support for multiple routing table.
1845
1846 * rib.c (rib_weed_table): New function added for delete all
1847 routes from specified routing table.
1848
1849 * main.c (signal_init): SIGTERM call sigint.
1850 (sigint): Loggging more better message.
1851
18521999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1853
1854 * rt_netlink.c: Change log () to zlog ().
1855
18561999-05-07 <kunihiro@zebra.org>
1857
1858 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1859
18601999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1861
1862 * interface.c: Add `no ip address' command.
1863
18641999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1865
1866 * rt_netlink.c (kernel_read): Function added for asynchronous
1867 zebra between kernel communication.
1868
18691999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1870
1871 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1872 Reported by Achim Patzner <ap@bnc.net>.
1873
18741999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1875
1876 * Makefile.am: Install configuration sample with 600 permission.
1877
18781999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1879
1880 * Makefile.am: Add -I.. to INCLUDES.
1881
18821999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1883
1884 * syslog support added
1885
18861999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1887
1888 * if_sysctl.c (interface_list): allocated memory free when unknown
1889 ifm_type is returned.
1890
1891 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1892
18931998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1894
1895 * interface.c: Header include added.
1896
18971998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1898
1899 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1900
19011998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1902
1903 * if_ioctl.c (interface_list_ioctl): interface flag must be
1904 checked before check addresses of the interface.
1905
19061998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1907
1908 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1909
19101998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1911
1912 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1913
19141998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1915
1916 * change HYDRANGEA to KAME
1917
19181998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1919
1920 * if_ioctl.c (if_addr_ioctl): set address family for getting
1921 interface's address.
1922 (if_get_index): silently return when can't get interface's index.
1923
19241998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1925
1926 * main.c (main): batch mode option '-b' added.
1927
19281998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1929
1930 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1931 * interface.c (shutdown_if): add interface shutdown and no
1932 shutdown command.
1933
19341998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1935
1936 * rib.c (rib_add_ipv6): delete rib_add_in6.
1937
19381998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1939
1940 * main.c: retain flag is added.
1941
19421998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1943
1944 * rtable.[ch]: merged with rib.[ch]
1945
19461998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1947
1948 * connected.h: renamed from ifa.h.
1949
19501998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1951
1952 * rename if.c to interface.c
1953 * rename ifa.c to connected.c
1954
1955 * Porting to Debian GNU/Linux 2.0 (hamm).
1956
19571998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1958
1959 * rt_netlink.c: renamed from krt_netlink.c
1960
1961 * fib.c: deleted.
1962 * rt_kvm.c: deleted.
1963 * rtread_getmsg.c: deleted.
1964
19651998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1966
1967 * if.c (multicast): add multicast flag [un]set fucntion.
1968
19691998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1970
1971 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1972 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1973
19741998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1975
1976 * zebra.c: Modify for compile on Solaris.
1977
19781998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1979
1980 * main.c: change CONFDIR to SYSCONFDIR.
1981
19821998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1983
1984 * .cvsignore: added.
1985
19861998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1987
1988 * client.c: moves to ../lib.
1989
19901998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1991
1992 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1993 structure assignment.
1994
19951998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1996
1997 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1998
19991998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
2000
2001 * if.c (if_init): add config_exit_cmd and config_help_cmd.
2002
20031998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2004
2005 * rt_ioctl.c (route_ioctl): EPERM treatment added.
2006
20071998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2008
2009 * rt_socket.c (kernel_read): communication port zebra between
2010 kernel is now handled by kernel_read.
2011
20121998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2013
2014 * main.c (main): zebra [-P port] can specify vty port number.
2015
20161997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2017
2018 * zebra.c: change select will be block.
2019
20201997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2021
2022 * add static route treatment.
2023
20241997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2025
2026 * rt_netlink.c: add netlink support over GNU/Linux system.
2027
20281997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2029
2030 * all inet_addr is changed to inet_aton.
2031
2032 * zebra.c (ip_route): add ip route command for static routes.
2033
20341997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2035
2036 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
2037
20381997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
2039
2040 * if.c: add interface command.
2041
20421997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2043
2044 * ipforward_proc.c : Now works on Linux.
2045
20461997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2047
2048 * command.c : add completion feature.
2049
20501997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2051
2052 * vty.c (vty_command): add vty interface.
2053
20541997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2055
2056 * zebra.c: add verbose mode.
2057
20581997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
2059
2060 * Hydrangea for FreeBSD supported
2061 * in.h: add some prototype.
2062
20631997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2064
2065 * rt_socket.c and rtread.c completely rewritten.
2066
20671997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2068
2069 * rt_socket.c: rename kernel_sock to routing_socket
2070
20711997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2072
2073 * if.c (if_new): interface structure change from linklist to vector.
2074
20751997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2076
2077 * vector.c (vector_init): create vector related function
2078
20791997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2080
2081 * Makefile.in: add tags target
2082
2083 * start IPv6 support for INRIA FreeBSD.
2084