cbt-bugfixes 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. o Major bugfixes:
  2. - Ignore negative and large timeout values that can happen during a
  3. suspend or hibernate. These values caused various asserts to fire
  4. in the circuit build times code, crashing Tor. Bug 1245, bugfix on
  5. 0.2.2.2-alpha.
  6. - Alter calculation of Pareto distribution parameter 'Xm' for Circuit Build
  7. Timeout learning to use the weighted average of the top N=3 modes. This
  8. should improve the timeout calculation in some cases, and prevent
  9. extremely high timeout values. Bug 1335, bugfix on 0.2.2.2-alpha.
  10. - Alter calculation of Pareto distribution parameter 'Alpha' to use a
  11. right censored distribution model. This allows us to remove the synthetic
  12. timeout generation and instead calculate build timeouts using truncated
  13. times. Bugs 1245+1335, bugfix on 0.2.2.2-alpha.
  14. - Keep circuits open (but do not use them) after the circuit timeout for
  15. up until the time corresponding to the 95th percentile on the Pareto CDF
  16. or 60 seconds, whichever is greater. This is done to provide better data
  17. for the new Pareto model. This percentile can be controlled by the
  18. consensus.
  19. o Minor bugfixes:
  20. - Eliminate a case where a circuit build time warning was displayed after
  21. network connectivity resumed. Bugfix on 0.2.2.2-alpha.
  22. o Minor features:
  23. - Add a TIMEOUT_RATE keyword to the BUILDTIMEOUT_SET control port event,
  24. to give information on the current rate of circuit timeouts over our
  25. stored history.
  26. - Add ability to disable circuit build time learning via consensus
  27. parameter and via a LearnCircuitBuildTimeout config option. Also
  28. automatically disable circuit build time calculation if we are either
  29. a AuthoritativeDirectory, or if we fail to write our state file. Bug 1296.
  30. - More gracefully handle corrupt state files, removing asserts in favor
  31. of saving a backup and resetting state.