ChangeLog 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. Changes in version 0.0.2pre20 - 2004-01-30
  2. o New features:
  3. - We now have a deb package, and it's in debian unstable. Go to
  4. it, apt-getters. :)
  5. - I've split the TotalBandwidth option into BandwidthRate (how many
  6. bytes per second you want to allow, long-term) and
  7. BandwidthBurst (how many bytes you will allow at once before the cap
  8. kicks in). This better token bucket approach lets you, say, set
  9. BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
  10. performance while not exceeding your monthly bandwidth quota.
  11. - Push out a tls record's worth of data once you've got it, rather
  12. than waiting until you've read everything waiting to be read. This
  13. may improve performance by pipelining better. We'll see.
  14. - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
  15. from failed circuits (if they haven't been connected yet) and attach
  16. to new ones.
  17. - Expire old streams that haven't managed to connect. Some day we'll
  18. have them reattach to new circuits instead.
  19. o Bugfixes:
  20. - Fix several memory leaks that were causing servers to become bloated
  21. after a while.
  22. - Fix a few very rare assert triggers. A few more remain.
  23. - Setuid to User _before_ complaining about running as root.
  24. Changes in version 0.0.2pre19 - 2004-01-07
  25. o Bugfixes:
  26. - Fix deadlock condition in dns farm. We were telling a child to die by
  27. closing the parent's file descriptor to him. But newer children were
  28. inheriting the open file descriptor from the parent, and since they
  29. weren't closing it, the socket never closed, so the child never read
  30. eof, so he never knew to exit. Similarly, dns workers were holding
  31. open other sockets, leading to all sorts of chaos.
  32. - New cleaner daemon() code for forking and backgrounding.
  33. - If you log to a file, it now prints an entry at the top of the
  34. logfile so you know it's working.
  35. - The onionskin challenge length was 30 bytes longer than necessary.
  36. - Started to patch up the spec so it's not quite so out of date.
  37. Changes in version 0.0.2pre18 - 2004-01-02
  38. o Bugfixes:
  39. - Fix endian issues with the 'integrity' field in the relay header.
  40. - Fix a potential bug where connections in state
  41. AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
  42. Changes in version 0.0.2pre17 - 2003-12-30
  43. o Bugfixes:
  44. - Made --debuglogfile (or any second log file, actually) work.
  45. - Resolved an edge case in get_unique_circ_id_by_conn where a smart
  46. adversary could force us into an infinite loop.
  47. o Features:
  48. - Each onionskin handshake now includes a hash of the computed key,
  49. to prove the server's identity and help perfect forward secrecy.
  50. - Changed cell size from 256 to 512 bytes (working toward compatibility
  51. with MorphMix).
  52. - Changed cell length to 2 bytes, and moved it to the relay header.
  53. - Implemented end-to-end integrity checking for the payloads of
  54. relay cells.
  55. - Separated streamid from 'recognized' (otherwise circuits will get
  56. messed up when we try to have streams exit from the middle). We
  57. use the integrity-checking to confirm that a cell is addressed to
  58. this hop.
  59. - Randomize the initial circid and streamid values, so an adversary who
  60. breaks into a node can't learn how many circuits or streams have
  61. been made so far.
  62. Changes in version 0.0.2pre16 - 2003-12-14
  63. o Bugfixes:
  64. - Fixed a bug that made HUP trigger an assert
  65. - Fixed a bug where a circuit that immediately failed wasn't being
  66. counted as a failed circuit in counting retries.
  67. o Features:
  68. - Now we close the circuit when we get a truncated cell: otherwise we're
  69. open to an anonymity attack where a bad node in the path truncates
  70. the circuit and then we open streams at him.
  71. - Add port ranges to exit policies
  72. - Add a conservative default exit policy
  73. - Warn if you're running tor as root
  74. - on HUP, retry OR connections and close/rebind listeners
  75. - options.EntryNodes: try these nodes first when picking the first node
  76. - options.ExitNodes: if your best choices happen to include any of
  77. your preferred exit nodes, you choose among just those preferred
  78. exit nodes.
  79. - options.ExcludedNodes: nodes that are never picked in path building
  80. Changes in version 0.0.2pre15 - 2003-12-03
  81. o Robustness and bugfixes:
  82. - Sometimes clients would cache incorrect DNS resolves, which would
  83. really screw things up.
  84. - An OP that goes offline would slowly leak all its sockets and stop
  85. working.
  86. - A wide variety of bugfixes in exit node selection, exit policy
  87. handling, and processing pending streams when a new circuit is
  88. established.
  89. - Pick nodes for a path only from those the directory says are up
  90. - Choose randomly from all running dirservers, not always the first one
  91. - Increase allowed http header size for directory fetch.
  92. - Stop writing to stderr (if we're daemonized it will be closed).
  93. - Enable -g always, so cores will be more useful to me.
  94. - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
  95. o Documentation:
  96. - Wrote a man page. It lists commonly used options.
  97. o Configuration:
  98. - Change default loglevel to warn.
  99. - Make PidFile default to null rather than littering in your CWD.
  100. - OnionRouter config option is now obsolete. Instead it just checks
  101. ORPort>0.
  102. - Moved to a single unified torrc file for both clients and servers.
  103. Changes in version 0.0.2pre14 - 2003-11-29
  104. o Robustness and bugfixes:
  105. - Force the admin to make the DataDirectory himself
  106. - to get ownership/permissions right
  107. - so clients no longer make a DataDirectory and then never use it
  108. - fix bug where a client who was offline for 45 minutes would never
  109. pull down a directory again
  110. - fix (or at least hide really well) the dns assert bug that was
  111. causing server crashes
  112. - warnings and improved robustness wrt clockskew for certs
  113. - use the native daemon(3) to daemonize, when available
  114. - exit if bind() fails
  115. - exit if neither socksport nor orport is defined
  116. - include our own tor_timegm (Win32 doesn't have its own)
  117. - bugfix for win32 with lots of connections
  118. - fix minor bias in PRNG
  119. - make dirserver more robust to corrupt cached directory
  120. o Documentation:
  121. - Wrote the design document (woo)
  122. o Circuit building and exit policies:
  123. - Circuits no longer try to use nodes that the directory has told them
  124. are down.
  125. - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
  126. bitcounts (18.0.0.0/8).
  127. - Make AP connections standby for a circuit if no suitable circuit
  128. exists, rather than failing
  129. - Circuits choose exit node based on addr/port, exit policies, and
  130. which AP connections are standing by
  131. - Bump min pathlen from 2 to 3
  132. - Relay end cells have a payload to describe why the stream ended.
  133. - If the stream failed because of exit policy, try again with a new
  134. circuit.
  135. - Clients have a dns cache to remember resolved addresses.
  136. - Notice more quickly when we have no working circuits
  137. o Configuration:
  138. - APPort is now called SocksPort
  139. - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
  140. where to bind
  141. - RecommendedVersions is now a config variable rather than
  142. hardcoded (for dirservers)
  143. - Reloads config on HUP
  144. - Usage info on -h or --help
  145. - If you set User and Group config vars, it'll setu/gid to them.