Add changes file for ticket 10842.
[tor.git] / ReleaseNotes
blob54195f82ae5baf316fb7f098849a272c078586b3
2 This document summarizes new features and bugfixes in each stable release
3 of Tor. If you want to see more detailed descriptions of the changes in
4 each development snapshot, see the ChangeLog file.
6 Changes in version 0.2.4.20 - 2013-12-22
7   Tor 0.2.4.20 fixes potentially poor random number generation for users
8   who 1) use OpenSSL 1.0.0 or later, 2) set "HardwareAccel 1" in their
9   torrc file, 3) have "Sandy Bridge" or "Ivy Bridge" Intel processors,
10   and 4) have no state file in their DataDirectory (as would happen on
11   first start). Users who generated relay or hidden service identity
12   keys in such a situation should discard them and generate new ones.
14   This release also fixes a logic error that caused Tor clients to build
15   many more preemptive circuits than they actually need.
17   o Major bugfixes:
18     - Do not allow OpenSSL engines to replace the PRNG, even when
19       HardwareAccel is set. The only default builtin PRNG engine uses
20       the Intel RDRAND instruction to replace the entire PRNG, and
21       ignores all attempts to seed it with more entropy. That's
22       cryptographically stupid: the right response to a new alleged
23       entropy source is never to discard all previously used entropy
24       sources. Fixes bug 10402; works around behavior introduced in
25       OpenSSL 1.0.0. Diagnosis and investigation thanks to "coderman"
26       and "rl1987".
27     - Fix assertion failure when AutomapHostsOnResolve yields an IPv6
28       address. Fixes bug 10465; bugfix on 0.2.4.7-alpha.
29     - Avoid launching spurious extra circuits when a stream is pending.
30       This fixes a bug where any circuit that _wasn't_ unusable for new
31       streams would be treated as if it were, causing extra circuits to
32       be launched. Fixes bug 10456; bugfix on 0.2.4.12-alpha.
34   o Minor bugfixes:
35     - Avoid a crash bug when starting with a corrupted microdescriptor
36       cache file. Fixes bug 10406; bugfix on 0.2.2.6-alpha.
37     - If we fail to dump a previously cached microdescriptor to disk, avoid
38       freeing duplicate data later on. Fixes bug 10423; bugfix on
39       0.2.4.13-alpha. Spotted by "bobnomnom".
42 Changes in version 0.2.4.19 - 2013-12-11
43   The Tor 0.2.4 release series is dedicated to the memory of Aaron Swartz
44   (1986-2013). Aaron worked on diverse projects including helping to guide
45   Creative Commons, playing a key role in stopping SOPA/PIPA, bringing
46   transparency to the U.S government's PACER documents, and contributing
47   design and development for Tor and Tor2Web. Aaron was one of the latest
48   martyrs in our collective fight for civil liberties and human rights,
49   and his death is all the more painful because he was one of us.
51   Tor 0.2.4.19, the first stable release in the 0.2.4 branch, features
52   a new circuit handshake and link encryption that use ECC to provide
53   better security and efficiency; makes relays better manage circuit
54   creation requests; uses "directory guards" to reduce client enumeration
55   risks; makes bridges collect and report statistics about the pluggable
56   transports they support; cleans up and improves our geoip database;
57   gets much closer to IPv6 support for clients, bridges, and relays; makes
58   directory authorities use measured bandwidths rather than advertised
59   ones when computing flags and thresholds; disables client-side DNS
60   caching to reduce tracking risks; and fixes a big bug in bridge
61   reachability testing. This release introduces two new design
62   abstractions in the code: a new "channel" abstraction between circuits
63   and or_connections to allow for implementing alternate relay-to-relay
64   transports, and a new "circuitmux" abstraction storing the queue of
65   circuits for a channel. The release also includes many stability,
66   security, and privacy fixes.
68   o Major features (new circuit handshake):
69     - Tor now supports a new circuit extension handshake designed by Ian
70       Goldberg, Douglas Stebila, and Berkant Ustaoglu. Our original
71       circuit extension handshake, later called "TAP", was a bit slow
72       (especially on the relay side), had a fragile security proof, and
73       used weaker keys than we'd now prefer. The new circuit handshake
74       uses Dan Bernstein's "curve25519" elliptic-curve Diffie-Hellman
75       function, making it significantly more secure than the older
76       handshake, and significantly faster. Tor can use one of two built-in
77       pure-C curve25519-donna implementations by Adam Langley, or it
78       can link against the "nacl" library for a tuned version if present.
80       The built-in version is very fast for 64-bit systems when building
81       with GCC. The built-in 32-bit version is still faster than the
82       old TAP protocol, but using libnacl is better on most such hosts.
84       Implements proposal 216; closes ticket 7202.
86   o Major features (better link encryption):
87     - Relays can now enable the ECDHE TLS ciphersuites when available
88       and appropriate. These ciphersuites let us negotiate forward-secure
89       TLS secret keys more safely and more efficiently than with our
90       previous use of Diffie-Hellman modulo a 1024-bit prime. By default,
91       public relays prefer the (faster) P224 group, and bridges prefer
92       the (more common) P256 group; you can override this with the
93       TLSECGroup option.
95       This feature requires clients running 0.2.3.17-beta or later,
96       and requires both sides to be running OpenSSL 1.0.0 or later
97       with ECC support. OpenSSL 1.0.1, with the compile-time option
98       "enable-ec_nistp_64_gcc_128", is highly recommended.
100       Implements the relay side of proposal 198; closes ticket 7200.
102     - Re-enable TLS 1.1 and 1.2 when built with OpenSSL 1.0.1e or later.
103       Resolves ticket 6055. (OpenSSL before 1.0.1 didn't have TLS 1.1 or
104       1.2, and OpenSSL from 1.0.1 through 1.0.1d had bugs that prevented
105       renegotiation from working with TLS 1.1 or 1.2, so we had disabled
106       them to solve bug 6033.)
108   o Major features (relay performance):
109     - Instead of limiting the number of queued onionskins (aka circuit
110       create requests) to a fixed, hard-to-configure number, we limit
111       the size of the queue based on how many we expect to be able to
112       process in a given amount of time. We estimate the time it will
113       take to process an onionskin based on average processing time
114       of previous onionskins. Closes ticket 7291. You'll never have to
115       configure MaxOnionsPending again.
116     - Relays process the new "NTor" circuit-level handshake requests
117       with higher priority than the old "TAP" circuit-level handshake
118       requests. We still process some TAP requests to not totally starve
119       0.2.3 clients when NTor becomes popular. A new consensus parameter
120       "NumNTorsPerTAP" lets us tune the balance later if we need to.
121       Implements ticket 9574.
123   o Major features (client bootstrapping resilience):
124     - Add a new "FallbackDir" torrc option to use when we can't use
125       a directory mirror from the consensus (either because we lack a
126       consensus, or because they're all down). Currently, all authorities
127       are fallbacks by default, and there are no other default fallbacks,
128       but that will change. This option will allow us to give clients a
129       longer list of servers to try to get a consensus from when first
130       connecting to the Tor network, and thereby reduce load on the
131       directory authorities. Implements proposal 206, "Preconfigured
132       directory sources for bootstrapping". We also removed the old
133       "FallbackNetworkstatus" option, since we never got it working well
134       enough to use it. Closes bug 572.
135     - If we have no circuits open, use a relaxed timeout (the
136       95th-percentile cutoff) until a circuit succeeds. This heuristic
137       should allow Tor to succeed at building circuits even when the
138       network connection drastically changes. Should help with bug 3443.
140   o Major features (use of guards):
141     - Support directory guards (proposal 207): when possible, clients now
142       use their entry guards for non-anonymous directory requests. This
143       can help prevent client enumeration. Note that this behavior only
144       works when we have a usable consensus directory, and when options
145       about what to download are more or less standard. In the future we
146       should re-bootstrap from our guards, rather than re-bootstrapping
147       from the preconfigured list of directory sources that ships with
148       Tor. Resolves ticket 6526.
149     - Raise the default time that a client keeps an entry guard from
150       "1-2 months" to "2-3 months", as suggested by Tariq Elahi's WPES
151       2012 paper. (We would make it even longer, but we need better client
152       load balancing first.) Also, make the guard lifetime controllable
153       via a new GuardLifetime torrc option and a GuardLifetime consensus
154       parameter. Start of a fix for bug 8240; bugfix on 0.1.1.11-alpha.
156   o Major features (bridges with pluggable transports):
157     - Bridges now report the pluggable transports they support to the
158       bridge authority, so it can pass the supported transports on to
159       bridgedb and/or eventually do reachability testing. Implements
160       ticket 3589.
161     - Automatically forward the TCP ports of pluggable transport
162       proxies using tor-fw-helper if PortForwarding is enabled. Implements
163       ticket 4567.
165   o Major features (geoip database):
166     - Maxmind began labelling Tor relays as being in country "A1",
167       which breaks by-country node selection inside Tor. Now we use a
168       script to replace "A1" ("Anonymous Proxy") entries in our geoip
169       file with real country codes. This script fixes about 90% of "A1"
170       entries automatically and uses manual country code assignments to
171       fix the remaining 10%. See src/config/README.geoip for details.
172       Fixes bug 6266.
173     - Add GeoIP database for IPv6 addresses. The new config option
174       is GeoIPv6File.
175     - Update to the October 2 2013 Maxmind GeoLite Country database.
177   o Major features (IPv6):
178     - Clients who set "ClientUseIPv6 1" may connect to entry nodes over
179       IPv6. Set "ClientPreferIPv6ORPort 1" to make this even more likely
180       to happen. Implements ticket 5535.
181     - All kind of relays, not just bridges, can now advertise an IPv6
182       OR port. Implements ticket 6362.
183     - Relays can now exit to IPv6 addresses: make sure that you have IPv6
184       connectivity, then set the IPv6Exit flag to 1. Also make sure your
185       exit policy reads as you would like: the address * applies to all
186       address families, whereas *4 is IPv4 address only, and *6 is IPv6
187       addresses only. On the client side, you'll need to wait for enough
188       exits to support IPv6, apply the "IPv6Traffic" flag to a SocksPort,
189       and use Socks5. Closes ticket 5547, implements proposal 117 as
190       revised in proposal 208.
191     - Bridge authorities now accept IPv6 bridge addresses and include
192       them in network status documents. Implements ticket 5534.
193     - Directory authorities vote on IPv6 OR ports. Implements ticket 6363.
195   o Major features (directory authorities):
196     - Directory authorities now prefer using measured bandwidths to
197       advertised ones when computing flags and thresholds. Resolves
198       ticket 8273.
199     - Directory authorities that vote measured bandwidths about more
200       than a threshold number of relays now treat relays with
201       unmeasured bandwidths as having bandwidth 0 when computing their
202       flags. Resolves ticket 8435.
203     - Directory authorities now support a new consensus method (17)
204       where they cap the published bandwidth of relays for which
205       insufficient bandwidth measurements exist. Fixes part of bug 2286.
206     - Directory authorities that set "DisableV2DirectoryInfo_ 1" no longer
207       serve any v2 directory information. Now we can test disabling the
208       old deprecated v2 directory format, and see whether doing so has
209       any effect on network load. Begins to fix bug 6783.
211   o Major features (build and portability):
212     - Switch to a nonrecursive Makefile structure. Now instead of each
213       Makefile.am invoking other Makefile.am's, there is a master
214       Makefile.am that includes the others. This change makes our build
215       process slightly more maintainable, and improves parallelism for
216       building with make -j. Original patch by Stewart Smith; various
217       fixes by Jim Meyering.
218     - Where available, we now use automake's "silent" make rules by
219       default, so that warnings are easier to spot. You can get the old
220       behavior with "make V=1". Patch by Stewart Smith for ticket 6522.
221     - Resume building correctly with MSVC and Makefile.nmake. This patch
222       resolves numerous bugs and fixes reported by ultramage, including
223       7305, 7308, 7309, 7310, 7312, 7313, 7315, 7316, and 7669.
225   o Security features:
226     - Switch to a completely time-invariant approach for picking nodes
227       weighted by bandwidth. Our old approach would run through the
228       part of the loop after it had made its choice slightly slower
229       than it ran through the part of the loop before it had made its
230       choice. Addresses ticket 6538.
231     - Disable the use of Guard nodes when in Tor2WebMode. Guard usage
232       by tor2web clients allows hidden services to identify tor2web
233       clients through their repeated selection of the same rendezvous
234       and introduction point circuit endpoints (their guards). Resolves
235       ticket 6888.
237   o Major bugfixes (relay denial of service):
238     - When we have too much memory queued in circuits (according to a new
239       MaxMemInCellQueues option), close the circuits that have the oldest
240       queued cells, on the theory that those are most responsible for
241       us running low on memory. This prevents us from running out of
242       memory as a relay if circuits fill up faster than they can be
243       drained. Fixes bugs 9063 and 9093; bugfix on the 54th commit of
244       Tor. This bug is a further fix beyond bug 6252, whose fix was
245       merged into 0.2.3.21-rc.
246     - Reject bogus create and relay cells with 0 circuit ID or 0 stream
247       ID: these could be used to create unexpected streams and circuits
248       which would count as "present" to some parts of Tor but "absent"
249       to others, leading to zombie circuits and streams or to a bandwidth
250       denial-of-service. Fixes bug 7889; bugfix on every released version
251       of Tor. Reported by "oftc_must_be_destroyed".
252     - Avoid a bug where our response to TLS renegotiation under certain
253       network conditions could lead to a busy-loop, with 100% CPU
254       consumption. Fixes bug 5650; bugfix on 0.2.0.16-alpha.
256   o Major bugfixes (asserts, crashes, leaks):
257     - Prevent the get_freelists() function from running off the end of
258       the list of freelists if it somehow gets an unrecognized
259       allocation. Fixes bug 8844; bugfix on 0.2.0.16-alpha. Reported by
260       eugenis.
261     - Avoid a memory leak where we would leak a consensus body when we
262       find that a consensus which we couldn't previously verify due to
263       missing certificates is now verifiable. Fixes bug 8719; bugfix
264       on 0.2.0.10-alpha.
265     - If we are unable to save a microdescriptor to the journal, do not
266       drop it from memory and then reattempt downloading it. Fixes bug
267       9645; bugfix on 0.2.2.6-alpha.
268     - Fix an assertion failure that would occur when disabling the
269       ORPort setting on a running Tor process while accounting was
270       enabled. Fixes bug 6979; bugfix on 0.2.2.18-alpha.
271     - Avoid an assertion failure on OpenBSD (and perhaps other BSDs)
272       when an exit connection with optimistic data succeeds immediately
273       rather than returning EINPROGRESS. Fixes bug 9017; bugfix on
274       0.2.3.1-alpha.
275     - Fix a memory leak that would occur whenever a configuration
276       option changed. Fixes bug 8718; bugfix on 0.2.3.3-alpha.
278   o Major bugfixes (relay rate limiting):
279     - When a TLS write is partially successful but incomplete, remember
280       that the flushed part has been flushed, and notice that bytes were
281       actually written. Reported and fixed pseudonymously. Fixes bug 7708;
282       bugfix on Tor 0.1.0.5-rc.
283     - Raise the default BandwidthRate/BandwidthBurst values from 5MB/10MB
284       to 1GB/1GB. The previous defaults were intended to be "basically
285       infinite", but it turns out they're now limiting our 100mbit+
286       relays and bridges. Fixes bug 6605; bugfix on 0.2.0.10-alpha (the
287       last time we raised it).
288     - No longer stop reading or writing on cpuworker connections when
289       our rate limiting buckets go empty. Now we should handle circuit
290       handshake requests more promptly. Resolves bug 9731.
292   o Major bugfixes (client-side privacy):
293     - When we mark a circuit as unusable for new circuits, have it
294       continue to be unusable for new circuits even if MaxCircuitDirtiness
295       is increased too much at the wrong time, or the system clock jumps
296       backwards. Fixes bug 6174; bugfix on 0.0.2pre26.
297     - If ClientDNSRejectInternalAddresses ("do not believe DNS queries
298       which have resolved to internal addresses") is set, apply that
299       rule to IPv6 as well. Fixes bug 8475; bugfix on 0.2.0.7-alpha.
300     - When an exit relay rejects a stream with reason "exit policy", but
301       we only know an exit policy summary (e.g. from the microdesc
302       consensus) for it, do not mark the relay as useless for all exiting.
303       Instead, mark just the circuit as unsuitable for that particular
304       address. Fixes part of bug 7582; bugfix on 0.2.3.2-alpha.
306   o Major bugfixes (stream isolation):
307     - Allow applications to get proper stream isolation with
308       IsolateSOCKSAuth. Many SOCKS5 clients that want to offer
309       username/password authentication also offer "no authentication". Tor
310       had previously preferred "no authentication", so the applications
311       never actually sent Tor their auth details. Now Tor selects
312       username/password authentication if it's offered. You can disable
313       this behavior on a per-SOCKSPort basis via PreferSOCKSNoAuth. Fixes
314       bug 8117; bugfix on 0.2.3.3-alpha.
315     - Follow the socks5 protocol when offering username/password
316       authentication. The fix for bug 8117 exposed this bug, and it
317       turns out real-world applications like Pidgin do care. Bugfix on
318       0.2.3.2-alpha; fixes bug 8879.
320   o Major bugfixes (client circuit building):
321     - Alter circuit build timeout measurement to start at the point
322       where we begin the CREATE/CREATE_FAST step (as opposed to circuit
323       initialization). This should make our timeout measurements more
324       uniform. Previously, we were sometimes including ORconn setup time
325       in our circuit build time measurements. Should resolve bug 3443.
326     - If the circuit build timeout logic is disabled (via the consensus,
327       or because we are an authority), then don't build testing circuits.
328       Fixes bug 9657; bugfix on 0.2.2.14-alpha.
330   o Major bugfixes (client-side DNS):
331     - Turn off the client-side DNS cache by default. Updating and using
332       the DNS cache is now configurable on a per-client-port
333       level. SOCKSPort, DNSPort, etc lines may now contain
334       {No,}Cache{IPv4,IPv6,}DNS lines to indicate that we shouldn't
335       cache these types of DNS answers when we receive them from an
336       exit node in response to an application request on this port, and
337       {No,}UseCached{IPv4,IPv6,DNS} lines to indicate that if we have
338       cached DNS answers of these types, we shouldn't use them. It's
339       potentially risky to use cached DNS answers at the client, since
340       doing so can indicate to one exit what answers we've gotten
341       for DNS lookups in the past. With IPv6, this becomes especially
342       problematic. Using cached DNS answers for requests on the same
343       circuit would present less linkability risk, since all traffic
344       on a circuit is already linkable, but it would also provide
345       little performance benefit: the exit node caches DNS replies
346       too. Implements a simplified version of Proposal 205. Implements
347       ticket 7570.
349   o Major bugfixes (hidden service privacy):
350     - Limit hidden service descriptors to at most ten introduction
351       points, to slow one kind of guard enumeration. Fixes bug 9002;
352       bugfix on 0.1.1.11-alpha.
354   o Major bugfixes (directory fetching):
355     - If the time to download the next old-style networkstatus is in
356       the future, do not decline to consider whether to download the
357       next microdescriptor networkstatus. Fixes bug 9564; bugfix on
358       0.2.3.14-alpha.
359     - We used to always request authority certificates by identity digest,
360       meaning we'd get the newest one even when we wanted one with a
361       different signing key. Then we would complain about being given
362       a certificate we already had, and never get the one we really
363       wanted. Now we use the "fp-sk/" resource as well as the "fp/"
364       resource to request the one we want. Fixes bug 5595; bugfix on
365       0.2.0.8-alpha.
367   o Major bugfixes (bridge reachability):
368     - Bridges now send AUTH_CHALLENGE cells during their v3 handshakes;
369       previously they did not, which prevented them from receiving
370       successful connections from relays for self-test or bandwidth
371       testing. Also, when a relay is extending a circuit to a bridge,
372       it needs to send a NETINFO cell, even when the bridge hasn't sent
373       an AUTH_CHALLENGE cell. Fixes bug 9546; bugfix on 0.2.3.6-alpha.
375   o Major bugfixes (control interface):
376     - When receiving a new configuration file via the control port's
377       LOADCONF command, do not treat the defaults file as absent.
378       Fixes bug 9122; bugfix on 0.2.3.9-alpha.
380   o Major bugfixes (directory authorities):
381     - Stop marking every relay as having been down for one hour every
382       time we restart a directory authority. These artificial downtimes
383       were messing with our Stable and Guard flag calculations. Fixes
384       bug 8218 (introduced by the fix for 1035). Bugfix on 0.2.2.23-alpha.
385     - When computing directory thresholds, ignore any rejected-as-sybil
386       nodes during the computation so that they can't influence Fast,
387       Guard, etc. (We should have done this for proposal 109.) Fixes
388       bug 8146.
389     - When marking a node as a likely sybil, reset its uptime metrics
390       to zero, so that it cannot time towards getting marked as Guard,
391       Stable, or HSDir. (We should have done this for proposal 109.) Fixes
392       bug 8147.
393     - Fix a bug in the voting algorithm that could yield incorrect results
394       when a non-naming authority declared too many flags. Fixes bug 9200;
395       bugfix on 0.2.0.3-alpha.
397   o Internal abstraction features:
398     - Introduce new channel_t abstraction between circuits and
399       or_connection_t to allow for implementing alternate OR-to-OR
400       transports. A channel_t is an abstract object which can either be a
401       cell-bearing channel, which is responsible for authenticating and
402       handshaking with the remote OR and transmitting cells to and from
403       it, or a listening channel, which spawns new cell-bearing channels
404       at the request of remote ORs. Implements part of ticket 6465.
405     - Make a channel_tls_t subclass of channel_t, adapting it to the
406       existing or_connection_t code. The V2/V3 protocol handshaking
407       code which formerly resided in command.c has been moved below the
408       channel_t abstraction layer and may be found in channeltls.c now.
409       Implements the rest of ticket 6465.
410     - Introduce new circuitmux_t storing the queue of circuits for
411       a channel; this encapsulates and abstracts the queue logic and
412       circuit selection policy, and allows the latter to be overridden
413       easily by switching out a policy object. The existing EWMA behavior
414       is now implemented as a circuitmux_policy_t. Resolves ticket 6816.
416   o New build requirements:
417     - Tor now requires OpenSSL 0.9.8 or later. OpenSSL 1.0.0 or later is
418       strongly recommended.
419     - Tor maintainers now require Automake version 1.9 or later to build
420       Tor from the Git repository. (Automake is not required when building
421       from a source distribution.)
423   o Minor features (protocol):
424     - No longer include the "opt" prefix when generating routerinfos
425       or v2 directories: it has been needless since Tor 0.1.2. Closes
426       ticket 5124.
427     - Reject EXTEND cells sent to nonexistent streams. According to the
428       spec, an EXTEND cell sent to _any_ nonzero stream ID is invalid, but
429       we were only checking for stream IDs that were currently in use.
430       Found while hunting for more instances of bug 6271. Bugfix on
431       0.0.2pre8, which introduced incremental circuit construction.
432     - Tor relays and clients now support a better CREATE/EXTEND cell
433       format, allowing the sender to specify multiple address, identity,
434       and handshake types. Implements Robert Ransom's proposal 200;
435       closes ticket 7199.
436     - Reject as invalid most directory objects containing a NUL.
437       Belt-and-suspender fix for bug 8037.
439   o Minor features (security):
440     - Clear keys and key-derived material left on the stack in
441       rendservice.c and rendclient.c. Check return value of
442       crypto_pk_write_private_key_to_string() in rend_service_load_keys().
443       These fixes should make us more forward-secure against cold-boot
444       attacks and the like. Fixes bug 2385.
445     - Use our own weak RNG when we need a weak RNG. Windows's rand() and
446       Irix's random() only return 15 bits; Solaris's random() returns more
447       bits but its RAND_MAX says it only returns 15, and so on. Motivated
448       by the fix for bug 7801; bugfix on 0.2.2.20-alpha.
450   o Minor features (control protocol):
451     - Add a "GETINFO signal/names" control port command. Implements
452       ticket 3842.
453     - Provide default values for all options via "GETINFO config/defaults".
454       Implements ticket 4971.
455     - Allow an optional $ before the node identity digest in the
456       controller command GETINFO ns/id/<identity>, for consistency with
457       md/id/<identity> and desc/id/<identity>. Resolves ticket 7059.
458     - Add CACHED keyword to ADDRMAP events in the control protocol
459       to indicate whether a DNS result will be cached or not. Resolves
460       ticket 8596.
461     - Generate bootstrapping status update events correctly when fetching
462       microdescriptors. Fixes bug 9927.
464   o Minor features (path selection):
465     - When deciding whether we have enough descriptors to build circuits,
466       instead of looking at raw relay counts, look at which fraction
467       of (bandwidth-weighted) paths we're able to build. This approach
468       keeps clients from building circuits if their paths are likely to
469       stand out statistically. The default fraction of paths needed is
470       taken from the consensus directory; you can override it with the
471       new PathsNeededToBuildCircuits option. Fixes ticket 5956.
472     - When any country code is listed in ExcludeNodes or ExcludeExitNodes,
473       and we have GeoIP information, also exclude all nodes with unknown
474       countries "??" and "A1". This behavior is controlled by the
475       new GeoIPExcludeUnknown option: you can make such nodes always
476       excluded with "GeoIPExcludeUnknown 1", and disable the feature
477       with "GeoIPExcludeUnknown 0". Setting "GeoIPExcludeUnknown auto"
478       gets you the default behavior. Implements feature 7706.
480   o Minor features (hidden services):
481     - Improve circuit build timeout handling for hidden services.
482       In particular: adjust build timeouts more accurately depending
483       upon the number of hop-RTTs that a particular circuit type
484       undergoes. Additionally, launch intro circuits in parallel
485       if they timeout, and take the first one to reply as valid.
486     - The Tor client now ignores sub-domain components of a .onion
487       address. This change makes HTTP "virtual" hosting
488       possible: http://foo.aaaaaaaaaaaaaaaa.onion/ and
489       http://bar.aaaaaaaaaaaaaaaa.onion/ can be two different websites
490       hosted on the same hidden service. Implements proposal 204.
491     - Enable Tor to read configuration, state, and key information from
492       a FIFO. Previously Tor would only read from files with a positive
493       stat.st_size. Code from meejah; fixes bug 6044.
495   o Minor features (clients):
496     - Teach bridge-using clients to avoid 0.2.2.x bridges when making
497       microdescriptor-related dir requests, and only fall back to normal
498       descriptors if none of their bridges can handle microdescriptors
499       (as opposed to the fix in ticket 4013, which caused them to fall
500       back to normal descriptors if *any* of their bridges preferred
501       them). Resolves ticket 4994.
502     - Tweak tor-fw-helper to accept an arbitrary amount of arbitrary
503       TCP ports to forward. In the past it only accepted two ports:
504       the ORPort and the DirPort.
506   o Minor features (protecting client timestamps):
507     - Clients no longer send timestamps in their NETINFO cells. These were
508       not used for anything, and they provided one small way for clients
509       to be distinguished from each other as they moved from network to
510       network or behind NAT. Implements part of proposal 222.
511     - Clients now round timestamps in INTRODUCE cells down to the nearest
512       10 minutes. If a new Support022HiddenServices option is set to 0, or
513       if it's set to "auto" and the feature is disabled in the consensus,
514       the timestamp is sent as 0 instead. Implements part of proposal 222.
515     - Stop sending timestamps in AUTHENTICATE cells. This is not such
516       a big deal from a security point of view, but it achieves no actual
517       good purpose, and isn't needed. Implements part of proposal 222.
518     - Reduce down accuracy of timestamps in hidden service descriptors.
519       Implements part of proposal 222.
521   o Minor features (bridges):
522     - Make bridge relays check once a minute for whether their IP
523       address has changed, rather than only every 15 minutes. Resolves
524       bugs 1913 and 1992.
525     - Bridge statistics now count bridge clients connecting over IPv6:
526       bridge statistics files now list "bridge-ip-versions" and
527       extra-info documents list "geoip6-db-digest". The control protocol
528       "CLIENTS_SEEN" and "ip-to-country" queries now support IPv6. Initial
529       implementation by "shkoo", addressing ticket 5055.
530     - Add a new torrc option "ServerTransportListenAddr" to let bridge
531       operators select the address where their pluggable transports will
532       listen for connections. Resolves ticket 7013.
533     - Randomize the lifetime of our SSL link certificate, so censors can't
534       use the static value for filtering Tor flows. Resolves ticket 8443;
535       related to ticket 4014 which was included in 0.2.2.33.
537   o Minor features (relays):
538     - Option OutboundBindAddress can be specified multiple times and
539       accepts IPv6 addresses. Resolves ticket 6876.
541   o Minor features (IPv6, client side):
542     - AutomapHostsOnResolve now supports IPv6 addresses. By default, we
543       prefer to hand out virtual IPv6 addresses, since there are more of
544       them and we can't run out. To override this behavior and make IPv4
545       addresses preferred, set NoPreferIPv6Automap on whatever SOCKSPort
546       or DNSPort you're using for resolving. Implements ticket 7571.
547     - AutomapHostsOnResolve responses are now randomized, to avoid
548       annoying situations where Tor is restarted and applications
549       connect to the wrong addresses.
550     - Never try more than 1000 times to pick a new virtual address when
551       AutomapHostsOnResolve is set. That's good enough so long as we
552       aren't close to handing out our entire virtual address space;
553       if you're getting there, it's best to switch to IPv6 virtual
554       addresses anyway.
556   o Minor features (IPv6, relay/authority side):
557     - New config option "AuthDirHasIPv6Connectivity 1" that directory
558       authorities should set if they have IPv6 connectivity and want to
559       do reachability tests for IPv6 relays. Implements feature 5974.
560     - A relay with an IPv6 OR port now sends that address in NETINFO
561       cells (in addition to its other address). Implements ticket 6364.
563   o Minor features (directory authorities):
564     - Directory authorities no long accept descriptors for any version of
565       Tor before 0.2.2.35, or for any 0.2.3 release before 0.2.3.10-alpha.
566       These versions are insecure, unsupported, or both. Implements
567       ticket 6789.
568     - When directory authorities are computing thresholds for flags,
569       never let the threshold for the Fast flag fall below 4096
570       bytes. Also, do not consider nodes with extremely low bandwidths
571       when deciding thresholds for various directory flags. This change
572       should raise our threshold for Fast relays, possibly in turn
573       improving overall network performance; see ticket 1854. Resolves
574       ticket 8145.
575     - Directory authorities now include inside each vote a statement of
576       the performance thresholds they used when assigning flags.
577       Implements ticket 8151.
578     - Add an "ignoring-advertised-bws" boolean to the flag-threshold lines
579       in directory authority votes to describe whether they have enough
580       measured bandwidths to ignore advertised (relay descriptor)
581       bandwidth claims. Resolves ticket 8711.
583   o Minor features (path bias detection):
584     - Path Use Bias: Perform separate accounting for successful circuit
585       use. Keep separate statistics on stream attempt rates versus stream
586       success rates for each guard. Provide configurable thresholds to
587       determine when to emit log messages or disable use of guards that
588       fail too many stream attempts. Resolves ticket 7802.
589     - Create three levels of Path Bias log messages, as opposed to just
590       two. These are configurable via consensus as well as via the torrc
591       options PathBiasNoticeRate, PathBiasWarnRate, PathBiasExtremeRate.
592       The default values are 0.70, 0.50, and 0.30 respectively.
593     - Separate the log message levels from the decision to drop guards,
594       which also is available via torrc option PathBiasDropGuards.
595       PathBiasDropGuards still defaults to 0 (off).
596     - Deprecate PathBiasDisableRate in favor of PathBiasDropGuards
597       in combination with PathBiasExtremeRate.
598     - Increase the default values for PathBiasScaleThreshold and
599       PathBiasCircThreshold from (200, 20) to (300, 150).
600     - Add in circuit usage accounting to path bias. If we try to use a
601       built circuit but fail for any reason, it counts as path bias.
602       Certain classes of circuits where the adversary gets to pick your
603       destination node are exempt from this accounting. Usage accounting
604       can be specifically disabled via consensus parameter or torrc.
605     - Convert all internal path bias state to double-precision floating
606       point, to avoid roundoff error and other issues.
607     - Only record path bias information for circuits that have completed
608       *two* hops. Assuming end-to-end tagging is the attack vector, this
609       makes us more resilient to ambient circuit failure without any
610       detection capability loss.
612   o Minor features (build):
613     - Tor now builds correctly on Bitrig, an OpenBSD fork. Patch from
614       dhill. Resolves ticket 6982.
615     - Compile on win64 using mingw64. Fixes bug 7260; patches from
616       "yayooo".
617     - Work correctly on Unix systems where EAGAIN and EWOULDBLOCK are
618       separate error codes; or at least, don't break for that reason.
619       Fixes bug 7935. Reported by "oftc_must_be_destroyed".
621   o Build improvements (autotools):
622     - Warn if building on a platform with an unsigned time_t: there
623       are too many places where Tor currently assumes that time_t can
624       hold negative values. We'd like to fix them all, but probably
625       some will remain.
626     - Do not report status verbosely from autogen.sh unless the -v flag
627       is specified. Fixes issue 4664. Patch from Onizuka.
628     - Detect and reject attempts to build Tor with threading support
629       when OpenSSL has been compiled without threading support.
630       Fixes bug 6673.
631     - Try to detect if we are ever building on a platform where
632       memset(...,0,...) does not set the value of a double to 0.0. Such
633       platforms are permitted by the C standard, though in practice
634       they're pretty rare (since IEEE 754 is nigh-ubiquitous). We don't
635       currently support them, but it's better to detect them and fail
636       than to perform erroneously.
637     - We no longer warn so much when generating manpages from their
638       asciidoc source.
639     - Use Ville Laurikari's implementation of AX_CHECK_SIGN() to determine
640       the signs of types during autoconf. This is better than our old
641       approach, which didn't work when cross-compiling.
643   o Minor features (log messages, warnings):
644     - Detect when we're running with a version of OpenSSL other than the
645       one we compiled with. This conflict has occasionally given people
646       hard-to-track-down errors.
647     - Warn users who run hidden services on a Tor client with
648       UseEntryGuards disabled that their hidden services will be
649       vulnerable to http://freehaven.net/anonbib/#hs-attack06 (the
650       attack which motivated Tor to support entry guards in the first
651       place). Resolves ticket 6889.
652     - Warn when we are binding low ports when hibernation is enabled;
653       previously we had warned when we were _advertising_ low ports with
654       hibernation enabled. Fixes bug 7285; bugfix on 0.2.3.9-alpha.
655     - Issue a warning when running with the bufferevents backend enabled.
656       It's still not stable, and people should know that they're likely
657       to hit unexpected problems. Closes ticket 9147.
659   o Minor features (log messages, notices):
660     - Refactor resolve_my_address() so it returns the method by which we
661       decided our public IP address (explicitly configured, resolved from
662       explicit hostname, guessed from interfaces, learned by gethostname).
663       Now we can provide more helpful log messages when a relay guesses
664       its IP address incorrectly (e.g. due to unexpected lines in
665       /etc/hosts). Resolves ticket 2267.
666     - Track how many "TAP" and "NTor" circuit handshake requests we get,
667       and how many we complete, and log it every hour to help relay
668       operators follow trends in network load. Addresses ticket 9658.
670   o Minor features (log messages, diagnostics):
671     - If we fail to free a microdescriptor because of bug 7164, log
672       the filename and line number from which we tried to free it.
673     - We compute the overhead from passing onionskins back and forth to
674       cpuworkers, and report it when dumping statistics in response to
675       SIGUSR1. Supports ticket 7291.
676     - Add another diagnostic to the heartbeat message: track and log
677       overhead that TLS is adding to the data we write. If this is
678       high, we are sending too little data to SSL_write at a time.
679       Diagnostic for bug 7707.
680     - Log packaged cell fullness as part of the heartbeat message.
681       Diagnosis to try to determine the extent of bug 7743.
682     - Add more detail to a log message about relaxed timeouts, to help
683       track bug 7799.
684     - When learning a fingerprint for a bridge, log its corresponding
685       transport type. Implements ticket 7896.
686     - Warn more aggressively when flushing microdescriptors to a
687       microdescriptor cache fails, in an attempt to mitigate bug 8031,
688       or at least make it more diagnosable.
689     - Improve the log message when "Bug/attack: unexpected sendme cell
690       from client" occurs, to help us track bug 8093.
691     - Improve debugging output to help track down bug 8185 ("Bug:
692       outgoing relay cell has n_chan==NULL. Dropping.")
694   o Minor features (log messages, quieter bootstrapping):
695     - Log fewer lines at level "notice" about our OpenSSL and Libevent
696       versions and capabilities when everything is going right. Resolves
697       part of ticket 6736.
698     - Omit the first heartbeat log message, because it never has anything
699       useful to say, and it clutters up the bootstrapping messages.
700       Resolves ticket 6758.
701     - Don't log about reloading the microdescriptor cache at startup. Our
702       bootstrap warnings are supposed to tell the user when there's a
703       problem, and our bootstrap notices say when there isn't. Resolves
704       ticket 6759; bugfix on 0.2.2.6-alpha.
705     - Don't log "I learned some more directory information" when we're
706       reading cached directory information. Reserve it for when new
707       directory information arrives in response to a fetch. Resolves
708       ticket 6760.
709     - Don't complain about bootstrapping problems while hibernating.
710       These complaints reflect a general code problem, but not one
711       with any problematic effects (no connections are actually
712       opened). Fixes part of bug 7302; bugfix on 0.2.3.2-alpha.
714   o Minor features (testing):
715     - In our testsuite, create temporary directories with a bit more
716       entropy in their name to make name collisions less likely. Fixes
717       bug 8638.
718     - Add benchmarks for DH (1024-bit multiplicative group) and ECDH
719       (P-256) Diffie-Hellman handshakes to src/or/bench.
720     - Add benchmark functions to test onion handshake performance.
722   o Renamed options:
723     - The DirServer option is now DirAuthority, for consistency with
724       current naming patterns. You can still use the old DirServer form.
726   o Minor bugfixes (protocol):
727     - Fix the handling of a TRUNCATE cell when it arrives while the
728       circuit extension is in progress. Fixes bug 7947; bugfix on 0.0.7.1.
729     - When a Tor client gets a "truncated" relay cell, the first byte of
730       its payload specifies why the circuit was truncated. We were
731       ignoring this 'reason' byte when tearing down the circuit, resulting
732       in the controller not being told why the circuit closed. Now we
733       pass the reason from the truncated cell to the controller. Bugfix
734       on 0.1.2.3-alpha; fixes bug 7039.
735     - Fix a misframing issue when reading the version numbers in a
736       VERSIONS cell. Previously we would recognize [00 01 00 02] as
737       'version 1, version 2, and version 0x100', when it should have
738       only included versions 1 and 2. Fixes bug 8059; bugfix on
739       0.2.0.10-alpha. Reported pseudonymously.
740     - Make the format and order of STREAM events for DNS lookups
741       consistent among the various ways to launch DNS lookups. Fixes
742       bug 8203; bugfix on 0.2.0.24-rc. Patch by "Desoxy".
744   o Minor bugfixes (syscalls and disk interaction):
745     - Always check the return values of functions fcntl() and
746       setsockopt(). We don't believe these are ever actually failing in
747       practice, but better safe than sorry. Also, checking these return
748       values should please analysis tools like Coverity. Patch from
749       'flupzor'. Fixes bug 8206; bugfix on all versions of Tor.
750     - Avoid double-closing the listener socket in our socketpair()
751       replacement (used on Windows) in the case where the addresses on
752       our opened sockets don't match what we expected. Fixes bug 9400;
753       bugfix on 0.0.2pre7. Found by Coverity.
754     - Correctly store microdescriptors and extrainfo descriptors that
755       include an internal NUL byte. Fixes bug 8037; bugfix on
756       0.2.0.1-alpha. Bug reported by "cypherpunks".
757     - If for some reason we fail to write a microdescriptor while
758       rebuilding the cache, do not let the annotations from that
759       microdescriptor linger in the cache file, and do not let the
760       microdescriptor stay recorded as present in its old location.
761       Fixes bug 9047; bugfix on 0.2.2.6-alpha.
762     - Use direct writes rather than stdio when building microdescriptor
763       caches, in an attempt to mitigate bug 8031, or at least make it
764       less common.
766   o Minor fixes (config options):
767     - Warn and fail if a server is configured not to advertise any
768       ORPorts at all. (We need *something* to put in our descriptor,
769       or we just won't work.)
770     - Behave correctly when the user disables LearnCircuitBuildTimeout
771       but doesn't tell us what they would like the timeout to be. Fixes
772       bug 6304; bugfix on 0.2.2.14-alpha.
773     - Rename the (internal-use-only) UsingTestingNetworkDefaults option
774       to start with a triple-underscore so the controller won't touch it.
775       Patch by Meejah. Fixes bug 3155. Bugfix on 0.2.2.23-alpha.
776     - Rename the (testing-use-only) _UseFilteringSSLBufferevents option
777       so it doesn't start with _. Fixes bug 3155. Bugfix on 0.2.3.1-alpha.
778     - When autodetecting the number of CPUs, use the number of available
779       CPUs in preference to the number of configured CPUs. Inform the
780       user if this reduces the number of available CPUs. Fixes bug 8002;
781       bugfix on 0.2.3.1-alpha.
782     - Command-line option "--version" implies "--quiet". Fixes bug 6997.
783     - Make it an error when you set EntryNodes but disable UseGuardNodes,
784       since it will (surprisingly to some users) ignore EntryNodes. Fixes
785       bug 8180; bugfix on 0.2.3.11-alpha.
786     - Avoid overflows when the user sets MaxCircuitDirtiness to a
787       ridiculously high value, by imposing a (ridiculously high) 30-day
788       maximum on MaxCircuitDirtiness.
790   o Minor bugfixes (control protocol):
791     - Stop sending a stray "(null)" in some cases for the server status
792       "EXTERNAL_ADDRESS" controller event. Resolves bug 8200; bugfix
793       on 0.1.2.6-alpha.
794     - The ADDRMAP command can no longer generate an ill-formed error
795       code on a failed MAPADDRESS. It now says "internal" rather than
796       an English sentence fragment with spaces in the middle. Bugfix on
797       Tor 0.2.0.19-alpha.
799   o Minor bugfixes (clients / edges):
800     - When we receive a RELAY_END cell with the reason DONE, or with no
801       reason, before receiving a RELAY_CONNECTED cell, report the SOCKS
802       status as "connection refused". Previously we reported these cases
803       as success but then immediately closed the connection. Fixes bug
804       7902; bugfix on 0.1.0.1-rc. Reported by "oftc_must_be_destroyed".
805     - If the guard we choose first doesn't answer, we would try the
806       second guard, but once we connected to the second guard we would
807       abandon it and retry the first one, slowing down bootstrapping.
808       The fix is to treat all our initially chosen guards as acceptable
809       to use. Fixes bug 9946; bugfix on 0.1.1.11-alpha.
810     - When choosing which stream on a formerly stalled circuit to wake
811       first, make better use of the platform's weak RNG. Previously,
812       we had been using the % ("modulo") operator to try to generate a
813       1/N chance of picking each stream, but this behaves badly with
814       many platforms' choice of weak RNG. Fixes bug 7801; bugfix on
815       0.2.2.20-alpha.
817   o Minor bugfixes (path bias detection):
818     - If the state file's path bias counts are invalid (presumably from a
819       buggy Tor prior to 0.2.4.10-alpha), make them correct. Also add
820       additional checks and log messages to the scaling of Path Bias
821       counts, in case there still are remaining issues with scaling.
822       Should help resolve bug 8235.
823     - Prevent rounding error in path bias counts when scaling
824       them down, and use the correct scale factor default. Also demote
825       some path bias related log messages down a level and make others
826       less scary sounding. Fixes bug 6647. Bugfix on 0.2.3.17-beta.
827     - Remove a source of rounding error during path bias count scaling;
828       don't count cannibalized circuits as used for path bias until we
829       actually try to use them; and fix a circuit_package_relay_cell()
830       warning message about n_chan==NULL. Fixes bug 7802.
831     - Paste the description for PathBias parameters from the man
832       page into or.h, so the code documents them too. Fixes bug 7982;
833       bugfix on 0.2.3.17-beta.
835   o Minor bugfixes (relays):
836     - Stop trying to resolve our hostname so often (e.g. every time we
837       think about doing a directory fetch). Now we reuse the cached
838       answer in some cases. Fixes bugs 1992 (bugfix on 0.2.0.20-rc)
839       and 2410 (bugfix on 0.1.2.2-alpha).
840     - When examining the list of network interfaces to find our address,
841       do not consider non-running or disabled network interfaces. Fixes
842       bug 9904; bugfix on 0.2.3.11-alpha. Patch from "hantwister".
844   o Minor bugfixes (blocking resistance):
845     - Only disable TLS session ticket support when running as a TLS
846       server. Now clients will blend better with regular Firefox
847       connections. Fixes bug 7189; bugfix on Tor 0.2.3.23-rc.
849   o Minor bugfixes (IPv6):
850     - Use square brackets around IPv6 addresses in numerous places
851       that needed them, including log messages, HTTPS CONNECT proxy
852       requests, TransportProxy statefile entries, and pluggable transport
853       extra-info lines. Fixes bug 7011; patch by David Fifield.
855   o Minor bugfixes (directory authorities):
856     - Reject consensus votes with more than 64 known-flags. We aren't even
857       close to that limit yet, and our code doesn't handle it correctly.
858       Fixes bug 6833; bugfix on 0.2.0.1-alpha.
859     - Correctly handle votes with more than 31 flags. Fixes bug 6853;
860       bugfix on 0.2.0.3-alpha.
862   o Minor bugfixes (memory leaks):
863     - Avoid leaking memory if we fail to compute a consensus signature
864       or we generate a consensus we can't parse. Bugfix on 0.2.0.5-alpha.
865     - Fix a memory leak when receiving headers from an HTTPS proxy. Bugfix
866       on 0.2.1.1-alpha; fixes bug 7816.
867     - Fix a memory leak during safe-cookie controller authentication.
868       Bugfix on 0.2.3.13-alpha; fixes bug 7816.
869     - Free some more still-in-use memory at exit, to make hunting for
870       memory leaks easier. Resolves bug 7029.
872   o Minor bugfixes (code correctness):
873     - Increase the width of the field used to remember a connection's
874       link protocol version to two bytes. Harmless for now, since the
875       only currently recognized versions are one byte long. Reported
876       pseudonymously. Fixes bug 8062; bugfix on 0.2.0.10-alpha.
877     - Fix a crash when debugging unit tests on Windows: deallocate a
878       shared library with FreeLibrary, not CloseHandle. Fixes bug 7306;
879       bugfix on 0.2.2.17-alpha. Reported by "ultramage".
880     - When detecting the largest possible file descriptor (in order to
881       close all file descriptors when launching a new program), actually
882       use _SC_OPEN_MAX. The old code for doing this was very, very broken.
883       Fixes bug 8209; bugfix on 0.2.3.1-alpha. Found by Coverity; this
884       is CID 743383.
885     - Avoid a crash if we fail to generate an extrainfo descriptor.
886       Fixes bug 8208; bugfix on 0.2.3.16-alpha. Found by Coverity;
887       this is CID 718634.
888     - Avoid an off-by-one error when checking buffer boundaries when
889       formatting the exit status of a pluggable transport helper.
890       This is probably not an exploitable bug, but better safe than
891       sorry. Fixes bug 9928; bugfix on 0.2.3.18-rc. Bug found by
892       Pedro Ribeiro.
893     - Get rid of a couple of harmless clang warnings, where we compared
894       enums to ints. These warnings are newly introduced in clang 3.2.
896   o Minor bugfixes (code cleanliness):
897     - Avoid use of reserved identifiers in our C code. The C standard
898       doesn't like us declaring anything that starts with an
899       underscore, so let's knock it off before we get in trouble. Fix
900       for bug 1031; bugfix on the first Tor commit.
901     - Fix round_to_power_of_2() so it doesn't invoke undefined behavior
902       with large values. This situation was untriggered, but nevertheless
903       incorrect. Fixes bug 6831; bugfix on 0.2.0.1-alpha.
904     - Fix an impossible buffer overrun in the AES unit tests. Fixes
905       bug 8845; bugfix on 0.2.0.7-alpha. Found by eugenis.
906     - Fix handling of rendezvous client authorization types over 8.
907       Fixes bug 6861; bugfix on 0.2.1.5-alpha.
908     - Remove a couple of extraneous semicolons that were upsetting the
909       cparser library. Patch by Christian Grothoff. Fixes bug 7115;
910       bugfix on 0.2.2.1-alpha.
911     - When complaining about a client port on a public address, log
912       which address we're complaining about. Fixes bug 4020; bugfix on
913       0.2.3.3-alpha. Patch by Tom Fitzhenry.
915   o Minor bugfixes (log messages, warnings):
916     - If we encounter a write failure on a SOCKS connection before we
917       finish our SOCKS handshake, don't warn that we closed the
918       connection before we could send a SOCKS reply. Fixes bug 8427;
919       bugfix on 0.1.0.1-rc.
920     - Fix a directory authority warn caused when we have a large amount
921       of badexit bandwidth. Fixes bug 8419; bugfix on 0.2.2.10-alpha.
922     - Downgrade "Failed to hand off onionskin" messages to "debug"
923       severity, since they're typically redundant with the "Your computer
924       is too slow" messages. Fixes bug 7038; bugfix on 0.2.2.16-alpha.
925     - Avoid spurious warnings when configuring multiple client ports of
926       which only some are nonlocal. Previously, we had claimed that some
927       were nonlocal when in fact they weren't. Fixes bug 7836; bugfix on
928       0.2.3.3-alpha.
930   o Minor bugfixes (log messages, other):
931     - Fix log messages and comments to avoid saying "GMT" when we mean
932       "UTC". Fixes bug 6113.
933     - When rejecting a configuration because we were unable to parse a
934       quoted string, log an actual error message. Fixes bug 7950; bugfix
935       on 0.2.0.16-alpha.
936     - Correctly recognize that [::1] is a loopback address. Fixes
937       bug 8377; bugfix on 0.2.1.3-alpha.
938     - Don't log inappropriate heartbeat messages when hibernating: a
939       hibernating node is _expected_ to drop out of the consensus,
940       decide it isn't bootstrapped, and so forth. Fixes bug 7302;
941       bugfix on 0.2.3.1-alpha.
942     - Eliminate several instances where we use "Nickname=ID" to refer to
943       nodes in logs. Use "Nickname (ID)" instead. (Elsewhere, we still use
944       "$ID=Nickname", which is also acceptable.) Fixes bug 7065. Bugfix
945       on 0.2.3.21-rc.
947   o Minor bugfixes (build):
948     - Fix some bugs in tor-fw-helper-natpmp when trying to build and
949       run it on Windows. More bugs likely remain. Patch from Gisle Vanem.
950       Fixes bug 7280; bugfix on 0.2.3.1-alpha.
952   o Documentation fixes:
953     - Make the torify manpage no longer refer to tsocks; torify hasn't
954       supported tsocks since 0.2.3.14-alpha.
955     - Make the tor manpage no longer reference tsocks.
956     - Fix the GeoIPExcludeUnknown documentation to refer to
957       ExcludeExitNodes rather than the currently nonexistent
958       ExcludeEntryNodes. Spotted by "hamahangi" on tor-talk.
959     - Resolve a typo in torrc.sample.in. Fixes bug 6819; bugfix on
960       0.2.3.14-alpha.
961     - Say "KBytes" rather than "KB" in the man page (for various values
962       of K), to further reduce confusion about whether Tor counts in
963       units of memory or fractions of units of memory. Resolves ticket 7054.
964     - Update tor-fw-helper.1.txt and tor-fw-helper.c to make option
965       names match. Fixes bug 7768.
966     - Fix the documentation of HeartbeatPeriod to say that the heartbeat
967       message is logged at notice, not at info.
968     - Clarify the usage and risks of setting the ContactInfo torrc line
969       for your relay or bridge. Resolves ticket 9854.
970     - Add anchors to the manpage so we can link to the html version of
971       the documentation for specific options. Resolves ticket 9866.
972     - Replace remaining references to DirServer in man page and
973       log entries. Resolves ticket 10124.
975   o Removed features:
976     - Stop exporting estimates of v2 and v3 directory traffic shares
977       in extrainfo documents. They were unneeded and sometimes inaccurate.
978       Also stop exporting any v2 directory request statistics. Resolves
979       ticket 5823.
980     - Drop support for detecting and warning about versions of Libevent
981       before 1.3e. Nothing reasonable ships with them any longer; warning
982       the user about them shouldn't be needed. Resolves ticket 6826.
983     - Now that all versions before 0.2.2.x are disallowed, we no longer
984       need to work around their missing features. Remove a bunch of
985       compatibility code.
987   o Removed files:
988     - The tor-tsocks.conf is no longer distributed or installed. We
989       recommend that tsocks users use torsocks instead. Resolves
990       ticket 8290.
991     - Remove some of the older contents of doc/ as obsolete; move others
992       to torspec.git. Fixes bug 8965.
994   o Code simplification:
995     - Avoid using character buffers when constructing most directory
996       objects: this approach was unwieldy and error-prone. Instead,
997       build smartlists of strings, and concatenate them when done.
998     - Rename "isin" functions to "contains", for grammar. Resolves
999       ticket 5285.
1000     - Rename Tor's logging function log() to tor_log(), to avoid conflicts
1001       with the natural logarithm function from the system libm. Resolves
1002       ticket 7599.
1003     - Start using OpenBSD's implementation of queue.h, so that we don't
1004       need to hand-roll our own pointer and list structures whenever we
1005       need them. (We can't rely on a sys/queue.h, since some operating
1006       systems don't have them, and the ones that do have them don't all
1007       present the same extensions.)
1008     - Start using OpenBSD's implementation of queue.h (originally by
1009       Niels Provos).
1010     - Enhance our internal sscanf replacement so that we can eliminate
1011       the last remaining uses of the system sscanf. (Though those uses
1012       of sscanf were safe, sscanf itself is generally error prone, so
1013       we want to eliminate when we can.) Fixes ticket 4195 and Coverity
1014       CID 448.
1015     - Replace all calls to snprintf() outside of src/ext with
1016       tor_snprintf(). Also remove the #define to replace snprintf with
1017       _snprintf on Windows; they have different semantics, and all of
1018       our callers should be using tor_snprintf() anyway. Fixes bug 7304.
1020   o Refactoring:
1021     - Add a wrapper function for the common "log a message with a
1022       rate-limit" case.
1023     - Split the onion.c file into separate modules for the onion queue
1024       and the different handshakes it supports.
1025     - Move the client-side address-map/virtual-address/DNS-cache code
1026       out of connection_edge.c into a new addressmap.c module.
1027     - Move the entry node code from circuitbuild.c to its own file.
1028     - Move the circuit build timeout tracking code from circuitbuild.c
1029       to its own file.
1030     - Source files taken from other packages now reside in src/ext;
1031       previously they were scattered around the rest of Tor.
1032     - Move the generic "config" code into a new file, and have "config.c"
1033       hold only torrc- and state-related code. Resolves ticket 6823.
1034     - Move the core of our "choose a weighted element at random" logic
1035       into its own function, and give it unit tests. Now the logic is
1036       testable, and a little less fragile too.
1037     - Move ipv6_preferred from routerinfo_t to node_t. Addresses bug 4620.
1038     - Move last_reachable and testing_since from routerinfo_t to node_t.
1039       Implements ticket 5529.
1040     - Add replaycache_t structure, functions and unit tests, then refactor
1041       rend_service_introduce() to be more clear to read, improve, debug,
1042       and test. Resolves bug 6177.
1044   o Removed code:
1045     - Remove some now-needless code that tried to aggressively flush
1046       OR connections as data was added to them. Since 0.2.0.1-alpha, our
1047       cell queue logic has saved us from the failure mode that this code
1048       was supposed to prevent. Removing this code will limit the number
1049       of baroque control flow paths through Tor's network logic. Reported
1050       pseudonymously on IRC. Fixes bug 6468; bugfix on 0.2.0.1-alpha.
1051     - Remove unused code for parsing v1 directories and "running routers"
1052       documents. Fixes bug 6887.
1053     - Remove the marshalling/unmarshalling code for sending requests to
1054       cpuworkers over a socket, and instead just send structs. The
1055       recipient will always be the same Tor binary as the sender, so
1056       any encoding is overkill.
1057     - Remove the testing_since field of node_t, which hasn't been used
1058       for anything since 0.2.0.9-alpha.
1059     - Finally remove support for malloc_good_size and malloc_usable_size.
1060       We had hoped that these functions would let us eke a little more
1061       memory out of our malloc implementation. Unfortunately, the only
1062       implementations that provided these functions are also ones that
1063       are already efficient about not overallocation: they never got us
1064       more than 7 or so bytes per allocation. Removing them saves us a
1065       little code complexity and a nontrivial amount of build complexity.
1068 Changes in version 0.2.3.25 - 2012-11-19
1069   The Tor 0.2.3 release series is dedicated to the memory of Len "rabbi"
1070   Sassaman (1980-2011), a long-time cypherpunk, anonymity researcher,
1071   Mixmaster maintainer, Pynchon Gate co-designer, CodeCon organizer,
1072   programmer, and friend. Unstinting in his dedication to the cause of
1073   freedom, he inspired and helped many of us as we began our work on
1074   anonymity, and inspires us still. Please honor his memory by writing
1075   software to protect people's freedoms, and by helping others to do so.
1077   Tor 0.2.3.25, the first stable release in the 0.2.3 branch, features
1078   significantly reduced directory overhead (via microdescriptors),
1079   enormous crypto performance improvements for fast relays on new
1080   enough hardware, a new v3 TLS handshake protocol that can better
1081   resist fingerprinting, support for protocol obfuscation plugins (aka
1082   pluggable transports), better scalability for hidden services, IPv6
1083   support for bridges, performance improvements like allowing clients
1084   to skip the first round-trip on the circuit ("optimistic data") and
1085   refilling token buckets more often, a new "stream isolation" design
1086   to isolate different applications on different circuits, and many
1087   stability, security, and privacy fixes.
1089   Major features (v3 directory protocol):
1090     - Clients now use microdescriptors instead of regular descriptors
1091       to build circuits. Microdescriptors are authority-generated
1092       summaries of regular descriptors' contents, designed to change very
1093       rarely (see proposal 158 for details). This feature is designed
1094       to save bandwidth, especially for clients on slow internet
1095       connections. Use "UseMicrodescriptors 0" to disable it.
1096     - Caches now download, cache, and serve microdescriptors, as well
1097       as multiple "flavors" of the consensus, including a flavor that
1098       describes microdescriptors.
1100   o Major features (build hardening):
1101     - Enable gcc and ld hardening by default. Resolves ticket 5210.
1103   o Major features (relay scaling):
1104     - When built to use OpenSSL 1.0.1, and built for an x86 or x86_64
1105       instruction set, take advantage of OpenSSL's AESNI, bitsliced, or
1106       vectorized AES implementations as appropriate. These can be much,
1107       much faster than other AES implementations.
1108     - When using OpenSSL 1.0.0 or later, use OpenSSL's counter mode
1109       implementation. It makes AES_CTR about 7% faster than our old one
1110       (which was about 10% faster than the one OpenSSL used to provide).
1111       Resolves ticket 4526.
1112     - Use OpenSSL's EVP interface for AES encryption, so that all AES
1113       operations can use hardware acceleration (if present). Resolves
1114       ticket 4442.
1115     - Unconditionally use OpenSSL's AES implementation instead of our
1116       old built-in one. OpenSSL's AES has been better for a while, and
1117       relatively few servers should still be on any version of OpenSSL
1118       that doesn't have good optimized assembly AES.
1120   o Major features (blocking resistance):
1121     - Update TLS cipher list to match Firefox 8 and later. Resolves
1122       ticket 4744.
1123     - Remove support for clients falsely claiming to support standard
1124       ciphersuites that they can actually provide. As of modern OpenSSL
1125       versions, it's not necessary to fake any standard ciphersuite,
1126       and doing so prevents us from using better ciphersuites in the
1127       future, since servers can't know whether an advertised ciphersuite
1128       is really supported or not. Some hosts -- notably, ones with very
1129       old versions of OpenSSL or where OpenSSL has been built with ECC
1130       disabled -- will stand out because of this change; TBB users should
1131       not be affected. Implements the client side of proposal 198.
1132     - Implement a new handshake protocol (v3) for authenticating Tors to
1133       each other over TLS. It should be more resistant to fingerprinting
1134       than previous protocols, and should require less TLS hacking for
1135       future Tor implementations. Implements proposal 176.
1136     - Allow variable-length padding cells, to disguise the length of
1137       Tor's TLS records. Implements part of proposal 184.
1138     - While we're trying to bootstrap, record how many TLS connections
1139       fail in each state, and report which states saw the most failures
1140       in response to any bootstrap failures. This feature may speed up
1141       diagnosis of censorship events. Implements ticket 3116.
1143   o Major features (pluggable transports):
1144     - Clients and bridges can now be configured to use a separate
1145       "transport" proxy. This approach makes the censorship arms race
1146       easier by allowing bridges to use protocol obfuscation plugins.
1147       Implements proposal 180 (tickets 2841 and 3472).
1149   o Major features (DoS resistance):
1150     - Now that Tor 0.2.0.x is completely deprecated, enable the final
1151       part of "Proposal 110: Avoiding infinite length circuits" by
1152       refusing all circuit-extend requests that do not use a relay_early
1153       cell. This change helps Tor resist a class of denial-of-service
1154       attacks by limiting the maximum circuit length.
1155     - Tear down the circuit if we get an unexpected SENDME cell. Clients
1156       could use this trick to make their circuits receive cells faster
1157       than our flow control would have allowed, or to gum up the network,
1158       or possibly to do targeted memory denial-of-service attacks on
1159       entry nodes. Fixes bug 6252. Bugfix on the 54th commit on Tor --
1160       from July 2002, before the release of Tor 0.0.0.
1162   o Major features (hidden services):
1163     - Adjust the number of introduction points that a hidden service
1164       will try to maintain based on how long its introduction points
1165       remain in use and how many introductions they handle. Fixes
1166       part of bug 3825.
1167     - Add a "tor2web mode" for clients that want to connect to hidden
1168       services non-anonymously (and possibly more quickly). As a safety
1169       measure to try to keep users from turning this on without knowing
1170       what they are doing, tor2web mode must be explicitly enabled at
1171       compile time, and a copy of Tor compiled to run in tor2web mode
1172       cannot be used as a normal Tor client. Implements feature 2553.
1174   o Major features (IPv6):
1175     - Clients can now connect to private bridges over IPv6. Bridges
1176       still need at least one IPv4 address in order to connect to
1177       other relays. Note that we don't yet handle the case where the
1178       user has two bridge lines for the same bridge (one IPv4, one
1179       IPv6). Implements parts of proposal 186.
1181   o Major features (directory authorities):
1182     - Use a more secure consensus parameter voting algorithm. Now at
1183       least three directory authorities or a majority of them must
1184       vote on a given parameter before it will be included in the
1185       consensus. Implements proposal 178.
1186     - Remove the artificially low cutoff of 20KB to guarantee the Fast
1187       flag. In the past few years the average relay speed has picked
1188       up, and while the "top 7/8 of the network get the Fast flag" and
1189       "all relays with 20KB or more of capacity get the Fast flag" rules
1190       used to have the same result, now the top 7/8 of the network has
1191       a capacity more like 32KB. Bugfix on 0.2.1.14-rc. Fixes bug 4489.
1193   o Major features (performance):
1194     - Exit nodes now accept and queue data on not-yet-connected streams.
1195       Previously, the client wasn't allowed to send data until the
1196       stream was connected, which slowed down all connections. This
1197       change will enable clients to perform a "fast-start" on streams
1198       and send data without having to wait for a confirmation that the
1199       stream has opened. Patch from Ian Goldberg; implements the server
1200       side of Proposal 174.
1201     - When using an exit relay running 0.2.3.x, clients can now
1202       "optimistically" send data before the exit relay reports that
1203       the stream has opened. This saves a round trip when starting
1204       connections where the client speaks first (such as web browsing).
1205       This behavior is controlled by a consensus parameter (currently
1206       disabled). To turn it on or off manually, use the "OptimisticData"
1207       torrc option. Implements proposal 181; code by Ian Goldberg.
1208     - Add a new TokenBucketRefillInterval option to refill token buckets
1209       more frequently than once per second. This should improve network
1210       performance, alleviate queueing problems, and make traffic less
1211       bursty. Implements proposal 183; closes ticket 3630. Design by
1212       Florian Tschorsch and Björn Scheuermann; implementation by
1213       Florian Tschorsch.
1214     - Raise the threshold of server descriptors needed (75%) and exit
1215       server descriptors needed (50%) before we will declare ourselves
1216       bootstrapped. This will make clients start building circuits a
1217       little later, but makes the initially constructed circuits less
1218       skewed and less in conflict with further directory fetches. Fixes
1219       ticket 3196.
1221   o Major features (relays):
1222     - Relays now try regenerating and uploading their descriptor more
1223       frequently if they are not listed in the consensus, or if the
1224       version of their descriptor listed in the consensus is too
1225       old. This fix should prevent situations where a server declines
1226       to re-publish itself because it has done so too recently, even
1227       though the authorities decided not to list its recent-enough
1228       descriptor. Fix for bug 3327.
1230   o Major features (stream isolation):
1231     - You can now configure Tor so that streams from different
1232       applications are isolated on different circuits, to prevent an
1233       attacker who sees your streams as they leave an exit node from
1234       linking your sessions to one another. To do this, choose some way
1235       to distinguish the applications: have them connect to different
1236       SocksPorts, or have one of them use SOCKS4 while the other uses
1237       SOCKS5, or have them pass different authentication strings to the
1238       SOCKS proxy. Then, use the new SocksPort syntax to configure the
1239       degree of isolation you need. This implements Proposal 171.
1240     - There's a new syntax for specifying multiple client ports (such as
1241       SOCKSPort, TransPort, DNSPort, NATDPort): you can now just declare
1242       multiple *Port entries with full addr:port syntax on each.
1243       The old *ListenAddress format is still supported, but you can't
1244       mix it with the new *Port syntax.
1246   o Major features (bufferevents):
1247     - Tor can now optionally build with the "bufferevents" buffered IO
1248       backend provided by Libevent 2. To use this feature, make sure you
1249       have the latest possible version of Libevent, and pass the
1250       --enable-bufferevents flag to configure when building Tor from
1251       source. This feature will make our networking code more flexible,
1252       let us stack layers on each other, and let us use more efficient
1253       zero-copy transports where available.
1254     - Add experimental support for running on Windows with IOCP and no
1255       kernel-space socket buffers. This feature is controlled by a new
1256       "UserspaceIOCPBuffers" config option (off by default), which has
1257       no effect unless Tor has been built with bufferevents enabled,
1258       you're running on Windows, and you've set "DisableIOCP 0". In the
1259       long run, this may help solve or mitigate bug 98.
1261   o Major features (path selection):
1262     - The EntryNodes option can now include country codes like {de} or IP
1263       addresses or network masks. Previously we had disallowed these
1264       options because we didn't have an efficient way to keep the list up
1265       to date. Addresses ticket 1982, but see bug 2798 for an unresolved
1266       issue here.
1268   o Major features (port forwarding):
1269     - Add support for automatic port mapping on the many home routers
1270       that support NAT-PMP or UPnP. To build the support code, you'll
1271       need to have the libnatpnp library and/or the libminiupnpc library,
1272       and you'll need to enable the feature specifically by passing
1273       "--enable-upnp" and/or "--enable-natpnp" to ./configure. To turn
1274       it on, use the new PortForwarding option.
1276   o Major features (logging):
1277     - Add a new 'Heartbeat' log message type to periodically log a message
1278       describing Tor's status at level Notice. This feature is meant for
1279       operators who log at notice, and want to make sure that their Tor
1280       server is still working. Implementation by George Kadianakis.
1281     - Make logging resolution configurable with a new LogTimeGranularity
1282       option, and change the default from 1 millisecond to 1 second.
1283       Implements enhancement 1668.
1285   o Major features (other):
1286     - New "DisableNetwork" config option to prevent Tor from launching any
1287       connections or accepting any connections except on a control port.
1288       Bundles and controllers can set this option before letting Tor talk
1289       to the rest of the network, for example to prevent any connections
1290       to a non-bridge address. Packages like Orbot can also use this
1291       option to instruct Tor to save power when the network is off.
1292     - Try to use system facilities for enumerating local interface
1293       addresses, before falling back to our old approach (which was
1294       binding a UDP socket, and calling getsockname() on it). That
1295       approach was scaring OS X users whose draconian firewall
1296       software warned about binding to UDP sockets regardless of
1297       whether packets were sent. Now we try to use getifaddrs(),
1298       SIOCGIFCONF, or GetAdaptersAddresses(), depending on what the
1299       system supports. Resolves ticket 1827.
1300     - Add experimental support for a "defaults" torrc file to be parsed
1301       before the regular torrc. Torrc options override the defaults file's
1302       options in the same way that the command line overrides the torrc.
1303       The SAVECONF controller command saves only those options which
1304       differ between the current configuration and the defaults file. HUP
1305       reloads both files. Implements task 4552.
1307   o New directory authorities:
1308     - Add Faravahar (run by Sina Rabbani) as the ninth v3 directory
1309       authority. Closes ticket 5749.
1311   o Security/privacy fixes:
1312     - Avoid read-from-freed-memory and double-free bugs that could occur
1313       when a DNS request fails while launching it. Fixes bug 6480;
1314       bugfix on 0.2.0.1-alpha.
1315     - Reject any attempt to extend to an internal address. Without
1316       this fix, a router could be used to probe addresses on an internal
1317       network to see whether they were accepting connections. Fixes bug
1318       6710; bugfix on 0.0.8pre1.
1319     - Close any connection that sends unrecognized junk before the TLS
1320       handshake. Solves an issue noted in bug 4369.
1321     - The advertised platform of a relay now includes only its operating
1322       system's name (e.g., "Linux", "Darwin", "Windows 7"), and not
1323       its service pack level (for Windows) or its CPU architecture
1324       (for Unix). Also drop the "git-XYZ" tag in the version. Packagers
1325       can insert an extra string in the platform line by setting the
1326       preprocessor variable TOR_BUILD_TAG. Resolves bug 2988.
1327     - Disable TLS session tickets. OpenSSL's implementation was giving
1328       our TLS session keys the lifetime of our TLS context objects, when
1329       perfect forward secrecy would want us to discard anything that
1330       could decrypt a link connection as soon as the link connection
1331       was closed. Fixes bug 7139; bugfix on all versions of Tor linked
1332       against OpenSSL 1.0.0 or later. Found by Florent Daignière.
1333     - Tor tries to wipe potentially sensitive data after using it, so
1334       that if some subsequent security failure exposes Tor's memory,
1335       the damage will be limited. But we had a bug where the compiler
1336       was eliminating these wipe operations when it decided that the
1337       memory was no longer visible to a (correctly running) program,
1338       hence defeating our attempt at defense in depth. We fix that
1339       by using OpenSSL's OPENSSL_cleanse() operation, which a compiler
1340       is unlikely to optimize away. Future versions of Tor may use
1341       a less ridiculously heavy approach for this. Fixes bug 7352.
1342       Reported in an article by Andrey Karpov.
1344   o Major bugfixes (crashes and asserts):
1345     - Avoid a pair of double-free and use-after-mark bugs that can
1346       occur with certain timings in canceled and re-received DNS
1347       requests. Fixes bug 6472; bugfix on 0.0.7rc1.
1348     - Fix a denial of service attack by which any directory authority
1349       could crash all the others, or by which a single v2 directory
1350       authority could crash everybody downloading v2 directory
1351       information. Fixes bug 7191; bugfix on 0.2.0.10-alpha.
1352     - Fix an assert that directory authorities could trigger on sighup
1353       during some configuration state transitions. We now don't treat
1354       it as a fatal error when the new descriptor we just generated in
1355       init_keys() isn't accepted. Fixes bug 4438; bugfix on 0.2.1.9-alpha.
1356     - Avoid segfault when starting up having run with an extremely old
1357       version of Tor and parsing its state file. Fixes bug 6801; bugfix
1358       on 0.2.2.23-alpha.
1360   o Major bugfixes (clients):
1361     - If we are unable to find any exit that supports our predicted ports,
1362       stop calling them predicted, so that we don't loop and build
1363       hopeless circuits indefinitely. Fixes bug 3296; bugfix on 0.0.9pre6,
1364       which introduced predicted ports.
1365     - Check at each new consensus whether our entry guards were picked
1366       long enough ago that we should rotate them. Previously, we only
1367       did this check at startup, which could lead to us holding a guard
1368       indefinitely. Fixes bug 5380; bugfix on 0.2.1.14-rc.
1369     - When fetching a bridge descriptor from a bridge authority,
1370       always do so anonymously, whether we have been able to open
1371       circuits or not. Partial fix for bug 1938; bugfix on 0.2.0.7-alpha.
1372       This behavior makes it *safer* to use UpdateBridgesFromAuthority,
1373       but we'll need to wait for bug 6010 before it's actually usable.
1375   o Major bugfixes (directory voting):
1376     - Check more thoroughly to prevent a rogue authority from
1377       double-voting on any consensus directory parameter. Previously,
1378       authorities would crash in this case if the total number of
1379       votes for any parameter exceeded the number of active voters,
1380       but would let it pass otherwise. Partially fixes bug 5786; bugfix
1381       on 0.2.2.2-alpha.
1382     - When computing weight parameters, behave more robustly in the
1383       presence of a bad bwweightscale value. Previously, the authorities
1384       would crash if they agreed on a sufficiently broken weight_scale
1385       value; now, they use a reasonable default and carry on. Fixes the
1386       rest of bug 5786; bugfix on 0.2.2.17-alpha.
1387     - If authorities are unable to get a v2 consensus document from other
1388       directory authorities, they no longer fall back to fetching
1389       them from regular directory caches. Fixes bug 5635; bugfix on
1390       0.2.2.26-beta, where routers stopped downloading v2 consensus
1391       documents entirely.
1393   o Major bugfixes (relays):
1394     - Fix a bug handling SENDME cells on nonexistent streams that could
1395       result in bizarre window values. Report and patch contributed
1396       pseudonymously. Fixes part of bug 6271. This bug was introduced
1397       before the first Tor release, in svn commit r152.
1398     - Don't update the AccountingSoftLimitHitAt state file entry whenever
1399       tor gets started. This prevents a wrong average bandwidth
1400       estimate, which would cause relays to always start a new accounting
1401       interval at the earliest possible moment. Fixes bug 2003; bugfix
1402       on 0.2.2.7-alpha. Reported by Bryon Eldridge, who also helped
1403       immensely in tracking this bug down.
1404     - Fix a possible crash bug when checking for deactivated circuits
1405       in connection_or_flush_from_first_active_circuit(). Fixes bug 6341;
1406       bugfix on 0.2.2.7-alpha. Bug report and fix received pseudonymously.
1407     - Set the SO_REUSEADDR socket option before we call bind() on outgoing
1408       connections. This change should allow busy exit relays to stop
1409       running out of available sockets as quickly. Fixes bug 4950;
1410       bugfix on 0.2.2.26-beta.
1412   o Major bugfixes (blocking resistance):
1413     - Bridges no longer include their address in NETINFO cells on outgoing
1414       OR connections, to allow them to blend in better with clients.
1415       Removes another avenue for enumerating bridges. Reported by
1416       "troll_un". Fixes bug 4348; bugfix on 0.2.0.10-alpha, when NETINFO
1417       cells were introduced.
1418     - Warn the user when HTTPProxy, but no other proxy type, is
1419       configured. This can cause surprising behavior: it doesn't send
1420       all of Tor's traffic over the HTTPProxy -- it sends unencrypted
1421       directory traffic only. Resolves ticket 4663.
1423   o Major bugfixes (hidden services):
1424     - Improve hidden service robustness: when an attempt to connect to
1425       a hidden service ends, be willing to refetch its hidden service
1426       descriptors from each of the HSDir relays responsible for them
1427       immediately. Previously, we would not consider refetching the
1428       service's descriptors from each HSDir for 15 minutes after the last
1429       fetch, which was inconvenient if the hidden service was not running
1430       during the first attempt. Bugfix on 0.2.0.18-alpha; fixes bug 3335.
1431     - Hidden services now ignore the timestamps on INTRODUCE2 cells.
1432       They used to check that the timestamp was within 30 minutes
1433       of their system clock, so they could cap the size of their
1434       replay-detection cache, but that approach unnecessarily refused
1435       service to clients with wrong clocks. Bugfix on 0.2.1.6-alpha, when
1436       the v3 intro-point protocol (the first one which sent a timestamp
1437       field in the INTRODUCE2 cell) was introduced; fixes bug 3460.
1438     - When one of a hidden service's introduction points appears to be
1439       unreachable, stop trying it. Previously, we would keep trying
1440       to build circuits to the introduction point until we lost the
1441       descriptor, usually because the user gave up and restarted Tor.
1442       Fixes part of bug 3825.
1444   o Changes to default torrc file:
1445     - Stop listing "socksport 9050" in torrc.sample. We open a socks
1446       port on 9050 by default anyway, so this should not change anything
1447       in practice.
1448     - Stop mentioning the deprecated *ListenAddress options in
1449       torrc.sample. Fixes bug 5438.
1450     - Document unit of bandwidth-related options in sample torrc.
1451       Fixes bug 5621.
1452     - Fix broken URLs in the sample torrc file, and tell readers about
1453       the OutboundBindAddress, ExitPolicyRejectPrivate, and
1454       PublishServerDescriptor options. Addresses bug 4652.
1456   o Minor features (directory authorities):
1457     - Consider new, removed or changed IPv6 OR ports a non-cosmetic
1458       change when the authority is deciding whether to accept a newly
1459       uploaded descriptor. Implements ticket 6423.
1460     - Directory authorities are now a little more lenient at accepting
1461       older router descriptors, or newer router descriptors that don't
1462       make big changes. This should help ameliorate past and future
1463       issues where routers think they have uploaded valid descriptors,
1464       but the authorities don't think so. Fix for ticket 2479.
1465     - Authority operators can now vote for all relays in a given
1466       set of countries to be BadDir/BadExit/Invalid/Rejected.
1467     - Provide two consensus parameters (FastFlagMinThreshold and
1468       FastFlagMaxThreshold) to control the range of allowable bandwidths
1469       for the Fast directory flag. These allow authorities to run
1470       experiments on appropriate requirements for being a "Fast" node.
1471       The AuthDirFastGuarantee config value still applies. Implements
1472       ticket 3946.
1474   o Minor features (bridges / bridge authorities):
1475     - Make bridge SSL certificates a bit more stealthy by using random
1476       serial numbers, in the same fashion as OpenSSL when generating
1477       self-signed certificates. Implements ticket 4584.
1478     - Tag a bridge's descriptor as "never to be sent unencrypted".
1479       This shouldn't matter, since bridges don't open non-anonymous
1480       connections to the bridge authority and don't allow unencrypted
1481       directory connections from clients, but we might as well make
1482       sure. Closes bug 5139.
1483     - The Bridge Authority now writes statistics on how many bridge
1484       descriptors it gave out in total, and how many unique descriptors
1485       it gave out. It also lists how often the most and least commonly
1486       fetched descriptors were given out, as well as the median and
1487       25th/75th percentile. Implements tickets 4200 and 4294.
1489   o Minor features (IPv6):
1490     - Make the code that clients use to detect an address change be
1491       IPv6-aware, so that it won't fill clients' logs with error
1492       messages when trying to get the IPv4 address of an IPv6
1493       connection. Implements ticket 5537.
1494     - Relays now understand an IPv6 address when they get one from a
1495       directory server. Resolves ticket 4875.
1497   o Minor features (hidden services):
1498     - Expire old or over-used hidden service introduction points.
1499       Required by fix for bug 3460.
1500     - Reduce the lifetime of elements of hidden services' Diffie-Hellman
1501       public key replay-detection cache from 60 minutes to 5 minutes. This
1502       replay-detection cache is now used only to detect multiple
1503       INTRODUCE2 cells specifying the same rendezvous point, so we can
1504       avoid launching multiple simultaneous attempts to connect to it.
1505     - When a hidden service's introduction point times out, consider
1506       trying it again during the next attempt to connect to the
1507       HS. Previously, we would not try it again unless a newly fetched
1508       descriptor contained it. Required by fixes for bugs 1297 and 3825.
1510   o Minor features (relays):
1511     - Relays now include a reason for regenerating their descriptors
1512       in an HTTP header when uploading to the authorities. This will
1513       make it easier to debug descriptor-upload issues in the future.
1514     - Turn on directory request statistics by default and include them in
1515       extra-info descriptors. Don't break if we have no GeoIP database.
1516     - Replace files in stats/ rather than appending to them. Now that we
1517       include statistics in extra-info descriptors, it makes no sense to
1518       keep old statistics forever. Implements ticket 2930.
1519     - Relays that set "ConnDirectionStatistics 1" write statistics on the
1520       bidirectional use of connections to disk every 24 hours.
1521     - Add a GeoIP file digest to the extra-info descriptor. Implements
1522       ticket 1883.
1524   o Minor features (new config options):
1525     - New config option "DynamicDHGroups" (disabled by default) provides
1526       each bridge with a unique prime DH modulus to be used during
1527       SSL handshakes. This option attempts to help against censors
1528       who might use the Apache DH modulus as a static identifier for
1529       bridges. Addresses ticket 4548.
1530     - New config option "DisableDebuggerAttachment" (on by default)
1531       to prevent basic debugging attachment attempts by other processes.
1532       Supports Mac OS X and Gnu/Linux. Resolves ticket 3313.
1533     - Ordinarily, Tor does not count traffic from private addresses (like
1534       127.0.0.1 or 10.0.0.1) when calculating rate limits or accounting.
1535       There is now a new option, CountPrivateBandwidth, to disable this
1536       behavior. Patch from Daniel Cagara.
1538   o Minor features (different behavior for old config options):
1539     - Allow MapAddress directives to specify matches against super-domains,
1540       as in "MapAddress *.torproject.org *.torproject.org.torserver.exit".
1541       Implements issue 933.
1542     - Don't disable the DirPort when we cannot exceed our AccountingMax
1543       limit during this interval because the effective bandwidthrate is
1544       low enough. This is useful in a situation where AccountMax is only
1545       used as an additional safeguard or to provide statistics.
1546     - Add port 6523 (Gobby) to LongLivedPorts. Patch by intrigeri;
1547       implements ticket 3439.
1548     - When configuring a large set of nodes in EntryNodes, and there are
1549       enough of them listed as Guard so that we don't need to consider
1550       the non-guard entries, prefer the ones listed with the Guard flag.
1551     - If you set the NumCPUs option to 0, Tor will now try to detect how
1552       many CPUs you have. This is the new default behavior.
1553     - The NodeFamily option -- which let you declare that you want to
1554       consider nodes to be part of a family whether they list themselves
1555       that way or not -- now allows IP address ranges and country codes.
1557   o Minor features (new command-line config behavior):
1558     - Slightly change behavior of "list" options (that is, config
1559       options that can appear more than once) when they appear both in
1560       torrc and on the command line. Previously, the command-line options
1561       would be appended to the ones from torrc. Now, the command-line
1562       options override the torrc options entirely. This new behavior
1563       allows the user to override list options (like exit policies and
1564       ports to listen on) from the command line, rather than simply
1565       appending to the list.
1566     - You can get the old (appending) command-line behavior for "list"
1567       options by prefixing the option name with a "+".
1568     - You can remove all the values for a "list" option from the command
1569       line without adding any new ones by prefixing the option name
1570       with a "/".
1572   o Minor features (controller, new events):
1573     - Extend the control protocol to report flags that control a circuit's
1574       path selection in CIRC events and in replies to 'GETINFO
1575       circuit-status'. Implements part of ticket 2411.
1576     - Extend the control protocol to report the hidden service address
1577       and current state of a hidden-service-related circuit in CIRC
1578       events and in replies to 'GETINFO circuit-status'. Implements part
1579       of ticket 2411.
1580     - Include the creation time of a circuit in CIRC and CIRC2
1581       control-port events and the list produced by the 'GETINFO
1582       circuit-status' control-port command.
1583     - Add a new CONF_CHANGED event so that controllers can be notified
1584       of any configuration changes made by other controllers, or by the
1585       user. Implements ticket 1692.
1586     - Add a new SIGNAL event to the controller interface so that
1587       controllers can be notified when Tor handles a signal. Resolves
1588       issue 1955. Patch by John Brooks.
1590   o Minor features (controller, new getinfo options):
1591     - Expose our view of whether we have gone dormant to the controller,
1592       via a new "GETINFO dormant" value. Torbutton and other controllers
1593       can use this to avoid doing periodic requests through Tor while
1594       it's dormant (bug 4718). Resolves ticket 5954.
1595     - Add a new GETINFO option to get total bytes read and written. Patch
1596       from pipe, revised by atagar. Resolves ticket 2345.
1597     - Implement new GETINFO controller fields to provide information about
1598       the Tor process's pid, euid, username, and resource limits.
1600   o Minor features (controller, other):
1601     - Allow controllers to request an event notification whenever a
1602       circuit is cannibalized or its purpose is changed. Implements
1603       part of ticket 3457.
1604     - Use absolute path names when reporting the torrc filename in the
1605       control protocol, so a controller can more easily find the torrc
1606       file. Resolves bug 1101.
1607     - When reporting the path to the cookie file to the controller,
1608       give an absolute path. Resolves ticket 4881.
1610   o Minor features (log messages):
1611     - Add more information to a log statement that might help track down
1612       bug 4091. If you're seeing "Bug: tor_addr_is_internal() called with a
1613       non-IP address" messages (or any Bug messages, for that matter!),
1614       please let us know about it.
1615     - If EntryNodes are given, but UseEntryGuards is set to 0, warn that
1616       EntryNodes will have no effect. Resolves issue 2571.
1617     - Try to make the introductory warning message that Tor prints on
1618       startup more useful for actually finding help and information.
1619       Resolves ticket 2474.
1620     - When the system call to create a listener socket fails, log the
1621       error message explaining why. This may help diagnose bug 4027.
1623   o Minor features (other):
1624     - When we fail to initialize Libevent, retry with IOCP disabled so we
1625       don't need to turn on multi-threading support in Libevent, which in
1626       turn requires a working socketpair(). This is a workaround for bug
1627       4457, which affects Libevent versions from 2.0.1-alpha through
1628       2.0.15-stable.
1629     - When starting as root and then changing our UID via the User
1630       control option, and we have a ControlSocket configured, make sure
1631       that the ControlSocket is owned by the same account that Tor will
1632       run under. Implements ticket 3421; fix by Jérémy Bobbio.
1633     - Accept attempts to include a password authenticator in the
1634       handshake, as supported by SOCKS5. This handles SOCKS clients that
1635       don't know how to omit a password when authenticating. Resolves
1636       bug 1666.
1637     - Check for and recover from inconsistency in the microdescriptor
1638       cache. This will make it harder for us to accidentally free a
1639       microdescriptor without removing it from the appropriate data
1640       structures. Fixes issue 3135; issue noted by "wanoskarnet".
1641     - Shorten links in the tor-exit-notice file. Patch by Christian Kujau.
1643   o Minor bugfixes (code security):
1644     - Prevent a null-pointer dereference when receiving a data cell
1645       for a nonexistent stream when the circuit in question has an
1646       empty deliver window. We don't believe this is triggerable,
1647       since we don't currently allow deliver windows to become empty,
1648       but the logic is tricky enough that it's better to make the code
1649       robust. Fixes bug 5541; bugfix on 0.0.2pre14.
1650     - Fix a (harmless) integer overflow in cell statistics reported by
1651       some fast relays. Fixes bug 5849; bugfix on 0.2.2.1-alpha.
1652     - Fix our implementation of crypto_random_hostname() so it can't
1653       overflow on ridiculously large inputs. (No Tor version has ever
1654       provided this kind of bad inputs, but let's be correct in depth.)
1655       Fixes bug 4413; bugfix on 0.2.2.9-alpha. Fix by Stephen Palmateer.
1656     - Add a (probably redundant) memory clear between iterations of
1657       the router status voting loop, to prevent future coding errors
1658       where data might leak between iterations of the loop. Resolves
1659       ticket 6514.
1661   o Minor bugfixes (wrapper functions):
1662     - Abort if tor_vasprintf() fails in connection_printf_to_buf() (a
1663       utility function used in the control-port code). This shouldn't
1664       ever happen unless Tor is completely out of memory, but if it did
1665       happen and Tor somehow recovered from it, Tor could have sent a log
1666       message to a control port in the middle of a reply to a controller
1667       command. Fixes part of bug 3428; bugfix on 0.1.2.3-alpha.
1668     - Fix some (not actually triggerable) buffer size checks in usage of
1669       tor_inet_ntop(). Fixes bug 4434; bugfix on Tor 0.2.0.1-alpha. Patch
1670       by Anders Sundman.
1671     - Fix parsing of some corner-cases with tor_inet_pton(). Fixes
1672       bug 4515; bugfix on 0.2.0.1-alpha; fix by Anders Sundman.
1673     - Enforce correct return behavior of tor_vsscanf() when the '%%'
1674       pattern is used. Fixes bug 5558. Bugfix on 0.2.1.13.
1675     - Make our replacement implementation of strtok_r() compatible with
1676       the standard behavior of strtok_r(). Patch by nils. Fixes bug 5091;
1677       bugfix on 0.2.2.1-alpha.
1678     - Find more places in the code that should have been testing for
1679       invalid sockets using the SOCKET_OK macro. Required for a fix
1680       for bug 4533. Bugfix on 0.2.2.28-beta.
1682   o Minor bugfixes (code correctness):
1683     - Check return value of fputs() when writing authority certificate
1684       file. Fixes Coverity issue 709056; bugfix on 0.2.0.1-alpha.
1685     - When building Tor on Windows with -DUNICODE (not default), ensure
1686       that error messages, filenames, and DNS server names are always
1687       NUL-terminated when we convert them to a single-byte encoding.
1688       Fixes bug 5909; bugfix on 0.2.2.16-alpha.
1689     - Fix a memory leak when trying to launch a DNS request when the
1690       nameservers are unconfigurable. Fixes bug 5916; bugfix on Tor
1691       0.1.2.1-alpha.
1692     - Correct file sizes when reading binary files on Cygwin, to avoid
1693       a bug where Tor would fail to read its state file. Fixes bug 6844;
1694       bugfix on 0.1.2.7-alpha.
1695     - Make sure to set *socket_error in all error cases in
1696       connection_connect(), so it can't produce a warning about
1697       errno being zero from errno_to_orconn_end_reason(). Bugfix on
1698       0.2.1.1-alpha; resolves ticket 6028.
1699     - Initialize conn->addr to a valid state in spawn_cpuworker(). Fixes
1700       bug 4532; found by "troll_un".
1702   o Minor bugfixes (clients):
1703     - Allow one-hop directory-fetching circuits the full "circuit build
1704       timeout" period, rather than just half of it, before failing them
1705       and marking the relay down. This fix should help reduce cases where
1706       clients declare relays (or worse, bridges) unreachable because
1707       the TLS handshake takes a few seconds to complete. Fixes bug 6743;
1708       bugfix on 0.2.2.2-alpha, where we changed the timeout from a static
1709       30 seconds.
1710     - Ensure we don't cannibalize circuits that are longer than three hops
1711       already, so we don't end up making circuits with 5 or more
1712       hops. Patch contributed by wanoskarnet. Fixes bug 5231; bugfix on
1713       0.1.0.1-rc which introduced cannibalization.
1715   o Minor bugfixes (relays):
1716     - Don't publish a new relay descriptor when we reload our onion key,
1717       unless the onion key has actually changed. Fixes bug 3263 and
1718       resolves another cause of bug 1810. Bugfix on 0.1.1.11-alpha.
1719     - When relays refuse a "create" cell because their queue of pending
1720       create cells is too big (typically because their cpu can't keep up
1721       with the arrival rate), send back reason "resource limit" rather
1722       than reason "internal", so network measurement scripts can get a
1723       more accurate picture. Bugfix on 0.1.1.11-alpha; fixes bug 7037.
1724     - Exit nodes don't need to fetch certificates for authorities that
1725       they don't recognize; only directory authorities, bridges,
1726       and caches need to do that. Fixes part of bug 2297; bugfix on
1727       0.2.2.11-alpha.
1729   o Minor bugfixes (directory authority / mirrors):
1730     - Avoid O(n^2) performance characteristics when parsing a large
1731       extrainfo cache. Fixes bug 5828; bugfix on 0.2.0.1-alpha.
1732     - Authorities no longer include any router in their microdescriptor
1733       consensuses for which they couldn't generate or agree on a
1734       microdescriptor. Fixes the second piece of bug 6404; fix on
1735       0.2.2.6-alpha.
1736     - When checking for requested signatures on the latest consensus
1737       before serving it to a client, make sure to check the right
1738       consensus flavor. Bugfix on 0.2.2.6-alpha.
1739     - Fix an edge case where TestingTorNetwork is set but the authorities
1740       and relays all have an uptime of zero, so the private Tor network
1741       could briefly lack support for hidden services. Fixes bug 3886;
1742       bugfix on 0.2.2.18-alpha.
1743     - Directory caches no longer refuse to clean out descriptors because
1744       of missing v2 networkstatus documents, unless they're configured
1745       to retrieve v2 networkstatus documents. Fixes bug 4838; bugfix on
1746       0.2.2.26-beta. Patch by Daniel Bryg.
1747     - Don't serve or accept v2 hidden service descriptors over a relay's
1748       DirPort. It's never correct to do so, and disabling it might
1749       make it more annoying to exploit any bugs that turn up in the
1750       descriptor-parsing code. Fixes bug 7149.
1752   o Minor bugfixes (hidden services, client-side):
1753     - Assert that hidden-service-related operations are not performed
1754       using single-hop circuits. Previously, Tor would assert that
1755       client-side streams are not attached to single-hop circuits,
1756       but not that other sensitive operations on the client and service
1757       side are not performed using single-hop circuits. Fixes bug 3332;
1758       bugfix on 0.0.6.
1759     - Avoid undefined behaviour when parsing the list of supported
1760       rendezvous/introduction protocols in a hidden service descriptor.
1761       Previously, Tor would have confused (as-yet-unused) protocol version
1762       numbers greater than 32 with lower ones on many platforms. Fixes
1763       bug 6827; bugfix on 0.2.0.10-alpha. Found by George Kadianakis.
1764     - Don't close hidden service client circuits which have almost
1765       finished connecting to their destination when they reach
1766       the normal circuit-build timeout. Previously, we would close
1767       introduction circuits which are waiting for an acknowledgement
1768       from the introduction point, and rendezvous circuits which have
1769       been specified in an INTRODUCE1 cell sent to a hidden service,
1770       after the normal CBT. Now, we mark them as 'timed out', and launch
1771       another rendezvous attempt in parallel. This behavior change can
1772       be disabled using the new CloseHSClientCircuitsImmediatelyOnTimeout
1773       option. Fixes part of bug 1297; bugfix on 0.2.2.2-alpha.
1775   o Minor bugfixes (hidden services, service-side):
1776     - Don't close hidden-service-side rendezvous circuits when they
1777       reach the normal circuit-build timeout. This behaviour change can
1778       be disabled using the new
1779       CloseHSServiceRendCircuitsImmediatelyOnTimeout option. Fixes the
1780       remaining part of bug 1297; bugfix on 0.2.2.2-alpha.
1781     - Don't launch more than 10 service-side introduction-point circuits
1782       for a hidden service in five minutes. Previously, we would consider
1783       launching more introduction-point circuits if at least one second
1784       had passed without any introduction-point circuits failing. Fixes
1785       bug 4607; bugfix on 0.0.7pre1.
1787   o Minor bugfixes (config option behavior):
1788     - If the user tries to set MyFamily on a bridge, refuse to
1789       do so, and warn about the security implications. Fixes bug 4657;
1790       bugfix on 0.2.0.3-alpha.
1791     - The "--quiet" and "--hush" options now apply not only to Tor's
1792       behavior before logs are configured, but also to Tor's behavior in
1793       the absense of configured logs. Fixes bug 3550; bugfix on
1794       0.2.0.10-alpha.
1795     - Change the AllowDotExit rules so they should actually work.
1796       We now enforce AllowDotExit only immediately after receiving an
1797       address via SOCKS or DNSPort: other sources are free to provide
1798       .exit addresses after the resolution occurs. Fixes bug 3940;
1799       bugfix on 0.2.2.1-alpha.
1800     - Make "LearnCircuitBuildTimeout 0" work more reliably. Specifically,
1801       don't depend on the consensus parameters or compute adaptive
1802       timeouts when it is disabled. Fixes bug 5049; bugfix on
1803       0.2.2.14-alpha.
1804     - After we pick a directory mirror, we would refuse to use it if
1805       it's in our ExcludeExitNodes list, resulting in mysterious failures
1806       to bootstrap for people who just wanted to avoid exiting from
1807       certain locations. Fixes bug 5623; bugfix on 0.2.2.25-alpha.
1808     - When told to add a bridge with the same digest as a preexisting
1809       bridge but a different addr:port, change the addr:port as
1810       requested. Previously we would not notice the change. Fixes half
1811       of bug 5603; fix on 0.2.2.26-beta.
1813   o Minor bugfixes (controller):
1814     - Allow manual 'authenticate' commands to the controller interface
1815       from netcat (nc) as well as telnet. We were rejecting them because
1816       they didn't come with the expected whitespace at the end of the
1817       command. Bugfix on 0.1.1.1-alpha; fixes bug 2893.
1818     - Report a real bootstrap problem to the controller on router
1819       identity mismatch. Previously we just said "foo", which probably
1820       made a lot of sense at the time. Fixes bug 4169; bugfix on
1821       0.2.1.1-alpha.
1822     - When we receive a SIGHUP and the controller __ReloadTorrcOnSIGHUP
1823       option is set to 0 (which Vidalia version 0.2.16 now does when
1824       a SAVECONF attempt fails), perform other actions that SIGHUP
1825       usually causes (like reopening the logs). Fixes bug 5095; bugfix
1826       on 0.2.1.9-alpha.
1827     - Correctly handle checking the permissions on the parent
1828       directory of a control socket in the root directory. Bug found
1829       by Esteban Manchado Velázquez. Fixes bug 5089; bugfix on Tor
1830       0.2.2.26-beta.
1831     - End AUTHCHALLENGE error messages (in the control protocol) with
1832       a CRLF. Fixes bug 5760; bugfix on 0.2.2.36.
1834   o Minor bugfixes (network reading/writing):
1835     - Disable writing on marked-for-close connections when they are
1836       blocked on bandwidth, to prevent busy-looping in Libevent. Fixes
1837       bug 5263; bugfix on 0.0.2pre13, where we first added a special
1838       case for flushing marked connections.
1839     - Make sure that there are no unhandled pending TLS errors before
1840       reading from a TLS stream. We had checks in 0.1.0.3-rc, but
1841       lost them in 0.1.0.5-rc when we refactored read_to_buf_tls().
1842       Bugfix on 0.1.0.5-rc; fixes bug 4528.
1843     - Detect SSL handshake even when the initial attempt to write the
1844       server hello fails. Fixes bug 4592; bugfix on 0.2.0.13-alpha.
1845     - If the client fails to set a reasonable set of ciphersuites
1846       during its v2 handshake renegotiation, allow the renegotiation to
1847       continue nevertheless (i.e. send all the required certificates).
1848       Fixes bug 4591; bugfix on 0.2.0.20-rc.
1850   o Minor bugfixes (other):
1851     - Exit nodes now correctly report EADDRINUSE and EADDRNOTAVAIL as
1852       resource exhaustion, so that clients can adjust their load to
1853       try other exits. Fixes bug 4710; bugfix on 0.1.0.1-rc, which
1854       started using END_STREAM_REASON_RESOURCELIMIT.
1855     - Don't check for whether the address we're using for outbound
1856       connections has changed until after the outbound connection has
1857       completed. On Windows, getsockname() doesn't succeed until the
1858       connection is finished. Fixes bug 5374; bugfix on 0.1.1.14-alpha.
1859     - Don't hold a Windows file handle open for every file mapping;
1860       the file mapping handle is sufficient. Fixes bug 5951; bugfix on
1861       0.1.2.1-alpha.
1862     - Fix wrong TCP port range in parse_port_range(). Fixes bug 6218;
1863       bugfix on 0.2.1.10-alpha.
1864     - If we fail to write a microdescriptor to the disk cache, do not
1865       continue replacing the old microdescriptor file. Fixes bug 2954;
1866       bugfix on 0.2.2.6-alpha.
1868   o Minor bugfixes (log messages, path selection):
1869     - Downgrade "set buildtimeout to low value" messages to "info"
1870       severity; they were never an actual problem, there was never
1871       anything reasonable to do about them, and they tended to spam logs
1872       from time to time. Fixes bug 6251; bugfix on 0.2.2.2-alpha.
1873     - Rate-limit the "Weighted bandwidth is 0.000000" message, and add
1874       more information to it, so that we can track it down in case it
1875       returns again. Mitigates bug 5235.
1876     - Check CircuitBuildTimeout and LearnCircuitBuildTimeout in
1877       options_validate(); warn if LearnCircuitBuildTimeout is disabled and
1878       CircuitBuildTimeout is set unreasonably low. Resolves ticket 5452.
1879     - Issue a log message if a guard completes less than 40% of your
1880       circuits. Threshold is configurable by torrc option
1881       PathBiasNoticeRate and consensus parameter pb_noticepct. There is
1882       additional, off-by-default code to disable guards which fail too
1883       many circuits. Addresses ticket 5458.
1885   o Minor bugfixes (log messages, client):
1886     - Downgrade "Got a certificate, but we already have it" log messages
1887       from warning to info, except when we're a dirauth. Fixes bug 5238;
1888       bugfix on 0.2.1.7-alpha.
1889     - Fix the log message describing how we work around discovering
1890       that our version is the ill-fated OpenSSL 0.9.8l. Fixes bug
1891       4837; bugfix on 0.2.2.9-alpha.
1892     - When logging about a disallowed .exit name, do not also call it
1893       an "invalid onion address". Fixes bug 3325; bugfix on 0.2.2.9-alpha.
1894     - Fix a log message suggesting that people contact a non-existent
1895       email address. Fixes bug 3448.
1896     - Rephrase the log message emitted if the TestSocks check is
1897       successful. Patch from Fabian Keil; fixes bug 4094.
1898     - Log (at debug level) whenever a circuit's purpose is changed.
1899     - Log SSL state transitions at log level DEBUG, log domain
1900       HANDSHAKE. This can be useful for debugging censorship events.
1901       Implements ticket 3264.
1902     - We now log which torrc file we're using on startup. Implements
1903       ticket 2444.
1904     - Rate-limit log messages when asked to connect anonymously to
1905       a private address. When these hit, they tended to hit fast and
1906       often. Also, don't bother trying to connect to addresses that we
1907       are sure will resolve to 127.0.0.1: getting 127.0.0.1 in a directory
1908       reply makes us think we have been lied to, even when the address the
1909       client tried to connect to was "localhost." Resolves ticket 2822.
1911   o Minor bugfixes (log messages, non-client):
1912     - Downgrade "eventdns rejected address" message to LOG_PROTOCOL_WARN.
1913       Fixes bug 5932; bugfix on 0.2.2.7-alpha.
1914     - Don't log that we have "decided to publish new relay descriptor"
1915       unless we are actually publishing a descriptor. Fixes bug 3942;
1916       bugfix on 0.2.2.28-beta.
1917     - Log which authority we're missing votes from when we go to fetch
1918       them from the other auths.
1919     - Replace "Sending publish request" log messages with "Launching
1920       upload", so that they no longer confusingly imply that we're
1921       sending something to a directory we might not even be connected
1922       to yet. Fixes bug 3311; bugfix on 0.2.0.10-alpha.
1923     - Warn when Tor is configured to use accounting in a way that can
1924       link a hidden service to some other hidden service or public
1925       address. Resolves ticket 6490.
1926     - Fix a minor formatting issue in one of tor-gencert's error messages.
1927       Fixes bug 4574.
1929   o Testing:
1930     - Update to the latest version of the tinytest unit testing framework.
1931       This includes a couple of bugfixes that can be relevant for
1932       running forked unit tests on Windows, and removes all reserved
1933       identifiers.
1934     - Avoid a false positive in the util/threads unit test by increasing
1935       the maximum timeout time. Fixes bug 6227; bugfix on 0.2.0.4-alpha.
1936     - Make it possible to set the TestingTorNetwork configuration
1937       option using AlternateDirAuthority and AlternateBridgeAuthority
1938       as an alternative to setting DirServer. Addresses ticket 6377.
1939     - Add a unit test for the environment_variable_names_equal() function.
1940     - A wide variety of new unit tests by Esteban Manchado Velázquez.
1941     - Numerous new unit tests for functions in util.c and address.c by
1942       Anders Sundman.
1943     - The long-disabled benchmark tests are now split into their own
1944       ./src/test/bench binary.
1945     - The benchmark tests can now use more accurate timers than
1946       gettimeofday() when such timers are available.
1947     - Use tt_assert(), not tor_assert(), for checking for test failures.
1948       This makes the unit tests more able to go on in the event that
1949       one of them fails.
1951   o Build improvements:
1952     - Use the dead_strip option when building Tor on OS X. This reduces
1953       binary size by almost 19% when linking openssl and libevent
1954       statically, which we do for Tor Browser Bundle.
1955     - Provide a better error message about possible OSX Asciidoc failure
1956       reasons. Fixes bug 6436.
1957     - Detect attempts to build Tor on (as yet hypothetical) versions
1958       of Windows where sizeof(intptr_t) != sizeof(SOCKET). Partial
1959       fix for bug 4533. Bugfix on 0.2.2.28-beta.
1960     - On Windows, we now define the _WIN32_WINNT macros only if they
1961       are not already defined. This lets the person building Tor decide,
1962       if they want, to require a later version of Windows.
1963     - Our autogen.sh script now uses autoreconf to launch autoconf,
1964       automake, and so on. This is more robust against some of the failure
1965       modes associated with running the autotools pieces on their own.
1966     - Running "make version" now displays the version of Tor that
1967       we're about to build. Idea from katmagic; resolves issue 4400.
1968     - Make 'tor --digests' list hashes of all Tor source files. Bugfix
1969       on 0.2.2.4-alpha; fixes bug 3427.
1970     - New --enable-static-tor configure option for building Tor as
1971       statically as possible. Idea, general hackery and thoughts from
1972       Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket
1973       2702.
1974     - Limited, experimental support for building with nmake and MSVC.
1976   o Build requirements:
1977     - Building Tor with bufferevent support now requires Libevent
1978       2.0.13-stable or later. Previous versions of Libevent had bugs in
1979       SSL-related bufferevents and related issues that would make Tor
1980       work badly with bufferevents. Requiring 2.0.13-stable also allows
1981       Tor with bufferevents to take advantage of Libevent APIs
1982       introduced after 2.0.8-rc.
1983     - Our build system requires automake 1.6 or later to create the
1984       Makefile.in files. Previously, you could have used 1.4.
1985       This only affects developers and people building Tor from git;
1986       people who build Tor from the source distribution without changing
1987       the Makefile.am files should be fine.
1988     - Detect when we try to build on a platform that doesn't define
1989       AF_UNSPEC to 0. We don't work there, so refuse to compile.
1991   o Build fixes (compile/link):
1992     - Format more doubles with %f, not %lf. Patch from grarpamp to make
1993       Tor build correctly on older BSDs again. Fixes bug 3894; bugfix on
1994       Tor 0.2.0.8-alpha.
1995     - When building with --enable-static-tor on OpenBSD, do not
1996       erroneously attempt to link -lrt. Fixes bug 5103.
1997     - Set _WIN32_WINNT to 0x0501 consistently throughout the code, so
1998       that IPv6 stuff will compile on MSVC, and compilation issues
1999       will be easier to track down. Fixes bug 5861.
2000     - Fix build and 64-bit compile warnings from --enable-openbsd-malloc.
2001       Fixes bug 6379. Bugfix on 0.2.0.20-rc.
2002     - Make Tor build correctly again with -DUNICODE -D_UNICODE defined.
2003       Fixes bug 6097; bugfix on 0.2.2.16-alpha.
2005   o Build fixes (other):
2006     - Use the _WIN32 macro throughout our code to detect Windows.
2007       (Previously we had used the obsolete 'WIN32' and the idiosyncratic
2008       'MS_WINDOWS'.)
2009     - Properly handle the case where the build-tree is not the same
2010       as the source tree when generating src/common/common_sha1.i,
2011       src/or/micro-revision.i, and src/or/or_sha1.i. Fixes bug 3953;
2012       bugfix on 0.2.0.1-alpha.
2013     - During configure, search for library containing cos function as
2014       libm lives in libcore on some platforms (BeOS/Haiku). Linking
2015       against libm was hard-coded before. Fixes the first part of bug
2016       4727; bugfix on 0.2.2.2-alpha. Patch and analysis by Martin Hebnes
2017       Pedersen.
2018     - Prevent a false positive from the check-spaces script, by disabling
2019       the "whitespace between function name and (" check for functions
2020       named 'op()'.
2022   o Packaging (RPM) changes:
2023     - Update our default RPM spec files to work with mock and rpmbuild
2024       on RHEL/Fedora. They have an updated set of dependencies and
2025       conflicts, a fix for an ancient typo when creating the "_tor"
2026       user, and better instructions. Thanks to Ondrej Mikle for the
2027       patch series. Fixes bug 6043.
2028     - On OpenSUSE, create the /var/run/tor directory on startup if it
2029       is not already created. Patch from Andreas Stieger. Fixes bug 2573.
2031   o Code refactoring (safety):
2032     - Do not use SMARTLIST_FOREACH for any loop whose body exceeds
2033       10 lines. Also, don't nest them. Doing so in the past has
2034       led to hard-to-debug code. The new style is to use the
2035       SMARTLIST_FOREACH_{BEGIN,END} pair. Addresses issue 6400.
2036     - Use macros to indicate OpenSSL versions, so we don't need to worry
2037       about accidental hexadecimal bit shifts.
2038     - Use tor_sscanf() in place of scanf() in more places through the
2039       code. This makes us a little more locale-independent, and
2040       should help shut up code-analysis tools that can't tell
2041       a safe sscanf string from a dangerous one.
2042     - Convert more instances of tor_snprintf+tor_strdup into tor_asprintf.
2043     - Use the smartlist_add_asprintf() alias more consistently.
2045   o Code refactoring (consolidate):
2046     - A major revision to our internal node-selecting and listing logic.
2047       Tor already had at least two major ways to look at the question of
2048       "which Tor servers do we know about": a list of router descriptors,
2049       and a list of entries in the current consensus. With
2050       microdescriptors, we're adding a third. Having so many systems
2051       without an abstraction layer over them was hurting the codebase.
2052       Now, we have a new "node_t" abstraction that presents a consistent
2053       interface to a client's view of a Tor node, and holds (nearly) all
2054       of the mutable state formerly in routerinfo_t and routerstatus_t.
2055     - Move tor_gettimeofday_cached() into compat_libevent.c, and use
2056       Libevent's notion of cached time when possible.
2057     - Remove duplicate code for invoking getrlimit() from control.c.
2058     - Use OpenSSL's built-in SSL_state_string_long() instead of our
2059       own homebrewed ssl_state_to_string() replacement. Patch from
2060       Emile Snyder. Fixes bug 4653.
2061     - Change the symmetric cipher interface so that creating and
2062       initializing a stream cipher are no longer separate functions.
2064   o Code refactoring (separate):
2065     - Make a new "entry connection" struct as an internal subtype of "edge
2066       connection", to simplify the code and make exit connections smaller.
2067     - Split connection_about_to_close() into separate functions for each
2068       connection type.
2069     - Rewrite the listener-selection logic so that parsing which ports
2070       we want to listen on is now separate from binding to the ports
2071       we want.
2073   o Code refactoring (name changes):
2074     - Rename a handful of old identifiers, mostly related to crypto
2075       structures and crypto functions. By convention, our "create an
2076       object" functions are called "type_new()", our "free an object"
2077       functions are called "type_free()", and our types indicate that
2078       they are types only with a final "_t". But a handful of older
2079       types and functions broke these rules, with function names like
2080       "type_create" or "subsystem_op_type", or with type names like
2081       type_env_t.
2082     - Rename Tor functions that turn strings into addresses, so that
2083       "parse" indicates that no hostname resolution occurs, and
2084       "lookup" indicates that hostname resolution may occur. This
2085       should help prevent mistakes in the future. Fixes bug 3512.
2086     - Use the name "CERTS" consistently to refer to the new cell type;
2087       we were calling it CERT in some places and CERTS in others.
2088     - Use a TOR_INVALID_SOCKET macro when initializing a socket to an
2089       invalid value, rather than just -1.
2090     - Rename the bench_{aes,dmap} functions to test_*, so that tinytest
2091       can pick them up when the tests aren't disabled. Bugfix on
2092       0.2.2.4-alpha which introduced tinytest.
2094   o Code refactoring (other):
2095     - Defensively refactor rend_mid_rendezvous() so that protocol
2096       violations and length checks happen in the beginning. Fixes
2097       bug 5645.
2098     - Remove the pure attribute from all functions that used it
2099       previously. In many cases we assigned it incorrectly, because the
2100       functions might assert or call impure functions, and we don't have
2101       evidence that keeping the pure attribute is worthwhile. Implements
2102       changes suggested in ticket 4421.
2103     - Move the replay-detection cache for the RSA-encrypted parts of
2104       INTRODUCE2 cells to the introduction point data structures.
2105       Previously, we would use one replay-detection cache per hidden
2106       service. Required by fix for bug 3460.
2107     - The helper programs tor-gencert, tor-resolve, and tor-checkkey
2108       no longer link against Libevent: they never used it, but
2109       our library structure used to force them to link it.
2111   o Removed features and files:
2112     - Remove all internal support for unpadded RSA. We never used it, and
2113       it would be a bad idea to start.
2114     - Remove some workaround code for OpenSSL 0.9.6 (which is no longer
2115       supported).
2116     - Remove some redundant #include directives throughout the code.
2117       Patch from Andrea Gelmini.
2118     - Remove some old code to remember statistics about which descriptors
2119       we've served as a directory mirror. The feature wasn't used and
2120       is outdated now that microdescriptors are around.
2121     - Remove some old code to work around even older versions of Tor that
2122       used forked processes to handle DNS requests. Such versions of Tor
2123       are no longer in use as relays.
2124     - The "torify" script no longer supports the "tsocks" socksifier
2125       tool, since tsocks doesn't support DNS and UDP right for Tor.
2126       Everyone should be using torsocks instead. Fixes bugs 3530 and
2127       5180. Based on a patch by "ugh".
2128     - Remove the torrc.bridge file: we don't use it for anything, and
2129       it had become badly desynchronized from torrc.sample. Resolves
2130       bug 5622.
2132   o Documentation:
2133     - Begin a doc/state-contents.txt file to explain the contents of
2134       the Tor state file. Fixes bug 2987.
2135     - Clarify the documentation for the Alternate*Authority options.
2136       Fixes bug 6387.
2137     - Document the --defaults-torrc option, and the new semantics for
2138       overriding, extending, and clearing lists of options. Closes
2139       bug 4748.
2140     - Add missing man page documentation for consensus and microdesc
2141       files. Resolves ticket 6732.
2142     - Fix some typos in the manpages. Patch from A. Costa. Fixes bug 6500.
2144   o Documentation fixes:
2145     - Improve the manual's documentation for the NT Service command-line
2146       options. Addresses ticket 3964.
2147     - Clarify SessionGroup documentation slightly; resolves ticket 5437.
2148     - Document the changes to the ORPort and DirPort options, and the
2149       fact that {OR/Dir}ListenAddress is now unnecessary (and
2150       therefore deprecated). Resolves ticket 5597.
2151     - Correct a broken faq link in the INSTALL file. Fixes bug 2307.
2152     - Clarify that hidden services are TCP only. Fixes bug 6024.
2155 Changes in version 0.2.2.39 - 2012-09-11
2156   Tor 0.2.2.39 fixes two more opportunities for remotely triggerable
2157   assertions.
2159   o Security fixes:
2160     - Fix an assertion failure in tor_timegm() that could be triggered
2161       by a badly formatted directory object. Bug found by fuzzing with
2162       Radamsa. Fixes bug 6811; bugfix on 0.2.0.20-rc.
2163     - Do not crash when comparing an address with port value 0 to an
2164       address policy. This bug could have been used to cause a remote
2165       assertion failure by or against directory authorities, or to
2166       allow some applications to crash clients. Fixes bug 6690; bugfix
2167       on 0.2.1.10-alpha.
2170 Changes in version 0.2.2.38 - 2012-08-12
2171   Tor 0.2.2.38 fixes a remotely triggerable crash bug, and fixes a timing
2172   attack that could in theory leak path information.
2174   o Security fixes:
2175     - Avoid an uninitialized memory read when reading a vote or consensus
2176       document that has an unrecognized flavor name. This read could
2177       lead to a remote crash bug. Fixes bug 6530; bugfix on 0.2.2.6-alpha.
2178     - Try to leak less information about what relays a client is
2179       choosing to a side-channel attacker. Previously, a Tor client would
2180       stop iterating through the list of available relays as soon as it
2181       had chosen one, thus finishing a little earlier when it picked
2182       a router earlier in the list. If an attacker can recover this
2183       timing information (nontrivial but not proven to be impossible),
2184       they could learn some coarse-grained information about which relays
2185       a client was picking (middle nodes in particular are likelier to
2186       be affected than exits). The timing attack might be mitigated by
2187       other factors (see bug 6537 for some discussion), but it's best
2188       not to take chances. Fixes bug 6537; bugfix on 0.0.8rc1.
2191 Changes in version 0.2.2.37 - 2012-06-06
2192   Tor 0.2.2.37 introduces a workaround for a critical renegotiation
2193   bug in OpenSSL 1.0.1 (where 20% of the Tor network can't talk to itself
2194   currently).
2196   o Major bugfixes:
2197     - Work around a bug in OpenSSL that broke renegotiation with TLS
2198       1.1 and TLS 1.2. Without this workaround, all attempts to speak
2199       the v2 Tor connection protocol when both sides were using OpenSSL
2200       1.0.1 would fail. Resolves ticket 6033.
2201     - When waiting for a client to renegotiate, don't allow it to add
2202       any bytes to the input buffer. This fixes a potential DoS issue.
2203       Fixes bugs 5934 and 6007; bugfix on 0.2.0.20-rc.
2204     - Fix an edge case where if we fetch or publish a hidden service
2205       descriptor, we might build a 4-hop circuit and then use that circuit
2206       for exiting afterwards -- even if the new last hop doesn't obey our
2207       ExitNodes config option. Fixes bug 5283; bugfix on 0.2.0.10-alpha.
2209   o Minor bugfixes:
2210     - Fix a build warning with Clang 3.1 related to our use of vasprintf.
2211       Fixes bug 5969. Bugfix on 0.2.2.11-alpha.
2213   o Minor features:
2214     - Tell GCC and Clang to check for any errors in format strings passed
2215       to the tor_v*(print|scan)f functions.
2218 Changes in version 0.2.2.36 - 2012-05-24
2219   Tor 0.2.2.36 updates the addresses for two of the eight directory
2220   authorities, fixes some potential anonymity and security issues,
2221   and fixes several crash bugs.
2223   Tor 0.2.1.x has reached its end-of-life. Those Tor versions have many
2224   known flaws, and nobody should be using them. You should upgrade. If
2225   you're using a Linux or BSD and its packages are obsolete, stop using
2226   those packages and upgrade anyway.
2228   o Directory authority changes:
2229     - Change IP address for maatuska (v3 directory authority).
2230     - Change IP address for ides (v3 directory authority), and rename
2231       it to turtles.
2233   o Security fixes:
2234     - When building or running with any version of OpenSSL earlier
2235       than 0.9.8s or 1.0.0f, disable SSLv3 support. These OpenSSL
2236       versions have a bug (CVE-2011-4576) in which their block cipher
2237       padding includes uninitialized data, potentially leaking sensitive
2238       information to any peer with whom they make a SSLv3 connection. Tor
2239       does not use SSL v3 by default, but a hostile client or server
2240       could force an SSLv3 connection in order to gain information that
2241       they shouldn't have been able to get. The best solution here is to
2242       upgrade to OpenSSL 0.9.8s or 1.0.0f (or later). But when building
2243       or running with a non-upgraded OpenSSL, we disable SSLv3 entirely
2244       to make sure that the bug can't happen.
2245     - Never use a bridge or a controller-supplied node as an exit, even
2246       if its exit policy allows it. Found by wanoskarnet. Fixes bug
2247       5342. Bugfix on 0.1.1.15-rc (for controller-purpose descriptors)
2248       and 0.2.0.3-alpha (for bridge-purpose descriptors).
2249     - Only build circuits if we have a sufficient threshold of the total
2250       descriptors that are marked in the consensus with the "Exit"
2251       flag. This mitigates an attack proposed by wanoskarnet, in which
2252       all of a client's bridges collude to restrict the exit nodes that
2253       the client knows about. Fixes bug 5343.
2254     - Provide controllers with a safer way to implement the cookie
2255       authentication mechanism. With the old method, if another locally
2256       running program could convince a controller that it was the Tor
2257       process, then that program could trick the controller into telling
2258       it the contents of an arbitrary 32-byte file. The new "SAFECOOKIE"
2259       authentication method uses a challenge-response approach to prevent
2260       this attack. Fixes bug 5185; implements proposal 193.
2262   o Major bugfixes:
2263     - Avoid logging uninitialized data when unable to decode a hidden
2264       service descriptor cookie. Fixes bug 5647; bugfix on 0.2.1.5-alpha.
2265     - Avoid a client-side assertion failure when receiving an INTRODUCE2
2266       cell on a general purpose circuit. Fixes bug 5644; bugfix on
2267       0.2.1.6-alpha.
2268     - Fix builds when the path to sed, openssl, or sha1sum contains
2269       spaces, which is pretty common on Windows. Fixes bug 5065; bugfix
2270       on 0.2.2.1-alpha.
2271     - Correct our replacements for the timeradd() and timersub() functions
2272       on platforms that lack them (for example, Windows). The timersub()
2273       function is used when expiring circuits, while timeradd() is
2274       currently unused. Bug report and patch by Vektor. Fixes bug 4778;
2275       bugfix on 0.2.2.24-alpha.
2276     - Fix the SOCKET_OK test that we use to tell when socket
2277       creation fails so that it works on Win64. Fixes part of bug 4533;
2278       bugfix on 0.2.2.29-beta. Bug found by wanoskarnet.
2280   o Minor bugfixes:
2281     - Reject out-of-range times like 23:59:61 in parse_rfc1123_time().
2282       Fixes bug 5346; bugfix on 0.0.8pre3.
2283     - Make our number-parsing functions always treat too-large values
2284       as an error, even when those values exceed the width of the
2285       underlying type. Previously, if the caller provided these
2286       functions with minima or maxima set to the extreme values of the
2287       underlying integer type, these functions would return those
2288       values on overflow rather than treating overflow as an error.
2289       Fixes part of bug 5786; bugfix on 0.0.9.
2290     - Older Linux kernels erroneously respond to strange nmap behavior
2291       by having accept() return successfully with a zero-length
2292       socket. When this happens, just close the connection. Previously,
2293       we would try harder to learn the remote address: but there was
2294       no such remote address to learn, and our method for trying to
2295       learn it was incorrect. Fixes bugs 1240, 4745, and 4747. Bugfix
2296       on 0.1.0.3-rc. Reported and diagnosed by "r1eo".
2297     - Correct parsing of certain date types in parse_http_time().
2298       Without this patch, If-Modified-Since would behave
2299       incorrectly. Fixes bug 5346; bugfix on 0.2.0.2-alpha. Patch from
2300       Esteban Manchado Velázques.
2301     - Change the BridgePassword feature (part of the "bridge community"
2302       design, which is not yet implemented) to use a time-independent
2303       comparison. The old behavior might have allowed an adversary
2304       to use timing to guess the BridgePassword value. Fixes bug 5543;
2305       bugfix on 0.2.0.14-alpha.
2306     - Detect and reject certain misformed escape sequences in
2307       configuration values. Previously, these values would cause us
2308       to crash if received in a torrc file or over an authenticated
2309       control port. Bug found by Esteban Manchado Velázquez, and
2310       independently by Robert Connolly from Matta Consulting who further
2311       noted that it allows a post-authentication heap overflow. Patch
2312       by Alexander Schrijver. Fixes bugs 5090 and 5402 (CVE 2012-1668);
2313       bugfix on 0.2.0.16-alpha.
2314     - Fix a compile warning when using the --enable-openbsd-malloc
2315       configure option. Fixes bug 5340; bugfix on 0.2.0.20-rc.
2316     - During configure, detect when we're building with clang version
2317       3.0 or lower and disable the -Wnormalized=id and -Woverride-init
2318       CFLAGS. clang doesn't support them yet.
2319     - When sending an HTTP/1.1 proxy request, include a Host header.
2320       Fixes bug 5593; bugfix on 0.2.2.1-alpha.
2321     - Fix a NULL-pointer dereference on a badly formed SETCIRCUITPURPOSE
2322       command. Found by mikeyc. Fixes bug 5796; bugfix on 0.2.2.9-alpha.
2323     - If we hit the error case where routerlist_insert() replaces an
2324       existing (old) server descriptor, make sure to remove that
2325       server descriptor from the old_routers list. Fix related to bug
2326       1776. Bugfix on 0.2.2.18-alpha.
2328   o Minor bugfixes (documentation and log messages):
2329     - Fix a typo in a log message in rend_service_rendezvous_has_opened().
2330       Fixes bug 4856; bugfix on Tor 0.0.6.
2331     - Update "ClientOnly" man page entry to explain that there isn't
2332       really any point to messing with it. Resolves ticket 5005.
2333     - Document the GiveGuardFlagTo_CVE_2011_2768_VulnerableRelays
2334       directory authority option (introduced in Tor 0.2.2.34).
2335     - Downgrade the "We're missing a certificate" message from notice
2336       to info: people kept mistaking it for a real problem, whereas it
2337       is seldom the problem even when we are failing to bootstrap. Fixes
2338       bug 5067; bugfix on 0.2.0.10-alpha.
2339     - Correctly spell "connect" in a log message on failure to create a
2340       controlsocket. Fixes bug 4803; bugfix on 0.2.2.26-beta.
2341     - Clarify the behavior of MaxCircuitDirtiness with hidden service
2342       circuits. Fixes issue 5259.
2344   o Minor features:
2345     - Directory authorities now reject versions of Tor older than
2346       0.2.1.30, and Tor versions between 0.2.2.1-alpha and 0.2.2.20-alpha
2347       inclusive. These versions accounted for only a small fraction of
2348       the Tor network, and have numerous known security issues. Resolves
2349       issue 4788.
2350     - Update to the May 1 2012 Maxmind GeoLite Country database.
2352   - Feature removal:
2353     - When sending or relaying a RELAY_EARLY cell, we used to convert
2354       it to a RELAY cell if the connection was using the v1 link
2355       protocol. This was a workaround for older versions of Tor, which
2356       didn't handle RELAY_EARLY cells properly. Now that all supported
2357       versions can handle RELAY_EARLY cells, and now that we're enforcing
2358       the "no RELAY_EXTEND commands except in RELAY_EARLY cells" rule,
2359       remove this workaround. Addresses bug 4786.
2362 Changes in version 0.2.2.35 - 2011-12-16
2363   Tor 0.2.2.35 fixes a critical heap-overflow security issue in Tor's
2364   buffers code. Absolutely everybody should upgrade.
2366   The bug relied on an incorrect calculation when making data continuous
2367   in one of our IO buffers, if the first chunk of the buffer was
2368   misaligned by just the wrong amount. The miscalculation would allow an
2369   attacker to overflow a piece of heap-allocated memory. To mount this
2370   attack, the attacker would need to either open a SOCKS connection to
2371   Tor's SocksPort (usually restricted to localhost), or target a Tor
2372   instance configured to make its connections through a SOCKS proxy
2373   (which Tor does not do by default).
2375   Good security practice requires that all heap-overflow bugs should be
2376   presumed to be exploitable until proven otherwise, so we are treating
2377   this as a potential code execution attack. Please upgrade immediately!
2378   This bug does not affect bufferevents-based builds of Tor. Special
2379   thanks to "Vektor" for reporting this issue to us!
2381   Tor 0.2.2.35 also fixes several bugs in previous versions, including
2382   crash bugs for unusual configurations, and a long-term bug that
2383   would prevent Tor from starting on Windows machines with draconian
2384   AV software.
2386   With this release, we remind everyone that 0.2.0.x has reached its
2387   formal end-of-life. Those Tor versions have many known flaws, and
2388   nobody should be using them. You should upgrade -- ideally to the
2389   0.2.2.x series. If you're using a Linux or BSD and its packages are
2390   obsolete, stop using those packages and upgrade anyway.
2392   The Tor 0.2.1.x series is also approaching its end-of-life: it will no
2393   longer receive support after some time in early 2012.
2395   o Major bugfixes:
2396     - Fix a heap overflow bug that could occur when trying to pull
2397       data into the first chunk of a buffer, when that chunk had
2398       already had some data drained from it. Fixes CVE-2011-2778;
2399       bugfix on 0.2.0.16-alpha. Reported by "Vektor".
2400     - Initialize Libevent with the EVENT_BASE_FLAG_NOLOCK flag enabled, so
2401       that it doesn't attempt to allocate a socketpair. This could cause
2402       some problems on Windows systems with overzealous firewalls. Fix for
2403       bug 4457; workaround for Libevent versions 2.0.1-alpha through
2404       2.0.15-stable.
2405     - If we mark an OR connection for close based on a cell we process,
2406       don't process any further cells on it. We already avoid further
2407       reads on marked-for-close connections, but now we also discard the
2408       cells we'd already read. Fixes bug 4299; bugfix on 0.2.0.10-alpha,
2409       which was the first version where we might mark a connection for
2410       close based on processing a cell on it.
2411     - Correctly sanity-check that we don't underflow on a memory
2412       allocation (and then assert) for hidden service introduction
2413       point decryption. Bug discovered by Dan Rosenberg. Fixes bug 4410;
2414       bugfix on 0.2.1.5-alpha.
2415     - Fix a memory leak when we check whether a hidden service
2416       descriptor has any usable introduction points left. Fixes bug
2417       4424. Bugfix on 0.2.2.25-alpha.
2418     - Don't crash when we're running as a relay and don't have a GeoIP
2419       file. Bugfix on 0.2.2.34; fixes bug 4340. This backports a fix
2420       we've had in the 0.2.3.x branch already.
2421     - When running as a client, do not print a misleading (and plain
2422       wrong) log message that we're collecting "directory request"
2423       statistics: clients don't collect statistics. Also don't create a
2424       useless (because empty) stats file in the stats/ directory. Fixes
2425       bug 4353; bugfix on 0.2.2.34.
2427   o Minor bugfixes:
2428     - Detect failure to initialize Libevent. This fix provides better
2429       detection for future instances of bug 4457.
2430     - Avoid frequent calls to the fairly expensive cull_wedged_cpuworkers
2431       function. This was eating up hideously large amounts of time on some
2432       busy servers. Fixes bug 4518; bugfix on 0.0.9.8.
2433     - Resolve an integer overflow bug in smartlist_ensure_capacity().
2434       Fixes bug 4230; bugfix on Tor 0.1.0.1-rc. Based on a patch by
2435       Mansour Moufid.
2436     - Don't warn about unused log_mutex in log.c when building with
2437       --disable-threads using a recent GCC. Fixes bug 4437; bugfix on
2438       0.1.0.6-rc which introduced --disable-threads.
2439     - When configuring, starting, or stopping an NT service, stop
2440       immediately after the service configuration attempt has succeeded
2441       or failed. Fixes bug 3963; bugfix on 0.2.0.7-alpha.
2442     - When sending a NETINFO cell, include the original address
2443       received for the other side, not its canonical address. Found
2444       by "troll_un"; fixes bug 4349; bugfix on 0.2.0.10-alpha.
2445     - Fix a typo in a hibernation-related log message. Fixes bug 4331;
2446       bugfix on 0.2.2.23-alpha; found by "tmpname0901".
2447     - Fix a memory leak in launch_direct_bridge_descriptor_fetch() that
2448       occurred when a client tried to fetch a descriptor for a bridge
2449       in ExcludeNodes. Fixes bug 4383; bugfix on 0.2.2.25-alpha.
2450     - Backport fixes for a pair of compilation warnings on Windows.
2451       Fixes bug 4521; bugfix on 0.2.2.28-beta and on 0.2.2.29-beta.
2452     - If we had ever tried to call tor_addr_to_str on an address of
2453       unknown type, we would have done a strdup on an uninitialized
2454       buffer. Now we won't. Fixes bug 4529; bugfix on 0.2.1.3-alpha.
2455       Reported by "troll_un".
2456     - Correctly detect and handle transient lookup failures from
2457       tor_addr_lookup. Fixes bug 4530; bugfix on 0.2.1.5-alpha.
2458       Reported by "troll_un".
2459     - Fix null-pointer access that could occur if TLS allocation failed.
2460       Fixes bug 4531; bugfix on 0.2.0.20-rc. Found by "troll_un".
2461     - Use tor_socket_t type for listener argument to accept(). Fixes bug
2462       4535; bugfix on 0.2.2.28-beta. Found by "troll_un".
2464   o Minor features:
2465     - Add two new config options for directory authorities:
2466       AuthDirFastGuarantee sets a bandwidth threshold for guaranteeing the
2467       Fast flag, and AuthDirGuardBWGuarantee sets a bandwidth threshold
2468       that is always sufficient to satisfy the bandwidth requirement for
2469       the Guard flag. Now it will be easier for researchers to simulate
2470       Tor networks with different values. Resolves ticket 4484.
2471     - When Tor ignores a hidden service specified in its configuration,
2472       include the hidden service's directory in the warning message.
2473       Previously, we would only tell the user that some hidden service
2474       was ignored. Bugfix on 0.0.6; fixes bug 4426.
2475     - Update to the December 6 2011 Maxmind GeoLite Country database.
2477   o Packaging changes:
2478     - Make it easier to automate expert package builds on Windows,
2479       by removing an absolute path from makensis.exe command.
2482 Changes in version 0.2.1.32 - 2011-12-16
2483   Tor 0.2.1.32 backports important security and privacy fixes for
2484   oldstable. This release is intended only for package maintainers and
2485   others who cannot use the 0.2.2 stable series. All others should be
2486   using Tor 0.2.2.x or newer.
2488   The Tor 0.2.1.x series will reach formal end-of-life some time in
2489   early 2012; we will stop releasing patches for it then.
2491   o Major bugfixes (also included in 0.2.2.x):
2492     - Correctly sanity-check that we don't underflow on a memory
2493       allocation (and then assert) for hidden service introduction
2494       point decryption. Bug discovered by Dan Rosenberg. Fixes bug 4410;
2495       bugfix on 0.2.1.5-alpha.
2496     - Fix a heap overflow bug that could occur when trying to pull
2497       data into the first chunk of a buffer, when that chunk had
2498       already had some data drained from it. Fixes CVE-2011-2778;
2499       bugfix on 0.2.0.16-alpha. Reported by "Vektor".
2501   o Minor features:
2502     - Update to the December 6 2011 Maxmind GeoLite Country database.
2505 Changes in version 0.2.2.34 - 2011-10-26
2506   Tor 0.2.2.34 fixes a critical anonymity vulnerability where an attacker
2507   can deanonymize Tor users. Everybody should upgrade.
2509   The attack relies on four components: 1) Clients reuse their TLS cert
2510   when talking to different relays, so relays can recognize a user by
2511   the identity key in her cert. 2) An attacker who knows the client's
2512   identity key can probe each guard relay to see if that identity key
2513   is connected to that guard relay right now. 3) A variety of active
2514   attacks in the literature (starting from "Low-Cost Traffic Analysis
2515   of Tor" by Murdoch and Danezis in 2005) allow a malicious website to
2516   discover the guard relays that a Tor user visiting the website is using.
2517   4) Clients typically pick three guards at random, so the set of guards
2518   for a given user could well be a unique fingerprint for her. This
2519   release fixes components #1 and #2, which is enough to block the attack;
2520   the other two remain as open research problems. Special thanks to
2521   "frosty_un" for reporting the issue to us!
2523   Clients should upgrade so they are no longer recognizable by the TLS
2524   certs they present. Relays should upgrade so they no longer allow a
2525   remote attacker to probe them to test whether unpatched clients are
2526   currently connected to them.
2528   This release also fixes several vulnerabilities that allow an attacker
2529   to enumerate bridge relays. Some bridge enumeration attacks still
2530   remain; see for example proposal 188.
2532   o Privacy/anonymity fixes (clients):
2533     - Clients and bridges no longer send TLS certificate chains on
2534       outgoing OR connections. Previously, each client or bridge would
2535       use the same cert chain for all outgoing OR connections until
2536       its IP address changes, which allowed any relay that the client
2537       or bridge contacted to determine which entry guards it is using.
2538       Fixes CVE-2011-2768. Bugfix on 0.0.9pre5; found by "frosty_un".
2539     - If a relay receives a CREATE_FAST cell on a TLS connection, it
2540       no longer considers that connection as suitable for satisfying a
2541       circuit EXTEND request. Now relays can protect clients from the
2542       CVE-2011-2768 issue even if the clients haven't upgraded yet.
2543     - Directory authorities no longer assign the Guard flag to relays
2544       that haven't upgraded to the above "refuse EXTEND requests
2545       to client connections" fix. Now directory authorities can
2546       protect clients from the CVE-2011-2768 issue even if neither
2547       the clients nor the relays have upgraded yet. There's a new
2548       "GiveGuardFlagTo_CVE_2011_2768_VulnerableRelays" config option
2549       to let us transition smoothly, else tomorrow there would be no
2550       guard relays.
2552   o Privacy/anonymity fixes (bridge enumeration):
2553     - Bridge relays now do their directory fetches inside Tor TLS
2554       connections, like all the other clients do, rather than connecting
2555       directly to the DirPort like public relays do. Removes another
2556       avenue for enumerating bridges. Fixes bug 4115; bugfix on 0.2.0.35.
2557     - Bridges relays now build circuits for themselves in a more similar
2558       way to how clients build them. Removes another avenue for
2559       enumerating bridges. Fixes bug 4124; bugfix on 0.2.0.3-alpha,
2560       when bridges were introduced.
2561     - Bridges now refuse CREATE or CREATE_FAST cells on OR connections
2562       that they initiated. Relays could distinguish incoming bridge
2563       connections from client connections, creating another avenue for
2564       enumerating bridges. Fixes CVE-2011-2769. Bugfix on 0.2.0.3-alpha.
2565       Found by "frosty_un".
2567   o Major bugfixes:
2568     - Fix a crash bug when changing node restrictions while a DNS lookup
2569       is in-progress. Fixes bug 4259; bugfix on 0.2.2.25-alpha. Bugfix
2570       by "Tey'".
2571     - Don't launch a useless circuit after failing to use one of a
2572       hidden service's introduction points. Previously, we would
2573       launch a new introduction circuit, but not set the hidden service
2574       which that circuit was intended to connect to, so it would never
2575       actually be used. A different piece of code would then create a
2576       new introduction circuit correctly. Bug reported by katmagic and
2577       found by Sebastian Hahn. Bugfix on 0.2.1.13-alpha; fixes bug 4212.
2579   o Minor bugfixes:
2580     - Change an integer overflow check in the OpenBSD_Malloc code so
2581       that GCC is less likely to eliminate it as impossible. Patch
2582       from Mansour Moufid. Fixes bug 4059.
2583     - When a hidden service turns an extra service-side introduction
2584       circuit into a general-purpose circuit, free the rend_data and
2585       intro_key fields first, so we won't leak memory if the circuit
2586       is cannibalized for use as another service-side introduction
2587       circuit. Bugfix on 0.2.1.7-alpha; fixes bug 4251.
2588     - Bridges now skip DNS self-tests, to act a little more stealthily.
2589       Fixes bug 4201; bugfix on 0.2.0.3-alpha, which first introduced
2590       bridges. Patch by "warms0x".
2591     - Fix internal bug-checking logic that was supposed to catch
2592       failures in digest generation so that it will fail more robustly
2593       if we ask for a nonexistent algorithm. Found by Coverity Scan.
2594       Bugfix on 0.2.2.1-alpha; fixes Coverity CID 479.
2595     - Report any failure in init_keys() calls launched because our
2596       IP address has changed. Spotted by Coverity Scan. Bugfix on
2597       0.1.1.4-alpha; fixes CID 484.
2599   o Minor bugfixes (log messages and documentation):
2600     - Remove a confusing dollar sign from the example fingerprint in the
2601       man page, and also make the example fingerprint a valid one. Fixes
2602       bug 4309; bugfix on 0.2.1.3-alpha.
2603     - The next version of Windows will be called Windows 8, and it has
2604       a major version of 6, minor version of 2. Correctly identify that
2605       version instead of calling it "Very recent version". Resolves
2606       ticket 4153; reported by funkstar.
2607     - Downgrade log messages about circuit timeout calibration from
2608       "notice" to "info": they don't require or suggest any human
2609       intervention. Patch from Tom Lowenthal. Fixes bug 4063;
2610       bugfix on 0.2.2.14-alpha.
2612   o Minor features:
2613     - Turn on directory request statistics by default and include them in
2614       extra-info descriptors. Don't break if we have no GeoIP database.
2615       Backported from 0.2.3.1-alpha; implements ticket 3951.
2616     - Update to the October 4 2011 Maxmind GeoLite Country database.
2619 Changes in version 0.2.1.31 - 2011-10-26
2620   Tor 0.2.1.31 backports important security and privacy fixes for
2621   oldstable. This release is intended only for package maintainers and
2622   others who cannot use the 0.2.2 stable series. All others should be
2623   using Tor 0.2.2.x or newer.
2625   o Security fixes (also included in 0.2.2.x):
2626     - Replace all potentially sensitive memory comparison operations
2627       with versions whose runtime does not depend on the data being
2628       compared. This will help resist a class of attacks where an
2629       adversary can use variations in timing information to learn
2630       sensitive data. Fix for one case of bug 3122. (Safe memcmp
2631       implementation by Robert Ransom based partially on code by DJB.)
2632     - Fix an assert in parsing router descriptors containing IPv6
2633       addresses. This one took down the directory authorities when
2634       somebody tried some experimental code. Bugfix on 0.2.1.3-alpha.
2636   o Privacy/anonymity fixes (also included in 0.2.2.x):
2637     - Clients and bridges no longer send TLS certificate chains on
2638       outgoing OR connections. Previously, each client or bridge would
2639       use the same cert chain for all outgoing OR connections until
2640       its IP address changes, which allowed any relay that the client
2641       or bridge contacted to determine which entry guards it is using.
2642       Fixes CVE-2011-2768. Bugfix on 0.0.9pre5; found by "frosty_un".
2643     - If a relay receives a CREATE_FAST cell on a TLS connection, it
2644       no longer considers that connection as suitable for satisfying a
2645       circuit EXTEND request. Now relays can protect clients from the
2646       CVE-2011-2768 issue even if the clients haven't upgraded yet.
2647     - Bridges now refuse CREATE or CREATE_FAST cells on OR connections
2648       that they initiated. Relays could distinguish incoming bridge 
2649       connections from client connections, creating another avenue for
2650       enumerating bridges. Fixes CVE-2011-2769. Bugfix on 0.2.0.3-alpha.
2651       Found by "frosty_un".
2652     - When receiving a hidden service descriptor, check that it is for
2653       the hidden service we wanted. Previously, Tor would store any
2654       hidden service descriptors that a directory gave it, whether it
2655       wanted them or not. This wouldn't have let an attacker impersonate
2656       a hidden service, but it did let directories pre-seed a client
2657       with descriptors that it didn't want. Bugfix on 0.0.6.
2658     - Avoid linkability based on cached hidden service descriptors: forget
2659       all hidden service descriptors cached as a client when processing a
2660       SIGNAL NEWNYM command. Fixes bug 3000; bugfix on 0.0.6.
2661     - Make the bridge directory authority refuse to answer directory
2662       requests for "all" descriptors. It used to include bridge
2663       descriptors in its answer, which was a major information leak.
2664       Found by "piebeer". Bugfix on 0.2.0.3-alpha.
2665     - Don't attach new streams to old rendezvous circuits after SIGNAL
2666       NEWNYM. Previously, we would keep using an existing rendezvous
2667       circuit if it remained open (i.e. if it were kept open by a
2668       long-lived stream, or if a new stream were attached to it before
2669       Tor could notice that it was old and no longer in use). Bugfix on
2670       0.1.1.15-rc; fixes bug 3375.
2672   o Minor bugfixes (also included in 0.2.2.x):
2673     - When we restart our relay, we might get a successful connection
2674       from the outside before we've started our reachability tests,
2675       triggering a warning: "ORPort found reachable, but I have no
2676       routerinfo yet. Failing to inform controller of success." This
2677       bug was harmless unless Tor is running under a controller
2678       like Vidalia, in which case the controller would never get a
2679       REACHABILITY_SUCCEEDED status event. Bugfix on 0.1.2.6-alpha;
2680       fixes bug 1172.
2681     - Build correctly on OSX with zlib 1.2.4 and higher with all warnings
2682       enabled. Fixes bug 1526.
2683     - Remove undocumented option "-F" from tor-resolve: it hasn't done
2684       anything since 0.2.1.16-rc.
2685     - Avoid signed/unsigned comparisons by making SIZE_T_CEILING unsigned.
2686       None of the cases where we did this before were wrong, but by making
2687       this change we avoid warnings. Fixes bug 2475; bugfix on 0.2.1.28.
2688     - Fix a rare crash bug that could occur when a client was configured
2689       with a large number of bridges. Fixes bug 2629; bugfix on
2690       0.2.1.2-alpha. Bugfix by trac user "shitlei".
2691     - Correct the warning displayed when a rendezvous descriptor exceeds
2692       the maximum size. Fixes bug 2750; bugfix on 0.2.1.5-alpha. Found by
2693       John Brooks.
2694     - Fix an uncommon assertion failure when running with DNSPort under
2695       heavy load. Fixes bug 2933; bugfix on 0.2.0.1-alpha.
2696     - When warning about missing zlib development packages during compile,
2697       give the correct package names. Bugfix on 0.2.0.1-alpha.
2698     - Require that introduction point keys and onion keys have public
2699       exponent 65537. Bugfix on 0.2.0.10-alpha.
2700     - Do not crash when our configuration file becomes unreadable, for
2701       example due to a permissions change, between when we start up
2702       and when a controller calls SAVECONF. Fixes bug 3135; bugfix
2703       on 0.0.9pre6.
2704     - Fix warnings from GCC 4.6's "-Wunused-but-set-variable" option.
2705       Fixes bug 3208.
2706     - Always NUL-terminate the sun_path field of a sockaddr_un before
2707       passing it to the kernel. (Not a security issue: kernels are
2708       smart enough to reject bad sockaddr_uns.) Found by Coverity;
2709       CID #428. Bugfix on Tor 0.2.0.3-alpha.
2710     - Don't stack-allocate the list of supplementary GIDs when we're
2711       about to log them. Stack-allocating NGROUPS_MAX gid_t elements
2712       could take up to 256K, which is way too much stack. Found by
2713       Coverity; CID #450. Bugfix on 0.2.1.7-alpha.
2715   o Minor bugfixes (only in 0.2.1.x):
2716     - Resume using micro-version numbers in 0.2.1.x: our Debian packages
2717       rely on them. Bugfix on 0.2.1.30.
2718     - Use git revisions instead of svn revisions when generating our
2719       micro-version numbers. Bugfix on 0.2.1.15-rc; fixes bug 2402.
2721   o Minor features (also included in 0.2.2.x):
2722     - Adjust the expiration time on our SSL session certificates to
2723       better match SSL certs seen in the wild. Resolves ticket 4014.
2724     - Allow nameservers with IPv6 address. Resolves bug 2574.
2725     - Update to the October 4 2011 Maxmind GeoLite Country database.
2728 Changes in version 0.2.2.33 - 2011-09-13
2729   Tor 0.2.2.33 fixes several bugs, and includes a slight tweak to Tor's
2730   TLS handshake that makes relays and bridges that run this new version
2731   reachable from Iran again.
2733   o Major bugfixes:
2734     - Avoid an assertion failure when reloading a configuration with
2735       TrackExitHosts changes. Found and fixed by 'laruldan'. Fixes bug
2736       3923; bugfix on 0.2.2.25-alpha.
2738   o Minor features (security):
2739     - Check for replays of the public-key encrypted portion of an
2740       INTRODUCE1 cell, in addition to the current check for replays of
2741       the g^x value. This prevents a possible class of active attacks
2742       by an attacker who controls both an introduction point and a
2743       rendezvous point, and who uses the malleability of AES-CTR to
2744       alter the encrypted g^x portion of the INTRODUCE1 cell. We think
2745       that these attacks are infeasible (requiring the attacker to send
2746       on the order of zettabytes of altered cells in a short interval),
2747       but we'd rather block them off in case there are any classes of
2748       this attack that we missed. Reported by Willem Pinckaers.
2750   o Minor features:
2751     - Adjust the expiration time on our SSL session certificates to
2752       better match SSL certs seen in the wild. Resolves ticket 4014.
2753     - Change the default required uptime for a relay to be accepted as
2754       a HSDir (hidden service directory) from 24 hours to 25 hours.
2755       Improves on 0.2.0.10-alpha; resolves ticket 2649.
2756     - Add a VoteOnHidServDirectoriesV2 config option to allow directory
2757       authorities to abstain from voting on assignment of the HSDir
2758       consensus flag. Related to bug 2649.
2759     - Update to the September 6 2011 Maxmind GeoLite Country database.
2761   o Minor bugfixes (documentation and log messages):
2762     - Correct the man page to explain that HashedControlPassword and
2763       CookieAuthentication can both be set, in which case either method
2764       is sufficient to authenticate to Tor. Bugfix on 0.2.0.7-alpha,
2765       when we decided to allow these config options to both be set. Issue
2766       raised by bug 3898.
2767     - Demote the 'replay detected' log message emitted when a hidden
2768       service receives the same Diffie-Hellman public key in two different
2769       INTRODUCE2 cells to info level. A normal Tor client can cause that
2770       log message during its normal operation. Bugfix on 0.2.1.6-alpha;
2771       fixes part of bug 2442.
2772     - Demote the 'INTRODUCE2 cell is too {old,new}' log message to info
2773       level. There is nothing that a hidden service's operator can do
2774       to fix its clients' clocks. Bugfix on 0.2.1.6-alpha; fixes part
2775       of bug 2442.
2776     - Clarify a log message specifying the characters permitted in
2777       HiddenServiceAuthorizeClient client names. Previously, the log
2778       message said that "[A-Za-z0-9+-_]" were permitted; that could have
2779       given the impression that every ASCII character between "+" and "_"
2780       was permitted. Now we say "[A-Za-z0-9+_-]". Bugfix on 0.2.1.5-alpha.
2782   o Build fixes:
2783     - Provide a substitute implementation of lround() for MSVC, which
2784       apparently lacks it. Patch from Gisle Vanem.
2785     - Clean up some code issues that prevented Tor from building on older
2786       BSDs. Fixes bug 3894; reported by "grarpamp".
2787     - Search for a platform-specific version of "ar" when cross-compiling.
2788       Should fix builds on iOS. Resolves bug 3909, found by Marco Bonetti.
2791 Changes in version 0.2.2.32 - 2011-08-27
2792   The Tor 0.2.2 release series is dedicated to the memory of Andreas
2793   Pfitzmann (1958-2010), a pioneer in anonymity and privacy research,
2794   a founder of the PETS community, a leader in our field, a mentor,
2795   and a friend. He left us with these words: "I had the possibility
2796   to contribute to this world that is not as it should be. I hope I
2797   could help in some areas to make the world a better place, and that
2798   I could also encourage other people to be engaged in improving the
2799   world. Please, stay engaged. This world needs you, your love, your
2800   initiative -- now I cannot be part of that anymore."
2802   Tor 0.2.2.32, the first stable release in the 0.2.2 branch, is finally
2803   ready. More than two years in the making, this release features improved
2804   client performance and hidden service reliability, better compatibility
2805   for Android, correct behavior for bridges that listen on more than
2806   one address, more extensible and flexible directory object handling,
2807   better reporting of network statistics, improved code security, and
2808   many many other features and bugfixes.
2810   o Major features (client performance):
2811     - When choosing which cells to relay first, relays now favor circuits
2812       that have been quiet recently, to provide lower latency for
2813       low-volume circuits. By default, relays enable or disable this
2814       feature based on a setting in the consensus. They can override
2815       this default by using the new "CircuitPriorityHalflife" config
2816       option. Design and code by Ian Goldberg, Can Tang, and Chris
2817       Alexander.
2818     - Directory authorities now compute consensus weightings that instruct
2819       clients how to weight relays flagged as Guard, Exit, Guard+Exit,
2820       and no flag. Clients use these weightings to distribute network load
2821       more evenly across these different relay types. The weightings are
2822       in the consensus so we can change them globally in the future. Extra
2823       thanks to "outofwords" for finding some nasty security bugs in
2824       the first implementation of this feature.
2826   o Major features (client performance, circuit build timeout):
2827     - Tor now tracks how long it takes to build client-side circuits
2828       over time, and adapts its timeout to local network performance.
2829       Since a circuit that takes a long time to build will also provide
2830       bad performance, we get significant latency improvements by
2831       discarding the slowest 20% of circuits. Specifically, Tor creates
2832       circuits more aggressively than usual until it has enough data
2833       points for a good timeout estimate. Implements proposal 151.
2834     - Circuit build timeout constants can be controlled by consensus
2835       parameters. We set good defaults for these parameters based on
2836       experimentation on broadband and simulated high-latency links.
2837     - Circuit build time learning can be disabled via consensus parameter
2838       or by the client via a LearnCircuitBuildTimeout config option. We
2839       also automatically disable circuit build time calculation if either
2840       AuthoritativeDirectory is set, or if we fail to write our state
2841       file. Implements ticket 1296.
2843   o Major features (relays use their capacity better):
2844     - Set SO_REUSEADDR socket option on all sockets, not just
2845       listeners. This should help busy exit nodes avoid running out of
2846       useable ports just because all the ports have been used in the
2847       near past. Resolves issue 2850.
2848     - Relays now save observed peak bandwidth throughput rates to their
2849       state file (along with total usage, which was already saved),
2850       so that they can determine their correct estimated bandwidth on
2851       restart. Resolves bug 1863, where Tor relays would reset their
2852       estimated bandwidth to 0 after restarting.
2853     - Lower the maximum weighted-fractional-uptime cutoff to 98%. This
2854       should give us approximately 40-50% more Guard-flagged nodes,
2855       improving the anonymity the Tor network can provide and also
2856       decreasing the dropoff in throughput that relays experience when
2857       they first get the Guard flag.
2858     - Directory authorities now take changes in router IP address and
2859       ORPort into account when determining router stability. Previously,
2860       if a router changed its IP or ORPort, the authorities would not
2861       treat it as having any downtime for the purposes of stability
2862       calculation, whereas clients would experience downtime since the
2863       change would take a while to propagate to them. Resolves issue 1035.
2864     - New AccelName and AccelDir options add support for dynamic OpenSSL
2865       hardware crypto acceleration engines.
2867   o Major features (relays control their load better):
2868     - Exit relays now try harder to block exit attempts from unknown
2869       relays, to make it harder for people to use them as one-hop proxies
2870       a la tortunnel. Controlled by the refuseunknownexits consensus
2871       parameter (currently enabled), or you can override it on your
2872       relay with the RefuseUnknownExits torrc option. Resolves bug 1751;
2873       based on a variant of proposal 163.
2874     - Add separate per-conn write limiting to go with the per-conn read
2875       limiting. We added a global write limit in Tor 0.1.2.5-alpha,
2876       but never per-conn write limits.
2877     - New consensus params "bwconnrate" and "bwconnburst" to let us
2878       rate-limit client connections as they enter the network. It's
2879       controlled in the consensus so we can turn it on and off for
2880       experiments. It's starting out off. Based on proposal 163.
2882   o Major features (controllers):
2883     - Export GeoIP information on bridge usage to controllers even if we
2884       have not yet been running for 24 hours. Now Vidalia bridge operators
2885       can get more accurate and immediate feedback about their
2886       contributions to the network.
2887     - Add an __OwningControllerProcess configuration option and a
2888       TAKEOWNERSHIP control-port command. Now a Tor controller can ensure
2889       that when it exits, Tor will shut down. Implements feature 3049.
2891   o Major features (directory authorities):
2892     - Directory authorities now create, vote on, and serve multiple
2893       parallel formats of directory data as part of their voting process.
2894       Partially implements Proposal 162: "Publish the consensus in
2895       multiple flavors".
2896     - Directory authorities now agree on and publish small summaries
2897       of router information that clients can use in place of regular
2898       server descriptors. This transition will allow Tor 0.2.3 clients
2899       to use far less bandwidth for downloading information about the
2900       network. Begins the implementation of Proposal 158: "Clients
2901       download consensus + microdescriptors".
2902     - The directory voting system is now extensible to use multiple hash
2903       algorithms for signatures and resource selection. Newer formats
2904       are signed with SHA256, with a possibility for moving to a better
2905       hash algorithm in the future.
2906     - Directory authorities can now vote on arbitary integer values as
2907       part of the consensus process. This is designed to help set
2908       network-wide parameters. Implements proposal 167.
2910   o Major features and bugfixes (node selection):
2911     - Revise and reconcile the meaning of the ExitNodes, EntryNodes,
2912       ExcludeEntryNodes, ExcludeExitNodes, ExcludeNodes, and Strict*Nodes
2913       options. Previously, we had been ambiguous in describing what
2914       counted as an "exit" node, and what operations exactly "StrictNodes
2915       0" would permit. This created confusion when people saw nodes built
2916       through unexpected circuits, and made it hard to tell real bugs from
2917       surprises. Now the intended behavior is:
2918         . "Exit", in the context of ExitNodes and ExcludeExitNodes, means
2919           a node that delivers user traffic outside the Tor network.
2920         . "Entry", in the context of EntryNodes, means a node used as the
2921           first hop of a multihop circuit. It doesn't include direct
2922           connections to directory servers.
2923         . "ExcludeNodes" applies to all nodes.
2924         . "StrictNodes" changes the behavior of ExcludeNodes only. When
2925           StrictNodes is set, Tor should avoid all nodes listed in
2926           ExcludeNodes, even when it will make user requests fail. When
2927           StrictNodes is *not* set, then Tor should follow ExcludeNodes
2928           whenever it can, except when it must use an excluded node to
2929           perform self-tests, connect to a hidden service, provide a
2930           hidden service, fulfill a .exit request, upload directory
2931           information, or fetch directory information.
2932       Collectively, the changes to implement the behavior fix bug 1090.
2933     - If EntryNodes, ExitNodes, ExcludeNodes, or ExcludeExitNodes
2934       change during a config reload, mark and discard all our origin
2935       circuits. This fix should address edge cases where we change the
2936       config options and but then choose a circuit that we created before
2937       the change.
2938     - Make EntryNodes config option much more aggressive even when
2939       StrictNodes is not set. Before it would prepend your requested
2940       entrynodes to your list of guard nodes, but feel free to use others
2941       after that. Now it chooses only from your EntryNodes if any of
2942       those are available, and only falls back to others if a) they're
2943       all down and b) StrictNodes is not set.
2944     - Now we refresh your entry guards from EntryNodes at each consensus
2945       fetch -- rather than just at startup and then they slowly rot as
2946       the network changes.
2947     - Add support for the country code "{??}" in torrc options like
2948       ExcludeNodes, to indicate all routers of unknown country. Closes
2949       bug 1094.
2950     - ExcludeNodes now takes precedence over EntryNodes and ExitNodes: if
2951       a node is listed in both, it's treated as excluded.
2952     - ExcludeNodes now applies to directory nodes -- as a preference if
2953       StrictNodes is 0, or an absolute requirement if StrictNodes is 1.
2954       Don't exclude all the directory authorities and set StrictNodes to 1
2955       unless you really want your Tor to break.
2956     - ExcludeNodes and ExcludeExitNodes now override exit enclaving.
2957     - ExcludeExitNodes now overrides .exit requests.
2958     - We don't use bridges listed in ExcludeNodes.
2959     - When StrictNodes is 1:
2960        . We now apply ExcludeNodes to hidden service introduction points
2961          and to rendezvous points selected by hidden service users. This
2962          can make your hidden service less reliable: use it with caution!
2963        . If we have used ExcludeNodes on ourself, do not try relay
2964          reachability self-tests.
2965        . If we have excluded all the directory authorities, we will not
2966          even try to upload our descriptor if we're a relay.
2967        . Do not honor .exit requests to an excluded node.
2968     - When the set of permitted nodes changes, we now remove any mappings
2969       introduced via TrackExitHosts to now-excluded nodes. Bugfix on
2970       0.1.0.1-rc.
2971     - We never cannibalize a circuit that had excluded nodes on it, even
2972       if StrictNodes is 0. Bugfix on 0.1.0.1-rc.
2973     - Improve log messages related to excluded nodes.
2975   o Major features (misc):
2976     - Numerous changes, bugfixes, and workarounds from Nathan Freitas
2977       to help Tor build correctly for Android phones.
2978     - The options SocksPort, ControlPort, and so on now all accept a
2979       value "auto" that opens a socket on an OS-selected port. A
2980       new ControlPortWriteToFile option tells Tor to write its
2981       actual control port or ports to a chosen file. If the option
2982       ControlPortFileGroupReadable is set, the file is created as
2983       group-readable. Now users can run two Tor clients on the same
2984       system without needing to manually mess with parameters. Resolves
2985       part of ticket 3076.
2986     - Tor now supports tunneling all of its outgoing connections over
2987       a SOCKS proxy, using the SOCKS4Proxy and/or SOCKS5Proxy
2988       configuration options. Code by Christopher Davis.
2990   o Code security improvements:
2991     - Replace all potentially sensitive memory comparison operations
2992       with versions whose runtime does not depend on the data being
2993       compared. This will help resist a class of attacks where an
2994       adversary can use variations in timing information to learn
2995       sensitive data. Fix for one case of bug 3122. (Safe memcmp
2996       implementation by Robert Ransom based partially on code by DJB.)
2997     - Enable Address Space Layout Randomization (ASLR) and Data Execution
2998       Prevention (DEP) by default on Windows to make it harder for
2999       attackers to exploit vulnerabilities. Patch from John Brooks.
3000     - New "--enable-gcc-hardening" ./configure flag (off by default)
3001       to turn on gcc compile time hardening options. It ensures
3002       that signed ints have defined behavior (-fwrapv), enables
3003       -D_FORTIFY_SOURCE=2 (requiring -O2), adds stack smashing protection
3004       with canaries (-fstack-protector-all), turns on ASLR protection if
3005       supported by the kernel (-fPIE, -pie), and adds additional security
3006       related warnings. Verified to work on Mac OS X and Debian Lenny.
3007     - New "--enable-linker-hardening" ./configure flag (off by default)
3008       to turn on ELF specific hardening features (relro, now). This does
3009       not work with Mac OS X or any other non-ELF binary format.
3010     - Always search the Windows system directory for system DLLs, and
3011       nowhere else. Bugfix on 0.1.1.23; fixes bug 1954.
3012     - New DisableAllSwap option. If set to 1, Tor will attempt to lock all
3013       current and future memory pages via mlockall(). On supported
3014       platforms (modern Linux and probably BSD but not Windows or OS X),
3015       this should effectively disable any and all attempts to page out
3016       memory. This option requires that you start your Tor as root --
3017       if you use DisableAllSwap, please consider using the User option
3018       to properly reduce the privileges of your Tor.
3020   o Major bugfixes (crashes):
3021     - Fix crash bug on platforms where gmtime and localtime can return
3022       NULL. Windows 7 users were running into this one. Fixes part of bug
3023       2077. Bugfix on all versions of Tor. Found by boboper.
3024     - Introduce minimum/maximum values that clients will believe
3025       from the consensus. Now we'll have a better chance to avoid crashes
3026       or worse when a consensus param has a weird value.
3027     - Fix a rare crash bug that could occur when a client was configured
3028       with a large number of bridges. Fixes bug 2629; bugfix on
3029       0.2.1.2-alpha. Bugfix by trac user "shitlei".
3030     - Do not crash when our configuration file becomes unreadable, for
3031       example due to a permissions change, between when we start up
3032       and when a controller calls SAVECONF. Fixes bug 3135; bugfix
3033       on 0.0.9pre6.
3034     - If we're in the pathological case where there's no exit bandwidth
3035       but there is non-exit bandwidth, or no guard bandwidth but there
3036       is non-guard bandwidth, don't crash during path selection. Bugfix
3037       on 0.2.0.3-alpha.
3038     - Fix a crash bug when trying to initialize the evdns module in
3039       Libevent 2. Bugfix on 0.2.1.16-rc.
3041   o Major bugfixes (stability):
3042     - Fix an assert in parsing router descriptors containing IPv6
3043       addresses. This one took down the directory authorities when
3044       somebody tried some experimental code. Bugfix on 0.2.1.3-alpha.
3045     - Fix an uncommon assertion failure when running with DNSPort under
3046       heavy load. Fixes bug 2933; bugfix on 0.2.0.1-alpha.
3047     - Treat an unset $HOME like an empty $HOME rather than triggering an
3048       assert. Bugfix on 0.0.8pre1; fixes bug 1522.
3049     - More gracefully handle corrupt state files, removing asserts
3050       in favor of saving a backup and resetting state.
3051     - Instead of giving an assertion failure on an internal mismatch
3052       on estimated freelist size, just log a BUG warning and try later.
3053       Mitigates but does not fix bug 1125.
3054     - Fix an assert that got triggered when using the TestingTorNetwork
3055       configuration option and then issuing a GETINFO config-text control
3056       command. Fixes bug 2250; bugfix on 0.2.1.2-alpha.
3057     - If the cached cert file is unparseable, warn but don't exit.
3059   o Privacy fixes (relays/bridges):
3060     - Don't list Windows capabilities in relay descriptors. We never made
3061       use of them, and maybe it's a bad idea to publish them. Bugfix
3062       on 0.1.1.8-alpha.
3063     - If the Nickname configuration option isn't given, Tor would pick a
3064       nickname based on the local hostname as the nickname for a relay.
3065       Because nicknames are not very important in today's Tor and the
3066       "Unnamed" nickname has been implemented, this is now problematic
3067       behavior: It leaks information about the hostname without being
3068       useful at all. Fixes bug 2979; bugfix on 0.1.2.2-alpha, which
3069       introduced the Unnamed nickname. Reported by tagnaq.
3070     - Maintain separate TLS contexts and certificates for incoming and
3071       outgoing connections in bridge relays. Previously we would use the
3072       same TLS contexts and certs for incoming and outgoing connections.
3073       Bugfix on 0.2.0.3-alpha; addresses bug 988.
3074     - Maintain separate identity keys for incoming and outgoing TLS
3075       contexts in bridge relays. Previously we would use the same
3076       identity keys for incoming and outgoing TLS contexts. Bugfix on
3077       0.2.0.3-alpha; addresses the other half of bug 988.
3078     - Make the bridge directory authority refuse to answer directory
3079       requests for "all descriptors". It used to include bridge
3080       descriptors in its answer, which was a major information leak.
3081       Found by "piebeer". Bugfix on 0.2.0.3-alpha.
3083   o Privacy fixes (clients):
3084     - When receiving a hidden service descriptor, check that it is for
3085       the hidden service we wanted. Previously, Tor would store any
3086       hidden service descriptors that a directory gave it, whether it
3087       wanted them or not. This wouldn't have let an attacker impersonate
3088       a hidden service, but it did let directories pre-seed a client
3089       with descriptors that it didn't want. Bugfix on 0.0.6.
3090     - Start the process of disabling ".exit" address notation, since it
3091       can be used for a variety of esoteric application-level attacks
3092       on users. To reenable it, set "AllowDotExit 1" in your torrc. Fix
3093       on 0.0.9rc5.
3094     - Reject attempts at the client side to open connections to private
3095       IP addresses (like 127.0.0.1, 10.0.0.1, and so on) with
3096       a randomly chosen exit node. Attempts to do so are always
3097       ill-defined, generally prevented by exit policies, and usually
3098       in error. This will also help to detect loops in transparent
3099       proxy configurations. You can disable this feature by setting
3100       "ClientRejectInternalAddresses 0" in your torrc.
3101     - Log a notice when we get a new control connection. Now it's easier
3102       for security-conscious users to recognize when a local application
3103       is knocking on their controller door. Suggested by bug 1196.
3105   o Privacy fixes (newnym):
3106     - Avoid linkability based on cached hidden service descriptors: forget
3107       all hidden service descriptors cached as a client when processing a
3108       SIGNAL NEWNYM command. Fixes bug 3000; bugfix on 0.0.6.
3109     - On SIGHUP, do not clear out all TrackHostExits mappings, client
3110       DNS cache entries, and virtual address mappings: that's what
3111       NEWNYM is for. Fixes bug 1345; bugfix on 0.1.0.1-rc.
3112     - Don't attach new streams to old rendezvous circuits after SIGNAL
3113       NEWNYM. Previously, we would keep using an existing rendezvous
3114       circuit if it remained open (i.e. if it were kept open by a
3115       long-lived stream, or if a new stream were attached to it before
3116       Tor could notice that it was old and no longer in use). Bugfix on
3117       0.1.1.15-rc; fixes bug 3375.
3119   o Major bugfixes (relay bandwidth accounting):
3120     - Fix a bug that could break accounting on 64-bit systems with large
3121       time_t values, making them hibernate for impossibly long intervals.
3122       Fixes bug 2146. Bugfix on 0.0.9pre6; fix by boboper.
3123     - Fix a bug in bandwidth accounting that could make us use twice
3124       the intended bandwidth when our interval start changes due to
3125       daylight saving time. Now we tolerate skew in stored vs computed
3126       interval starts: if the start of the period changes by no more than
3127       50% of the period's duration, we remember bytes that we transferred
3128       in the old period. Fixes bug 1511; bugfix on 0.0.9pre5.
3130   o Major bugfixes (bridges):
3131     - Bridges now use "reject *:*" as their default exit policy. Bugfix
3132       on 0.2.0.3-alpha. Fixes bug 1113.
3133     - If you configure your bridge with a known identity fingerprint,
3134       and the bridge authority is unreachable (as it is in at least
3135       one country now), fall back to directly requesting the descriptor
3136       from the bridge. Finishes the feature started in 0.2.0.10-alpha;
3137       closes bug 1138.
3138     - Fix a bug where bridge users who configure the non-canonical
3139       address of a bridge automatically switch to its canonical
3140       address. If a bridge listens at more than one address, it
3141       should be able to advertise those addresses independently and
3142       any non-blocked addresses should continue to work. Bugfix on Tor
3143       0.2.0.3-alpha. Fixes bug 2510.
3144     - If you configure Tor to use bridge A, and then quit and
3145       configure Tor to use bridge B instead (or if you change Tor
3146       to use bridge B via the controller), it would happily continue
3147       to use bridge A if it's still reachable. While this behavior is
3148       a feature if your goal is connectivity, in some scenarios it's a
3149       dangerous bug. Bugfix on Tor 0.2.0.1-alpha; fixes bug 2511.
3150     - When the controller configures a new bridge, don't wait 10 to 60
3151       seconds before trying to fetch its descriptor. Bugfix on
3152       0.2.0.3-alpha; fixes bug 3198 (suggested by 2355).
3154   o Major bugfixes (directory authorities):
3155     - Many relays have been falling out of the consensus lately because
3156       not enough authorities know about their descriptor for them to get
3157       a majority of votes. When we deprecated the v2 directory protocol,
3158       we got rid of the only way that v3 authorities can hear from each
3159       other about other descriptors. Now authorities examine every v3
3160       vote for new descriptors, and fetch them from that authority. Bugfix
3161       on 0.2.1.23.
3162     - Authorities could be tricked into giving out the Exit flag to relays
3163       that didn't allow exiting to any ports. This bug could screw
3164       with load balancing and stats. Bugfix on 0.1.1.6-alpha; fixes bug
3165       1238. Bug discovered by Martin Kowalczyk.
3166     - If all authorities restart at once right before a consensus vote,
3167       nobody will vote about "Running", and clients will get a consensus
3168       with no usable relays. Instead, authorities refuse to build a
3169       consensus if this happens. Bugfix on 0.2.0.10-alpha; fixes bug 1066.
3171   o Major bugfixes (stream-level fairness):
3172     - When receiving a circuit-level SENDME for a blocked circuit, try
3173       to package cells fairly from all the streams that had previously
3174       been blocked on that circuit. Previously, we had started with the
3175       oldest stream, and allowed each stream to potentially exhaust
3176       the circuit's package window. This gave older streams on any
3177       given circuit priority over newer ones. Fixes bug 1937. Detected
3178       originally by Camilo Viecco. This bug was introduced before the
3179       first Tor release, in svn commit r152: it is the new winner of
3180       the longest-lived bug prize.
3181     - Fix a stream fairness bug that would cause newer streams on a given
3182       circuit to get preference when reading bytes from the origin or
3183       destination. Fixes bug 2210. Fix by Mashael AlSabah. This bug was
3184       introduced before the first Tor release, in svn revision r152.
3185     - When the exit relay got a circuit-level sendme cell, it started
3186       reading on the exit streams, even if had 500 cells queued in the
3187       circuit queue already, so the circuit queue just grew and grew in
3188       some cases. We fix this by not re-enabling reading on receipt of a
3189       sendme cell when the cell queue is blocked. Fixes bug 1653. Bugfix
3190       on 0.2.0.1-alpha. Detected by Mashael AlSabah. Original patch by
3191       "yetonetime".
3192     - Newly created streams were allowed to read cells onto circuits,
3193       even if the circuit's cell queue was blocked and waiting to drain.
3194       This created potential unfairness, as older streams would be
3195       blocked, but newer streams would gladly fill the queue completely.
3196       We add code to detect this situation and prevent any stream from
3197       getting more than one free cell. Bugfix on 0.2.0.1-alpha. Partially
3198       fixes bug 1298.
3200   o Major bugfixes (hidden services):
3201     - Apply circuit timeouts to opened hidden-service-related circuits
3202       based on the correct start time. Previously, we would apply the
3203       circuit build timeout based on time since the circuit's creation;
3204       it was supposed to be applied based on time since the circuit
3205       entered its current state. Bugfix on 0.0.6; fixes part of bug 1297.
3206     - Improve hidden service robustness: When we find that we have
3207       extended a hidden service's introduction circuit to a relay not
3208       listed as an introduction point in the HS descriptor we currently
3209       have, retry with an introduction point from the current
3210       descriptor. Previously we would just give up. Fixes bugs 1024 and
3211       1930; bugfix on 0.2.0.10-alpha.
3212     - Directory authorities now use data collected from their own
3213       uptime observations when choosing whether to assign the HSDir flag
3214       to relays, instead of trusting the uptime value the relay reports in
3215       its descriptor. This change helps prevent an attack where a small
3216       set of nodes with frequently-changing identity keys can blackhole
3217       a hidden service. (Only authorities need upgrade; others will be
3218       fine once they do.) Bugfix on 0.2.0.10-alpha; fixes bug 2709.
3219     - Stop assigning the HSDir flag to relays that disable their
3220       DirPort (and thus will refuse to answer directory requests). This
3221       fix should dramatically improve the reachability of hidden services:
3222       hidden services and hidden service clients pick six HSDir relays
3223       to store and retrieve the hidden service descriptor, and currently
3224       about half of the HSDir relays will refuse to work. Bugfix on
3225       0.2.0.10-alpha; fixes part of bug 1693.
3227   o Major bugfixes (misc):
3228     - Clients now stop trying to use an exit node associated with a given
3229       destination by TrackHostExits if they fail to reach that exit node.
3230       Fixes bug 2999. Bugfix on 0.2.0.20-rc.
3231     - Fix a regression that caused Tor to rebind its ports if it receives
3232       SIGHUP while hibernating. Bugfix in 0.1.1.6-alpha; closes bug 919.
3233     - Remove an extra pair of quotation marks around the error
3234       message in control-port STATUS_GENERAL BUG events. Bugfix on
3235       0.1.2.6-alpha; fixes bug 3732.
3237   o Minor features (relays):
3238     - Ensure that no empty [dirreq-](read|write)-history lines are added
3239       to an extrainfo document. Implements ticket 2497.
3240     - When bandwidth accounting is enabled, be more generous with how
3241       much bandwidth we'll use up before entering "soft hibernation".
3242       Previously, we'd refuse new connections and circuits once we'd
3243       used up 95% of our allotment. Now, we use up 95% of our allotment,
3244       AND make sure that we have no more than 500MB (or 3 hours of
3245       expected traffic, whichever is lower) remaining before we enter
3246       soft hibernation.
3247     - Relays now log the reason for publishing a new relay descriptor,
3248       so we have a better chance of hunting down instances of bug 1810.
3249       Resolves ticket 3252.
3250     - Log a little more clearly about the times at which we're no longer
3251       accepting new connections (e.g. due to hibernating). Resolves
3252       bug 2181.
3253     - When AllowSingleHopExits is set, print a warning to explain to the
3254       relay operator why most clients are avoiding her relay.
3255     - Send END_STREAM_REASON_NOROUTE in response to EHOSTUNREACH errors.
3256       Clients before 0.2.1.27 didn't handle NOROUTE correctly, but such
3257       clients are already deprecated because of security bugs.
3259   o Minor features (network statistics):
3260     - Directory mirrors that set "DirReqStatistics 1" write statistics
3261       about directory requests to disk every 24 hours. As compared to the
3262       "--enable-geoip-stats" ./configure flag in 0.2.1.x, there are a few
3263       improvements: 1) stats are written to disk exactly every 24 hours;
3264       2) estimated shares of v2 and v3 requests are determined as mean
3265       values, not at the end of a measurement period; 3) unresolved
3266       requests are listed with country code '??'; 4) directories also
3267       measure download times.
3268     - Exit nodes that set "ExitPortStatistics 1" write statistics on the
3269       number of exit streams and transferred bytes per port to disk every
3270       24 hours.
3271     - Relays that set "CellStatistics 1" write statistics on how long
3272       cells spend in their circuit queues to disk every 24 hours.
3273     - Entry nodes that set "EntryStatistics 1" write statistics on the
3274       rough number and origins of connecting clients to disk every 24
3275       hours.
3276     - Relays that write any of the above statistics to disk and set
3277       "ExtraInfoStatistics 1" include the past 24 hours of statistics in
3278       their extra-info documents. Implements proposal 166.
3280   o Minor features (GeoIP and statistics):
3281     - Provide a log message stating which geoip file we're parsing
3282       instead of just stating that we're parsing the geoip file.
3283       Implements ticket 2432.
3284     - Make sure every relay writes a state file at least every 12 hours.
3285       Previously, a relay could go for weeks without writing its state
3286       file, and on a crash could lose its bandwidth history, capacity
3287       estimates, client country statistics, and so on. Addresses bug 3012.
3288     - Relays report the number of bytes spent on answering directory
3289       requests in extra-info descriptors similar to {read,write}-history.
3290       Implements enhancement 1790.
3291     - Report only the top 10 ports in exit-port stats in order not to
3292       exceed the maximum extra-info descriptor length of 50 KB. Implements
3293       task 2196.
3294     - If writing the state file to disk fails, wait up to an hour before
3295       retrying again, rather than trying again each second. Fixes bug
3296       2346; bugfix on Tor 0.1.1.3-alpha.
3297     - Delay geoip stats collection by bridges for 6 hours, not 2 hours,
3298       when we switch from being a public relay to a bridge. Otherwise
3299       there will still be clients that see the relay in their consensus,
3300       and the stats will end up wrong. Bugfix on 0.2.1.15-rc; fixes
3301       bug 932.
3302     - Update to the August 2 2011 Maxmind GeoLite Country database.
3304   o Minor features (clients):
3305     - When expiring circuits, use microsecond timers rather than
3306       one-second timers. This can avoid an unpleasant situation where a
3307       circuit is launched near the end of one second and expired right
3308       near the beginning of the next, and prevent fluctuations in circuit
3309       timeout values.
3310     - If we've configured EntryNodes and our network goes away and/or all
3311       our entrynodes get marked down, optimistically retry them all when
3312       a new socks application request appears. Fixes bug 1882.
3313     - Always perform router selections using weighted relay bandwidth,
3314       even if we don't need a high capacity circuit at the time. Non-fast
3315       circuits now only differ from fast ones in that they can use relays
3316       not marked with the Fast flag. This "feature" could turn out to
3317       be a horrible bug; we should investigate more before it goes into
3318       a stable release.
3319     - When we run out of directory information such that we can't build
3320       circuits, but then get enough that we can build circuits, log when
3321       we actually construct a circuit, so the user has a better chance of
3322       knowing what's going on. Fixes bug 1362.
3323     - Log SSL state transitions at debug level during handshake, and
3324       include SSL states in error messages. This may help debug future
3325       SSL handshake issues.
3327   o Minor features (directory authorities):
3328     - When a router changes IP address or port, authorities now launch
3329       a new reachability test for it. Implements ticket 1899.
3330     - Directory authorities now reject relays running any versions of
3331       Tor between 0.2.1.3-alpha and 0.2.1.18 inclusive; they have
3332       known bugs that keep RELAY_EARLY cells from working on rendezvous
3333       circuits. Followup to fix for bug 2081.
3334     - Directory authorities now reject relays running any version of Tor
3335       older than 0.2.0.26-rc. That version is the earliest that fetches
3336       current directory information correctly. Fixes bug 2156.
3337     - Directory authorities now do an immediate reachability check as soon
3338       as they hear about a new relay. This change should slightly reduce
3339       the time between setting up a relay and getting listed as running
3340       in the consensus. It should also improve the time between setting
3341       up a bridge and seeing use by bridge users.
3342     - Directory authorities no longer launch a TLS connection to every
3343       relay as they startup. Now that we have 2k+ descriptors cached,
3344       the resulting network hiccup is becoming a burden. Besides,
3345       authorities already avoid voting about Running for the first half
3346       hour of their uptime.
3347     - Directory authorities now log the source of a rejected POSTed v3
3348       networkstatus vote, so we can track failures better.
3349     - Backport code from 0.2.3.x that allows directory authorities to
3350       clean their microdescriptor caches. Needed to resolve bug 2230.
3352   o Minor features (hidden services):
3353     - Use computed circuit-build timeouts to decide when to launch
3354       parallel introduction circuits for hidden services. (Previously,
3355       we would retry after 15 seconds.)
3356     - Don't allow v0 hidden service authorities to act as clients.
3357       Required by fix for bug 3000.
3358     - Ignore SIGNAL NEWNYM commands on relay-only Tor instances. Required
3359       by fix for bug 3000.
3360     - Make hidden services work better in private Tor networks by not
3361       requiring any uptime to join the hidden service descriptor
3362       DHT. Implements ticket 2088.
3363     - Log (at info level) when purging pieces of hidden-service-client
3364       state because of SIGNAL NEWNYM.
3366   o Minor features (controller interface):
3367     - New "GETINFO net/listeners/(type)" controller command to return
3368       a list of addresses and ports that are bound for listeners for a
3369       given connection type. This is useful when the user has configured
3370       "SocksPort auto" and the controller needs to know which port got
3371       chosen. Resolves another part of ticket 3076.
3372     - Have the controller interface give a more useful message than
3373       "Internal Error" in response to failed GETINFO requests.
3374     - Add a TIMEOUT_RATE keyword to the BUILDTIMEOUT_SET control port
3375       event, to give information on the current rate of circuit timeouts
3376       over our stored history.
3377     - The 'EXTENDCIRCUIT' control port command can now be used with
3378       a circ id of 0 and no path. This feature will cause Tor to build
3379       a new 'fast' general purpose circuit using its own path selection
3380       algorithms.
3381     - Added a BUILDTIMEOUT_SET controller event to describe changes
3382       to the circuit build timeout.
3383     - New controller command "getinfo config-text". It returns the
3384       contents that Tor would write if you send it a SAVECONF command,
3385       so the controller can write the file to disk itself.
3387   o Minor features (controller protocol):
3388     - Add a new ControlSocketsGroupWritable configuration option: when
3389       it is turned on, ControlSockets are group-writeable by the default
3390       group of the current user. Patch by Jérémy Bobbio; implements
3391       ticket 2972.
3392     - Tor now refuses to create a ControlSocket in a directory that is
3393       world-readable (or group-readable if ControlSocketsGroupWritable
3394       is 0). This is necessary because some operating systems do not
3395       enforce permissions on an AF_UNIX sockets. Permissions on the
3396       directory holding the socket, however, seems to work everywhere.
3397     - Warn when CookieAuthFileGroupReadable is set but CookieAuthFile is
3398       not. This would lead to a cookie that is still not group readable.
3399       Closes bug 1843. Suggested by katmagic.
3400     - Future-proof the controller protocol a bit by ignoring keyword
3401       arguments we do not recognize.
3403   o Minor features (more useful logging):
3404     - Revise most log messages that refer to nodes by nickname to
3405       instead use the "$key=nickname at address" format. This should be
3406       more useful, especially since nicknames are less and less likely
3407       to be unique. Resolves ticket 3045.
3408     - When an HTTPS proxy reports "403 Forbidden", we now explain
3409       what it means rather than calling it an unexpected status code.
3410       Closes bug 2503. Patch from Michael Yakubovich.
3411     - Rate-limit a warning about failures to download v2 networkstatus
3412       documents. Resolves part of bug 1352.
3413     - Rate-limit the "your application is giving Tor only an IP address"
3414       warning. Addresses bug 2000; bugfix on 0.0.8pre2.
3415     - Rate-limit "Failed to hand off onionskin" warnings.
3416     - When logging a rate-limited warning, we now mention how many messages
3417       got suppressed since the last warning.
3418     - Make the formerly ugly "2 unknown, 7 missing key, 0 good, 0 bad,
3419       2 no signature, 4 required" messages about consensus signatures
3420       easier to read, and make sure they get logged at the same severity
3421       as the messages explaining which keys are which. Fixes bug 1290.
3422     - Don't warn when we have a consensus that we can't verify because
3423       of missing certificates, unless those certificates are ones
3424       that we have been trying and failing to download. Fixes bug 1145.
3426   o Minor features (log domains):
3427     - Add documentation for configuring logging at different severities in
3428       different log domains. We've had this feature since 0.2.1.1-alpha,
3429       but for some reason it never made it into the manpage. Fixes
3430       bug 2215.
3431     - Make it simpler to specify "All log domains except for A and B".
3432       Previously you needed to say "[*,~A,~B]". Now you can just say
3433       "[~A,~B]".
3434     - Add a "LogMessageDomains 1" option to include the domains of log
3435       messages along with the messages. Without this, there's no way
3436       to use log domains without reading the source or doing a lot
3437       of guessing.
3438     - Add a new "Handshake" log domain for activities that happen
3439       during the TLS handshake.
3441   o Minor features (build process):
3442     - Make compilation with clang possible when using
3443       "--enable-gcc-warnings" by removing two warning options that clang
3444       hasn't implemented yet and by fixing a few warnings. Resolves
3445       ticket 2696.
3446     - Detect platforms that brokenly use a signed size_t, and refuse to
3447       build there. Found and analyzed by doorss and rransom.
3448     - Fix a bunch of compile warnings revealed by mingw with gcc 4.5.
3449       Resolves bug 2314.
3450     - Add support for statically linking zlib by specifying
3451       "--enable-static-zlib", to go with our support for statically
3452       linking openssl and libevent. Resolves bug 1358.
3453     - Instead of adding the svn revision to the Tor version string, report
3454       the git commit (when we're building from a git checkout).
3455     - Rename the "log.h" header to "torlog.h" so as to conflict with fewer
3456       system headers.
3457     - New --digests command-line switch to output the digests of the
3458       source files Tor was built with.
3459     - Generate our manpage and HTML documentation using Asciidoc. This
3460       change should make it easier to maintain the documentation, and
3461       produce nicer HTML. The build process fails if asciidoc cannot
3462       be found and building with asciidoc isn't disabled (via the
3463       "--disable-asciidoc" argument to ./configure. Skipping the manpage
3464       speeds up the build considerably.
3466   o Minor features (options / torrc):
3467     - Warn when the same option is provided more than once in a torrc
3468       file, on the command line, or in a single SETCONF statement, and
3469       the option is one that only accepts a single line. Closes bug 1384.
3470     - Warn when the user configures two HiddenServiceDir lines that point
3471       to the same directory. Bugfix on 0.0.6 (the version introducing
3472       HiddenServiceDir); fixes bug 3289.
3473     - Add new "perconnbwrate" and "perconnbwburst" consensus params to
3474       do individual connection-level rate limiting of clients. The torrc
3475       config options with the same names trump the consensus params, if
3476       both are present. Replaces the old "bwconnrate" and "bwconnburst"
3477       consensus params which were broken from 0.2.2.7-alpha through
3478       0.2.2.14-alpha. Closes bug 1947.
3479     - New config option "WarnUnsafeSocks 0" disables the warning that
3480       occurs whenever Tor receives a socks handshake using a version of
3481       the socks protocol that can only provide an IP address (rather
3482       than a hostname). Setups that do DNS locally over Tor are fine,
3483       and we shouldn't spam the logs in that case.
3484     - New config option "CircuitStreamTimeout" to override our internal
3485       timeout schedule for how many seconds until we detach a stream from
3486       a circuit and try a new circuit. If your network is particularly
3487       slow, you might want to set this to a number like 60.
3488     - New options for SafeLogging to allow scrubbing only log messages
3489       generated while acting as a relay. Specify "SafeLogging relay" if
3490       you want to ensure that only messages known to originate from
3491       client use of the Tor process will be logged unsafely.
3492     - Time and memory units in the configuration file can now be set to
3493       fractional units. For example, "2.5 GB" is now a valid value for
3494       AccountingMax.
3495     - Support line continuations in the torrc config file. If a line
3496       ends with a single backslash character, the newline is ignored, and
3497       the configuration value is treated as continuing on the next line.
3498       Resolves bug 1929.
3500   o Minor features (unit tests):
3501     - Revise our unit tests to use the "tinytest" framework, so we
3502       can run tests in their own processes, have smarter setup/teardown
3503       code, and so on. The unit test code has moved to its own
3504       subdirectory, and has been split into multiple modules.
3505     - Add a unit test for cross-platform directory-listing code.
3506     - Add some forgotten return value checks during unit tests. Found
3507       by coverity.
3508     - Use GetTempDir to find the proper temporary directory location on
3509       Windows when generating temporary files for the unit tests. Patch
3510       by Gisle Vanem.
3512   o Minor features (misc):
3513     - The "torify" script now uses torsocks where available.
3514     - Make Libevent log messages get delivered to controllers later,
3515       and not from inside the Libevent log handler. This prevents unsafe
3516       reentrant Libevent calls while still letting the log messages
3517       get through.
3518     - Certain Tor clients (such as those behind check.torproject.org) may
3519       want to fetch the consensus in an extra early manner. To enable this
3520       a user may now set FetchDirInfoExtraEarly to 1. This also depends on
3521       setting FetchDirInfoEarly to 1. Previous behavior will stay the same
3522       as only certain clients who must have this information sooner should
3523       set this option.
3524     - Expand homedirs passed to tor-checkkey. This should silence a
3525       coverity complaint about passing a user-supplied string into
3526       open() without checking it.
3527     - Make sure to disable DirPort if running as a bridge. DirPorts aren't
3528       used on bridges, and it makes bridge scanning somewhat easier.
3529     - Create the /var/run/tor directory on startup on OpenSUSE if it is
3530       not already created. Patch from Andreas Stieger. Fixes bug 2573.
3532   o Minor bugfixes (relays):
3533     - When a relay decides that its DNS is too broken for it to serve
3534       as an exit server, it advertised itself as a non-exit, but
3535       continued to act as an exit. This could create accidental
3536       partitioning opportunities for users. Instead, if a relay is
3537       going to advertise reject *:* as its exit policy, it should
3538       really act with exit policy "reject *:*". Fixes bug 2366.
3539       Bugfix on Tor 0.1.2.5-alpha. Bugfix by user "postman" on trac.
3540     - Publish a router descriptor even if generating an extra-info
3541       descriptor fails. Previously we would not publish a router
3542       descriptor without an extra-info descriptor; this can cause fast
3543       exit relays collecting exit-port statistics to drop from the
3544       consensus. Bugfix on 0.1.2.9-rc; fixes bug 2195.
3545     - When we're trying to guess whether we know our IP address as
3546       a relay, we would log various ways that we failed to guess
3547       our address, but never log that we ended up guessing it
3548       successfully. Now add a log line to help confused and anxious
3549       relay operators. Bugfix on 0.1.2.1-alpha; fixes bug 1534.
3550     - For bandwidth accounting, calculate our expected bandwidth rate
3551       based on the time during which we were active and not in
3552       soft-hibernation during the last interval. Previously, we were
3553       also considering the time spent in soft-hibernation. If this
3554       was a long time, we would wind up underestimating our bandwidth
3555       by a lot, and skewing our wakeup time towards the start of the
3556       accounting interval. Fixes bug 1789. Bugfix on 0.0.9pre5.
3557     - Demote a confusing TLS warning that relay operators might get when
3558       someone tries to talk to their ORPort. It is not the operator's
3559       fault, nor can they do anything about it. Fixes bug 1364; bugfix
3560       on 0.2.0.14-alpha.
3561     - Change "Application request when we're believed to be offline."
3562       notice to "Application request when we haven't used client
3563       functionality lately.", to clarify that it's not an error. Bugfix
3564       on 0.0.9.3; fixes bug 1222.
3566   o Minor bugfixes (bridges):
3567     - When a client starts or stops using bridges, never use a circuit
3568       that was built before the configuration change. This behavior could
3569       put at risk a user who uses bridges to ensure that her traffic
3570       only goes to the chosen addresses. Bugfix on 0.2.0.3-alpha; fixes
3571       bug 3200.
3572     - Do not reset the bridge descriptor download status every time we
3573       re-parse our configuration or get a configuration change. Fixes
3574       bug 3019; bugfix on 0.2.0.3-alpha.
3575     - Users couldn't configure a regular relay to be their bridge. It
3576       didn't work because when Tor fetched the bridge descriptor, it found
3577       that it already had it, and didn't realize that the purpose of the
3578       descriptor had changed. Now we replace routers with a purpose other
3579       than bridge with bridge descriptors when fetching them. Bugfix on
3580       0.1.1.9-alpha. Fixes bug 1776.
3581     - In the special case where you configure a public exit relay as your
3582       bridge, Tor would be willing to use that exit relay as the last
3583       hop in your circuit as well. Now we fail that circuit instead.
3584       Bugfix on 0.2.0.12-alpha. Fixes bug 2403. Reported by "piebeer".
3586   o Minor bugfixes (clients):
3587     - We now ask the other side of a stream (the client or the exit)
3588       for more data on that stream when the amount of queued data on
3589       that stream dips low enough. Previously, we wouldn't ask the
3590       other side for more data until either it sent us more data (which
3591       it wasn't supposed to do if it had exhausted its window!) or we
3592       had completely flushed all our queued data. This flow control fix
3593       should improve throughput. Fixes bug 2756; bugfix on the earliest
3594       released versions of Tor (svn commit r152).
3595     - When a client finds that an origin circuit has run out of 16-bit
3596       stream IDs, we now mark it as unusable for new streams. Previously,
3597       we would try to close the entire circuit. Bugfix on 0.0.6.
3598     - Make it explicit that we don't cannibalize one-hop circuits. This
3599       happens in the wild, but doesn't turn out to be a problem because
3600       we fortunately don't use those circuits. Many thanks to outofwords
3601       for the initial analysis and to swissknife who confirmed that
3602       two-hop circuits are actually created.
3603     - Resolve an edge case in path weighting that could make us misweight
3604       our relay selection. Fixes bug 1203; bugfix on 0.0.8rc1.
3605     - Make the DNSPort option work with libevent 2.x. Don't alter the
3606       behaviour for libevent 1.x. Fixes bug 1143. Found by SwissTorExit.
3608   o Minor bugfixes (directory authorities):
3609     - Make directory authorities more accurate at recording when
3610       relays that have failed several reachability tests became
3611       unreachable, so we can provide more accuracy at assigning Stable,
3612       Guard, HSDir, etc flags. Bugfix on 0.2.0.6-alpha. Resolves bug 2716.
3613     - Directory authorities are now more robust to hops back in time
3614       when calculating router stability. Previously, if a run of uptime
3615       or downtime appeared to be negative, the calculation could give
3616       incorrect results. Bugfix on 0.2.0.6-alpha; noticed when fixing
3617       bug 1035.
3618     - Directory authorities will now attempt to download consensuses
3619       if their own efforts to make a live consensus have failed. This
3620       change means authorities that restart will fetch a valid
3621       consensus, and it means authorities that didn't agree with the
3622       current consensus will still fetch and serve it if it has enough
3623       signatures. Bugfix on 0.2.0.9-alpha; fixes bug 1300.
3624     - Never vote for a server as "Running" if we have a descriptor for
3625       it claiming to be hibernating, and that descriptor was published
3626       more recently than our last contact with the server. Bugfix on
3627       0.2.0.3-alpha; fixes bug 911.
3628     - Directory authorities no longer change their opinion of, or vote on,
3629       whether a router is Running, unless they have themselves been
3630       online long enough to have some idea. Bugfix on 0.2.0.6-alpha.
3631       Fixes bug 1023.
3633   o Minor bugfixes (hidden services):
3634     - Log malformed requests for rendezvous descriptors as protocol
3635       warnings, not warnings. Also, use a more informative log message
3636       in case someone sees it at log level warning without prior
3637       info-level messages. Fixes bug 2748; bugfix on 0.2.0.10-alpha.
3638     - Accept hidden service descriptors if we think we might be a hidden
3639       service directory, regardless of what our consensus says. This
3640       helps robustness, since clients and hidden services can sometimes
3641       have a more up-to-date view of the network consensus than we do,
3642       and if they think that the directory authorities list us a HSDir,
3643       we might actually be one. Related to bug 2732; bugfix on
3644       0.2.0.10-alpha.
3645     - Correct the warning displayed when a rendezvous descriptor exceeds
3646       the maximum size. Fixes bug 2750; bugfix on 0.2.1.5-alpha. Found by
3647       John Brooks.
3648     - Clients and hidden services now use HSDir-flagged relays for hidden
3649       service descriptor downloads and uploads even if the relays have no
3650       DirPort set and the client has disabled TunnelDirConns. This will
3651       eventually allow us to give the HSDir flag to relays with no
3652       DirPort. Fixes bug 2722; bugfix on 0.2.1.6-alpha.
3653     - Only limit the lengths of single HS descriptors, even when multiple
3654       HS descriptors are published to an HSDir relay in a single POST
3655       operation. Fixes bug 2948; bugfix on 0.2.1.5-alpha. Found by hsdir.
3657   o Minor bugfixes (controllers):
3658     - Allow GETINFO fingerprint to return a fingerprint even when
3659       we have not yet built a router descriptor. Fixes bug 3577;
3660       bugfix on 0.2.0.1-alpha.
3661     - Send a SUCCEEDED stream event to the controller when a reverse
3662       resolve succeeded. Fixes bug 3536; bugfix on 0.0.8pre1. Issue
3663       discovered by katmagic.
3664     - Remove a trailing asterisk from "exit-policy/default" in the
3665       output of the control port command "GETINFO info/names". Bugfix
3666       on 0.1.2.5-alpha.
3667     - Make the SIGNAL DUMP controller command work on FreeBSD. Fixes bug
3668       2917. Bugfix on 0.1.1.1-alpha.
3669     - When we restart our relay, we might get a successful connection
3670       from the outside before we've started our reachability tests,
3671       triggering a warning: "ORPort found reachable, but I have no
3672       routerinfo yet. Failing to inform controller of success." This
3673       bug was harmless unless Tor is running under a controller
3674       like Vidalia, in which case the controller would never get a
3675       REACHABILITY_SUCCEEDED status event. Bugfix on 0.1.2.6-alpha;
3676       fixes bug 1172.
3677     - When a controller changes TrackHostExits, remove mappings for
3678       hosts that should no longer have their exits tracked. Bugfix on
3679       0.1.0.1-rc.
3680     - When a controller changes VirtualAddrNetwork, remove any mappings
3681       for hosts that were automapped to the old network. Bugfix on
3682       0.1.1.19-rc.
3683     - When a controller changes one of the AutomapHosts* options, remove
3684       any mappings for hosts that should no longer be automapped. Bugfix
3685       on 0.2.0.1-alpha.
3686     - Fix an off-by-one error in calculating some controller command
3687       argument lengths. Fortunately, this mistake is harmless since
3688       the controller code does redundant NUL termination too. Found by
3689       boboper. Bugfix on 0.1.1.1-alpha.
3690     - Fix a bug in the controller interface where "GETINFO ns/asdaskljkl"
3691       would return "551 Internal error" rather than "552 Unrecognized key
3692       ns/asdaskljkl". Bugfix on 0.1.2.3-alpha.
3693     - Don't spam the controller with events when we have no file
3694       descriptors available. Bugfix on 0.2.1.5-alpha. (Rate-limiting
3695       for log messages was already solved from bug 748.)
3696     - Emit a GUARD DROPPED controller event for a case we missed.
3697     - Ensure DNS requests launched by "RESOLVE" commands from the
3698       controller respect the __LeaveStreamsUnattached setconf options. The
3699       same goes for requests launched via DNSPort or transparent
3700       proxying. Bugfix on 0.2.0.1-alpha; fixes bug 1525.
3702   o Minor bugfixes (config options):
3703     - Tor used to limit HttpProxyAuthenticator values to 48 characters.
3704       Change the limit to 512 characters by removing base64 newlines.
3705       Fixes bug 2752. Fix by Michael Yakubovich.
3706     - Complain if PublishServerDescriptor is given multiple arguments that
3707       include 0 or 1. This configuration will be rejected in the future.
3708       Bugfix on 0.2.0.1-alpha; closes bug 1107.
3709     - Disallow BridgeRelay 1 and ORPort 0 at once in the configuration.
3710       Bugfix on 0.2.0.13-alpha; closes bug 928.
3712   o Minor bugfixes (log subsystem fixes):
3713     - When unable to format an address as a string, report its value
3714       as "???" rather than reusing the last formatted address. Bugfix
3715       on 0.2.1.5-alpha.
3716     - Be more consistent in our treatment of file system paths. "~" should
3717       get expanded to the user's home directory in the Log config option.
3718       Fixes bug 2971; bugfix on 0.2.0.1-alpha, which introduced the
3719       feature for the -f and --DataDirectory options.
3721   o Minor bugfixes (memory management):
3722     - Don't stack-allocate the list of supplementary GIDs when we're
3723       about to log them. Stack-allocating NGROUPS_MAX gid_t elements
3724       could take up to 256K, which is way too much stack. Found by
3725       Coverity; CID #450. Bugfix on 0.2.1.7-alpha.
3726     - Save a couple bytes in memory allocation every time we escape
3727       certain characters in a string. Patch from Florian Zumbiehl.
3729   o Minor bugfixes (protocol correctness):
3730     - When checking for 1024-bit keys, check for 1024 bits, not 128
3731       bytes. This allows Tor to correctly discard keys of length 1017
3732       through 1023. Bugfix on 0.0.9pre5.
3733     - Require that introduction point keys and onion handshake keys
3734       have a public exponent of 65537. Starts to fix bug 3207; bugfix
3735       on 0.2.0.10-alpha.
3736     - Handle SOCKS messages longer than 128 bytes long correctly, rather
3737       than waiting forever for them to finish. Fixes bug 2330; bugfix
3738       on 0.2.0.16-alpha. Found by doorss.
3739     - Never relay a cell for a circuit we have already destroyed.
3740       Between marking a circuit as closeable and finally closing it,
3741       it may have been possible for a few queued cells to get relayed,
3742       even though they would have been immediately dropped by the next
3743       OR in the circuit. Fixes bug 1184; bugfix on 0.2.0.1-alpha.
3744     - Never queue a cell for a circuit that's already been marked
3745       for close.
3746     - Fix a spec conformance issue: the network-status-version token
3747       must be the first token in a v3 consensus or vote. Discovered by
3748       "parakeep". Bugfix on 0.2.0.3-alpha.
3749     - A networkstatus vote must contain exactly one signature. Spec
3750       conformance issue. Bugfix on 0.2.0.3-alpha.
3751     - When asked about a DNS record type we don't support via a
3752       client DNSPort, reply with NOTIMPL rather than an empty
3753       reply. Patch by intrigeri. Fixes bug 3369; bugfix on 2.0.1-alpha.
3754     - Make more fields in the controller protocol case-insensitive, since
3755       control-spec.txt said they were.
3757   o Minor bugfixes (log messages):
3758     - Fix a log message that said "bits" while displaying a value in
3759       bytes. Found by wanoskarnet. Fixes bug 3318; bugfix on
3760       0.2.0.1-alpha.
3761     - Downgrade "no current certificates known for authority" message from
3762       Notice to Info. Fixes bug 2899; bugfix on 0.2.0.10-alpha.
3763     - Correctly describe errors that occur when generating a TLS object.
3764       Previously we would attribute them to a failure while generating a
3765       TLS context. Patch by Robert Ransom. Bugfix on 0.1.0.4-rc; fixes
3766       bug 1994.
3767     - Fix an instance where a Tor directory mirror might accidentally
3768       log the IP address of a misbehaving Tor client. Bugfix on
3769       0.1.0.1-rc.
3770     - Stop logging at severity 'warn' when some other Tor client tries
3771       to establish a circuit with us using weak DH keys. It's a protocol
3772       violation, but that doesn't mean ordinary users need to hear about
3773       it. Fixes the bug part of bug 1114. Bugfix on 0.1.0.13.
3774     - If your relay can't keep up with the number of incoming create
3775       cells, it would log one warning per failure into your logs. Limit
3776       warnings to 1 per minute. Bugfix on 0.0.2pre10; fixes bug 1042.
3778   o Minor bugfixes (build fixes):
3779     - Fix warnings from GCC 4.6's "-Wunused-but-set-variable" option.
3780     - When warning about missing zlib development packages during compile,
3781       give the correct package names. Bugfix on 0.2.0.1-alpha.
3782     - Fix warnings that newer versions of autoconf produce during
3783       ./autogen.sh. These warnings appear to be harmless in our case,
3784       but they were extremely verbose. Fixes bug 2020.
3785     - Squash a compile warning on OpenBSD. Reported by Tas; fixes
3786       bug 1848.
3788   o Minor bugfixes (portability):
3789     - Write several files in text mode, on OSes that distinguish text
3790       mode from binary mode (namely, Windows). These files are:
3791       'buffer-stats', 'dirreq-stats', and 'entry-stats' on relays
3792       that collect those statistics; 'client_keys' and 'hostname' for
3793       hidden services that use authentication; and (in the tor-gencert
3794       utility) newly generated identity and signing keys. Previously,
3795       we wouldn't specify text mode or binary mode, leading to an
3796       assertion failure. Fixes bug 3607. Bugfix on 0.2.1.1-alpha (when
3797       the DirRecordUsageByCountry option which would have triggered
3798       the assertion failure was added), although this assertion failure
3799       would have occurred in tor-gencert on Windows in 0.2.0.1-alpha.
3800     - Selectively disable deprecation warnings on OS X because Lion
3801       started deprecating the shipped copy of openssl. Fixes bug 3643.
3802     - Use a wide type to hold sockets when built for 64-bit Windows.
3803       Fixes bug 3270.
3804     - Fix an issue that prevented static linking of libevent on
3805       some platforms (notably Linux). Fixes bug 2698; bugfix on 0.2.1.23,
3806       where we introduced the "--with-static-libevent" configure option.
3807     - Fix a bug with our locking implementation on Windows that couldn't
3808       correctly detect when a file was already locked. Fixes bug 2504,
3809       bugfix on 0.2.1.6-alpha.
3810     - Build correctly on OSX with zlib 1.2.4 and higher with all warnings
3811       enabled.
3812     - Fix IPv6-related connect() failures on some platforms (BSD, OS X).
3813       Bugfix on 0.2.0.3-alpha; fixes first part of bug 2660. Patch by
3814       "piebeer".
3816   o Minor bugfixes (code correctness):
3817     - Always NUL-terminate the sun_path field of a sockaddr_un before
3818       passing it to the kernel. (Not a security issue: kernels are
3819       smart enough to reject bad sockaddr_uns.) Found by Coverity;
3820       CID #428. Bugfix on Tor 0.2.0.3-alpha.
3821     - Make connection_printf_to_buf()'s behaviour sane. Its callers
3822       expect it to emit a CRLF iff the format string ends with CRLF;
3823       it actually emitted a CRLF iff (a) the format string ended with
3824       CRLF or (b) the resulting string was over 1023 characters long or
3825       (c) the format string did not end with CRLF *and* the resulting
3826       string was 1021 characters long or longer. Bugfix on 0.1.1.9-alpha;
3827       fixes part of bug 3407.
3828     - Make send_control_event_impl()'s behaviour sane. Its callers
3829       expect it to always emit a CRLF at the end of the string; it
3830       might have emitted extra control characters as well. Bugfix on
3831       0.1.1.9-alpha; fixes another part of bug 3407.
3832     - Make crypto_rand_int() check the value of its input correctly.
3833       Previously, it accepted values up to UINT_MAX, but could return a
3834       negative number if given a value above INT_MAX+1. Found by George
3835       Kadianakis. Fixes bug 3306; bugfix on 0.2.2pre14.
3836     - Fix a potential null-pointer dereference while computing a
3837       consensus. Bugfix on tor-0.2.0.3-alpha, found with the help of
3838       clang's analyzer.
3839     - If we fail to compute the identity digest of a v3 legacy keypair,
3840       warn, and don't use a buffer-full of junk instead. Bugfix on
3841       0.2.1.1-alpha; fixes bug 3106.
3842     - Resolve an untriggerable issue in smartlist_string_num_isin(),
3843       where if the function had ever in the future been used to check
3844       for the presence of a too-large number, it would have given an
3845       incorrect result. (Fortunately, we only used it for 16-bit
3846       values.) Fixes bug 3175; bugfix on 0.1.0.1-rc.
3847     - Be more careful about reporting the correct error from a failed
3848       connect() system call. Under some circumstances, it was possible to
3849       look at an incorrect value for errno when sending the end reason.
3850       Bugfix on 0.1.0.1-rc.
3851     - Correctly handle an "impossible" overflow cases in connection byte
3852       counting, where we write or read more than 4GB on an edge connection
3853       in a single second. Bugfix on 0.1.2.8-beta.
3854     - Avoid a double mark-for-free warning when failing to attach a
3855       transparent proxy connection. Bugfix on 0.1.2.1-alpha. Fixes
3856       bug 2279.
3857     - Correctly detect failure to allocate an OpenSSL BIO. Fixes bug 2378;
3858       found by "cypherpunks". This bug was introduced before the first
3859       Tor release, in svn commit r110.
3860     - Fix a bug in bandwidth history state parsing that could have been
3861       triggered if a future version of Tor ever changed the timing
3862       granularity at which bandwidth history is measured. Bugfix on
3863       Tor 0.1.1.11-alpha.
3864     - Add assertions to check for overflow in arguments to
3865       base32_encode() and base32_decode(); fix a signed-unsigned
3866       comparison there too. These bugs are not actually reachable in Tor,
3867       but it's good to prevent future errors too. Found by doorss.
3868     - Avoid a bogus overlapped memcpy in tor_addr_copy(). Reported by
3869       "memcpyfail".
3870     - Set target port in get_interface_address6() correctly. Bugfix
3871       on 0.1.1.4-alpha and 0.2.0.3-alpha; fixes second part of bug 2660.
3872     - Fix an impossible-to-actually-trigger buffer overflow in relay
3873       descriptor generation. Bugfix on 0.1.0.15.
3874     - Fix numerous small code-flaws found by Coverity Scan Rung 3.
3876   o Minor bugfixes (code improvements):
3877     - After we free an internal connection structure, overwrite it
3878       with a different memory value than we use for overwriting a freed
3879       internal circuit structure. Should help with debugging. Suggested
3880       by bug 1055.
3881     - If OpenSSL fails to make a duplicate of a private or public key, log
3882       an error message and try to exit cleanly. May help with debugging
3883       if bug 1209 ever remanifests.
3884     - Some options used different conventions for uppercasing of acronyms
3885       when comparing manpage and source. Fix those in favor of the
3886       manpage, as it makes sense to capitalize acronyms.
3887     - Take a first step towards making or.h smaller by splitting out
3888       function definitions for all source files in src/or/. Leave
3889       structures and defines in or.h for now.
3890     - Remove a few dead assignments during router parsing. Found by
3891       coverity.
3892     - Don't use 1-bit wide signed bit fields. Found by coverity.
3893     - Avoid signed/unsigned comparisons by making SIZE_T_CEILING unsigned.
3894       None of the cases where we did this before were wrong, but by making
3895       this change we avoid warnings. Fixes bug 2475; bugfix on 0.2.1.28.
3896     - The memarea code now uses a sentinel value at the end of each area
3897       to make sure nothing writes beyond the end of an area. This might
3898       help debug some conceivable causes of bug 930.
3899     - Always treat failure to allocate an RSA key as an unrecoverable
3900       allocation error.
3901     - Add some more defensive programming for architectures that can't
3902       handle unaligned integer accesses. We don't know of any actual bugs
3903       right now, but that's the best time to fix them. Fixes bug 1943.
3905   o Minor bugfixes (misc):
3906     - Fix a rare bug in rend_fn unit tests: we would fail a test when
3907       a randomly generated port is 0. Diagnosed by Matt Edman. Bugfix
3908       on 0.2.0.10-alpha; fixes bug 1808.
3909     - Where available, use Libevent 2.0's periodic timers so that our
3910       once-per-second cleanup code gets called even more closely to
3911       once per second than it would otherwise. Fixes bug 943.
3912     - Ignore OutboundBindAddress when connecting to localhost.
3913       Connections to localhost need to come _from_ localhost, or else
3914       local servers (like DNS and outgoing HTTP/SOCKS proxies) will often
3915       refuse to listen.
3916     - Update our OpenSSL 0.9.8l fix so that it works with OpenSSL 0.9.8m
3917       too.
3918     - If any of the v3 certs we download are unparseable, we should
3919       actually notice the failure so we don't retry indefinitely. Bugfix
3920       on 0.2.0.x; reported by "rotator".
3921     - When Tor fails to parse a descriptor of any kind, dump it to disk.
3922       Might help diagnosing bug 1051.
3923     - Make our 'torify' script more portable; if we have only one of
3924       'torsocks' or 'tsocks' installed, don't complain to the user;
3925       and explain our warning about tsocks better.
3926     - Fix some urls in the exit notice file and make it XHTML1.1 strict
3927       compliant. Based on a patch from Christian Kujau.
3929   o Documentation changes:
3930     - Modernize the doxygen configuration file slightly. Fixes bug 2707.
3931     - Resolve all doxygen warnings except those for missing documentation.
3932       Fixes bug 2705.
3933     - Add doxygen documentation for more functions, fields, and types.
3934     - Convert the HACKING file to asciidoc, and add a few new sections
3935       to it, explaining how we use Git, how we make changelogs, and
3936       what should go in a patch.
3937     - Document the default socks host and port (127.0.0.1:9050) for
3938       tor-resolve.
3939     - Removed some unnecessary files from the source distribution. The
3940       AUTHORS file has now been merged into the people page on the
3941       website. The roadmaps and design doc can now be found in the
3942       projects directory in svn.
3944   o Deprecated and removed features (config):
3945     - Remove the torrc.complete file. It hasn't been kept up to date
3946       and users will have better luck checking out the manpage.
3947     - Remove the HSAuthorityRecordStats option that version 0 hidden
3948       service authorities could use to track statistics of overall v0
3949       hidden service usage.
3950     - Remove the obsolete "NoPublish" option; it has been flagged
3951       as obsolete and has produced a warning since 0.1.1.18-rc.
3952     - Caches no longer download and serve v2 networkstatus documents
3953       unless FetchV2Networkstatus flag is set: these documents haven't
3954       haven't been used by clients or relays since 0.2.0.x. Resolves
3955       bug 3022.
3957   o Deprecated and removed features (controller):
3958     - The controller no longer accepts the old obsolete "addr-mappings/"
3959       or "unregistered-servers-" GETINFO values.
3960     - The EXTENDED_EVENTS and VERBOSE_NAMES controller features are now
3961       always on; using them is necessary for correct forward-compatible
3962       controllers.
3964   o Deprecated and removed features (misc):
3965     - Hidden services no longer publish version 0 descriptors, and clients
3966       do not request or use version 0 descriptors. However, the old hidden
3967       service authorities still accept and serve version 0 descriptors
3968       when contacted by older hidden services/clients.
3969     - Remove undocumented option "-F" from tor-resolve: it hasn't done
3970       anything since 0.2.1.16-rc.
3971     - Remove everything related to building the expert bundle for OS X.
3972       It has confused many users, doesn't work right on OS X 10.6,
3973       and is hard to get rid of once installed. Resolves bug 1274.
3974     - Remove support for .noconnect style addresses. Nobody was using
3975       them, and they provided another avenue for detecting Tor users
3976       via application-level web tricks.
3977     - When we fixed bug 1038 we had to put in a restriction not to send
3978       RELAY_EARLY cells on rend circuits. This was necessary as long
3979       as relays using Tor 0.2.1.3-alpha through 0.2.1.18-alpha were
3980       active. Now remove this obsolete check. Resolves bug 2081.
3981     - Remove workaround code to handle directory responses from servers
3982       that had bug 539 (they would send HTTP status 503 responses _and_
3983       send a body too). Since only server versions before
3984       0.2.0.16-alpha/0.1.2.19 were affected, there is no longer reason to
3985       keep the workaround in place.
3986     - Remove the old 'fuzzy time' logic. It was supposed to be used for
3987       handling calculations where we have a known amount of clock skew and
3988       an allowed amount of unknown skew. But we only used it in three
3989       places, and we never adjusted the known/unknown skew values. This is
3990       still something we might want to do someday, but if we do, we'll
3991       want to do it differently.
3992     - Remove the "--enable-iphone" option to ./configure. According to
3993       reports from Marco Bonetti, Tor builds fine without any special
3994       tweaking on recent iPhone SDK versions.
3997 Changes in version 0.2.1.30 - 2011-02-23
3998   Tor 0.2.1.30 fixes a variety of less critical bugs. The main other
3999   change is a slight tweak to Tor's TLS handshake that makes relays
4000   and bridges that run this new version reachable from Iran again.
4001   We don't expect this tweak will win the arms race long-term, but it
4002   buys us time until we roll out a better solution.
4004   o Major bugfixes:
4005     - Stop sending a CLOCK_SKEW controller status event whenever
4006       we fetch directory information from a relay that has a wrong clock.
4007       Instead, only inform the controller when it's a trusted authority
4008       that claims our clock is wrong. Bugfix on 0.1.2.6-alpha; fixes
4009       the rest of bug 1074.
4010     - Fix a bounds-checking error that could allow an attacker to
4011       remotely crash a directory authority. Bugfix on 0.2.1.5-alpha.
4012       Found by "piebeer".
4013     - If relays set RelayBandwidthBurst but not RelayBandwidthRate,
4014       Tor would ignore their RelayBandwidthBurst setting,
4015       potentially using more bandwidth than expected. Bugfix on
4016       0.2.0.1-alpha. Reported by Paul Wouters. Fixes bug 2470.
4017     - Ignore and warn if the user mistakenly sets "PublishServerDescriptor
4018       hidserv" in her torrc. The 'hidserv' argument never controlled
4019       publication of hidden service descriptors. Bugfix on 0.2.0.1-alpha.
4021   o Minor features:
4022     - Adjust our TLS Diffie-Hellman parameters to match those used by
4023       Apache's mod_ssl.
4024     - Update to the February 1 2011 Maxmind GeoLite Country database.
4026   o Minor bugfixes:
4027     - Check for and reject overly long directory certificates and
4028       directory tokens before they have a chance to hit any assertions.
4029       Bugfix on 0.2.1.28. Found by "doorss".
4030     - Bring the logic that gathers routerinfos and assesses the
4031       acceptability of circuits into line. This prevents a Tor OP from
4032       getting locked in a cycle of choosing its local OR as an exit for a
4033       path (due to a .exit request) and then rejecting the circuit because
4034       its OR is not listed yet. It also prevents Tor clients from using an
4035       OR running in the same instance as an exit (due to a .exit request)
4036       if the OR does not meet the same requirements expected of an OR
4037       running elsewhere. Fixes bug 1859; bugfix on 0.1.0.1-rc.
4039   o Packaging changes:
4040     - Stop shipping the Tor specs files and development proposal documents
4041       in the tarball. They are now in a separate git repository at
4042       git://git.torproject.org/torspec.git
4043     - Do not include Git version tags as though they are SVN tags when
4044       generating a tarball from inside a repository that has switched
4045       between branches. Bugfix on 0.2.1.15-rc; fixes bug 2402.
4048 Changes in version 0.2.1.29 - 2011-01-15
4049   Tor 0.2.1.29 continues our recent code security audit work. The main
4050   fix resolves a remote heap overflow vulnerability that can allow remote
4051   code execution. Other fixes address a variety of assert and crash bugs,
4052   most of which we think are hard to exploit remotely.
4054   o Major bugfixes (security):
4055     - Fix a heap overflow bug where an adversary could cause heap
4056       corruption. This bug probably allows remote code execution
4057       attacks. Reported by "debuger". Fixes CVE-2011-0427. Bugfix on
4058       0.1.2.10-rc.
4059     - Prevent a denial-of-service attack by disallowing any
4060       zlib-compressed data whose compression factor is implausibly
4061       high. Fixes part of bug 2324; reported by "doorss".
4062     - Zero out a few more keys in memory before freeing them. Fixes
4063       bug 2384 and part of bug 2385. These key instances found by
4064       "cypherpunks", based on Andrew Case's report about being able
4065       to find sensitive data in Tor's memory space if you have enough
4066       permissions. Bugfix on 0.0.2pre9.
4068   o Major bugfixes (crashes):
4069     - Prevent calls to Libevent from inside Libevent log handlers.
4070       This had potential to cause a nasty set of crashes, especially
4071       if running Libevent with debug logging enabled, and running
4072       Tor with a controller watching for low-severity log messages.
4073       Bugfix on 0.1.0.2-rc. Fixes bug 2190.
4074     - Add a check for SIZE_T_MAX to tor_realloc() to try to avoid
4075       underflow errors there too. Fixes the other part of bug 2324.
4076     - Fix a bug where we would assert if we ever had a
4077       cached-descriptors.new file (or another file read directly into
4078       memory) of exactly SIZE_T_CEILING bytes. Fixes bug 2326; bugfix
4079       on 0.2.1.25. Found by doorss.
4080     - Fix some potential asserts and parsing issues with grossly
4081       malformed router caches. Fixes bug 2352; bugfix on Tor 0.2.1.27.
4082       Found by doorss.
4084   o Minor bugfixes (other):
4085     - Fix a bug with handling misformed replies to reverse DNS lookup
4086       requests in DNSPort. Bugfix on Tor 0.2.0.1-alpha. Related to a
4087       bug reported by doorss.
4088     - Fix compilation on mingw when a pthreads compatibility library
4089       has been installed. (We don't want to use it, so we shouldn't
4090       be including pthread.h.) Fixes bug 2313; bugfix on 0.1.0.1-rc.
4091     - Fix a bug where we would declare that we had run out of virtual
4092       addresses when the address space was only half-exhausted. Bugfix
4093       on 0.1.2.1-alpha.
4094     - Correctly handle the case where AutomapHostsOnResolve is set but
4095       no virtual addresses are available. Fixes bug 2328; bugfix on
4096       0.1.2.1-alpha. Bug found by doorss.
4097     - Correctly handle wrapping around when we run out of virtual
4098       address space. Found by cypherpunks; bugfix on 0.2.0.5-alpha.
4100   o Minor features:
4101     - Update to the January 1 2011 Maxmind GeoLite Country database.
4102     - Introduce output size checks on all of our decryption functions.
4104   o Build changes:
4105     - Tor does not build packages correctly with Automake 1.6 and earlier;
4106       added a check to Makefile.am to make sure that we're building with
4107       Automake 1.7 or later.
4108     - The 0.2.1.28 tarball was missing src/common/OpenBSD_malloc_Linux.c
4109       because we built it with a too-old version of automake. Thus that
4110       release broke ./configure --enable-openbsd-malloc, which is popular
4111       among really fast exit relays on Linux.
4114 Changes in version 0.2.1.28 - 2010-12-17
4115   Tor 0.2.1.28 does some code cleanup to reduce the risk of remotely
4116   exploitable bugs. We also took this opportunity to change the IP address
4117   for one of our directory authorities, and to update the geoip database
4118   we ship.
4120   o Major bugfixes:
4121     - Fix a remotely exploitable bug that could be used to crash instances
4122       of Tor remotely by overflowing on the heap. Remote-code execution
4123       hasn't been confirmed, but can't be ruled out. Everyone should
4124       upgrade. Bugfix on the 0.1.1 series and later.
4126   o Directory authority changes:
4127     - Change IP address and ports for gabelmoo (v3 directory authority).
4129   o Minor features:
4130     - Update to the December 1 2010 Maxmind GeoLite Country database.
4133 Changes in version 0.2.1.27 - 2010-11-23
4134   Yet another OpenSSL security patch broke its compatibility with Tor:
4135   Tor 0.2.1.27 makes relays work with openssl 0.9.8p and 1.0.0.b. We
4136   also took this opportunity to fix several crash bugs, integrate a new
4137   directory authority, and update the bundled GeoIP database.
4139   o Major bugfixes:
4140     - Resolve an incompatibility with OpenSSL 0.9.8p and OpenSSL 1.0.0b:
4141       No longer set the tlsext_host_name extension on server SSL objects;
4142       but continue to set it on client SSL objects. Our goal in setting
4143       it was to imitate a browser, not a vhosting server. Fixes bug 2204;
4144       bugfix on 0.2.1.1-alpha.
4145     - Do not log messages to the controller while shrinking buffer
4146       freelists. Doing so would sometimes make the controller connection
4147       try to allocate a buffer chunk, which would mess up the internals
4148       of the freelist and cause an assertion failure. Fixes bug 1125;
4149       fixed by Robert Ransom. Bugfix on 0.2.0.16-alpha.
4150     - Learn our external IP address when we're a relay or bridge, even if
4151       we set PublishServerDescriptor to 0. Bugfix on 0.2.0.3-alpha,
4152       where we introduced bridge relays that don't need to publish to
4153       be useful. Fixes bug 2050.
4154     - Do even more to reject (and not just ignore) annotations on
4155       router descriptors received anywhere but from the cache. Previously
4156       we would ignore such annotations at first, but cache them to disk
4157       anyway. Bugfix on 0.2.0.8-alpha. Found by piebeer.
4158     - When you're using bridges and your network goes away and your
4159       bridges get marked as down, recover when you attempt a new socks
4160       connection (if the network is back), rather than waiting up to an
4161       hour to try fetching new descriptors for your bridges. Bugfix on
4162       0.2.0.3-alpha; fixes bug 1981.
4164   o Major features:
4165     - Move to the November 2010 Maxmind GeoLite country db (rather
4166       than the June 2009 ip-to-country GeoIP db) for our statistics that
4167       count how many users relays are seeing from each country. Now we'll
4168       have more accurate data, especially for many African countries.
4170   o New directory authorities:
4171     - Set up maatuska (run by Linus Nordberg) as the eighth v3 directory
4172       authority.
4174   o Minor bugfixes:
4175     - Fix an assertion failure that could occur in directory caches or
4176       bridge users when using a very short voting interval on a testing
4177       network. Diagnosed by Robert Hogan. Fixes bug 1141; bugfix on
4178       0.2.0.8-alpha.
4179     - Enforce multiplicity rules when parsing annotations. Bugfix on
4180       0.2.0.8-alpha. Found by piebeer.
4181     - Allow handshaking OR connections to take a full KeepalivePeriod
4182       seconds to handshake. Previously, we would close them after
4183       IDLE_OR_CONN_TIMEOUT (180) seconds, the same timeout as if they
4184       were open. Bugfix on 0.2.1.26; fixes bug 1840. Thanks to mingw-san
4185       for analysis help.
4186     - When building with --enable-gcc-warnings on OpenBSD, disable
4187       warnings in system headers. This makes --enable-gcc-warnings
4188       pass on OpenBSD 4.8.
4190   o Minor features:
4191     - Exit nodes didn't recognize EHOSTUNREACH as a plausible error code,
4192       and so sent back END_STREAM_REASON_MISC. Clients now recognize a new
4193       stream ending reason for this case: END_STREAM_REASON_NOROUTE.
4194       Servers can start sending this code when enough clients recognize
4195       it. Bugfix on 0.1.0.1-rc; fixes part of bug 1793.
4196     - Build correctly on mingw with more recent versions of OpenSSL 0.9.8.
4197       Patch from mingw-san.
4199   o Removed files:
4200     - Remove the old debian/ directory from the main Tor distribution.
4201       The official Tor-for-debian git repository lives at the URL
4202       https://git.torproject.org/debian/tor.git
4203     - Stop shipping the old doc/website/ directory in the tarball. We
4204       changed the website format in late 2010, and what we shipped in
4205       0.2.1.26 really wasn't that useful anyway.
4208 Changes in version 0.2.1.26 - 2010-05-02
4209   Tor 0.2.1.26 addresses the recent connection and memory overload
4210   problems we've been seeing on relays, especially relays with their
4211   DirPort open. If your relay has been crashing, or you turned it off
4212   because it used too many resources, give this release a try.
4214   This release also fixes yet another instance of broken OpenSSL libraries
4215   that was causing some relays to drop out of the consensus.
4217   o Major bugfixes:
4218     - Teach relays to defend themselves from connection overload. Relays
4219       now close idle circuits early if it looks like they were intended
4220       for directory fetches. Relays are also more aggressive about closing
4221       TLS connections that have no circuits on them. Such circuits are
4222       unlikely to be re-used, and tens of thousands of them were piling
4223       up at the fast relays, causing the relays to run out of sockets
4224       and memory. Bugfix on 0.2.0.22-rc (where clients started tunneling
4225       their directory fetches over TLS).
4226     - Fix SSL renegotiation behavior on OpenSSL versions like on Centos
4227       that claim to be earlier than 0.9.8m, but which have in reality
4228       backported huge swaths of 0.9.8m or 0.9.8n renegotiation
4229       behavior. Possible fix for some cases of bug 1346.
4230     - Directory mirrors were fetching relay descriptors only from v2
4231       directory authorities, rather than v3 authorities like they should.
4232       Only 2 v2 authorities remain (compared to 7 v3 authorities), leading
4233       to a serious bottleneck. Bugfix on 0.2.0.9-alpha. Fixes bug 1324.
4235   o Minor bugfixes:
4236     - Finally get rid of the deprecated and now harmful notion of "clique
4237       mode", where directory authorities maintain TLS connections to
4238       every other relay.
4240   o Testsuite fixes:
4241     - In the util/threads test, no longer free the test_mutex before all
4242       worker threads have finished. Bugfix on 0.2.1.6-alpha.
4243     - The master thread could starve the worker threads quite badly on
4244       certain systems, causing them to run only partially in the allowed
4245       window. This resulted in test failures. Now the master thread sleeps
4246       occasionally for a few microseconds while the two worker-threads
4247       compete for the mutex. Bugfix on 0.2.0.1-alpha.
4250 Changes in version 0.2.1.25 - 2010-03-16
4251   Tor 0.2.1.25 fixes a regression introduced in 0.2.1.23 that could
4252   prevent relays from guessing their IP address correctly. It also fixes
4253   several minor potential security bugs.
4255   o Major bugfixes:
4256     - Fix a regression from our patch for bug 1244 that caused relays
4257       to guess their IP address incorrectly if they didn't set Address
4258       in their torrc and/or their address fails to resolve. Bugfix on
4259       0.2.1.23; fixes bug 1269.
4260     - When freeing a session key, zero it out completely. We only zeroed
4261       the first ptrsize bytes. Bugfix on 0.0.2pre8. Discovered and
4262       patched by ekir. Fixes bug 1254.
4264   o Minor bugfixes:
4265     - Fix a dereference-then-NULL-check sequence when publishing
4266       descriptors. Bugfix on 0.2.1.5-alpha. Discovered by ekir; fixes
4267       bug 1255.
4268     - Fix another dereference-then-NULL-check sequence. Bugfix on
4269       0.2.1.14-rc. Discovered by ekir; fixes bug 1256.
4270     - Make sure we treat potentially not NUL-terminated strings correctly.
4271       Bugfix on 0.1.1.13-alpha. Discovered by rieo; fixes bug 1257.
4274 Changes in version 0.2.1.24 - 2010-02-21
4275   Tor 0.2.1.24 makes Tor work again on the latest OS X -- this time
4276   for sure!
4278   o Minor bugfixes:
4279     - Work correctly out-of-the-box with even more vendor-patched versions
4280       of OpenSSL. In particular, make it so Debian and OS X don't need
4281       customized patches to run/build.
4284 Changes in version 0.2.1.23 - 2010-02-13
4285   Tor 0.2.1.23 fixes a huge client-side performance bug, makes Tor work
4286   again on the latest OS X, and updates the location of a directory
4287   authority.
4289   o Major bugfixes (performance):
4290     - We were selecting our guards uniformly at random, and then weighting
4291       which of our guards we'd use uniformly at random. This imbalance
4292       meant that Tor clients were severely limited on throughput (and
4293       probably latency too) by the first hop in their circuit. Now we
4294       select guards weighted by currently advertised bandwidth. We also
4295       automatically discard guards picked using the old algorithm. Fixes
4296       bug 1217; bugfix on 0.2.1.3-alpha. Found by Mike Perry.
4298   o Major bugfixes:
4299     - Make Tor work again on the latest OS X: when deciding whether to
4300       use strange flags to turn TLS renegotiation on, detect the OpenSSL
4301       version at run-time, not compile time. We need to do this because
4302       Apple doesn't update its dev-tools headers when it updates its
4303       libraries in a security patch.
4304     - Fix a potential buffer overflow in lookup_last_hid_serv_request()
4305       that could happen on 32-bit platforms with 64-bit time_t. Also fix
4306       a memory leak when requesting a hidden service descriptor we've
4307       requested before. Fixes bug 1242, bugfix on 0.2.0.18-alpha. Found
4308       by aakova.
4310   o Minor bugfixes:
4311     - Refactor resolve_my_address() to not use gethostbyname() anymore.
4312       Fixes bug 1244; bugfix on 0.0.2pre25. Reported by Mike Mestnik.
4314   o Minor features:
4315     - Avoid a mad rush at the beginning of each month when each client
4316       rotates half of its guards. Instead we spread the rotation out
4317       throughout the month, but we still avoid leaving a precise timestamp
4318       in the state file about when we first picked the guard. Improves
4319       over the behavior introduced in 0.1.2.17.
4322 Changes in version 0.2.1.22 - 2010-01-19
4323   Tor 0.2.1.22 fixes a critical privacy problem in bridge directory
4324   authorities -- it would tell you its whole history of bridge descriptors
4325   if you make the right directory request. This stable update also
4326   rotates two of the seven v3 directory authority keys and locations.
4328   o Directory authority changes:
4329     - Rotate keys (both v3 identity and relay identity) for moria1
4330       and gabelmoo.
4332   o Major bugfixes:
4333     - Stop bridge directory authorities from answering dbg-stability.txt
4334       directory queries, which would let people fetch a list of all
4335       bridge identities they track. Bugfix on 0.2.1.6-alpha.
4338 Changes in version 0.2.1.21 - 2009-12-21
4339   Tor 0.2.1.21 fixes an incompatibility with the most recent OpenSSL
4340   library. If you use Tor on Linux / Unix and you're getting SSL
4341   renegotiation errors, upgrading should help. We also recommend an
4342   upgrade if you're an exit relay.
4344   o Major bugfixes:
4345     - Work around a security feature in OpenSSL 0.9.8l that prevents our
4346       handshake from working unless we explicitly tell OpenSSL that we
4347       are using SSL renegotiation safely. We are, of course, but OpenSSL
4348       0.9.8l won't work unless we say we are.
4349     - Avoid crashing if the client is trying to upload many bytes and the
4350       circuit gets torn down at the same time, or if the flip side
4351       happens on the exit relay. Bugfix on 0.2.0.1-alpha; fixes bug 1150.
4353   o Minor bugfixes:
4354     - Do not refuse to learn about authority certs and v2 networkstatus
4355       documents that are older than the latest consensus. This bug might
4356       have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha.
4357       Spotted and fixed by xmux.
4358     - Fix a couple of very-hard-to-trigger memory leaks, and one hard-to-
4359       trigger platform-specific option misparsing case found by Coverity
4360       Scan.
4361     - Fix a compilation warning on Fedora 12 by removing an impossible-to-
4362       trigger assert. Fixes bug 1173.
4365 Changes in version 0.2.1.20 - 2009-10-15
4366   Tor 0.2.1.20 fixes a crash bug when you're accessing many hidden
4367   services at once, prepares for more performance improvements, and
4368   fixes a bunch of smaller bugs.
4370   The Windows and OS X bundles also include a more recent Vidalia,
4371   and switch from Privoxy to Polipo.
4373   The OS X installers are now drag and drop. It's best to un-install
4374   Tor/Vidalia and then install this new bundle, rather than upgrade. If
4375   you want to upgrade, you'll need to update the paths for Tor and Polipo
4376   in the Vidalia Settings window.
4378   o Major bugfixes:
4379     - Send circuit or stream sendme cells when our window has decreased
4380       by 100 cells, not when it has decreased by 101 cells. Bug uncovered
4381       by Karsten when testing the "reduce circuit window" performance
4382       patch. Bugfix on the 54th commit on Tor -- from July 2002,
4383       before the release of Tor 0.0.0. This is the new winner of the
4384       oldest-bug prize.
4385     - Fix a remotely triggerable memory leak when a consensus document
4386       contains more than one signature from the same voter. Bugfix on
4387       0.2.0.3-alpha.
4388     - Avoid segfault in rare cases when finishing an introduction circuit
4389       as a client and finding out that we don't have an introduction key
4390       for it. Fixes bug 1073. Reported by Aaron Swartz.
4392   o Major features:
4393     - Tor now reads the "circwindow" parameter out of the consensus,
4394       and uses that value for its circuit package window rather than the
4395       default of 1000 cells. Begins the implementation of proposal 168.
4397   o New directory authorities:
4398     - Set up urras (run by Jacob Appelbaum) as the seventh v3 directory
4399       authority.
4400     - Move moria1 and tonga to alternate IP addresses.
4402   o Minor bugfixes:
4403     - Fix a signed/unsigned compile warning in 0.2.1.19.
4404     - Fix possible segmentation fault on directory authorities. Bugfix on
4405       0.2.1.14-rc.
4406     - Fix an extremely rare infinite recursion bug that could occur if
4407       we tried to log a message after shutting down the log subsystem.
4408       Found by Matt Edman. Bugfix on 0.2.0.16-alpha.
4409     - Fix an obscure bug where hidden services on 64-bit big-endian
4410       systems might mis-read the timestamp in v3 introduce cells, and
4411       refuse to connect back to the client. Discovered by "rotor".
4412       Bugfix on 0.2.1.6-alpha.
4413     - We were triggering a CLOCK_SKEW controller status event whenever
4414       we connect via the v2 connection protocol to any relay that has
4415       a wrong clock. Instead, we should only inform the controller when
4416       it's a trusted authority that claims our clock is wrong. Bugfix
4417       on 0.2.0.20-rc; starts to fix bug 1074. Reported by SwissTorExit.
4418     - We were telling the controller about CHECKING_REACHABILITY and
4419       REACHABILITY_FAILED status events whenever we launch a testing
4420       circuit or notice that one has failed. Instead, only tell the
4421       controller when we want to inform the user of overall success or
4422       overall failure. Bugfix on 0.1.2.6-alpha. Fixes bug 1075. Reported
4423       by SwissTorExit.
4424     - Don't warn when we're using a circuit that ends with a node
4425       excluded in ExcludeExitNodes, but the circuit is not used to access
4426       the outside world. This should help fix bug 1090. Bugfix on
4427       0.2.1.6-alpha.
4428     - Work around a small memory leak in some versions of OpenSSL that
4429       stopped the memory used by the hostname TLS extension from being
4430       freed.
4432   o Minor features:
4433     - Add a "getinfo status/accepted-server-descriptor" controller
4434       command, which is the recommended way for controllers to learn
4435       whether our server descriptor has been successfully received by at
4436       least on directory authority. Un-recommend good-server-descriptor
4437       getinfo and status events until we have a better design for them.
4440 Changes in version 0.2.1.19 - 2009-07-28
4441   Tor 0.2.1.19 fixes a major bug with accessing and providing hidden
4442   services.
4444   o Major bugfixes:
4445     - Make accessing hidden services on 0.2.1.x work right again.
4446       Bugfix on 0.2.1.3-alpha; workaround for bug 1038. Diagnosis and
4447       part of patch provided by "optimist".
4449   o Minor features:
4450     - When a relay/bridge is writing out its identity key fingerprint to
4451       the "fingerprint" file and to its logs, write it without spaces. Now
4452       it will look like the fingerprints in our bridges documentation,
4453       and confuse fewer users.
4455   o Minor bugfixes:
4456     - Relays no longer publish a new server descriptor if they change
4457       their MaxAdvertisedBandwidth config option but it doesn't end up
4458       changing their advertised bandwidth numbers. Bugfix on 0.2.0.28-rc;
4459       fixes bug 1026. Patch from Sebastian.
4460     - Avoid leaking memory every time we get a create cell but we have
4461       so many already queued that we refuse it. Bugfix on 0.2.0.19-alpha;
4462       fixes bug 1034. Reported by BarkerJr.
4465 Changes in version 0.2.1.18 - 2009-07-24
4466   Tor 0.2.1.18 lays the foundations for performance improvements,
4467   adds status events to help users diagnose bootstrap problems, adds
4468   optional authentication/authorization for hidden services, fixes a
4469   variety of potential anonymity problems, and includes a huge pile of
4470   other features and bug fixes.
4472   o Major features (clients):
4473     - Start sending "bootstrap phase" status events to the controller,
4474       so it can keep the user informed of progress fetching directory
4475       information and establishing circuits. Also inform the controller
4476       if we think we're stuck at a particular bootstrap phase. Implements
4477       proposal 137.
4478     - Clients replace entry guards that were chosen more than a few months
4479       ago. This change should significantly improve client performance,
4480       especially once more people upgrade, since relays that have been
4481       a guard for a long time are currently overloaded.
4482     - Network status consensus documents and votes now contain bandwidth
4483       information for each relay. Clients use the bandwidth values
4484       in the consensus, rather than the bandwidth values in each
4485       relay descriptor. This approach opens the door to more accurate
4486       bandwidth estimates once the directory authorities start doing
4487       active measurements. Implements part of proposal 141.
4489   o Major features (relays):
4490     - Disable and refactor some debugging checks that forced a linear scan
4491       over the whole server-side DNS cache. These accounted for over 50%
4492       of CPU time on a relatively busy exit node's gprof profile. Also,
4493       disable some debugging checks that appeared in exit node profile
4494       data. Found by Jacob.
4495     - New DirPortFrontPage option that takes an html file and publishes
4496       it as "/" on the DirPort. Now relay operators can provide a
4497       disclaimer without needing to set up a separate webserver. There's
4498       a sample disclaimer in contrib/tor-exit-notice.html.
4500   o Major features (hidden services):
4501     - Make it possible to build hidden services that only certain clients
4502       are allowed to connect to. This is enforced at several points,
4503       so that unauthorized clients are unable to send INTRODUCE cells
4504       to the service, or even (depending on the type of authentication)
4505       to learn introduction points. This feature raises the bar for
4506       certain kinds of active attacks against hidden services. Design
4507       and code by Karsten Loesing. Implements proposal 121.
4508     - Relays now store and serve v2 hidden service descriptors by default,
4509       i.e., the new default value for HidServDirectoryV2 is 1. This is
4510       the last step in proposal 114, which aims to make hidden service
4511       lookups more reliable.
4513   o Major features (path selection):
4514     - ExitNodes and Exclude*Nodes config options now allow you to restrict
4515       by country code ("{US}") or IP address or address pattern
4516       ("255.128.0.0/16"). Patch from Robert Hogan. It still needs some
4517       refinement to decide what config options should take priority if
4518       you ask to both use a particular node and exclude it.
4520   o Major features (misc):
4521     - When building a consensus, do not include routers that are down.
4522       This cuts down 30% to 40% on consensus size. Implements proposal
4523       138.
4524     - New TestingTorNetwork config option to allow adjustment of
4525       previously constant values that could slow bootstrapping. Implements
4526       proposal 135. Patch from Karsten.
4527     - Convert many internal address representations to optionally hold
4528       IPv6 addresses. Generate and accept IPv6 addresses in many protocol
4529       elements. Make resolver code handle nameservers located at IPv6
4530       addresses.
4531     - More work on making our TLS handshake blend in: modify the list
4532       of ciphers advertised by OpenSSL in client mode to even more
4533       closely resemble a common web browser. We cheat a little so that
4534       we can advertise ciphers that the locally installed OpenSSL doesn't
4535       know about.
4536     - Use the TLS1 hostname extension to more closely resemble browser
4537       behavior.
4539   o Security fixes (anonymity/entropy):
4540     - Never use a connection with a mismatched address to extend a
4541       circuit, unless that connection is canonical. A canonical
4542       connection is one whose address is authenticated by the router's
4543       identity key, either in a NETINFO cell or in a router descriptor.
4544     - Implement most of proposal 110: The first K cells to be sent
4545       along a circuit are marked as special "early" cells; only K "early"
4546       cells will be allowed. Once this code is universal, we can block
4547       certain kinds of denial-of-service attack by requiring that EXTEND
4548       commands must be sent using an "early" cell.
4549     - Resume using OpenSSL's RAND_poll() for better (and more portable)
4550       cross-platform entropy collection again. We used to use it, then
4551       stopped using it because of a bug that could crash systems that
4552       called RAND_poll when they had a lot of fds open. It looks like the
4553       bug got fixed in late 2006. Our new behavior is to call RAND_poll()
4554       at startup, and to call RAND_poll() when we reseed later only if
4555       we have a non-buggy OpenSSL version.
4556     - When the client is choosing entry guards, now it selects at most
4557       one guard from a given relay family. Otherwise we could end up with
4558       all of our entry points into the network run by the same operator.
4559       Suggested by Camilo Viecco. Fix on 0.1.1.11-alpha.
4560     - Do not use or believe expired v3 authority certificates. Patch
4561       from Karsten. Bugfix in 0.2.0.x. Fixes bug 851.
4562     - Drop begin cells to a hidden service if they come from the middle
4563       of a circuit. Patch from lark.
4564     - When we erroneously receive two EXTEND cells for the same circuit
4565       ID on the same connection, drop the second. Patch from lark.
4566     - Authorities now vote for the Stable flag for any router whose
4567       weighted MTBF is at least 5 days, regardless of the mean MTBF.
4568     - Clients now never report any stream end reason except 'MISC'.
4569       Implements proposal 148.
4571   o Major bugfixes (crashes):
4572     - Parse dates and IPv4 addresses in a locale- and libc-independent
4573       manner, to avoid platform-dependent behavior on malformed input.
4574     - Fix a crash that occurs on exit nodes when a nameserver request
4575       timed out. Bugfix on 0.1.2.1-alpha; our CLEAR debugging code had
4576       been suppressing the bug since 0.1.2.10-alpha. Partial fix for
4577       bug 929.
4578     - Do not assume that a stack-allocated character array will be
4579       64-bit aligned on platforms that demand that uint64_t access is
4580       aligned. Possible fix for bug 604.
4581     - Resolve a very rare crash bug that could occur when the user forced
4582       a nameserver reconfiguration during the middle of a nameserver
4583       probe. Fixes bug 526. Bugfix on 0.1.2.1-alpha.
4584     - Avoid a "0 divided by 0" calculation when calculating router uptime
4585       at directory authorities. Bugfix on 0.2.0.8-alpha.
4586     - Fix an assertion bug in parsing policy-related options; possible fix
4587       for bug 811.
4588     - Rate-limit too-many-sockets messages: when they happen, they happen
4589       a lot and end up filling up the disk. Resolves bug 748.
4590     - Fix a race condition that could cause crashes or memory corruption
4591       when running as a server with a controller listening for log
4592       messages.
4593     - Avoid crashing when we have a policy specified in a DirPolicy or
4594       SocksPolicy or ReachableAddresses option with ports set on it,
4595       and we re-load the policy. May fix bug 996.
4596     - Fix an assertion failure on 64-bit platforms when we allocated
4597       memory right up to the end of a memarea, then realigned the memory
4598       one step beyond the end. Fixes a possible cause of bug 930.
4599     - Protect the count of open sockets with a mutex, so we can't
4600       corrupt it when two threads are closing or opening sockets at once.
4601       Fix for bug 939. Bugfix on 0.2.0.1-alpha.
4603   o Major bugfixes (clients):
4604     - Discard router descriptors as we load them if they are more than
4605       five days old. Otherwise if Tor is off for a long time and then
4606       starts with cached descriptors, it will try to use the onion keys
4607       in those obsolete descriptors when building circuits. Fixes bug 887.
4608     - When we choose to abandon a new entry guard because we think our
4609       older ones might be better, close any circuits pending on that
4610       new entry guard connection. This fix should make us recover much
4611       faster when our network is down and then comes back. Bugfix on
4612       0.1.2.8-beta; found by lodger.
4613     - When Tor clients restart after 1-5 days, they discard all their
4614       cached descriptors as too old, but they still use the cached
4615       consensus document. This approach is good for robustness, but
4616       bad for performance: since they don't know any bandwidths, they
4617       end up choosing at random rather than weighting their choice by
4618       speed. Fixed by the above feature of putting bandwidths in the
4619       consensus.
4621   o Major bugfixes (relays):
4622     - Relays were falling out of the networkstatus consensus for
4623       part of a day if they changed their local config but the
4624       authorities discarded their new descriptor as "not sufficiently
4625       different". Now directory authorities accept a descriptor as changed
4626       if BandwidthRate or BandwidthBurst changed. Partial fix for bug 962;
4627       patch by Sebastian.
4628     - Ensure that two circuits can never exist on the same connection
4629       with the same circuit ID, even if one is marked for close. This
4630       is conceivably a bugfix for bug 779; fixes a bug on 0.1.0.4-rc.
4631     - Directory authorities were neglecting to mark relays down in their
4632       internal histories if the relays fall off the routerlist without
4633       ever being found unreachable. So there were relays in the histories
4634       that haven't been seen for eight months, and are listed as being
4635       up for eight months. This wreaked havoc on the "median wfu" and
4636       "median mtbf" calculations, in turn making Guard and Stable flags
4637       wrong, hurting network performance. Fixes bugs 696 and 969. Bugfix
4638       on 0.2.0.6-alpha.
4640   o Major bugfixes (hidden services):
4641     - When establishing a hidden service, introduction points that
4642       originate from cannibalized circuits were completely ignored
4643       and not included in rendezvous service descriptors. This might
4644       have been another reason for delay in making a hidden service
4645       available. Bugfix from long ago (0.0.9.x?)
4647   o Major bugfixes (memory and resource management):
4648     - Fixed some memory leaks -- some quite frequent, some almost
4649       impossible to trigger -- based on results from Coverity.
4650     - Speed up parsing and cut down on memory fragmentation by using
4651       stack-style allocations for parsing directory objects. Previously,
4652       this accounted for over 40% of allocations from within Tor's code
4653       on a typical directory cache.
4654     - Use a Bloom filter rather than a digest-based set to track which
4655       descriptors we need to keep around when we're cleaning out old
4656       router descriptors. This speeds up the computation significantly,
4657       and may reduce fragmentation.
4659   o New/changed config options:
4660     - Now NodeFamily and MyFamily config options allow spaces in
4661       identity fingerprints, so it's easier to paste them in.
4662       Suggested by Lucky Green.
4663     - Allow ports 465 and 587 in the default exit policy again. We had
4664       rejected them in 0.1.0.15, because back in 2005 they were commonly
4665       misconfigured and ended up as spam targets. We hear they are better
4666       locked down these days.
4667     - Make TrackHostExit mappings expire a while after their last use, not
4668       after their creation. Patch from Robert Hogan.
4669     - Add an ExcludeExitNodes option so users can list a set of nodes
4670       that should be be excluded from the exit node position, but
4671       allowed elsewhere. Implements proposal 151.
4672     - New --hush command-line option similar to --quiet. While --quiet
4673       disables all logging to the console on startup, --hush limits the
4674       output to messages of warning and error severity.
4675     - New configure/torrc options (--enable-geoip-stats,
4676       DirRecordUsageByCountry) to record how many IPs we've served
4677       directory info to in each country code, how many status documents
4678       total we've sent to each country code, and what share of the total
4679       directory requests we should expect to see.
4680     - Make outbound DNS packets respect the OutboundBindAddress setting.
4681       Fixes the bug part of bug 798. Bugfix on 0.1.2.2-alpha.
4682     - Allow separate log levels to be configured for different logging
4683       domains. For example, this allows one to log all notices, warnings,
4684       or errors, plus all memory management messages of level debug or
4685       higher, with: Log [MM] debug-err [*] notice-err file /var/log/tor.
4686     - Update to the "June 3 2009" ip-to-country file.
4688   o Minor features (relays):
4689     - Raise the minimum rate limiting to be a relay from 20000 bytes
4690       to 20480 bytes (aka 20KB/s), to match our documentation. Also
4691       update directory authorities so they always assign the Fast flag
4692       to relays with 20KB/s of capacity. Now people running relays won't
4693       suddenly find themselves not seeing any use, if the network gets
4694       faster on average.
4695     - If we're a relay and we change our IP address, be more verbose
4696       about the reason that made us change. Should help track down
4697       further bugs for relays on dynamic IP addresses.
4698     - Exit servers can now answer resolve requests for ip6.arpa addresses.
4699     - Implement most of Proposal 152: allow specialized servers to permit
4700       single-hop circuits, and clients to use those servers to build
4701       single-hop circuits when using a specialized controller. Patch
4702       from Josh Albrecht. Resolves feature request 768.
4703     - When relays do their initial bandwidth measurement, don't limit
4704       to just our entry guards for the test circuits. Otherwise we tend
4705       to have multiple test circuits going through a single entry guard,
4706       which makes our bandwidth test less accurate. Fixes part of bug 654;
4707       patch contributed by Josh Albrecht.
4709   o Minor features (directory authorities):
4710     - Try not to open more than one descriptor-downloading connection
4711       to an authority at once. This should reduce load on directory
4712       authorities. Fixes bug 366.
4713     - Add cross-certification to newly generated certificates, so that
4714       a signing key is enough information to look up a certificate. Start
4715       serving certificates by <identity digest, signing key digest>
4716       pairs. Implements proposal 157.
4717     - When a directory authority downloads a descriptor that it then
4718       immediately rejects, do not retry downloading it right away. Should
4719       save some bandwidth on authorities. Fix for bug 888. Patch by
4720       Sebastian Hahn.
4721     - Directory authorities now serve a /tor/dbg-stability.txt URL to
4722       help debug WFU and MTBF calculations.
4723     - In directory authorities' approved-routers files, allow
4724       fingerprints with or without space.
4726   o Minor features (directory mirrors):
4727     - When a download gets us zero good descriptors, do not notify
4728       Tor that new directory information has arrived.
4729     - Servers support a new URL scheme for consensus downloads that
4730       allows the client to specify which authorities are trusted.
4731       The server then only sends the consensus if the client will trust
4732       it. Otherwise a 404 error is sent back. Clients use this
4733       new scheme when the server supports it (meaning it's running
4734       0.2.1.1-alpha or later). Implements proposal 134.
4736   o Minor features (bridges):
4737     - If the bridge config line doesn't specify a port, assume 443.
4738       This makes bridge lines a bit smaller and easier for users to
4739       understand.
4740     - If we're using bridges and our network goes away, be more willing
4741       to forgive our bridges and try again when we get an application
4742       request.
4744   o Minor features (hidden services):
4745     - When the client launches an introduction circuit, retry with a
4746       new circuit after 30 seconds rather than 60 seconds.
4747     - Launch a second client-side introduction circuit in parallel
4748       after a delay of 15 seconds (based on work by Christian Wilms).
4749     - Hidden services start out building five intro circuits rather
4750       than three, and when the first three finish they publish a service
4751       descriptor using those. Now we publish our service descriptor much
4752       faster after restart.
4753     - Drop the requirement to have an open dir port for storing and
4754       serving v2 hidden service descriptors.
4756   o Minor features (build and packaging):
4757     - On Linux, use the prctl call to re-enable core dumps when the User
4758       option is set.
4759     - Try to make sure that the version of Libevent we're running with
4760       is binary-compatible with the one we built with. May address bug
4761       897 and others.
4762     - Add a new --enable-local-appdata configuration switch to change
4763       the default location of the datadir on win32 from APPDATA to
4764       LOCAL_APPDATA. In the future, we should migrate to LOCAL_APPDATA
4765       entirely. Patch from coderman.
4766     - Build correctly against versions of OpenSSL 0.9.8 or later that
4767       are built without support for deprecated functions.
4768     - On platforms with a maximum syslog string length, truncate syslog
4769       messages to that length ourselves, rather than relying on the
4770       system to do it for us.
4771     - Automatically detect MacOSX versions earlier than 10.4.0, and
4772       disable kqueue from inside Tor when running with these versions.
4773       We previously did this from the startup script, but that was no
4774       help to people who didn't use the startup script. Resolves bug 863.
4775     - Build correctly when configured to build outside the main source
4776       path. Patch from Michael Gold.
4777     - Disable GCC's strict alias optimization by default, to avoid the
4778       likelihood of its introducing subtle bugs whenever our code violates
4779       the letter of C99's alias rules.
4780     - Change the contrib/tor.logrotate script so it makes the new
4781       logs as "_tor:_tor" rather than the default, which is generally
4782       "root:wheel". Fixes bug 676, reported by Serge Koksharov.
4783     - Change our header file guard macros to be less likely to conflict
4784       with system headers. Adam Langley noticed that we were conflicting
4785       with log.h on Android.
4786     - Add a couple of extra warnings to --enable-gcc-warnings for GCC 4.3,
4787       and stop using a warning that had become unfixably verbose under
4788       GCC 4.3.
4789     - Use a lockfile to make sure that two Tor processes are not
4790       simultaneously running with the same datadir.
4791     - Allow OpenSSL to use dynamic locks if it wants.
4792     - Add LIBS=-lrt to Makefile.am so the Tor RPMs use a static libevent.
4794   o Minor features (controllers):
4795     - When generating circuit events with verbose nicknames for
4796       controllers, try harder to look up nicknames for routers on a
4797       circuit. (Previously, we would look in the router descriptors we had
4798       for nicknames, but not in the consensus.) Partial fix for bug 941.
4799     - New controller event NEWCONSENSUS that lists the networkstatus
4800       lines for every recommended relay. Now controllers like Torflow
4801       can keep up-to-date on which relays they should be using.
4802     - New controller event "clients_seen" to report a geoip-based summary
4803       of which countries we've seen clients from recently. Now controllers
4804       like Vidalia can show bridge operators that they're actually making
4805       a difference.
4806     - Add a 'getinfo status/clients-seen' controller command, in case
4807       controllers want to hear clients_seen events but connect late.
4808     - New CONSENSUS_ARRIVED event to note when a new consensus has
4809       been fetched and validated.
4810     - Add an internal-use-only __ReloadTorrcOnSIGHUP option for
4811       controllers to prevent SIGHUP from reloading the configuration.
4812       Fixes bug 856.
4813     - Return circuit purposes in response to GETINFO circuit-status.
4814       Fixes bug 858.
4815     - Serve the latest v3 networkstatus consensus via the control
4816       port. Use "getinfo dir/status-vote/current/consensus" to fetch it.
4817     - Add a "GETINFO /status/bootstrap-phase" controller option, so the
4818       controller can query our current bootstrap state in case it attaches
4819       partway through and wants to catch up.
4820     - Provide circuit purposes along with circuit events to the controller.
4822   o Minor features (tools):
4823     - Do not have tor-resolve automatically refuse all .onion addresses;
4824       if AutomapHostsOnResolve is set in your torrc, this will work fine.
4825     - Add a -p option to tor-resolve for specifying the SOCKS port: some
4826       people find host:port too confusing.
4827     - Print the SOCKS5 error message string as well as the error code
4828       when a tor-resolve request fails. Patch from Jacob.
4830   o Minor bugfixes (memory and resource management):
4831     - Clients no longer cache certificates for authorities they do not
4832       recognize. Bugfix on 0.2.0.9-alpha.
4833     - Do not use C's stdio library for writing to log files. This will
4834       improve logging performance by a minute amount, and will stop
4835       leaking fds when our disk is full. Fixes bug 861.
4836     - Stop erroneous use of O_APPEND in cases where we did not in fact
4837       want to re-seek to the end of a file before every last write().
4838     - Fix a small alignment and memory-wasting bug on buffer chunks.
4839       Spotted by rovv.
4840     - Add a malloc_good_size implementation to OpenBSD_malloc_linux.c,
4841       to avoid unused RAM in buffer chunks and memory pools.
4842     - Reduce the default smartlist size from 32 to 16; it turns out that
4843       most smartlists hold around 8-12 elements tops.
4844     - Make dumpstats() log the fullness and size of openssl-internal
4845       buffers.
4846     - If the user has applied the experimental SSL_MODE_RELEASE_BUFFERS
4847       patch to their OpenSSL, turn it on to save memory on servers. This
4848       patch will (with any luck) get included in a mainline distribution
4849       before too long.
4850     - Fix a memory leak when v3 directory authorities load their keys
4851       and cert from disk. Bugfix on 0.2.0.1-alpha.
4852     - Stop using malloc_usable_size() to use more area than we had
4853       actually allocated: it was safe, but made valgrind really unhappy.
4854     - Make the assert_circuit_ok() function work correctly on circuits that
4855       have already been marked for close.
4856     - Fix uninitialized size field for memory area allocation: may improve
4857       memory performance during directory parsing.
4859   o Minor bugfixes (clients):
4860     - Stop reloading the router list from disk for no reason when we
4861       run out of reachable directory mirrors. Once upon a time reloading
4862       it would set the 'is_running' flag back to 1 for them. It hasn't
4863       done that for a long time.
4864     - When we had picked an exit node for a connection, but marked it as
4865       "optional", and it turned out we had no onion key for the exit,
4866       stop wanting that exit and try again. This situation may not
4867       be possible now, but will probably become feasible with proposal
4868       158. Spotted by rovv. Fixes another case of bug 752.
4869     - Fix a bug in address parsing that was preventing bridges or hidden
4870       service targets from being at IPv6 addresses.
4871     - Do not remove routers as too old if we do not have any consensus
4872       document. Bugfix on 0.2.0.7-alpha.
4873     - When an exit relay resolves a stream address to a local IP address,
4874       do not just keep retrying that same exit relay over and
4875       over. Instead, just close the stream. Addresses bug 872. Bugfix
4876       on 0.2.0.32. Patch from rovv.
4877     - Made Tor a little less aggressive about deleting expired
4878       certificates. Partial fix for bug 854.
4879     - Treat duplicate certificate fetches as failures, so that we do
4880       not try to re-fetch an expired certificate over and over and over.
4881     - Do not say we're fetching a certificate when we'll in fact skip it
4882       because of a pending download.
4883     - If we have correct permissions on $datadir, we complain to stdout
4884       and fail to start. But dangerous permissions on
4885       $datadir/cached-status/ would cause us to open a log and complain
4886       there. Now complain to stdout and fail to start in both cases. Fixes
4887       bug 820, reported by seeess.
4889   o Minor bugfixes (bridges):
4890     - When we made bridge authorities stop serving bridge descriptors over
4891       unencrypted links, we also broke DirPort reachability testing for
4892       bridges. So bridges with a non-zero DirPort were printing spurious
4893       warns to their logs. Bugfix on 0.2.0.16-alpha. Fixes bug 709.
4894     - Don't allow a bridge to publish its router descriptor to a
4895       non-bridge directory authority. Fixes part of bug 932.
4896     - When we change to or from being a bridge, reset our counts of
4897       client usage by country. Fixes bug 932.
4899   o Minor bugfixes (relays):
4900     - Log correct error messages for DNS-related network errors on
4901       Windows.
4902     - Actually return -1 in the error case for read_bandwidth_usage().
4903       Harmless bug, since we currently don't care about the return value
4904       anywhere. Bugfix on 0.2.0.9-alpha.
4905     - Provide a more useful log message if bug 977 (related to buffer
4906       freelists) ever reappears, and do not crash right away.
4907     - We were already rejecting relay begin cells with destination port
4908       of 0. Now also reject extend cells with destination port or address
4909       of 0. Suggested by lark.
4910     - When we can't transmit a DNS request due to a network error, retry
4911       it after a while, and eventually transmit a failing response to
4912       the RESOLVED cell. Bugfix on 0.1.2.5-alpha.
4913     - Solve a bug that kept hardware crypto acceleration from getting
4914       enabled when accounting was turned on. Fixes bug 907. Bugfix on
4915       0.0.9pre6.
4916     - When a canonical connection appears later in our internal list
4917       than a noncanonical one for a given OR ID, always use the
4918       canonical one. Bugfix on 0.2.0.12-alpha. Fixes bug 805.
4919       Spotted by rovv.
4920     - Avoid some nasty corner cases in the logic for marking connections
4921       as too old or obsolete or noncanonical for circuits. Partial
4922       bugfix on bug 891.
4923     - Fix another interesting corner-case of bug 891 spotted by rovv:
4924       Previously, if two hosts had different amounts of clock drift, and
4925       one of them created a new connection with just the wrong timing,
4926       the other might decide to deprecate the new connection erroneously.
4927       Bugfix on 0.1.1.13-alpha.
4928     - If one win32 nameserver fails to get added, continue adding the
4929       rest, and don't automatically fail.
4930     - Fix a bug where an unreachable relay would establish enough
4931       reachability testing circuits to do a bandwidth test -- if
4932       we already have a connection to the middle hop of the testing
4933       circuit, then it could establish the last hop by using the existing
4934       connection. Bugfix on 0.1.2.2-alpha, exposed when we made testing
4935       circuits no longer use entry guards in 0.2.1.3-alpha.
4937   o Minor bugfixes (directory authorities):
4938     - Limit uploaded directory documents to be 16M rather than 500K.
4939       The directory authorities were refusing v3 consensus votes from
4940       other authorities, since the votes are now 504K. Fixes bug 959;
4941       bugfix on 0.0.2pre17 (where we raised it from 50K to 500K ;).
4942     - Directory authorities should never send a 503 "busy" response to
4943       requests for votes or keys. Bugfix on 0.2.0.8-alpha; exposed by
4944       bug 959.
4945     - Fix code so authorities _actually_ send back X-Descriptor-Not-New
4946       headers. Bugfix on 0.2.0.10-alpha.
4948   o Minor bugfixes (hidden services):
4949     - When we can't find an intro key for a v2 hidden service descriptor,
4950       fall back to the v0 hidden service descriptor and log a bug message.
4951       Workaround for bug 1024.
4952     - In very rare situations new hidden service descriptors were
4953       published earlier than 30 seconds after the last change to the
4954       service. (We currently think that a hidden service descriptor
4955       that's been stable for 30 seconds is worth publishing.)
4956     - If a hidden service sends us an END cell, do not consider
4957       retrying the connection; just close it. Patch from rovv.
4958     - If we are not using BEGIN_DIR cells, don't attempt to contact hidden
4959       service directories if they have no advertised dir port. Bugfix
4960       on 0.2.0.10-alpha.
4962   o Minor bugfixes (tools):
4963     - In the torify(1) manpage, mention that tsocks will leak your
4964       DNS requests.
4966   o Minor bugfixes (controllers):
4967     - If the controller claimed responsibility for a stream, but that
4968       stream never finished making its connection, it would live
4969       forever in circuit_wait state. Now we close it after SocksTimeout
4970       seconds. Bugfix on 0.1.2.7-alpha; reported by Mike Perry.
4971     - Make DNS resolved controller events into "CLOSED", not
4972       "FAILED". Bugfix on 0.1.2.5-alpha. Fix by Robert Hogan. Resolves
4973       bug 807.
4974     - The control port would close the connection before flushing long
4975       replies, such as the network consensus, if a QUIT command was issued
4976       before the reply had completed. Now, the control port flushes all
4977       pending replies before closing the connection. Also fix a spurious
4978       warning when a QUIT command is issued after a malformed or rejected
4979       AUTHENTICATE command, but before the connection was closed. Patch
4980       by Marcus Griep. Fixes bugs 1015 and 1016.
4981     - Fix a bug that made stream bandwidth get misreported to the
4982       controller.
4984   o Deprecated and removed features:
4985     - The old "tor --version --version" command, which would print out
4986       the subversion "Id" of most of the source files, is now removed. It
4987       turned out to be less useful than we'd expected, and harder to
4988       maintain.
4989     - RedirectExits has been removed. It was deprecated since
4990       0.2.0.3-alpha.
4991     - Finally remove deprecated "EXTENDED_FORMAT" controller feature. It
4992       has been called EXTENDED_EVENTS since 0.1.2.4-alpha.
4993     - Cell pools are now always enabled; --disable-cell-pools is ignored.
4994     - Directory mirrors no longer fetch the v1 directory or
4995       running-routers files. They are obsolete, and nobody asks for them
4996       anymore. This is the first step to making v1 authorities obsolete.
4997     - Take out the TestVia config option, since it was a workaround for
4998       a bug that was fixed in Tor 0.1.1.21.
4999     - Mark RendNodes, RendExcludeNodes, HiddenServiceNodes, and
5000       HiddenServiceExcludeNodes as obsolete: they never worked properly,
5001       and nobody seems to be using them. Fixes bug 754. Bugfix on
5002       0.1.0.1-rc. Patch from Christian Wilms.
5003     - Remove all backward-compatibility code for relays running
5004       versions of Tor so old that they no longer work at all on the
5005       Tor network.
5007   o Code simplifications and refactoring:
5008     - Tool-assisted documentation cleanup. Nearly every function or
5009       static variable in Tor should have its own documentation now.
5010     - Rename the confusing or_is_obsolete field to the more appropriate
5011       is_bad_for_new_circs, and move it to or_connection_t where it
5012       belongs.
5013     - Move edge-only flags from connection_t to edge_connection_t: not
5014       only is this better coding, but on machines of plausible alignment,
5015       it should save 4-8 bytes per connection_t. "Every little bit helps."
5016     - Rename ServerDNSAllowBrokenResolvConf to ServerDNSAllowBrokenConfig
5017       for consistency; keep old option working for backward compatibility.
5018     - Simplify the code for finding connections to use for a circuit.
5019     - Revise the connection_new functions so that a more typesafe variant
5020       exists. This will work better with Coverity, and let us find any
5021       actual mistakes we're making here.
5022     - Refactor unit testing logic so that dmalloc can be used sensibly
5023       with unit tests to check for memory leaks.
5024     - Move all hidden-service related fields from connection and circuit
5025       structure to substructures: this way they won't eat so much memory.
5026     - Squeeze 2-5% out of client performance (according to oprofile) by
5027       improving the implementation of some policy-manipulation functions.
5028     - Change the implementation of ExcludeNodes and ExcludeExitNodes to
5029       be more efficient. Formerly it was quadratic in the number of
5030       servers; now it should be linear. Fixes bug 509.
5031     - Save 16-22 bytes per open circuit by moving the n_addr, n_port,
5032       and n_conn_id_digest fields into a separate structure that's
5033       only needed when the circuit has not yet attached to an n_conn.
5034     - Optimize out calls to time(NULL) that occur for every IO operation,
5035       or for every cell. On systems like Windows where time() is a
5036       slow syscall, this fix will be slightly helpful.
5039 Changes in version 0.2.0.35 - 2009-06-24
5040   o Security fix:
5041     - Avoid crashing in the presence of certain malformed descriptors.
5042       Found by lark, and by automated fuzzing.
5043     - Fix an edge case where a malicious exit relay could convince a
5044       controller that the client's DNS question resolves to an internal IP
5045       address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta.
5047   o Major bugfixes:
5048     - Finally fix the bug where dynamic-IP relays disappear when their
5049       IP address changes: directory mirrors were mistakenly telling
5050       them their old address if they asked via begin_dir, so they
5051       never got an accurate answer about their new address, so they
5052       just vanished after a day. For belt-and-suspenders, relays that
5053       don't set Address in their config now avoid using begin_dir for
5054       all direct connections. Should fix bugs 827, 883, and 900.
5055     - Fix a timing-dependent, allocator-dependent, DNS-related crash bug
5056       that would occur on some exit nodes when DNS failures and timeouts
5057       occurred in certain patterns. Fix for bug 957.
5059   o Minor bugfixes:
5060     - When starting with a cache over a few days old, do not leak
5061       memory for the obsolete router descriptors in it. Bugfix on
5062       0.2.0.33; fixes bug 672.
5063     - Hidden service clients didn't use a cached service descriptor that
5064       was older than 15 minutes, but wouldn't fetch a new one either,
5065       because there was already one in the cache. Now, fetch a v2
5066       descriptor unless the same descriptor was added to the cache within
5067       the last 15 minutes. Fixes bug 997; reported by Marcus Griep.
5070 Changes in version 0.2.0.34 - 2009-02-08
5071   Tor 0.2.0.34 features several more security-related fixes. You should
5072   upgrade, especially if you run an exit relay (remote crash) or a
5073   directory authority (remote infinite loop), or you're on an older
5074   (pre-XP) or not-recently-patched Windows (remote exploit).
5076   This release marks end-of-life for Tor 0.1.2.x. Those Tor versions
5077   have many known flaws, and nobody should be using them. You should
5078   upgrade. If you're using a Linux or BSD and its packages are obsolete,
5079   stop using those packages and upgrade anyway.
5081   o Security fixes:
5082     - Fix an infinite-loop bug on handling corrupt votes under certain
5083       circumstances. Bugfix on 0.2.0.8-alpha.
5084     - Fix a temporary DoS vulnerability that could be performed by
5085       a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark.
5086     - Avoid a potential crash on exit nodes when processing malformed
5087       input. Remote DoS opportunity. Bugfix on 0.2.0.33.
5088     - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid.
5089       Spec conformance issue. Bugfix on Tor 0.0.2pre27.
5091   o Minor bugfixes:
5092     - Fix compilation on systems where time_t is a 64-bit integer.
5093       Patch from Matthias Drochner.
5094     - Don't consider expiring already-closed client connections. Fixes
5095       bug 893. Bugfix on 0.0.2pre20.
5098 Changes in version 0.2.0.33 - 2009-01-21
5099   Tor 0.2.0.33 fixes a variety of bugs that were making relays less
5100   useful to users. It also finally fixes a bug where a relay or client
5101   that's been off for many days would take a long time to bootstrap.
5103   This update also fixes an important security-related bug reported by
5104   Ilja van Sprundel. You should upgrade. (We'll send out more details
5105   about the bug once people have had some time to upgrade.)
5107   o Security fixes:
5108     - Fix a heap-corruption bug that may be remotely triggerable on
5109       some platforms. Reported by Ilja van Sprundel.
5111   o Major bugfixes:
5112     - When a stream at an exit relay is in state "resolving" or
5113       "connecting" and it receives an "end" relay cell, the exit relay
5114       would silently ignore the end cell and not close the stream. If
5115       the client never closes the circuit, then the exit relay never
5116       closes the TCP connection. Bug introduced in Tor 0.1.2.1-alpha;
5117       reported by "wood".
5118     - When sending CREATED cells back for a given circuit, use a 64-bit
5119       connection ID to find the right connection, rather than an addr:port
5120       combination. Now that we can have multiple OR connections between
5121       the same ORs, it is no longer possible to use addr:port to uniquely
5122       identify a connection.
5123     - Bridge relays that had DirPort set to 0 would stop fetching
5124       descriptors shortly after startup, and then briefly resume
5125       after a new bandwidth test and/or after publishing a new bridge
5126       descriptor. Bridge users that try to bootstrap from them would
5127       get a recent networkstatus but would get descriptors from up to
5128       18 hours earlier, meaning most of the descriptors were obsolete
5129       already. Reported by Tas; bugfix on 0.2.0.13-alpha.
5130     - Prevent bridge relays from serving their 'extrainfo' document
5131       to anybody who asks, now that extrainfo docs include potentially
5132       sensitive aggregated client geoip summaries. Bugfix on
5133       0.2.0.13-alpha.
5134     - If the cached networkstatus consensus is more than five days old,
5135       discard it rather than trying to use it. In theory it could be
5136       useful because it lists alternate directory mirrors, but in practice
5137       it just means we spend many minutes trying directory mirrors that
5138       are long gone from the network. Also discard router descriptors as
5139       we load them if they are more than five days old, since the onion
5140       key is probably wrong by now. Bugfix on 0.2.0.x. Fixes bug 887.
5142   o Minor bugfixes:
5143     - Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug
5144       could make gcc generate non-functional binary search code. Bugfix
5145       on 0.2.0.10-alpha.
5146     - Build correctly on platforms without socklen_t.
5147     - Compile without warnings on solaris.
5148     - Avoid potential crash on internal error during signature collection.
5149       Fixes bug 864. Patch from rovv.
5150     - Correct handling of possible malformed authority signing key
5151       certificates with internal signature types. Fixes bug 880.
5152       Bugfix on 0.2.0.3-alpha.
5153     - Fix a hard-to-trigger resource leak when logging credential status.
5154       CID 349.
5155     - When we can't initialize DNS because the network is down, do not
5156       automatically stop Tor from starting. Instead, we retry failed
5157       dns_init() every 10 minutes, and change the exit policy to reject
5158       *:* until one succeeds. Fixes bug 691.
5159     - Use 64 bits instead of 32 bits for connection identifiers used with
5160       the controller protocol, to greatly reduce risk of identifier reuse.
5161     - When we're choosing an exit node for a circuit, and we have
5162       no pending streams, choose a good general exit rather than one that
5163       supports "all the pending streams". Bugfix on 0.1.1.x. Fix by rovv.
5164     - Fix another case of assuming, when a specific exit is requested,
5165       that we know more than the user about what hosts it allows.
5166       Fixes one case of bug 752. Patch from rovv.
5167     - Clip the MaxCircuitDirtiness config option to a minimum of 10
5168       seconds. Warn the user if lower values are given in the
5169       configuration. Bugfix on 0.1.0.1-rc. Patch by Sebastian.
5170     - Clip the CircuitBuildTimeout to a minimum of 30 seconds. Warn the
5171       user if lower values are given in the configuration. Bugfix on
5172       0.1.1.17-rc. Patch by Sebastian.
5173     - Fix a memory leak when we decline to add a v2 rendezvous descriptor to
5174       the cache because we already had a v0 descriptor with the same ID.
5175       Bugfix on 0.2.0.18-alpha.
5176     - Fix a race condition when freeing keys shared between main thread
5177       and CPU workers that could result in a memory leak. Bugfix on
5178       0.1.0.1-rc. Fixes bug 889.
5179     - Send a valid END cell back when a client tries to connect to a
5180       nonexistent hidden service port. Bugfix on 0.1.2.15. Fixes bug
5181       840. Patch from rovv.
5182     - Check which hops rendezvous stream cells are associated with to
5183       prevent possible guess-the-streamid injection attacks from
5184       intermediate hops. Fixes another case of bug 446. Based on patch
5185       from rovv.
5186     - If a broken client asks a non-exit router to connect somewhere,
5187       do not even do the DNS lookup before rejecting the connection.
5188       Fixes another case of bug 619. Patch from rovv.
5189     - When a relay gets a create cell it can't decrypt (e.g. because it's
5190       using the wrong onion key), we were dropping it and letting the
5191       client time out. Now actually answer with a destroy cell. Fixes
5192       bug 904. Bugfix on 0.0.2pre8.
5194   o Minor bugfixes (hidden services):
5195     - Do not throw away existing introduction points on SIGHUP. Bugfix on
5196       0.0.6pre1. Patch by Karsten. Fixes bug 874.
5198   o Minor features:
5199     - Report the case where all signatures in a detached set are rejected
5200       differently than the case where there is an error handling the
5201       detached set.
5202     - When we realize that another process has modified our cached
5203       descriptors, print out a more useful error message rather than
5204       triggering an assertion. Fixes bug 885. Patch from Karsten.
5205     - Implement the 0x20 hack to better resist DNS poisoning: set the
5206       case on outgoing DNS requests randomly, and reject responses that do
5207       not match the case correctly. This logic can be disabled with the
5208       ServerDNSRamdomizeCase setting, if you are using one of the 0.3%
5209       of servers that do not reliably preserve case in replies. See
5210       "Increased DNS Forgery Resistance through 0x20-Bit Encoding"
5211       for more info.
5212     - Check DNS replies for more matching fields to better resist DNS
5213       poisoning.
5214     - Never use OpenSSL compression: it wastes RAM and CPU trying to
5215       compress cells, which are basically all encrypted, compressed, or
5216       both.
5219 Changes in version 0.2.0.32 - 2008-11-20
5220   Tor 0.2.0.32 fixes a major security problem in Debian and Ubuntu
5221   packages (and maybe other packages) noticed by Theo de Raadt, fixes
5222   a smaller security flaw that might allow an attacker to access local
5223   services, further improves hidden service performance, and fixes a
5224   variety of other issues.
5226   o Security fixes:
5227     - The "User" and "Group" config options did not clear the
5228       supplementary group entries for the Tor process. The "User" option
5229       is now more robust, and we now set the groups to the specified
5230       user's primary group. The "Group" option is now ignored. For more
5231       detailed logging on credential switching, set CREDENTIAL_LOG_LEVEL
5232       in common/compat.c to LOG_NOTICE or higher. Patch by Jacob Appelbaum
5233       and Steven Murdoch. Bugfix on 0.0.2pre14. Fixes bug 848 and 857.
5234     - The "ClientDNSRejectInternalAddresses" config option wasn't being
5235       consistently obeyed: if an exit relay refuses a stream because its
5236       exit policy doesn't allow it, we would remember what IP address
5237       the relay said the destination address resolves to, even if it's
5238       an internal IP address. Bugfix on 0.2.0.7-alpha; patch by rovv.
5240   o Major bugfixes:
5241     - Fix a DOS opportunity during the voting signature collection process
5242       at directory authorities. Spotted by rovv. Bugfix on 0.2.0.x.
5244   o Major bugfixes (hidden services):
5245     - When fetching v0 and v2 rendezvous service descriptors in parallel,
5246       we were failing the whole hidden service request when the v0
5247       descriptor fetch fails, even if the v2 fetch is still pending and
5248       might succeed. Similarly, if the last v2 fetch fails, we were
5249       failing the whole hidden service request even if a v0 fetch is
5250       still pending. Fixes bug 814. Bugfix on 0.2.0.10-alpha.
5251     - When extending a circuit to a hidden service directory to upload a
5252       rendezvous descriptor using a BEGIN_DIR cell, almost 1/6 of all
5253       requests failed, because the router descriptor has not been
5254       downloaded yet. In these cases, do not attempt to upload the
5255       rendezvous descriptor, but wait until the router descriptor is
5256       downloaded and retry. Likewise, do not attempt to fetch a rendezvous
5257       descriptor from a hidden service directory for which the router
5258       descriptor has not yet been downloaded. Fixes bug 767. Bugfix
5259       on 0.2.0.10-alpha.
5261   o Minor bugfixes:
5262     - Fix several infrequent memory leaks spotted by Coverity.
5263     - When testing for libevent functions, set the LDFLAGS variable
5264       correctly. Found by Riastradh.
5265     - Avoid a bug where the FastFirstHopPK 0 option would keep Tor from
5266       bootstrapping with tunneled directory connections. Bugfix on
5267       0.1.2.5-alpha. Fixes bug 797. Found by Erwin Lam.
5268     - When asked to connect to A.B.exit:80, if we don't know the IP for A
5269       and we know that server B rejects most-but-not all connections to
5270       port 80, we would previously reject the connection. Now, we assume
5271       the user knows what they were asking for. Fixes bug 752. Bugfix
5272       on 0.0.9rc5. Diagnosed by BarkerJr.
5273     - If we overrun our per-second write limits a little, count this as
5274       having used up our write allocation for the second, and choke
5275       outgoing directory writes. Previously, we had only counted this when
5276       we had met our limits precisely. Fixes bug 824. Patch from by rovv.
5277       Bugfix on 0.2.0.x (??).
5278     - Remove the old v2 directory authority 'lefkada' from the default
5279       list. It has been gone for many months.
5280     - Stop doing unaligned memory access that generated bus errors on
5281       sparc64. Bugfix on 0.2.0.10-alpha. Fixes bug 862.
5282     - Make USR2 log-level switch take effect immediately. Bugfix on
5283       0.1.2.8-beta.
5285   o Minor bugfixes (controller):
5286     - Make DNS resolved events into "CLOSED", not "FAILED". Bugfix on
5287       0.1.2.5-alpha. Fix by Robert Hogan. Resolves bug 807.
5290 Changes in version 0.2.0.31 - 2008-09-03
5291   Tor 0.2.0.31 addresses two potential anonymity issues, starts to fix
5292   a big bug we're seeing where in rare cases traffic from one Tor stream
5293   gets mixed into another stream, and fixes a variety of smaller issues.
5295   o Major bugfixes:
5296     - Make sure that two circuits can never exist on the same connection
5297       with the same circuit ID, even if one is marked for close. This
5298       is conceivably a bugfix for bug 779. Bugfix on 0.1.0.4-rc.
5299     - Relays now reject risky extend cells: if the extend cell includes
5300       a digest of all zeroes, or asks to extend back to the relay that
5301       sent the extend cell, tear down the circuit. Ideas suggested
5302       by rovv.
5303     - If not enough of our entry guards are available so we add a new
5304       one, we might use the new one even if it overlapped with the
5305       current circuit's exit relay (or its family). Anonymity bugfix
5306       pointed out by rovv.
5308   o Minor bugfixes:
5309     - Recover 3-7 bytes that were wasted per memory chunk. Fixes bug
5310       794; bug spotted by rovv. Bugfix on 0.2.0.1-alpha.
5311     - Correctly detect the presence of the linux/netfilter_ipv4.h header
5312       when building against recent kernels. Bugfix on 0.1.2.1-alpha.
5313     - Pick size of default geoip filename string correctly on windows.
5314       Fixes bug 806. Bugfix on 0.2.0.30.
5315     - Make the autoconf script accept the obsolete --with-ssl-dir
5316       option as an alias for the actually-working --with-openssl-dir
5317       option. Fix the help documentation to recommend --with-openssl-dir.
5318       Based on a patch by "Dave". Bugfix on 0.2.0.1-alpha.
5319     - When using the TransPort option on OpenBSD, and using the User
5320       option to change UID and drop privileges, make sure to open
5321       /dev/pf before dropping privileges. Fixes bug 782. Patch from
5322       Christopher Davis. Bugfix on 0.1.2.1-alpha.
5323     - Try to attach connections immediately upon receiving a RENDEZVOUS2
5324       or RENDEZVOUS_ESTABLISHED cell. This can save a second or two
5325       on the client side when connecting to a hidden service. Bugfix
5326       on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743.
5327     - When closing an application-side connection because its circuit is
5328       getting torn down, generate the stream event correctly. Bugfix on
5329       0.1.2.x. Anonymous patch.
5332 Changes in version 0.2.0.30 - 2008-07-15
5333   This new stable release switches to a more efficient directory
5334   distribution design, adds features to make connections to the Tor
5335   network harder to block, allows Tor to act as a DNS proxy, adds separate
5336   rate limiting for relayed traffic to make it easier for clients to
5337   become relays, fixes a variety of potential anonymity problems, and
5338   includes the usual huge pile of other features and bug fixes.
5340   o New v3 directory design:
5341     - Tor now uses a new way to learn about and distribute information
5342       about the network: the directory authorities vote on a common
5343       network status document rather than each publishing their own
5344       opinion. Now clients and caches download only one networkstatus
5345       document to bootstrap, rather than downloading one for each
5346       authority. Clients only download router descriptors listed in
5347       the consensus. Implements proposal 101; see doc/spec/dir-spec.txt
5348       for details.
5349     - Set up moria1, tor26, and dizum as v3 directory authorities
5350       in addition to being v2 authorities. Also add three new ones:
5351       ides (run by Mike Perry), gabelmoo (run by Karsten Loesing), and
5352       dannenberg (run by CCC).
5353     - Switch to multi-level keys for directory authorities: now their
5354       long-term identity key can be kept offline, and they periodically
5355       generate a new signing key. Clients fetch the "key certificates"
5356       to keep up to date on the right keys. Add a standalone tool
5357       "tor-gencert" to generate key certificates. Implements proposal 103.
5358     - Add a new V3AuthUseLegacyKey config option to make it easier for
5359       v3 authorities to change their identity keys if another bug like
5360       Debian's OpenSSL RNG flaw appears.
5361     - Authorities and caches fetch the v2 networkstatus documents
5362       less often, now that v3 is recommended.
5364   o Make Tor connections stand out less on the wire:
5365     - Use an improved TLS handshake designed by Steven Murdoch in proposal
5366       124, as revised in proposal 130. The new handshake is meant to
5367       be harder for censors to fingerprint, and it adds the ability
5368       to detect certain kinds of man-in-the-middle traffic analysis
5369       attacks. The new handshake format includes version negotiation for
5370       OR connections as described in proposal 105, which will allow us
5371       to improve Tor's link protocol more safely in the future.
5372     - Enable encrypted directory connections by default for non-relays,
5373       so censor tools that block Tor directory connections based on their
5374       plaintext patterns will no longer work. This means Tor works in
5375       certain censored countries by default again.
5376     - Stop including recognizeable strings in the commonname part of
5377       Tor's x509 certificates.
5379   o Implement bridge relays:
5380     - Bridge relays (or "bridges" for short) are Tor relays that aren't
5381       listed in the main Tor directory. Since there is no complete public
5382       list of them, even an ISP that is filtering connections to all the
5383       known Tor relays probably won't be able to block all the bridges.
5384       See doc/design-paper/blocking.pdf and proposal 125 for details.
5385     - New config option BridgeRelay that specifies you want to be a
5386       bridge relay rather than a normal relay. When BridgeRelay is set
5387       to 1, then a) you cache dir info even if your DirPort ins't on,
5388       and b) the default for PublishServerDescriptor is now "bridge"
5389       rather than "v2,v3".
5390     - New config option "UseBridges 1" for clients that want to use bridge
5391       relays instead of ordinary entry guards. Clients then specify
5392       bridge relays by adding "Bridge" lines to their config file. Users
5393       can learn about a bridge relay either manually through word of
5394       mouth, or by one of our rate-limited mechanisms for giving out
5395       bridge addresses without letting an attacker easily enumerate them
5396       all. See https://www.torproject.org/bridges for details.
5397     - Bridge relays behave like clients with respect to time intervals
5398       for downloading new v3 consensus documents -- otherwise they
5399       stand out. Bridge users now wait until the end of the interval,
5400       so their bridge relay will be sure to have a new consensus document.
5402   o Implement bridge directory authorities:
5403     - Bridge authorities are like normal directory authorities, except
5404       they don't serve a list of known bridges. Therefore users that know
5405       a bridge's fingerprint can fetch a relay descriptor for that bridge,
5406       including fetching updates e.g. if the bridge changes IP address,
5407       yet an attacker can't just fetch a list of all the bridges.
5408     - Set up Tonga as the default bridge directory authority.
5409     - Bridge authorities refuse to serve bridge descriptors or other
5410       bridge information over unencrypted connections (that is, when
5411       responding to direct DirPort requests rather than begin_dir cells.)
5412     - Bridge directory authorities do reachability testing on the
5413       bridges they know. They provide router status summaries to the
5414       controller via "getinfo ns/purpose/bridge", and also dump summaries
5415       to a file periodically, so we can keep internal stats about which
5416       bridges are functioning.
5417     - If bridge users set the UpdateBridgesFromAuthority config option,
5418       but the digest they ask for is a 404 on the bridge authority,
5419       they fall back to contacting the bridge directly.
5420     - Bridges always use begin_dir to publish their server descriptor to
5421       the bridge authority using an anonymous encrypted tunnel.
5422     - Early work on a "bridge community" design: if bridge authorities set
5423       the BridgePassword config option, they will serve a snapshot of
5424       known bridge routerstatuses from their DirPort to anybody who
5425       knows that password. Unset by default.
5426     - Tor now includes an IP-to-country GeoIP file, so bridge relays can
5427       report sanitized aggregated summaries in their extra-info documents
5428       privately to the bridge authority, listing which countries are
5429       able to reach them. We hope this mechanism will let us learn when
5430       certain countries start trying to block bridges.
5431     - Bridge authorities write bridge descriptors to disk, so they can
5432       reload them after a reboot. They can also export the descriptors
5433       to other programs, so we can distribute them to blocked users via
5434       the BridgeDB interface, e.g. via https://bridges.torproject.org/
5435       and bridges@torproject.org.
5437   o Tor can be a DNS proxy:
5438     - The new client-side DNS proxy feature replaces the need for
5439       dns-proxy-tor: Just set "DNSPort 9999", and Tor will now listen
5440       for DNS requests on port 9999, use the Tor network to resolve them
5441       anonymously, and send the reply back like a regular DNS server.
5442       The code still only implements a subset of DNS.
5443     - Add a new AutomapHostsOnResolve option: when it is enabled, any
5444       resolve request for hosts matching a given pattern causes Tor to
5445       generate an internal virtual address mapping for that host. This
5446       allows DNSPort to work sensibly with hidden service users. By
5447       default, .exit and .onion addresses are remapped; the list of
5448       patterns can be reconfigured with AutomapHostsSuffixes.
5449     - Add an "-F" option to tor-resolve to force a resolve for a .onion
5450       address. Thanks to the AutomapHostsOnResolve option, this is no
5451       longer a completely silly thing to do.
5453   o Major features (relay usability):
5454     - New config options RelayBandwidthRate and RelayBandwidthBurst:
5455       a separate set of token buckets for relayed traffic. Right now
5456       relayed traffic is defined as answers to directory requests, and
5457       OR connections that don't have any local circuits on them. See
5458       proposal 111 for details.
5459     - Create listener connections before we setuid to the configured
5460       User and Group. Now non-Windows users can choose port values
5461       under 1024, start Tor as root, and have Tor bind those ports
5462       before it changes to another UID. (Windows users could already
5463       pick these ports.)
5464     - Added a new ConstrainedSockets config option to set SO_SNDBUF and
5465       SO_RCVBUF on TCP sockets. Hopefully useful for Tor servers running
5466       on "vserver" accounts. Patch from coderman.
5468   o Major features (directory authorities):
5469     - Directory authorities track weighted fractional uptime and weighted
5470       mean-time-between failures for relays. WFU is suitable for deciding
5471       whether a node is "usually up", while MTBF is suitable for deciding
5472       whether a node is "likely to stay up." We need both, because
5473       "usually up" is a good requirement for guards, while "likely to
5474       stay up" is a good requirement for long-lived connections.
5475     - Directory authorities use a new formula for selecting which relays
5476       to advertise as Guards: they must be in the top 7/8 in terms of
5477       how long we have known about them, and above the median of those
5478       nodes in terms of weighted fractional uptime.
5479     - Directory authorities use a new formula for selecting which relays
5480       to advertise as Stable: when we have 4 or more days of data, use
5481       median measured MTBF rather than median declared uptime. Implements
5482       proposal 108.
5483     - Directory authorities accept and serve "extra info" documents for
5484       routers. Routers now publish their bandwidth-history lines in the
5485       extra-info docs rather than the main descriptor. This step saves
5486       60% (!) on compressed router descriptor downloads. Servers upload
5487       extra-info docs to any authority that accepts them; directory
5488       authorities now allow multiple router descriptors and/or extra
5489       info documents to be uploaded in a single go. Authorities, and
5490       caches that have been configured to download extra-info documents,
5491       download them as needed. Implements proposal 104.
5492     - Authorities now list relays who have the same nickname as
5493       a different named relay, but list them with a new flag:
5494       "Unnamed". Now we can make use of relays that happen to pick the
5495       same nickname as a server that registered two years ago and then
5496       disappeared. Implements proposal 122.
5497     - Store routers in a file called cached-descriptors instead of in
5498       cached-routers. Initialize cached-descriptors from cached-routers
5499       if the old format is around. The new format allows us to store
5500       annotations along with descriptors, to record the time we received
5501       each descriptor, its source, and its purpose: currently one of
5502       general, controller, or bridge.
5504   o Major features (other):
5505     - New config options WarnPlaintextPorts and RejectPlaintextPorts so
5506       Tor can warn and/or refuse connections to ports commonly used with
5507       vulnerable-plaintext protocols. Currently we warn on ports 23,
5508       109, 110, and 143, but we don't reject any. Based on proposal 129
5509       by Kevin Bauer and Damon McCoy.
5510     - Integrate Karsten Loesing's Google Summer of Code project to publish
5511       hidden service descriptors on a set of redundant relays that are a
5512       function of the hidden service address. Now we don't have to rely
5513       on three central hidden service authorities for publishing and
5514       fetching every hidden service descriptor. Implements proposal 114.
5515     - Allow tunnelled directory connections to ask for an encrypted
5516       "begin_dir" connection or an anonymized "uses a full Tor circuit"
5517       connection independently. Now we can make anonymized begin_dir
5518       connections for (e.g.) more secure hidden service posting and
5519       fetching.
5521   o Major bugfixes (crashes and assert failures):
5522     - Stop imposing an arbitrary maximum on the number of file descriptors
5523       used for busy servers. Bug reported by Olaf Selke; patch from
5524       Sebastian Hahn.
5525     - Avoid possible failures when generating a directory with routers
5526       with over-long versions strings, or too many flags set.
5527     - Fix a rare assert error when we're closing one of our threads:
5528       use a mutex to protect the list of logs, so we never write to the
5529       list as it's being freed. Fixes the very rare bug 575, which is
5530       kind of the revenge of bug 222.
5531     - Avoid segfault in the case where a badly behaved v2 versioning
5532       directory sends a signed networkstatus with missing client-versions.
5533     - When we hit an EOF on a log (probably because we're shutting down),
5534       don't try to remove the log from the list: just mark it as
5535       unusable. (Bulletproofs against bug 222.)
5537   o Major bugfixes (code security fixes):
5538     - Detect size overflow in zlib code. Reported by Justin Ferguson and
5539       Dan Kaminsky.
5540     - Rewrite directory tokenization code to never run off the end of
5541       a string. Fixes bug 455. Patch from croup.
5542     - Be more paranoid about overwriting sensitive memory on free(),
5543       as a defensive programming tactic to ensure forward secrecy.
5545   o Major bugfixes (anonymity fixes):
5546     - Reject requests for reverse-dns lookup of names that are in
5547       a private address space. Patch from lodger.
5548     - Never report that we've used more bandwidth than we're willing to
5549       relay: it leaks how much non-relay traffic we're using. Resolves
5550       bug 516.
5551     - As a client, do not believe any server that tells us that an
5552       address maps to an internal address space.
5553     - Warn about unsafe ControlPort configurations.
5554     - Directory authorities now call routers Fast if their bandwidth is
5555       at least 100KB/s, and consider their bandwidth adequate to be a
5556       Guard if it is at least 250KB/s, no matter the medians. This fix
5557       complements proposal 107.
5558     - Directory authorities now never mark more than 2 servers per IP as
5559       Valid and Running (or 5 on addresses shared by authorities).
5560       Implements proposal 109, by Kevin Bauer and Damon McCoy.
5561     - If we're a relay, avoid picking ourselves as an introduction point,
5562       a rendezvous point, or as the final hop for internal circuits. Bug
5563       reported by taranis and lodger.
5564     - Exit relays that are used as a client can now reach themselves
5565       using the .exit notation, rather than just launching an infinite
5566       pile of circuits. Fixes bug 641. Reported by Sebastian Hahn.
5567     - Fix a bug where, when we were choosing the 'end stream reason' to
5568       put in our relay end cell that we send to the exit relay, Tor
5569       clients on Windows were sometimes sending the wrong 'reason'. The
5570       anonymity problem is that exit relays may be able to guess whether
5571       the client is running Windows, thus helping partition the anonymity
5572       set. Down the road we should stop sending reasons to exit relays,
5573       or otherwise prevent future versions of this bug.
5574     - Only update guard status (usable / not usable) once we have
5575       enough directory information. This was causing us to discard all our
5576       guards on startup if we hadn't been running for a few weeks. Fixes
5577       bug 448.
5578     - When our directory information has been expired for a while, stop
5579       being willing to build circuits using it. Fixes bug 401.
5581   o Major bugfixes (peace of mind for relay operators)
5582     - Non-exit relays no longer answer "resolve" relay cells, so they
5583       can't be induced to do arbitrary DNS requests. (Tor clients already
5584       avoid using non-exit relays for resolve cells, but now servers
5585       enforce this too.) Fixes bug 619. Patch from lodger.
5586     - When we setconf ClientOnly to 1, close any current OR and Dir
5587       listeners. Reported by mwenge.
5589   o Major bugfixes (other):
5590     - If we only ever used Tor for hidden service lookups or posts, we
5591       would stop building circuits and start refusing connections after
5592       24 hours, since we falsely believed that Tor was dormant. Reported
5593       by nwf.
5594     - Add a new __HashedControlSessionPassword option for controllers
5595       to use for one-off session password hashes that shouldn't get
5596       saved to disk by SAVECONF --- Vidalia users were accumulating a
5597       pile of HashedControlPassword lines in their torrc files, one for
5598       each time they had restarted Tor and then clicked Save. Make Tor
5599       automatically convert "HashedControlPassword" to this new option but
5600       only when it's given on the command line. Partial fix for bug 586.
5601     - Patch from "Andrew S. Lists" to catch when we contact a directory
5602       mirror at IP address X and he says we look like we're coming from
5603       IP address X. Otherwise this would screw up our address detection.
5604     - Reject uploaded descriptors and extrainfo documents if they're
5605       huge. Otherwise we'll cache them all over the network and it'll
5606       clog everything up. Suggested by Aljosha Judmayer.
5607     - When a hidden service was trying to establish an introduction point,
5608       and Tor *did* manage to reuse one of the preemptively built
5609       circuits, it didn't correctly remember which one it used,
5610       so it asked for another one soon after, until there were no
5611       more preemptive circuits, at which point it launched one from
5612       scratch. Bugfix on 0.0.9.x.
5614   o Rate limiting and load balancing improvements:
5615     - When we add data to a write buffer in response to the data on that
5616       write buffer getting low because of a flush, do not consider the
5617       newly added data as a candidate for immediate flushing, but rather
5618       make it wait until the next round of writing. Otherwise, we flush
5619       and refill recursively, and a single greedy TLS connection can
5620       eat all of our bandwidth.
5621     - When counting the number of bytes written on a TLS connection,
5622       look at the BIO actually used for writing to the network, not
5623       at the BIO used (sometimes) to buffer data for the network.
5624       Looking at different BIOs could result in write counts on the
5625       order of ULONG_MAX. Fixes bug 614.
5626     - If we change our MaxAdvertisedBandwidth and then reload torrc,
5627       Tor won't realize it should publish a new relay descriptor. Fixes
5628       bug 688, reported by mfr.
5629     - Avoid using too little bandwidth when our clock skips a few seconds.
5630     - Choose which bridge to use proportional to its advertised bandwidth,
5631       rather than uniformly at random. This should speed up Tor for
5632       bridge users. Also do this for people who set StrictEntryNodes.
5634   o Bootstrapping faster and building circuits more intelligently:
5635     - Fix bug 660 that was preventing us from knowing that we should
5636       preemptively build circuits to handle expected directory requests.
5637     - When we're checking if we have enough dir info for each relay
5638       to begin establishing circuits, make sure that we actually have
5639       the descriptor listed in the consensus, not just any descriptor.
5640     - Correctly notify one-hop connections when a circuit build has
5641       failed. Possible fix for bug 669. Found by lodger.
5642     - Clients now hold circuitless TLS connections open for 1.5 times
5643       MaxCircuitDirtiness (15 minutes), since it is likely that they'll
5644       rebuild a new circuit over them within that timeframe. Previously,
5645       they held them open only for KeepalivePeriod (5 minutes).
5647   o Performance improvements (memory):
5648     - Add OpenBSD malloc code from "phk" as an optional malloc
5649       replacement on Linux: some glibc libraries do very poorly with
5650       Tor's memory allocation patterns. Pass --enable-openbsd-malloc to
5651       ./configure to get the replacement malloc code.
5652     - Switch our old ring buffer implementation for one more like that
5653       used by free Unix kernels. The wasted space in a buffer with 1mb
5654       of data will now be more like 8k than 1mb. The new implementation
5655       also avoids realloc();realloc(); patterns that can contribute to
5656       memory fragmentation.
5657     - Change the way that Tor buffers data that it is waiting to write.
5658       Instead of queueing data cells in an enormous ring buffer for each
5659       client->OR or OR->OR connection, we now queue cells on a separate
5660       queue for each circuit. This lets us use less slack memory, and
5661       will eventually let us be smarter about prioritizing different kinds
5662       of traffic.
5663     - Reference-count and share copies of address policy entries; only 5%
5664       of them were actually distinct.
5665     - Tune parameters for cell pool allocation to minimize amount of
5666       RAM overhead used.
5667     - Keep unused 4k and 16k buffers on free lists, rather than wasting 8k
5668       for every single inactive connection_t. Free items from the
5669       4k/16k-buffer free lists when they haven't been used for a while.
5670     - Make memory debugging information describe more about history
5671       of cell allocation, so we can help reduce our memory use.
5672     - Be even more aggressive about releasing RAM from small
5673       empty buffers. Thanks to our free-list code, this shouldn't be too
5674       performance-intensive.
5675     - Log malloc statistics from mallinfo() on platforms where it exists.
5676     - Use memory pools to allocate cells with better speed and memory
5677       efficiency, especially on platforms where malloc() is inefficient.
5678     - Add a --with-tcmalloc option to the configure script to link
5679       against tcmalloc (if present). Does not yet search for non-system
5680       include paths.
5682   o Performance improvements (socket management):
5683     - Count the number of open sockets separately from the number of
5684       active connection_t objects. This will let us avoid underusing
5685       our allocated connection limit.
5686     - We no longer use socket pairs to link an edge connection to an
5687       anonymous directory connection or a DirPort test connection.
5688       Instead, we track the link internally and transfer the data
5689       in-process. This saves two sockets per "linked" connection (at the
5690       client and at the server), and avoids the nasty Windows socketpair()
5691       workaround.
5692     - We were leaking a file descriptor if Tor started with a zero-length
5693       cached-descriptors file. Patch by "freddy77".
5695   o Performance improvements (CPU use):
5696     - Never walk through the list of logs if we know that no log target
5697       is interested in a given message.
5698     - Call routerlist_remove_old_routers() much less often. This should
5699       speed startup, especially on directory caches.
5700     - Base64 decoding was actually showing up on our profile when parsing
5701       the initial descriptor file; switch to an in-process all-at-once
5702       implementation that's about 3.5x times faster than calling out to
5703       OpenSSL.
5704     - Use a slightly simpler string hashing algorithm (copying Python's
5705       instead of Java's) and optimize our digest hashing algorithm to take
5706       advantage of 64-bit platforms and to remove some possibly-costly
5707       voodoo.
5708     - When implementing AES counter mode, update only the portions of the
5709       counter buffer that need to change, and don't keep separate
5710       network-order and host-order counters on big-endian hosts (where
5711       they are the same).
5712     - Add an in-place version of aes_crypt() so that we can avoid doing a
5713       needless memcpy() call on each cell payload.
5714     - Use Critical Sections rather than Mutexes for synchronizing threads
5715       on win32; Mutexes are heavier-weight, and designed for synchronizing
5716       between processes.
5718   o Performance improvements (bandwidth use):
5719     - Don't try to launch new descriptor downloads quite so often when we
5720       already have enough directory information to build circuits.
5721     - Version 1 directories are no longer generated in full. Instead,
5722       authorities generate and serve "stub" v1 directories that list
5723       no servers. This will stop Tor versions 0.1.0.x and earlier from
5724       working, but (for security reasons) nobody should be running those
5725       versions anyway.
5726     - Avoid going directly to the directory authorities even if you're a
5727       relay, if you haven't found yourself reachable yet or if you've
5728       decided not to advertise your dirport yet. Addresses bug 556.
5729     - If we've gone 12 hours since our last bandwidth check, and we
5730       estimate we have less than 50KB bandwidth capacity but we could
5731       handle more, do another bandwidth test.
5732     - Support "If-Modified-Since" when answering HTTP requests for
5733       directories, running-routers documents, and v2 and v3 networkstatus
5734       documents. (There's no need to support it for router descriptors,
5735       since those are downloaded by descriptor digest.)
5736     - Stop fetching directory info so aggressively if your DirPort is
5737       on but your ORPort is off; stop fetching v2 dir info entirely.
5738       You can override these choices with the new FetchDirInfoEarly
5739       config option.
5741   o Changed config option behavior (features):
5742     - Configuration files now accept C-style strings as values. This
5743       helps encode characters not allowed in the current configuration
5744       file format, such as newline or #. Addresses bug 557.
5745     - Add hidden services and DNSPorts to the list of things that make
5746       Tor accept that it has running ports. Change starting Tor with no
5747       ports from a fatal error to a warning; we might change it back if
5748       this turns out to confuse anybody. Fixes bug 579.
5749     - Make PublishServerDescriptor default to 1, so the default doesn't
5750       have to change as we invent new directory protocol versions.
5751     - Allow people to say PreferTunnelledDirConns rather than
5752       PreferTunneledDirConns, for those alternate-spellers out there.
5753     - Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
5754       accommodate the growing number of servers that use the default
5755       and are reaching it.
5756     - Make it possible to enable HashedControlPassword and
5757       CookieAuthentication at the same time.
5758     - When a TrackHostExits-chosen exit fails too many times in a row,
5759       stop using it. Fixes bug 437.
5761   o Changed config option behavior (bugfixes):
5762     - Do not read the configuration file when we've only been told to
5763       generate a password hash. Fixes bug 643. Bugfix on 0.0.9pre5. Fix
5764       based on patch from Sebastian Hahn.
5765     - Actually validate the options passed to AuthDirReject,
5766       AuthDirInvalid, AuthDirBadDir, and AuthDirBadExit.
5767     - Make "ClientOnly 1" config option disable directory ports too.
5768     - Don't stop fetching descriptors when FetchUselessDescriptors is
5769       set, even if we stop asking for circuits. Bug reported by tup
5770       and ioerror.
5771     - Servers used to decline to publish their DirPort if their
5772       BandwidthRate or MaxAdvertisedBandwidth were below a threshold. Now
5773       they look only at BandwidthRate and RelayBandwidthRate.
5774     - Treat "2gb" when given in torrc for a bandwidth as meaning 2gb,
5775       minus 1 byte: the actual maximum declared bandwidth.
5776     - Make "TrackHostExits ." actually work. Bugfix on 0.1.0.x.
5777     - Make the NodeFamilies config option work. (Reported by
5778       lodger -- it has never actually worked, even though we added it
5779       in Oct 2004.)
5780     - If Tor is invoked from something that isn't a shell (e.g. Vidalia),
5781       now we expand "-f ~/.tor/torrc" correctly. Suggested by Matt Edman.
5783   o New config options:
5784     - New configuration options AuthDirMaxServersPerAddr and
5785       AuthDirMaxServersperAuthAddr to override default maximum number
5786       of servers allowed on a single IP address. This is important for
5787       running a test network on a single host.
5788     - Three new config options (AlternateDirAuthority,
5789       AlternateBridgeAuthority, and AlternateHSAuthority) that let the
5790       user selectively replace the default directory authorities by type,
5791       rather than the all-or-nothing replacement that DirServer offers.
5792     - New config options AuthDirBadDir and AuthDirListBadDirs for
5793       authorities to mark certain relays as "bad directories" in the
5794       networkstatus documents. Also supports the "!baddir" directive in
5795       the approved-routers file.
5796     - New config option V2AuthoritativeDirectory that all v2 directory
5797       authorities must set. This lets v3 authorities choose not to serve
5798       v2 directory information.
5800   o Minor features (other):
5801     - When we're not serving v2 directory information, there is no reason
5802       to actually keep any around. Remove the obsolete files and directory
5803       on startup if they are very old and we aren't going to serve them.
5804     - When we negotiate a v2 link-layer connection (not yet implemented),
5805       accept RELAY_EARLY cells and turn them into RELAY cells if we've
5806       negotiated a v1 connection for their next step. Initial steps for
5807       proposal 110.
5808     - When we have no consensus, check FallbackNetworkstatusFile (defaults
5809       to $PREFIX/share/tor/fallback-consensus) for a consensus. This way
5810       we can start out knowing some directory caches. We don't ship with
5811       a fallback consensus by default though, because it was making
5812       bootstrapping take too long while we tried many down relays.
5813     - Authorities send back an X-Descriptor-Not-New header in response to
5814       an accepted-but-discarded descriptor upload. Partially implements
5815       fix for bug 535.
5816     - If we find a cached-routers file that's been sitting around for more
5817       than 28 days unmodified, then most likely it's a leftover from
5818       when we upgraded to 0.2.0.8-alpha. Remove it. It has no good
5819       routers anyway.
5820     - When we (as a cache) download a descriptor because it was listed
5821       in a consensus, remember when the consensus was supposed to expire,
5822       and don't expire the descriptor until then.
5823     - Optionally (if built with -DEXPORTMALLINFO) export the output
5824       of mallinfo via http, as tor/mallinfo.txt. Only accessible
5825       from localhost.
5826     - Tag every guard node in our state file with the version that
5827       we believe added it, or with our own version if we add it. This way,
5828       if a user temporarily runs an old version of Tor and then switches
5829       back to a new one, she doesn't automatically lose her guards.
5830     - When somebody requests a list of statuses or servers, and we have
5831       none of those, return a 404 rather than an empty 200.
5832     - Merge in some (as-yet-unused) IPv6 address manipulation code. (Patch
5833       from croup.)
5834     - Add an HSAuthorityRecordStats option that hidden service authorities
5835       can use to track statistics of overall hidden service usage without
5836       logging information that would be as useful to an attacker.
5837     - Allow multiple HiddenServicePort directives with the same virtual
5838       port; when they occur, the user is sent round-robin to one
5839       of the target ports chosen at random.  Partially fixes bug 393 by
5840       adding limited ad-hoc round-robining.
5841     - Revamp file-writing logic so we don't need to have the entire
5842       contents of a file in memory at once before we write to disk. Tor,
5843       meet stdio.
5845   o Minor bugfixes (other):
5846     - Alter the code that tries to recover from unhandled write
5847       errors, to not try to flush onto a socket that's given us
5848       unhandled errors.
5849     - Directory mirrors no longer include a guess at the client's IP
5850       address if the connection appears to be coming from the same /24
5851       network; it was producing too many wrong guesses.
5852     - If we're trying to flush the last bytes on a connection (for
5853       example, when answering a directory request), reset the
5854       time-to-give-up timeout every time we manage to write something
5855       on the socket.
5856     - Reject router descriptors with out-of-range bandwidthcapacity or
5857       bandwidthburst values.
5858     - If we can't expand our list of entry guards (e.g. because we're
5859       using bridges or we have StrictEntryNodes set), don't mark relays
5860       down when they fail a directory request. Otherwise we're too quick
5861       to mark all our entry points down.
5862     - Authorities no longer send back "400 you're unreachable please fix
5863       it" errors to Tor servers that aren't online all the time. We're
5864       supposed to tolerate these servers now.
5865     - Let directory authorities startup even when they can't generate
5866       a descriptor immediately, e.g. because they don't know their
5867       address.
5868     - Correctly enforce that elements of directory objects do not appear
5869       more often than they are allowed to appear.
5870     - Stop allowing hibernating servers to be "stable" or "fast".
5871     - On Windows, we were preventing other processes from reading
5872       cached-routers while Tor was running. (Reported by janbar)
5873     - Check return values from pthread_mutex functions.
5874     - When opening /dev/null in finish_daemonize(), do not pass the
5875       O_CREAT flag. Fortify was complaining, and correctly so. Fixes
5876       bug 742; fix from Michael Scherer. Bugfix on 0.0.2pre19.
5878   o Controller features:
5879     - The GETCONF command now escapes and quotes configuration values
5880       that don't otherwise fit into the torrc file.
5881     - The SETCONF command now handles quoted values correctly.
5882     - Add "GETINFO/desc-annotations/id/<OR digest>" so controllers can
5883       ask about source, timestamp of arrival, purpose, etc. We need
5884       something like this to help Vidalia not do GeoIP lookups on bridge
5885       addresses.
5886     - Allow multiple HashedControlPassword config lines, to support
5887       multiple controller passwords.
5888     - Accept LF instead of CRLF on controller, since some software has a
5889       hard time generating real Internet newlines.
5890     - Add GETINFO values for the server status events
5891       "REACHABILITY_SUCCEEDED" and "GOOD_SERVER_DESCRIPTOR". Patch from
5892       Robert Hogan.
5893     - There is now an ugly, temporary "desc/all-recent-extrainfo-hack"
5894       GETINFO for Torstat to use until it can switch to using extrainfos.
5895     - New config option CookieAuthFile to choose a new location for the
5896       cookie authentication file, and config option
5897       CookieAuthFileGroupReadable to make it group-readable.
5898     - Add a SOURCE_ADDR field to STREAM NEW events so that controllers can
5899       match requests to applications. Patch from Robert Hogan.
5900     - Add a RESOLVE command to launch hostname lookups. Original patch
5901       from Robert Hogan.
5902     - Add GETINFO status/enough-dir-info to let controllers tell whether
5903       Tor has downloaded sufficient directory information. Patch from Tup.
5904     - You can now use the ControlSocket option to tell Tor to listen for
5905       controller connections on Unix domain sockets on systems that
5906       support them. Patch from Peter Palfrader.
5907     - New "GETINFO address-mappings/*" command to get address mappings
5908       with expiry information. "addr-mappings/*" is now deprecated.
5909       Patch from Tup.
5910     - Add a new config option __DisablePredictedCircuits designed for
5911       use by the controller, when we don't want Tor to build any circuits
5912       preemptively.
5913     - Let the controller specify HOP=%d as an argument to ATTACHSTREAM,
5914       so we can exit from the middle of the circuit.
5915     - Implement "getinfo status/circuit-established".
5916     - Implement "getinfo status/version/..." so a controller can tell
5917       whether the current version is recommended, and whether any versions
5918       are good, and how many authorities agree. Patch from "shibz".
5919     - Controllers should now specify cache=no or cache=yes when using
5920       the +POSTDESCRIPTOR command.
5921     - Add a "PURPOSE=" argument to "STREAM NEW" events, as suggested by
5922       Robert Hogan. Fixes the first part of bug 681.
5923     - When reporting clock skew, and we know that the clock is _at least
5924       as skewed_ as some value, but we don't know the actual value,
5925       report the value as a "minimum skew."
5927   o Controller bugfixes:
5928     - Generate "STATUS_SERVER" events rather than misspelled
5929       "STATUS_SEVER" events. Caught by mwenge.
5930     - Reject controller commands over 1MB in length, so rogue
5931       processes can't run us out of memory.
5932     - Change the behavior of "getinfo status/good-server-descriptor"
5933       so it doesn't return failure when any authority disappears.
5934     - Send NAMESERVER_STATUS messages for a single failed nameserver
5935       correctly.
5936     - When the DANGEROUS_VERSION controller status event told us we're
5937       running an obsolete version, it used the string "OLD" to describe
5938       it. Yet the "getinfo" interface used the string "OBSOLETE". Now use
5939       "OBSOLETE" in both cases.
5940     - Respond to INT and TERM SIGNAL commands before we execute the
5941       signal, in case the signal shuts us down. We had a patch in
5942       0.1.2.1-alpha that tried to do this by queueing the response on
5943       the connection's buffer before shutting down, but that really
5944       isn't the same thing at all. Bug located by Matt Edman.
5945     - Provide DNS expiry times in GMT, not in local time. For backward
5946       compatibility, ADDRMAP events only provide GMT expiry in an extended
5947       field. "GETINFO address-mappings" always does the right thing.
5948     - Use CRLF line endings properly in NS events.
5949     - Make 'getinfo fingerprint' return a 551 error if we're not a
5950       server, so we match what the control spec claims we do. Reported
5951       by daejees.
5952     - Fix a typo in an error message when extendcircuit fails that
5953       caused us to not follow the \r\n-based delimiter protocol. Reported
5954       by daejees.
5955     - When tunneling an encrypted directory connection, and its first
5956       circuit fails, do not leave it unattached and ask the controller
5957       to deal. Fixes the second part of bug 681.
5958     - Treat some 403 responses from directory servers as INFO rather than
5959       WARN-severity events.
5961   o Portability / building / compiling:
5962     - When building with --enable-gcc-warnings, check for whether Apple's
5963       warning "-Wshorten-64-to-32" is available.
5964     - Support compilation to target iPhone; patch from cjacker huang.
5965       To build for iPhone, pass the --enable-iphone option to configure.
5966     - Port Tor to build and run correctly on Windows CE systems, using
5967       the wcecompat library. Contributed by Valerio Lupi.
5968     - Detect non-ASCII platforms (if any still exist) and refuse to
5969       build there: some of our code assumes that 'A' is 65 and so on.
5970     - Clear up some MIPSPro compiler warnings.
5971     - Make autoconf search for libevent, openssl, and zlib consistently.
5972     - Update deprecated macros in configure.in.
5973     - When warning about missing headers, tell the user to let us
5974       know if the compile succeeds anyway, so we can downgrade the
5975       warning.
5976     - Include the current subversion revision as part of the version
5977       string: either fetch it directly if we're in an SVN checkout, do
5978       some magic to guess it if we're in an SVK checkout, or use
5979       the last-detected version if we're building from a .tar.gz.
5980       Use this version consistently in log messages.
5981     - Correctly report platform name on Windows 95 OSR2 and Windows 98 SE.
5982     - Read resolv.conf files correctly on platforms where read() returns
5983       partial results on small file reads.
5984     - Build without verbose warnings even on gcc 4.2 and 4.3.
5985     - On Windows, correctly detect errors when listing the contents of
5986       a directory. Fix from lodger.
5987     - Run 'make test' as part of 'make dist', so we stop releasing so
5988       many development snapshots that fail their unit tests.
5989     - Add support to detect Libevent versions in the 1.4.x series
5990       on mingw.
5991     - Add command-line arguments to unit-test executable so that we can
5992       invoke any chosen test from the command line rather than having
5993       to run the whole test suite at once; and so that we can turn on
5994       logging for the unit tests.
5995     - Do not automatically run configure from autogen.sh. This
5996       non-standard behavior tended to annoy people who have built other
5997       programs.
5998     - Fix a macro/CPP interaction that was confusing some compilers:
5999       some GCCs don't like #if/#endif pairs inside macro arguments.
6000       Fixes bug 707.
6001     - Fix macro collision between OpenSSL 0.9.8h and Windows headers.
6002       Fixes bug 704; fix from Steven Murdoch.
6003     - Correctly detect transparent proxy support on Linux hosts that
6004       require in.h to be included before netfilter_ipv4.h.  Patch
6005       from coderman.
6007   o Logging improvements:
6008     - When we haven't had any application requests lately, don't bother
6009       logging that we have expired a bunch of descriptors.
6010     - When attempting to open a logfile fails, tell us why.
6011     - Only log guard node status when guard node status has changed.
6012     - Downgrade the 3 most common "INFO" messages to "DEBUG". This will
6013       make "INFO" 75% less verbose.
6014     - When SafeLogging is disabled, log addresses along with all TLS
6015       errors.
6016     - Report TLS "zero return" case as a "clean close" and "IO error"
6017       as a "close". Stop calling closes "unexpected closes": existing
6018       Tors don't use SSL_close(), so having a connection close without
6019       the TLS shutdown handshake is hardly unexpected.
6020     - When we receive a consensus from the future, warn about skew.
6021     - Make "not enough dir info yet" warnings describe *why* Tor feels
6022       it doesn't have enough directory info yet.
6023     - On the USR1 signal, when dmalloc is in use, log the top 10 memory
6024       consumers. (We already do this on HUP.)
6025     - Give more descriptive well-formedness errors for out-of-range
6026       hidden service descriptor/protocol versions.
6027     - Stop recommending that every server operator send mail to tor-ops.
6028       Resolves bug 597. Bugfix on 0.1.2.x.
6029     - Improve skew reporting: try to give the user a better log message
6030       about how skewed they are, and how much this matters.
6031     - New --quiet command-line option to suppress the default console log.
6032       Good in combination with --hash-password.
6033     - Don't complain that "your server has not managed to confirm that its
6034       ports are reachable" if we haven't been able to build any circuits
6035       yet.
6036     - Detect the reason for failing to mmap a descriptor file we just
6037       wrote, and give a more useful log message.  Fixes bug 533.
6038     - Always prepend "Bug: " to any log message about a bug.
6039     - When dumping memory usage, list bytes used in buffer memory
6040       free-lists.
6041     - When running with dmalloc, dump more stats on hup and on exit.
6042     - Put a platform string (e.g. "Linux i686") in the startup log
6043       message, so when people paste just their logs, we know if it's
6044       OpenBSD or Windows or what.
6045     - When logging memory usage, break down memory used in buffers by
6046       buffer type.
6047     - When we are reporting the DirServer line we just parsed, we were
6048       logging the second stanza of the key fingerprint, not the first.
6049     - Even though Windows is equally happy with / and \ as path separators,
6050       try to use \ consistently on Windows and / consistently on Unix: it
6051       makes the log messages nicer.
6052      - On OSX, stop warning the user that kqueue support in libevent is
6053       "experimental", since it seems to have worked fine for ages.
6055   o Contributed scripts and tools:
6056     - Update linux-tor-prio.sh script to allow QoS based on the uid of
6057       the Tor process. Patch from Marco Bonetti with tweaks from Mike
6058       Perry.
6059     - Include the "tor-ctrl.sh" bash script by Stefan Behte to provide
6060       Unix users an easy way to script their Tor process (e.g. by
6061       adjusting bandwidth based on the time of the day).
6062     - In the exitlist script, only consider the most recently published
6063       server descriptor for each server. Also, when the user requests
6064       a list of servers that _reject_ connections to a given address,
6065       explicitly exclude the IPs that also have servers that accept
6066       connections to that address. Resolves bug 405.
6067     - Include a new contrib/tor-exit-notice.html file that exit relay
6068       operators can put on their website to help reduce abuse queries.
6070   o Newly deprecated features:
6071     - The status/version/num-versioning and status/version/num-concurring
6072       GETINFO controller options are no longer useful in the v3 directory
6073       protocol: treat them as deprecated, and warn when they're used.
6074     - The RedirectExits config option is now deprecated.
6076   o Removed features:
6077     - Drop the old code to choke directory connections when the
6078       corresponding OR connections got full: thanks to the cell queue
6079       feature, OR conns don't get full any more.
6080     - Remove the old "dns worker" server DNS code: it hasn't been default
6081       since 0.1.2.2-alpha, and all the servers are using the new
6082       eventdns code.
6083     - Remove the code to generate the oldest (v1) directory format.
6084     - Remove support for the old bw_accounting file: we've been storing
6085       bandwidth accounting information in the state file since
6086       0.1.2.5-alpha. This may result in bandwidth accounting errors
6087       if you try to upgrade from 0.1.1.x or earlier, or if you try to
6088       downgrade to 0.1.1.x or earlier.
6089     - Drop support for OpenSSL version 0.9.6. Just about nobody was using
6090       it, it had no AES, and it hasn't seen any security patches since
6091       2004.
6092     - Stop overloading the circuit_t.onionskin field for both "onionskin
6093       from a CREATE cell that we are waiting for a cpuworker to be
6094       assigned" and "onionskin from an EXTEND cell that we are going to
6095       send to an OR as soon as we are connected". Might help with bug 600.
6096     - Remove the tor_strpartition() function: its logic was confused,
6097       and it was only used for one thing that could be implemented far
6098       more easily.
6099     - Remove the contrib scripts ExerciseServer.py, PathDemo.py,
6100       and TorControl.py, as they use the old v0 controller protocol,
6101       and are obsoleted by TorFlow anyway.
6102     - Drop support for v1 rendezvous descriptors, since we never used
6103       them anyway, and the code has probably rotted by now. Based on
6104       patch from Karsten Loesing.
6105     - Stop allowing address masks that do not correspond to bit prefixes.
6106       We have warned about these for a really long time; now it's time
6107       to reject them. (Patch from croup.)
6108     - Remove an optimization in the AES counter-mode code that assumed
6109       that the counter never exceeded 2^68. When the counter can be set
6110       arbitrarily as an IV (as it is by Karsten's new hidden services
6111       code), this assumption no longer holds.
6112     - Disable the SETROUTERPURPOSE controller command: it is now
6113       obsolete.
6116 Changes in version 0.1.2.19 - 2008-01-17
6117   Tor 0.1.2.19 fixes a huge memory leak on exit relays, makes the default
6118   exit policy a little bit more conservative so it's safer to run an
6119   exit relay on a home system, and fixes a variety of smaller issues.
6121   o Security fixes:
6122     - Exit policies now reject connections that are addressed to a
6123       relay's public (external) IP address too, unless
6124       ExitPolicyRejectPrivate is turned off. We do this because too
6125       many relays are running nearby to services that trust them based
6126       on network address.
6128   o Major bugfixes:
6129     - When the clock jumps forward a lot, do not allow the bandwidth
6130       buckets to become negative. Fixes bug 544.
6131     - Fix a memory leak on exit relays; we were leaking a cached_resolve_t
6132       on every successful resolve. Reported by Mike Perry.
6133     - Purge old entries from the "rephist" database and the hidden
6134       service descriptor database even when DirPort is zero.
6135     - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
6136       requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
6137       crashing or mis-answering these requests.
6138     - When we decide to send a 503 response to a request for servers, do
6139       not then also send the server descriptors: this defeats the whole
6140       purpose. Fixes bug 539.
6142   o Minor bugfixes:
6143     - Changing the ExitPolicyRejectPrivate setting should cause us to
6144       rebuild our server descriptor.
6145     - Fix handling of hex nicknames when answering controller requests for
6146       networkstatus by name, or when deciding whether to warn about
6147       unknown routers in a config option. (Patch from mwenge.)
6148     - Fix a couple of hard-to-trigger autoconf problems that could result
6149       in really weird results on platforms whose sys/types.h files define
6150       nonstandard integer types.
6151     - Don't try to create the datadir when running --verify-config or
6152       --hash-password. Resolves bug 540.
6153     - If we were having problems getting a particular descriptor from the
6154       directory caches, and then we learned about a new descriptor for
6155       that router, we weren't resetting our failure count. Reported
6156       by lodger.
6157     - Although we fixed bug 539 (where servers would send HTTP status 503
6158       responses _and_ send a body too), there are still servers out there
6159       that haven't upgraded. Therefore, make clients parse such bodies
6160       when they receive them.
6161     - Run correctly on systems where rlim_t is larger than unsigned long.
6162       This includes some 64-bit systems.
6163     - Run correctly on platforms (like some versions of OS X 10.5) where
6164       the real limit for number of open files is OPEN_FILES, not rlim_max
6165       from getrlimit(RLIMIT_NOFILES).
6166     - Avoid a spurious free on base64 failure.
6167     - Avoid segfaults on certain complex invocations of
6168       router_get_by_hexdigest().
6169     - Fix rare bug on REDIRECTSTREAM control command when called with no
6170       port set: it could erroneously report an error when none had
6171       happened.
6174 Changes in version 0.1.2.18 - 2007-10-28
6175   Tor 0.1.2.18 fixes many problems including crash bugs, problems with
6176   hidden service introduction that were causing huge delays, and a big
6177   bug that was causing some servers to disappear from the network status
6178   lists for a few hours each day.
6180   o Major bugfixes (crashes):
6181     - If a connection is shut down abruptly because of something that
6182       happened inside connection_flushed_some(), do not call
6183       connection_finished_flushing(). Should fix bug 451:
6184       "connection_stop_writing: Assertion conn->write_event failed"
6185       Bugfix on 0.1.2.7-alpha.
6186     - Fix possible segfaults in functions called from
6187       rend_process_relay_cell().
6189   o Major bugfixes (hidden services):
6190     - Hidden services were choosing introduction points uniquely by
6191       hexdigest, but when constructing the hidden service descriptor
6192       they merely wrote the (potentially ambiguous) nickname.
6193     - Clients now use the v2 intro format for hidden service
6194       connections: they specify their chosen rendezvous point by identity
6195       digest rather than by (potentially ambiguous) nickname. These
6196       changes could speed up hidden service connections dramatically.
6198   o Major bugfixes (other):
6199     - Stop publishing a new server descriptor just because we get a
6200       HUP signal. This led (in a roundabout way) to some servers getting
6201       dropped from the networkstatus lists for a few hours each day.
6202     - When looking for a circuit to cannibalize, consider family as well
6203       as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced
6204       circuit cannibalization).
6205     - When a router wasn't listed in a new networkstatus, we were leaving
6206       the flags for that router alone -- meaning it remained Named,
6207       Running, etc -- even though absence from the networkstatus means
6208       that it shouldn't be considered to exist at all anymore. Now we
6209       clear all the flags for routers that fall out of the networkstatus
6210       consensus. Fixes bug 529.
6212   o Minor bugfixes:
6213     - Don't try to access (or alter) the state file when running
6214       --list-fingerprint or --verify-config or --hash-password. Resolves
6215       bug 499.
6216     - When generating information telling us how to extend to a given
6217       router, do not try to include the nickname if it is
6218       absent. Resolves bug 467.
6219     - Fix a user-triggerable segfault in expand_filename(). (There isn't
6220       a way to trigger this remotely.)
6221     - When sending a status event to the controller telling it that an
6222       OR address is reachable, set the port correctly. (Previously we
6223       were reporting the dir port.)
6224     - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO
6225       command. Bugfix on 0.1.2.17.
6226     - When loading bandwidth history, do not believe any information in
6227       the future. Fixes bug 434.
6228     - When loading entry guard information, do not believe any information
6229       in the future.
6230     - When we have our clock set far in the future and generate an
6231       onion key, then re-set our clock to be correct, we should not stop
6232       the onion key from getting rotated.
6233     - On some platforms, accept() can return a broken address. Detect
6234       this more quietly, and deal accordingly. Fixes bug 483.
6235     - It's not actually an error to find a non-pending entry in the DNS
6236       cache when canceling a pending resolve. Don't log unless stuff
6237       is fishy. Resolves bug 463.
6238     - Don't reset trusted dir server list when we set a configuration
6239       option. Patch from Robert Hogan.
6242 Changes in version 0.1.2.17 - 2007-08-30
6243   Tor 0.1.2.17 features a new Vidalia version in the Windows and OS
6244   X bundles. Vidalia 0.0.14 makes authentication required for the
6245   ControlPort in the default configuration, which addresses important
6246   security risks. Everybody who uses Vidalia (or another controller)
6247   should upgrade.
6249   In addition, this Tor update fixes major load balancing problems with
6250   path selection, which should speed things up a lot once many people
6251   have upgraded.
6253   o Major bugfixes (security):
6254     - We removed support for the old (v0) control protocol. It has been
6255       deprecated since Tor 0.1.1.1-alpha, and keeping it secure has
6256       become more of a headache than it's worth.
6258   o Major bugfixes (load balancing):
6259     - When choosing nodes for non-guard positions, weight guards
6260       proportionally less, since they already have enough load. Patch
6261       from Mike Perry.
6262     - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This
6263       will allow fast Tor servers to get more attention.
6264     - When we're upgrading from an old Tor version, forget our current
6265       guards and pick new ones according to the new weightings. These
6266       three load balancing patches could raise effective network capacity
6267       by a factor of four. Thanks to Mike Perry for measurements.
6269   o Major bugfixes (stream expiration):
6270     - Expire not-yet-successful application streams in all cases if
6271       they've been around longer than SocksTimeout. Right now there are
6272       some cases where the stream will live forever, demanding a new
6273       circuit every 15 seconds. Fixes bug 454; reported by lodger.
6275   o Minor features (controller):
6276     - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it
6277       is valid before any authentication has been received. It tells
6278       a controller what kind of authentication is expected, and what
6279       protocol is spoken. Implements proposal 119.
6281   o Minor bugfixes (performance):
6282     - Save on most routerlist_assert_ok() calls in routerlist.c, thus
6283       greatly speeding up loading cached-routers from disk on startup.
6284     - Disable sentinel-based debugging for buffer code: we squashed all
6285       the bugs that this was supposed to detect a long time ago, and now
6286       its only effect is to change our buffer sizes from nice powers of
6287       two (which platform mallocs tend to like) to values slightly over
6288       powers of two (which make some platform mallocs sad).
6290   o Minor bugfixes (misc):
6291     - If exit bandwidth ever exceeds one third of total bandwidth, then
6292       use the correct formula to weight exit nodes when choosing paths.
6293       Based on patch from Mike Perry.
6294     - Choose perfectly fairly among routers when choosing by bandwidth and
6295       weighting by fraction of bandwidth provided by exits. Previously, we
6296       would choose with only approximate fairness, and correct ourselves
6297       if we ran off the end of the list.
6298     - If we require CookieAuthentication but we fail to write the
6299       cookie file, we would warn but not exit, and end up in a state
6300       where no controller could authenticate. Now we exit.
6301     - If we require CookieAuthentication, stop generating a new cookie
6302       every time we change any piece of our config.
6303     - Refuse to start with certain directory authority keys, and
6304       encourage people using them to stop.
6305     - Terminate multi-line control events properly. Original patch
6306       from tup.
6307     - Fix a minor memory leak when we fail to find enough suitable
6308       servers to choose a circuit.
6309     - Stop leaking part of the descriptor when we run into a particularly
6310       unparseable piece of it.
6313 Changes in version 0.1.2.16 - 2007-08-01
6314   Tor 0.1.2.16 fixes a critical security vulnerability that allows a
6315   remote attacker in certain situations to rewrite the user's torrc
6316   configuration file. This can completely compromise anonymity of users
6317   in most configurations, including those running the Vidalia bundles,
6318   TorK, etc. Or worse.
6320   o Major security fixes:
6321     - Close immediately after missing authentication on control port;
6322       do not allow multiple authentication attempts.
6325 Changes in version 0.1.2.15 - 2007-07-17
6326   Tor 0.1.2.15 fixes several crash bugs, fixes some anonymity-related
6327   problems, fixes compilation on BSD, and fixes a variety of other
6328   bugs. Everybody should upgrade.
6330   o Major bugfixes (compilation):
6331     - Fix compile on FreeBSD/NetBSD/OpenBSD. Oops.
6333   o Major bugfixes (crashes):
6334     - Try even harder not to dereference the first character after
6335       an mmap(). Reported by lodger.
6336     - Fix a crash bug in directory authorities when we re-number the
6337       routerlist while inserting a new router.
6338     - When the cached-routers file is an even multiple of the page size,
6339       don't run off the end and crash. (Fixes bug 455; based on idea
6340       from croup.)
6341     - Fix eventdns.c behavior on Solaris: It is critical to include
6342       orconfig.h _before_ sys/types.h, so that we can get the expected
6343       definition of _FILE_OFFSET_BITS.
6345   o Major bugfixes (security):
6346     - Fix a possible buffer overrun when using BSD natd support. Bug
6347       found by croup.
6348     - When sending destroy cells from a circuit's origin, don't include
6349       the reason for tearing down the circuit. The spec says we didn't,
6350       and now we actually don't. Reported by lodger.
6351     - Keep streamids from different exits on a circuit separate. This
6352       bug may have allowed other routers on a given circuit to inject
6353       cells into streams. Reported by lodger; fixes bug 446.
6354     - If there's a never-before-connected-to guard node in our list,
6355       never choose any guards past it. This way we don't expand our
6356       guard list unless we need to.
6358   o Minor bugfixes (guard nodes):
6359     - Weight guard selection by bandwidth, so that low-bandwidth nodes
6360       don't get overused as guards.
6362   o Minor bugfixes (directory):
6363     - Correctly count the number of authorities that recommend each
6364       version. Previously, we were under-counting by 1.
6365     - Fix a potential crash bug when we load many server descriptors at
6366       once and some of them make others of them obsolete. Fixes bug 458.
6368   o Minor bugfixes (hidden services):
6369     - Stop tearing down the whole circuit when the user asks for a
6370       connection to a port that the hidden service didn't configure.
6371       Resolves bug 444.
6373   o Minor bugfixes (misc):
6374     - On Windows, we were preventing other processes from reading
6375       cached-routers while Tor was running. Reported by janbar.
6376     - Fix a possible (but very unlikely) bug in picking routers by
6377       bandwidth. Add a log message to confirm that it is in fact
6378       unlikely. Patch from lodger.
6379     - Backport a couple of memory leak fixes.
6380     - Backport miscellaneous cosmetic bugfixes.
6383 Changes in version 0.1.2.14 - 2007-05-25
6384   Tor 0.1.2.14 changes the addresses of two directory authorities (this
6385   change especially affects those who serve or use hidden services),
6386   and fixes several other crash- and security-related bugs.
6388   o Directory authority changes:
6389     - Two directory authorities (moria1 and moria2) just moved to new
6390       IP addresses. This change will particularly affect those who serve
6391       or use hidden services.
6393   o Major bugfixes (crashes):
6394     - If a directory server runs out of space in the connection table
6395       as it's processing a begin_dir request, it will free the exit stream
6396       but leave it attached to the circuit, leading to unpredictable
6397       behavior. (Reported by seeess, fixes bug 425.)
6398     - Fix a bug in dirserv_remove_invalid() that would cause authorities
6399       to corrupt memory under some really unlikely scenarios.
6400     - Tighten router parsing rules. (Bugs reported by Benedikt Boss.)
6401     - Avoid segfaults when reading from mmaped descriptor file. (Reported
6402       by lodger.)
6404   o Major bugfixes (security):
6405     - When choosing an entry guard for a circuit, avoid using guards
6406       that are in the same family as the chosen exit -- not just guards
6407       that are exactly the chosen exit. (Reported by lodger.)
6409   o Major bugfixes (resource management):
6410     - If a directory authority is down, skip it when deciding where to get
6411       networkstatus objects or descriptors. Otherwise we keep asking
6412       every 10 seconds forever. Fixes bug 384.
6413     - Count it as a failure if we fetch a valid network-status but we
6414       don't want to keep it. Otherwise we'll keep fetching it and keep
6415       not wanting to keep it. Fixes part of bug 422.
6416     - If all of our dirservers have given us bad or no networkstatuses
6417       lately, then stop hammering them once per minute even when we
6418       think they're failed. Fixes another part of bug 422.
6420   o Minor bugfixes:
6421     - Actually set the purpose correctly for descriptors inserted with
6422       purpose=controller.
6423     - When we have k non-v2 authorities in our DirServer config,
6424       we ignored the last k authorities in the list when updating our
6425       network-statuses.
6426     - Correctly back-off from requesting router descriptors that we are
6427       having a hard time downloading.
6428     - Read resolv.conf files correctly on platforms where read() returns
6429       partial results on small file reads.
6430     - Don't rebuild the entire router store every time we get 32K of
6431       routers: rebuild it when the journal gets very large, or when
6432       the gaps in the store get very large.
6434   o Minor features:
6435     - When routers publish SVN revisions in their router descriptors,
6436       authorities now include those versions correctly in networkstatus
6437       documents.
6438     - Warn when using a version of libevent before 1.3b to run a server on
6439       OSX or BSD: these versions interact badly with userspace threads.
6442 Changes in version 0.1.2.13 - 2007-04-24
6443   This release features some major anonymity fixes, such as safer path
6444   selection; better client performance; faster bootstrapping, better
6445   address detection, and better DNS support for servers; write limiting as
6446   well as read limiting to make servers easier to run; and a huge pile of
6447   other features and bug fixes. The bundles also ship with Vidalia 0.0.11.
6449   Tor 0.1.2.13 is released in memory of Rob Levin (1955-2006), aka lilo
6450   of the Freenode IRC network, remembering his patience and vision for
6451   free speech on the Internet.
6453   o Major features, client performance:
6454     - Weight directory requests by advertised bandwidth. Now we can
6455       let servers enable write limiting but still allow most clients to
6456       succeed at their directory requests. (We still ignore weights when
6457       choosing a directory authority; I hope this is a feature.)
6458     - Stop overloading exit nodes -- avoid choosing them for entry or
6459       middle hops when the total bandwidth available from non-exit nodes
6460       is much higher than the total bandwidth available from exit nodes.
6461     - Rather than waiting a fixed amount of time between retrying
6462       application connections, we wait only 10 seconds for the first,
6463       10 seconds for the second, and 15 seconds for each retry after
6464       that. Hopefully this will improve the expected user experience.
6465     - Sometimes we didn't bother sending a RELAY_END cell when an attempt
6466       to open a stream fails; now we do in more cases. This should
6467       make clients able to find a good exit faster in some cases, since
6468       unhandleable requests will now get an error rather than timing out.
6470   o Major features, client functionality:
6471     - Implement BEGIN_DIR cells, so we can connect to a directory
6472       server via TLS to do encrypted directory requests rather than
6473       plaintext. Enable via the TunnelDirConns and PreferTunneledDirConns
6474       config options if you like. For now, this feature only works if
6475       you already have a descriptor for the destination dirserver.
6476     - Add support for transparent application connections: this basically
6477       bundles the functionality of trans-proxy-tor into the Tor
6478       mainline. Now hosts with compliant pf/netfilter implementations
6479       can redirect TCP connections straight to Tor without diverting
6480       through SOCKS. (Based on patch from tup.)
6481     - Add support for using natd; this allows FreeBSDs earlier than
6482       5.1.2 to have ipfw send connections through Tor without using
6483       SOCKS. (Patch from Zajcev Evgeny with tweaks from tup.)
6485   o Major features, servers:
6486     - Setting up a dyndns name for your server is now optional: servers
6487       with no hostname or IP address will learn their IP address by
6488       asking the directory authorities. This code only kicks in when you
6489       would normally have exited with a "no address" error. Nothing's
6490       authenticated, so use with care.
6491     - Directory servers now spool server descriptors, v1 directories,
6492       and v2 networkstatus objects to buffers as needed rather than en
6493       masse. They also mmap the cached-routers files. These steps save
6494       lots of memory.
6495     - Stop requiring clients to have well-formed certificates, and stop
6496       checking nicknames in certificates. (Clients have certificates so
6497       that they can look like Tor servers, but in the future we might want
6498       to allow them to look like regular TLS clients instead. Nicknames
6499       in certificates serve no purpose other than making our protocol
6500       easier to recognize on the wire.) Implements proposal 106.
6502   o Improvements on DNS support:
6503     - Add "eventdns" asynchronous dns library originally based on code
6504       from Adam Langley. Now we can discard the old rickety dnsworker
6505       concept, and support a wider variety of DNS functions. Allows
6506       multithreaded builds on NetBSD and OpenBSD again.
6507     - Add server-side support for "reverse" DNS lookups (using PTR
6508       records so clients can determine the canonical hostname for a given
6509       IPv4 address). Only supported by servers using eventdns; servers
6510       now announce in their descriptors if they don't support eventdns.
6511     - Workaround for name servers (like Earthlink's) that hijack failing
6512       DNS requests and replace the no-such-server answer with a "helpful"
6513       redirect to an advertising-driven search portal. Also work around
6514       DNS hijackers who "helpfully" decline to hijack known-invalid
6515       RFC2606 addresses. Config option "ServerDNSDetectHijacking 0"
6516       lets you turn it off.
6517     - Servers now check for the case when common DNS requests are going to
6518       wildcarded addresses (i.e. all getting the same answer), and change
6519       their exit policy to reject *:* if it's happening.
6520     - When asked to resolve a hostname, don't use non-exit servers unless
6521       requested to do so. This allows servers with broken DNS to be
6522       useful to the network.
6523     - Start passing "ipv4" hints to getaddrinfo(), so servers don't do
6524       useless IPv6 DNS resolves.
6525     - Specify and implement client-side SOCKS5 interface for reverse DNS
6526       lookups (see doc/socks-extensions.txt). Also cache them.
6527     - When we change nameservers or IP addresses, reset and re-launch
6528       our tests for DNS hijacking.
6530   o Improvements on reachability testing:
6531     - Servers send out a burst of long-range padding cells once they've
6532       established that they're reachable. Spread them over 4 circuits,
6533       so hopefully a few will be fast. This exercises bandwidth and
6534       bootstraps them into the directory more quickly.
6535     - When we find our DirPort to be reachable, publish a new descriptor
6536       so we'll tell the world (reported by pnx).
6537     - Directory authorities now only decide that routers are reachable
6538       if their identity keys are as expected.
6539     - Do DirPort reachability tests less often, since a single test
6540       chews through many circuits before giving up.
6541     - Avoid some false positives during reachability testing: don't try
6542       to test via a server that's on the same /24 network as us.
6543     - Start publishing one minute or so after we find our ORPort
6544       to be reachable. This will help reduce the number of descriptors
6545       we have for ourselves floating around, since it's quite likely
6546       other things (e.g. DirPort) will change during that minute too.
6547     - Routers no longer try to rebuild long-term connections to directory
6548       authorities, and directory authorities no longer try to rebuild
6549       long-term connections to all servers. We still don't hang up
6550       connections in these two cases though -- we need to look at it
6551       more carefully to avoid flapping, and we likely need to wait til
6552       0.1.1.x is obsolete.
6554   o Improvements on rate limiting:
6555     - Enable write limiting as well as read limiting. Now we sacrifice
6556       capacity if we're pushing out lots of directory traffic, rather
6557       than overrunning the user's intended bandwidth limits.
6558     - Include TLS overhead when counting bandwidth usage; previously, we
6559       would count only the bytes sent over TLS, but not the bytes used
6560       to send them.
6561     - Servers decline directory requests much more aggressively when
6562       they're low on bandwidth. Otherwise they end up queueing more and
6563       more directory responses, which can't be good for latency.
6564     - But never refuse directory requests from local addresses.
6565     - Be willing to read or write on local connections (e.g. controller
6566       connections) even when the global rate limiting buckets are empty.
6567     - Flush local controller connection buffers periodically as we're
6568       writing to them, so we avoid queueing 4+ megabytes of data before
6569       trying to flush.
6570     - Revise and clean up the torrc.sample that we ship with; add
6571       a section for BandwidthRate and BandwidthBurst.
6573   o Major features, NT services:
6574     - Install as NT_AUTHORITY\LocalService rather than as SYSTEM; add a
6575       command-line flag so that admins can override the default by saying
6576       "tor --service install --user "SomeUser"". This will not affect
6577       existing installed services. Also, warn the user that the service
6578       will look for its configuration file in the service user's
6579       %appdata% directory. (We can't do the "hardwire the user's appdata
6580       directory" trick any more, since we may not have read access to that
6581       directory.)
6582     - Support running the Tor service with a torrc not in the same
6583       directory as tor.exe and default to using the torrc located in
6584       the %appdata%\Tor\ of the user who installed the service. Patch
6585       from Matt Edman.
6586     - Add an --ignore-missing-torrc command-line option so that we can
6587       get the "use sensible defaults if the configuration file doesn't
6588       exist" behavior even when specifying a torrc location on the
6589       command line.
6590     - When stopping an NT service, wait up to 10 sec for it to actually
6591       stop. (Patch from Matt Edman; resolves bug 295.)
6593   o Directory authority improvements:
6594     - Stop letting hibernating or obsolete servers affect uptime and
6595       bandwidth cutoffs.
6596     - Stop listing hibernating servers in the v1 directory.
6597     - Authorities no longer recommend exits as guards if this would shift
6598       too much load to the exit nodes.
6599     - Authorities now specify server versions in networkstatus. This adds
6600       about 2% to the size of compressed networkstatus docs, and allows
6601       clients to tell which servers support BEGIN_DIR and which don't.
6602       The implementation is forward-compatible with a proposed future
6603       protocol version scheme not tied to Tor versions.
6604     - DirServer configuration lines now have an orport= option so
6605       clients can open encrypted tunnels to the authorities without
6606       having downloaded their descriptors yet. Enabled for moria1,
6607       moria2, tor26, and lefkada now in the default configuration.
6608     - Add a BadDirectory flag to network status docs so that authorities
6609       can (eventually) tell clients about caches they believe to be
6610       broken. Not used yet.
6611     - Allow authorities to list nodes as bad exits in their
6612       approved-routers file by fingerprint or by address. If most
6613       authorities set a BadExit flag for a server, clients don't think
6614       of it as a general-purpose exit. Clients only consider authorities
6615       that advertise themselves as listing bad exits.
6616     - Patch from Steve Hildrey: Generate network status correctly on
6617       non-versioning dirservers.
6618     - Have directory authorities allow larger amounts of drift in uptime
6619       without replacing the server descriptor: previously, a server that
6620       restarted every 30 minutes could have 48 "interesting" descriptors
6621       per day.
6622     - Reserve the nickname "Unnamed" for routers that can't pick
6623       a hostname: any router can call itself Unnamed; directory
6624       authorities will never allocate Unnamed to any particular router;
6625       clients won't believe that any router is the canonical Unnamed.
6627   o Directory mirrors and clients:
6628     - Discard any v1 directory info that's over 1 month old (for
6629       directories) or over 1 week old (for running-routers lists).
6630     - Clients track responses with status 503 from dirservers. After a
6631       dirserver has given us a 503, we try not to use it until an hour has
6632       gone by, or until we have no dirservers that haven't given us a 503.
6633     - When we get a 503 from a directory, and we're not a server, we no
6634       longer count the failure against the total number of failures
6635       allowed for the object we're trying to download.
6636     - Prepare for servers to publish descriptors less often: never
6637       discard a descriptor simply for being too old until either it is
6638       recommended by no authorities, or until we get a better one for
6639       the same router. Make caches consider retaining old recommended
6640       routers for even longer.
6641     - Directory servers now provide 'Pragma: no-cache' and 'Expires'
6642       headers for content, so that we can work better in the presence of
6643       caching HTTP proxies.
6644     - Stop fetching descriptors if you're not a dir mirror and you
6645       haven't tried to establish any circuits lately. (This currently
6646       causes some dangerous behavior, because when you start up again
6647       you'll use your ancient server descriptors.)
6649   o Major fixes, crashes:
6650     - Stop crashing when the controller asks us to resetconf more than
6651       one config option at once. (Vidalia 0.0.11 does this.)
6652     - Fix a longstanding obscure crash bug that could occur when we run
6653       out of DNS worker processes, if we're not using eventdns. (Resolves
6654       bug 390.)
6655     - Fix an assert that could trigger if a controller quickly set then
6656       cleared EntryNodes. (Bug found by Udo van den Heuvel.)
6657     - Avoid crash when telling controller about stream-status and a
6658       stream is detached.
6659     - Avoid sending junk to controllers or segfaulting when a controller
6660       uses EVENT_NEW_DESC with verbose nicknames.
6661     - Stop triggering asserts if the controller tries to extend hidden
6662       service circuits (reported by mwenge).
6663     - If we start a server with ClientOnly 1, then set ClientOnly to 0
6664       and hup, stop triggering an assert based on an empty onion_key.
6665     - Mask out all signals in sub-threads; only the libevent signal
6666       handler should be processing them. This should prevent some crashes
6667       on some machines using pthreads. (Patch from coderman.)
6668     - Disable kqueue on OS X 10.3 and earlier, to fix bug 371.
6670   o Major fixes, anonymity/security:
6671     - Automatically avoid picking more than one node from the same
6672       /16 network when constructing a circuit. Add an
6673       "EnforceDistinctSubnets" option to let people disable it if they
6674       want to operate private test networks on a single subnet.
6675     - When generating bandwidth history, round down to the nearest
6676       1k. When storing accounting data, round up to the nearest 1k.
6677     - When we're running as a server, remember when we last rotated onion
6678       keys, so that we will rotate keys once they're a week old even if
6679       we never stay up for a week ourselves.
6680     - If a client asked for a server by name, and there's a named server
6681       in our network-status but we don't have its descriptor yet, we
6682       could return an unnamed server instead.
6683     - Reject (most) attempts to use Tor circuits with length one. (If
6684       many people start using Tor as a one-hop proxy, exit nodes become
6685       a more attractive target for compromise.)
6686     - Just because your DirPort is open doesn't mean people should be
6687       able to remotely teach you about hidden service descriptors. Now
6688       only accept rendezvous posts if you've got HSAuthoritativeDir set.
6689     - Fix a potential race condition in the rpm installer. Found by
6690       Stefan Nordhausen.
6691     - Do not log IPs with TLS failures for incoming TLS
6692       connections. (Fixes bug 382.)
6694   o Major fixes, other:
6695     - If our system clock jumps back in time, don't publish a negative
6696       uptime in the descriptor.
6697     - When we start during an accounting interval before it's time to wake
6698       up, remember to wake up at the correct time. (May fix bug 342.)
6699     - Previously, we would cache up to 16 old networkstatus documents
6700       indefinitely, if they came from nontrusted authorities. Now we
6701       discard them if they are more than 10 days old.
6702     - When we have a state file we cannot parse, tell the user and
6703       move it aside. Now we avoid situations where the user starts
6704       Tor in 1904, Tor writes a state file with that timestamp in it,
6705       the user fixes her clock, and Tor refuses to start.
6706     - Publish a new descriptor after we hup/reload. This is important
6707       if our config has changed such that we'll want to start advertising
6708       our DirPort now, etc.
6709     - If we are using an exit enclave and we can't connect, e.g. because
6710       its webserver is misconfigured to not listen on localhost, then
6711       back off and try connecting from somewhere else before we fail.
6713   o New config options or behaviors:
6714     - When EntryNodes are configured, rebuild the guard list to contain,
6715       in order: the EntryNodes that were guards before; the rest of the
6716       EntryNodes; the nodes that were guards before.
6717     - Do not warn when individual nodes in the configuration's EntryNodes,
6718       ExitNodes, etc are down: warn only when all possible nodes
6719       are down. (Fixes bug 348.)
6720     - Put a lower-bound on MaxAdvertisedBandwidth.
6721     - Start using the state file to store bandwidth accounting data:
6722       the bw_accounting file is now obsolete. We'll keep generating it
6723       for a while for people who are still using 0.1.2.4-alpha.
6724     - Try to batch changes to the state file so that we do as few
6725       disk writes as possible while still storing important things in
6726       a timely fashion.
6727     - The state file and the bw_accounting file get saved less often when
6728       the AvoidDiskWrites config option is set.
6729     - Make PIDFile work on Windows.
6730     - Add internal descriptions for a bunch of configuration options:
6731       accessible via controller interface and in comments in saved
6732       options files.
6733     - Reject *:563 (NNTPS) in the default exit policy. We already reject
6734       NNTP by default, so this seems like a sensible addition.
6735     - Clients now reject hostnames with invalid characters. This should
6736       avoid some inadvertent info leaks. Add an option
6737       AllowNonRFC953Hostnames to disable this behavior, in case somebody
6738       is running a private network with hosts called @, !, and #.
6739     - Check for addresses with invalid characters at the exit as well,
6740       and warn less verbosely when they fail. You can override this by
6741       setting ServerDNSAllowNonRFC953Addresses to 1.
6742     - Remove some options that have been deprecated since at least
6743       0.1.0.x: AccountingMaxKB, LogFile, DebugLogFile, LogLevel, and
6744       SysLog. Use AccountingMax instead of AccountingMaxKB, and use Log
6745       to set log options. Mark PathlenCoinWeight as obsolete.
6746     - Stop accepting certain malformed ports in configured exit policies.
6747     - When the user uses bad syntax in the Log config line, stop
6748       suggesting other bad syntax as a replacement.
6749     - Add new config option "ResolvConf" to let the server operator
6750       choose an alternate resolve.conf file when using eventdns.
6751     - If one of our entry guards is on the ExcludeNodes list, or the
6752       directory authorities don't think it's a good guard, treat it as
6753       if it were unlisted: stop using it as a guard, and throw it off
6754       the guards list if it stays that way for a long time.
6755     - Allow directory authorities to be marked separately as authorities
6756       for the v1 directory protocol, the v2 directory protocol, and
6757       as hidden service directories, to make it easier to retire old
6758       authorities. V1 authorities should set "HSAuthoritativeDir 1"
6759       to continue being hidden service authorities too.
6760     - Remove 8888 as a LongLivedPort, and add 6697 (IRCS).
6761     - Make TrackExitHosts case-insensitive, and fix the behavior of
6762       ".suffix" TrackExitHosts items to avoid matching in the middle of
6763       an address.
6764     - New DirPort behavior: if you have your dirport set, you download
6765       descriptors aggressively like a directory mirror, whether or not
6766       your ORPort is set.
6768   o Docs:
6769     - Create a new file ReleaseNotes which was the old ChangeLog. The
6770       new ChangeLog file now includes the notes for all development
6771       versions too.
6772     - Add a new address-spec.txt document to describe our special-case
6773       addresses: .exit, .onion, and .noconnnect.
6774     - Fork the v1 directory protocol into its own spec document,
6775       and mark dir-spec.txt as the currently correct (v2) spec.
6777   o Packaging, porting, and contrib
6778     - "tor --verify-config" now exits with -1(255) or 0 depending on
6779       whether the config options are bad or good.
6780     - The Debian package now uses --verify-config when (re)starting,
6781       to distinguish configuration errors from other errors.
6782     - Adapt a patch from goodell to let the contrib/exitlist script
6783       take arguments rather than require direct editing.
6784     - Prevent the contrib/exitlist script from printing the same
6785       result more than once.
6786     - Add support to tor-resolve tool for reverse lookups and SOCKS5.
6787     - In the hidden service example in torrc.sample, stop recommending
6788       esoteric and discouraged hidden service options.
6789     - Patch from Michael Mohr to contrib/cross.sh, so it checks more
6790       values before failing, and always enables eventdns.
6791     - Try to detect Windows correctly when cross-compiling.
6792     - Libevent-1.2 exports, but does not define in its headers, strlcpy.
6793       Try to fix this in configure.in by checking for most functions
6794       before we check for libevent.
6795     - Update RPMs to require libevent 1.2.
6796     - Experimentally re-enable kqueue on OSX when using libevent 1.1b
6797       or later. Log when we are doing this, so we can diagnose it when
6798       it fails. (Also, recommend libevent 1.1b for kqueue and
6799       win32 methods; deprecate libevent 1.0b harder; make libevent
6800       recommendation system saner.)
6801     - Build with recent (1.3+) libevents on platforms that do not
6802       define the nonstandard types "u_int8_t" and friends.
6803     - Remove architecture from OS X builds. The official builds are
6804       now universal binaries.
6805     - Run correctly on OS X platforms with case-sensitive filesystems.
6806     - Correctly set maximum connection limit on Cygwin. (This time
6807       for sure!)
6808     - Start compiling on MinGW on Windows (patches from Mike Chiussi
6809       and many others).
6810     - Start compiling on MSVC6 on Windows (patches from Frediano Ziglio).
6811     - Finally fix the openssl warnings from newer gccs that believe that
6812       ignoring a return value is okay, but casting a return value and
6813       then ignoring it is a sign of madness.
6814     - On architectures where sizeof(int)>4, still clamp declarable
6815       bandwidth to INT32_MAX.
6817   o Minor features, controller:
6818     - Warn the user when an application uses the obsolete binary v0
6819       control protocol. We're planning to remove support for it during
6820       the next development series, so it's good to give people some
6821       advance warning.
6822     - Add STREAM_BW events to report per-entry-stream bandwidth
6823       use. (Patch from Robert Hogan.)
6824     - Rate-limit SIGNEWNYM signals in response to controllers that
6825       impolitely generate them for every single stream. (Patch from
6826       mwenge; closes bug 394.)
6827     - Add a REMAP status to stream events to note that a stream's
6828       address has changed because of a cached address or a MapAddress
6829       directive.
6830     - Make REMAP stream events have a SOURCE (cache or exit), and
6831       make them generated in every case where we get a successful
6832       connected or resolved cell.
6833     - Track reasons for OR connection failure; make these reasons
6834       available via the controller interface. (Patch from Mike Perry.)
6835     - Add a SOCKS_BAD_HOSTNAME client status event so controllers
6836       can learn when clients are sending malformed hostnames to Tor.
6837     - Specify and implement some of the controller status events.
6838     - Have GETINFO dir/status/* work on hosts with DirPort disabled.
6839     - Reimplement GETINFO so that info/names stays in sync with the
6840       actual keys.
6841     - Implement "GETINFO fingerprint".
6842     - Implement "SETEVENTS GUARD" so controllers can get updates on
6843       entry guard status as it changes.
6844     - Make all connections to addresses of the form ".noconnect"
6845       immediately get closed. This lets application/controller combos
6846       successfully test whether they're talking to the same Tor by
6847       watching for STREAM events.
6848     - Add a REASON field to CIRC events; for backward compatibility, this
6849       field is sent only to controllers that have enabled the extended
6850       event format. Also, add additional reason codes to explain why
6851       a given circuit has been destroyed or truncated. (Patches from
6852       Mike Perry)
6853     - Add a REMOTE_REASON field to extended CIRC events to tell the
6854       controller why a remote OR told us to close a circuit.
6855     - Stream events also now have REASON and REMOTE_REASON fields,
6856       working much like those for circuit events.
6857     - There's now a GETINFO ns/... field so that controllers can ask Tor
6858       about the current status of a router.
6859     - A new event type "NS" to inform a controller when our opinion of
6860       a router's status has changed.
6861     - Add a GETINFO events/names and GETINFO features/names so controllers
6862       can tell which events and features are supported.
6863     - A new CLEARDNSCACHE signal to allow controllers to clear the
6864       client-side DNS cache without expiring circuits.
6865     - Fix CIRC controller events so that controllers can learn the
6866       identity digests of non-Named servers used in circuit paths.
6867     - Let controllers ask for more useful identifiers for servers. Instead
6868       of learning identity digests for un-Named servers and nicknames
6869       for Named servers, the new identifiers include digest, nickname,
6870       and indication of Named status. Off by default; see control-spec.txt
6871       for more information.
6872     - Add a "getinfo address" controller command so it can display Tor's
6873       best guess to the user.
6874     - New controller event to alert the controller when our server
6875       descriptor has changed.
6876     - Give more meaningful errors on controller authentication failure.
6877     - Export the default exit policy via the control port, so controllers
6878       don't need to guess what it is / will be later.
6880   o Minor bugfixes, controller:
6881     - When creating a circuit via the controller, send a 'launched'
6882       event when we're done, so we follow the spec better.
6883     - Correct the control spec to match how the code actually responds
6884       to 'getinfo addr-mappings/*'. Reported by daejees.
6885     - The control spec described a GUARDS event, but the code
6886       implemented a GUARD event. Standardize on GUARD, but let people
6887       ask for GUARDS too. Reported by daejees.
6888     - Give the controller END_STREAM_REASON_DESTROY events _before_ we
6889       clear the corresponding on_circuit variable, and remember later
6890       that we don't need to send a redundant CLOSED event. (Resolves part
6891       3 of bug 367.)
6892     - Report events where a resolve succeeded or where we got a socks
6893       protocol error correctly, rather than calling both of them
6894       "INTERNAL".
6895     - Change reported stream target addresses to IP consistently when
6896       we finally get the IP from an exit node.
6897     - Send log messages to the controller even if they happen to be very
6898       long.
6899     - Flush ERR-level controller status events just like we currently
6900       flush ERR-level log events, so that a Tor shutdown doesn't prevent
6901       the controller from learning about current events.
6902     - Report the circuit number correctly in STREAM CLOSED events. Bug
6903       reported by Mike Perry.
6904     - Do not report bizarre values for results of accounting GETINFOs
6905       when the last second's write or read exceeds the allotted bandwidth.
6906     - Report "unrecognized key" rather than an empty string when the
6907       controller tries to fetch a networkstatus that doesn't exist.
6908     - When the controller does a "GETINFO network-status", tell it
6909       about even those routers whose descriptors are very old, and use
6910       long nicknames where appropriate.
6911     - Fix handling of verbose nicknames with ORCONN controller events:
6912       make them show up exactly when requested, rather than exactly when
6913       not requested.
6914     - Controller signals now work on non-Unix platforms that don't define
6915       SIGUSR1 and SIGUSR2 the way we expect.
6916     - Respond to SIGNAL command before we execute the signal, in case
6917       the signal shuts us down. Suggested by Karsten Loesing.
6918     - Handle reporting OR_CONN_EVENT_NEW events to the controller.
6920   o Minor features, code performance:
6921     - Major performance improvement on inserting descriptors: change
6922       algorithm from O(n^2) to O(n).
6923     - Do not rotate onion key immediately after setting it for the first
6924       time.
6925     - Call router_have_min_dir_info half as often. (This is showing up in
6926       some profiles, but not others.)
6927     - When using GCC, make log_debug never get called at all, and its
6928       arguments never get evaluated, when no debug logs are configured.
6929       (This is showing up in some profiles, but not others.)
6930     - Statistics dumped by -USR2 now include a breakdown of public key
6931       operations, for profiling.
6932     - Make the common memory allocation path faster on machines where
6933       malloc(0) returns a pointer.
6934     - Split circuit_t into origin_circuit_t and or_circuit_t, and
6935       split connection_t into edge, or, dir, control, and base structs.
6936       These will save quite a bit of memory on busy servers, and they'll
6937       also help us track down bugs in the code and bugs in the spec.
6938     - Use OpenSSL's AES implementation on platforms where it's faster.
6939       This could save us as much as 10% CPU usage.
6941   o Minor features, descriptors and descriptor handling:
6942     - Avoid duplicate entries on MyFamily line in server descriptor.
6943     - When Tor receives a router descriptor that it asked for, but
6944       no longer wants (because it has received fresh networkstatuses
6945       in the meantime), do not warn the user. Cache the descriptor if
6946       we're a cache; drop it if we aren't.
6947     - Servers no longer ever list themselves in their "family" line,
6948       even if configured to do so. This makes it easier to configure
6949       family lists conveniently.
6951   o Minor fixes, confusing/misleading log messages:
6952     - Display correct results when reporting which versions are
6953       recommended, and how recommended they are. (Resolves bug 383.)
6954     - Inform the server operator when we decide not to advertise a
6955       DirPort due to AccountingMax enabled or a low BandwidthRate.
6956     - Only include function names in log messages for info/debug messages.
6957       For notice/warn/err, the content of the message should be clear on
6958       its own, and printing the function name only confuses users.
6959     - Remove even more protocol-related warnings from Tor server logs,
6960       such as bad TLS handshakes and malformed begin cells.
6961     - Fix bug 314: Tor clients issued "unsafe socks" warnings even
6962       when the IP address is mapped through MapAddress to a hostname.
6963     - Fix misleading log messages: an entry guard that is "unlisted",
6964       as well as not known to be "down" (because we've never heard
6965       of it), is not therefore "up".
6967   o Minor fixes, old/obsolete behavior:
6968     - Start assuming we can use a create_fast cell if we don't know
6969       what version a router is running.
6970     - We no longer look for identity and onion keys in "identity.key" and
6971       "onion.key" -- these were replaced by secret_id_key and
6972       secret_onion_key in 0.0.8pre1.
6973     - We no longer require unrecognized directory entries to be
6974       preceded by "opt".
6975     - Drop compatibility with obsolete Tors that permit create cells
6976       to have the wrong circ_id_type.
6977     - Remove code to special-case "-cvs" ending, since it has not
6978       actually mattered since 0.0.9.
6979     - Don't re-write the fingerprint file every restart, unless it has
6980       changed.
6982   o Minor fixes, misc client-side behavior:
6983     - Always remove expired routers and networkstatus docs before checking
6984       whether we have enough information to build circuits. (Fixes
6985       bug 373.)
6986     - When computing clock skew from directory HTTP headers, consider what
6987       time it was when we finished asking for the directory, not what
6988       time it is now.
6989     - Make our socks5 handling more robust to broken socks clients:
6990       throw out everything waiting on the buffer in between socks
6991       handshake phases, since they can't possibly (so the theory
6992       goes) have predicted what we plan to respond to them.
6993     - Expire socks connections if they spend too long waiting for the
6994       handshake to finish. Previously we would let them sit around for
6995       days, if the connecting application didn't close them either.
6996     - And if the socks handshake hasn't started, don't send a
6997       "DNS resolve socks failed" handshake reply; just close it.
6998     - If the user asks to use invalid exit nodes, be willing to use
6999       unstable ones.
7000     - Track unreachable entry guards correctly: don't conflate
7001       'unreachable by us right now' with 'listed as down by the directory
7002       authorities'. With the old code, if a guard was unreachable by us
7003       but listed as running, it would clog our guard list forever.
7004     - Behave correctly in case we ever have a network with more than
7005       2GB/s total advertised capacity.
7006     - Claim a commonname of Tor, rather than TOR, in TLS handshakes.
7007     - Fix a memory leak when we ask for "all" networkstatuses and we
7008       get one we don't recognize.
7011 Changes in version 0.1.1.26 - 2006-12-14
7012   o Security bugfixes:
7013     - Stop sending the HttpProxyAuthenticator string to directory
7014       servers when directory connections are tunnelled through Tor.
7015     - Clients no longer store bandwidth history in the state file.
7016     - Do not log introduction points for hidden services if SafeLogging
7017       is set.
7019   o Minor bugfixes:
7020     - Fix an assert failure when a directory authority sets
7021       AuthDirRejectUnlisted and then receives a descriptor from an
7022       unlisted router (reported by seeess).
7025 Changes in version 0.1.1.25 - 2006-11-04
7026   o Major bugfixes:
7027     - When a client asks us to resolve (rather than connect to)
7028       an address, and we have a cached answer, give them the cached
7029       answer. Previously, we would give them no answer at all.
7030     - We were building exactly the wrong circuits when we predict
7031       hidden service requirements, meaning Tor would have to build all
7032       its circuits on demand.
7033     - If none of our live entry guards have a high uptime, but we
7034       require a guard with a high uptime, try adding a new guard before
7035       we give up on the requirement. This patch should make long-lived
7036       connections more stable on average.
7037     - When testing reachability of our DirPort, don't launch new
7038       tests when there's already one in progress -- unreachable
7039       servers were stacking up dozens of testing streams.
7041   o Security bugfixes:
7042     - When the user sends a NEWNYM signal, clear the client-side DNS
7043       cache too. Otherwise we continue to act on previous information.
7045   o Minor bugfixes:
7046     - Avoid a memory corruption bug when creating a hash table for
7047       the first time.
7048     - Avoid possibility of controller-triggered crash when misusing
7049       certain commands from a v0 controller on platforms that do not
7050       handle printf("%s",NULL) gracefully.
7051     - Avoid infinite loop on unexpected controller input.
7052     - Don't log spurious warnings when we see a circuit close reason we
7053       don't recognize; it's probably just from a newer version of Tor.
7054     - Add Vidalia to the OS X uninstaller script, so when we uninstall
7055       Tor/Privoxy we also uninstall Vidalia.
7058 Changes in version 0.1.1.24 - 2006-09-29
7059   o Major bugfixes:
7060     - Allow really slow clients to not hang up five minutes into their
7061       directory downloads (suggested by Adam J. Richter).
7062     - Fix major performance regression from 0.1.0.x: instead of checking
7063       whether we have enough directory information every time we want to
7064       do something, only check when the directory information has changed.
7065       This should improve client CPU usage by 25-50%.
7066     - Don't crash if, after a server has been running for a while,
7067       it can't resolve its hostname.
7068     - When a client asks us to resolve (not connect to) an address,
7069       and we have a cached answer, give them the cached answer.
7070       Previously, we would give them no answer at all.
7072   o Minor bugfixes:
7073     - Allow Tor to start when RunAsDaemon is set but no logs are set.
7074     - Don't crash when the controller receives a third argument to an
7075       "extendcircuit" request.
7076     - Controller protocol fixes: fix encoding in "getinfo addr-mappings"
7077       response; fix error code when "getinfo dir/status/" fails.
7078     - Fix configure.in to not produce broken configure files with
7079       more recent versions of autoconf. Thanks to Clint for his auto*
7080       voodoo.
7081     - Fix security bug on NetBSD that could allow someone to force
7082       uninitialized RAM to be sent to a server's DNS resolver. This
7083       only affects NetBSD and other platforms that do not bounds-check
7084       tolower().
7085     - Warn user when using libevent 1.1a or earlier with win32 or kqueue
7086       methods: these are known to be buggy.
7087     - If we're a directory mirror and we ask for "all" network status
7088       documents, we would discard status documents from authorities
7089       we don't recognize.
7092 Changes in version 0.1.1.23 - 2006-07-30
7093   o Major bugfixes:
7094     - Fast Tor servers, especially exit nodes, were triggering asserts
7095       due to a bug in handling the list of pending DNS resolves. Some
7096       bugs still remain here; we're hunting them.
7097     - Entry guards could crash clients by sending unexpected input.
7098     - More fixes on reachability testing: if you find yourself reachable,
7099       then don't ever make any client requests (so you stop predicting
7100       circuits), then hup or have your clock jump, then later your IP
7101       changes, you won't think circuits are working, so you won't try to
7102       test reachability, so you won't publish.
7104   o Minor bugfixes:
7105     - Avoid a crash if the controller does a resetconf firewallports
7106       and then a setconf fascistfirewall=1.
7107     - Avoid an integer underflow when the dir authority decides whether
7108       a router is stable: we might wrongly label it stable, and compute
7109       a slightly wrong median stability, when a descriptor is published
7110       later than now.
7111     - Fix a place where we might trigger an assert if we can't build our
7112       own server descriptor yet.
7115 Changes in version 0.1.1.22 - 2006-07-05
7116   o Major bugfixes:
7117     - Fix a big bug that was causing servers to not find themselves
7118       reachable if they changed IP addresses. Since only 0.1.1.22+
7119       servers can do reachability testing correctly, now we automatically
7120       make sure to test via one of these.
7121     - Fix to allow clients and mirrors to learn directory info from
7122       descriptor downloads that get cut off partway through.
7123     - Directory authorities had a bug in deciding if a newly published
7124       descriptor was novel enough to make everybody want a copy -- a few
7125       servers seem to be publishing new descriptors many times a minute.
7126   o Minor bugfixes:
7127     - Fix a rare bug that was causing some servers to complain about
7128       "closing wedged cpuworkers" and skip some circuit create requests.
7129     - Make the Exit flag in directory status documents actually work.
7132 Changes in version 0.1.1.21 - 2006-06-10
7133   o Crash and assert fixes from 0.1.1.20:
7134     - Fix a rare crash on Tor servers that have enabled hibernation.
7135     - Fix a seg fault on startup for Tor networks that use only one
7136       directory authority.
7137     - Fix an assert from a race condition that occurs on Tor servers
7138       while exiting, where various threads are trying to log that they're
7139       exiting, and delete the logs, at the same time.
7140     - Make our unit tests pass again on certain obscure platforms.
7142   o Other fixes:
7143     - Add support for building SUSE RPM packages.
7144     - Speed up initial bootstrapping for clients: if we are making our
7145       first ever connection to any entry guard, then don't mark it down
7146       right after that.
7147     - When only one Tor server in the network is labelled as a guard,
7148       and we've already picked him, we would cycle endlessly picking him
7149       again, being unhappy about it, etc. Now we specifically exclude
7150       current guards when picking a new guard.
7151     - Servers send create cells more reliably after the TLS connection
7152       is established: we were sometimes forgetting to send half of them
7153       when we had more than one pending.
7154     - If we get a create cell that asks us to extend somewhere, but the
7155       Tor server there doesn't match the expected digest, we now send
7156       a destroy cell back, rather than silently doing nothing.
7157     - Make options->RedirectExit work again.
7158     - Make cookie authentication for the controller work again.
7159     - Stop being picky about unusual characters in the arguments to
7160       mapaddress. It's none of our business.
7161     - Add a new config option "TestVia" that lets you specify preferred
7162       middle hops to use for test circuits. Perhaps this will let me
7163       debug the reachability problems better.
7165   o Log / documentation fixes:
7166     - If we're a server and some peer has a broken TLS certificate, don't
7167       log about it unless ProtocolWarnings is set, i.e., we want to hear
7168       about protocol violations by others.
7169     - Fix spelling of VirtualAddrNetwork in man page.
7170     - Add a better explanation at the top of the autogenerated torrc file
7171       about what happened to our old torrc.
7174 Changes in version 0.1.1.20 - 2006-05-23
7175   o Crash and assert fixes from 0.1.0.17:
7176     - Fix assert bug in close_logs() on exit: when we close and delete
7177       logs, remove them all from the global "logfiles" list.
7178     - Fix an assert error when we're out of space in the connection_list
7179       and we try to post a hidden service descriptor (reported by Peter
7180       Palfrader).
7181     - Fix a rare assert error when we've tried all intro points for
7182       a hidden service and we try fetching the service descriptor again:
7183       "Assertion conn->state != AP_CONN_STATE_RENDDESC_WAIT failed".
7184     - Setconf SocksListenAddress kills Tor if it fails to bind. Now back
7185       out and refuse the setconf if it would fail.
7186     - If you specify a relative torrc path and you set RunAsDaemon in
7187       your torrc, then it chdir()'s to the new directory. If you then
7188       HUP, it tries to load the new torrc location, fails, and exits.
7189       The fix: no longer allow a relative path to torrc when using -f.
7190     - Check for integer overflows in more places, when adding elements
7191       to smartlists. This could possibly prevent a buffer overflow
7192       on malicious huge inputs.
7194   o Security fixes, major:
7195     - When we're printing strings from the network, don't try to print
7196       non-printable characters. Now we're safer against shell escape
7197       sequence exploits, and also against attacks to fool users into
7198       misreading their logs.
7199     - Implement entry guards: automatically choose a handful of entry
7200       nodes and stick with them for all circuits. Only pick new guards
7201       when the ones you have are unsuitable, and if the old guards
7202       become suitable again, switch back. This will increase security
7203       dramatically against certain end-point attacks. The EntryNodes
7204       config option now provides some hints about which entry guards you
7205       want to use most; and StrictEntryNodes means to only use those.
7206       Fixes CVE-2006-0414.
7207     - Implement exit enclaves: if we know an IP address for the
7208       destination, and there's a running Tor server at that address
7209       which allows exit to the destination, then extend the circuit to
7210       that exit first. This provides end-to-end encryption and end-to-end
7211       authentication. Also, if the user wants a .exit address or enclave,
7212       use 4 hops rather than 3, and cannibalize a general circ for it
7213       if you can.
7214     - Obey our firewall options more faithfully:
7215       . If we can't get to a dirserver directly, try going via Tor.
7216       . Don't ever try to connect (as a client) to a place our
7217         firewall options forbid.
7218       . If we specify a proxy and also firewall options, obey the
7219         firewall options even when we're using the proxy: some proxies
7220         can only proxy to certain destinations.
7221     - Make clients regenerate their keys when their IP address changes.
7222     - For the OS X package's modified privoxy config file, comment
7223       out the "logfile" line so we don't log everything passed
7224       through privoxy.
7225     - Our TLS handshakes were generating a single public/private
7226       keypair for the TLS context, rather than making a new one for
7227       each new connection. Oops. (But we were still rotating them
7228       periodically, so it's not so bad.)
7229     - When we were cannibalizing a circuit with a particular exit
7230       node in mind, we weren't checking to see if that exit node was
7231       already present earlier in the circuit. Now we are.
7232     - Require server descriptors to list IPv4 addresses -- hostnames
7233       are no longer allowed. This also fixes potential vulnerabilities
7234       to servers providing hostnames as their address and then
7235       preferentially resolving them so they can partition users.
7236     - Our logic to decide if the OR we connected to was the right guy
7237       was brittle and maybe open to a mitm for invalid routers.
7239   o Security fixes, minor:
7240     - Adjust tor-spec.txt to parameterize cell and key lengths. Now
7241       Ian Goldberg can prove things about our handshake protocol more
7242       easily.
7243     - Make directory authorities generate a separate "guard" flag to
7244       mean "would make a good entry guard". Clients now honor the
7245       is_guard flag rather than looking at is_fast or is_stable.
7246     - Try to list MyFamily elements by key, not by nickname, and warn
7247       if we've not heard of a server.
7248     - Start using RAND_bytes rather than RAND_pseudo_bytes from
7249       OpenSSL. Also, reseed our entropy every hour, not just at
7250       startup. And add entropy in 512-bit chunks, not 160-bit chunks.
7251     - Refuse server descriptors where the fingerprint line doesn't match
7252       the included identity key. Tor doesn't care, but other apps (and
7253       humans) might actually be trusting the fingerprint line.
7254     - We used to kill the circuit when we receive a relay command we
7255       don't recognize. Now we just drop that cell.
7256     - Fix a bug found by Lasse Overlier: when we were making internal
7257       circuits (intended to be cannibalized later for rendezvous and
7258       introduction circuits), we were picking them so that they had
7259       useful exit nodes. There was no need for this, and it actually
7260       aids some statistical attacks.
7261     - Start treating internal circuits and exit circuits separately.
7262       It's important to keep them separate because internal circuits
7263       have their last hops picked like middle hops, rather than like
7264       exit hops. So exiting on them will break the user's expectations.
7265     - Fix a possible way to DoS dirservers.
7266     - When the client asked for a rendezvous port that the hidden
7267       service didn't want to provide, we were sending an IP address
7268       back along with the end cell. Fortunately, it was zero. But stop
7269       that anyway.
7271   o Packaging improvements:
7272     - Implement --with-libevent-dir option to ./configure. Improve
7273       search techniques to find libevent, and use those for openssl too.
7274     - Fix a couple of bugs in OpenSSL detection. Deal better when
7275       there are multiple SSLs installed with different versions.
7276     - Avoid warnings about machine/limits.h on Debian GNU/kFreeBSD.
7277     - On non-gcc compilers (e.g. Solaris's cc), use "-g -O" instead of
7278       "-Wall -g -O2".
7279     - Make unit tests (and other invocations that aren't the real Tor)
7280       run without launching listeners, creating subdirectories, and so on.
7281     - The OS X installer was adding a symlink for tor_resolve but
7282       the binary was called tor-resolve (reported by Thomas Hardly).
7283     - Now we can target arch and OS in rpm builds (contributed by
7284       Phobos). Also make the resulting dist-rpm filename match the
7285       target arch.
7286     - Apply Matt Ghali's --with-syslog-facility patch to ./configure
7287       if you log to syslog and want something other than LOG_DAEMON.
7288     - Fix the torify (tsocks) config file to not use Tor for localhost
7289       connections.
7290     - Start shipping socks-extensions.txt, tor-doc-unix.html,
7291       tor-doc-server.html, and stylesheet.css in the tarball.
7292     - Stop shipping tor-doc.html, INSTALL, and README in the tarball.
7293       They are useless now.
7294     - Add Peter Palfrader's contributed check-tor script. It lets you
7295       easily check whether a given server (referenced by nickname)
7296       is reachable by you.
7297     - Add BSD-style contributed startup script "rc.subr" from Peter
7298       Thoenen.
7300   o Directory improvements -- new directory protocol:
7301     - See tor/doc/dir-spec.txt for all the juicy details. Key points:
7302     - Authorities and caches publish individual descriptors (by
7303       digest, by fingerprint, by "all", and by "tell me yours").
7304     - Clients don't download or use the old directory anymore. Now they
7305       download network-statuses from the directory authorities, and
7306       fetch individual server descriptors as needed from mirrors.
7307     - Clients don't download descriptors of non-running servers.
7308     - Download descriptors by digest, not by fingerprint. Caches try to
7309       download all listed digests from authorities; clients try to
7310       download "best" digests from caches. This avoids partitioning
7311       and isolating attacks better.
7312     - Only upload a new server descriptor when options change, 18
7313       hours have passed, uptime is reset, or bandwidth changes a lot.
7314     - Directory authorities silently throw away new descriptors that
7315       haven't changed much if the timestamps are similar. We do this to
7316       tolerate older Tor servers that upload a new descriptor every 15
7317       minutes. (It seemed like a good idea at the time.)
7318     - Clients choose directory servers from the network status lists,
7319       not from their internal list of router descriptors. Now they can
7320       go to caches directly rather than needing to go to authorities
7321       to bootstrap the first set of descriptors.
7322     - When picking a random directory, prefer non-authorities if any
7323       are known.
7324     - Add a new flag to network-status indicating whether the server
7325       can answer v2 directory requests too.
7326     - Directory mirrors now cache up to 16 unrecognized network-status
7327       docs, so new directory authorities will be cached too.
7328     - Stop parsing, storing, or using running-routers output (but
7329       mirrors still cache and serve it).
7330     - Clients consider a threshold of "versioning" directory authorities
7331       before deciding whether to warn the user that he's obsolete.
7332     - Authorities publish separate sorted lists of recommended versions
7333       for clients and for servers.
7334     - Change DirServers config line to note which dirs are v1 authorities.
7335     - Put nicknames on the DirServer line, so we can refer to them
7336       without requiring all our users to memorize their IP addresses.
7337     - Remove option when getting directory cache to see whether they
7338       support running-routers; they all do now. Replace it with one
7339       to see whether caches support v2 stuff.
7340     - Stop listing down or invalid nodes in the v1 directory. This
7341       reduces its bulk by about 1/3, and reduces load on mirrors.
7342     - Mirrors no longer cache the v1 directory as often.
7343     - If we as a directory mirror don't know of any v1 directory
7344       authorities, then don't try to cache any v1 directories.
7346   o Other directory improvements:
7347     - Add lefkada.eecs.harvard.edu and tor.dizum.com as fourth and
7348       fifth authoritative directory servers.
7349     - Directory authorities no longer require an open connection from
7350       a server to consider him "reachable". We need this change because
7351       when we add new directory authorities, old servers won't know not
7352       to hang up on them.
7353     - Dir authorities now do their own external reachability testing
7354       of each server, and only list as running the ones they found to
7355       be reachable. We also send back warnings to the server's logs if
7356       it uploads a descriptor that we already believe is unreachable.
7357     - Spread the directory authorities' reachability testing over the
7358       entire testing interval, so we don't try to do 500 TLS's at once
7359       every 20 minutes.
7360     - Make the "stable" router flag in network-status be the median of
7361       the uptimes of running valid servers, and make clients pay
7362       attention to the network-status flags. Thus the cutoff adapts
7363       to the stability of the network as a whole, making IRC, IM, etc
7364       connections more reliable.
7365     - Make the v2 dir's "Fast" flag based on relative capacity, just
7366       like "Stable" is based on median uptime. Name everything in the
7367       top 7/8 Fast, and only the top 1/2 gets to be a Guard.
7368     - Retry directory requests if we fail to get an answer we like
7369       from a given dirserver (we were retrying before, but only if
7370       we fail to connect).
7371     - Return a robots.txt on our dirport to discourage google indexing.
7373   o Controller protocol improvements:
7374     - Revised controller protocol (version 1) that uses ascii rather
7375       than binary: tor/doc/control-spec.txt. Add supporting libraries
7376       in python and java and c# so you can use the controller from your
7377       applications without caring how our protocol works.
7378     - Allow the DEBUG controller event to work again. Mark certain log
7379       entries as "don't tell this to controllers", so we avoid cycles.
7380     - New controller function "getinfo accounting", to ask how
7381       many bytes we've used in this time period.
7382     - Add a "resetconf" command so you can set config options like
7383       AllowUnverifiedNodes and LongLivedPorts to "". Also, if you give
7384       a config option in the torrc with no value, then it clears it
7385       entirely (rather than setting it to its default).
7386     - Add a "getinfo config-file" to tell us where torrc is. Also
7387       expose guard nodes, config options/names.
7388     - Add a "quit" command (when when using the controller manually).
7389     - Add a new signal "newnym" to "change pseudonyms" -- that is, to
7390       stop using any currently-dirty circuits for new streams, so we
7391       don't link new actions to old actions. This also occurs on HUP
7392       or "signal reload".
7393     - If we would close a stream early (e.g. it asks for a .exit that
7394       we know would refuse it) but the LeaveStreamsUnattached config
7395       option is set by the controller, then don't close it.
7396     - Add a new controller event type "authdir_newdescs" that allows
7397       controllers to get all server descriptors that were uploaded to
7398       a router in its role as directory authority.
7399     - New controller option "getinfo desc/all-recent" to fetch the
7400       latest server descriptor for every router that Tor knows about.
7401     - Fix the controller's "attachstream 0" command to treat conn like
7402       it just connected, doing address remapping, handling .exit and
7403       .onion idioms, and so on. Now we're more uniform in making sure
7404       that the controller hears about new and closing connections.
7405     - Permit transitioning from ORPort==0 to ORPort!=0, and back, from
7406       the controller. Also, rotate dns and cpu workers if the controller
7407       changes options that will affect them; and initialize the dns
7408       worker cache tree whether or not we start out as a server.
7409     - Add a new circuit purpose 'controller' to let the controller ask
7410       for a circuit that Tor won't try to use. Extend the "extendcircuit"
7411       controller command to let you specify the purpose if you're starting
7412       a new circuit.  Add a new "setcircuitpurpose" controller command to
7413       let you change a circuit's purpose after it's been created.
7414     - Let the controller ask for "getinfo dir/server/foo" so it can ask
7415       directly rather than connecting to the dir port. "getinfo
7416       dir/status/foo" also works, but currently only if your DirPort
7417       is enabled.
7418     - Let the controller tell us about certain router descriptors
7419       that it doesn't want Tor to use in circuits. Implement
7420       "setrouterpurpose" and modify "+postdescriptor" to do this.
7421     - If the controller's *setconf commands fail, collect an error
7422       message in a string and hand it back to the controller -- don't
7423       just tell them to go read their logs.
7425   o Scalability, resource management, and performance:
7426     - Fix a major load balance bug: we were round-robin reading in 16 KB
7427       chunks, and servers with bandwidthrate of 20 KB, while downloading
7428       a 600 KB directory, would starve their other connections. Now we
7429       try to be a bit more fair.
7430     - Be more conservative about whether to advertise our DirPort.
7431       The main change is to not advertise if we're running at capacity
7432       and either a) we could hibernate ever or b) our capacity is low
7433       and we're using a default DirPort.
7434     - We weren't cannibalizing circuits correctly for
7435       CIRCUIT_PURPOSE_C_ESTABLISH_REND and
7436       CIRCUIT_PURPOSE_S_ESTABLISH_INTRO, so we were being forced to
7437       build those from scratch. This should make hidden services faster.
7438     - Predict required circuits better, with an eye toward making hidden
7439       services faster on the service end.
7440     - Compress exit policies even more: look for duplicate lines and
7441       remove them.
7442     - Generate 18.0.0.0/8 address policy format in descs when we can;
7443       warn when the mask is not reducible to a bit-prefix.
7444     - There used to be two ways to specify your listening ports in a
7445       server descriptor: on the "router" line and with a separate "ports"
7446       line. Remove support for the "ports" line.
7447     - Reduce memory requirements in our structs by changing the order
7448       of fields. Replace balanced trees with hash tables. Inline
7449       bottleneck smartlist functions. Add a "Map from digest to void*"
7450       abstraction so we can do less hex encoding/decoding, and use it
7451       in router_get_by_digest(). Many other CPU and memory improvements.
7452     - Allow tor_gzip_uncompress to extract as much as possible from
7453       truncated compressed data. Try to extract as many
7454       descriptors as possible from truncated http responses (when
7455       purpose is DIR_PURPOSE_FETCH_ROUTERDESC).
7456     - Make circ->onionskin a pointer, not a static array. moria2 was using
7457       125000 circuit_t's after it had been up for a few weeks, which
7458       translates to 20+ megs of wasted space.
7459     - The private half of our EDH handshake keys are now chosen out
7460       of 320 bits, not 1024 bits. (Suggested by Ian Goldberg.)
7461     - Stop doing the complex voodoo overkill checking for insecure
7462       Diffie-Hellman keys. Just check if it's in [2,p-2] and be happy.
7463     - Do round-robin writes for TLS of at most 16 kB per write. This
7464       might be more fair on loaded Tor servers.
7465     - Do not use unaligned memory access on alpha, mips, or mipsel.
7466       It *works*, but is very slow, so we treat them as if it doesn't.
7468   o Other bugfixes and improvements:
7469     - Start storing useful information to $DATADIR/state, so we can
7470       remember things across invocations of Tor. Retain unrecognized
7471       lines so we can be forward-compatible, and write a TorVersion line
7472       so we can be backward-compatible.
7473     - If ORPort is set, Address is not explicitly set, and our hostname
7474       resolves to a private IP address, try to use an interface address
7475       if it has a public address. Now Windows machines that think of
7476       themselves as localhost can guess their address.
7477     - Regenerate our local descriptor if it's dirty and we try to use
7478       it locally (e.g. if it changes during reachability detection).
7479       This was causing some Tor servers to keep publishing the same
7480       initial descriptor forever.
7481     - Tor servers with dynamic IP addresses were needing to wait 18
7482       hours before they could start doing reachability testing using
7483       the new IP address and ports. This is because they were using
7484       the internal descriptor to learn what to test, yet they were only
7485       rebuilding the descriptor once they decided they were reachable.
7486     - It turns out we couldn't bootstrap a network since we added
7487       reachability detection in 0.1.0.1-rc. Good thing the Tor network
7488       has never gone down. Add an AssumeReachable config option to let
7489       servers and authorities bootstrap. When we're trying to build a
7490       high-uptime or high-bandwidth circuit but there aren't enough
7491       suitable servers, try being less picky rather than simply failing.
7492     - Newly bootstrapped Tor networks couldn't establish hidden service
7493       circuits until they had nodes with high uptime. Be more tolerant.
7494     - Really busy servers were keeping enough circuits open on stable
7495       connections that they were wrapping around the circuit_id
7496       space. (It's only two bytes.) This exposed a bug where we would
7497       feel free to reuse a circuit_id even if it still exists but has
7498       been marked for close. Try to fix this bug. Some bug remains.
7499     - When we fail to bind or listen on an incoming or outgoing
7500       socket, we now close it before refusing, rather than just
7501       leaking it. (Thanks to Peter Palfrader for finding.)
7502     - Fix a file descriptor leak in start_daemon().
7503     - On Windows, you can't always reopen a port right after you've
7504       closed it. So change retry_listeners() to only close and re-open
7505       ports that have changed.
7506     - Workaround a problem with some http proxies that refuse GET
7507       requests that specify "Content-Length: 0". Reported by Adrian.
7508     - Recover better from TCP connections to Tor servers that are
7509       broken but don't tell you (it happens!); and rotate TLS
7510       connections once a week.
7511     - Fix a scary-looking but apparently harmless bug where circuits
7512       would sometimes start out in state CIRCUIT_STATE_OR_WAIT at
7513       servers, and never switch to state CIRCUIT_STATE_OPEN.
7514     - Check for even more Windows version flags when writing the platform
7515       string in server descriptors, and note any we don't recognize.
7516     - Add reasons to DESTROY and RELAY_TRUNCATED cells, so clients can
7517       get a better idea of why their circuits failed. Not used yet.
7518     - Add TTLs to RESOLVED, CONNECTED, and END_REASON_EXITPOLICY cells.
7519       We don't use them yet, but maybe one day our DNS resolver will be
7520       able to discover them.
7521     - Let people type "tor --install" as well as "tor -install" when they
7522       want to make it an NT service.
7523     - Looks like we were never delivering deflated (i.e. compressed)
7524       running-routers lists, even when asked. Oops.
7525     - We were leaking some memory every time the client changed IPs.
7526     - Clean up more of the OpenSSL memory when exiting, so we can detect
7527       memory leaks better.
7528     - Never call free() on tor_malloc()d memory. This will help us
7529       use dmalloc to detect memory leaks.
7530     - Some Tor servers process billions of cells per day. These
7531       statistics are now uint64_t's.
7532     - Check [X-]Forwarded-For headers in HTTP requests when generating
7533       log messages. This lets people run dirservers (and caches) behind
7534       Apache but still know which IP addresses are causing warnings.
7535     - Fix minor integer overflow in calculating when we expect to use up
7536       our bandwidth allocation before hibernating.
7537     - Lower the minimum required number of file descriptors to 1000,
7538       so we can have some overhead for Valgrind on Linux, where the
7539       default ulimit -n is 1024.
7540     - Stop writing the "router.desc" file, ever. Nothing uses it anymore,
7541       and its existence is confusing some users.
7543   o Config option fixes:
7544     - Add a new config option ExitPolicyRejectPrivate which defaults
7545       to on. Now all exit policies will begin with rejecting private
7546       addresses, unless the server operator explicitly turns it off.
7547     - Bump the default bandwidthrate to 3 MB, and burst to 6 MB.
7548     - Add new ReachableORAddresses and ReachableDirAddresses options
7549       that understand address policies. FascistFirewall is now a synonym
7550       for "ReachableORAddresses *:443", "ReachableDirAddresses *:80".
7551     - Start calling it FooListenAddress rather than FooBindAddress,
7552       since few of our users know what it means to bind an address
7553       or port.
7554     - If the user gave Tor an odd number of command-line arguments,
7555       we were silently ignoring the last one. Now we complain and fail.
7556       This wins the oldest-bug prize -- this bug has been present since
7557       November 2002, as released in Tor 0.0.0.
7558     - If you write "HiddenServicePort 6667 127.0.0.1 6668" in your
7559       torrc rather than "HiddenServicePort 6667 127.0.0.1:6668",
7560       it would silently ignore the 6668.
7561     - If we get a linelist or linelist_s config option from the torrc,
7562       e.g. ExitPolicy, and it has no value, warn and skip rather than
7563       silently resetting it to its default.
7564     - Setconf was appending items to linelists, not clearing them.
7565     - Add MyFamily to torrc.sample in the server section, so operators
7566       will be more likely to learn that it exists.
7567     - Make ContactInfo mandatory for authoritative directory servers.
7568     - MaxConn has been obsolete for a while now. Document the ConnLimit
7569       config option, which is a *minimum* number of file descriptors
7570       that must be available else Tor refuses to start.
7571     - Get rid of IgnoreVersion undocumented config option, and make us
7572       only warn, never exit, when we're running an obsolete version.
7573     - Make MonthlyAccountingStart config option truly obsolete now.
7574     - Correct the man page entry on TrackHostExitsExpire.
7575     - Let directory authorities start even if they don't specify an
7576       Address config option.
7577     - Change "AllowUnverifiedNodes" to "AllowInvalidNodes", to
7578       reflect the updated flags in our v2 dir protocol.
7580   o Config option features:
7581     - Add a new config option FastFirstHopPK (on by default) so clients
7582       do a trivial crypto handshake for their first hop, since TLS has
7583       already taken care of confidentiality and authentication.
7584     - Let the user set ControlListenAddress in the torrc. This can be
7585       dangerous, but there are some cases (like a secured LAN) where it
7586       makes sense.
7587     - New config options to help controllers: FetchServerDescriptors
7588       and FetchHidServDescriptors for whether to fetch server
7589       info and hidserv info or let the controller do it, and
7590       PublishServerDescriptor and PublishHidServDescriptors.
7591     - Also let the controller set the __AllDirActionsPrivate config
7592       option if you want all directory fetches/publishes to happen via
7593       Tor (it assumes your controller bootstraps your circuits).
7594     - Add "HardwareAccel" config option: support for crypto hardware
7595       accelerators via OpenSSL. Off by default, until we find somebody
7596       smart who can test it for us. (It appears to produce seg faults
7597       in at least some cases.)
7598     - New config option "AuthDirRejectUnlisted" for directory authorities
7599       as a panic button: if we get flooded with unusable servers we can
7600       revert to only listing servers in the approved-routers file.
7601     - Directory authorities can now reject/invalidate by key and IP,
7602       with the config options "AuthDirInvalid" and "AuthDirReject", or
7603       by marking a fingerprint as "!reject" or "!invalid" (as its
7604       nickname) in the approved-routers file. This is useful since
7605       currently we automatically list servers as running and usable
7606       even if we know they're jerks.
7607     - Add a new config option TestSocks so people can see whether their
7608       applications are using socks4, socks4a, socks5-with-ip, or
7609       socks5-with-fqdn. This way they don't have to keep mucking
7610       with tcpdump and wondering if something got cached somewhere.
7611     - Add "private:*" as an alias in configuration for policies. Now
7612       you can simplify your exit policy rather than needing to list
7613       every single internal or nonroutable network space.
7614     - Accept "private:*" in routerdesc exit policies; not generated yet
7615       because older Tors do not understand it.
7616     - Add configuration option "V1AuthoritativeDirectory 1" which
7617       moria1, moria2, and tor26 have set.
7618     - Implement an option, VirtualAddrMask, to set which addresses
7619       get handed out in response to mapaddress requests. This works
7620       around a bug in tsocks where 127.0.0.0/8 is never socksified.
7621     - Add a new config option FetchUselessDescriptors, off by default,
7622       for when you plan to run "exitlist" on your client and you want
7623       to know about even the non-running descriptors.
7624     - SocksTimeout: How long do we let a socks connection wait
7625       unattached before we fail it?
7626     - CircuitBuildTimeout: Cull non-open circuits that were born
7627       at least this many seconds ago.
7628     - CircuitIdleTimeout: Cull open clean circuits that were born
7629       at least this many seconds ago.
7630     - New config option SafeSocks to reject all application connections
7631       using unsafe socks protocols. Defaults to off.
7633   o Improved and clearer log messages:
7634     - Reduce clutter in server logs. We're going to try to make
7635       them actually usable now. New config option ProtocolWarnings that
7636       lets you hear about how _other Tors_ are breaking the protocol. Off
7637       by default.
7638     - Divide log messages into logging domains. Once we put some sort
7639       of interface on this, it will let people looking at more verbose
7640       log levels specify the topics they want to hear more about.
7641     - Log server fingerprint on startup, so new server operators don't
7642       have to go hunting around their filesystem for it.
7643     - Provide dire warnings to any users who set DirServer manually;
7644       move it out of torrc.sample and into torrc.complete.
7645     - Make the log message less scary when all the dirservers are
7646       temporarily unreachable.
7647     - When tor_socketpair() fails in Windows, give a reasonable
7648       Windows-style errno back.
7649     - Improve tor_gettimeofday() granularity on windows.
7650     - We were printing the number of idle dns workers incorrectly when
7651       culling them.
7652     - Handle duplicate lines in approved-routers files without warning.
7653     - We were whining about using socks4 or socks5-with-local-lookup
7654       even when it's an IP address in the "virtual" range we designed
7655       exactly for this case.
7656     - Check for named servers when looking them up by nickname;
7657       warn when we're calling a non-named server by its nickname;
7658       don't warn twice about the same name.
7659     - Downgrade the dirserver log messages when whining about
7660       unreachability.
7661     - Correct "your server is reachable" log entries to indicate that
7662       it was self-testing that told us so.
7663     - If we're trying to be a Tor server and running Windows 95/98/ME
7664       as a server, explain that we'll likely crash.
7665     - Provide a more useful warn message when our onion queue gets full:
7666       the CPU is too slow or the exit policy is too liberal.
7667     - Don't warn when we receive a 503 from a dirserver/cache -- this
7668       will pave the way for them being able to refuse if they're busy.
7669     - When we fail to bind a listener, try to provide a more useful
7670       log message: e.g., "Is Tor already running?"
7671     - Only start testing reachability once we've established a
7672       circuit. This will make startup on dir authorities less noisy.
7673     - Don't try to upload hidden service descriptors until we have
7674       established a circuit.
7675     - Tor didn't warn when it failed to open a log file.
7676     - Warn when listening on a public address for socks. We suspect a
7677       lot of people are setting themselves up as open socks proxies,
7678       and they have no idea that jerks on the Internet are using them,
7679       since they simply proxy the traffic into the Tor network.
7680     - Give a useful message when people run Tor as the wrong user,
7681       rather than telling them to start chowning random directories.
7682     - Fix a harmless bug that was causing Tor servers to log
7683       "Got an end because of misc error, but we're not an AP. Closing."
7684     - Fix wrong log message when you add a "HiddenServiceNodes" config
7685       line without any HiddenServiceDir line (reported by Chris Thomas).
7686     - Directory authorities now stop whining so loudly about bad
7687       descriptors that they fetch from other dirservers. So when there's
7688       a log complaint, it's for sure from a freshly uploaded descriptor.
7689     - When logging via syslog, include the pid whenever we provide
7690       a log entry. Suggested by Todd Fries.
7691     - When we're shutting down and we do something like try to post a
7692       server descriptor or rendezvous descriptor, don't complain that
7693       we seem to be unreachable. Of course we are, we're shutting down.
7694     - Change log line for unreachability to explicitly suggest /etc/hosts
7695       as the culprit. Also make it clearer what IP address and ports we're
7696       testing for reachability.
7697     - Put quotes around user-supplied strings when logging so users are
7698       more likely to realize if they add bad characters (like quotes)
7699       to the torrc.
7700     - NT service patch from Matt Edman to improve error messages on Win32.
7703 Changes in version 0.1.0.17 - 2006-02-17
7704   o Crash bugfixes on 0.1.0.x:
7705     - When servers with a non-zero DirPort came out of hibernation,
7706       sometimes they would trigger an assert.
7708   o Other important bugfixes:
7709     - On platforms that don't have getrlimit (like Windows), we were
7710       artificially constraining ourselves to a max of 1024
7711       connections. Now just assume that we can handle as many as 15000
7712       connections. Hopefully this won't cause other problems.
7714   o Backported features:
7715     - When we're a server, a client asks for an old-style directory,
7716       and our write bucket is empty, don't give it to him. This way
7717       small servers can continue to serve the directory *sometimes*,
7718       without getting overloaded.
7719     - Whenever you get a 503 in response to a directory fetch, try
7720       once more. This will become important once servers start sending
7721       503's whenever they feel busy.
7722     - Fetch a new directory every 120 minutes, not every 40 minutes.
7723       Now that we have hundreds of thousands of users running the old
7724       directory algorithm, it's starting to hurt a lot.
7725     - Bump up the period for forcing a hidden service descriptor upload
7726       from 20 minutes to 1 hour.
7729 Changes in version 0.1.0.16 - 2006-01-02
7730   o Crash bugfixes on 0.1.0.x:
7731     - On Windows, build with a libevent patch from "I-M Weasel" to avoid
7732       corrupting the heap, losing FDs, or crashing when we need to resize
7733       the fd_sets. (This affects the Win32 binaries, not Tor's sources.)
7734     - It turns out sparc64 platforms crash on unaligned memory access
7735       too -- so detect and avoid this.
7736     - Handle truncated compressed data correctly (by detecting it and
7737       giving an error).
7738     - Fix possible-but-unlikely free(NULL) in control.c.
7739     - When we were closing connections, there was a rare case that
7740       stomped on memory, triggering seg faults and asserts.
7741     - Avoid potential infinite recursion when building a descriptor. (We
7742       don't know that it ever happened, but better to fix it anyway.)
7743     - We were neglecting to unlink marked circuits from soon-to-close OR
7744       connections, which caused some rare scribbling on freed memory.
7745     - Fix a memory stomping race bug when closing the joining point of two
7746       rendezvous circuits.
7747     - Fix an assert in time parsing found by Steven Murdoch.
7749   o Other bugfixes on 0.1.0.x:
7750     - When we're doing reachability testing, provide more useful log
7751       messages so the operator knows what to expect.
7752     - Do not check whether DirPort is reachable when we are suppressing
7753       advertising it because of hibernation.
7754     - When building with -static or on Solaris, we sometimes needed -ldl.
7755     - One of the dirservers (tor26) changed its IP address.
7756     - When we're deciding whether a stream has enough circuits around
7757       that can handle it, count the freshly dirty ones and not the ones
7758       that are so dirty they won't be able to handle it.
7759     - When we're expiring old circuits, we had a logic error that caused
7760       us to close new rendezvous circuits rather than old ones.
7761     - Give a more helpful log message when you try to change ORPort via
7762       the controller: you should upgrade Tor if you want that to work.
7763     - We were failing to parse Tor versions that start with "Tor ".
7764     - Tolerate faulty streams better: when a stream fails for reason
7765       exitpolicy, stop assuming that the router is lying about his exit
7766       policy. When a stream fails for reason misc, allow it to retry just
7767       as if it was resolvefailed. When a stream has failed three times,
7768       reset its failure count so we can try again and get all three tries.
7771 Changes in version 0.1.0.15 - 2005-09-23
7772   o Bugfixes on 0.1.0.x:
7773     - Reject ports 465 and 587 (spam targets) in default exit policy.
7774     - Don't crash when we don't have any spare file descriptors and we
7775       try to spawn a dns or cpu worker.
7776     - Get rid of IgnoreVersion undocumented config option, and make us
7777       only warn, never exit, when we're running an obsolete version.
7778     - Don't try to print a null string when your server finds itself to
7779       be unreachable and the Address config option is empty.
7780     - Make the numbers in read-history and write-history into uint64s,
7781       so they don't overflow and publish negatives in the descriptor.
7782     - Fix a minor memory leak in smartlist_string_remove().
7783     - We were only allowing ourselves to upload a server descriptor at
7784       most every 20 minutes, even if it changed earlier than that.
7785     - Clean up log entries that pointed to old URLs.
7788 Changes in version 0.1.0.14 - 2005-08-08
7789   o Bugfixes on 0.1.0.x:
7790       - Fix the other half of the bug with crypto handshakes
7791         (CVE-2005-2643).
7792       - Fix an assert trigger if you send a 'signal term' via the
7793         controller when it's listening for 'event info' messages.
7796 Changes in version 0.1.0.13 - 2005-08-04
7797   o Bugfixes on 0.1.0.x:
7798     - Fix a critical bug in the security of our crypto handshakes.
7799     - Fix a size_t underflow in smartlist_join_strings2() that made
7800       it do bad things when you hand it an empty smartlist.
7801     - Fix Windows installer to ship Tor license (thanks to Aphex for
7802       pointing out this oversight) and put a link to the doc directory
7803       in the start menu.
7804     - Explicitly set no-unaligned-access for sparc: it turns out the
7805       new gcc's let you compile broken code, but that doesn't make it
7806       not-broken.
7809 Changes in version 0.1.0.12 - 2005-07-18
7810   o New directory servers:
7811       - tor26 has changed IP address.
7813   o Bugfixes on 0.1.0.x:
7814     - Fix a possible double-free in tor_gzip_uncompress().
7815     - When --disable-threads is set, do not search for or link against
7816       pthreads libraries.
7817     - Don't trigger an assert if an authoritative directory server
7818       claims its dirport is 0.
7819     - Fix bug with removing Tor as an NT service: some people were
7820       getting "The service did not return an error." Thanks to Matt
7821       Edman for the fix.
7824 Changes in version 0.1.0.11 - 2005-06-30
7825   o Bugfixes on 0.1.0.x:
7826     - Fix major security bug: servers were disregarding their
7827       exit policies if clients behaved unexpectedly.
7828     - Make OS X init script check for missing argument, so we don't
7829       confuse users who invoke it incorrectly.
7830     - Fix a seg fault in "tor --hash-password foo".
7831     - The MAPADDRESS control command was broken.
7834 Changes in version 0.1.0.10 - 2005-06-14
7835   o Fixes on Win32:
7836     - Make NT services work and start on startup on Win32 (based on
7837       patch by Matt Edman). See the FAQ entry for details.
7838     - Make 'platform' string in descriptor more accurate for Win32
7839       servers, so it's not just "unknown platform".
7840     - REUSEADDR on normal platforms means you can rebind to the port
7841       right after somebody else has let it go. But REUSEADDR on Win32
7842       means you can bind to the port _even when somebody else already
7843       has it bound_! So, don't do that on Win32.
7844     - Clean up the log messages when starting on Win32 with no config
7845       file.
7846     - Allow seeding the RNG on Win32 even when you're not running as
7847       Administrator. If seeding the RNG on Win32 fails, quit.
7849   o Assert / crash bugs:
7850     - Refuse relay cells that claim to have a length larger than the
7851       maximum allowed. This prevents a potential attack that could read
7852       arbitrary memory (e.g. keys) from an exit server's process
7853       (CVE-2005-2050).
7854     - If unofficial Tor clients connect and send weird TLS certs, our
7855       Tor server triggers an assert. Stop asserting, and start handling
7856       TLS errors better in other situations too.
7857     - Fix a race condition that can trigger an assert when we have a
7858       pending create cell and an OR connection attempt fails.
7860   o Resource leaks:
7861     - Use pthreads for worker processes rather than forking. This was
7862       forced because when we forked, we ended up wasting a lot of
7863       duplicate ram over time.
7864       - Also switch to foo_r versions of some library calls to allow
7865         reentry and threadsafeness.
7866       - Implement --disable-threads configure option. Disable threads on
7867         netbsd and openbsd by default, because they have no reentrant
7868         resolver functions (!), and on solaris since it has other
7869         threading issues.
7870     - Fix possible bug on threading platforms (e.g. win32) which was
7871       leaking a file descriptor whenever a cpuworker or dnsworker died.
7872     - Fix a minor memory leak when somebody establishes an introduction
7873       point at your Tor server.
7874     - Fix possible memory leak in tor_lookup_hostname(). (Thanks to
7875       Adam Langley.)
7876     - Add ./configure --with-dmalloc option, to track memory leaks.
7877     - And try to free all memory on closing, so we can detect what
7878       we're leaking.
7880   o Protocol correctness:
7881     - When we've connected to an OR and handshaked but didn't like
7882       the result, we were closing the conn without sending destroy
7883       cells back for pending circuits. Now send those destroys.
7884     - Start sending 'truncated' cells back rather than destroy cells
7885       if the circuit closes in front of you. This means we won't have
7886       to abandon partially built circuits.
7887     - Handle changed router status correctly when dirserver reloads
7888       fingerprint file. We used to be dropping all unverified descriptors
7889       right then. The bug was hidden because we would immediately
7890       fetch a directory from another dirserver, which would include the
7891       descriptors we just dropped.
7892     - Revise tor-spec to add more/better stream end reasons.
7893     - Revise all calls to connection_edge_end to avoid sending 'misc',
7894       and to take errno into account where possible.
7895     - Client now retries when streams end early for 'hibernating' or
7896       'resource limit' reasons, rather than failing them.
7897     - Try to be more zealous about calling connection_edge_end when
7898       things go bad with edge conns in connection.c.
7900   o Robustness improvements:
7901     - Better handling for heterogeneous / unreliable nodes:
7902       - Annotate circuits with whether they aim to contain high uptime
7903         nodes and/or high capacity nodes. When building circuits, choose
7904         appropriate nodes.
7905       - This means that every single node in an intro rend circuit,
7906         not just the last one, will have a minimum uptime.
7907       - New config option LongLivedPorts to indicate application streams
7908         that will want high uptime circuits.
7909       - Servers reset uptime when a dir fetch entirely fails. This
7910         hopefully reflects stability of the server's network connectivity.
7911       - If somebody starts his tor server in Jan 2004 and then fixes his
7912         clock, don't make his published uptime be a year.
7913       - Reset published uptime when we wake up from hibernation.
7914     - Introduce a notion of 'internal' circs, which are chosen without
7915       regard to the exit policy of the last hop. Intro and rendezvous
7916       circs must be internal circs, to avoid leaking information. Resolve
7917       and connect streams can use internal circs if they want.
7918     - New circuit pooling algorithm: keep track of what destination ports
7919       we've used recently (start out assuming we'll want to use 80), and
7920       make sure to have enough circs around to satisfy these ports. Also
7921       make sure to have 2 internal circs around if we've required internal
7922       circs lately (and with high uptime if we've seen that lately too).
7923     - Turn addr_policy_compare from a tristate to a quadstate; this should
7924       help address our "Ah, you allow 1.2.3.4:80. You are a good choice
7925       for google.com" problem.
7926     - When a client asks us for a dir mirror and we don't have one,
7927       launch an attempt to get a fresh one.
7928     - First cut at support for "create-fast" cells. Clients can use
7929       these when extending to their first hop, since the TLS already
7930       provides forward secrecy and authentication. Not enabled on
7931       clients yet.
7933   o Reachability testing.
7934     - Your Tor server will automatically try to see if its ORPort and
7935       DirPort are reachable from the outside, and it won't upload its
7936       descriptor until it decides at least ORPort is reachable (when
7937       DirPort is not yet found reachable, publish it as zero).
7938     - When building testing circs for ORPort testing, use only
7939       high-bandwidth nodes, so fewer circuits fail.
7940     - Notice when our IP changes, and reset stats/uptime/reachability.
7941     - Authdirservers don't do ORPort reachability detection, since
7942       they're in clique mode, so it will be rare to find a server not
7943       already connected to them.
7944     - Authdirservers now automatically approve nodes running 0.1.0.2-rc
7945       or later.
7947   o Dirserver fixes:
7948     - Now we allow two unverified servers with the same nickname
7949       but different keys. But if a nickname is verified, only that
7950       nickname+key are allowed.
7951     - If you're an authdirserver connecting to an address:port,
7952       and it's not the OR you were expecting, forget about that
7953       descriptor. If he *was* the one you were expecting, then forget
7954       about all other descriptors for that address:port.
7955     - Allow servers to publish descriptors from 12 hours in the future.
7956       Corollary: only whine about clock skew from the dirserver if
7957       he's a trusted dirserver (since now even verified servers could
7958       have quite wrong clocks).
7959     - Require servers that use the default dirservers to have public IP
7960       addresses. We have too many servers that are configured with private
7961       IPs and their admins never notice the log entries complaining that
7962       their descriptors are being rejected.
7964   o Efficiency improvements:
7965     - Use libevent. Now we can use faster async cores (like epoll, kpoll,
7966       and /dev/poll), and hopefully work better on Windows too.
7967       - Apple's OS X 10.4.0 ships with a broken kqueue API, and using
7968         kqueue on 10.3.9 causes kernel panics. Don't use kqueue on OS X.
7969       - Find libevent even if it's hiding in /usr/local/ and your
7970         CFLAGS and LDFLAGS don't tell you to look there.
7971       - Be able to link with libevent as a shared library (the default
7972         after 1.0d), even if it's hiding in /usr/local/lib and even
7973         if you haven't added /usr/local/lib to your /etc/ld.so.conf,
7974         assuming you're running gcc. Otherwise fail and give a useful
7975         error message.
7976     - Switch to a new buffer management algorithm, which tries to avoid
7977       reallocing and copying quite as much. In first tests it looks like
7978       it uses *more* memory on average, but less cpu.
7979     - Switch our internal buffers implementation to use a ring buffer,
7980       to hopefully improve performance for fast servers a lot.
7981     - Reenable the part of the code that tries to flush as soon as an
7982       OR outbuf has a full TLS record available. Perhaps this will make
7983       OR outbufs not grow as huge except in rare cases, thus saving lots
7984       of CPU time plus memory.
7985     - Improve performance for dirservers: stop re-parsing the whole
7986       directory every time you regenerate it.
7987     - Keep a big splay tree of (circid,orconn)->circuit mappings to make
7988       it much faster to look up a circuit for each relay cell.
7989     - Remove most calls to assert_all_pending_dns_resolves_ok(),
7990       since they're eating our cpu on exit nodes.
7991     - Stop wasting time doing a case insensitive comparison for every
7992       dns name every time we do any lookup. Canonicalize the names to
7993       lowercase when you first see them.
7995   o Hidden services:
7996     - Handle unavailable hidden services better. Handle slow or busy
7997       hidden services better.
7998     - Cannibalize GENERAL circs to be C_REND, C_INTRO, S_INTRO, and S_REND
7999       circ as necessary, if there are any completed ones lying around
8000       when we try to launch one.
8001     - Make hidden services try to establish a rendezvous for 30 seconds
8002       after fetching the descriptor, rather than for n (where n=3)
8003       attempts to build a circuit.
8004     - Adjust maximum skew and age for rendezvous descriptors: let skew
8005       be 48 hours rather than 90 minutes.
8006     - Reject malformed .onion addresses rather then passing them on as
8007       normal web requests.
8009   o Controller:
8010     - More Tor controller support. See
8011       http://tor.eff.org/doc/control-spec.txt for all the new features,
8012       including signals to emulate unix signals from any platform;
8013       redirectstream; extendcircuit; mapaddress; getinfo; postdescriptor;
8014       closestream; closecircuit; etc.
8015     - Encode hashed controller passwords in hex instead of base64,
8016       to make it easier to write controllers.
8017     - Revise control spec and implementation to allow all log messages to
8018       be sent to controller with their severities intact (suggested by
8019       Matt Edman). Disable debug-level logs while delivering a debug-level
8020       log to the controller, to prevent loop. Update TorControl to handle
8021       new log event types.
8023   o New config options/defaults:
8024     - Begin scrubbing sensitive strings from logs by default. Turn off
8025       the config option SafeLogging if you need to do debugging.
8026     - New exit policy: accept most low-numbered ports, rather than
8027       rejecting most low-numbered ports.
8028     - Put a note in the torrc about abuse potential with the default
8029       exit policy.
8030     - Add support for CONNECTing through https proxies, with "HttpsProxy"
8031       config option.
8032     - Add HttpProxyAuthenticator and HttpsProxyAuthenticator support
8033       based on patch from Adam Langley (basic auth only).
8034     - Bump the default BandwidthRate from 1 MB to 2 MB, to accommodate
8035       the fast servers that have been joining lately. (Clients are now
8036       willing to load balance over up to 2 MB of advertised bandwidth
8037       capacity too.)
8038     - New config option MaxAdvertisedBandwidth which lets you advertise
8039       a low bandwidthrate (to not attract as many circuits) while still
8040       allowing a higher bandwidthrate in reality.
8041     - Require BandwidthRate to be at least 20kB/s for servers.
8042     - Add a NoPublish config option, so you can be a server (e.g. for
8043       testing running Tor servers in other Tor networks) without
8044       publishing your descriptor to the primary dirservers.
8045     - Add a new AddressMap config directive to rewrite incoming socks
8046       addresses. This lets you, for example, declare an implicit
8047       required exit node for certain sites.
8048     - Add a new TrackHostExits config directive to trigger addressmaps
8049       for certain incoming socks addresses -- for sites that break when
8050       your exit keeps changing (based on patch from Mike Perry).
8051     - Split NewCircuitPeriod option into NewCircuitPeriod (30 secs),
8052       which describes how often we retry making new circuits if current
8053       ones are dirty, and MaxCircuitDirtiness (10 mins), which describes
8054       how long we're willing to make use of an already-dirty circuit.
8055     - Change compiled-in SHUTDOWN_WAIT_LENGTH from a fixed 30 secs to
8056       a config option "ShutdownWaitLength" (when using kill -INT on
8057       servers).
8058     - Fix an edge case in parsing config options: if they say "--"
8059       on the commandline, it's not a config option (thanks weasel).
8060     - New config option DirAllowPrivateAddresses for authdirservers.
8061       Now by default they refuse router descriptors that have non-IP or
8062       private-IP addresses.
8063     - Change DirFetchPeriod/StatusFetchPeriod to have a special "Be
8064       smart" default value: low for servers and high for clients.
8065     - Some people were putting "Address  " in their torrc, and they had
8066       a buggy resolver that resolved " " to 0.0.0.0. Oops.
8067     - If DataDir is ~/.tor, and that expands to /.tor, then default to
8068       LOCALSTATEDIR/tor instead.
8069     - Implement --verify-config command-line option to check if your torrc
8070       is valid without actually launching Tor.
8072   o Logging improvements:
8073     - When dirservers refuse a server descriptor, we now log its
8074       contactinfo, platform, and the poster's IP address.
8075     - Only warn once per nickname from add_nickname_list_to_smartlist()
8076       per failure, so an entrynode or exitnode choice that's down won't
8077       yell so much.
8078     - When we're connecting to an OR and he's got a different nickname/key
8079       than we were expecting, only complain loudly if we're an OP or a
8080       dirserver. Complaining loudly to the OR admins just confuses them.
8081     - Whine at you if you're a server and you don't set your contactinfo.
8082     - Warn when exit policy implicitly allows local addresses.
8083     - Give a better warning when some other server advertises an
8084       ORPort that is actually an apache running ssl.
8085     - If we get an incredibly skewed timestamp from a dirserver mirror
8086       that isn't a verified OR, don't warn -- it's probably him that's
8087       wrong.
8088     - When a dirserver causes you to give a warn, mention which dirserver
8089       it was.
8090     - Initialize libevent later in the startup process, so the logs are
8091       already established by the time we start logging libevent warns.
8092     - Use correct errno on win32 if libevent fails.
8093     - Check and warn about known-bad/slow libevent versions.
8094     - Stop warning about sigpipes in the logs. We're going to
8095       pretend that getting these occassionally is normal and fine.
8097   o New contrib scripts:
8098     - New experimental script tor/contrib/exitlist: a simple python
8099       script to parse directories and find Tor nodes that exit to listed
8100       addresses/ports.
8101     - New experimental script tor/contrib/ExerciseServer.py (needs more
8102       work) that uses the controller interface to build circuits and
8103       fetch pages over them. This will help us bootstrap servers that
8104       have lots of capacity but haven't noticed it yet.
8105     - New experimental script tor/contrib/PathDemo.py (needs more work)
8106       that uses the controller interface to let you choose whole paths
8107       via addresses like
8108       "<hostname>.<path,separated by dots>.<length of path>.path"
8109     - New contributed script "privoxy-tor-toggle" to toggle whether
8110       Privoxy uses Tor. Seems to be configured for Debian by default.
8111     - Have torctl.in/tor.sh.in check for location of su binary (needed
8112       on FreeBSD)
8114   o Misc bugfixes:
8115     - chdir() to your datadirectory at the *end* of the daemonize process,
8116       not the beginning. This was a problem because the first time you
8117       run tor, if your datadir isn't there, and you have runasdaemon set
8118       to 1, it will try to chdir to it before it tries to create it. Oops.
8119     - Fix several double-mark-for-close bugs, e.g. where we were finding
8120       a conn for a cell even if that conn is already marked for close.
8121     - Stop most cases of hanging up on a socks connection without sending
8122       the socks reject.
8123     - Fix a bug in the RPM package: set home directory for _tor to
8124       something more reasonable when first installing.
8125     - Stop putting nodename in the Platform string in server descriptors.
8126       It doesn't actually help, and it is confusing/upsetting some people.
8127     - When using preferred entry or exit nodes, ignore whether the
8128       circuit wants uptime or capacity. They asked for the nodes, they
8129       get the nodes.
8130     - Tie MAX_DIR_SIZE to MAX_BUF_SIZE, so now directory sizes won't get
8131       artificially capped at 500kB.
8132     - Cache local dns resolves correctly even when they're .exit
8133       addresses.
8134     - If we're hibernating and we get a SIGINT, exit immediately.
8135     - tor-resolve requests were ignoring .exit if there was a working circuit
8136       they could use instead.
8137     - Pay more attention to the ClientOnly config option.
8138     - Resolve OS X installer bugs: stop claiming to be 0.0.9.2 in certain
8139       installer screens; and don't put stuff into StartupItems unless
8140       the user asks you to.
8142   o Misc features:
8143     - Rewrite address "serifos.exit" to "externalIP.serifos.exit"
8144       rather than just rejecting it.
8145     - If our clock jumps forward by 100 seconds or more, assume something
8146       has gone wrong with our network and abandon all not-yet-used circs.
8147     - When an application is using socks5, give him the whole variety of
8148       potential socks5 responses (connect refused, host unreachable, etc),
8149       rather than just "success" or "failure".
8150     - A more sane version numbering system. See
8151       http://tor.eff.org/cvs/tor/doc/version-spec.txt for details.
8152     - Change version parsing logic: a version is "obsolete" if it is not
8153       recommended and (1) there is a newer recommended version in the
8154       same series, or (2) there are no recommended versions in the same
8155       series, but there are some recommended versions in a newer series.
8156       A version is "new" if it is newer than any recommended version in
8157       the same series.
8158     - Report HTTP reasons to client when getting a response from directory
8159       servers -- so you can actually know what went wrong.
8160     - Reject odd-looking addresses at the client (e.g. addresses that
8161       contain a colon), rather than having the server drop them because
8162       they're malformed.
8163     - Stop publishing socksport in the directory, since it's not
8164       actually meant to be public. For compatibility, publish a 0 there
8165       for now.
8166     - Since we ship our own Privoxy on OS X, tweak it so it doesn't write
8167       cookies to disk and doesn't log each web request to disk. (Thanks
8168       to Brett Carrington for pointing this out.)
8169     - Add OSX uninstall instructions. An actual uninstall script will
8170       come later.
8171     - Add "opt hibernating 1" to server descriptor to make it clearer
8172       whether the server is hibernating.
8175 Changes in version 0.0.9.10 - 2005-06-16
8176   o Bugfixes on 0.0.9.x (backported from 0.1.0.10):
8177     - Refuse relay cells that claim to have a length larger than the
8178       maximum allowed. This prevents a potential attack that could read
8179       arbitrary memory (e.g. keys) from an exit server's process
8180       (CVE-2005-2050).
8183 Changes in version 0.0.9.9 - 2005-04-23
8184   o Bugfixes on 0.0.9.x:
8185     - If unofficial Tor clients connect and send weird TLS certs, our
8186       Tor server triggers an assert. This release contains a minimal
8187       backport from the broader fix that we put into 0.1.0.4-rc.
8190 Changes in version 0.0.9.8 - 2005-04-07
8191   o Bugfixes on 0.0.9.x:
8192     - We have a bug that I haven't found yet. Sometimes, very rarely,
8193       cpuworkers get stuck in the 'busy' state, even though the cpuworker
8194       thinks of itself as idle. This meant that no new circuits ever got
8195       established. Here's a workaround to kill any cpuworker that's been
8196       busy for more than 100 seconds.
8199 Changes in version 0.0.9.7 - 2005-04-01
8200   o Bugfixes on 0.0.9.x:
8201     - Fix another race crash bug (thanks to Glenn Fink for reporting).
8202     - Compare identity to identity, not to nickname, when extending to
8203       a router not already in the directory. This was preventing us from
8204       extending to unknown routers. Oops.
8205     - Make sure to create OS X Tor user in <500 range, so we aren't
8206       creating actual system users.
8207     - Note where connection-that-hasn't-sent-end was marked, and fix
8208       a few really loud instances of this harmless bug (it's fixed more
8209       in 0.1.0.x).
8212 Changes in version 0.0.9.6 - 2005-03-24
8213   o Bugfixes on 0.0.9.x (crashes and asserts):
8214     - Add new end stream reasons to maintainance branch. Fix bug where
8215       reason (8) could trigger an assert.  Prevent bug from recurring.
8216     - Apparently win32 stat wants paths to not end with a slash.
8217     - Fix assert triggers in assert_cpath_layer_ok(), where we were
8218       blowing away the circuit that conn->cpath_layer points to, then
8219       checking to see if the circ is well-formed. Backport check to make
8220       sure we dont use the cpath on a closed connection.
8221     - Prevent circuit_resume_edge_reading_helper() from trying to package
8222       inbufs for marked-for-close streams.
8223     - Don't crash on hup if your options->address has become unresolvable.
8224     - Some systems (like OS X) sometimes accept() a connection and tell
8225       you the remote host is 0.0.0.0:0. If this happens, due to some
8226       other mis-features, we get confused; so refuse the conn for now.
8228   o Bugfixes on 0.0.9.x (other):
8229     - Fix harmless but scary "Unrecognized content encoding" warn message.
8230     - Add new stream error reason: TORPROTOCOL reason means "you are not
8231       speaking a version of Tor I understand; say bye-bye to your stream."
8232     - Be willing to cache directories from up to ROUTER_MAX_AGE seconds
8233       into the future, now that we are more tolerant of skew. This
8234       resolves a bug where a Tor server would refuse to cache a directory
8235       because all the directories it gets are too far in the future;
8236       yet the Tor server never logs any complaints about clock skew.
8237     - Mac packaging magic: make man pages useable, and do not overwrite
8238       existing torrc files.
8239     - Make OS X log happily to /var/log/tor/tor.log
8242 Changes in version 0.0.9.5 - 2005-02-22
8243   o Bugfixes on 0.0.9.x:
8244     - Fix an assert race at exit nodes when resolve requests fail.
8245     - Stop picking unverified dir mirrors--it only leads to misery.
8246     - Patch from Matt Edman to make NT services work better. Service
8247       support is still not compiled into the executable by default.
8248     - Patch from Dmitri Bely so the Tor service runs better under
8249       the win32 SYSTEM account.
8250     - Make tor-resolve actually work (?) on Win32.
8251     - Fix a sign bug when getrlimit claims to have 4+ billion
8252       file descriptors available.
8253     - Stop refusing to start when bandwidthburst == bandwidthrate.
8254     - When create cells have been on the onion queue more than five
8255       seconds, just send back a destroy and take them off the list.
8258 Changes in version 0.0.9.4 - 2005-02-03
8259   o Bugfixes on 0.0.9:
8260     - Fix an assert bug that took down most of our servers: when
8261       a server claims to have 1 GB of bandwidthburst, don't
8262       freak out.
8263     - Don't crash as badly if we have spawned the max allowed number
8264       of dnsworkers, or we're out of file descriptors.
8265     - Block more file-sharing ports in the default exit policy.
8266     - MaxConn is now automatically set to the hard limit of max
8267       file descriptors we're allowed (ulimit -n), minus a few for
8268       logs, etc.
8269     - Give a clearer message when servers need to raise their
8270       ulimit -n when they start running out of file descriptors.
8271     - SGI Compatibility patches from Jan Schaumann.
8272     - Tolerate a corrupt cached directory better.
8273     - When a dirserver hasn't approved your server, list which one.
8274     - Go into soft hibernation after 95% of the bandwidth is used,
8275       not 99%. This is especially important for daily hibernators who
8276       have a small accounting max. Hopefully it will result in fewer
8277       cut connections when the hard hibernation starts.
8278     - Load-balance better when using servers that claim more than
8279       800kB/s of capacity.
8280     - Make NT services work (experimental, only used if compiled in).
8283 Changes in version 0.0.9.3 - 2005-01-21
8284   o Bugfixes on 0.0.9:
8285     - Backport the cpu use fixes from main branch, so busy servers won't
8286       need as much processor time.
8287     - Work better when we go offline and then come back, or when we
8288       run Tor at boot before the network is up. We do this by
8289       optimistically trying to fetch a new directory whenever an
8290       application request comes in and we think we're offline -- the
8291       human is hopefully a good measure of when the network is back.
8292     - Backport some minimal hidserv bugfixes: keep rend circuits open as
8293       long as you keep using them; actually publish hidserv descriptors
8294       shortly after they change, rather than waiting 20-40 minutes.
8295     - Enable Mac startup script by default.
8296     - Fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas.
8297     - When you update AllowUnverifiedNodes or FirewallPorts via the
8298       controller's setconf feature, we were always appending, never
8299       resetting.
8300     - When you update HiddenServiceDir via setconf, it was screwing up
8301       the order of reading the lines, making it fail.
8302     - Do not rewrite a cached directory back to the cache; otherwise we
8303       will think it is recent and not fetch a newer one on startup.
8304     - Workaround for webservers that lie about Content-Encoding: Tor
8305       now tries to autodetect compressed directories and compression
8306       itself. This lets us Proxypass dir fetches through apache.
8309 Changes in version 0.0.9.2 - 2005-01-04
8310   o Bugfixes on 0.0.9 (crashes and asserts):
8311     - Fix an assert on startup when the disk is full and you're logging
8312       to a file.
8313     - If you do socks4 with an IP of 0.0.0.x but *don't* provide a socks4a
8314       style address, then we'd crash.
8315     - Fix an assert trigger when the running-routers string we get from
8316       a dirserver is broken.
8317     - Make worker threads start and run on win32. Now win32 servers
8318       may work better.
8319     - Bandaid (not actually fix, but now it doesn't crash) an assert
8320       where the dns worker dies mysteriously and the main Tor process
8321       doesn't remember anything about the address it was resolving.
8323   o Bugfixes on 0.0.9 (Win32):
8324     - Workaround for brain-damaged __FILE__ handling on MSVC: keep Nick's
8325       name out of the warning/assert messages.
8326     - Fix a superficial "unhandled error on read" bug on win32.
8327     - The win32 installer no longer requires a click-through for our
8328       license, since our Free Software license grants rights but does not
8329       take any away.
8330     - Win32: When connecting to a dirserver fails, try another one
8331       immediately. (This was already working for non-win32 Tors.)
8332     - Stop trying to parse $HOME on win32 when hunting for default
8333       DataDirectory.
8334     - Make tor-resolve.c work on win32 by calling network_init().
8336   o Bugfixes on 0.0.9 (other):
8337     - Make 0.0.9.x build on Solaris again.
8338     - Due to a fencepost error, we were blowing away the \n when reporting
8339       confvalue items in the controller. So asking for multiple config
8340       values at once couldn't work.
8341     - When listing circuits that are pending on an opening OR connection,
8342       if we're an OR we were listing circuits that *end* at us as
8343       being pending on every listener, dns/cpu worker, etc. Stop that.
8344     - Dirservers were failing to create 'running-routers' or 'directory'
8345       strings if we had more than some threshold of routers. Fix them so
8346       they can handle any number of routers.
8347     - Fix a superficial "Duplicate mark for close" bug.
8348     - Stop checking for clock skew for OR connections, even for servers.
8349     - Fix a fencepost error that was chopping off the last letter of any
8350       nickname that is the maximum allowed nickname length.
8351     - Update URLs in log messages so they point to the new website.
8352     - Fix a potential problem in mangling server private keys while
8353       writing to disk (not triggered yet, as far as we know).
8354     - Include the licenses for other free software we include in Tor,
8355       now that we're shipping binary distributions more regularly.
8358 Changes in version 0.0.9.1 - 2004-12-15
8359   o Bugfixes on 0.0.9:
8360     - Make hibernation actually work.
8361     - Make HashedControlPassword config option work.
8362     - When we're reporting event circuit status to a controller,
8363       don't use the stream status code.
8366 Changes in version 0.0.9 - 2004-12-12
8367   o Bugfixes on 0.0.8.1 (Crashes and asserts):
8368     - Catch and ignore SIGXFSZ signals when log files exceed 2GB; our
8369       write() call will fail and we handle it there.
8370     - When we run out of disk space, or other log writing error, don't
8371       crash. Just stop logging to that log and continue.
8372     - Fix isspace() and friends so they still make Solaris happy
8373       but also so they don't trigger asserts on win32.
8374     - Fix assert failure on malformed socks4a requests.
8375     - Fix an assert bug where a hidden service provider would fail if
8376       the first hop of his rendezvous circuit was down.
8377     - Better handling of size_t vs int, so we're more robust on 64
8378       bit platforms.
8380   o Bugfixes on 0.0.8.1 (Win32):
8381     - Make windows sockets actually non-blocking (oops), and handle
8382       win32 socket errors better.
8383     - Fix parse_iso_time on platforms without strptime (eg win32).
8384     - win32: when being multithreaded, leave parent fdarray open.
8385     - Better handling of winsock includes on non-MSV win32 compilers.
8386     - Change our file IO stuff (especially wrt OpenSSL) so win32 is
8387       happier.
8388     - Make unit tests work on win32.
8390   o Bugfixes on 0.0.8.1 (Path selection and streams):
8391     - Calculate timeout for waiting for a connected cell from the time
8392       we sent the begin cell, not from the time the stream started. If
8393       it took a long time to establish the circuit, we would time out
8394       right after sending the begin cell.
8395     - Fix router_compare_addr_to_addr_policy: it was not treating a port
8396       of * as always matching, so we were picking reject *:* nodes as
8397       exit nodes too. Oops.
8398     - When read() failed on a stream, we would close it without sending
8399       back an end. So 'connection refused' would simply be ignored and
8400       the user would get no response.
8401     - Stop a sigpipe: when an 'end' cell races with eof from the app,
8402       we shouldn't hold-open-until-flush if the eof arrived first.
8403     - Let resolve conns retry/expire also, rather than sticking around
8404       forever.
8405     - Fix more dns related bugs: send back resolve_failed and end cells
8406       more reliably when the resolve fails, rather than closing the
8407       circuit and then trying to send the cell. Also attach dummy resolve
8408       connections to a circuit *before* calling dns_resolve(), to fix
8409       a bug where cached answers would never be sent in RESOLVED cells.
8411   o Bugfixes on 0.0.8.1 (Circuits):
8412     - Finally fix a bug that's been plaguing us for a year:
8413       With high load, circuit package window was reaching 0. Whenever
8414       we got a circuit-level sendme, we were reading a lot on each
8415       socket, but only writing out a bit. So we would eventually reach
8416       eof. This would be noticed and acted on even when there were still
8417       bytes sitting in the inbuf.
8418     - Use identity comparison, not nickname comparison, to choose which
8419       half of circuit-ID-space each side gets to use. This is needed
8420       because sometimes we think of a router as a nickname, and sometimes
8421       as a hex ID, and we can't predict what the other side will do.
8423   o Bugfixes on 0.0.8.1 (Other):
8424     - Fix a whole slew of memory leaks.
8425     - Disallow NDEBUG. We don't ever want anybody to turn off debug.
8426     - If we are using select, make sure we stay within FD_SETSIZE.
8427     - When poll() is interrupted, we shouldn't believe the revents values.
8428     - Add a FAST_SMARTLIST define to optionally inline smartlist_get
8429       and smartlist_len, which are two major profiling offenders.
8430     - If do_hup fails, actually notice.
8431     - Flush the log file descriptor after we print "Tor opening log file",
8432       so we don't see those messages days later.
8433     - Hidden service operators now correctly handle version 1 style
8434       INTRODUCE1 cells (nobody generates them still, so not a critical
8435       bug).
8436     - Handle more errnos from accept() without closing the listener.
8437       Some OpenBSD machines were closing their listeners because
8438       they ran out of file descriptors.
8439     - Some people had wrapped their tor client/server in a script
8440       that would restart it whenever it died. This did not play well
8441       with our "shut down if your version is obsolete" code. Now people
8442       don't fetch a new directory if their local cached version is
8443       recent enough.
8444     - Make our autogen.sh work on ksh as well as bash.
8445     - Better torrc example lines for dirbindaddress and orbindaddress.
8446     - Improved bounds checking on parsed ints (e.g. config options and
8447       the ones we find in directories.)
8448     - Stop using separate defaults for no-config-file and
8449       empty-config-file. Now you have to explicitly turn off SocksPort,
8450       if you don't want it open.
8451     - We were starting to daemonize before we opened our logs, so if
8452       there were any problems opening logs, we would complain to stderr,
8453       which wouldn't work, and then mysteriously exit.
8454     - If a verified OR connects to us before he's uploaded his descriptor,
8455       or we verify him and hup but he still has the original TLS
8456       connection, then conn->nickname is still set like he's unverified.
8458   o Code security improvements, inspired by Ilja:
8459     - tor_snprintf wrapper over snprintf with consistent (though not C99)
8460       overflow behavior.
8461     - Replace sprintf with tor_snprintf. (I think they were all safe, but
8462       hey.)
8463     - Replace strcpy/strncpy with strlcpy in more places.
8464     - Avoid strcat; use tor_snprintf or strlcat instead.
8466   o Features (circuits and streams):
8467     - New circuit building strategy: keep a list of ports that we've
8468       used in the past 6 hours, and always try to have 2 circuits open
8469       or on the way that will handle each such port. Seed us with port
8470       80 so web users won't complain that Tor is "slow to start up".
8471     - Make kill -USR1 dump more useful stats about circuits.
8472     - When warning about retrying or giving up, print the address, so
8473       the user knows which one it's talking about.
8474     - If you haven't used a clean circuit in an hour, throw it away,
8475       just to be on the safe side. (This means after 6 hours a totally
8476       unused Tor client will have no circuits open.)
8477     - Support "foo.nickname.exit" addresses, to let Alice request the
8478       address "foo" as viewed by exit node "nickname". Based on a patch
8479       from Geoff Goodell.
8480     - If your requested entry or exit node has advertised bandwidth 0,
8481       pick it anyway.
8482     - Be more greedy about filling up relay cells -- we try reading again
8483       once we've processed the stuff we read, in case enough has arrived
8484       to fill the last cell completely.
8485     - Refuse application socks connections to port 0.
8486     - Use only 0.0.9pre1 and later servers for resolve cells.
8488   o Features (bandwidth):
8489     - Hibernation: New config option "AccountingMax" lets you
8490       set how many bytes per month (in each direction) you want to
8491       allow your server to consume. Rather than spreading those
8492       bytes out evenly over the month, we instead hibernate for some
8493       of the month and pop up at a deterministic time, work until
8494       the bytes are consumed, then hibernate again. Config option
8495       "MonthlyAccountingStart" lets you specify which day of the month
8496       your billing cycle starts on.
8497     - Implement weekly/monthly/daily accounting: now you specify your
8498       hibernation properties by
8499       AccountingMax N bytes|KB|MB|GB|TB
8500       AccountingStart day|week|month [day] HH:MM
8501         Defaults to "month 1 0:00".
8502     - Let bandwidth and interval config options be specified as 5 bytes,
8503       kb, kilobytes, etc; and as seconds, minutes, hours, days, weeks.
8505   o Features (directories):
8506     - New "router-status" line in directory, to better bind each verified
8507       nickname to its identity key.
8508     - Clients can ask dirservers for /dir.z to get a compressed version
8509       of the directory. Only works for servers running 0.0.9, of course.
8510     - Make clients cache directories and use them to seed their router
8511       lists at startup. This means clients have a datadir again.
8512     - Respond to content-encoding headers by trying to uncompress as
8513       appropriate.
8514     - Clients and servers now fetch running-routers; cache
8515       running-routers; compress running-routers; serve compressed
8516       running-routers.z
8517     - Make moria2 advertise a dirport of 80, so people behind firewalls
8518       will be able to get a directory.
8519     - Http proxy support
8520       - Dirservers translate requests for http://%s:%d/x to /x
8521       - You can specify "HttpProxy %s[:%d]" and all dir fetches will
8522         be routed through this host.
8523       - Clients ask for /tor/x rather than /x for new enough dirservers.
8524         This way we can one day coexist peacefully with apache.
8525       - Clients specify a "Host: %s%d" http header, to be compatible
8526         with more proxies, and so running squid on an exit node can work.
8527     - Protect dirservers from overzealous descriptor uploading -- wait
8528       10 seconds after directory gets dirty, before regenerating.
8530   o Features (packages and install):
8531     - Add NSI installer contributed by J Doe.
8532     - Apply NT service patch from Osamu Fujino. Still needs more work.
8533     - Commit VC6 and VC7 workspace/project files.
8534     - Commit a tor.spec for making RPM files, with help from jbash.
8535     - Add contrib/torctl.in contributed by Glenn Fink.
8536     - Make expand_filename handle ~ and ~username.
8537     - Use autoconf to enable largefile support where necessary. Use
8538       ftello where available, since ftell can fail at 2GB.
8539     - Ship src/win32/ in the tarball, so people can use it to build.
8540     - Make old win32 fall back to CWD if SHGetSpecialFolderLocation
8541       is broken.
8543   o Features (ui controller):
8544     - Control interface: a separate program can now talk to your
8545       client/server over a socket, and get/set config options, receive
8546       notifications of circuits and streams starting/finishing/dying,
8547       bandwidth used, etc. The next step is to get some GUIs working.
8548       Let us know if you want to help out. See doc/control-spec.txt .
8549     - Ship a contrib/tor-control.py as an example script to interact
8550       with the control port.
8551     - "tor --hash-password zzyxz" will output a salted password for
8552       use in authenticating to the control interface.
8553     - Implement the control-spec's SAVECONF command, to write your
8554       configuration to torrc.
8555     - Get cookie authentication for the controller closer to working.
8556     - When set_conf changes our server descriptor, upload a new copy.
8557       But don't upload it too often if there are frequent changes.
8559   o Features (config and command-line):
8560     - Deprecate unofficial config option abbreviations, and abbreviations
8561       not on the command line.
8562     - Configuration infrastructure support for warning on obsolete
8563       options.
8564     - Give a slightly more useful output for "tor -h".
8565     - Break DirFetchPostPeriod into:
8566       - DirFetchPeriod for fetching full directory,
8567       - StatusFetchPeriod for fetching running-routers,
8568       - DirPostPeriod for posting server descriptor,
8569       - RendPostPeriod for posting hidden service descriptors.
8570     - New log format in config:
8571       "Log minsev[-maxsev] stdout|stderr|syslog" or
8572       "Log minsev[-maxsev] file /var/foo"
8573     - DirPolicy config option, to let people reject incoming addresses
8574       from their dirserver.
8575     - "tor --list-fingerprint" will list your identity key fingerprint
8576       and then exit.
8577     - Make tor --version --version dump the cvs Id of every file.
8578     - New 'MyFamily nick1,...' config option for a server to
8579       specify other servers that shouldn't be used in the same circuit
8580       with it. Only believed if nick1 also specifies us.
8581     - New 'NodeFamily nick1,nick2,...' config option for a client to
8582       specify nodes that it doesn't want to use in the same circuit.
8583     - New 'Redirectexit pattern address:port' config option for a
8584       server to redirect exit connections, e.g. to a local squid.
8585     - Add "pass" target for RedirectExit, to make it easier to break
8586       out of a sequence of RedirectExit rules.
8587     - Make the dirservers file obsolete.
8588       - Include a dir-signing-key token in directories to tell the
8589         parsing entity which key is being used to sign.
8590       - Remove the built-in bulky default dirservers string.
8591       - New config option "Dirserver %s:%d [fingerprint]", which can be
8592         repeated as many times as needed. If no dirservers specified,
8593         default to moria1,moria2,tor26.
8594       - Make 'Routerfile' config option obsolete.
8595     - Discourage people from setting their dirfetchpostperiod more often
8596       than once per minute.
8598   o Features (other):
8599     - kill -USR2 now moves all logs to loglevel debug (kill -HUP to
8600       get back to normal.)
8601     - Accept *:706 (silc) in default exit policy.
8602     - Implement new versioning format for post 0.1.
8603     - Distinguish between TOR_TLS_CLOSE and TOR_TLS_ERROR, so we can
8604       log more informatively.
8605     - Check clock skew for verified servers, but allow unverified
8606       servers and clients to have any clock skew.
8607     - Make sure the hidden service descriptors are at a random offset
8608       from each other, to hinder linkability.
8609     - Clients now generate a TLS cert too, in preparation for having
8610       them act more like real nodes.
8611     - Add a pure-C tor-resolve implementation.
8612     - Use getrlimit and friends to ensure we can reach MaxConn (currently
8613       1024) file descriptors.
8614     - Raise the max dns workers from 50 to 100.
8617 Changes in version 0.0.8.1 - 2004-10-13
8618   o Bugfixes:
8619     - Fix a seg fault that can be triggered remotely for Tor
8620       clients/servers with an open dirport.
8621     - Fix a rare assert trigger, where routerinfos for entries in
8622       our cpath would expire while we're building the path.
8623     - Fix a bug in OutboundBindAddress so it (hopefully) works.
8624     - Fix a rare seg fault for people running hidden services on
8625       intermittent connections.
8626     - Fix a bug in parsing opt keywords with objects.
8627     - Fix a stale pointer assert bug when a stream detaches and
8628       reattaches.
8629     - Fix a string format vulnerability (probably not exploitable)
8630       in reporting stats locally.
8631     - Fix an assert trigger: sometimes launching circuits can fail
8632       immediately, e.g. because too many circuits have failed recently.
8633     - Fix a compile warning on 64 bit platforms.
8636 Changes in version 0.0.8 - 2004-08-25
8637   o Bugfixes:
8638     - Made our unit tests compile again on OpenBSD 3.5, and tor
8639       itself compile again on OpenBSD on a sparc64.
8640     - We were neglecting milliseconds when logging on win32, so
8641       everything appeared to happen at the beginning of each second.
8642     - Check directory signature _before_ you decide whether you're
8643       you're running an obsolete version and should exit.
8644     - Check directory signature _before_ you parse the running-routers
8645       list to decide who's running.
8646     - Check return value of fclose while writing to disk, so we don't
8647       end up with broken files when servers run out of disk space.
8648     - Port it to SunOS 5.9 / Athena
8649     - Fix two bugs in saving onion keys to disk when rotating, so
8650       hopefully we'll get fewer people using old onion keys.
8651     - Remove our mostly unused -- and broken -- hex_encode()
8652       function. Use base16_encode() instead. (Thanks to Timo Lindfors
8653       for pointing out this bug.)
8654     - Only pick and establish intro points after we've gotten a
8655       directory.
8656     - Fix assert triggers: if the other side returns an address 0.0.0.0,
8657       don't put it into the client dns cache.
8658     - If a begin failed due to exit policy, but we believe the IP
8659       address should have been allowed, switch that router to exitpolicy
8660       reject *:* until we get our next directory.
8662   o Protocol changes:
8663     - 'Extend' relay cell payloads now include the digest of the
8664       intended next hop's identity key. Now we can verify that we're
8665       extending to the right router, and also extend to routers we
8666       hadn't heard of before.
8668   o Features:
8669     - Tor nodes can now act as relays (with an advertised ORPort)
8670       without being manually verified by the dirserver operators.
8671       - Uploaded descriptors of unverified routers are now accepted
8672         by the dirservers, and included in the directory.
8673       - Verified routers are listed by nickname in the running-routers
8674         list; unverified routers are listed as "$<fingerprint>".
8675       - We now use hash-of-identity-key in most places rather than
8676         nickname or addr:port, for improved security/flexibility.
8677       - AllowUnverifiedNodes config option to let circuits choose no-name
8678         routers in entry,middle,exit,introduction,rendezvous positions.
8679         Allow middle and rendezvous positions by default.
8680       - When picking unverified routers, skip those with low uptime and/or
8681         low bandwidth, depending on what properties you care about.
8682       - ClientOnly option for nodes that never want to become servers.
8683     - Directory caching.
8684       - "AuthoritativeDir 1" option for the official dirservers.
8685       - Now other nodes (clients and servers) will cache the latest
8686         directory they've pulled down.
8687       - They can enable their DirPort to serve it to others.
8688       - Clients will pull down a directory from any node with an open
8689         DirPort, and check the signature/timestamp correctly.
8690       - Authoritative dirservers now fetch directories from other
8691         authdirservers, to stay better synced.
8692       - Running-routers list tells who's down also, along with noting
8693         if they're verified (listed by nickname) or unverified (listed
8694         by hash-of-key).
8695       - Allow dirservers to serve running-router list separately.
8696         This isn't used yet.
8697       - You can now fetch $DIRURL/running-routers to get just the
8698         running-routers line, not the whole descriptor list. (But
8699         clients don't use this yet.)
8700     - Clients choose nodes proportional to advertised bandwidth.
8701     - Clients avoid using nodes with low uptime as introduction points.
8702     - Handle servers with dynamic IP addresses: don't just replace
8703       options->Address with the resolved one at startup, and
8704       detect our address right before we make a routerinfo each time.
8705     - 'FascistFirewall' option to pick dirservers and ORs on specific
8706       ports; plus 'FirewallPorts' config option to tell FascistFirewall
8707       which ports are open. (Defaults to 80,443)
8708     - Try other dirservers immediately if the one you try is down. This
8709       should tolerate down dirservers better now.
8710     - ORs connect-on-demand to other ORs
8711       - If you get an extend cell to an OR you're not connected to,
8712         connect, handshake, and forward the create cell.
8713       - The authoritative dirservers stay connected to everybody,
8714         and everybody stays connected to 0.0.7 servers, but otherwise
8715         clients/servers expire unused connections after 5 minutes.
8716     - When servers get a sigint, they delay 30 seconds (refusing new
8717       connections) then exit. A second sigint causes immediate exit.
8718     - File and name management:
8719       - Look for .torrc if no CONFDIR "torrc" is found.
8720       - If no datadir is defined, then choose, make, and secure ~/.tor
8721         as datadir.
8722       - If torrc not found, exitpolicy reject *:*.
8723       - Expands ~/ in filenames to $HOME/ (but doesn't yet expand ~arma).
8724       - If no nickname is defined, derive default from hostname.
8725       - Rename secret key files, e.g. identity.key -> secret_id_key,
8726         to discourage people from mailing their identity key to tor-ops.
8727     - Refuse to build a circuit before the directory has arrived --
8728       it won't work anyway, since you won't know the right onion keys
8729       to use.
8730     - Parse tor version numbers so we can do an is-newer-than check
8731       rather than an is-in-the-list check.
8732     - New socks command 'resolve', to let us shim gethostbyname()
8733       locally.
8734       - A 'tor_resolve' script to access the socks resolve functionality.
8735       - A new socks-extensions.txt doc file to describe our
8736         interpretation and extensions to the socks protocols.
8737     - Add a ContactInfo option, which gets published in descriptor.
8738     - Write tor version at the top of each log file
8739     - New docs in the tarball:
8740       - tor-doc.html.
8741       - Document that you should proxy your SSL traffic too.
8742     - Log a warning if the user uses an unsafe socks variant, so people
8743       are more likely to learn about privoxy or socat.
8744     - Log a warning if you're running an unverified server, to let you
8745       know you might want to get it verified.
8746     - Change the default exit policy to reject the default edonkey,
8747       kazaa, gnutella ports.
8748     - Add replace_file() to util.[ch] to handle win32's rename().
8749     - Publish OR uptime in descriptor (and thus in directory) too.
8750     - Remember used bandwidth (both in and out), and publish 15-minute
8751       snapshots for the past day into our descriptor.
8752     - Be more aggressive about trying to make circuits when the network
8753       has changed (e.g. when you unsuspend your laptop).
8754     - Check for time skew on http headers; report date in response to
8755       "GET /".
8756     - If the entrynode config line has only one node, don't pick it as
8757       an exitnode.
8758     - Add strict{entry|exit}nodes config options. If set to 1, then
8759       we refuse to build circuits that don't include the specified entry
8760       or exit nodes.
8761     - OutboundBindAddress config option, to bind to a specific
8762       IP address for outgoing connect()s.
8763     - End truncated log entries (e.g. directories) with "[truncated]".
8766 Changes in version 0.0.7.3 - 2004-08-12
8767   o Stop dnsworkers from triggering an assert failure when you
8768     ask them to resolve the host "".
8771 Changes in version 0.0.7.2 - 2004-07-07
8772   o A better fix for the 0.0.0.0 problem, that will hopefully
8773     eliminate the remaining related assertion failures.
8776 Changes in version 0.0.7.1 - 2004-07-04
8777   o When an address resolves to 0.0.0.0, treat it as a failed resolve,
8778     since internally we use 0.0.0.0 to signify "not yet resolved".
8781 Changes in version 0.0.7 - 2004-06-07
8782   o Fixes for crashes and other obnoxious bugs:
8783     - Fix an epipe bug: sometimes when directory connections failed
8784       to connect, we would give them a chance to flush before closing
8785       them.
8786     - When we detached from a circuit because of resolvefailed, we
8787       would immediately try the same circuit twice more, and then
8788       give up on the resolve thinking we'd tried three different
8789       exit nodes.
8790     - Limit the number of intro circuits we'll attempt to build for a
8791       hidden service per 15-minute period.
8792     - Check recommended-software string *early*, before actually parsing
8793       the directory. Thus we can detect an obsolete version and exit,
8794       even if the new directory format doesn't parse.
8795   o Fixes for security bugs:
8796     - Remember which nodes are dirservers when you startup, and if a
8797       random OR enables his dirport, don't automatically assume he's
8798       a trusted dirserver.
8799   o Other bugfixes:
8800     - Directory connections were asking the wrong poll socket to
8801       start writing, and not asking themselves to start writing.
8802     - When we detached from a circuit because we sent a begin but
8803       didn't get a connected, we would use it again the first time;
8804       but after that we would correctly switch to a different one.
8805     - Stop warning when the first onion decrypt attempt fails; they
8806       will sometimes legitimately fail now that we rotate keys.
8807     - Override unaligned-access-ok check when $host_cpu is ia64 or
8808       arm. Apparently they allow it but the kernel whines.
8809     - Dirservers try to reconnect periodically too, in case connections
8810       have failed.
8811     - Fix some memory leaks in directory servers.
8812     - Allow backslash in Win32 filenames.
8813     - Made Tor build complain-free on FreeBSD, hopefully without
8814       breaking other BSD builds. We'll see.
8815     - Check directory signatures based on name of signer, not on whom
8816       we got the directory from. This will let us cache directories more
8817       easily.
8818     - Rotate dnsworkers and cpuworkers on SIGHUP, so they get new config
8819       settings too.
8820   o Features:
8821     - Doxygen markup on all functions and global variables.
8822     - Make directory functions update routerlist, not replace it. So
8823       now directory disagreements are not so critical a problem.
8824     - Remove the upper limit on number of descriptors in a dirserver's
8825       directory (not that we were anywhere close).
8826     - Allow multiple logfiles at different severity ranges.
8827     - Allow *BindAddress to specify ":port" rather than setting *Port
8828       separately. Allow multiple instances of each BindAddress config
8829       option, so you can bind to multiple interfaces if you want.
8830     - Allow multiple exit policy lines, which are processed in order.
8831       Now we don't need that huge line with all the commas in it.
8832     - Enable accept/reject policies on SOCKS connections, so you can bind
8833       to 0.0.0.0 but still control who can use your OP.
8834     - Updated the man page to reflect these features.
8837 Changes in version 0.0.6.2 - 2004-05-16
8838   o Our integrity-checking digest was checking only the most recent cell,
8839     not the previous cells like we'd thought.
8840     Thanks to Stefan Mark for finding the flaw!
8843 Changes in version 0.0.6.1 - 2004-05-06
8844   o Fix two bugs in our AES counter-mode implementation (this affected
8845     onion-level stream encryption, but not TLS-level). It turns
8846     out we were doing something much more akin to a 16-character
8847     polyalphabetic cipher. Oops.
8848     Thanks to Stefan Mark for finding the flaw!
8849   o Retire moria3 as a directory server, and add tor26 as a directory
8850     server.
8853 Changes in version 0.0.6 - 2004-05-02
8854   o Features:
8855     - Hidden services and rendezvous points are implemented. Go to
8856       http://6sxoyfb3h2nvok2d.onion/ for an index of currently available
8857       hidden services. (This only works via a socks4a proxy such as
8858       Privoxy, and currently it's quite slow.)
8859     - We now rotate link (tls context) keys and onion keys.
8860     - CREATE cells now include oaep padding, so you can tell
8861       if you decrypted them correctly.
8862     - Retry stream correctly when we fail to connect because of
8863       exit-policy-reject (should try another) or can't-resolve-address.
8864     - When we hup a dirserver and we've *removed* a server from the
8865       approved-routers list, now we remove that server from the
8866       in-memory directories too.
8867     - Add bandwidthburst to server descriptor.
8868     - Directories now say which dirserver signed them.
8869     - Use a tor_assert macro that logs failed assertions too.
8870     - Since we don't support truncateds much, don't bother sending them;
8871       just close the circ.
8872     - Fetch randomness from /dev/urandom better (not via fopen/fread)
8873     - Better debugging for tls errors
8874     - Set Content-Type on the directory and hidserv descriptor.
8875     - Remove IVs from cipher code, since AES-ctr has none.
8876   o Bugfixes:
8877     - Fix an assert trigger for exit nodes that's been plaguing us since
8878       the days of 0.0.2prexx (thanks weasel!)
8879     - Fix a bug where we were closing tls connections intermittently.
8880       It turns out openssl keeps its errors around -- so if an error
8881       happens, and you don't ask about it, and then another openssl
8882       operation happens and succeeds, and you ask if there was an error,
8883       it tells you about the first error.
8884     - Fix a bug that's been lurking since 27 may 03 (!)
8885       When passing back a destroy cell, we would use the wrong circ id.
8886     - Don't crash if a conn that sent a begin has suddenly lost its circuit.
8887     - Some versions of openssl have an SSL_pending function that erroneously
8888       returns bytes when there is a non-application record pending.
8889     - Win32 fixes. Tor now compiles on win32 with no warnings/errors.
8890       o We were using an array of length zero in a few places.
8891       o Win32's gethostbyname can't resolve an IP to an IP.
8892       o Win32's close can't close a socket.
8893       o Handle windows socket errors correctly.
8894   o Portability:
8895     - check for <sys/limits.h> so we build on FreeBSD again, and
8896       <machine/limits.h> for NetBSD.
8899 Changes in version 0.0.5 - 2004-03-30
8900   o Install torrc as torrc.sample -- we no longer clobber your
8901     torrc. (Woo!)
8902   o Fix mangled-state bug in directory fetching (was causing sigpipes).
8903   o Only build circuits after we've fetched the directory: clients were
8904     using only the directory servers before they'd fetched a directory.
8905     This also means longer startup time; so it goes.
8906   o Fix an assert trigger where an OP would fail to handshake, and we'd
8907     expect it to have a nickname.
8908   o Work around a tsocks bug: do a socks reject when AP connection dies
8909     early, else tsocks goes into an infinite loop.
8910   o Hold socks connection open until reply is flushed (if possible)
8911   o Make exit nodes resolve IPs to IPs immediately, rather than asking
8912     the dns farm to do it.
8913   o Fix c99 aliasing warnings in rephist.c
8914   o Don't include server descriptors that are older than 24 hours in the
8915     directory.
8916   o Give socks 'reject' replies their whole 15s to attempt to flush,
8917     rather than seeing the 60s timeout and assuming the flush had failed.
8918   o Clean automake droppings from the cvs repository
8919   o Add in a 'notice' log level for things the operator should hear
8920     but that aren't warnings
8923 Changes in version 0.0.4 - 2004-03-26
8924   o When connecting to a dirserver or OR and the network is down,
8925     we would crash.
8928 Changes in version 0.0.3 - 2004-03-26
8929   o Warn and fail if server chose a nickname with illegal characters
8930   o Port to Solaris and Sparc:
8931     - include missing header fcntl.h
8932     - have autoconf find -lsocket -lnsl automatically
8933     - deal with hardware word alignment
8934     - make uname() work (solaris has a different return convention)
8935     - switch from using signal() to sigaction()
8936   o Preliminary work on reputation system:
8937     - Keep statistics on success/fail of connect attempts; they're published
8938       by kill -USR1 currently.
8939     - Add a RunTesting option to try to learn link state by creating test
8940       circuits, even when SocksPort is off.
8941     - Remove unused open circuits when there are too many.
8944 Changes in version 0.0.2 - 2004-03-19
8945     - Include strlcpy and strlcat for safer string ops
8946     - define INADDR_NONE so we compile (but still not run) on solaris
8949 Changes in version 0.0.2pre27 - 2004-03-14
8950   o Bugfixes:
8951     - Allow internal tor networks (we were rejecting internal IPs,
8952       now we allow them if they're set explicitly).
8953     - And fix a few endian issues.
8956 Changes in version 0.0.2pre26 - 2004-03-14
8957   o New features:
8958     - If a stream times out after 15s without a connected cell, don't
8959       try that circuit again: try a new one.
8960     - Retry streams at most 4 times. Then give up.
8961     - When a dirserver gets a descriptor from an unknown router, it
8962       logs its fingerprint (so the dirserver operator can choose to
8963       accept it even without mail from the server operator).
8964     - Inform unapproved servers when we reject their descriptors.
8965     - Make tor build on Windows again. It works as a client, who knows
8966       about as a server.
8967     - Clearer instructions in the torrc for how to set up a server.
8968     - Be more efficient about reading fd's when our global token bucket
8969       (used for rate limiting) becomes empty.
8970   o Bugfixes:
8971     - Stop asserting that computers always go forward in time. It's
8972       simply not true.
8973     - When we sent a cell (e.g. destroy) and then marked an OR connection
8974       expired, we might close it before finishing a flush if the other
8975       side isn't reading right then.
8976     - Don't allow dirservers to start if they haven't defined
8977       RecommendedVersions
8978     - We were caching transient dns failures. Oops.
8979     - Prevent servers from publishing an internal IP as their address.
8980     - Address a strcat vulnerability in circuit.c
8983 Changes in version 0.0.2pre25 - 2004-03-04
8984   o New features:
8985     - Put the OR's IP in its router descriptor, not its fqdn. That way
8986       we'll stop being stalled by gethostbyname for nodes with flaky dns,
8987       e.g. poblano.
8988   o Bugfixes:
8989     - If the user typed in an address that didn't resolve, the server
8990       crashed.
8993 Changes in version 0.0.2pre24 - 2004-03-03
8994   o Bugfixes:
8995     - Fix an assertion failure in dns.c, where we were trying to dequeue
8996       a pending dns resolve even if it wasn't pending
8997     - Fix a spurious socks5 warning about still trying to write after the
8998       connection is finished.
8999     - Hold certain marked_for_close connections open until they're finished
9000       flushing, rather than losing bytes by closing them too early.
9001     - Correctly report the reason for ending a stream
9002     - Remove some duplicate calls to connection_mark_for_close
9003     - Put switch_id and start_daemon earlier in the boot sequence, so it
9004       will actually try to chdir() to options.DataDirectory
9005     - Make 'make test' exit(1) if a test fails; fix some unit tests
9006     - Make tor fail when you use a config option it doesn't know about,
9007       rather than warn and continue.
9008     - Make --version work
9009     - Bugfixes on the rpm spec file and tor.sh, so it's more up to date
9012 Changes in version 0.0.2pre23 - 2004-02-29
9013   o New features:
9014     - Print a statement when the first circ is finished, so the user
9015       knows it's working.
9016     - If a relay cell is unrecognized at the end of the circuit,
9017       send back a destroy. (So attacks to mutate cells are more
9018       clearly thwarted.)
9019     - New config option 'excludenodes' to avoid certain nodes for circuits.
9020     - When it daemonizes, it chdir's to the DataDirectory rather than "/",
9021       so you can collect coredumps there.
9022  o Bugfixes:
9023     - Fix a bug in tls flushing where sometimes data got wedged and
9024       didn't flush until more data got sent. Hopefully this bug was
9025       a big factor in the random delays we were seeing.
9026     - Make 'connected' cells include the resolved IP, so the client
9027       dns cache actually gets populated.
9028     - Disallow changing from ORPort=0 to ORPort>0 on hup.
9029     - When we time-out on a stream and detach from the circuit, send an
9030       end cell down it first.
9031     - Only warn about an unknown router (in exitnodes, entrynodes,
9032       excludenodes) after we've fetched a directory.
9035 Changes in version 0.0.2pre22 - 2004-02-26
9036   o New features:
9037     - Servers publish less revealing uname information in descriptors.
9038     - More memory tracking and assertions, to crash more usefully when
9039       errors happen.
9040     - If the default torrc isn't there, just use some default defaults.
9041       Plus provide an internal dirservers file if they don't have one.
9042     - When the user tries to use Tor as an http proxy, give them an http
9043       501 failure explaining that we're a socks proxy.
9044     - Dump a new router.desc on hup, to help confused people who change
9045       their exit policies and then wonder why router.desc doesn't reflect
9046       it.
9047     - Clean up the generic tor.sh init script that we ship with.
9048   o Bugfixes:
9049     - If the exit stream is pending on the resolve, and a destroy arrives,
9050       then the stream wasn't getting removed from the pending list. I
9051       think this was the one causing recent server crashes.
9052     - Use a more robust poll on OSX 10.3, since their poll is flaky.
9053     - When it couldn't resolve any dirservers, it was useless from then on.
9054       Now it reloads the RouterFile (or default dirservers) if it has no
9055       dirservers.
9056     - Move the 'tor' binary back to /usr/local/bin/ -- it turns out
9057       many users don't even *have* a /usr/local/sbin/.
9060 Changes in version 0.0.2pre21 - 2004-02-18
9061   o New features:
9062     - There's a ChangeLog file that actually reflects the changelog.
9063     - There's a 'torify' wrapper script, with an accompanying
9064       tor-tsocks.conf, that simplifies the process of using tsocks for
9065       tor. It even has a man page.
9066     - The tor binary gets installed to sbin rather than bin now.
9067     - Retry streams where the connected cell hasn't arrived in 15 seconds
9068     - Clean up exit policy handling -- get the default out of the torrc,
9069       so we can update it without forcing each server operator to fix
9070       his/her torrc.
9071     - Allow imaps and pop3s in default exit policy
9072   o Bugfixes:
9073     - Prevent picking middleman nodes as the last node in the circuit
9076 Changes in version 0.0.2pre20 - 2004-01-30
9077   o New features:
9078     - We now have a deb package, and it's in debian unstable. Go to
9079       it, apt-getters. :)
9080     - I've split the TotalBandwidth option into BandwidthRate (how many
9081       bytes per second you want to allow, long-term) and
9082       BandwidthBurst (how many bytes you will allow at once before the cap
9083       kicks in).  This better token bucket approach lets you, say, set
9084       BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
9085       performance while not exceeding your monthly bandwidth quota.
9086     - Push out a tls record's worth of data once you've got it, rather
9087       than waiting until you've read everything waiting to be read. This
9088       may improve performance by pipelining better. We'll see.
9089     - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
9090       from failed circuits (if they haven't been connected yet) and attach
9091       to new ones.
9092     - Expire old streams that haven't managed to connect. Some day we'll
9093       have them reattach to new circuits instead.
9095   o Bugfixes:
9096     - Fix several memory leaks that were causing servers to become bloated
9097       after a while.
9098     - Fix a few very rare assert triggers. A few more remain.
9099     - Setuid to User _before_ complaining about running as root.
9102 Changes in version 0.0.2pre19 - 2004-01-07
9103   o Bugfixes:
9104     - Fix deadlock condition in dns farm. We were telling a child to die by
9105       closing the parent's file descriptor to him. But newer children were
9106       inheriting the open file descriptor from the parent, and since they
9107       weren't closing it, the socket never closed, so the child never read
9108       eof, so he never knew to exit. Similarly, dns workers were holding
9109       open other sockets, leading to all sorts of chaos.
9110     - New cleaner daemon() code for forking and backgrounding.
9111     - If you log to a file, it now prints an entry at the top of the
9112       logfile so you know it's working.
9113     - The onionskin challenge length was 30 bytes longer than necessary.
9114     - Started to patch up the spec so it's not quite so out of date.
9117 Changes in version 0.0.2pre18 - 2004-01-02
9118   o Bugfixes:
9119     - Fix endian issues with the 'integrity' field in the relay header.
9120     - Fix a potential bug where connections in state
9121       AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
9124 Changes in version 0.0.2pre17 - 2003-12-30
9125   o Bugfixes:
9126     - Made --debuglogfile (or any second log file, actually) work.
9127     - Resolved an edge case in get_unique_circ_id_by_conn where a smart
9128       adversary could force us into an infinite loop.
9130   o Features:
9131     - Each onionskin handshake now includes a hash of the computed key,
9132       to prove the server's identity and help perfect forward secrecy.
9133     - Changed cell size from 256 to 512 bytes (working toward compatibility
9134       with MorphMix).
9135     - Changed cell length to 2 bytes, and moved it to the relay header.
9136     - Implemented end-to-end integrity checking for the payloads of
9137       relay cells.
9138     - Separated streamid from 'recognized' (otherwise circuits will get
9139       messed up when we try to have streams exit from the middle). We
9140       use the integrity-checking to confirm that a cell is addressed to
9141       this hop.
9142     - Randomize the initial circid and streamid values, so an adversary who
9143       breaks into a node can't learn how many circuits or streams have
9144       been made so far.
9147 Changes in version 0.0.2pre16 - 2003-12-14
9148   o Bugfixes:
9149     - Fixed a bug that made HUP trigger an assert
9150     - Fixed a bug where a circuit that immediately failed wasn't being
9151       counted as a failed circuit in counting retries.
9153   o Features:
9154     - Now we close the circuit when we get a truncated cell: otherwise we're
9155       open to an anonymity attack where a bad node in the path truncates
9156       the circuit and then we open streams at him.
9157     - Add port ranges to exit policies
9158     - Add a conservative default exit policy
9159     - Warn if you're running tor as root
9160     - on HUP, retry OR connections and close/rebind listeners
9161     - options.EntryNodes: try these nodes first when picking the first node
9162     - options.ExitNodes: if your best choices happen to include any of
9163       your preferred exit nodes, you choose among just those preferred
9164       exit nodes.
9165     - options.ExcludedNodes: nodes that are never picked in path building
9168 Changes in version 0.0.2pre15 - 2003-12-03
9169   o Robustness and bugfixes:
9170     - Sometimes clients would cache incorrect DNS resolves, which would
9171       really screw things up.
9172     - An OP that goes offline would slowly leak all its sockets and stop
9173       working.
9174     - A wide variety of bugfixes in exit node selection, exit policy
9175       handling, and processing pending streams when a new circuit is
9176       established.
9177     - Pick nodes for a path only from those the directory says are up
9178     - Choose randomly from all running dirservers, not always the first one
9179     - Increase allowed http header size for directory fetch.
9180     - Stop writing to stderr (if we're daemonized it will be closed).
9181     - Enable -g always, so cores will be more useful to me.
9182     - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
9184   o Documentation:
9185     - Wrote a man page. It lists commonly used options.
9187   o Configuration:
9188     - Change default loglevel to warn.
9189     - Make PidFile default to null rather than littering in your CWD.
9190     - OnionRouter config option is now obsolete. Instead it just checks
9191       ORPort>0.
9192     - Moved to a single unified torrc file for both clients and servers.
9195 Changes in version 0.0.2pre14 - 2003-11-29
9196   o Robustness and bugfixes:
9197     - Force the admin to make the DataDirectory himself
9198       - to get ownership/permissions right
9199       - so clients no longer make a DataDirectory and then never use it
9200     - fix bug where a client who was offline for 45 minutes would never
9201       pull down a directory again
9202     - fix (or at least hide really well) the dns assert bug that was
9203       causing server crashes
9204     - warnings and improved robustness wrt clockskew for certs
9205     - use the native daemon(3) to daemonize, when available
9206     - exit if bind() fails
9207     - exit if neither socksport nor orport is defined
9208     - include our own tor_timegm (Win32 doesn't have its own)
9209     - bugfix for win32 with lots of connections
9210     - fix minor bias in PRNG
9211     - make dirserver more robust to corrupt cached directory
9213   o Documentation:
9214     - Wrote the design document (woo)
9216   o Circuit building and exit policies:
9217     - Circuits no longer try to use nodes that the directory has told them
9218       are down.
9219     - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
9220       bitcounts (18.0.0.0/8).
9221     - Make AP connections standby for a circuit if no suitable circuit
9222       exists, rather than failing
9223     - Circuits choose exit node based on addr/port, exit policies, and
9224       which AP connections are standing by
9225     - Bump min pathlen from 2 to 3
9226     - Relay end cells have a payload to describe why the stream ended.
9227     - If the stream failed because of exit policy, try again with a new
9228       circuit.
9229     - Clients have a dns cache to remember resolved addresses.
9230     - Notice more quickly when we have no working circuits
9232   o Configuration:
9233     - APPort is now called SocksPort
9234     - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
9235       where to bind
9236     - RecommendedVersions is now a config variable rather than
9237       hardcoded (for dirservers)
9238     - Reloads config on HUP
9239     - Usage info on -h or --help
9240     - If you set User and Group config vars, it'll setu/gid to them.
9242 Changes in version 0.0.2pre13 - 2003-10-19
9243   o General stability:
9244     - SSL_write no longer fails when it returns WANTWRITE and the number
9245       of bytes in the buf has changed by the next SSL_write call.
9246     - Fix segfault fetching directory when network is down
9247     - Fix a variety of minor memory leaks
9248     - Dirservers reload the fingerprints file on HUP, so I don't have
9249       to take down the network when I approve a new router
9250     - Default server config file has explicit Address line to specify fqdn
9252   o Buffers:
9253     - Buffers grow and shrink as needed (Cut process size from 20M to 2M)
9254     - Make listener connections not ever alloc bufs
9256   o Autoconf improvements:
9257     - don't clobber an external CFLAGS in ./configure
9258     - Make install now works
9259     - create var/lib/tor on make install
9260     - autocreate a tor.sh initscript to help distribs
9261     - autocreate the torrc and sample-server-torrc with correct paths
9263   o Log files and Daemonizing now work:
9264     - If --DebugLogFile is specified, log to it at -l debug
9265     - If --LogFile is specified, use it instead of commandline
9266     - If --RunAsDaemon is set, tor forks and backgrounds on startup