ChangeLog 14 KB

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