Fix comments for getinfo_helper_t
[tor/rransom.git] / ChangeLog
blob978bafe0b8ec00ac2ae0e10e98940c9dff549697
1 Changes in version 0.2.2.9-alpha - 2010-??-??
2   o Code simplifications and refactoring:
3     - Generate our manpage and HTML documentation using Asciidoc.  This
4       should make it easier to maintain the documentation, and produce
5       nicer HTML.
7   o Removed features:
8     - Stop shipping parts of the website and the design paper in the
9       source tarballs.
12 Changes in version 0.2.2.8-alpha - 2010-01-26
13   o Major bugfixes:
14     - Fix a memory corruption bug on bridges that occured during the
15       inclusion of stats data in extra-info descriptors. Also fix the
16       interface for geoip_get_bridge_stats* to prevent similar bugs in
17       the future. Diagnosis by Tas, patch by Karsten and Sebastian.
18       Fixes bug 1208; bugfix on 0.2.2.7-alpha.
20   o Minor bugfixes:
21     - Ignore OutboundBindAddress when connecting to localhost.
22       Connections to localhost need to come _from_ localhost, or else
23       local servers (like DNS and outgoing HTTP/SOCKS proxies) will often
24       refuse to listen.
27 Changes in version 0.2.1.23 - 2010-0?-??
28   o Major bugfixes (performance):
29     - We were selecting our guards uniformly at random, and then weighting
30       which of our guards we'd use uniformly at random. This imbalance
31       meant that Tor clients were severely limited on throughput (and
32       probably latency too) by the first hop in their circuit. Now we
33       select guards weighted by currently advertised bandwidth. We also
34       automatically discard guards picked using the old algorithm. Fixes
35       bug 1217; bugfix on 0.2.1.3-alpha. Found by Mike Perry.
37   o Minor features:
38     - Avoid a mad rush at the beginning of each month when each client
39       rotates half of its guards. Instead we spread the rotation out
40       throughout the month, but we still avoid leaving a precise timestamp
41       in the state file about when we first picked the guard. Improves
42       over the behavior introduced in 0.1.2.17.
45 Changes in version 0.2.2.7-alpha - 2010-01-19
46   Tor 0.2.2.7-alpha fixes a huge client-side performance bug, as well
47   as laying the groundwork for further relay-side performance fixes. It
48   also starts cleaning up client behavior with respect to the EntryNodes,
49   ExitNodes, and StrictNodes config options.
51   This release also rotates two directory authority keys, due to a
52   security breach of some of the Torproject servers.
54   o Directory authority changes:
55     - Rotate keys (both v3 identity and relay identity) for moria1
56       and gabelmoo.
58   o Major features (performance):
59     - We were selecting our guards uniformly at random, and then weighting
60       which of our guards we'd use uniformly at random. This imbalance
61       meant that Tor clients were severely limited on throughput (and
62       probably latency too) by the first hop in their circuit. Now we
63       select guards weighted by currently advertised bandwidth. We also
64       automatically discard guards picked using the old algorithm. Fixes
65       bug 1217; bugfix on 0.2.1.3-alpha. Found by Mike Perry.
66     - When choosing which cells to relay first, relays can now favor
67       circuits that have been quiet recently, to provide lower latency
68       for low-volume circuits. By default, relays enable or disable this
69       feature based on a setting in the consensus. You can override
70       this default by using the new "CircuitPriorityHalflife" config
71       option. Design and code by Ian Goldberg, Can Tang, and Chris
72       Alexander.
73     - Add separate per-conn write limiting to go with the per-conn read
74       limiting. We added a global write limit in Tor 0.1.2.5-alpha,
75       but never per-conn write limits.
76     - New consensus params "bwconnrate" and "bwconnburst" to let us
77       rate-limit client connections as they enter the network. It's
78       controlled in the consensus so we can turn it on and off for
79       experiments. It's starting out off. Based on proposal 163.
81   o Major features (relay selection options):
82     - Switch to a StrictNodes config option, rather than the previous
83       "StrictEntryNodes" / "StrictExitNodes" separation that was missing a
84       "StrictExcludeNodes" option.
85     - If EntryNodes, ExitNodes, ExcludeNodes, or ExcludeExitNodes
86       change during a config reload, mark and discard all our origin
87       circuits. This fix should address edge cases where we change the
88       config options and but then choose a circuit that we created before
89       the change.
90     - If EntryNodes or ExitNodes are set, be more willing to use an
91       unsuitable (e.g. slow or unstable) circuit. The user asked for it,
92       they get it.
93     - Make EntryNodes config option much more aggressive even when
94       StrictNodes is not set. Before it would prepend your requested
95       entrynodes to your list of guard nodes, but feel free to use others
96       after that. Now it chooses only from your EntryNodes if any of
97       those are available, and only falls back to others if a) they're
98       all down and b) StrictNodes is not set.
99     - Now we refresh your entry guards from EntryNodes at each consensus
100       fetch -- rather than just at startup and then they slowly rot as
101       the network changes.
103   o Major bugfixes:
104     - Stop bridge directory authorities from answering dbg-stability.txt
105       directory queries, which would let people fetch a list of all
106       bridge identities they track. Bugfix on 0.2.1.6-alpha.
108   o Minor features:
109     - Log a notice when we get a new control connection. Now it's easier
110       for security-conscious users to recognize when a local application
111       is knocking on their controller door. Suggested by bug 1196.
112     - New config option "CircuitStreamTimeout" to override our internal
113       timeout schedule for how many seconds until we detach a stream from
114       a circuit and try a new circuit. If your network is particularly
115       slow, you might want to set this to a number like 60.
116     - New controller command "getinfo config-text". It returns the
117       contents that Tor would write if you send it a SAVECONF command,
118       so the controller can write the file to disk itself.
119     - New options for SafeLogging to allow scrubbing only log messages
120       generated while acting as a relay.
121     - Ship the bridges spec file in the tarball too.
122     - Avoid a mad rush at the beginning of each month when each client
123       rotates half of its guards. Instead we spread the rotation out
124       throughout the month, but we still avoid leaving a precise timestamp
125       in the state file about when we first picked the guard. Improves
126       over the behavior introduced in 0.1.2.17.
128   o Minor bugfixes (compiling):
129     - Fix compilation on OS X 10.3, which has a stub mlockall() but
130       hides it. Bugfix on 0.2.2.6-alpha.
131     - Fix compilation on Solaris by removing support for the
132       DisableAllSwap config option. Solaris doesn't have an rlimit for
133       mlockall, so we cannot use it safely. Fixes bug 1198; bugfix on
134       0.2.2.6-alpha.
136   o Minor bugfixes (crashes):
137     - Do not segfault when writing buffer stats when we haven't observed
138       a single circuit to report about. Found by Fabian Lanze. Bugfix on
139       0.2.2.1-alpha.
140     - If we're in the pathological case where there's no exit bandwidth
141       but there is non-exit bandwidth, or no guard bandwidth but there
142       is non-guard bandwidth, don't crash during path selection. Bugfix
143       on 0.2.0.3-alpha.
144     - Fix an impossible-to-actually-trigger buffer overflow in relay
145       descriptor generation. Bugfix on 0.1.0.15.
147   o Minor bugfixes (privacy):
148     - Fix an instance where a Tor directory mirror might accidentally
149       log the IP address of a misbehaving Tor client. Bugfix on
150       0.1.0.1-rc.
151     - Don't list Windows capabilities in relay descriptors. We never made
152       use of them, and maybe it's a bad idea to publish them. Bugfix
153       on 0.1.1.8-alpha.
155   o Minor bugfixes (other):
156     - Resolve an edge case in path weighting that could make us misweight
157       our relay selection. Fixes bug 1203; bugfix on 0.0.8rc1.
158     - Fix statistics on client numbers by country as seen by bridges that
159       were broken in 0.2.2.1-alpha. Also switch to reporting full 24-hour
160       intervals instead of variable 12-to-48-hour intervals.
161     - After we free an internal connection structure, overwrite it
162       with a different memory value than we use for overwriting a freed
163       internal circuit structure. Should help with debugging. Suggested
164       by bug 1055.
165     - Update our OpenSSL 0.9.8l fix so that it works with OpenSSL 0.9.8m
166       too.
168   o Removed features:
169     - Remove the HSAuthorityRecordStats option that version 0 hidden
170       service authorities could have used to track statistics of overall
171       hidden service usage.
174 Changes in version 0.2.1.22 - 2010-01-19
175   Tor 0.2.1.22 fixes a critical privacy problem in bridge directory
176   authorities -- it would tell you its whole history of bridge descriptors
177   if you make the right directory request. This stable update also
178   rotates two of the seven v3 directory authority keys and locations.
180   o Directory authority changes:
181     - Rotate keys (both v3 identity and relay identity) for moria1
182       and gabelmoo.
184   o Major bugfixes:
185     - Stop bridge directory authorities from answering dbg-stability.txt
186       directory queries, which would let people fetch a list of all
187       bridge identities they track. Bugfix on 0.2.1.6-alpha.
190 Changes in version 0.2.1.21 - 2009-12-21
191   Tor 0.2.1.21 fixes an incompatibility with the most recent OpenSSL
192   library. If you use Tor on Linux / Unix and you're getting SSL
193   renegotiation errors, upgrading should help. We also recommend an
194   upgrade if you're an exit relay.
196   o Major bugfixes:
197     - Work around a security feature in OpenSSL 0.9.8l that prevents our
198       handshake from working unless we explicitly tell OpenSSL that we
199       are using SSL renegotiation safely. We are, of course, but OpenSSL
200       0.9.8l won't work unless we say we are.
201     - Avoid crashing if the client is trying to upload many bytes and the
202       circuit gets torn down at the same time, or if the flip side
203       happens on the exit relay. Bugfix on 0.2.0.1-alpha; fixes bug 1150.
205   o Minor bugfixes:
206     - Do not refuse to learn about authority certs and v2 networkstatus
207       documents that are older than the latest consensus. This bug might
208       have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
209       Spotted and fixed by xmux.
210     - Fix a couple of very-hard-to-trigger memory leaks, and one hard-to-
211       trigger platform-specific option misparsing case found by Coverity
212       Scan.
213     - Fix a compilation warning on Fedora 12 by removing an impossible-to-
214       trigger assert. Fixes bug 1173.
217 Changes in version 0.2.2.6-alpha - 2009-11-19
218   Tor 0.2.2.6-alpha lays the groundwork for many upcoming features:
219   support for the new lower-footprint "microdescriptor" directory design,
220   future-proofing our consensus format against new hash functions or
221   other changes, and an Android port. It also makes Tor compatible with
222   the upcoming OpenSSL 0.9.8l release, and fixes a variety of bugs.
224   o Major features:
225     - Directory authorities can now create, vote on, and serve multiple
226       parallel formats of directory data as part of their voting process.
227       Partially implements Proposal 162: "Publish the consensus in
228       multiple flavors".
229     - Directory authorities can now agree on and publish small summaries
230       of router information that clients can use in place of regular
231       server descriptors. This transition will eventually allow clients
232       to use far less bandwidth for downloading information about the
233       network. Begins the implementation of Proposal 158: "Clients
234       download consensus + microdescriptors".
235     - The directory voting system is now extensible to use multiple hash
236       algorithms for signatures and resource selection. Newer formats
237       are signed with SHA256, with a possibility for moving to a better
238       hash algorithm in the future.
239     - New DisableAllSwap option. If set to 1, Tor will attempt to lock all
240       current and future memory pages via mlockall(). On supported
241       platforms (modern Linux and probably BSD but not Windows or OS X),
242       this should effectively disable any and all attempts to page out
243       memory. This option requires that you start your Tor as root --
244       if you use DisableAllSwap, please consider using the User option
245       to properly reduce the privileges of your Tor.
246     - Numerous changes, bugfixes, and workarounds from Nathan Freitas
247       to help Tor build correctly for Android phones.
249   o Major bugfixes:
250     - Work around a security feature in OpenSSL 0.9.8l that prevents our
251       handshake from working unless we explicitly tell OpenSSL that we
252       are using SSL renegotiation safely. We are, but OpenSSL 0.9.8l
253       won't work unless we say we are.
255   o Minor bugfixes:
256     - Fix a crash bug when trying to initialize the evdns module in
257       Libevent 2. Bugfix on 0.2.1.16-rc.
258     - Stop logging at severity 'warn' when some other Tor client tries
259       to establish a circuit with us using weak DH keys. It's a protocol
260       violation, but that doesn't mean ordinary users need to hear about
261       it. Fixes the bug part of bug 1114. Bugfix on 0.1.0.13.
262     - Do not refuse to learn about authority certs and v2 networkstatus
263       documents that are older than the latest consensus. This bug might
264       have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
265       Spotted and fixed by xmux.
266     - Fix numerous small code-flaws found by Coverity Scan Rung 3.
267     - If all authorities restart at once right before a consensus vote,
268       nobody will vote about "Running", and clients will get a consensus
269       with no usable relays. Instead, authorities refuse to build a
270       consensus if this happens. Bugfix on 0.2.0.10-alpha; fixes bug 1066.
271     - If your relay can't keep up with the number of incoming create
272       cells, it would log one warning per failure into your logs. Limit
273       warnings to 1 per minute. Bugfix on 0.0.2pre10; fixes bug 1042.
274     - Bridges now use "reject *:*" as their default exit policy. Bugfix
275       on 0.2.0.3-alpha; fixes bug 1113.
276     - Fix a memory leak on directory authorities during voting that was
277       introduced in 0.2.2.1-alpha. Found via valgrind.
280 Changes in version 0.2.1.20 - 2009-10-15
281   Tor 0.2.1.20 fixes a crash bug when you're accessing many hidden
282   services at once, prepares for more performance improvements, and
283   fixes a bunch of smaller bugs.
285   The Windows and OS X bundles also include a more recent Vidalia,
286   and switch from Privoxy to Polipo.
288   The OS X installers are now drag and drop. It's best to un-install
289   Tor/Vidalia and then install this new bundle, rather than upgrade. If
290   you want to upgrade, you'll need to update the paths for Tor and Polipo
291   in the Vidalia Settings window.
293   o Major bugfixes:
294     - Send circuit or stream sendme cells when our window has decreased
295       by 100 cells, not when it has decreased by 101 cells. Bug uncovered
296       by Karsten when testing the "reduce circuit window" performance
297       patch. Bugfix on the 54th commit on Tor -- from July 2002,
298       before the release of Tor 0.0.0. This is the new winner of the
299       oldest-bug prize.
300     - Fix a remotely triggerable memory leak when a consensus document
301       contains more than one signature from the same voter. Bugfix on
302       0.2.0.3-alpha.
303     - Avoid segfault in rare cases when finishing an introduction circuit
304       as a client and finding out that we don't have an introduction key
305       for it. Fixes bug 1073. Reported by Aaron Swartz.
307   o Major features:
308     - Tor now reads the "circwindow" parameter out of the consensus,
309       and uses that value for its circuit package window rather than the
310       default of 1000 cells. Begins the implementation of proposal 168.
312   o New directory authorities:
313     - Set up urras (run by Jacob Appelbaum) as the seventh v3 directory
314       authority.
315     - Move moria1 and tonga to alternate IP addresses.
317   o Minor bugfixes:
318     - Fix a signed/unsigned compile warning in 0.2.1.19.
319     - Fix possible segmentation fault on directory authorities. Bugfix on
320       0.2.1.14-rc.
321     - Fix an extremely rare infinite recursion bug that could occur if
322       we tried to log a message after shutting down the log subsystem.
323       Found by Matt Edman. Bugfix on 0.2.0.16-alpha.
324     - Fix an obscure bug where hidden services on 64-bit big-endian
325       systems might mis-read the timestamp in v3 introduce cells, and
326       refuse to connect back to the client. Discovered by "rotor".
327       Bugfix on 0.2.1.6-alpha.
328     - We were triggering a CLOCK_SKEW controller status event whenever
329       we connect via the v2 connection protocol to any relay that has
330       a wrong clock. Instead, we should only inform the controller when
331       it's a trusted authority that claims our clock is wrong. Bugfix
332       on 0.2.0.20-rc; starts to fix bug 1074. Reported by SwissTorExit.
333     - We were telling the controller about CHECKING_REACHABILITY and
334       REACHABILITY_FAILED status events whenever we launch a testing
335       circuit or notice that one has failed. Instead, only tell the
336       controller when we want to inform the user of overall success or
337       overall failure. Bugfix on 0.1.2.6-alpha. Fixes bug 1075. Reported
338       by SwissTorExit.
339     - Don't warn when we're using a circuit that ends with a node
340       excluded in ExcludeExitNodes, but the circuit is not used to access
341       the outside world. This should help fix bug 1090. Bugfix on
342       0.2.1.6-alpha.
343     - Work around a small memory leak in some versions of OpenSSL that
344       stopped the memory used by the hostname TLS extension from being
345       freed.
347   o Minor features:
348     - Add a "getinfo status/accepted-server-descriptor" controller
349       command, which is the recommended way for controllers to learn
350       whether our server descriptor has been successfully received by at
351       least on directory authority. Un-recommend good-server-descriptor
352       getinfo and status events until we have a better design for them.
355 Changes in version 0.2.2.5-alpha - 2009-10-11
356   Tor 0.2.2.5-alpha fixes a few compile problems in 0.2.2.4-alpha.
358   o Major bugfixes:
359     - Make the tarball compile again. Oops. Bugfix on 0.2.2.4-alpha.
361   o New directory authorities:
362     - Move dizum to an alternate IP address.
365 Changes in version 0.2.2.4-alpha - 2009-10-10
366   Tor 0.2.2.4-alpha fixes more crash bugs in 0.2.2.2-alpha. It also
367   introduces a new unit test framework, shifts directry authority
368   addresses around to reduce the impact from recent blocking events,
369   and fixes a few smaller bugs.
371   o Major bugfixes:
372     - Fix several more asserts in the circuit_build_times code, for
373       example one that causes Tor to fail to start once we have
374       accumulated 5000 build times in the state file. Bugfixes on
375       0.2.2.2-alpha; fixes bug 1108.
377   o New directory authorities:
378     - Move moria1 and Tonga to alternate IP addresses.
380   o Minor features:
381     - Log SSL state transitions at debug level during handshake, and
382       include SSL states in error messages. This may help debug future
383       SSL handshake issues.
384     - Add a new "Handshake" log domain for activities that happen
385       during the TLS handshake.
386     - Revert to the "June 3 2009" ip-to-country file. The September one
387       seems to have removed most US IP addresses.
388     - Directory authorities now reject Tor relays with versions less than
389       0.1.2.14. This step cuts out four relays from the current network,
390       none of which are very big.
392   o Minor bugfixes:
393     - Fix a couple of smaller issues with gathering statistics. Bugfixes
394       on 0.2.2.1-alpha.
395     - Fix two memory leaks in the error case of
396       circuit_build_times_parse_state(). Bugfix on 0.2.2.2-alpha.
397     - Don't count one-hop circuits when we're estimating how long it
398       takes circuits to build on average. Otherwise we'll set our circuit
399       build timeout lower than we should. Bugfix on 0.2.2.2-alpha.
400     - Directory authorities no longer change their opinion of, or vote on,
401       whether a router is Running, unless they have themselves been
402       online long enough to have some idea. Bugfix on 0.2.0.6-alpha.
403       Fixes bug 1023.
405   o Code simplifications and refactoring:
406     - Revise our unit tests to use the "tinytest" framework, so we
407       can run tests in their own processes, have smarter setup/teardown
408       code, and so on. The unit test code has moved to its own
409       subdirectory, and has been split into multiple modules.
412 Changes in version 0.2.2.3-alpha - 2009-09-23
413   Tor 0.2.2.3-alpha fixes a few crash bugs in 0.2.2.2-alpha.
415   o Major bugfixes:
416     - Fix an overzealous assert in our new circuit build timeout code.
417       Bugfix on 0.2.2.2-alpha; fixes bug 1103.
419   o Minor bugfixes:
420     - If the networkstatus consensus tells us that we should use a
421       negative circuit package window, ignore it. Otherwise we'll
422       believe it and then trigger an assert. Bugfix on 0.2.2.2-alpha.
425 Changes in version 0.2.2.2-alpha - 2009-09-21
426   Tor 0.2.2.2-alpha introduces our latest performance improvement for
427   clients: Tor tracks the average time it takes to build a circuit, and
428   avoids using circuits that take too long to build. For fast connections,
429   this feature can cut your expected latency in half. For slow or flaky
430   connections, it could ruin your Tor experience. Let us know if it does!
432   o Major features:
433     - Tor now tracks how long it takes to build client-side circuits
434       over time, and adapts its timeout to local network performance.
435       Since a circuit that takes a long time to build will also provide
436       bad performance, we get significant latency improvements by
437       discarding the slowest 20% of circuits. Specifically, Tor creates
438       circuits more aggressively than usual until it has enough data
439       points for a good timeout estimate. Implements proposal 151.
440       We are especially looking for reports (good and bad) from users with
441       both EDGE and broadband connections that can move from broadband
442       to EDGE and find out if the build-time data in the .tor/state gets
443       reset without loss of Tor usability. You should also see a notice
444       log message telling you that Tor has reset its timeout.
445     - Directory authorities can now vote on arbitary integer values as
446       part of the consensus process. This is designed to help set
447       network-wide parameters. Implements proposal 167.
448     - Tor now reads the "circwindow" parameter out of the consensus,
449       and uses that value for its circuit package window rather than the
450       default of 1000 cells. Begins the implementation of proposal 168.
452   o Major bugfixes:
453     - Fix a remotely triggerable memory leak when a consensus document
454       contains more than one signature from the same voter. Bugfix on
455       0.2.0.3-alpha.
457   o Minor bugfixes:
458     - Fix an extremely rare infinite recursion bug that could occur if
459       we tried to log a message after shutting down the log subsystem.
460       Found by Matt Edman. Bugfix on 0.2.0.16-alpha.
461     - Fix parsing for memory or time units given without a space between
462       the number and the unit. Bugfix on 0.2.2.1-alpha; fixes bug 1076.
463     - A networkstatus vote must contain exactly one signature. Spec
464       conformance issue. Bugfix on 0.2.0.3-alpha.
465     - Fix an obscure bug where hidden services on 64-bit big-endian
466       systems might mis-read the timestamp in v3 introduce cells, and
467       refuse to connect back to the client. Discovered by "rotor".
468       Bugfix on 0.2.1.6-alpha.
469     - We were triggering a CLOCK_SKEW controller status event whenever
470       we connect via the v2 connection protocol to any relay that has
471       a wrong clock. Instead, we should only inform the controller when
472       it's a trusted authority that claims our clock is wrong. Bugfix
473       on 0.2.0.20-rc; starts to fix bug 1074. Reported by SwissTorExit.
474     - We were telling the controller about CHECKING_REACHABILITY and
475       REACHABILITY_FAILED status events whenever we launch a testing
476       circuit or notice that one has failed. Instead, only tell the
477       controller when we want to inform the user of overall success or
478       overall failure. Bugfix on 0.1.2.6-alpha. Fixes bug 1075. Reported
479       by SwissTorExit.
480     - Don't warn when we're using a circuit that ends with a node
481       excluded in ExcludeExitNodes, but the circuit is not used to access
482       the outside world. This should help fix bug 1090, but more problems
483       remain. Bugfix on 0.2.1.6-alpha.
484     - Work around a small memory leak in some versions of OpenSSL that
485       stopped the memory used by the hostname TLS extension from being
486       freed.
487     - Make our 'torify' script more portable; if we have only one of
488       'torsocks' or 'tsocks' installed, don't complain to the user;
489       and explain our warning about tsocks better.
491   o Minor features:
492     - Add a "getinfo status/accepted-server-descriptor" controller
493       command, which is the recommended way for controllers to learn
494       whether our server descriptor has been successfully received by at
495       least on directory authority. Un-recommend good-server-descriptor
496       getinfo and status events until we have a better design for them.
497     - Update to the "September 4 2009" ip-to-country file.
500 Changes in version 0.2.2.1-alpha - 2009-08-26
501   Tor 0.2.2.1-alpha disables ".exit" address notation by default, allows
502   Tor clients to bootstrap on networks where only port 80 is reachable,
503   makes it more straightforward to support hardware crypto accelerators,
504   and starts the groundwork for gathering stats safely at relays.
506   o Security fixes:
507     - Start the process of disabling ".exit" address notation, since it
508       can be used for a variety of esoteric application-level attacks
509       on users. To reenable it, set "AllowDotExit 1" in your torrc. Fix
510       on 0.0.9rc5.
512   o New directory authorities:
513     - Set up urras (run by Jacob Appelbaum) as the seventh v3 directory
514       authority.
516   o Major features:
517     - New AccelName and AccelDir options add support for dynamic OpenSSL
518       hardware crypto acceleration engines.
519     - Tor now supports tunneling all of its outgoing connections over
520       a SOCKS proxy, using the SOCKS4Proxy and/or SOCKS5Proxy
521       configuration options. Code by Christopher Davis.
523   o Major bugfixes:
524     - Send circuit or stream sendme cells when our window has decreased
525       by 100 cells, not when it has decreased by 101 cells. Bug uncovered
526       by Karsten when testing the "reduce circuit window" performance
527       patch. Bugfix on the 54th commit on Tor -- from July 2002,
528       before the release of Tor 0.0.0. This is the new winner of the
529       oldest-bug prize.
531   o New options for gathering stats safely:
532     - Directories that set "DirReqStatistics 1" write statistics on
533       directory request to disk every 24 hours. As compared to the
534       --enable-geoip-stats flag in 0.2.1.x, there are a few improvements:
535       1) stats are written to disk exactly every 24 hours; 2) estimated
536       shares of v2 and v3 requests are determined as mean values, not at
537       the end of a measurement period; 3) unresolved requests are listed
538       with country code '??'; 4) directories also measure download times.
539     - Exit nodes that set "ExitPortStatistics 1" write statistics on the
540       number of exit streams and transferred bytes per port to disk every
541       24 hours.
542     - Relays that set "CellStatistics 1" write statistics on how long
543       cells spend in their circuit queues to disk every 24 hours.
544     - Entry nodes that set "EntryStatistics 1" write statistics on the
545       rough number and origins of connecting clients to disk every 24
546       hours.
547     - Relays that write any of the above statistics to disk and set
548       "ExtraInfoStatistics 1" include the past 24 hours of statistics in
549       their extra-info documents.
551   o Minor features:
552     - New --digests command-line switch to output the digests of the
553       source files Tor was built with.
554     - The "torify" script now uses torsocks where available.
555     - The memarea code now uses a sentinel value at the end of each area
556       to make sure nothing writes beyond the end of an area. This might
557       help debug some conceivable causes of bug 930.
558     - Time and memory units in the configuration file can now be set to
559       fractional units. For example, "2.5 GB" is now a valid value for
560       AccountingMax.
561     - Certain Tor clients (such as those behind check.torproject.org) may
562       want to fetch the consensus in an extra early manner. To enable this
563       a user may now set FetchDirInfoExtraEarly to 1. This also depends on
564       setting FetchDirInfoEarly to 1. Previous behavior will stay the same
565       as only certain clients who must have this information sooner should
566       set this option.
567     - Instead of adding the svn revision to the Tor version string, report
568       the git commit (when we're building from a git checkout).
570   o Minor bugfixes:
571     - If any the v3 certs we download are unparseable, we should actually
572       notice the failure so we don't retry indefinitely. Bugfix on
573       0.2.0.x; reported by "rotator".
574     - If the cached cert file is unparseable, warn but don't exit.
575     - Fix possible segmentation fault on directory authorities. Bugfix on
576       0.2.1.14-rc.
577     - When Tor fails to parse a descriptor of any kind, dump it to disk.
578       Might help diagnosing bug 1051.
580   o Deprecated and removed features:
581     - The controller no longer accepts the old obsolete "addr-mappings/"
582       or "unregistered-servers-" GETINFO values.
583     - Hidden services no longer publish version 0 descriptors, and clients
584       do not request or use version 0 descriptors. However, the old hidden
585       service authorities still accept and serve version 0 descriptors
586       when contacted by older hidden services/clients.
587     - The EXTENDED_EVENTS and VERBOSE_NAMES controller features are now
588       always on; using them is necessary for correct forward-compatible
589       controllers.
590     - Remove support for .noconnect style addresses. Nobody was using
591       them, and they provided another avenue for detecting Tor users
592       via application-level web tricks.
594   o Packaging changes:
595     - Upgrade Vidalia from 0.1.15 to 0.2.3 in the Windows and OS X
596       installer bundles. See
597       https://trac.vidalia-project.net/browser/vidalia/tags/vidalia-0.2.3/CHANGELOG
598       for details of what's new in Vidalia 0.2.3.
599     - Windows Vidalia Bundle: update Privoxy from 3.0.6 to 3.0.14-beta.
600     - OS X Vidalia Bundle: move to Polipo 1.0.4 with Tor specific
601       configuration file, rather than the old Privoxy.
602     - OS X Vidalia Bundle: Vidalia, Tor, and Polipo are compiled as
603       x86-only for better compatibility with OS X 10.6, aka Snow Leopard.
604     - OS X Tor Expert Bundle: Tor is compiled as x86-only for
605       better compatibility with OS X 10.6, aka Snow Leopard.
606     - OS X Vidalia Bundle: The multi-package installer is now replaced
607       by a simple drag and drop to the /Applications folder. This change
608       occurred with the upgrade to Vidalia 0.2.3.
611 Changes in version 0.2.1.19 - 2009-07-28
612   Tor 0.2.1.19 fixes a major bug with accessing and providing hidden
613   services on Tor 0.2.1.3-alpha through 0.2.1.18.
615   o Major bugfixes:
616     - Make accessing hidden services on 0.2.1.x work right again.
617       Bugfix on 0.2.1.3-alpha; workaround for bug 1038. Diagnosis and
618       part of patch provided by "optimist".
620   o Minor features:
621     - When a relay/bridge is writing out its identity key fingerprint to
622       the "fingerprint" file and to its logs, write it without spaces. Now
623       it will look like the fingerprints in our bridges documentation,
624       and confuse fewer users.
626   o Minor bugfixes:
627     - Relays no longer publish a new server descriptor if they change
628       their MaxAdvertisedBandwidth config option but it doesn't end up
629       changing their advertised bandwidth numbers. Bugfix on 0.2.0.28-rc;
630       fixes bug 1026. Patch from Sebastian.
631     - Avoid leaking memory every time we get a create cell but we have
632       so many already queued that we refuse it. Bugfix on 0.2.0.19-alpha;
633       fixes bug 1034. Reported by BarkerJr.
636 Changes in version 0.2.1.18 - 2009-07-24
637   Tor 0.2.1.18 lays the foundations for performance improvements,
638   adds status events to help users diagnose bootstrap problems, adds
639   optional authentication/authorization for hidden services, fixes a
640   variety of potential anonymity problems, and includes a huge pile of
641   other features and bug fixes.
643   o Build fixes:
644     - Add LIBS=-lrt to Makefile.am so the Tor RPMs use a static libevent.
647 Changes in version 0.2.1.17-rc - 2009-07-07
648   Tor 0.2.1.17-rc marks the fourth -- and hopefully last -- release
649   candidate for the 0.2.1.x series. It lays the groundwork for further
650   client performance improvements, and also fixes a big bug with directory
651   authorities that were causing them to assign Guard and Stable flags
652   poorly.
654   The Windows bundles also finally include the geoip database that we
655   thought we'd been shipping since 0.2.0.x (oops), and the OS X bundles
656   should actually install Torbutton rather than giving you a cryptic
657   failure message (oops).
659   o Major features:
660     - Clients now use the bandwidth values in the consensus, rather than
661       the bandwidth values in each relay descriptor. This approach opens
662       the door to more accurate bandwidth estimates once the directory
663       authorities start doing active measurements. Implements more of
664       proposal 141.
666   o Major bugfixes:
667     - When Tor clients restart after 1-5 days, they discard all their
668       cached descriptors as too old, but they still use the cached
669       consensus document. This approach is good for robustness, but
670       bad for performance: since they don't know any bandwidths, they
671       end up choosing at random rather than weighting their choice by
672       speed. Fixed by the above feature of putting bandwidths in the
673       consensus. Bugfix on 0.2.0.x.
674     - Directory authorities were neglecting to mark relays down in their
675       internal histories if the relays fall off the routerlist without
676       ever being found unreachable. So there were relays in the histories
677       that haven't been seen for eight months, and are listed as being
678       up for eight months. This wreaked havoc on the "median wfu"
679       and "median mtbf" calculations, in turn making Guard and Stable
680       flags very wrong, hurting network performance. Fixes bugs 696 and
681       969. Bugfix on 0.2.0.6-alpha.
683   o Minor bugfixes:
684     - Serve the DirPortFrontPage page even when we have been approaching
685       our quotas recently. Fixes bug 1013; bugfix on 0.2.1.8-alpha.
686     - The control port would close the connection before flushing long
687       replies, such as the network consensus, if a QUIT command was issued
688       before the reply had completed. Now, the control port flushes all
689       pending replies before closing the connection. Also fixed a spurious
690       warning when a QUIT command is issued after a malformed or rejected
691       AUTHENTICATE command, but before the connection was closed. Patch
692       by Marcus Griep. Bugfix on 0.2.0.x; fixes bugs 1015 and 1016.
693     - When we can't find an intro key for a v2 hidden service descriptor,
694       fall back to the v0 hidden service descriptor and log a bug message.
695       Workaround for bug 1024.
696     - Fix a log message that did not respect the SafeLogging option.
697       Resolves bug 1027.
699   o Minor features:
700     - If we're a relay and we change our IP address, be more verbose
701       about the reason that made us change. Should help track down
702       further bugs for relays on dynamic IP addresses.
705 Changes in version 0.2.0.35 - 2009-06-24
706   o Security fix:
707     - Avoid crashing in the presence of certain malformed descriptors.
708       Found by lark, and by automated fuzzing.
709     - Fix an edge case where a malicious exit relay could convince a
710       controller that the client's DNS question resolves to an internal IP
711       address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta.
713   o Major bugfixes:
714     - Finally fix the bug where dynamic-IP relays disappear when their
715       IP address changes: directory mirrors were mistakenly telling
716       them their old address if they asked via begin_dir, so they
717       never got an accurate answer about their new address, so they
718       just vanished after a day. For belt-and-suspenders, relays that
719       don't set Address in their config now avoid using begin_dir for
720       all direct connections. Should fix bugs 827, 883, and 900.
721     - Fix a timing-dependent, allocator-dependent, DNS-related crash bug
722       that would occur on some exit nodes when DNS failures and timeouts
723       occurred in certain patterns. Fix for bug 957.
725   o Minor bugfixes:
726     - When starting with a cache over a few days old, do not leak
727       memory for the obsolete router descriptors in it. Bugfix on
728       0.2.0.33; fixes bug 672.
729     - Hidden service clients didn't use a cached service descriptor that
730       was older than 15 minutes, but wouldn't fetch a new one either,
731       because there was already one in the cache. Now, fetch a v2
732       descriptor unless the same descriptor was added to the cache within
733       the last 15 minutes. Fixes bug 997; reported by Marcus Griep.
736 Changes in version 0.2.1.16-rc - 2009-06-20
737   Tor 0.2.1.16-rc speeds up performance for fast exit relays, and fixes
738   a bunch of minor bugs.
740   o Security fixes:
741     - Fix an edge case where a malicious exit relay could convince a
742       controller that the client's DNS question resolves to an internal IP
743       address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta.
745   o Major performance improvements (on 0.2.0.x):
746     - Disable and refactor some debugging checks that forced a linear scan
747       over the whole server-side DNS cache. These accounted for over 50%
748       of CPU time on a relatively busy exit node's gprof profile. Found
749       by Jacob.
750     - Disable some debugging checks that appeared in exit node profile
751       data.
753   o Minor features:
754     - Update to the "June 3 2009" ip-to-country file.
755     - Do not have tor-resolve automatically refuse all .onion addresses;
756       if AutomapHostsOnResolve is set in your torrc, this will work fine.
758   o Minor bugfixes (on 0.2.0.x):
759     - Log correct error messages for DNS-related network errors on
760       Windows.
761     - Fix a race condition that could cause crashes or memory corruption
762       when running as a server with a controller listening for log
763       messages.
764     - Avoid crashing when we have a policy specified in a DirPolicy or
765       SocksPolicy or ReachableAddresses option with ports set on it,
766       and we re-load the policy. May fix bug 996.
767     - Hidden service clients didn't use a cached service descriptor that
768       was older than 15 minutes, but wouldn't fetch a new one either,
769       because there was already one in the cache. Now, fetch a v2
770       descriptor unless the same descriptor was added to the cache within
771       the last 15 minutes. Fixes bug 997; reported by Marcus Griep.
773   o Minor bugfixes (on 0.2.1.x):
774     - Don't warn users about low port and hibernation mix when they
775       provide a *ListenAddress directive to fix that. Bugfix on
776       0.2.1.15-rc.
777     - When switching back and forth between bridge mode, do not start
778       gathering GeoIP data until two hours have passed.
779     - Do not complain that the user has requested an excluded node as
780       an exit when the node is not really an exit. This could happen
781       because the circuit was for testing, or an introduction point.
782       Fix for bug 984.
785 Changes in version 0.2.1.15-rc - 2009-05-25
786   Tor 0.2.1.15-rc marks the second release candidate for the 0.2.1.x
787   series. It fixes a major bug on fast exit relays, as well as a variety
788   of more minor bugs.
790   o Major bugfixes (on 0.2.0.x):
791     - Fix a timing-dependent, allocator-dependent, DNS-related crash bug
792       that would occur on some exit nodes when DNS failures and timeouts
793       occurred in certain patterns. Fix for bug 957.
795   o Minor bugfixes (on 0.2.0.x):
796     - Actually return -1 in the error case for read_bandwidth_usage().
797       Harmless bug, since we currently don't care about the return value
798       anywhere. Bugfix on 0.2.0.9-alpha.
799     - Provide a more useful log message if bug 977 (related to buffer
800       freelists) ever reappears, and do not crash right away.
801     - Fix an assertion failure on 64-bit platforms when we allocated
802       memory right up to the end of a memarea, then realigned the memory
803       one step beyond the end. Fixes a possible cause of bug 930.
804     - Protect the count of open sockets with a mutex, so we can't
805       corrupt it when two threads are closing or opening sockets at once.
806       Fix for bug 939. Bugfix on 0.2.0.1-alpha.
807     - Don't allow a bridge to publish its router descriptor to a
808       non-bridge directory authority. Fixes part of bug 932.
809     - When we change to or from being a bridge, reset our counts of
810       client usage by country. Fixes bug 932.
811     - Fix a bug that made stream bandwidth get misreported to the
812       controller.
813     - Stop using malloc_usable_size() to use more area than we had
814       actually allocated: it was safe, but made valgrind really unhappy.
815     - Fix a memory leak when v3 directory authorities load their keys
816       and cert from disk. Bugfix on 0.2.0.1-alpha.
818   o Minor bugfixes (on 0.2.1.x):
819     - Fix use of freed memory when deciding to mark a non-addable
820       descriptor as never-downloadable. Bugfix on 0.2.1.9-alpha.
823 Changes in version 0.2.1.14-rc - 2009-04-12
824   Tor 0.2.1.14-rc marks the first release candidate for the 0.2.1.x
825   series. It begins fixing some major performance problems, and also
826   finally addresses the bug that was causing relays on dynamic IP
827   addresses to fall out of the directory.
829   o Major features:
830     - Clients replace entry guards that were chosen more than a few months
831       ago. This change should significantly improve client performance,
832       especially once more people upgrade, since relays that have been
833       a guard for a long time are currently overloaded.
835   o Major bugfixes (on 0.2.0):
836     - Finally fix the bug where dynamic-IP relays disappear when their
837       IP address changes: directory mirrors were mistakenly telling
838       them their old address if they asked via begin_dir, so they
839       never got an accurate answer about their new address, so they
840       just vanished after a day. For belt-and-suspenders, relays that
841       don't set Address in their config now avoid using begin_dir for
842       all direct connections. Should fix bugs 827, 883, and 900.
843     - Relays were falling out of the networkstatus consensus for
844       part of a day if they changed their local config but the
845       authorities discarded their new descriptor as "not sufficiently
846       different". Now directory authorities accept a descriptor as changed
847       if bandwidthrate or bandwidthburst changed. Partial fix for bug 962;
848       patch by Sebastian.
849     - Avoid crashing in the presence of certain malformed descriptors.
850       Found by lark, and by automated fuzzing.
852   o Minor features:
853     - When generating circuit events with verbose nicknames for
854       controllers, try harder to look up nicknames for routers on a
855       circuit. (Previously, we would look in the router descriptors we had
856       for nicknames, but not in the consensus.) Partial fix for bug 941.
857     - If the bridge config line doesn't specify a port, assume 443.
858       This makes bridge lines a bit smaller and easier for users to
859       understand.
860     - Raise the minimum bandwidth to be a relay from 20000 bytes to 20480
861       bytes (aka 20KB/s), to match our documentation. Also update
862       directory authorities so they always assign the Fast flag to relays
863       with 20KB/s of capacity. Now people running relays won't suddenly
864       find themselves not seeing any use, if the network gets faster
865       on average.
866     - Update to the "April 3 2009" ip-to-country file.
868   o Minor bugfixes:
869     - Avoid trying to print raw memory to the logs when we decide to
870       give up on downloading a given relay descriptor. Bugfix on
871       0.2.1.9-alpha.
872     - In tor-resolve, when the Tor client to use is specified by
873       <hostname>:<port>, actually use the specified port rather than
874       defaulting to 9050. Bugfix on 0.2.1.6-alpha.
875     - Make directory usage recording work again. Bugfix on 0.2.1.6-alpha.
876     - When starting with a cache over a few days old, do not leak
877       memory for the obsolete router descriptors in it. Bugfix on
878       0.2.0.33.
879     - Avoid double-free on list of successfully uploaded hidden
880       service discriptors. Fix for bug 948. Bugfix on 0.2.1.6-alpha.
881     - Change memarea_strndup() implementation to work even when
882       duplicating a string at the end of a page. This bug was
883       harmless for now, but could have meant crashes later. Fix by
884       lark. Bugfix on 0.2.1.1-alpha.
885     - Limit uploaded directory documents to be 16M rather than 500K.
886       The directory authorities were refusing v3 consensus votes from
887       other authorities, since the votes are now 504K. Fixes bug 959;
888       bugfix on 0.0.2pre17 (where we raised it from 50K to 500K ;).
889     - Directory authorities should never send a 503 "busy" response to
890       requests for votes or keys. Bugfix on 0.2.0.8-alpha; exposed by
891       bug 959.
894 Changes in version 0.2.1.13-alpha - 2009-03-09
895   Tor 0.2.1.13-alpha includes another big pile of minor bugfixes and
896   cleanups. We're finally getting close to a release candidate.
898   o Major bugfixes:
899     - Correctly update the list of which countries we exclude as
900       exits, when the GeoIP file is loaded or reloaded. Diagnosed by
901       lark. Bugfix on 0.2.1.6-alpha.
903   o Minor bugfixes (on 0.2.0.x and earlier):
904     - Automatically detect MacOSX versions earlier than 10.4.0, and
905       disable kqueue from inside Tor when running with these versions.
906       We previously did this from the startup script, but that was no
907       help to people who didn't use the startup script. Resolves bug 863.
908     - When we had picked an exit node for a connection, but marked it as
909       "optional", and it turned out we had no onion key for the exit,
910       stop wanting that exit and try again. This situation may not
911       be possible now, but will probably become feasible with proposal
912       158. Spotted by rovv. Fixes another case of bug 752.
913     - Clients no longer cache certificates for authorities they do not
914       recognize. Bugfix on 0.2.0.9-alpha.
915     - When we can't transmit a DNS request due to a network error, retry
916       it after a while, and eventually transmit a failing response to
917       the RESOLVED cell. Bugfix on 0.1.2.5-alpha.
918     - If the controller claimed responsibility for a stream, but that
919       stream never finished making its connection, it would live
920       forever in circuit_wait state. Now we close it after SocksTimeout
921       seconds. Bugfix on 0.1.2.7-alpha; reported by Mike Perry.
922     - Drop begin cells to a hidden service if they come from the middle
923       of a circuit. Patch from lark.
924     - When we erroneously receive two EXTEND cells for the same circuit
925       ID on the same connection, drop the second. Patch from lark.
926     - Fix a crash that occurs on exit nodes when a nameserver request
927       timed out. Bugfix on 0.1.2.1-alpha; our CLEAR debugging code had
928       been suppressing the bug since 0.1.2.10-alpha. Partial fix for
929       bug 929.
930     - Do not assume that a stack-allocated character array will be
931       64-bit aligned on platforms that demand that uint64_t access is
932       aligned. Possible fix for bug 604.
933     - Parse dates and IPv4 addresses in a locale- and libc-independent
934       manner, to avoid platform-dependent behavior on malformed input.
935     - Build correctly when configured to build outside the main source
936       path. Patch from Michael Gold.
937     - We were already rejecting relay begin cells with destination port
938       of 0. Now also reject extend cells with destination port or address
939       of 0. Suggested by lark.
941   o Minor bugfixes (on 0.2.1.x):
942     - Don't re-extend introduction circuits if we ran out of RELAY_EARLY
943       cells. Bugfix on 0.2.1.3-alpha. Fixes more of bug 878.
944     - If we're an exit node, scrub the IP address to which we are exiting
945       in the logs. Bugfix on 0.2.1.8-alpha.
947   o Minor features:
948     - On Linux, use the prctl call to re-enable core dumps when the user
949       is option is set.
950     - New controller event NEWCONSENSUS that lists the networkstatus
951       lines for every recommended relay. Now controllers like Torflow
952       can keep up-to-date on which relays they should be using.
953     - Update to the "February 26 2009" ip-to-country file.
956 Changes in version 0.2.0.34 - 2009-02-08
957   Tor 0.2.0.34 features several more security-related fixes. You should
958   upgrade, especially if you run an exit relay (remote crash) or a
959   directory authority (remote infinite loop), or you're on an older
960   (pre-XP) or not-recently-patched Windows (remote exploit).
962   This release marks end-of-life for Tor 0.1.2.x. Those Tor versions
963   have many known flaws, and nobody should be using them. You should
964   upgrade. If you're using a Linux or BSD and its packages are obsolete,
965   stop using those packages and upgrade anyway.
967   o Security fixes:
968     - Fix an infinite-loop bug on handling corrupt votes under certain
969       circumstances. Bugfix on 0.2.0.8-alpha.
970     - Fix a temporary DoS vulnerability that could be performed by
971       a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark.
972     - Avoid a potential crash on exit nodes when processing malformed
973       input. Remote DoS opportunity. Bugfix on 0.2.0.33.
974     - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid.
975       Spec conformance issue. Bugfix on Tor 0.0.2pre27.
977   o Minor bugfixes:
978     - Fix compilation on systems where time_t is a 64-bit integer.
979       Patch from Matthias Drochner.
980     - Don't consider expiring already-closed client connections. Fixes
981       bug 893. Bugfix on 0.0.2pre20.
984 Changes in version 0.2.1.12-alpha - 2009-02-08
985   Tor 0.2.1.12-alpha features several more security-related fixes. You
986   should upgrade, especially if you run an exit relay (remote crash) or
987   a directory authority (remote infinite loop), or you're on an older
988   (pre-XP) or not-recently-patched Windows (remote exploit). It also
989   includes a big pile of minor bugfixes and cleanups.
991   o Security fixes:
992     - Fix an infinite-loop bug on handling corrupt votes under certain
993       circumstances. Bugfix on 0.2.0.8-alpha.
994     - Fix a temporary DoS vulnerability that could be performed by
995       a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark.
996     - Avoid a potential crash on exit nodes when processing malformed
997       input. Remote DoS opportunity. Bugfix on 0.2.1.7-alpha.
999   o Minor bugfixes:
1000     - Let controllers actually ask for the "clients_seen" event for
1001       getting usage summaries on bridge relays. Bugfix on 0.2.1.10-alpha;
1002       reported by Matt Edman.
1003     - Fix a compile warning on OSX Panther. Fixes bug 913; bugfix against
1004       0.2.1.11-alpha.
1005     - Fix a bug in address parsing that was preventing bridges or hidden
1006       service targets from being at IPv6 addresses.
1007     - Solve a bug that kept hardware crypto acceleration from getting
1008       enabled when accounting was turned on. Fixes bug 907. Bugfix on
1009       0.0.9pre6.
1010     - Remove a bash-ism from configure.in to build properly on non-Linux
1011       platforms. Bugfix on 0.2.1.1-alpha.
1012     - Fix code so authorities _actually_ send back X-Descriptor-Not-New
1013       headers. Bugfix on 0.2.0.10-alpha.
1014     - Don't consider expiring already-closed client connections. Fixes
1015       bug 893. Bugfix on 0.0.2pre20.
1016     - Fix another interesting corner-case of bug 891 spotted by rovv:
1017       Previously, if two hosts had different amounts of clock drift, and
1018       one of them created a new connection with just the wrong timing,
1019       the other might decide to deprecate the new connection erroneously.
1020       Bugfix on 0.1.1.13-alpha.
1021     - Resolve a very rare crash bug that could occur when the user forced
1022       a nameserver reconfiguration during the middle of a nameserver
1023       probe. Fixes bug 526. Bugfix on 0.1.2.1-alpha.
1024     - Support changing value of ServerDNSRandomizeCase during SIGHUP.
1025       Bugfix on 0.2.1.7-alpha.
1026     - If we're using bridges and our network goes away, be more willing
1027       to forgive our bridges and try again when we get an application
1028       request. Bugfix on 0.2.0.x.
1030   o Minor features:
1031     - Support platforms where time_t is 64 bits long. (Congratulations,
1032       NetBSD!) Patch from Matthias Drochner.
1033     - Add a 'getinfo status/clients-seen' controller command, in case
1034       controllers want to hear clients_seen events but connect late.
1036   o Build changes:
1037     - Disable GCC's strict alias optimization by default, to avoid the
1038       likelihood of its introducing subtle bugs whenever our code violates
1039       the letter of C99's alias rules.
1042 Changes in version 0.2.0.33 - 2009-01-21
1043   Tor 0.2.0.33 fixes a variety of bugs that were making relays less
1044   useful to users. It also finally fixes a bug where a relay or client
1045   that's been off for many days would take a long time to bootstrap.
1047   This update also fixes an important security-related bug reported by
1048   Ilja van Sprundel. You should upgrade. (We'll send out more details
1049   about the bug once people have had some time to upgrade.)
1051   o Security fixes:
1052     - Fix a heap-corruption bug that may be remotely triggerable on
1053       some platforms. Reported by Ilja van Sprundel.
1055   o Major bugfixes:
1056     - When a stream at an exit relay is in state "resolving" or
1057       "connecting" and it receives an "end" relay cell, the exit relay
1058       would silently ignore the end cell and not close the stream. If
1059       the client never closes the circuit, then the exit relay never
1060       closes the TCP connection. Bug introduced in Tor 0.1.2.1-alpha;
1061       reported by "wood".
1062     - When sending CREATED cells back for a given circuit, use a 64-bit
1063       connection ID to find the right connection, rather than an addr:port
1064       combination. Now that we can have multiple OR connections between
1065       the same ORs, it is no longer possible to use addr:port to uniquely
1066       identify a connection.
1067     - Bridge relays that had DirPort set to 0 would stop fetching
1068       descriptors shortly after startup, and then briefly resume
1069       after a new bandwidth test and/or after publishing a new bridge
1070       descriptor. Bridge users that try to bootstrap from them would
1071       get a recent networkstatus but would get descriptors from up to
1072       18 hours earlier, meaning most of the descriptors were obsolete
1073       already. Reported by Tas; bugfix on 0.2.0.13-alpha.
1074     - Prevent bridge relays from serving their 'extrainfo' document
1075       to anybody who asks, now that extrainfo docs include potentially
1076       sensitive aggregated client geoip summaries. Bugfix on
1077       0.2.0.13-alpha.
1078     - If the cached networkstatus consensus is more than five days old,
1079       discard it rather than trying to use it. In theory it could be
1080       useful because it lists alternate directory mirrors, but in practice
1081       it just means we spend many minutes trying directory mirrors that
1082       are long gone from the network. Also discard router descriptors as
1083       we load them if they are more than five days old, since the onion
1084       key is probably wrong by now. Bugfix on 0.2.0.x. Fixes bug 887.
1086   o Minor bugfixes:
1087     - Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug
1088       could make gcc generate non-functional binary search code. Bugfix
1089       on 0.2.0.10-alpha.
1090     - Build correctly on platforms without socklen_t.
1091     - Compile without warnings on solaris.
1092     - Avoid potential crash on internal error during signature collection.
1093       Fixes bug 864. Patch from rovv.
1094     - Correct handling of possible malformed authority signing key
1095       certificates with internal signature types. Fixes bug 880.
1096       Bugfix on 0.2.0.3-alpha.
1097     - Fix a hard-to-trigger resource leak when logging credential status.
1098       CID 349.
1099     - When we can't initialize DNS because the network is down, do not
1100       automatically stop Tor from starting. Instead, we retry failed
1101       dns_init() every 10 minutes, and change the exit policy to reject
1102       *:* until one succeeds. Fixes bug 691.
1103     - Use 64 bits instead of 32 bits for connection identifiers used with
1104       the controller protocol, to greatly reduce risk of identifier reuse.
1105     - When we're choosing an exit node for a circuit, and we have
1106       no pending streams, choose a good general exit rather than one that
1107       supports "all the pending streams". Bugfix on 0.1.1.x. Fix by rovv.
1108     - Fix another case of assuming, when a specific exit is requested,
1109       that we know more than the user about what hosts it allows.
1110       Fixes one case of bug 752. Patch from rovv.
1111     - Clip the MaxCircuitDirtiness config option to a minimum of 10
1112       seconds. Warn the user if lower values are given in the
1113       configuration. Bugfix on 0.1.0.1-rc. Patch by Sebastian.
1114     - Clip the CircuitBuildTimeout to a minimum of 30 seconds. Warn the
1115       user if lower values are given in the configuration. Bugfix on
1116       0.1.1.17-rc. Patch by Sebastian.
1117     - Fix a memory leak when we decline to add a v2 rendezvous descriptor to
1118       the cache because we already had a v0 descriptor with the same ID.
1119       Bugfix on 0.2.0.18-alpha.
1120     - Fix a race condition when freeing keys shared between main thread
1121       and CPU workers that could result in a memory leak. Bugfix on
1122       0.1.0.1-rc. Fixes bug 889.
1123     - Send a valid END cell back when a client tries to connect to a
1124       nonexistent hidden service port. Bugfix on 0.1.2.15. Fixes bug
1125       840. Patch from rovv.
1126     - Check which hops rendezvous stream cells are associated with to
1127       prevent possible guess-the-streamid injection attacks from
1128       intermediate hops. Fixes another case of bug 446. Based on patch
1129       from rovv.
1130     - If a broken client asks a non-exit router to connect somewhere,
1131       do not even do the DNS lookup before rejecting the connection.
1132       Fixes another case of bug 619. Patch from rovv.
1133     - When a relay gets a create cell it can't decrypt (e.g. because it's
1134       using the wrong onion key), we were dropping it and letting the
1135       client time out. Now actually answer with a destroy cell. Fixes
1136       bug 904. Bugfix on 0.0.2pre8.
1138   o Minor bugfixes (hidden services):
1139     - Do not throw away existing introduction points on SIGHUP. Bugfix on
1140       0.0.6pre1. Patch by Karsten. Fixes bug 874.
1142   o Minor features:
1143     - Report the case where all signatures in a detached set are rejected
1144       differently than the case where there is an error handling the
1145       detached set.
1146     - When we realize that another process has modified our cached
1147       descriptors, print out a more useful error message rather than
1148       triggering an assertion. Fixes bug 885. Patch from Karsten.
1149     - Implement the 0x20 hack to better resist DNS poisoning: set the
1150       case on outgoing DNS requests randomly, and reject responses that do
1151       not match the case correctly. This logic can be disabled with the
1152       ServerDNSRamdomizeCase setting, if you are using one of the 0.3%
1153       of servers that do not reliably preserve case in replies. See
1154       "Increased DNS Forgery Resistance through 0x20-Bit Encoding"
1155       for more info.
1156     - Check DNS replies for more matching fields to better resist DNS
1157       poisoning.
1158     - Never use OpenSSL compression: it wastes RAM and CPU trying to
1159       compress cells, which are basically all encrypted, compressed, or
1160       both.
1163 Changes in version 0.2.1.11-alpha - 2009-01-20
1164   Tor 0.2.1.11-alpha finishes fixing the "if your Tor is off for a
1165   week it will take a long time to bootstrap again" bug. It also fixes
1166   an important security-related bug reported by Ilja van Sprundel. You
1167   should upgrade. (We'll send out more details about the bug once people
1168   have had some time to upgrade.)
1170   o Security fixes:
1171     - Fix a heap-corruption bug that may be remotely triggerable on
1172       some platforms. Reported by Ilja van Sprundel.
1174   o Major bugfixes:
1175     - Discard router descriptors as we load them if they are more than
1176       five days old. Otherwise if Tor is off for a long time and then
1177       starts with cached descriptors, it will try to use the onion
1178       keys in those obsolete descriptors when building circuits. Bugfix
1179       on 0.2.0.x. Fixes bug 887.
1181   o Minor features:
1182     - Try to make sure that the version of Libevent we're running with
1183       is binary-compatible with the one we built with. May address bug
1184       897 and others.
1185     - Make setting ServerDNSRandomizeCase to 0 actually work. Bugfix
1186       for bug 905. Bugfix on 0.2.1.7-alpha.
1187     - Add a new --enable-local-appdata configuration switch to change
1188       the default location of the datadir on win32 from APPDATA to
1189       LOCAL_APPDATA. In the future, we should migrate to LOCAL_APPDATA
1190       entirely. Patch from coderman.
1192   o Minor bugfixes:
1193     - Make outbound DNS packets respect the OutboundBindAddress setting.
1194       Fixes the bug part of bug 798. Bugfix on 0.1.2.2-alpha.
1195     - When our circuit fails at the first hop (e.g. we get a destroy
1196       cell back), avoid using that OR connection anymore, and also
1197       tell all the one-hop directory requests waiting for it that they
1198       should fail. Bugfix on 0.2.1.3-alpha.
1199     - In the torify(1) manpage, mention that tsocks will leak your
1200       DNS requests.
1203 Changes in version 0.2.1.10-alpha - 2009-01-06
1204   Tor 0.2.1.10-alpha fixes two major bugs in bridge relays (one that
1205   would make the bridge relay not so useful if it had DirPort set to 0,
1206   and one that could let an attacker learn a little bit of information
1207   about the bridge's users), and a bug that would cause your Tor relay
1208   to ignore a circuit create request it can't decrypt (rather than reply
1209   with an error). It also fixes a wide variety of other bugs.
1211   o Major bugfixes:
1212     - If the cached networkstatus consensus is more than five days old,
1213       discard it rather than trying to use it. In theory it could
1214       be useful because it lists alternate directory mirrors, but in
1215       practice it just means we spend many minutes trying directory
1216       mirrors that are long gone from the network. Helps bug 887 a bit;
1217       bugfix on 0.2.0.x.
1218     - Bridge relays that had DirPort set to 0 would stop fetching
1219       descriptors shortly after startup, and then briefly resume
1220       after a new bandwidth test and/or after publishing a new bridge
1221       descriptor. Bridge users that try to bootstrap from them would
1222       get a recent networkstatus but would get descriptors from up to
1223       18 hours earlier, meaning most of the descriptors were obsolete
1224       already. Reported by Tas; bugfix on 0.2.0.13-alpha.
1225     - Prevent bridge relays from serving their 'extrainfo' document
1226       to anybody who asks, now that extrainfo docs include potentially
1227       sensitive aggregated client geoip summaries. Bugfix on
1228       0.2.0.13-alpha.
1230   o Minor features:
1231     - New controller event "clients_seen" to report a geoip-based summary
1232       of which countries we've seen clients from recently. Now controllers
1233       like Vidalia can show bridge operators that they're actually making
1234       a difference.
1235     - Build correctly against versions of OpenSSL 0.9.8 or later built
1236       without support for deprecated functions.
1237     - Update to the "December 19 2008" ip-to-country file.
1239   o Minor bugfixes (on 0.2.0.x):
1240     - Authorities now vote for the Stable flag for any router whose
1241       weighted MTBF is at least 5 days, regardless of the mean MTBF.
1242     - Do not remove routers as too old if we do not have any consensus
1243       document. Bugfix on 0.2.0.7-alpha.
1244     - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid.
1245       Spec conformance issue. Bugfix on Tor 0.0.2pre27.
1246     - When an exit relay resolves a stream address to a local IP address,
1247       do not just keep retrying that same exit relay over and
1248       over. Instead, just close the stream. Addresses bug 872. Bugfix
1249       on 0.2.0.32. Patch from rovv.
1250     - If a hidden service sends us an END cell, do not consider
1251       retrying the connection; just close it. Patch from rovv.
1252     - When we made bridge authorities stop serving bridge descriptors over
1253       unencrypted links, we also broke DirPort reachability testing for
1254       bridges. So bridges with a non-zero DirPort were printing spurious
1255       warns to their logs. Bugfix on 0.2.0.16-alpha. Fixes bug 709.
1256     - When a relay gets a create cell it can't decrypt (e.g. because it's
1257       using the wrong onion key), we were dropping it and letting the
1258       client time out. Now actually answer with a destroy cell. Fixes
1259       bug 904. Bugfix on 0.0.2pre8.
1260     - Squeeze 2-5% out of client performance (according to oprofile) by
1261       improving the implementation of some policy-manipulation functions.
1263   o Minor bugfixes (on 0.2.1.x):
1264     - Make get_interface_address() function work properly again; stop
1265       guessing the wrong parts of our address as our address.
1266     - Do not cannibalize a circuit if we're out of RELAY_EARLY cells to
1267       send on that circuit. Otherwise we might violate the proposal-110
1268       limit. Bugfix on 0.2.1.3-alpha. Partial fix for bug 878. Diagnosis
1269       thanks to Karsten.
1270     - When we're sending non-EXTEND cells to the first hop in a circuit,
1271       for example to use an encrypted directory connection, we don't need
1272       to use RELAY_EARLY cells: the first hop knows what kind of cell
1273       it is, and nobody else can even see the cell type. Conserving
1274       RELAY_EARLY cells makes it easier to cannibalize circuits like
1275       this later.
1276     - Stop logging nameserver addresses in reverse order.
1277     - If we are retrying a directory download slowly over and over, do
1278       not automatically give up after the 254th failure. Bugfix on
1279       0.2.1.9-alpha.
1280     - Resume reporting accurate "stream end" reasons to the local control
1281       port. They were lost in the changes for Proposal 148. Bugfix on
1282       0.2.1.9-alpha.
1284   o Deprecated and removed features:
1285     - The old "tor --version --version" command, which would print out
1286       the subversion "Id" of most of the source files, is now removed. It
1287       turned out to be less useful than we'd expected, and harder to
1288       maintain.
1290   o Code simplifications and refactoring:
1291     - Change our header file guard macros to be less likely to conflict
1292       with system headers. Adam Langley noticed that we were conflicting
1293       with log.h on Android.
1294     - Tool-assisted documentation cleanup. Nearly every function or
1295       static variable in Tor should have its own documentation now.
1298 Changes in version 0.2.1.9-alpha - 2008-12-25
1299   Tor 0.2.1.9-alpha fixes many more bugs, some of them security-related.
1301   o New directory authorities:
1302     - gabelmoo (the authority run by Karsten Loesing) now has a new
1303       IP address.
1305   o Security fixes:
1306     - Never use a connection with a mismatched address to extend a
1307       circuit, unless that connection is canonical. A canonical
1308       connection is one whose address is authenticated by the router's
1309       identity key, either in a NETINFO cell or in a router descriptor.
1310     - Avoid a possible memory corruption bug when receiving hidden service
1311       descriptors. Bugfix on 0.2.1.6-alpha.
1313   o Major bugfixes:
1314     - Fix a logic error that would automatically reject all but the first
1315       configured DNS server. Bugfix on 0.2.1.5-alpha. Possible fix for
1316       part of bug 813/868. Bug spotted by coderman.
1317     - When a stream at an exit relay is in state "resolving" or
1318       "connecting" and it receives an "end" relay cell, the exit relay
1319       would silently ignore the end cell and not close the stream. If
1320       the client never closes the circuit, then the exit relay never
1321       closes the TCP connection. Bug introduced in 0.1.2.1-alpha;
1322       reported by "wood".
1323     - When we can't initialize DNS because the network is down, do not
1324       automatically stop Tor from starting. Instead, retry failed
1325       dns_init() every 10 minutes, and change the exit policy to reject
1326       *:* until one succeeds. Fixes bug 691.
1328   o Minor features:
1329     - Give a better error message when an overzealous init script says
1330       "sudo -u username tor --user username". Makes Bug 882 easier for
1331       users to diagnose.
1332     - When a directory authority gives us a new guess for our IP address,
1333       log which authority we used. Hopefully this will help us debug
1334       the recent complaints about bad IP address guesses.
1335     - Detect svn revision properly when we're using git-svn.
1336     - Try not to open more than one descriptor-downloading connection
1337       to an authority at once. This should reduce load on directory
1338       authorities. Fixes bug 366.
1339     - Add cross-certification to newly generated certificates, so that
1340       a signing key is enough information to look up a certificate.
1341       Partial implementation of proposal 157.
1342     - Start serving certificates by <identity digest, signing key digest>
1343       pairs. Partial implementation of proposal 157.
1344     - Clients now never report any stream end reason except 'MISC'.
1345       Implements proposal 148.
1346     - On platforms with a maximum syslog string length, truncate syslog
1347       messages to that length ourselves, rather than relying on the
1348       system to do it for us.
1349     - Optimize out calls to time(NULL) that occur for every IO operation,
1350       or for every cell. On systems where time() is a slow syscall,
1351       this fix will be slightly helpful.
1352     - Exit servers can now answer resolve requests for ip6.arpa addresses.
1353     - When we download a descriptor that we then immediately (as
1354       a directory authority) reject, do not retry downloading it right
1355       away. Should save some bandwidth on authorities. Fix for bug
1356       888. Patch by Sebastian Hahn.
1357     - When a download gets us zero good descriptors, do not notify
1358       Tor that new directory information has arrived.
1359     - Avoid some nasty corner cases in the logic for marking connections
1360       as too old or obsolete or noncanonical for circuits.  Partial
1361       bugfix on bug 891.
1363   o Minor features (controller):
1364     - New CONSENSUS_ARRIVED event to note when a new consensus has
1365       been fetched and validated.
1366     - When we realize that another process has modified our cached
1367       descriptors file, print out a more useful error message rather
1368       than triggering an assertion. Fixes bug 885. Patch from Karsten.
1369     - Add an internal-use-only __ReloadTorrcOnSIGHUP option for
1370       controllers to prevent SIGHUP from reloading the
1371       configuration. Fixes bug 856.
1373   o Minor bugfixes:
1374     - Resume using the correct "REASON=" stream when telling the
1375       controller why we closed a stream. Bugfix in 0.2.1.1-alpha.
1376     - When a canonical connection appears later in our internal list
1377       than a noncanonical one for a given OR ID, always use the
1378       canonical one. Bugfix on 0.2.0.12-alpha. Fixes bug 805.
1379       Spotted by rovv.
1380     - Clip the MaxCircuitDirtiness config option to a minimum of 10
1381       seconds. Warn the user if lower values are given in the
1382       configuration. Bugfix on 0.1.0.1-rc. Patch by Sebastian.
1383     - Clip the CircuitBuildTimeout to a minimum of 30 seconds. Warn the
1384       user if lower values are given in the configuration. Bugfix on
1385       0.1.1.17-rc. Patch by Sebastian.
1386     - Fix a race condition when freeing keys shared between main thread
1387       and CPU workers that could result in a memory leak. Bugfix on
1388       0.1.0.1-rc. Fixes bug 889.
1390   o Minor bugfixes (hidden services):
1391     - Do not throw away existing introduction points on SIGHUP (bugfix on
1392       0.0.6pre1); also, do not stall hidden services because we're
1393       throwing away introduction points; bugfix on 0.2.1.7-alpha. Spotted
1394       by John Brooks. Patch by Karsten. Fixes bug 874.
1395     - Fix a memory leak when we decline to add a v2 rendezvous
1396       descriptor to the cache because we already had a v0 descriptor
1397       with the same ID. Bugfix on 0.2.0.18-alpha.
1399   o Deprecated and removed features:
1400     - RedirectExits has been removed. It was deprecated since
1401       0.2.0.3-alpha.
1402     - Finally remove deprecated "EXTENDED_FORMAT" controller feature. It
1403       has been called EXTENDED_EVENTS since 0.1.2.4-alpha.
1404     - Cell pools are now always enabled; --disable-cell-pools is ignored.
1406   o Code simplifications and refactoring:
1407     - Rename the confusing or_is_obsolete field to the more appropriate
1408       is_bad_for_new_circs, and move it to or_connection_t where it
1409       belongs.
1410     - Move edge-only flags from connection_t to edge_connection_t: not
1411       only is this better coding, but on machines of plausible alignment,
1412       it should save 4-8 bytes per connection_t. "Every little bit helps."
1413     - Rename ServerDNSAllowBrokenResolvConf to ServerDNSAllowBrokenConfig
1414       for consistency; keep old option working for backward compatibility.
1415     - Simplify the code for finding connections to use for a circuit.
1418 Changes in version 0.2.1.8-alpha - 2008-12-08
1419   Tor 0.2.1.8-alpha fixes some crash bugs in earlier alpha releases,
1420   builds better on unusual platforms like Solaris and old OS X, and
1421   fixes a variety of other issues.
1423   o Major features:
1424     - New DirPortFrontPage option that takes an html file and publishes
1425       it as "/" on the DirPort. Now relay operators can provide a
1426       disclaimer without needing to set up a separate webserver. There's
1427       a sample disclaimer in contrib/tor-exit-notice.html.
1429   o Security fixes:
1430     - When the client is choosing entry guards, now it selects at most
1431       one guard from a given relay family. Otherwise we could end up with
1432       all of our entry points into the network run by the same operator.
1433       Suggested by Camilo Viecco. Fix on 0.1.1.11-alpha.
1435   o Major bugfixes:
1436     - Fix a DOS opportunity during the voting signature collection process
1437       at directory authorities. Spotted by rovv. Bugfix on 0.2.0.x.
1438     - Fix a possible segfault when establishing an exit connection. Bugfix
1439       on 0.2.1.5-alpha.
1441   o Minor bugfixes:
1442     - Get file locking working on win32. Bugfix on 0.2.1.6-alpha. Fixes
1443       bug 859.
1444     - Made Tor a little less aggressive about deleting expired
1445       certificates. Partial fix for bug 854.
1446     - Stop doing unaligned memory access that generated bus errors on
1447       sparc64. Bugfix on 0.2.0.10-alpha. Fix for bug 862.
1448     - Fix a crash bug when changing EntryNodes from the controller. Bugfix
1449       on 0.2.1.6-alpha. Fix for bug 867. Patched by Sebastian.
1450     - Make USR2 log-level switch take effect immediately. Bugfix on
1451       0.1.2.8-beta.
1452     - If one win32 nameserver fails to get added, continue adding the
1453       rest, and don't automatically fail.
1454     - Use fcntl() for locking when flock() is not available. Should fix
1455       compilation on Solaris. Should fix Bug 873. Bugfix on 0.2.1.6-alpha.
1456     - Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug
1457       could make gcc generate non-functional binary search code. Bugfix
1458       on 0.2.0.10-alpha.
1459     - Build correctly on platforms without socklen_t.
1460     - Avoid potential crash on internal error during signature collection.
1461       Fixes bug 864. Patch from rovv.
1462     - Do not use C's stdio library for writing to log files. This will
1463       improve logging performance by a minute amount, and will stop
1464       leaking fds when our disk is full. Fixes bug 861.
1465     - Stop erroneous use of O_APPEND in cases where we did not in fact
1466       want to re-seek to the end of a file before every last write().
1467     - Correct handling of possible malformed authority signing key
1468       certificates with internal signature types. Fixes bug 880. Bugfix
1469       on 0.2.0.3-alpha.
1470     - Fix a hard-to-trigger resource leak when logging credential status.
1471       CID 349.
1473   o Minor features:
1474     - Directory mirrors no longer fetch the v1 directory or
1475       running-routers files. They are obsolete, and nobody asks for them
1476       anymore. This is the first step to making v1 authorities obsolete.
1478   o Minor features (controller):
1479     - Return circuit purposes in response to GETINFO circuit-status. Fixes
1480       bug 858.
1483 Changes in version 0.2.0.32 - 2008-11-20
1484   Tor 0.2.0.32 fixes a major security problem in Debian and Ubuntu
1485   packages (and maybe other packages) noticed by Theo de Raadt, fixes
1486   a smaller security flaw that might allow an attacker to access local
1487   services, further improves hidden service performance, and fixes a
1488   variety of other issues.
1490   o Security fixes:
1491     - The "User" and "Group" config options did not clear the
1492       supplementary group entries for the Tor process. The "User" option
1493       is now more robust, and we now set the groups to the specified
1494       user's primary group. The "Group" option is now ignored. For more
1495       detailed logging on credential switching, set CREDENTIAL_LOG_LEVEL
1496       in common/compat.c to LOG_NOTICE or higher. Patch by Jacob Appelbaum
1497       and Steven Murdoch. Bugfix on 0.0.2pre14. Fixes bug 848 and 857.
1498     - The "ClientDNSRejectInternalAddresses" config option wasn't being
1499       consistently obeyed: if an exit relay refuses a stream because its
1500       exit policy doesn't allow it, we would remember what IP address
1501       the relay said the destination address resolves to, even if it's
1502       an internal IP address. Bugfix on 0.2.0.7-alpha; patch by rovv.
1504   o Major bugfixes:
1505     - Fix a DOS opportunity during the voting signature collection process
1506       at directory authorities. Spotted by rovv. Bugfix on 0.2.0.x.
1508   o Major bugfixes (hidden services):
1509     - When fetching v0 and v2 rendezvous service descriptors in parallel,
1510       we were failing the whole hidden service request when the v0
1511       descriptor fetch fails, even if the v2 fetch is still pending and
1512       might succeed. Similarly, if the last v2 fetch fails, we were
1513       failing the whole hidden service request even if a v0 fetch is
1514       still pending. Fixes bug 814. Bugfix on 0.2.0.10-alpha.
1515     - When extending a circuit to a hidden service directory to upload a
1516       rendezvous descriptor using a BEGIN_DIR cell, almost 1/6 of all
1517       requests failed, because the router descriptor has not been
1518       downloaded yet. In these cases, do not attempt to upload the
1519       rendezvous descriptor, but wait until the router descriptor is
1520       downloaded and retry. Likewise, do not attempt to fetch a rendezvous
1521       descriptor from a hidden service directory for which the router
1522       descriptor has not yet been downloaded. Fixes bug 767. Bugfix
1523       on 0.2.0.10-alpha.
1525   o Minor bugfixes:
1526     - Fix several infrequent memory leaks spotted by Coverity.
1527     - When testing for libevent functions, set the LDFLAGS variable
1528       correctly. Found by Riastradh.
1529     - Avoid a bug where the FastFirstHopPK 0 option would keep Tor from
1530       bootstrapping with tunneled directory connections. Bugfix on
1531       0.1.2.5-alpha. Fixes bug 797. Found by Erwin Lam.
1532     - When asked to connect to A.B.exit:80, if we don't know the IP for A
1533       and we know that server B rejects most-but-not all connections to
1534       port 80, we would previously reject the connection. Now, we assume
1535       the user knows what they were asking for. Fixes bug 752. Bugfix
1536       on 0.0.9rc5. Diagnosed by BarkerJr.
1537     - If we overrun our per-second write limits a little, count this as
1538       having used up our write allocation for the second, and choke
1539       outgoing directory writes. Previously, we had only counted this when
1540       we had met our limits precisely. Fixes bug 824. Patch from by rovv.
1541       Bugfix on 0.2.0.x (??).
1542     - Remove the old v2 directory authority 'lefkada' from the default
1543       list. It has been gone for many months.
1544     - Stop doing unaligned memory access that generated bus errors on
1545       sparc64. Bugfix on 0.2.0.10-alpha. Fixes bug 862.
1546     - Make USR2 log-level switch take effect immediately. Bugfix on
1547       0.1.2.8-beta.
1549   o Minor bugfixes (controller):
1550     - Make DNS resolved events into "CLOSED", not "FAILED". Bugfix on
1551       0.1.2.5-alpha. Fix by Robert Hogan. Resolves bug 807.
1554 Changes in version 0.2.1.7-alpha - 2008-11-08
1555   Tor 0.2.1.7-alpha fixes a major security problem in Debian and Ubuntu
1556   packages (and maybe other packages) noticed by Theo de Raadt, fixes
1557   a smaller security flaw that might allow an attacker to access local
1558   services, adds better defense against DNS poisoning attacks on exit
1559   relays, further improves hidden service performance, and fixes a
1560   variety of other issues.
1562   o Security fixes:
1563     - The "ClientDNSRejectInternalAddresses" config option wasn't being
1564       consistently obeyed: if an exit relay refuses a stream because its
1565       exit policy doesn't allow it, we would remember what IP address
1566       the relay said the destination address resolves to, even if it's
1567       an internal IP address. Bugfix on 0.2.0.7-alpha; patch by rovv.
1568     - The "User" and "Group" config options did not clear the
1569       supplementary group entries for the Tor process. The "User" option
1570       is now more robust, and we now set the groups to the specified
1571       user's primary group. The "Group" option is now ignored. For more
1572       detailed logging on credential switching, set CREDENTIAL_LOG_LEVEL
1573       in common/compat.c to LOG_NOTICE or higher. Patch by Jacob Appelbaum
1574       and Steven Murdoch. Bugfix on 0.0.2pre14. Fixes bug 848.
1575     - Do not use or believe expired v3 authority certificates. Patch
1576       from Karsten. Bugfix in 0.2.0.x. Fixes bug 851.
1578   o Minor features:
1579     - Now NodeFamily and MyFamily config options allow spaces in
1580       identity fingerprints, so it's easier to paste them in.
1581       Suggested by Lucky Green.
1582     - Implement the 0x20 hack to better resist DNS poisoning: set the
1583       case on outgoing DNS requests randomly, and reject responses that do
1584       not match the case correctly. This logic can be disabled with the
1585       ServerDNSRandomizeCase setting, if you are using one of the 0.3%
1586       of servers that do not reliably preserve case in replies. See
1587       "Increased DNS Forgery Resistance through 0x20-Bit Encoding"
1588       for more info.
1589     - Preserve case in replies to DNSPort requests in order to support
1590       the 0x20 hack for resisting DNS poisoning attacks.
1592   o Hidden service performance improvements:
1593     - When the client launches an introduction circuit, retry with a
1594       new circuit after 30 seconds rather than 60 seconds.
1595     - Launch a second client-side introduction circuit in parallel
1596       after a delay of 15 seconds (based on work by Christian Wilms).
1597     - Hidden services start out building five intro circuits rather
1598       than three, and when the first three finish they publish a service
1599       descriptor using those. Now we publish our service descriptor much
1600       faster after restart.
1602   o Minor bugfixes:
1603     - Minor fix in the warning messages when you're having problems
1604       bootstrapping; also, be more forgiving of bootstrap problems when
1605       we're still making incremental progress on a given bootstrap phase.
1606     - When we're choosing an exit node for a circuit, and we have
1607       no pending streams, choose a good general exit rather than one that
1608       supports "all the pending streams". Bugfix on 0.1.1.x. Fix by rovv.
1609     - Send a valid END cell back when a client tries to connect to a
1610       nonexistent hidden service port. Bugfix on 0.1.2.15. Fixes bug
1611       840. Patch from rovv.
1612     - If a broken client asks a non-exit router to connect somewhere,
1613       do not even do the DNS lookup before rejecting the connection.
1614       Fixes another case of bug 619. Patch from rovv.
1615     - Fix another case of assuming, when a specific exit is requested,
1616       that we know more than the user about what hosts it allows.
1617       Fixes another case of bug 752. Patch from rovv.
1618     - Check which hops rendezvous stream cells are associated with to
1619       prevent possible guess-the-streamid injection attacks from
1620       intermediate hops. Fixes another case of bug 446. Based on patch
1621       from rovv.
1622     - Avoid using a negative right-shift when comparing 32-bit
1623       addresses. Possible fix for bug 845 and bug 811.
1624     - Make the assert_circuit_ok() function work correctly on circuits that
1625       have already been marked for close.
1626     - Fix read-off-the-end-of-string error in unit tests when decoding
1627       introduction points.
1628     - Fix uninitialized size field for memory area allocation: may improve
1629       memory performance during directory parsing.
1630     - Treat duplicate certificate fetches as failures, so that we do
1631       not try to re-fetch an expired certificate over and over and over.
1632     - Do not say we're fetching a certificate when we'll in fact skip it
1633       because of a pending download.
1636 Changes in version 0.2.1.6-alpha - 2008-09-30
1637   Tor 0.2.1.6-alpha further improves performance and robustness of
1638   hidden services, starts work on supporting per-country relay selection,
1639   and fixes a variety of smaller issues.
1641   o Major features:
1642     - Implement proposal 121: make it possible to build hidden services
1643       that only certain clients are allowed to connect to. This is
1644       enforced at several points, so that unauthorized clients are unable
1645       to send INTRODUCE cells to the service, or even (depending on the
1646       type of authentication) to learn introduction points. This feature
1647       raises the bar for certain kinds of active attacks against hidden
1648       services. Code by Karsten Loesing.
1649     - Relays now store and serve v2 hidden service descriptors by default,
1650       i.e., the new default value for HidServDirectoryV2 is 1. This is
1651       the last step in proposal 114, which aims to make hidden service
1652       lookups more reliable.
1653     - Start work to allow node restrictions to include country codes. The
1654       syntax to exclude nodes in a country with country code XX is
1655       "ExcludeNodes {XX}". Patch from Robert Hogan. It still needs some
1656       refinement to decide what config options should take priority if
1657       you ask to both use a particular node and exclude it.
1658     - Allow ExitNodes list to include IP ranges and country codes, just
1659       like the Exclude*Nodes lists. Patch from Robert Hogan.
1661   o Major bugfixes:
1662     - Fix a bug when parsing ports in tor_addr_port_parse() that caused
1663       Tor to fail to start if you had it configured to use a bridge
1664       relay. Fixes bug 809. Bugfix on 0.2.1.5-alpha.
1665     - When extending a circuit to a hidden service directory to upload a
1666       rendezvous descriptor using a BEGIN_DIR cell, almost 1/6 of all
1667       requests failed, because the router descriptor had not been
1668       downloaded yet. In these cases, we now wait until the router
1669       descriptor is downloaded, and then retry. Likewise, clients
1670       now skip over a hidden service directory if they don't yet have
1671       its router descriptor, rather than futilely requesting it and
1672       putting mysterious complaints in the logs. Fixes bug 767. Bugfix
1673       on 0.2.0.10-alpha.
1674     - When fetching v0 and v2 rendezvous service descriptors in parallel,
1675       we were failing the whole hidden service request when the v0
1676       descriptor fetch fails, even if the v2 fetch is still pending and
1677       might succeed. Similarly, if the last v2 fetch fails, we were
1678       failing the whole hidden service request even if a v0 fetch is
1679       still pending. Fixes bug 814. Bugfix on 0.2.0.10-alpha.
1680     - DNS replies need to have names matching their requests, but
1681       these names should be in the questions section, not necessarily
1682       in the answers section. Fixes bug 823. Bugfix on 0.2.1.5-alpha.
1684   o Minor features:
1685     - Update to the "September 1 2008" ip-to-country file.
1686     - Allow ports 465 and 587 in the default exit policy again. We had
1687       rejected them in 0.1.0.15, because back in 2005 they were commonly
1688       misconfigured and ended up as spam targets. We hear they are better
1689       locked down these days.
1690     - Use a lockfile to make sure that two Tor processes are not
1691       simultaneously running with the same datadir.
1692     - Serve the latest v3 networkstatus consensus via the control
1693       port. Use "getinfo dir/status-vote/current/consensus" to fetch it.
1694     - Better logging about stability/reliability calculations on directory
1695       servers.
1696     - Drop the requirement to have an open dir port for storing and
1697       serving v2 hidden service descriptors.
1698     - Directory authorities now serve a /tor/dbg-stability.txt URL to
1699       help debug WFU and MTBF calculations.
1700     - Implement most of Proposal 152: allow specialized servers to permit
1701       single-hop circuits, and clients to use those servers to build
1702       single-hop circuits when using a specialized controller. Patch
1703       from Josh Albrecht. Resolves feature request 768.
1704     - Add a -p option to tor-resolve for specifying the SOCKS port: some
1705       people find host:port too confusing.
1706     - Make TrackHostExit mappings expire a while after their last use, not
1707       after their creation. Patch from Robert Hogan.
1708     - Provide circuit purposes along with circuit events to the controller.
1710   o Minor bugfixes:
1711     - Fix compile on OpenBSD 4.4-current. Bugfix on 0.2.1.5-alpha.
1712       Reported by Tas.
1713     - Fixed some memory leaks -- some quite frequent, some almost
1714       impossible to trigger -- based on results from Coverity.
1715     - When testing for libevent functions, set the LDFLAGS variable
1716       correctly. Found by Riastradh.
1717     - Fix an assertion bug in parsing policy-related options; possible fix
1718       for bug 811.
1719     - Catch and report a few more bootstrapping failure cases when Tor
1720       fails to establish a TCP connection. Cleanup on 0.2.1.x.
1721     - Avoid a bug where the FastFirstHopPK 0 option would keep Tor from
1722       bootstrapping with tunneled directory connections. Bugfix on
1723       0.1.2.5-alpha. Fixes bug 797. Found by Erwin Lam.
1724     - When asked to connect to A.B.exit:80, if we don't know the IP for A
1725       and we know that server B rejects most-but-not all connections to
1726       port 80, we would previously reject the connection. Now, we assume
1727       the user knows what they were asking for. Fixes bug 752. Bugfix
1728       on 0.0.9rc5. Diagnosed by BarkerJr.
1729     - If we are not using BEGIN_DIR cells, don't attempt to contact hidden
1730       service directories if they have no advertised dir port. Bugfix
1731       on 0.2.0.10-alpha.
1732     - If we overrun our per-second write limits a little, count this as
1733       having used up our write allocation for the second, and choke
1734       outgoing directory writes. Previously, we had only counted this when
1735       we had met our limits precisely. Fixes bug 824. Patch by rovv.
1736       Bugfix on 0.2.0.x (??).
1737     - Avoid a "0 divided by 0" calculation when calculating router uptime
1738       at directory authorities. Bugfix on 0.2.0.8-alpha.
1739     - Make DNS resolved controller events into "CLOSED", not
1740       "FAILED". Bugfix on 0.1.2.5-alpha. Fix by Robert Hogan. Resolves
1741       bug 807.
1742     - Fix a bug where an unreachable relay would establish enough
1743       reachability testing circuits to do a bandwidth test -- if
1744       we already have a connection to the middle hop of the testing
1745       circuit, then it could establish the last hop by using the existing
1746       connection. Bugfix on 0.1.2.2-alpha, exposed when we made testing
1747       circuits no longer use entry guards in 0.2.1.3-alpha.
1748     - If we have correct permissions on $datadir, we complain to stdout
1749       and fail to start. But dangerous permissions on
1750       $datadir/cached-status/ would cause us to open a log and complain
1751       there. Now complain to stdout and fail to start in both cases. Fixes
1752       bug 820, reported by seeess.
1753     - Remove the old v2 directory authority 'lefkada' from the default
1754       list. It has been gone for many months.
1756   o Code simplifications and refactoring:
1757     - Revise the connection_new functions so that a more typesafe variant
1758       exists. This will work better with Coverity, and let us find any
1759       actual mistakes we're making here.
1760     - Refactor unit testing logic so that dmalloc can be used sensibly
1761       with unit tests to check for memory leaks.
1762     - Move all hidden-service related fields from connection and circuit
1763       structure to substructures: this way they won't eat so much memory.
1766 Changes in version 0.2.0.31 - 2008-09-03
1767   Tor 0.2.0.31 addresses two potential anonymity issues, starts to fix
1768   a big bug we're seeing where in rare cases traffic from one Tor stream
1769   gets mixed into another stream, and fixes a variety of smaller issues.
1771   o Major bugfixes:
1772     - Make sure that two circuits can never exist on the same connection
1773       with the same circuit ID, even if one is marked for close. This
1774       is conceivably a bugfix for bug 779. Bugfix on 0.1.0.4-rc.
1775     - Relays now reject risky extend cells: if the extend cell includes
1776       a digest of all zeroes, or asks to extend back to the relay that
1777       sent the extend cell, tear down the circuit. Ideas suggested
1778       by rovv.
1779     - If not enough of our entry guards are available so we add a new
1780       one, we might use the new one even if it overlapped with the
1781       current circuit's exit relay (or its family). Anonymity bugfix
1782       pointed out by rovv.
1784   o Minor bugfixes:
1785     - Recover 3-7 bytes that were wasted per memory chunk. Fixes bug
1786       794; bug spotted by rovv. Bugfix on 0.2.0.1-alpha.
1787     - Correctly detect the presence of the linux/netfilter_ipv4.h header
1788       when building against recent kernels. Bugfix on 0.1.2.1-alpha.
1789     - Pick size of default geoip filename string correctly on windows.
1790       Fixes bug 806. Bugfix on 0.2.0.30.
1791     - Make the autoconf script accept the obsolete --with-ssl-dir
1792       option as an alias for the actually-working --with-openssl-dir
1793       option. Fix the help documentation to recommend --with-openssl-dir.
1794       Based on a patch by "Dave". Bugfix on 0.2.0.1-alpha.
1795     - When using the TransPort option on OpenBSD, and using the User
1796       option to change UID and drop privileges, make sure to open
1797       /dev/pf before dropping privileges. Fixes bug 782. Patch from
1798       Christopher Davis. Bugfix on 0.1.2.1-alpha.
1799     - Try to attach connections immediately upon receiving a RENDEZVOUS2
1800       or RENDEZVOUS_ESTABLISHED cell. This can save a second or two
1801       on the client side when connecting to a hidden service. Bugfix
1802       on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743.
1803     - When closing an application-side connection because its circuit is
1804       getting torn down, generate the stream event correctly. Bugfix on
1805       0.1.2.x. Anonymous patch.
1808 Changes in version 0.2.1.5-alpha - 2008-08-31
1809   Tor 0.2.1.5-alpha moves us closer to handling IPv6 destinations, puts
1810   in a lot of the infrastructure for adding authorization to hidden
1811   services, lays the groundwork for having clients read their load
1812   balancing information out of the networkstatus consensus rather than
1813   the individual router descriptors, addresses two potential anonymity
1814   issues, and fixes a variety of smaller issues.
1816   o Major features:
1817     - Convert many internal address representations to optionally hold
1818       IPv6 addresses.
1819     - Generate and accept IPv6 addresses in many protocol elements.
1820     - Make resolver code handle nameservers located at ipv6 addresses.
1821     - Begin implementation of proposal 121 ("Client authorization for
1822       hidden services"): configure hidden services with client
1823       authorization, publish descriptors for them, and configure
1824       authorization data for hidden services at clients. The next
1825       step is to actually access hidden services that perform client
1826       authorization.
1827     - More progress toward proposal 141: Network status consensus
1828       documents and votes now contain bandwidth information for each
1829       router and a summary of that router's exit policy. Eventually this
1830       will be used by clients so that they do not have to download every
1831       known descriptor before building circuits.
1833   o Major bugfixes (on 0.2.0.x and before):
1834     - When sending CREATED cells back for a given circuit, use a 64-bit
1835       connection ID to find the right connection, rather than an addr:port
1836       combination. Now that we can have multiple OR connections between
1837       the same ORs, it is no longer possible to use addr:port to uniquely
1838       identify a connection.
1839     - Relays now reject risky extend cells: if the extend cell includes
1840       a digest of all zeroes, or asks to extend back to the relay that
1841       sent the extend cell, tear down the circuit. Ideas suggested
1842       by rovv.
1843     - If not enough of our entry guards are available so we add a new
1844       one, we might use the new one even if it overlapped with the
1845       current circuit's exit relay (or its family). Anonymity bugfix
1846       pointed out by rovv.
1848   o Minor bugfixes:
1849     - Recover 3-7 bytes that were wasted per memory chunk. Fixes bug
1850       794; bug spotted by rovv. Bugfix on 0.2.0.1-alpha.
1851     - When using the TransPort option on OpenBSD, and using the User
1852       option to change UID and drop privileges, make sure to open /dev/pf
1853       before dropping privileges. Fixes bug 782. Patch from Christopher
1854       Davis. Bugfix on 0.1.2.1-alpha.
1855     - Correctly detect the presence of the linux/netfilter_ipv4.h header
1856       when building against recent kernels. Bugfix on 0.1.2.1-alpha.
1857     - Add a missing safe_str() call for a debug log message.
1858     - Use 64 bits instead of 32 bits for connection identifiers used with
1859       the controller protocol, to greatly reduce risk of identifier reuse.
1860     - Make the autoconf script accept the obsolete --with-ssl-dir
1861       option as an alias for the actually-working --with-openssl-dir
1862       option. Fix the help documentation to recommend --with-openssl-dir.
1863       Based on a patch by "Dave". Bugfix on 0.2.0.1-alpha.
1865   o Minor features:
1866     - Rate-limit too-many-sockets messages: when they happen, they happen
1867       a lot. Resolves bug 748.
1868     - Resist DNS poisoning a little better by making sure that names in
1869       answer sections match.
1870     - Print the SOCKS5 error message string as well as the error code
1871       when a tor-resolve request fails. Patch from Jacob.
1874 Changes in version 0.2.1.4-alpha - 2008-08-04
1875   Tor 0.2.1.4-alpha fixes a pair of crash bugs in 0.2.1.3-alpha.
1877   o Major bugfixes:
1878     - The address part of exit policies was not correctly written
1879       to router descriptors. This generated router descriptors that failed
1880       their self-checks. Noticed by phobos, fixed by Karsten. Bugfix
1881       on 0.2.1.3-alpha.
1882     - Tor triggered a false assert when extending a circuit to a relay
1883       but we already have a connection open to that relay. Noticed by
1884       phobos, fixed by Karsten. Bugfix on 0.2.1.3-alpha.
1886   o Minor bugfixes:
1887     - Fix a hidden service logging bug: in some edge cases, the router
1888       descriptor of a previously picked introduction point becomes
1889       obsolete and we need to give up on it rather than continually
1890       complaining that it has become obsolete. Observed by xiando. Bugfix
1891       on 0.2.1.3-alpha.
1893   o Removed features:
1894     - Take out the TestVia config option, since it was a workaround for
1895       a bug that was fixed in Tor 0.1.1.21.
1898 Changes in version 0.2.1.3-alpha - 2008-08-03
1899   Tor 0.2.1.3-alpha implements most of the pieces to prevent
1900   infinite-length circuit attacks (see proposal 110); fixes a bug that
1901   might cause exit relays to corrupt streams they send back; allows
1902   address patterns (e.g. 255.128.0.0/16) to appear in ExcludeNodes and
1903   ExcludeExitNodes config options; and fixes a big pile of bugs.
1905   o Bootstrapping bugfixes (on 0.2.1.x-alpha):
1906     - Send a bootstrap problem "warn" event on the first problem if the
1907       reason is NO_ROUTE (that is, our network is down).
1909   o Major features:
1910     - Implement most of proposal 110: The first K cells to be sent
1911       along a circuit are marked as special "early" cells; only K "early"
1912       cells will be allowed. Once this code is universal, we can block
1913       certain kinds of DOS attack by requiring that EXTEND commands must
1914       be sent using an "early" cell.
1916   o Major bugfixes:
1917     - Try to attach connections immediately upon receiving a RENDEZVOUS2
1918       or RENDEZVOUS_ESTABLISHED cell. This can save a second or two
1919       on the client side when connecting to a hidden service. Bugfix
1920       on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743.
1921     - Ensure that two circuits can never exist on the same connection
1922       with the same circuit ID, even if one is marked for close. This
1923       is conceivably a bugfix for bug 779; fixes a bug on 0.1.0.4-rc.
1925   o Minor features:
1926     - When relays do their initial bandwidth measurement, don't limit
1927       to just our entry guards for the test circuits. Otherwise we tend
1928       to have multiple test circuits going through a single entry guard,
1929       which makes our bandwidth test less accurate. Fixes part of bug 654;
1930       patch contributed by Josh Albrecht.
1931     - Add an ExcludeExitNodes option so users can list a set of nodes
1932       that should be be excluded from the exit node position, but
1933       allowed elsewhere. Implements proposal 151.
1934     - Allow address patterns (e.g., 255.128.0.0/16) to appear in
1935       ExcludeNodes and ExcludeExitNodes lists.
1936     - Change the implementation of ExcludeNodes and ExcludeExitNodes to
1937       be more efficient. Formerly it was quadratic in the number of
1938       servers; now it should be linear. Fixes bug 509.
1939     - Save 16-22 bytes per open circuit by moving the n_addr, n_port,
1940       and n_conn_id_digest fields into a separate structure that's
1941       only needed when the circuit has not yet attached to an n_conn.
1943   o Minor bugfixes:
1944     - Change the contrib/tor.logrotate script so it makes the new
1945       logs as "_tor:_tor" rather than the default, which is generally
1946       "root:wheel". Fixes bug 676, reported by Serge Koksharov.
1947     - Stop using __attribute__((nonnull)) with GCC: it can give us useful
1948       warnings (occasionally), but it can also cause the compiler to
1949       eliminate error-checking code. Suggested by Peter Gutmann.
1950     - When a hidden service is giving up on an introduction point candidate
1951       that was not included in the last published rendezvous descriptor,
1952       don't reschedule publication of the next descriptor. Fixes bug 763.
1953       Bugfix on 0.0.9.3.
1954     - Mark RendNodes, RendExcludeNodes, HiddenServiceNodes, and
1955       HiddenServiceExcludeNodes as obsolete: they never worked properly,
1956       and nobody claims to be using them. Fixes bug 754. Bugfix on
1957       0.1.0.1-rc. Patch from Christian Wilms.
1958     - Fix a small alignment and memory-wasting bug on buffer chunks.
1959       Spotted by rovv.
1961   o Minor bugfixes (controller):
1962     - When closing an application-side connection because its circuit
1963       is getting torn down, generate the stream event correctly.
1964       Bugfix on 0.1.2.x. Anonymous patch.
1966   o Removed features:
1967     - Remove all backward-compatibility code to support relays running
1968       versions of Tor so old that they no longer work at all on the
1969       Tor network.
1972 Changes in version 0.2.0.30 - 2008-07-15
1973   o Minor bugfixes:
1974     - Stop using __attribute__((nonnull)) with GCC: it can give us useful
1975       warnings (occasionally), but it can also cause the compiler to
1976       eliminate error-checking code. Suggested by Peter Gutmann.
1979 Changes in version 0.2.0.29-rc - 2008-07-08
1980   Tor 0.2.0.29-rc fixes two big bugs with using bridges, fixes more
1981   hidden-service performance bugs, and fixes a bunch of smaller bugs.
1983   o Major bugfixes:
1984     - If you have more than one bridge but don't know their keys,
1985       you would only launch a request for the descriptor of the first one
1986       on your list. (Tor considered launching requests for the others, but
1987       found that it already had a connection on the way for $0000...0000
1988       so it didn't open another.) Bugfix on 0.2.0.x.
1989     - If you have more than one bridge but don't know their keys, and the
1990       connection to one of the bridges failed, you would cancel all
1991       pending bridge connections. (After all, they all have the same
1992       digest.) Bugfix on 0.2.0.x.
1993     - When a hidden service was trying to establish an introduction point,
1994       and Tor had built circuits preemptively for such purposes, we
1995       were ignoring all the preemptive circuits and launching a new one
1996       instead. Bugfix on 0.2.0.14-alpha.
1997     - When a hidden service was trying to establish an introduction point,
1998       and Tor *did* manage to reuse one of the preemptively built
1999       circuits, it didn't correctly remember which one it used,
2000       so it asked for another one soon after, until there were no
2001       more preemptive circuits, at which point it launched one from
2002       scratch. Bugfix on 0.0.9.x.
2003     - Make directory servers include the X-Your-Address-Is: http header in
2004       their responses even for begin_dir conns. Now clients who only
2005       ever use begin_dir connections still have a way to learn their IP
2006       address. Fixes bug 737; bugfix on 0.2.0.22-rc. Reported by goldy.
2008   o Minor bugfixes:
2009     - Fix a macro/CPP interaction that was confusing some compilers:
2010       some GCCs don't like #if/#endif pairs inside macro arguments.
2011       Fixes bug 707.
2012     - Fix macro collision between OpenSSL 0.9.8h and Windows headers.
2013       Fixes bug 704; fix from Steven Murdoch.
2014     - When opening /dev/null in finish_daemonize(), do not pass the
2015       O_CREAT flag. Fortify was complaining, and correctly so. Fixes
2016       bug 742; fix from Michael Scherer. Bugfix on 0.0.2pre19.
2017     - Correctly detect transparent proxy support on Linux hosts that
2018       require in.h to be included before netfilter_ipv4.h. Patch
2019       from coderman.
2020     - Disallow session resumption attempts during the renegotiation
2021       stage of the v2 handshake protocol. Clients should never be trying
2022       session resumption at this point, but apparently some did, in
2023       ways that caused the handshake to fail. Bugfix on 0.2.0.20-rc. Bug
2024       found by Geoff Goodell.
2027 Changes in version 0.2.1.2-alpha - 2008-06-20
2028   Tor 0.2.1.2-alpha includes a new "TestingTorNetwork" config option to
2029   make it easier to set up your own private Tor network; fixes several
2030   big bugs with using more than one bridge relay; fixes a big bug with
2031   offering hidden services quickly after Tor starts; and uses a better
2032   API for reporting potential bootstrapping problems to the controller.
2034   o Major features:
2035     - New TestingTorNetwork config option to allow adjustment of
2036       previously constant values that, while reasonable, could slow
2037       bootstrapping. Implements proposal 135. Patch from Karsten.
2039   o Major bugfixes:
2040     - If you have more than one bridge but don't know their digests,
2041       you would only learn a request for the descriptor of the first one
2042       on your list. (Tor considered launching requests for the others, but
2043       found that it already had a connection on the way for $0000...0000
2044       so it didn't open another.) Bugfix on 0.2.0.x.
2045     - If you have more than one bridge but don't know their digests,
2046       and the connection to one of the bridges failed, you would cancel
2047       all pending bridge connections. (After all, they all have the
2048       same digest.) Bugfix on 0.2.0.x.
2049     - When establishing a hidden service, introduction points that
2050       originate from cannibalized circuits are completely ignored and not
2051       included in rendezvous service descriptors. This might be another
2052       reason for delay in making a hidden service available. Bugfix
2053       from long ago (0.0.9.x?)
2055   o Minor features:
2056     - Allow OpenSSL to use dynamic locks if it wants.
2057     - When building a consensus, do not include routers that are down.
2058       This will cut down 30% to 40% on consensus size. Implements
2059       proposal 138.
2060     - In directory authorities' approved-routers files, allow
2061       fingerprints with or without space.
2062     - Add a "GETINFO /status/bootstrap-phase" controller option, so the
2063       controller can query our current bootstrap state in case it attaches
2064       partway through and wants to catch up.
2065     - Send an initial "Starting" bootstrap status event, so we have a
2066       state to start out in.
2068   o Minor bugfixes:
2069     - Asking for a conditional consensus at .../consensus/<fingerprints>
2070       would crash a dirserver if it did not already have a
2071       consensus. Bugfix on 0.2.1.1-alpha.
2072     - Clean up some macro/CPP interactions: some GCC versions don't like
2073       #if/#endif pairs inside macro arguments. Fixes bug 707. Bugfix on
2074       0.2.0.x.
2076   o Bootstrapping bugfixes (on 0.2.1.1-alpha):
2077     - Directory authorities shouldn't complain about bootstrapping
2078       problems just because they do a lot of reachability testing and
2079       some of the connection attempts fail.
2080     - Start sending "count" and "recommendation" key/value pairs in
2081       bootstrap problem status events, so the controller can hear about
2082       problems even before Tor decides they're worth reporting for sure.
2083     - If you're using bridges, generate "bootstrap problem" warnings
2084       as soon as you run out of working bridges, rather than waiting
2085       for ten failures -- which will never happen if you have less than
2086       ten bridges.
2087     - If we close our OR connection because there's been a circuit
2088       pending on it for too long, we were telling our bootstrap status
2089       events "REASON=NONE". Now tell them "REASON=TIMEOUT".
2092 Changes in version 0.2.1.1-alpha - 2008-06-13
2093   Tor 0.2.1.1-alpha fixes a lot of memory fragmentation problems that
2094   were making the Tor process bloat especially on Linux; makes our TLS
2095   handshake blend in better; sends "bootstrap phase" status events to
2096   the controller, so it can keep the user informed of progress (and
2097   problems) fetching directory information and establishing circuits;
2098   and adds a variety of smaller features.
2100   o Major features:
2101     - More work on making our TLS handshake blend in: modify the list
2102       of ciphers advertised by OpenSSL in client mode to even more
2103       closely resemble a common web browser. We cheat a little so that
2104       we can advertise ciphers that the locally installed OpenSSL doesn't
2105       know about.
2106     - Start sending "bootstrap phase" status events to the controller,
2107       so it can keep the user informed of progress fetching directory
2108       information and establishing circuits. Also inform the controller
2109       if we think we're stuck at a particular bootstrap phase. Implements
2110       proposal 137.
2111     - Resume using OpenSSL's RAND_poll() for better (and more portable)
2112       cross-platform entropy collection again. We used to use it, then
2113       stopped using it because of a bug that could crash systems that
2114       called RAND_poll when they had a lot of fds open. It looks like the
2115       bug got fixed in late 2006. Our new behavior is to call RAND_poll()
2116       at startup, and to call RAND_poll() when we reseed later only if
2117       we have a non-buggy OpenSSL version.
2119   o Major bugfixes:
2120     - When we choose to abandon a new entry guard because we think our
2121       older ones might be better, close any circuits pending on that
2122       new entry guard connection. This fix should make us recover much
2123       faster when our network is down and then comes back. Bugfix on
2124       0.1.2.8-beta; found by lodger.
2126   o Memory fixes and improvements:
2127     - Add a malloc_good_size implementation to OpenBSD_malloc_linux.c,
2128       to avoid unused RAM in buffer chunks and memory pools.
2129     - Speed up parsing and cut down on memory fragmentation by using
2130       stack-style allocations for parsing directory objects. Previously,
2131       this accounted for over 40% of allocations from within Tor's code
2132       on a typical directory cache.
2133     - Use a Bloom filter rather than a digest-based set to track which
2134       descriptors we need to keep around when we're cleaning out old
2135       router descriptors. This speeds up the computation significantly,
2136       and may reduce fragmentation.
2137     - Reduce the default smartlist size from 32 to 16; it turns out that
2138       most smartlists hold around 8-12 elements tops.
2139     - Make dumpstats() log the fullness and size of openssl-internal
2140       buffers.
2141     - If the user has applied the experimental SSL_MODE_RELEASE_BUFFERS
2142       patch to their OpenSSL, turn it on to save memory on servers. This
2143       patch will (with any luck) get included in a mainline distribution
2144       before too long.
2145     - Never use OpenSSL compression: it wastes RAM and CPU trying to
2146       compress cells, which are basically all encrypted, compressed,
2147       or both.
2149   o Minor bugfixes:
2150     - Stop reloading the router list from disk for no reason when we
2151       run out of reachable directory mirrors. Once upon a time reloading
2152       it would set the 'is_running' flag back to 1 for them. It hasn't
2153       done that for a long time.
2154     - In very rare situations new hidden service descriptors were
2155       published earlier than 30 seconds after the last change to the
2156       service. (We currently think that a hidden service descriptor
2157       that's been stable for 30 seconds is worth publishing.)
2159   o Minor features:
2160     - Allow separate log levels to be configured for different logging
2161       domains. For example, this allows one to log all notices, warnings,
2162       or errors, plus all memory management messages of level debug or
2163       higher, with: Log [MM] debug-err [*] notice-err file /var/log/tor.
2164     - Add a couple of extra warnings to --enable-gcc-warnings for GCC 4.3,
2165       and stop using a warning that had become unfixably verbose under
2166       GCC 4.3.
2167     - New --hush command-line option similar to --quiet. While --quiet
2168       disables all logging to the console on startup, --hush limits the
2169       output to messages of warning and error severity.
2170     - Servers support a new URL scheme for consensus downloads that
2171       allows the client to specify which authorities are trusted.
2172       The server then only sends the consensus if the client will trust
2173       it. Otherwise a 404 error is sent back. Clients use this
2174       new scheme when the server supports it (meaning it's running
2175       0.2.1.1-alpha or later). Implements proposal 134.
2176     - New configure/torrc options (--enable-geoip-stats,
2177       DirRecordUsageByCountry) to record how many IPs we've served
2178       directory info to in each country code, how many status documents
2179       total we've sent to each country code, and what share of the total
2180       directory requests we should expect to see.
2181     - Use the TLS1 hostname extension to more closely resemble browser
2182       behavior.
2183     - Lots of new unit tests.
2184     - Add a macro to implement the common pattern of iterating through
2185       two parallel lists in lockstep.
2188 Changes in version 0.2.0.28-rc - 2008-06-13
2189   Tor 0.2.0.28-rc fixes an anonymity-related bug, fixes a hidden-service
2190   performance bug, and fixes a bunch of smaller bugs.
2192   o Anonymity fixes:
2193     - Fix a bug where, when we were choosing the 'end stream reason' to
2194       put in our relay end cell that we send to the exit relay, Tor
2195       clients on Windows were sometimes sending the wrong 'reason'. The
2196       anonymity problem is that exit relays may be able to guess whether
2197       the client is running Windows, thus helping partition the anonymity
2198       set. Down the road we should stop sending reasons to exit relays,
2199       or otherwise prevent future versions of this bug.
2201   o Major bugfixes:
2202     - While setting up a hidden service, some valid introduction circuits
2203       were overlooked and abandoned. This might be the reason for
2204       the long delay in making a hidden service available. Bugfix on
2205       0.2.0.14-alpha.
2207   o Minor features:
2208     - Update to the "June 9 2008" ip-to-country file.
2209     - Run 'make test' as part of 'make dist', so we stop releasing so
2210       many development snapshots that fail their unit tests.
2212   o Minor bugfixes:
2213     - When we're checking if we have enough dir info for each relay
2214       to begin establishing circuits, make sure that we actually have
2215       the descriptor listed in the consensus, not just any descriptor.
2216       Bugfix on 0.1.2.x.
2217     - Bridge relays no longer print "xx=0" in their extrainfo document
2218       for every single country code in the geoip db. Bugfix on
2219       0.2.0.27-rc.
2220     - Only warn when we fail to load the geoip file if we were planning to
2221       include geoip stats in our extrainfo document. Bugfix on 0.2.0.27-rc.
2222     - If we change our MaxAdvertisedBandwidth and then reload torrc,
2223       Tor won't realize it should publish a new relay descriptor. Fixes
2224       bug 688, reported by mfr. Bugfix on 0.1.2.x.
2225     - When we haven't had any application requests lately, don't bother
2226       logging that we have expired a bunch of descriptors. Bugfix
2227       on 0.1.2.x.
2228     - Make relay cells written on a connection count as non-padding when
2229       tracking how long a connection has been in use. Bugfix on
2230       0.2.0.1-alpha. Spotted by lodger.
2231     - Fix unit tests in 0.2.0.27-rc.
2232     - Fix compile on Windows.
2235 Changes in version 0.2.0.27-rc - 2008-06-03
2236   Tor 0.2.0.27-rc adds a few features we left out of the earlier
2237   release candidates. In particular, we now include an IP-to-country
2238   GeoIP database, so controllers can easily look up what country a
2239   given relay is in, and so bridge relays can give us some sanitized
2240   summaries about which countries are making use of bridges. (See proposal
2241   126-geoip-fetching.txt for details.)
2243   o Major features:
2244     - Include an IP-to-country GeoIP file in the tarball, so bridge
2245       relays can report sanitized summaries of the usage they're seeing.
2247   o Minor features:
2248     - Add a "PURPOSE=" argument to "STREAM NEW" events, as suggested by
2249       Robert Hogan. Fixes the first part of bug 681.
2250     - Make bridge authorities never serve extrainfo docs.
2251     - Add support to detect Libevent versions in the 1.4.x series
2252       on mingw.
2253     - Fix build on gcc 4.3 with --enable-gcc-warnings set.
2254     - Include a new contrib/tor-exit-notice.html file that exit relay
2255       operators can put on their website to help reduce abuse queries.
2257   o Minor bugfixes:
2258     - When tunneling an encrypted directory connection, and its first
2259       circuit fails, do not leave it unattached and ask the controller
2260       to deal. Fixes the second part of bug 681.
2261     - Make bridge authorities correctly expire old extrainfo documents
2262       from time to time.
2265 Changes in version 0.2.0.26-rc - 2008-05-13
2266   Tor 0.2.0.26-rc fixes a major security vulnerability caused by a bug
2267   in Debian's OpenSSL packages. All users running any 0.2.0.x version
2268   should upgrade, whether they're running Debian or not.
2270   o Major security fixes:
2271     - Use new V3 directory authority keys on the tor26, gabelmoo, and
2272       moria1 V3 directory authorities. The old keys were generated with
2273       a vulnerable version of Debian's OpenSSL package, and must be
2274       considered compromised. Other authorities' keys were not generated
2275       with an affected version of OpenSSL.
2277   o Major bugfixes:
2278     - List authority signatures as "unrecognized" based on DirServer
2279       lines, not on cert cache. Bugfix on 0.2.0.x.
2281   o Minor features:
2282     - Add a new V3AuthUseLegacyKey option to make it easier for
2283       authorities to change their identity keys if they have to.
2286 Changes in version 0.2.0.25-rc - 2008-04-23
2287   Tor 0.2.0.25-rc makes Tor work again on OS X and certain BSDs.
2289   o Major bugfixes:
2290     - Remember to initialize threading before initializing logging.
2291       Otherwise, many BSD-family implementations will crash hard on
2292       startup. Fixes bug 671. Bugfix on 0.2.0.24-rc.
2294   o Minor bugfixes:
2295     - Authorities correctly free policies on bad servers on
2296       exit. Fixes bug 672. Bugfix on 0.2.0.x.
2299 Changes in version 0.2.0.24-rc - 2008-04-22
2300   Tor 0.2.0.24-rc adds dizum (run by Alex de Joode) as the new sixth
2301   v3 directory authority, makes relays with dynamic IP addresses and no
2302   DirPort notice more quickly when their IP address changes, fixes a few
2303   rare crashes and memory leaks, and fixes a few other miscellaneous bugs.
2305   o New directory authorities:
2306     - Take lefkada out of the list of v3 directory authorities, since
2307       it has been down for months.
2308     - Set up dizum (run by Alex de Joode) as the new sixth v3 directory
2309       authority.
2311   o Major bugfixes:
2312     - Detect address changes more quickly on non-directory mirror
2313       relays. Bugfix on 0.2.0.18-alpha; fixes bug 652.
2315   o Minor features (security):
2316     - Reject requests for reverse-dns lookup of names that are in
2317       a private address space. Patch from lodger.
2318     - Non-exit relays no longer allow DNS requests. Fixes bug 619. Patch
2319       from lodger.
2321   o Minor bugfixes (crashes):
2322     - Avoid a rare assert that can trigger when Tor doesn't have much
2323       directory information yet and it tries to fetch a v2 hidden
2324       service descriptor. Fixes bug 651, reported by nwf.
2325     - Initialize log mutex before initializing dmalloc. Otherwise,
2326       running with dmalloc would crash. Bugfix on 0.2.0.x-alpha.
2327     - Use recursive pthread mutexes in order to avoid deadlock when
2328       logging debug-level messages to a controller. Bug spotted by nwf,
2329       bugfix on 0.2.0.16-alpha.
2331   o Minor bugfixes (resource management):
2332     - Keep address policies from leaking memory: start their refcount
2333       at 1, not 2. Bugfix on 0.2.0.16-alpha.
2334     - Free authority certificates on exit, so they don't look like memory
2335       leaks. Bugfix on 0.2.0.19-alpha.
2336     - Free static hashtables for policy maps and for TLS connections on
2337       shutdown, so they don't look like memory leaks. Bugfix on 0.2.0.x.
2338     - Avoid allocating extra space when computing consensuses on 64-bit
2339       platforms. Bug spotted by aakova.
2341   o Minor bugfixes (misc):
2342     - Do not read the configuration file when we've only been told to
2343       generate a password hash. Fixes bug 643. Bugfix on 0.0.9pre5. Fix
2344       based on patch from Sebastian Hahn.
2345     - Exit relays that are used as a client can now reach themselves
2346       using the .exit notation, rather than just launching an infinite
2347       pile of circuits. Fixes bug 641. Reported by Sebastian Hahn.
2348     - When attempting to open a logfile fails, tell us why.
2349     - Fix a dumb bug that was preventing us from knowing that we should
2350       preemptively build circuits to handle expected directory requests.
2351       Fixes bug 660. Bugfix on 0.1.2.x.
2352     - Warn less verbosely about clock skew from netinfo cells from
2353       untrusted sources. Fixes bug 663.
2354     - Make controller stream events for DNS requests more consistent,
2355       by adding "new stream" events for DNS requests, and removing
2356       spurious "stream closed" events" for cached reverse resolves.
2357       Patch from mwenge. Fixes bug 646.
2358     - Correctly notify one-hop connections when a circuit build has
2359       failed. Possible fix for bug 669. Found by lodger.
2362 Changes in version 0.2.0.23-rc - 2008-03-24
2363   Tor 0.2.0.23-rc is the fourth release candidate for the 0.2.0 series. It
2364   makes bootstrapping faster if the first directory mirror you contact
2365   is down. The bundles also include the new Vidalia 0.1.2 release.
2367   o Major bugfixes:
2368     - When a tunneled directory request is made to a directory server
2369       that's down, notice after 30 seconds rather than 120 seconds. Also,
2370       fail any begindir streams that are pending on it, so they can
2371       retry elsewhere. This was causing multi-minute delays on bootstrap.
2374 Changes in version 0.2.0.22-rc - 2008-03-18
2375   Tor 0.2.0.22-rc is the third release candidate for the 0.2.0 series. It
2376   enables encrypted directory connections by default for non-relays, fixes
2377   some broken TLS behavior we added in 0.2.0.20-rc, and resolves many
2378   other bugs. The bundles also include Vidalia 0.1.1 and Torbutton 1.1.17.
2380   o Major features:
2381     - Enable encrypted directory connections by default for non-relays,
2382       so censor tools that block Tor directory connections based on their
2383       plaintext patterns will no longer work. This means Tor works in
2384       certain censored countries by default again.
2386   o Major bugfixes:
2387     - Make sure servers always request certificates from clients during
2388       TLS renegotiation. Reported by lodger; bugfix on 0.2.0.20-rc.
2389     - Do not enter a CPU-eating loop when a connection is closed in
2390       the middle of client-side TLS renegotiation. Fixes bug 622. Bug
2391       diagnosed by lodger; bugfix on 0.2.0.20-rc.
2392     - Fix assertion failure that could occur when a blocked circuit
2393       became unblocked, and it had pending client DNS requests. Bugfix
2394       on 0.2.0.1-alpha. Fixes bug 632.
2396   o Minor bugfixes (on 0.1.2.x):
2397     - Generate "STATUS_SERVER" events rather than misspelled
2398       "STATUS_SEVER" events. Caught by mwenge.
2399     - When counting the number of bytes written on a TLS connection,
2400       look at the BIO actually used for writing to the network, not
2401       at the BIO used (sometimes) to buffer data for the network.
2402       Looking at different BIOs could result in write counts on the
2403       order of ULONG_MAX. Fixes bug 614.
2404     - On Windows, correctly detect errors when listing the contents of
2405       a directory. Fix from lodger.
2407   o Minor bugfixes (on 0.2.0.x):
2408     - Downgrade "sslv3 alert handshake failure" message to INFO.
2409     - If we set RelayBandwidthRate and RelayBandwidthBurst very high but
2410       left BandwidthRate and BandwidthBurst at the default, we would be
2411       silently limited by those defaults. Now raise them to match the
2412       RelayBandwidth* values.
2413     - Fix the SVK version detection logic to work correctly on a branch.
2414     - Make --enable-openbsd-malloc work correctly on Linux with alpha
2415       CPUs. Fixes bug 625.
2416     - Logging functions now check that the passed severity is sane.
2417     - Use proper log levels in the testsuite call of
2418       get_interface_address6().
2419     - When using a nonstandard malloc, do not use the platform values for
2420       HAVE_MALLOC_GOOD_SIZE or HAVE_MALLOC_USABLE_SIZE.
2421     - Make the openbsd malloc code use 8k pages on alpha CPUs and
2422       16k pages on ia64.
2423     - Detect mismatched page sizes when using --enable-openbsd-malloc.
2424     - Avoid double-marked-for-close warning when certain kinds of invalid
2425       .in-addr.arpa addresses are passed to the DNSPort. Part of a fix
2426       for bug 617. Bugfix on 0.2.0.1-alpha.
2427     - Make sure that the "NULL-means-reject *:*" convention is followed by
2428       all the policy manipulation functions, avoiding some possible crash
2429       bugs. Bug found by lodger. Bugfix on 0.2.0.16-alpha.
2430     - Fix the implementation of ClientDNSRejectInternalAddresses so that it
2431       actually works, and doesn't warn about every single reverse lookup.
2432       Fixes the other part of bug 617.  Bugfix on 0.2.0.1-alpha.
2434   o Minor features:
2435     - Only log guard node status when guard node status has changed.
2436     - Downgrade the 3 most common "INFO" messages to "DEBUG". This will
2437       make "INFO" 75% less verbose.
2440 Changes in version 0.2.0.21-rc - 2008-03-02
2441   Tor 0.2.0.21-rc is the second release candidate for the 0.2.0 series. It
2442   makes Tor work well with Vidalia again, fixes a rare assert bug,
2443   and fixes a pair of more minor bugs. The bundles also include Vidalia
2444   0.1.0 and Torbutton 1.1.16.
2446   o Major bugfixes:
2447     - The control port should declare that it requires password auth
2448       when HashedControlSessionPassword is set too. Patch from Matt Edman;
2449       bugfix on 0.2.0.20-rc. Fixes bug 615.
2450     - Downgrade assert in connection_buckets_decrement() to a log message.
2451       This may help us solve bug 614, and in any case will make its
2452       symptoms less severe. Bugfix on 0.2.0.20-rc. Reported by fredzupy.
2453     - We were sometimes miscounting the number of bytes read from the
2454       network, causing our rate limiting to not be followed exactly.
2455       Bugfix on 0.2.0.16-alpha. Reported by lodger.
2457   o Minor bugfixes:
2458     - Fix compilation with OpenSSL 0.9.8 and 0.9.8a. All other supported
2459       OpenSSL versions should have been working fine. Diagnosis and patch
2460       from lodger, Karsten Loesing, and Sebastian Hahn. Fixes bug 616.
2461       Bugfix on 0.2.0.20-rc.
2464 Changes in version 0.2.0.20-rc - 2008-02-24
2465   Tor 0.2.0.20-rc is the first release candidate for the 0.2.0 series. It
2466   makes more progress towards normalizing Tor's TLS handshake, makes
2467   hidden services work better again, helps relays bootstrap if they don't
2468   know their IP address, adds optional support for linking in openbsd's
2469   allocator or tcmalloc, allows really fast relays to scale past 15000
2470   sockets, and fixes a bunch of minor bugs reported by Veracode.
2472   o Major features:
2473     - Enable the revised TLS handshake based on the one designed by
2474       Steven Murdoch in proposal 124, as revised in proposal 130. It
2475       includes version negotiation for OR connections as described in
2476       proposal 105. The new handshake is meant to be harder for censors
2477       to fingerprint, and it adds the ability to detect certain kinds of
2478       man-in-the-middle traffic analysis attacks. The version negotiation
2479       feature will allow us to improve Tor's link protocol more safely
2480       in the future.
2481     - Choose which bridge to use proportional to its advertised bandwidth,
2482       rather than uniformly at random. This should speed up Tor for
2483       bridge users. Also do this for people who set StrictEntryNodes.
2484     - When a TrackHostExits-chosen exit fails too many times in a row,
2485       stop using it. Bugfix on 0.1.2.x; fixes bug 437.
2487   o Major bugfixes:
2488     - Resolved problems with (re-)fetching hidden service descriptors.
2489       Patch from Karsten Loesing; fixes problems with 0.2.0.18-alpha
2490       and 0.2.0.19-alpha.
2491     - If we only ever used Tor for hidden service lookups or posts, we
2492       would stop building circuits and start refusing connections after
2493       24 hours, since we falsely believed that Tor was dormant. Reported
2494       by nwf; bugfix on 0.1.2.x.
2495     - Servers that don't know their own IP address should go to the
2496       authorities for their first directory fetch, even if their DirPort
2497       is off or if they don't know they're reachable yet. This will help
2498       them bootstrap better. Bugfix on 0.2.0.18-alpha; fixes bug 609.
2499     - When counting the number of open sockets, count not only the number
2500       of sockets we have received from the socket() call, but also
2501       the number we've gotten from accept() and socketpair(). This bug
2502       made us fail to count all sockets that we were using for incoming
2503       connections. Bugfix on 0.2.0.x.
2504     - Fix code used to find strings within buffers, when those strings
2505       are not in the first chunk of the buffer. Bugfix on 0.2.0.x.
2506     - Fix potential segfault when parsing HTTP headers. Bugfix on 0.2.0.x.
2507     - Add a new __HashedControlSessionPassword option for controllers
2508       to use for one-off session password hashes that shouldn't get
2509       saved to disk by SAVECONF --- Vidalia users were accumulating a
2510       pile of HashedControlPassword lines in their torrc files, one for
2511       each time they had restarted Tor and then clicked Save. Make Tor
2512       automatically convert "HashedControlPassword" to this new option but
2513       only when it's given on the command line. Partial fix for bug 586.
2515   o Minor features (performance):
2516     - Tune parameters for cell pool allocation to minimize amount of
2517       RAM overhead used.
2518     - Add OpenBSD malloc code from phk as an optional malloc
2519       replacement on Linux: some glibc libraries do very poorly
2520       with Tor's memory allocation patterns. Pass
2521       --enable-openbsd-malloc to get the replacement malloc code.
2522     - Add a --with-tcmalloc option to the configure script to link
2523       against tcmalloc (if present). Does not yet search for
2524       non-system include paths.
2525     - Stop imposing an arbitrary maximum on the number of file descriptors
2526       used for busy servers. Bug reported by Olaf Selke; patch from
2527       Sebastian Hahn.
2529   o Minor features (other):
2530     - When SafeLogging is disabled, log addresses along with all TLS
2531       errors.
2532     - When building with --enable-gcc-warnings, check for whether Apple's
2533       warning "-Wshorten-64-to-32" is available.
2534     - Add a --passphrase-fd argument to the tor-gencert command for
2535       scriptability.
2537   o Minor bugfixes (memory leaks and code problems):
2538     - We were leaking a file descriptor if Tor started with a zero-length
2539       cached-descriptors file. Patch by freddy77; bugfix on 0.1.2.
2540     - Detect size overflow in zlib code. Reported by Justin Ferguson and
2541       Dan Kaminsky.
2542     - We were comparing the raw BridgePassword entry with a base64'ed
2543       version of it, when handling a "/tor/networkstatus-bridges"
2544       directory request. Now compare correctly. Noticed by Veracode.
2545     - Recover from bad tracked-since value in MTBF-history file.
2546       Should fix bug 537.
2547     - Alter the code that tries to recover from unhandled write
2548       errors, to not try to flush onto a socket that's given us
2549       unhandled errors. Bugfix on 0.1.2.x.
2550     - Make Unix controlsockets work correctly on OpenBSD. Patch from
2551       tup. Bugfix on 0.2.0.3-alpha.
2553   o Minor bugfixes (other):
2554     - If we have an extra-info document for our server, always make
2555       it available on the control port, even if we haven't gotten
2556       a copy of it from an authority yet. Patch from mwenge.
2557     - Log the correct memory chunk sizes for empty RAM chunks in mempool.c.
2558     - Directory mirrors no longer include a guess at the client's IP
2559       address if the connection appears to be coming from the same /24
2560       network; it was producing too many wrong guesses.
2561     - Make the new hidden service code respect the SafeLogging setting.
2562       Bugfix on 0.2.0.x. Patch from Karsten.
2563     - When starting as an authority, do not overwrite all certificates
2564       cached from other authorities. Bugfix on 0.2.0.x. Fixes bug 606.
2565     - If we're trying to flush the last bytes on a connection (for
2566       example, when answering a directory request), reset the
2567       time-to-give-up timeout every time we manage to write something
2568       on the socket. Bugfix on 0.1.2.x.
2569     - Change the behavior of "getinfo status/good-server-descriptor"
2570       so it doesn't return failure when any authority disappears.
2571     - Even though the man page said that "TrackHostExits ." should
2572       work, nobody had ever implemented it. Bugfix on 0.1.0.x.
2573     - Report TLS "zero return" case as a "clean close" and "IO error"
2574       as a "close". Stop calling closes "unexpected closes": existing
2575       Tors don't use SSL_close(), so having a connection close without
2576       the TLS shutdown handshake is hardly unexpected.
2577     - Send NAMESERVER_STATUS messages for a single failed nameserver
2578       correctly.
2580   o Code simplifications and refactoring:
2581     - Remove the tor_strpartition function: its logic was confused,
2582       and it was only used for one thing that could be implemented far
2583       more easily.
2586 Changes in version 0.2.0.19-alpha - 2008-02-09
2587   Tor 0.2.0.19-alpha makes more progress towards normalizing Tor's TLS
2588   handshake, makes path selection for relays more secure and IP address
2589   guessing more robust, and generally fixes a lot of bugs in preparation
2590   for calling the 0.2.0 branch stable.
2592   o Major features:
2593     - Do not include recognizeable strings in the commonname part of
2594       Tor's x509 certificates.
2596   o Major bugfixes:
2597     - If we're a relay, avoid picking ourselves as an introduction point,
2598       a rendezvous point, or as the final hop for internal circuits. Bug
2599       reported by taranis and lodger. Bugfix on 0.1.2.x.
2600     - Patch from "Andrew S. Lists" to catch when we contact a directory
2601       mirror at IP address X and he says we look like we're coming from
2602       IP address X. Bugfix on 0.1.2.x.
2604   o Minor features (security):
2605     - Be more paranoid about overwriting sensitive memory on free(),
2606       as a defensive programming tactic to ensure forward secrecy.
2608   o Minor features (directory authority):
2609     - Actually validate the options passed to AuthDirReject,
2610       AuthDirInvalid, AuthDirBadDir, and AuthDirBadExit.
2611     - Reject router descriptors with out-of-range bandwidthcapacity or
2612       bandwidthburst values.
2614   o Minor features (controller):
2615     - Reject controller commands over 1MB in length.  This keeps rogue
2616       processes from running us out of memory.
2618   o Minor features (misc):
2619     - Give more descriptive well-formedness errors for out-of-range
2620       hidden service descriptor/protocol versions.
2621     - Make memory debugging information describe more about history
2622       of cell allocation, so we can help reduce our memory use.
2624   o Deprecated features (controller):
2625     - The status/version/num-versioning and status/version/num-concurring
2626       GETINFO options are no longer useful in the v3 directory protocol:
2627       treat them as deprecated, and warn when they're used.
2629   o Minor bugfixes:
2630     - When our consensus networkstatus has been expired for a while, stop
2631       being willing to build circuits using it. Fixes bug 401. Bugfix
2632       on 0.1.2.x.
2633     - Directory caches now fetch certificates from all authorities
2634       listed in a networkstatus consensus, even when they do not
2635       recognize them. Fixes bug 571. Bugfix on 0.2.0.x.
2636     - When connecting to a bridge without specifying its key, insert
2637       the connection into the identity-to-connection map as soon as
2638       a key is learned. Fixes bug 574. Bugfix on 0.2.0.x.
2639     - Detect versions of OS X where malloc_good_size() is present in the
2640       library but never actually declared. Resolves bug 587. Bugfix
2641       on 0.2.0.x.
2642     - Stop incorrectly truncating zlib responses to directory authority
2643       signature download requests. Fixes bug 593. Bugfix on 0.2.0.x.
2644     - Stop recommending that every server operator send mail to tor-ops.
2645       Resolves bug 597. Bugfix on 0.1.2.x.
2646     - Don't trigger an assert if we start a directory authority with a
2647       private IP address (like 127.0.0.1).
2648     - Avoid possible failures when generating a directory with routers
2649       with over-long versions strings, or too many flags set. Bugfix
2650       on 0.1.2.x.
2651     - If an attempt to launch a DNS resolve request over the control
2652       port fails because we have overrun the limit on the number of
2653       connections, tell the controller that the request has failed.
2654     - Avoid using too little bandwidth when our clock skips a few
2655       seconds. Bugfix on 0.1.2.x.
2656     - Fix shell error when warning about missing packages in configure
2657       script, on Fedora or Red Hat machines. Bugfix on 0.2.0.x.
2658     - Do not become confused when receiving a spurious VERSIONS-like
2659       cell from a confused v1 client.  Bugfix on 0.2.0.x.
2660     - Re-fetch v2 (as well as v0) rendezvous descriptors when all
2661       introduction points for a hidden service have failed. Patch from
2662       Karsten Loesing. Bugfix on 0.2.0.x.
2664   o Code simplifications and refactoring:
2665     - Remove some needless generality from cpuworker code, for improved
2666       type-safety.
2667     - Stop overloading the circuit_t.onionskin field for both "onionskin
2668       from a CREATE cell that we are waiting for a cpuworker to be
2669       assigned" and "onionskin from an EXTEND cell that we are going to
2670       send to an OR as soon as we are connected". Might help with bug 600.
2671     - Add an in-place version of aes_crypt() so that we can avoid doing a
2672       needless memcpy() call on each cell payload.
2675 Changes in version 0.2.0.18-alpha - 2008-01-25
2676   Tor 0.2.0.18-alpha adds a sixth v3 directory authority run by CCC,
2677   fixes a big memory leak in 0.2.0.17-alpha, and adds new config options
2678   that can warn or reject connections to ports generally associated with
2679   vulnerable-plaintext protocols.
2681   o New directory authorities:
2682     - Set up dannenberg (run by CCC) as the sixth v3 directory
2683       authority.
2685   o Major bugfixes:
2686     - Fix a major memory leak when attempting to use the v2 TLS
2687       handshake code. Bugfix on 0.2.0.x; fixes bug 589.
2688     - We accidentally enabled the under-development v2 TLS handshake
2689       code, which was causing log entries like "TLS error while
2690       renegotiating handshake". Disable it again. Resolves bug 590.
2691     - We were computing the wrong Content-Length: header for directory
2692       responses that need to be compressed on the fly, causing clients
2693       asking for those items to always fail. Bugfix on 0.2.0.x; partially
2694       fixes bug 593.
2696   o Major features:
2697     - Avoid going directly to the directory authorities even if you're a
2698       relay, if you haven't found yourself reachable yet or if you've
2699       decided not to advertise your dirport yet. Addresses bug 556.
2700     - If we've gone 12 hours since our last bandwidth check, and we
2701       estimate we have less than 50KB bandwidth capacity but we could
2702       handle more, do another bandwidth test.
2703     - New config options WarnPlaintextPorts and RejectPlaintextPorts so
2704       Tor can warn and/or refuse connections to ports commonly used with
2705       vulnerable-plaintext protocols. Currently we warn on ports 23,
2706       109, 110, and 143, but we don't reject any.
2708   o Minor bugfixes:
2709     - When we setconf ClientOnly to 1, close any current OR and Dir
2710       listeners. Reported by mwenge.
2711     - When we get a consensus that's been signed by more people than
2712       we expect, don't log about it; it's not a big deal. Reported
2713       by Kyle Williams.
2715   o Minor features:
2716     - Don't answer "/tor/networkstatus-bridges" directory requests if
2717       the request isn't encrypted.
2718     - Make "ClientOnly 1" config option disable directory ports too.
2719     - Patches from Karsten Loesing to make v2 hidden services more
2720       robust: work even when there aren't enough HSDir relays available;
2721       retry when a v2 rend desc fetch fails; but don't retry if we
2722       already have a usable v0 rend desc.
2725 Changes in version 0.2.0.17-alpha - 2008-01-17
2726   Tor 0.2.0.17-alpha makes the tarball build cleanly again (whoops).
2728   o Compile fixes:
2729     - Make the tor-gencert man page get included correctly in the tarball.
2732 Changes in version 0.2.0.16-alpha - 2008-01-17
2733   Tor 0.2.0.16-alpha adds a fifth v3 directory authority run by Karsten
2734   Loesing, and generally cleans up a lot of features and minor bugs.
2736   o New directory authorities:
2737     - Set up gabelmoo (run by Karsten Loesing) as the fifth v3 directory
2738       authority.
2740   o Major performance improvements:
2741     - Switch our old ring buffer implementation for one more like that
2742       used by free Unix kernels. The wasted space in a buffer with 1mb
2743       of data will now be more like 8k than 1mb. The new implementation
2744       also avoids realloc();realloc(); patterns that can contribute to
2745       memory fragmentation.
2747   o Minor features:
2748     - Configuration files now accept C-style strings as values. This
2749       helps encode characters not allowed in the current configuration
2750       file format, such as newline or #. Addresses bug 557.
2751     - Although we fixed bug 539 (where servers would send HTTP status 503
2752       responses _and_ send a body too), there are still servers out
2753       there that haven't upgraded. Therefore, make clients parse such
2754       bodies when they receive them.
2755     - When we're not serving v2 directory information, there is no reason
2756       to actually keep any around. Remove the obsolete files and directory
2757       on startup if they are very old and we aren't going to serve them.
2759   o Minor performance improvements:
2760     - Reference-count and share copies of address policy entries; only 5%
2761       of them were actually distinct.
2762     - Never walk through the list of logs if we know that no log is
2763       interested in a given message.
2765   o Minor bugfixes:
2766     - When an authority has not signed a consensus, do not try to
2767       download a nonexistent "certificate with key 00000000". Bugfix
2768       on 0.2.0.x. Fixes bug 569.
2769     - Fix a rare assert error when we're closing one of our threads:
2770       use a mutex to protect the list of logs, so we never write to the
2771       list as it's being freed. Bugfix on 0.1.2.x. Fixes the very rare
2772       bug 575, which is kind of the revenge of bug 222.
2773     - Patch from Karsten Loesing to complain less at both the client
2774       and the relay when a relay used to have the HSDir flag but doesn't
2775       anymore, and we try to upload a hidden service descriptor.
2776     - Stop leaking one cert per TLS context. Fixes bug 582. Bugfix on
2777       0.2.0.15-alpha.
2778     - Do not try to download missing certificates until we have tried
2779       to check our fallback consensus. Fixes bug 583.
2780     - Make bridges round reported GeoIP stats info up to the nearest
2781       estimate, not down. Now we can distinguish between "0 people from
2782       this country" and "1 person from this country".
2783     - Avoid a spurious free on base64 failure. Bugfix on 0.1.2.
2784     - Avoid possible segfault if key generation fails in
2785       crypto_pk_hybrid_encrypt. Bugfix on 0.2.0.
2786     - Avoid segfault in the case where a badly behaved v2 versioning
2787       directory sends a signed networkstatus with missing client-versions.
2788       Bugfix on 0.1.2.
2789     - Avoid segfaults on certain complex invocations of
2790       router_get_by_hexdigest(). Bugfix on 0.1.2.
2791     - Correct bad index on array access in parse_http_time(). Bugfix
2792       on 0.2.0.
2793     - Fix possible bug in vote generation when server versions are present
2794       but client versions are not.
2795     - Fix rare bug on REDIRECTSTREAM control command when called with no
2796       port set: it could erroneously report an error when none had
2797       happened.
2798     - Avoid bogus crash-prone, leak-prone tor_realloc when we're
2799       compressing large objects and find ourselves with more than 4k
2800       left over. Bugfix on 0.2.0.
2801     - Fix a small memory leak when setting up a hidden service.
2802     - Fix a few memory leaks that could in theory happen under bizarre
2803       error conditions.
2804     - Fix an assert if we post a general-purpose descriptor via the
2805       control port but that descriptor isn't mentioned in our current
2806       network consensus. Bug reported by Jon McLachlan; bugfix on
2807       0.2.0.9-alpha.
2809   o Minor features (controller):
2810     - Get NS events working again. Patch from tup.
2811     - The GETCONF command now escapes and quotes configuration values
2812       that don't otherwise fit into the torrc file.
2813     - The SETCONF command now handles quoted values correctly.
2815   o Minor features (directory authorities):
2816     - New configuration options to override default maximum number of
2817       servers allowed on a single IP address. This is important for
2818       running a test network on a single host.
2819     - Actually implement the -s option to tor-gencert.
2820     - Add a manual page for tor-gencert.
2822   o Minor features (bridges):
2823     - Bridge authorities no longer serve bridge descriptors over
2824       unencrypted connections.
2826   o Minor features (other):
2827     - Add hidden services and DNSPorts to the list of things that make
2828       Tor accept that it has running ports. Change starting Tor with no
2829       ports from a fatal error to a warning; we might change it back if
2830       this turns out to confuse anybody. Fixes bug 579.
2833 Changes in version 0.1.2.19 - 2008-01-17
2834   Tor 0.1.2.19 fixes a huge memory leak on exit relays, makes the default
2835   exit policy a little bit more conservative so it's safer to run an
2836   exit relay on a home system, and fixes a variety of smaller issues.
2838   o Security fixes:
2839     - Exit policies now reject connections that are addressed to a
2840       relay's public (external) IP address too, unless
2841       ExitPolicyRejectPrivate is turned off. We do this because too
2842       many relays are running nearby to services that trust them based
2843       on network address.
2845   o Major bugfixes:
2846     - When the clock jumps forward a lot, do not allow the bandwidth
2847       buckets to become negative. Fixes bug 544.
2848     - Fix a memory leak on exit relays; we were leaking a cached_resolve_t
2849       on every successful resolve. Reported by Mike Perry.
2850     - Purge old entries from the "rephist" database and the hidden
2851       service descriptor database even when DirPort is zero.
2852     - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
2853       requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
2854       crashing or mis-answering these requests.
2855     - When we decide to send a 503 response to a request for servers, do
2856       not then also send the server descriptors: this defeats the whole
2857       purpose. Fixes bug 539.
2859   o Minor bugfixes:
2860     - Changing the ExitPolicyRejectPrivate setting should cause us to
2861       rebuild our server descriptor.
2862     - Fix handling of hex nicknames when answering controller requests for
2863       networkstatus by name, or when deciding whether to warn about
2864       unknown routers in a config option. (Patch from mwenge.)
2865     - Fix a couple of hard-to-trigger autoconf problems that could result
2866       in really weird results on platforms whose sys/types.h files define
2867       nonstandard integer types.
2868     - Don't try to create the datadir when running --verify-config or
2869       --hash-password. Resolves bug 540.
2870     - If we were having problems getting a particular descriptor from the
2871       directory caches, and then we learned about a new descriptor for
2872       that router, we weren't resetting our failure count. Reported
2873       by lodger.
2874     - Although we fixed bug 539 (where servers would send HTTP status 503
2875       responses _and_ send a body too), there are still servers out there
2876       that haven't upgraded. Therefore, make clients parse such bodies
2877       when they receive them.
2878     - Run correctly on systems where rlim_t is larger than unsigned long.
2879       This includes some 64-bit systems.
2880     - Run correctly on platforms (like some versions of OS X 10.5) where
2881       the real limit for number of open files is OPEN_FILES, not rlim_max
2882       from getrlimit(RLIMIT_NOFILES).
2883     - Avoid a spurious free on base64 failure.
2884     - Avoid segfaults on certain complex invocations of
2885       router_get_by_hexdigest().
2886     - Fix rare bug on REDIRECTSTREAM control command when called with no
2887       port set: it could erroneously report an error when none had
2888       happened.
2891 Changes in version 0.2.0.15-alpha - 2007-12-25
2892   Tor 0.2.0.14-alpha and 0.2.0.15-alpha fix a bunch of bugs with the
2893   features added in 0.2.0.13-alpha.
2895   o Major bugfixes:
2896     - Fix several remotely triggerable asserts based on DirPort requests
2897       for a v2 or v3 networkstatus object before we were prepared. This
2898       was particularly bad for 0.2.0.13 and later bridge relays, who
2899       would never have a v2 networkstatus and would thus always crash
2900       when used. Bugfixes on 0.2.0.x.
2901     - Estimate the v3 networkstatus size more accurately, rather than
2902       estimating it at zero bytes and giving it artificially high priority
2903       compared to other directory requests. Bugfix on 0.2.0.x.
2905   o Minor bugfixes:
2906     - Fix configure.in logic for cross-compilation.
2907     - When we load a bridge descriptor from the cache, and it was
2908       previously unreachable, mark it as retriable so we won't just
2909       ignore it. Also, try fetching a new copy immediately. Bugfixes
2910       on 0.2.0.13-alpha.
2911     - The bridge GeoIP stats were counting other relays, for example
2912       self-reachability and authority-reachability tests.
2914   o Minor features:
2915     - Support compilation to target iPhone; patch from cjacker huang.
2916       To build for iPhone, pass the --enable-iphone option to configure.
2919 Changes in version 0.2.0.14-alpha - 2007-12-23
2920   o Major bugfixes:
2921     - Fix a crash on startup if you install Tor 0.2.0.13-alpha fresh
2922       without a datadirectory from a previous Tor install. Reported
2923       by Zax.
2924     - Fix a crash when we fetch a descriptor that turns out to be
2925       unexpected (it used to be in our networkstatus when we started
2926       fetching it, but it isn't in our current networkstatus), and we
2927       aren't using bridges. Bugfix on 0.2.0.x.
2928     - Fix a crash when accessing hidden services: it would work the first
2929       time you use a given introduction point for your service, but
2930       on subsequent requests we'd be using garbage memory. Fixed by
2931       Karsten Loesing. Bugfix on 0.2.0.13-alpha.
2932     - Fix a crash when we load a bridge descriptor from disk but we don't
2933       currently have a Bridge line for it in our torrc. Bugfix on
2934       0.2.0.13-alpha.
2936   o Major features:
2937     - If bridge authorities set BridgePassword, they will serve a
2938       snapshot of known bridge routerstatuses from their DirPort to
2939       anybody who knows that password. Unset by default.
2941   o Minor bugfixes:
2942     - Make the unit tests build again.
2943     - Make "GETINFO/desc-annotations/id/<OR digest>" actually work.
2944     - Make PublishServerDescriptor default to 1, so the default doesn't
2945       have to change as we invent new directory protocol versions.
2946     - Fix test for rlim_t on OSX 10.3: sys/resource.h doesn't want to
2947       be included unless sys/time.h is already included.  Fixes
2948       bug 553.  Bugfix on 0.2.0.x.
2949     - If we receive a general-purpose descriptor and then receive an
2950       identical bridge-purpose descriptor soon after, don't discard
2951       the next one as a duplicate.
2953   o Minor features:
2954     - If BridgeRelay is set to 1, then the default for
2955       PublishServerDescriptor is now "bridge" rather than "v2,v3".
2956     - If the user sets RelayBandwidthRate but doesn't set
2957       RelayBandwidthBurst, then make them equal rather than erroring out.
2960 Changes in version 0.2.0.13-alpha - 2007-12-21
2961   Tor 0.2.0.13-alpha adds a fourth v3 directory authority run by Geoff
2962   Goodell, fixes many more bugs, and adds a lot of infrastructure for
2963   upcoming features.
2965   o New directory authorities:
2966     - Set up lefkada (run by Geoff Goodell) as the fourth v3 directory
2967       authority.
2969   o Major bugfixes:
2970     - Only update guard status (usable / not usable) once we have
2971       enough directory information. This was causing us to always pick
2972       two new guards on startup (bugfix on 0.2.0.9-alpha), and it was
2973       causing us to discard all our guards on startup if we hadn't been
2974       running for a few weeks (bugfix on 0.1.2.x). Fixes bug 448.
2975     - Purge old entries from the "rephist" database and the hidden
2976       service descriptor databases even when DirPort is zero. Bugfix
2977       on 0.1.2.x.
2978     - We were ignoring our RelayBandwidthRate for the first 30 seconds
2979       after opening a circuit -- even a relayed circuit. Bugfix on
2980       0.2.0.3-alpha.
2981     - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
2982       requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
2983       crashing or mis-answering these types of requests.
2984     - Relays were publishing their server descriptor to v1 and v2
2985       directory authorities, but they didn't try publishing to v3-only
2986       authorities. Fix this; and also stop publishing to v1 authorities.
2987       Bugfix on 0.2.0.x.
2988     - When we were reading router descriptors from cache, we were ignoring
2989       the annotations -- so for example we were reading in bridge-purpose
2990       descriptors as general-purpose descriptors. Bugfix on 0.2.0.8-alpha.
2991     - When we decided to send a 503 response to a request for servers, we
2992       were then also sending the server descriptors: this defeats the
2993       whole purpose. Fixes bug 539; bugfix on 0.1.2.x.
2995   o Major features:
2996     - Bridge relays now behave like clients with respect to time
2997       intervals for downloading new consensus documents -- otherwise they
2998       stand out. Bridge users now wait until the end of the interval,
2999       so their bridge relay will be sure to have a new consensus document.
3000     - Three new config options (AlternateDirAuthority,
3001       AlternateBridgeAuthority, and AlternateHSAuthority) that let the
3002       user selectively replace the default directory authorities by type,
3003       rather than the all-or-nothing replacement that DirServer offers.
3004     - Tor can now be configured to read a GeoIP file from disk in one
3005       of two formats. This can be used by controllers to map IP addresses
3006       to countries. Eventually, it may support exit-by-country.
3007     - When possible, bridge relays remember which countries users
3008       are coming from, and report aggregate information in their
3009       extra-info documents, so that the bridge authorities can learn
3010       where Tor is blocked.
3011     - Bridge directory authorities now do reachability testing on the
3012       bridges they know. They provide router status summaries to the
3013       controller via "getinfo ns/purpose/bridge", and also dump summaries
3014       to a file periodically.
3015     - Stop fetching directory info so aggressively if your DirPort is
3016       on but your ORPort is off; stop fetching v2 dir info entirely.
3017       You can override these choices with the new FetchDirInfoEarly
3018       config option.
3020   o Minor bugfixes:
3021     - The fix in 0.2.0.12-alpha cleared the "hsdir" flag in v3 network
3022       consensus documents when there are too many relays at a single
3023       IP address. Now clear it in v2 network status documents too, and
3024       also clear it in routerinfo_t when the relay is no longer listed
3025       in the relevant networkstatus document.
3026     - Don't crash if we get an unexpected value for the
3027       PublishServerDescriptor config option. Reported by Matt Edman;
3028       bugfix on 0.2.0.9-alpha.
3029     - Our new v2 hidden service descriptor format allows descriptors
3030       that have no introduction points. But Tor crashed when we tried
3031       to build a descriptor with no intro points (and it would have
3032       crashed if we had tried to parse one). Bugfix on 0.2.0.x; patch
3033       by Karsten Loesing.
3034     - Fix building with dmalloc 5.5.2 with glibc.
3035     - Reject uploaded descriptors and extrainfo documents if they're
3036       huge. Otherwise we'll cache them all over the network and it'll
3037       clog everything up. Reported by Aljosha Judmayer.
3038     - Check for presence of s6_addr16 and s6_addr32 fields in in6_addr
3039       via autoconf. Should fix compile on solaris. Bugfix on 0.2.0.x.
3040     - When the DANGEROUS_VERSION controller status event told us we're
3041       running an obsolete version, it used the string "OLD" to describe
3042       it. Yet the "getinfo" interface used the string "OBSOLETE". Now use
3043       "OBSOLETE" in both cases. Bugfix on 0.1.2.x.
3044     - If we can't expand our list of entry guards (e.g. because we're
3045       using bridges or we have StrictEntryNodes set), don't mark relays
3046       down when they fail a directory request. Otherwise we're too quick
3047       to mark all our entry points down. Bugfix on 0.1.2.x.
3048     - Fix handling of hex nicknames when answering controller requests for
3049       networkstatus by name, or when deciding whether to warn about unknown
3050       routers in a config option. Bugfix on 0.1.2.x. (Patch from mwenge.)
3051     - Fix a couple of hard-to-trigger autoconf problems that could result
3052       in really weird results on platforms whose sys/types.h files define
3053       nonstandard integer types. Bugfix on 0.1.2.x.
3054     - Fix compilation with --disable-threads set. Bugfix on 0.2.0.x.
3055     - Don't crash on name lookup when we have no current consensus.  Fixes
3056       bug 538; bugfix on 0.2.0.x.
3057     - Only Tors that want to mirror the v2 directory info should
3058       create the "cached-status" directory in their datadir. (All Tors
3059       used to create it.) Bugfix on 0.2.0.9-alpha.
3060     - Directory authorities should only automatically download Extra Info
3061       documents if they're v1, v2, or v3 authorities. Bugfix on 0.1.2.x.
3063   o Minor features:
3064     - On the USR1 signal, when dmalloc is in use, log the top 10 memory
3065       consumers. (We already do this on HUP.)
3066     - Authorities and caches fetch the v2 networkstatus documents
3067       less often, now that v3 is encouraged.
3068     - Add a new config option BridgeRelay that specifies you want to
3069       be a bridge relay. Right now the only difference is that it makes
3070       you answer begin_dir requests, and it makes you cache dir info,
3071       even if your DirPort isn't on.
3072     - Add "GETINFO/desc-annotations/id/<OR digest>" so controllers can
3073       ask about source, timestamp of arrival, purpose, etc. We need
3074       something like this to help Vidalia not do GeoIP lookups on bridge
3075       addresses.
3076     - Allow multiple HashedControlPassword config lines, to support
3077       multiple controller passwords.
3078     - Authorities now decide whether they're authoritative for a given
3079       router based on the router's purpose.
3080     - New config options AuthDirBadDir and AuthDirListBadDirs for
3081       authorities to mark certain relays as "bad directories" in the
3082       networkstatus documents. Also supports the "!baddir" directive in
3083       the approved-routers file.
3086 Changes in version 0.2.0.12-alpha - 2007-11-16
3087   This twelfth development snapshot fixes some more build problems as
3088   well as a few minor bugs.
3090   o Compile fixes:
3091     - Make it build on OpenBSD again. Patch from tup.
3092     - Substitute BINDIR and LOCALSTATEDIR in scripts. Fixes
3093       package-building for Red Hat, OS X, etc.
3095   o Minor bugfixes (on 0.1.2.x):
3096     - Changing the ExitPolicyRejectPrivate setting should cause us to
3097       rebuild our server descriptor.
3099   o Minor bugfixes (on 0.2.0.x):
3100     - When we're lacking a consensus, don't try to perform rendezvous
3101       operations. Reported by Karsten Loesing.
3102     - Fix a small memory leak whenever we decide against using a
3103       newly picked entry guard. Reported by Mike Perry.
3104     - When authorities detected more than two relays running on the same
3105       IP address, they were clearing all the status flags but forgetting
3106       to clear the "hsdir" flag. So clients were being told that a
3107       given relay was the right choice for a v2 hsdir lookup, yet they
3108       never had its descriptor because it was marked as 'not running'
3109       in the consensus.
3110     - If we're trying to fetch a bridge descriptor and there's no way
3111       the bridge authority could help us (for example, we don't know
3112       a digest, or there is no bridge authority), don't be so eager to
3113       fall back to asking the bridge authority.
3114     - If we're using bridges or have strictentrynodes set, and our
3115       chosen exit is in the same family as all our bridges/entry guards,
3116       then be flexible about families.
3118   o Minor features:
3119     - When we negotiate a v2 link-layer connection (not yet implemented),
3120       accept RELAY_EARLY cells and turn them into RELAY cells if we've
3121       negotiated a v1 connection for their next step. Initial code for
3122       proposal 110.
3125 Changes in version 0.2.0.11-alpha - 2007-11-12
3126   This eleventh development snapshot fixes some build problems with
3127   the previous snapshot. It also includes a more secure-by-default exit
3128   policy for relays, fixes an enormous memory leak for exit relays, and
3129   fixes another bug where servers were falling out of the directory list.
3131   o Security fixes:
3132     - Exit policies now reject connections that are addressed to a
3133       relay's public (external) IP address too, unless
3134       ExitPolicyRejectPrivate is turned off. We do this because too
3135       many relays are running nearby to services that trust them based
3136       on network address. Bugfix on 0.1.2.x.
3138   o Major bugfixes:
3139     - Fix a memory leak on exit relays; we were leaking a cached_resolve_t
3140       on every successful resolve. Reported by Mike Perry; bugfix
3141       on 0.1.2.x.
3142     - On authorities, never downgrade to old router descriptors simply
3143       because they're listed in the consensus. This created a catch-22
3144       where we wouldn't list a new descriptor because there was an
3145       old one in the consensus, and we couldn't get the new one in the
3146       consensus because we wouldn't list it. Possible fix for bug 548.
3147       Also, this might cause bug 543 to appear on authorities; if so,
3148       we'll need a band-aid for that. Bugfix on 0.2.0.9-alpha.
3150   o Packaging fixes on 0.2.0.10-alpha:
3151     - We were including instructions about what to do with the
3152       src/config/fallback-consensus file, but we weren't actually
3153       including it in the tarball. Disable all of that for now.
3155   o Minor features:
3156     - Allow people to say PreferTunnelledDirConns rather than
3157       PreferTunneledDirConns, for those alternate-spellers out there.
3159   o Minor bugfixes:
3160     - Don't reevaluate all the information from our consensus document
3161       just because we've downloaded a v2 networkstatus that we intend
3162       to cache. Fixes bug 545; bugfix on 0.2.0.x.
3165 Changes in version 0.2.0.10-alpha - 2007-11-10
3166   This tenth development snapshot adds a third v3 directory authority
3167   run by Mike Perry, adds most of Karsten Loesing's new hidden service
3168   descriptor format, fixes a bad crash bug and new bridge bugs introduced
3169   in 0.2.0.9-alpha, fixes many bugs with the v3 directory implementation,
3170   fixes some minor memory leaks in previous 0.2.0.x snapshots, and
3171   addresses many more minor issues.
3173   o New directory authorities:
3174     - Set up ides (run by Mike Perry) as the third v3 directory authority.
3176   o Major features:
3177     - Allow tunnelled directory connections to ask for an encrypted
3178       "begin_dir" connection or an anonymized "uses a full Tor circuit"
3179       connection independently. Now we can make anonymized begin_dir
3180       connections for (e.g.) more secure hidden service posting and
3181       fetching.
3182     - More progress on proposal 114: code from Karsten Loesing to
3183       implement new hidden service descriptor format.
3184     - Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
3185       accommodate the growing number of servers that use the default
3186       and are reaching it.
3187     - Directory authorities use a new formula for selecting which nodes
3188       to advertise as Guards: they must be in the top 7/8 in terms of
3189       how long we have known about them, and above the median of those
3190       nodes in terms of weighted fractional uptime.
3191     - Make "not enough dir info yet" warnings describe *why* Tor feels
3192       it doesn't have enough directory info yet.
3194   o Major bugfixes:
3195     - Stop servers from crashing if they set a Family option (or
3196       maybe in other situations too). Bugfix on 0.2.0.9-alpha; reported
3197       by Fabian Keil.
3198     - Make bridge users work again -- the move to v3 directories in
3199       0.2.0.9-alpha had introduced a number of bugs that made bridges
3200       no longer work for clients.
3201     - When the clock jumps forward a lot, do not allow the bandwidth
3202       buckets to become negative. Bugfix on 0.1.2.x; fixes bug 544.
3204   o Major bugfixes (v3 dir, bugfixes on 0.2.0.9-alpha):
3205     - When the consensus lists a router descriptor that we previously were
3206       mirroring, but that we considered non-canonical, reload the
3207       descriptor as canonical. This fixes bug 543 where Tor servers
3208       would start complaining after a few days that they don't have
3209       enough directory information to build a circuit.
3210     - Consider replacing the current consensus when certificates arrive
3211       that make the pending consensus valid. Previously, we were only
3212       considering replacement when the new certs _didn't_ help.
3213     - Fix an assert error on startup if we didn't already have the
3214       consensus and certs cached in our datadirectory: we were caching
3215       the consensus in consensus_waiting_for_certs but then free'ing it
3216       right after.
3217     - Avoid sending a request for "keys/fp" (for which we'll get a 400 Bad
3218       Request) if we need more v3 certs but we've already got pending
3219       requests for all of them.
3220     - Correctly back off from failing certificate downloads. Fixes
3221       bug 546.
3222     - Authorities don't vote on the Running flag if they have been running
3223       for less than 30 minutes themselves. Fixes bug 547, where a newly
3224       started authority would vote that everyone was down.
3226   o New requirements:
3227     - Drop support for OpenSSL version 0.9.6. Just about nobody was using
3228       it, it had no AES, and it hasn't seen any security patches since
3229       2004.
3231   o Minor features:
3232     - Clients now hold circuitless TLS connections open for 1.5 times
3233       MaxCircuitDirtiness (15 minutes), since it is likely that they'll
3234       rebuild a new circuit over them within that timeframe. Previously,
3235       they held them open only for KeepalivePeriod (5 minutes).
3236     - Use "If-Modified-Since" to avoid retrieving consensus
3237       networkstatuses that we already have.
3238     - When we have no consensus, check FallbackNetworkstatusFile (defaults
3239       to $PREFIX/share/tor/fallback-consensus) for a consensus.  This way
3240       we start knowing some directory caches.
3241     - When we receive a consensus from the future, warn about skew.
3242     - Improve skew reporting: try to give the user a better log message
3243       about how skewed they are, and how much this matters.
3244     - When we have a certificate for an authority, believe that
3245       certificate's claims about the authority's IP address.
3246     - New --quiet command-line option to suppress the default console log.
3247       Good in combination with --hash-password.
3248     - Authorities send back an X-Descriptor-Not-New header in response to
3249       an accepted-but-discarded descriptor upload.  Partially implements
3250       fix for bug 535.
3251     - Make the log message for "tls error. breaking." more useful.
3252     - Better log messages about certificate downloads, to attempt to
3253       track down the second incarnation of bug 546.
3255   o Minor features (bridges):
3256     - If bridge users set UpdateBridgesFromAuthority, but the digest
3257       they ask for is a 404 from the bridge authority, they now fall
3258       back to trying the bridge directly.
3259     - Bridges now use begin_dir to publish their server descriptor to
3260       the bridge authority, even when they haven't set TunnelDirConns.
3262   o Minor features (controller):
3263     - When reporting clock skew, and we know that the clock is _at least
3264       as skewed_ as some value, but we don't know the actual value,
3265       report the value as a "minimum skew."
3267   o Utilities:
3268     - Update linux-tor-prio.sh script to allow QoS based on the uid of
3269       the Tor process. Patch from Marco Bonetti with tweaks from Mike
3270       Perry.
3272   o Minor bugfixes:
3273     - Refuse to start if both ORPort and UseBridges are set. Bugfix
3274       on 0.2.0.x, suggested by Matt Edman.
3275     - Don't stop fetching descriptors when FetchUselessDescriptors is
3276       set, even if we stop asking for circuits. Bugfix on 0.1.2.x;
3277       reported by tup and ioerror.
3278     - Better log message on vote from unknown authority.
3279     - Don't log "Launching 0 request for 0 router" message.
3281   o Minor bugfixes (memory leaks):
3282     - Stop leaking memory every time we parse a v3 certificate. Bugfix
3283       on 0.2.0.1-alpha.
3284     - Stop leaking memory every time we load a v3 certificate. Bugfix
3285       on 0.2.0.1-alpha. Fixes bug 536.
3286     - Stop leaking a cached networkstatus on exit.  Bugfix on
3287       0.2.0.3-alpha.
3288     - Stop leaking voter information every time we free a consensus.
3289       Bugfix on 0.2.0.3-alpha.
3290     - Stop leaking signed data every time we check a voter signature.
3291       Bugfix on 0.2.0.3-alpha.
3292     - Stop leaking a signature every time we fail to parse a consensus or
3293       a vote.  Bugfix on 0.2.0.3-alpha.
3294     - Stop leaking v2_download_status_map on shutdown.  Bugfix on
3295       0.2.0.9-alpha.
3296     - Stop leaking conn->nickname every time we make a connection to a
3297       Tor relay without knowing its expected identity digest (e.g. when
3298       using bridges). Bugfix on 0.2.0.3-alpha.
3300   - Minor bugfixes (portability):
3301     - Run correctly on platforms where rlim_t is larger than unsigned
3302       long, and/or where the real limit for number of open files is
3303       OPEN_FILES, not rlim_max from getrlimit(RLIMIT_NOFILES). In
3304       particular, these may be needed for OS X 10.5.
3307 Changes in version 0.1.2.18 - 2007-10-28
3308   Tor 0.1.2.18 fixes many problems including crash bugs, problems with
3309   hidden service introduction that were causing huge delays, and a big
3310   bug that was causing some servers to disappear from the network status
3311   lists for a few hours each day.
3313   o Major bugfixes (crashes):
3314     - If a connection is shut down abruptly because of something that
3315       happened inside connection_flushed_some(), do not call
3316       connection_finished_flushing(). Should fix bug 451:
3317       "connection_stop_writing: Assertion conn->write_event failed"
3318       Bugfix on 0.1.2.7-alpha.
3319     - Fix possible segfaults in functions called from
3320       rend_process_relay_cell().
3322   o Major bugfixes (hidden services):
3323     - Hidden services were choosing introduction points uniquely by
3324       hexdigest, but when constructing the hidden service descriptor
3325       they merely wrote the (potentially ambiguous) nickname.
3326     - Clients now use the v2 intro format for hidden service
3327       connections: they specify their chosen rendezvous point by identity
3328       digest rather than by (potentially ambiguous) nickname. These
3329       changes could speed up hidden service connections dramatically.
3331   o Major bugfixes (other):
3332     - Stop publishing a new server descriptor just because we get a
3333       HUP signal. This led (in a roundabout way) to some servers getting
3334       dropped from the networkstatus lists for a few hours each day.
3335     - When looking for a circuit to cannibalize, consider family as well
3336       as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced
3337       circuit cannibalization).
3338     - When a router wasn't listed in a new networkstatus, we were leaving
3339       the flags for that router alone -- meaning it remained Named,
3340       Running, etc -- even though absence from the networkstatus means
3341       that it shouldn't be considered to exist at all anymore. Now we
3342       clear all the flags for routers that fall out of the networkstatus
3343       consensus. Fixes bug 529.
3345   o Minor bugfixes:
3346     - Don't try to access (or alter) the state file when running
3347       --list-fingerprint or --verify-config or --hash-password. Resolves
3348       bug 499.
3349     - When generating information telling us how to extend to a given
3350       router, do not try to include the nickname if it is
3351       absent. Resolves bug 467.
3352     - Fix a user-triggerable segfault in expand_filename(). (There isn't
3353       a way to trigger this remotely.)
3354     - When sending a status event to the controller telling it that an
3355       OR address is reachable, set the port correctly. (Previously we
3356       were reporting the dir port.)
3357     - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO
3358       command. Bugfix on 0.1.2.17.
3359     - When loading bandwidth history, do not believe any information in
3360       the future. Fixes bug 434.
3361     - When loading entry guard information, do not believe any information
3362       in the future.
3363     - When we have our clock set far in the future and generate an
3364       onion key, then re-set our clock to be correct, we should not stop
3365       the onion key from getting rotated.
3366     - On some platforms, accept() can return a broken address. Detect
3367       this more quietly, and deal accordingly. Fixes bug 483.
3368     - It's not actually an error to find a non-pending entry in the DNS
3369       cache when canceling a pending resolve. Don't log unless stuff
3370       is fishy. Resolves bug 463.
3371     - Don't reset trusted dir server list when we set a configuration
3372       option. Patch from Robert Hogan.
3373     - Don't try to create the datadir when running --verify-config or
3374       --hash-password. Resolves bug 540.
3377 Changes in version 0.2.0.9-alpha - 2007-10-24
3378   This ninth development snapshot switches clients to the new v3 directory
3379   system; allows servers to be listed in the network status even when they
3380   have the same nickname as a registered server; and fixes many other
3381   bugs including a big one that was causing some servers to disappear
3382   from the network status lists for a few hours each day.
3384   o Major features (directory system):
3385     - Clients now download v3 consensus networkstatus documents instead
3386       of v2 networkstatus documents. Clients and caches now base their
3387       opinions about routers on these consensus documents. Clients only
3388       download router descriptors listed in the consensus.
3389     - Authorities now list servers who have the same nickname as
3390       a different named server, but list them with a new flag,
3391       "Unnamed". Now we can list servers that happen to pick the same
3392       nickname as a server that registered two years ago and then
3393       disappeared. Partially implements proposal 122.
3394     - If the consensus lists a router as "Unnamed", the name is assigned
3395       to a different router: do not identify the router by that name.
3396       Partially implements proposal 122.
3397     - Authorities can now come to a consensus on which method to use to
3398       compute the consensus. This gives us forward compatibility.
3400   o Major bugfixes:
3401     - Stop publishing a new server descriptor just because we HUP or
3402       when we find our DirPort to be reachable but won't actually publish
3403       it. New descriptors without any real changes are dropped by the
3404       authorities, and can screw up our "publish every 18 hours" schedule.
3405       Bugfix on 0.1.2.x.
3406     - When a router wasn't listed in a new networkstatus, we were leaving
3407       the flags for that router alone -- meaning it remained Named,
3408       Running, etc -- even though absence from the networkstatus means
3409       that it shouldn't be considered to exist at all anymore. Now we
3410       clear all the flags for routers that fall out of the networkstatus
3411       consensus. Fixes bug 529; bugfix on 0.1.2.x.
3412     - Fix awful behavior in DownloadExtraInfo option where we'd fetch
3413       extrainfo documents and then discard them immediately for not
3414       matching the latest router. Bugfix on 0.2.0.1-alpha.
3416   o Minor features (v3 directory protocol):
3417     - Allow tor-gencert to generate a new certificate without replacing
3418       the signing key.
3419     - Allow certificates to include an address.
3420     - When we change our directory-cache settings, reschedule all voting
3421       and download operations.
3422     - Reattempt certificate downloads immediately on failure, as long as
3423       we haven't failed a threshold number of times yet.
3424     - Delay retrying consensus downloads while we're downloading
3425       certificates to verify the one we just got.  Also, count getting a
3426       consensus that we already have (or one that isn't valid) as a failure,
3427       and count failing to get the certificates after 20 minutes as a
3428       failure.
3429     - Build circuits and download descriptors even if our consensus is a
3430       little expired. (This feature will go away once authorities are
3431       more reliable.)
3433   o Minor features (router descriptor cache):
3434     - If we find a cached-routers file that's been sitting around for more
3435       than 28 days unmodified, then most likely it's a leftover from
3436       when we upgraded to 0.2.0.8-alpha. Remove it. It has no good
3437       routers anyway.
3438     - When we (as a cache) download a descriptor because it was listed
3439       in a consensus, remember when the consensus was supposed to expire,
3440       and don't expire the descriptor until then.
3442   o Minor features (performance):
3443     - Call routerlist_remove_old_routers() much less often. This should
3444       speed startup, especially on directory caches.
3445     - Don't try to launch new descriptor downloads quite so often when we
3446       already have enough directory information to build circuits.
3447     - Base64 decoding was actually showing up on our profile when parsing
3448       the initial descriptor file; switch to an in-process all-at-once
3449       implementation that's about 3.5x times faster than calling out to
3450       OpenSSL.
3452   o Minor features (compilation):
3453     - Detect non-ASCII platforms (if any still exist) and refuse to
3454       build there: some of our code assumes that 'A' is 65 and so on.
3456   o Minor bugfixes (v3 directory authorities, bugfixes on 0.2.0.x):
3457     - Make the "next period" votes into "current period" votes immediately
3458       after publishing the consensus; avoid a heisenbug that made them
3459       stick around indefinitely.
3460     - When we discard a vote as a duplicate, do not report this as
3461       an error.
3462     - Treat missing v3 keys or certificates as an error when running as a
3463       v3 directory authority.
3464     - When we're configured to be a v3 authority, but we're only listed
3465       as a non-v3 authority in our DirServer line for ourself, correct
3466       the listing.
3467     - If an authority doesn't have a qualified hostname, just put
3468       its address in the vote. This fixes the problem where we referred to
3469       "moria on moria:9031."
3470     - Distinguish between detached signatures for the wrong period, and
3471       detached signatures for a divergent vote.
3472     - Fix a small memory leak when computing a consensus.
3473     - When there's no concensus, we were forming a vote every 30
3474       minutes, but writing the "valid-after" line in our vote based
3475       on our configured V3AuthVotingInterval: so unless the intervals
3476       matched up, we immediately rejected our own vote because it didn't
3477       start at the voting interval that caused us to construct a vote.
3479   o Minor bugfixes (v3 directory protocol, bugfixes on 0.2.0.x):
3480     - Delete unverified-consensus when the real consensus is set.
3481     - Consider retrying a consensus networkstatus fetch immediately
3482       after one fails: don't wait 60 seconds to notice.
3483     - When fetching a consensus as a cache, wait until a newer consensus
3484       should exist before trying to replace the current one.
3485     - Use a more forgiving schedule for retrying failed consensus
3486       downloads than for other types.
3488   o Minor bugfixes (other directory issues):
3489     - Correct the implementation of "download votes by digest." Bugfix on
3490       0.2.0.8-alpha.
3491     - Authorities no longer send back "400 you're unreachable please fix
3492       it" errors to Tor servers that aren't online all the time. We're
3493       supposed to tolerate these servers now. Bugfix on 0.1.2.x.
3495   o Minor bugfixes (controller):
3496     - Don't reset trusted dir server list when we set a configuration
3497       option. Patch from Robert Hogan; bugfix on 0.1.2.x.
3498     - Respond to INT and TERM SIGNAL commands before we execute the
3499       signal, in case the signal shuts us down. We had a patch in
3500       0.1.2.1-alpha that tried to do this by queueing the response on
3501       the connection's buffer before shutting down, but that really
3502       isn't the same thing at all. Bug located by Matt Edman.
3504   o Minor bugfixes (misc):
3505     - Correctly check for bad options to the "PublishServerDescriptor"
3506       config option. Bugfix on 0.2.0.1-alpha; reported by Matt Edman.
3507     - Stop leaking memory on failing case of base32_decode, and make
3508       it accept upper-case letters. Bugfixes on 0.2.0.7-alpha.
3509     - Don't try to download extrainfo documents when we're trying to
3510       fetch enough directory info to build a circuit: having enough
3511       info should get priority. Bugfix on 0.2.0.x.
3512     - Don't complain that "your server has not managed to confirm that its
3513       ports are reachable" if we haven't been able to build any circuits
3514       yet. Bug found by spending four hours without a v3 consensus. Bugfix
3515       on 0.1.2.x.
3516     - Detect the reason for failing to mmap a descriptor file we just
3517       wrote, and give a more useful log message.  Fixes bug 533. Bugfix
3518       on 0.1.2.x.
3520   o Code simplifications and refactoring:
3521     - Remove support for the old bw_accounting file: we've been storing
3522       bandwidth accounting information in the state file since
3523       0.1.2.5-alpha.  This may result in bandwidth accounting errors
3524       if you try to upgrade from 0.1.1.x or earlier, or if you try to
3525       downgrade to 0.1.1.x or earlier.
3526     - New convenience code to locate a file within the DataDirectory.
3527     - Move non-authority functionality out of dirvote.c.
3528     - Refactor the arguments for router_pick_{directory_|trusteddir}server
3529       so that they all take the same named flags.
3531   o Utilities
3532     - Include the "tor-ctrl.sh" bash script by Stefan Behte to provide
3533       Unix users an easy way to script their Tor process (e.g. by
3534       adjusting bandwidth based on the time of the day).
3537 Changes in version 0.2.0.8-alpha - 2007-10-12
3538   This eighth development snapshot fixes a crash bug that's been bothering
3539   us since February 2007, lets bridge authorities store a list of bridge
3540   descriptors they've seen, gets v3 directory voting closer to working,
3541   starts caching v3 directory consensus documents on directory mirrors,
3542   and fixes a variety of smaller issues including some minor memory leaks.
3544   o Major features (router descriptor cache):
3545     - Store routers in a file called cached-descriptors instead of in
3546       cached-routers. Initialize cached-descriptors from cached-routers
3547       if the old format is around. The new format allows us to store
3548       annotations along with descriptors.
3549     - Use annotations to record the time we received each descriptor, its
3550       source, and its purpose.
3551     - Disable the SETROUTERPURPOSE controller command: it is now
3552       obsolete.
3553     - Controllers should now specify cache=no or cache=yes when using
3554       the +POSTDESCRIPTOR command.
3555     - Bridge authorities now write bridge descriptors to disk, meaning
3556       we can export them to other programs and begin distributing them
3557       to blocked users.
3559   o Major features (directory authorities):
3560     - When a v3 authority is missing votes or signatures, it now tries
3561       to fetch them.
3562     - Directory authorities track weighted fractional uptime as well as
3563       weighted mean-time-between failures.  WFU is suitable for deciding
3564       whether a node is "usually up", while MTBF is suitable for deciding
3565       whether a node is "likely to stay up."  We need both, because
3566       "usually up" is a good requirement for guards, while "likely to
3567       stay up" is a good requirement for long-lived connections.
3569   o Major features (v3 directory system):
3570     - Caches now download v3 network status documents as needed,
3571       and download the descriptors listed in them.
3572     - All hosts now attempt to download and keep fresh v3 authority
3573       certificates, and re-attempt after failures.
3574     - More internal-consistency checks for vote parsing.
3576   o Major bugfixes (crashes):
3577     - If a connection is shut down abruptly because of something that
3578       happened inside connection_flushed_some(), do not call
3579       connection_finished_flushing(). Should fix bug 451. Bugfix on
3580       0.1.2.7-alpha.
3582   o Major bugfixes (performance):
3583     - Fix really bad O(n^2) performance when parsing a long list of
3584       routers: Instead of searching the entire list for an "extra-info "
3585       string which usually wasn't there, once for every routerinfo
3586       we read, just scan lines forward until we find one we like.
3587       Bugfix on 0.2.0.1.
3588     - When we add data to a write buffer in response to the data on that
3589       write buffer getting low because of a flush, do not consider the
3590       newly added data as a candidate for immediate flushing, but rather
3591       make it wait until the next round of writing. Otherwise, we flush
3592       and refill recursively, and a single greedy TLS connection can
3593       eat all of our bandwidth. Bugfix on 0.1.2.7-alpha.
3595   o Minor features (v3 authority system):
3596     - Add more ways for tools to download the votes that lead to the
3597       current consensus.
3598     - Send a 503 when low on bandwidth and a vote, consensus, or
3599       certificate is requested.
3600     - If-modified-since is now implemented properly for all kinds of
3601       certificate requests.
3603   o Minor bugfixes (network statuses):
3604     - Tweak the implementation of proposal 109 slightly: allow at most
3605       two Tor servers on the same IP address, except if it's the location
3606       of a directory authority, in which case allow five. Bugfix on
3607       0.2.0.3-alpha.
3609   o Minor bugfixes (controller):
3610     - When sending a status event to the controller telling it that an
3611       OR address is reachable, set the port correctly. (Previously we
3612       were reporting the dir port.) Bugfix on 0.1.2.x.
3614   o Minor bugfixes (v3 directory system):
3615     - Fix logic to look up a cert by its signing key digest. Bugfix on
3616       0.2.0.7-alpha.
3617     - Only change the reply to a vote to "OK" if it's not already
3618       set. This gets rid of annoying "400 OK" log messages, which may
3619       have been masking some deeper issue. Bugfix on 0.2.0.7-alpha.
3620     - When we get a valid consensus, recompute the voting schedule.
3621     - Base the valid-after time of a vote on the consensus voting
3622       schedule, not on our preferred schedule.
3623     - Make the return values and messages from signature uploads and
3624       downloads more sensible.
3625     - Fix a memory leak when serving votes and consensus documents, and
3626       another when serving certificates.
3628   o Minor bugfixes (performance):
3629     - Use a slightly simpler string hashing algorithm (copying Python's
3630       instead of Java's) and optimize our digest hashing algorithm to take
3631       advantage of 64-bit platforms and to remove some possibly-costly
3632       voodoo.
3633     - Fix a minor memory leak whenever we parse guards from our state
3634       file. Bugfix on 0.2.0.7-alpha.
3635     - Fix a minor memory leak whenever we write out a file. Bugfix on
3636       0.2.0.7-alpha.
3637     - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO
3638       command. Bugfix on 0.2.0.5-alpha.
3640   o Minor bugfixes (portability):
3641     - On some platforms, accept() can return a broken address. Detect
3642       this more quietly, and deal accordingly. Fixes bug 483.
3643     - Stop calling tor_strlower() on uninitialized memory in some cases.
3644       Bugfix in 0.2.0.7-alpha.
3646   o Minor bugfixes (usability):
3647     - Treat some 403 responses from directory servers as INFO rather than
3648       WARN-severity events.
3649     - It's not actually an error to find a non-pending entry in the DNS
3650       cache when canceling a pending resolve. Don't log unless stuff is
3651       fishy. Resolves bug 463.
3653   o Minor bugfixes (anonymity):
3654     - Never report that we've used more bandwidth than we're willing to
3655       relay: it leaks how much non-relay traffic we're using. Resolves
3656       bug 516.
3657     - When looking for a circuit to cannibalize, consider family as well
3658       as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced
3659       circuit cannibalization).
3661   o Code simplifications and refactoring:
3662     - Make a bunch of functions static. Remove some dead code.
3663     - Pull out about a third of the really big routerlist.c; put it in a
3664       new module, networkstatus.c.
3665     - Merge the extra fields in local_routerstatus_t back into
3666       routerstatus_t: we used to need one routerstatus_t for each
3667       authority's opinion, plus a local_routerstatus_t for the locally
3668       computed consensus opinion. To save space, we put the locally
3669       modified fields into local_routerstatus_t, and only the common
3670       stuff into routerstatus_t. But once v3 directories are in use,
3671       clients and caches will no longer need to hold authority opinions;
3672       thus, the rationale for keeping the types separate is now gone.
3673     - Make the code used to reschedule and reattempt downloads more
3674       uniform.
3675     - Turn all 'Are we a directory server/mirror?' logic into a call to
3676       dirserver_mode().
3677     - Remove the code to generate the oldest (v1) directory format.
3678       The code has been disabled since 0.2.0.5-alpha.
3681 Changes in version 0.2.0.7-alpha - 2007-09-21
3682   This seventh development snapshot makes bridges work again, makes bridge
3683   authorities work for the first time, fixes two huge performance flaws
3684   in hidden services, and fixes a variety of minor issues.
3686   o New directory authorities:
3687     - Set up moria1 and tor26 as the first v3 directory authorities. See
3688       doc/spec/dir-spec.txt for details on the new directory design.
3690   o Major bugfixes (crashes):
3691     - Fix possible segfaults in functions called from
3692       rend_process_relay_cell(). Bugfix on 0.1.2.x.
3694   o Major bugfixes (bridges):
3695     - Fix a bug that made servers send a "404 Not found" in response to
3696       attempts to fetch their server descriptor. This caused Tor servers
3697       to take many minutes to establish reachability for their DirPort,
3698       and it totally crippled bridges. Bugfix on 0.2.0.5-alpha.
3699     - Make "UpdateBridgesFromAuthority" torrc option work: when bridge
3700       users configure that and specify a bridge with an identity
3701       fingerprint, now they will lookup the bridge descriptor at the
3702       default bridge authority via a one-hop tunnel, but once circuits
3703       are established they will switch to a three-hop tunnel for later
3704       connections to the bridge authority. Bugfix in 0.2.0.3-alpha.
3706   o Major bugfixes (hidden services):
3707     - Hidden services were choosing introduction points uniquely by
3708       hexdigest, but when constructing the hidden service descriptor
3709       they merely wrote the (potentially ambiguous) nickname.
3710     - Clients now use the v2 intro format for hidden service
3711       connections: they specify their chosen rendezvous point by identity
3712       digest rather than by (potentially ambiguous) nickname. Both
3713       are bugfixes on 0.1.2.x, and they could speed up hidden service
3714       connections dramatically. Thanks to Karsten Loesing.
3716   o Minor features (security):
3717     - As a client, do not believe any server that tells us that an
3718       address maps to an internal address space.
3719     - Make it possible to enable HashedControlPassword and
3720       CookieAuthentication at the same time.
3722   o Minor features (guard nodes):
3723     - Tag every guard node in our state file with the version that
3724       we believe added it, or with our own version if we add it. This way,
3725       if a user temporarily runs an old version of Tor and then switches
3726       back to a new one, she doesn't automatically lose her guards.
3728   o Minor features (speed):
3729     - When implementing AES counter mode, update only the portions of the
3730       counter buffer that need to change, and don't keep separate
3731       network-order and host-order counters when they are the same (i.e.,
3732       on big-endian hosts.)
3734   o Minor features (controller):
3735     - Accept LF instead of CRLF on controller, since some software has a
3736       hard time generating real Internet newlines.
3737     - Add GETINFO values for the server status events
3738       "REACHABILITY_SUCCEEDED" and "GOOD_SERVER_DESCRIPTOR". Patch from
3739       Robert Hogan.
3741   o Removed features:
3742      - Routers no longer include bandwidth-history lines in their
3743        descriptors; this information is already available in extra-info
3744        documents, and including it in router descriptors took up 60%
3745        (!) of compressed router descriptor downloads. Completes
3746        implementation of proposal 104.
3747      - Remove the contrib scripts ExerciseServer.py, PathDemo.py,
3748        and TorControl.py, as they use the old v0 controller protocol,
3749        and are obsoleted by TorFlow anyway.
3750      - Drop support for v1 rendezvous descriptors, since we never used
3751        them anyway, and the code has probably rotted by now. Based on
3752        patch from Karsten Loesing.
3753      - On OSX, stop warning the user that kqueue support in libevent is
3754       "experimental", since it seems to have worked fine for ages.
3756   o Minor bugfixes:
3757     - When generating information telling us how to extend to a given
3758       router, do not try to include the nickname if it is absent. Fixes
3759       bug 467. Bugfix on 0.2.0.3-alpha.
3760     - Fix a user-triggerable (but not remotely-triggerable) segfault
3761       in expand_filename(). Bugfix on 0.1.2.x.
3762     - Fix a memory leak when freeing incomplete requests from DNSPort.
3763       Found by Niels Provos with valgrind. Bugfix on 0.2.0.1-alpha.
3764     - Don't try to access (or alter) the state file when running
3765       --list-fingerprint or --verify-config or --hash-password. (Resolves
3766       bug 499.) Bugfix on 0.1.2.x.
3767     - Servers used to decline to publish their DirPort if their
3768       BandwidthRate, RelayBandwidthRate, or MaxAdvertisedBandwidth
3769       were below a threshold. Now they only look at BandwidthRate and
3770       RelayBandwidthRate. Bugfix on 0.1.2.x.
3771     - Remove an optimization in the AES counter-mode code that assumed
3772       that the counter never exceeded 2^68. When the counter can be set
3773       arbitrarily as an IV (as it is by Karsten's new hidden services
3774       code), this assumption no longer holds. Bugfix on 0.1.2.x.
3775     - Resume listing "AUTHORITY" flag for authorities in network status.
3776       Bugfix on 0.2.0.3-alpha; reported by Alex de Joode.
3778   o Code simplifications and refactoring:
3779     - Revamp file-writing logic so we don't need to have the entire
3780       contents of a file in memory at once before we write to disk. Tor,
3781       meet stdio.
3782     - Turn "descriptor store" into a full-fledged type.
3783     - Move all NT services code into a separate source file.
3784     - Unify all code that computes medians, percentile elements, etc.
3785     - Get rid of a needless malloc when parsing address policies.
3788 Changes in version 0.1.2.17 - 2007-08-30
3789   Tor 0.1.2.17 features a new Vidalia version in the Windows and OS
3790   X bundles. Vidalia 0.0.14 makes authentication required for the
3791   ControlPort in the default configuration, which addresses important
3792   security risks. Everybody who uses Vidalia (or another controller)
3793   should upgrade.
3795   In addition, this Tor update fixes major load balancing problems with
3796   path selection, which should speed things up a lot once many people
3797   have upgraded.
3799   o Major bugfixes (security):
3800     - We removed support for the old (v0) control protocol. It has been
3801       deprecated since Tor 0.1.1.1-alpha, and keeping it secure has
3802       become more of a headache than it's worth.
3804   o Major bugfixes (load balancing):
3805     - When choosing nodes for non-guard positions, weight guards
3806       proportionally less, since they already have enough load. Patch
3807       from Mike Perry.
3808     - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This
3809       will allow fast Tor servers to get more attention.
3810     - When we're upgrading from an old Tor version, forget our current
3811       guards and pick new ones according to the new weightings. These
3812       three load balancing patches could raise effective network capacity
3813       by a factor of four. Thanks to Mike Perry for measurements.
3815   o Major bugfixes (stream expiration):
3816     - Expire not-yet-successful application streams in all cases if
3817       they've been around longer than SocksTimeout. Right now there are
3818       some cases where the stream will live forever, demanding a new
3819       circuit every 15 seconds. Fixes bug 454; reported by lodger.
3821   o Minor features (controller):
3822     - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it
3823       is valid before any authentication has been received. It tells
3824       a controller what kind of authentication is expected, and what
3825       protocol is spoken. Implements proposal 119.
3827   o Minor bugfixes (performance):
3828     - Save on most routerlist_assert_ok() calls in routerlist.c, thus
3829       greatly speeding up loading cached-routers from disk on startup.
3830     - Disable sentinel-based debugging for buffer code: we squashed all
3831       the bugs that this was supposed to detect a long time ago, and now
3832       its only effect is to change our buffer sizes from nice powers of
3833       two (which platform mallocs tend to like) to values slightly over
3834       powers of two (which make some platform mallocs sad).
3836   o Minor bugfixes (misc):
3837     - If exit bandwidth ever exceeds one third of total bandwidth, then
3838       use the correct formula to weight exit nodes when choosing paths.
3839       Based on patch from Mike Perry.
3840     - Choose perfectly fairly among routers when choosing by bandwidth and
3841       weighting by fraction of bandwidth provided by exits. Previously, we
3842       would choose with only approximate fairness, and correct ourselves
3843       if we ran off the end of the list.
3844     - If we require CookieAuthentication but we fail to write the
3845       cookie file, we would warn but not exit, and end up in a state
3846       where no controller could authenticate. Now we exit.
3847     - If we require CookieAuthentication, stop generating a new cookie
3848       every time we change any piece of our config.
3849     - Refuse to start with certain directory authority keys, and
3850       encourage people using them to stop.
3851     - Terminate multi-line control events properly. Original patch
3852       from tup.
3853     - Fix a minor memory leak when we fail to find enough suitable
3854       servers to choose a circuit.
3855     - Stop leaking part of the descriptor when we run into a particularly
3856       unparseable piece of it.
3859 Changes in version 0.2.0.6-alpha - 2007-08-26
3860   This sixth development snapshot features a new Vidalia version in the
3861   Windows and OS X bundles. Vidalia 0.0.14 makes authentication required for
3862   the ControlPort in the default configuration, which addresses important
3863   security risks.
3865   In addition, this snapshot fixes major load balancing problems
3866   with path selection, which should speed things up a lot once many
3867   people have upgraded. The directory authorities also use a new
3868   mean-time-between-failure approach to tracking which servers are stable,
3869   rather than just looking at the most recent uptime.
3871   o New directory authorities:
3872     - Set up Tonga as the default bridge directory authority.
3874   o Major features:
3875     - Directory authorities now track servers by weighted
3876       mean-times-between-failures. When we have 4 or more days of data,
3877       use measured MTBF rather than declared uptime to decide whether
3878       to call a router Stable. Implements proposal 108.
3880   o Major bugfixes (load balancing):
3881     - When choosing nodes for non-guard positions, weight guards
3882       proportionally less, since they already have enough load. Patch
3883       from Mike Perry.
3884     - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This
3885       will allow fast Tor servers to get more attention.
3886     - When we're upgrading from an old Tor version, forget our current
3887       guards and pick new ones according to the new weightings. These
3888       three load balancing patches could raise effective network capacity
3889       by a factor of four. Thanks to Mike Perry for measurements.
3891   o Major bugfixes (descriptor parsing):
3892     - Handle unexpected whitespace better in malformed descriptors. Bug
3893       found using Benedikt Boss's new Tor fuzzer! Bugfix on 0.2.0.x.
3895   o Minor features:
3896     - There is now an ugly, temporary "desc/all-recent-extrainfo-hack"
3897       GETINFO for Torstat to use until it can switch to using extrainfos.
3898     - Optionally (if built with -DEXPORTMALLINFO) export the output
3899       of mallinfo via http, as tor/mallinfo.txt. Only accessible
3900       from localhost.
3902   o Minor bugfixes:
3903     - Do not intermix bridge routers with controller-added
3904       routers. (Bugfix on 0.2.0.x)
3905     - Do not fail with an assert when accept() returns an unexpected
3906       address family. Addresses but does not wholly fix bug 483. (Bugfix
3907       on 0.2.0.x)
3908     - Let directory authorities startup even when they can't generate
3909       a descriptor immediately, e.g. because they don't know their
3910       address.
3911     - Stop putting the authentication cookie in a file called "0"
3912       in your working directory if you don't specify anything for the
3913       new CookieAuthFile option. Reported by Matt Edman.
3914     - Make it possible to read the PROTOCOLINFO response in a way that
3915       conforms to our control-spec. Reported by Matt Edman.
3916     - Fix a minor memory leak when we fail to find enough suitable
3917       servers to choose a circuit. Bugfix on 0.1.2.x.
3918     - Stop leaking part of the descriptor when we run into a particularly
3919       unparseable piece of it. Bugfix on 0.1.2.x.
3920     - Unmap the extrainfo cache file on exit.
3923 Changes in version 0.2.0.5-alpha - 2007-08-19
3924   This fifth development snapshot fixes compilation on Windows again;
3925   fixes an obnoxious client-side bug that slowed things down and put
3926   extra load on the network; gets us closer to using the v3 directory
3927   voting scheme; makes it easier for Tor controllers to use cookie-based
3928   authentication; and fixes a variety of other bugs.
3930   o Removed features:
3931     - Version 1 directories are no longer generated in full. Instead,
3932       authorities generate and serve "stub" v1 directories that list
3933       no servers. This will stop Tor versions 0.1.0.x and earlier from
3934       working, but (for security reasons) nobody should be running those
3935       versions anyway.
3937   o Major bugfixes (compilation, 0.2.0.x):
3938     - Try to fix Win32 compilation again: improve checking for IPv6 types.
3939     - Try to fix MSVC compilation: build correctly on platforms that do
3940       not define s6_addr16 or s6_addr32.
3941     - Fix compile on platforms without getaddrinfo: bug found by Li-Hui
3942       Zhou.
3944   o Major bugfixes (stream expiration):
3945     - Expire not-yet-successful application streams in all cases if
3946       they've been around longer than SocksTimeout. Right now there are
3947       some cases where the stream will live forever, demanding a new
3948       circuit every 15 seconds. Bugfix on 0.1.2.7-alpha; fixes bug 454;
3949       reported by lodger.
3951   o Minor features (directory servers):
3952     - When somebody requests a list of statuses or servers, and we have
3953       none of those, return a 404 rather than an empty 200.
3955   o Minor features (directory voting):
3956     - Store v3 consensus status consensuses on disk, and reload them
3957       on startup.
3959   o Minor features (security):
3960     - Warn about unsafe ControlPort configurations.
3961     - Refuse to start with certain directory authority keys, and
3962       encourage people using them to stop.
3964   o Minor features (controller):
3965     - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it
3966       is valid before any authentication has been received. It tells
3967       a controller what kind of authentication is expected, and what
3968       protocol is spoken. Implements proposal 119.
3969     - New config option CookieAuthFile to choose a new location for the
3970       cookie authentication file, and config option
3971       CookieAuthFileGroupReadable to make it group-readable.
3973   o Minor features (unit testing):
3974     - Add command-line arguments to unit-test executable so that we can
3975       invoke any chosen test from the command line rather than having
3976       to run the whole test suite at once; and so that we can turn on
3977       logging for the unit tests.
3979   o Minor bugfixes (on 0.1.2.x):
3980     - If we require CookieAuthentication but we fail to write the
3981       cookie file, we would warn but not exit, and end up in a state
3982       where no controller could authenticate. Now we exit.
3983     - If we require CookieAuthentication, stop generating a new cookie
3984       every time we change any piece of our config.
3985     - When loading bandwidth history, do not believe any information in
3986       the future.  Fixes bug 434.
3987     - When loading entry guard information, do not believe any information
3988       in the future.
3989     - When we have our clock set far in the future and generate an
3990       onion key, then re-set our clock to be correct, we should not stop
3991       the onion key from getting rotated.
3992     - Clean up torrc sample config file.
3993     - Do not automatically run configure from autogen.sh. This
3994       non-standard behavior tended to annoy people who have built other
3995       programs.
3997   o Minor bugfixes (on 0.2.0.x):
3998     - Fix a bug with AutomapHostsOnResolve that would always cause
3999       the second request to fail. Bug reported by Kate. Bugfix on
4000       0.2.0.3-alpha.
4001     - Fix a bug in ADDRMAP controller replies that would sometimes
4002       try to print a NULL. Patch from tup.
4003     - Read v3 directory authority keys from the right location.
4004     - Numerous bugfixes to directory voting code.
4007 Changes in version 0.1.2.16 - 2007-08-01
4008   Tor 0.1.2.16 fixes a critical security vulnerability that allows a
4009   remote attacker in certain situations to rewrite the user's torrc
4010   configuration file. This can completely compromise anonymity of users
4011   in most configurations, including those running the Vidalia bundles,
4012   TorK, etc. Or worse.
4014   o Major security fixes:
4015     - Close immediately after missing authentication on control port;
4016       do not allow multiple authentication attempts.
4019 Changes in version 0.2.0.4-alpha - 2007-08-01
4020   This fourth development snapshot fixes a critical security vulnerability
4021   for most users, specifically those running Vidalia, TorK, etc. Everybody
4022   should upgrade to either 0.1.2.16 or 0.2.0.4-alpha.
4024   o Major security fixes:
4025     - Close immediately after missing authentication on control port;
4026       do not allow multiple authentication attempts.
4028   o Major bugfixes (compilation):
4029     - Fix win32 compilation: apparently IN_ADDR and IN6_ADDR are already
4030       defined there.
4032   o Minor features (performance):
4033     - Be even more aggressive about releasing RAM from small
4034       empty buffers. Thanks to our free-list code, this shouldn't be too
4035       performance-intensive.
4036     - Disable sentinel-based debugging for buffer code: we squashed all
4037       the bugs that this was supposed to detect a long time ago, and
4038       now its only effect is to change our buffer sizes from nice
4039       powers of two (which platform mallocs tend to like) to values
4040       slightly over powers of two (which make some platform mallocs sad).
4041     - Log malloc statistics from mallinfo() on platforms where it
4042       exists.
4045 Changes in version 0.2.0.3-alpha - 2007-07-29
4046   This third development snapshot introduces new experimental
4047   blocking-resistance features and a preliminary version of the v3
4048   directory voting design, and includes many other smaller features
4049   and bugfixes.
4051   o Major features:
4052     - The first pieces of our "bridge" design for blocking-resistance
4053       are implemented. People can run bridge directory authorities;
4054       people can run bridges; and people can configure their Tor clients
4055       with a set of bridges to use as the first hop into the Tor network.
4056       See http://archives.seul.org/or/talk/Jul-2007/msg00249.html for
4057       details.
4058     - Create listener connections before we setuid to the configured
4059       User and Group. Now non-Windows users can choose port values
4060       under 1024, start Tor as root, and have Tor bind those ports
4061       before it changes to another UID. (Windows users could already
4062       pick these ports.)
4063     - Added a new ConstrainedSockets config option to set SO_SNDBUF and
4064       SO_RCVBUF on TCP sockets. Hopefully useful for Tor servers running
4065       on "vserver" accounts. (Patch from coderman.)
4066     - Be even more aggressive about separating local traffic from relayed
4067       traffic when RelayBandwidthRate is set. (Refines proposal 111.)
4069   o Major features (experimental):
4070     - First cut of code for "v3 dir voting": directory authorities will
4071       vote on a common network status document rather than each publishing
4072       their own opinion. This code needs more testing and more corner-case
4073       handling before it's ready for use.
4075   o Security fixes:
4076     - Directory authorities now call routers Fast if their bandwidth is
4077       at least 100KB/s, and consider their bandwidth adequate to be a
4078       Guard if it is at least 250KB/s, no matter the medians. This fix
4079       complements proposal 107. [Bugfix on 0.1.2.x]
4080     - Directory authorities now never mark more than 3 servers per IP as
4081       Valid and Running. (Implements proposal 109, by Kevin Bauer and
4082       Damon McCoy.)
4083     - Minor change to organizationName and commonName generation
4084       procedures in TLS certificates during Tor handshakes, to invalidate
4085       some earlier censorware approaches. This is not a long-term
4086       solution, but applying it will give us a bit of time to look into
4087       the epidemiology of countermeasures as they spread.
4089   o Major bugfixes (directory):
4090     - Rewrite directory tokenization code to never run off the end of
4091       a string. Fixes bug 455. Patch from croup. [Bugfix on 0.1.2.x]
4093   o Minor features (controller):
4094     - Add a SOURCE_ADDR field to STREAM NEW events so that controllers can
4095       match requests to applications. (Patch from Robert Hogan.)
4096     - Report address and port correctly on connections to DNSPort. (Patch
4097       from Robert Hogan.)
4098     - Add a RESOLVE command to launch hostname lookups. (Original patch
4099       from Robert Hogan.)
4100     - Add GETINFO status/enough-dir-info to let controllers tell whether
4101       Tor has downloaded sufficient directory information. (Patch
4102       from Tup.)
4103     - You can now use the ControlSocket option to tell Tor to listen for
4104       controller connections on Unix domain sockets on systems that
4105       support them. (Patch from Peter Palfrader.)
4106     - STREAM NEW events are generated for DNSPort requests and for
4107       tunneled directory connections. (Patch from Robert Hogan.)
4108     - New "GETINFO address-mappings/*" command to get address mappings
4109       with expiry information. "addr-mappings/*" is now deprecated.
4110       (Patch from Tup.)
4112   o Minor features (misc):
4113     - Merge in some (as-yet-unused) IPv6 address manipulation code. (Patch
4114       from croup.)
4115     - The tor-gencert tool for v3 directory authorities now creates all
4116       files as readable to the file creator only, and write-protects
4117       the authority identity key.
4118     - When dumping memory usage, list bytes used in buffer memory
4119       free-lists.
4120     - When running with dmalloc, dump more stats on hup and on exit.
4121     - Directory authorities now fail quickly and (relatively) harmlessly
4122       if they generate a network status document that is somehow
4123       malformed.
4125   o Traffic load balancing improvements:
4126     - If exit bandwidth ever exceeds one third of total bandwidth, then
4127       use the correct formula to weight exit nodes when choosing paths.
4128       (Based on patch from Mike Perry.)
4129     - Choose perfectly fairly among routers when choosing by bandwidth and
4130       weighting by fraction of bandwidth provided by exits. Previously, we
4131       would choose with only approximate fairness, and correct ourselves
4132       if we ran off the end of the list. [Bugfix on 0.1.2.x]
4134   o Performance improvements:
4135     - Be more aggressive with freeing buffer RAM or putting it on the
4136       memory free lists.
4137     - Use Critical Sections rather than Mutexes for synchronizing threads
4138       on win32; Mutexes are heavier-weight, and designed for synchronizing
4139       between processes.
4141   o Deprecated and removed features:
4142     - RedirectExits is now deprecated.
4143     - Stop allowing address masks that do not correspond to bit prefixes.
4144       We have warned about these for a really long time; now it's time
4145       to reject them. (Patch from croup.)
4147   o Minor bugfixes (directory):
4148     - Fix another crash bug related to extra-info caching. (Bug found by
4149       Peter Palfrader.) [Bugfix on 0.2.0.2-alpha]
4150     - Directories no longer return a "304 not modified" when they don't
4151       have the networkstatus the client asked for. Also fix a memory
4152       leak when returning 304 not modified. [Bugfixes on 0.2.0.2-alpha]
4153     - We had accidentally labelled 0.1.2.x directory servers as not
4154       suitable for begin_dir requests, and had labelled no directory
4155       servers as suitable for uploading extra-info documents. [Bugfix
4156       on 0.2.0.1-alpha]
4158   o Minor bugfixes (dns):
4159     - Fix a crash when DNSPort is set more than once. (Patch from Robert
4160       Hogan.) [Bugfix on 0.2.0.2-alpha]
4161     - Add DNSPort connections to the global connection list, so that we
4162       can time them out correctly. (Bug found by Robert Hogan.) [Bugfix
4163       on 0.2.0.2-alpha]
4164     - Fix a dangling reference that could lead to a crash when DNSPort is
4165       changed or closed (Patch from Robert Hogan.) [Bugfix on
4166       0.2.0.2-alpha]
4168   o Minor bugfixes (controller):
4169     - Provide DNS expiry times in GMT, not in local time. For backward
4170       compatibility, ADDRMAP events only provide GMT expiry in an extended
4171       field. "GETINFO address-mappings" always does the right thing.
4172     - Use CRLF line endings properly in NS events.
4173     - Terminate multi-line control events properly. (Original patch
4174       from tup.) [Bugfix on 0.1.2.x-alpha]
4175     - Do not include spaces in SOURCE_ADDR fields in STREAM
4176       events. Resolves bug 472. [Bugfix on 0.2.0.x-alpha]
4179 Changes in version 0.1.2.15 - 2007-07-17
4180   Tor 0.1.2.15 fixes several crash bugs, fixes some anonymity-related
4181   problems, fixes compilation on BSD, and fixes a variety of other
4182   bugs. Everybody should upgrade.
4184   o Major bugfixes (compilation):
4185     - Fix compile on FreeBSD/NetBSD/OpenBSD. Oops.
4187   o Major bugfixes (crashes):
4188     - Try even harder not to dereference the first character after
4189       an mmap(). Reported by lodger.
4190     - Fix a crash bug in directory authorities when we re-number the
4191       routerlist while inserting a new router.
4192     - When the cached-routers file is an even multiple of the page size,
4193       don't run off the end and crash. (Fixes bug 455; based on idea
4194       from croup.)
4195     - Fix eventdns.c behavior on Solaris: It is critical to include
4196       orconfig.h _before_ sys/types.h, so that we can get the expected
4197       definition of _FILE_OFFSET_BITS.
4199   o Major bugfixes (security):
4200     - Fix a possible buffer overrun when using BSD natd support. Bug
4201       found by croup.
4202     - When sending destroy cells from a circuit's origin, don't include
4203       the reason for tearing down the circuit. The spec says we didn't,
4204       and now we actually don't. Reported by lodger.
4205     - Keep streamids from different exits on a circuit separate. This
4206       bug may have allowed other routers on a given circuit to inject
4207       cells into streams. Reported by lodger; fixes bug 446.
4208     - If there's a never-before-connected-to guard node in our list,
4209       never choose any guards past it. This way we don't expand our
4210       guard list unless we need to.
4212   o Minor bugfixes (guard nodes):
4213     - Weight guard selection by bandwidth, so that low-bandwidth nodes
4214       don't get overused as guards.
4216   o Minor bugfixes (directory):
4217     - Correctly count the number of authorities that recommend each
4218       version. Previously, we were under-counting by 1.
4219     - Fix a potential crash bug when we load many server descriptors at
4220       once and some of them make others of them obsolete. Fixes bug 458.
4222   o Minor bugfixes (hidden services):
4223     - Stop tearing down the whole circuit when the user asks for a
4224       connection to a port that the hidden service didn't configure.
4225       Resolves bug 444.
4227   o Minor bugfixes (misc):
4228     - On Windows, we were preventing other processes from reading
4229       cached-routers while Tor was running. Reported by janbar.
4230     - Fix a possible (but very unlikely) bug in picking routers by
4231       bandwidth. Add a log message to confirm that it is in fact
4232       unlikely. Patch from lodger.
4233     - Backport a couple of memory leak fixes.
4234     - Backport miscellaneous cosmetic bugfixes.
4237 Changes in version 0.2.0.2-alpha - 2007-06-02
4238   o Major bugfixes on 0.2.0.1-alpha:
4239     - Fix an assertion failure related to servers without extra-info digests.
4240       Resolves bugs 441 and 442.
4242   o Minor features (directory):
4243     - Support "If-Modified-Since" when answering HTTP requests for
4244       directories, running-routers documents, and network-status documents.
4245       (There's no need to support it for router descriptors, since those
4246       are downloaded by descriptor digest.)
4248   o Minor build issues:
4249     - Clear up some MIPSPro compiler warnings.
4250     - When building from a tarball on a machine that happens to have SVK
4251       installed, report the micro-revision as whatever version existed
4252       in the tarball, not as "x".
4255 Changes in version 0.2.0.1-alpha - 2007-06-01
4256   This early development snapshot provides new features for people running
4257   Tor as both a client and a server (check out the new RelayBandwidth
4258   config options); lets Tor run as a DNS proxy; and generally moves us
4259   forward on a lot of fronts.
4261   o Major features, server usability:
4262     - New config options RelayBandwidthRate and RelayBandwidthBurst:
4263       a separate set of token buckets for relayed traffic. Right now
4264       relayed traffic is defined as answers to directory requests, and
4265       OR connections that don't have any local circuits on them.
4267   o Major features, client usability:
4268     - A client-side DNS proxy feature to replace the need for
4269       dns-proxy-tor: Just set "DNSPort 9999", and Tor will now listen
4270       for DNS requests on port 9999, use the Tor network to resolve them
4271       anonymously, and send the reply back like a regular DNS server.
4272       The code still only implements a subset of DNS.
4273     - Make PreferTunneledDirConns and TunnelDirConns work even when
4274       we have no cached directory info. This means Tor clients can now
4275       do all of their connections protected by TLS.
4277   o Major features, performance and efficiency:
4278     - Directory authorities accept and serve "extra info" documents for
4279       routers. These documents contain fields from router descriptors
4280       that aren't usually needed, and that use a lot of excess
4281       bandwidth. Once these fields are removed from router descriptors,
4282       the bandwidth savings should be about 60%. [Partially implements
4283       proposal 104.]
4284     - Servers upload extra-info documents to any authority that accepts
4285       them. Authorities (and caches that have been configured to download
4286       extra-info documents) download them as needed. [Partially implements
4287       proposal 104.]
4288     - Change the way that Tor buffers data that it is waiting to write.
4289       Instead of queueing data cells in an enormous ring buffer for each
4290       client->OR or OR->OR connection, we now queue cells on a separate
4291       queue for each circuit.  This lets us use less slack memory, and
4292       will eventually let us be smarter about prioritizing different kinds
4293       of traffic.
4294     - Use memory pools to allocate cells with better speed and memory
4295       efficiency, especially on platforms where malloc() is inefficient.
4296     - Stop reading on edge connections when their corresponding circuit
4297       buffers are full; start again as the circuits empty out.
4299   o Major features, other:
4300     - Add an HSAuthorityRecordStats option that hidden service authorities
4301       can use to track statistics of overall hidden service usage without
4302       logging information that would be very useful to an attacker.
4303     - Start work implementing multi-level keys for directory authorities:
4304       Add a standalone tool to generate key certificates. (Proposal 103.)
4306   o Security fixes:
4307     - Directory authorities now call routers Stable if they have an
4308       uptime of at least 30 days, even if that's not the median uptime
4309       in the network. Implements proposal 107, suggested by Kevin Bauer
4310       and Damon McCoy.
4312   o Minor fixes (resource management):
4313     - Count the number of open sockets separately from the number
4314       of active connection_t objects. This will let us avoid underusing
4315       our allocated connection limit.
4316     - We no longer use socket pairs to link an edge connection to an
4317       anonymous directory connection or a DirPort test connection.
4318       Instead, we track the link internally and transfer the data
4319       in-process. This saves two sockets per "linked" connection (at the
4320       client and at the server), and avoids the nasty Windows socketpair()
4321       workaround.
4322     - Keep unused 4k and 16k buffers on free lists, rather than wasting 8k
4323       for every single inactive connection_t. Free items from the
4324       4k/16k-buffer free lists when they haven't been used for a while.
4326   o Minor features (build):
4327     - Make autoconf search for libevent, openssl, and zlib consistently.
4328     - Update deprecated macros in configure.in.
4329     - When warning about missing headers, tell the user to let us
4330       know if the compile succeeds anyway, so we can downgrade the
4331       warning.
4332     - Include the current subversion revision as part of the version
4333       string: either fetch it directly if we're in an SVN checkout, do
4334       some magic to guess it if we're in an SVK checkout, or use
4335       the last-detected version if we're building from a .tar.gz.
4336       Use this version consistently in log messages.
4338   o Minor features (logging):
4339     - Always prepend "Bug: " to any log message about a bug.
4340     - Put a platform string (e.g. "Linux i686") in the startup log
4341       message, so when people paste just their logs, we know if it's
4342       OpenBSD or Windows or what.
4343     - When logging memory usage, break down memory used in buffers by
4344       buffer type.
4346   o Minor features (directory system):
4347     - New config option V2AuthoritativeDirectory that all directory
4348       authorities should set. This will let future authorities choose
4349       not to serve V2 directory information.
4350     - Directory authorities allow multiple router descriptors and/or extra
4351       info documents to be uploaded in a single go.  This will make
4352       implementing proposal 104 simpler.
4354   o Minor features (controller):
4355     - Add a new config option __DisablePredictedCircuits designed for
4356       use by the controller, when we don't want Tor to build any circuits
4357       preemptively.
4358     - Let the controller specify HOP=%d as an argument to ATTACHSTREAM,
4359       so we can exit from the middle of the circuit.
4360     - Implement "getinfo status/circuit-established".
4361     - Implement "getinfo status/version/..." so a controller can tell
4362       whether the current version is recommended, and whether any versions
4363       are good, and how many authorities agree. (Patch from shibz.)
4365   o Minor features (hidden services):
4366     - Allow multiple HiddenServicePort directives with the same virtual
4367       port; when they occur, the user is sent round-robin to one
4368       of the target ports chosen at random.  Partially fixes bug 393 by
4369       adding limited ad-hoc round-robining.
4371   o Minor features (other):
4372     - More unit tests.
4373     - Add a new AutomapHostsOnResolve option: when it is enabled, any
4374       resolve request for hosts matching a given pattern causes Tor to
4375       generate an internal virtual address mapping for that host.  This
4376       allows DNSPort to work sensibly with hidden service users.  By
4377       default, .exit and .onion addresses are remapped; the list of
4378       patterns can be reconfigured with AutomapHostsSuffixes.
4379     - Add an "-F" option to tor-resolve to force a resolve for a .onion
4380       address. Thanks to the AutomapHostsOnResolve option, this is no
4381       longer a completely silly thing to do.
4382     - If Tor is invoked from something that isn't a shell (e.g. Vidalia),
4383       now we expand "-f ~/.tor/torrc" correctly. Suggested by Matt Edman.
4384     - Treat "2gb" when given in torrc for a bandwidth as meaning 2gb,
4385       minus 1 byte: the actual maximum declared bandwidth.
4387   o Removed features:
4388     - Removed support for the old binary "version 0" controller protocol.
4389       This has been deprecated since 0.1.1, and warnings have been issued
4390       since 0.1.2.  When we encounter a v0 control message, we now send
4391       back an error and close the connection.
4392     - Remove the old "dns worker" server DNS code: it hasn't been default
4393       since 0.1.2.2-alpha, and all the servers seem to be using the new
4394       eventdns code.
4396   o Minor bugfixes (portability):
4397     - Even though Windows is equally happy with / and \ as path separators,
4398       try to use \ consistently on Windows and / consistently on Unix: it
4399       makes the log messages nicer.
4400     - Correctly report platform name on Windows 95 OSR2 and Windows 98 SE.
4401     - Read resolv.conf files correctly on platforms where read() returns
4402       partial results on small file reads.
4404   o Minor bugfixes (directory):
4405     - Correctly enforce that elements of directory objects do not appear
4406       more often than they are allowed to appear.
4407     - When we are reporting the DirServer line we just parsed, we were
4408       logging the second stanza of the key fingerprint, not the first.
4410   o Minor bugfixes (logging):
4411     - When we hit an EOF on a log (probably because we're shutting down),
4412       don't try to remove the log from the list: just mark it as
4413       unusable.  (Bulletproofs against bug 222.)
4415   o Minor bugfixes (other):
4416     - In the exitlist script, only consider the most recently published
4417       server descriptor for each server. Also, when the user requests
4418       a list of servers that _reject_ connections to a given address,
4419       explicitly exclude the IPs that also have servers that accept
4420       connections to that address. (Resolves bug 405.)
4421     - Stop allowing hibernating servers to be "stable" or "fast".
4422     - On Windows, we were preventing other processes from reading
4423       cached-routers while Tor was running.  (Reported by janbar)
4424     - Make the NodeFamilies config option work. (Reported by
4425       lodger -- it has never actually worked, even though we added it
4426       in Oct 2004.)
4427     - Check return values from pthread_mutex functions.
4428     - Don't save non-general-purpose router descriptors to the disk cache,
4429       because we have no way of remembering what their purpose was when
4430       we restart.
4431     - Add even more asserts to hunt down bug 417.
4432     - Build without verbose warnings even on (not-yet-released) gcc 4.2.
4433     - Fix a possible (but very unlikely) bug in picking routers by bandwidth.
4434       Add a log message to confirm that it is in fact unlikely.
4436   o Minor bugfixes (controller):
4437     - Make 'getinfo fingerprint' return a 551 error if we're not a
4438       server, so we match what the control spec claims we do. Reported
4439       by daejees.
4440     - Fix a typo in an error message when extendcircuit fails that
4441       caused us to not follow the \r\n-based delimiter protocol. Reported
4442       by daejees.
4444   o Code simplifications and refactoring:
4445     - Stop passing around circuit_t and crypt_path_t pointers that are
4446       implicit in other procedure arguments.
4447     - Drop the old code to choke directory connections when the
4448       corresponding OR connections got full: thanks to the cell queue
4449       feature, OR conns don't get full any more.
4450     - Make dns_resolve() handle attaching connections to circuits
4451       properly, so the caller doesn't have to.
4452     - Rename wants_to_read and wants_to_write to read/write_blocked_on_bw.
4453     - Keep the connection array as a dynamic smartlist_t, rather than as
4454       a fixed-sized array. This is important, as the number of connections
4455       is becoming increasingly decoupled from the number of sockets.
4458 Changes in version 0.1.2.14 - 2007-05-25
4459   Tor 0.1.2.14 changes the addresses of two directory authorities (this
4460   change especially affects those who serve or use hidden services),
4461   and fixes several other crash- and security-related bugs.
4463   o Directory authority changes:
4464     - Two directory authorities (moria1 and moria2) just moved to new
4465       IP addresses. This change will particularly affect those who serve
4466       or use hidden services.
4468   o Major bugfixes (crashes):
4469     - If a directory server runs out of space in the connection table
4470       as it's processing a begin_dir request, it will free the exit stream
4471       but leave it attached to the circuit, leading to unpredictable
4472       behavior. (Reported by seeess, fixes bug 425.)
4473     - Fix a bug in dirserv_remove_invalid() that would cause authorities
4474       to corrupt memory under some really unlikely scenarios.
4475     - Tighten router parsing rules. (Bugs reported by Benedikt Boss.)
4476     - Avoid segfaults when reading from mmaped descriptor file. (Reported
4477       by lodger.)
4479   o Major bugfixes (security):
4480     - When choosing an entry guard for a circuit, avoid using guards
4481       that are in the same family as the chosen exit -- not just guards
4482       that are exactly the chosen exit. (Reported by lodger.)
4484   o Major bugfixes (resource management):
4485     - If a directory authority is down, skip it when deciding where to get
4486       networkstatus objects or descriptors. Otherwise we keep asking
4487       every 10 seconds forever. Fixes bug 384.
4488     - Count it as a failure if we fetch a valid network-status but we
4489       don't want to keep it. Otherwise we'll keep fetching it and keep
4490       not wanting to keep it. Fixes part of bug 422.
4491     - If all of our dirservers have given us bad or no networkstatuses
4492       lately, then stop hammering them once per minute even when we
4493       think they're failed. Fixes another part of bug 422.
4495   o Minor bugfixes:
4496     - Actually set the purpose correctly for descriptors inserted with
4497       purpose=controller.
4498     - When we have k non-v2 authorities in our DirServer config,
4499       we ignored the last k authorities in the list when updating our
4500       network-statuses.
4501     - Correctly back-off from requesting router descriptors that we are
4502       having a hard time downloading.
4503     - Read resolv.conf files correctly on platforms where read() returns
4504       partial results on small file reads.
4505     - Don't rebuild the entire router store every time we get 32K of
4506       routers: rebuild it when the journal gets very large, or when
4507       the gaps in the store get very large.
4509   o Minor features:
4510     - When routers publish SVN revisions in their router descriptors,
4511       authorities now include those versions correctly in networkstatus
4512       documents.
4513     - Warn when using a version of libevent before 1.3b to run a server on
4514       OSX or BSD: these versions interact badly with userspace threads.
4517 Changes in version 0.1.2.13 - 2007-04-24
4518   This release features some major anonymity fixes, such as safer path
4519   selection; better client performance; faster bootstrapping, better
4520   address detection, and better DNS support for servers; write limiting as
4521   well as read limiting to make servers easier to run; and a huge pile of
4522   other features and bug fixes. The bundles also ship with Vidalia 0.0.11.
4524   Tor 0.1.2.13 is released in memory of Rob Levin (1955-2006), aka lilo
4525   of the Freenode IRC network, remembering his patience and vision for
4526   free speech on the Internet.
4528   o Minor fixes:
4529     - Fix a memory leak when we ask for "all" networkstatuses and we
4530       get one we don't recognize.
4531     - Add more asserts to hunt down bug 417.
4532     - Disable kqueue on OS X 10.3 and earlier, to fix bug 371.
4535 Changes in version 0.1.2.12-rc - 2007-03-16
4536   o Major bugfixes:
4537     - Fix an infinite loop introduced in 0.1.2.7-alpha when we serve
4538       directory information requested inside Tor connections (i.e. via
4539       begin_dir cells). It only triggered when the same connection was
4540       serving other data at the same time. Reported by seeess.
4542   o Minor bugfixes:
4543     - When creating a circuit via the controller, send a 'launched'
4544       event when we're done, so we follow the spec better.
4547 Changes in version 0.1.2.11-rc - 2007-03-15
4548   o Minor bugfixes (controller), reported by daejees:
4549     - Correct the control spec to match how the code actually responds
4550       to 'getinfo addr-mappings/*'.
4551     - The control spec described a GUARDS event, but the code
4552       implemented a GUARD event. Standardize on GUARD, but let people
4553       ask for GUARDS too.
4556 Changes in version 0.1.2.10-rc - 2007-03-07
4557   o Major bugfixes (Windows):
4558     - Do not load the NT services library functions (which may not exist)
4559       just to detect if we're a service trying to shut down. Now we run
4560       on Win98 and friends again.
4562   o Minor bugfixes (other):
4563     - Clarify a couple of log messages.
4564     - Fix a misleading socks5 error number.
4567 Changes in version 0.1.2.9-rc - 2007-03-02
4568   o Major bugfixes (Windows):
4569     - On MinGW, use "%I64u" to printf/scanf 64-bit integers, instead
4570       of the usual GCC "%llu". This prevents a bug when saving 64-bit
4571       int configuration values: the high-order 32 bits would get
4572       truncated. In particular, we were being bitten by the default
4573       MaxAdvertisedBandwidth of 128 TB turning into 0. (Fixes bug 400
4574       and maybe also bug 397.)
4576   o Minor bugfixes (performance):
4577     - Use OpenSSL's AES implementation on platforms where it's faster.
4578       This could save us as much as 10% CPU usage.
4580   o Minor bugfixes (server):
4581     - Do not rotate onion key immediately after setting it for the first
4582       time.
4584   o Minor bugfixes (directory authorities):
4585     - Stop calling servers that have been hibernating for a long time
4586       "stable". Also, stop letting hibernating or obsolete servers affect
4587       uptime and bandwidth cutoffs.
4588     - Stop listing hibernating servers in the v1 directory.
4590   o Minor bugfixes (hidden services):
4591     - Upload hidden service descriptors slightly less often, to reduce
4592       load on authorities.
4594   o Minor bugfixes (other):
4595     - Fix an assert that could trigger if a controller quickly set then
4596       cleared EntryNodes.  (Bug found by Udo van den Heuvel.)
4597     - On architectures where sizeof(int)>4, still clamp declarable bandwidth
4598       to INT32_MAX.
4599     - Fix a potential race condition in the rpm installer.  Found by
4600       Stefan Nordhausen.
4601     - Try to fix eventdns warnings once and for all: do not treat a dns rcode
4602       of 2 as indicating that the server is completely bad; it sometimes
4603       means that the server is just bad for the request in question. (may fix
4604       the last of bug 326.)
4605     - Disable encrypted directory connections when we don't have a server
4606       descriptor for the destination. We'll get this working again in
4607       the 0.2.0 branch.
4610 Changes in version 0.1.2.8-beta - 2007-02-26
4611   o Major bugfixes (crashes):
4612     - Stop crashing when the controller asks us to resetconf more than
4613       one config option at once. (Vidalia 0.0.11 does this.)
4614     - Fix a crash that happened on Win98 when we're given command-line
4615       arguments: don't try to load NT service functions from advapi32.dll
4616       except when we need them. (Bug introduced in 0.1.2.7-alpha;
4617       resolves bug 389.)
4618     - Fix a longstanding obscure crash bug that could occur when
4619       we run out of DNS worker processes. (Resolves bug 390.)
4621   o Major bugfixes (hidden services):
4622     - Correctly detect whether hidden service descriptor downloads are
4623       in-progress. (Suggested by Karsten Loesing; fixes bug 399.)
4625   o Major bugfixes (accounting):
4626     - When we start during an accounting interval before it's time to wake
4627       up, remember to wake up at the correct time. (May fix bug 342.)
4629   o Minor bugfixes (controller):
4630     - Give the controller END_STREAM_REASON_DESTROY events _before_ we
4631       clear the corresponding on_circuit variable, and remember later
4632       that we don't need to send a redundant CLOSED event.  (Resolves part
4633       3 of bug 367.)
4634     - Report events where a resolve succeeded or where we got a socks
4635       protocol error correctly, rather than calling both of them
4636       "INTERNAL".
4637     - Change reported stream target addresses to IP consistently when
4638       we finally get the IP from an exit node.
4639     - Send log messages to the controller even if they happen to be very
4640       long.
4642   o Minor bugfixes (other):
4643     - Display correct results when reporting which versions are
4644       recommended, and how recommended they are. (Resolves bug 383.)
4645     - Improve our estimates for directory bandwidth to be less random:
4646       guess that an unrecognized directory will have the average bandwidth
4647       from all known directories, not that it will have the average
4648       bandwidth from those directories earlier than it on the list.
4649     - If we start a server with ClientOnly 1, then set ClientOnly to 0
4650       and hup, stop triggering an assert based on an empty onion_key.
4651     - On platforms with no working mmap() equivalent, don't warn the
4652       user when cached-routers doesn't exist.
4653     - Warn the user when mmap() [or its equivalent] fails for some reason
4654       other than file-not-found.
4655     - Don't warn the user when cached-routers.new doesn't exist: that's
4656       perfectly fine when starting up for the first time.
4657     - When EntryNodes are configured, rebuild the guard list to contain,
4658       in order: the EntryNodes that were guards before; the rest of the
4659       EntryNodes; the nodes that were guards before.
4660     - Mask out all signals in sub-threads; only the libevent signal
4661       handler should be processing them. This should prevent some crashes
4662       on some machines using pthreads. (Patch from coderman.)
4663     - Fix switched arguments on memset in the implementation of
4664       tor_munmap() for systems with no mmap() call.
4665     - When Tor receives a router descriptor that it asked for, but
4666       no longer wants (because it has received fresh networkstatuses
4667       in the meantime), do not warn the user.  Cache the descriptor if
4668       we're a cache; drop it if we aren't.
4669     - Make earlier entry guards _really_ get retried when the network
4670       comes back online.
4671     - On a malformed DNS reply, always give an error to the corresponding
4672       DNS request.
4673     - Build with recent libevents on platforms that do not define the
4674       nonstandard types "u_int8_t" and friends.
4676   o Minor features (controller):
4677     - Warn the user when an application uses the obsolete binary v0
4678       control protocol.  We're planning to remove support for it during
4679       the next development series, so it's good to give people some
4680       advance warning.
4681     - Add STREAM_BW events to report per-entry-stream bandwidth
4682       use. (Patch from Robert Hogan.)
4683     - Rate-limit SIGNEWNYM signals in response to controllers that
4684       impolitely generate them for every single stream. (Patch from
4685       mwenge; closes bug 394.)
4686     - Make REMAP stream events have a SOURCE (cache or exit), and
4687       make them generated in every case where we get a successful
4688       connected or resolved cell.
4690   o Minor bugfixes (performance):
4691     - Call router_have_min_dir_info half as often. (This is showing up in
4692       some profiles, but not others.)
4693     - When using GCC, make log_debug never get called at all, and its
4694       arguments never get evaluated, when no debug logs are configured.
4695       (This is showing up in some profiles, but not others.)
4697   o Minor features:
4698     - Remove some never-implemented options.  Mark PathlenCoinWeight as
4699       obsolete.
4700     - Implement proposal 106: Stop requiring clients to have well-formed
4701       certificates; stop checking nicknames in certificates. (Clients
4702       have certificates so that they can look like Tor servers, but in
4703       the future we might want to allow them to look like regular TLS
4704       clients instead. Nicknames in certificates serve no purpose other
4705       than making our protocol easier to recognize on the wire.)
4706     - Revise messages on handshake failure again to be even more clear about
4707       which are incoming connections and which are outgoing.
4708     - Discard any v1 directory info that's over 1 month old (for
4709       directories) or over 1 week old (for running-routers lists).
4710     - Do not warn when individual nodes in the configuration's EntryNodes,
4711       ExitNodes, etc are down: warn only when all possible nodes
4712       are down. (Fixes bug 348.)
4713     - Always remove expired routers and networkstatus docs before checking
4714       whether we have enough information to build circuits. (Fixes
4715       bug 373.)
4716     - Put a lower-bound on MaxAdvertisedBandwidth.
4719 Changes in version 0.1.2.7-alpha - 2007-02-06
4720   o Major bugfixes (rate limiting):
4721     - Servers decline directory requests much more aggressively when
4722       they're low on bandwidth. Otherwise they end up queueing more and
4723       more directory responses, which can't be good for latency.
4724     - But never refuse directory requests from local addresses.
4725     - Fix a memory leak when sending a 503 response for a networkstatus
4726       request.
4727     - Be willing to read or write on local connections (e.g. controller
4728       connections) even when the global rate limiting buckets are empty.
4729     - If our system clock jumps back in time, don't publish a negative
4730       uptime in the descriptor. Also, don't let the global rate limiting
4731       buckets go absurdly negative.
4732     - Flush local controller connection buffers periodically as we're
4733       writing to them, so we avoid queueing 4+ megabytes of data before
4734       trying to flush.
4736   o Major bugfixes (NT services):
4737     - Install as NT_AUTHORITY\LocalService rather than as SYSTEM; add a
4738       command-line flag so that admins can override the default by saying
4739       "tor --service install --user "SomeUser"".  This will not affect
4740       existing installed services.  Also, warn the user that the service
4741       will look for its configuration file in the service user's
4742       %appdata% directory.  (We can't do the 'hardwire the user's appdata
4743       directory' trick any more, since we may not have read access to that
4744       directory.)
4746   o Major bugfixes (other):
4747     - Previously, we would cache up to 16 old networkstatus documents
4748       indefinitely, if they came from nontrusted authorities. Now we
4749       discard them if they are more than 10 days old.
4750     - Fix a crash bug in the presence of DNS hijacking (reported by Andrew
4751       Del Vecchio).
4752     - Detect and reject malformed DNS responses containing circular
4753       pointer loops.
4754     - If exits are rare enough that we're not marking exits as guards,
4755       ignore exit bandwidth when we're deciding the required bandwidth
4756       to become a guard.
4757     - When we're handling a directory connection tunneled over Tor,
4758       don't fill up internal memory buffers with all the data we want
4759       to tunnel; instead, only add it if the OR connection that will
4760       eventually receive it has some room for it. (This can lead to
4761       slowdowns in tunneled dir connections; a better solution will have
4762       to wait for 0.2.0.)
4764   o Minor bugfixes (dns):
4765     - Add some defensive programming to eventdns.c in an attempt to catch
4766       possible memory-stomping bugs.
4767     - Detect and reject DNS replies containing IPv4 or IPv6 records with
4768       an incorrect number of bytes. (Previously, we would ignore the
4769       extra bytes.)
4770     - Fix as-yet-unused reverse IPv6 lookup code so it sends nybbles
4771       in the correct order, and doesn't crash.
4772     - Free memory held in recently-completed DNS lookup attempts on exit.
4773       This was not a memory leak, but may have been hiding memory leaks.
4774     - Handle TTL values correctly on reverse DNS lookups.
4775     - Treat failure to parse resolv.conf as an error.
4777   o Minor bugfixes (other):
4778     - Fix crash with "tor --list-fingerprint" (reported by seeess).
4779     - When computing clock skew from directory HTTP headers, consider what
4780       time it was when we finished asking for the directory, not what
4781       time it is now.
4782     - Expire socks connections if they spend too long waiting for the
4783       handshake to finish. Previously we would let them sit around for
4784       days, if the connecting application didn't close them either.
4785     - And if the socks handshake hasn't started, don't send a
4786       "DNS resolve socks failed" handshake reply; just close it.
4787     - Stop using C functions that OpenBSD's linker doesn't like.
4788     - Don't launch requests for descriptors unless we have networkstatuses
4789       from at least half of the authorities.  This delays the first
4790       download slightly under pathological circumstances, but can prevent
4791       us from downloading a bunch of descriptors we don't need.
4792     - Do not log IPs with TLS failures for incoming TLS
4793       connections. (Fixes bug 382.)
4794     - If the user asks to use invalid exit nodes, be willing to use
4795       unstable ones.
4796     - Stop using the reserved ac_cv namespace in our configure script.
4797     - Call stat() slightly less often; use fstat() when possible.
4798     - Refactor the way we handle pending circuits when an OR connection
4799       completes or fails, in an attempt to fix a rare crash bug.
4800     - Only rewrite a conn's address based on X-Forwarded-For: headers
4801       if it's a parseable public IP address; and stop adding extra quotes
4802       to the resulting address.
4804   o Major features:
4805     - Weight directory requests by advertised bandwidth. Now we can
4806       let servers enable write limiting but still allow most clients to
4807       succeed at their directory requests. (We still ignore weights when
4808       choosing a directory authority; I hope this is a feature.)
4810   o Minor features:
4811     - Create a new file ReleaseNotes which was the old ChangeLog. The
4812       new ChangeLog file now includes the summaries for all development
4813       versions too.
4814     - Check for addresses with invalid characters at the exit as well
4815       as at the client, and warn less verbosely when they fail. You can
4816       override this by setting ServerDNSAllowNonRFC953Addresses to 1.
4817     - Adapt a patch from goodell to let the contrib/exitlist script
4818       take arguments rather than require direct editing.
4819     - Inform the server operator when we decide not to advertise a
4820       DirPort due to AccountingMax enabled or a low BandwidthRate. It
4821       was confusing Zax, so now we're hopefully more helpful.
4822     - Bring us one step closer to being able to establish an encrypted
4823       directory tunnel without knowing a descriptor first. Still not
4824       ready yet. As part of the change, now assume we can use a
4825       create_fast cell if we don't know anything about a router.
4826     - Allow exit nodes to use nameservers running on ports other than 53.
4827     - Servers now cache reverse DNS replies.
4828     - Add an --ignore-missing-torrc command-line option so that we can
4829       get the "use sensible defaults if the configuration file doesn't
4830       exist" behavior even when specifying a torrc location on the command
4831       line.
4833   o Minor features (controller):
4834     - Track reasons for OR connection failure; make these reasons
4835       available via the controller interface. (Patch from Mike Perry.)
4836     - Add a SOCKS_BAD_HOSTNAME client status event so controllers
4837       can learn when clients are sending malformed hostnames to Tor.
4838     - Clean up documentation for controller status events.
4839     - Add a REMAP status to stream events to note that a stream's
4840       address has changed because of a cached address or a MapAddress
4841       directive.
4844 Changes in version 0.1.2.6-alpha - 2007-01-09
4845   o Major bugfixes:
4846     - Fix an assert error introduced in 0.1.2.5-alpha: if a single TLS
4847       connection handles more than 4 gigs in either direction, we crash.
4848     - Fix an assert error introduced in 0.1.2.5-alpha: if we're an
4849       advertised exit node, somebody might try to exit from us when
4850       we're bootstrapping and before we've built our descriptor yet.
4851       Refuse the connection rather than crashing.
4853   o Minor bugfixes:
4854     - Warn if we (as a server) find that we've resolved an address that we
4855       weren't planning to resolve.
4856     - Warn that using select() on any libevent version before 1.1 will be
4857       unnecessarily slow (even for select()).
4858     - Flush ERR-level controller status events just like we currently
4859       flush ERR-level log events, so that a Tor shutdown doesn't prevent
4860       the controller from learning about current events.
4862   o Minor features (more controller status events):
4863     - Implement EXTERNAL_ADDRESS server status event so controllers can
4864       learn when our address changes.
4865     - Implement BAD_SERVER_DESCRIPTOR server status event so controllers
4866       can learn when directories reject our descriptor.
4867     - Implement SOCKS_UNKNOWN_PROTOCOL client status event so controllers
4868       can learn when a client application is speaking a non-socks protocol
4869       to our SocksPort.
4870     - Implement DANGEROUS_SOCKS client status event so controllers
4871       can learn when a client application is leaking DNS addresses.
4872     - Implement BUG general status event so controllers can learn when
4873       Tor is unhappy about its internal invariants.
4874     - Implement CLOCK_SKEW general status event so controllers can learn
4875       when Tor thinks the system clock is set incorrectly.
4876     - Implement GOOD_SERVER_DESCRIPTOR and ACCEPTED_SERVER_DESCRIPTOR
4877       server status events so controllers can learn when their descriptors
4878       are accepted by a directory.
4879     - Implement CHECKING_REACHABILITY and REACHABILITY_{SUCCEEDED|FAILED}
4880       server status events so controllers can learn about Tor's progress in
4881       deciding whether it's reachable from the outside.
4882     - Implement BAD_LIBEVENT general status event so controllers can learn
4883       when we have a version/method combination in libevent that needs to
4884       be changed.
4885     - Implement NAMESERVER_STATUS, NAMESERVER_ALL_DOWN, DNS_HIJACKED,
4886       and DNS_USELESS server status events so controllers can learn
4887       about changes to DNS server status.
4889   o Minor features (directory):
4890     - Authorities no longer recommend exits as guards if this would shift
4891       too much load to the exit nodes.
4894 Changes in version 0.1.2.5-alpha - 2007-01-06
4895   o Major features:
4896     - Enable write limiting as well as read limiting. Now we sacrifice
4897       capacity if we're pushing out lots of directory traffic, rather
4898       than overrunning the user's intended bandwidth limits.
4899     - Include TLS overhead when counting bandwidth usage; previously, we
4900       would count only the bytes sent over TLS, but not the bytes used
4901       to send them.
4902     - Support running the Tor service with a torrc not in the same
4903       directory as tor.exe and default to using the torrc located in
4904       the %appdata%\Tor\ of the user who installed the service. Patch
4905       from Matt Edman.
4906     - Servers now check for the case when common DNS requests are going to
4907       wildcarded addresses (i.e. all getting the same answer), and change
4908       their exit policy to reject *:* if it's happening.
4909     - Implement BEGIN_DIR cells, so we can connect to the directory
4910       server via TLS to do encrypted directory requests rather than
4911       plaintext. Enable via the TunnelDirConns and PreferTunneledDirConns
4912       config options if you like.
4914   o Minor features (config and docs):
4915     - Start using the state file to store bandwidth accounting data:
4916       the bw_accounting file is now obsolete. We'll keep generating it
4917       for a while for people who are still using 0.1.2.4-alpha.
4918     - Try to batch changes to the state file so that we do as few
4919       disk writes as possible while still storing important things in
4920       a timely fashion.
4921     - The state file and the bw_accounting file get saved less often when
4922       the AvoidDiskWrites config option is set.
4923     - Make PIDFile work on Windows (untested).
4924     - Add internal descriptions for a bunch of configuration options:
4925       accessible via controller interface and in comments in saved
4926       options files.
4927     - Reject *:563 (NNTPS) in the default exit policy. We already reject
4928       NNTP by default, so this seems like a sensible addition.
4929     - Clients now reject hostnames with invalid characters. This should
4930       avoid some inadvertent info leaks. Add an option
4931       AllowNonRFC953Hostnames to disable this behavior, in case somebody
4932       is running a private network with hosts called @, !, and #.
4933     - Add a maintainer script to tell us which options are missing
4934       documentation: "make check-docs".
4935     - Add a new address-spec.txt document to describe our special-case
4936       addresses: .exit, .onion, and .noconnnect.
4938   o Minor features (DNS):
4939     - Ongoing work on eventdns infrastructure: now it has dns server
4940       and ipv6 support. One day Tor will make use of it.
4941     - Add client-side caching for reverse DNS lookups.
4942     - Add support to tor-resolve tool for reverse lookups and SOCKS5.
4943     - When we change nameservers or IP addresses, reset and re-launch
4944       our tests for DNS hijacking.
4946   o Minor features (directory):
4947     - Authorities now specify server versions in networkstatus. This adds
4948       about 2% to the size of compressed networkstatus docs, and allows
4949       clients to tell which servers support BEGIN_DIR and which don't.
4950       The implementation is forward-compatible with a proposed future
4951       protocol version scheme not tied to Tor versions.
4952     - DirServer configuration lines now have an orport= option so
4953       clients can open encrypted tunnels to the authorities without
4954       having downloaded their descriptors yet. Enabled for moria1,
4955       moria2, tor26, and lefkada now in the default configuration.
4956     - Directory servers are more willing to send a 503 "busy" if they
4957       are near their write limit, especially for v1 directory requests.
4958       Now they can use their limited bandwidth for actual Tor traffic.
4959     - Clients track responses with status 503 from dirservers. After a
4960       dirserver has given us a 503, we try not to use it until an hour has
4961       gone by, or until we have no dirservers that haven't given us a 503.
4962     - When we get a 503 from a directory, and we're not a server, we don't
4963       count the failure against the total number of failures allowed
4964       for the thing we're trying to download.
4965     - Report X-Your-Address-Is correctly from tunneled directory
4966       connections; don't report X-Your-Address-Is when it's an internal
4967       address; and never believe reported remote addresses when they're
4968       internal.
4969     - Protect against an unlikely DoS attack on directory servers.
4970     - Add a BadDirectory flag to network status docs so that authorities
4971       can (eventually) tell clients about caches they believe to be
4972       broken.
4974   o Minor features (controller):
4975     - Have GETINFO dir/status/* work on hosts with DirPort disabled.
4976     - Reimplement GETINFO so that info/names stays in sync with the
4977       actual keys.
4978     - Implement "GETINFO fingerprint".
4979     - Implement "SETEVENTS GUARD" so controllers can get updates on
4980       entry guard status as it changes.
4982   o Minor features (clean up obsolete pieces):
4983     - Remove some options that have been deprecated since at least
4984       0.1.0.x: AccountingMaxKB, LogFile, DebugLogFile, LogLevel, and
4985       SysLog. Use AccountingMax instead of AccountingMaxKB, and use Log
4986       to set log options.
4987     - We no longer look for identity and onion keys in "identity.key" and
4988       "onion.key" -- these were replaced by secret_id_key and
4989       secret_onion_key in 0.0.8pre1.
4990     - We no longer require unrecognized directory entries to be
4991       preceded by "opt".
4993   o Major bugfixes (security):
4994     - Stop sending the HttpProxyAuthenticator string to directory
4995       servers when directory connections are tunnelled through Tor.
4996     - Clients no longer store bandwidth history in the state file.
4997     - Do not log introduction points for hidden services if SafeLogging
4998       is set.
4999     - When generating bandwidth history, round down to the nearest
5000       1k. When storing accounting data, round up to the nearest 1k.
5001     - When we're running as a server, remember when we last rotated onion
5002       keys, so that we will rotate keys once they're a week old even if
5003       we never stay up for a week ourselves.
5005   o Major bugfixes (other):
5006     - Fix a longstanding bug in eventdns that prevented the count of
5007       timed-out resolves from ever being reset. This bug caused us to
5008       give up on a nameserver the third time it timed out, and try it
5009       10 seconds later... and to give up on it every time it timed out
5010       after that.
5011     - Take out the '5 second' timeout from the connection retry
5012       schedule. Now the first connect attempt will wait a full 10
5013       seconds before switching to a new circuit. Perhaps this will help
5014       a lot. Based on observations from Mike Perry.
5015     - Fix a bug on the Windows implementation of tor_mmap_file() that
5016       would prevent the cached-routers file from ever loading. Reported
5017       by John Kimble.
5019   o Minor bugfixes:
5020     - Fix an assert failure when a directory authority sets
5021       AuthDirRejectUnlisted and then receives a descriptor from an
5022       unlisted router. Reported by seeess.
5023     - Avoid a double-free when parsing malformed DirServer lines.
5024     - Fix a bug when a BSD-style PF socket is first used. Patch from
5025       Fabian Keil.
5026     - Fix a bug in 0.1.2.2-alpha that prevented clients from asking
5027       to resolve an address at a given exit node even when they ask for
5028       it by name.
5029     - Servers no longer ever list themselves in their "family" line,
5030       even if configured to do so. This makes it easier to configure
5031       family lists conveniently.
5032     - When running as a server, don't fall back to 127.0.0.1 when no
5033       nameservers are configured in /etc/resolv.conf; instead, make the
5034       user fix resolv.conf or specify nameservers explicitly. (Resolves
5035       bug 363.)
5036     - Stop accepting certain malformed ports in configured exit policies.
5037     - Don't re-write the fingerprint file every restart, unless it has
5038       changed.
5039     - Stop warning when a single nameserver fails: only warn when _all_ of
5040       our nameservers have failed. Also, when we only have one nameserver,
5041       raise the threshold for deciding that the nameserver is dead.
5042     - Directory authorities now only decide that routers are reachable
5043       if their identity keys are as expected.
5044     - When the user uses bad syntax in the Log config line, stop
5045       suggesting other bad syntax as a replacement.
5046     - Correctly detect ipv6 DNS capability on OpenBSD.
5048   o Minor bugfixes (controller):
5049     - Report the circuit number correctly in STREAM CLOSED events. Bug
5050       reported by Mike Perry.
5051     - Do not report bizarre values for results of accounting GETINFOs
5052       when the last second's write or read exceeds the allotted bandwidth.
5053     - Report "unrecognized key" rather than an empty string when the
5054       controller tries to fetch a networkstatus that doesn't exist.
5057 Changes in version 0.1.1.26 - 2006-12-14
5058   o Security bugfixes:
5059     - Stop sending the HttpProxyAuthenticator string to directory
5060       servers when directory connections are tunnelled through Tor.
5061     - Clients no longer store bandwidth history in the state file.
5062     - Do not log introduction points for hidden services if SafeLogging
5063       is set.
5065   o Minor bugfixes:
5066     - Fix an assert failure when a directory authority sets
5067       AuthDirRejectUnlisted and then receives a descriptor from an
5068       unlisted router (reported by seeess).
5071 Changes in version 0.1.2.4-alpha - 2006-12-03
5072   o Major features:
5073     - Add support for using natd; this allows FreeBSDs earlier than
5074       5.1.2 to have ipfw send connections through Tor without using
5075       SOCKS. (Patch from Zajcev Evgeny with tweaks from tup.)
5077   o Minor features:
5078     - Make all connections to addresses of the form ".noconnect"
5079       immediately get closed. This lets application/controller combos
5080       successfully test whether they're talking to the same Tor by
5081       watching for STREAM events.
5082     - Make cross.sh cross-compilation script work even when autogen.sh
5083       hasn't been run. (Patch from Michael Mohr.)
5084     - Statistics dumped by -USR2 now include a breakdown of public key
5085       operations, for profiling.
5087   o Major bugfixes:
5088     - Fix a major leak when directory authorities parse their
5089       approved-routers list, a minor memory leak when we fail to pick
5090       an exit node, and a few rare leaks on errors.
5091     - Handle TransPort connections even when the server sends data before
5092       the client sends data. Previously, the connection would just hang
5093       until the client sent data. (Patch from tup based on patch from
5094       Zajcev Evgeny.)
5095     - Avoid assert failure when our cached-routers file is empty on
5096       startup.
5098   o Minor bugfixes:
5099     - Don't log spurious warnings when we see a circuit close reason we
5100       don't recognize; it's probably just from a newer version of Tor.
5101     - Have directory authorities allow larger amounts of drift in uptime
5102       without replacing the server descriptor: previously, a server that
5103       restarted every 30 minutes could have 48 "interesting" descriptors
5104       per day.
5105     - Start linking to the Tor specification and Tor reference manual
5106       correctly in the Windows installer.
5107     - Add Vidalia to the OS X uninstaller script, so when we uninstall
5108       Tor/Privoxy we also uninstall Vidalia.
5109     - Resume building on Irix64, and fix a lot of warnings from its
5110       MIPSpro C compiler.
5111     - Don't corrupt last_guessed_ip in router_new_address_suggestion()
5112       when we're running as a client.
5115 Changes in version 0.1.1.25 - 2006-11-04
5116   o Major bugfixes:
5117     - When a client asks us to resolve (rather than connect to)
5118       an address, and we have a cached answer, give them the cached
5119       answer. Previously, we would give them no answer at all.
5120     - We were building exactly the wrong circuits when we predict
5121       hidden service requirements, meaning Tor would have to build all
5122       its circuits on demand.
5123     - If none of our live entry guards have a high uptime, but we
5124       require a guard with a high uptime, try adding a new guard before
5125       we give up on the requirement. This patch should make long-lived
5126       connections more stable on average.
5127     - When testing reachability of our DirPort, don't launch new
5128       tests when there's already one in progress -- unreachable
5129       servers were stacking up dozens of testing streams.
5131   o Security bugfixes:
5132     - When the user sends a NEWNYM signal, clear the client-side DNS
5133       cache too. Otherwise we continue to act on previous information.
5135   o Minor bugfixes:
5136     - Avoid a memory corruption bug when creating a hash table for
5137       the first time.
5138     - Avoid possibility of controller-triggered crash when misusing
5139       certain commands from a v0 controller on platforms that do not
5140       handle printf("%s",NULL) gracefully.
5141     - Avoid infinite loop on unexpected controller input.
5142     - Don't log spurious warnings when we see a circuit close reason we
5143       don't recognize; it's probably just from a newer version of Tor.
5144     - Add Vidalia to the OS X uninstaller script, so when we uninstall
5145       Tor/Privoxy we also uninstall Vidalia.
5148 Changes in version 0.1.2.3-alpha - 2006-10-29
5149   o Minor features:
5150     - Prepare for servers to publish descriptors less often: never
5151       discard a descriptor simply for being too old until either it is
5152       recommended by no authorities, or until we get a better one for
5153       the same router. Make caches consider retaining old recommended
5154       routers for even longer.
5155     - If most authorities set a BadExit flag for a server, clients
5156       don't think of it as a general-purpose exit. Clients only consider
5157       authorities that advertise themselves as listing bad exits.
5158     - Directory servers now provide 'Pragma: no-cache' and 'Expires'
5159       headers for content, so that we can work better in the presence of
5160       caching HTTP proxies.
5161     - Allow authorities to list nodes as bad exits by fingerprint or by
5162       address.
5164   o Minor features, controller:
5165     - Add a REASON field to CIRC events; for backward compatibility, this
5166       field is sent only to controllers that have enabled the extended
5167       event format.  Also, add additional reason codes to explain why
5168       a given circuit has been destroyed or truncated. (Patches from
5169       Mike Perry)
5170     - Add a REMOTE_REASON field to extended CIRC events to tell the
5171       controller about why a remote OR told us to close a circuit.
5172     - Stream events also now have REASON and REMOTE_REASON fields,
5173       working much like those for circuit events.
5174     - There's now a GETINFO ns/... field so that controllers can ask Tor
5175       about the current status of a router.
5176     - A new event type "NS" to inform a controller when our opinion of
5177       a router's status has changed.
5178     - Add a GETINFO events/names and GETINFO features/names so controllers
5179       can tell which events and features are supported.
5180     - A new CLEARDNSCACHE signal to allow controllers to clear the
5181       client-side DNS cache without expiring circuits.
5183   o Security bugfixes:
5184     - When the user sends a NEWNYM signal, clear the client-side DNS
5185       cache too. Otherwise we continue to act on previous information.
5187   o Minor bugfixes:
5188     - Avoid sending junk to controllers or segfaulting when a controller
5189       uses EVENT_NEW_DESC with verbose nicknames.
5190     - Stop triggering asserts if the controller tries to extend hidden
5191       service circuits (reported by mwenge).
5192     - Avoid infinite loop on unexpected controller input.
5193     - When the controller does a "GETINFO network-status", tell it
5194       about even those routers whose descriptors are very old, and use
5195       long nicknames where appropriate.
5196     - Change NT service functions to be loaded on demand.  This lets us
5197       build with MinGW without breaking Tor for Windows 98 users.
5198     - Do DirPort reachability tests less often, since a single test
5199       chews through many circuits before giving up.
5200     - In the hidden service example in torrc.sample, stop recommending
5201       esoteric and discouraged hidden service options.
5202     - When stopping an NT service, wait up to 10 sec for it to actually
5203       stop.  (Patch from Matt Edman; resolves bug 295.)
5204     - Fix handling of verbose nicknames with ORCONN controller events:
5205       make them show up exactly when requested, rather than exactly when
5206       not requested.
5207     - When reporting verbose nicknames in entry_guards_getinfo(), avoid
5208       printing a duplicate "$" in the keys we send (reported by mwenge).
5209     - Correctly set maximum connection limit on Cygwin. (This time
5210       for sure!)
5211     - Try to detect Windows correctly when cross-compiling.
5212     - Detect the size of the routers file correctly even if it is
5213       corrupted (on systems without mmap) or not page-aligned (on systems
5214       with mmap). This bug was harmless.
5215     - Sometimes we didn't bother sending a RELAY_END cell when an attempt
5216       to open a stream fails; now we do in more cases. This should
5217       make clients able to find a good exit faster in some cases, since
5218       unhandleable requests will now get an error rather than timing out.
5219     - Resolve two memory leaks when rebuilding the on-disk router cache
5220       (reported by fookoowa).
5221     - Clean up minor code warnings suggested by the MIPSpro C compiler,
5222       and reported by some Centos users.
5223     - Controller signals now work on non-Unix platforms that don't define
5224       SIGUSR1 and SIGUSR2 the way we expect.
5225     - Patch from Michael Mohr to contrib/cross.sh, so it checks more
5226       values before failing, and always enables eventdns.
5227     - Libevent-1.2 exports, but does not define in its headers, strlcpy.
5228       Try to fix this in configure.in by checking for most functions
5229       before we check for libevent.
5232 Changes in version 0.1.2.2-alpha - 2006-10-07
5233   o Major features:
5234     - Make our async eventdns library on-by-default for Tor servers,
5235       and plan to deprecate the separate dnsworker threads.
5236     - Add server-side support for "reverse" DNS lookups (using PTR
5237       records so clients can determine the canonical hostname for a given
5238       IPv4 address). Only supported by servers using eventdns; servers
5239       now announce in their descriptors whether they support eventdns.
5240     - Specify and implement client-side SOCKS5 interface for reverse DNS
5241       lookups (see doc/socks-extensions.txt).
5242     - Add a BEGIN_DIR relay cell type for an easier in-protocol way to
5243       connect to directory servers through Tor. Previously, clients needed
5244       to find Tor exits to make private connections to directory servers.
5245     - Avoid choosing Exit nodes for entry or middle hops when the
5246       total bandwidth available from non-Exit nodes is much higher than
5247       the total bandwidth available from Exit nodes.
5248     - Workaround for name servers (like Earthlink's) that hijack failing
5249       DNS requests and replace the no-such-server answer with a "helpful"
5250       redirect to an advertising-driven search portal. Also work around
5251       DNS hijackers who "helpfully" decline to hijack known-invalid
5252       RFC2606 addresses. Config option "ServerDNSDetectHijacking 0"
5253       lets you turn it off.
5254     - Send out a burst of long-range padding cells once we've established
5255       that we're reachable. Spread them over 4 circuits, so hopefully
5256       a few will be fast. This exercises our bandwidth and bootstraps
5257       us into the directory more quickly.
5259   o New/improved config options:
5260     - Add new config option "ResolvConf" to let the server operator
5261       choose an alternate resolve.conf file when using eventdns.
5262     - Add an "EnforceDistinctSubnets" option to control our "exclude
5263       servers on the same /16" behavior. It's still on by default; this
5264       is mostly for people who want to operate private test networks with
5265       all the machines on the same subnet.
5266     - If one of our entry guards is on the ExcludeNodes list, or the
5267       directory authorities don't think it's a good guard, treat it as
5268       if it were unlisted: stop using it as a guard, and throw it off
5269       the guards list if it stays that way for a long time.
5270     - Allow directory authorities to be marked separately as authorities
5271       for the v1 directory protocol, the v2 directory protocol, and
5272       as hidden service directories, to make it easier to retire old
5273       authorities. V1 authorities should set "HSAuthoritativeDir 1"
5274       to continue being hidden service authorities too.
5275     - Remove 8888 as a LongLivedPort, and add 6697 (IRCS).
5277   o Minor features, controller:
5278     - Fix CIRC controller events so that controllers can learn the
5279       identity digests of non-Named servers used in circuit paths.
5280     - Let controllers ask for more useful identifiers for servers. Instead
5281       of learning identity digests for un-Named servers and nicknames
5282       for Named servers, the new identifiers include digest, nickname,
5283       and indication of Named status. Off by default; see control-spec.txt
5284       for more information.
5285     - Add a "getinfo address" controller command so it can display Tor's
5286       best guess to the user.
5287     - New controller event to alert the controller when our server
5288       descriptor has changed.
5289     - Give more meaningful errors on controller authentication failure.
5291   o Minor features, other:
5292     - When asked to resolve a hostname, don't use non-exit servers unless
5293       requested to do so. This allows servers with broken DNS to be
5294       useful to the network.
5295     - Divide eventdns log messages into warn and info messages.
5296     - Reserve the nickname "Unnamed" for routers that can't pick
5297       a hostname: any router can call itself Unnamed; directory
5298       authorities will never allocate Unnamed to any particular router;
5299       clients won't believe that any router is the canonical Unnamed.
5300     - Only include function names in log messages for info/debug messages.
5301       For notice/warn/err, the content of the message should be clear on
5302       its own, and printing the function name only confuses users.
5303     - Avoid some false positives during reachability testing: don't try
5304       to test via a server that's on the same /24 as us.
5305     - If we fail to build a circuit to an intended enclave, and it's
5306       not mandatory that we use that enclave, stop wanting it.
5307     - When eventdns is enabled, allow multithreaded builds on NetBSD and
5308       OpenBSD. (We had previously disabled threads on these platforms
5309       because they didn't have working thread-safe resolver functions.)
5311   o Major bugfixes, anonymity/security:
5312     - If a client asked for a server by name, and there's a named server
5313       in our network-status but we don't have its descriptor yet, we
5314       could return an unnamed server instead.
5315     - Fix NetBSD bug that could allow someone to force uninitialized RAM
5316       to be sent to a server's DNS resolver. This only affects NetBSD
5317       and other platforms that do not bounds-check tolower().
5318     - Reject (most) attempts to use Tor circuits with length one. (If
5319       many people start using Tor as a one-hop proxy, exit nodes become
5320       a more attractive target for compromise.)
5321     - Just because your DirPort is open doesn't mean people should be
5322       able to remotely teach you about hidden service descriptors. Now
5323       only accept rendezvous posts if you've got HSAuthoritativeDir set.
5325   o Major bugfixes, other:
5326     - Don't crash on race condition in dns.c: tor_assert(!resolve->expire)
5327     - When a client asks the server to resolve (not connect to)
5328       an address, and it has a cached answer, give them the cached answer.
5329       Previously, the server would give them no answer at all.
5330     - Allow really slow clients to not hang up five minutes into their
5331       directory downloads (suggested by Adam J. Richter).
5332     - We were building exactly the wrong circuits when we anticipated
5333       hidden service requirements, meaning Tor would have to build all
5334       its circuits on demand.
5335     - Avoid crashing when we mmap a router cache file of size 0.
5336     - When testing reachability of our DirPort, don't launch new
5337       tests when there's already one in progress -- unreachable
5338       servers were stacking up dozens of testing streams.
5340   o Minor bugfixes, correctness:
5341     - If we're a directory mirror and we ask for "all" network status
5342       documents, we would discard status documents from authorities
5343       we don't recognize.
5344     - Avoid a memory corruption bug when creating a hash table for
5345       the first time.
5346     - Avoid controller-triggered crash when misusing certain commands
5347       from a v0 controller on platforms that do not handle
5348       printf("%s",NULL) gracefully.
5349     - Don't crash when a controller sends a third argument to an
5350       "extendcircuit" request.
5351     - Controller protocol fixes: fix encoding in "getinfo addr-mappings"
5352       response; fix error code when "getinfo dir/status/" fails.
5353     - Avoid crash when telling controller stream-status and a stream
5354       is detached.
5355     - Patch from Adam Langley to fix assert() in eventdns.c.
5356     - Fix a debug log message in eventdns to say "X resolved to Y"
5357       instead of "X resolved to X".
5358     - Make eventdns give strings for DNS errors, not just error numbers.
5359     - Track unreachable entry guards correctly: don't conflate
5360       'unreachable by us right now' with 'listed as down by the directory
5361       authorities'. With the old code, if a guard was unreachable by
5362       us but listed as running, it would clog our guard list forever.
5363     - Behave correctly in case we ever have a network with more than
5364       2GB/s total advertised capacity.
5365     - Make TrackExitHosts case-insensitive, and fix the behavior of
5366       ".suffix" TrackExitHosts items to avoid matching in the middle of
5367       an address.
5368     - Finally fix the openssl warnings from newer gccs that believe that
5369       ignoring a return value is okay, but casting a return value and
5370       then ignoring it is a sign of madness.
5371     - Prevent the contrib/exitlist script from printing the same
5372       result more than once.
5373     - Patch from Steve Hildrey: Generate network status correctly on
5374       non-versioning dirservers.
5375     - Don't listen to the X-Your-Address-Is hint if you did the lookup
5376       via Tor; otherwise you'll think you're the exit node's IP address.
5378   o Minor bugfixes, performance:
5379     - Two small performance improvements on parsing descriptors.
5380     - Major performance improvement on inserting descriptors: change
5381       algorithm from O(n^2) to O(n).
5382     - Make the common memory allocation path faster on machines where
5383       malloc(0) returns a pointer.
5384     - Start remembering X-Your-Address-Is directory hints even if you're
5385       a client, so you can become a server more smoothly.
5386     - Avoid duplicate entries on MyFamily line in server descriptor.
5388   o Packaging, features:
5389     - Remove architecture from OS X builds. The official builds are
5390       now universal binaries.
5391     - The Debian package now uses --verify-config when (re)starting,
5392       to distinguish configuration errors from other errors.
5393     - Update RPMs to require libevent 1.1b.
5395   o Packaging, bugfixes:
5396     - Patches so Tor builds with MinGW on Windows.
5397     - Patches so Tor might run on Cygwin again.
5398     - Resume building on non-gcc compilers and ancient gcc. Resume
5399       building with the -O0 compile flag. Resume building cleanly on
5400       Debian woody.
5401     - Run correctly on OS X platforms with case-sensitive filesystems.
5402     - Correct includes for net/if.h and net/pfvar.h on OpenBSD (from Tup).
5403     - Add autoconf checks so Tor can build on Solaris x86 again.
5405   o Documentation
5406     - Documented (and renamed) ServerDNSSearchDomains and
5407       ServerDNSResolvConfFile options.
5408     - Be clearer that the *ListenAddress directives can be repeated
5409       multiple times.
5412 Changes in version 0.1.1.24 - 2006-09-29
5413   o Major bugfixes:
5414     - Allow really slow clients to not hang up five minutes into their
5415       directory downloads (suggested by Adam J. Richter).
5416     - Fix major performance regression from 0.1.0.x: instead of checking
5417       whether we have enough directory information every time we want to
5418       do something, only check when the directory information has changed.
5419       This should improve client CPU usage by 25-50%.
5420     - Don't crash if, after a server has been running for a while,
5421       it can't resolve its hostname.
5423   o Minor bugfixes:
5424     - Allow Tor to start when RunAsDaemon is set but no logs are set.
5425     - Don't crash when the controller receives a third argument to an
5426       "extendcircuit" request.
5427     - Controller protocol fixes: fix encoding in "getinfo addr-mappings"
5428       response; fix error code when "getinfo dir/status/" fails.
5429     - Fix configure.in to not produce broken configure files with
5430       more recent versions of autoconf. Thanks to Clint for his auto*
5431       voodoo.
5432     - Fix security bug on NetBSD that could allow someone to force
5433       uninitialized RAM to be sent to a server's DNS resolver. This
5434       only affects NetBSD and other platforms that do not bounds-check
5435       tolower().
5436     - Warn user when using libevent 1.1a or earlier with win32 or kqueue
5437       methods: these are known to be buggy.
5438     - If we're a directory mirror and we ask for "all" network status
5439       documents, we would discard status documents from authorities
5440       we don't recognize.
5443 Changes in version 0.1.2.1-alpha - 2006-08-27
5444   o Major features:
5445     - Add "eventdns" async dns library from Adam Langley, tweaked to
5446       build on OSX and Windows. Only enabled if you pass the
5447       --enable-eventdns argument to configure.
5448     - Allow servers with no hostname or IP address to learn their
5449       IP address by asking the directory authorities. This code only
5450       kicks in when you would normally have exited with a "no address"
5451       error. Nothing's authenticated, so use with care.
5452     - Rather than waiting a fixed amount of time between retrying
5453       application connections, we wait only 5 seconds for the first,
5454       10 seconds for the second, and 15 seconds for each retry after
5455       that. Hopefully this will improve the expected user experience.
5456     - Patch from Tup to add support for transparent AP connections:
5457       this basically bundles the functionality of trans-proxy-tor
5458       into the Tor mainline. Now hosts with compliant pf/netfilter
5459       implementations can redirect TCP connections straight to Tor
5460       without diverting through SOCKS. Needs docs.
5461     - Busy directory servers save lots of memory by spooling server
5462       descriptors, v1 directories, and v2 networkstatus docs to buffers
5463       as needed rather than en masse. Also mmap the cached-routers
5464       files, so we don't need to keep the whole thing in memory too.
5465     - Automatically avoid picking more than one node from the same
5466       /16 network when constructing a circuit.
5467     - Revise and clean up the torrc.sample that we ship with; add
5468       a section for BandwidthRate and BandwidthBurst.
5470   o Minor features:
5471     - Split circuit_t into origin_circuit_t and or_circuit_t, and
5472       split connection_t into edge, or, dir, control, and base structs.
5473       These will save quite a bit of memory on busy servers, and they'll
5474       also help us track down bugs in the code and bugs in the spec.
5475     - Experimentally re-enable kqueue on OSX when using libevent 1.1b
5476       or later. Log when we are doing this, so we can diagnose it when
5477       it fails. (Also, recommend libevent 1.1b for kqueue and
5478       win32 methods; deprecate libevent 1.0b harder; make libevent
5479       recommendation system saner.)
5480     - Start being able to build universal binaries on OS X (thanks
5481       to Phobos).
5482     - Export the default exit policy via the control port, so controllers
5483       don't need to guess what it is / will be later.
5484     - Add a man page entry for ProtocolWarnings.
5485     - Add TestVia config option to the man page.
5486     - Remove even more protocol-related warnings from Tor server logs,
5487       such as bad TLS handshakes and malformed begin cells.
5488     - Stop fetching descriptors if you're not a dir mirror and you
5489       haven't tried to establish any circuits lately. [This currently
5490       causes some dangerous behavior, because when you start up again
5491       you'll use your ancient server descriptors.]
5492     - New DirPort behavior: if you have your dirport set, you download
5493       descriptors aggressively like a directory mirror, whether or not
5494       your ORPort is set.
5495     - Get rid of the router_retry_connections notion. Now routers
5496       no longer try to rebuild long-term connections to directory
5497       authorities, and directory authorities no longer try to rebuild
5498       long-term connections to all servers. We still don't hang up
5499       connections in these two cases though -- we need to look at it
5500       more carefully to avoid flapping, and we likely need to wait til
5501       0.1.1.x is obsolete.
5502     - Drop compatibility with obsolete Tors that permit create cells
5503       to have the wrong circ_id_type.
5504     - Re-enable per-connection rate limiting. Get rid of the "OP
5505       bandwidth" concept. Lay groundwork for "bandwidth classes" --
5506       separate global buckets that apply depending on what sort of conn
5507       it is.
5508     - Start publishing one minute or so after we find our ORPort
5509       to be reachable. This will help reduce the number of descriptors
5510       we have for ourselves floating around, since it's quite likely
5511       other things (e.g. DirPort) will change during that minute too.
5512     - Fork the v1 directory protocol into its own spec document,
5513       and mark dir-spec.txt as the currently correct (v2) spec.
5515   o Major bugfixes:
5516     - When we find our DirPort to be reachable, publish a new descriptor
5517       so we'll tell the world (reported by pnx).
5518     - Publish a new descriptor after we hup/reload. This is important
5519       if our config has changed such that we'll want to start advertising
5520       our DirPort now, etc.
5521     - Allow Tor to start when RunAsDaemon is set but no logs are set.
5522     - When we have a state file we cannot parse, tell the user and
5523       move it aside. Now we avoid situations where the user starts
5524       Tor in 1904, Tor writes a state file with that timestamp in it,
5525       the user fixes her clock, and Tor refuses to start.
5526     - Fix configure.in to not produce broken configure files with
5527       more recent versions of autoconf. Thanks to Clint for his auto*
5528       voodoo.
5529     - "tor --verify-config" now exits with -1(255) or 0 depending on
5530       whether the config options are bad or good.
5531     - Resolve bug 321 when using dnsworkers: append a period to every
5532       address we resolve at the exit node, so that we do not accidentally
5533       pick up local addresses, and so that failing searches are retried
5534       in the resolver search domains. (This is already solved for
5535       eventdns.) (This breaks Blossom servers for now.)
5536     - If we are using an exit enclave and we can't connect, e.g. because
5537       its webserver is misconfigured to not listen on localhost, then
5538       back off and try connecting from somewhere else before we fail.
5540   o Minor bugfixes:
5541     - Start compiling on MinGW on Windows (patches from Mike Chiussi).
5542     - Start compiling on MSVC6 on Windows (patches from Frediano Ziglio).
5543     - Fix bug 314: Tor clients issued "unsafe socks" warnings even
5544       when the IP address is mapped through MapAddress to a hostname.
5545     - Start passing "ipv4" hints to getaddrinfo(), so servers don't do
5546       useless IPv6 DNS resolves.
5547     - Patch suggested by Karsten Loesing: respond to SIGNAL command
5548       before we execute the signal, in case the signal shuts us down.
5549     - Clean up AllowInvalidNodes man page entry.
5550     - Claim a commonname of Tor, rather than TOR, in TLS handshakes.
5551     - Add more asserts to track down an assert error on a windows Tor
5552       server with connection_add being called with socket == -1.
5553     - Handle reporting OR_CONN_EVENT_NEW events to the controller.
5554     - Fix misleading log messages: an entry guard that is "unlisted",
5555       as well as not known to be "down" (because we've never heard
5556       of it), is not therefore "up".
5557     - Remove code to special-case "-cvs" ending, since it has not
5558       actually mattered since 0.0.9.
5559     - Make our socks5 handling more robust to broken socks clients:
5560       throw out everything waiting on the buffer in between socks
5561       handshake phases, since they can't possibly (so the theory
5562       goes) have predicted what we plan to respond to them.
5565 Changes in version 0.1.1.23 - 2006-07-30
5566   o Major bugfixes:
5567     - Fast Tor servers, especially exit nodes, were triggering asserts
5568       due to a bug in handling the list of pending DNS resolves. Some
5569       bugs still remain here; we're hunting them.
5570     - Entry guards could crash clients by sending unexpected input.
5571     - More fixes on reachability testing: if you find yourself reachable,
5572       then don't ever make any client requests (so you stop predicting
5573       circuits), then hup or have your clock jump, then later your IP
5574       changes, you won't think circuits are working, so you won't try to
5575       test reachability, so you won't publish.
5577   o Minor bugfixes:
5578     - Avoid a crash if the controller does a resetconf firewallports
5579       and then a setconf fascistfirewall=1.
5580     - Avoid an integer underflow when the dir authority decides whether
5581       a router is stable: we might wrongly label it stable, and compute
5582       a slightly wrong median stability, when a descriptor is published
5583       later than now.
5584     - Fix a place where we might trigger an assert if we can't build our
5585       own server descriptor yet.
5588 Changes in version 0.1.1.22 - 2006-07-05
5589   o Major bugfixes:
5590     - Fix a big bug that was causing servers to not find themselves
5591       reachable if they changed IP addresses. Since only 0.1.1.22+
5592       servers can do reachability testing correctly, now we automatically
5593       make sure to test via one of these.
5594     - Fix to allow clients and mirrors to learn directory info from
5595       descriptor downloads that get cut off partway through.
5596     - Directory authorities had a bug in deciding if a newly published
5597       descriptor was novel enough to make everybody want a copy -- a few
5598       servers seem to be publishing new descriptors many times a minute.
5599   o Minor bugfixes:
5600     - Fix a rare bug that was causing some servers to complain about
5601       "closing wedged cpuworkers" and skip some circuit create requests.
5602     - Make the Exit flag in directory status documents actually work.
5605 Changes in version 0.1.1.21 - 2006-06-10
5606   o Crash and assert fixes from 0.1.1.20:
5607     - Fix a rare crash on Tor servers that have enabled hibernation.
5608     - Fix a seg fault on startup for Tor networks that use only one
5609       directory authority.
5610     - Fix an assert from a race condition that occurs on Tor servers
5611       while exiting, where various threads are trying to log that they're
5612       exiting, and delete the logs, at the same time.
5613     - Make our unit tests pass again on certain obscure platforms.
5615   o Other fixes:
5616     - Add support for building SUSE RPM packages.
5617     - Speed up initial bootstrapping for clients: if we are making our
5618       first ever connection to any entry guard, then don't mark it down
5619       right after that.
5620     - When only one Tor server in the network is labelled as a guard,
5621       and we've already picked him, we would cycle endlessly picking him
5622       again, being unhappy about it, etc. Now we specifically exclude
5623       current guards when picking a new guard.
5624     - Servers send create cells more reliably after the TLS connection
5625       is established: we were sometimes forgetting to send half of them
5626       when we had more than one pending.
5627     - If we get a create cell that asks us to extend somewhere, but the
5628       Tor server there doesn't match the expected digest, we now send
5629       a destroy cell back, rather than silently doing nothing.
5630     - Make options->RedirectExit work again.
5631     - Make cookie authentication for the controller work again.
5632     - Stop being picky about unusual characters in the arguments to
5633       mapaddress. It's none of our business.
5634     - Add a new config option "TestVia" that lets you specify preferred
5635       middle hops to use for test circuits. Perhaps this will let me
5636       debug the reachability problems better.
5638   o Log / documentation fixes:
5639     - If we're a server and some peer has a broken TLS certificate, don't
5640       log about it unless ProtocolWarnings is set, i.e., we want to hear
5641       about protocol violations by others.
5642     - Fix spelling of VirtualAddrNetwork in man page.
5643     - Add a better explanation at the top of the autogenerated torrc file
5644       about what happened to our old torrc.
5647 Changes in version 0.1.1.20 - 2006-05-23
5648   o Bugfixes:
5649     - Downgrade a log severity where servers complain that they're
5650       invalid.
5651     - Avoid a compile warning on FreeBSD.
5652     - Remove string size limit on NEWDESC messages; solve bug 291.
5653     - Correct the RunAsDaemon entry in the man page; ignore RunAsDaemon
5654       more thoroughly when we're running on windows.
5657 Changes in version 0.1.1.19-rc - 2006-05-03
5658   o Minor bugs:
5659     - Regenerate our local descriptor if it's dirty and we try to use
5660       it locally (e.g. if it changes during reachability detection).
5661     - If we setconf our ORPort to 0, we continued to listen on the
5662       old ORPort and receive connections.
5663     - Avoid a second warning about machine/limits.h on Debian
5664       GNU/kFreeBSD.
5665     - Be willing to add our own routerinfo into the routerlist.
5666       Now authorities will include themselves in their directories
5667       and network-statuses.
5668     - Stop trying to upload rendezvous descriptors to every
5669       directory authority: only try the v1 authorities.
5670     - Servers no longer complain when they think they're not
5671       registered with the directory authorities. There were too many
5672       false positives.
5673     - Backport dist-rpm changes so rpms can be built without errors.
5675   o Features:
5676     - Implement an option, VirtualAddrMask, to set which addresses
5677       get handed out in response to mapaddress requests. This works
5678       around a bug in tsocks where 127.0.0.0/8 is never socksified.
5681 Changes in version 0.1.1.18-rc - 2006-04-10
5682   o Major fixes:
5683     - Work harder to download live network-statuses from all the
5684       directory authorities we know about. Improve the threshold
5685       decision logic so we're more robust to edge cases.
5686     - When fetching rendezvous descriptors, we were willing to ask
5687       v2 authorities too, which would always return 404.
5689   o Minor fixes:
5690     - Stop listing down or invalid nodes in the v1 directory. This will
5691       reduce its bulk by about 1/3, and reduce load on directory
5692       mirrors.
5693     - When deciding whether a router is Fast or Guard-worthy, consider
5694       his advertised BandwidthRate and not just the BandwidthCapacity.
5695     - No longer ship INSTALL and README files -- they are useless now.
5696     - Force rpmbuild to behave and honor target_cpu.
5697     - Avoid warnings about machine/limits.h on Debian GNU/kFreeBSD.
5698     - Start to include translated versions of the tor-doc-*.html
5699       files, along with the screenshots. Still needs more work.
5700     - Start sending back 512 and 451 errors if mapaddress fails,
5701       rather than not sending anything back at all.
5702     - When we fail to bind or listen on an incoming or outgoing
5703       socket, we should close it before failing. otherwise we just
5704       leak it. (thanks to weasel for finding.)
5705     - Allow "getinfo dir/status/foo" to work, as long as your DirPort
5706       is enabled. (This is a hack, and will be fixed in 0.1.2.x.)
5707     - Make NoPublish (even though deprecated) work again.
5708     - Fix a minor security flaw where a versioning auth dirserver
5709       could list a recommended version many times in a row to make
5710       clients more convinced that it's recommended.
5711     - Fix crash bug if there are two unregistered servers running
5712       with the same nickname, one of them is down, and you ask for
5713       them by nickname in your EntryNodes or ExitNodes. Also, try
5714       to pick the one that's running rather than an arbitrary one.
5715     - Fix an infinite loop we could hit if we go offline for too long.
5716     - Complain when we hit WSAENOBUFS on recv() or write() too.
5717       Perhaps this will help us hunt the bug.
5718     - If you're not a versioning dirserver, don't put the string
5719       "client-versions \nserver-versions \n" in your network-status.
5720     - Lower the minimum required number of file descriptors to 1000,
5721       so we can have some overhead for Valgrind on Linux, where the
5722       default ulimit -n is 1024.
5724   o New features:
5725     - Add tor.dizum.com as the fifth authoritative directory server.
5726     - Add a new config option FetchUselessDescriptors, off by default,
5727       for when you plan to run "exitlist" on your client and you want
5728       to know about even the non-running descriptors.
5731 Changes in version 0.1.1.17-rc - 2006-03-28
5732   o Major fixes:
5733     - Clients and servers since 0.1.1.10-alpha have been expiring
5734       connections whenever they are idle for 5 minutes and they *do*
5735       have circuits on them. Oops. With this new version, clients will
5736       discard their previous entry guard choices and avoid choosing
5737       entry guards running these flawed versions.
5738     - Fix memory leak when uncompressing concatenated zlib streams. This
5739       was causing substantial leaks over time on Tor servers.
5740     - The v1 directory was including servers as much as 48 hours old,
5741       because that's how the new routerlist->routers works. Now only
5742       include them if they're 20 hours old or less.
5744   o Minor fixes:
5745     - Resume building on irix64, netbsd 2.0, etc.
5746     - On non-gcc compilers (e.g. solaris), use "-g -O" instead of
5747       "-Wall -g -O2".
5748     - Stop writing the "router.desc" file, ever. Nothing uses it anymore,
5749       and it is confusing some users.
5750     - Mirrors stop caching the v1 directory so often.
5751     - Make the max number of old descriptors that a cache will hold
5752       rise with the number of directory authorities, so we can scale.
5753     - Change our win32 uname() hack to be more forgiving about what
5754       win32 versions it thinks it's found.
5756   o New features:
5757     - Add lefkada.eecs.harvard.edu as a fourth authoritative directory
5758       server.
5759     - When the controller's *setconf commands fail, collect an error
5760       message in a string and hand it back to the controller.
5761     - Make the v2 dir's "Fast" flag based on relative capacity, just
5762       like "Stable" is based on median uptime. Name everything in the
5763       top 7/8 Fast, and only the top 1/2 gets to be a Guard.
5764     - Log server fingerprint on startup, so new server operators don't
5765       have to go hunting around their filesystem for it.
5766     - Return a robots.txt on our dirport to discourage google indexing.
5767     - Let the controller ask for GETINFO dir/status/foo so it can ask
5768       directly rather than connecting to the dir port. Only works when
5769       dirport is set for now.
5771   o New config options rather than constants in the code:
5772     - SocksTimeout: How long do we let a socks connection wait
5773       unattached before we fail it?
5774     - CircuitBuildTimeout: Cull non-open circuits that were born
5775       at least this many seconds ago.
5776     - CircuitIdleTimeout: Cull open clean circuits that were born
5777       at least this many seconds ago.
5780 Changes in version 0.1.1.16-rc - 2006-03-18
5781   o Bugfixes on 0.1.1.15-rc:
5782     - Fix assert when the controller asks to attachstream a connect-wait
5783       or resolve-wait stream.
5784     - Now do address rewriting when the controller asks us to attach
5785       to a particular circuit too. This will let Blossom specify
5786       "moria2.exit" without having to learn what moria2's IP address is.
5787     - Make the "tor --verify-config" command-line work again, so people
5788       can automatically check if their torrc will parse.
5789     - Authoritative dirservers no longer require an open connection from
5790       a server to consider him "reachable". We need this change because
5791       when we add new auth dirservers, old servers won't know not to
5792       hang up on them.
5793     - Let Tor build on Sun CC again.
5794     - Fix an off-by-one buffer size in dirserv.c that magically never
5795       hit our three authorities but broke sjmurdoch's own tor network.
5796     - If we as a directory mirror don't know of any v1 directory
5797       authorities, then don't try to cache any v1 directories.
5798     - Stop warning about unknown servers in our family when they are
5799       given as hex digests.
5800     - Stop complaining as quickly to the server operator that he
5801       hasn't registered his nickname/key binding.
5802     - Various cleanups so we can add new V2 Auth Dirservers.
5803     - Change "AllowUnverifiedNodes" to "AllowInvalidNodes", to
5804       reflect the updated flags in our v2 dir protocol.
5805     - Resume allowing non-printable characters for exit streams (both
5806       for connecting and for resolving). Now we tolerate applications
5807       that don't follow the RFCs. But continue to block malformed names
5808       at the socks side.
5810   o Bugfixes on 0.1.0.x:
5811     - Fix assert bug in close_logs(): when we close and delete logs,
5812       remove them all from the global "logfiles" list.
5813     - Fix minor integer overflow in calculating when we expect to use up
5814       our bandwidth allocation before hibernating.
5815     - Fix a couple of bugs in OpenSSL detection. Also, deal better when
5816       there are multiple SSLs installed with different versions.
5817     - When we try to be a server and Address is not explicitly set and
5818       our hostname resolves to a private IP address, try to use an
5819       interface address if it has a public address. Now Windows machines
5820       that think of themselves as localhost can work by default.
5822   o New features:
5823     - Let the controller ask for GETINFO dir/server/foo so it can ask
5824       directly rather than connecting to the dir port.
5825     - Let the controller tell us about certain router descriptors
5826       that it doesn't want Tor to use in circuits. Implement
5827       SETROUTERPURPOSE and modify +POSTDESCRIPTOR to do this.
5828     - New config option SafeSocks to reject all application connections
5829       using unsafe socks protocols. Defaults to off.
5832 Changes in version 0.1.1.15-rc - 2006-03-11
5833   o Bugfixes and cleanups:
5834     - When we're printing strings from the network, don't try to print
5835       non-printable characters. This protects us against shell escape
5836       sequence exploits, and also against attacks to fool humans into
5837       misreading their logs.
5838     - Fix a bug where Tor would fail to establish any connections if you
5839       left it off for 24 hours and then started it: we were happy with
5840       the obsolete network statuses, but they all referred to router
5841       descriptors that were too old to fetch, so we ended up with no
5842       valid router descriptors.
5843     - Fix a seg fault in the controller's "getinfo orconn-status"
5844       command while listing status on incoming handshaking connections.
5845       Introduce a status name "NEW" for these connections.
5846     - If we get a linelist or linelist_s config option from the torrc
5847       (e.g. ExitPolicy) and it has no value, warn and skip rather than
5848       silently resetting it to its default.
5849     - Don't abandon entry guards until they've been down or gone for
5850       a whole month.
5851     - Cleaner and quieter log messages.
5853   o New features:
5854     - New controller signal NEWNYM that makes new application requests
5855       use clean circuits.
5856     - Add a new circuit purpose 'controller' to let the controller ask
5857       for a circuit that Tor won't try to use. Extend the EXTENDCIRCUIT
5858       controller command to let you specify the purpose if you're
5859       starting a new circuit.  Add a new SETCIRCUITPURPOSE controller
5860       command to let you change a circuit's purpose after it's been
5861       created.
5862     - Accept "private:*" in routerdesc exit policies; not generated yet
5863       because older Tors do not understand it.
5864     - Add BSD-style contributed startup script "rc.subr" from Peter
5865       Thoenen.
5868 Changes in version 0.1.1.14-alpha - 2006-02-20
5869   o Bugfixes on 0.1.1.x:
5870     - Don't die if we ask for a stdout or stderr log (even implicitly)
5871       and we're set to RunAsDaemon -- just warn.
5872     - We still had a few bugs in the OR connection rotation code that
5873       caused directory servers to slowly aggregate connections to other
5874       fast Tor servers. This time for sure!
5875     - Make log entries on Win32 include the name of the function again.
5876     - We were treating a pair of exit policies if they were equal even
5877       if one said accept and the other said reject -- causing us to
5878       not always publish a new descriptor since we thought nothing
5879       had changed.
5880     - Retry pending server downloads as well as pending networkstatus
5881       downloads when we unexpectedly get a socks request.
5882     - We were ignoring the IS_FAST flag in the directory status,
5883       meaning we were willing to pick trivial-bandwidth nodes for "fast"
5884       connections.
5885     - If the controller's SAVECONF command fails (e.g. due to file
5886       permissions), let the controller know that it failed.
5888   o Features:
5889     - If we're trying to be a Tor server and running Windows 95/98/ME
5890       as a server, explain that we'll likely crash.
5891     - When we're a server, a client asks for an old-style directory,
5892       and our write bucket is empty, don't give it to him. This way
5893       small servers can continue to serve the directory *sometimes*,
5894       without getting overloaded.
5895     - Compress exit policies even more -- look for duplicate lines
5896       and remove them.
5897     - Clients now honor the "guard" flag in the router status when
5898       picking entry guards, rather than looking at is_fast or is_stable.
5899     - Retain unrecognized lines in $DATADIR/state file, so that we can
5900       be forward-compatible.
5901     - Generate 18.0.0.0/8 address policy format in descs when we can;
5902       warn when the mask is not reducible to a bit-prefix.
5903     - Let the user set ControlListenAddress in the torrc.  This can be
5904       dangerous, but there are some cases (like a secured LAN) where it
5905       makes sense.
5906     - Split ReachableAddresses into ReachableDirAddresses and
5907       ReachableORAddresses, so we can restrict Dir conns to port 80
5908       and OR conns to port 443.
5909     - Now we can target arch and OS in rpm builds (contributed by
5910       Phobos). Also make the resulting dist-rpm filename match the
5911       target arch.
5912     - New config options to help controllers: FetchServerDescriptors
5913       and FetchHidServDescriptors for whether to fetch server
5914       info and hidserv info or let the controller do it, and
5915       PublishServerDescriptor and PublishHidServDescriptors.
5916     - Also let the controller set the __AllDirActionsPrivate config
5917       option if you want all directory fetches/publishes to happen via
5918       Tor (it assumes your controller bootstraps your circuits).
5921 Changes in version 0.1.0.17 - 2006-02-17
5922   o Crash bugfixes on 0.1.0.x:
5923     - When servers with a non-zero DirPort came out of hibernation,
5924       sometimes they would trigger an assert.
5926   o Other important bugfixes:
5927     - On platforms that don't have getrlimit (like Windows), we were
5928       artificially constraining ourselves to a max of 1024
5929       connections. Now just assume that we can handle as many as 15000
5930       connections. Hopefully this won't cause other problems.
5932   o Backported features:
5933     - When we're a server, a client asks for an old-style directory,
5934       and our write bucket is empty, don't give it to him. This way
5935       small servers can continue to serve the directory *sometimes*,
5936       without getting overloaded.
5937     - Whenever you get a 503 in response to a directory fetch, try
5938       once more. This will become important once servers start sending
5939       503's whenever they feel busy.
5940     - Fetch a new directory every 120 minutes, not every 40 minutes.
5941       Now that we have hundreds of thousands of users running the old
5942       directory algorithm, it's starting to hurt a lot.
5943     - Bump up the period for forcing a hidden service descriptor upload
5944       from 20 minutes to 1 hour.
5947 Changes in version 0.1.1.13-alpha - 2006-02-09
5948   o Crashes in 0.1.1.x:
5949     - When you tried to setconf ORPort via the controller, Tor would
5950       crash. So people using TorCP to become a server were sad.
5951     - Solve (I hope) the stack-smashing bug that we were seeing on fast
5952       servers. The problem appears to be something do with OpenSSL's
5953       random number generation, or how we call it, or something. Let me
5954       know if the crashes continue.
5955     - Turn crypto hardware acceleration off by default, until we find
5956       somebody smart who can test it for us. (It appears to produce
5957       seg faults in at least some cases.)
5958     - Fix a rare assert error when we've tried all intro points for
5959       a hidden service and we try fetching the service descriptor again:
5960       "Assertion conn->state != AP_CONN_STATE_RENDDESC_WAIT failed"
5962   o Major fixes:
5963     - Fix a major load balance bug: we were round-robining in 16 KB
5964       chunks, and servers with bandwidthrate of 20 KB, while downloading
5965       a 600 KB directory, would starve their other connections. Now we
5966       try to be a bit more fair.
5967     - Dir authorities and mirrors were never expiring the newest
5968       descriptor for each server, causing memory and directory bloat.
5969     - Fix memory-bloating and connection-bloating bug on servers: We
5970       were never closing any connection that had ever had a circuit on
5971       it, because we were checking conn->n_circuits == 0, yet we had a
5972       bug that let it go negative.
5973     - Make Tor work using squid as your http proxy again -- squid
5974       returns an error if you ask for a URL that's too long, and it uses
5975       a really generic error message. Plus, many people are behind a
5976       transparent squid so they don't even realize it.
5977     - On platforms that don't have getrlimit (like Windows), we were
5978       artificially constraining ourselves to a max of 1024
5979       connections. Now just assume that we can handle as many as 15000
5980       connections. Hopefully this won't cause other problems.
5981     - Add a new config option ExitPolicyRejectPrivate which defaults to
5982       1. This means all exit policies will begin with rejecting private
5983       addresses, unless the server operator explicitly turns it off.
5985   o Major features:
5986     - Clients no longer download descriptors for non-running
5987       descriptors.
5988     - Before we add new directory authorities, we should make it
5989       clear that only v1 authorities should receive/publish hidden
5990       service descriptors.
5992   o Minor features:
5993     - As soon as we've fetched some more directory info, immediately
5994       try to download more server descriptors. This way we don't have
5995       a 10 second pause during initial bootstrapping.
5996     - Remove even more loud log messages that the server operator can't
5997       do anything about.
5998     - When we're running an obsolete or un-recommended version, make
5999       the log message more clear about what the problem is and what
6000       versions *are* still recommended.
6001     - Provide a more useful warn message when our onion queue gets full:
6002       the CPU is too slow or the exit policy is too liberal.
6003     - Don't warn when we receive a 503 from a dirserver/cache -- this
6004       will pave the way for them being able to refuse if they're busy.
6005     - When we fail to bind a listener, try to provide a more useful
6006       log message: e.g., "Is Tor already running?"
6007     - Adjust tor-spec to parameterize cell and key lengths. Now Ian
6008       Goldberg can prove things about our handshake protocol more
6009       easily.
6010     - MaxConn has been obsolete for a while now. Document the ConnLimit
6011       config option, which is a *minimum* number of file descriptors
6012       that must be available else Tor refuses to start.
6013     - Apply Matt Ghali's --with-syslog-facility patch to ./configure
6014       if you log to syslog and want something other than LOG_DAEMON.
6015     - Make dirservers generate a separate "guard" flag to mean,
6016       "would make a good entry guard". Make clients parse it and vote
6017       on it. Not used by clients yet.
6018     - Implement --with-libevent-dir option to ./configure. Also, improve
6019       search techniques to find libevent, and use those for openssl too.
6020     - Bump the default bandwidthrate to 3 MB, and burst to 6 MB
6021     - Only start testing reachability once we've established a
6022       circuit. This will make startup on dirservers less noisy.
6023     - Don't try to upload hidden service descriptors until we have
6024       established a circuit.
6025     - Fix the controller's "attachstream 0" command to treat conn like
6026       it just connected, doing address remapping, handling .exit and
6027       .onion idioms, and so on. Now we're more uniform in making sure
6028       that the controller hears about new and closing connections.
6031 Changes in version 0.1.1.12-alpha - 2006-01-11
6032   o Bugfixes on 0.1.1.x:
6033     - The fix to close duplicate server connections was closing all
6034       Tor client connections if they didn't establish a circuit
6035       quickly enough. Oops.
6036     - Fix minor memory issue (double-free) that happened on exit.
6038   o Bugfixes on 0.1.0.x:
6039     - Tor didn't warn when it failed to open a log file.
6042 Changes in version 0.1.1.11-alpha - 2006-01-10
6043   o Crashes in 0.1.1.x:
6044     - Include all the assert/crash fixes from 0.1.0.16.
6045     - If you start Tor and then quit very quickly, there were some
6046       races that tried to free things that weren't allocated yet.
6047     - Fix a rare memory stomp if you're running hidden services.
6048     - Fix segfault when specifying DirServer in config without nickname.
6049     - Fix a seg fault when you finish connecting to a server but at
6050       that moment you dump his server descriptor.
6051     - Extendcircuit and Attachstream controller commands would
6052       assert/crash if you don't give them enough arguments.
6053     - Fix an assert error when we're out of space in the connection_list
6054       and we try to post a hidden service descriptor (reported by weasel).
6055     - If you specify a relative torrc path and you set RunAsDaemon in
6056       your torrc, then it chdir()'s to the new directory. If you HUP,
6057       it tries to load the new torrc location, fails, and exits.
6058       The fix: no longer allow a relative path to torrc using -f.
6060   o Major features:
6061     - Implement "entry guards": automatically choose a handful of entry
6062       nodes and stick with them for all circuits. Only pick new guards
6063       when the ones you have are unsuitable, and if the old guards
6064       become suitable again, switch back. This will increase security
6065       dramatically against certain end-point attacks. The EntryNodes
6066       config option now provides some hints about which entry guards you
6067       want to use most; and StrictEntryNodes means to only use those.
6068     - New directory logic: download by descriptor digest, not by
6069       fingerprint. Caches try to download all listed digests from
6070       authorities; clients try to download "best" digests from caches.
6071       This avoids partitioning and isolating attacks better.
6072     - Make the "stable" router flag in network-status be the median of
6073       the uptimes of running valid servers, and make clients pay
6074       attention to the network-status flags. Thus the cutoff adapts
6075       to the stability of the network as a whole, making IRC, IM, etc
6076       connections more reliable.
6078   o Major fixes:
6079     - Tor servers with dynamic IP addresses were needing to wait 18
6080       hours before they could start doing reachability testing using
6081       the new IP address and ports. This is because they were using
6082       the internal descriptor to learn what to test, yet they were only
6083       rebuilding the descriptor once they decided they were reachable.
6084     - Tor 0.1.1.9 and 0.1.1.10 had a serious bug that caused clients
6085       to download certain server descriptors, throw them away, and then
6086       fetch them again after 30 minutes. Now mirrors throw away these
6087       server descriptors so clients can't get them.
6088     - We were leaving duplicate connections to other ORs open for a week,
6089       rather than closing them once we detect a duplicate. This only
6090       really affected authdirservers, but it affected them a lot.
6091     - Spread the authdirservers' reachability testing over the entire
6092       testing interval, so we don't try to do 500 TLS's at once every
6093       20 minutes.
6095   o Minor fixes:
6096     - If the network is down, and we try to connect to a conn because
6097       we have a circuit in mind, and we timeout (30 seconds) because the
6098       network never answers, we were expiring the circuit, but we weren't
6099       obsoleting the connection or telling the entry_guards functions.
6100     - Some Tor servers process billions of cells per day. These statistics
6101       need to be uint64_t's.
6102     - Check for integer overflows in more places, when adding elements
6103       to smartlists. This could possibly prevent a buffer overflow
6104       on malicious huge inputs. I don't see any, but I haven't looked
6105       carefully.
6106     - ReachableAddresses kept growing new "reject *:*" lines on every
6107       setconf/reload.
6108     - When you "setconf log" via the controller, it should remove all
6109       logs. We were automatically adding back in a "log notice stdout".
6110     - Newly bootstrapped Tor networks couldn't establish hidden service
6111       circuits until they had nodes with high uptime. Be more tolerant.
6112     - We were marking servers down when they could not answer every piece
6113       of the directory request we sent them. This was far too harsh.
6114     - Fix the torify (tsocks) config file to not use Tor for localhost
6115       connections.
6116     - Directory authorities now go to the proper authority when asking for
6117       a networkstatus, even when they want a compressed one.
6118     - Fix a harmless bug that was causing Tor servers to log
6119       "Got an end because of misc error, but we're not an AP. Closing."
6120     - Authorities were treating their own descriptor changes as cosmetic,
6121       meaning the descriptor available in the network-status and the
6122       descriptor that clients downloaded were different.
6123     - The OS X installer was adding a symlink for tor_resolve but
6124       the binary was called tor-resolve (reported by Thomas Hardly).
6125     - Workaround a problem with some http proxies where they refuse GET
6126       requests that specify "Content-Length: 0" (reported by Adrian).
6127     - Fix wrong log message when you add a "HiddenServiceNodes" config
6128       line without any HiddenServiceDir line (reported by Chris Thomas).
6130   o Minor features:
6131     - Write the TorVersion into the state file so we have a prayer of
6132       keeping forward and backward compatibility.
6133     - Revive the FascistFirewall config option rather than eliminating it:
6134       now it's a synonym for ReachableAddresses *:80,*:443.
6135     - Clients choose directory servers from the network status lists,
6136       not from their internal list of router descriptors. Now they can
6137       go to caches directly rather than needing to go to authorities
6138       to bootstrap.
6139     - Directory authorities ignore router descriptors that have only
6140       cosmetic differences: do this for 0.1.0.x servers now too.
6141     - Add a new flag to network-status indicating whether the server
6142       can answer v2 directory requests too.
6143     - Authdirs now stop whining so loudly about bad descriptors that
6144       they fetch from other dirservers. So when there's a log complaint,
6145       it's for sure from a freshly uploaded descriptor.
6146     - Reduce memory requirements in our structs by changing the order
6147       of fields.
6148     - There used to be two ways to specify your listening ports in a
6149       server descriptor: on the "router" line and with a separate "ports"
6150       line. Remove support for the "ports" line.
6151     - New config option "AuthDirRejectUnlisted" for auth dirservers as
6152       a panic button: if we get flooded with unusable servers we can
6153       revert to only listing servers in the approved-routers file.
6154     - Auth dir servers can now mark a fingerprint as "!reject" or
6155       "!invalid" in the approved-routers file (as its nickname), to
6156       refuse descriptors outright or include them but marked as invalid.
6157     - Servers store bandwidth history across restarts/crashes.
6158     - Add reasons to DESTROY and RELAY_TRUNCATED cells, so clients can
6159       get a better idea of why their circuits failed. Not used yet.
6160     - Directory mirrors now cache up to 16 unrecognized network-status
6161       docs. Now we can add new authdirservers and they'll be cached too.
6162     - When picking a random directory, prefer non-authorities if any
6163       are known.
6164     - New controller option "getinfo desc/all-recent" to fetch the
6165       latest server descriptor for every router that Tor knows about.
6168 Changes in version 0.1.0.16 - 2006-01-02
6169   o Crash bugfixes on 0.1.0.x:
6170     - On Windows, build with a libevent patch from "I-M Weasel" to avoid
6171       corrupting the heap, losing FDs, or crashing when we need to resize
6172       the fd_sets. (This affects the Win32 binaries, not Tor's sources.)
6173     - It turns out sparc64 platforms crash on unaligned memory access
6174       too -- so detect and avoid this.
6175     - Handle truncated compressed data correctly (by detecting it and
6176       giving an error).
6177     - Fix possible-but-unlikely free(NULL) in control.c.
6178     - When we were closing connections, there was a rare case that
6179       stomped on memory, triggering seg faults and asserts.
6180     - Avoid potential infinite recursion when building a descriptor. (We
6181       don't know that it ever happened, but better to fix it anyway.)
6182     - We were neglecting to unlink marked circuits from soon-to-close OR
6183       connections, which caused some rare scribbling on freed memory.
6184     - Fix a memory stomping race bug when closing the joining point of two
6185       rendezvous circuits.
6186     - Fix an assert in time parsing found by Steven Murdoch.
6188   o Other bugfixes on 0.1.0.x:
6189     - When we're doing reachability testing, provide more useful log
6190       messages so the operator knows what to expect.
6191     - Do not check whether DirPort is reachable when we are suppressing
6192       advertising it because of hibernation.
6193     - When building with -static or on Solaris, we sometimes needed -ldl.
6194     - When we're deciding whether a stream has enough circuits around
6195       that can handle it, count the freshly dirty ones and not the ones
6196       that are so dirty they won't be able to handle it.
6197     - When we're expiring old circuits, we had a logic error that caused
6198       us to close new rendezvous circuits rather than old ones.
6199     - Give a more helpful log message when you try to change ORPort via
6200       the controller: you should upgrade Tor if you want that to work.
6201     - We were failing to parse Tor versions that start with "Tor ".
6202     - Tolerate faulty streams better: when a stream fails for reason
6203       exitpolicy, stop assuming that the router is lying about his exit
6204       policy. When a stream fails for reason misc, allow it to retry just
6205       as if it was resolvefailed. When a stream has failed three times,
6206       reset its failure count so we can try again and get all three tries.
6209 Changes in version 0.1.1.10-alpha - 2005-12-11
6210   o Correctness bugfixes on 0.1.0.x:
6211     - On Windows, build with a libevent patch from "I-M Weasel" to avoid
6212       corrupting the heap, losing FDs, or crashing when we need to resize
6213       the fd_sets. (This affects the Win32 binaries, not Tor's sources.)
6214     - Stop doing the complex voodoo overkill checking for insecure
6215       Diffie-Hellman keys. Just check if it's in [2,p-2] and be happy.
6216     - When we were closing connections, there was a rare case that
6217       stomped on memory, triggering seg faults and asserts.
6218     - We were neglecting to unlink marked circuits from soon-to-close OR
6219       connections, which caused some rare scribbling on freed memory.
6220     - When we're deciding whether a stream has enough circuits around
6221       that can handle it, count the freshly dirty ones and not the ones
6222       that are so dirty they won't be able to handle it.
6223     - Recover better from TCP connections to Tor servers that are
6224       broken but don't tell you (it happens!); and rotate TLS
6225       connections once a week.
6226     - When we're expiring old circuits, we had a logic error that caused
6227       us to close new rendezvous circuits rather than old ones.
6228     - Fix a scary-looking but apparently harmless bug where circuits
6229       would sometimes start out in state CIRCUIT_STATE_OR_WAIT at
6230       servers, and never switch to state CIRCUIT_STATE_OPEN.
6231     - When building with -static or on Solaris, we sometimes needed to
6232       build with -ldl.
6233     - Give a useful message when people run Tor as the wrong user,
6234       rather than telling them to start chowning random directories.
6235     - We were failing to inform the controller about new .onion streams.
6237   o Security bugfixes on 0.1.0.x:
6238     - Refuse server descriptors if the fingerprint line doesn't match
6239       the included identity key. Tor doesn't care, but other apps (and
6240       humans) might actually be trusting the fingerprint line.
6241     - We used to kill the circuit when we receive a relay command we
6242       don't recognize. Now we just drop it.
6243     - Start obeying our firewall options more rigorously:
6244       . If we can't get to a dirserver directly, try going via Tor.
6245       . Don't ever try to connect (as a client) to a place our
6246         firewall options forbid.
6247       . If we specify a proxy and also firewall options, obey the
6248         firewall options even when we're using the proxy: some proxies
6249         can only proxy to certain destinations.
6250     - Fix a bug found by Lasse Overlier: when we were making internal
6251       circuits (intended to be cannibalized later for rendezvous and
6252       introduction circuits), we were picking them so that they had
6253       useful exit nodes. There was no need for this, and it actually
6254       aids some statistical attacks.
6255     - Start treating internal circuits and exit circuits separately.
6256       It's important to keep them separate because internal circuits
6257       have their last hops picked like middle hops, rather than like
6258       exit hops. So exiting on them will break the user's expectations.
6260   o Bugfixes on 0.1.1.x:
6261     - Take out the mis-feature where we tried to detect IP address
6262       flapping for people with DynDNS, and chose not to upload a new
6263       server descriptor sometimes.
6264     - Try to be compatible with OpenSSL 0.9.6 again.
6265     - Log fix: when the controller is logging about .onion addresses,
6266       sometimes it didn't include the ".onion" part of the address.
6267     - Don't try to modify options->DirServers internally -- if the
6268       user didn't specify any, just add the default ones directly to
6269       the trusted dirserver list. This fixes a bug where people running
6270       controllers would use SETCONF on some totally unrelated config
6271       option, and Tor would start yelling at them about changing their
6272       DirServer lines.
6273     - Let the controller's redirectstream command specify a port, in
6274       case the controller wants to change that too.
6275     - When we requested a pile of server descriptors, we sometimes
6276       accidentally launched a duplicate request for the first one.
6277     - Bugfix for trackhostexits: write down the fingerprint of the
6278       chosen exit, not its nickname, because the chosen exit might not
6279       be verified.
6280     - When parsing foo.exit, if foo is unknown, and we are leaving
6281       circuits unattached, set the chosen_exit field and leave the
6282       address empty. This matters because controllers got confused
6283       otherwise.
6284     - Directory authorities no longer try to download server
6285       descriptors that they know they will reject.
6287   o Features and updates:
6288     - Replace balanced trees with hash tables: this should make stuff
6289       significantly faster.
6290     - Resume using the AES counter-mode implementation that we ship,
6291       rather than OpenSSL's. Ours is significantly faster.
6292     - Many other CPU and memory improvements.
6293     - Add a new config option FastFirstHopPK (on by default) so clients
6294       do a trivial crypto handshake for their first hop, since TLS has
6295       already taken care of confidentiality and authentication.
6296     - Add a new config option TestSocks so people can see if their
6297       applications are using socks4, socks4a, socks5-with-ip, or
6298       socks5-with-hostname. This way they don't have to keep mucking
6299       with tcpdump and wondering if something got cached somewhere.
6300     - Warn when listening on a public address for socks. I suspect a
6301       lot of people are setting themselves up as open socks proxies,
6302       and they have no idea that jerks on the Internet are using them,
6303       since they simply proxy the traffic into the Tor network.
6304     - Add "private:*" as an alias in configuration for policies. Now
6305       you can simplify your exit policy rather than needing to list
6306       every single internal or nonroutable network space.
6307     - Add a new controller event type that allows controllers to get
6308       all server descriptors that were uploaded to a router in its role
6309       as authoritative dirserver.
6310     - Start shipping socks-extensions.txt, tor-doc-unix.html,
6311       tor-doc-server.html, and stylesheet.css in the tarball.
6312     - Stop shipping tor-doc.html in the tarball.
6315 Changes in version 0.1.1.9-alpha - 2005-11-15
6316   o Usability improvements:
6317     - Start calling it FooListenAddress rather than FooBindAddress,
6318       since few of our users know what it means to bind an address
6319       or port.
6320     - Reduce clutter in server logs. We're going to try to make
6321       them actually usable now. New config option ProtocolWarnings that
6322       lets you hear about how _other Tors_ are breaking the protocol. Off
6323       by default.
6324     - Divide log messages into logging domains. Once we put some sort
6325       of interface on this, it will let people looking at more verbose
6326       log levels specify the topics they want to hear more about.
6327     - Make directory servers return better http 404 error messages
6328       instead of a generic "Servers unavailable".
6329     - Check for even more Windows version flags when writing the platform
6330       string in server descriptors, and note any we don't recognize.
6331     - Clean up more of the OpenSSL memory when exiting, so we can detect
6332       memory leaks better.
6333     - Make directory authorities be non-versioning, non-naming by
6334       default. Now we can add new directory servers without requiring
6335       their operators to pay close attention.
6336     - When logging via syslog, include the pid whenever we provide
6337       a log entry. Suggested by Todd Fries.
6339   o Performance improvements:
6340     - Directory servers now silently throw away new descriptors that
6341       haven't changed much if the timestamps are similar. We do this to
6342       tolerate older Tor servers that upload a new descriptor every 15
6343       minutes. (It seemed like a good idea at the time.)
6344     - Inline bottleneck smartlist functions; use fast versions by default.
6345     - Add a "Map from digest to void*" abstraction digestmap_t so we
6346       can do less hex encoding/decoding. Use it in router_get_by_digest()
6347       to resolve a performance bottleneck.
6348     - Allow tor_gzip_uncompress to extract as much as possible from
6349       truncated compressed data. Try to extract as many
6350       descriptors as possible from truncated http responses (when
6351       DIR_PURPOSE_FETCH_ROUTERDESC).
6352     - Make circ->onionskin a pointer, not a static array. moria2 was using
6353       125000 circuit_t's after it had been up for a few weeks, which
6354       translates to 20+ megs of wasted space.
6355     - The private half of our EDH handshake keys are now chosen out
6356       of 320 bits, not 1024 bits. (Suggested by Ian Goldberg.)
6358   o Security improvements:
6359     - Start making directory caches retain old routerinfos, so soon
6360       clients can start asking by digest of descriptor rather than by
6361       fingerprint of server.
6362     - Add half our entropy from RAND_poll in OpenSSL.  This knows how
6363       to use egd (if present), openbsd weirdness (if present), vms/os2
6364       weirdness (if we ever port there), and more in the future.
6366   o Bugfixes on 0.1.0.x:
6367     - Do round-robin writes of at most 16 kB per write. This might be
6368       more fair on loaded Tor servers, and it might resolve our Windows
6369       crash bug. It might also slow things down.
6370     - Our TLS handshakes were generating a single public/private
6371       keypair for the TLS context, rather than making a new one for
6372       each new connections. Oops. (But we were still rotating them
6373       periodically, so it's not so bad.)
6374     - When we were cannibalizing a circuit with a particular exit
6375       node in mind, we weren't checking to see if that exit node was
6376       already present earlier in the circuit. Oops.
6377     - When a Tor server's IP changes (e.g. from a dyndns address),
6378       upload a new descriptor so clients will learn too.
6379     - Really busy servers were keeping enough circuits open on stable
6380       connections that they were wrapping around the circuit_id
6381       space. (It's only two bytes.) This exposed a bug where we would
6382       feel free to reuse a circuit_id even if it still exists but has
6383       been marked for close. Try to fix this bug. Some bug remains.
6384     - If we would close a stream early (e.g. it asks for a .exit that
6385       we know would refuse it) but the LeaveStreamsUnattached config
6386       option is set by the controller, then don't close it.
6388   o Bugfixes on 0.1.1.8-alpha:
6389     - Fix a big pile of memory leaks, some of them serious.
6390     - Do not try to download a routerdesc if we would immediately reject
6391       it as obsolete.
6392     - Resume inserting a newline between all router descriptors when
6393       generating (old style) signed directories, since our spec says
6394       we do.
6395     - When providing content-type application/octet-stream for
6396       server descriptors using .z, we were leaving out the
6397       content-encoding header. Oops. (Everything tolerated this just
6398       fine, but that doesn't mean we need to be part of the problem.)
6399     - Fix a potential seg fault in getconf and getinfo using version 1
6400       of the controller protocol.
6401     - Avoid crash: do not check whether DirPort is reachable when we
6402       are suppressing it because of hibernation.
6403     - Make --hash-password not crash on exit.
6406 Changes in version 0.1.1.8-alpha - 2005-10-07
6407   o New features (major):
6408     - Clients don't download or use the directory anymore. Now they
6409       download and use network-statuses from the trusted dirservers,
6410       and fetch individual server descriptors as needed from mirrors.
6411       See dir-spec.txt for all the gory details.
6412     - Be more conservative about whether to advertise our DirPort.
6413       The main change is to not advertise if we're running at capacity
6414       and either a) we could hibernate or b) our capacity is low and
6415       we're using a default DirPort.
6416     - Use OpenSSL's AES when OpenSSL has version 0.9.7 or later.
6418   o New features (minor):
6419     - Try to be smart about when to retry network-status and
6420       server-descriptor fetches. Still needs some tuning.
6421     - Stop parsing, storing, or using running-routers output (but
6422       mirrors still cache and serve it).
6423     - Consider a threshold of versioning dirservers (dirservers who have
6424       an opinion about which Tor versions are still recommended) before
6425       deciding whether to warn the user that he's obsolete.
6426     - Dirservers can now reject/invalidate by key and IP, with the
6427       config options "AuthDirInvalid" and "AuthDirReject". This is
6428       useful since currently we automatically list servers as running
6429       and usable even if we know they're jerks.
6430     - Provide dire warnings to any users who set DirServer; move it out
6431       of torrc.sample and into torrc.complete.
6432     - Add MyFamily to torrc.sample in the server section.
6433     - Add nicknames to the DirServer line, so we can refer to them
6434       without requiring all our users to memorize their IP addresses.
6435     - When we get an EOF or a timeout on a directory connection, note
6436       how many bytes of serverdesc we are dropping. This will help
6437       us determine whether it is smart to parse incomplete serverdesc
6438       responses.
6439     - Add a new function to "change pseudonyms" -- that is, to stop
6440       using any currently-dirty circuits for new streams, so we don't
6441       link new actions to old actions. Currently it's only called on
6442       HUP (or SIGNAL RELOAD).
6443     - On sighup, if UseHelperNodes changed to 1, use new circuits.
6444     - Start using RAND_bytes rather than RAND_pseudo_bytes from
6445       OpenSSL. Also, reseed our entropy every hour, not just at
6446       startup. And entropy in 512-bit chunks, not 160-bit chunks.
6448   o Fixes on 0.1.1.7-alpha:
6449     - Nobody ever implemented EVENT_ADDRMAP for control protocol
6450       version 0, so don't let version 0 controllers ask for it.
6451     - If you requested something with too many newlines via the
6452       v1 controller protocol, you could crash tor.
6453     - Fix a number of memory leaks, including some pretty serious ones.
6454     - Re-enable DirPort testing again, so Tor servers will be willing
6455       to advertise their DirPort if it's reachable.
6456     - On TLS handshake, only check the other router's nickname against
6457       its expected nickname if is_named is set.
6459   o Fixes forward-ported from 0.1.0.15:
6460     - Don't crash when we don't have any spare file descriptors and we
6461       try to spawn a dns or cpu worker.
6462     - Make the numbers in read-history and write-history into uint64s,
6463       so they don't overflow and publish negatives in the descriptor.
6465   o Fixes on 0.1.0.x:
6466     - For the OS X package's modified privoxy config file, comment
6467       out the "logfile" line so we don't log everything passed
6468       through privoxy.
6469     - We were whining about using socks4 or socks5-with-local-lookup
6470       even when it's an IP in the "virtual" range we designed exactly
6471       for this case.
6472     - We were leaking some memory every time the client changes IPs.
6473     - Never call free() on tor_malloc()d memory. This will help us
6474       use dmalloc to detect memory leaks.
6475     - Check for named servers when looking them up by nickname;
6476       warn when we'recalling a non-named server by its nickname;
6477       don't warn twice about the same name.
6478     - Try to list MyFamily elements by key, not by nickname, and warn
6479       if we've not heard of the server.
6480     - Make windows platform detection (uname equivalent) smarter.
6481     - It turns out sparc64 doesn't like unaligned access either.
6484 Changes in version 0.1.0.15 - 2005-09-23
6485   o Bugfixes on 0.1.0.x:
6486     - Reject ports 465 and 587 (spam targets) in default exit policy.
6487     - Don't crash when we don't have any spare file descriptors and we
6488       try to spawn a dns or cpu worker.
6489     - Get rid of IgnoreVersion undocumented config option, and make us
6490       only warn, never exit, when we're running an obsolete version.
6491     - Don't try to print a null string when your server finds itself to
6492       be unreachable and the Address config option is empty.
6493     - Make the numbers in read-history and write-history into uint64s,
6494       so they don't overflow and publish negatives in the descriptor.
6495     - Fix a minor memory leak in smartlist_string_remove().
6496     - We were only allowing ourselves to upload a server descriptor at
6497       most every 20 minutes, even if it changed earlier than that.
6498     - Clean up log entries that pointed to old URLs.
6501 Changes in version 0.1.1.7-alpha - 2005-09-14
6502   o Fixes on 0.1.1.6-alpha:
6503     - Exit servers were crashing when people asked them to make a
6504       connection to an address not in their exit policy.
6505     - Looking up a non-existent stream for a v1 control connection would
6506       cause a segfault.
6507     - Fix a seg fault if we ask a dirserver for a descriptor by
6508       fingerprint but he doesn't know about him.
6509     - SETCONF was appending items to linelists, not clearing them.
6510     - SETCONF SocksBindAddress killed Tor if it fails to bind. Now back
6511       out and refuse the setconf if it would fail.
6512     - Downgrade the dirserver log messages when whining about
6513       unreachability.
6515   o New features:
6516     - Add Peter Palfrader's check-tor script to tor/contrib/
6517       It lets you easily check whether a given server (referenced by
6518       nickname) is reachable by you.
6519     - Numerous changes to move towards client-side v2 directories. Not
6520       enabled yet.
6522   o Fixes on 0.1.0.x:
6523     - If the user gave tor an odd number of command-line arguments,
6524       we were silently ignoring the last one. Now we complain and fail.
6525       [This wins the oldest-bug prize -- this bug has been present since
6526        November 2002, as released in Tor 0.0.0.]
6527     - Do not use unaligned memory access on alpha, mips, or mipsel.
6528       It *works*, but is very slow, so we treat them as if it doesn't.
6529     - Retry directory requests if we fail to get an answer we like
6530       from a given dirserver (we were retrying before, but only if
6531       we fail to connect).
6532     - When writing the RecommendedVersions line, sort them first.
6533     - When the client asked for a rendezvous port that the hidden
6534       service didn't want to provide, we were sending an IP address
6535       back along with the end cell. Fortunately, it was zero. But stop
6536       that anyway.
6537     - Correct "your server is reachable" log entries to indicate that
6538       it was self-testing that told us so.
6541 Changes in version 0.1.1.6-alpha - 2005-09-09
6542   o Fixes on 0.1.1.5-alpha:
6543     - We broke fascistfirewall in 0.1.1.5-alpha. Oops.
6544     - Fix segfault in unit tests in 0.1.1.5-alpha. Oops.
6545     - Fix bug with tor_memmem finding a match at the end of the string.
6546     - Make unit tests run without segfaulting.
6547     - Resolve some solaris x86 compile warnings.
6548     - Handle duplicate lines in approved-routers files without warning.
6549     - Fix bug where as soon as a server refused any requests due to his
6550       exit policy (e.g. when we ask for localhost and he tells us that's
6551       127.0.0.1 and he won't do it), we decided he wasn't obeying his
6552       exit policy using him for any exits.
6553     - Only do openssl hardware accelerator stuff if openssl version is
6554       at least 0.9.7.
6556   o New controller features/fixes:
6557     - Add a "RESETCONF" command so you can set config options like
6558       AllowUnverifiedNodes and LongLivedPorts to "". Also, if you give
6559       a config option in the torrc with no value, then it clears it
6560       entirely (rather than setting it to its default).
6561     - Add a "GETINFO config-file" to tell us where torrc is.
6562     - Avoid sending blank lines when GETINFO replies should be empty.
6563     - Add a QUIT command for the controller (for using it manually).
6564     - Fix a bug in SAVECONF that was adding default dirservers and
6565       other redundant entries to the torrc file.
6567   o Start on the new directory design:
6568     - Generate, publish, cache, serve new network-status format.
6569     - Publish individual descriptors (by fingerprint, by "all", and by
6570       "tell me yours").
6571     - Publish client and server recommended versions separately.
6572     - Allow tor_gzip_uncompress() to handle multiple concatenated
6573       compressed strings. Serve compressed groups of router
6574       descriptors. The compression logic here could be more
6575       memory-efficient.
6576     - Distinguish v1 authorities (all currently trusted directories)
6577       from v2 authorities (all trusted directories).
6578     - Change DirServers config line to note which dirs are v1 authorities.
6579     - Add configuration option "V1AuthoritativeDirectory 1" which
6580       moria1, moria2, and tor26 should set.
6581     - Remove option when getting directory cache to see whether they
6582       support running-routers; they all do now. Replace it with one
6583       to see whether caches support v2 stuff.
6585   o New features:
6586     - Dirservers now do their own external reachability testing of each
6587       Tor server, and only list them as running if they've been found to
6588       be reachable. We also send back warnings to the server's logs if
6589       it uploads a descriptor that we already believe is unreachable.
6590     - Implement exit enclaves: if we know an IP address for the
6591       destination, and there's a running Tor server at that address
6592       which allows exit to the destination, then extend the circuit to
6593       that exit first. This provides end-to-end encryption and end-to-end
6594       authentication. Also, if the user wants a .exit address or enclave,
6595       use 4 hops rather than 3, and cannibalize a general circ for it
6596       if you can.
6597     - Permit transitioning from ORPort=0 to ORPort!=0, and back, from the
6598       controller. Also, rotate dns and cpu workers if the controller
6599       changes options that will affect them; and initialize the dns
6600       worker cache tree whether or not we start out as a server.
6601     - Only upload a new server descriptor when options change, 18
6602       hours have passed, uptime is reset, or bandwidth changes a lot.
6603     - Check [X-]Forwarded-For headers in HTTP requests when generating
6604       log messages. This lets people run dirservers (and caches) behind
6605       Apache but still know which IP addresses are causing warnings.
6607   o Config option changes:
6608     - Replace (Fascist)Firewall* config options with a new
6609       ReachableAddresses option that understands address policies.
6610       For example, "ReachableAddresses *:80,*:443"
6611     - Get rid of IgnoreVersion undocumented config option, and make us
6612       only warn, never exit, when we're running an obsolete version.
6613     - Make MonthlyAccountingStart config option truly obsolete now.
6615   o Fixes on 0.1.0.x:
6616     - Reject ports 465 and 587 in the default exit policy, since
6617       people have started using them for spam too.
6618     - It turns out we couldn't bootstrap a network since we added
6619       reachability detection in 0.1.0.1-rc. Good thing the Tor network
6620       has never gone down. Add an AssumeReachable config option to let
6621       servers and dirservers bootstrap. When we're trying to build a
6622       high-uptime or high-bandwidth circuit but there aren't enough
6623       suitable servers, try being less picky rather than simply failing.
6624     - Our logic to decide if the OR we connected to was the right guy
6625       was brittle and maybe open to a mitm for unverified routers.
6626     - We weren't cannibalizing circuits correctly for
6627       CIRCUIT_PURPOSE_C_ESTABLISH_REND and
6628       CIRCUIT_PURPOSE_S_ESTABLISH_INTRO, so we were being forced to
6629       build those from scratch. This should make hidden services faster.
6630     - Predict required circuits better, with an eye toward making hidden
6631       services faster on the service end.
6632     - Retry streams if the exit node sends back a 'misc' failure. This
6633       should result in fewer random failures. Also, after failing
6634       from resolve failed or misc, reset the num failures, so we give
6635       it a fair shake next time we try.
6636     - Clean up the rendezvous warn log msgs, and downgrade some to info.
6637     - Reduce severity on logs about dns worker spawning and culling.
6638     - When we're shutting down and we do something like try to post a
6639       server descriptor or rendezvous descriptor, don't complain that
6640       we seem to be unreachable. Of course we are, we're shutting down.
6641     - Add TTLs to RESOLVED, CONNECTED, and END_REASON_EXITPOLICY cells.
6642       We don't use them yet, but maybe one day our DNS resolver will be
6643       able to discover them.
6644     - Make ContactInfo mandatory for authoritative directory servers.
6645     - Require server descriptors to list IPv4 addresses -- hostnames
6646       are no longer allowed. This also fixes some potential security
6647       problems with people providing hostnames as their address and then
6648       preferentially resolving them to partition users.
6649     - Change log line for unreachability to explicitly suggest /etc/hosts
6650       as the culprit. Also make it clearer what IP address and ports we're
6651       testing for reachability.
6652     - Put quotes around user-supplied strings when logging so users are
6653       more likely to realize if they add bad characters (like quotes)
6654       to the torrc.
6655     - Let auth dir servers start without specifying an Address config
6656       option.
6657     - Make unit tests (and other invocations that aren't the real Tor)
6658       run without launching listeners, creating subdirectories, and so on.
6661 Changes in version 0.1.1.5-alpha - 2005-08-08
6662   o Bugfixes included in 0.1.0.14.
6664   o Bugfixes on 0.1.0.x:
6665     - If you write "HiddenServicePort 6667 127.0.0.1 6668" in your
6666       torrc rather than "HiddenServicePort 6667 127.0.0.1:6668",
6667       it would silently using ignore the 6668.
6670 Changes in version 0.1.0.14 - 2005-08-08
6671   o Bugfixes on 0.1.0.x:
6672       - Fix the other half of the bug with crypto handshakes
6673         (CVE-2005-2643).
6674       - Fix an assert trigger if you send a 'signal term' via the
6675         controller when it's listening for 'event info' messages.
6678 Changes in version 0.1.1.4-alpha - 2005-08-04
6679   o Bugfixes included in 0.1.0.13.
6681   o Features:
6682     - Improve tor_gettimeofday() granularity on windows.
6683     - Make clients regenerate their keys when their IP address changes.
6684     - Implement some more GETINFO goodness: expose helper nodes, config
6685       options, getinfo keys.
6688 Changes in version 0.1.0.13 - 2005-08-04
6689   o Bugfixes on 0.1.0.x:
6690     - Fix a critical bug in the security of our crypto handshakes.
6691     - Fix a size_t underflow in smartlist_join_strings2() that made
6692       it do bad things when you hand it an empty smartlist.
6693     - Fix Windows installer to ship Tor license (thanks to Aphex for
6694       pointing out this oversight) and put a link to the doc directory
6695       in the start menu.
6696     - Explicitly set no-unaligned-access for sparc: it turns out the
6697       new gcc's let you compile broken code, but that doesn't make it
6698       not-broken.
6701 Changes in version 0.1.1.3-alpha - 2005-07-23
6702   o Bugfixes on 0.1.1.2-alpha:
6703     - Fix a bug in handling the controller's "post descriptor"
6704       function.
6705     - Fix several bugs in handling the controller's "extend circuit"
6706       function.
6707     - Fix a bug in handling the controller's "stream status" event.
6708     - Fix an assert failure if we have a controller listening for
6709       circuit events and we go offline.
6710     - Re-allow hidden service descriptors to publish 0 intro points.
6711     - Fix a crash when generating your hidden service descriptor if
6712       you don't have enough intro points already.
6714   o New features on 0.1.1.2-alpha:
6715     - New controller function "getinfo accounting", to ask how
6716       many bytes we've used in this time period.
6717     - Experimental support for helper nodes: a lot of the risk from
6718       a small static adversary comes because users pick new random
6719       nodes every time they rebuild a circuit. Now users will try to
6720       stick to the same small set of entry nodes if they can. Not
6721       enabled by default yet.
6723   o Bugfixes on 0.1.0.12:
6724     - If you're an auth dir server, always publish your dirport,
6725       even if you haven't yet found yourself to be reachable.
6726     - Fix a size_t underflow in smartlist_join_strings2() that made
6727       it do bad things when you hand it an empty smartlist.
6730 Changes in version 0.1.0.12 - 2005-07-18
6731   o New directory servers:
6732       - tor26 has changed IP address.
6734   o Bugfixes on 0.1.0.x:
6735     - Fix a possible double-free in tor_gzip_uncompress().
6736     - When --disable-threads is set, do not search for or link against
6737       pthreads libraries.
6738     - Don't trigger an assert if an authoritative directory server
6739       claims its dirport is 0.
6740     - Fix bug with removing Tor as an NT service: some people were
6741       getting "The service did not return an error." Thanks to Matt
6742       Edman for the fix.
6745 Changes in version 0.1.1.2-alpha - 2005-07-15
6746   o New directory servers:
6747     - tor26 has changed IP address.
6749   o Bugfixes on 0.1.0.x, crashes/leaks:
6750     - Port the servers-not-obeying-their-exit-policies fix from
6751       0.1.0.11.
6752     - Fix an fd leak in start_daemon().
6753     - On Windows, you can't always reopen a port right after you've
6754       closed it. So change retry_listeners() to only close and re-open
6755       ports that have changed.
6756     - Fix a possible double-free in tor_gzip_uncompress().
6758   o Bugfixes on 0.1.0.x, usability:
6759     - When tor_socketpair() fails in Windows, give a reasonable
6760       Windows-style errno back.
6761     - Let people type "tor --install" as well as "tor -install" when
6762       they
6763       want to make it an NT service.
6764     - NT service patch from Matt Edman to improve error messages.
6765     - When the controller asks for a config option with an abbreviated
6766       name, give the full name in our response.
6767     - Correct the man page entry on TrackHostExitsExpire.
6768     - Looks like we were never delivering deflated (i.e. compressed)
6769       running-routers lists, even when asked. Oops.
6770     - When --disable-threads is set, do not search for or link against
6771       pthreads libraries.
6773   o Bugfixes on 0.1.1.x:
6774     - Fix a seg fault with autodetecting which controller version is
6775       being used.
6777   o Features:
6778     - New hidden service descriptor format: put a version in it, and
6779       let people specify introduction/rendezvous points that aren't
6780       in "the directory" (which is subjective anyway).
6781     - Allow the DEBUG controller event to work again. Mark certain log
6782       entries as "don't tell this to controllers", so we avoid cycles.
6785 Changes in version 0.1.0.11 - 2005-06-30
6786   o Bugfixes on 0.1.0.x:
6787     - Fix major security bug: servers were disregarding their
6788       exit policies if clients behaved unexpectedly.
6789     - Make OS X init script check for missing argument, so we don't
6790       confuse users who invoke it incorrectly.
6791     - Fix a seg fault in "tor --hash-password foo".
6792     - The MAPADDRESS control command was broken.
6795 Changes in version 0.1.1.1-alpha - 2005-06-29
6796   o Bugfixes:
6797     - Make OS X init script check for missing argument, so we don't
6798       confuse users who invoke it incorrectly.
6799     - Fix a seg fault in "tor --hash-password foo".
6800     - Fix a possible way to DoS dirservers.
6801     - When we complain that your exit policy implicitly allows local or
6802       private address spaces, name them explicitly so operators can
6803       fix it.
6804     - Make the log message less scary when all the dirservers are
6805       temporarily unreachable.
6806     - We were printing the number of idle dns workers incorrectly when
6807       culling them.
6809   o Features:
6810     - Revised controller protocol (version 1) that uses ascii rather
6811       than binary. Add supporting libraries in python and java so you
6812       can use the controller from your applications without caring how
6813       our protocol works.
6814     - Spiffy new support for crypto hardware accelerators. Can somebody
6815       test this?
6818 Changes in version 0.0.9.10 - 2005-06-16
6819   o Bugfixes on 0.0.9.x (backported from 0.1.0.10):
6820     - Refuse relay cells that claim to have a length larger than the
6821       maximum allowed. This prevents a potential attack that could read
6822       arbitrary memory (e.g. keys) from an exit server's process
6823       (CVE-2005-2050).
6826 Changes in version 0.1.0.10 - 2005-06-14
6827   o Allow a few EINVALs from libevent before dying. Warn on kqueue with
6828     libevent before 1.1a.
6831 Changes in version 0.1.0.9-rc - 2005-06-09
6832   o Bugfixes:
6833     - Reset buf->highwater every time buf_shrink() is called, not just on
6834       a successful shrink. This was causing significant memory bloat.
6835     - Fix buffer overflow when checking hashed passwords.
6836     - Security fix: if seeding the RNG on Win32 fails, quit.
6837     - Allow seeding the RNG on Win32 even when you're not running as
6838       Administrator.
6839     - Disable threading on Solaris too. Something is wonky with it,
6840       cpuworkers, and reentrant libs.
6841     - Reenable the part of the code that tries to flush as soon as an
6842       OR outbuf has a full TLS record available. Perhaps this will make
6843       OR outbufs not grow as huge except in rare cases, thus saving lots
6844       of CPU time plus memory.
6845     - Reject malformed .onion addresses rather then passing them on as
6846       normal web requests.
6847     - Adapt patch from Adam Langley: fix possible memory leak in
6848       tor_lookup_hostname().
6849     - Initialize libevent later in the startup process, so the logs are
6850       already established by the time we start logging libevent warns.
6851     - Use correct errno on win32 if libevent fails.
6852     - Check and warn about known-bad/slow libevent versions.
6853     - Pay more attention to the ClientOnly config option.
6854     - Have torctl.in/tor.sh.in check for location of su binary (needed
6855       on FreeBSD)
6856     - Correct/add man page entries for LongLivedPorts, ExitPolicy,
6857       KeepalivePeriod, ClientOnly, NoPublish, HttpProxy, HttpsProxy,
6858       HttpProxyAuthenticator
6859     - Stop warning about sigpipes in the logs. We're going to
6860       pretend that getting these occassionally is normal and fine.
6861     - Resolve OS X installer bugs: stop claiming to be 0.0.9.2 in
6862       certain
6863       installer screens; and don't put stuff into StartupItems unless
6864       the user asks you to.
6865     - Require servers that use the default dirservers to have public IP
6866       addresses. We have too many servers that are configured with private
6867       IPs and their admins never notice the log entries complaining that
6868       their descriptors are being rejected.
6869     - Add OSX uninstall instructions. An actual uninstall script will
6870       come later.
6873 Changes in version 0.1.0.8-rc - 2005-05-23
6874   o Bugfixes:
6875     - It turns out that kqueue on OS X 10.3.9 was causing kernel
6876       panics. Disable kqueue on all OS X Tors.
6877     - Fix RPM: remove duplicate line accidentally added to the rpm
6878       spec file.
6879     - Disable threads on openbsd too, since its gethostaddr is not
6880       reentrant either.
6881     - Tolerate libevent 0.8 since it still works, even though it's
6882       ancient.
6883     - Enable building on Red Hat 9.0 again.
6884     - Allow the middle hop of the testing circuit to be running any
6885       version, now that most of them have the bugfix to let them connect
6886       to unknown servers. This will allow reachability testing to work
6887       even when 0.0.9.7-0.0.9.9 become obsolete.
6888     - Handle relay cells with rh.length too large. This prevents
6889       a potential attack that could read arbitrary memory (maybe even
6890       keys) from the exit server's process.
6891     - We screwed up the dirport reachability testing when we don't yet
6892       have a cached version of the directory. Hopefully now fixed.
6893     - Clean up router_load_single_router() (used by the controller),
6894       so it doesn't seg fault on error.
6895     - Fix a minor memory leak when somebody establishes an introduction
6896       point at your Tor server.
6897     - If a socks connection ends because read fails, don't warn that
6898       you're not sending a socks reply back.
6900   o Features:
6901     - Add HttpProxyAuthenticator config option too, that works like
6902       the HttpsProxyAuthenticator config option.
6903     - Encode hashed controller passwords in hex instead of base64,
6904       to make it easier to write controllers.
6907 Changes in version 0.1.0.7-rc - 2005-05-17
6908   o Bugfixes:
6909     - Fix a bug in the OS X package installer that prevented it from
6910       installing on Tiger.
6911     - Fix a script bug in the OS X package installer that made it
6912       complain during installation.
6913     - Find libevent even if it's hiding in /usr/local/ and your
6914       CFLAGS and LDFLAGS don't tell you to look there.
6915     - Be able to link with libevent as a shared library (the default
6916       after 1.0d), even if it's hiding in /usr/local/lib and even
6917       if you haven't added /usr/local/lib to your /etc/ld.so.conf,
6918       assuming you're running gcc. Otherwise fail and give a useful
6919       error message.
6920     - Fix a bug in the RPM packager: set home directory for _tor to
6921       something more reasonable when first installing.
6922     - Free a minor amount of memory that is still reachable on exit.
6925 Changes in version 0.1.0.6-rc - 2005-05-14
6926   o Bugfixes:
6927     - Implement --disable-threads configure option. Disable threads on
6928       netbsd by default, because it appears to have no reentrant resolver
6929       functions.
6930     - Apple's OS X 10.4.0 ships with a broken kqueue. The new libevent
6931       release (1.1) detects and disables kqueue if it's broken.
6932     - Append default exit policy before checking for implicit internal
6933       addresses. Now we don't log a bunch of complaints on startup
6934       when using the default exit policy.
6935     - Some people were putting "Address  " in their torrc, and they had
6936       a buggy resolver that resolved " " to 0.0.0.0. Oops.
6937     - If DataDir is ~/.tor, and that expands to /.tor, then default to
6938       LOCALSTATEDIR/tor instead.
6939     - Fix fragmented-message bug in TorControl.py.
6940     - Resolve a minor bug which would prevent unreachable dirports
6941       from getting suppressed in the published descriptor.
6942     - When the controller gave us a new descriptor, we weren't resolving
6943       it immediately, so Tor would think its address was 0.0.0.0 until
6944       we fetched a new directory.
6945     - Fix an uppercase/lowercase case error in suppressing a bogus
6946       libevent warning on some Linuxes.
6948   o Features:
6949     - Begin scrubbing sensitive strings from logs by default. Turn off
6950       the config option SafeLogging if you need to do debugging.
6951     - Switch to a new buffer management algorithm, which tries to avoid
6952       reallocing and copying quite as much. In first tests it looks like
6953       it uses *more* memory on average, but less cpu.
6954     - First cut at support for "create-fast" cells. Clients can use
6955       these when extending to their first hop, since the TLS already
6956       provides forward secrecy and authentication. Not enabled on
6957       clients yet.
6958     - When dirservers refuse a router descriptor, we now log its
6959       contactinfo, platform, and the poster's IP address.
6960     - Call tor_free_all instead of connections_free_all after forking, to
6961       save memory on systems that need to fork.
6962     - Whine at you if you're a server and you don't set your contactinfo.
6963     - Implement --verify-config command-line option to check if your torrc
6964       is valid without actually launching Tor.
6965     - Rewrite address "serifos.exit" to "localhost.serifos.exit"
6966       rather than just rejecting it.
6969 Changes in version 0.1.0.5-rc - 2005-04-27
6970   o Bugfixes:
6971     - Stop trying to print a null pointer if an OR conn fails because
6972       we didn't like its cert.
6973   o Features:
6974     - Switch our internal buffers implementation to use a ring buffer,
6975       to hopefully improve performance for fast servers a lot.
6976     - Add HttpsProxyAuthenticator support (basic auth only), based
6977       on patch from Adam Langley.
6978     - Bump the default BandwidthRate from 1 MB to 2 MB, to accommodate
6979       the fast servers that have been joining lately.
6980     - Give hidden service accesses extra time on the first attempt,
6981       since 60 seconds is often only barely enough. This might improve
6982       robustness more.
6983     - Improve performance for dirservers: stop re-parsing the whole
6984       directory every time you regenerate it.
6985     - Add more debugging info to help us find the weird dns freebsd
6986       pthreads bug; cleaner debug messages to help track future issues.
6989 Changes in version 0.0.9.9 - 2005-04-23
6990   o Bugfixes on 0.0.9.x:
6991     - If unofficial Tor clients connect and send weird TLS certs, our
6992       Tor server triggers an assert. This release contains a minimal
6993       backport from the broader fix that we put into 0.1.0.4-rc.
6996 Changes in version 0.1.0.4-rc - 2005-04-23
6997   o Bugfixes:
6998     - If unofficial Tor clients connect and send weird TLS certs, our
6999       Tor server triggers an assert. Stop asserting, and start handling
7000       TLS errors better in other situations too.
7001     - When the controller asks us to tell it about all the debug-level
7002       logs, it turns out we were generating debug-level logs while
7003       telling it about them, which turns into a bad loop. Now keep
7004       track of whether you're sending a debug log to the controller,
7005       and don't log when you are.
7006     - Fix the "postdescriptor" feature of the controller interface: on
7007       non-complete success, only say "done" once.
7008   o Features:
7009     - Clients are now willing to load balance over up to 2mB, not 1mB,
7010       of advertised bandwidth capacity.
7011     - Add a NoPublish config option, so you can be a server (e.g. for
7012       testing running Tor servers in other Tor networks) without
7013       publishing your descriptor to the primary dirservers.
7016 Changes in version 0.1.0.3-rc - 2005-04-08
7017   o Improvements on 0.1.0.2-rc:
7018     - Client now retries when streams end early for 'hibernating' or
7019       'resource limit' reasons, rather than failing them.
7020     - More automated handling for dirserver operators:
7021       - Automatically approve nodes running 0.1.0.2-rc or later,
7022         now that the the reachability detection stuff is working.
7023       - Now we allow two unverified servers with the same nickname
7024         but different keys. But if a nickname is verified, only that
7025         nickname+key are allowed.
7026       - If you're an authdirserver connecting to an address:port,
7027         and it's not the OR you were expecting, forget about that
7028         descriptor. If he *was* the one you were expecting, then forget
7029         about all other descriptors for that address:port.
7030       - Allow servers to publish descriptors from 12 hours in the future.
7031         Corollary: only whine about clock skew from the dirserver if
7032         he's a trusted dirserver (since now even verified servers could
7033         have quite wrong clocks).
7034     - Adjust maximum skew and age for rendezvous descriptors: let skew
7035       be 48 hours rather than 90 minutes.
7036     - Efficiency improvements:
7037       - Keep a big splay tree of (circid,orconn)->circuit mappings to make
7038         it much faster to look up a circuit for each relay cell.
7039       - Remove most calls to assert_all_pending_dns_resolves_ok(),
7040         since they're eating our cpu on exit nodes.
7041       - Stop wasting time doing a case insensitive comparison for every
7042         dns name every time we do any lookup. Canonicalize the names to
7043         lowercase and be done with it.
7044     - Start sending 'truncated' cells back rather than destroy cells,
7045       if the circuit closes in front of you. This means we won't have
7046       to abandon partially built circuits.
7047     - Only warn once per nickname from add_nickname_list_to_smartlist
7048       per failure, so an entrynode or exitnode choice that's down won't
7049       yell so much.
7050     - Put a note in the torrc about abuse potential with the default
7051       exit policy.
7052     - Revise control spec and implementation to allow all log messages to
7053       be sent to controller with their severities intact (suggested by
7054       Matt Edman). Update TorControl to handle new log event types.
7055     - Provide better explanation messages when controller's POSTDESCRIPTOR
7056       fails.
7057     - Stop putting nodename in the Platform string in server descriptors.
7058       It doesn't actually help, and it is confusing/upsetting some people.
7060   o Bugfixes on 0.1.0.2-rc:
7061     - We were printing the host mask wrong in exit policies in server
7062       descriptors. This isn't a critical bug though, since we were still
7063       obeying the exit policy internally.
7064     - Fix Tor when compiled with libevent but without pthreads: move
7065       connection_unregister() from _connection_free() to
7066       connection_free().
7067     - Fix an assert trigger (already fixed in 0.0.9.x): when we have
7068       the rare mysterious case of accepting a conn on 0.0.0.0:0, then
7069       when we look through the connection array, we'll find any of the
7070       cpu/dnsworkers. This is no good.
7072   o Bugfixes on 0.0.9.8:
7073     - Fix possible bug on threading platforms (e.g. win32) which was
7074       leaking a file descriptor whenever a cpuworker or dnsworker died.
7075     - When using preferred entry or exit nodes, ignore whether the
7076       circuit wants uptime or capacity. They asked for the nodes, they
7077       get the nodes.
7078     - chdir() to your datadirectory at the *end* of the daemonize process,
7079       not the beginning. This was a problem because the first time you
7080       run tor, if your datadir isn't there, and you have runasdaemon set
7081       to 1, it will try to chdir to it before it tries to create it. Oops.
7082     - Handle changed router status correctly when dirserver reloads
7083       fingerprint file. We used to be dropping all unverified descriptors
7084       right then. The bug was hidden because we would immediately
7085       fetch a directory from another dirserver, which would include the
7086       descriptors we just dropped.
7087     - When we're connecting to an OR and he's got a different nickname/key
7088       than we were expecting, only complain loudly if we're an OP or a
7089       dirserver. Complaining loudly to the OR admins just confuses them.
7090     - Tie MAX_DIR_SIZE to MAX_BUF_SIZE, so now directory sizes won't get
7091       artificially capped at 500kB.
7094 Changes in version 0.0.9.8 - 2005-04-07
7095   o Bugfixes on 0.0.9.x:
7096     - We have a bug that I haven't found yet. Sometimes, very rarely,
7097       cpuworkers get stuck in the 'busy' state, even though the cpuworker
7098       thinks of itself as idle. This meant that no new circuits ever got
7099       established. Here's a workaround to kill any cpuworker that's been
7100       busy for more than 100 seconds.
7103 Changes in version 0.1.0.2-rc - 2005-04-01
7104   o Bugfixes on 0.1.0.1-rc:
7105     - Fixes on reachability detection:
7106       - Don't check for reachability while hibernating.
7107       - If ORPort is reachable but DirPort isn't, still publish the
7108         descriptor, but zero out DirPort until it's found reachable.
7109       - When building testing circs for ORPort testing, use only
7110         high-bandwidth nodes, so fewer circuits fail.
7111       - Complain about unreachable ORPort separately from unreachable
7112         DirPort, so the user knows what's going on.
7113       - Make sure we only conclude ORPort reachability if we didn't
7114         initiate the conn. Otherwise we could falsely conclude that
7115         we're reachable just because we connected to the guy earlier
7116         and he used that same pipe to extend to us.
7117       - Authdirservers shouldn't do ORPort reachability detection,
7118         since they're in clique mode, so it will be rare to find a
7119         server not already connected to them.
7120       - When building testing circuits, always pick middle hops running
7121         Tor 0.0.9.7, so we avoid the "can't extend to unknown routers"
7122         bug. (This is a kludge; it will go away when 0.0.9.x becomes
7123         obsolete.)
7124       - When we decide we're reachable, actually publish our descriptor
7125         right then.
7126     - Fix bug in redirectstream in the controller.
7127     - Fix the state descriptor strings so logs don't claim edge streams
7128       are in a different state than they actually are.
7129     - Use recent libevent features when possible (this only really affects
7130       win32 and osx right now, because the new libevent with these
7131       features hasn't been released yet). Add code to suppress spurious
7132       libevent log msgs.
7133     - Prevent possible segfault in connection_close_unattached_ap().
7134     - Fix newlines on torrc in win32.
7135     - Improve error msgs when tor-resolve fails.
7137   o Improvements on 0.0.9.x:
7138     - New experimental script tor/contrib/ExerciseServer.py (needs more
7139       work) that uses the controller interface to build circuits and
7140       fetch pages over them. This will help us bootstrap servers that
7141       have lots of capacity but haven't noticed it yet.
7142     - New experimental script tor/contrib/PathDemo.py (needs more work)
7143       that uses the controller interface to let you choose whole paths
7144       via addresses like
7145       "<hostname>.<path,separated by dots>.<length of path>.path"
7146     - When we've connected to an OR and handshaked but didn't like
7147       the result, we were closing the conn without sending destroy
7148       cells back for pending circuits. Now send those destroys.
7151 Changes in version 0.0.9.7 - 2005-04-01
7152   o Bugfixes on 0.0.9.x:
7153     - Fix another race crash bug (thanks to Glenn Fink for reporting).
7154     - Compare identity to identity, not to nickname, when extending to
7155       a router not already in the directory. This was preventing us from
7156       extending to unknown routers. Oops.
7157     - Make sure to create OS X Tor user in <500 range, so we aren't
7158       creating actual system users.
7159     - Note where connection-that-hasn't-sent-end was marked, and fix
7160       a few really loud instances of this harmless bug (it's fixed more
7161       in 0.1.0.x).
7164 Changes in version 0.1.0.1-rc - 2005-03-28
7165   o New features:
7166     - Add reachability testing. Your Tor server will automatically try
7167       to see if its ORPort and DirPort are reachable from the outside,
7168       and it won't upload its descriptor until it decides they are.
7169     - Handle unavailable hidden services better. Handle slow or busy
7170       hidden services better.
7171     - Add support for CONNECTing through https proxies, with "HttpsProxy"
7172       config option.
7173     - New exit policy: accept most low-numbered ports, rather than
7174       rejecting most low-numbered ports.
7175     - More Tor controller support (still experimental). See
7176       http://tor.eff.org/doc/control-spec.txt for all the new features,
7177       including signals to emulate unix signals from any platform;
7178       redirectstream; extendcircuit; mapaddress; getinfo; postdescriptor;
7179       closestream; closecircuit; etc.
7180     - Make nt services work and start on startup on win32 (based on
7181       patch by Matt Edman).
7182     - Add a new AddressMap config directive to rewrite incoming socks
7183       addresses. This lets you, for example, declare an implicit
7184       required exit node for certain sites.
7185     - Add a new TrackHostExits config directive to trigger addressmaps
7186       for certain incoming socks addresses -- for sites that break when
7187       your exit keeps changing (based on patch by Mike Perry).
7188     - Redo the client-side dns cache so it's just an addressmap too.
7189     - Notice when our IP changes, and reset stats/uptime/reachability.
7190     - When an application is using socks5, give him the whole variety of
7191       potential socks5 responses (connect refused, host unreachable, etc),
7192       rather than just "success" or "failure".
7193     - A more sane version numbering system. See
7194       http://tor.eff.org/cvs/tor/doc/version-spec.txt for details.
7195     - New contributed script "exitlist": a simple python script to
7196       parse directories and find Tor nodes that exit to listed
7197       addresses/ports.
7198     - New contributed script "privoxy-tor-toggle" to toggle whether
7199       Privoxy uses Tor. Seems to be configured for Debian by default.
7200     - Report HTTP reasons to client when getting a response from directory
7201       servers -- so you can actually know what went wrong.
7202     - New config option MaxAdvertisedBandwidth which lets you advertise
7203       a low bandwidthrate (to not attract as many circuits) while still
7204       allowing a higher bandwidthrate in reality.
7206   o Robustness/stability fixes:
7207     - Make Tor use Niels Provos's libevent instead of its current
7208       poll-but-sometimes-select mess.  This will let us use faster async
7209       cores (like epoll, kpoll, and /dev/poll), and hopefully work better
7210       on Windows too.
7211     - pthread support now too. This was forced because when we forked,
7212       we ended up wasting a lot of duplicate ram over time. Also switch
7213       to foo_r versions of some library calls to allow reentry and
7214       threadsafeness.
7215     - Better handling for heterogeneous / unreliable nodes:
7216       - Annotate circuits w/ whether they aim to contain high uptime nodes
7217         and/or high capacity nodes. When building circuits, choose
7218         appropriate nodes.
7219       - This means that every single node in an intro rend circuit,
7220         not just the last one, will have a minimum uptime.
7221       - New config option LongLivedPorts to indicate application streams
7222         that will want high uptime circuits.
7223       - Servers reset uptime when a dir fetch entirely fails. This
7224         hopefully reflects stability of the server's network connectivity.
7225       - If somebody starts his tor server in Jan 2004 and then fixes his
7226         clock, don't make his published uptime be a year.
7227       - Reset published uptime when you wake up from hibernation.
7228     - Introduce a notion of 'internal' circs, which are chosen without
7229       regard to the exit policy of the last hop. Intro and rendezvous
7230       circs must be internal circs, to avoid leaking information. Resolve
7231       and connect streams can use internal circs if they want.
7232     - New circuit pooling algorithm: make sure to have enough circs around
7233       to satisfy any predicted ports, and also make sure to have 2 internal
7234       circs around if we've required internal circs lately (and with high
7235       uptime if we've seen that lately too).
7236     - Split NewCircuitPeriod option into NewCircuitPeriod (30 secs),
7237       which describes how often we retry making new circuits if current
7238       ones are dirty, and MaxCircuitDirtiness (10 mins), which describes
7239       how long we're willing to make use of an already-dirty circuit.
7240     - Cannibalize GENERAL circs to be C_REND, C_INTRO, S_INTRO, and S_REND
7241       circ as necessary, if there are any completed ones lying around
7242       when we try to launch one.
7243     - Make hidden services try to establish a rendezvous for 30 seconds,
7244       rather than for n (where n=3) attempts to build a circuit.
7245     - Change SHUTDOWN_WAIT_LENGTH from a fixed 30 secs to a config option
7246       "ShutdownWaitLength".
7247     - Try to be more zealous about calling connection_edge_end when
7248       things go bad with edge conns in connection.c.
7249     - Revise tor-spec to add more/better stream end reasons.
7250     - Revise all calls to connection_edge_end to avoid sending "misc",
7251       and to take errno into account where possible.
7253   o Bug fixes:
7254     - Fix a race condition that can trigger an assert, when we have a
7255       pending create cell and an OR connection fails right then.
7256     - Fix several double-mark-for-close bugs, e.g. where we were finding
7257       a conn for a cell even if that conn is already marked for close.
7258     - Make sequence of log messages when starting on win32 with no config
7259       file more reasonable.
7260     - When choosing an exit node for a new non-internal circ, don't take
7261       into account whether it'll be useful for any pending x.onion
7262       addresses -- it won't.
7263     - Turn addr_policy_compare from a tristate to a quadstate; this should
7264       help address our "Ah, you allow 1.2.3.4:80. You are a good choice
7265       for google.com" problem.
7266     - Make "platform" string in descriptor more accurate for Win32 servers,
7267       so it's not just "unknown platform".
7268     - Fix an edge case in parsing config options (thanks weasel).
7269       If they say "--" on the commandline, it's not an option.
7270     - Reject odd-looking addresses at the client (e.g. addresses that
7271       contain a colon), rather than having the server drop them because
7272       they're malformed.
7273     - tor-resolve requests were ignoring .exit if there was a working circuit
7274       they could use instead.
7275     - REUSEADDR on normal platforms means you can rebind to the port
7276       right after somebody else has let it go. But REUSEADDR on win32
7277       means to let you bind to the port _even when somebody else
7278       already has it bound_! So, don't do that on Win32.
7279     - Change version parsing logic: a version is "obsolete" if it is not
7280       recommended and (1) there is a newer recommended version in the
7281       same series, or (2) there are no recommended versions in the same
7282       series, but there are some recommended versions in a newer series.
7283       A version is "new" if it is newer than any recommended version in
7284       the same series.
7285     - Stop most cases of hanging up on a socks connection without sending
7286       the socks reject.
7288   o Helpful fixes:
7289     - Require BandwidthRate to be at least 20kB/s for servers.
7290     - When a dirserver causes you to give a warn, mention which dirserver
7291       it was.
7292     - New config option DirAllowPrivateAddresses for authdirservers.
7293       Now by default they refuse router descriptors that have non-IP or
7294       private-IP addresses.
7295     - Stop publishing socksport in the directory, since it's not
7296       actually meant to be public. For compatibility, publish a 0 there
7297       for now.
7298     - Change DirFetchPeriod/StatusFetchPeriod to have a special "Be
7299       smart" value, that is low for servers and high for clients.
7300     - If our clock jumps forward by 100 seconds or more, assume something
7301       has gone wrong with our network and abandon all not-yet-used circs.
7302     - Warn when exit policy implicitly allows local addresses.
7303     - If we get an incredibly skewed timestamp from a dirserver mirror
7304       that isn't a verified OR, don't warn -- it's probably him that's
7305       wrong.
7306     - Since we ship our own Privoxy on OS X, tweak it so it doesn't write
7307       cookies to disk and doesn't log each web request to disk. (Thanks
7308       to Brett Carrington for pointing this out.)
7309     - When a client asks us for a dir mirror and we don't have one,
7310       launch an attempt to get a fresh one.
7311     - If we're hibernating and we get a SIGINT, exit immediately.
7312     - Add --with-dmalloc ./configure option, to track memory leaks.
7313     - And try to free all memory on closing, so we can detect what
7314       we're leaking.
7315     - Cache local dns resolves correctly even when they're .exit
7316       addresses.
7317     - Give a better warning when some other server advertises an
7318       ORPort that is actually an apache running ssl.
7319     - Add "opt hibernating 1" to server descriptor to make it clearer
7320       whether the server is hibernating.
7323 Changes in version 0.0.9.6 - 2005-03-24
7324   o Bugfixes on 0.0.9.x (crashes and asserts):
7325     - Add new end stream reasons to maintainance branch. Fix bug where
7326       reason (8) could trigger an assert.  Prevent bug from recurring.
7327     - Apparently win32 stat wants paths to not end with a slash.
7328     - Fix assert triggers in assert_cpath_layer_ok(), where we were
7329       blowing away the circuit that conn->cpath_layer points to, then
7330       checking to see if the circ is well-formed. Backport check to make
7331       sure we dont use the cpath on a closed connection.
7332     - Prevent circuit_resume_edge_reading_helper() from trying to package
7333       inbufs for marked-for-close streams.
7334     - Don't crash on hup if your options->address has become unresolvable.
7335     - Some systems (like OS X) sometimes accept() a connection and tell
7336       you the remote host is 0.0.0.0:0. If this happens, due to some
7337       other mis-features, we get confused; so refuse the conn for now.
7339   o Bugfixes on 0.0.9.x (other):
7340     - Fix harmless but scary "Unrecognized content encoding" warn message.
7341     - Add new stream error reason: TORPROTOCOL reason means "you are not
7342       speaking a version of Tor I understand; say bye-bye to your stream."
7343     - Be willing to cache directories from up to ROUTER_MAX_AGE seconds
7344       into the future, now that we are more tolerant of skew. This
7345       resolves a bug where a Tor server would refuse to cache a directory
7346       because all the directories it gets are too far in the future;
7347       yet the Tor server never logs any complaints about clock skew.
7348     - Mac packaging magic: make man pages useable, and do not overwrite
7349       existing torrc files.
7350     - Make OS X log happily to /var/log/tor/tor.log
7353 Changes in version 0.0.9.5 - 2005-02-22
7354   o Bugfixes on 0.0.9.x:
7355     - Fix an assert race at exit nodes when resolve requests fail.
7356     - Stop picking unverified dir mirrors--it only leads to misery.
7357     - Patch from Matt Edman to make NT services work better. Service
7358       support is still not compiled into the executable by default.
7359     - Patch from Dmitri Bely so the Tor service runs better under
7360       the win32 SYSTEM account.
7361     - Make tor-resolve actually work (?) on Win32.
7362     - Fix a sign bug when getrlimit claims to have 4+ billion
7363       file descriptors available.
7364     - Stop refusing to start when bandwidthburst == bandwidthrate.
7365     - When create cells have been on the onion queue more than five
7366       seconds, just send back a destroy and take them off the list.
7369 Changes in version 0.0.9.4 - 2005-02-03
7370   o Bugfixes on 0.0.9:
7371     - Fix an assert bug that took down most of our servers: when
7372       a server claims to have 1 GB of bandwidthburst, don't
7373       freak out.
7374     - Don't crash as badly if we have spawned the max allowed number
7375       of dnsworkers, or we're out of file descriptors.
7376     - Block more file-sharing ports in the default exit policy.
7377     - MaxConn is now automatically set to the hard limit of max
7378       file descriptors we're allowed (ulimit -n), minus a few for
7379       logs, etc.
7380     - Give a clearer message when servers need to raise their
7381       ulimit -n when they start running out of file descriptors.
7382     - SGI Compatibility patches from Jan Schaumann.
7383     - Tolerate a corrupt cached directory better.
7384     - When a dirserver hasn't approved your server, list which one.
7385     - Go into soft hibernation after 95% of the bandwidth is used,
7386       not 99%. This is especially important for daily hibernators who
7387       have a small accounting max. Hopefully it will result in fewer
7388       cut connections when the hard hibernation starts.
7389     - Load-balance better when using servers that claim more than
7390       800kB/s of capacity.
7391     - Make NT services work (experimental, only used if compiled in).
7394 Changes in version 0.0.9.3 - 2005-01-21
7395   o Bugfixes on 0.0.9:
7396     - Backport the cpu use fixes from main branch, so busy servers won't
7397       need as much processor time.
7398     - Work better when we go offline and then come back, or when we
7399       run Tor at boot before the network is up. We do this by
7400       optimistically trying to fetch a new directory whenever an
7401       application request comes in and we think we're offline -- the
7402       human is hopefully a good measure of when the network is back.
7403     - Backport some minimal hidserv bugfixes: keep rend circuits open as
7404       long as you keep using them; actually publish hidserv descriptors
7405       shortly after they change, rather than waiting 20-40 minutes.
7406     - Enable Mac startup script by default.
7407     - Fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas.
7408     - When you update AllowUnverifiedNodes or FirewallPorts via the
7409       controller's setconf feature, we were always appending, never
7410       resetting.
7411     - When you update HiddenServiceDir via setconf, it was screwing up
7412       the order of reading the lines, making it fail.
7413     - Do not rewrite a cached directory back to the cache; otherwise we
7414       will think it is recent and not fetch a newer one on startup.
7415     - Workaround for webservers that lie about Content-Encoding: Tor
7416       now tries to autodetect compressed directories and compression
7417       itself. This lets us Proxypass dir fetches through apache.
7420 Changes in version 0.0.9.2 - 2005-01-04
7421   o Bugfixes on 0.0.9 (crashes and asserts):
7422     - Fix an assert on startup when the disk is full and you're logging
7423       to a file.
7424     - If you do socks4 with an IP of 0.0.0.x but *don't* provide a socks4a
7425       style address, then we'd crash.
7426     - Fix an assert trigger when the running-routers string we get from
7427       a dirserver is broken.
7428     - Make worker threads start and run on win32. Now win32 servers
7429       may work better.
7430     - Bandaid (not actually fix, but now it doesn't crash) an assert
7431       where the dns worker dies mysteriously and the main Tor process
7432       doesn't remember anything about the address it was resolving.
7434   o Bugfixes on 0.0.9 (Win32):
7435     - Workaround for brain-damaged __FILE__ handling on MSVC: keep Nick's
7436       name out of the warning/assert messages.
7437     - Fix a superficial "unhandled error on read" bug on win32.
7438     - The win32 installer no longer requires a click-through for our
7439       license, since our Free Software license grants rights but does not
7440       take any away.
7441     - Win32: When connecting to a dirserver fails, try another one
7442       immediately. (This was already working for non-win32 Tors.)
7443     - Stop trying to parse $HOME on win32 when hunting for default
7444       DataDirectory.
7445     - Make tor-resolve.c work on win32 by calling network_init().
7447   o Bugfixes on 0.0.9 (other):
7448     - Make 0.0.9.x build on Solaris again.
7449     - Due to a fencepost error, we were blowing away the \n when reporting
7450       confvalue items in the controller. So asking for multiple config
7451       values at once couldn't work.
7452     - When listing circuits that are pending on an opening OR connection,
7453       if we're an OR we were listing circuits that *end* at us as
7454       being pending on every listener, dns/cpu worker, etc. Stop that.
7455     - Dirservers were failing to create 'running-routers' or 'directory'
7456       strings if we had more than some threshold of routers. Fix them so
7457       they can handle any number of routers.
7458     - Fix a superficial "Duplicate mark for close" bug.
7459     - Stop checking for clock skew for OR connections, even for servers.
7460     - Fix a fencepost error that was chopping off the last letter of any
7461       nickname that is the maximum allowed nickname length.
7462     - Update URLs in log messages so they point to the new website.
7463     - Fix a potential problem in mangling server private keys while
7464       writing to disk (not triggered yet, as far as we know).
7465     - Include the licenses for other free software we include in Tor,
7466       now that we're shipping binary distributions more regularly.
7469 Changes in version 0.0.9.1 - 2004-12-15
7470   o Bugfixes on 0.0.9:
7471     - Make hibernation actually work.
7472     - Make HashedControlPassword config option work.
7473     - When we're reporting event circuit status to a controller,
7474       don't use the stream status code.
7477 Changes in version 0.0.9 - 2004-12-12
7478   o Cleanups:
7479     - Clean up manpage and torrc.sample file.
7480     - Clean up severities and text of log warnings.
7481   o Mistakes:
7482     - Make servers trigger an assert when they enter hibernation.
7485 Changes in version 0.0.9rc7 - 2004-12-08
7486   o Bugfixes on 0.0.9rc:
7487     - Fix a stack-trashing crash when an exit node begins hibernating.
7488     - Avoid looking at unallocated memory while considering which
7489       ports we need to build circuits to cover.
7490     - Stop a sigpipe: when an 'end' cell races with eof from the app,
7491       we shouldn't hold-open-until-flush if the eof arrived first.
7492     - Fix a bug with init_cookie_authentication() in the controller.
7493     - When recommending new-format log lines, if the upper bound is
7494       LOG_ERR, leave it implicit.
7496   o Bugfixes on 0.0.8.1:
7497     - Fix a whole slew of memory leaks.
7498     - Fix isspace() and friends so they still make Solaris happy
7499       but also so they don't trigger asserts on win32.
7500     - Fix parse_iso_time on platforms without strptime (eg win32).
7501     - win32: tolerate extra "readable" events better.
7502     - win32: when being multithreaded, leave parent fdarray open.
7503     - Make unit tests work on win32.
7506 Changes in version 0.0.9rc6 - 2004-12-06
7507   o Bugfixes on 0.0.9pre:
7508     - Clean up some more integer underflow opportunities (not exploitable
7509       we think).
7510     - While hibernating, hup should not regrow our listeners.
7511     - Send an end to the streams we close when we hibernate, rather
7512       than just chopping them off.
7513     - React to eof immediately on non-open edge connections.
7515   o Bugfixes on 0.0.8.1:
7516     - Calculate timeout for waiting for a connected cell from the time
7517       we sent the begin cell, not from the time the stream started. If
7518       it took a long time to establish the circuit, we would time out
7519       right after sending the begin cell.
7520     - Fix router_compare_addr_to_addr_policy: it was not treating a port
7521       of * as always matching, so we were picking reject *:* nodes as
7522       exit nodes too. Oops.
7524   o Features:
7525     - New circuit building strategy: keep a list of ports that we've
7526       used in the past 6 hours, and always try to have 2 circuits open
7527       or on the way that will handle each such port. Seed us with port
7528       80 so web users won't complain that Tor is "slow to start up".
7529     - Make kill -USR1 dump more useful stats about circuits.
7530     - When warning about retrying or giving up, print the address, so
7531       the user knows which one it's talking about.
7532     - If you haven't used a clean circuit in an hour, throw it away,
7533       just to be on the safe side. (This means after 6 hours a totally
7534       unused Tor client will have no circuits open.)
7537 Changes in version 0.0.9rc5 - 2004-12-01
7538   o Bugfixes on 0.0.8.1:
7539     - Disallow NDEBUG. We don't ever want anybody to turn off debug.
7540     - Let resolve conns retry/expire also, rather than sticking around
7541       forever.
7542     - If we are using select, make sure we stay within FD_SETSIZE.
7544   o Bugfixes on 0.0.9pre:
7545     - Fix integer underflow in tor_vsnprintf() that may be exploitable,
7546       but doesn't seem to be currently; thanks to Ilja van Sprundel for
7547       finding it.
7548     - If anybody set DirFetchPostPeriod, give them StatusFetchPeriod
7549       instead.  Impose minima and maxima for all *Period options; impose
7550       even tighter maxima for fetching if we are a caching dirserver.
7551       Clip rather than rejecting.
7552     - Fetch cached running-routers from servers that serve it (that is,
7553       authdirservers and servers running 0.0.9rc5-cvs or later.)
7555   o Features:
7556     - Accept *:706 (silc) in default exit policy.
7557     - Implement new versioning format for post 0.1.
7558     - Support "foo.nickname.exit" addresses, to let Alice request the
7559       address "foo" as viewed by exit node "nickname". Based on a patch
7560       by Geoff Goodell.
7561     - Make tor --version --version dump the cvs Id of every file.
7564 Changes in version 0.0.9rc4 - 2004-11-28
7565   o Bugfixes on 0.0.8.1:
7566     - Make windows sockets actually non-blocking (oops), and handle
7567       win32 socket errors better.
7569   o Bugfixes on 0.0.9rc1:
7570     - Actually catch the -USR2 signal.
7573 Changes in version 0.0.9rc3 - 2004-11-25
7574   o Bugfixes on 0.0.8.1:
7575     - Flush the log file descriptor after we print "Tor opening log file",
7576       so we don't see those messages days later.
7578   o Bugfixes on 0.0.9rc1:
7579     - Make tor-resolve work again.
7580     - Avoid infinite loop in tor-resolve if tor hangs up on it.
7581     - Fix an assert trigger for clients/servers handling resolves.
7584 Changes in version 0.0.9rc2 - 2004-11-24
7585   o Bugfixes on 0.0.9rc1:
7586     - I broke socks5 support while fixing the eof bug.
7587     - Allow unitless bandwidths and intervals; they default to bytes
7588       and seconds.
7589     - New servers don't start out hibernating; they are active until
7590       they run out of bytes, so they have a better estimate of how
7591       long it takes, and so their operators can know they're working.
7594 Changes in version 0.0.9rc1 - 2004-11-23
7595   o Bugfixes on 0.0.8.1:
7596     - Finally fix a bug that's been plaguing us for a year:
7597       With high load, circuit package window was reaching 0. Whenever
7598       we got a circuit-level sendme, we were reading a lot on each
7599       socket, but only writing out a bit. So we would eventually reach
7600       eof. This would be noticed and acted on even when there were still
7601       bytes sitting in the inbuf.
7602     - When poll() is interrupted, we shouldn't believe the revents values.
7604   o Bugfixes on 0.0.9pre6:
7605     - Fix hibernate bug that caused pre6 to be broken.
7606     - Don't keep rephist info for routers that haven't had activity for
7607       24 hours. (This matters now that clients have keys, since we track
7608       them too.)
7609     - Never call close_temp_logs while validating log options.
7610     - Fix backslash-escaping on tor.sh.in and torctl.in.
7612   o Features:
7613     - Implement weekly/monthly/daily accounting: now you specify your
7614       hibernation properties by
7615       AccountingMax N bytes|KB|MB|GB|TB
7616       AccountingStart day|week|month [day] HH:MM
7617         Defaults to "month 1 0:00".
7618     - Let bandwidth and interval config options be specified as 5 bytes,
7619       kb, kilobytes, etc; and as seconds, minutes, hours, days, weeks.
7620     - kill -USR2 now moves all logs to loglevel debug (kill -HUP to
7621       get back to normal.)
7622     - If your requested entry or exit node has advertised bandwidth 0,
7623       pick it anyway.
7624     - Be more greedy about filling up relay cells -- we try reading again
7625       once we've processed the stuff we read, in case enough has arrived
7626       to fill the last cell completely.
7627     - Apply NT service patch from Osamu Fujino. Still needs more work.
7630 Changes in version 0.0.9pre6 - 2004-11-15
7631   o Bugfixes on 0.0.8.1:
7632     - Fix assert failure on malformed socks4a requests.
7633     - Use identity comparison, not nickname comparison, to choose which
7634       half of circuit-ID-space each side gets to use. This is needed
7635       because sometimes we think of a router as a nickname, and sometimes
7636       as a hex ID, and we can't predict what the other side will do.
7637     - Catch and ignore SIGXFSZ signals when log files exceed 2GB; our
7638       write() call will fail and we handle it there.
7639     - Add a FAST_SMARTLIST define to optionally inline smartlist_get
7640       and smartlist_len, which are two major profiling offenders.
7642   o Bugfixes on 0.0.9pre5:
7643     - Fix a bug in read_all that was corrupting config files on windows.
7644     - When we're raising the max number of open file descriptors to
7645       'unlimited', don't log that we just raised it to '-1'.
7646     - Include event code with events, as required by control-spec.txt.
7647     - Don't give a fingerprint when clients do --list-fingerprint:
7648       it's misleading, because it will never be the same again.
7649     - Stop using strlcpy in tor_strndup, since it was slowing us
7650       down a lot.
7651     - Remove warn on startup about missing cached-directory file.
7652     - Make kill -USR1 work again.
7653     - Hibernate if we start tor during the "wait for wakeup-time" phase
7654       of an accounting interval. Log our hibernation plans better.
7655     - Authoritative dirservers now also cache their directory, so they
7656       have it on start-up.
7658   o Features:
7659     - Fetch running-routers; cache running-routers; compress
7660       running-routers; serve compressed running-routers.z
7661     - Add NSI installer script contributed by J Doe.
7662     - Commit VC6 and VC7 workspace/project files.
7663     - Commit a tor.spec for making RPM files, with help from jbash.
7664     - Add contrib/torctl.in contributed by Glenn Fink.
7665     - Implement the control-spec's SAVECONF command, to write your
7666       configuration to torrc.
7667     - Get cookie authentication for the controller closer to working.
7668     - Include control-spec.txt in the tarball.
7669     - When set_conf changes our server descriptor, upload a new copy.
7670       But don't upload it too often if there are frequent changes.
7671     - Document authentication config in man page, and document signals
7672       we catch.
7673     - Clean up confusing parts of man page and torrc.sample.
7674     - Make expand_filename handle ~ and ~username.
7675     - Use autoconf to enable largefile support where necessary. Use
7676       ftello where available, since ftell can fail at 2GB.
7677     - Distinguish between TOR_TLS_CLOSE and TOR_TLS_ERROR, so we can
7678       log more informatively.
7679     - Give a slightly more useful output for "tor -h".
7680     - Refuse application socks connections to port 0.
7681     - Check clock skew for verified servers, but allow unverified
7682       servers and clients to have any clock skew.
7683     - Break DirFetchPostPeriod into:
7684       - DirFetchPeriod for fetching full directory,
7685       - StatusFetchPeriod for fetching running-routers,
7686       - DirPostPeriod for posting server descriptor,
7687       - RendPostPeriod for posting hidden service descriptors.
7688     - Make sure the hidden service descriptors are at a random offset
7689       from each other, to hinder linkability.
7692 Changes in version 0.0.9pre5 - 2004-11-09
7693   o Bugfixes on 0.0.9pre4:
7694     - Fix a seg fault in unit tests (doesn't affect main program).
7695     - Fix an assert bug where a hidden service provider would fail if
7696       the first hop of his rendezvous circuit was down.
7697     - Hidden service operators now correctly handle version 1 style
7698       INTRODUCE1 cells (nobody generates them still, so not a critical
7699       bug).
7700     - If do_hup fails, actually notice.
7701     - Handle more errnos from accept() without closing the listener.
7702       Some OpenBSD machines were closing their listeners because
7703       they ran out of file descriptors.
7704     - Send resolve cells to exit routers that are running a new
7705       enough version of the resolve code to work right.
7706     - Better handling of winsock includes on non-MSV win32 compilers.
7707     - Some people had wrapped their tor client/server in a script
7708       that would restart it whenever it died. This did not play well
7709       with our "shut down if your version is obsolete" code. Now people
7710       don't fetch a new directory if their local cached version is
7711       recent enough.
7712     - Make our autogen.sh work on ksh as well as bash.
7714   o Major Features:
7715     - Hibernation: New config option "AccountingMaxKB" lets you
7716       set how many KBytes per month you want to allow your server to
7717       consume. Rather than spreading those bytes out evenly over the
7718       month, we instead hibernate for some of the month and pop up
7719       at a deterministic time, work until the bytes are consumed, then
7720       hibernate again. Config option "MonthlyAccountingStart" lets you
7721       specify which day of the month your billing cycle starts on.
7722     - Control interface: a separate program can now talk to your
7723       client/server over a socket, and get/set config options, receive
7724       notifications of circuits and streams starting/finishing/dying,
7725       bandwidth used, etc. The next step is to get some GUIs working.
7726       Let us know if you want to help out. See doc/control-spec.txt .
7727     - Ship a contrib/tor-control.py as an example script to interact
7728       with the control port.
7729     - "tor --hash-password zzyxz" will output a salted password for
7730       use in authenticating to the control interface.
7731     - New log format in config:
7732       "Log minsev[-maxsev] stdout|stderr|syslog" or
7733       "Log minsev[-maxsev] file /var/foo"
7735   o Minor Features:
7736     - DirPolicy config option, to let people reject incoming addresses
7737       from their dirserver.
7738     - "tor --list-fingerprint" will list your identity key fingerprint
7739       and then exit.
7740     - Add "pass" target for RedirectExit, to make it easier to break
7741       out of a sequence of RedirectExit rules.
7742     - Clients now generate a TLS cert too, in preparation for having
7743       them act more like real nodes.
7744     - Ship src/win32/ in the tarball, so people can use it to build.
7745     - Make old win32 fall back to CWD if SHGetSpecialFolderLocation
7746       is broken.
7747     - New "router-status" line in directory, to better bind each verified
7748       nickname to its identity key.
7749     - Deprecate unofficial config option abbreviations, and abbreviations
7750       not on the command line.
7751     - Add a pure-C tor-resolve implementation.
7752     - Use getrlimit and friends to ensure we can reach MaxConn (currently
7753       1024) file descriptors.
7755   o Code security improvements, inspired by Ilja:
7756     - Replace sprintf with snprintf. (I think they were all safe, but
7757       hey.)
7758     - Replace strcpy/strncpy with strlcpy in more places.
7759     - Avoid strcat; use snprintf or strlcat instead.
7760     - snprintf wrapper with consistent (though not C99) overflow behavior.
7763 Changes in version 0.0.9pre4 - 2004-10-17
7764   o Bugfixes on 0.0.9pre3:
7765     - If the server doesn't specify an exit policy, use the real default
7766       exit policy, not reject *:*.
7767     - Ignore fascistfirewall when uploading/downloading hidden service
7768       descriptors, since we go through Tor for those; and when using
7769       an HttpProxy, since we assume it can reach them all.
7770     - When looking for an authoritative dirserver, use only the ones
7771       configured at boot. Don't bother looking in the directory.
7772     - The rest of the fix for get_default_conf_file() on older win32.
7773     - Make 'Routerfile' config option obsolete.
7775   o Features:
7776     - New 'MyFamily nick1,...' config option for a server to
7777       specify other servers that shouldn't be used in the same circuit
7778       with it. Only believed if nick1 also specifies us.
7779     - New 'NodeFamily nick1,nick2,...' config option for a client to
7780       specify nodes that it doesn't want to use in the same circuit.
7781     - New 'Redirectexit pattern address:port' config option for a
7782       server to redirect exit connections, e.g. to a local squid.
7785 Changes in version 0.0.9pre3 - 2004-10-13
7786   o Bugfixes on 0.0.8.1:
7787     - Better torrc example lines for dirbindaddress and orbindaddress.
7788     - Improved bounds checking on parsed ints (e.g. config options and
7789       the ones we find in directories.)
7790     - Better handling of size_t vs int, so we're more robust on 64
7791       bit platforms.
7792     - Fix the rest of the bug where a newly started OR would appear
7793       as unverified even after we've added his fingerprint and hupped
7794       the dirserver.
7795     - Fix a bug from 0.0.7: when read() failed on a stream, we would
7796       close it without sending back an end. So 'connection refused'
7797       would simply be ignored and the user would get no response.
7799   o Bugfixes on 0.0.9pre2:
7800     - Serving the cached-on-disk directory to people is bad. We now
7801       provide no directory until we've fetched a fresh one.
7802     - Workaround for bug on windows where cached-directories get crlf
7803       corruption.
7804     - Make get_default_conf_file() work on older windows too.
7805     - If we write a *:* exit policy line in the descriptor, don't write
7806       any more exit policy lines.
7808   o Features:
7809     - Use only 0.0.9pre1 and later servers for resolve cells.
7810     - Make the dirservers file obsolete.
7811       - Include a dir-signing-key token in directories to tell the
7812         parsing entity which key is being used to sign.
7813       - Remove the built-in bulky default dirservers string.
7814       - New config option "Dirserver %s:%d [fingerprint]", which can be
7815         repeated as many times as needed. If no dirservers specified,
7816         default to moria1,moria2,tor26.
7817     - Make moria2 advertise a dirport of 80, so people behind firewalls
7818       will be able to get a directory.
7819     - Http proxy support
7820       - Dirservers translate requests for http://%s:%d/x to /x
7821       - You can specify "HttpProxy %s[:%d]" and all dir fetches will
7822         be routed through this host.
7823       - Clients ask for /tor/x rather than /x for new enough dirservers.
7824         This way we can one day coexist peacefully with apache.
7825       - Clients specify a "Host: %s%d" http header, to be compatible
7826         with more proxies, and so running squid on an exit node can work.
7829 Changes in version 0.0.8.1 - 2004-10-13
7830   o Bugfixes:
7831     - Fix a seg fault that can be triggered remotely for Tor
7832       clients/servers with an open dirport.
7833     - Fix a rare assert trigger, where routerinfos for entries in
7834       our cpath would expire while we're building the path.
7835     - Fix a bug in OutboundBindAddress so it (hopefully) works.
7836     - Fix a rare seg fault for people running hidden services on
7837       intermittent connections.
7838     - Fix a bug in parsing opt keywords with objects.
7839     - Fix a stale pointer assert bug when a stream detaches and
7840       reattaches.
7841     - Fix a string format vulnerability (probably not exploitable)
7842       in reporting stats locally.
7843     - Fix an assert trigger: sometimes launching circuits can fail
7844       immediately, e.g. because too many circuits have failed recently.
7845     - Fix a compile warning on 64 bit platforms.
7848 Changes in version 0.0.9pre2 - 2004-10-03
7849   o Bugfixes:
7850     - Make fetching a cached directory work for 64-bit platforms too.
7851     - Make zlib.h a required header, not an optional header.
7854 Changes in version 0.0.9pre1 - 2004-10-01
7855   o Bugfixes:
7856     - Stop using separate defaults for no-config-file and
7857       empty-config-file. Now you have to explicitly turn off SocksPort,
7858       if you don't want it open.
7859     - Fix a bug in OutboundBindAddress so it (hopefully) works.
7860     - Improve man page to mention more of the 0.0.8 features.
7861     - Fix a rare seg fault for people running hidden services on
7862       intermittent connections.
7863     - Change our file IO stuff (especially wrt OpenSSL) so win32 is
7864       happier.
7865     - Fix more dns related bugs: send back resolve_failed and end cells
7866       more reliably when the resolve fails, rather than closing the
7867       circuit and then trying to send the cell. Also attach dummy resolve
7868       connections to a circuit *before* calling dns_resolve(), to fix
7869       a bug where cached answers would never be sent in RESOLVED cells.
7870     - When we run out of disk space, or other log writing error, don't
7871       crash. Just stop logging to that log and continue.
7872     - We were starting to daemonize before we opened our logs, so if
7873       there were any problems opening logs, we would complain to stderr,
7874       which wouldn't work, and then mysteriously exit.
7875     - Fix a rare bug where sometimes a verified OR would connect to us
7876       before he'd uploaded his descriptor, which would cause us to
7877       assign conn->nickname as though he's unverified. Now we look through
7878       the fingerprint list to see if he's there.
7879     - Fix a rare assert trigger, where routerinfos for entries in
7880       our cpath would expire while we're building the path.
7882   o Features:
7883     - Clients can ask dirservers for /dir.z to get a compressed version
7884       of the directory. Only works for servers running 0.0.9, of course.
7885     - Make clients cache directories and use them to seed their router
7886       lists at startup. This means clients have a datadir again.
7887     - Configuration infrastructure support for warning on obsolete
7888       options.
7889     - Respond to content-encoding headers by trying to uncompress as
7890       appropriate.
7891     - Reply with a deflated directory when a client asks for "dir.z".
7892       We could use allow-encodings instead, but allow-encodings isn't
7893       specified in HTTP 1.0.
7894     - Raise the max dns workers from 50 to 100.
7895     - Discourage people from setting their dirfetchpostperiod more often
7896       than once per minute.
7897     - Protect dirservers from overzealous descriptor uploading -- wait
7898       10 seconds after directory gets dirty, before regenerating.
7901 Changes in version 0.0.8 - 2004-08-25
7902   o Port it to SunOS 5.9 / Athena
7905 Changes in version 0.0.8rc2 - 2004-08-20
7906   o Make it compile on cygwin again.
7907   o When picking unverified routers, skip those with low uptime and/or
7908     low bandwidth, depending on what properties you care about.
7911 Changes in version 0.0.8rc1 - 2004-08-18
7912   o Changes from 0.0.7.3:
7913     - Bugfixes:
7914       - Fix assert triggers: if the other side returns an address 0.0.0.0,
7915         don't put it into the client dns cache.
7916       - If a begin failed due to exit policy, but we believe the IP address
7917         should have been allowed, switch that router to exitpolicy reject *:*
7918         until we get our next directory.
7919     - Features:
7920       - Clients choose nodes proportional to advertised bandwidth.
7921       - Avoid using nodes with low uptime as introduction points.
7922       - Handle servers with dynamic IP addresses: don't replace
7923         options->Address with the resolved one at startup, and
7924         detect our address right before we make a routerinfo each time.
7925       - 'FascistFirewall' option to pick dirservers and ORs on specific
7926         ports; plus 'FirewallPorts' config option to tell FascistFirewall
7927         which ports are open. (Defaults to 80,443)
7928       - Be more aggressive about trying to make circuits when the network
7929         has changed (e.g. when you unsuspend your laptop).
7930       - Check for time skew on http headers; report date in response to
7931         "GET /".
7932       - If the entrynode config line has only one node, don't pick it as
7933         an exitnode.
7934       - Add strict{entry|exit}nodes config options. If set to 1, then
7935         we refuse to build circuits that don't include the specified entry
7936         or exit nodes.
7937       - OutboundBindAddress config option, to bind to a specific
7938         IP address for outgoing connect()s.
7939       - End truncated log entries (e.g. directories) with "[truncated]".
7941   o Patches to 0.0.8preX:
7942     - Bugfixes:
7943       - Patches to compile and run on win32 again (maybe)?
7944       - Fix crash when looking for ~/.torrc with no $HOME set.
7945       - Fix a race bug in the unit tests.
7946       - Handle verified/unverified name collisions better when new
7947         routerinfo's arrive in a directory.
7948       - Sometimes routers were getting entered into the stats before
7949         we'd assigned their identity_digest. Oops.
7950       - Only pick and establish intro points after we've gotten a
7951         directory.
7952     - Features:
7953       - AllowUnverifiedNodes config option to let circuits choose no-name
7954         routers in entry,middle,exit,introduction,rendezvous positions.
7955         Allow middle and rendezvous positions by default.
7956       - Add a man page for tor-resolve.
7959 Changes in version 0.0.7.3 - 2004-08-12
7960   o Stop dnsworkers from triggering an assert failure when you
7961     ask them to resolve the host "".
7964 Changes in version 0.0.8pre3 - 2004-08-09
7965   o Changes from 0.0.7.2:
7966     - Allow multiple ORs with same nickname in routerlist -- now when
7967       people give us one identity key for a nickname, then later
7968       another, we don't constantly complain until the first expires.
7969     - Remember used bandwidth (both in and out), and publish 15-minute
7970       snapshots for the past day into our descriptor.
7971     - You can now fetch $DIRURL/running-routers to get just the
7972       running-routers line, not the whole descriptor list. (But
7973       clients don't use this yet.)
7974     - When people mistakenly use Tor as an http proxy, point them
7975       at the tor-doc.html rather than the INSTALL.
7976     - Remove our mostly unused -- and broken -- hex_encode()
7977       function. Use base16_encode() instead. (Thanks to Timo Lindfors
7978       for pointing out this bug.)
7979     - Rotate onion keys every 12 hours, not every 2 hours, so we have
7980       fewer problems with people using the wrong key.
7981     - Change the default exit policy to reject the default edonkey,
7982       kazaa, gnutella ports.
7983     - Add replace_file() to util.[ch] to handle win32's rename().
7985   o Changes from 0.0.8preX:
7986     - Fix two bugs in saving onion keys to disk when rotating, so
7987       hopefully we'll get fewer people using old onion keys.
7988     - Fix an assert error that was making SocksPolicy not work.
7989     - Be willing to expire routers that have an open dirport -- it's
7990       just the authoritative dirservers we want to not forget.
7991     - Reject tor-resolve requests for .onion addresses early, so we
7992       don't build a whole rendezvous circuit and then fail.
7993     - When you're warning a server that he's unverified, don't cry
7994       wolf unpredictably.
7995     - Fix a race condition: don't try to extend onto a connection
7996       that's still handshaking.
7997     - For servers in clique mode, require the conn to be open before
7998       you'll choose it for your path.
7999     - Fix some cosmetic bugs about duplicate mark-for-close, lack of
8000       end relay cell, etc.
8001     - Measure bandwidth capacity over the last 24 hours, not just 12
8002     - Bugfix: authoritative dirservers were making and signing a new
8003       directory for each client, rather than reusing the cached one.
8006 Changes in version 0.0.8pre2 - 2004-08-04
8007   o Changes from 0.0.7.2:
8008     - Security fixes:
8009       - Check directory signature _before_ you decide whether you're
8010         you're running an obsolete version and should exit.
8011       - Check directory signature _before_ you parse the running-routers
8012         list to decide who's running or verified.
8013     - Bugfixes and features:
8014       - Check return value of fclose while writing to disk, so we don't
8015         end up with broken files when servers run out of disk space.
8016       - Log a warning if the user uses an unsafe socks variant, so people
8017         are more likely to learn about privoxy or socat.
8018       - Dirservers now include RFC1123-style dates in the HTTP headers,
8019         which one day we will use to better detect clock skew.
8021   o Changes from 0.0.8pre1:
8022     - Make it compile without warnings again on win32.
8023     - Log a warning if you're running an unverified server, to let you
8024       know you might want to get it verified.
8025     - Only pick a default nickname if you plan to be a server.
8028 Changes in version 0.0.8pre1 - 2004-07-23
8029   o Bugfixes:
8030     - Made our unit tests compile again on OpenBSD 3.5, and tor
8031       itself compile again on OpenBSD on a sparc64.
8032     - We were neglecting milliseconds when logging on win32, so
8033       everything appeared to happen at the beginning of each second.
8035   o Protocol changes:
8036     - 'Extend' relay cell payloads now include the digest of the
8037       intended next hop's identity key. Now we can verify that we're
8038       extending to the right router, and also extend to routers we
8039       hadn't heard of before.
8041   o Features:
8042     - Tor nodes can now act as relays (with an advertised ORPort)
8043       without being manually verified by the dirserver operators.
8044       - Uploaded descriptors of unverified routers are now accepted
8045         by the dirservers, and included in the directory.
8046       - Verified routers are listed by nickname in the running-routers
8047         list; unverified routers are listed as "$<fingerprint>".
8048       - We now use hash-of-identity-key in most places rather than
8049         nickname or addr:port, for improved security/flexibility.
8050       - To avoid Sybil attacks, paths still use only verified servers.
8051         But now we have a chance to play around with hybrid approaches.
8052       - Nodes track bandwidth usage to estimate capacity (not used yet).
8053       - ClientOnly option for nodes that never want to become servers.
8054     - Directory caching.
8055       - "AuthoritativeDir 1" option for the official dirservers.
8056       - Now other nodes (clients and servers) will cache the latest
8057         directory they've pulled down.
8058       - They can enable their DirPort to serve it to others.
8059       - Clients will pull down a directory from any node with an open
8060         DirPort, and check the signature/timestamp correctly.
8061       - Authoritative dirservers now fetch directories from other
8062         authdirservers, to stay better synced.
8063       - Running-routers list tells who's down also, along with noting
8064         if they're verified (listed by nickname) or unverified (listed
8065         by hash-of-key).
8066       - Allow dirservers to serve running-router list separately.
8067         This isn't used yet.
8068     - ORs connect-on-demand to other ORs
8069       - If you get an extend cell to an OR you're not connected to,
8070         connect, handshake, and forward the create cell.
8071       - The authoritative dirservers stay connected to everybody,
8072         and everybody stays connected to 0.0.7 servers, but otherwise
8073         clients/servers expire unused connections after 5 minutes.
8074     - When servers get a sigint, they delay 30 seconds (refusing new
8075       connections) then exit. A second sigint causes immediate exit.
8076     - File and name management:
8077       - Look for .torrc if no CONFDIR "torrc" is found.
8078       - If no datadir is defined, then choose, make, and secure ~/.tor
8079         as datadir.
8080       - If torrc not found, exitpolicy reject *:*.
8081       - Expands ~/ in filenames to $HOME/ (but doesn't yet expand ~arma).
8082       - If no nickname is defined, derive default from hostname.
8083       - Rename secret key files, e.g. identity.key -> secret_id_key,
8084         to discourage people from mailing their identity key to tor-ops.
8085     - Refuse to build a circuit before the directory has arrived --
8086       it won't work anyway, since you won't know the right onion keys
8087       to use.
8088     - Try other dirservers immediately if the one you try is down. This
8089       should tolerate down dirservers better now.
8090     - Parse tor version numbers so we can do an is-newer-than check
8091       rather than an is-in-the-list check.
8092     - New socks command 'resolve', to let us shim gethostbyname()
8093       locally.
8094       - A 'tor_resolve' script to access the socks resolve functionality.
8095       - A new socks-extensions.txt doc file to describe our
8096         interpretation and extensions to the socks protocols.
8097     - Add a ContactInfo option, which gets published in descriptor.
8098     - Publish OR uptime in descriptor (and thus in directory) too.
8099     - Write tor version at the top of each log file
8100     - New docs in the tarball:
8101       - tor-doc.html.
8102       - Document that you should proxy your SSL traffic too.
8105 Changes in version 0.0.7.2 - 2004-07-07
8106   o A better fix for the 0.0.0.0 problem, that will hopefully
8107     eliminate the remaining related assertion failures.
8110 Changes in version 0.0.7.1 - 2004-07-04
8111   o When an address resolves to 0.0.0.0, treat it as a failed resolve,
8112     since internally we use 0.0.0.0 to signify "not yet resolved".
8115 Changes in version 0.0.7 - 2004-06-07
8116   o Updated the man page to reflect the new features.
8119 Changes in version 0.0.7rc2 - 2004-06-06
8120   o Changes from 0.0.7rc1:
8121     - Make it build on Win32 again.
8122   o Changes from 0.0.6.2:
8123     - Rotate dnsworkers and cpuworkers on SIGHUP, so they get new config
8124       settings too.
8127 Changes in version 0.0.7rc1 - 2004-06-02
8128   o Bugfixes:
8129     - On sighup, we were adding another log without removing the first
8130       one. So log messages would get duplicated n times for n sighups.
8131     - Several cases of using a connection after we'd freed it. The
8132       problem was that connections that are pending resolve are in both
8133       the pending_resolve tree, and also the circuit's resolving_streams
8134       list. When you want to remove one, you must remove it from both.
8135     - Fix a double-mark-for-close where an end cell arrived for a
8136       resolving stream, and then the resolve failed.
8137     - Check directory signatures based on name of signer, not on whom
8138       we got the directory from. This will let us cache directories more
8139       easily.
8140   o Features:
8141     - Crank up some of our constants to handle more users.
8144 Changes in version 0.0.7pre1 - 2004-06-02
8145   o Fixes for crashes and other obnoxious bugs:
8146     - Fix an epipe bug: sometimes when directory connections failed
8147       to connect, we would give them a chance to flush before closing
8148       them.
8149     - When we detached from a circuit because of resolvefailed, we
8150       would immediately try the same circuit twice more, and then
8151       give up on the resolve thinking we'd tried three different
8152       exit nodes.
8153     - Limit the number of intro circuits we'll attempt to build for a
8154       hidden service per 15-minute period.
8155     - Check recommended-software string *early*, before actually parsing
8156       the directory. Thus we can detect an obsolete version and exit,
8157       even if the new directory format doesn't parse.
8158   o Fixes for security bugs:
8159     - Remember which nodes are dirservers when you startup, and if a
8160       random OR enables his dirport, don't automatically assume he's
8161       a trusted dirserver.
8162   o Other bugfixes:
8163     - Directory connections were asking the wrong poll socket to
8164       start writing, and not asking themselves to start writing.
8165     - When we detached from a circuit because we sent a begin but
8166       didn't get a connected, we would use it again the first time;
8167       but after that we would correctly switch to a different one.
8168     - Stop warning when the first onion decrypt attempt fails; they
8169       will sometimes legitimately fail now that we rotate keys.
8170     - Override unaligned-access-ok check when $host_cpu is ia64 or
8171       arm. Apparently they allow it but the kernel whines.
8172     - Dirservers try to reconnect periodically too, in case connections
8173       have failed.
8174     - Fix some memory leaks in directory servers.
8175     - Allow backslash in Win32 filenames.
8176     - Made Tor build complain-free on FreeBSD, hopefully without
8177       breaking other BSD builds. We'll see.
8178   o Features:
8179     - Doxygen markup on all functions and global variables.
8180     - Make directory functions update routerlist, not replace it. So
8181       now directory disagreements are not so critical a problem.
8182     - Remove the upper limit on number of descriptors in a dirserver's
8183       directory (not that we were anywhere close).
8184     - Allow multiple logfiles at different severity ranges.
8185     - Allow *BindAddress to specify ":port" rather than setting *Port
8186       separately. Allow multiple instances of each BindAddress config
8187       option, so you can bind to multiple interfaces if you want.
8188     - Allow multiple exit policy lines, which are processed in order.
8189       Now we don't need that huge line with all the commas in it.
8190     - Enable accept/reject policies on SOCKS connections, so you can bind
8191       to 0.0.0.0 but still control who can use your OP.
8194 Changes in version 0.0.6.2 - 2004-05-16
8195   o Our integrity-checking digest was checking only the most recent cell,
8196     not the previous cells like we'd thought.
8197     Thanks to Stefan Mark for finding the flaw!
8200 Changes in version 0.0.6.1 - 2004-05-06
8201   o Fix two bugs in our AES counter-mode implementation (this affected
8202     onion-level stream encryption, but not TLS-level). It turns
8203     out we were doing something much more akin to a 16-character
8204     polyalphabetic cipher. Oops.
8205     Thanks to Stefan Mark for finding the flaw!
8206   o Retire moria3 as a directory server, and add tor26 as a directory
8207     server.
8210 Changes in version 0.0.6 - 2004-05-02
8211   [version bump only]
8214 Changes in version 0.0.6rc4 - 2004-05-01
8215   o Update the built-in dirservers list to use the new directory format
8216   o Fix a rare seg fault: if a node offering a hidden service attempts
8217     to build a circuit to Alice's rendezvous point and fails before it
8218     reaches the last hop, it retries with a different circuit, but
8219     then dies.
8220   o Handle windows socket errors correctly.
8223 Changes in version 0.0.6rc3 - 2004-04-28
8224   o Don't expire non-general excess circuits (if we had enough
8225     circuits open, we were expiring rendezvous circuits -- even
8226     when they had a stream attached. oops.)
8227   o Fetch randomness from /dev/urandom better (not via fopen/fread)
8228   o Better debugging for tls errors
8229   o Some versions of openssl have an SSL_pending function that erroneously
8230     returns bytes when there is a non-application record pending.
8231   o Set Content-Type on the directory and hidserv descriptor.
8232   o Remove IVs from cipher code, since AES-ctr has none.
8233   o Win32 fixes. Tor now compiles on win32 with no warnings/errors.
8234     o We were using an array of length zero in a few places.
8235     o win32's gethostbyname can't resolve an IP to an IP.
8236     o win32's close can't close a socket.
8239 Changes in version 0.0.6rc2 - 2004-04-26
8240   o Fix a bug where we were closing tls connections intermittently.
8241     It turns out openssl keeps its errors around -- so if an error
8242     happens, and you don't ask about it, and then another openssl
8243     operation happens and succeeds, and you ask if there was an error,
8244     it tells you about the first error. Fun fun.
8245   o Fix a bug that's been lurking since 27 may 03 (!)
8246     When passing back a destroy cell, we would use the wrong circ id.
8247     'Mostly harmless', but still worth fixing.
8248   o Since we don't support truncateds much, don't bother sending them;
8249     just close the circ.
8250   o check for <machine/limits.h> so we build on NetBSD again (I hope).
8251   o don't crash if a conn that sent a begin has suddenly lost its circuit
8252     (this was quite rare).
8255 Changes in version 0.0.6rc1 - 2004-04-25
8256   o We now rotate link (tls context) keys and onion keys.
8257   o CREATE cells now include oaep padding, so you can tell
8258     if you decrypted them correctly.
8259   o Add bandwidthburst to server descriptor.
8260   o Directories now say which dirserver signed them.
8261   o Use a tor_assert macro that logs failed assertions too.
8264 Changes in version 0.0.6pre5 - 2004-04-18
8265   o changes from 0.0.6pre4:
8266     - make tor build on broken freebsd 5.2 installs
8267     - fix a failed assert when you try an intro point, get a nack, and try
8268       a second one and it works.
8269     - when alice uses a port that the hidden service doesn't accept,
8270       it now sends back an end cell (denied by exit policy). otherwise
8271       alice would just have to wait to time out.
8272     - fix another rare bug: when we had tried all the intro
8273       points for a hidden service, we fetched the descriptor
8274       again, but we left our introcirc thinking it had already
8275       sent an intro, so it kept waiting for a response...
8276     - bugfix: when you sleep your hidden-service laptop, as soon
8277       as it wakes up it tries to upload a service descriptor, but
8278       socketpair fails for some reason (localhost not up yet?).
8279       now we simply give up on that upload, and we'll try again later.
8280       i'd still like to find the bug though.
8281     - if an intro circ waiting for an ack dies before getting one, then
8282       count it as a nack
8283     - we were reusing stale service descriptors and refetching usable
8284       ones. oops.
8287 Changes in version 0.0.6pre4 - 2004-04-14
8288   o changes from 0.0.6pre3:
8289     - when bob fails to connect to the rendezvous point, and his
8290       circ didn't fail because of the rendezvous point itself, then
8291       he retries a couple of times
8292     - we expire introduction and rendezvous circs more thoroughly
8293       (sometimes they were hanging around forever)
8294     - we expire unattached rendezvous streams that have been around
8295       too long (they were sticking around forever).
8296     - fix a measly fencepost error that was crashing everybody with
8297       a strict glibc.
8300 Changes in version 0.0.6pre3 - 2004-04-14
8301   o changes from 0.0.6pre2:
8302     - make hup work again
8303     - fix some memory leaks for dirservers
8304     - allow more skew in rendezvous descriptor timestamps, to help
8305       handle people like blanu who don't know what time it is
8306     - normal circs are 3 hops, but some rend/intro circs are 4, if
8307       the initiator doesn't get to choose the last hop
8308     - send acks for introductions, so alice can know whether to try
8309       again
8310     - bob publishes intro points more correctly
8311   o changes from 0.0.5:
8312     - fix an assert trigger that's been plaguing us since the days
8313       of 0.0.2prexx (thanks weasel!)
8314     - retry stream correctly when we fail to connect because of
8315       exit-policy-reject (should try another) or can't-resolve-address
8316       (also should try another, because dns on random internet servers
8317       is flaky).
8318     - when we hup a dirserver and we've *removed* a server from the
8319       approved-routers list, now we remove that server from the
8320       in-memory directories too
8323 Changes in version 0.0.6pre2 - 2004-04-08
8324   o We fixed our base32 implementation. Now it works on all architectures.
8327 Changes in version 0.0.6pre1 - 2004-04-08
8328   o Features:
8329     - Hidden services and rendezvous points are implemented. Go to
8330       http://6sxoyfb3h2nvok2d.onion/ for an index of currently available
8331       hidden services. (This only works via a socks4a proxy such as
8332       Privoxy, and currently it's quite slow.)
8335 Changes in version 0.0.5 - 2004-03-30
8336   [version bump only]
8339 Changes in version 0.0.5rc3 - 2004-03-29
8340   o Install torrc as torrc.sample -- we no longer clobber your
8341     torrc. (Woo!)
8342   o Re-enable recommendedversion checking (we broke it in rc2, oops)
8343   o Add in a 'notice' log level for things the operator should hear
8344     but that aren't warnings
8347 Changes in version 0.0.5rc2 - 2004-03-29
8348   o Hold socks connection open until reply is flushed (if possible)
8349   o Make exit nodes resolve IPs to IPs immediately, rather than asking
8350     the dns farm to do it.
8351   o Fix c99 aliasing warnings in rephist.c
8352   o Don't include server descriptors that are older than 24 hours in the
8353     directory.
8354   o Give socks 'reject' replies their whole 15s to attempt to flush,
8355     rather than seeing the 60s timeout and assuming the flush had failed.
8356   o Clean automake droppings from the cvs repository
8359 Changes in version 0.0.5rc1 - 2004-03-28
8360   o Fix mangled-state bug in directory fetching (was causing sigpipes).
8361   o Only build circuits after we've fetched the directory: clients were
8362     using only the directory servers before they'd fetched a directory.
8363     This also means longer startup time; so it goes.
8364   o Fix an assert trigger where an OP would fail to handshake, and we'd
8365     expect it to have a nickname.
8366   o Work around a tsocks bug: do a socks reject when AP connection dies
8367     early, else tsocks goes into an infinite loop.
8370 Changes in version 0.0.4 - 2004-03-26
8371   o When connecting to a dirserver or OR and the network is down,
8372     we would crash.
8375 Changes in version 0.0.3 - 2004-03-26
8376   o Warn and fail if server chose a nickname with illegal characters
8377   o Port to Solaris and Sparc:
8378     - include missing header fcntl.h
8379     - have autoconf find -lsocket -lnsl automatically
8380     - deal with hardware word alignment
8381     - make uname() work (solaris has a different return convention)
8382     - switch from using signal() to sigaction()
8383   o Preliminary work on reputation system:
8384     - Keep statistics on success/fail of connect attempts; they're published
8385       by kill -USR1 currently.
8386     - Add a RunTesting option to try to learn link state by creating test
8387       circuits, even when SocksPort is off.
8388     - Remove unused open circuits when there are too many.
8391 Changes in version 0.0.2 - 2004-03-19
8392     - Include strlcpy and strlcat for safer string ops
8393     - define INADDR_NONE so we compile (but still not run) on solaris
8396 Changes in version 0.0.2pre27 - 2004-03-14
8397   o Bugfixes:
8398     - Allow internal tor networks (we were rejecting internal IPs,
8399       now we allow them if they're set explicitly).
8400     - And fix a few endian issues.
8403 Changes in version 0.0.2pre26 - 2004-03-14
8404   o New features:
8405     - If a stream times out after 15s without a connected cell, don't
8406       try that circuit again: try a new one.
8407     - Retry streams at most 4 times. Then give up.
8408     - When a dirserver gets a descriptor from an unknown router, it
8409       logs its fingerprint (so the dirserver operator can choose to
8410       accept it even without mail from the server operator).
8411     - Inform unapproved servers when we reject their descriptors.
8412     - Make tor build on Windows again. It works as a client, who knows
8413       about as a server.
8414     - Clearer instructions in the torrc for how to set up a server.
8415     - Be more efficient about reading fd's when our global token bucket
8416       (used for rate limiting) becomes empty.
8417   o Bugfixes:
8418     - Stop asserting that computers always go forward in time. It's
8419       simply not true.
8420     - When we sent a cell (e.g. destroy) and then marked an OR connection
8421       expired, we might close it before finishing a flush if the other
8422       side isn't reading right then.
8423     - Don't allow dirservers to start if they haven't defined
8424       RecommendedVersions
8425     - We were caching transient dns failures. Oops.
8426     - Prevent servers from publishing an internal IP as their address.
8427     - Address a strcat vulnerability in circuit.c
8430 Changes in version 0.0.2pre25 - 2004-03-04
8431   o New features:
8432     - Put the OR's IP in its router descriptor, not its fqdn. That way
8433       we'll stop being stalled by gethostbyname for nodes with flaky dns,
8434       e.g. poblano.
8435   o Bugfixes:
8436     - If the user typed in an address that didn't resolve, the server
8437       crashed.
8440 Changes in version 0.0.2pre24 - 2004-03-03
8441   o Bugfixes:
8442     - Fix an assertion failure in dns.c, where we were trying to dequeue
8443       a pending dns resolve even if it wasn't pending
8444     - Fix a spurious socks5 warning about still trying to write after the
8445       connection is finished.
8446     - Hold certain marked_for_close connections open until they're finished
8447       flushing, rather than losing bytes by closing them too early.
8448     - Correctly report the reason for ending a stream
8449     - Remove some duplicate calls to connection_mark_for_close
8450     - Put switch_id and start_daemon earlier in the boot sequence, so it
8451       will actually try to chdir() to options.DataDirectory
8452     - Make 'make test' exit(1) if a test fails; fix some unit tests
8453     - Make tor fail when you use a config option it doesn't know about,
8454       rather than warn and continue.
8455     - Make --version work
8456     - Bugfixes on the rpm spec file and tor.sh, so it's more up to date
8459 Changes in version 0.0.2pre23 - 2004-02-29
8460   o New features:
8461     - Print a statement when the first circ is finished, so the user
8462       knows it's working.
8463     - If a relay cell is unrecognized at the end of the circuit,
8464       send back a destroy. (So attacks to mutate cells are more
8465       clearly thwarted.)
8466     - New config option 'excludenodes' to avoid certain nodes for circuits.
8467     - When it daemonizes, it chdir's to the DataDirectory rather than "/",
8468       so you can collect coredumps there.
8469  o Bugfixes:
8470     - Fix a bug in tls flushing where sometimes data got wedged and
8471       didn't flush until more data got sent. Hopefully this bug was
8472       a big factor in the random delays we were seeing.
8473     - Make 'connected' cells include the resolved IP, so the client
8474       dns cache actually gets populated.
8475     - Disallow changing from ORPort=0 to ORPort>0 on hup.
8476     - When we time-out on a stream and detach from the circuit, send an
8477       end cell down it first.
8478     - Only warn about an unknown router (in exitnodes, entrynodes,
8479       excludenodes) after we've fetched a directory.
8482 Changes in version 0.0.2pre22 - 2004-02-26
8483   o New features:
8484     - Servers publish less revealing uname information in descriptors.
8485     - More memory tracking and assertions, to crash more usefully when
8486       errors happen.
8487     - If the default torrc isn't there, just use some default defaults.
8488       Plus provide an internal dirservers file if they don't have one.
8489     - When the user tries to use Tor as an http proxy, give them an http
8490       501 failure explaining that we're a socks proxy.
8491     - Dump a new router.desc on hup, to help confused people who change
8492       their exit policies and then wonder why router.desc doesn't reflect
8493       it.
8494     - Clean up the generic tor.sh init script that we ship with.
8495   o Bugfixes:
8496     - If the exit stream is pending on the resolve, and a destroy arrives,
8497       then the stream wasn't getting removed from the pending list. I
8498       think this was the one causing recent server crashes.
8499     - Use a more robust poll on OSX 10.3, since their poll is flaky.
8500     - When it couldn't resolve any dirservers, it was useless from then on.
8501       Now it reloads the RouterFile (or default dirservers) if it has no
8502       dirservers.
8503     - Move the 'tor' binary back to /usr/local/bin/ -- it turns out
8504       many users don't even *have* a /usr/local/sbin/.
8507 Changes in version 0.0.2pre21 - 2004-02-18
8508   o New features:
8509     - There's a ChangeLog file that actually reflects the changelog.
8510     - There's a 'torify' wrapper script, with an accompanying
8511       tor-tsocks.conf, that simplifies the process of using tsocks for
8512       tor. It even has a man page.
8513     - The tor binary gets installed to sbin rather than bin now.
8514     - Retry streams where the connected cell hasn't arrived in 15 seconds
8515     - Clean up exit policy handling -- get the default out of the torrc,
8516       so we can update it without forcing each server operator to fix
8517       his/her torrc.
8518     - Allow imaps and pop3s in default exit policy
8519   o Bugfixes:
8520     - Prevent picking middleman nodes as the last node in the circuit
8523 Changes in version 0.0.2pre20 - 2004-01-30
8524   o New features:
8525     - We now have a deb package, and it's in debian unstable. Go to
8526       it, apt-getters. :)
8527     - I've split the TotalBandwidth option into BandwidthRate (how many
8528       bytes per second you want to allow, long-term) and
8529       BandwidthBurst (how many bytes you will allow at once before the cap
8530       kicks in).  This better token bucket approach lets you, say, set
8531       BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
8532       performance while not exceeding your monthly bandwidth quota.
8533     - Push out a tls record's worth of data once you've got it, rather
8534       than waiting until you've read everything waiting to be read. This
8535       may improve performance by pipelining better. We'll see.
8536     - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
8537       from failed circuits (if they haven't been connected yet) and attach
8538       to new ones.
8539     - Expire old streams that haven't managed to connect. Some day we'll
8540       have them reattach to new circuits instead.
8542   o Bugfixes:
8543     - Fix several memory leaks that were causing servers to become bloated
8544       after a while.
8545     - Fix a few very rare assert triggers. A few more remain.
8546     - Setuid to User _before_ complaining about running as root.
8549 Changes in version 0.0.2pre19 - 2004-01-07
8550   o Bugfixes:
8551     - Fix deadlock condition in dns farm. We were telling a child to die by
8552       closing the parent's file descriptor to him. But newer children were
8553       inheriting the open file descriptor from the parent, and since they
8554       weren't closing it, the socket never closed, so the child never read
8555       eof, so he never knew to exit. Similarly, dns workers were holding
8556       open other sockets, leading to all sorts of chaos.
8557     - New cleaner daemon() code for forking and backgrounding.
8558     - If you log to a file, it now prints an entry at the top of the
8559       logfile so you know it's working.
8560     - The onionskin challenge length was 30 bytes longer than necessary.
8561     - Started to patch up the spec so it's not quite so out of date.
8564 Changes in version 0.0.2pre18 - 2004-01-02
8565   o Bugfixes:
8566     - Fix endian issues with the 'integrity' field in the relay header.
8567     - Fix a potential bug where connections in state
8568       AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
8571 Changes in version 0.0.2pre17 - 2003-12-30
8572   o Bugfixes:
8573     - Made --debuglogfile (or any second log file, actually) work.
8574     - Resolved an edge case in get_unique_circ_id_by_conn where a smart
8575       adversary could force us into an infinite loop.
8577   o Features:
8578     - Each onionskin handshake now includes a hash of the computed key,
8579       to prove the server's identity and help perfect forward secrecy.
8580     - Changed cell size from 256 to 512 bytes (working toward compatibility
8581       with MorphMix).
8582     - Changed cell length to 2 bytes, and moved it to the relay header.
8583     - Implemented end-to-end integrity checking for the payloads of
8584       relay cells.
8585     - Separated streamid from 'recognized' (otherwise circuits will get
8586       messed up when we try to have streams exit from the middle). We
8587       use the integrity-checking to confirm that a cell is addressed to
8588       this hop.
8589     - Randomize the initial circid and streamid values, so an adversary who
8590       breaks into a node can't learn how many circuits or streams have
8591       been made so far.
8594 Changes in version 0.0.2pre16 - 2003-12-14
8595   o Bugfixes:
8596     - Fixed a bug that made HUP trigger an assert
8597     - Fixed a bug where a circuit that immediately failed wasn't being
8598       counted as a failed circuit in counting retries.
8600   o Features:
8601     - Now we close the circuit when we get a truncated cell: otherwise we're
8602       open to an anonymity attack where a bad node in the path truncates
8603       the circuit and then we open streams at him.
8604     - Add port ranges to exit policies
8605     - Add a conservative default exit policy
8606     - Warn if you're running tor as root
8607     - on HUP, retry OR connections and close/rebind listeners
8608     - options.EntryNodes: try these nodes first when picking the first node
8609     - options.ExitNodes: if your best choices happen to include any of
8610       your preferred exit nodes, you choose among just those preferred
8611       exit nodes.
8612     - options.ExcludedNodes: nodes that are never picked in path building
8615 Changes in version 0.0.2pre15 - 2003-12-03
8616   o Robustness and bugfixes:
8617     - Sometimes clients would cache incorrect DNS resolves, which would
8618       really screw things up.
8619     - An OP that goes offline would slowly leak all its sockets and stop
8620       working.
8621     - A wide variety of bugfixes in exit node selection, exit policy
8622       handling, and processing pending streams when a new circuit is
8623       established.
8624     - Pick nodes for a path only from those the directory says are up
8625     - Choose randomly from all running dirservers, not always the first one
8626     - Increase allowed http header size for directory fetch.
8627     - Stop writing to stderr (if we're daemonized it will be closed).
8628     - Enable -g always, so cores will be more useful to me.
8629     - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
8631   o Documentation:
8632     - Wrote a man page. It lists commonly used options.
8634   o Configuration:
8635     - Change default loglevel to warn.
8636     - Make PidFile default to null rather than littering in your CWD.
8637     - OnionRouter config option is now obsolete. Instead it just checks
8638       ORPort>0.
8639     - Moved to a single unified torrc file for both clients and servers.
8642 Changes in version 0.0.2pre14 - 2003-11-29
8643   o Robustness and bugfixes:
8644     - Force the admin to make the DataDirectory himself
8645       - to get ownership/permissions right
8646       - so clients no longer make a DataDirectory and then never use it
8647     - fix bug where a client who was offline for 45 minutes would never
8648       pull down a directory again
8649     - fix (or at least hide really well) the dns assert bug that was
8650       causing server crashes
8651     - warnings and improved robustness wrt clockskew for certs
8652     - use the native daemon(3) to daemonize, when available
8653     - exit if bind() fails
8654     - exit if neither socksport nor orport is defined
8655     - include our own tor_timegm (Win32 doesn't have its own)
8656     - bugfix for win32 with lots of connections
8657     - fix minor bias in PRNG
8658     - make dirserver more robust to corrupt cached directory
8660   o Documentation:
8661     - Wrote the design document (woo)
8663   o Circuit building and exit policies:
8664     - Circuits no longer try to use nodes that the directory has told them
8665       are down.
8666     - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
8667       bitcounts (18.0.0.0/8).
8668     - Make AP connections standby for a circuit if no suitable circuit
8669       exists, rather than failing
8670     - Circuits choose exit node based on addr/port, exit policies, and
8671       which AP connections are standing by
8672     - Bump min pathlen from 2 to 3
8673     - Relay end cells have a payload to describe why the stream ended.
8674     - If the stream failed because of exit policy, try again with a new
8675       circuit.
8676     - Clients have a dns cache to remember resolved addresses.
8677     - Notice more quickly when we have no working circuits
8679   o Configuration:
8680     - APPort is now called SocksPort
8681     - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
8682       where to bind
8683     - RecommendedVersions is now a config variable rather than
8684       hardcoded (for dirservers)
8685     - Reloads config on HUP
8686     - Usage info on -h or --help
8687     - If you set User and Group config vars, it'll setu/gid to them.
8690 Changes in version 0.0.2pre13 - 2003-10-19
8691   o General stability:
8692     - SSL_write no longer fails when it returns WANTWRITE and the number
8693       of bytes in the buf has changed by the next SSL_write call.
8694     - Fix segfault fetching directory when network is down
8695     - Fix a variety of minor memory leaks
8696     - Dirservers reload the fingerprints file on HUP, so I don't have
8697       to take down the network when I approve a new router
8698     - Default server config file has explicit Address line to specify fqdn
8700   o Buffers:
8701     - Buffers grow and shrink as needed (Cut process size from 20M to 2M)
8702     - Make listener connections not ever alloc bufs
8704   o Autoconf improvements:
8705     - don't clobber an external CFLAGS in ./configure
8706     - Make install now works
8707     - create var/lib/tor on make install
8708     - autocreate a tor.sh initscript to help distribs
8709     - autocreate the torrc and sample-server-torrc with correct paths
8711   o Log files and Daemonizing now work:
8712     - If --DebugLogFile is specified, log to it at -l debug
8713     - If --LogFile is specified, use it instead of commandline
8714     - If --RunAsDaemon is set, tor forks and backgrounds on startup