ChangeLog 13 KB

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