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