ChangeLog 45 KB

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