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