If we are using select, make sure we stay within FD_SETSIZE.
[tor.git] / ChangeLog
blob8050b4a0854504fa6b191814b4089fc3fb1b183c
1 Changes so far in 0.0.9:
2 rc5:
3   o Bugfixes on 0.0.8.1:
4     - Disallow NDEBUG. We don't ever want anybody to turn off debug.
5     - Let resolve conns retry/expire also, rather than sticking around
6       forever.
8   o Bugfixes on 0.0.9pre:
9     - Fix integer underflow in tor_vsnprintf() that may be exploitable;
10       thanks to Ilja van Sprundel for finding it. People running 0.0.9pre5
11       or later might want to upgrade while we investigate.
12     - If anybody set DirFetchPostPeriod, give them StatuFetchPeriod
13       instead.  Impose minima and maxima for all *Period options; impose
14       even tighter maxima for fetching if we are a caching dirserver.
15       Clip rather than rejecting.
16     - Fetch cached running-routers from servers that serve it (that is,
17       authdirservers, and servers running 0.0.9rc5-cvs or later.)
19   o Features:
20     - Accept *:706 (silc) in default exit policy.
21     - Implement new versioning format for post 0.1.
22     - Support "foo.nickname.exit" addresses, to let Alice request the
23       address "foo" as viewed by exit node "nickname". Based on a patch
24       by Geoff Goodell.
25     - Make tor --version --version dump the cvs $Id$ of every file.
27 rc4:
28   o Bugfixes on 0.0.8.1:
29     - Make windows sockets actually non-blocking (oops), and handle
30       win32 socket errors better.
32   o Bugfixes on 0.0.9rc1:
33     - Actually catch the -USR2 signal.
35 rc3:
36   o Bugfixes on 0.0.8.1:
37     - Flush the log file descriptor after we print "Tor opening log file",
38       so we don't see those messages days later.
40   o Bugfixes on 0.0.9rc1:
41     - Make tor-resolve work again.
42     - Avoid infinite loop in tor-resolve if tor hangs up on it.
43     - Fix an assert trigger for clients/servers handling resolves.
45 rc2:
46   o Bugfixes on 0.0.9rc1:
47     - I broke socks5 support while fixing the eof bug.
48     - Allow unitless bandwidths and intervals; they default to bytes
49       and seconds.
50     - New servers don't start out hibernating; they are active until
51       they run out of bytes, so they have a better estimate of how
52       long it takes, and so their operators can know they're working.
54 rc1:
55   o Bugfixes on 0.0.8.1:
56     - Finally fix a bug that's been plaguing us for a year:
57       With high load, circuit package window was reaching 0. Whenever
58       we got a circuit-level sendme, we were reading a lot on each
59       socket, but only writing out a bit. So we would eventually reach
60       eof. This would be noticed and acted on even when there were still
61       bytes sitting in the inbuf.
62     - When poll() is interrupted, we shouldn't believe the revents values.
64   o Bugfixes on 0.0.9pre6:
65     - Fix hibernate bug that caused pre6 to be broken.
66     - Don't keep rephist info for routers that haven't had activity for
67       24 hours. (This matters now that clients have keys, since we track
68       them too.)
69     - Never call close_temp_logs while validating log options.
70     - Fix backslash-escaping on tor.sh.in and torctl.in.
72   o Features:
73     - Implement weekly/monthly/daily accounting: now you specify your
74       hibernation properties by
75       AccountingMax N bytes|KB|MB|GB|TB
76       AccountingStart day|week|month [day] HH:MM
77         Defaults to "month 1 0:00".
78     - Let bandwidth and interval config options be specified as 5 bytes,
79       kb, kilobytes, etc; and as seconds, minutes, hours, days, weeks.
80     - kill -USR2 now moves all logs to loglevel debug (kill -HUP to
81       get back to normal.)
82     - If your requested entry or exit node has advertised bandwidth 0,
83       pick it anyway.
84     - Be more greedy about filling up relay cells -- we try reading again
85       once we've processed the stuff we read, in case enough has arrived
86       to fill the last cell completely.
87     - Apply NT service patch from Osamu Fujino. Still needs more work.
89 pre6:
90   o Bugfixes on 0.0.8.1:
91     - Fix assert failure on malformed socks4a requests.
92     - Use identity comparison, not nickname comparison, to choose which
93       half of circuit-ID-space each side gets to use. This is needed
94       because sometimes we think of a router as a nickname, and sometimes
95       as a hex ID, and we can't predict what the other side will do.
96     - Catch and ignore SIGXFSZ signals when log files exceed 2GB; our
97       write() call will fail and we handle it there.
98     - Add a FAST_SMARTLIST define to optionally inline smartlist_get
99       and smartlist_len, which are two major profiling offenders.
101   o Bugfixes on 0.0.9pre5:
102     - Fix a bug in read_all that was corrupting config files on windows.
103     - When we're raising the max number of open file descriptors to
104       'unlimited', don't log that we just raised it to '-1'.
105     - Include event code with events, as required by control-spec.txt.
106     - Don't give a fingerprint when clients do --list-fingerprint:
107       it's misleading, because it will never be the same again.
108     - Stop using strlcpy in tor_strndup, since it was slowing us
109       down a lot.
110     - Remove warn on startup about missing cached-directory file.
111     - Make kill -USR1 work again.
112     - Hibernate if we start tor during the "wait for wakeup-time" phase
113       of an accounting interval. Log our hibernation plans better.
114     - Authoritative dirservers now also cache their directory, so they
115       have it on start-up.
117   o Features:
118     - Fetch running-routers; cache running-routers; compress
119       running-routers; serve compressed running-routers.z
120     - Add NSI installer script contributed by J Doe.
121     - Commit VC6 and VC7 workspace/project files.
122     - Commit a tor.spec for making RPM files, with help from jbash.
123     - Add contrib/torctl.in contributed by Glenn Fink.
124     - Implement the control-spec's SAVECONF command, to write your
125       configuration to torrc.
126     - Get cookie authentication for the controller closer to working.
127     - Include control-spec.txt in the tarball.
128     - When set_conf changes our server descriptor, upload a new copy.
129       But don't upload it too often if there are frequent changes.
130     - Document authentication config in man page, and document signals
131       we catch.
132     - Clean up confusing parts of man page and torrc.sample.
133     - Make expand_filename handle ~ and ~username.
134     - Use autoconf to enable largefile support where necessary. Use
135       ftello where available, since ftell can fail at 2GB.
136     - Distinguish between TOR_TLS_CLOSE and TOR_TLS_ERROR, so we can
137       log more informatively.
138     - Give a slightly more useful output for "tor -h".
139     - Refuse application socks connections to port 0.
140     - Check clock skew for verified servers, but allow unverified
141       servers and clients to have any clock skew.
142     - Break DirFetchPostPeriod into:
143       - DirFetchPeriod for fetching full directory,
144       - StatusFetchPeriod for fetching running-routers,
145       - DirPostPeriod for posting server descriptor,
146       - RendPostPeriod for posting hidden service descriptors.
147     - Make sure the hidden service descriptors are at a random offset
148       from each other, to hinder linkability.
150 pre5:
151   o Bugfixes on 0.0.8.1:
152     - Fix an assert bug where a hidden service provider would fail if
153       the first hop of his rendezvous circuit was down.
154     - Hidden service operators now correctly handle version 1 style
155       INTRODUCE1 cells (nobody generates them still, so not a critical
156       bug).
157     - If do_hup fails, actually notice.
158     - Handle more errnos from accept() without closing the listener.
159       Some OpenBSD machines were closing their listeners because
160       they ran out of file descriptors.
161     - Better handling of winsock includes on non-MSV win32 compilers.
162     - Some people had wrapped their tor client/server in a script
163       that would restart it whenever it died. This did not play well
164       with our "shut down if your version is obsolete" code. Now people
165       don't fetch a new directory if their local cached version is
166       recent enough.
167     - Make our autogen.sh work on ksh as well as bash.
169   o Bugfixes on 0.0.9pre4:
170     - Fix a seg fault in unit tests (doesn't affect main program).
171     - Send resolve cells to exit routers that are running a new
172       enough version of the resolve code to work right.
174   o Major Features:
175     - Hibernation: New config option "AccountingMaxKB" lets you
176       set how many KBytes per month you want to allow your server to
177       consume. Rather than spreading those bytes out evenly over the
178       month, we instead hibernate for some of the month and pop up
179       at a deterministic time, work until the bytes are consumed, then
180       hibernate again. Config option "MonthlyAccountingStart" lets you
181       specify which day of the month your billing cycle starts on.
182     - Control interface: a separate program can now talk to your
183       client/server over a socket, and get/set config options, receive
184       notifications of circuits and streams starting/finishing/dying,
185       bandwidth used, etc. The next step is to get some GUIs working.
186       Let us know if you want to help out. See doc/control-spec.txt .
187     - Ship a contrib/tor-control.py as an example script to interact
188       with the control port.
189     - "tor --hash-password zzyxz" will output a salted password for
190       use in authenticating to the control interface.
191     - New log format in config:
192       "Log minsev[-maxsev] stdout|stderr|syslog" or
193       "Log minsev[-maxsev] file /var/foo"
195   o Minor Features:
196     - DirPolicy config option, to let people reject incoming addresses
197       from their dirserver.
198     - "tor --list-fingerprint" will list your identity key fingerprint
199       and then exit.
200     - Add "pass" target for RedirectExit, to make it easier to break
201       out of a sequence of RedirectExit rules.
202     - Clients now generate a TLS cert too, in preparation for having
203       them act more like real nodes.
204     - Ship src/win32/ in the tarball, so people can use it to build.
205     - Make old win32 fall back to CWD if SHGetSpecialFolderLocation
206       is broken.
207     - New "router-status" line in directory, to better bind each verified
208       nickname to its identity key.
209     - Deprecate unofficial config option abbreviations, and abbreviations
210       not on the command line.
211     - Add a pure-C tor-resolve implementation.
212     - Use getrlimit and friends to ensure we can reach MaxConn (currently
213       1024) file descriptors.
215   o Code security improvements, inspired by Ilja:
216     - Replace sprintf with snprintf. (I think they were all safe, but
217       hey.)
218     - Replace strcpy/strncpy with strlcpy in more places.
219     - Avoid strcat; use snprintf or strlcat instead.
220     - snprintf wrapper with consistent (though not C99) overflow behavior.
222 pre4:
223   o Bugfixes on 0.0.9pre3:
224     - Ignore fascistfirewall when uploading/downloading hidden service
225       descriptors, since we go through Tor for those; and when using
226       an HttpProxy, since we assume it can reach them all.
227     - When looking for an authoritative dirserver, use only the ones
228       configured at boot. Don't bother looking in the directory.
229     - If the server doesn't specify an exit policy, use the real default
230       exit policy, not reject *:*.
231     - The rest of the fix for get_default_conf_file() on older win32.
232     - Make 'Routerfile' config option obsolete.
234   o Features:
235     - New 'MyFamily nick1,...' config option for a server to
236       specify other servers that shouldn't be used in the same circuit
237       with it. Only believed if nick1 also specifies us.
238     - New 'NodeFamily nick1,nick2,...' config option for a client to
239       specify nodes that it doesn't want to use in the same circuit.
240     - New 'Redirectexit pattern address:port' config option for a
241       server to redirect exit connections, e.g. to a local squid.
243 pre3:
244   o Bugfixes on 0.0.8.1:
245     - Better torrc example lines for dirbindaddress and orbindaddress.
246     - Improved bounds checking on parsed ints (e.g. config options and
247       the ones we find in directories.)
248     - Better handling of size_t vs int, so we're more robust on 64
249       bit platforms.
250     - Fix the rest of the bug where a newly started OR would appear
251       as unverified even after we've added his fingerprint and hupped
252       the dirserver.
253     - Fix a bug from 0.0.7: when read() failed on a stream, we would
254       close it without sending back an end. So 'connection refused'
255       would simply be ignored and the user would get no response.
257   o Bugfixes on 0.0.9pre2:
258     - Serving the cached-on-disk directory to people is bad. We now
259       provide no directory until we've fetched a fresh one.
260     - Workaround for bug on windows where cached-directories get crlf
261       corruption.
262     - Make get_default_conf_file() work on older windows too.
263     - If we write a *:* exit policy line in the descriptor, don't write
264       any more exit policy lines.
266   o Features:
267     - Use only 0.0.9pre1 and later servers for resolve cells.
268     - Make the dirservers file obsolete.
269       - Include a dir-signing-key token in directories to tell the
270         parsing entity which key is being used to sign.
271       - Remove the built-in bulky default dirservers string.
272       - New config option "Dirserver %s:%d [fingerprint]", which can be
273         repeated as many times as needed. If no dirservers specified,
274         default to moria1,moria2,tor26.
275     - Make moria2 advertise a dirport of 80, so people behind firewalls
276       will be able to get a directory.
277     - Http proxy support
278       - Dirservers translate requests for http://%s:%d/x to /x
279       - You can specify "HttpProxy %s[:%d]" and all dir fetches will
280         be routed through this host.
281       - Clients ask for /tor/x rather than /x for new enough dirservers.
282         This way we can one day coexist peacefully with apache.
283       - Clients specify a "Host: %s%d" http header, to be compatible
284         with more proxies, and so running squid on an exit node can work.
286 pre2:
287   o Bugfixes on pre1:
288     - Make fetching a cached directory work for 64-bit platforms too.
289     - Make zlib.h a required header, not an optional header.
291 pre1:
292   o Bugfixes:
293     - Stop using separate defaults for no-config-file and
294       empty-config-file. Now you have to explicitly turn off SocksPort,
295       if you don't want it open.
296     - Improve man page to mention more of the 0.0.8 features.
297     - Change our file IO stuff (especially wrt OpenSSL) so win32 is
298       happier.
299     - Fix more dns related bugs: send back resolve_failed and end cells
300       more reliably when the resolve fails, rather than closing the
301       circuit and then trying to send the cell. Also attach dummy resolve
302       connections to a circuit *before* calling dns_resolve(), to fix
303       a bug where cached answers would never be sent in RESOLVED cells.
304     - When we run out of disk space, or other log writing error, don't
305       crash. Just stop logging to that log and continue.
306     - We were starting to daemonize before we opened our logs, so if
307       there were any problems opening logs, we would complain to stderr,
308       which wouldn't work, and then mysteriously exit.
309     - Fix a rare bug where sometimes a verified OR would connect to us
310       before he'd uploaded his descriptor, which would cause us to
311       assign conn->nickname as though he's unverified. Now we look through
312       the fingerprint list to see if he's there.
314   o Features:
315     - Clients can ask dirservers for /dir.z to get a compressed version
316       of the directory. Only works for servers running 0.0.9, of course.
317     - Make clients cache directories and use them to seed their router
318       lists at startup. This means clients have a datadir again.
319     - Configuration infrastructure support for warning on obsolete
320       options.
321     - Respond to content-encoding headers by trying to uncompress as
322       appropriate.
323     - Reply with a deflated directory when a client asks for "dir.z".
324       We could use allow-encodings instead, but allow-encodings isn't
325       specified in HTTP 1.0.
326     - Raise the max dns workers from 50 to 100.
327     - Discourage people from setting their dirfetchpostperiod more often
328       than once per minute
329     - Protect dirservers from overzealous descriptor uploading -- wait
330       10 seconds after directory gets dirty, before regenerating.
333 Changes in version 0.0.8.1 - 2004-10-13
334   o Bugfixes:
335     - Fix a seg fault that can be triggered remotely for Tor
336       clients/servers with an open dirport.
337     - Fix a rare assert trigger, where routerinfos for entries in
338       our cpath would expire while we're building the path.
339     - Fix a bug in OutboundBindAddress so it (hopefully) works.
340     - Fix a rare seg fault for people running hidden services on
341       intermittent connections.
342     - Fix a bug in parsing opt keywords with objects.
343     - Fix a stale pointer assert bug when a stream detaches and
344       reattaches.
345     - Fix a string format vulnerability (probably not exploitable)
346       in reporting stats locally.
347     - Fix an assert trigger: sometimes launching circuits can fail
348       immediately, e.g. because too many circuits have failed recently.
349     - Fix a compile warning on 64 bit platforms.
352 Changes in version 0.0.8 - 2004-08-25
353   o Bugfixes:
354     - Made our unit tests compile again on OpenBSD 3.5, and tor
355       itself compile again on OpenBSD on a sparc64.
356     - We were neglecting milliseconds when logging on win32, so
357       everything appeared to happen at the beginning of each second.
358     - Check directory signature _before_ you decide whether you're
359       you're running an obsolete version and should exit.
360     - Check directory signature _before_ you parse the running-routers
361       list to decide who's running.
362     - Check return value of fclose while writing to disk, so we don't
363       end up with broken files when servers run out of disk space.
364     - Port it to SunOS 5.9 / Athena
365     - Fix two bugs in saving onion keys to disk when rotating, so
366       hopefully we'll get fewer people using old onion keys.
367     - Remove our mostly unused -- and broken -- hex_encode()
368       function. Use base16_encode() instead. (Thanks to Timo Lindfors
369       for pointing out this bug.)
370     - Only pick and establish intro points after we've gotten a
371       directory.
372     - Fix assert triggers: if the other side returns an address 0.0.0.0,
373       don't put it into the client dns cache.
374     - If a begin failed due to exit policy, but we believe the IP
375       address should have been allowed, switch that router to exitpolicy
376       reject *:* until we get our next directory.
378   o Protocol changes:
379     - 'Extend' relay cell payloads now include the digest of the
380       intended next hop's identity key. Now we can verify that we're
381       extending to the right router, and also extend to routers we
382       hadn't heard of before.
384   o Features:
385     - Tor nodes can now act as relays (with an advertised ORPort)
386       without being manually verified by the dirserver operators.
387       - Uploaded descriptors of unverified routers are now accepted
388         by the dirservers, and included in the directory.
389       - Verified routers are listed by nickname in the running-routers
390         list; unverified routers are listed as "$<fingerprint>".
391       - We now use hash-of-identity-key in most places rather than
392         nickname or addr:port, for improved security/flexibility.
393       - AllowUnverifiedNodes config option to let circuits choose no-name
394         routers in entry,middle,exit,introduction,rendezvous positions.
395         Allow middle and rendezvous positions by default.
396       - When picking unverified routers, skip those with low uptime and/or
397         low bandwidth, depending on what properties you care about.
398       - ClientOnly option for nodes that never want to become servers.
399     - Directory caching.
400       - "AuthoritativeDir 1" option for the official dirservers.
401       - Now other nodes (clients and servers) will cache the latest
402         directory they've pulled down.
403       - They can enable their DirPort to serve it to others.
404       - Clients will pull down a directory from any node with an open
405         DirPort, and check the signature/timestamp correctly.
406       - Authoritative dirservers now fetch directories from other
407         authdirservers, to stay better synced.
408       - Running-routers list tells who's down also, along with noting
409         if they're verified (listed by nickname) or unverified (listed
410         by hash-of-key).
411       - Allow dirservers to serve running-router list separately.
412         This isn't used yet.
413       - You can now fetch $DIRURL/running-routers to get just the
414         running-routers line, not the whole descriptor list. (But
415         clients don't use this yet.)
416     - Clients choose nodes proportional to advertised bandwidth.
417     - Clients avoid using nodes with low uptime as introduction points.
418     - Handle servers with dynamic IP addresses: don't just replace
419       options->Address with the resolved one at startup, and
420       detect our address right before we make a routerinfo each time.
421     - 'FascistFirewall' option to pick dirservers and ORs on specific
422       ports; plus 'FirewallPorts' config option to tell FascistFirewall
423       which ports are open. (Defaults to 80,443)
424     - Try other dirservers immediately if the one you try is down. This
425       should tolerate down dirservers better now.
426     - ORs connect-on-demand to other ORs
427       - If you get an extend cell to an OR you're not connected to,
428         connect, handshake, and forward the create cell.
429       - The authoritative dirservers stay connected to everybody,
430         and everybody stays connected to 0.0.7 servers, but otherwise
431         clients/servers expire unused connections after 5 minutes.
432     - When servers get a sigint, they delay 30 seconds (refusing new
433       connections) then exit. A second sigint causes immediate exit.
434     - File and name management:
435       - Look for .torrc if no CONFDIR "torrc" is found.
436       - If no datadir is defined, then choose, make, and secure ~/.tor
437         as datadir.
438       - If torrc not found, exitpolicy reject *:*.
439       - Expands ~/ in filenames to $HOME/ (but doesn't yet expand ~arma).
440       - If no nickname is defined, derive default from hostname.
441       - Rename secret key files, e.g. identity.key -> secret_id_key,
442         to discourage people from mailing their identity key to tor-ops.
443     - Refuse to build a circuit before the directory has arrived --
444       it won't work anyway, since you won't know the right onion keys
445       to use.
446     - Parse tor version numbers so we can do an is-newer-than check
447       rather than an is-in-the-list check.
448     - New socks command 'resolve', to let us shim gethostbyname()
449       locally.
450       - A 'tor_resolve' script to access the socks resolve functionality.
451       - A new socks-extensions.txt doc file to describe our
452         interpretation and extensions to the socks protocols.
453     - Add a ContactInfo option, which gets published in descriptor.
454     - Write tor version at the top of each log file
455     - New docs in the tarball:
456       - tor-doc.html.
457       - Document that you should proxy your SSL traffic too.
458     - Log a warning if the user uses an unsafe socks variant, so people
459       are more likely to learn about privoxy or socat.
460     - Log a warning if you're running an unverified server, to let you
461       know you might want to get it verified.
462     - Change the default exit policy to reject the default edonkey,
463       kazaa, gnutella ports.
464     - Add replace_file() to util.[ch] to handle win32's rename().
465     - Publish OR uptime in descriptor (and thus in directory) too.
466     - Remember used bandwidth (both in and out), and publish 15-minute
467       snapshots for the past day into our descriptor.
468     - Be more aggressive about trying to make circuits when the network
469       has changed (e.g. when you unsuspend your laptop).
470     - Check for time skew on http headers; report date in response to
471       "GET /".
472     - If the entrynode config line has only one node, don't pick it as
473       an exitnode.
474     - Add strict{entry|exit}nodes config options. If set to 1, then
475       we refuse to build circuits that don't include the specified entry
476       or exit nodes.
477     - OutboundBindAddress config option, to bind to a specific
478       IP address for outgoing connect()s.
479     - End truncated log entries (e.g. directories) with "[truncated]".
482 Changes in version 0.0.7.3 - 2004-08-12
483   o Stop dnsworkers from triggering an assert failure when you
484     ask them to resolve the host "".
487 Changes in version 0.0.7.2 - 2004-07-07
488   o A better fix for the 0.0.0.0 problem, that will hopefully
489     eliminate the remaining related assertion failures.
492 Changes in version 0.0.7.1 - 2004-07-04
493   o When an address resolves to 0.0.0.0, treat it as a failed resolve,
494     since internally we use 0.0.0.0 to signify "not yet resolved".
497 Changes in version 0.0.7 - 2004-06-07
498   o Fixes for crashes and other obnoxious bugs:
499     - Fix an epipe bug: sometimes when directory connections failed
500       to connect, we would give them a chance to flush before closing
501       them.
502     - When we detached from a circuit because of resolvefailed, we
503       would immediately try the same circuit twice more, and then
504       give up on the resolve thinking we'd tried three different
505       exit nodes.
506     - Limit the number of intro circuits we'll attempt to build for a
507       hidden service per 15-minute period.
508     - Check recommended-software string *early*, before actually parsing
509       the directory. Thus we can detect an obsolete version and exit,
510       even if the new directory format doesn't parse.
511   o Fixes for security bugs:
512     - Remember which nodes are dirservers when you startup, and if a
513       random OR enables his dirport, don't automatically assume he's
514       a trusted dirserver.
515   o Other bugfixes:
516     - Directory connections were asking the wrong poll socket to
517       start writing, and not asking themselves to start writing.
518     - When we detached from a circuit because we sent a begin but
519       didn't get a connected, we would use it again the first time;
520       but after that we would correctly switch to a different one.
521     - Stop warning when the first onion decrypt attempt fails; they
522       will sometimes legitimately fail now that we rotate keys.
523     - Override unaligned-access-ok check when $host_cpu is ia64 or
524       arm. Apparently they allow it but the kernel whines.
525     - Dirservers try to reconnect periodically too, in case connections
526       have failed.
527     - Fix some memory leaks in directory servers.
528     - Allow backslash in Win32 filenames.
529     - Made Tor build complain-free on FreeBSD, hopefully without
530       breaking other BSD builds. We'll see.
531     - Check directory signatures based on name of signer, not on whom
532       we got the directory from. This will let us cache directories more
533       easily.
534     - Rotate dnsworkers and cpuworkers on SIGHUP, so they get new config
535       settings too.
536   o Features:
537     - Doxygen markup on all functions and global variables.
538     - Make directory functions update routerlist, not replace it. So
539       now directory disagreements are not so critical a problem.
540     - Remove the upper limit on number of descriptors in a dirserver's
541       directory (not that we were anywhere close).
542     - Allow multiple logfiles at different severity ranges.
543     - Allow *BindAddress to specify ":port" rather than setting *Port
544       separately. Allow multiple instances of each BindAddress config
545       option, so you can bind to multiple interfaces if you want.
546     - Allow multiple exit policy lines, which are processed in order.
547       Now we don't need that huge line with all the commas in it.
548     - Enable accept/reject policies on SOCKS connections, so you can bind
549       to 0.0.0.0 but still control who can use your OP.
550     - Updated the man page to reflect these features.
553 Changes in version 0.0.6.2 - 2004-05-16
554   o Our integrity-checking digest was checking only the most recent cell,
555     not the previous cells like we'd thought.
556     Thanks to Stefan Mark for finding the flaw!
559 Changes in version 0.0.6.1 - 2004-05-06
560   o Fix two bugs in our AES counter-mode implementation (this affected
561     onion-level stream encryption, but not TLS-level). It turns
562     out we were doing something much more akin to a 16-character
563     polyalphabetic cipher. Oops.
564     Thanks to Stefan Mark for finding the flaw!
565   o Retire moria3 as a directory server, and add tor26 as a directory
566     server.
569 Changes in version 0.0.6 - 2004-05-02
570   o Features:
571     - Hidden services and rendezvous points are implemented. Go to
572       http://6sxoyfb3h2nvok2d.onion/ for an index of currently available
573       hidden services. (This only works via a socks4a proxy such as
574       Privoxy, and currently it's quite slow.)
575     - We now rotate link (tls context) keys and onion keys.
576     - CREATE cells now include oaep padding, so you can tell
577       if you decrypted them correctly.
578     - Retry stream correctly when we fail to connect because of
579       exit-policy-reject (should try another) or can't-resolve-address.
580     - When we hup a dirserver and we've *removed* a server from the
581       approved-routers list, now we remove that server from the
582       in-memory directories too.
583     - Add bandwidthburst to server descriptor.
584     - Directories now say which dirserver signed them.
585     - Use a tor_assert macro that logs failed assertions too.
586     - Since we don't support truncateds much, don't bother sending them;
587       just close the circ.
588     - Fetch randomness from /dev/urandom better (not via fopen/fread)
589     - Better debugging for tls errors
590     - Set Content-Type on the directory and hidserv descriptor.
591     - Remove IVs from cipher code, since AES-ctr has none.
592   o Bugfixes:
593     - Fix an assert trigger for exit nodes that's been plaguing us since
594       the days of 0.0.2prexx (thanks weasel!)
595     - Fix a bug where we were closing tls connections intermittently.
596       It turns out openssl keeps its errors around -- so if an error
597       happens, and you don't ask about it, and then another openssl
598       operation happens and succeeds, and you ask if there was an error,
599       it tells you about the first error.
600     - Fix a bug that's been lurking since 27 may 03 (!)
601       When passing back a destroy cell, we would use the wrong circ id.
602     - Don't crash if a conn that sent a begin has suddenly lost its circuit.
603     - Some versions of openssl have an SSL_pending function that erroneously
604       returns bytes when there is a non-application record pending.
605     - Win32 fixes. Tor now compiles on win32 with no warnings/errors.
606       o We were using an array of length zero in a few places.
607       o Win32's gethostbyname can't resolve an IP to an IP.
608       o Win32's close can't close a socket.
609       o Handle windows socket errors correctly.
610   o Portability:
611     - check for <sys/limits.h> so we build on FreeBSD again, and
612       <machine/limits.h> for NetBSD.
615 Changes in version 0.0.5 - 2004-03-30
616   o Install torrc as torrc.sample -- we no longer clobber your
617     torrc. (Woo!)
618   o Fix mangled-state bug in directory fetching (was causing sigpipes).
619   o Only build circuits after we've fetched the directory: clients were
620     using only the directory servers before they'd fetched a directory.
621     This also means longer startup time; so it goes.
622   o Fix an assert trigger where an OP would fail to handshake, and we'd
623     expect it to have a nickname.
624   o Work around a tsocks bug: do a socks reject when AP connection dies
625     early, else tsocks goes into an infinite loop.
626   o Hold socks connection open until reply is flushed (if possible)
627   o Make exit nodes resolve IPs to IPs immediately, rather than asking
628     the dns farm to do it.
629   o Fix c99 aliasing warnings in rephist.c
630   o Don't include server descriptors that are older than 24 hours in the
631     directory.
632   o Give socks 'reject' replies their whole 15s to attempt to flush,
633     rather than seeing the 60s timeout and assuming the flush had failed.
634   o Clean automake droppings from the cvs repository
635   o Add in a 'notice' log level for things the operator should hear
636     but that aren't warnings
639 Changes in version 0.0.4 - 2004-03-26
640   o When connecting to a dirserver or OR and the network is down,
641     we would crash.
644 Changes in version 0.0.3 - 2004-03-26
645   o Warn and fail if server chose a nickname with illegal characters
646   o Port to Solaris and Sparc:
647     - include missing header fcntl.h
648     - have autoconf find -lsocket -lnsl automatically
649     - deal with hardware word alignment
650     - make uname() work (solaris has a different return convention)
651     - switch from using signal() to sigaction()
652   o Preliminary work on reputation system:
653     - Keep statistics on success/fail of connect attempts; they're published
654       by kill -USR1 currently.
655     - Add a RunTesting option to try to learn link state by creating test
656       circuits, even when SocksPort is off.
657     - Remove unused open circuits when there are too many.
660 Changes in version 0.0.2 - 2004-03-19
661     - Include strlcpy and strlcat for safer string ops
662     - define INADDR_NONE so we compile (but still not run) on solaris
665 Changes in version 0.0.2pre27 - 2004-03-14
666   o Bugfixes:
667     - Allow internal tor networks (we were rejecting internal IPs,
668       now we allow them if they're set explicitly).
669     - And fix a few endian issues.
672 Changes in version 0.0.2pre26 - 2004-03-14
673   o New features:
674     - If a stream times out after 15s without a connected cell, don't
675       try that circuit again: try a new one.
676     - Retry streams at most 4 times. Then give up.
677     - When a dirserver gets a descriptor from an unknown router, it
678       logs its fingerprint (so the dirserver operator can choose to
679       accept it even without mail from the server operator).
680     - Inform unapproved servers when we reject their descriptors.
681     - Make tor build on Windows again. It works as a client, who knows
682       about as a server.
683     - Clearer instructions in the torrc for how to set up a server.
684     - Be more efficient about reading fd's when our global token bucket
685       (used for rate limiting) becomes empty.
686   o Bugfixes:
687     - Stop asserting that computers always go forward in time. It's
688       simply not true.
689     - When we sent a cell (e.g. destroy) and then marked an OR connection
690       expired, we might close it before finishing a flush if the other
691       side isn't reading right then.
692     - Don't allow dirservers to start if they haven't defined
693       RecommendedVersions
694     - We were caching transient dns failures. Oops.
695     - Prevent servers from publishing an internal IP as their address.
696     - Address a strcat vulnerability in circuit.c
699 Changes in version 0.0.2pre25 - 2004-03-04
700   o New features:
701     - Put the OR's IP in its router descriptor, not its fqdn. That way
702       we'll stop being stalled by gethostbyname for nodes with flaky dns,
703       e.g. poblano.
704   o Bugfixes:
705     - If the user typed in an address that didn't resolve, the server
706       crashed.
709 Changes in version 0.0.2pre24 - 2004-03-03
710   o Bugfixes:
711     - Fix an assertion failure in dns.c, where we were trying to dequeue
712       a pending dns resolve even if it wasn't pending
713     - Fix a spurious socks5 warning about still trying to write after the
714       connection is finished.
715     - Hold certain marked_for_close connections open until they're finished
716       flushing, rather than losing bytes by closing them too early.
717     - Correctly report the reason for ending a stream
718     - Remove some duplicate calls to connection_mark_for_close
719     - Put switch_id and start_daemon earlier in the boot sequence, so it
720       will actually try to chdir() to options.DataDirectory
721     - Make 'make test' exit(1) if a test fails; fix some unit tests
722     - Make tor fail when you use a config option it doesn't know about,
723       rather than warn and continue.
724     - Make --version work
725     - Bugfixes on the rpm spec file and tor.sh, so it's more up to date
728 Changes in version 0.0.2pre23 - 2004-02-29
729   o New features:
730     - Print a statement when the first circ is finished, so the user
731       knows it's working.
732     - If a relay cell is unrecognized at the end of the circuit,
733       send back a destroy. (So attacks to mutate cells are more
734       clearly thwarted.)
735     - New config option 'excludenodes' to avoid certain nodes for circuits.
736     - When it daemonizes, it chdir's to the DataDirectory rather than "/",
737       so you can collect coredumps there.
738  o Bugfixes:
739     - Fix a bug in tls flushing where sometimes data got wedged and
740       didn't flush until more data got sent. Hopefully this bug was
741       a big factor in the random delays we were seeing.
742     - Make 'connected' cells include the resolved IP, so the client
743       dns cache actually gets populated.
744     - Disallow changing from ORPort=0 to ORPort>0 on hup.
745     - When we time-out on a stream and detach from the circuit, send an
746       end cell down it first.
747     - Only warn about an unknown router (in exitnodes, entrynodes,
748       excludenodes) after we've fetched a directory.
751 Changes in version 0.0.2pre22 - 2004-02-26
752   o New features:
753     - Servers publish less revealing uname information in descriptors.
754     - More memory tracking and assertions, to crash more usefully when
755       errors happen.
756     - If the default torrc isn't there, just use some default defaults.
757       Plus provide an internal dirservers file if they don't have one.
758     - When the user tries to use Tor as an http proxy, give them an http
759       501 failure explaining that we're a socks proxy.
760     - Dump a new router.desc on hup, to help confused people who change
761       their exit policies and then wonder why router.desc doesn't reflect
762       it.
763     - Clean up the generic tor.sh init script that we ship with.
764   o Bugfixes:
765     - If the exit stream is pending on the resolve, and a destroy arrives,
766       then the stream wasn't getting removed from the pending list. I
767       think this was the one causing recent server crashes.
768     - Use a more robust poll on OSX 10.3, since their poll is flaky.
769     - When it couldn't resolve any dirservers, it was useless from then on.
770       Now it reloads the RouterFile (or default dirservers) if it has no
771       dirservers.
772     - Move the 'tor' binary back to /usr/local/bin/ -- it turns out
773       many users don't even *have* a /usr/local/sbin/.
776 Changes in version 0.0.2pre21 - 2004-02-18
777   o New features:
778     - There's a ChangeLog file that actually reflects the changelog.
779     - There's a 'torify' wrapper script, with an accompanying
780       tor-tsocks.conf, that simplifies the process of using tsocks for
781       tor. It even has a man page.
782     - The tor binary gets installed to sbin rather than bin now.
783     - Retry streams where the connected cell hasn't arrived in 15 seconds
784     - Clean up exit policy handling -- get the default out of the torrc,
785       so we can update it without forcing each server operator to fix
786       his/her torrc.
787     - Allow imaps and pop3s in default exit policy
788   o Bugfixes:
789     - Prevent picking middleman nodes as the last node in the circuit
792 Changes in version 0.0.2pre20 - 2004-01-30
793   o New features:
794     - We now have a deb package, and it's in debian unstable. Go to
795       it, apt-getters. :)
796     - I've split the TotalBandwidth option into BandwidthRate (how many
797       bytes per second you want to allow, long-term) and
798       BandwidthBurst (how many bytes you will allow at once before the cap
799       kicks in).  This better token bucket approach lets you, say, set
800       BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good
801       performance while not exceeding your monthly bandwidth quota.
802     - Push out a tls record's worth of data once you've got it, rather
803       than waiting until you've read everything waiting to be read. This
804       may improve performance by pipelining better. We'll see.
805     - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach
806       from failed circuits (if they haven't been connected yet) and attach
807       to new ones.
808     - Expire old streams that haven't managed to connect. Some day we'll
809       have them reattach to new circuits instead.
811   o Bugfixes:
812     - Fix several memory leaks that were causing servers to become bloated
813       after a while.
814     - Fix a few very rare assert triggers. A few more remain.
815     - Setuid to User _before_ complaining about running as root.
818 Changes in version 0.0.2pre19 - 2004-01-07
819   o Bugfixes:
820     - Fix deadlock condition in dns farm. We were telling a child to die by
821       closing the parent's file descriptor to him. But newer children were
822       inheriting the open file descriptor from the parent, and since they
823       weren't closing it, the socket never closed, so the child never read
824       eof, so he never knew to exit. Similarly, dns workers were holding
825       open other sockets, leading to all sorts of chaos.
826     - New cleaner daemon() code for forking and backgrounding.
827     - If you log to a file, it now prints an entry at the top of the
828       logfile so you know it's working.
829     - The onionskin challenge length was 30 bytes longer than necessary.
830     - Started to patch up the spec so it's not quite so out of date.
833 Changes in version 0.0.2pre18 - 2004-01-02
834   o Bugfixes:
835     - Fix endian issues with the 'integrity' field in the relay header.
836     - Fix a potential bug where connections in state
837       AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write.
840 Changes in version 0.0.2pre17 - 2003-12-30
841   o Bugfixes:
842     - Made --debuglogfile (or any second log file, actually) work.
843     - Resolved an edge case in get_unique_circ_id_by_conn where a smart
844       adversary could force us into an infinite loop.
846   o Features:
847     - Each onionskin handshake now includes a hash of the computed key,
848       to prove the server's identity and help perfect forward secrecy.
849     - Changed cell size from 256 to 512 bytes (working toward compatibility
850       with MorphMix).
851     - Changed cell length to 2 bytes, and moved it to the relay header.
852     - Implemented end-to-end integrity checking for the payloads of
853       relay cells.
854     - Separated streamid from 'recognized' (otherwise circuits will get
855       messed up when we try to have streams exit from the middle). We
856       use the integrity-checking to confirm that a cell is addressed to
857       this hop.
858     - Randomize the initial circid and streamid values, so an adversary who
859       breaks into a node can't learn how many circuits or streams have
860       been made so far.
863 Changes in version 0.0.2pre16 - 2003-12-14
864   o Bugfixes:
865     - Fixed a bug that made HUP trigger an assert
866     - Fixed a bug where a circuit that immediately failed wasn't being
867       counted as a failed circuit in counting retries.
869   o Features:
870     - Now we close the circuit when we get a truncated cell: otherwise we're
871       open to an anonymity attack where a bad node in the path truncates
872       the circuit and then we open streams at him.
873     - Add port ranges to exit policies
874     - Add a conservative default exit policy
875     - Warn if you're running tor as root
876     - on HUP, retry OR connections and close/rebind listeners
877     - options.EntryNodes: try these nodes first when picking the first node
878     - options.ExitNodes: if your best choices happen to include any of
879       your preferred exit nodes, you choose among just those preferred
880       exit nodes.
881     - options.ExcludedNodes: nodes that are never picked in path building
884 Changes in version 0.0.2pre15 - 2003-12-03
885   o Robustness and bugfixes:
886     - Sometimes clients would cache incorrect DNS resolves, which would
887       really screw things up.
888     - An OP that goes offline would slowly leak all its sockets and stop
889       working.
890     - A wide variety of bugfixes in exit node selection, exit policy
891       handling, and processing pending streams when a new circuit is
892       established.
893     - Pick nodes for a path only from those the directory says are up
894     - Choose randomly from all running dirservers, not always the first one
895     - Increase allowed http header size for directory fetch.
896     - Stop writing to stderr (if we're daemonized it will be closed).
897     - Enable -g always, so cores will be more useful to me.
898     - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions.
900   o Documentation:
901     - Wrote a man page. It lists commonly used options.
903   o Configuration:
904     - Change default loglevel to warn.
905     - Make PidFile default to null rather than littering in your CWD.
906     - OnionRouter config option is now obsolete. Instead it just checks
907       ORPort>0.
908     - Moved to a single unified torrc file for both clients and servers.
911 Changes in version 0.0.2pre14 - 2003-11-29
912   o Robustness and bugfixes:
913     - Force the admin to make the DataDirectory himself
914       - to get ownership/permissions right
915       - so clients no longer make a DataDirectory and then never use it
916     - fix bug where a client who was offline for 45 minutes would never
917       pull down a directory again
918     - fix (or at least hide really well) the dns assert bug that was
919       causing server crashes
920     - warnings and improved robustness wrt clockskew for certs
921     - use the native daemon(3) to daemonize, when available
922     - exit if bind() fails
923     - exit if neither socksport nor orport is defined
924     - include our own tor_timegm (Win32 doesn't have its own)
925     - bugfix for win32 with lots of connections
926     - fix minor bias in PRNG
927     - make dirserver more robust to corrupt cached directory
929   o Documentation:
930     - Wrote the design document (woo)
932   o Circuit building and exit policies:
933     - Circuits no longer try to use nodes that the directory has told them
934       are down.
935     - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and
936       bitcounts (18.0.0.0/8).
937     - Make AP connections standby for a circuit if no suitable circuit
938       exists, rather than failing
939     - Circuits choose exit node based on addr/port, exit policies, and
940       which AP connections are standing by
941     - Bump min pathlen from 2 to 3
942     - Relay end cells have a payload to describe why the stream ended.
943     - If the stream failed because of exit policy, try again with a new
944       circuit.
945     - Clients have a dns cache to remember resolved addresses.
946     - Notice more quickly when we have no working circuits
948   o Configuration:
949     - APPort is now called SocksPort
950     - SocksBindAddress, ORBindAddress, DirBindAddress let you configure
951       where to bind
952     - RecommendedVersions is now a config variable rather than
953       hardcoded (for dirservers)
954     - Reloads config on HUP
955     - Usage info on -h or --help
956     - If you set User and Group config vars, it'll setu/gid to them.
958 Changes in version 0.0.2pre13 - 2003-10-19
959   o General stability:
960     - SSL_write no longer fails when it returns WANTWRITE and the number
961       of bytes in the buf has changed by the next SSL_write call.
962     - Fix segfault fetching directory when network is down
963     - Fix a variety of minor memory leaks
964     - Dirservers reload the fingerprints file on HUP, so I don't have
965       to take down the network when I approve a new router
966     - Default server config file has explicit Address line to specify fqdn
968   o Buffers:
969     - Buffers grow and shrink as needed (Cut process size from 20M to 2M)
970     - Make listener connections not ever alloc bufs
972   o Autoconf improvements:
973     - don't clobber an external CFLAGS in ./configure
974     - Make install now works
975     - create var/lib/tor on make install
976     - autocreate a tor.sh initscript to help distribs
977     - autocreate the torrc and sample-server-torrc with correct paths
979   o Log files and Daemonizing now work:
980     - If --DebugLogFile is specified, log to it at -l debug
981     - If --LogFile is specified, use it instead of commandline
982     - If --RunAsDaemon is set, tor forks and backgrounds on startup