TODO 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. . Use a stronger cipher
  13. o 3des for now
  14. - aes when we everybody has openssl 0.9.7
  15. . Topics / circuits
  16. o Implement topics
  17. o Rotate circuits after N minutes?
  18. X Circuits should expire when circuit->expire triggers
  19. NICK . Handle half-open connections
  20. - Figure out what causes connections to close, standardize
  21. when we mark a connection vs when we tear it down
  22. o Look at what ssl does to keep from mutating data streams
  23. NICK . On the fly compression of each stream
  24. o Clean up the event loop (optimize and sanitize)
  25. ARMA o Remove that awful concept of 'roles'
  26. ARMA . Exit policies
  27. o Spec how to write the exit policies
  28. - Path selection algorithms
  29. - Let user request certain nodes
  30. - And disallow certain nodes
  31. D Choose path by jurisdiction, etc?
  32. - Rewrite how the AP works
  33. SPEC!! D Non-clique topologies
  34. D Implement our own memory management, at least for common structs
  35. . Appropriate logging
  36. - Come up with convention for what log level means what
  37. - Make code follow convention
  38. o Terminology
  39. o Circuits, topics, cells stay named that
  40. o 'Connection' gets divided, or renamed, or something?
  41. . DNS farm
  42. o Distribute queries onto the farm, get answers
  43. o Preemptively grow a new worker before he's needed
  44. - Prune workers when too many are idle
  45. o Keep track of which connections are in dns_wait
  46. o Need to cache positives/negatives on the tor side
  47. o Keep track of which queries have been asked
  48. . Better error handling when
  49. . An address doesn't resolve
  50. - We have max workers running
  51. - Consider taking the master out of the loop?
  52. . Directory servers
  53. D Automated reputation management
  54. NICK . Include key in source; sign directories
  55. o Signed directory backend
  56. - Document
  57. ARMA - Integrate
  58. - Add versions to code
  59. NICK . Have directories list recommended-versions
  60. o Include (unused) line in directories
  61. o Check for presence of line.
  62. - Quit if running the wrong version
  63. - Command-line option to override quit
  64. . Add more information to directory server entries
  65. o Exit policies
  66. D jurisdiction? others?
  67. SPEC!! D Figure out how to do threshold directory servers
  68. . Scrubbing proxies
  69. - Find an smtp proxy?
  70. - Check the old smtp proxy code
  71. o Find an ftp proxy? wget --passive
  72. D Wait until there are packet redirectors for Linux
  73. . Get socks4a support into Mozilla
  74. . Get tor to act like a socks server
  75. o socks4, socks4a
  76. - socks5
  77. SPEC!! - Handle socks commands other than connect, eg, bind?
  78. - Develop rendezvous points
  79. D Implement reply onions
  80. D Deploy and manage open source development site.
  81. . Documentation
  82. o Discussion of socks, tsocks, etc
  83. o On-the-network protocol
  84. o Onions
  85. o Cells
  86. . Better comments for functions!
  87. - Tests
  88. o Testing harness/infrastructure
  89. NICK . Unit tests
  90. D System tests (how?)
  91. - Performance tests, so we know when we've improved
  92. . webload infrastructure (Bruce)
  93. . httperf infrastructure (easy to set up)
  94. . oprofile (installed in RH 8.0)
  95. D Deploy a widespread network
  96. . Router twins
  97. o Choose twin if primary is down, when laying circuit
  98. D Load balancing between twins
  99. - Keep track of load over links/nodes, to
  100. know who's hosed
  101. NICK - Daemonize and package
  102. o Teach it to fork and background
  103. - Red Hat spec file
  104. - Debian spec file equivalent
  105. . Autoconf
  106. . Which .h files are we actually using? Port to:
  107. o Linux
  108. o BSD
  109. . Solaris
  110. . Windows
  111. NICK . OS X
  112. - openssl randomness
  113. - inet_ntoa, stdint.h
  114. - Make a script to set up a local network on your machine
  115. D Move away from openssl
  116. o Abstract out crypto calls
  117. D Look at nss, others? Just include code?
  118. . transition addr to sin_addr (huh?)
  119. . Clean up the number of places that get to look at prkey
  120. . Clearer bandwidth management
  121. - Total rate limiting
  122. . Look at OR handshake in more detail
  123. o Spec it
  124. o Merge OR and OP handshakes
  125. - rearrange connection_or so it doesn't suck so much to read
  126. D Periodic link key rotation. Spec?
  127. - More flexibility in node addressing
  128. D Support IPv6 rather than just 4
  129. - Handle multihomed servers (config variable to set IP)
  130. . Move from onions to ephemeral DH
  131. o incremental path building
  132. o transition circuit-level sendmes to hop-level sendmes
  133. - implement truncate, truncated
  134. o move from 192byte DH to 128byte DH, so it isn't so damn slow
  135. - exiting from not-last hop
  136. - OP logic to decide to extend/truncate a path
  137. - make sure exiting from the not-last hop works
  138. - logic to find last *open* hop, not last hop, in cpath
  139. - choose exit nodes by exit policies
  140. o wrap malloc with something that explodes when it fails