]> git.proxmox.com Git - mirror_frr.git/log
mirror_frr.git
17 years ago[autoconf] bugs 162,303,178: Fix 'present but can not be compiled' warnings
Paul Jakma [Thu, 10 May 2007 02:38:51 +0000 (02:38 +0000)]
[autoconf] bugs 162,303,178: Fix 'present but can not be compiled' warnings

2007-05-09 Paul Jakma <paul.jakma@sun.com>

* configure.ac: sys/conf.h depends on sys/param.h, at least on
  FBSD 6.2.
  (bug #363) Should check for in_pktinfo for IRDP

2006-05-27 Paul Jakma <paul.jakma@sun.com>

* configure.ac: General cleanup of header and type checks, introducing
  an internal define, QUAGGA_INCLUDES, to build up a list of
  stuff to include so as to avoid 'present but cant be compiled'
  warnings.
  Misc additional checks of things missing according to autoscan.
  Add LIBM, for bgpd's use of libm, so as to avoid burdening
  LIBS, and all the binaries, with libm linkage.
  Remove the bad practice of using m4 changequote(), just
  quote the []'s in the case statements properly.
  This should fix bugs 162, 303 and 178.
* */*.{c,h}: Update all HAVE_* to the standard autoconf namespaced
  HAVE_* defines. I.e. HAVE_SA_LEN -> HAVE_STRUCT_SOCKADDR_SA_LEN,
* bgpd/Makefile.am: Add LIBM to bgpd's LDADD, for pow().

17 years ago[ospfd] Bug #330 regression: Fix ospf_spf_add_parent assert
Paul Jakma [Mon, 7 May 2007 16:38:35 +0000 (16:38 +0000)]
[ospfd] Bug #330 regression: Fix ospf_spf_add_parent assert

2007-05-07 Paul Jakma <paul.jakma@sun.com>

* ospf_spf.c: (ospf_vertex_new) Dont init vertices to infinity,
  just let 0 be a special case.
  (ospf_spf_add_parent) 0 distance candidate vertex is special,
  cost still to be initialised - asserting that new distance
  is <= existing only makes sense where w already has a cost.
  (ospf_spf_next) Infinite cost links should not be followed,
  bar those of the root.

17 years ago[bgpd] Trim memory usage of BGP routes
Paul Jakma [Fri, 4 May 2007 20:15:47 +0000 (20:15 +0000)]
[bgpd] Trim memory usage of BGP routes

2007-05-03 Paul Jakma <paul.jakma@sun.com>

* bgp_route.h: (struct info) Move less frequently used
  fields to a lazily allocated struct info_extra.
  Export bgp_info_extra_get
* bgp_route.c: (bgp_info_extra_new) allocate extra
  (bgp_info_extra_free) Free damp info and the info_extra.
  (bgp_info_extra_get) Retrieve the info_extra of a struct
  info, allocating as required.
  (generally) adjust to use info->extra
* bgp_damp.c: (generally) use bgp_info_extra_get to access
  dampinfo
* bgp_attr.h: Move rarely allocated attributes from struct attr
  to a struct attr_extra, for a substantial saving in size of
  struct attr.
* bgp_attr.c: (bgp_attr_extra_{new,free}), new, self-explanatory.
  (bgp_attr_extra_get) Get the attr_extra for a given struct
  attr, allocating it if needs be.
  (bgp_attr_dup) Shallow copy the struct attr and its attr_extra.
  (generally) adjust to know about attr->extra.
* bgp_debug.c: (bgp_dump_attr) ditto
* bgp_vty.c: (show_bgp_memory) print attr and info extra sizes.
* bgp_nexthop.c: (generally) adjust to know about attr->extra
  and info->extra.
* bgp_{packet,routemap,snmp,zebra}.c: ditto
* lib/memtypes.c: Add MTYPE_ATTR_EXTRA and MTYPE_BGP_ROUTE_EXTRA

17 years ago[zebra] Add zebra_routemap.c
Paul Jakma [Fri, 4 May 2007 20:13:20 +0000 (20:13 +0000)]
[zebra] Add zebra_routemap.c

* zebra_routemap.c should have been in the commit of Steven's
  routemap patch.

17 years ago[zebra] Routemap support on received routes, with 'set src' command (linux)
Paul Jakma [Wed, 2 May 2007 16:05:35 +0000 (16:05 +0000)]
[zebra] Routemap support on received routes, with 'set src' command (linux)

2007-05-01 David L Stevens <dlstevens@us.ibm.com>

* (general) These changes collectively add route-map and
  prefix-list support to zebra and fix a bug in "show
  route-map" (with no argument).
* doc/main.texi: added route-map, prefix-list, ip protocol
  and set src documentation
* lib/command.h: added PROTOCOL_NODE type
* lib/log.c: (proto_name2num) new function, protocol name to
  number translation.
* lib/routemap.c: (vty_show_route_map) fixed "show route-map"
  without route-map name
* lib/routemap.h: added RMAP_ZEBRA type
* lib/zebra.h: added proto_name2num() prototype
* vtysh/extract.pl.in: added VTYSH_ZEBRA flag for route-map and
  plist
* vtysh/Makefile.am: added zebra_routemap.c
* vtysh/vtysh.h: added VTYSH_ZEBRA flag to VTYSH_RMAP
* zebra/connected.c: (connected_up_ipv4) added src preference argument
  to rib_add_ipv4()
* zebra/kernel_socket.c: (rtm_read) ditto
* zebra/main.c: added prefix list initialization
* zebra/Makefile.am: added zebra_routemap.c source file
* zebra/rib.h: added generic address union "g_addr" and use in
  existing places that had an explicit union.
  Added "src" to struct nexthop.
  Added preferred src arg to nexthop_ipv4_add and rib_add_ipv4.
* zebra/rt_netlink.c: (netlink_routing_table) set preferred source on
  netlink messages.
  (netlink_route_change) ditto
  (netlink_route_multipath) ditto.
* zebra/rtread_getmsg.c: (handle_route_entry) added (NULL) src to
  rib_add_ipv4() call.
* zebra/rtread_proc.c: (proc_route_read) ditto
* zebra/zebra_rib.c: (nexthop_ipv4_add) add src argument.
  (nexthop_ipv4_ifindex_add) ditto
  (rib_add_ipv4) ditto
  (nexthop_active_check) Add route-map processing.
* zebra/zebra_routemap.c: new file for zebra route-map commands.
* zebra/zebra_vty.c: (ip_protocol_cmd) Apply route-map to protocol
  (vty_show_ip_route_detail) added "src" printing
  (vty_show_ip_route) ditto
  (show_ip_protocol_cmd) new command, list routemaps.
  (config_write_protocol) write out routemap protocl config.
  (zebra_vty_init) Install the new routemap protocol commands.
* zebra/zserv.c: (zread_ipv4_add) added (NULL) src arg
  (zebra_init) init zebra route-maps.
* zebra/zserv.h: add zebra_route_map_init

17 years ago[build] Improve portability by invoking gcc with -std=gnu99 instead of -std=c99
Andrew J. Schorr [Mon, 30 Apr 2007 19:14:08 +0000 (19:14 +0000)]
[build] Improve portability by invoking gcc with -std=gnu99 instead of -std=c99

2007-04-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* configure.ac: Change gcc CFLAGS from '-std=c99' to '-std=gnu99'
  to improve portability.

17 years ago[ospfd] network command now behaves more logically when a peer prefix is defined
Andrew J. Schorr [Mon, 30 Apr 2007 16:52:05 +0000 (16:52 +0000)]
[ospfd] network command now behaves more logically when a peer prefix is defined

2007-04-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospfd/ospfd.c: (ospf_network_match_iface) Comment out
  COMPATIBILITY_MODE.  Going forward, the ospf "network" command
  will use a simple test: does the network command prefix
  contain the connected (destination) prefix of the interface?
* doc/ospfd.texi: Add a paragraph to the description of the OSPFv2
  network command to explain how we handle interfaces with
  peer addresses.

17 years ago[0.99] Version bump to 0.99.7
Paul Jakma [Sun, 29 Apr 2007 20:13:35 +0000 (20:13 +0000)]
[0.99] Version bump to 0.99.7

2007-04-29 Paul Jakma <paul.jakma@sun.com>

* configure.ac: Bump to 0.99.7

17 years ago[bgpd] Use defines for default weight
Paul Jakma [Sun, 29 Apr 2007 18:31:07 +0000 (18:31 +0000)]
[bgpd] Use defines for default weight

2007-04-22 Sebastien Tandel <sebastien@tandel.be>

* bgp_attr.h : Definition of BGP_ATTR_DEFAULT_WEIGHT.
* bgp_attr.c : (bgp_attr_default_intern) now uses
  bgp_attr_default_set instead of duplicating the same code.
  (general) Use of BGP_ATTR_DEFAULT_WEIGHT. Replace two 16 by
  IPV6_MAX_BYTELEN.

17 years ago[bgpd] Fix warnings: hash callbacks should match hash API declarations
Paul Jakma [Sun, 29 Apr 2007 18:25:17 +0000 (18:25 +0000)]
[bgpd] Fix warnings: hash callbacks should match hash API declarations

2007-04-22 Sebastien Tandel <sebastien@tandel.be>

* bgp_advertise.c : (baa_hash_alloc, baa_hash_key, baa_hash_cmp)
  conforms to quagga hash API. Defines _hash_[alloc|key|cmp] with
  void * arguments as defined by the API.
* bgp_aspath.c,h : (aspath_key_make) conforms to quagga hash API.
  Defines _hash_[alloc|key|cmp] with void * arguments as defined by
  the API.
* bgp_attr.c,h : (cluster_hash_alloc, cluster_hash_key_make,
  cluster_hash_cmp, transit_hash_alloc, transit_hash_key_make,
  transit_hash_cmp, attrhash_key_make, attrhash_cmp,
  bgp_attr_hash_alloc) conforms to quagga hash API. Defines
  _hash_[alloc|key|cmp] with void * arguments as defined by the API.

17 years ago[zebra/solaris] fix if_get_index passing wrong arg to lifreq_set_name
Paul Jakma [Sun, 29 Apr 2007 17:32:08 +0000 (17:32 +0000)]
[zebra/solaris] fix if_get_index passing wrong arg to lifreq_set_name

2007-04-29 Paul Jakma <paul.jakma@sun.com>

* if_ioctl_solaris.c: (if_get_index) Fix bogus argument passed
  to lifreq_set_name().

17 years ago[zebra] Fix merge error in previous solaris changeset
Paul Jakma [Sun, 29 Apr 2007 16:50:46 +0000 (16:50 +0000)]
[zebra] Fix merge error in previous solaris changeset

2007-04-29 Paul Jakma <paul.jakma@sun.com>

* ioctl{_solaris,}.c: (if_get_mtu) Fix missing ; in last commit.

17 years ago[logging] Minor performance tweak
Andrew J. Schorr [Sun, 29 Apr 2007 15:48:22 +0000 (15:48 +0000)]
[logging] Minor performance tweak

2007-04-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* log.c: (quagga_timestamp) Optimize the subsecond timestamp generation.

17 years ago[logging] Add new "log timestamp precision" command for subsecond timestamps
Andrew J. Schorr [Sun, 29 Apr 2007 15:24:15 +0000 (15:24 +0000)]
[logging] Add new "log timestamp precision" command for subsecond timestamps

2007-04-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* basic.texi: Document the new 'log timestamp precision' command.

17 years ago[logging] Add new "log timestamp precision" command for subsecond timestamps
Andrew J. Schorr [Sun, 29 Apr 2007 03:53:31 +0000 (03:53 +0000)]
[logging] Add new "log timestamp precision" command for subsecond timestamps

2007-04-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* vtysh.c: (vtysh_log_timestamp_precision,
  no_vtysh_log_timestamp_precision) Implement new log timestamp
  precision commands: send to all daemons.
  (vtysh_init_vty) Install new log timestamp precision commands.

17 years ago[logging] Add new "log timestamp precision" command for subsecond timestamps
Andrew J. Schorr [Sat, 28 Apr 2007 22:14:10 +0000 (22:14 +0000)]
[logging] Add new "log timestamp precision" command for subsecond timestamps

2007-04-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* command.c: (config_write_host) Save "log timestamp precision"
  if not default value.
  (show_logging) Show configured timestamp precision.
  (config_log_timestamp_precision) Enable configuration of timestamp
  precision.
  (no_config_log_timestamp_precision) Restore default timestamp
  precision.
  (cmd_init) Install new timestamp precision commands.
* log.h: (struct zlog) New timestamp_precision field.
  (quagga_timestamp) New function to generate a timestamp with the
  desired precision.
  (struct timestamp_control) Declare a structure for use in avoiding
  repeated duplicate calls to quagga_timestamp.
* log.c: (quagga_timestamp) New function to generate a timestamp
  of the desired precision.
  (time_print) Call quagga_timestamp if the time hasn't already been
  calculated.
  (vzlog) Initialize a timestamp_control structure and pass it to
  time_print and vty_log.
  (zlog_backtrace) Fix 64-bit problem: cannot print size_t with %u.
* vty.h: Must now include "log.h".
  (vty_log) Takes an additional struct timestamp_control argument.
* vty.c: (vty_log_out) Use new struct timestamp_control and new
  quagga_timestamp function to print timestamps of the desired
  precision.
  (vty_time_print) Use new quagga_timestamp function.
  (vty_log) Accept new struct timestamp_control argument and pass it
  down to vty_log_out.

17 years ago[64-bit] Fix 4 problems with printf formats and 64-bit size_t
Andrew J. Schorr [Fri, 27 Apr 2007 18:13:15 +0000 (18:13 +0000)]
[64-bit] Fix 4 problems with printf formats and 64-bit size_t

2007-04-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* lib/smux.c: (smux_trap) Fix printf format to work with 64-bit size_t.
* ospf6d/ospf6_snmp.c: (ospfv3AreaEntry, ospfv3AreaLsdbEntry) Fix some
  zlog_debug printf formats to work with 64-bit size_t.

17 years ago[ripd, ripngd] Remove useless code in rip_vty_out_uptime function
Andrew J. Schorr [Fri, 27 Apr 2007 18:03:11 +0000 (18:03 +0000)]
[ripd, ripngd] Remove useless code in rip_vty_out_uptime function

2007-04-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ripd/ripd.c: (rip_vty_out_uptime) Remove unused variable timer_now.
* ripngd/ripngd.c: (ripng_vty_out_uptime) Remove unused variable
  timer_now.

17 years ago[ospfd] Fix bug in 'passive-interface default' behavior
Andrew J. Schorr [Sat, 21 Apr 2007 20:46:31 +0000 (20:46 +0000)]
[ospfd] Fix bug in 'passive-interface default' behavior

2007-04-21 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_interface.c: (ospf_if_set_multicast) Fix bug: was testing
  interface passive status improperly in light of the recent
  'passive-interface default' patch.  Now need to test
  OSPF_IF_PASSIVE_STATUS(oi) instead of
  OSPF_IF_PARAM(oi, passive_interface).

17 years agoUse 'path (category)' form.
David Young [Mon, 16 Apr 2007 23:13:01 +0000 (23:13 +0000)]
Use 'path (category)' form.

17 years agoNote my change to zebra/connected.c.
David Young [Mon, 16 Apr 2007 23:11:19 +0000 (23:11 +0000)]
Note my change to zebra/connected.c.

17 years agoOnly suppress adding a connected route to the kernel if it is
David Young [Mon, 16 Apr 2007 05:54:02 +0000 (05:54 +0000)]
Only suppress adding a connected route to the kernel if it is
already marked "real" (ZEBRA_IFC_REAL), i.e., "in kernel." According
to Paul Jakma, this probably fixes Quagga bug #202.

17 years ago[bgpd] Minor performance improvement patch
Andrew J. Schorr [Sun, 15 Apr 2007 19:17:24 +0000 (19:17 +0000)]
[bgpd] Minor performance improvement patch

2007-04-15 Sebastien Tandel <sebastien@tandel.be>

* bgp_aspath.c: (aspath_as_add, aspath_segment_add) Minor performance
  optimization: while loop should test one pointer instead of two.

17 years agoFix the display of some timers. (show ipv6 ripng and show ipv6 ripng status)
Vincent Jardin [Thu, 12 Apr 2007 07:43:49 +0000 (07:43 +0000)]
Fix the display of some timers. (show ipv6 ripng and show ipv6 ripng status)

17 years agoFix the display of route timeout in "show ip rip". (Use thread_timer_remain_second)
Vincent Jardin [Wed, 11 Apr 2007 15:12:05 +0000 (15:12 +0000)]
Fix the display of route timeout in "show ip rip". (Use thread_timer_remain_second)

17 years ago[zebra] MTU change should propogate to zserv client on BSD/Solaris
Paul Jakma [Tue, 10 Apr 2007 19:43:43 +0000 (19:43 +0000)]
[zebra] MTU change should propogate to zserv client on BSD/Solaris

2007-04-10 Paul Jakma <paul.jakma@sun.com>

* ioctl{_solaris,}.c: (if_get_mtu) Ping clients via
          zebra_interface_up_update if MTU is changed.

17 years ago[bgpd] Bug #354: Take care to keep reads of MP_(UN)REACH_NLRI in bounds
Paul Jakma [Tue, 10 Apr 2007 19:36:48 +0000 (19:36 +0000)]
[bgpd] Bug #354: Take care to keep reads of MP_(UN)REACH_NLRI in bounds

2007-04-08 Paul Jakma <paul.jakma@sun.com>

* bgp_attr.c: (general) Bug #354: parsing of MP_REACH_NLRI and
  MP_UNREACH_NLRI does not take sufficient care to ensure reads
  from stream buffer stay in-bounds. Hence bgpd may attempt to read
  beyond end of stream, if given a crafted packet. As it uses the
  stream access methods to do so, this will typically result in
  assert() being hit in stream.c. Where code is compiled without
  assert() enabled, result is unknown.
  (struct message attr_str) should be static.
  (bgp_mp_reach_parse) Carefully check length remaining in stream
  against amount desired to read from stream, prior to each read,
  particularly where lengths are conditional on data obtained from
  stream - using STREAM_READABLE.
  Remove code to parse SNPA-number, it's a defunct field and changed
  to a fixed size in latest BGP MP update RFC - log warning if
  SNPA-number is not 0.
  (bgp_mp_unreach_parse) Check withdraw_length carefully against
  STREAM_READABLE.
  (bgp_attr_parse) If attribute-parser function returns error, log
  warning.
  Log attribute type on mismatch.

17 years ago[bgpd] V. quick route flap gets mistaken for duplicate, route is then ignored
Paul Jakma [Tue, 10 Apr 2007 19:32:10 +0000 (19:32 +0000)]
[bgpd] V. quick route flap gets mistaken for duplicate, route is then ignored

2007-04-08 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: (general) Same bug as fixed on 2006-11-28 by ajs for
  bgp static routes, but for main BGP RIB: Quick 'flap' of routes
  can cause bgpd to mistake a new route for a duplicate route,
  due to presence of removed, but not yet processed BGP RIB entry.
  (bgp_update_rsclient) Ignore REMOVED bgp_info for duplicate,
  restore route instead.
  (bgp_update_main) Ditto.

17 years ago[zebra] Retain configured IPv4 address upon removal by kernel
Paul Jakma [Tue, 10 Apr 2007 19:30:20 +0000 (19:30 +0000)]
[zebra] Retain configured IPv4 address upon removal by kernel

2007-04-08 Paul Jakma <paul.jakma@sun.com>

* interface.c: (if_delete_update) Address removal triggered
  by kernel shouldn't remove configured IPv4 address from connected
  list.

17 years ago[testzebra] stubs should call kernel_address_add on IP address install
Paul Jakma [Tue, 10 Apr 2007 19:28:04 +0000 (19:28 +0000)]
[testzebra] stubs should call kernel_address_add on IP address install

2007-04-08 Paul Jakma <paul.jakma@sun.com>

* {ioctl,kernel}_null.c: Install of IP address should
  reflect back to zebra via kernel_address_add..., makes
  testzebra more useful.

17 years ago[zebra] Bug #351: Don't redistribute routes to ipv4 link-local prefixes
Paul Jakma [Tue, 10 Apr 2007 19:24:45 +0000 (19:24 +0000)]
[zebra] Bug #351: Don't redistribute routes to ipv4 link-local prefixes

2007-04-07 Paul Jakma <paul.jakma@sun.com>

* lib/prefix.h: Add define to match IPv4 Link-Local addresses
* zebra/redistribute.c: (zebra_check_addr) Don't redistribute routes
  to IPv4 link-local prefixes, fixes bug #351.
* zebra/redistribute.h: Export zebra_check_addr.
* zebra/router-id.c: (router_id_bad_address) re-use zebra_check_addr
  rather than implementing similar logic.

17 years ago[bgpd] bug #352: IPv6/Multicast address-family config not written out
Paul Jakma [Tue, 10 Apr 2007 19:20:29 +0000 (19:20 +0000)]
[bgpd] bug #352: IPv6/Multicast address-family config not written out

2007-04-07 Paul Jakma <paul.jakma@sun.com>

* bgpd.c: (general) Fix bug #352
  (bgp_config_write_family_header) write ipv6/multicast
  address family header.
  (bgp_config_write) write out ipv6 multicast AF config.

17 years ago[ospfd] Bug #330 regression: failure to calculate routes through networks
Paul Jakma [Fri, 23 Mar 2007 11:19:08 +0000 (11:19 +0000)]
[ospfd] Bug #330 regression: failure to calculate routes through networks

2007-03-23 Paul Jakma <paul.jakma@sun.com>

* ospf_spf.c: (ospf_nexthop_calculation) Fix silly regression
  causing ospfd to fail to calculate paths past networks not
  attached to root vertex, introduced with bug #330 fixes.

17 years ago[ospfd] Instrument ospf_spf with more debug log messages
Paul Jakma [Fri, 23 Mar 2007 11:17:28 +0000 (11:17 +0000)]
[ospfd] Instrument ospf_spf with more debug log messages

2007-03-23 Paul Jakma <paul.jakma@sun.com>

* ospf_spf.c: (various) Add more debug statements.

17 years ago[doc] Makefile VPATH patch
Andrew J. Schorr [Wed, 21 Mar 2007 21:03:44 +0000 (21:03 +0000)]
[doc] Makefile VPATH patch

2007-03-21 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* Makefile.am: Patch rule for draft-zebra-00.txt to work
  in VPATH build environments.

17 years ago[ripd] Fix "show ip rip status" display of time until next update
Andrew J. Schorr [Wed, 21 Mar 2007 18:57:38 +0000 (18:57 +0000)]
[ripd] Fix "show ip rip status" display of time until next update

2007-03-21 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ripd.c: (show_ip_rip_status) Use new thread_timer_remain_second
  function instead of rip_next_thread_timer to display the time until
  next update properly.
  (rip_next_thread_timer) Remove obsolete function.

17 years ago[lib] Make message lookup function more robust.
Andrew J. Schorr [Tue, 20 Mar 2007 20:48:27 +0000 (20:48 +0000)]
[lib] Make message lookup function more robust.

2007-03-20 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* log.c: (mes_lookup) Make the function more robust: check for
  cases where the index does not match the key value at that position.
  If so, give a warning and fall back to a linear search.
  And improve the error message in cases where even that fails.

17 years ago[ospfd] Return SNMP standard neighbor state values, not quagga internal ones
Andrew J. Schorr [Wed, 14 Mar 2007 22:05:18 +0000 (22:05 +0000)]
[ospfd] Return SNMP standard neighbor state values, not quagga internal ones

2007-03-14 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_snmp.c: (ospf_snmp_neighbor_state) New function to
  map internal quagga neighbor states to SNMP standard values.
  (ospfNbrEntry) Call new ospf_snmp_neighbor_state function.

17 years ago[ospfd] Fix two debug messages that used inet_ntoa more than once
Andrew J. Schorr [Wed, 14 Mar 2007 20:21:43 +0000 (20:21 +0000)]
[ospfd] Fix two debug messages that used inet_ntoa more than once

2007-03-14 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_zebra.c: (ospf_zebra_add, ospf_zebra_delete) Fix bug
  where inet_ntoa was used twice in the same debug message,
  which doesn't work because there's a single shared buffer
  for the returned string.  The fix is to use inet_ntop.

17 years ago[ospf6d] Bug 322: ospf6d show ipv6 neighbour showing wrong times
Paul Jakma [Thu, 8 Mar 2007 17:50:01 +0000 (17:50 +0000)]
[ospf6d] Bug 322: ospf6d show ipv6 neighbour showing wrong times

2007-03-08 David Siebörger d.sieborger@ru.ac.za

* ospf6_neighbor.c: (ospf6_neighbor_show) Fix bug #322, ospf6d
  wasn't updated to match thread times changing to relative
  time.

17 years ago[zebra] Fix interface metric bug on BSD
Paul Jakma [Tue, 6 Mar 2007 13:43:05 +0000 (13:43 +0000)]
[zebra] Fix interface metric bug on BSD

2007-03-06 Paul Jakma <paul.jakma@sun.com>

* kernel_socket.c: (ifam_read) Do not update interface metric on
  receipt of NEW/DEL ADDR messages, bogus as: a) some systems
  dont include iface metric for address events b) we didn't
  update clients either. Initial diagnosis by Eugene Grosbein.

17 years ago[ospf6d] Fix string comparison bug in ospf6_lsa_handler_name.
Andrew J. Schorr [Tue, 27 Feb 2007 15:24:36 +0000 (15:24 +0000)]
[ospf6d] Fix string comparison bug in ospf6_lsa_handler_name.

2007-02-27  Pavol Rusnak <prusnak@suse.cz>

* ospf6_lsa.c: (ospf6_lsa_handler_name) Fix bug: must use strcmp
  to compare strings.

17 years ago[ospfd] Fix bug: should exit immediately on SIGTERM if OSPF not actually running
Andrew J. Schorr [Tue, 27 Feb 2007 13:55:46 +0000 (13:55 +0000)]
[ospfd] Fix bug: should exit immediately on SIGTERM if OSPF not actually running

2007-02-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospfd.c: (ospf_terminate) Exit immediately if ospf is not
  actually running (e.g. the config file was empty).  Fixes
  bug where SIGTERM would not kill ospfd.

17 years ago[ospfd] Fix regression in SPF introduced by bug#330 fixes
Paul Jakma [Mon, 26 Feb 2007 17:14:48 +0000 (17:14 +0000)]
[ospfd] Fix regression in SPF introduced by bug#330 fixes

2007-02-26 Paul Jakma <paul.jakma@sun.com>

* ospf_spf.c: Fix regression introduced with bug #330 fix: The
  cost update added to ospf_spf_add_parent only handled PtP
  case, differing from same functionality in higher-level
  ospf_spf_next. Regression diagnosed by Anders Pedersen,
  mailnews+router-quagga-dev@news.cohaesio.com.
  (ospf_vertex_new) Initialise vertices to max-cost.
  (ospf_spf_init) Root vertex always creates with 0 cost.
  (ospf_spf_add_parent) Remove the buggy V->W cost calculating
  code, instead take the new distance as a parameter.
  (ospf_nexthop_calculation) Take distance as parameter, so it
  can be passed down to add_parent.
  (ospf_spf_next) Dont initialise candiate vertex distance,
  vertex_new does so already. Pass distance down to
  nexthop_calculation (see above).

17 years ago[zebra] IRDP should ignore non-IPv4 addresses
Paul Jakma [Mon, 26 Feb 2007 17:11:45 +0000 (17:11 +0000)]
[zebra] IRDP should ignore non-IPv4 addresses

2007-02-26 Robert Olsson <Robert.Olsson@data.slu.se>

* irdp_main.c: (irdp_send_thread) Skip non-AF_INET addresses,
   i.e. do not try interpret IPv6 addresses as IPv4 addresses
   to broadcast in IRDP announcements..

17 years ago[solaris] Add licence boilerplate to files for clarity
Paul Jakma [Thu, 22 Feb 2007 17:55:20 +0000 (17:55 +0000)]
[solaris] Add licence boilerplate to files for clarity

2007-02-22 Paul Jakma <paul.jakma@sun.com>

* quagga.{xml,init}.in: Add licence boilerplate to ensure
  licence terms are clear.

17 years ago[bgpd] Peer delete can race with reconfig leading to crash
Paul Jakma [Thu, 22 Feb 2007 17:48:42 +0000 (17:48 +0000)]
[bgpd] Peer delete can race with reconfig leading to crash

2007-02-22 Paul Jakma <paul.jakma@sun.com>

* bgp_fsm.c: (bgp_fsm_change_status) Handle state change into
  clearing or greater here. Simpler.
  (bgp_event) Clearing state change work moved to previous
* bgp_route.c: (bgp_clear_route_node) Clearing adj-in here
  is too late, as it leaves a race between a peer being deleted
  and an identical peer being configured before clearing
  completes, leading to a crash.
  Simplest fix is to clean peers Adj-in up-front, rather than
  queueing such work.
  (bgp_clear_route_table) Clear peer's Adj-In and Adj-Out
  up-front here, rather than queueing such work.
  Extensive comment added on the various bits of indexed data
  that exist and how they need to be dealt with.
  (bgp_clear_route) Update comment.

17 years agouse generic sed test so this works on autoconf 2.59
Greg Troxel [Tue, 6 Feb 2007 20:10:35 +0000 (20:10 +0000)]
use generic sed test so this works on autoconf 2.59

17 years agode-support NetBSD 1.6, and note that FreeBSD 4 is on thin ice.
Greg Troxel [Tue, 6 Feb 2007 19:56:31 +0000 (19:56 +0000)]
de-support NetBSD 1.6, and note that FreeBSD 4 is on thin ice.

Update notes on required tool versions Note that autoconf 2.59 is the
standard (even though it's old, 2.60 and 2.61 are pretty recent).  For
others, pick releases that are at least 1.5 years old.

Note that GNU awk is required.

Replace update-autotools reference with bootstrap.sh.

(no changelog, doc change only, per GNU coding standards)

17 years agoBetter comment explaining that GNU awk is really required.
Greg Troxel [Tue, 6 Feb 2007 19:36:47 +0000 (19:36 +0000)]
Better comment explaining that GNU awk is really required.

17 years agoautoreconf -i
Greg Troxel [Tue, 6 Feb 2007 19:28:28 +0000 (19:28 +0000)]
autoreconf -i

17 years agoadd AC_PROC_SED
Greg Troxel [Sat, 3 Feb 2007 22:30:02 +0000 (22:30 +0000)]
add AC_PROC_SED

17 years agoremove crufty m4 files from 2004. With the files, autoheader (2.61)
Greg Troxel [Sat, 3 Feb 2007 01:07:01 +0000 (01:07 +0000)]
remove crufty m4 files from 2004.  With the files, autoheader (2.61)
bombs on NetBSD.  (Without, all is ok.  We may need workarounds, but
first we should identify minimum tool versions and figure out what's
still wrong.)

ok'd by paul.

17 years agouse bootstrap.sh
Greg Troxel [Fri, 2 Feb 2007 17:03:03 +0000 (17:03 +0000)]
use bootstrap.sh

17 years agoProvide 'standard interface', even if it just invokes autoreconf.
Greg Troxel [Fri, 2 Feb 2007 17:01:58 +0000 (17:01 +0000)]
Provide 'standard interface', even if it just invokes autoreconf.

17 years agoospf6d.h: remove declaration of errno (should be via header)
Greg Troxel [Fri, 2 Feb 2007 16:54:23 +0000 (16:54 +0000)]
ospf6d.h: remove declaration of errno (should be via header)

(from pkgsrc)

17 years ago* README.NetBSD: use update-autotools instead of autoreconf
Greg Troxel [Fri, 2 Feb 2007 16:52:38 +0000 (16:52 +0000)]
* README.NetBSD:  use update-autotools instead of autoreconf
* update-autotools: print out tool name before invoking to aid debugging

17 years ago[ospfd] Bug #330: SPF must consider that nexthop-calc may fail
Paul Jakma [Wed, 24 Jan 2007 14:51:51 +0000 (14:51 +0000)]
[ospfd] Bug #330: SPF must consider that nexthop-calc may fail

2007-01-24 Paul Jakma <paul.jakma@sun.com>

* ospf_spf.c: Bug #330: Nexthop calculation sometimes may fail,
  and it needs to indicate this result to SPF.
  (ospf_spf_add_parent) Flush of parent list needs to be done here,
  for simplicity.
  (ospf_nexthop_calculation) Caller needs to know whether
  nexthop calculation succeeded. Every return statement must
  correctly indicate such.
  (ospf_spf_next) Queueing/prioritisation of vertices in SPF
  must take into account whether nexthop_calculation succeeded,
  or SPF may fail to find best paths.

17 years ago[zebra] For solaris IPv6 PtP interfaces, try to support prefixlen != 128
Andrew J. Schorr [Wed, 13 Dec 2006 15:44:15 +0000 (15:44 +0000)]
[zebra] For solaris IPv6 PtP interfaces, try to support prefixlen != 128

2006-12-13 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* if_ioctl_solaris.c: (if_get_addr) For IPv6, stop assuming
  that all IFF_POINTOPOINT have prefixlen of IPV6_MAX_BITLEN.
  Instead, always try the SIOCGLIFSUBNET ioctl; if that fails,
  then we fall back to IPV6_MAX_BITLEN for PtP interfaces.

17 years ago[PtP over ethernet] New peer flag allows much more addressing flexibility
Andrew J. Schorr [Tue, 12 Dec 2006 19:18:21 +0000 (19:18 +0000)]
[PtP over ethernet] New peer flag allows much more addressing flexibility

2006-12-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* if.h: (struct connected) Add new ZEBRA_IFA_PEER flag indicating
  whether a peer address has been configured.  Comment now shows
  the new interpretation of the destination addr: if ZEBRA_IFA_PEER
  is set, then it must contain the destination address, otherwise
  it may contain the broadcast address or be NULL.
  (CONNECTED_DEST_HOST,CONNECTED_POINTOPOINT_HOST) Remove obsolete
  macros that were specific to IPv4 and not fully general.
  (CONNECTED_PEER) New macro to check ZEBRA_IFA_PEER flag.
  (CONNECTED_PREFIX) New macro giving the prefix to insert into
  the RIB: if CONNECTED_PEER, then use the destination (peer) address,
  else use the address field.
  (CONNECTED_ID) New macro to come up with an identifying address
  for the struct connected.
* if.c: (if_lookup_address, connected_lookup_address) Streamline
  logic with new CONNECTED_PREFIX macro.
* prefix.h: (PREFIX_COPY_IPV4, PREFIX_COPY_IPV6) New macros
  for better performance than the general prefix_copy function.
* zclient.c: (zebra_interface_address_read) For non-null destination
  addresses, set prefixlen to equal the address prefixlen.  This
  is needed to get the new CONNECTED_PREFIX macro to work properly.
* connected.c: (connected_up_ipv4, connected_down_ipv4,
  connected_up_ipv6, connected_down_ipv6) Simplify logic using the
  new CONNECTED_PREFIX macro.
  (connected_add_ipv4) Set prefixlen in destination addresses (required
  by the CONNECTED_PREFIX macro).  Use CONNECTED_PEER macro instead
  of testing for IFF_POINTOPOINT.  Delete invalid warning message.
  Warn about cases where the ZEBRA_IFA_PEER is set but no
  destination address has been supplied (and turn off the flag).
  (connected_add_ipv6) Add new flags argument so callers may set
  the ZEBRA_IFA_PEER flag.  If peer/broadcast address satisfies
  IN6_IS_ADDR_UNSPECIFIED, then reject it with a warning.
  Set prefixlen in destination address so CONNECTED_PREFIX will work.
* connected.h: (connected_add_ipv6) Add new flags argument so
  callers may set the ZEBRA_IFA_PEER flag.
* interface.c: (connected_dump_vty) Use CONNECTED_PEER macro
  to decide whether the destination address is a peer or broadcast
  address (instead of checking IFF_BROADCAST and IFF_POINTOPOINT).
* if_ioctl.c: (if_getaddrs) Instead of setting a peer address
  only when the IFF_POINTOPOINT is set, we now accept a peer
  address whenever it is available and not the same as the local
  address.  Otherwise (no peer address assigned), we check
  for a broadcast address (regardless of the IFF_BROADCAST flag).
  And must now pass a flags value of ZEBRA_IFA_PEER to
  connected_add_ipv4 when a peer address is assigned.
  The same new logic is used with the IPv6 code as well (and we
  pass the new flags argument to connected_add_ipv6).
  (if_get_addr) Do not bother to check IFF_POINTOPOINT: just
  issue the SIOCGIFDSTADDR ioctl and see if we get back
  a peer address not matching the local address (and set
  the ZEBRA_IFA_PEER in that case).  If there's no peer address,
  try to grab SIOCGIFBRDADDR regardless of whether IFF_BROADCAST is set.
* if_ioctl_solaris.c: (if_get_addr) Just try the SIOCGLIFDSTADDR ioctl
  without bothering to check the IFF_POINTOPOINT flag.  And if
  no peer address was found, just try the SIOCGLIFBRDADDR ioctl
  without checking the IFF_BROADCAST flag.  Call connected_add_ipv4
  and connected_add_ipv6 with appropriate flags.
* if_proc.c: (ifaddr_proc_ipv6) Must pass new flags argument to
  connected_add_ipv6.
* kernel_socket.c: (ifam_read) Must pass new flags argument to
  connected_add_ipv6.
* rt_netlink.c: (netlink_interface_addr) Copy logic from iproute2
  to determine local and possible peer address (so there's no longer
  a test for IFF_POINTOPOINT).  Set ZEBRA_IFA_PEER flag appropriately.
  Pass new flags argument to connected_add_ipv6.
  (netlink_address) Test !CONNECTED_PEER instead of if_is_broadcast
  to determine whether the connected destination address is a
  broadcast address.
* bgp_nexthop.c: (bgp_connected_add, bgp_connected_delete)
  Simplify logic by using new CONNECTED_PREFIX macro.
* ospf_interface.c: (ospf_if_is_configured, ospf_if_lookup_by_prefix,
  ospf_if_lookup_recv_if) Simplify logic using new CONNECTED_PREFIX
  macro.
* ospf_lsa.c: (lsa_link_ptop_set) Using the new CONNECTED_PREFIX
  macro, both options collapse into the same code.
* ospf_snmp.c: (ospf_snmp_if_update) Simplify logic using new
  CONNECTED_ID macro.
  (ospf_snmp_is_if_have_addr) Simplify logic using new CONNECTED_PREFIX
  macro.
* ospf_vty.c: (show_ip_ospf_interface_sub) Use new CONNECTED_PEER macro
  instead of testing the IFF_POINTOPOINT flag.
* ospfd.c: (ospf_network_match_iface) Use new CONNECTED_PEER macro
  instead of testing with if_is_pointopoint.  And add commented-out
  code to implement alternative (in my opinion) more elegant behavior
  that has no special-case treatment for PtP addresses.
  (ospf_network_run) Use new CONNECTED_ID macro to simplify logic.
* rip_interface.c: (rip_interface_multicast_set) Use new CONNECTED_ID
  macro to simplify logic.
  (rip_request_interface_send) Fix minor bug: ipv4_broadcast_addr does
  not give a useful result if prefixlen is 32 (we require a peer
  address in such cases).
* ripd.c: (rip_update_interface) Fix same bug as above.

17 years ago[0.99] Bump version to 0.99.6
Paul Jakma [Fri, 8 Dec 2006 21:27:08 +0000 (21:27 +0000)]
[0.99] Bump version to 0.99.6

2006-12-08 Paul Jakma <paul.jakma@sun.com>

* configure.ac: Bump to 0.99.6

17 years ago[isisd] Fix compiler warnings and allow v4-only compilation
Paul Jakma [Fri, 8 Dec 2006 01:09:50 +0000 (01:09 +0000)]
[isisd] Fix compiler warnings and allow v4-only compilation

2006-12-08 Hannes Gredler <hannes@gredler.at>

* isis_adjacency.c: (isis_new_adj) Allow NULL snpa argument.
* isis_pdu.c: (various) Update calls to isis_new_adj() to pass
  NULL and use default.
* (general) Add forward declarations where required.
  Fix up const char *'s.
  Allow V4-only compilation.

17 years ago[zebra] Changes of nexthops of static routes didnt take effect
Paul Jakma [Fri, 8 Dec 2006 00:53:14 +0000 (00:53 +0000)]
[zebra] Changes of nexthops of static routes didnt take effect

2006-12-08 Piotr Chytla <pch@packetconsulting.pl>

* zebra_rib.c: (static_install_ipv{4,6}) Case where existing
  RIB is updated must explicitely rib_addqueue the route_node,
  to ensure the update actually takes effect.

17 years ago[bgpd] Bug #302, bgpd can get stuck in state Clearing
Paul Jakma [Fri, 8 Dec 2006 00:31:22 +0000 (00:31 +0000)]
[bgpd] Bug #302, bgpd can get stuck in state Clearing

2006-12-07 Paul Jakma <paul.jakma@sun.com>

* bgp_fsm.c: Bug #302 fix, diagnosis, suggestions and testing
  by Juergen Kammer <j.kammer@eurodata.de>. Fix follows from
  his suggested fix, just made in a slightly different way.
  (bgp_event) Transitions into Clearing always must call
  bgp_clear_route_all().
  (bgp_stop) No need to clear routes here, BGP FSM should do
  it.

17 years ago[ospfd] Consider all connected addresses when creating ospf interfaces
Andrew J. Schorr [Mon, 4 Dec 2006 18:26:37 +0000 (18:26 +0000)]
[ospfd] Consider all connected addresses when creating ospf interfaces

2006-12-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospfd.c: (ospf_network_run) Remove an offending 'break' statement.
  Previously, after creating a single ospf_interface on a given
  network interface, the code would skip to the next interface
  without considering other connected addresses on the interface.
  After removing the 'break', we now consider all connected addresses.

17 years ago[bgpd] Implement 'debug bgp zebra' to log all messages to and from zebra.
Andrew J. Schorr [Thu, 30 Nov 2006 16:36:57 +0000 (16:36 +0000)]
[bgpd] Implement 'debug bgp zebra' to log all messages to and from zebra.

2006-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* bgp_debug.h: Declare new bgp_debug_zebra conf and term flags,
  and define BGP_DEBUG_ZEBRA.
* bgp_debug.c: Declare conf_bgp_debug_zebra and term_bgp_debug_zebra.
  (debug_bgp_zebra, no_debug_bgp_zebra, undebug_bgp_zebra) New
  functions to enable/disable bgp zebra debugging.
  (no_debug_bgp_all) Turn off zebra debugging.
  (show_debugging_bgp) Show whether zebra debugging is on.
  (bgp_config_write_debug) Add 'debug bgp zebra' if configured.
  (bgp_debug_init) Add new zebra debugging commands.
* bgp_zebra.c: (bgp_router_id_update, bgp_interface_add,
  bgp_interface_delete, bgp_interface_up, bgp_interface_down,
  bgp_interface_address_add, bgp_interface_address_delete,
  zebra_read_ipv4, zebra_read_ipv6, bgp_zebra_announce,
  bgp_zebra_withdraw, bgp_redistribute_set, bgp_redistribute_unset)
  If zebra debugging is enabled, log an appropriate debug message.

17 years ago[ospfd] Add debug messages for a few zebra messages that had been overlooked
Andrew J. Schorr [Thu, 30 Nov 2006 16:17:02 +0000 (16:17 +0000)]
[ospfd] Add debug messages for a few zebra messages that had been overlooked

2006-11-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_zebra.c: (ospf_router_id_update_zebra,
  ospf_interface_address_add, ospf_interface_address_delete)
  If (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) is enabled, then
  add a debug message about what Zebra is telling us.
  (ospf_zebra_add_discard) Add a debug message matching the one
  already in ospf_zebra_delete_discard.

17 years ago[bgpd] Fix bug where a deleted route that was quickly re-added was being lost
Andrew J. Schorr [Tue, 28 Nov 2006 19:50:46 +0000 (19:50 +0000)]
[bgpd] Fix bug where a deleted route that was quickly re-added was being lost

2006-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* bgp_route.c: (bgp_info_restore) New function that undoes
  the effects of a previous call to bgp_info_delete.  This is
  used when a route is deleted and quickly re-added before the
  deletion has been processed.
  (bgp_static_update_rsclient, bgp_static_update_main,
  bgp_redistribute_add) Check whether a pre-existing route
  has the BGP_INFO_REMOVED set, and, if so, we need to call
  bgp_info_restore to resurrect it.

17 years ago[ospfd] Fix bug in passive-interface default commands.
Andrew J. Schorr [Tue, 28 Nov 2006 16:36:39 +0000 (16:36 +0000)]
[ospfd] Fix bug in passive-interface default commands.

2006-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_vty.c: (ospf_passive_interface_default) Take additional
  'newval' arg so we can update ospf->passive_interface_default inside
  this function.  More importantly, we now call ospf_if_set_multicast
  on all ospf_interfaces.
  (ospf_passive_interface, no_ospf_passive_interface) Fix bug:
  for 'default' case, argv[0] is undefined, so we must test for
  (argc == 0) before using argv[0].  And since
  ospf_passive_interface_default now calls ospf_if_set_multicast as
  needed, we can just return after calling
  ospf_passive_interface_default.

17 years ago[bgpd] trivial: non C99 u_int.._t should be uint.._t
Paul Jakma [Fri, 27 Oct 2006 16:58:20 +0000 (16:58 +0000)]
[bgpd] trivial: non C99 u_int.._t should be uint.._t

2006-10-27 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: (bgp_table_stats) oops, u_intXX_t should be
  uintXX_t

17 years ago[ospfd] Stop losing subsequent default-information originate 'always' info
Andrew J. Schorr [Tue, 24 Oct 2006 19:04:26 +0000 (19:04 +0000)]
[ospfd] Stop losing subsequent default-information originate 'always' info

2006-10-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_zebra.c: (ospf_redistribute_default_set) Fix bug where
  a new value for ospf->default_originate was being ignored
  if a previous 'default-information originate' command
  had already been processed.

17 years ago[ospfd] Add passive-interface default support
Paul Jakma [Sun, 22 Oct 2006 20:07:53 +0000 (20:07 +0000)]
[ospfd] Add passive-interface default support

2006-10-22 Yar Tikhiy <yar@comp.chem.msu.su>

* (general) Add support for passive-interface default (with
  minor edits by Paul Jakma).
* ospf_interface.h: Add OSPF_IF_PASSIVE_STATUS macro, looking
  at configured value, or the global 'default' value, as
  required.
* ospf_interface.c: (ospf_if_new_hook) Leave passive
  unconfigured per default, allowing global 'default' to
  take effect for unconfigured interfaces.
* ospf_packet.c: (various) use OSPF_IF_PASSIVE_STATUS
* ospf_vty.c: (ospf_passive_interface_default) new function,
  unset passive from all interfaces if default is enabled, as
  the per-iface settings become redundant.
  (ospf_passive_interface_update) new func, update passive
  setting taking global default into account.
  ({no,}ospf_passive_interface_addr_cmd) Add support for
  'default' variant of command.
  (show_ip_ospf_interface_sub) Update to take global
  default into account when printing passive status.
  (ospf_config_write) ditto.
* ospfd.c: (ospf_new) set global passive-interface default.
* ospfd.h: (struct ospf) Add field for global
          passive-interface.

17 years ago[bgpd] struct peer must have bgp field valid (redistribute crash)
Paul Jakma [Sun, 22 Oct 2006 19:13:07 +0000 (19:13 +0000)]
[bgpd] struct peer must have bgp field valid (redistribute crash)

2006-10-19 Paul Jakma <paul.jakma@sun.com>

* bgpd.c: (peer_new) bgp element of peer absolutely must be
  filled in, make peer_new() require it as argument and update
  all callers. Fixes a crash reported by Jan 'yanek' Bortl and
  Andrew Schorr where bgpd would crash in bgp_pcount_adjust
  trying to dereference the bgp member of bgp->peer_self,
  triggered through redistribution.
* bgp_route.c: (bgp_pcount_adjust) assert sanity of arguments.

17 years ago[bgpd] Coverity CID #64: Needless NULL check, CID #64: Deref of potentially NULL...
Paul Jakma [Sun, 15 Oct 2006 23:50:16 +0000 (23:50 +0000)]
[bgpd] Coverity CID #64: Needless NULL check, CID #64: Deref of potentially NULL pointer.

2006-10-15 Paul Jakma <paul.jakma@sun.com>

* bgp_packet.c: (bgp_update_packet) adv->rn can not be NULL,
  check is bogus - changed to assert(), CID#64.
  binfo is checked for NULL, but then dereferenced
  unconditionally, fix, CID #63.
  (bgp_withdraw_packet) Assert adv->rn is valid, as with
  bgp_update_packet().

17 years ago[bgpd] CID#73, potential crash in bgp statistics if called for AFI/SAFI with emtpy...
Paul Jakma [Sun, 15 Oct 2006 23:41:16 +0000 (23:41 +0000)]
[bgpd] CID#73, potential crash in bgp statistics if called for AFI/SAFI with emtpy table

2006-10-15 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: (bgp_table_stats_walker) NULL deref if table is
  empty, bgp_table_top may return NULL, Coverity CID#73.

17 years ago[bgpd] Bug #302 fixes. ClearingCompleted event gets flushed, leaving peers stuck...
Paul Jakma [Sun, 15 Oct 2006 23:39:59 +0000 (23:39 +0000)]
[bgpd] Bug #302 fixes. ClearingCompleted event gets flushed, leaving peers stuck in Clearing.

2006-10-14 Paul Jakma <paul.jakma@sun.com>

* bgp_fsm.h: Remove BGP_EVENT_FLUSH_ADD, dangerous and not
  needed.
* bgp_fsm.c: (bgp_stop) Move BGP_EVENT_FLUSH to the top of the
  of the function, otherwise it could flush a ClearingCompleted
          event, bug #302.
* bgp_packet.c: Replace all BGP_EVENT_FLUSH_ADD with
  BGP_EVENT_ADD, fixing bug #302.

17 years ago[daemon startup] Add --dry-run/-C argument to daemons, to check config file syntax
Paul Jakma [Sun, 15 Oct 2006 23:35:57 +0000 (23:35 +0000)]
[daemon startup] Add --dry-run/-C argument to daemons, to check config file syntax

2006-10-04 Oliver Hookins <ohookins@gmail.com>

* bgpd/bgp_main.c: Add configuration check option, with
'-C' rather than '-c' for consistency between daemons.
* isisd/isis_main.c: ditto
* ospf6d/ospf6_main.c: ditto
* ospfd/ospf_main.c: ditto
* ripngd/ripng_main.c: ditto
* vtysh/vtysh_main.c: ditto
* ripd/rip_main.c: Change the config check option to
'-C' and tidy up the code.
* zebra/main.c: ditto

2006-10-04 Stergiakis Alexandros <astergiakis@antcor.com>

* ripd/rip_main.c: This trivial patch introduces a new
  command-line option '-c', which instructs zebra/ripd
  to check its configuration file for validity, print
  any error message, and then exit. This is useful when
  the configuration file is edited by hand or otherwise,
  and you simply want to validate it without any other
  effect.
* zebra/main.c: ditto

17 years ago[lib] Handle upgrade from SUNWzebra to Quagga for 'interface fooX:Y' commands
Paul Jakma [Sun, 15 Oct 2006 23:33:50 +0000 (23:33 +0000)]
[lib] Handle upgrade from SUNWzebra to Quagga for 'interface fooX:Y' commands

2006-10-14 Paul Jakma <paul.jakma@sun.com>

* if.c: (general) Handle upgrades from SUNWzebra, which tried
  to track each logical interface as a seperate struct
  interface, to Quagga, which assigns only one struct interface
  per ifindex.
  (if_sunwzebra_get) Try decompose a logical interface name
          (fooX:Y) to the 'primary' name (fooX), for Solaris.
          (interface_cmd) Use if_sunwzebra_get on Solaris.

17 years ago[snmp] Fix asn_build calls to pass correct variable sizes (fixes 64-bit issues)
Andrew J. Schorr [Tue, 26 Sep 2006 15:30:43 +0000 (15:30 +0000)]
[snmp] Fix asn_build calls to pass correct variable sizes (fixes 64-bit issues)

2006-09-26 Pierre-Yves Ritschard <pierre-yves@spootnik.org>

* smux.c: (smux_open,smux_trap,smux_register) Fix various
  asn_build_* calls to pass the proper length in the final
  argument: use sizeof(<variable>) instead of sizeof(<type>),
  since there were several inconsistencies between the actual
  variable type and the size that was passed.  This should
  fix some problems on 64-bit architectures where sizeof(int)
  != sizeof(long).

17 years ago[ospfd] Improve some warning messages.
Andrew J. Schorr [Mon, 25 Sep 2006 13:26:14 +0000 (13:26 +0000)]
[ospfd] Improve some warning messages.

2006-09-25 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* ospf_packet.c: (ospf_packet_dup, ospf_make_md5_digest)
  Fix zlog_warn messages to eliminate compiler warnings.
  (ospf_hello) Improve warning messages to show why we
  are complaining.

17 years agoAdd recent NetBSD/FreeBSD versions to list of what ought to work.
Greg Troxel [Wed, 20 Sep 2006 14:46:07 +0000 (14:46 +0000)]
Add recent NetBSD/FreeBSD versions to list of what ought to work.
Add Dragonfly.

Clarify that the C99 requirement includes libraries and headers, not
just compiler.

17 years ago[bgpd] Trivial fix of printf format/arg mismatch
Andrew J. Schorr [Tue, 19 Sep 2006 18:51:53 +0000 (18:51 +0000)]
[bgpd] Trivial fix of printf format/arg mismatch

2006-09-19 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

* bgpd.c: (peer_uptime) Fix printf format/arg mismatch in
  zlog_warn message (%ld/size_t -> %lu/u_long).

17 years ago[bgpd] reduce the process queue hold time to something more sensible
Paul Jakma [Thu, 14 Sep 2006 03:38:16 +0000 (03:38 +0000)]
[bgpd] reduce the process queue hold time to something more sensible

2006-09-14 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: (bgp_process_queue_init) process queue hold time
  too high, adds extra memory load. Change to be much lower,
  until such time as it's made configurable.

17 years ago[bgpd] RIB statistics address space size shouldnt double count space
Paul Jakma [Thu, 14 Sep 2006 03:06:54 +0000 (03:06 +0000)]
[bgpd] RIB statistics address space size shouldnt double count space

2006-09-14 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: (bgp_table_stats_walker) Address space announced
  should only count top-level unaggregateable prefixes, to
  avoid falling afoul of anti-dodgy-accounting regulations
  in various jurisdictions.. ;)

17 years ago[bgpd] simplify peer refcounts, squash slow peer leak
Paul Jakma [Thu, 14 Sep 2006 03:02:02 +0000 (03:02 +0000)]
[bgpd] simplify peer refcounts, squash slow peer leak

2006-09-14 Paul Jakma <paul.jakma@sun.com>

* (general) fix the peer refcount issue exposed by previous, by
  just removing refcounting of peer threads, which is mostly
  senseless as they're references leading from struct peer,
  which peer_free cancels anyway. No need to muck around..
* bgp_fsm.h: Just remove the refcounting from the various
  TIMER/READ/WRITE/EVENT ON/OFF/ADD macros.
* bgp_fsm.c: (bgp_stop) use BGP_EVENT_FLUSH, no refcounts attached
  to events anymore.
  (bgp_event) remove peer_unlock, events not refcounted.
* bgpd.c: (peer_free) flush events before free.

17 years ago[bgpd] Fix 0.99 shutdown regression, introduce Clearing and Deleted states
Paul Jakma [Thu, 14 Sep 2006 02:58:49 +0000 (02:58 +0000)]
[bgpd] Fix 0.99 shutdown regression, introduce Clearing and Deleted states

2006-09-14 Paul Jakma <paul.jakma@sun.com>

* (general) Fix some niggly issues around 'shutdown' and clearing
  by adding a Clearing FSM wait-state and a hidden 'Deleted'
  FSM state, to allow deleted peers to 'cool off' and hit 0
  references. This introduces a slow memory leak of struct peer,
  however that's more a testament to the fragility of the
  reference counting than a bug in this patch, cleanup of
  reference counting to fix this is to follow.
* bgpd.h: Add Clearing, Deleted states and Clearing_Completed
  and event.
* bgp_debug.c: (bgp_status_msg[]) Add strings for Clearing and
  Deleted.
* bgp_fsm.h: Don't allow timer/event threads to set anything
  for Deleted peers.
* bgp_fsm.c: (bgp_timer_set) Add Clearing and Deleted. Deleted
  needs to stop everything.
  (bgp_stop) Remove explicit fsm_change_status call, the
  general framework handles the transition.
  (bgp_start) Log a warning if a start is attempted on a peer
  that should stay down, trying to start a peer.
  (struct .. FSM) Add Clearing_Completed
  events, has little influence except when in state
  Clearing to signal wait-state can end.
  Add Clearing and Deleted states, former is a wait-state,
  latter is a placeholder state to allow peers to disappear
  quietly once refcounts settle.
  (bgp_event) Try reduce verbosity of FSM state-change debug,
  changes to same state are not interesting (Established->Established)
  Allow NULL action functions in FSM.
* bgp_packet.c: (bgp_write) Use FSM events, rather than trying
  to twiddle directly with FSM state behind the back of FSM.
  (bgp_write_notify) ditto.
  (bgp_read) Remove the vague ACCEPT_PEER peer_unlock, or else
  this patch crashes, now it leaks instead.
* bgp_route.c: (bgp_clear_node_complete) Clearing_Completed
  event, to end clearing.
  (bgp_clear_route) See extensive comments.
* bgpd.c: (peer_free) should only be called while in Deleted,
  peer refcounting controls when peer_free is called.
  bgp_sync_delete should be here, not in peer_delete.
  (peer_delete) Initiate delete.
  Transition to Deleted state manually.
  When removing peer from indices that provide visibility of it,
  take great care to be idempotent wrt the reference counting
  of struct peer through those indices.
  Use bgp_timer_set, rather than replicating.
  Call to bgp_sync_delete isn't appropriate here, sync can be
  referenced while shutting down and finishing deletion.
  (peer_group_bind) Take care to be idempotent wrt list references
  indexing peers.

17 years ago[bgpd] Add RIB reporting commands, show bgp ... statistics
Paul Jakma [Thu, 14 Sep 2006 02:56:07 +0000 (02:56 +0000)]
[bgpd] Add RIB reporting commands, show bgp ... statistics

2006-09-13 Paul Jakma <paul.jakma@sun.com>

* bgp_aspath.c: (aspath_highest) new, return highest ASN in an
  aspath.
* bgp_route.c: (bgp_peer_count_walker) new, do the walk done
  in bgp_peer_counts as a thread.
  (bgp_peer_counts) move walk to previous and call it via
  thread_execute so this RIB walk shows up in thread stats.
  (bgp_table_stats) New, gather some statistics for a given
  RIB.
  (bgp_table_stats_walker) New, RIB walker thread for former.
  (bgp_table_stats_vty) Parsing front-end for 'show bgp ...',
  useful model for future rationalisation of 'show ... bgp'.
  (bgp_route_init) Add new RIB stats commands.

17 years ago2006-09-13 Tom Everett <tom@khubla.com>
Greg Troxel [Wed, 13 Sep 2006 12:13:08 +0000 (12:13 +0000)]
2006-09-13 Tom Everett <tom@khubla.com>

        * kernel_socket.c (rtm_type_str): ifdef RTM_OLD{ADD,DEL} to
        compile on systems that no longer define them.

17 years ago[ripd] bug #293: routemap set metric doesn't check for underflow correctly
Paul Jakma [Mon, 11 Sep 2006 02:14:16 +0000 (02:14 +0000)]
[ripd] bug #293: routemap set metric doesn't check for underflow correctly

2006-09-11 Paul Jakma <paul.jakma@sun.com>

* rip_routemap.c: (route_set_metric) underflow check needs to
  use signed, problem identified and diagnosed by Pavel
  Nikiforov in bug #293.

17 years ago[ripd] bug #278: remove gratuitous use of mid-function declaration
Paul Jakma [Mon, 11 Sep 2006 02:10:40 +0000 (02:10 +0000)]
[ripd] bug #278: remove gratuitous use of mid-function declaration

2006-09-11 Paul Jakma <paul.jakma@sun.com>

* ripd.c: (rip_read) remove gratuitous use of mid-function
  declaration of vrecv, bug #278.

17 years ago[bgpd] Handle pcount as flags are changed, fixing pcount issues
Paul Jakma [Thu, 7 Sep 2006 00:24:49 +0000 (00:24 +0000)]
[bgpd] Handle pcount as flags are changed, fixing pcount issues

2006-09-06 Paul Jakma <paul.jakma@sun.com>

* (general) Squash any and all prefix-count issues by
  abstracting route flag changes, and maintaining count as and
  when flags are modified (rather than relying on explicit
  modifications of count being sprinkled in just the right
  places throughout the code).
* bgp_route.c: (bgp_pcount_{dec,inc}rement) removed.
  (bgp_pcount_adjust) new, update prefix count as
  needed for a given route.
  (bgp_info_{uns,s}et_flag) set/unset a BGP_INFO route status
  flag, calling previous function when appropriate.
  (general) Update all set/unsets of flags to use previous.
  Remove pcount_{dec,inc}rement calls.
  No need to unset BGP_INFO_VALID in places where
  bgp_info_delete is called, it does that anyway.
* bgp_{damp,nexthop}.c: Update to use bgp_info_{un,}set_flag.
* bgp_route.h: Export bgp_info_{un,}set_flag.
  Add a 'meta' BGP_INFO flag, BGP_INFO_UNUSEABLE.
  Move BGP_INFO_HOLDDOWN macro to here from bgpd.h

17 years ago[bgpd] Add 'show ... neighbor .... prefix-counts' command
Paul Jakma [Mon, 4 Sep 2006 01:10:36 +0000 (01:10 +0000)]
[bgpd] Add 'show ... neighbor .... prefix-counts' command

2006-09-03 Paul Jakma <paul.jakma@sun.com>

* bgp_route.c: Add 'show ... bgp ... <neighbour> prefix-count'
  commands, to provide detailed counts of prefixes for a peer.
  Informative, and should help pin down to pfxcnt drift
  problems.

17 years ago[ospfd] Fix assertion in DB-exchange fix, hit by ogier-db-ex-opt commit
Paul Jakma [Wed, 30 Aug 2006 18:47:37 +0000 (18:47 +0000)]
[ospfd] Fix assertion in DB-exchange fix, hit by ogier-db-ex-opt commit

2006-08-28 Andy Gay <andy@andynet.net>

* ospf_packet.c: (ospf_make_db_desc) Assert added with More-bit
  fixes does not hold up with addition of Ogier DB-Exchange
  optimisation, which can empty the db-summary list in between
  sent DD packets. Remove assert, update More-bit always when
  in Exchange.

17 years ago[0.99] version bump to 0.99.5
Paul Jakma [Sun, 27 Aug 2006 22:06:12 +0000 (22:06 +0000)]
[0.99] version bump to 0.99.5

2006-08-27 Paul Jakma <paul.jakma@sun.com>

* configure.ac: Bump to 0.99.5

17 years ago[ospfd] redistribute default no longer works after complete reconfig, fix
Paul Jakma [Sun, 27 Aug 2006 08:01:20 +0000 (08:01 +0000)]
[ospfd] redistribute default no longer works after complete reconfig, fix

2006-08-27 J.J. Krabbendam <jkrabbendam@aimsys.nl>

* ospfd.c: (ospf_finish_final) default redistribute should be
  unset too, fixes bug where reconfiguring ospfd completely
  can no longer enable default redistribution.

17 years ago[bgpd] fix mtype in XFREE and NULL out freed pointer
Paul Jakma [Sun, 27 Aug 2006 06:57:47 +0000 (06:57 +0000)]
[bgpd] fix mtype in XFREE and NULL out freed pointer

2006-08-27 Paul Jakma <paul.jakma@sun.com>

* bgp_advertise.c: (bgp_sync_delete) fix mtype in XFREE.
  NULL out peer->hash after free, to be sure.

17 years ago[tests] update heavywq for workqueue api changes
Paul Jakma [Sun, 27 Aug 2006 06:53:24 +0000 (06:53 +0000)]
[tests] update heavywq for workqueue api changes

2006-08-26 Paul Jakma <paul.jakma@sun.com>

* heavy-wq.c: (slow_func_del,slow_func) update to match workqueue
  changes

17 years ago[ospfd] Bug #134, ospfd should be more robust to backward time change
Paul Jakma [Sun, 27 Aug 2006 06:49:29 +0000 (06:49 +0000)]
[ospfd] Bug #134, ospfd should be more robust to backward time change

2006-08-25 Paul Jakma <paul.jakma@sun.com>

* (general) Bug #134. Be more robust to backward time changes,
  use the newly added libzebra time functions.
  In most cases: recent_time -> recent_relative_time()
  gettimeofday -> quagga_gettime (QUAGGA_CLK_MONOTONIC, ..)
  time -> quagga_time.
  (ospf_make_md5_digest) time() call deliberately not changed.
  (ospf_external_lsa_refresh) remove useless gettimeofday, LSA
  tv_orig time was already set in ospf_lsa_new, called via
  ospf_external_lsa_new.

17 years ago[lib] Bug #134: threads should be more robust against backward time jumps
Paul Jakma [Sun, 27 Aug 2006 06:44:02 +0000 (06:44 +0000)]
[lib] Bug #134: threads should be more robust against backward time jumps

2006-08-25 Paul Jakma <paul.jakma@sun.com>

* thread.c: (general) Add support for monotonic clock, it may still
  jump forward by huge amounts, but should be immune to going
  backwards. Fixes bug #134.
  (quagga_gettimeofday_relative_adjust) helper, does what name
  says - adjusts gettimeofday based relative timer.
  (quagga_gettimeofday) helper to keep recent_time up to date.
  (quagga_get_relative) helper, update and getch the relative
  timer using gettimeofday(). POSIX CLOCK_MONOTONIC is also
  supported, but the code is not enabled yet nor tested.
  (quagga_real_stabilised) helper, retrieve absolute time but
  stabilised so as to never decrease.
  (quagga_gettime) Exported interface, analogous to POSIX
  clock_gettime() in interface, supporting several clocks.
  (quagga_time) Exported interface, analogous to traditional
  time(), will never decrease.
  (recent_relative_time) Convenience function to retrieve
  relative_time timeval, similar to existing recent_time absolute
  timeval, for when an approximately recent value will do.
  (remainder) Update to use above helpers.
  (thread_getrusage) Previously was a macro, but needs to be
  a function to twiddle with thread.c private stuff.
* thread.c: Point the GETRUSAGE macro at previous function.
  Export quagga_gettime, quagga_time and recent_relative_time for
  general use.

17 years ago[ospfd] draft-ogier-ospf-dbex-opt DB-exchange optimisation
Paul Jakma [Sun, 27 Aug 2006 06:40:04 +0000 (06:40 +0000)]
[ospfd] draft-ogier-ospf-dbex-opt DB-exchange optimisation

2006-08-03 Paul Jakma <paul.jakma@sun.com>

* ospf_packet.c: (ospf_make_db_desc) Implement
  draft-ogier-ospf-dbex-opt DB-exchange optimisation.