ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. Changes in version 0.0.2pre24 - 2004-03-03
  2. o Bugfixes:
  3. - Fix an assertion failure in dns.c, where we were trying to dequeue
  4. a pending dns resolve even if it wasn't pending
  5. - Fix a spurious socks5 warning about still trying to write after the connection is finished.
  6. - Hold certain marked_for_close connections open until they're finished
  7. flushing, rather than losing bytes by closing them too early.
  8. - Correctly report the reason for ending a stream
  9. - Remove some duplicate calls to connection_mark_for_close
  10. - Put switch_id and start_daemon earlier in the boot sequence, so it
  11. will actually try to chdir() to options.DataDirectory
  12. - Make 'make test' exit(1) if a test fails; fix some unit tests
  13. - Make tor fail when you use a config option it doesn't know about,
  14. rather than warn and continue.
  15. - Make --version work
  16. - Bugfixes on the rpm spec file and tor.sh, so it's more up to date
  17. Changes in version 0.0.2pre23 - 2004-02-29
  18. o New features:
  19. - Print a statement when the first circ is finished, so the user
  20. knows it's working.
  21. - If a relay cell is unrecognized at the end of the circuit,
  22. send back a destroy. (So attacks to mutate cells are more
  23. clearly thwarted.)
  24. - New config option 'excludenodes' to avoid certain nodes for circuits.
  25. - When it daemonizes, it chdir's to the DataDirectory rather than "/",
  26. so you can collect coredumps there.
  27. o Bugfixes:
  28. - Fix a bug in tls flushing where sometimes data got wedged and
  29. didn't flush until more data got sent. Hopefully this bug was
  30. a big factor in the random delays we were seeing.
  31. - Make 'connected' cells include the resolved IP, so the client
  32. dns cache actually gets populated.
  33. - Disallow changing from ORPort=0 to ORPort>0 on hup.
  34. - When we time-out on a stream and detach from the circuit, send an
  35. end cell down it first.
  36. - Only warn about an unknown router (in exitnodes, entrynodes,
  37. excludenodes) after we've fetched a directory.
  38. Changes in version 0.0.2pre22 - 2004-02-26
  39. o New features:
  40. - Servers publish less revealing uname information in descriptors.
  41. - More memory tracking and assertions, to crash more usefully when
  42. errors happen.
  43. - If the default torrc isn't there, just use some default defaults.
  44. Plus provide an internal dirservers file if they don't have one.
  45. - When the user tries to use Tor as an http proxy, give them an http
  46. 501 failure explaining that we're a socks proxy.
  47. - Dump a new router.desc on hup, to help confused people who change
  48. their exit policies and then wonder why router.desc doesn't reflect
  49. it.
  50. - Clean up the generic tor.sh init script that we ship with.
  51. o Bugfixes:
  52. - If the exit stream is pending on the resolve, and a destroy arrives,
  53. then the stream wasn't getting removed from the pending list. I
  54. think this was the one causing recent server crashes.
  55. - Use a more robust poll on OSX 10.3, since their poll is flaky.
  56. - When it couldn't resolve any dirservers, it was useless from then on.
  57. Now it reloads the RouterFile (or default dirservers) if it has no
  58. dirservers.
  59. - Move the 'tor' binary back to /usr/local/bin/ -- it turns out
  60. many users don't even *have* a /usr/local/sbin/.
  61. Changes in version 0.0.2pre21 - 2004-02-18
  62. o New features:
  63. - There's a ChangeLog file that actually reflects the changelog.
  64. - There's a 'torify' wrapper script, with an accompanying
  65. tor-tsocks.conf, that simplifies the process of using tsocks for
  66. tor. It even has a man page.
  67. - The tor binary gets installed to sbin rather than bin now.
  68. - Retry streams where the connected cell hasn't arrived in 15 seconds
  69. - Clean up exit policy handling -- get the default out of the torrc, so we can update it without forcing each server operator to fix
  70. his/her torrc.
  71. - Allow imaps and pop3s in default exit policy
  72. o Bugfixes:
  73. - Prevent picking middleman nodes as the last node in the circuit
  74. Changes in version 0.0.2pre20 - 2004-01-30
  75. o New features:
  76. - We now have a deb package, and it's in debian unstable. Go to
  77. it, apt-getters. :)
  78. - I've split the TotalBandwidth option into BandwidthRate (how many
  79. bytes per second you want to allow, long-term) and
  80. BandwidthBurst (how many bytes you will allow at once before the cap
  81. kicks in). This better token bucket approach lets you, say, set
  82. BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
  83. performance while not exceeding your monthly bandwidth quota.
  84. - Push out a tls record's worth of data once you've got it, rather
  85. than waiting until you've read everything waiting to be read. This
  86. may improve performance by pipelining better. We'll see.
  87. - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
  88. from failed circuits (if they haven't been connected yet) and attach
  89. to new ones.
  90. - Expire old streams that haven't managed to connect. Some day we'll
  91. have them reattach to new circuits instead.
  92. o Bugfixes:
  93. - Fix several memory leaks that were causing servers to become bloated
  94. after a while.
  95. - Fix a few very rare assert triggers. A few more remain.
  96. - Setuid to User _before_ complaining about running as root.
  97. Changes in version 0.0.2pre19 - 2004-01-07
  98. o Bugfixes:
  99. - Fix deadlock condition in dns farm. We were telling a child to die by
  100. closing the parent's file descriptor to him. But newer children were
  101. inheriting the open file descriptor from the parent, and since they
  102. weren't closing it, the socket never closed, so the child never read
  103. eof, so he never knew to exit. Similarly, dns workers were holding
  104. open other sockets, leading to all sorts of chaos.
  105. - New cleaner daemon() code for forking and backgrounding.
  106. - If you log to a file, it now prints an entry at the top of the
  107. logfile so you know it's working.
  108. - The onionskin challenge length was 30 bytes longer than necessary.
  109. - Started to patch up the spec so it's not quite so out of date.
  110. Changes in version 0.0.2pre18 - 2004-01-02
  111. o Bugfixes:
  112. - Fix endian issues with the 'integrity' field in the relay header.
  113. - Fix a potential bug where connections in state
  114. AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
  115. Changes in version 0.0.2pre17 - 2003-12-30
  116. o Bugfixes:
  117. - Made --debuglogfile (or any second log file, actually) work.
  118. - Resolved an edge case in get_unique_circ_id_by_conn where a smart
  119. adversary could force us into an infinite loop.
  120. o Features:
  121. - Each onionskin handshake now includes a hash of the computed key,
  122. to prove the server's identity and help perfect forward secrecy.
  123. - Changed cell size from 256 to 512 bytes (working toward compatibility
  124. with MorphMix).
  125. - Changed cell length to 2 bytes, and moved it to the relay header.
  126. - Implemented end-to-end integrity checking for the payloads of
  127. relay cells.
  128. - Separated streamid from 'recognized' (otherwise circuits will get
  129. messed up when we try to have streams exit from the middle). We
  130. use the integrity-checking to confirm that a cell is addressed to
  131. this hop.
  132. - Randomize the initial circid and streamid values, so an adversary who
  133. breaks into a node can't learn how many circuits or streams have
  134. been made so far.
  135. Changes in version 0.0.2pre16 - 2003-12-14
  136. o Bugfixes:
  137. - Fixed a bug that made HUP trigger an assert
  138. - Fixed a bug where a circuit that immediately failed wasn't being
  139. counted as a failed circuit in counting retries.
  140. o Features:
  141. - Now we close the circuit when we get a truncated cell: otherwise we're
  142. open to an anonymity attack where a bad node in the path truncates
  143. the circuit and then we open streams at him.
  144. - Add port ranges to exit policies
  145. - Add a conservative default exit policy
  146. - Warn if you're running tor as root
  147. - on HUP, retry OR connections and close/rebind listeners
  148. - options.EntryNodes: try these nodes first when picking the first node
  149. - options.ExitNodes: if your best choices happen to include any of
  150. your preferred exit nodes, you choose among just those preferred
  151. exit nodes.
  152. - options.ExcludedNodes: nodes that are never picked in path building
  153. Changes in version 0.0.2pre15 - 2003-12-03
  154. o Robustness and bugfixes:
  155. - Sometimes clients would cache incorrect DNS resolves, which would
  156. really screw things up.
  157. - An OP that goes offline would slowly leak all its sockets and stop
  158. working.
  159. - A wide variety of bugfixes in exit node selection, exit policy
  160. handling, and processing pending streams when a new circuit is
  161. established.
  162. - Pick nodes for a path only from those the directory says are up
  163. - Choose randomly from all running dirservers, not always the first one
  164. - Increase allowed http header size for directory fetch.
  165. - Stop writing to stderr (if we're daemonized it will be closed).
  166. - Enable -g always, so cores will be more useful to me.
  167. - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
  168. o Documentation:
  169. - Wrote a man page. It lists commonly used options.
  170. o Configuration:
  171. - Change default loglevel to warn.
  172. - Make PidFile default to null rather than littering in your CWD.
  173. - OnionRouter config option is now obsolete. Instead it just checks
  174. ORPort>0.
  175. - Moved to a single unified torrc file for both clients and servers.
  176. Changes in version 0.0.2pre14 - 2003-11-29
  177. o Robustness and bugfixes:
  178. - Force the admin to make the DataDirectory himself
  179. - to get ownership/permissions right
  180. - so clients no longer make a DataDirectory and then never use it
  181. - fix bug where a client who was offline for 45 minutes would never
  182. pull down a directory again
  183. - fix (or at least hide really well) the dns assert bug that was
  184. causing server crashes
  185. - warnings and improved robustness wrt clockskew for certs
  186. - use the native daemon(3) to daemonize, when available
  187. - exit if bind() fails
  188. - exit if neither socksport nor orport is defined
  189. - include our own tor_timegm (Win32 doesn't have its own)
  190. - bugfix for win32 with lots of connections
  191. - fix minor bias in PRNG
  192. - make dirserver more robust to corrupt cached directory
  193. o Documentation:
  194. - Wrote the design document (woo)
  195. o Circuit building and exit policies:
  196. - Circuits no longer try to use nodes that the directory has told them
  197. are down.
  198. - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
  199. bitcounts (18.0.0.0/8).
  200. - Make AP connections standby for a circuit if no suitable circuit
  201. exists, rather than failing
  202. - Circuits choose exit node based on addr/port, exit policies, and
  203. which AP connections are standing by
  204. - Bump min pathlen from 2 to 3
  205. - Relay end cells have a payload to describe why the stream ended.
  206. - If the stream failed because of exit policy, try again with a new
  207. circuit.
  208. - Clients have a dns cache to remember resolved addresses.
  209. - Notice more quickly when we have no working circuits
  210. o Configuration:
  211. - APPort is now called SocksPort
  212. - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
  213. where to bind
  214. - RecommendedVersions is now a config variable rather than
  215. hardcoded (for dirservers)
  216. - Reloads config on HUP
  217. - Usage info on -h or --help
  218. - If you set User and Group config vars, it'll setu/gid to them.