If we're a relay, avoid picking ourselves as an introduction point,
[tor.git] / ChangeLog
blobec656b9c8eee346a4972fd82806b62a44e8dd6a7
1 Changes in version 0.2.0.19-alpha - 2008-02-??
2   o Major bugfixes:
3     - If we're a relay, avoid picking ourselves as an introduction point,
4       a rendezvous point, or as the final hop for internal circuits. Bug
5       reported by taranis and lodger. Bugfix on 0.1.2.x.
7   o Minor bugfixes:
8     - Directory caches now fetch certificates from all authorities
9       listed in a networkstatus consensus, even when they do not
10       recognize them.  Fixes bug 571.  Bugfix on 0.2.0.x.
11     - Stop recommending that every server operator send mail to tor-ops.
12       Resolves bug 597.  Bugfix on 0.1.2.x.
13     - Detect version of OSX where malloc_good_size is present in the
14       library but never actually declared.  Resolves bug 587.  Bugfix
15       on 0.2.0.x.
16     - When connecting to a bridge without specifying its key, insert
17       the connection into the identity-to-connection map as soon as
18       a key is learned.  Fixes bug 574.  Bugfix on 0.2.0.x.
19     - When our consensus networkstatus has been expired for a while, stop
20       being willing to build circuits using it.  Fixes bug 401.  Bugfix on
21       0.1.2.x.
22     - Stop incorrectly truncating zlib responses to directory authority
23       signature download requests.  Fix for bug 593.  Bugfix on 0.2.0.x.
24     - Don't trigger an assert if we start a directory authority with a
25       private IP address (like 127.0.0.1).
28 Changes in version 0.2.0.18-alpha - 2008-01-25
29   o New directory authorities:
30     - Set up dannenberg (run by CCC) as the sixth v3 directory
31       authority.
33   o Major bugfixes:
34     - Fix a major memory leak when attempting to use the v2 TLS
35       handshake code. Bugfix on 0.2.0.x; fixes bug 589.
36     - We accidentally enabled the under-development v2 TLS handshake
37       code, which was causing log entries like "TLS error while
38       renegotiating handshake". Disable it again. Resolves bug 590.
39     - We were computing the wrong Content-Length: header for directory
40       responses that need to be compressed on the fly, causing clients
41       asking for those items to always fail. Bugfix on 0.2.0.x; fixes
42       bug 593.
44   o Major features:
45     - Avoid going directly to the directory authorities even if you're a
46       relay, if you haven't found yourself reachable yet or if you've
47       decided not to advertise your dirport yet. Addresses bug 556.
48     - If we've gone 12 hours since our last bandwidth check, and we
49       estimate we have less than 50KB bandwidth capacity but we could
50       handle more, do another bandwidth test.
51     - New config options WarnPlaintextPorts and RejectPlaintextPorts so
52       Tor can warn and/or refuse connections to ports commonly used with
53       vulnerable-plaintext protocols. Currently we warn on ports 23,
54       109, 110, and 143, but we don't reject any.
56   o Minor bugfixes:
57     - When we setconf ClientOnly to 1, close any current OR and Dir
58       listeners. Reported by mwenge.
59     - When we get a consensus that's been signed by more people than
60       we expect, don't log about it; it's not a big deal. Reported
61       by Kyle Williams.
63   o Minor features:
64     - Don't answer "/tor/networkstatus-bridges" directory requests if
65       the request isn't encrypted.
66     - Make "ClientOnly 1" config option disable directory ports too.
67     - Patches from Karsten Loesing to make v2 hidden services more
68       robust: work even when there aren't enough HSDir relays available;
69       retry when a v2 rend desc fetch fails; but don't retry if we
70       already have a usable v0 rend desc.
73 Changes in version 0.2.0.17-alpha - 2008-01-17
74   Tor 0.2.0.17-alpha makes the tarball build cleanly again (whoops).
76   o Compile fixes:
77     - Make the tor-gencert man page get included correctly in the tarball.
80 Changes in version 0.2.0.16-alpha - 2008-01-17
81   Tor 0.2.0.16-alpha adds a fifth v3 directory authority run by Karsten
82   Loesing, and generally cleans up a lot of features and minor bugs.
84   o New directory authorities:
85     - Set up gabelmoo (run by Karsten Loesing) as the fifth v3 directory
86       authority.
88   o Major performance improvements:
89     - Switch our old ring buffer implementation for one more like that
90       used by free Unix kernels. The wasted space in a buffer with 1mb
91       of data will now be more like 8k than 1mb. The new implementation
92       also avoids realloc();realloc(); patterns that can contribute to
93       memory fragmentation.
95   o Minor features:
96     - Configuration files now accept C-style strings as values. This
97       helps encode characters not allowed in the current configuration
98       file format, such as newline or #. Addresses bug 557.
99     - Although we fixed bug 539 (where servers would send HTTP status 503
100       responses _and_ send a body too), there are still servers out
101       there that haven't upgraded. Therefore, make clients parse such
102       bodies when they receive them.
103     - When we're not serving v2 directory information, there is no reason
104       to actually keep any around. Remove the obsolete files and directory
105       on startup if they are very old and we aren't going to serve them.
107   o Minor performance improvements:
108     - Reference-count and share copies of address policy entries; only 5%
109       of them were actually distinct.
110     - Never walk through the list of logs if we know that no log is
111       interested in a given message.
113   o Minor bugfixes:
114     - When an authority has not signed a consensus, do not try to
115       download a nonexistent "certificate with key 00000000". Bugfix
116       on 0.2.0.x. Fixes bug 569.
117     - Fix a rare assert error when we're closing one of our threads:
118       use a mutex to protect the list of logs, so we never write to the
119       list as it's being freed. Bugfix on 0.1.2.x. Fixes the very rare
120       bug 575, which is kind of the revenge of bug 222.
121     - Patch from Karsten Loesing to complain less at both the client
122       and the relay when a relay used to have the HSDir flag but doesn't
123       anymore, and we try to upload a hidden service descriptor.
124     - Stop leaking one cert per TLS context. Fixes bug 582. Bugfix on
125       0.2.0.15-alpha.
126     - Do not try to download missing certificates until we have tried
127       to check our fallback consensus. Fixes bug 583.
128     - Make bridges round reported GeoIP stats info up to the nearest
129       estimate, not down. Now we can distinguish between "0 people from
130       this country" and "1 person from this country".
131     - Avoid a spurious free on base64 failure. Bugfix on 0.1.2.
132     - Avoid possible segfault if key generation fails in
133       crypto_pk_hybrid_encrypt. Bugfix on 0.2.0.
134     - Avoid segfault in the case where a badly behaved v2 versioning
135       directory sends a signed networkstatus with missing client-versions.
136       Bugfix on 0.1.2.
137     - Avoid segfaults on certain complex invocations of
138       router_get_by_hexdigest(). Bugfix on 0.1.2.
139     - Correct bad index on array access in parse_http_time(). Bugfix
140       on 0.2.0.
141     - Fix possible bug in vote generation when server versions are present
142       but client versions are not.
143     - Fix rare bug on REDIRECTSTREAM control command when called with no
144       port set: it could erroneously report an error when none had
145       happened.
146     - Avoid bogus crash-prone, leak-prone tor_realloc when we're
147       compressing large objects and find ourselves with more than 4k
148       left over. Bugfix on 0.2.0.
149     - Fix a small memory leak when setting up a hidden service.
150     - Fix a few memory leaks that could in theory happen under bizarre
151       error conditions.
152     - Fix an assert if we post a general-purpose descriptor via the
153       control port but that descriptor isn't mentioned in our current
154       network consensus. Bug reported by Jon McLachlan; bugfix on
155       0.2.0.9-alpha.
157   o Minor features (controller):
158     - Get NS events working again. Patch from tup.
159     - The GETCONF command now escapes and quotes configuration values
160       that don't otherwise fit into the torrc file.
161     - The SETCONF command now handles quoted values correctly.
163   o Minor features (directory authorities):
164     - New configuration options to override default maximum number of
165       servers allowed on a single IP address. This is important for
166       running a test network on a single host.
167     - Actually implement the -s option to tor-gencert.
168     - Add a manual page for tor-gencert.
170   o Minor features (bridges):
171     - Bridge authorities no longer serve bridge descriptors over
172       unencrypted connections.
174   o Minor features (other):
175     - Add hidden services and DNSPorts to the list of things that make
176       Tor accept that it has running ports. Change starting Tor with no
177       ports from a fatal error to a warning; we might change it back if
178       this turns out to confuse anybody. Fixes bug 579.
181 Changes in version 0.1.2.19 - 2008-01-17
182   Tor 0.1.2.19 fixes a huge memory leak on exit relays, makes the default
183   exit policy a little bit more conservative so it's safer to run an
184   exit relay on a home system, and fixes a variety of smaller issues.
186   o Security fixes:
187     - Exit policies now reject connections that are addressed to a
188       relay's public (external) IP address too, unless
189       ExitPolicyRejectPrivate is turned off. We do this because too
190       many relays are running nearby to services that trust them based
191       on network address.
193   o Major bugfixes:
194     - When the clock jumps forward a lot, do not allow the bandwidth
195       buckets to become negative. Fixes bug 544.
196     - Fix a memory leak on exit relays; we were leaking a cached_resolve_t
197       on every successful resolve. Reported by Mike Perry.
198     - Purge old entries from the "rephist" database and the hidden
199       service descriptor database even when DirPort is zero.
200     - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
201       requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
202       crashing or mis-answering these requests.
203     - When we decide to send a 503 response to a request for servers, do
204       not then also send the server descriptors: this defeats the whole
205       purpose. Fixes bug 539.
207   o Minor bugfixes:
208     - Changing the ExitPolicyRejectPrivate setting should cause us to
209       rebuild our server descriptor.
210     - Fix handling of hex nicknames when answering controller requests for
211       networkstatus by name, or when deciding whether to warn about
212       unknown routers in a config option. (Patch from mwenge.)
213     - Fix a couple of hard-to-trigger autoconf problems that could result
214       in really weird results on platforms whose sys/types.h files define
215       nonstandard integer types.
216     - Don't try to create the datadir when running --verify-config or
217       --hash-password. Resolves bug 540.
218     - If we were having problems getting a particular descriptor from the
219       directory caches, and then we learned about a new descriptor for
220       that router, we weren't resetting our failure count. Reported
221       by lodger.
222     - Although we fixed bug 539 (where servers would send HTTP status 503
223       responses _and_ send a body too), there are still servers out there
224       that haven't upgraded. Therefore, make clients parse such bodies
225       when they receive them.
226     - Run correctly on systems where rlim_t is larger than unsigned long.
227       This includes some 64-bit systems.
228     - Run correctly on platforms (like some versions of OS X 10.5) where
229       the real limit for number of open files is OPEN_FILES, not rlim_max
230       from getrlimit(RLIMIT_NOFILES).
231     - Avoid a spurious free on base64 failure.
232     - Avoid segfaults on certain complex invocations of
233       router_get_by_hexdigest().
234     - Fix rare bug on REDIRECTSTREAM control command when called with no
235       port set: it could erroneously report an error when none had
236       happened.
239 Changes in version 0.2.0.15-alpha - 2007-12-25
240   Tor 0.2.0.14-alpha and 0.2.0.15-alpha fix a bunch of bugs with the
241   features added in 0.2.0.13-alpha.
243   o Major bugfixes:
244     - Fix several remotely triggerable asserts based on DirPort requests
245       for a v2 or v3 networkstatus object before we were prepared. This
246       was particularly bad for 0.2.0.13 and later bridge relays, who
247       would never have a v2 networkstatus and would thus always crash
248       when used. Bugfixes on 0.2.0.x.
249     - Estimate the v3 networkstatus size more accurately, rather than
250       estimating it at zero bytes and giving it artificially high priority
251       compared to other directory requests. Bugfix on 0.2.0.x.
253   o Minor bugfixes:
254     - Fix configure.in logic for cross-compilation.
255     - When we load a bridge descriptor from the cache, and it was
256       previously unreachable, mark it as retriable so we won't just
257       ignore it. Also, try fetching a new copy immediately. Bugfixes
258       on 0.2.0.13-alpha.
259     - The bridge GeoIP stats were counting other relays, for example
260       self-reachability and authority-reachability tests.
262   o Minor features:
263     - Support compilation to target iPhone; patch from cjacker huang.
264       To build for iPhone, pass the --enable-iphone option to configure.
267 Changes in version 0.2.0.14-alpha - 2007-12-23
268   o Major bugfixes:
269     - Fix a crash on startup if you install Tor 0.2.0.13-alpha fresh
270       without a datadirectory from a previous Tor install. Reported
271       by Zax.
272     - Fix a crash when we fetch a descriptor that turns out to be
273       unexpected (it used to be in our networkstatus when we started
274       fetching it, but it isn't in our current networkstatus), and we
275       aren't using bridges. Bugfix on 0.2.0.x.
276     - Fix a crash when accessing hidden services: it would work the first
277       time you use a given introduction point for your service, but
278       on subsequent requests we'd be using garbage memory. Fixed by
279       Karsten Loesing. Bugfix on 0.2.0.13-alpha.
280     - Fix a crash when we load a bridge descriptor from disk but we don't
281       currently have a Bridge line for it in our torrc. Bugfix on
282       0.2.0.13-alpha.
284   o Major features:
285     - If bridge authorities set BridgePassword, they will serve a
286       snapshot of known bridge routerstatuses from their DirPort to
287       anybody who knows that password. Unset by default.
289   o Minor bugfixes:
290     - Make the unit tests build again.
291     - Make "GETINFO/desc-annotations/id/<OR digest>" actually work.
292     - Make PublishServerDescriptor default to 1, so the default doesn't
293       have to change as we invent new directory protocol versions.
294     - Fix test for rlim_t on OSX 10.3: sys/resource.h doesn't want to
295       be included unless sys/time.h is already included.  Fixes
296       bug 553.  Bugfix on 0.2.0.x.
297     - If we receive a general-purpose descriptor and then receive an
298       identical bridge-purpose descriptor soon after, don't discard
299       the next one as a duplicate.
301   o Minor features:
302     - If BridgeRelay is set to 1, then the default for
303       PublishServerDescriptor is now "bridge" rather than "v2,v3".
304     - If the user sets RelayBandwidthRate but doesn't set
305       RelayBandwidthBurst, then make them equal rather than erroring out.
308 Changes in version 0.2.0.13-alpha - 2007-12-21
309   Tor 0.2.0.13-alpha adds a fourth v3 directory authority run by Geoff
310   Goodell, fixes many more bugs, and adds a lot of infrastructure for
311   upcoming features.
313   o New directory authorities:
314     - Set up lefkada (run by Geoff Goodell) as the fourth v3 directory
315       authority.
317   o Major bugfixes:
318     - Only update guard status (usable / not usable) once we have
319       enough directory information. This was causing us to always pick
320       two new guards on startup (bugfix on 0.2.0.9-alpha), and it was
321       causing us to discard all our guards on startup if we hadn't been
322       running for a few weeks (bugfix on 0.1.2.x). Fixes bug 448.
323     - Purge old entries from the "rephist" database and the hidden
324       service descriptor databases even when DirPort is zero. Bugfix
325       on 0.1.2.x.
326     - We were ignoring our RelayBandwidthRate for the first 30 seconds
327       after opening a circuit -- even a relayed circuit. Bugfix on
328       0.2.0.3-alpha.
329     - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
330       requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
331       crashing or mis-answering these types of requests.
332     - Relays were publishing their server descriptor to v1 and v2
333       directory authorities, but they didn't try publishing to v3-only
334       authorities. Fix this; and also stop publishing to v1 authorities.
335       Bugfix on 0.2.0.x.
336     - When we were reading router descriptors from cache, we were ignoring
337       the annotations -- so for example we were reading in bridge-purpose
338       descriptors as general-purpose descriptors. Bugfix on 0.2.0.8-alpha.
339     - When we decided to send a 503 response to a request for servers, we
340       were then also sending the server descriptors: this defeats the
341       whole purpose. Fixes bug 539; bugfix on 0.1.2.x.
343   o Major features:
344     - Bridge relays now behave like clients with respect to time
345       intervals for downloading new consensus documents -- otherwise they
346       stand out. Bridge users now wait until the end of the interval,
347       so their bridge relay will be sure to have a new consensus document.
348     - Three new config options (AlternateDirAuthority,
349       AlternateBridgeAuthority, and AlternateHSAuthority) that let the
350       user selectively replace the default directory authorities by type,
351       rather than the all-or-nothing replacement that DirServer offers.
352     - Tor can now be configured to read a GeoIP file from disk in one
353       of two formats. This can be used by controllers to map IP addresses
354       to countries. Eventually, it may support exit-by-country.
355     - When possible, bridge relays remember which countries users
356       are coming from, and report aggregate information in their
357       extra-info documents, so that the bridge authorities can learn
358       where Tor is blocked.
359     - Bridge directory authorities now do reachability testing on the
360       bridges they know. They provide router status summaries to the
361       controller via "getinfo ns/purpose/bridge", and also dump summaries
362       to a file periodically.
363     - Stop fetching directory info so aggressively if your DirPort is
364       on but your ORPort is off; stop fetching v2 dir info entirely.
365       You can override these choices with the new FetchDirInfoEarly
366       config option.
368   o Minor bugfixes:
369     - The fix in 0.2.0.12-alpha cleared the "hsdir" flag in v3 network
370       consensus documents when there are too many relays at a single
371       IP address. Now clear it in v2 network status documents too, and
372       also clear it in routerinfo_t when the relay is no longer listed
373       in the relevant networkstatus document.
374     - Don't crash if we get an unexpected value for the
375       PublishServerDescriptor config option. Reported by Matt Edman;
376       bugfix on 0.2.0.9-alpha.
377     - Our new v2 hidden service descriptor format allows descriptors
378       that have no introduction points. But Tor crashed when we tried
379       to build a descriptor with no intro points (and it would have
380       crashed if we had tried to parse one). Bugfix on 0.2.0.x; patch
381       by Karsten Loesing.
382     - Fix building with dmalloc 5.5.2 with glibc.
383     - Reject uploaded descriptors and extrainfo documents if they're
384       huge. Otherwise we'll cache them all over the network and it'll
385       clog everything up. Reported by Aljosha Judmayer.
386     - Check for presence of s6_addr16 and s6_addr32 fields in in6_addr
387       via autoconf. Should fix compile on solaris. Bugfix on 0.2.0.x.
388     - When the DANGEROUS_VERSION controller status event told us we're
389       running an obsolete version, it used the string "OLD" to describe
390       it. Yet the "getinfo" interface used the string "OBSOLETE". Now use
391       "OBSOLETE" in both cases. Bugfix on 0.1.2.x.
392     - If we can't expand our list of entry guards (e.g. because we're
393       using bridges or we have StrictEntryNodes set), don't mark relays
394       down when they fail a directory request. Otherwise we're too quick
395       to mark all our entry points down. Bugfix on 0.1.2.x.
396     - Fix handling of hex nicknames when answering controller requests for
397       networkstatus by name, or when deciding whether to warn about unknown
398       routers in a config option. Bugfix on 0.1.2.x. (Patch from mwenge.)
399     - Fix a couple of hard-to-trigger autoconf problems that could result
400       in really weird results on platforms whose sys/types.h files define
401       nonstandard integer types. Bugfix on 0.1.2.x.
402     - Fix compilation with --disable-threads set. Bugfix on 0.2.0.x.
403     - Don't crash on name lookup when we have no current consensus.  Fixes
404       bug 538; bugfix on 0.2.0.x.
405     - Only Tors that want to mirror the v2 directory info should
406       create the "cached-status" directory in their datadir. (All Tors
407       used to create it.) Bugfix on 0.2.0.9-alpha.
408     - Directory authorities should only automatically download Extra Info
409       documents if they're v1, v2, or v3 authorities. Bugfix on 0.1.2.x.
411   o Minor features:
412     - On the USR1 signal, when dmalloc is in use, log the top 10 memory
413       consumers. (We already do this on HUP.)
414     - Authorities and caches fetch the v2 networkstatus documents
415       less often, now that v3 is encouraged.
416     - Add a new config option BridgeRelay that specifies you want to
417       be a bridge relay. Right now the only difference is that it makes
418       you answer begin_dir requests, and it makes you cache dir info,
419       even if your DirPort isn't on.
420     - Add "GETINFO/desc-annotations/id/<OR digest>" so controllers can
421       ask about source, timestamp of arrival, purpose, etc. We need
422       something like this to help Vidalia not do GeoIP lookups on bridge
423       addresses.
424     - Allow multiple HashedControlPassword config lines, to support
425       multiple controller passwords.
426     - Authorities now decide whether they're authoritative for a given
427       router based on the router's purpose.
428     - New config options AuthDirBadDir and AuthDirListBadDirs for
429       authorities to mark certain relays as "bad directories" in the
430       networkstatus documents. Also supports the "!baddir" directive in
431       the approved-routers file.
434 Changes in version 0.2.0.12-alpha - 2007-11-16
435   This twelfth development snapshot fixes some more build problems as
436   well as a few minor bugs.
438   o Compile fixes:
439     - Make it build on OpenBSD again. Patch from tup.
440     - Substitute BINDIR and LOCALSTATEDIR in scripts. Fixes
441       package-building for Red Hat, OS X, etc.
443   o Minor bugfixes (on 0.1.2.x):
444     - Changing the ExitPolicyRejectPrivate setting should cause us to
445       rebuild our server descriptor.
447   o Minor bugfixes (on 0.2.0.x):
448     - When we're lacking a consensus, don't try to perform rendezvous
449       operations. Reported by Karsten Loesing.
450     - Fix a small memory leak whenever we decide against using a
451       newly picked entry guard. Reported by Mike Perry.
452     - When authorities detected more than two relays running on the same
453       IP address, they were clearing all the status flags but forgetting
454       to clear the "hsdir" flag. So clients were being told that a
455       given relay was the right choice for a v2 hsdir lookup, yet they
456       never had its descriptor because it was marked as 'not running'
457       in the consensus.
458     - If we're trying to fetch a bridge descriptor and there's no way
459       the bridge authority could help us (for example, we don't know
460       a digest, or there is no bridge authority), don't be so eager to
461       fall back to asking the bridge authority.
462     - If we're using bridges or have strictentrynodes set, and our
463       chosen exit is in the same family as all our bridges/entry guards,
464       then be flexible about families.
466   o Minor features:
467     - When we negotiate a v2 link-layer connection (not yet implemented),
468       accept RELAY_EARLY cells and turn them into RELAY cells if we've
469       negotiated a v1 connection for their next step. Initial code for
470       proposal 110.
473 Changes in version 0.2.0.11-alpha - 2007-11-12
474   This eleventh development snapshot fixes some build problems with
475   the previous snapshot. It also includes a more secure-by-default exit
476   policy for relays, fixes an enormous memory leak for exit relays, and
477   fixes another bug where servers were falling out of the directory list.
479   o Security fixes:
480     - Exit policies now reject connections that are addressed to a
481       relay's public (external) IP address too, unless
482       ExitPolicyRejectPrivate is turned off. We do this because too
483       many relays are running nearby to services that trust them based
484       on network address. Bugfix on 0.1.2.x.
486   o Major bugfixes:
487     - Fix a memory leak on exit relays; we were leaking a cached_resolve_t
488       on every successful resolve. Reported by Mike Perry; bugfix
489       on 0.1.2.x.
490     - On authorities, never downgrade to old router descriptors simply
491       because they're listed in the consensus. This created a catch-22
492       where we wouldn't list a new descriptor because there was an
493       old one in the consensus, and we couldn't get the new one in the
494       consensus because we wouldn't list it. Possible fix for bug 548.
495       Also, this might cause bug 543 to appear on authorities; if so,
496       we'll need a band-aid for that. Bugfix on 0.2.0.9-alpha.
498   o Packaging fixes on 0.2.0.10-alpha:
499     - We were including instructions about what to do with the
500       src/config/fallback-consensus file, but we weren't actually
501       including it in the tarball. Disable all of that for now.
503   o Minor features:
504     - Allow people to say PreferTunnelledDirConns rather than
505       PreferTunneledDirConns, for those alternate-spellers out there.
507   o Minor bugfixes:
508     - Don't reevaluate all the information from our consensus document
509       just because we've downloaded a v2 networkstatus that we intend
510       to cache. Fixes bug 545; bugfix on 0.2.0.x.
513 Changes in version 0.2.0.10-alpha - 2007-11-10
514   This tenth development snapshot adds a third v3 directory authority
515   run by Mike Perry, adds most of Karsten Loesing's new hidden service
516   descriptor format, fixes a bad crash bug and new bridge bugs introduced
517   in 0.2.0.9-alpha, fixes many bugs with the v3 directory implementation,
518   fixes some minor memory leaks in previous 0.2.0.x snapshots, and
519   addresses many more minor issues.
521   o New directory authorities:
522     - Set up ides (run by Mike Perry) as the third v3 directory authority.
524   o Major features:
525     - Allow tunnelled directory connections to ask for an encrypted
526       "begin_dir" connection or an anonymized "uses a full Tor circuit"
527       connection independently. Now we can make anonymized begin_dir
528       connections for (e.g.) more secure hidden service posting and
529       fetching.
530     - More progress on proposal 114: code from Karsten Loesing to
531       implement new hidden service descriptor format.
532     - Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
533       accommodate the growing number of servers that use the default
534       and are reaching it.
535     - Directory authorities use a new formula for selecting which nodes
536       to advertise as Guards: they must be in the top 7/8 in terms of
537       how long we have known about them, and above the median of those
538       nodes in terms of weighted fractional uptime.
539     - Make "not enough dir info yet" warnings describe *why* Tor feels
540       it doesn't have enough directory info yet.
542   o Major bugfixes:
543     - Stop servers from crashing if they set a Family option (or
544       maybe in other situations too). Bugfix on 0.2.0.9-alpha; reported
545       by Fabian Keil.
546     - Make bridge users work again -- the move to v3 directories in
547       0.2.0.9-alpha had introduced a number of bugs that made bridges
548       no longer work for clients.
549     - When the clock jumps forward a lot, do not allow the bandwidth
550       buckets to become negative. Bugfix on 0.1.2.x; fixes bug 544.
552   o Major bugfixes (v3 dir, bugfixes on 0.2.0.9-alpha):
553     - When the consensus lists a router descriptor that we previously were
554       mirroring, but that we considered non-canonical, reload the
555       descriptor as canonical. This fixes bug 543 where Tor servers
556       would start complaining after a few days that they don't have
557       enough directory information to build a circuit.
558     - Consider replacing the current consensus when certificates arrive
559       that make the pending consensus valid. Previously, we were only
560       considering replacement when the new certs _didn't_ help.
561     - Fix an assert error on startup if we didn't already have the
562       consensus and certs cached in our datadirectory: we were caching
563       the consensus in consensus_waiting_for_certs but then free'ing it
564       right after.
565     - Avoid sending a request for "keys/fp" (for which we'll get a 400 Bad
566       Request) if we need more v3 certs but we've already got pending
567       requests for all of them.
568     - Correctly back off from failing certificate downloads. Fixes
569       bug 546.
570     - Authorities don't vote on the Running flag if they have been running
571       for less than 30 minutes themselves. Fixes bug 547, where a newly
572       started authority would vote that everyone was down.
574   o New requirements:
575     - Drop support for OpenSSL version 0.9.6. Just about nobody was using
576       it, it had no AES, and it hasn't seen any security patches since
577       2004.
579   o Minor features:
580     - Clients now hold circuitless TLS connections open for 1.5 times
581       MaxCircuitDirtiness (15 minutes), since it is likely that they'll
582       rebuild a new circuit over them within that timeframe. Previously,
583       they held them open only for KeepalivePeriod (5 minutes).
584     - Use "If-Modified-Since" to avoid retrieving consensus
585       networkstatuses that we already have.
586     - When we have no consensus, check FallbackNetworkstatusFile (defaults
587       to $PREFIX/share/tor/fallback-consensus) for a consensus.  This way
588       we start knowing some directory caches.
589     - When we receive a consensus from the future, warn about skew.
590     - Improve skew reporting: try to give the user a better log message
591       about how skewed they are, and how much this matters.
592     - When we have a certificate for an authority, believe that
593       certificate's claims about the authority's IP address.
594     - New --quiet command-line option to suppress the default console log.
595       Good in combination with --hash-password.
596     - Authorities send back an X-Descriptor-Not-New header in response to
597       an accepted-but-discarded descriptor upload.  Partially implements
598       fix for bug 535.
599     - Make the log message for "tls error. breaking." more useful.
600     - Better log messages about certificate downloads, to attempt to
601       track down the second incarnation of bug 546.
603   o Minor features (bridges):
604     - If bridge users set UpdateBridgesFromAuthority, but the digest
605       they ask for is a 404 from the bridge authority, they now fall
606       back to trying the bridge directly.
607     - Bridges now use begin_dir to publish their server descriptor to
608       the bridge authority, even when they haven't set TunnelDirConns.
610   o Minor features (controller):
611     - When reporting clock skew, and we know that the clock is _at least
612       as skewed_ as some value, but we don't know the actual value,
613       report the value as a "minimum skew."
615   o Utilities:
616     - Update linux-tor-prio.sh script to allow QoS based on the uid of
617       the Tor process. Patch from Marco Bonetti with tweaks from Mike
618       Perry.
620   o Minor bugfixes:
621     - Refuse to start if both ORPort and UseBridges are set. Bugfix
622       on 0.2.0.x, suggested by Matt Edman.
623     - Don't stop fetching descriptors when FetchUselessDescriptors is
624       set, even if we stop asking for circuits. Bugfix on 0.1.2.x;
625       reported by tup and ioerror.
626     - Better log message on vote from unknown authority.
627     - Don't log "Launching 0 request for 0 router" message.
629   o Minor bugfixes (memory leaks):
630     - Stop leaking memory every time we parse a v3 certificate. Bugfix
631       on 0.2.0.1-alpha.
632     - Stop leaking memory every time we load a v3 certificate. Bugfix
633       on 0.2.0.1-alpha. Fixes Bug 536.
634     - Stop leaking a cached networkstatus on exit.  Bugfix on
635       0.2.0.3-alpha.
636     - Stop leaking voter information every time we free a consensus.
637       Bugfix on 0.2.0.3-alpha.
638     - Stop leaking signed data every time we check a voter signature.
639       Bugfix on 0.2.0.3-alpha.
640     - Stop leaking a signature every time we fail to parse a consensus or
641       a vote.  Bugfix on 0.2.0.3-alpha.
642     - Stop leaking v2_download_status_map on shutdown.  Bugfix on
643       0.2.0.9-alpha.
644     - Stop leaking conn->nickname every time we make a connection to a
645       Tor relay without knowing its expected identity digest (e.g. when
646       using bridges). Bugfix on 0.2.0.3-alpha.
648   - Minor bugfixes (portability):
649     - Run correctly on platforms where rlim_t is larger than unsigned
650       long, and/or where the real limit for number of open files is
651       OPEN_FILES, not rlim_max from getrlimit(RLIMIT_NOFILES). In
652       particular, these may be needed for OS X 10.5.
655 Changes in version 0.1.2.18 - 2007-10-28
656   Tor 0.1.2.18 fixes many problems including crash bugs, problems with
657   hidden service introduction that were causing huge delays, and a big
658   bug that was causing some servers to disappear from the network status
659   lists for a few hours each day.
661   o Major bugfixes (crashes):
662     - If a connection is shut down abruptly because of something that
663       happened inside connection_flushed_some(), do not call
664       connection_finished_flushing(). Should fix bug 451:
665       "connection_stop_writing: Assertion conn->write_event failed"
666       Bugfix on 0.1.2.7-alpha.
667     - Fix possible segfaults in functions called from
668       rend_process_relay_cell().
670   o Major bugfixes (hidden services):
671     - Hidden services were choosing introduction points uniquely by
672       hexdigest, but when constructing the hidden service descriptor
673       they merely wrote the (potentially ambiguous) nickname.
674     - Clients now use the v2 intro format for hidden service
675       connections: they specify their chosen rendezvous point by identity
676       digest rather than by (potentially ambiguous) nickname. These
677       changes could speed up hidden service connections dramatically.
679   o Major bugfixes (other):
680     - Stop publishing a new server descriptor just because we get a
681       HUP signal. This led (in a roundabout way) to some servers getting
682       dropped from the networkstatus lists for a few hours each day.
683     - When looking for a circuit to cannibalize, consider family as well
684       as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced
685       circuit cannibalization).
686     - When a router wasn't listed in a new networkstatus, we were leaving
687       the flags for that router alone -- meaning it remained Named,
688       Running, etc -- even though absence from the networkstatus means
689       that it shouldn't be considered to exist at all anymore. Now we
690       clear all the flags for routers that fall out of the networkstatus
691       consensus. Fixes bug 529.
693   o Minor bugfixes:
694     - Don't try to access (or alter) the state file when running
695       --list-fingerprint or --verify-config or --hash-password. Resolves
696       bug 499.
697     - When generating information telling us how to extend to a given
698       router, do not try to include the nickname if it is
699       absent. Resolves bug 467.
700     - Fix a user-triggerable segfault in expand_filename(). (There isn't
701       a way to trigger this remotely.)
702     - When sending a status event to the controller telling it that an
703       OR address is readable, set the port correctly. (Previously we
704       were reporting the dir port.)
705     - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO
706       command. Bugfix on 0.1.2.17.
707     - When loading bandwidth history, do not believe any information in
708       the future. Fixes bug 434.
709     - When loading entry guard information, do not believe any information
710       in the future.
711     - When we have our clock set far in the future and generate an
712       onion key, then re-set our clock to be correct, we should not stop
713       the onion key from getting rotated.
714     - On some platforms, accept() can return a broken address. Detect
715       this more quietly, and deal accordingly. Fixes bug 483.
716     - It's not actually an error to find a non-pending entry in the DNS
717       cache when canceling a pending resolve. Don't log unless stuff
718       is fishy. Resolves bug 463.
719     - Don't reset trusted dir server list when we set a configuration
720       option. Patch from Robert Hogan.
721     - Don't try to create the datadir when running --verify-config or
722       --hash-password. Resolves bug 540.
725 Changes in version 0.2.0.9-alpha - 2007-10-24
726   This ninth development snapshot switches clients to the new v3 directory
727   system; allows servers to be listed in the network status even when they
728   have the same nickname as a registered server; and fixes many other
729   bugs including a big one that was causing some servers to disappear
730   from the network status lists for a few hours each day.
732   o Major features (directory system):
733     - Clients now download v3 consensus networkstatus documents instead
734       of v2 networkstatus documents. Clients and caches now base their
735       opinions about routers on these consensus documents. Clients only
736       download router descriptors listed in the consensus.
737     - Authorities now list servers who have the same nickname as
738       a different named server, but list them with a new flag,
739       "Unnamed". Now we can list servers that happen to pick the same
740       nickname as a server that registered two years ago and then
741       disappeared. Partially implements proposal 122.
742     - If the consensus list a router as "Unnamed", the name is assigned
743       to a different router: do not identify the router by that name.
744       Partially implements proposal 122.
745     - Authorities can now come to a consensus on which method to use to
746       compute the consensus. This gives us forward compatibility.
748   o Major bugfixes:
749     - Stop publishing a new server descriptor just because we HUP or
750       when we find our DirPort to be reachable but won't actually publish
751       it. New descriptors without any real changes are dropped by the
752       authorities, and can screw up our "publish every 18 hours" schedule.
753       Bugfix on 0.1.2.x.
754     - When a router wasn't listed in a new networkstatus, we were leaving
755       the flags for that router alone -- meaning it remained Named,
756       Running, etc -- even though absence from the networkstatus means
757       that it shouldn't be considered to exist at all anymore. Now we
758       clear all the flags for routers that fall out of the networkstatus
759       consensus. Fixes bug 529; bugfix on 0.1.2.x.
760     - Fix awful behavior in DownloadExtraInfo option where we'd fetch
761       extrainfo documents and then discard them immediately for not
762       matching the latest router. Bugfix on 0.2.0.1-alpha.
764   o Minor features (v3 directory protocol):
765     - Allow tor-gencert to generate a new certificate without replacing
766       the signing key.
767     - Allow certificates to include an address.
768     - When we change our directory-cache settings, reschedule all voting
769       and download operations.
770     - Reattempt certificate downloads immediately on failure, as long as
771       we haven't failed a threshold number of times yet.
772     - Delay retrying consensus downloads while we're downloading
773       certificates to verify the one we just got.  Also, count getting a
774       consensus that we already have (or one that isn't valid) as a failure,
775       and count failing to get the certificates after 20 minutes as a
776       failure.
777     - Build circuits and download descriptors even if our consensus is a
778       little expired. (This feature will go away once authorities are
779       more reliable.)
781   o Minor features (router descriptor cache):
782     - If we find a cached-routers file that's been sitting around for more
783       than 28 days unmodified, then most likely it's a leftover from
784       when we upgraded to 0.2.0.8-alpha. Remove it. It has no good
785       routers anyway.
786     - When we (as a cache) download a descriptor because it was listed
787       in a consensus, remember when the consensus was supposed to expire,
788       and don't expire the descriptor until then.
790   o Minor features (performance):
791     - Call routerlist_remove_old_routers() much less often. This should
792       speed startup, especially on directory caches.
793     - Don't try to launch new descriptor downloads quite so often when we
794       already have enough directory information to build circuits.
795     - Base64 decoding was actually showing up on our profile when parsing
796       the initial descriptor file; switch to an in-process all-at-once
797       implementation that's about 3.5x times faster than calling out to
798       OpenSSL.
800   o Minor features (compilation):
801     - Detect non-ASCII platforms (if any still exist) and refuse to
802       build there: some of our code assumes that 'A' is 65 and so on.
804   o Minor bugfixes (v3 directory authorities, bugfixes on 0.2.0.x):
805     - Make the "next period" votes into "current period" votes immediately
806       after publishing the consensus; avoid a heisenbug that made them
807       stick around indefinitely.
808     - When we discard a vote as a duplicate, do not report this as
809       an error.
810     - Treat missing v3 keys or certificates as an error when running as a
811       v3 directory authority.
812     - When we're configured to be a v3 authority, but we're only listed
813       as a non-v3 authority in our DirServer line for ourself, correct
814       the listing.
815     - If an authority doesn't have a qualified hostname, just put
816       its address in the vote. This fixes the problem where we referred to
817       "moria on moria:9031."
818     - Distinguish between detached signatures for the wrong period, and
819       detached signatures for a divergent vote.
820     - Fix a small memory leak when computing a consensus.
821     - When there's no concensus, we were forming a vote every 30
822       minutes, but writing the "valid-after" line in our vote based
823       on our configured V3AuthVotingInterval: so unless the intervals
824       matched up, we immediately rejected our own vote because it didn't
825       start at the voting interval that caused us to construct a vote.
827   o Minor bugfixes (v3 directory protocol, bugfixes on 0.2.0.x):
828     - Delete unverified-consensus when the real consensus is set.
829     - Consider retrying a consensus networkstatus fetch immediately
830       after one fails: don't wait 60 seconds to notice.
831     - When fetching a consensus as a cache, wait until a newer consensus
832       should exist before trying to replace the current one.
833     - Use a more forgiving schedule for retrying failed consensus
834       downloads than for other types.
836   o Minor bugfixes (other directory issues):
837     - Correct the implementation of "download votes by digest." Bugfix on
838       0.2.0.8-alpha.
839     - Authorities no longer send back "400 you're unreachable please fix
840       it" errors to Tor servers that aren't online all the time. We're
841       supposed to tolerate these servers now. Bugfix on 0.1.2.x.
843   o Minor bugfixes (controller):
844     - Don't reset trusted dir server list when we set a configuration
845       option. Patch from Robert Hogan; bugfix on 0.1.2.x.
846     - Respond to INT and TERM SIGNAL commands before we execute the
847       signal, in case the signal shuts us down. We had a patch in
848       0.1.2.1-alpha that tried to do this by queueing the response on
849       the connection's buffer before shutting down, but that really
850       isn't the same thing at all. Bug located by Matt Edman.
852   o Minor bugfixes (misc):
853     - Correctly check for bad options to the "PublishServerDescriptor"
854       config option. Bugfix on 0.2.0.1-alpha; reported by Matt Edman.
855     - Stop leaking memory on failing case of base32_decode, and make
856       it accept upper-case letters. Bugfixes on 0.2.0.7-alpha.
857     - Don't try to download extrainfo documents when we're trying to
858       fetch enough directory info to build a circuit: having enough
859       info should get priority. Bugfix on 0.2.0.x.
860     - Don't complain that "your server has not managed to confirm that its
861       ports are reachable" if we haven't been able to build any circuits
862       yet. Bug found by spending four hours without a v3 consensus. Bugfix
863       on 0.1.2.x.
864     - Detect the reason for failing to mmap a descriptor file we just
865       wrote, and give a more useful log message.  Fixes bug 533. Bugfix
866       on 0.1.2.x.
868   o Code simplifications and refactoring:
869     - Remove support for the old bw_accounting file: we've been storing
870       bandwidth accounting information in the state file since
871       0.1.2.5-alpha.  This may result in bandwidth accounting errors
872       if you try to upgrade from 0.1.1.x or earlier, or if you try to
873       downgrade to 0.1.1.x or earlier.
874     - New convenience code to locate a file within the DataDirectory.
875     - Move non-authority functionality out of dirvote.c.
876     - Refactor the arguments for router_pick_{directory_|trusteddir}server
877       so that they all take the same named flags.
879   o Utilities
880     - Include the "tor-ctrl.sh" bash script by Stefan Behte to provide
881       Unix users an easy way to script their Tor process (e.g. by
882       adjusting bandwidth based on the time of the day).
885 Changes in version 0.2.0.8-alpha - 2007-10-12
886   This eighth development snapshot fixes a crash bug that's been bothering
887   us since February 2007, lets bridge authorities store a list of bridge
888   descriptors they've seen, gets v3 directory voting closer to working,
889   starts caching v3 directory consensus documents on directory mirrors,
890   and fixes a variety of smaller issues including some minor memory leaks.
892   o Major features (router descriptor cache):
893     - Store routers in a file called cached-descriptors instead of in
894       cached-routers. Initialize cached-descriptors from cached-routers
895       if the old format is around. The new format allows us to store
896       annotations along with descriptors.
897     - Use annotations to record the time we received each descriptor, its
898       source, and its purpose.
899     - Disable the SETROUTERPURPOSE controller command: it is now
900       obsolete.
901     - Controllers should now specify cache=no or cache=yes when using
902       the +POSTDESCRIPTOR command.
903     - Bridge authorities now write bridge descriptors to disk, meaning
904       we can export them to other programs and begin distributing them
905       to blocked users.
907   o Major features (directory authorities):
908     - When a v3 authority is missing votes or signatures, it now tries
909       to fetch them.
910     - Directory authorities track weighted fractional uptime as well as
911       weighted mean-time-between failures.  WFU is suitable for deciding
912       whether a node is "usually up", while MTBF is suitable for deciding
913       whether a node is "likely to stay up."  We need both, because
914       "usually up" is a good requirement for guards, while "likely to
915       stay up" is a good requirement for long-lived connections.
917   o Major features (v3 directory system):
918     - Caches now download v3 network status documents as needed,
919       and download the descriptors listed in them.
920     - All hosts now attempt to download and keep fresh v3 authority
921       certificates, and re-attempt after failures.
922     - More internal-consistency checks for vote parsing.
924   o Major bugfixes (crashes):
925     - If a connection is shut down abruptly because of something that
926       happened inside connection_flushed_some(), do not call
927       connection_finished_flushing(). Should fix bug 451. Bugfix on
928       0.1.2.7-alpha.
930   o Major bugfixes (performance):
931     - Fix really bad O(n^2) performance when parsing a long list of
932       routers: Instead of searching the entire list for an "extra-info "
933       string which usually wasn't there, once for every routerinfo
934       we read, just scan lines forward until we find one we like.
935       Bugfix on 0.2.0.1.
936     - When we add data to a write buffer in response to the data on that
937       write buffer getting low because of a flush, do not consider the
938       newly added data as a candidate for immediate flushing, but rather
939       make it wait until the next round of writing. Otherwise, we flush
940       and refill recursively, and a single greedy TLS connection can
941       eat all of our bandwidth. Bugfix on 0.1.2.7-alpha.
943   o Minor features (v3 authority system):
944     - Add more ways for tools to download the votes that lead to the
945       current consensus.
946     - Send a 503 when low on bandwidth and a vote, consensus, or
947       certificate is requested.
948     - If-modified-since is now implemented properly for all kinds of
949       certificate requests.
951   o Minor bugfixes (network statuses):
952     - Tweak the implementation of proposal 109 slightly: allow at most
953       two Tor servers on the same IP address, except if it's the location
954       of a directory authority, in which case allow five. Bugfix on
955       0.2.0.3-alpha.
957   o Minor bugfixes (controller):
958     - When sending a status event to the controller telling it that an
959       OR address is reachable, set the port correctly. (Previously we
960       were reporting the dir port.) Bugfix on 0.1.2.x.
962   o Minor bugfixes (v3 directory system):
963     - Fix logic to look up a cert by its signing key digest. Bugfix on
964       0.2.0.7-alpha.
965     - Only change the reply to a vote to "OK" if it's not already
966       set. This gets rid of annoying "400 OK" log messages, which may
967       have been masking some deeper issue. Bugfix on 0.2.0.7-alpha.
968     - When we get a valid consensus, recompute the voting schedule.
969     - Base the valid-after time of a vote on the consensus voting
970       schedule, not on our preferred schedule.
971     - Make the return values and messages from signature uploads and
972       downloads more sensible.
973     - Fix a memory leak when serving votes and consensus documents, and
974       another when serving certificates.
976   o Minor bugfixes (performance):
977     - Use a slightly simpler string hashing algorithm (copying Python's
978       instead of Java's) and optimize our digest hashing algorithm to take
979       advantage of 64-bit platforms and to remove some possibly-costly
980       voodoo.
981     - Fix a minor memory leak whenever we parse guards from our state
982       file. Bugfix on 0.2.0.7-alpha.
983     - Fix a minor memory leak whenever we write out a file. Bugfix on
984       0.2.0.7-alpha.
985     - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO
986       command. Bugfix on 0.2.0.5-alpha.
988   o Minor bugfixes (portability):
989     - On some platforms, accept() can return a broken address. Detect
990       this more quietly, and deal accordingly. Fixes bug 483.
991     - Stop calling tor_strlower() on uninitialized memory in some cases.
992       Bugfix in 0.2.0.7-alpha.
994   o Minor bugfixes (usability):
995     - Treat some 403 responses from directory servers as INFO rather than
996       WARN-severity events.
997     - It's not actually an error to find a non-pending entry in the DNS
998       cache when canceling a pending resolve. Don't log unless stuff is
999       fishy. Resolves bug 463.
1001   o Minor bugfixes (anonymity):
1002     - Never report that we've used more bandwidth than we're willing to
1003       relay: it leaks how much non-relay traffic we're using. Resolves
1004       bug 516.
1005     - When looking for a circuit to cannibalize, consider family as well
1006       as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced
1007       circuit cannibalization).
1009   o Code simplifications and refactoring:
1010     - Make a bunch of functions static. Remove some dead code.
1011     - Pull out about a third of the really big routerlist.c; put it in a
1012       new module, networkstatus.c.
1013     - Merge the extra fields in local_routerstatus_t back into
1014       routerstatus_t: we used to need one routerstatus_t for each
1015       authority's opinion, plus a local_routerstatus_t for the locally
1016       computed consensus opinion. To save space, we put the locally
1017       modified fields into local_routerstatus_t, and only the common
1018       stuff into routerstatus_t. But once v3 directories are in use,
1019       clients and caches will no longer need to hold authority opinions;
1020       thus, the rationale for keeping the types separate is now gone.
1021     - Make the code used to reschedule and reattempt downloads more
1022       uniform.
1023     - Turn all 'Are we a directory server/mirror?' logic into a call to
1024       dirserver_mode().
1025     - Remove the code to generate the oldest (v1) directory format.
1026       The code has been disabled since 0.2.0.5-alpha.
1029 Changes in version 0.2.0.7-alpha - 2007-09-21
1030   This seventh development snapshot makes bridges work again, makes bridge
1031   authorities work for the first time, fixes two huge performance flaws
1032   in hidden services, and fixes a variety of minor issues.
1034   o New directory authorities:
1035     - Set up moria1 and tor26 as the first v3 directory authorities. See
1036       doc/spec/dir-spec.txt for details on the new directory design.
1038   o Major bugfixes (crashes):
1039     - Fix possible segfaults in functions called from
1040       rend_process_relay_cell(). Bugfix on 0.1.2.x.
1042   o Major bugfixes (bridges):
1043     - Fix a bug that made servers send a "404 Not found" in response to
1044       attempts to fetch their server descriptor. This caused Tor servers
1045       to take many minutes to establish reachability for their DirPort,
1046       and it totally crippled bridges. Bugfix on 0.2.0.5-alpha.
1047     - Make "UpdateBridgesFromAuthority" torrc option work: when bridge
1048       users configure that and specify a bridge with an identity
1049       fingerprint, now they will lookup the bridge descriptor at the
1050       default bridge authority via a one-hop tunnel, but once circuits
1051       are established they will switch to a three-hop tunnel for later
1052       connections to the bridge authority. Bugfix in 0.2.0.3-alpha.
1054   o Major bugfixes (hidden services):
1055     - Hidden services were choosing introduction points uniquely by
1056       hexdigest, but when constructing the hidden service descriptor
1057       they merely wrote the (potentially ambiguous) nickname.
1058     - Clients now use the v2 intro format for hidden service
1059       connections: they specify their chosen rendezvous point by identity
1060       digest rather than by (potentially ambiguous) nickname. Both
1061       are bugfixes on 0.1.2.x, and they could speed up hidden service
1062       connections dramatically. Thanks to Karsten Loesing.
1064   o Minor features (security):
1065     - As a client, do not believe any server that tells us that an
1066       address maps to an internal address space.
1067     - Make it possible to enable HashedControlPassword and
1068       CookieAuthentication at the same time.
1070   o Minor features (guard nodes):
1071     - Tag every guard node in our state file with the version that
1072       we believe added it, or with our own version if we add it. This way,
1073       if a user temporarily runs an old version of Tor and then switches
1074       back to a new one, she doesn't automatically lose her guards.
1076   o Minor features (speed):
1077     - When implementing AES counter mode, update only the portions of the
1078       counter buffer that need to change, and don't keep separate
1079       network-order and host-order counters when they are the same (i.e.,
1080       on big-endian hosts.)
1082   o Minor features (controller):
1083     - Accept LF instead of CRLF on controller, since some software has a
1084       hard time generating real Internet newlines.
1085     - Add GETINFO values for the server status events
1086       "REACHABILITY_SUCCEEDED" and "GOOD_SERVER_DESCRIPTOR". Patch from
1087       Robert Hogan.
1089   o Removed features:
1090      - Routers no longer include bandwidth-history lines in their
1091        descriptors; this information is already available in extra-info
1092        documents, and including it in router descriptors took up 60%
1093        (!) of compressed router descriptor downloads. Completes
1094        implementation of proposal 104.
1095      - Remove the contrib scripts ExerciseServer.py, PathDemo.py,
1096        and TorControl.py, as they use the old v0 controller protocol,
1097        and are obsoleted by TorFlow anyway.
1098      - Drop support for v1 rendezvous descriptors, since we never used
1099        them anyway, and the code has probably rotted by now. Based on
1100        patch from Karsten Loesing.
1101      - On OSX, stop warning the user that kqueue support in libevent is
1102       "experimental", since it seems to have worked fine for ages.
1104   o Minor bugfixes:
1105     - When generating information telling us how to extend to a given
1106       router, do not try to include the nickname if it is absent. Fixes
1107       bug 467. Bugfix on 0.2.0.3-alpha.
1108     - Fix a user-triggerable (but not remotely-triggerable) segfault
1109       in expand_filename(). Bugfix on 0.1.2.x.
1110     - Fix a memory leak when freeing incomplete requests from DNSPort.
1111       Found by Niels Provos with valgrind. Bugfix on 0.2.0.1-alpha.
1112     - Don't try to access (or alter) the state file when running
1113       --list-fingerprint or --verify-config or --hash-password. (Resolves
1114       bug 499.) Bugfix on 0.1.2.x.
1115     - Servers used to decline to publish their DirPort if their
1116       BandwidthRate, RelayBandwidthRate, or MaxAdvertisedBandwidth
1117       were below a threshold. Now they only look at BandwidthRate and
1118       RelayBandwidthRate. Bugfix on 0.1.2.x.
1119     - Remove an optimization in the AES counter-mode code that assumed
1120       that the counter never exceeded 2^68. When the counter can be set
1121       arbitrarily as an IV (as it is by Karsten's new hidden services
1122       code), this assumption no longer holds. Bugfix on 0.1.2.x.
1123     - Resume listing "AUTHORITY" flag for authorities in network status.
1124       Bugfix on 0.2.0.3-alpha; reported by Alex de Joode.
1126   o Code simplifications and refactoring:
1127     - Revamp file-writing logic so we don't need to have the entire
1128       contents of a file in memory at once before we write to disk. Tor,
1129       meet stdio.
1130     - Turn "descriptor store" into a full-fledged type.
1131     - Move all NT services code into a separate source file.
1132     - Unify all code that computes medians, percentile elements, etc.
1133     - Get rid of a needless malloc when parsing address policies.
1136 Changes in version 0.1.2.17 - 2007-08-30
1137   Tor 0.1.2.17 features a new Vidalia version in the Windows and OS
1138   X bundles. Vidalia 0.0.14 makes authentication required for the
1139   ControlPort in the default configuration, which addresses important
1140   security risks. Everybody who uses Vidalia (or another controller)
1141   should upgrade.
1143   In addition, this Tor update fixes major load balancing problems with
1144   path selection, which should speed things up a lot once many people
1145   have upgraded.
1147   o Major bugfixes (security):
1148     - We removed support for the old (v0) control protocol. It has been
1149       deprecated since Tor 0.1.1.1-alpha, and keeping it secure has
1150       become more of a headache than it's worth.
1152   o Major bugfixes (load balancing):
1153     - When choosing nodes for non-guard positions, weight guards
1154       proportionally less, since they already have enough load. Patch
1155       from Mike Perry.
1156     - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This
1157       will allow fast Tor servers to get more attention.
1158     - When we're upgrading from an old Tor version, forget our current
1159       guards and pick new ones according to the new weightings. These
1160       three load balancing patches could raise effective network capacity
1161       by a factor of four. Thanks to Mike Perry for measurements.
1163   o Major bugfixes (stream expiration):
1164     - Expire not-yet-successful application streams in all cases if
1165       they've been around longer than SocksTimeout. Right now there are
1166       some cases where the stream will live forever, demanding a new
1167       circuit every 15 seconds. Fixes bug 454; reported by lodger.
1169   o Minor features (controller):
1170     - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it
1171       is valid before any authentication has been received. It tells
1172       a controller what kind of authentication is expected, and what
1173       protocol is spoken. Implements proposal 119.
1175   o Minor bugfixes (performance):
1176     - Save on most routerlist_assert_ok() calls in routerlist.c, thus
1177       greatly speeding up loading cached-routers from disk on startup.
1178     - Disable sentinel-based debugging for buffer code: we squashed all
1179       the bugs that this was supposed to detect a long time ago, and now
1180       its only effect is to change our buffer sizes from nice powers of
1181       two (which platform mallocs tend to like) to values slightly over
1182       powers of two (which make some platform mallocs sad).
1184   o Minor bugfixes (misc):
1185     - If exit bandwidth ever exceeds one third of total bandwidth, then
1186       use the correct formula to weight exit nodes when choosing paths.
1187       Based on patch from Mike Perry.
1188     - Choose perfectly fairly among routers when choosing by bandwidth and
1189       weighting by fraction of bandwidth provided by exits. Previously, we
1190       would choose with only approximate fairness, and correct ourselves
1191       if we ran off the end of the list.
1192     - If we require CookieAuthentication but we fail to write the
1193       cookie file, we would warn but not exit, and end up in a state
1194       where no controller could authenticate. Now we exit.
1195     - If we require CookieAuthentication, stop generating a new cookie
1196       every time we change any piece of our config.
1197     - Refuse to start with certain directory authority keys, and
1198       encourage people using them to stop.
1199     - Terminate multi-line control events properly. Original patch
1200       from tup.
1201     - Fix a minor memory leak when we fail to find enough suitable
1202       servers to choose a circuit.
1203     - Stop leaking part of the descriptor when we run into a particularly
1204       unparseable piece of it.
1207 Changes in version 0.2.0.6-alpha - 2007-08-26
1208   This sixth development snapshot features a new Vidalia version in the
1209   Windows and OS X bundles. Vidalia 0.0.14 makes authentication required for
1210   the ControlPort in the default configuration, which addresses important
1211   security risks.
1213   In addition, this snapshot fixes major load balancing problems
1214   with path selection, which should speed things up a lot once many
1215   people have upgraded. The directory authorities also use a new
1216   mean-time-between-failure approach to tracking which servers are stable,
1217   rather than just looking at the most recent uptime.
1219   o New directory authorities:
1220     - Set up Tonga as the default bridge directory authority.
1222   o Major features:
1223     - Directory authorities now track servers by weighted
1224       mean-times-between-failures. When we have 4 or more days of data,
1225       use measured MTBF rather than declared uptime to decide whether
1226       to call a router Stable. Implements proposal 108.
1228   o Major bugfixes (load balancing):
1229     - When choosing nodes for non-guard positions, weight guards
1230       proportionally less, since they already have enough load. Patch
1231       from Mike Perry.
1232     - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This
1233       will allow fast Tor servers to get more attention.
1234     - When we're upgrading from an old Tor version, forget our current
1235       guards and pick new ones according to the new weightings. These
1236       three load balancing patches could raise effective network capacity
1237       by a factor of four. Thanks to Mike Perry for measurements.
1239   o Major bugfixes (descriptor parsing):
1240     - Handle unexpected whitespace better in malformed descriptors. Bug
1241       found using Benedikt Boss's new Tor fuzzer! Bugfix on 0.2.0.x.
1243   o Minor features:
1244     - There is now an ugly, temporary "desc/all-recent-extrainfo-hack"
1245       GETINFO for Torstat to use until it can switch to using extrainfos.
1246     - Optionally (if built with -DEXPORTMALLINFO) export the output
1247       of mallinfo via http, as tor/mallinfo.txt. Only accessible
1248       from localhost.
1250   o Minor bugfixes:
1251     - Do not intermix bridge routers with controller-added
1252       routers. (Bugfix on 0.2.0.x)
1253     - Do not fail with an assert when accept() returns an unexpected
1254       address family. Addresses but does not wholly fix bug 483. (Bugfix
1255       on 0.2.0.x)
1256     - Let directory authorities startup even when they can't generate
1257       a descriptor immediately, e.g. because they don't know their
1258       address.
1259     - Stop putting the authentication cookie in a file called "0"
1260       in your working directory if you don't specify anything for the
1261       new CookieAuthFile option. Reported by Matt Edman.
1262     - Make it possible to read the PROTOCOLINFO response in a way that
1263       conforms to our control-spec. Reported by Matt Edman.
1264     - Fix a minor memory leak when we fail to find enough suitable
1265       servers to choose a circuit. Bugfix on 0.1.2.x.
1266     - Stop leaking part of the descriptor when we run into a particularly
1267       unparseable piece of it. Bugfix on 0.1.2.x.
1268     - Unmap the extrainfo cache file on exit.
1271 Changes in version 0.2.0.5-alpha - 2007-08-19
1272   This fifth development snapshot fixes compilation on Windows again;
1273   fixes an obnoxious client-side bug that slowed things down and put
1274   extra load on the network; gets us closer to using the v3 directory
1275   voting scheme; makes it easier for Tor controllers to use cookie-based
1276   authentication; and fixes a variety of other bugs.
1278   o Removed features:
1279     - Version 1 directories are no longer generated in full. Instead,
1280       authorities generate and serve "stub" v1 directories that list
1281       no servers. This will stop Tor versions 0.1.0.x and earlier from
1282       working, but (for security reasons) nobody should be running those
1283       versions anyway.
1285   o Major bugfixes (compilation, 0.2.0.x):
1286     - Try to fix Win32 compilation again: improve checking for IPv6 types.
1287     - Try to fix MSVC compilation: build correctly on platforms that do
1288       not define s6_addr16 or s6_addr32.
1289     - Fix compile on platforms without getaddrinfo: bug found by Li-Hui
1290       Zhou.
1292   o Major bugfixes (stream expiration):
1293     - Expire not-yet-successful application streams in all cases if
1294       they've been around longer than SocksTimeout. Right now there are
1295       some cases where the stream will live forever, demanding a new
1296       circuit every 15 seconds. Bugfix on 0.1.2.7-alpha; fixes bug 454;
1297       reported by lodger.
1299   o Minor features (directory servers):
1300     - When somebody requests a list of statuses or servers, and we have
1301       none of those, return a 404 rather than an empty 200.
1303   o Minor features (directory voting):
1304     - Store v3 consensus status consensuses on disk, and reload them
1305       on startup.
1307   o Minor features (security):
1308     - Warn about unsafe ControlPort configurations.
1309     - Refuse to start with certain directory authority keys, and
1310       encourage people using them to stop.
1312   o Minor features (controller):
1313     - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it
1314       is valid before any authentication has been received. It tells
1315       a controller what kind of authentication is expected, and what
1316       protocol is spoken. Implements proposal 119.
1317     - New config option CookieAuthFile to choose a new location for the
1318       cookie authentication file, and config option
1319       CookieAuthFileGroupReadable to make it group-readable.
1321   o Minor features (unit testing):
1322     - Add command-line arguments to unit-test executable so that we can
1323       invoke any chosen test from the command line rather than having
1324       to run the whole test suite at once; and so that we can turn on
1325       logging for the unit tests.
1327   o Minor bugfixes (on 0.1.2.x):
1328     - If we require CookieAuthentication but we fail to write the
1329       cookie file, we would warn but not exit, and end up in a state
1330       where no controller could authenticate. Now we exit.
1331     - If we require CookieAuthentication, stop generating a new cookie
1332       every time we change any piece of our config.
1333     - When loading bandwidth history, do not believe any information in
1334       the future.  Fixes bug 434.
1335     - When loading entry guard information, do not believe any information
1336       in the future.
1337     - When we have our clock set far in the future and generate an
1338       onion key, then re-set our clock to be correct, we should not stop
1339       the onion key from getting rotated.
1340     - Clean up torrc sample config file.
1341     - Do not automatically run configure from autogen.sh. This
1342       non-standard behavior tended to annoy people who have built other
1343       programs.
1345   o Minor bugfixes (on 0.2.0.x):
1346     - Fix a bug with AutomapHostsOnResolve that would always cause
1347       the second request to fail. Bug reported by Kate. Bugfix on
1348       0.2.0.3-alpha.
1349     - Fix a bug in ADDRMAP controller replies that would sometimes
1350       try to print a NULL. Patch from tup.
1351     - Read v3 directory authority keys from the right location.
1352     - Numerous bugfixes to directory voting code.
1355 Changes in version 0.1.2.16 - 2007-08-01
1356   Tor 0.1.2.16 fixes a critical security vulnerability that allows a
1357   remote attacker in certain situations to rewrite the user's torrc
1358   configuration file. This can completely compromise anonymity of users
1359   in most configurations, including those running the Vidalia bundles,
1360   TorK, etc. Or worse.
1362   o Major security fixes:
1363     - Close immediately after missing authentication on control port;
1364       do not allow multiple authentication attempts.
1367 Changes in version 0.2.0.4-alpha - 2007-08-01
1368   This fourth development snapshot fixes a critical security vulnerability
1369   for most users, specifically those running Vidalia, TorK, etc. Everybody
1370   should upgrade to either 0.1.2.16 or 0.2.0.4-alpha.
1372   o Major security fixes:
1373     - Close immediately after missing authentication on control port;
1374       do not allow multiple authentication attempts.
1376   o Major bugfixes (compilation):
1377     - Fix win32 compilation: apparently IN_ADDR and IN6_ADDR are already
1378       defined there.
1380   o Minor features (performance):
1381     - Be even more aggressive about releasing RAM from small
1382       empty buffers. Thanks to our free-list code, this shouldn't be too
1383       performance-intensive.
1384     - Disable sentinel-based debugging for buffer code: we squashed all
1385       the bugs that this was supposed to detect a long time ago, and
1386       now its only effect is to change our buffer sizes from nice
1387       powers of two (which platform mallocs tend to like) to values
1388       siightly over powers of two (which make some platform mallocs sad).
1389     - Log malloc statistics from mallinfo() on platforms where it
1390       exists.
1393 Changes in version 0.2.0.3-alpha - 2007-07-29
1394   This third development snapshot introduces new experimental
1395   blocking-resistance features and a preliminary version of the v3
1396   directory voting design, and includes many other smaller features
1397   and bugfixes.
1399   o Major features:
1400     - The first pieces of our "bridge" design for blocking-resistance
1401       are implemented. People can run bridge directory authorities;
1402       people can run bridges; and people can configure their Tor clients
1403       with a set of bridges to use as the first hop into the Tor network.
1404       See http://archives.seul.org/or/talk/Jul-2007/msg00249.html for
1405       details.
1406     - Create listener connections before we setuid to the configured
1407       User and Group. Now non-Windows users can choose port values
1408       under 1024, start Tor as root, and have Tor bind those ports
1409       before it changes to another UID. (Windows users could already
1410       pick these ports.)
1411     - Added a new ConstrainedSockets config option to set SO_SNDBUF and
1412       SO_RCVBUF on TCP sockets. Hopefully useful for Tor servers running
1413       on "vserver" accounts. (Patch from coderman.)
1414     - Be even more aggressive about separating local traffic from relayed
1415       traffic when RelayBandwidthRate is set. (Refines proposal 111.)
1417   o Major features (experimental):
1418     - First cut of code for "v3 dir voting": directory authorities will
1419       vote on a common network status document rather than each publishing
1420       their own opinion. This code needs more testing and more corner-case
1421       handling before it's ready for use.
1423   o Security fixes:
1424     - Directory authorities now call routers Fast if their bandwidth is
1425       at least 100KB/s, and consider their bandwidth adequate to be a
1426       Guard if it is at least 250KB/s, no matter the medians. This fix
1427       complements proposal 107. [Bugfix on 0.1.2.x]
1428     - Directory authorities now never mark more than 3 servers per IP as
1429       Valid and Running. (Implements proposal 109, by Kevin Bauer and
1430       Damon McCoy.)
1431     - Minor change to organizationName and commonName generation
1432       procedures in TLS certificates during Tor handshakes, to invalidate
1433       some earlier censorware approaches. This is not a long-term
1434       solution, but applying it will give us a bit of time to look into
1435       the epidemiology of countermeasures as they spread.
1437   o Major bugfixes (directory):
1438     - Rewrite directory tokenization code to never run off the end of
1439       a string. Fixes bug 455. Patch from croup. [Bugfix on 0.1.2.x]
1441   o Minor features (controller):
1442     - Add a SOURCE_ADDR field to STREAM NEW events so that controllers can
1443       match requests to applications. (Patch from Robert Hogan.)
1444     - Report address and port correctly on connections to DNSPort. (Patch
1445       from Robert Hogan.)
1446     - Add a RESOLVE command to launch hostname lookups. (Original patch
1447       from Robert Hogan.)
1448     - Add GETINFO status/enough-dir-info to let controllers tell whether
1449       Tor has downloaded sufficient directory information. (Patch
1450       from Tup.)
1451     - You can now use the ControlSocket option to tell Tor to listen for
1452       controller connections on Unix domain sockets on systems that
1453       support them. (Patch from Peter Palfrader.)
1454     - STREAM NEW events are generated for DNSPort requests and for
1455       tunneled directory connections. (Patch from Robert Hogan.)
1456     - New "GETINFO address-mappings/*" command to get address mappings
1457       with expiry information. "addr-mappings/*" is now deprecated.
1458       (Patch from Tup.)
1460   o Minor features (misc):
1461     - Merge in some (as-yet-unused) IPv6 address manipulation code. (Patch
1462       from croup.)
1463     - The tor-gencert tool for v3 directory authorities now creates all
1464       files as readable to the file creator only, and write-protects
1465       the authority identity key.
1466     - When dumping memory usage, list bytes used in buffer memory
1467       free-lists.
1468     - When running with dmalloc, dump more stats on hup and on exit.
1469     - Directory authorities now fail quickly and (relatively) harmlessly
1470       if they generate a network status document that is somehow
1471       malformed.
1473   o Traffic load balancing improvements:
1474     - If exit bandwidth ever exceeds one third of total bandwidth, then
1475       use the correct formula to weight exit nodes when choosing paths.
1476       (Based on patch from Mike Perry.)
1477     - Choose perfectly fairly among routers when choosing by bandwidth and
1478       weighting by fraction of bandwidth provided by exits. Previously, we
1479       would choose with only approximate fairness, and correct ourselves
1480       if we ran off the end of the list. [Bugfix on 0.1.2.x]
1482   o Performance improvements:
1483     - Be more aggressive with freeing buffer RAM or putting it on the
1484       memory free lists.
1485     - Use Critical Sections rather than Mutexes for synchronizing threads
1486       on win32; Mutexes are heavier-weight, and designed for synchronizing
1487       between processes.
1489   o Deprecated and removed features:
1490     - RedirectExits is now deprecated.
1491     - Stop allowing address masks that do not correspond to bit prefixes.
1492       We have warned about these for a really long time; now it's time
1493       to reject them. (Patch from croup.)
1495   o Minor bugfixes (directory):
1496     - Fix another crash bug related to extra-info caching. (Bug found by
1497       Peter Palfrader.) [Bugfix on 0.2.0.2-alpha]
1498     - Directories no longer return a "304 not modified" when they don't
1499       have the networkstatus the client asked for. Also fix a memory
1500       leak when returning 304 not modified. [Bugfixes on 0.2.0.2-alpha]
1501     - We had accidentally labelled 0.1.2.x directory servers as not
1502       suitable for begin_dir requests, and had labelled no directory
1503       servers as suitable for uploading extra-info documents. [Bugfix
1504       on 0.2.0.1-alpha]
1506   o Minor bugfixes (dns):
1507     - Fix a crash when DNSPort is set more than once. (Patch from Robert
1508       Hogan.) [Bugfix on 0.2.0.2-alpha]
1509     - Add DNSPort connections to the global connection list, so that we
1510       can time them out correctly. (Bug found by Robert Hogan.) [Bugfix
1511       on 0.2.0.2-alpha]
1512     - Fix a dangling reference that could lead to a crash when DNSPort is
1513       changed or closed (Patch from Robert Hogan.) [Bugfix on
1514       0.2.0.2-alpha]
1516   o Minor bugfixes (controller):
1517     - Provide DNS expiry times in GMT, not in local time. For backward
1518       compatibility, ADDRMAP events only provide GMT expiry in an extended
1519       field. "GETINFO address-mappings" always does the right thing.
1520     - Use CRLF line endings properly in NS events.
1521     - Terminate multi-line control events properly. (Original patch
1522       from tup.) [Bugfix on 0.1.2.x-alpha]
1523     - Do not include spaces in SOURCE_ADDR fields in STREAM
1524       events. Resolves bug 472. [Bugfix on 0.2.0.x-alpha]
1527 Changes in version 0.1.2.15 - 2007-07-17
1528   Tor 0.1.2.15 fixes several crash bugs, fixes some anonymity-related
1529   problems, fixes compilation on BSD, and fixes a variety of other
1530   bugs. Everybody should upgrade.
1532   o Major bugfixes (compilation):
1533     - Fix compile on FreeBSD/NetBSD/OpenBSD. Oops.
1535   o Major bugfixes (crashes):
1536     - Try even harder not to dereference the first character after
1537       an mmap(). Reported by lodger.
1538     - Fix a crash bug in directory authorities when we re-number the
1539       routerlist while inserting a new router.
1540     - When the cached-routers file is an even multiple of the page size,
1541       don't run off the end and crash. (Fixes bug 455; based on idea
1542       from croup.)
1543     - Fix eventdns.c behavior on Solaris: It is critical to include
1544       orconfig.h _before_ sys/types.h, so that we can get the expected
1545       definition of _FILE_OFFSET_BITS.
1547   o Major bugfixes (security):
1548     - Fix a possible buffer overrun when using BSD natd support. Bug
1549       found by croup.
1550     - When sending destroy cells from a circuit's origin, don't include
1551       the reason for tearing down the circuit. The spec says we didn't,
1552       and now we actually don't. Reported by lodger.
1553     - Keep streamids from different exits on a circuit separate. This
1554       bug may have allowed other routers on a given circuit to inject
1555       cells into streams. Reported by lodger; fixes bug 446.
1556     - If there's a never-before-connected-to guard node in our list,
1557       never choose any guards past it. This way we don't expand our
1558       guard list unless we need to.
1560   o Minor bugfixes (guard nodes):
1561     - Weight guard selection by bandwidth, so that low-bandwidth nodes
1562       don't get overused as guards.
1564   o Minor bugfixes (directory):
1565     - Correctly count the number of authorities that recommend each
1566       version. Previously, we were under-counting by 1.
1567     - Fix a potential crash bug when we load many server descriptors at
1568       once and some of them make others of them obsolete. Fixes bug 458.
1570   o Minor bugfixes (hidden services):
1571     - Stop tearing down the whole circuit when the user asks for a
1572       connection to a port that the hidden service didn't configure.
1573       Resolves bug 444.
1575   o Minor bugfixes (misc):
1576     - On Windows, we were preventing other processes from reading
1577       cached-routers while Tor was running. Reported by janbar.
1578     - Fix a possible (but very unlikely) bug in picking routers by
1579       bandwidth. Add a log message to confirm that it is in fact
1580       unlikely. Patch from lodger.
1581     - Backport a couple of memory leak fixes.
1582     - Backport miscellaneous cosmetic bugfixes.
1585 Changes in version 0.2.0.2-alpha - 2007-06-02
1586   o Major bugfixes on 0.2.0.1-alpha:
1587     - Fix an assertion failure related to servers without extra-info digests.
1588       Resolves bugs 441 and 442.
1590   o Minor features (directory):
1591     - Support "If-Modified-Since" when answering HTTP requests for
1592       directories, running-routers documents, and network-status documents.
1593       (There's no need to support it for router descriptors, since those
1594       are downloaded by descriptor digest.)
1596   o Minor build issues:
1597     - Clear up some MIPSPro compiler warnings.
1598     - When building from a tarball on a machine that happens to have SVK
1599       installed, report the micro-revision as whatever version existed
1600       in the tarball, not as "x".
1603 Changes in version 0.2.0.1-alpha - 2007-06-01
1604   This early development snapshot provides new features for people running
1605   Tor as both a client and a server (check out the new RelayBandwidth
1606   config options); lets Tor run as a DNS proxy; and generally moves us
1607   forward on a lot of fronts.
1609   o Major features, server usability:
1610     - New config options RelayBandwidthRate and RelayBandwidthBurst:
1611       a separate set of token buckets for relayed traffic. Right now
1612       relayed traffic is defined as answers to directory requests, and
1613       OR connections that don't have any local circuits on them.
1615   o Major features, client usability:
1616     - A client-side DNS proxy feature to replace the need for
1617       dns-proxy-tor: Just set "DNSPort 9999", and Tor will now listen
1618       for DNS requests on port 9999, use the Tor network to resolve them
1619       anonymously, and send the reply back like a regular DNS server.
1620       The code still only implements a subset of DNS.
1621     - Make PreferTunneledDirConns and TunnelDirConns work even when
1622       we have no cached directory info. This means Tor clients can now
1623       do all of their connections protected by TLS.
1625   o Major features, performance and efficiency:
1626     - Directory authorities accept and serve "extra info" documents for
1627       routers. These documents contain fields from router descriptors
1628       that aren't usually needed, and that use a lot of excess
1629       bandwidth. Once these fields are removed from router descriptors,
1630       the bandwidth savings should be about 60%. [Partially implements
1631       proposal 104.]
1632     - Servers upload extra-info documents to any authority that accepts
1633       them. Authorities (and caches that have been configured to download
1634       extra-info documents) download them as needed. [Partially implements
1635       proposal 104.]
1636     - Change the way that Tor buffers data that it is waiting to write.
1637       Instead of queueing data cells in an enormous ring buffer for each
1638       client->OR or OR->OR connection, we now queue cells on a separate
1639       queue for each circuit.  This lets us use less slack memory, and
1640       will eventually let us be smarter about prioritizing different kinds
1641       of traffic.
1642     - Use memory pools to allocate cells with better speed and memory
1643       efficiency, especially on platforms where malloc() is inefficient.
1644     - Stop reading on edge connections when their corresponding circuit
1645       buffers are full; start again as the circuits empty out.
1647   o Major features, other:
1648     - Add an HSAuthorityRecordStats option that hidden service authorities
1649       can use to track statistics of overall hidden service usage without
1650       logging information that would be very useful to an attacker.
1651     - Start work implementing multi-level keys for directory authorities:
1652       Add a standalone tool to generate key certificates. (Proposal 103.)
1654   o Security fixes:
1655     - Directory authorities now call routers Stable if they have an
1656       uptime of at least 30 days, even if that's not the median uptime
1657       in the network. Implements proposal 107, suggested by Kevin Bauer
1658       and Damon McCoy.
1660   o Minor fixes (resource management):
1661     - Count the number of open sockets separately from the number
1662       of active connection_t objects. This will let us avoid underusing
1663       our allocated connection limit.
1664     - We no longer use socket pairs to link an edge connection to an
1665       anonymous directory connection or a DirPort test connection.
1666       Instead, we track the link internally and transfer the data
1667       in-process. This saves two sockets per "linked" connection (at the
1668       client and at the server), and avoids the nasty Windows socketpair()
1669       workaround.
1670     - Keep unused 4k and 16k buffers on free lists, rather than wasting 8k
1671       for every single inactive connection_t. Free items from the
1672       4k/16k-buffer free lists when they haven't been used for a while.
1674   o Minor features (build):
1675     - Make autoconf search for libevent, openssl, and zlib consistently.
1676     - Update deprecated macros in configure.in.
1677     - When warning about missing headers, tell the user to let us
1678       know if the compile succeeds anyway, so we can downgrade the
1679       warning.
1680     - Include the current subversion revision as part of the version
1681       string: either fetch it directly if we're in an SVN checkout, do
1682       some magic to guess it if we're in an SVK checkout, or use
1683       the last-detected version if we're building from a .tar.gz.
1684       Use this version consistently in log messages.
1686   o Minor features (logging):
1687     - Always prepend "Bug: " to any log message about a bug.
1688     - Put a platform string (e.g. "Linux i686") in the startup log
1689       message, so when people paste just their logs, we know if it's
1690       OpenBSD or Windows or what.
1691     - When logging memory usage, break down memory used in buffers by
1692       buffer type.
1694   o Minor features (directory system):
1695     - New config option V2AuthoritativeDirectory that all directory
1696       authorities should set. This will let future authorities choose
1697       not to serve V2 directory information.
1698     - Directory authorities allow multiple router descriptors and/or extra
1699       info documents to be uploaded in a single go.  This will make
1700       implementing proposal 104 simpler.
1702   o Minor features (controller):
1703     - Add a new config option __DisablePredictedCircuits designed for
1704       use by the controller, when we don't want Tor to build any circuits
1705       preemptively.
1706     - Let the controller specify HOP=%d as an argument to ATTACHSTREAM,
1707       so we can exit from the middle of the circuit.
1708     - Implement "getinfo status/circuit-established".
1709     - Implement "getinfo status/version/..." so a controller can tell
1710       whether the current version is recommended, and whether any versions
1711       are good, and how many authorities agree. (Patch from shibz.)
1713   o Minor features (hidden services):
1714     - Allow multiple HiddenServicePort directives with the same virtual
1715       port; when they occur, the user is sent round-robin to one
1716       of the target ports chosen at random.  Partially fixes bug 393 by
1717       adding limited ad-hoc round-robining.
1719   o Minor features (other):
1720     - More unit tests.
1721     - Add a new AutomapHostsOnResolve option: when it is enabled, any
1722       resolve request for hosts matching a given pattern causes Tor to
1723       generate an internal virtual address mapping for that host.  This
1724       allows DNSPort to work sensibly with hidden service users.  By
1725       default, .exit and .onion addresses are remapped; the list of
1726       patterns can be reconfigured with AutomapHostsSuffixes.
1727     - Add an "-F" option to tor-resolve to force a resolve for a .onion
1728       address. Thanks to the AutomapHostsOnResolve option, this is no
1729       longer a completely silly thing to do.
1730     - If Tor is invoked from something that isn't a shell (e.g. Vidalia),
1731       now we expand "-f ~/.tor/torrc" correctly. Suggested by Matt Edman.
1732     - Treat "2gb" when given in torrc for a bandwidth as meaning 2gb,
1733       minus 1 byte: the actual maximum declared bandwidth.
1735   o Removed features:
1736     - Removed support for the old binary "version 0" controller protocol.
1737       This has been deprecated since 0.1.1, and warnings have been issued
1738       since 0.1.2.  When we encounter a v0 control message, we now send
1739       back an error and close the connection.
1740     - Remove the old "dns worker" server DNS code: it hasn't been default
1741       since 0.1.2.2-alpha, and all the servers seem to be using the new
1742       eventdns code.
1744   o Minor bugfixes (portability):
1745     - Even though Windows is equally happy with / and \ as path separators,
1746       try to use \ consistently on Windows and / consistently on Unix: it
1747       makes the log messages nicer.
1748     - Correctly report platform name on Windows 95 OSR2 and Windows 98 SE.
1749     - Read resolv.conf files correctly on platforms where read() returns
1750       partial results on small file reads.
1752   o Minor bugfixes (directory):
1753     - Correctly enforce that elements of directory objects do not appear
1754       more often than they are allowed to appear.
1755     - When we are reporting the DirServer line we just parsed, we were
1756       logging the second stanza of the key fingerprint, not the first.
1758   o Minor bugfixes (logging):
1759     - When we hit an EOF on a log (probably because we're shutting down),
1760       don't try to remove the log from the list: just mark it as
1761       unusable.  (Bulletproofs against bug 222.)
1763   o Minor bugfixes (other):
1764     - In the exitlist script, only consider the most recently published
1765       server descriptor for each server. Also, when the user requests
1766       a list of servers that _reject_ connections to a given address,
1767       explicitly exclude the IPs that also have servers that accept
1768       connections to that address. (Resolves bug 405.)
1769     - Stop allowing hibernating servers to be "stable" or "fast".
1770     - On Windows, we were preventing other processes from reading
1771       cached-routers while Tor was running.  (Reported by janbar)
1772     - Make the NodeFamilies config option work. (Reported by
1773       lodger -- it has never actually worked, even though we added it
1774       in Oct 2004.)
1775     - Check return values from pthread_mutex functions.
1776     - Don't save non-general-purpose router descriptors to the disk cache,
1777       because we have no way of remembering what their purpose was when
1778       we restart.
1779     - Add even more asserts to hunt down bug 417.
1780     - Build without verbose warnings even on (not-yet-released) gcc 4.2.
1781     - Fix a possible (but very unlikely) bug in picking routers by bandwidth.
1782       Add a log message to confirm that it is in fact unlikely.
1784   o Minor bugfixes (controller):
1785     - Make 'getinfo fingerprint' return a 551 error if we're not a
1786       server, so we match what the control spec claims we do. Reported
1787       by daejees.
1788     - Fix a typo in an error message when extendcircuit fails that
1789       caused us to not follow the \r\n-based delimiter protocol. Reported
1790       by daejees.
1792   o Code simplifications and refactoring:
1793     - Stop passing around circuit_t and crypt_path_t pointers that are
1794       implicit in other procedure arguments.
1795     - Drop the old code to choke directory connections when the
1796       corresponding OR connections got full: thanks to the cell queue
1797       feature, OR conns don't get full any more.
1798     - Make dns_resolve() handle attaching connections to circuits
1799       properly, so the caller doesn't have to.
1800     - Rename wants_to_read and wants_to_write to read/write_blocked_on_bw.
1801     - Keep the connection array as a dynamic smartlist_t, rather than as
1802       a fixed-sized array. This is important, as the number of connections
1803       is becoming increasingly decoupled from the number of sockets.
1806 Changes in version 0.1.2.14 - 2007-05-25
1807   Tor 0.1.2.14 changes the addresses of two directory authorities (this
1808   change especially affects those who serve or use hidden services),
1809   and fixes several other crash- and security-related bugs.
1811   o Directory authority changes:
1812     - Two directory authorities (moria1 and moria2) just moved to new
1813       IP addresses. This change will particularly affect those who serve
1814       or use hidden services.
1816   o Major bugfixes (crashes):
1817     - If a directory server runs out of space in the connection table
1818       as it's processing a begin_dir request, it will free the exit stream
1819       but leave it attached to the circuit, leading to unpredictable
1820       behavior. (Reported by seeess, fixes bug 425.)
1821     - Fix a bug in dirserv_remove_invalid() that would cause authorities
1822       to corrupt memory under some really unlikely scenarios.
1823     - Tighten router parsing rules. (Bugs reported by Benedikt Boss.)
1824     - Avoid segfaults when reading from mmaped descriptor file. (Reported
1825       by lodger.)
1827   o Major bugfixes (security):
1828     - When choosing an entry guard for a circuit, avoid using guards
1829       that are in the same family as the chosen exit -- not just guards
1830       that are exactly the chosen exit. (Reported by lodger.)
1832   o Major bugfixes (resource management):
1833     - If a directory authority is down, skip it when deciding where to get
1834       networkstatus objects or descriptors. Otherwise we keep asking
1835       every 10 seconds forever. Fixes bug 384.
1836     - Count it as a failure if we fetch a valid network-status but we
1837       don't want to keep it. Otherwise we'll keep fetching it and keep
1838       not wanting to keep it. Fixes part of bug 422.
1839     - If all of our dirservers have given us bad or no networkstatuses
1840       lately, then stop hammering them once per minute even when we
1841       think they're failed. Fixes another part of bug 422.
1843   o Minor bugfixes:
1844     - Actually set the purpose correctly for descriptors inserted with
1845       purpose=controller.
1846     - When we have k non-v2 authorities in our DirServer config,
1847       we ignored the last k authorities in the list when updating our
1848       network-statuses.
1849     - Correctly back-off from requesting router descriptors that we are
1850       having a hard time downloading.
1851     - Read resolv.conf files correctly on platforms where read() returns
1852       partial results on small file reads.
1853     - Don't rebuild the entire router store every time we get 32K of
1854       routers: rebuild it when the journal gets very large, or when
1855       the gaps in the store get very large.
1857   o Minor features:
1858     - When routers publish SVN revisions in their router descriptors,
1859       authorities now include those versions correctly in networkstatus
1860       documents.
1861     - Warn when using a version of libevent before 1.3b to run a server on
1862       OSX or BSD: these versions interact badly with userspace threads.
1865 Changes in version 0.1.2.13 - 2007-04-24
1866   This release features some major anonymity fixes, such as safer path
1867   selection; better client performance; faster bootstrapping, better
1868   address detection, and better DNS support for servers; write limiting as
1869   well as read limiting to make servers easier to run; and a huge pile of
1870   other features and bug fixes. The bundles also ship with Vidalia 0.0.11.
1872   Tor 0.1.2.13 is released in memory of Rob Levin (1955-2006), aka lilo
1873   of the Freenode IRC network, remembering his patience and vision for
1874   free speech on the Internet.
1876   o Minor fixes:
1877     - Fix a memory leak when we ask for "all" networkstatuses and we
1878       get one we don't recognize.
1879     - Add more asserts to hunt down bug 417.
1880     - Disable kqueue on OS X 10.3 and earlier, to fix bug 371.
1883 Changes in version 0.1.2.12-rc - 2007-03-16
1884   o Major bugfixes:
1885     - Fix an infinite loop introduced in 0.1.2.7-alpha when we serve
1886       directory information requested inside Tor connections (i.e. via
1887       begin_dir cells). It only triggered when the same connection was
1888       serving other data at the same time. Reported by seeess.
1890   o Minor bugfixes:
1891     - When creating a circuit via the controller, send a 'launched'
1892       event when we're done, so we follow the spec better.
1895 Changes in version 0.1.2.11-rc - 2007-03-15
1896   o Minor bugfixes (controller), reported by daejees:
1897     - Correct the control spec to match how the code actually responds
1898       to 'getinfo addr-mappings/*'.
1899     - The control spec described a GUARDS event, but the code
1900       implemented a GUARD event. Standardize on GUARD, but let people
1901       ask for GUARDS too.
1904 Changes in version 0.1.2.10-rc - 2007-03-07
1905   o Major bugfixes (Windows):
1906     - Do not load the NT services library functions (which may not exist)
1907       just to detect if we're a service trying to shut down. Now we run
1908       on Win98 and friends again.
1910   o Minor bugfixes (other):
1911     - Clarify a couple of log messages.
1912     - Fix a misleading socks5 error number.
1915 Changes in version 0.1.2.9-rc - 2007-03-02
1916   o Major bugfixes (Windows):
1917     - On MinGW, use "%I64u" to printf/scanf 64-bit integers, instead
1918       of the usual GCC "%llu". This prevents a bug when saving 64-bit
1919       int configuration values: the high-order 32 bits would get
1920       truncated. In particular, we were being bitten by the default
1921       MaxAdvertisedBandwidth of 128 TB turning into 0. (Fixes bug 400
1922       and maybe also bug 397.)
1924   o Minor bugfixes (performance):
1925     - Use OpenSSL's AES implementation on platforms where it's faster.
1926       This could save us as much as 10% CPU usage.
1928   o Minor bugfixes (server):
1929     - Do not rotate onion key immediately after setting it for the first
1930       time.
1932   o Minor bugfixes (directory authorities):
1933     - Stop calling servers that have been hibernating for a long time
1934       "stable". Also, stop letting hibernating or obsolete servers affect
1935       uptime and bandwidth cutoffs.
1936     - Stop listing hibernating servers in the v1 directory.
1938   o Minor bugfixes (hidden services):
1939     - Upload hidden service descriptors slightly less often, to reduce
1940       load on authorities.
1942   o Minor bugfixes (other):
1943     - Fix an assert that could trigger if a controller quickly set then
1944       cleared EntryNodes.  (Bug found by Udo van den Heuvel.)
1945     - On architectures where sizeof(int)>4, still clamp declarable bandwidth
1946       to INT32_MAX.
1947     - Fix a potential race condition in the rpm installer.  Found by
1948       Stefan Nordhausen.
1949     - Try to fix eventdns warnings once and for all: do not treat a dns rcode
1950       of 2 as indicating that the server is completely bad; it sometimes
1951       means that the server is just bad for the request in question. (may fix
1952       the last of bug 326.)
1953     - Disable encrypted directory connections when we don't have a server
1954       descriptor for the destination. We'll get this working again in
1955       the 0.2.0 branch.
1958 Changes in version 0.1.2.8-beta - 2007-02-26
1959   o Major bugfixes (crashes):
1960     - Stop crashing when the controller asks us to resetconf more than
1961       one config option at once. (Vidalia 0.0.11 does this.)
1962     - Fix a crash that happened on Win98 when we're given command-line
1963       arguments: don't try to load NT service functions from advapi32.dll
1964       except when we need them. (Bug introduced in 0.1.2.7-alpha;
1965       resolves bug 389.)
1966     - Fix a longstanding obscure crash bug that could occur when
1967       we run out of DNS worker processes. (Resolves bug 390.)
1969   o Major bugfixes (hidden services):
1970     - Correctly detect whether hidden service descriptor downloads are
1971       in-progress. (Suggested by Karsten Loesing; fixes bug 399.)
1973   o Major bugfixes (accounting):
1974     - When we start during an accounting interval before it's time to wake
1975       up, remember to wake up at the correct time. (May fix bug 342.)
1977   o Minor bugfixes (controller):
1978     - Give the controller END_STREAM_REASON_DESTROY events _before_ we
1979       clear the corresponding on_circuit variable, and remember later
1980       that we don't need to send a redundant CLOSED event.  (Resolves part
1981       3 of bug 367.)
1982     - Report events where a resolve succeeded or where we got a socks
1983       protocol error correctly, rather than calling both of them
1984       "INTERNAL".
1985     - Change reported stream target addresses to IP consistently when
1986       we finally get the IP from an exit node.
1987     - Send log messages to the controller even if they happen to be very
1988       long.
1990   o Minor bugfixes (other):
1991     - Display correct results when reporting which versions are
1992       recommended, and how recommended they are. (Resolves bug 383.)
1993     - Improve our estimates for directory bandwidth to be less random:
1994       guess that an unrecognized directory will have the average bandwidth
1995       from all known directories, not that it will have the average
1996       bandwidth from those directories earlier than it on the list.
1997     - If we start a server with ClientOnly 1, then set ClientOnly to 0
1998       and hup, stop triggering an assert based on an empty onion_key.
1999     - On platforms with no working mmap() equivalent, don't warn the
2000       user when cached-routers doesn't exist.
2001     - Warn the user when mmap() [or its equivalent] fails for some reason
2002       other than file-not-found.
2003     - Don't warn the user when cached-routers.new doesn't exist: that's
2004       perfectly fine when starting up for the first time.
2005     - When EntryNodes are configured, rebuild the guard list to contain,
2006       in order: the EntryNodes that were guards before; the rest of the
2007       EntryNodes; the nodes that were guards before.
2008     - Mask out all signals in sub-threads; only the libevent signal
2009       handler should be processing them. This should prevent some crashes
2010       on some machines using pthreads. (Patch from coderman.)
2011     - Fix switched arguments on memset in the implementation of
2012       tor_munmap() for systems with no mmap() call.
2013     - When Tor receives a router descriptor that it asked for, but
2014       no longer wants (because it has received fresh networkstatuses
2015       in the meantime), do not warn the user.  Cache the descriptor if
2016       we're a cache; drop it if we aren't.
2017     - Make earlier entry guards _really_ get retried when the network
2018       comes back online.
2019     - On a malformed DNS reply, always give an error to the corresponding
2020       DNS request.
2021     - Build with recent libevents on platforms that do not define the
2022       nonstandard types "u_int8_t" and friends.
2024   o Minor features (controller):
2025     - Warn the user when an application uses the obsolete binary v0
2026       control protocol.  We're planning to remove support for it during
2027       the next development series, so it's good to give people some
2028       advance warning.
2029     - Add STREAM_BW events to report per-entry-stream bandwidth
2030       use. (Patch from Robert Hogan.)
2031     - Rate-limit SIGNEWNYM signals in response to controllers that
2032       impolitely generate them for every single stream. (Patch from
2033       mwenge; closes bug 394.)
2034     - Make REMAP stream events have a SOURCE (cache or exit), and
2035       make them generated in every case where we get a successful
2036       connected or resolved cell.
2038   o Minor bugfixes (performance):
2039     - Call router_have_min_dir_info half as often. (This is showing up in
2040       some profiles, but not others.)
2041     - When using GCC, make log_debug never get called at all, and its
2042       arguments never get evaluated, when no debug logs are configured.
2043       (This is showing up in some profiles, but not others.)
2045   o Minor features:
2046     - Remove some never-implemented options.  Mark PathlenCoinWeight as
2047       obsolete.
2048     - Implement proposal 106: Stop requiring clients to have well-formed
2049       certificates; stop checking nicknames in certificates. (Clients
2050       have certificates so that they can look like Tor servers, but in
2051       the future we might want to allow them to look like regular TLS
2052       clients instead. Nicknames in certificates serve no purpose other
2053       than making our protocol easier to recognize on the wire.)
2054     - Revise messages on handshake failure again to be even more clear about
2055       which are incoming connections and which are outgoing.
2056     - Discard any v1 directory info that's over 1 month old (for
2057       directories) or over 1 week old (for running-routers lists).
2058     - Do not warn when individual nodes in the configuration's EntryNodes,
2059       ExitNodes, etc are down: warn only when all possible nodes
2060       are down. (Fixes bug 348.)
2061     - Always remove expired routers and networkstatus docs before checking
2062       whether we have enough information to build circuits. (Fixes
2063       bug 373.)
2064     - Put a lower-bound on MaxAdvertisedBandwidth.
2067 Changes in version 0.1.2.7-alpha - 2007-02-06
2068   o Major bugfixes (rate limiting):
2069     - Servers decline directory requests much more aggressively when
2070       they're low on bandwidth. Otherwise they end up queueing more and
2071       more directory responses, which can't be good for latency.
2072     - But never refuse directory requests from local addresses.
2073     - Fix a memory leak when sending a 503 response for a networkstatus
2074       request.
2075     - Be willing to read or write on local connections (e.g. controller
2076       connections) even when the global rate limiting buckets are empty.
2077     - If our system clock jumps back in time, don't publish a negative
2078       uptime in the descriptor. Also, don't let the global rate limiting
2079       buckets go absurdly negative.
2080     - Flush local controller connection buffers periodically as we're
2081       writing to them, so we avoid queueing 4+ megabytes of data before
2082       trying to flush.
2084   o Major bugfixes (NT services):
2085     - Install as NT_AUTHORITY\LocalService rather than as SYSTEM; add a
2086       command-line flag so that admins can override the default by saying
2087       "tor --service install --user "SomeUser"".  This will not affect
2088       existing installed services.  Also, warn the user that the service
2089       will look for its configuration file in the service user's
2090       %appdata% directory.  (We can't do the 'hardwire the user's appdata
2091       directory' trick any more, since we may not have read access to that
2092       directory.)
2094   o Major bugfixes (other):
2095     - Previously, we would cache up to 16 old networkstatus documents
2096       indefinitely, if they came from nontrusted authorities. Now we
2097       discard them if they are more than 10 days old.
2098     - Fix a crash bug in the presence of DNS hijacking (reported by Andrew
2099       Del Vecchio).
2100     - Detect and reject malformed DNS responses containing circular
2101       pointer loops.
2102     - If exits are rare enough that we're not marking exits as guards,
2103       ignore exit bandwidth when we're deciding the required bandwidth
2104       to become a guard.
2105     - When we're handling a directory connection tunneled over Tor,
2106       don't fill up internal memory buffers with all the data we want
2107       to tunnel; instead, only add it if the OR connection that will
2108       eventually receive it has some room for it. (This can lead to
2109       slowdowns in tunneled dir connections; a better solution will have
2110       to wait for 0.2.0.)
2112   o Minor bugfixes (dns):
2113     - Add some defensive programming to eventdns.c in an attempt to catch
2114       possible memory-stomping bugs.
2115     - Detect and reject DNS replies containing IPv4 or IPv6 records with
2116       an incorrect number of bytes. (Previously, we would ignore the
2117       extra bytes.)
2118     - Fix as-yet-unused reverse IPv6 lookup code so it sends nybbles
2119       in the correct order, and doesn't crash.
2120     - Free memory held in recently-completed DNS lookup attempts on exit.
2121       This was not a memory leak, but may have been hiding memory leaks.
2122     - Handle TTL values correctly on reverse DNS lookups.
2123     - Treat failure to parse resolv.conf as an error.
2125   o Minor bugfixes (other):
2126     - Fix crash with "tor --list-fingerprint" (reported by seeess).
2127     - When computing clock skew from directory HTTP headers, consider what
2128       time it was when we finished asking for the directory, not what
2129       time it is now.
2130     - Expire socks connections if they spend too long waiting for the
2131       handshake to finish. Previously we would let them sit around for
2132       days, if the connecting application didn't close them either.
2133     - And if the socks handshake hasn't started, don't send a
2134       "DNS resolve socks failed" handshake reply; just close it.
2135     - Stop using C functions that OpenBSD's linker doesn't like.
2136     - Don't launch requests for descriptors unless we have networkstatuses
2137       from at least half of the authorities.  This delays the first
2138       download slightly under pathological circumstances, but can prevent
2139       us from downloading a bunch of descriptors we don't need.
2140     - Do not log IPs with TLS failures for incoming TLS
2141       connections. (Fixes bug 382.)
2142     - If the user asks to use invalid exit nodes, be willing to use
2143       unstable ones.
2144     - Stop using the reserved ac_cv namespace in our configure script.
2145     - Call stat() slightly less often; use fstat() when possible.
2146     - Refactor the way we handle pending circuits when an OR connection
2147       completes or fails, in an attempt to fix a rare crash bug.
2148     - Only rewrite a conn's address based on X-Forwarded-For: headers
2149       if it's a parseable public IP address; and stop adding extra quotes
2150       to the resulting address.
2152   o Major features:
2153     - Weight directory requests by advertised bandwidth. Now we can
2154       let servers enable write limiting but still allow most clients to
2155       succeed at their directory requests. (We still ignore weights when
2156       choosing a directory authority; I hope this is a feature.)
2158   o Minor features:
2159     - Create a new file ReleaseNotes which was the old ChangeLog. The
2160       new ChangeLog file now includes the summaries for all development
2161       versions too.
2162     - Check for addresses with invalid characters at the exit as well
2163       as at the client, and warn less verbosely when they fail. You can
2164       override this by setting ServerDNSAllowNonRFC953Addresses to 1.
2165     - Adapt a patch from goodell to let the contrib/exitlist script
2166       take arguments rather than require direct editing.
2167     - Inform the server operator when we decide not to advertise a
2168       DirPort due to AccountingMax enabled or a low BandwidthRate. It
2169       was confusing Zax, so now we're hopefully more helpful.
2170     - Bring us one step closer to being able to establish an encrypted
2171       directory tunnel without knowing a descriptor first. Still not
2172       ready yet. As part of the change, now assume we can use a
2173       create_fast cell if we don't know anything about a router.
2174     - Allow exit nodes to use nameservers running on ports other than 53.
2175     - Servers now cache reverse DNS replies.
2176     - Add an --ignore-missing-torrc command-line option so that we can
2177       get the "use sensible defaults if the configuration file doesn't
2178       exist" behavior even when specifying a torrc location on the command
2179       line.
2181   o Minor features (controller):
2182     - Track reasons for OR connection failure; make these reasons
2183       available via the controller interface. (Patch from Mike Perry.)
2184     - Add a SOCKS_BAD_HOSTNAME client status event so controllers
2185       can learn when clients are sending malformed hostnames to Tor.
2186     - Clean up documentation for controller status events.
2187     - Add a REMAP status to stream events to note that a stream's
2188       address has changed because of a cached address or a MapAddress
2189       directive.
2192 Changes in version 0.1.2.6-alpha - 2007-01-09
2193   o Major bugfixes:
2194     - Fix an assert error introduced in 0.1.2.5-alpha: if a single TLS
2195       connection handles more than 4 gigs in either direction, we crash.
2196     - Fix an assert error introduced in 0.1.2.5-alpha: if we're an
2197       advertised exit node, somebody might try to exit from us when
2198       we're bootstrapping and before we've built our descriptor yet.
2199       Refuse the connection rather than crashing.
2201   o Minor bugfixes:
2202     - Warn if we (as a server) find that we've resolved an address that we
2203       weren't planning to resolve.
2204     - Warn that using select() on any libevent version before 1.1 will be
2205       unnecessarily slow (even for select()).
2206     - Flush ERR-level controller status events just like we currently
2207       flush ERR-level log events, so that a Tor shutdown doesn't prevent
2208       the controller from learning about current events.
2210   o Minor features (more controller status events):
2211     - Implement EXTERNAL_ADDRESS server status event so controllers can
2212       learn when our address changes.
2213     - Implement BAD_SERVER_DESCRIPTOR server status event so controllers
2214       can learn when directories reject our descriptor.
2215     - Implement SOCKS_UNKNOWN_PROTOCOL client status event so controllers
2216       can learn when a client application is speaking a non-socks protocol
2217       to our SocksPort.
2218     - Implement DANGEROUS_SOCKS client status event so controllers
2219       can learn when a client application is leaking DNS addresses.
2220     - Implement BUG general status event so controllers can learn when
2221       Tor is unhappy about its internal invariants.
2222     - Implement CLOCK_SKEW general status event so controllers can learn
2223       when Tor thinks the system clock is set incorrectly.
2224     - Implement GOOD_SERVER_DESCRIPTOR and ACCEPTED_SERVER_DESCRIPTOR
2225       server status events so controllers can learn when their descriptors
2226       are accepted by a directory.
2227     - Implement CHECKING_REACHABILITY and REACHABILITY_{SUCCEEDED|FAILED}
2228       server status events so controllers can learn about Tor's progress in
2229       deciding whether it's reachable from the outside.
2230     - Implement BAD_LIBEVENT general status event so controllers can learn
2231       when we have a version/method combination in libevent that needs to
2232       be changed.
2233     - Implement NAMESERVER_STATUS, NAMESERVER_ALL_DOWN, DNS_HIJACKED,
2234       and DNS_USELESS server status events so controllers can learn
2235       about changes to DNS server status.
2237   o Minor features (directory):
2238     - Authorities no longer recommend exits as guards if this would shift
2239       too much load to the exit nodes.
2242 Changes in version 0.1.2.5-alpha - 2007-01-06
2243   o Major features:
2244     - Enable write limiting as well as read limiting. Now we sacrifice
2245       capacity if we're pushing out lots of directory traffic, rather
2246       than overrunning the user's intended bandwidth limits.
2247     - Include TLS overhead when counting bandwidth usage; previously, we
2248       would count only the bytes sent over TLS, but not the bytes used
2249       to send them.
2250     - Support running the Tor service with a torrc not in the same
2251       directory as tor.exe and default to using the torrc located in
2252       the %appdata%\Tor\ of the user who installed the service. Patch
2253       from Matt Edman.
2254     - Servers now check for the case when common DNS requests are going to
2255       wildcarded addresses (i.e. all getting the same answer), and change
2256       their exit policy to reject *:* if it's happening.
2257     - Implement BEGIN_DIR cells, so we can connect to the directory
2258       server via TLS to do encrypted directory requests rather than
2259       plaintext. Enable via the TunnelDirConns and PreferTunneledDirConns
2260       config options if you like.
2262   o Minor features (config and docs):
2263     - Start using the state file to store bandwidth accounting data:
2264       the bw_accounting file is now obsolete. We'll keep generating it
2265       for a while for people who are still using 0.1.2.4-alpha.
2266     - Try to batch changes to the state file so that we do as few
2267       disk writes as possible while still storing important things in
2268       a timely fashion.
2269     - The state file and the bw_accounting file get saved less often when
2270       the AvoidDiskWrites config option is set.
2271     - Make PIDFile work on Windows (untested).
2272     - Add internal descriptions for a bunch of configuration options:
2273       accessible via controller interface and in comments in saved
2274       options files.
2275     - Reject *:563 (NNTPS) in the default exit policy. We already reject
2276       NNTP by default, so this seems like a sensible addition.
2277     - Clients now reject hostnames with invalid characters. This should
2278       avoid some inadvertent info leaks. Add an option
2279       AllowNonRFC953Hostnames to disable this behavior, in case somebody
2280       is running a private network with hosts called @, !, and #.
2281     - Add a maintainer script to tell us which options are missing
2282       documentation: "make check-docs".
2283     - Add a new address-spec.txt document to describe our special-case
2284       addresses: .exit, .onion, and .noconnnect.
2286   o Minor features (DNS):
2287     - Ongoing work on eventdns infrastructure: now it has dns server
2288       and ipv6 support. One day Tor will make use of it.
2289     - Add client-side caching for reverse DNS lookups.
2290     - Add support to tor-resolve tool for reverse lookups and SOCKS5.
2291     - When we change nameservers or IP addresses, reset and re-launch
2292       our tests for DNS hijacking.
2294   o Minor features (directory):
2295     - Authorities now specify server versions in networkstatus. This adds
2296       about 2% to the size of compressed networkstatus docs, and allows
2297       clients to tell which servers support BEGIN_DIR and which don't.
2298       The implementation is forward-compatible with a proposed future
2299       protocol version scheme not tied to Tor versions.
2300     - DirServer configuration lines now have an orport= option so
2301       clients can open encrypted tunnels to the authorities without
2302       having downloaded their descriptors yet. Enabled for moria1,
2303       moria2, tor26, and lefkada now in the default configuration.
2304     - Directory servers are more willing to send a 503 "busy" if they
2305       are near their write limit, especially for v1 directory requests.
2306       Now they can use their limited bandwidth for actual Tor traffic.
2307     - Clients track responses with status 503 from dirservers. After a
2308       dirserver has given us a 503, we try not to use it until an hour has
2309       gone by, or until we have no dirservers that haven't given us a 503.
2310     - When we get a 503 from a directory, and we're not a server, we don't
2311       count the failure against the total number of failures allowed
2312       for the thing we're trying to download.
2313     - Report X-Your-Address-Is correctly from tunneled directory
2314       connections; don't report X-Your-Address-Is when it's an internal
2315       address; and never believe reported remote addresses when they're
2316       internal.
2317     - Protect against an unlikely DoS attack on directory servers.
2318     - Add a BadDirectory flag to network status docs so that authorities
2319       can (eventually) tell clients about caches they believe to be
2320       broken.
2322   o Minor features (controller):
2323     - Have GETINFO dir/status/* work on hosts with DirPort disabled.
2324     - Reimplement GETINFO so that info/names stays in sync with the
2325       actual keys.
2326     - Implement "GETINFO fingerprint".
2327     - Implement "SETEVENTS GUARD" so controllers can get updates on
2328       entry guard status as it changes.
2330   o Minor features (clean up obsolete pieces):
2331     - Remove some options that have been deprecated since at least
2332       0.1.0.x: AccountingMaxKB, LogFile, DebugLogFile, LogLevel, and
2333       SysLog. Use AccountingMax instead of AccountingMaxKB, and use Log
2334       to set log options.
2335     - We no longer look for identity and onion keys in "identity.key" and
2336       "onion.key" -- these were replaced by secret_id_key and
2337       secret_onion_key in 0.0.8pre1.
2338     - We no longer require unrecognized directory entries to be
2339       preceded by "opt".
2341   o Major bugfixes (security):
2342     - Stop sending the HttpProxyAuthenticator string to directory
2343       servers when directory connections are tunnelled through Tor.
2344     - Clients no longer store bandwidth history in the state file.
2345     - Do not log introduction points for hidden services if SafeLogging
2346       is set.
2347     - When generating bandwidth history, round down to the nearest
2348       1k. When storing accounting data, round up to the nearest 1k.
2349     - When we're running as a server, remember when we last rotated onion
2350       keys, so that we will rotate keys once they're a week old even if
2351       we never stay up for a week ourselves.
2353   o Major bugfixes (other):
2354     - Fix a longstanding bug in eventdns that prevented the count of
2355       timed-out resolves from ever being reset. This bug caused us to
2356       give up on a nameserver the third time it timed out, and try it
2357       10 seconds later... and to give up on it every time it timed out
2358       after that.
2359     - Take out the '5 second' timeout from the connection retry
2360       schedule. Now the first connect attempt will wait a full 10
2361       seconds before switching to a new circuit. Perhaps this will help
2362       a lot. Based on observations from Mike Perry.
2363     - Fix a bug on the Windows implementation of tor_mmap_file() that
2364       would prevent the cached-routers file from ever loading. Reported
2365       by John Kimble.
2367   o Minor bugfixes:
2368     - Fix an assert failure when a directory authority sets
2369       AuthDirRejectUnlisted and then receives a descriptor from an
2370       unlisted router. Reported by seeess.
2371     - Avoid a double-free when parsing malformed DirServer lines.
2372     - Fix a bug when a BSD-style PF socket is first used. Patch from
2373       Fabian Keil.
2374     - Fix a bug in 0.1.2.2-alpha that prevented clients from asking
2375       to resolve an address at a given exit node even when they ask for
2376       it by name.
2377     - Servers no longer ever list themselves in their "family" line,
2378       even if configured to do so. This makes it easier to configure
2379       family lists conveniently.
2380     - When running as a server, don't fall back to 127.0.0.1 when no
2381       nameservers are configured in /etc/resolv.conf; instead, make the
2382       user fix resolv.conf or specify nameservers explicitly. (Resolves
2383       bug 363.)
2384     - Stop accepting certain malformed ports in configured exit policies.
2385     - Don't re-write the fingerprint file every restart, unless it has
2386       changed.
2387     - Stop warning when a single nameserver fails: only warn when _all_ of
2388       our nameservers have failed. Also, when we only have one nameserver,
2389       raise the threshold for deciding that the nameserver is dead.
2390     - Directory authorities now only decide that routers are reachable
2391       if their identity keys are as expected.
2392     - When the user uses bad syntax in the Log config line, stop
2393       suggesting other bad syntax as a replacement.
2394     - Correctly detect ipv6 DNS capability on OpenBSD.
2396   o Minor bugfixes (controller):
2397     - Report the circuit number correctly in STREAM CLOSED events. Bug
2398       reported by Mike Perry.
2399     - Do not report bizarre values for results of accounting GETINFOs
2400       when the last second's write or read exceeds the allotted bandwidth.
2401     - Report "unrecognized key" rather than an empty string when the
2402       controller tries to fetch a networkstatus that doesn't exist.
2405 Changes in version 0.1.1.26 - 2006-12-14
2406   o Security bugfixes:
2407     - Stop sending the HttpProxyAuthenticator string to directory
2408       servers when directory connections are tunnelled through Tor.
2409     - Clients no longer store bandwidth history in the state file.
2410     - Do not log introduction points for hidden services if SafeLogging
2411       is set.
2413   o Minor bugfixes:
2414     - Fix an assert failure when a directory authority sets
2415       AuthDirRejectUnlisted and then receives a descriptor from an
2416       unlisted router (reported by seeess).
2419 Changes in version 0.1.2.4-alpha - 2006-12-03
2420   o Major features:
2421     - Add support for using natd; this allows FreeBSDs earlier than
2422       5.1.2 to have ipfw send connections through Tor without using
2423       SOCKS. (Patch from Zajcev Evgeny with tweaks from tup.)
2425   o Minor features:
2426     - Make all connections to addresses of the form ".noconnect"
2427       immediately get closed. This lets application/controller combos
2428       successfully test whether they're talking to the same Tor by
2429       watching for STREAM events.
2430     - Make cross.sh cross-compilation script work even when autogen.sh
2431       hasn't been run. (Patch from Michael Mohr.)
2432     - Statistics dumped by -USR2 now include a breakdown of public key
2433       operations, for profiling.
2435   o Major bugfixes:
2436     - Fix a major leak when directory authorities parse their
2437       approved-routers list, a minor memory leak when we fail to pick
2438       an exit node, and a few rare leaks on errors.
2439     - Handle TransPort connections even when the server sends data before
2440       the client sends data. Previously, the connection would just hang
2441       until the client sent data. (Patch from tup based on patch from
2442       Zajcev Evgeny.)
2443     - Avoid assert failure when our cached-routers file is empty on
2444       startup.
2446   o Minor bugfixes:
2447     - Don't log spurious warnings when we see a circuit close reason we
2448       don't recognize; it's probably just from a newer version of Tor.
2449     - Have directory authorities allow larger amounts of drift in uptime
2450       without replacing the server descriptor: previously, a server that
2451       restarted every 30 minutes could have 48 "interesting" descriptors
2452       per day.
2453     - Start linking to the Tor specification and Tor reference manual
2454       correctly in the Windows installer.
2455     - Add Vidalia to the OS X uninstaller script, so when we uninstall
2456       Tor/Privoxy we also uninstall Vidalia.
2457     - Resume building on Irix64, and fix a lot of warnings from its
2458       MIPSpro C compiler.
2459     - Don't corrupt last_guessed_ip in router_new_address_suggestion()
2460       when we're running as a client.
2463 Changes in version 0.1.1.25 - 2006-11-04
2464   o Major bugfixes:
2465     - When a client asks us to resolve (rather than connect to)
2466       an address, and we have a cached answer, give them the cached
2467       answer. Previously, we would give them no answer at all.
2468     - We were building exactly the wrong circuits when we predict
2469       hidden service requirements, meaning Tor would have to build all
2470       its circuits on demand.
2471     - If none of our live entry guards have a high uptime, but we
2472       require a guard with a high uptime, try adding a new guard before
2473       we give up on the requirement. This patch should make long-lived
2474       connections more stable on average.
2475     - When testing reachability of our DirPort, don't launch new
2476       tests when there's already one in progress -- unreachable
2477       servers were stacking up dozens of testing streams.
2479   o Security bugfixes:
2480     - When the user sends a NEWNYM signal, clear the client-side DNS
2481       cache too. Otherwise we continue to act on previous information.
2483   o Minor bugfixes:
2484     - Avoid a memory corruption bug when creating a hash table for
2485       the first time.
2486     - Avoid possibility of controller-triggered crash when misusing
2487       certain commands from a v0 controller on platforms that do not
2488       handle printf("%s",NULL) gracefully.
2489     - Avoid infinite loop on unexpected controller input.
2490     - Don't log spurious warnings when we see a circuit close reason we
2491       don't recognize; it's probably just from a newer version of Tor.
2492     - Add Vidalia to the OS X uninstaller script, so when we uninstall
2493       Tor/Privoxy we also uninstall Vidalia.
2496 Changes in version 0.1.2.3-alpha - 2006-10-29
2497   o Minor features:
2498     - Prepare for servers to publish descriptors less often: never
2499       discard a descriptor simply for being too old until either it is
2500       recommended by no authorities, or until we get a better one for
2501       the same router. Make caches consider retaining old recommended
2502       routers for even longer.
2503     - If most authorities set a BadExit flag for a server, clients
2504       don't think of it as a general-purpose exit. Clients only consider
2505       authorities that advertise themselves as listing bad exits.
2506     - Directory servers now provide 'Pragma: no-cache' and 'Expires'
2507       headers for content, so that we can work better in the presence of
2508       caching HTTP proxies.
2509     - Allow authorities to list nodes as bad exits by fingerprint or by
2510       address.
2512   o Minor features, controller:
2513     - Add a REASON field to CIRC events; for backward compatibility, this
2514       field is sent only to controllers that have enabled the extended
2515       event format.  Also, add additional reason codes to explain why
2516       a given circuit has been destroyed or truncated. (Patches from
2517       Mike Perry)
2518     - Add a REMOTE_REASON field to extended CIRC events to tell the
2519       controller about why a remote OR told us to close a circuit.
2520     - Stream events also now have REASON and REMOTE_REASON fields,
2521       working much like those for circuit events.
2522     - There's now a GETINFO ns/... field so that controllers can ask Tor
2523       about the current status of a router.
2524     - A new event type "NS" to inform a controller when our opinion of
2525       a router's status has changed.
2526     - Add a GETINFO events/names and GETINFO features/names so controllers
2527       can tell which events and features are supported.
2528     - A new CLEARDNSCACHE signal to allow controllers to clear the
2529       client-side DNS cache without expiring circuits.
2531   o Security bugfixes:
2532     - When the user sends a NEWNYM signal, clear the client-side DNS
2533       cache too. Otherwise we continue to act on previous information.
2535   o Minor bugfixes:
2536     - Avoid sending junk to controllers or segfaulting when a controller
2537       uses EVENT_NEW_DESC with verbose nicknames.
2538     - Stop triggering asserts if the controller tries to extend hidden
2539       service circuits (reported by mwenge).
2540     - Avoid infinite loop on unexpected controller input.
2541     - When the controller does a "GETINFO network-status", tell it
2542       about even those routers whose descriptors are very old, and use
2543       long nicknames where appropriate.
2544     - Change NT service functions to be loaded on demand.  This lets us
2545       build with MinGW without breaking Tor for Windows 98 users.
2546     - Do DirPort reachability tests less often, since a single test
2547       chews through many circuits before giving up.
2548     - In the hidden service example in torrc.sample, stop recommending
2549       esoteric and discouraged hidden service options.
2550     - When stopping an NT service, wait up to 10 sec for it to actually
2551       stop.  (Patch from Matt Edman; resolves bug 295.)
2552     - Fix handling of verbose nicknames with ORCONN controller events:
2553       make them show up exactly when requested, rather than exactly when
2554       not requested.
2555     - When reporting verbose nicknames in entry_guards_getinfo(), avoid
2556       printing a duplicate "$" in the keys we send (reported by mwenge).
2557     - Correctly set maximum connection limit on Cygwin. (This time
2558       for sure!)
2559     - Try to detect Windows correctly when cross-compiling.
2560     - Detect the size of the routers file correctly even if it is
2561       corrupted (on systems without mmap) or not page-aligned (on systems
2562       with mmap). This bug was harmless.
2563     - Sometimes we didn't bother sending a RELAY_END cell when an attempt
2564       to open a stream fails; now we do in more cases. This should
2565       make clients able to find a good exit faster in some cases, since
2566       unhandleable requests will now get an error rather than timing out.
2567     - Resolve two memory leaks when rebuilding the on-disk router cache
2568       (reported by fookoowa).
2569     - Clean up minor code warnings suggested by the MIPSpro C compiler,
2570       and reported by some Centos users.
2571     - Controller signals now work on non-Unix platforms that don't define
2572       SIGUSR1 and SIGUSR2 the way we expect.
2573     - Patch from Michael Mohr to contrib/cross.sh, so it checks more
2574       values before failing, and always enables eventdns.
2575     - Libevent-1.2 exports, but does not define in its headers, strlcpy.
2576       Try to fix this in configure.in by checking for most functions
2577       before we check for libevent.
2580 Changes in version 0.1.2.2-alpha - 2006-10-07
2581   o Major features:
2582     - Make our async eventdns library on-by-default for Tor servers,
2583       and plan to deprecate the separate dnsworker threads.
2584     - Add server-side support for "reverse" DNS lookups (using PTR
2585       records so clients can determine the canonical hostname for a given
2586       IPv4 address). Only supported by servers using eventdns; servers
2587       now announce in their descriptors whether they support eventdns.
2588     - Specify and implement client-side SOCKS5 interface for reverse DNS
2589       lookups (see doc/socks-extensions.txt).
2590     - Add a BEGIN_DIR relay cell type for an easier in-protocol way to
2591       connect to directory servers through Tor. Previously, clients needed
2592       to find Tor exits to make private connections to directory servers.
2593     - Avoid choosing Exit nodes for entry or middle hops when the
2594       total bandwidth available from non-Exit nodes is much higher than
2595       the total bandwidth available from Exit nodes.
2596     - Workaround for name servers (like Earthlink's) that hijack failing
2597       DNS requests and replace the no-such-server answer with a "helpful"
2598       redirect to an advertising-driven search portal. Also work around
2599       DNS hijackers who "helpfully" decline to hijack known-invalid
2600       RFC2606 addresses. Config option "ServerDNSDetectHijacking 0"
2601       lets you turn it off.
2602     - Send out a burst of long-range padding cells once we've established
2603       that we're reachable. Spread them over 4 circuits, so hopefully
2604       a few will be fast. This exercises our bandwidth and bootstraps
2605       us into the directory more quickly.
2607   o New/improved config options:
2608     - Add new config option "ResolvConf" to let the server operator
2609       choose an alternate resolve.conf file when using eventdns.
2610     - Add an "EnforceDistinctSubnets" option to control our "exclude
2611       servers on the same /16" behavior. It's still on by default; this
2612       is mostly for people who want to operate private test networks with
2613       all the machines on the same subnet.
2614     - If one of our entry guards is on the ExcludeNodes list, or the
2615       directory authorities don't think it's a good guard, treat it as
2616       if it were unlisted: stop using it as a guard, and throw it off
2617       the guards list if it stays that way for a long time.
2618     - Allow directory authorities to be marked separately as authorities
2619       for the v1 directory protocol, the v2 directory protocol, and
2620       as hidden service directories, to make it easier to retire old
2621       authorities. V1 authorities should set "HSAuthoritativeDir 1"
2622       to continue being hidden service authorities too.
2623     - Remove 8888 as a LongLivedPort, and add 6697 (IRCS).
2625   o Minor features, controller:
2626     - Fix CIRC controller events so that controllers can learn the
2627       identity digests of non-Named servers used in circuit paths.
2628     - Let controllers ask for more useful identifiers for servers. Instead
2629       of learning identity digests for un-Named servers and nicknames
2630       for Named servers, the new identifiers include digest, nickname,
2631       and indication of Named status. Off by default; see control-spec.txt
2632       for more information.
2633     - Add a "getinfo address" controller command so it can display Tor's
2634       best guess to the user.
2635     - New controller event to alert the controller when our server
2636       descriptor has changed.
2637     - Give more meaningful errors on controller authentication failure.
2639   o Minor features, other:
2640     - When asked to resolve a hostname, don't use non-exit servers unless
2641       requested to do so. This allows servers with broken DNS to be
2642       useful to the network.
2643     - Divide eventdns log messages into warn and info messages.
2644     - Reserve the nickname "Unnamed" for routers that can't pick
2645       a hostname: any router can call itself Unnamed; directory
2646       authorities will never allocate Unnamed to any particular router;
2647       clients won't believe that any router is the canonical Unnamed.
2648     - Only include function names in log messages for info/debug messages.
2649       For notice/warn/err, the content of the message should be clear on
2650       its own, and printing the function name only confuses users.
2651     - Avoid some false positives during reachability testing: don't try
2652       to test via a server that's on the same /24 as us.
2653     - If we fail to build a circuit to an intended enclave, and it's
2654       not mandatory that we use that enclave, stop wanting it.
2655     - When eventdns is enabled, allow multithreaded builds on NetBSD and
2656       OpenBSD. (We had previously disabled threads on these platforms
2657       because they didn't have working thread-safe resolver functions.)
2659   o Major bugfixes, anonymity/security:
2660     - If a client asked for a server by name, and there's a named server
2661       in our network-status but we don't have its descriptor yet, we
2662       could return an unnamed server instead.
2663     - Fix NetBSD bug that could allow someone to force uninitialized RAM
2664       to be sent to a server's DNS resolver. This only affects NetBSD
2665       and other platforms that do not bounds-check tolower().
2666     - Reject (most) attempts to use Tor circuits with length one. (If
2667       many people start using Tor as a one-hop proxy, exit nodes become
2668       a more attractive target for compromise.)
2669     - Just because your DirPort is open doesn't mean people should be
2670       able to remotely teach you about hidden service descriptors. Now
2671       only accept rendezvous posts if you've got HSAuthoritativeDir set.
2673   o Major bugfixes, other:
2674     - Don't crash on race condition in dns.c: tor_assert(!resolve->expire)
2675     - When a client asks the server to resolve (not connect to)
2676       an address, and it has a cached answer, give them the cached answer.
2677       Previously, the server would give them no answer at all.
2678     - Allow really slow clients to not hang up five minutes into their
2679       directory downloads (suggested by Adam J. Richter).
2680     - We were building exactly the wrong circuits when we anticipated
2681       hidden service requirements, meaning Tor would have to build all
2682       its circuits on demand.
2683     - Avoid crashing when we mmap a router cache file of size 0.
2684     - When testing reachability of our DirPort, don't launch new
2685       tests when there's already one in progress -- unreachable
2686       servers were stacking up dozens of testing streams.
2688   o Minor bugfixes, correctness:
2689     - If we're a directory mirror and we ask for "all" network status
2690       documents, we would discard status documents from authorities
2691       we don't recognize.
2692     - Avoid a memory corruption bug when creating a hash table for
2693       the first time.
2694     - Avoid controller-triggered crash when misusing certain commands
2695       from a v0 controller on platforms that do not handle
2696       printf("%s",NULL) gracefully.
2697     - Don't crash when a controller sends a third argument to an
2698       "extendcircuit" request.
2699     - Controller protocol fixes: fix encoding in "getinfo addr-mappings"
2700       response; fix error code when "getinfo dir/status/" fails.
2701     - Avoid crash when telling controller stream-status and a stream
2702       is detached.
2703     - Patch from Adam Langley to fix assert() in eventdns.c.
2704     - Fix a debug log message in eventdns to say "X resolved to Y"
2705       instead of "X resolved to X".
2706     - Make eventdns give strings for DNS errors, not just error numbers.
2707     - Track unreachable entry guards correctly: don't conflate
2708       'unreachable by us right now' with 'listed as down by the directory
2709       authorities'. With the old code, if a guard was unreachable by
2710       us but listed as running, it would clog our guard list forever.
2711     - Behave correctly in case we ever have a network with more than
2712       2GB/s total advertised capacity.
2713     - Make TrackExitHosts case-insensitive, and fix the behavior of
2714       ".suffix" TrackExitHosts items to avoid matching in the middle of
2715       an address.
2716     - Finally fix the openssl warnings from newer gccs that believe that
2717       ignoring a return value is okay, but casting a return value and
2718       then ignoring it is a sign of madness.
2719     - Prevent the contrib/exitlist script from printing the same
2720       result more than once.
2721     - Patch from Steve Hildrey: Generate network status correctly on
2722       non-versioning dirservers.
2723     - Don't listen to the X-Your-Address-Is hint if you did the lookup
2724       via Tor; otherwise you'll think you're the exit node's IP address.
2726   o Minor bugfixes, performance:
2727     - Two small performance improvements on parsing descriptors.
2728     - Major performance improvement on inserting descriptors: change
2729       algorithm from O(n^2) to O(n).
2730     - Make the common memory allocation path faster on machines where
2731       malloc(0) returns a pointer.
2732     - Start remembering X-Your-Address-Is directory hints even if you're
2733       a client, so you can become a server more smoothly.
2734     - Avoid duplicate entries on MyFamily line in server descriptor.
2736   o Packaging, features:
2737     - Remove architecture from OS X builds. The official builds are
2738       now universal binaries.
2739     - The Debian package now uses --verify-config when (re)starting,
2740       to distinguish configuration errors from other errors.
2741     - Update RPMs to require libevent 1.1b.
2743   o Packaging, bugfixes:
2744     - Patches so Tor builds with MinGW on Windows.
2745     - Patches so Tor might run on Cygwin again.
2746     - Resume building on non-gcc compilers and ancient gcc. Resume
2747       building with the -O0 compile flag. Resume building cleanly on
2748       Debian woody.
2749     - Run correctly on OS X platforms with case-sensitive filesystems.
2750     - Correct includes for net/if.h and net/pfvar.h on OpenBSD (from Tup).
2751     - Add autoconf checks so Tor can build on Solaris x86 again.
2753   o Documentation
2754     - Documented (and renamed) ServerDNSSearchDomains and
2755       ServerDNSResolvConfFile options.
2756     - Be clearer that the *ListenAddress directives can be repeated
2757       multiple times.
2760 Changes in version 0.1.1.24 - 2006-09-29
2761   o Major bugfixes:
2762     - Allow really slow clients to not hang up five minutes into their
2763       directory downloads (suggested by Adam J. Richter).
2764     - Fix major performance regression from 0.1.0.x: instead of checking
2765       whether we have enough directory information every time we want to
2766       do something, only check when the directory information has changed.
2767       This should improve client CPU usage by 25-50%.
2768     - Don't crash if, after a server has been running for a while,
2769       it can't resolve its hostname.
2771   o Minor bugfixes:
2772     - Allow Tor to start when RunAsDaemon is set but no logs are set.
2773     - Don't crash when the controller receives a third argument to an
2774       "extendcircuit" request.
2775     - Controller protocol fixes: fix encoding in "getinfo addr-mappings"
2776       response; fix error code when "getinfo dir/status/" fails.
2777     - Fix configure.in to not produce broken configure files with
2778       more recent versions of autoconf. Thanks to Clint for his auto*
2779       voodoo.
2780     - Fix security bug on NetBSD that could allow someone to force
2781       uninitialized RAM to be sent to a server's DNS resolver. This
2782       only affects NetBSD and other platforms that do not bounds-check
2783       tolower().
2784     - Warn user when using libevent 1.1a or earlier with win32 or kqueue
2785       methods: these are known to be buggy.
2786     - If we're a directory mirror and we ask for "all" network status
2787       documents, we would discard status documents from authorities
2788       we don't recognize.
2791 Changes in version 0.1.2.1-alpha - 2006-08-27
2792   o Major features:
2793     - Add "eventdns" async dns library from Adam Langley, tweaked to
2794       build on OSX and Windows. Only enabled if you pass the
2795       --enable-eventdns argument to configure.
2796     - Allow servers with no hostname or IP address to learn their
2797       IP address by asking the directory authorities. This code only
2798       kicks in when you would normally have exited with a "no address"
2799       error. Nothing's authenticated, so use with care.
2800     - Rather than waiting a fixed amount of time between retrying
2801       application connections, we wait only 5 seconds for the first,
2802       10 seconds for the second, and 15 seconds for each retry after
2803       that. Hopefully this will improve the expected user experience.
2804     - Patch from Tup to add support for transparent AP connections:
2805       this basically bundles the functionality of trans-proxy-tor
2806       into the Tor mainline. Now hosts with compliant pf/netfilter
2807       implementations can redirect TCP connections straight to Tor
2808       without diverting through SOCKS. Needs docs.
2809     - Busy directory servers save lots of memory by spooling server
2810       descriptors, v1 directories, and v2 networkstatus docs to buffers
2811       as needed rather than en masse. Also mmap the cached-routers
2812       files, so we don't need to keep the whole thing in memory too.
2813     - Automatically avoid picking more than one node from the same
2814       /16 network when constructing a circuit.
2815     - Revise and clean up the torrc.sample that we ship with; add
2816       a section for BandwidthRate and BandwidthBurst.
2818   o Minor features:
2819     - Split circuit_t into origin_circuit_t and or_circuit_t, and
2820       split connection_t into edge, or, dir, control, and base structs.
2821       These will save quite a bit of memory on busy servers, and they'll
2822       also help us track down bugs in the code and bugs in the spec.
2823     - Experimentally re-enable kqueue on OSX when using libevent 1.1b
2824       or later. Log when we are doing this, so we can diagnose it when
2825       it fails. (Also, recommend libevent 1.1b for kqueue and
2826       win32 methods; deprecate libevent 1.0b harder; make libevent
2827       recommendation system saner.)
2828     - Start being able to build universal binaries on OS X (thanks
2829       to Phobos).
2830     - Export the default exit policy via the control port, so controllers
2831       don't need to guess what it is / will be later.
2832     - Add a man page entry for ProtocolWarnings.
2833     - Add TestVia config option to the man page.
2834     - Remove even more protocol-related warnings from Tor server logs,
2835       such as bad TLS handshakes and malformed begin cells.
2836     - Stop fetching descriptors if you're not a dir mirror and you
2837       haven't tried to establish any circuits lately. [This currently
2838       causes some dangerous behavior, because when you start up again
2839       you'll use your ancient server descriptors.]
2840     - New DirPort behavior: if you have your dirport set, you download
2841       descriptors aggressively like a directory mirror, whether or not
2842       your ORPort is set.
2843     - Get rid of the router_retry_connections notion. Now routers
2844       no longer try to rebuild long-term connections to directory
2845       authorities, and directory authorities no longer try to rebuild
2846       long-term connections to all servers. We still don't hang up
2847       connections in these two cases though -- we need to look at it
2848       more carefully to avoid flapping, and we likely need to wait til
2849       0.1.1.x is obsolete.
2850     - Drop compatibility with obsolete Tors that permit create cells
2851       to have the wrong circ_id_type.
2852     - Re-enable per-connection rate limiting. Get rid of the "OP
2853       bandwidth" concept. Lay groundwork for "bandwidth classes" --
2854       separate global buckets that apply depending on what sort of conn
2855       it is.
2856     - Start publishing one minute or so after we find our ORPort
2857       to be reachable. This will help reduce the number of descriptors
2858       we have for ourselves floating around, since it's quite likely
2859       other things (e.g. DirPort) will change during that minute too.
2860     - Fork the v1 directory protocol into its own spec document,
2861       and mark dir-spec.txt as the currently correct (v2) spec.
2863   o Major bugfixes:
2864     - When we find our DirPort to be reachable, publish a new descriptor
2865       so we'll tell the world (reported by pnx).
2866     - Publish a new descriptor after we hup/reload. This is important
2867       if our config has changed such that we'll want to start advertising
2868       our DirPort now, etc.
2869     - Allow Tor to start when RunAsDaemon is set but no logs are set.
2870     - When we have a state file we cannot parse, tell the user and
2871       move it aside. Now we avoid situations where the user starts
2872       Tor in 1904, Tor writes a state file with that timestamp in it,
2873       the user fixes her clock, and Tor refuses to start.
2874     - Fix configure.in to not produce broken configure files with
2875       more recent versions of autoconf. Thanks to Clint for his auto*
2876       voodoo.
2877     - "tor --verify-config" now exits with -1(255) or 0 depending on
2878       whether the config options are bad or good.
2879     - Resolve bug 321 when using dnsworkers: append a period to every
2880       address we resolve at the exit node, so that we do not accidentally
2881       pick up local addresses, and so that failing searches are retried
2882       in the resolver search domains. (This is already solved for
2883       eventdns.) (This breaks Blossom servers for now.)
2884     - If we are using an exit enclave and we can't connect, e.g. because
2885       its webserver is misconfigured to not listen on localhost, then
2886       back off and try connecting from somewhere else before we fail.
2888   o Minor bugfixes:
2889     - Start compiling on MinGW on Windows (patches from Mike Chiussi).
2890     - Start compiling on MSVC6 on Windows (patches from Frediano Ziglio).
2891     - Fix bug 314: Tor clients issued "unsafe socks" warnings even
2892       when the IP address is mapped through MapAddress to a hostname.
2893     - Start passing "ipv4" hints to getaddrinfo(), so servers don't do
2894       useless IPv6 DNS resolves.
2895     - Patch suggested by Karsten Loesing: respond to SIGNAL command
2896       before we execute the signal, in case the signal shuts us down.
2897     - Clean up AllowInvalidNodes man page entry.
2898     - Claim a commonname of Tor, rather than TOR, in TLS handshakes.
2899     - Add more asserts to track down an assert error on a windows Tor
2900       server with connection_add being called with socket == -1.
2901     - Handle reporting OR_CONN_EVENT_NEW events to the controller.
2902     - Fix misleading log messages: an entry guard that is "unlisted",
2903       as well as not known to be "down" (because we've never heard
2904       of it), is not therefore "up".
2905     - Remove code to special-case "-cvs" ending, since it has not
2906       actually mattered since 0.0.9.
2907     - Make our socks5 handling more robust to broken socks clients:
2908       throw out everything waiting on the buffer in between socks
2909       handshake phases, since they can't possibly (so the theory
2910       goes) have predicted what we plan to respond to them.
2913 Changes in version 0.1.1.23 - 2006-07-30
2914   o Major bugfixes:
2915     - Fast Tor servers, especially exit nodes, were triggering asserts
2916       due to a bug in handling the list of pending DNS resolves. Some
2917       bugs still remain here; we're hunting them.
2918     - Entry guards could crash clients by sending unexpected input.
2919     - More fixes on reachability testing: if you find yourself reachable,
2920       then don't ever make any client requests (so you stop predicting
2921       circuits), then hup or have your clock jump, then later your IP
2922       changes, you won't think circuits are working, so you won't try to
2923       test reachability, so you won't publish.
2925   o Minor bugfixes:
2926     - Avoid a crash if the controller does a resetconf firewallports
2927       and then a setconf fascistfirewall=1.
2928     - Avoid an integer underflow when the dir authority decides whether
2929       a router is stable: we might wrongly label it stable, and compute
2930       a slightly wrong median stability, when a descriptor is published
2931       later than now.
2932     - Fix a place where we might trigger an assert if we can't build our
2933       own server descriptor yet.
2936 Changes in version 0.1.1.22 - 2006-07-05
2937   o Major bugfixes:
2938     - Fix a big bug that was causing servers to not find themselves
2939       reachable if they changed IP addresses. Since only 0.1.1.22+
2940       servers can do reachability testing correctly, now we automatically
2941       make sure to test via one of these.
2942     - Fix to allow clients and mirrors to learn directory info from
2943       descriptor downloads that get cut off partway through.
2944     - Directory authorities had a bug in deciding if a newly published
2945       descriptor was novel enough to make everybody want a copy -- a few
2946       servers seem to be publishing new descriptors many times a minute.
2947   o Minor bugfixes:
2948     - Fix a rare bug that was causing some servers to complain about
2949       "closing wedged cpuworkers" and skip some circuit create requests.
2950     - Make the Exit flag in directory status documents actually work.
2953 Changes in version 0.1.1.21 - 2006-06-10
2954   o Crash and assert fixes from 0.1.1.20:
2955     - Fix a rare crash on Tor servers that have enabled hibernation.
2956     - Fix a seg fault on startup for Tor networks that use only one
2957       directory authority.
2958     - Fix an assert from a race condition that occurs on Tor servers
2959       while exiting, where various threads are trying to log that they're
2960       exiting, and delete the logs, at the same time.
2961     - Make our unit tests pass again on certain obscure platforms.
2963   o Other fixes:
2964     - Add support for building SUSE RPM packages.
2965     - Speed up initial bootstrapping for clients: if we are making our
2966       first ever connection to any entry guard, then don't mark it down
2967       right after that.
2968     - When only one Tor server in the network is labelled as a guard,
2969       and we've already picked him, we would cycle endlessly picking him
2970       again, being unhappy about it, etc. Now we specifically exclude
2971       current guards when picking a new guard.
2972     - Servers send create cells more reliably after the TLS connection
2973       is established: we were sometimes forgetting to send half of them
2974       when we had more than one pending.
2975     - If we get a create cell that asks us to extend somewhere, but the
2976       Tor server there doesn't match the expected digest, we now send
2977       a destroy cell back, rather than silently doing nothing.
2978     - Make options->RedirectExit work again.
2979     - Make cookie authentication for the controller work again.
2980     - Stop being picky about unusual characters in the arguments to
2981       mapaddress. It's none of our business.
2982     - Add a new config option "TestVia" that lets you specify preferred
2983       middle hops to use for test circuits. Perhaps this will let me
2984       debug the reachability problems better.
2986   o Log / documentation fixes:
2987     - If we're a server and some peer has a broken TLS certificate, don't
2988       log about it unless ProtocolWarnings is set, i.e., we want to hear
2989       about protocol violations by others.
2990     - Fix spelling of VirtualAddrNetwork in man page.
2991     - Add a better explanation at the top of the autogenerated torrc file
2992       about what happened to our old torrc.
2995 Changes in version 0.1.1.20 - 2006-05-23
2996   o Bugfixes:
2997     - Downgrade a log severity where servers complain that they're
2998       invalid.
2999     - Avoid a compile warning on FreeBSD.
3000     - Remove string size limit on NEWDESC messages; solve bug 291.
3001     - Correct the RunAsDaemon entry in the man page; ignore RunAsDaemon
3002       more thoroughly when we're running on windows.
3005 Changes in version 0.1.1.19-rc - 2006-05-03
3006   o Minor bugs:
3007     - Regenerate our local descriptor if it's dirty and we try to use
3008       it locally (e.g. if it changes during reachability detection).
3009     - If we setconf our ORPort to 0, we continued to listen on the
3010       old ORPort and receive connections.
3011     - Avoid a second warning about machine/limits.h on Debian
3012       GNU/kFreeBSD.
3013     - Be willing to add our own routerinfo into the routerlist.
3014       Now authorities will include themselves in their directories
3015       and network-statuses.
3016     - Stop trying to upload rendezvous descriptors to every
3017       directory authority: only try the v1 authorities.
3018     - Servers no longer complain when they think they're not
3019       registered with the directory authorities. There were too many
3020       false positives.
3021     - Backport dist-rpm changes so rpms can be built without errors.
3023   o Features:
3024     - Implement an option, VirtualAddrMask, to set which addresses
3025       get handed out in response to mapaddress requests. This works
3026       around a bug in tsocks where 127.0.0.0/8 is never socksified.
3029 Changes in version 0.1.1.18-rc - 2006-04-10
3030   o Major fixes:
3031     - Work harder to download live network-statuses from all the
3032       directory authorities we know about. Improve the threshold
3033       decision logic so we're more robust to edge cases.
3034     - When fetching rendezvous descriptors, we were willing to ask
3035       v2 authorities too, which would always return 404.
3037   o Minor fixes:
3038     - Stop listing down or invalid nodes in the v1 directory. This will
3039       reduce its bulk by about 1/3, and reduce load on directory
3040       mirrors.
3041     - When deciding whether a router is Fast or Guard-worthy, consider
3042       his advertised BandwidthRate and not just the BandwidthCapacity.
3043     - No longer ship INSTALL and README files -- they are useless now.
3044     - Force rpmbuild to behave and honor target_cpu.
3045     - Avoid warnings about machine/limits.h on Debian GNU/kFreeBSD.
3046     - Start to include translated versions of the tor-doc-*.html
3047       files, along with the screenshots. Still needs more work.
3048     - Start sending back 512 and 451 errors if mapaddress fails,
3049       rather than not sending anything back at all.
3050     - When we fail to bind or listen on an incoming or outgoing
3051       socket, we should close it before failing. otherwise we just
3052       leak it. (thanks to weasel for finding.)
3053     - Allow "getinfo dir/status/foo" to work, as long as your DirPort
3054       is enabled. (This is a hack, and will be fixed in 0.1.2.x.)
3055     - Make NoPublish (even though deprecated) work again.
3056     - Fix a minor security flaw where a versioning auth dirserver
3057       could list a recommended version many times in a row to make
3058       clients more convinced that it's recommended.
3059     - Fix crash bug if there are two unregistered servers running
3060       with the same nickname, one of them is down, and you ask for
3061       them by nickname in your EntryNodes or ExitNodes. Also, try
3062       to pick the one that's running rather than an arbitrary one.
3063     - Fix an infinite loop we could hit if we go offline for too long.
3064     - Complain when we hit WSAENOBUFS on recv() or write() too.
3065       Perhaps this will help us hunt the bug.
3066     - If you're not a versioning dirserver, don't put the string
3067       "client-versions \nserver-versions \n" in your network-status.
3068     - Lower the minimum required number of file descriptors to 1000,
3069       so we can have some overhead for Valgrind on Linux, where the
3070       default ulimit -n is 1024.
3072   o New features:
3073     - Add tor.dizum.com as the fifth authoritative directory server.
3074     - Add a new config option FetchUselessDescriptors, off by default,
3075       for when you plan to run "exitlist" on your client and you want
3076       to know about even the non-running descriptors.
3079 Changes in version 0.1.1.17-rc - 2006-03-28
3080   o Major fixes:
3081     - Clients and servers since 0.1.1.10-alpha have been expiring
3082       connections whenever they are idle for 5 minutes and they *do*
3083       have circuits on them. Oops. With this new version, clients will
3084       discard their previous entry guard choices and avoid choosing
3085       entry guards running these flawed versions.
3086     - Fix memory leak when uncompressing concatenated zlib streams. This
3087       was causing substantial leaks over time on Tor servers.
3088     - The v1 directory was including servers as much as 48 hours old,
3089       because that's how the new routerlist->routers works. Now only
3090       include them if they're 20 hours old or less.
3092   o Minor fixes:
3093     - Resume building on irix64, netbsd 2.0, etc.
3094     - On non-gcc compilers (e.g. solaris), use "-g -O" instead of
3095       "-Wall -g -O2".
3096     - Stop writing the "router.desc" file, ever. Nothing uses it anymore,
3097       and it is confusing some users.
3098     - Mirrors stop caching the v1 directory so often.
3099     - Make the max number of old descriptors that a cache will hold
3100       rise with the number of directory authorities, so we can scale.
3101     - Change our win32 uname() hack to be more forgiving about what
3102       win32 versions it thinks it's found.
3104   o New features:
3105     - Add lefkada.eecs.harvard.edu as a fourth authoritative directory
3106       server.
3107     - When the controller's *setconf commands fail, collect an error
3108       message in a string and hand it back to the controller.
3109     - Make the v2 dir's "Fast" flag based on relative capacity, just
3110       like "Stable" is based on median uptime. Name everything in the
3111       top 7/8 Fast, and only the top 1/2 gets to be a Guard.
3112     - Log server fingerprint on startup, so new server operators don't
3113       have to go hunting around their filesystem for it.
3114     - Return a robots.txt on our dirport to discourage google indexing.
3115     - Let the controller ask for GETINFO dir/status/foo so it can ask
3116       directly rather than connecting to the dir port. Only works when
3117       dirport is set for now.
3119   o New config options rather than constants in the code:
3120     - SocksTimeout: How long do we let a socks connection wait
3121       unattached before we fail it?
3122     - CircuitBuildTimeout: Cull non-open circuits that were born
3123       at least this many seconds ago.
3124     - CircuitIdleTimeout: Cull open clean circuits that were born
3125       at least this many seconds ago.
3128 Changes in version 0.1.1.16-rc - 2006-03-18
3129   o Bugfixes on 0.1.1.15-rc:
3130     - Fix assert when the controller asks to attachstream a connect-wait
3131       or resolve-wait stream.
3132     - Now do address rewriting when the controller asks us to attach
3133       to a particular circuit too. This will let Blossom specify
3134       "moria2.exit" without having to learn what moria2's IP address is.
3135     - Make the "tor --verify-config" command-line work again, so people
3136       can automatically check if their torrc will parse.
3137     - Authoritative dirservers no longer require an open connection from
3138       a server to consider him "reachable". We need this change because
3139       when we add new auth dirservers, old servers won't know not to
3140       hang up on them.
3141     - Let Tor build on Sun CC again.
3142     - Fix an off-by-one buffer size in dirserv.c that magically never
3143       hit our three authorities but broke sjmurdoch's own tor network.
3144     - If we as a directory mirror don't know of any v1 directory
3145       authorities, then don't try to cache any v1 directories.
3146     - Stop warning about unknown servers in our family when they are
3147       given as hex digests.
3148     - Stop complaining as quickly to the server operator that he
3149       hasn't registered his nickname/key binding.
3150     - Various cleanups so we can add new V2 Auth Dirservers.
3151     - Change "AllowUnverifiedNodes" to "AllowInvalidNodes", to
3152       reflect the updated flags in our v2 dir protocol.
3153     - Resume allowing non-printable characters for exit streams (both
3154       for connecting and for resolving). Now we tolerate applications
3155       that don't follow the RFCs. But continue to block malformed names
3156       at the socks side.
3158   o Bugfixes on 0.1.0.x:
3159     - Fix assert bug in close_logs(): when we close and delete logs,
3160       remove them all from the global "logfiles" list.
3161     - Fix minor integer overflow in calculating when we expect to use up
3162       our bandwidth allocation before hibernating.
3163     - Fix a couple of bugs in OpenSSL detection. Also, deal better when
3164       there are multiple SSLs installed with different versions.
3165     - When we try to be a server and Address is not explicitly set and
3166       our hostname resolves to a private IP address, try to use an
3167       interface address if it has a public address. Now Windows machines
3168       that think of themselves as localhost can work by default.
3170   o New features:
3171     - Let the controller ask for GETINFO dir/server/foo so it can ask
3172       directly rather than connecting to the dir port.
3173     - Let the controller tell us about certain router descriptors
3174       that it doesn't want Tor to use in circuits. Implement
3175       SETROUTERPURPOSE and modify +POSTDESCRIPTOR to do this.
3176     - New config option SafeSocks to reject all application connections
3177       using unsafe socks protocols. Defaults to off.
3180 Changes in version 0.1.1.15-rc - 2006-03-11
3181   o Bugfixes and cleanups:
3182     - When we're printing strings from the network, don't try to print
3183       non-printable characters. This protects us against shell escape
3184       sequence exploits, and also against attacks to fool humans into
3185       misreading their logs.
3186     - Fix a bug where Tor would fail to establish any connections if you
3187       left it off for 24 hours and then started it: we were happy with
3188       the obsolete network statuses, but they all referred to router
3189       descriptors that were too old to fetch, so we ended up with no
3190       valid router descriptors.
3191     - Fix a seg fault in the controller's "getinfo orconn-status"
3192       command while listing status on incoming handshaking connections.
3193       Introduce a status name "NEW" for these connections.
3194     - If we get a linelist or linelist_s config option from the torrc
3195       (e.g. ExitPolicy) and it has no value, warn and skip rather than
3196       silently resetting it to its default.
3197     - Don't abandon entry guards until they've been down or gone for
3198       a whole month.
3199     - Cleaner and quieter log messages.
3201   o New features:
3202     - New controller signal NEWNYM that makes new application requests
3203       use clean circuits.
3204     - Add a new circuit purpose 'controller' to let the controller ask
3205       for a circuit that Tor won't try to use. Extend the EXTENDCIRCUIT
3206       controller command to let you specify the purpose if you're
3207       starting a new circuit.  Add a new SETCIRCUITPURPOSE controller
3208       command to let you change a circuit's purpose after it's been
3209       created.
3210     - Accept "private:*" in routerdesc exit policies; not generated yet
3211       because older Tors do not understand it.
3212     - Add BSD-style contributed startup script "rc.subr" from Peter
3213       Thoenen.
3216 Changes in version 0.1.1.14-alpha - 2006-02-20
3217   o Bugfixes on 0.1.1.x:
3218     - Don't die if we ask for a stdout or stderr log (even implicitly)
3219       and we're set to RunAsDaemon -- just warn.
3220     - We still had a few bugs in the OR connection rotation code that
3221       caused directory servers to slowly aggregate connections to other
3222       fast Tor servers. This time for sure!
3223     - Make log entries on Win32 include the name of the function again.
3224     - We were treating a pair of exit policies if they were equal even
3225       if one said accept and the other said reject -- causing us to
3226       not always publish a new descriptor since we thought nothing
3227       had changed.
3228     - Retry pending server downloads as well as pending networkstatus
3229       downloads when we unexpectedly get a socks request.
3230     - We were ignoring the IS_FAST flag in the directory status,
3231       meaning we were willing to pick trivial-bandwidth nodes for "fast"
3232       connections.
3233     - If the controller's SAVECONF command fails (e.g. due to file
3234       permissions), let the controller know that it failed.
3236   o Features:
3237     - If we're trying to be a Tor server and running Windows 95/98/ME
3238       as a server, explain that we'll likely crash.
3239     - When we're a server, a client asks for an old-style directory,
3240       and our write bucket is empty, don't give it to him. This way
3241       small servers can continue to serve the directory *sometimes*,
3242       without getting overloaded.
3243     - Compress exit policies even more -- look for duplicate lines
3244       and remove them.
3245     - Clients now honor the "guard" flag in the router status when
3246       picking entry guards, rather than looking at is_fast or is_stable.
3247     - Retain unrecognized lines in $DATADIR/state file, so that we can
3248       be forward-compatible.
3249     - Generate 18.0.0.0/8 address policy format in descs when we can;
3250       warn when the mask is not reducible to a bit-prefix.
3251     - Let the user set ControlListenAddress in the torrc.  This can be
3252       dangerous, but there are some cases (like a secured LAN) where it
3253       makes sense.
3254     - Split ReachableAddresses into ReachableDirAddresses and
3255       ReachableORAddresses, so we can restrict Dir conns to port 80
3256       and OR conns to port 443.
3257     - Now we can target arch and OS in rpm builds (contributed by
3258       Phobos). Also make the resulting dist-rpm filename match the
3259       target arch.
3260     - New config options to help controllers: FetchServerDescriptors
3261       and FetchHidServDescriptors for whether to fetch server
3262       info and hidserv info or let the controller do it, and
3263       PublishServerDescriptor and PublishHidServDescriptors.
3264     - Also let the controller set the __AllDirActionsPrivate config
3265       option if you want all directory fetches/publishes to happen via
3266       Tor (it assumes your controller bootstraps your circuits).
3269 Changes in version 0.1.0.17 - 2006-02-17
3270   o Crash bugfixes on 0.1.0.x:
3271     - When servers with a non-zero DirPort came out of hibernation,
3272       sometimes they would trigger an assert.
3274   o Other important bugfixes:
3275     - On platforms that don't have getrlimit (like Windows), we were
3276       artificially constraining ourselves to a max of 1024
3277       connections. Now just assume that we can handle as many as 15000
3278       connections. Hopefully this won't cause other problems.
3280   o Backported features:
3281     - When we're a server, a client asks for an old-style directory,
3282       and our write bucket is empty, don't give it to him. This way
3283       small servers can continue to serve the directory *sometimes*,
3284       without getting overloaded.
3285     - Whenever you get a 503 in response to a directory fetch, try
3286       once more. This will become important once servers start sending
3287       503's whenever they feel busy.
3288     - Fetch a new directory every 120 minutes, not every 40 minutes.
3289       Now that we have hundreds of thousands of users running the old
3290       directory algorithm, it's starting to hurt a lot.
3291     - Bump up the period for forcing a hidden service descriptor upload
3292       from 20 minutes to 1 hour.
3295 Changes in version 0.1.1.13-alpha - 2006-02-09
3296   o Crashes in 0.1.1.x:
3297     - When you tried to setconf ORPort via the controller, Tor would
3298       crash. So people using TorCP to become a server were sad.
3299     - Solve (I hope) the stack-smashing bug that we were seeing on fast
3300       servers. The problem appears to be something do with OpenSSL's
3301       random number generation, or how we call it, or something. Let me
3302       know if the crashes continue.
3303     - Turn crypto hardware acceleration off by default, until we find
3304       somebody smart who can test it for us. (It appears to produce
3305       seg faults in at least some cases.)
3306     - Fix a rare assert error when we've tried all intro points for
3307       a hidden service and we try fetching the service descriptor again:
3308       "Assertion conn->state != AP_CONN_STATE_RENDDESC_WAIT failed"
3310   o Major fixes:
3311     - Fix a major load balance bug: we were round-robining in 16 KB
3312       chunks, and servers with bandwidthrate of 20 KB, while downloading
3313       a 600 KB directory, would starve their other connections. Now we
3314       try to be a bit more fair.
3315     - Dir authorities and mirrors were never expiring the newest
3316       descriptor for each server, causing memory and directory bloat.
3317     - Fix memory-bloating and connection-bloating bug on servers: We
3318       were never closing any connection that had ever had a circuit on
3319       it, because we were checking conn->n_circuits == 0, yet we had a
3320       bug that let it go negative.
3321     - Make Tor work using squid as your http proxy again -- squid
3322       returns an error if you ask for a URL that's too long, and it uses
3323       a really generic error message. Plus, many people are behind a
3324       transparent squid so they don't even realize it.
3325     - On platforms that don't have getrlimit (like Windows), we were
3326       artificially constraining ourselves to a max of 1024
3327       connections. Now just assume that we can handle as many as 15000
3328       connections. Hopefully this won't cause other problems.
3329     - Add a new config option ExitPolicyRejectPrivate which defaults to
3330       1. This means all exit policies will begin with rejecting private
3331       addresses, unless the server operator explicitly turns it off.
3333   o Major features:
3334     - Clients no longer download descriptors for non-running
3335       descriptors.
3336     - Before we add new directory authorities, we should make it
3337       clear that only v1 authorities should receive/publish hidden
3338       service descriptors.
3340   o Minor features:
3341     - As soon as we've fetched some more directory info, immediately
3342       try to download more server descriptors. This way we don't have
3343       a 10 second pause during initial bootstrapping.
3344     - Remove even more loud log messages that the server operator can't
3345       do anything about.
3346     - When we're running an obsolete or un-recommended version, make
3347       the log message more clear about what the problem is and what
3348       versions *are* still recommended.
3349     - Provide a more useful warn message when our onion queue gets full:
3350       the CPU is too slow or the exit policy is too liberal.
3351     - Don't warn when we receive a 503 from a dirserver/cache -- this
3352       will pave the way for them being able to refuse if they're busy.
3353     - When we fail to bind a listener, try to provide a more useful
3354       log message: e.g., "Is Tor already running?"
3355     - Adjust tor-spec to parameterize cell and key lengths. Now Ian
3356       Goldberg can prove things about our handshake protocol more
3357       easily.
3358     - MaxConn has been obsolete for a while now. Document the ConnLimit
3359       config option, which is a *minimum* number of file descriptors
3360       that must be available else Tor refuses to start.
3361     - Apply Matt Ghali's --with-syslog-facility patch to ./configure
3362       if you log to syslog and want something other than LOG_DAEMON.
3363     - Make dirservers generate a separate "guard" flag to mean,
3364       "would make a good entry guard". Make clients parse it and vote
3365       on it. Not used by clients yet.
3366     - Implement --with-libevent-dir option to ./configure. Also, improve
3367       search techniques to find libevent, and use those for openssl too.
3368     - Bump the default bandwidthrate to 3 MB, and burst to 6 MB
3369     - Only start testing reachability once we've established a
3370       circuit. This will make startup on dirservers less noisy.
3371     - Don't try to upload hidden service descriptors until we have
3372       established a circuit.
3373     - Fix the controller's "attachstream 0" command to treat conn like
3374       it just connected, doing address remapping, handling .exit and
3375       .onion idioms, and so on. Now we're more uniform in making sure
3376       that the controller hears about new and closing connections.
3379 Changes in version 0.1.1.12-alpha - 2006-01-11
3380   o Bugfixes on 0.1.1.x:
3381     - The fix to close duplicate server connections was closing all
3382       Tor client connections if they didn't establish a circuit
3383       quickly enough. Oops.
3384     - Fix minor memory issue (double-free) that happened on exit.
3386   o Bugfixes on 0.1.0.x:
3387     - Tor didn't warn when it failed to open a log file.
3390 Changes in version 0.1.1.11-alpha - 2006-01-10
3391   o Crashes in 0.1.1.x:
3392     - Include all the assert/crash fixes from 0.1.0.16.
3393     - If you start Tor and then quit very quickly, there were some
3394       races that tried to free things that weren't allocated yet.
3395     - Fix a rare memory stomp if you're running hidden services.
3396     - Fix segfault when specifying DirServer in config without nickname.
3397     - Fix a seg fault when you finish connecting to a server but at
3398       that moment you dump his server descriptor.
3399     - Extendcircuit and Attachstream controller commands would
3400       assert/crash if you don't give them enough arguments.
3401     - Fix an assert error when we're out of space in the connection_list
3402       and we try to post a hidden service descriptor (reported by weasel).
3403     - If you specify a relative torrc path and you set RunAsDaemon in
3404       your torrc, then it chdir()'s to the new directory. If you HUP,
3405       it tries to load the new torrc location, fails, and exits.
3406       The fix: no longer allow a relative path to torrc using -f.
3408   o Major features:
3409     - Implement "entry guards": automatically choose a handful of entry
3410       nodes and stick with them for all circuits. Only pick new guards
3411       when the ones you have are unsuitable, and if the old guards
3412       become suitable again, switch back. This will increase security
3413       dramatically against certain end-point attacks. The EntryNodes
3414       config option now provides some hints about which entry guards you
3415       want to use most; and StrictEntryNodes means to only use those.
3416     - New directory logic: download by descriptor digest, not by
3417       fingerprint. Caches try to download all listed digests from
3418       authorities; clients try to download "best" digests from caches.
3419       This avoids partitioning and isolating attacks better.
3420     - Make the "stable" router flag in network-status be the median of
3421       the uptimes of running valid servers, and make clients pay
3422       attention to the network-status flags. Thus the cutoff adapts
3423       to the stability of the network as a whole, making IRC, IM, etc
3424       connections more reliable.
3426   o Major fixes:
3427     - Tor servers with dynamic IP addresses were needing to wait 18
3428       hours before they could start doing reachability testing using
3429       the new IP address and ports. This is because they were using
3430       the internal descriptor to learn what to test, yet they were only
3431       rebuilding the descriptor once they decided they were reachable.
3432     - Tor 0.1.1.9 and 0.1.1.10 had a serious bug that caused clients
3433       to download certain server descriptors, throw them away, and then
3434       fetch them again after 30 minutes. Now mirrors throw away these
3435       server descriptors so clients can't get them.
3436     - We were leaving duplicate connections to other ORs open for a week,
3437       rather than closing them once we detect a duplicate. This only
3438       really affected authdirservers, but it affected them a lot.
3439     - Spread the authdirservers' reachability testing over the entire
3440       testing interval, so we don't try to do 500 TLS's at once every
3441       20 minutes.
3443   o Minor fixes:
3444     - If the network is down, and we try to connect to a conn because
3445       we have a circuit in mind, and we timeout (30 seconds) because the
3446       network never answers, we were expiring the circuit, but we weren't
3447       obsoleting the connection or telling the entry_guards functions.
3448     - Some Tor servers process billions of cells per day. These statistics
3449       need to be uint64_t's.
3450     - Check for integer overflows in more places, when adding elements
3451       to smartlists. This could possibly prevent a buffer overflow
3452       on malicious huge inputs. I don't see any, but I haven't looked
3453       carefully.
3454     - ReachableAddresses kept growing new "reject *:*" lines on every
3455       setconf/reload.
3456     - When you "setconf log" via the controller, it should remove all
3457       logs. We were automatically adding back in a "log notice stdout".
3458     - Newly bootstrapped Tor networks couldn't establish hidden service
3459       circuits until they had nodes with high uptime. Be more tolerant.
3460     - We were marking servers down when they could not answer every piece
3461       of the directory request we sent them. This was far too harsh.
3462     - Fix the torify (tsocks) config file to not use Tor for localhost
3463       connections.
3464     - Directory authorities now go to the proper authority when asking for
3465       a networkstatus, even when they want a compressed one.
3466     - Fix a harmless bug that was causing Tor servers to log
3467       "Got an end because of misc error, but we're not an AP. Closing."
3468     - Authorities were treating their own descriptor changes as cosmetic,
3469       meaning the descriptor available in the network-status and the
3470       descriptor that clients downloaded were different.
3471     - The OS X installer was adding a symlink for tor_resolve but
3472       the binary was called tor-resolve (reported by Thomas Hardly).
3473     - Workaround a problem with some http proxies where they refuse GET
3474       requests that specify "Content-Length: 0" (reported by Adrian).
3475     - Fix wrong log message when you add a "HiddenServiceNodes" config
3476       line without any HiddenServiceDir line (reported by Chris Thomas).
3478   o Minor features:
3479     - Write the TorVersion into the state file so we have a prayer of
3480       keeping forward and backward compatibility.
3481     - Revive the FascistFirewall config option rather than eliminating it:
3482       now it's a synonym for ReachableAddresses *:80,*:443.
3483     - Clients choose directory servers from the network status lists,
3484       not from their internal list of router descriptors. Now they can
3485       go to caches directly rather than needing to go to authorities
3486       to bootstrap.
3487     - Directory authorities ignore router descriptors that have only
3488       cosmetic differences: do this for 0.1.0.x servers now too.
3489     - Add a new flag to network-status indicating whether the server
3490       can answer v2 directory requests too.
3491     - Authdirs now stop whining so loudly about bad descriptors that
3492       they fetch from other dirservers. So when there's a log complaint,
3493       it's for sure from a freshly uploaded descriptor.
3494     - Reduce memory requirements in our structs by changing the order
3495       of fields.
3496     - There used to be two ways to specify your listening ports in a
3497       server descriptor: on the "router" line and with a separate "ports"
3498       line. Remove support for the "ports" line.
3499     - New config option "AuthDirRejectUnlisted" for auth dirservers as
3500       a panic button: if we get flooded with unusable servers we can
3501       revert to only listing servers in the approved-routers file.
3502     - Auth dir servers can now mark a fingerprint as "!reject" or
3503       "!invalid" in the approved-routers file (as its nickname), to
3504       refuse descriptors outright or include them but marked as invalid.
3505     - Servers store bandwidth history across restarts/crashes.
3506     - Add reasons to DESTROY and RELAY_TRUNCATED cells, so clients can
3507       get a better idea of why their circuits failed. Not used yet.
3508     - Directory mirrors now cache up to 16 unrecognized network-status
3509       docs. Now we can add new authdirservers and they'll be cached too.
3510     - When picking a random directory, prefer non-authorities if any
3511       are known.
3512     - New controller option "getinfo desc/all-recent" to fetch the
3513       latest server descriptor for every router that Tor knows about.
3516 Changes in version 0.1.0.16 - 2006-01-02
3517   o Crash bugfixes on 0.1.0.x:
3518     - On Windows, build with a libevent patch from "I-M Weasel" to avoid
3519       corrupting the heap, losing FDs, or crashing when we need to resize
3520       the fd_sets. (This affects the Win32 binaries, not Tor's sources.)
3521     - It turns out sparc64 platforms crash on unaligned memory access
3522       too -- so detect and avoid this.
3523     - Handle truncated compressed data correctly (by detecting it and
3524       giving an error).
3525     - Fix possible-but-unlikely free(NULL) in control.c.
3526     - When we were closing connections, there was a rare case that
3527       stomped on memory, triggering seg faults and asserts.
3528     - Avoid potential infinite recursion when building a descriptor. (We
3529       don't know that it ever happened, but better to fix it anyway.)
3530     - We were neglecting to unlink marked circuits from soon-to-close OR
3531       connections, which caused some rare scribbling on freed memory.
3532     - Fix a memory stomping race bug when closing the joining point of two
3533       rendezvous circuits.
3534     - Fix an assert in time parsing found by Steven Murdoch.
3536   o Other bugfixes on 0.1.0.x:
3537     - When we're doing reachability testing, provide more useful log
3538       messages so the operator knows what to expect.
3539     - Do not check whether DirPort is reachable when we are suppressing
3540       advertising it because of hibernation.
3541     - When building with -static or on Solaris, we sometimes needed -ldl.
3542     - When we're deciding whether a stream has enough circuits around
3543       that can handle it, count the freshly dirty ones and not the ones
3544       that are so dirty they won't be able to handle it.
3545     - When we're expiring old circuits, we had a logic error that caused
3546       us to close new rendezvous circuits rather than old ones.
3547     - Give a more helpful log message when you try to change ORPort via
3548       the controller: you should upgrade Tor if you want that to work.
3549     - We were failing to parse Tor versions that start with "Tor ".
3550     - Tolerate faulty streams better: when a stream fails for reason
3551       exitpolicy, stop assuming that the router is lying about his exit
3552       policy. When a stream fails for reason misc, allow it to retry just
3553       as if it was resolvefailed. When a stream has failed three times,
3554       reset its failure count so we can try again and get all three tries.
3557 Changes in version 0.1.1.10-alpha - 2005-12-11
3558   o Correctness bugfixes on 0.1.0.x:
3559     - On Windows, build with a libevent patch from "I-M Weasel" to avoid
3560       corrupting the heap, losing FDs, or crashing when we need to resize
3561       the fd_sets. (This affects the Win32 binaries, not Tor's sources.)
3562     - Stop doing the complex voodoo overkill checking for insecure
3563       Diffie-Hellman keys. Just check if it's in [2,p-2] and be happy.
3564     - When we were closing connections, there was a rare case that
3565       stomped on memory, triggering seg faults and asserts.
3566     - We were neglecting to unlink marked circuits from soon-to-close OR
3567       connections, which caused some rare scribbling on freed memory.
3568     - When we're deciding whether a stream has enough circuits around
3569       that can handle it, count the freshly dirty ones and not the ones
3570       that are so dirty they won't be able to handle it.
3571     - Recover better from TCP connections to Tor servers that are
3572       broken but don't tell you (it happens!); and rotate TLS
3573       connections once a week.
3574     - When we're expiring old circuits, we had a logic error that caused
3575       us to close new rendezvous circuits rather than old ones.
3576     - Fix a scary-looking but apparently harmless bug where circuits
3577       would sometimes start out in state CIRCUIT_STATE_OR_WAIT at
3578       servers, and never switch to state CIRCUIT_STATE_OPEN.
3579     - When building with -static or on Solaris, we sometimes needed to
3580       build with -ldl.
3581     - Give a useful message when people run Tor as the wrong user,
3582       rather than telling them to start chowning random directories.
3583     - We were failing to inform the controller about new .onion streams.
3585   o Security bugfixes on 0.1.0.x:
3586     - Refuse server descriptors if the fingerprint line doesn't match
3587       the included identity key. Tor doesn't care, but other apps (and
3588       humans) might actually be trusting the fingerprint line.
3589     - We used to kill the circuit when we receive a relay command we
3590       don't recognize. Now we just drop it.
3591     - Start obeying our firewall options more rigorously:
3592       . If we can't get to a dirserver directly, try going via Tor.
3593       . Don't ever try to connect (as a client) to a place our
3594         firewall options forbid.
3595       . If we specify a proxy and also firewall options, obey the
3596         firewall options even when we're using the proxy: some proxies
3597         can only proxy to certain destinations.
3598     - Fix a bug found by Lasse Overlier: when we were making internal
3599       circuits (intended to be cannibalized later for rendezvous and
3600       introduction circuits), we were picking them so that they had
3601       useful exit nodes. There was no need for this, and it actually
3602       aids some statistical attacks.
3603     - Start treating internal circuits and exit circuits separately.
3604       It's important to keep them separate because internal circuits
3605       have their last hops picked like middle hops, rather than like
3606       exit hops. So exiting on them will break the user's expectations.
3608   o Bugfixes on 0.1.1.x:
3609     - Take out the mis-feature where we tried to detect IP address
3610       flapping for people with DynDNS, and chose not to upload a new
3611       server descriptor sometimes.
3612     - Try to be compatible with OpenSSL 0.9.6 again.
3613     - Log fix: when the controller is logging about .onion addresses,
3614       sometimes it didn't include the ".onion" part of the address.
3615     - Don't try to modify options->DirServers internally -- if the
3616       user didn't specify any, just add the default ones directly to
3617       the trusted dirserver list. This fixes a bug where people running
3618       controllers would use SETCONF on some totally unrelated config
3619       option, and Tor would start yelling at them about changing their
3620       DirServer lines.
3621     - Let the controller's redirectstream command specify a port, in
3622       case the controller wants to change that too.
3623     - When we requested a pile of server descriptors, we sometimes
3624       accidentally launched a duplicate request for the first one.
3625     - Bugfix for trackhostexits: write down the fingerprint of the
3626       chosen exit, not its nickname, because the chosen exit might not
3627       be verified.
3628     - When parsing foo.exit, if foo is unknown, and we are leaving
3629       circuits unattached, set the chosen_exit field and leave the
3630       address empty. This matters because controllers got confused
3631       otherwise.
3632     - Directory authorities no longer try to download server
3633       descriptors that they know they will reject.
3635   o Features and updates:
3636     - Replace balanced trees with hash tables: this should make stuff
3637       significantly faster.
3638     - Resume using the AES counter-mode implementation that we ship,
3639       rather than OpenSSL's. Ours is significantly faster.
3640     - Many other CPU and memory improvements.
3641     - Add a new config option FastFirstHopPK (on by default) so clients
3642       do a trivial crypto handshake for their first hop, since TLS has
3643       already taken care of confidentiality and authentication.
3644     - Add a new config option TestSocks so people can see if their
3645       applications are using socks4, socks4a, socks5-with-ip, or
3646       socks5-with-hostname. This way they don't have to keep mucking
3647       with tcpdump and wondering if something got cached somewhere.
3648     - Warn when listening on a public address for socks. I suspect a
3649       lot of people are setting themselves up as open socks proxies,
3650       and they have no idea that jerks on the Internet are using them,
3651       since they simply proxy the traffic into the Tor network.
3652     - Add "private:*" as an alias in configuration for policies. Now
3653       you can simplify your exit policy rather than needing to list
3654       every single internal or nonroutable network space.
3655     - Add a new controller event type that allows controllers to get
3656       all server descriptors that were uploaded to a router in its role
3657       as authoritative dirserver.
3658     - Start shipping socks-extensions.txt, tor-doc-unix.html,
3659       tor-doc-server.html, and stylesheet.css in the tarball.
3660     - Stop shipping tor-doc.html in the tarball.
3663 Changes in version 0.1.1.9-alpha - 2005-11-15
3664   o Usability improvements:
3665     - Start calling it FooListenAddress rather than FooBindAddress,
3666       since few of our users know what it means to bind an address
3667       or port.
3668     - Reduce clutter in server logs. We're going to try to make
3669       them actually usable now. New config option ProtocolWarnings that
3670       lets you hear about how _other Tors_ are breaking the protocol. Off
3671       by default.
3672     - Divide log messages into logging domains. Once we put some sort
3673       of interface on this, it will let people looking at more verbose
3674       log levels specify the topics they want to hear more about.
3675     - Make directory servers return better http 404 error messages
3676       instead of a generic "Servers unavailable".
3677     - Check for even more Windows version flags when writing the platform
3678       string in server descriptors, and note any we don't recognize.
3679     - Clean up more of the OpenSSL memory when exiting, so we can detect
3680       memory leaks better.
3681     - Make directory authorities be non-versioning, non-naming by
3682       default. Now we can add new directory servers without requiring
3683       their operators to pay close attention.
3684     - When logging via syslog, include the pid whenever we provide
3685       a log entry. Suggested by Todd Fries.
3687   o Performance improvements:
3688     - Directory servers now silently throw away new descriptors that
3689       haven't changed much if the timestamps are similar. We do this to
3690       tolerate older Tor servers that upload a new descriptor every 15
3691       minutes. (It seemed like a good idea at the time.)
3692     - Inline bottleneck smartlist functions; use fast versions by default.
3693     - Add a "Map from digest to void*" abstraction digestmap_t so we
3694       can do less hex encoding/decoding. Use it in router_get_by_digest()
3695       to resolve a performance bottleneck.
3696     - Allow tor_gzip_uncompress to extract as much as possible from
3697       truncated compressed data. Try to extract as many
3698       descriptors as possible from truncated http responses (when
3699       DIR_PURPOSE_FETCH_ROUTERDESC).
3700     - Make circ->onionskin a pointer, not a static array. moria2 was using
3701       125000 circuit_t's after it had been up for a few weeks, which
3702       translates to 20+ megs of wasted space.
3703     - The private half of our EDH handshake keys are now chosen out
3704       of 320 bits, not 1024 bits. (Suggested by Ian Goldberg.)
3706   o Security improvements:
3707     - Start making directory caches retain old routerinfos, so soon
3708       clients can start asking by digest of descriptor rather than by
3709       fingerprint of server.
3710     - Add half our entropy from RAND_poll in OpenSSL.  This knows how
3711       to use egd (if present), openbsd weirdness (if present), vms/os2
3712       weirdness (if we ever port there), and more in the future.
3714   o Bugfixes on 0.1.0.x:
3715     - Do round-robin writes of at most 16 kB per write. This might be
3716       more fair on loaded Tor servers, and it might resolve our Windows
3717       crash bug. It might also slow things down.
3718     - Our TLS handshakes were generating a single public/private
3719       keypair for the TLS context, rather than making a new one for
3720       each new connections. Oops. (But we were still rotating them
3721       periodically, so it's not so bad.)
3722     - When we were cannibalizing a circuit with a particular exit
3723       node in mind, we weren't checking to see if that exit node was
3724       already present earlier in the circuit. Oops.
3725     - When a Tor server's IP changes (e.g. from a dyndns address),
3726       upload a new descriptor so clients will learn too.
3727     - Really busy servers were keeping enough circuits open on stable
3728       connections that they were wrapping around the circuit_id
3729       space. (It's only two bytes.) This exposed a bug where we would
3730       feel free to reuse a circuit_id even if it still exists but has
3731       been marked for close. Try to fix this bug. Some bug remains.
3732     - If we would close a stream early (e.g. it asks for a .exit that
3733       we know would refuse it) but the LeaveStreamsUnattached config
3734       option is set by the controller, then don't close it.
3736   o Bugfixes on 0.1.1.8-alpha:
3737     - Fix a big pile of memory leaks, some of them serious.
3738     - Do not try to download a routerdesc if we would immediately reject
3739       it as obsolete.
3740     - Resume inserting a newline between all router descriptors when
3741       generating (old style) signed directories, since our spec says
3742       we do.
3743     - When providing content-type application/octet-stream for
3744       server descriptors using .z, we were leaving out the
3745       content-encoding header. Oops. (Everything tolerated this just
3746       fine, but that doesn't mean we need to be part of the problem.)
3747     - Fix a potential seg fault in getconf and getinfo using version 1
3748       of the controller protocol.
3749     - Avoid crash: do not check whether DirPort is reachable when we
3750       are suppressing it because of hibernation.
3751     - Make --hash-password not crash on exit.
3754 Changes in version 0.1.1.8-alpha - 2005-10-07
3755   o New features (major):
3756     - Clients don't download or use the directory anymore. Now they
3757       download and use network-statuses from the trusted dirservers,
3758       and fetch individual server descriptors as needed from mirrors.
3759       See dir-spec.txt for all the gory details.
3760     - Be more conservative about whether to advertise our DirPort.
3761       The main change is to not advertise if we're running at capacity
3762       and either a) we could hibernate or b) our capacity is low and
3763       we're using a default DirPort.
3764     - Use OpenSSL's AES when OpenSSL has version 0.9.7 or later.
3766   o New features (minor):
3767     - Try to be smart about when to retry network-status and
3768       server-descriptor fetches. Still needs some tuning.
3769     - Stop parsing, storing, or using running-routers output (but
3770       mirrors still cache and serve it).
3771     - Consider a threshold of versioning dirservers (dirservers who have
3772       an opinion about which Tor versions are still recommended) before
3773       deciding whether to warn the user that he's obsolete.
3774     - Dirservers can now reject/invalidate by key and IP, with the
3775       config options "AuthDirInvalid" and "AuthDirReject". This is
3776       useful since currently we automatically list servers as running
3777       and usable even if we know they're jerks.
3778     - Provide dire warnings to any users who set DirServer; move it out
3779       of torrc.sample and into torrc.complete.
3780     - Add MyFamily to torrc.sample in the server section.
3781     - Add nicknames to the DirServer line, so we can refer to them
3782       without requiring all our users to memorize their IP addresses.
3783     - When we get an EOF or a timeout on a directory connection, note
3784       how many bytes of serverdesc we are dropping. This will help
3785       us determine whether it is smart to parse incomplete serverdesc
3786       responses.
3787     - Add a new function to "change pseudonyms" -- that is, to stop
3788       using any currently-dirty circuits for new streams, so we don't
3789       link new actions to old actions. Currently it's only called on
3790       HUP (or SIGNAL RELOAD).
3791     - On sighup, if UseHelperNodes changed to 1, use new circuits.
3792     - Start using RAND_bytes rather than RAND_pseudo_bytes from
3793       OpenSSL. Also, reseed our entropy every hour, not just at
3794       startup. And entropy in 512-bit chunks, not 160-bit chunks.
3796   o Fixes on 0.1.1.7-alpha:
3797     - Nobody ever implemented EVENT_ADDRMAP for control protocol
3798       version 0, so don't let version 0 controllers ask for it.
3799     - If you requested something with too many newlines via the
3800       v1 controller protocol, you could crash tor.
3801     - Fix a number of memory leaks, including some pretty serious ones.
3802     - Re-enable DirPort testing again, so Tor servers will be willing
3803       to advertise their DirPort if it's reachable.
3804     - On TLS handshake, only check the other router's nickname against
3805       its expected nickname if is_named is set.
3807   o Fixes forward-ported from 0.1.0.15:
3808     - Don't crash when we don't have any spare file descriptors and we
3809       try to spawn a dns or cpu worker.
3810     - Make the numbers in read-history and write-history into uint64s,
3811       so they don't overflow and publish negatives in the descriptor.
3813   o Fixes on 0.1.0.x:
3814     - For the OS X package's modified privoxy config file, comment
3815       out the "logfile" line so we don't log everything passed
3816       through privoxy.
3817     - We were whining about using socks4 or socks5-with-local-lookup
3818       even when it's an IP in the "virtual" range we designed exactly
3819       for this case.
3820     - We were leaking some memory every time the client changes IPs.
3821     - Never call free() on tor_malloc()d memory. This will help us
3822       use dmalloc to detect memory leaks.
3823     - Check for named servers when looking them up by nickname;
3824       warn when we'recalling a non-named server by its nickname;
3825       don't warn twice about the same name.
3826     - Try to list MyFamily elements by key, not by nickname, and warn
3827       if we've not heard of the server.
3828     - Make windows platform detection (uname equivalent) smarter.
3829     - It turns out sparc64 doesn't like unaligned access either.
3832 Changes in version 0.1.0.15 - 2005-09-23
3833   o Bugfixes on 0.1.0.x:
3834     - Reject ports 465 and 587 (spam targets) in default exit policy.
3835     - Don't crash when we don't have any spare file descriptors and we
3836       try to spawn a dns or cpu worker.
3837     - Get rid of IgnoreVersion undocumented config option, and make us
3838       only warn, never exit, when we're running an obsolete version.
3839     - Don't try to print a null string when your server finds itself to
3840       be unreachable and the Address config option is empty.
3841     - Make the numbers in read-history and write-history into uint64s,
3842       so they don't overflow and publish negatives in the descriptor.
3843     - Fix a minor memory leak in smartlist_string_remove().
3844     - We were only allowing ourselves to upload a server descriptor at
3845       most every 20 minutes, even if it changed earlier than that.
3846     - Clean up log entries that pointed to old URLs.
3849 Changes in version 0.1.1.7-alpha - 2005-09-14
3850   o Fixes on 0.1.1.6-alpha:
3851     - Exit servers were crashing when people asked them to make a
3852       connection to an address not in their exit policy.
3853     - Looking up a non-existent stream for a v1 control connection would
3854       cause a segfault.
3855     - Fix a seg fault if we ask a dirserver for a descriptor by
3856       fingerprint but he doesn't know about him.
3857     - SETCONF was appending items to linelists, not clearing them.
3858     - SETCONF SocksBindAddress killed Tor if it fails to bind. Now back
3859       out and refuse the setconf if it would fail.
3860     - Downgrade the dirserver log messages when whining about
3861       unreachability.
3863   o New features:
3864     - Add Peter Palfrader's check-tor script to tor/contrib/
3865       It lets you easily check whether a given server (referenced by
3866       nickname) is reachable by you.
3867     - Numerous changes to move towards client-side v2 directories. Not
3868       enabled yet.
3870   o Fixes on 0.1.0.x:
3871     - If the user gave tor an odd number of command-line arguments,
3872       we were silently ignoring the last one. Now we complain and fail.
3873       [This wins the oldest-bug prize -- this bug has been present since
3874        November 2002, as released in Tor 0.0.0.]
3875     - Do not use unaligned memory access on alpha, mips, or mipsel.
3876       It *works*, but is very slow, so we treat them as if it doesn't.
3877     - Retry directory requests if we fail to get an answer we like
3878       from a given dirserver (we were retrying before, but only if
3879       we fail to connect).
3880     - When writing the RecommendedVersions line, sort them first.
3881     - When the client asked for a rendezvous port that the hidden
3882       service didn't want to provide, we were sending an IP address
3883       back along with the end cell. Fortunately, it was zero. But stop
3884       that anyway.
3885     - Correct "your server is reachable" log entries to indicate that
3886       it was self-testing that told us so.
3889 Changes in version 0.1.1.6-alpha - 2005-09-09
3890   o Fixes on 0.1.1.5-alpha:
3891     - We broke fascistfirewall in 0.1.1.5-alpha. Oops.
3892     - Fix segfault in unit tests in 0.1.1.5-alpha. Oops.
3893     - Fix bug with tor_memmem finding a match at the end of the string.
3894     - Make unit tests run without segfaulting.
3895     - Resolve some solaris x86 compile warnings.
3896     - Handle duplicate lines in approved-routers files without warning.
3897     - Fix bug where as soon as a server refused any requests due to his
3898       exit policy (e.g. when we ask for localhost and he tells us that's
3899       127.0.0.1 and he won't do it), we decided he wasn't obeying his
3900       exit policy using him for any exits.
3901     - Only do openssl hardware accelerator stuff if openssl version is
3902       at least 0.9.7.
3904   o New controller features/fixes:
3905     - Add a "RESETCONF" command so you can set config options like
3906       AllowUnverifiedNodes and LongLivedPorts to "". Also, if you give
3907       a config option in the torrc with no value, then it clears it
3908       entirely (rather than setting it to its default).
3909     - Add a "GETINFO config-file" to tell us where torrc is.
3910     - Avoid sending blank lines when GETINFO replies should be empty.
3911     - Add a QUIT command for the controller (for using it manually).
3912     - Fix a bug in SAVECONF that was adding default dirservers and
3913       other redundant entries to the torrc file.
3915   o Start on the new directory design:
3916     - Generate, publish, cache, serve new network-status format.
3917     - Publish individual descriptors (by fingerprint, by "all", and by
3918       "tell me yours").
3919     - Publish client and server recommended versions separately.
3920     - Allow tor_gzip_uncompress() to handle multiple concatenated
3921       compressed strings. Serve compressed groups of router
3922       descriptors. The compression logic here could be more
3923       memory-efficient.
3924     - Distinguish v1 authorities (all currently trusted directories)
3925       from v2 authorities (all trusted directories).
3926     - Change DirServers config line to note which dirs are v1 authorities.
3927     - Add configuration option "V1AuthoritativeDirectory 1" which
3928       moria1, moria2, and tor26 should set.
3929     - Remove option when getting directory cache to see whether they
3930       support running-routers; they all do now. Replace it with one
3931       to see whether caches support v2 stuff.
3933   o New features:
3934     - Dirservers now do their own external reachability testing of each
3935       Tor server, and only list them as running if they've been found to
3936       be reachable. We also send back warnings to the server's logs if
3937       it uploads a descriptor that we already believe is unreachable.
3938     - Implement exit enclaves: if we know an IP address for the
3939       destination, and there's a running Tor server at that address
3940       which allows exit to the destination, then extend the circuit to
3941       that exit first. This provides end-to-end encryption and end-to-end
3942       authentication. Also, if the user wants a .exit address or enclave,
3943       use 4 hops rather than 3, and cannibalize a general circ for it
3944       if you can.
3945     - Permit transitioning from ORPort=0 to ORPort!=0, and back, from the
3946       controller. Also, rotate dns and cpu workers if the controller
3947       changes options that will affect them; and initialize the dns
3948       worker cache tree whether or not we start out as a server.
3949     - Only upload a new server descriptor when options change, 18
3950       hours have passed, uptime is reset, or bandwidth changes a lot.
3951     - Check [X-]Forwarded-For headers in HTTP requests when generating
3952       log messages. This lets people run dirservers (and caches) behind
3953       Apache but still know which IP addresses are causing warnings.
3955   o Config option changes:
3956     - Replace (Fascist)Firewall* config options with a new
3957       ReachableAddresses option that understands address policies.
3958       For example, "ReachableAddresses *:80,*:443"
3959     - Get rid of IgnoreVersion undocumented config option, and make us
3960       only warn, never exit, when we're running an obsolete version.
3961     - Make MonthlyAccountingStart config option truly obsolete now.
3963   o Fixes on 0.1.0.x:
3964     - Reject ports 465 and 587 in the default exit policy, since
3965       people have started using them for spam too.
3966     - It turns out we couldn't bootstrap a network since we added
3967       reachability detection in 0.1.0.1-rc. Good thing the Tor network
3968       has never gone down. Add an AssumeReachable config option to let
3969       servers and dirservers bootstrap. When we're trying to build a
3970       high-uptime or high-bandwidth circuit but there aren't enough
3971       suitable servers, try being less picky rather than simply failing.
3972     - Our logic to decide if the OR we connected to was the right guy
3973       was brittle and maybe open to a mitm for unverified routers.
3974     - We weren't cannibalizing circuits correctly for
3975       CIRCUIT_PURPOSE_C_ESTABLISH_REND and
3976       CIRCUIT_PURPOSE_S_ESTABLISH_INTRO, so we were being forced to
3977       build those from scratch. This should make hidden services faster.
3978     - Predict required circuits better, with an eye toward making hidden
3979       services faster on the service end.
3980     - Retry streams if the exit node sends back a 'misc' failure. This
3981       should result in fewer random failures. Also, after failing
3982       from resolve failed or misc, reset the num failures, so we give
3983       it a fair shake next time we try.
3984     - Clean up the rendezvous warn log msgs, and downgrade some to info.
3985     - Reduce severity on logs about dns worker spawning and culling.
3986     - When we're shutting down and we do something like try to post a
3987       server descriptor or rendezvous descriptor, don't complain that
3988       we seem to be unreachable. Of course we are, we're shutting down.
3989     - Add TTLs to RESOLVED, CONNECTED, and END_REASON_EXITPOLICY cells.
3990       We don't use them yet, but maybe one day our DNS resolver will be
3991       able to discover them.
3992     - Make ContactInfo mandatory for authoritative directory servers.
3993     - Require server descriptors to list IPv4 addresses -- hostnames
3994       are no longer allowed. This also fixes some potential security
3995       problems with people providing hostnames as their address and then
3996       preferentially resolving them to partition users.
3997     - Change log line for unreachability to explicitly suggest /etc/hosts
3998       as the culprit. Also make it clearer what IP address and ports we're
3999       testing for reachability.
4000     - Put quotes around user-supplied strings when logging so users are
4001       more likely to realize if they add bad characters (like quotes)
4002       to the torrc.
4003     - Let auth dir servers start without specifying an Address config
4004       option.
4005     - Make unit tests (and other invocations that aren't the real Tor)
4006       run without launching listeners, creating subdirectories, and so on.
4009 Changes in version 0.1.1.5-alpha - 2005-08-08
4010   o Bugfixes included in 0.1.0.14.
4012   o Bugfixes on 0.1.0.x:
4013     - If you write "HiddenServicePort 6667 127.0.0.1 6668" in your
4014       torrc rather than "HiddenServicePort 6667 127.0.0.1:6668",
4015       it would silently using ignore the 6668.
4018 Changes in version 0.1.0.14 - 2005-08-08
4019   o Bugfixes on 0.1.0.x:
4020       - Fix the other half of the bug with crypto handshakes
4021         (CVE-2005-2643).
4022       - Fix an assert trigger if you send a 'signal term' via the
4023         controller when it's listening for 'event info' messages.
4026 Changes in version 0.1.1.4-alpha - 2005-08-04
4027   o Bugfixes included in 0.1.0.13.
4029   o Features:
4030     - Improve tor_gettimeofday() granularity on windows.
4031     - Make clients regenerate their keys when their IP address changes.
4032     - Implement some more GETINFO goodness: expose helper nodes, config
4033       options, getinfo keys.
4036 Changes in version 0.1.0.13 - 2005-08-04
4037   o Bugfixes on 0.1.0.x:
4038     - Fix a critical bug in the security of our crypto handshakes.
4039     - Fix a size_t underflow in smartlist_join_strings2() that made
4040       it do bad things when you hand it an empty smartlist.
4041     - Fix Windows installer to ship Tor license (thanks to Aphex for
4042       pointing out this oversight) and put a link to the doc directory
4043       in the start menu.
4044     - Explicitly set no-unaligned-access for sparc: it turns out the
4045       new gcc's let you compile broken code, but that doesn't make it
4046       not-broken.
4049 Changes in version 0.1.1.3-alpha - 2005-07-23
4050   o Bugfixes on 0.1.1.2-alpha:
4051     - Fix a bug in handling the controller's "post descriptor"
4052       function.
4053     - Fix several bugs in handling the controller's "extend circuit"
4054       function.
4055     - Fix a bug in handling the controller's "stream status" event.
4056     - Fix an assert failure if we have a controller listening for
4057       circuit events and we go offline.
4058     - Re-allow hidden service descriptors to publish 0 intro points.
4059     - Fix a crash when generating your hidden service descriptor if
4060       you don't have enough intro points already.
4062   o New features on 0.1.1.2-alpha:
4063     - New controller function "getinfo accounting", to ask how
4064       many bytes we've used in this time period.
4065     - Experimental support for helper nodes: a lot of the risk from
4066       a small static adversary comes because users pick new random
4067       nodes every time they rebuild a circuit. Now users will try to
4068       stick to the same small set of entry nodes if they can. Not
4069       enabled by default yet.
4071   o Bugfixes on 0.1.0.12:
4072     - If you're an auth dir server, always publish your dirport,
4073       even if you haven't yet found yourself to be reachable.
4074     - Fix a size_t underflow in smartlist_join_strings2() that made
4075       it do bad things when you hand it an empty smartlist.
4078 Changes in version 0.1.0.12 - 2005-07-18
4079   o New directory servers:
4080       - tor26 has changed IP address.
4082   o Bugfixes on 0.1.0.x:
4083     - Fix a possible double-free in tor_gzip_uncompress().
4084     - When --disable-threads is set, do not search for or link against
4085       pthreads libraries.
4086     - Don't trigger an assert if an authoritative directory server
4087       claims its dirport is 0.
4088     - Fix bug with removing Tor as an NT service: some people were
4089       getting "The service did not return an error." Thanks to Matt
4090       Edman for the fix.
4093 Changes in version 0.1.1.2-alpha - 2005-07-15
4094   o New directory servers:
4095     - tor26 has changed IP address.
4097   o Bugfixes on 0.1.0.x, crashes/leaks:
4098     - Port the servers-not-obeying-their-exit-policies fix from
4099       0.1.0.11.
4100     - Fix an fd leak in start_daemon().
4101     - On Windows, you can't always reopen a port right after you've
4102       closed it. So change retry_listeners() to only close and re-open
4103       ports that have changed.
4104     - Fix a possible double-free in tor_gzip_uncompress().
4106   o Bugfixes on 0.1.0.x, usability:
4107     - When tor_socketpair() fails in Windows, give a reasonable
4108       Windows-style errno back.
4109     - Let people type "tor --install" as well as "tor -install" when
4110       they
4111       want to make it an NT service.
4112     - NT service patch from Matt Edman to improve error messages.
4113     - When the controller asks for a config option with an abbreviated
4114       name, give the full name in our response.
4115     - Correct the man page entry on TrackHostExitsExpire.
4116     - Looks like we were never delivering deflated (i.e. compressed)
4117       running-routers lists, even when asked. Oops.
4118     - When --disable-threads is set, do not search for or link against
4119       pthreads libraries.
4121   o Bugfixes on 0.1.1.x:
4122     - Fix a seg fault with autodetecting which controller version is
4123       being used.
4125   o Features:
4126     - New hidden service descriptor format: put a version in it, and
4127       let people specify introduction/rendezvous points that aren't
4128       in "the directory" (which is subjective anyway).
4129     - Allow the DEBUG controller event to work again. Mark certain log
4130       entries as "don't tell this to controllers", so we avoid cycles.
4133 Changes in version 0.1.0.11 - 2005-06-30
4134   o Bugfixes on 0.1.0.x:
4135     - Fix major security bug: servers were disregarding their
4136       exit policies if clients behaved unexpectedly.
4137     - Make OS X init script check for missing argument, so we don't
4138       confuse users who invoke it incorrectly.
4139     - Fix a seg fault in "tor --hash-password foo".
4140     - The MAPADDRESS control command was broken.
4143 Changes in version 0.1.1.1-alpha - 2005-06-29
4144   o Bugfixes:
4145     - Make OS X init script check for missing argument, so we don't
4146       confuse users who invoke it incorrectly.
4147     - Fix a seg fault in "tor --hash-password foo".
4148     - Fix a possible way to DoS dirservers.
4149     - When we complain that your exit policy implicitly allows local or
4150       private address spaces, name them explicitly so operators can
4151       fix it.
4152     - Make the log message less scary when all the dirservers are
4153       temporarily unreachable.
4154     - We were printing the number of idle dns workers incorrectly when
4155       culling them.
4157   o Features:
4158     - Revised controller protocol (version 1) that uses ascii rather
4159       than binary. Add supporting libraries in python and java so you
4160       can use the controller from your applications without caring how
4161       our protocol works.
4162     - Spiffy new support for crypto hardware accelerators. Can somebody
4163       test this?
4166 Changes in version 0.0.9.10 - 2005-06-16
4167   o Bugfixes on 0.0.9.x (backported from 0.1.0.10):
4168     - Refuse relay cells that claim to have a length larger than the
4169       maximum allowed. This prevents a potential attack that could read
4170       arbitrary memory (e.g. keys) from an exit server's process
4171       (CVE-2005-2050).
4174 Changes in version 0.1.0.10 - 2005-06-14
4175   o Allow a few EINVALs from libevent before dying. Warn on kqueue with
4176     libevent before 1.1a.
4179 Changes in version 0.1.0.9-rc - 2005-06-09
4180   o Bugfixes:
4181     - Reset buf->highwater every time buf_shrink() is called, not just on
4182       a successful shrink. This was causing significant memory bloat.
4183     - Fix buffer overflow when checking hashed passwords.
4184     - Security fix: if seeding the RNG on Win32 fails, quit.
4185     - Allow seeding the RNG on Win32 even when you're not running as
4186       Administrator.
4187     - Disable threading on Solaris too. Something is wonky with it,
4188       cpuworkers, and reentrant libs.
4189     - Reenable the part of the code that tries to flush as soon as an
4190       OR outbuf has a full TLS record available. Perhaps this will make
4191       OR outbufs not grow as huge except in rare cases, thus saving lots
4192       of CPU time plus memory.
4193     - Reject malformed .onion addresses rather then passing them on as
4194       normal web requests.
4195     - Adapt patch from Adam Langley: fix possible memory leak in
4196       tor_lookup_hostname().
4197     - Initialize libevent later in the startup process, so the logs are
4198       already established by the time we start logging libevent warns.
4199     - Use correct errno on win32 if libevent fails.
4200     - Check and warn about known-bad/slow libevent versions.
4201     - Pay more attention to the ClientOnly config option.
4202     - Have torctl.in/tor.sh.in check for location of su binary (needed
4203       on FreeBSD)
4204     - Correct/add man page entries for LongLivedPorts, ExitPolicy,
4205       KeepalivePeriod, ClientOnly, NoPublish, HttpProxy, HttpsProxy,
4206       HttpProxyAuthenticator
4207     - Stop warning about sigpipes in the logs. We're going to
4208       pretend that getting these occassionally is normal and fine.
4209     - Resolve OS X installer bugs: stop claiming to be 0.0.9.2 in
4210       certain
4211       installer screens; and don't put stuff into StartupItems unless
4212       the user asks you to.
4213     - Require servers that use the default dirservers to have public IP
4214       addresses. We have too many servers that are configured with private
4215       IPs and their admins never notice the log entries complaining that
4216       their descriptors are being rejected.
4217     - Add OSX uninstall instructions. An actual uninstall script will
4218       come later.
4221 Changes in version 0.1.0.8-rc - 2005-05-23
4222   o Bugfixes:
4223     - It turns out that kqueue on OS X 10.3.9 was causing kernel
4224       panics. Disable kqueue on all OS X Tors.
4225     - Fix RPM: remove duplicate line accidentally added to the rpm
4226       spec file.
4227     - Disable threads on openbsd too, since its gethostaddr is not
4228       reentrant either.
4229     - Tolerate libevent 0.8 since it still works, even though it's
4230       ancient.
4231     - Enable building on Red Hat 9.0 again.
4232     - Allow the middle hop of the testing circuit to be running any
4233       version, now that most of them have the bugfix to let them connect
4234       to unknown servers. This will allow reachability testing to work
4235       even when 0.0.9.7-0.0.9.9 become obsolete.
4236     - Handle relay cells with rh.length too large. This prevents
4237       a potential attack that could read arbitrary memory (maybe even
4238       keys) from the exit server's process.
4239     - We screwed up the dirport reachability testing when we don't yet
4240       have a cached version of the directory. Hopefully now fixed.
4241     - Clean up router_load_single_router() (used by the controller),
4242       so it doesn't seg fault on error.
4243     - Fix a minor memory leak when somebody establishes an introduction
4244       point at your Tor server.
4245     - If a socks connection ends because read fails, don't warn that
4246       you're not sending a socks reply back.
4248   o Features:
4249     - Add HttpProxyAuthenticator config option too, that works like
4250       the HttpsProxyAuthenticator config option.
4251     - Encode hashed controller passwords in hex instead of base64,
4252       to make it easier to write controllers.
4255 Changes in version 0.1.0.7-rc - 2005-05-17
4256   o Bugfixes:
4257     - Fix a bug in the OS X package installer that prevented it from
4258       installing on Tiger.
4259     - Fix a script bug in the OS X package installer that made it
4260       complain during installation.
4261     - Find libevent even if it's hiding in /usr/local/ and your
4262       CFLAGS and LDFLAGS don't tell you to look there.
4263     - Be able to link with libevent as a shared library (the default
4264       after 1.0d), even if it's hiding in /usr/local/lib and even
4265       if you haven't added /usr/local/lib to your /etc/ld.so.conf,
4266       assuming you're running gcc. Otherwise fail and give a useful
4267       error message.
4268     - Fix a bug in the RPM packager: set home directory for _tor to
4269       something more reasonable when first installing.
4270     - Free a minor amount of memory that is still reachable on exit.
4273 Changes in version 0.1.0.6-rc - 2005-05-14
4274   o Bugfixes:
4275     - Implement --disable-threads configure option. Disable threads on
4276       netbsd by default, because it appears to have no reentrant resolver
4277       functions.
4278     - Apple's OS X 10.4.0 ships with a broken kqueue. The new libevent
4279       release (1.1) detects and disables kqueue if it's broken.
4280     - Append default exit policy before checking for implicit internal
4281       addresses. Now we don't log a bunch of complaints on startup
4282       when using the default exit policy.
4283     - Some people were putting "Address  " in their torrc, and they had
4284       a buggy resolver that resolved " " to 0.0.0.0. Oops.
4285     - If DataDir is ~/.tor, and that expands to /.tor, then default to
4286       LOCALSTATEDIR/tor instead.
4287     - Fix fragmented-message bug in TorControl.py.
4288     - Resolve a minor bug which would prevent unreachable dirports
4289       from getting suppressed in the published descriptor.
4290     - When the controller gave us a new descriptor, we weren't resolving
4291       it immediately, so Tor would think its address was 0.0.0.0 until
4292       we fetched a new directory.
4293     - Fix an uppercase/lowercase case error in suppressing a bogus
4294       libevent warning on some Linuxes.
4296   o Features:
4297     - Begin scrubbing sensitive strings from logs by default. Turn off
4298       the config option SafeLogging if you need to do debugging.
4299     - Switch to a new buffer management algorithm, which tries to avoid
4300       reallocing and copying quite as much. In first tests it looks like
4301       it uses *more* memory on average, but less cpu.
4302     - First cut at support for "create-fast" cells. Clients can use
4303       these when extending to their first hop, since the TLS already
4304       provides forward secrecy and authentication. Not enabled on
4305       clients yet.
4306     - When dirservers refuse a router descriptor, we now log its
4307       contactinfo, platform, and the poster's IP address.
4308     - Call tor_free_all instead of connections_free_all after forking, to
4309       save memory on systems that need to fork.
4310     - Whine at you if you're a server and you don't set your contactinfo.
4311     - Implement --verify-config command-line option to check if your torrc
4312       is valid without actually launching Tor.
4313     - Rewrite address "serifos.exit" to "localhost.serifos.exit"
4314       rather than just rejecting it.
4317 Changes in version 0.1.0.5-rc - 2005-04-27
4318   o Bugfixes:
4319     - Stop trying to print a null pointer if an OR conn fails because
4320       we didn't like its cert.
4321   o Features:
4322     - Switch our internal buffers implementation to use a ring buffer,
4323       to hopefully improve performance for fast servers a lot.
4324     - Add HttpsProxyAuthenticator support (basic auth only), based
4325       on patch from Adam Langley.
4326     - Bump the default BandwidthRate from 1 MB to 2 MB, to accommodate
4327       the fast servers that have been joining lately.
4328     - Give hidden service accesses extra time on the first attempt,
4329       since 60 seconds is often only barely enough. This might improve
4330       robustness more.
4331     - Improve performance for dirservers: stop re-parsing the whole
4332       directory every time you regenerate it.
4333     - Add more debugging info to help us find the weird dns freebsd
4334       pthreads bug; cleaner debug messages to help track future issues.
4337 Changes in version 0.0.9.9 - 2005-04-23
4338   o Bugfixes on 0.0.9.x:
4339     - If unofficial Tor clients connect and send weird TLS certs, our
4340       Tor server triggers an assert. This release contains a minimal
4341       backport from the broader fix that we put into 0.1.0.4-rc.
4344 Changes in version 0.1.0.4-rc - 2005-04-23
4345   o Bugfixes:
4346     - If unofficial Tor clients connect and send weird TLS certs, our
4347       Tor server triggers an assert. Stop asserting, and start handling
4348       TLS errors better in other situations too.
4349     - When the controller asks us to tell it about all the debug-level
4350       logs, it turns out we were generating debug-level logs while
4351       telling it about them, which turns into a bad loop. Now keep
4352       track of whether you're sending a debug log to the controller,
4353       and don't log when you are.
4354     - Fix the "postdescriptor" feature of the controller interface: on
4355       non-complete success, only say "done" once.
4356   o Features:
4357     - Clients are now willing to load balance over up to 2mB, not 1mB,
4358       of advertised bandwidth capacity.
4359     - Add a NoPublish config option, so you can be a server (e.g. for
4360       testing running Tor servers in other Tor networks) without
4361       publishing your descriptor to the primary dirservers.
4364 Changes in version 0.1.0.3-rc - 2005-04-08
4365   o Improvements on 0.1.0.2-rc:
4366     - Client now retries when streams end early for 'hibernating' or
4367       'resource limit' reasons, rather than failing them.
4368     - More automated handling for dirserver operators:
4369       - Automatically approve nodes running 0.1.0.2-rc or later,
4370         now that the the reachability detection stuff is working.
4371       - Now we allow two unverified servers with the same nickname
4372         but different keys. But if a nickname is verified, only that
4373         nickname+key are allowed.
4374       - If you're an authdirserver connecting to an address:port,
4375         and it's not the OR you were expecting, forget about that
4376         descriptor. If he *was* the one you were expecting, then forget
4377         about all other descriptors for that address:port.
4378       - Allow servers to publish descriptors from 12 hours in the future.
4379         Corollary: only whine about clock skew from the dirserver if
4380         he's a trusted dirserver (since now even verified servers could
4381         have quite wrong clocks).
4382     - Adjust maximum skew and age for rendezvous descriptors: let skew
4383       be 48 hours rather than 90 minutes.
4384     - Efficiency improvements:
4385       - Keep a big splay tree of (circid,orconn)->circuit mappings to make
4386         it much faster to look up a circuit for each relay cell.
4387       - Remove most calls to assert_all_pending_dns_resolves_ok(),
4388         since they're eating our cpu on exit nodes.
4389       - Stop wasting time doing a case insensitive comparison for every
4390         dns name every time we do any lookup. Canonicalize the names to
4391         lowercase and be done with it.
4392     - Start sending 'truncated' cells back rather than destroy cells,
4393       if the circuit closes in front of you. This means we won't have
4394       to abandon partially built circuits.
4395     - Only warn once per nickname from add_nickname_list_to_smartlist
4396       per failure, so an entrynode or exitnode choice that's down won't
4397       yell so much.
4398     - Put a note in the torrc about abuse potential with the default
4399       exit policy.
4400     - Revise control spec and implementation to allow all log messages to
4401       be sent to controller with their severities intact (suggested by
4402       Matt Edman). Update TorControl to handle new log event types.
4403     - Provide better explanation messages when controller's POSTDESCRIPTOR
4404       fails.
4405     - Stop putting nodename in the Platform string in server descriptors.
4406       It doesn't actually help, and it is confusing/upsetting some people.
4408   o Bugfixes on 0.1.0.2-rc:
4409     - We were printing the host mask wrong in exit policies in server
4410       descriptors. This isn't a critical bug though, since we were still
4411       obeying the exit policy internally.
4412     - Fix Tor when compiled with libevent but without pthreads: move
4413       connection_unregister() from _connection_free() to
4414       connection_free().
4415     - Fix an assert trigger (already fixed in 0.0.9.x): when we have
4416       the rare mysterious case of accepting a conn on 0.0.0.0:0, then
4417       when we look through the connection array, we'll find any of the
4418       cpu/dnsworkers. This is no good.
4420   o Bugfixes on 0.0.9.8:
4421     - Fix possible bug on threading platforms (e.g. win32) which was
4422       leaking a file descriptor whenever a cpuworker or dnsworker died.
4423     - When using preferred entry or exit nodes, ignore whether the
4424       circuit wants uptime or capacity. They asked for the nodes, they
4425       get the nodes.
4426     - chdir() to your datadirectory at the *end* of the daemonize process,
4427       not the beginning. This was a problem because the first time you
4428       run tor, if your datadir isn't there, and you have runasdaemon set
4429       to 1, it will try to chdir to it before it tries to create it. Oops.
4430     - Handle changed router status correctly when dirserver reloads
4431       fingerprint file. We used to be dropping all unverified descriptors
4432       right then. The bug was hidden because we would immediately
4433       fetch a directory from another dirserver, which would include the
4434       descriptors we just dropped.
4435     - When we're connecting to an OR and he's got a different nickname/key
4436       than we were expecting, only complain loudly if we're an OP or a
4437       dirserver. Complaining loudly to the OR admins just confuses them.
4438     - Tie MAX_DIR_SIZE to MAX_BUF_SIZE, so now directory sizes won't get
4439       artificially capped at 500kB.
4442 Changes in version 0.0.9.8 - 2005-04-07
4443   o Bugfixes on 0.0.9.x:
4444     - We have a bug that I haven't found yet. Sometimes, very rarely,
4445       cpuworkers get stuck in the 'busy' state, even though the cpuworker
4446       thinks of itself as idle. This meant that no new circuits ever got
4447       established. Here's a workaround to kill any cpuworker that's been
4448       busy for more than 100 seconds.
4451 Changes in version 0.1.0.2-rc - 2005-04-01
4452   o Bugfixes on 0.1.0.1-rc:
4453     - Fixes on reachability detection:
4454       - Don't check for reachability while hibernating.
4455       - If ORPort is reachable but DirPort isn't, still publish the
4456         descriptor, but zero out DirPort until it's found reachable.
4457       - When building testing circs for ORPort testing, use only
4458         high-bandwidth nodes, so fewer circuits fail.
4459       - Complain about unreachable ORPort separately from unreachable
4460         DirPort, so the user knows what's going on.
4461       - Make sure we only conclude ORPort reachability if we didn't
4462         initiate the conn. Otherwise we could falsely conclude that
4463         we're reachable just because we connected to the guy earlier
4464         and he used that same pipe to extend to us.
4465       - Authdirservers shouldn't do ORPort reachability detection,
4466         since they're in clique mode, so it will be rare to find a
4467         server not already connected to them.
4468       - When building testing circuits, always pick middle hops running
4469         Tor 0.0.9.7, so we avoid the "can't extend to unknown routers"
4470         bug. (This is a kludge; it will go away when 0.0.9.x becomes
4471         obsolete.)
4472       - When we decide we're reachable, actually publish our descriptor
4473         right then.
4474     - Fix bug in redirectstream in the controller.
4475     - Fix the state descriptor strings so logs don't claim edge streams
4476       are in a different state than they actually are.
4477     - Use recent libevent features when possible (this only really affects
4478       win32 and osx right now, because the new libevent with these
4479       features hasn't been released yet). Add code to suppress spurious
4480       libevent log msgs.
4481     - Prevent possible segfault in connection_close_unattached_ap().
4482     - Fix newlines on torrc in win32.
4483     - Improve error msgs when tor-resolve fails.
4485   o Improvements on 0.0.9.x:
4486     - New experimental script tor/contrib/ExerciseServer.py (needs more
4487       work) that uses the controller interface to build circuits and
4488       fetch pages over them. This will help us bootstrap servers that
4489       have lots of capacity but haven't noticed it yet.
4490     - New experimental script tor/contrib/PathDemo.py (needs more work)
4491       that uses the controller interface to let you choose whole paths
4492       via addresses like
4493       "<hostname>.<path,separated by dots>.<length of path>.path"
4494     - When we've connected to an OR and handshaked but didn't like
4495       the result, we were closing the conn without sending destroy
4496       cells back for pending circuits. Now send those destroys.
4499 Changes in version 0.0.9.7 - 2005-04-01
4500   o Bugfixes on 0.0.9.x:
4501     - Fix another race crash bug (thanks to Glenn Fink for reporting).
4502     - Compare identity to identity, not to nickname, when extending to
4503       a router not already in the directory. This was preventing us from
4504       extending to unknown routers. Oops.
4505     - Make sure to create OS X Tor user in <500 range, so we aren't
4506       creating actual system users.
4507     - Note where connection-that-hasn't-sent-end was marked, and fix
4508       a few really loud instances of this harmless bug (it's fixed more
4509       in 0.1.0.x).
4512 Changes in version 0.1.0.1-rc - 2005-03-28
4513   o New features:
4514     - Add reachability testing. Your Tor server will automatically try
4515       to see if its ORPort and DirPort are reachable from the outside,
4516       and it won't upload its descriptor until it decides they are.
4517     - Handle unavailable hidden services better. Handle slow or busy
4518       hidden services better.
4519     - Add support for CONNECTing through https proxies, with "HttpsProxy"
4520       config option.
4521     - New exit policy: accept most low-numbered ports, rather than
4522       rejecting most low-numbered ports.
4523     - More Tor controller support (still experimental). See
4524       http://tor.eff.org/doc/control-spec.txt for all the new features,
4525       including signals to emulate unix signals from any platform;
4526       redirectstream; extendcircuit; mapaddress; getinfo; postdescriptor;
4527       closestream; closecircuit; etc.
4528     - Make nt services work and start on startup on win32 (based on
4529       patch by Matt Edman).
4530     - Add a new AddressMap config directive to rewrite incoming socks
4531       addresses. This lets you, for example, declare an implicit
4532       required exit node for certain sites.
4533     - Add a new TrackHostExits config directive to trigger addressmaps
4534       for certain incoming socks addresses -- for sites that break when
4535       your exit keeps changing (based on patch by Mike Perry).
4536     - Redo the client-side dns cache so it's just an addressmap too.
4537     - Notice when our IP changes, and reset stats/uptime/reachability.
4538     - When an application is using socks5, give him the whole variety of
4539       potential socks5 responses (connect refused, host unreachable, etc),
4540       rather than just "success" or "failure".
4541     - A more sane version numbering system. See
4542       http://tor.eff.org/cvs/tor/doc/version-spec.txt for details.
4543     - New contributed script "exitlist": a simple python script to
4544       parse directories and find Tor nodes that exit to listed
4545       addresses/ports.
4546     - New contributed script "privoxy-tor-toggle" to toggle whether
4547       Privoxy uses Tor. Seems to be configured for Debian by default.
4548     - Report HTTP reasons to client when getting a response from directory
4549       servers -- so you can actually know what went wrong.
4550     - New config option MaxAdvertisedBandwidth which lets you advertise
4551       a low bandwidthrate (to not attract as many circuits) while still
4552       allowing a higher bandwidthrate in reality.
4554   o Robustness/stability fixes:
4555     - Make Tor use Niels Provos's libevent instead of its current
4556       poll-but-sometimes-select mess.  This will let us use faster async
4557       cores (like epoll, kpoll, and /dev/poll), and hopefully work better
4558       on Windows too.
4559     - pthread support now too. This was forced because when we forked,
4560       we ended up wasting a lot of duplicate ram over time. Also switch
4561       to foo_r versions of some library calls to allow reentry and
4562       threadsafeness.
4563     - Better handling for heterogeneous / unreliable nodes:
4564       - Annotate circuits w/ whether they aim to contain high uptime nodes
4565         and/or high capacity nodes. When building circuits, choose
4566         appropriate nodes.
4567       - This means that every single node in an intro rend circuit,
4568         not just the last one, will have a minimum uptime.
4569       - New config option LongLivedPorts to indicate application streams
4570         that will want high uptime circuits.
4571       - Servers reset uptime when a dir fetch entirely fails. This
4572         hopefully reflects stability of the server's network connectivity.
4573       - If somebody starts his tor server in Jan 2004 and then fixes his
4574         clock, don't make his published uptime be a year.
4575       - Reset published uptime when you wake up from hibernation.
4576     - Introduce a notion of 'internal' circs, which are chosen without
4577       regard to the exit policy of the last hop. Intro and rendezvous
4578       circs must be internal circs, to avoid leaking information. Resolve
4579       and connect streams can use internal circs if they want.
4580     - New circuit pooling algorithm: make sure to have enough circs around
4581       to satisfy any predicted ports, and also make sure to have 2 internal
4582       circs around if we've required internal circs lately (and with high
4583       uptime if we've seen that lately too).
4584     - Split NewCircuitPeriod option into NewCircuitPeriod (30 secs),
4585       which describes how often we retry making new circuits if current
4586       ones are dirty, and MaxCircuitDirtiness (10 mins), which describes
4587       how long we're willing to make use of an already-dirty circuit.
4588     - Cannibalize GENERAL circs to be C_REND, C_INTRO, S_INTRO, and S_REND
4589       circ as necessary, if there are any completed ones lying around
4590       when we try to launch one.
4591     - Make hidden services try to establish a rendezvous for 30 seconds,
4592       rather than for n (where n=3) attempts to build a circuit.
4593     - Change SHUTDOWN_WAIT_LENGTH from a fixed 30 secs to a config option
4594       "ShutdownWaitLength".
4595     - Try to be more zealous about calling connection_edge_end when
4596       things go bad with edge conns in connection.c.
4597     - Revise tor-spec to add more/better stream end reasons.
4598     - Revise all calls to connection_edge_end to avoid sending "misc",
4599       and to take errno into account where possible.
4601   o Bug fixes:
4602     - Fix a race condition that can trigger an assert, when we have a
4603       pending create cell and an OR connection fails right then.
4604     - Fix several double-mark-for-close bugs, e.g. where we were finding
4605       a conn for a cell even if that conn is already marked for close.
4606     - Make sequence of log messages when starting on win32 with no config
4607       file more reasonable.
4608     - When choosing an exit node for a new non-internal circ, don't take
4609       into account whether it'll be useful for any pending x.onion
4610       addresses -- it won't.
4611     - Turn addr_policy_compare from a tristate to a quadstate; this should
4612       help address our "Ah, you allow 1.2.3.4:80. You are a good choice
4613       for google.com" problem.
4614     - Make "platform" string in descriptor more accurate for Win32 servers,
4615       so it's not just "unknown platform".
4616     - Fix an edge case in parsing config options (thanks weasel).
4617       If they say "--" on the commandline, it's not an option.
4618     - Reject odd-looking addresses at the client (e.g. addresses that
4619       contain a colon), rather than having the server drop them because
4620       they're malformed.
4621     - tor-resolve requests were ignoring .exit if there was a working circuit
4622       they could use instead.
4623     - REUSEADDR on normal platforms means you can rebind to the port
4624       right after somebody else has let it go. But REUSEADDR on win32
4625       means to let you bind to the port _even when somebody else
4626       already has it bound_! So, don't do that on Win32.
4627     - Change version parsing logic: a version is "obsolete" if it is not
4628       recommended and (1) there is a newer recommended version in the
4629       same series, or (2) there are no recommended versions in the same
4630       series, but there are some recommended versions in a newer series.
4631       A version is "new" if it is newer than any recommended version in
4632       the same series.
4633     - Stop most cases of hanging up on a socks connection without sending
4634       the socks reject.
4636   o Helpful fixes:
4637     - Require BandwidthRate to be at least 20kB/s for servers.
4638     - When a dirserver causes you to give a warn, mention which dirserver
4639       it was.
4640     - New config option DirAllowPrivateAddresses for authdirservers.
4641       Now by default they refuse router descriptors that have non-IP or
4642       private-IP addresses.
4643     - Stop publishing socksport in the directory, since it's not
4644       actually meant to be public. For compatibility, publish a 0 there
4645       for now.
4646     - Change DirFetchPeriod/StatusFetchPeriod to have a special "Be
4647       smart" value, that is low for servers and high for clients.
4648     - If our clock jumps forward by 100 seconds or more, assume something
4649       has gone wrong with our network and abandon all not-yet-used circs.
4650     - Warn when exit policy implicitly allows local addresses.
4651     - If we get an incredibly skewed timestamp from a dirserver mirror
4652       that isn't a verified OR, don't warn -- it's probably him that's
4653       wrong.
4654     - Since we ship our own Privoxy on OS X, tweak it so it doesn't write
4655       cookies to disk and doesn't log each web request to disk. (Thanks
4656       to Brett Carrington for pointing this out.)
4657     - When a client asks us for a dir mirror and we don't have one,
4658       launch an attempt to get a fresh one.
4659     - If we're hibernating and we get a SIGINT, exit immediately.
4660     - Add --with-dmalloc ./configure option, to track memory leaks.
4661     - And try to free all memory on closing, so we can detect what
4662       we're leaking.
4663     - Cache local dns resolves correctly even when they're .exit
4664       addresses.
4665     - Give a better warning when some other server advertises an
4666       ORPort that is actually an apache running ssl.
4667     - Add "opt hibernating 1" to server descriptor to make it clearer
4668       whether the server is hibernating.
4671 Changes in version 0.0.9.6 - 2005-03-24
4672   o Bugfixes on 0.0.9.x (crashes and asserts):
4673     - Add new end stream reasons to maintainance branch. Fix bug where
4674       reason (8) could trigger an assert.  Prevent bug from recurring.
4675     - Apparently win32 stat wants paths to not end with a slash.
4676     - Fix assert triggers in assert_cpath_layer_ok(), where we were
4677       blowing away the circuit that conn->cpath_layer points to, then
4678       checking to see if the circ is well-formed. Backport check to make
4679       sure we dont use the cpath on a closed connection.
4680     - Prevent circuit_resume_edge_reading_helper() from trying to package
4681       inbufs for marked-for-close streams.
4682     - Don't crash on hup if your options->address has become unresolvable.
4683     - Some systems (like OS X) sometimes accept() a connection and tell
4684       you the remote host is 0.0.0.0:0. If this happens, due to some
4685       other mis-features, we get confused; so refuse the conn for now.
4687   o Bugfixes on 0.0.9.x (other):
4688     - Fix harmless but scary "Unrecognized content encoding" warn message.
4689     - Add new stream error reason: TORPROTOCOL reason means "you are not
4690       speaking a version of Tor I understand; say bye-bye to your stream."
4691     - Be willing to cache directories from up to ROUTER_MAX_AGE seconds
4692       into the future, now that we are more tolerant of skew. This
4693       resolves a bug where a Tor server would refuse to cache a directory
4694       because all the directories it gets are too far in the future;
4695       yet the Tor server never logs any complaints about clock skew.
4696     - Mac packaging magic: make man pages useable, and do not overwrite
4697       existing torrc files.
4698     - Make OS X log happily to /var/log/tor/tor.log
4701 Changes in version 0.0.9.5 - 2005-02-22
4702   o Bugfixes on 0.0.9.x:
4703     - Fix an assert race at exit nodes when resolve requests fail.
4704     - Stop picking unverified dir mirrors--it only leads to misery.
4705     - Patch from Matt Edman to make NT services work better. Service
4706       support is still not compiled into the executable by default.
4707     - Patch from Dmitri Bely so the Tor service runs better under
4708       the win32 SYSTEM account.
4709     - Make tor-resolve actually work (?) on Win32.
4710     - Fix a sign bug when getrlimit claims to have 4+ billion
4711       file descriptors available.
4712     - Stop refusing to start when bandwidthburst == bandwidthrate.
4713     - When create cells have been on the onion queue more than five
4714       seconds, just send back a destroy and take them off the list.
4717 Changes in version 0.0.9.4 - 2005-02-03
4718   o Bugfixes on 0.0.9:
4719     - Fix an assert bug that took down most of our servers: when
4720       a server claims to have 1 GB of bandwidthburst, don't
4721       freak out.
4722     - Don't crash as badly if we have spawned the max allowed number
4723       of dnsworkers, or we're out of file descriptors.
4724     - Block more file-sharing ports in the default exit policy.
4725     - MaxConn is now automatically set to the hard limit of max
4726       file descriptors we're allowed (ulimit -n), minus a few for
4727       logs, etc.
4728     - Give a clearer message when servers need to raise their
4729       ulimit -n when they start running out of file descriptors.
4730     - SGI Compatibility patches from Jan Schaumann.
4731     - Tolerate a corrupt cached directory better.
4732     - When a dirserver hasn't approved your server, list which one.
4733     - Go into soft hibernation after 95% of the bandwidth is used,
4734       not 99%. This is especially important for daily hibernators who
4735       have a small accounting max. Hopefully it will result in fewer
4736       cut connections when the hard hibernation starts.
4737     - Load-balance better when using servers that claim more than
4738       800kB/s of capacity.
4739     - Make NT services work (experimental, only used if compiled in).
4742 Changes in version 0.0.9.3 - 2005-01-21
4743   o Bugfixes on 0.0.9:
4744     - Backport the cpu use fixes from main branch, so busy servers won't
4745       need as much processor time.
4746     - Work better when we go offline and then come back, or when we
4747       run Tor at boot before the network is up. We do this by
4748       optimistically trying to fetch a new directory whenever an
4749       application request comes in and we think we're offline -- the
4750       human is hopefully a good measure of when the network is back.
4751     - Backport some minimal hidserv bugfixes: keep rend circuits open as
4752       long as you keep using them; actually publish hidserv descriptors
4753       shortly after they change, rather than waiting 20-40 minutes.
4754     - Enable Mac startup script by default.
4755     - Fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas.
4756     - When you update AllowUnverifiedNodes or FirewallPorts via the
4757       controller's setconf feature, we were always appending, never
4758       resetting.
4759     - When you update HiddenServiceDir via setconf, it was screwing up
4760       the order of reading the lines, making it fail.
4761     - Do not rewrite a cached directory back to the cache; otherwise we
4762       will think it is recent and not fetch a newer one on startup.
4763     - Workaround for webservers that lie about Content-Encoding: Tor
4764       now tries to autodetect compressed directories and compression
4765       itself. This lets us Proxypass dir fetches through apache.
4768 Changes in version 0.0.9.2 - 2005-01-04
4769   o Bugfixes on 0.0.9 (crashes and asserts):
4770     - Fix an assert on startup when the disk is full and you're logging
4771       to a file.
4772     - If you do socks4 with an IP of 0.0.0.x but *don't* provide a socks4a
4773       style address, then we'd crash.
4774     - Fix an assert trigger when the running-routers string we get from
4775       a dirserver is broken.
4776     - Make worker threads start and run on win32. Now win32 servers
4777       may work better.
4778     - Bandaid (not actually fix, but now it doesn't crash) an assert
4779       where the dns worker dies mysteriously and the main Tor process
4780       doesn't remember anything about the address it was resolving.
4782   o Bugfixes on 0.0.9 (Win32):
4783     - Workaround for brain-damaged __FILE__ handling on MSVC: keep Nick's
4784       name out of the warning/assert messages.
4785     - Fix a superficial "unhandled error on read" bug on win32.
4786     - The win32 installer no longer requires a click-through for our
4787       license, since our Free Software license grants rights but does not
4788       take any away.
4789     - Win32: When connecting to a dirserver fails, try another one
4790       immediately. (This was already working for non-win32 Tors.)
4791     - Stop trying to parse $HOME on win32 when hunting for default
4792       DataDirectory.
4793     - Make tor-resolve.c work on win32 by calling network_init().
4795   o Bugfixes on 0.0.9 (other):
4796     - Make 0.0.9.x build on Solaris again.
4797     - Due to a fencepost error, we were blowing away the \n when reporting
4798       confvalue items in the controller. So asking for multiple config
4799       values at once couldn't work.
4800     - When listing circuits that are pending on an opening OR connection,
4801       if we're an OR we were listing circuits that *end* at us as
4802       being pending on every listener, dns/cpu worker, etc. Stop that.
4803     - Dirservers were failing to create 'running-routers' or 'directory'
4804       strings if we had more than some threshold of routers. Fix them so
4805       they can handle any number of routers.
4806     - Fix a superficial "Duplicate mark for close" bug.
4807     - Stop checking for clock skew for OR connections, even for servers.
4808     - Fix a fencepost error that was chopping off the last letter of any
4809       nickname that is the maximum allowed nickname length.
4810     - Update URLs in log messages so they point to the new website.
4811     - Fix a potential problem in mangling server private keys while
4812       writing to disk (not triggered yet, as far as we know).
4813     - Include the licenses for other free software we include in Tor,
4814       now that we're shipping binary distributions more regularly.
4817 Changes in version 0.0.9.1 - 2004-12-15
4818   o Bugfixes on 0.0.9:
4819     - Make hibernation actually work.
4820     - Make HashedControlPassword config option work.
4821     - When we're reporting event circuit status to a controller,
4822       don't use the stream status code.
4825 Changes in version 0.0.9 - 2004-12-12
4826   o Cleanups:
4827     - Clean up manpage and torrc.sample file.
4828     - Clean up severities and text of log warnings.
4829   o Mistakes:
4830     - Make servers trigger an assert when they enter hibernation.
4833 Changes in version 0.0.9rc7 - 2004-12-08
4834   o Bugfixes on 0.0.9rc:
4835     - Fix a stack-trashing crash when an exit node begins hibernating.
4836     - Avoid looking at unallocated memory while considering which
4837       ports we need to build circuits to cover.
4838     - Stop a sigpipe: when an 'end' cell races with eof from the app,
4839       we shouldn't hold-open-until-flush if the eof arrived first.
4840     - Fix a bug with init_cookie_authentication() in the controller.
4841     - When recommending new-format log lines, if the upper bound is
4842       LOG_ERR, leave it implicit.
4844   o Bugfixes on 0.0.8.1:
4845     - Fix a whole slew of memory leaks.
4846     - Fix isspace() and friends so they still make Solaris happy
4847       but also so they don't trigger asserts on win32.
4848     - Fix parse_iso_time on platforms without strptime (eg win32).
4849     - win32: tolerate extra "readable" events better.
4850     - win32: when being multithreaded, leave parent fdarray open.
4851     - Make unit tests work on win32.
4854 Changes in version 0.0.9rc6 - 2004-12-06
4855   o Bugfixes on 0.0.9pre:
4856     - Clean up some more integer underflow opportunities (not exploitable
4857       we think).
4858     - While hibernating, hup should not regrow our listeners.
4859     - Send an end to the streams we close when we hibernate, rather
4860       than just chopping them off.
4861     - React to eof immediately on non-open edge connections.
4863   o Bugfixes on 0.0.8.1:
4864     - Calculate timeout for waiting for a connected cell from the time
4865       we sent the begin cell, not from the time the stream started. If
4866       it took a long time to establish the circuit, we would time out
4867       right after sending the begin cell.
4868     - Fix router_compare_addr_to_addr_policy: it was not treating a port
4869       of * as always matching, so we were picking reject *:* nodes as
4870       exit nodes too. Oops.
4872   o Features:
4873     - New circuit building strategy: keep a list of ports that we've
4874       used in the past 6 hours, and always try to have 2 circuits open
4875       or on the way that will handle each such port. Seed us with port
4876       80 so web users won't complain that Tor is "slow to start up".
4877     - Make kill -USR1 dump more useful stats about circuits.
4878     - When warning about retrying or giving up, print the address, so
4879       the user knows which one it's talking about.
4880     - If you haven't used a clean circuit in an hour, throw it away,
4881       just to be on the safe side. (This means after 6 hours a totally
4882       unused Tor client will have no circuits open.)
4885 Changes in version 0.0.9rc5 - 2004-12-01
4886   o Bugfixes on 0.0.8.1:
4887     - Disallow NDEBUG. We don't ever want anybody to turn off debug.
4888     - Let resolve conns retry/expire also, rather than sticking around
4889       forever.
4890     - If we are using select, make sure we stay within FD_SETSIZE.
4892   o Bugfixes on 0.0.9pre:
4893     - Fix integer underflow in tor_vsnprintf() that may be exploitable,
4894       but doesn't seem to be currently; thanks to Ilja van Sprundel for
4895       finding it.
4896     - If anybody set DirFetchPostPeriod, give them StatusFetchPeriod
4897       instead.  Impose minima and maxima for all *Period options; impose
4898       even tighter maxima for fetching if we are a caching dirserver.
4899       Clip rather than rejecting.
4900     - Fetch cached running-routers from servers that serve it (that is,
4901       authdirservers and servers running 0.0.9rc5-cvs or later.)
4903   o Features:
4904     - Accept *:706 (silc) in default exit policy.
4905     - Implement new versioning format for post 0.1.
4906     - Support "foo.nickname.exit" addresses, to let Alice request the
4907       address "foo" as viewed by exit node "nickname". Based on a patch
4908       by Geoff Goodell.
4909     - Make tor --version --version dump the cvs Id of every file.
4912 Changes in version 0.0.9rc4 - 2004-11-28
4913   o Bugfixes on 0.0.8.1:
4914     - Make windows sockets actually non-blocking (oops), and handle
4915       win32 socket errors better.
4917   o Bugfixes on 0.0.9rc1:
4918     - Actually catch the -USR2 signal.
4921 Changes in version 0.0.9rc3 - 2004-11-25
4922   o Bugfixes on 0.0.8.1:
4923     - Flush the log file descriptor after we print "Tor opening log file",
4924       so we don't see those messages days later.
4926   o Bugfixes on 0.0.9rc1:
4927     - Make tor-resolve work again.
4928     - Avoid infinite loop in tor-resolve if tor hangs up on it.
4929     - Fix an assert trigger for clients/servers handling resolves.
4932 Changes in version 0.0.9rc2 - 2004-11-24
4933   o Bugfixes on 0.0.9rc1:
4934     - I broke socks5 support while fixing the eof bug.
4935     - Allow unitless bandwidths and intervals; they default to bytes
4936       and seconds.
4937     - New servers don't start out hibernating; they are active until
4938       they run out of bytes, so they have a better estimate of how
4939       long it takes, and so their operators can know they're working.
4942 Changes in version 0.0.9rc1 - 2004-11-23
4943   o Bugfixes on 0.0.8.1:
4944     - Finally fix a bug that's been plaguing us for a year:
4945       With high load, circuit package window was reaching 0. Whenever
4946       we got a circuit-level sendme, we were reading a lot on each
4947       socket, but only writing out a bit. So we would eventually reach
4948       eof. This would be noticed and acted on even when there were still
4949       bytes sitting in the inbuf.
4950     - When poll() is interrupted, we shouldn't believe the revents values.
4952   o Bugfixes on 0.0.9pre6:
4953     - Fix hibernate bug that caused pre6 to be broken.
4954     - Don't keep rephist info for routers that haven't had activity for
4955       24 hours. (This matters now that clients have keys, since we track
4956       them too.)
4957     - Never call close_temp_logs while validating log options.
4958     - Fix backslash-escaping on tor.sh.in and torctl.in.
4960   o Features:
4961     - Implement weekly/monthly/daily accounting: now you specify your
4962       hibernation properties by
4963       AccountingMax N bytes|KB|MB|GB|TB
4964       AccountingStart day|week|month [day] HH:MM
4965         Defaults to "month 1 0:00".
4966     - Let bandwidth and interval config options be specified as 5 bytes,
4967       kb, kilobytes, etc; and as seconds, minutes, hours, days, weeks.
4968     - kill -USR2 now moves all logs to loglevel debug (kill -HUP to
4969       get back to normal.)
4970     - If your requested entry or exit node has advertised bandwidth 0,
4971       pick it anyway.
4972     - Be more greedy about filling up relay cells -- we try reading again
4973       once we've processed the stuff we read, in case enough has arrived
4974       to fill the last cell completely.
4975     - Apply NT service patch from Osamu Fujino. Still needs more work.
4978 Changes in version 0.0.9pre6 - 2004-11-15
4979   o Bugfixes on 0.0.8.1:
4980     - Fix assert failure on malformed socks4a requests.
4981     - Use identity comparison, not nickname comparison, to choose which
4982       half of circuit-ID-space each side gets to use. This is needed
4983       because sometimes we think of a router as a nickname, and sometimes
4984       as a hex ID, and we can't predict what the other side will do.
4985     - Catch and ignore SIGXFSZ signals when log files exceed 2GB; our
4986       write() call will fail and we handle it there.
4987     - Add a FAST_SMARTLIST define to optionally inline smartlist_get
4988       and smartlist_len, which are two major profiling offenders.
4990   o Bugfixes on 0.0.9pre5:
4991     - Fix a bug in read_all that was corrupting config files on windows.
4992     - When we're raising the max number of open file descriptors to
4993       'unlimited', don't log that we just raised it to '-1'.
4994     - Include event code with events, as required by control-spec.txt.
4995     - Don't give a fingerprint when clients do --list-fingerprint:
4996       it's misleading, because it will never be the same again.
4997     - Stop using strlcpy in tor_strndup, since it was slowing us
4998       down a lot.
4999     - Remove warn on startup about missing cached-directory file.
5000     - Make kill -USR1 work again.
5001     - Hibernate if we start tor during the "wait for wakeup-time" phase
5002       of an accounting interval. Log our hibernation plans better.
5003     - Authoritative dirservers now also cache their directory, so they
5004       have it on start-up.
5006   o Features:
5007     - Fetch running-routers; cache running-routers; compress
5008       running-routers; serve compressed running-routers.z
5009     - Add NSI installer script contributed by J Doe.
5010     - Commit VC6 and VC7 workspace/project files.
5011     - Commit a tor.spec for making RPM files, with help from jbash.
5012     - Add contrib/torctl.in contributed by Glenn Fink.
5013     - Implement the control-spec's SAVECONF command, to write your
5014       configuration to torrc.
5015     - Get cookie authentication for the controller closer to working.
5016     - Include control-spec.txt in the tarball.
5017     - When set_conf changes our server descriptor, upload a new copy.
5018       But don't upload it too often if there are frequent changes.
5019     - Document authentication config in man page, and document signals
5020       we catch.
5021     - Clean up confusing parts of man page and torrc.sample.
5022     - Make expand_filename handle ~ and ~username.
5023     - Use autoconf to enable largefile support where necessary. Use
5024       ftello where available, since ftell can fail at 2GB.
5025     - Distinguish between TOR_TLS_CLOSE and TOR_TLS_ERROR, so we can
5026       log more informatively.
5027     - Give a slightly more useful output for "tor -h".
5028     - Refuse application socks connections to port 0.
5029     - Check clock skew for verified servers, but allow unverified
5030       servers and clients to have any clock skew.
5031     - Break DirFetchPostPeriod into:
5032       - DirFetchPeriod for fetching full directory,
5033       - StatusFetchPeriod for fetching running-routers,
5034       - DirPostPeriod for posting server descriptor,
5035       - RendPostPeriod for posting hidden service descriptors.
5036     - Make sure the hidden service descriptors are at a random offset
5037       from each other, to hinder linkability.
5040 Changes in version 0.0.9pre5 - 2004-11-09
5041   o Bugfixes on 0.0.9pre4:
5042     - Fix a seg fault in unit tests (doesn't affect main program).
5043     - Fix an assert bug where a hidden service provider would fail if
5044       the first hop of his rendezvous circuit was down.
5045     - Hidden service operators now correctly handle version 1 style
5046       INTRODUCE1 cells (nobody generates them still, so not a critical
5047       bug).
5048     - If do_hup fails, actually notice.
5049     - Handle more errnos from accept() without closing the listener.
5050       Some OpenBSD machines were closing their listeners because
5051       they ran out of file descriptors.
5052     - Send resolve cells to exit routers that are running a new
5053       enough version of the resolve code to work right.
5054     - Better handling of winsock includes on non-MSV win32 compilers.
5055     - Some people had wrapped their tor client/server in a script
5056       that would restart it whenever it died. This did not play well
5057       with our "shut down if your version is obsolete" code. Now people
5058       don't fetch a new directory if their local cached version is
5059       recent enough.
5060     - Make our autogen.sh work on ksh as well as bash.
5062   o Major Features:
5063     - Hibernation: New config option "AccountingMaxKB" lets you
5064       set how many KBytes per month you want to allow your server to
5065       consume. Rather than spreading those bytes out evenly over the
5066       month, we instead hibernate for some of the month and pop up
5067       at a deterministic time, work until the bytes are consumed, then
5068       hibernate again. Config option "MonthlyAccountingStart" lets you
5069       specify which day of the month your billing cycle starts on.
5070     - Control interface: a separate program can now talk to your
5071       client/server over a socket, and get/set config options, receive
5072       notifications of circuits and streams starting/finishing/dying,
5073       bandwidth used, etc. The next step is to get some GUIs working.
5074       Let us know if you want to help out. See doc/control-spec.txt .
5075     - Ship a contrib/tor-control.py as an example script to interact
5076       with the control port.
5077     - "tor --hash-password zzyxz" will output a salted password for
5078       use in authenticating to the control interface.
5079     - New log format in config:
5080       "Log minsev[-maxsev] stdout|stderr|syslog" or
5081       "Log minsev[-maxsev] file /var/foo"
5083   o Minor Features:
5084     - DirPolicy config option, to let people reject incoming addresses
5085       from their dirserver.
5086     - "tor --list-fingerprint" will list your identity key fingerprint
5087       and then exit.
5088     - Add "pass" target for RedirectExit, to make it easier to break
5089       out of a sequence of RedirectExit rules.
5090     - Clients now generate a TLS cert too, in preparation for having
5091       them act more like real nodes.
5092     - Ship src/win32/ in the tarball, so people can use it to build.
5093     - Make old win32 fall back to CWD if SHGetSpecialFolderLocation
5094       is broken.
5095     - New "router-status" line in directory, to better bind each verified
5096       nickname to its identity key.
5097     - Deprecate unofficial config option abbreviations, and abbreviations
5098       not on the command line.
5099     - Add a pure-C tor-resolve implementation.
5100     - Use getrlimit and friends to ensure we can reach MaxConn (currently
5101       1024) file descriptors.
5103   o Code security improvements, inspired by Ilja:
5104     - Replace sprintf with snprintf. (I think they were all safe, but
5105       hey.)
5106     - Replace strcpy/strncpy with strlcpy in more places.
5107     - Avoid strcat; use snprintf or strlcat instead.
5108     - snprintf wrapper with consistent (though not C99) overflow behavior.
5111 Changes in version 0.0.9pre4 - 2004-10-17
5112   o Bugfixes on 0.0.9pre3:
5113     - If the server doesn't specify an exit policy, use the real default
5114       exit policy, not reject *:*.
5115     - Ignore fascistfirewall when uploading/downloading hidden service
5116       descriptors, since we go through Tor for those; and when using
5117       an HttpProxy, since we assume it can reach them all.
5118     - When looking for an authoritative dirserver, use only the ones
5119       configured at boot. Don't bother looking in the directory.
5120     - The rest of the fix for get_default_conf_file() on older win32.
5121     - Make 'Routerfile' config option obsolete.
5123   o Features:
5124     - New 'MyFamily nick1,...' config option for a server to
5125       specify other servers that shouldn't be used in the same circuit
5126       with it. Only believed if nick1 also specifies us.
5127     - New 'NodeFamily nick1,nick2,...' config option for a client to
5128       specify nodes that it doesn't want to use in the same circuit.
5129     - New 'Redirectexit pattern address:port' config option for a
5130       server to redirect exit connections, e.g. to a local squid.
5133 Changes in version 0.0.9pre3 - 2004-10-13
5134   o Bugfixes on 0.0.8.1:
5135     - Better torrc example lines for dirbindaddress and orbindaddress.
5136     - Improved bounds checking on parsed ints (e.g. config options and
5137       the ones we find in directories.)
5138     - Better handling of size_t vs int, so we're more robust on 64
5139       bit platforms.
5140     - Fix the rest of the bug where a newly started OR would appear
5141       as unverified even after we've added his fingerprint and hupped
5142       the dirserver.
5143     - Fix a bug from 0.0.7: when read() failed on a stream, we would
5144       close it without sending back an end. So 'connection refused'
5145       would simply be ignored and the user would get no response.
5147   o Bugfixes on 0.0.9pre2:
5148     - Serving the cached-on-disk directory to people is bad. We now
5149       provide no directory until we've fetched a fresh one.
5150     - Workaround for bug on windows where cached-directories get crlf
5151       corruption.
5152     - Make get_default_conf_file() work on older windows too.
5153     - If we write a *:* exit policy line in the descriptor, don't write
5154       any more exit policy lines.
5156   o Features:
5157     - Use only 0.0.9pre1 and later servers for resolve cells.
5158     - Make the dirservers file obsolete.
5159       - Include a dir-signing-key token in directories to tell the
5160         parsing entity which key is being used to sign.
5161       - Remove the built-in bulky default dirservers string.
5162       - New config option "Dirserver %s:%d [fingerprint]", which can be
5163         repeated as many times as needed. If no dirservers specified,
5164         default to moria1,moria2,tor26.
5165     - Make moria2 advertise a dirport of 80, so people behind firewalls
5166       will be able to get a directory.
5167     - Http proxy support
5168       - Dirservers translate requests for http://%s:%d/x to /x
5169       - You can specify "HttpProxy %s[:%d]" and all dir fetches will
5170         be routed through this host.
5171       - Clients ask for /tor/x rather than /x for new enough dirservers.
5172         This way we can one day coexist peacefully with apache.
5173       - Clients specify a "Host: %s%d" http header, to be compatible
5174         with more proxies, and so running squid on an exit node can work.
5177 Changes in version 0.0.8.1 - 2004-10-13
5178   o Bugfixes:
5179     - Fix a seg fault that can be triggered remotely for Tor
5180       clients/servers with an open dirport.
5181     - Fix a rare assert trigger, where routerinfos for entries in
5182       our cpath would expire while we're building the path.
5183     - Fix a bug in OutboundBindAddress so it (hopefully) works.
5184     - Fix a rare seg fault for people running hidden services on
5185       intermittent connections.
5186     - Fix a bug in parsing opt keywords with objects.
5187     - Fix a stale pointer assert bug when a stream detaches and
5188       reattaches.
5189     - Fix a string format vulnerability (probably not exploitable)
5190       in reporting stats locally.
5191     - Fix an assert trigger: sometimes launching circuits can fail
5192       immediately, e.g. because too many circuits have failed recently.
5193     - Fix a compile warning on 64 bit platforms.
5196 Changes in version 0.0.9pre2 - 2004-10-03
5197   o Bugfixes:
5198     - Make fetching a cached directory work for 64-bit platforms too.
5199     - Make zlib.h a required header, not an optional header.
5202 Changes in version 0.0.9pre1 - 2004-10-01
5203   o Bugfixes:
5204     - Stop using separate defaults for no-config-file and
5205       empty-config-file. Now you have to explicitly turn off SocksPort,
5206       if you don't want it open.
5207     - Fix a bug in OutboundBindAddress so it (hopefully) works.
5208     - Improve man page to mention more of the 0.0.8 features.
5209     - Fix a rare seg fault for people running hidden services on
5210       intermittent connections.
5211     - Change our file IO stuff (especially wrt OpenSSL) so win32 is
5212       happier.
5213     - Fix more dns related bugs: send back resolve_failed and end cells
5214       more reliably when the resolve fails, rather than closing the
5215       circuit and then trying to send the cell. Also attach dummy resolve
5216       connections to a circuit *before* calling dns_resolve(), to fix
5217       a bug where cached answers would never be sent in RESOLVED cells.
5218     - When we run out of disk space, or other log writing error, don't
5219       crash. Just stop logging to that log and continue.
5220     - We were starting to daemonize before we opened our logs, so if
5221       there were any problems opening logs, we would complain to stderr,
5222       which wouldn't work, and then mysteriously exit.
5223     - Fix a rare bug where sometimes a verified OR would connect to us
5224       before he'd uploaded his descriptor, which would cause us to
5225       assign conn->nickname as though he's unverified. Now we look through
5226       the fingerprint list to see if he's there.
5227     - Fix a rare assert trigger, where routerinfos for entries in
5228       our cpath would expire while we're building the path.
5230   o Features:
5231     - Clients can ask dirservers for /dir.z to get a compressed version
5232       of the directory. Only works for servers running 0.0.9, of course.
5233     - Make clients cache directories and use them to seed their router
5234       lists at startup. This means clients have a datadir again.
5235     - Configuration infrastructure support for warning on obsolete
5236       options.
5237     - Respond to content-encoding headers by trying to uncompress as
5238       appropriate.
5239     - Reply with a deflated directory when a client asks for "dir.z".
5240       We could use allow-encodings instead, but allow-encodings isn't
5241       specified in HTTP 1.0.
5242     - Raise the max dns workers from 50 to 100.
5243     - Discourage people from setting their dirfetchpostperiod more often
5244       than once per minute.
5245     - Protect dirservers from overzealous descriptor uploading -- wait
5246       10 seconds after directory gets dirty, before regenerating.
5249 Changes in version 0.0.8 - 2004-08-25
5250   o Port it to SunOS 5.9 / Athena
5253 Changes in version 0.0.8rc2 - 2004-08-20
5254   o Make it compile on cygwin again.
5255   o When picking unverified routers, skip those with low uptime and/or
5256     low bandwidth, depending on what properties you care about.
5259 Changes in version 0.0.8rc1 - 2004-08-18
5260   o Changes from 0.0.7.3:
5261     - Bugfixes:
5262       - Fix assert triggers: if the other side returns an address 0.0.0.0,
5263         don't put it into the client dns cache.
5264       - If a begin failed due to exit policy, but we believe the IP address
5265         should have been allowed, switch that router to exitpolicy reject *:*
5266         until we get our next directory.
5267     - Features:
5268       - Clients choose nodes proportional to advertised bandwidth.
5269       - Avoid using nodes with low uptime as introduction points.
5270       - Handle servers with dynamic IP addresses: don't replace
5271         options->Address with the resolved one at startup, and
5272         detect our address right before we make a routerinfo each time.
5273       - 'FascistFirewall' option to pick dirservers and ORs on specific
5274         ports; plus 'FirewallPorts' config option to tell FascistFirewall
5275         which ports are open. (Defaults to 80,443)
5276       - Be more aggressive about trying to make circuits when the network
5277         has changed (e.g. when you unsuspend your laptop).
5278       - Check for time skew on http headers; report date in response to
5279         "GET /".
5280       - If the entrynode config line has only one node, don't pick it as
5281         an exitnode.
5282       - Add strict{entry|exit}nodes config options. If set to 1, then
5283         we refuse to build circuits that don't include the specified entry
5284         or exit nodes.
5285       - OutboundBindAddress config option, to bind to a specific
5286         IP address for outgoing connect()s.
5287       - End truncated log entries (e.g. directories) with "[truncated]".
5289   o Patches to 0.0.8preX:
5290     - Bugfixes:
5291       - Patches to compile and run on win32 again (maybe)?
5292       - Fix crash when looking for ~/.torrc with no $HOME set.
5293       - Fix a race bug in the unit tests.
5294       - Handle verified/unverified name collisions better when new
5295         routerinfo's arrive in a directory.
5296       - Sometimes routers were getting entered into the stats before
5297         we'd assigned their identity_digest. Oops.
5298       - Only pick and establish intro points after we've gotten a
5299         directory.
5300     - Features:
5301       - AllowUnverifiedNodes config option to let circuits choose no-name
5302         routers in entry,middle,exit,introduction,rendezvous positions.
5303         Allow middle and rendezvous positions by default.
5304       - Add a man page for tor-resolve.
5307 Changes in version 0.0.7.3 - 2004-08-12
5308   o Stop dnsworkers from triggering an assert failure when you
5309     ask them to resolve the host "".
5312 Changes in version 0.0.8pre3 - 2004-08-09
5313   o Changes from 0.0.7.2:
5314     - Allow multiple ORs with same nickname in routerlist -- now when
5315       people give us one identity key for a nickname, then later
5316       another, we don't constantly complain until the first expires.
5317     - Remember used bandwidth (both in and out), and publish 15-minute
5318       snapshots for the past day into our descriptor.
5319     - You can now fetch $DIRURL/running-routers to get just the
5320       running-routers line, not the whole descriptor list. (But
5321       clients don't use this yet.)
5322     - When people mistakenly use Tor as an http proxy, point them
5323       at the tor-doc.html rather than the INSTALL.
5324     - Remove our mostly unused -- and broken -- hex_encode()
5325       function. Use base16_encode() instead. (Thanks to Timo Lindfors
5326       for pointing out this bug.)
5327     - Rotate onion keys every 12 hours, not every 2 hours, so we have
5328       fewer problems with people using the wrong key.
5329     - Change the default exit policy to reject the default edonkey,
5330       kazaa, gnutella ports.
5331     - Add replace_file() to util.[ch] to handle win32's rename().
5333   o Changes from 0.0.8preX:
5334     - Fix two bugs in saving onion keys to disk when rotating, so
5335       hopefully we'll get fewer people using old onion keys.
5336     - Fix an assert error that was making SocksPolicy not work.
5337     - Be willing to expire routers that have an open dirport -- it's
5338       just the authoritative dirservers we want to not forget.
5339     - Reject tor-resolve requests for .onion addresses early, so we
5340       don't build a whole rendezvous circuit and then fail.
5341     - When you're warning a server that he's unverified, don't cry
5342       wolf unpredictably.
5343     - Fix a race condition: don't try to extend onto a connection
5344       that's still handshaking.
5345     - For servers in clique mode, require the conn to be open before
5346       you'll choose it for your path.
5347     - Fix some cosmetic bugs about duplicate mark-for-close, lack of
5348       end relay cell, etc.
5349     - Measure bandwidth capacity over the last 24 hours, not just 12
5350     - Bugfix: authoritative dirservers were making and signing a new
5351       directory for each client, rather than reusing the cached one.
5354 Changes in version 0.0.8pre2 - 2004-08-04
5355   o Changes from 0.0.7.2:
5356     - Security fixes:
5357       - Check directory signature _before_ you decide whether you're
5358         you're running an obsolete version and should exit.
5359       - Check directory signature _before_ you parse the running-routers
5360         list to decide who's running or verified.
5361     - Bugfixes and features:
5362       - Check return value of fclose while writing to disk, so we don't
5363         end up with broken files when servers run out of disk space.
5364       - Log a warning if the user uses an unsafe socks variant, so people
5365         are more likely to learn about privoxy or socat.
5366       - Dirservers now include RFC1123-style dates in the HTTP headers,
5367         which one day we will use to better detect clock skew.
5369   o Changes from 0.0.8pre1:
5370     - Make it compile without warnings again on win32.
5371     - Log a warning if you're running an unverified server, to let you
5372       know you might want to get it verified.
5373     - Only pick a default nickname if you plan to be a server.
5376 Changes in version 0.0.8pre1 - 2004-07-23
5377   o Bugfixes:
5378     - Made our unit tests compile again on OpenBSD 3.5, and tor
5379       itself compile again on OpenBSD on a sparc64.
5380     - We were neglecting milliseconds when logging on win32, so
5381       everything appeared to happen at the beginning of each second.
5383   o Protocol changes:
5384     - 'Extend' relay cell payloads now include the digest of the
5385       intended next hop's identity key. Now we can verify that we're
5386       extending to the right router, and also extend to routers we
5387       hadn't heard of before.
5389   o Features:
5390     - Tor nodes can now act as relays (with an advertised ORPort)
5391       without being manually verified by the dirserver operators.
5392       - Uploaded descriptors of unverified routers are now accepted
5393         by the dirservers, and included in the directory.
5394       - Verified routers are listed by nickname in the running-routers
5395         list; unverified routers are listed as "$<fingerprint>".
5396       - We now use hash-of-identity-key in most places rather than
5397         nickname or addr:port, for improved security/flexibility.
5398       - To avoid Sybil attacks, paths still use only verified servers.
5399         But now we have a chance to play around with hybrid approaches.
5400       - Nodes track bandwidth usage to estimate capacity (not used yet).
5401       - ClientOnly option for nodes that never want to become servers.
5402     - Directory caching.
5403       - "AuthoritativeDir 1" option for the official dirservers.
5404       - Now other nodes (clients and servers) will cache the latest
5405         directory they've pulled down.
5406       - They can enable their DirPort to serve it to others.
5407       - Clients will pull down a directory from any node with an open
5408         DirPort, and check the signature/timestamp correctly.
5409       - Authoritative dirservers now fetch directories from other
5410         authdirservers, to stay better synced.
5411       - Running-routers list tells who's down also, along with noting
5412         if they're verified (listed by nickname) or unverified (listed
5413         by hash-of-key).
5414       - Allow dirservers to serve running-router list separately.
5415         This isn't used yet.
5416     - ORs connect-on-demand to other ORs
5417       - If you get an extend cell to an OR you're not connected to,
5418         connect, handshake, and forward the create cell.
5419       - The authoritative dirservers stay connected to everybody,
5420         and everybody stays connected to 0.0.7 servers, but otherwise
5421         clients/servers expire unused connections after 5 minutes.
5422     - When servers get a sigint, they delay 30 seconds (refusing new
5423       connections) then exit. A second sigint causes immediate exit.
5424     - File and name management:
5425       - Look for .torrc if no CONFDIR "torrc" is found.
5426       - If no datadir is defined, then choose, make, and secure ~/.tor
5427         as datadir.
5428       - If torrc not found, exitpolicy reject *:*.
5429       - Expands ~/ in filenames to $HOME/ (but doesn't yet expand ~arma).
5430       - If no nickname is defined, derive default from hostname.
5431       - Rename secret key files, e.g. identity.key -> secret_id_key,
5432         to discourage people from mailing their identity key to tor-ops.
5433     - Refuse to build a circuit before the directory has arrived --
5434       it won't work anyway, since you won't know the right onion keys
5435       to use.
5436     - Try other dirservers immediately if the one you try is down. This
5437       should tolerate down dirservers better now.
5438     - Parse tor version numbers so we can do an is-newer-than check
5439       rather than an is-in-the-list check.
5440     - New socks command 'resolve', to let us shim gethostbyname()
5441       locally.
5442       - A 'tor_resolve' script to access the socks resolve functionality.
5443       - A new socks-extensions.txt doc file to describe our
5444         interpretation and extensions to the socks protocols.
5445     - Add a ContactInfo option, which gets published in descriptor.
5446     - Publish OR uptime in descriptor (and thus in directory) too.
5447     - Write tor version at the top of each log file
5448     - New docs in the tarball:
5449       - tor-doc.html.
5450       - Document that you should proxy your SSL traffic too.
5453 Changes in version 0.0.7.2 - 2004-07-07
5454   o A better fix for the 0.0.0.0 problem, that will hopefully
5455     eliminate the remaining related assertion failures.
5458 Changes in version 0.0.7.1 - 2004-07-04
5459   o When an address resolves to 0.0.0.0, treat it as a failed resolve,
5460     since internally we use 0.0.0.0 to signify "not yet resolved".
5463 Changes in version 0.0.7 - 2004-06-07
5464   o Updated the man page to reflect the new features.
5467 Changes in version 0.0.7rc2 - 2004-06-06
5468   o Changes from 0.0.7rc1:
5469     - Make it build on Win32 again.
5470   o Changes from 0.0.6.2:
5471     - Rotate dnsworkers and cpuworkers on SIGHUP, so they get new config
5472       settings too.
5475 Changes in version 0.0.7rc1 - 2004-06-02
5476   o Bugfixes:
5477     - On sighup, we were adding another log without removing the first
5478       one. So log messages would get duplicated n times for n sighups.
5479     - Several cases of using a connection after we'd freed it. The
5480       problem was that connections that are pending resolve are in both
5481       the pending_resolve tree, and also the circuit's resolving_streams
5482       list. When you want to remove one, you must remove it from both.
5483     - Fix a double-mark-for-close where an end cell arrived for a
5484       resolving stream, and then the resolve failed.
5485     - Check directory signatures based on name of signer, not on whom
5486       we got the directory from. This will let us cache directories more
5487       easily.
5488   o Features:
5489     - Crank up some of our constants to handle more users.
5492 Changes in version 0.0.7pre1 - 2004-06-02
5493   o Fixes for crashes and other obnoxious bugs:
5494     - Fix an epipe bug: sometimes when directory connections failed
5495       to connect, we would give them a chance to flush before closing
5496       them.
5497     - When we detached from a circuit because of resolvefailed, we
5498       would immediately try the same circuit twice more, and then
5499       give up on the resolve thinking we'd tried three different
5500       exit nodes.
5501     - Limit the number of intro circuits we'll attempt to build for a
5502       hidden service per 15-minute period.
5503     - Check recommended-software string *early*, before actually parsing
5504       the directory. Thus we can detect an obsolete version and exit,
5505       even if the new directory format doesn't parse.
5506   o Fixes for security bugs:
5507     - Remember which nodes are dirservers when you startup, and if a
5508       random OR enables his dirport, don't automatically assume he's
5509       a trusted dirserver.
5510   o Other bugfixes:
5511     - Directory connections were asking the wrong poll socket to
5512       start writing, and not asking themselves to start writing.
5513     - When we detached from a circuit because we sent a begin but
5514       didn't get a connected, we would use it again the first time;
5515       but after that we would correctly switch to a different one.
5516     - Stop warning when the first onion decrypt attempt fails; they
5517       will sometimes legitimately fail now that we rotate keys.
5518     - Override unaligned-access-ok check when $host_cpu is ia64 or
5519       arm. Apparently they allow it but the kernel whines.
5520     - Dirservers try to reconnect periodically too, in case connections
5521       have failed.
5522     - Fix some memory leaks in directory servers.
5523     - Allow backslash in Win32 filenames.
5524     - Made Tor build complain-free on FreeBSD, hopefully without
5525       breaking other BSD builds. We'll see.
5526   o Features:
5527     - Doxygen markup on all functions and global variables.
5528     - Make directory functions update routerlist, not replace it. So
5529       now directory disagreements are not so critical a problem.
5530     - Remove the upper limit on number of descriptors in a dirserver's
5531       directory (not that we were anywhere close).
5532     - Allow multiple logfiles at different severity ranges.
5533     - Allow *BindAddress to specify ":port" rather than setting *Port
5534       separately. Allow multiple instances of each BindAddress config
5535       option, so you can bind to multiple interfaces if you want.
5536     - Allow multiple exit policy lines, which are processed in order.
5537       Now we don't need that huge line with all the commas in it.
5538     - Enable accept/reject policies on SOCKS connections, so you can bind
5539       to 0.0.0.0 but still control who can use your OP.
5542 Changes in version 0.0.6.2 - 2004-05-16
5543   o Our integrity-checking digest was checking only the most recent cell,
5544     not the previous cells like we'd thought.
5545     Thanks to Stefan Mark for finding the flaw!
5548 Changes in version 0.0.6.1 - 2004-05-06
5549   o Fix two bugs in our AES counter-mode implementation (this affected
5550     onion-level stream encryption, but not TLS-level). It turns
5551     out we were doing something much more akin to a 16-character
5552     polyalphabetic cipher. Oops.
5553     Thanks to Stefan Mark for finding the flaw!
5554   o Retire moria3 as a directory server, and add tor26 as a directory
5555     server.
5558 Changes in version 0.0.6 - 2004-05-02
5559   [version bump only]
5562 Changes in version 0.0.6rc4 - 2004-05-01
5563   o Update the built-in dirservers list to use the new directory format
5564   o Fix a rare seg fault: if a node offering a hidden service attempts
5565     to build a circuit to Alice's rendezvous point and fails before it
5566     reaches the last hop, it retries with a different circuit, but
5567     then dies.
5568   o Handle windows socket errors correctly.
5571 Changes in version 0.0.6rc3 - 2004-04-28
5572   o Don't expire non-general excess circuits (if we had enough
5573     circuits open, we were expiring rendezvous circuits -- even
5574     when they had a stream attached. oops.)
5575   o Fetch randomness from /dev/urandom better (not via fopen/fread)
5576   o Better debugging for tls errors
5577   o Some versions of openssl have an SSL_pending function that erroneously
5578     returns bytes when there is a non-application record pending.
5579   o Set Content-Type on the directory and hidserv descriptor.
5580   o Remove IVs from cipher code, since AES-ctr has none.
5581   o Win32 fixes. Tor now compiles on win32 with no warnings/errors.
5582     o We were using an array of length zero in a few places.
5583     o win32's gethostbyname can't resolve an IP to an IP.
5584     o win32's close can't close a socket.
5587 Changes in version 0.0.6rc2 - 2004-04-26
5588   o Fix a bug where we were closing tls connections intermittently.
5589     It turns out openssl keeps its errors around -- so if an error
5590     happens, and you don't ask about it, and then another openssl
5591     operation happens and succeeds, and you ask if there was an error,
5592     it tells you about the first error. Fun fun.
5593   o Fix a bug that's been lurking since 27 may 03 (!)
5594     When passing back a destroy cell, we would use the wrong circ id.
5595     'Mostly harmless', but still worth fixing.
5596   o Since we don't support truncateds much, don't bother sending them;
5597     just close the circ.
5598   o check for <machine/limits.h> so we build on NetBSD again (I hope).
5599   o don't crash if a conn that sent a begin has suddenly lost its circuit
5600     (this was quite rare).
5603 Changes in version 0.0.6rc1 - 2004-04-25
5604   o We now rotate link (tls context) keys and onion keys.
5605   o CREATE cells now include oaep padding, so you can tell
5606     if you decrypted them correctly.
5607   o Add bandwidthburst to server descriptor.
5608   o Directories now say which dirserver signed them.
5609   o Use a tor_assert macro that logs failed assertions too.
5612 Changes in version 0.0.6pre5 - 2004-04-18
5613   o changes from 0.0.6pre4:
5614     - make tor build on broken freebsd 5.2 installs
5615     - fix a failed assert when you try an intro point, get a nack, and try
5616       a second one and it works.
5617     - when alice uses a port that the hidden service doesn't accept,
5618       it now sends back an end cell (denied by exit policy). otherwise
5619       alice would just have to wait to time out.
5620     - fix another rare bug: when we had tried all the intro
5621       points for a hidden service, we fetched the descriptor
5622       again, but we left our introcirc thinking it had already
5623       sent an intro, so it kept waiting for a response...
5624     - bugfix: when you sleep your hidden-service laptop, as soon
5625       as it wakes up it tries to upload a service descriptor, but
5626       socketpair fails for some reason (localhost not up yet?).
5627       now we simply give up on that upload, and we'll try again later.
5628       i'd still like to find the bug though.
5629     - if an intro circ waiting for an ack dies before getting one, then
5630       count it as a nack
5631     - we were reusing stale service descriptors and refetching usable
5632       ones. oops.
5635 Changes in version 0.0.6pre4 - 2004-04-14
5636   o changes from 0.0.6pre3:
5637     - when bob fails to connect to the rendezvous point, and his
5638       circ didn't fail because of the rendezvous point itself, then
5639       he retries a couple of times
5640     - we expire introduction and rendezvous circs more thoroughly
5641       (sometimes they were hanging around forever)
5642     - we expire unattached rendezvous streams that have been around
5643       too long (they were sticking around forever).
5644     - fix a measly fencepost error that was crashing everybody with
5645       a strict glibc.
5648 Changes in version 0.0.6pre3 - 2004-04-14
5649   o changes from 0.0.6pre2:
5650     - make hup work again
5651     - fix some memory leaks for dirservers
5652     - allow more skew in rendezvous descriptor timestamps, to help
5653       handle people like blanu who don't know what time it is
5654     - normal circs are 3 hops, but some rend/intro circs are 4, if
5655       the initiator doesn't get to choose the last hop
5656     - send acks for introductions, so alice can know whether to try
5657       again
5658     - bob publishes intro points more correctly
5659   o changes from 0.0.5:
5660     - fix an assert trigger that's been plaguing us since the days
5661       of 0.0.2prexx (thanks weasel!)
5662     - retry stream correctly when we fail to connect because of
5663       exit-policy-reject (should try another) or can't-resolve-address
5664       (also should try another, because dns on random internet servers
5665       is flaky).
5666     - when we hup a dirserver and we've *removed* a server from the
5667       approved-routers list, now we remove that server from the
5668       in-memory directories too
5671 Changes in version 0.0.6pre2 - 2004-04-08
5672   o We fixed our base32 implementation. Now it works on all architectures.
5675 Changes in version 0.0.6pre1 - 2004-04-08
5676   o Features:
5677     - Hidden services and rendezvous points are implemented. Go to
5678       http://6sxoyfb3h2nvok2d.onion/ for an index of currently available
5679       hidden services. (This only works via a socks4a proxy such as
5680       Privoxy, and currently it's quite slow.)
5683 Changes in version 0.0.5 - 2004-03-30
5684   [version bump only]
5687 Changes in version 0.0.5rc3 - 2004-03-29
5688   o Install torrc as torrc.sample -- we no longer clobber your
5689     torrc. (Woo!)
5690   o Re-enable recommendedversion checking (we broke it in rc2, oops)
5691   o Add in a 'notice' log level for things the operator should hear
5692     but that aren't warnings
5695 Changes in version 0.0.5rc2 - 2004-03-29
5696   o Hold socks connection open until reply is flushed (if possible)
5697   o Make exit nodes resolve IPs to IPs immediately, rather than asking
5698     the dns farm to do it.
5699   o Fix c99 aliasing warnings in rephist.c
5700   o Don't include server descriptors that are older than 24 hours in the
5701     directory.
5702   o Give socks 'reject' replies their whole 15s to attempt to flush,
5703     rather than seeing the 60s timeout and assuming the flush had failed.
5704   o Clean automake droppings from the cvs repository
5707 Changes in version 0.0.5rc1 - 2004-03-28
5708   o Fix mangled-state bug in directory fetching (was causing sigpipes).
5709   o Only build circuits after we've fetched the directory: clients were
5710     using only the directory servers before they'd fetched a directory.
5711     This also means longer startup time; so it goes.
5712   o Fix an assert trigger where an OP would fail to handshake, and we'd
5713     expect it to have a nickname.
5714   o Work around a tsocks bug: do a socks reject when AP connection dies
5715     early, else tsocks goes into an infinite loop.
5718 Changes in version 0.0.4 - 2004-03-26
5719   o When connecting to a dirserver or OR and the network is down,
5720     we would crash.
5723 Changes in version 0.0.3 - 2004-03-26
5724   o Warn and fail if server chose a nickname with illegal characters
5725   o Port to Solaris and Sparc:
5726     - include missing header fcntl.h
5727     - have autoconf find -lsocket -lnsl automatically
5728     - deal with hardware word alignment
5729     - make uname() work (solaris has a different return convention)
5730     - switch from using signal() to sigaction()
5731   o Preliminary work on reputation system:
5732     - Keep statistics on success/fail of connect attempts; they're published
5733       by kill -USR1 currently.
5734     - Add a RunTesting option to try to learn link state by creating test
5735       circuits, even when SocksPort is off.
5736     - Remove unused open circuits when there are too many.
5739 Changes in version 0.0.2 - 2004-03-19
5740     - Include strlcpy and strlcat for safer string ops
5741     - define INADDR_NONE so we compile (but still not run) on solaris
5744 Changes in version 0.0.2pre27 - 2004-03-14
5745   o Bugfixes:
5746     - Allow internal tor networks (we were rejecting internal IPs,
5747       now we allow them if they're set explicitly).
5748     - And fix a few endian issues.
5751 Changes in version 0.0.2pre26 - 2004-03-14
5752   o New features:
5753     - If a stream times out after 15s without a connected cell, don't
5754       try that circuit again: try a new one.
5755     - Retry streams at most 4 times. Then give up.
5756     - When a dirserver gets a descriptor from an unknown router, it
5757       logs its fingerprint (so the dirserver operator can choose to
5758       accept it even without mail from the server operator).
5759     - Inform unapproved servers when we reject their descriptors.
5760     - Make tor build on Windows again. It works as a client, who knows
5761       about as a server.
5762     - Clearer instructions in the torrc for how to set up a server.
5763     - Be more efficient about reading fd's when our global token bucket
5764       (used for rate limiting) becomes empty.
5765   o Bugfixes:
5766     - Stop asserting that computers always go forward in time. It's
5767       simply not true.
5768     - When we sent a cell (e.g. destroy) and then marked an OR connection
5769       expired, we might close it before finishing a flush if the other
5770       side isn't reading right then.
5771     - Don't allow dirservers to start if they haven't defined
5772       RecommendedVersions
5773     - We were caching transient dns failures. Oops.
5774     - Prevent servers from publishing an internal IP as their address.
5775     - Address a strcat vulnerability in circuit.c
5778 Changes in version 0.0.2pre25 - 2004-03-04
5779   o New features:
5780     - Put the OR's IP in its router descriptor, not its fqdn. That way
5781       we'll stop being stalled by gethostbyname for nodes with flaky dns,
5782       e.g. poblano.
5783   o Bugfixes:
5784     - If the user typed in an address that didn't resolve, the server
5785       crashed.
5788 Changes in version 0.0.2pre24 - 2004-03-03
5789   o Bugfixes:
5790     - Fix an assertion failure in dns.c, where we were trying to dequeue
5791       a pending dns resolve even if it wasn't pending
5792     - Fix a spurious socks5 warning about still trying to write after the
5793       connection is finished.
5794     - Hold certain marked_for_close connections open until they're finished
5795       flushing, rather than losing bytes by closing them too early.
5796     - Correctly report the reason for ending a stream
5797     - Remove some duplicate calls to connection_mark_for_close
5798     - Put switch_id and start_daemon earlier in the boot sequence, so it
5799       will actually try to chdir() to options.DataDirectory
5800     - Make 'make test' exit(1) if a test fails; fix some unit tests
5801     - Make tor fail when you use a config option it doesn't know about,
5802       rather than warn and continue.
5803     - Make --version work
5804     - Bugfixes on the rpm spec file and tor.sh, so it's more up to date
5807 Changes in version 0.0.2pre23 - 2004-02-29
5808   o New features:
5809     - Print a statement when the first circ is finished, so the user
5810       knows it's working.
5811     - If a relay cell is unrecognized at the end of the circuit,
5812       send back a destroy. (So attacks to mutate cells are more
5813       clearly thwarted.)
5814     - New config option 'excludenodes' to avoid certain nodes for circuits.
5815     - When it daemonizes, it chdir's to the DataDirectory rather than "/",
5816       so you can collect coredumps there.
5817  o Bugfixes:
5818     - Fix a bug in tls flushing where sometimes data got wedged and
5819       didn't flush until more data got sent. Hopefully this bug was
5820       a big factor in the random delays we were seeing.
5821     - Make 'connected' cells include the resolved IP, so the client
5822       dns cache actually gets populated.
5823     - Disallow changing from ORPort=0 to ORPort>0 on hup.
5824     - When we time-out on a stream and detach from the circuit, send an
5825       end cell down it first.
5826     - Only warn about an unknown router (in exitnodes, entrynodes,
5827       excludenodes) after we've fetched a directory.
5830 Changes in version 0.0.2pre22 - 2004-02-26
5831   o New features:
5832     - Servers publish less revealing uname information in descriptors.
5833     - More memory tracking and assertions, to crash more usefully when
5834       errors happen.
5835     - If the default torrc isn't there, just use some default defaults.
5836       Plus provide an internal dirservers file if they don't have one.
5837     - When the user tries to use Tor as an http proxy, give them an http
5838       501 failure explaining that we're a socks proxy.
5839     - Dump a new router.desc on hup, to help confused people who change
5840       their exit policies and then wonder why router.desc doesn't reflect
5841       it.
5842     - Clean up the generic tor.sh init script that we ship with.
5843   o Bugfixes:
5844     - If the exit stream is pending on the resolve, and a destroy arrives,
5845       then the stream wasn't getting removed from the pending list. I
5846       think this was the one causing recent server crashes.
5847     - Use a more robust poll on OSX 10.3, since their poll is flaky.
5848     - When it couldn't resolve any dirservers, it was useless from then on.
5849       Now it reloads the RouterFile (or default dirservers) if it has no
5850       dirservers.
5851     - Move the 'tor' binary back to /usr/local/bin/ -- it turns out
5852       many users don't even *have* a /usr/local/sbin/.
5855 Changes in version 0.0.2pre21 - 2004-02-18
5856   o New features:
5857     - There's a ChangeLog file that actually reflects the changelog.
5858     - There's a 'torify' wrapper script, with an accompanying
5859       tor-tsocks.conf, that simplifies the process of using tsocks for
5860       tor. It even has a man page.
5861     - The tor binary gets installed to sbin rather than bin now.
5862     - Retry streams where the connected cell hasn't arrived in 15 seconds
5863     - Clean up exit policy handling -- get the default out of the torrc,
5864       so we can update it without forcing each server operator to fix
5865       his/her torrc.
5866     - Allow imaps and pop3s in default exit policy
5867   o Bugfixes:
5868     - Prevent picking middleman nodes as the last node in the circuit
5871 Changes in version 0.0.2pre20 - 2004-01-30
5872   o New features:
5873     - We now have a deb package, and it's in debian unstable. Go to
5874       it, apt-getters. :)
5875     - I've split the TotalBandwidth option into BandwidthRate (how many
5876       bytes per second you want to allow, long-term) and
5877       BandwidthBurst (how many bytes you will allow at once before the cap
5878       kicks in).  This better token bucket approach lets you, say, set
5879       BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
5880       performance while not exceeding your monthly bandwidth quota.
5881     - Push out a tls record's worth of data once you've got it, rather
5882       than waiting until you've read everything waiting to be read. This
5883       may improve performance by pipelining better. We'll see.
5884     - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
5885       from failed circuits (if they haven't been connected yet) and attach
5886       to new ones.
5887     - Expire old streams that haven't managed to connect. Some day we'll
5888       have them reattach to new circuits instead.
5890   o Bugfixes:
5891     - Fix several memory leaks that were causing servers to become bloated
5892       after a while.
5893     - Fix a few very rare assert triggers. A few more remain.
5894     - Setuid to User _before_ complaining about running as root.
5897 Changes in version 0.0.2pre19 - 2004-01-07
5898   o Bugfixes:
5899     - Fix deadlock condition in dns farm. We were telling a child to die by
5900       closing the parent's file descriptor to him. But newer children were
5901       inheriting the open file descriptor from the parent, and since they
5902       weren't closing it, the socket never closed, so the child never read
5903       eof, so he never knew to exit. Similarly, dns workers were holding
5904       open other sockets, leading to all sorts of chaos.
5905     - New cleaner daemon() code for forking and backgrounding.
5906     - If you log to a file, it now prints an entry at the top of the
5907       logfile so you know it's working.
5908     - The onionskin challenge length was 30 bytes longer than necessary.
5909     - Started to patch up the spec so it's not quite so out of date.
5912 Changes in version 0.0.2pre18 - 2004-01-02
5913   o Bugfixes:
5914     - Fix endian issues with the 'integrity' field in the relay header.
5915     - Fix a potential bug where connections in state
5916       AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
5919 Changes in version 0.0.2pre17 - 2003-12-30
5920   o Bugfixes:
5921     - Made --debuglogfile (or any second log file, actually) work.
5922     - Resolved an edge case in get_unique_circ_id_by_conn where a smart
5923       adversary could force us into an infinite loop.
5925   o Features:
5926     - Each onionskin handshake now includes a hash of the computed key,
5927       to prove the server's identity and help perfect forward secrecy.
5928     - Changed cell size from 256 to 512 bytes (working toward compatibility
5929       with MorphMix).
5930     - Changed cell length to 2 bytes, and moved it to the relay header.
5931     - Implemented end-to-end integrity checking for the payloads of
5932       relay cells.
5933     - Separated streamid from 'recognized' (otherwise circuits will get
5934       messed up when we try to have streams exit from the middle). We
5935       use the integrity-checking to confirm that a cell is addressed to
5936       this hop.
5937     - Randomize the initial circid and streamid values, so an adversary who
5938       breaks into a node can't learn how many circuits or streams have
5939       been made so far.
5942 Changes in version 0.0.2pre16 - 2003-12-14
5943   o Bugfixes:
5944     - Fixed a bug that made HUP trigger an assert
5945     - Fixed a bug where a circuit that immediately failed wasn't being
5946       counted as a failed circuit in counting retries.
5948   o Features:
5949     - Now we close the circuit when we get a truncated cell: otherwise we're
5950       open to an anonymity attack where a bad node in the path truncates
5951       the circuit and then we open streams at him.
5952     - Add port ranges to exit policies
5953     - Add a conservative default exit policy
5954     - Warn if you're running tor as root
5955     - on HUP, retry OR connections and close/rebind listeners
5956     - options.EntryNodes: try these nodes first when picking the first node
5957     - options.ExitNodes: if your best choices happen to include any of
5958       your preferred exit nodes, you choose among just those preferred
5959       exit nodes.
5960     - options.ExcludedNodes: nodes that are never picked in path building
5963 Changes in version 0.0.2pre15 - 2003-12-03
5964   o Robustness and bugfixes:
5965     - Sometimes clients would cache incorrect DNS resolves, which would
5966       really screw things up.
5967     - An OP that goes offline would slowly leak all its sockets and stop
5968       working.
5969     - A wide variety of bugfixes in exit node selection, exit policy
5970       handling, and processing pending streams when a new circuit is
5971       established.
5972     - Pick nodes for a path only from those the directory says are up
5973     - Choose randomly from all running dirservers, not always the first one
5974     - Increase allowed http header size for directory fetch.
5975     - Stop writing to stderr (if we're daemonized it will be closed).
5976     - Enable -g always, so cores will be more useful to me.
5977     - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
5979   o Documentation:
5980     - Wrote a man page. It lists commonly used options.
5982   o Configuration:
5983     - Change default loglevel to warn.
5984     - Make PidFile default to null rather than littering in your CWD.
5985     - OnionRouter config option is now obsolete. Instead it just checks
5986       ORPort>0.
5987     - Moved to a single unified torrc file for both clients and servers.
5990 Changes in version 0.0.2pre14 - 2003-11-29
5991   o Robustness and bugfixes:
5992     - Force the admin to make the DataDirectory himself
5993       - to get ownership/permissions right
5994       - so clients no longer make a DataDirectory and then never use it
5995     - fix bug where a client who was offline for 45 minutes would never
5996       pull down a directory again
5997     - fix (or at least hide really well) the dns assert bug that was
5998       causing server crashes
5999     - warnings and improved robustness wrt clockskew for certs
6000     - use the native daemon(3) to daemonize, when available
6001     - exit if bind() fails
6002     - exit if neither socksport nor orport is defined
6003     - include our own tor_timegm (Win32 doesn't have its own)
6004     - bugfix for win32 with lots of connections
6005     - fix minor bias in PRNG
6006     - make dirserver more robust to corrupt cached directory
6008   o Documentation:
6009     - Wrote the design document (woo)
6011   o Circuit building and exit policies:
6012     - Circuits no longer try to use nodes that the directory has told them
6013       are down.
6014     - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
6015       bitcounts (18.0.0.0/8).
6016     - Make AP connections standby for a circuit if no suitable circuit
6017       exists, rather than failing
6018     - Circuits choose exit node based on addr/port, exit policies, and
6019       which AP connections are standing by
6020     - Bump min pathlen from 2 to 3
6021     - Relay end cells have a payload to describe why the stream ended.
6022     - If the stream failed because of exit policy, try again with a new
6023       circuit.
6024     - Clients have a dns cache to remember resolved addresses.
6025     - Notice more quickly when we have no working circuits
6027   o Configuration:
6028     - APPort is now called SocksPort
6029     - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
6030       where to bind
6031     - RecommendedVersions is now a config variable rather than
6032       hardcoded (for dirservers)
6033     - Reloads config on HUP
6034     - Usage info on -h or --help
6035     - If you set User and Group config vars, it'll setu/gid to them.
6037 Changes in version 0.0.2pre13 - 2003-10-19
6038   o General stability:
6039     - SSL_write no longer fails when it returns WANTWRITE and the number
6040       of bytes in the buf has changed by the next SSL_write call.
6041     - Fix segfault fetching directory when network is down
6042     - Fix a variety of minor memory leaks
6043     - Dirservers reload the fingerprints file on HUP, so I don't have
6044       to take down the network when I approve a new router
6045     - Default server config file has explicit Address line to specify fqdn
6047   o Buffers:
6048     - Buffers grow and shrink as needed (Cut process size from 20M to 2M)
6049     - Make listener connections not ever alloc bufs
6051   o Autoconf improvements:
6052     - don't clobber an external CFLAGS in ./configure
6053     - Make install now works
6054     - create var/lib/tor on make install
6055     - autocreate a tor.sh initscript to help distribs
6056     - autocreate the torrc and sample-server-torrc with correct paths
6058   o Log files and Daemonizing now work:
6059     - If --DebugLogFile is specified, log to it at -l debug
6060     - If --LogFile is specified, use it instead of commandline
6061     - If --RunAsDaemon is set, tor forks and backgrounds on startup