TODO 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. $Id$
  2. Legend:
  3. SPEC!! - Not specified
  4. SPEC - Spec not finalized
  5. NICK - nick claims
  6. ARMA - arma claims
  7. PHOBOS - phobos claims
  8. - Not done
  9. * Top priority
  10. . Partially done
  11. o Done
  12. D Deferred
  13. X Abandoned
  14. Non-Coding, Soon:
  15. - FAQ entry: why gnutls is bad/not good for tor
  16. P - flesh out the rest of the section 6 of the faq
  17. P - gather pointers to livecd distros that include tor
  18. - put the logo on the website, in source form, so people can put it on
  19. stickers directly, etc.
  20. - more pictures from ren. he wants to describe the tor handshake, i want to
  21. talk about hidden services.
  22. * clean up the places where our docs are redundant (or worse, obsolete in
  23. one file and correct elsewhere). agl has a start on a global
  24. list-of-tor-docs.
  25. P - update window's docs to clarify which versions of windows, and why a
  26. DOS window, how it's used, for the less technical users
  27. NR- write a spec appendix for 'being nice with tor'
  28. - Hunt for open socks ports on tor servers, send mail
  29. - tor-in-the-media page
  30. - Ask schanzle@cas.homelinux.org about a patch for rpm spec fixes against
  31. tor-0.1.0.7.rc
  32. - Remove need for HACKING file.
  33. For 0.1.0.x:
  34. o Why do solaris cpuworks go dormant?
  35. (Apparently, disabling threads fixes this.)
  36. o Fix the remaining flyspray bugs marked for 0.1.0.9
  37. X Free remaining unfreed memory (arma will run valgrind)
  38. (Not for a stable release)
  39. o Note libevent/method/platform combos that are unlikely to work.
  40. X change torrc to point to abuse-faq (once abuse-faq is posted)
  41. . Memory use on Linux: what's happening?
  42. - Is it threading? (Maybe, maybe not)
  43. - Is it the buf_shrink bug? (Quite possibly)
  44. - Instrument the 0.1.1 code to figure out where our memory is going;
  45. apply the results. (all platforms?)
  46. . Why does kevent barf with EINVAL on some freebsd boxes?
  47. o Submit libevent patch to Niels
  48. o Warn on non-repeated EINVAL in Tor (don't die.)
  49. - Investigate why freebsd kernel actually does this: it doesn't seem
  50. simple to trigger.
  51. for 0.1.1.x:
  52. N . Controller improvements
  53. o new controller protocol
  54. o Specify
  55. o Implement
  56. . Test, debug
  57. o add new getinfo options to enumerate things we only find out about
  58. currently via events.
  59. o controller should have an event to learn about new addressmappings,
  60. e.g. when we learn a hostname to IP mapping ?
  61. . make sure err-level log events get flushed to the controller
  62. immediately, since tor will exit right after.
  63. o Implement
  64. - Test, debug
  65. - Allow EXTENDCIRCUIT to unknown server.
  66. . Switch example controllers to use new protocol
  67. . Python
  68. o Implement main controller interface
  69. - Glue code
  70. - Testing
  71. - Java
  72. - switch accountingmax to count total in+out, not either in or
  73. out. it's easy to move in this direction (not risky), but hard to
  74. back, out if we decide we prefer it the way it already is. hm.
  75. . Come up with a coherent strategy for bandwidth buckets and TLS. (The
  76. logic for reading from TLS sockets is likely to overrun the bandwidth
  77. buckets under heavy load. (Really, the logic was never right in the
  78. first place.) Also, we should audit all users of get_pending_bytes().)
  79. - Make it harder to circumvent bandwidth caps: look at number of bytes
  80. sent across sockets, not number sent inside TLS stream.
  81. N - Handle rendezvousing with unverified nodes.
  82. o Specify: Stick rendezvous point's address and port in INTRODUCE cell.
  83. - Handle new format.
  84. - Parse and generate new format (#if0 out the logic to generate it.)
  85. - Support to extend circuit/target circuit to a chosen combination of
  86. addr/port/ID/onionkey
  87. - Verify that new code works.
  88. - it looks like tor_assert writes to stderr. what happens if
  89. stderr was closed and is now something else? uh.
  90. - christian grothoff's attack of infinite-length circuit.
  91. the solution is to have a separate 'extend-data' cell type
  92. which is used for the first N data cells, and only
  93. extend-data cells can be extend requests.
  94. - Specify, including thought about
  95. - Implement
  96. - Destroy and truncated cells should have reasons.
  97. - Add private:* alias in exit policies to make it easier to ban all the
  98. fiddly little 192.168.foo addresses.
  99. (AGL had a patch; consider applying it.)
  100. - recommended-versions for client / server ?
  101. - warn if listening for SOCKS on public IP.
  102. - Forward-compatibility: add "needclientversion" option or "opt critical"
  103. prefix.
  104. - cpu fixes:
  105. - see if we should make use of truncate to retry
  106. o hardware accelerator support (configure engines.)
  107. - hardware accelerator support (use instead of aes.c when reasonable)
  108. r - kill dns workers more slowly
  109. - continue decentralizing the directory
  110. - Specify and design all of the below before implementing any.
  111. - Figure out what to do about hidden service descriptors.
  112. M have two router descriptor formats
  113. - dirservers verify reachability claims
  114. - find 10 dirservers. (what are criteria to be a dirserver?)
  115. - some back-out mechanism?
  116. - dirservers have blacklist of IPs they hate
  117. - a way of rolling back approvals to before a timestamp
  118. - have new people be in limbo and need to demonstrate usefulness
  119. before we approve them
  120. - other?
  121. - dirservers publish router-status with all these flags.
  122. - Servers publish new descriptors when options change, when 12-24 hours
  123. have passed, when uptime is reset, or when bandwidth changes a lot.
  124. - alices fetch many router-statuses and update descriptors as needed.
  125. - add if-newer-than fetch options
  126. - dirservers allow people to lookup by N descriptors, or to fetch all.
  127. - alices avoid duplicate class C nodes.
  128. - everybody with a dirport will give you his descriptor.
  129. - config option, on by default, to cache all descriptors.
  130. - Compress router desc sets before transmitting them
  131. M Analyze how bad the partitioning is or isn't.
  132. - Naming:
  133. - Specify and design all of the below before implementing any.
  134. - some dirservers announce that they manage bindings (a flag in
  135. router-status).
  136. - other dirservers mention a binding if there is no conflict for
  137. that binding among the dirservers that manage it.
  138. no conflict == any of them bind it and no disagreement.
  139. - alice can specify a nickname and it will record that name in her
  140. datadir along with the key *if* it is bound. otherwise her specifying
  141. will fail (loudly we hope).
  142. - thus when a binding vanishes (e.g. conflict) alice will keep using
  143. the one she meant.
  144. - if the binding changes keys, the entry in her datadir will silently
  145. get corrected.
  146. - packaging and ui stuff:
  147. - multiple sample torrc files (tyranix?)
  148. - uninstallers
  149. . for os x
  150. - something, anything, for sys tray on Windows.
  151. - figure out how to make nt service stuff work?
  152. . Document it.
  153. N - Vet all pending installer patches
  154. - Win32 installer plus privoxy, sockscap/freecap, etc.
  155. - Vet win32 systray helper code
  156. N . Make logs go into platform default locations.
  157. o OSX
  158. - Windows. (?)
  159. Reach (deferrable) items for 0.1.1.x:
  160. - Start using create-fast cells as clients
  161. - Let more config options (e.g. ORPort) change dynamically.
  162. - start handling server descriptors without a socksport?
  163. For 0.1.1.x, if we can figure out how:
  164. - rewrite how libevent does select() on win32 so it's not so very slow.
  165. - helper nodes (at least preliminary)
  166. - enclaves (at least preliminary)
  167. - Write limiting; separate token bucket for write
  168. - Audit everything to make sure rend and intro points are just as likely to
  169. be us as not.
  170. - Do something to prevent spurious EXTEND cells from making middleman
  171. nodes connect all over. Rate-limit failed connections, perhaps?
  172. Future version:
  173. - Limit to 2 dir, 2 OR, N SOCKS connections per IP.
  174. - Handle full buffers without totally borking
  175. - Rate-limit OR and directory connections overall and per-IP and
  176. maybe per subnet.
  177. - Hold-open-until-flushed now works by accident; it should work by
  178. design.
  179. - DoS protection: TLS puzzles, public key ops, bandwidth exhaustion.
  180. - Specify?
  181. - tor-resolve script should use socks5 to get better error messages.
  182. - make min uptime a function of the available choices (say, choose 60th
  183. percentile, not 1 day.)
  184. - config option to publish what ports you listen on, beyond ORPort/DirPort
  185. - hidserv offerers shouldn't need to define a SocksPort
  186. * figure out what breaks for this, and do it.
  187. - auth mechanisms to let hidden service midpoint and responder filter
  188. connection requests.
  189. - Relax clique assumptions.
  190. - tor should be able to have a pool of outgoing IP addresses
  191. that it is able to rotate through. (maybe)
  192. Blue-sky:
  193. - Patch privoxy and socks protocol to pass strings to the browser.
  194. - Standby/hotswap/redundant hidden services.
  195. - Robust decentralized storage for hidden service descriptors.
  196. - The "China problem"
  197. - Allow small cells and large cells on the same network?
  198. - Cell buffering and resending. This will allow us to handle broken
  199. circuits as long as the endpoints don't break, plus will allow
  200. connection (tls session key) rotation.
  201. - Implement Morphmix, so we can compare its behavior, complexity, etc.
  202. - Other transport. HTTP, udp, rdp, airhook, etc. May have to do our own
  203. link crypto, unless we can bully openssl into it.
  204. - Conn key rotation.
  205. - Need a relay teardown cell, separate from one-way ends.
  206. (Pending a user who needs this)
  207. - Handle half-open connections: right now we don't support all TCP
  208. streams, at least according to the protocol. But we handle all that
  209. we've seen in the wild.
  210. (Pending a user who needs this)