TODO 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. Legend:
  2. SPEC!! - Not specified
  3. SPEC - Spec not finalized
  4. NICK - nick claims
  5. ARMA - arma claims
  6. - Not done
  7. * Top priority
  8. . Partially done
  9. o Done
  10. D Deferred
  11. X Abandoned
  12. For 0.0.9:
  13. o Solve the MSVC nuisance where __FILE__ contains the full path.
  14. People are getting confused about why their errors are coming from
  15. C:\Documents and Settings\Nick Mathewson\My Documents\src\tor .
  16. N&R. bring tor-spec up to date
  17. N&R. make loglevels info,debug less noisy
  18. N . OS X package (and bundle?)
  19. N . Working RPMs
  20. N - Get win32 servers working, or find out why it isn't happening now.
  21. ************************ For Post 0.0.9 *****************************
  22. Tier one:
  23. o Move to our new version system.
  24. - Changes for forward compatibility
  25. - If a version is later than the last in its series, but a version
  26. in the next series is recommended, that doesn't mean it's bad.
  27. - Bugfixes
  28. - fix dfc/weasel's intro point bug
  29. - when we haven't explicitly sent a socks reject, sending one in
  30. connection_about_to_close_connection() fails because we never give it
  31. a chance to flush. right answer is to do the socks reply manually in
  32. each appropriate case, and then about-to-close-connection can simply
  33. warn us if we forgot one.
  34. - Documentation
  35. - Convert man pages to pod, or whatever's right. Alternatively, find
  36. a man2html that actually works.
  37. - Macintosh HOWTO page.
  38. - Evangelism
  39. - Get more nodes running on 80 and 443.
  40. - Get epic, aclu, etc running nodes.
  41. - Dirservers and server descs: small, backward-compatible changes
  42. - support hostnames as well as IPs for authdirservers.
  43. - If we have a trusted directory on port 80, stop falling back to
  44. forbidden ports when fascistfirewall blocks all good dirservers.
  45. - GPSLocation optional config string.
  46. - SOCKS enhancements
  47. - niels's "did it fail because conn refused or timeout or what"
  48. relay end feature.
  49. - Windows
  50. N - Make millisecond accuracy work on win32
  51. - Switch to WSA*Event code as a better poll replacement. Or maybe just
  52. do libevent?
  53. - Code cleanup
  54. - Make more configuration variables into CSVs.
  55. - Support
  56. - Bug tracker.
  57. - Exit hostname support
  58. - cache .foo.exit names better, or differently, or not.
  59. - IPv6 support
  60. - teach connection_ap_handshake_socks_reply() about ipv6 and friends
  61. so connection_ap_handshake_socks_resolved() doesn't also need
  62. to know about them.
  63. - Packaging
  64. - Figure out how to make the rpm not strip the binaries it makes.
  65. Tier two:
  66. - Efficiency/speed improvements.
  67. - Handle pools of waiting circuits better.
  68. - Limit number of circuits that we preemptively generate based on past
  69. behavior; use same limits in circuit_expire_old_circuits().
  70. - Write limiting; configurable token buckets.
  71. - Switch to libevent? Evaluate it first.
  72. - Make it harder to circumvent bandwidth caps: look at number of bytes
  73. sent across sockets, not number sent inside TLS stream.
  74. - QOI
  75. - Let more config options (e.g. ORPort) change dynamically.
  76. - Dirservers and server descs: small, backward-compatible changes
  77. - make advertised_server_mode() ORs fetch dirs more often.
  78. - Implement If-Modified-Since for directories.
  79. - Big, incompatible re-architecting and decentralization of directory
  80. system.
  81. - Only the top of a directory needs to be signed.
  82. - Windows
  83. N - Clean up NT service code; make it work
  84. - Get a controller to launch tor and keep it on the system tray.
  85. - Win32 installer plus privoxy, sockscap/freecap, etc.
  86. - Controller enhancements.
  87. - controller should have 'getinfo' command to query about rephist,
  88. about rendezvous status, etc.
  89. N - Handle rendezvousing with unverified nodes.
  90. - Specify: Stick rendezvous point's key in INTRODUCE cell.
  91. Bob should _always_ use key from INTRODUCE cell.
  92. - Implement.
  93. N - IPv6 support (For exit addresses)
  94. - Spec issue: if a resolve returns an IP4 and an IP6 address,
  95. which to use?
  96. - Add to exit policy code
  97. - Make tor_gethostbyname into tor_getaddrinfo
  98. - Make everything that uses uint32_t as an IP address change to use
  99. a generalize address struct.
  100. - Change relay cell types to accept new addresses.
  101. - Add flag to serverdescs to tell whether IPv6 is supported.
  102. - When should servers
  103. - Security fixes
  104. - christian grothoff's attack of infinite-length circuit.
  105. the solution is to have a separate 'extend-data' cell type
  106. which is used for the first N data cells, and only
  107. extend-data cells can be extend requests.
  108. - Make sure logged information is 'safe'.
  109. - Code cleanup
  110. . rename/rearrange functions for what file they're in
  111. - fix router_get_by_* functions so they can get ourselves too,
  112. and audit everything to make sure rend and intro points are
  113. just as likely to be us as not.
  114. - Bugfixes
  115. - hidserv offerers shouldn't need to define a SocksPort
  116. * figure out what breaks for this, and do it.
  117. - should retry exitpolicy end streams even if the end cell didn't
  118. resolve the address for you
  119. - tor should be able to have a pool of outgoing IP addresses
  120. that it is able to rotate through. (maybe)
  121. Packaging, docs, etc:
  122. - Exit node caching: tie into squid or other caching web proxy.
  123. Deferred until needed:
  124. - Do something to prevent spurious EXTEND cells from making middleman
  125. nodes connect all over. Rate-limit failed connections, perhaps?
  126. - Limit to 2 dir, 2 OR, N SOCKS connections per IP.
  127. - Handle full buffers without totally borking
  128. * do this eventually, no rush.
  129. - Rate-limit OR and directory connections overall and per-IP and
  130. maybe per subnet.
  131. - DoS protection: TLS puzzles, public key ops, bandwidth exhaustion.
  132. - Have clients and dirservers preserve reputation info over
  133. reboots.
  134. - round detected bandwidth up to nearest 10KB?
  135. - client software not upload descriptor until:
  136. - you've been running for an hour
  137. - it's sufficiently satisfied with its bandwidth
  138. - it decides it is reachable
  139. - start counting again if your IP ever changes.
  140. - never regenerate identity keys, for now.
  141. - you can set a bit for not-being-an-OR.
  142. * no need to do this yet. few people define their ORPort.
  143. - authdirserver lists you as running iff:
  144. - he can connect to you
  145. - he has successfully extended to you
  146. - you have sufficient mean-time-between-failures
  147. * keep doing nothing for now.
  148. - Include HTTP status messages in logging (see parse_http_response).
  149. Blue sky or deferred indefinitely:
  150. - Support egd or other non-OS-integrated strong entropy sources
  151. - password protection for on-disk identity key
  152. - Possible to get autoconf to easily install things into ~/.tor?
  153. - server descriptor declares min log level, clients avoid servers
  154. that are too loggy.
  155. - put expiry date on onion-key, so people don't keep trying
  156. old ones that they could know are expired?
  157. - Add a notion of nickname->Pubkey binding that's not 'verification'
  158. - Conn key rotation.
  159. - Need a relay teardown cell, separate from one-way ends.
  160. Big tasks that would demonstrate progress:
  161. - Facility to automatically choose long-term helper nodes; perhaps
  162. on by default for hidden services.
  163. - patch privoxy and socks protocol to pass strings to the browser.
  164. - patch tsocks with our current patches + gethostbyname, getpeername, etc.
  165. - make freecap (or whichever) do what we want.
  166. - scrubbing proxies for protocols other than http.
  167. - Find an smtp proxy?
  168. . Get socks4a support into Mozilla
  169. N - Reverse DNS: specify and implement.
  170. - figure out enclaves, e.g. so we know what to recommend that people
  171. do, and so running a tor server on your website is helpful.
  172. - Do enclaves for same IP only.
  173. - Resolve first, then if IP is an OR, extend to him first.
  174. - implement a trivial fun gui to demonstrate our control interface.
  175. ************************ Roadmap for 2004-2005 **********************
  176. Hard problems that need to be solved:
  177. - Separating node discovery from routing.
  178. - Arranging membership management for independence.
  179. Sybil defenses without having a human bottleneck.
  180. How to gather random sample of nodes.
  181. How to handle nodelist recommendations.
  182. Consider incremental switches: a p2p tor with only 50 users has
  183. different anonymity properties than one with 10k users, and should
  184. be treated differently.
  185. - Measuring performance of other nodes. Measuring whether they're up.
  186. - Choosing exit node by meta-data, e.g. country.
  187. - Incentives to relay; incentives to exit.
  188. - Allowing dissidents to relay through Tor clients.
  189. - How to intercept, or not need to intercept, dns queries locally.
  190. - Improved anonymity:
  191. - Experiment with mid-latency systems. How do they impact usability,
  192. how do they impact safety?
  193. - Understand how powerful fingerprinting attacks are, and experiment
  194. with ways to foil them (long-range padding?).
  195. - Come up with practical approximations to picking entry and exit in
  196. different routing zones.
  197. - Find ideal churn rate for helper nodes; how safe is it?
  198. - What info squeaks by Privoxy? Are other scrubbers better?
  199. - Attacking freenet-gnunet/timing-delay-randomness-arguments.
  200. - Is abandoning the circuit the only option when an extend fails, or
  201. can we do something without impacting anonymity too much?
  202. - Is exiting from the middle of the circuit always a bad idea?
  203. Sample Publicity Landmarks:
  204. - we have N servers / N users
  205. - we have servers at epic and aclu and foo
  206. - hidden services are robust and fast
  207. - a more decentralized design
  208. - tor win32 installer works
  209. - win32 tray icon for end-users
  210. - tor server works on win32
  211. - win32 service for servers
  212. - mac installer works
  213. ***************************Future tasks:****************************
  214. Rendezvous and hidden services:
  215. make it fast:
  216. - preemptively build and start rendezvous circs.
  217. - preemptively build n-1 hops of intro circs?
  218. - cannibalize general circs?
  219. make it reliable:
  220. - standby/hotswap/redundant services.
  221. - store stuff to disk? dirservers forget service descriptors when
  222. they restart; nodes offering hidden services forget their chosen
  223. intro points when they restart.
  224. make it robust:
  225. - auth mechanisms to let midpoint and bob selectively choose
  226. connection requests.
  227. make it scalable:
  228. - robust decentralized storage for hidden service descriptors.
  229. make it accessible:
  230. - web proxy gateways to let normal people browse hidden services.
  231. Tor scalability:
  232. Relax clique assumptions.
  233. Redesign how directories are handled.
  234. - Resolve directory agreement somehow.
  235. Find and remove bottlenecks
  236. - Address linear searches on e.g. circuit and connection lists.
  237. Reputation/memory system, so dirservers can measure people,
  238. and so other people can verify their measurements.
  239. - Need to measure via relay, so it's not distinguishable.
  240. Let dissidents get to Tor servers via Tor users. ("Backbone model")
  241. Make it more correct:
  242. Handle half-open connections: right now we don't support all TCP
  243. streams, at least according to the protocol. But we handle all that
  244. we've seen in the wild.
  245. Support IPv6.
  246. Efficiency/speed/robustness:
  247. Congestion control. Is our current design sufficient once we have heavy
  248. use? Need to measure and tweak, or maybe overhaul.
  249. Allow small cells and large cells on the same network?
  250. Cell buffering and resending. This will allow us to handle broken
  251. circuits as long as the endpoints don't break, plus will allow
  252. connection (tls session key) rotation.
  253. Implement Morphmix, so we can compare its behavior, complexity, etc.
  254. Use cpuworker for more heavy lifting.
  255. - Signing (and verifying) hidserv descriptors
  256. - Signing (and verifying) intro/rend requests
  257. - Signing (and verifying) router descriptors
  258. - Signing (and verifying) directories
  259. - Doing TLS handshake (this is very hard to separate out, though)
  260. Buffer size pool: allocate a maximum size for all buffers, not
  261. a maximum size for each buffer. So we don't have to give up as
  262. quickly (and kill the thickpipe!) when there's congestion.
  263. Other transport. HTTP, udp, rdp, airhook, etc. May have to do our own
  264. link crypto, unless we can bully openssl into it.