110-avoid-infinite-circuits.txt 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. Filename: 110-avoid-infinite-circuits.txt
  2. Title: Avoiding infinite length circuits
  3. Version: $Revision$
  4. Last-Modified: $Date$
  5. Author: Roger Dingledine
  6. Created: 13-Mar-2007
  7. Status: Accepted
  8. History:
  9. Revised 3 July 2008 by nickm: rename from relay_extend to
  10. relay_early. Revise to current migration plan. Allow K cells
  11. over circuit lifetime, not just at start.
  12. Overview:
  13. Right now, an attacker can add load to the Tor network by extending a
  14. circuit an arbitrary number of times. Every cell that goes down the
  15. circuit then adds N times that amount of load in overall bandwidth
  16. use. This vulnerability arises because servers don't know their position
  17. on the path, so they can't tell how many nodes there are before them
  18. on the path.
  19. We propose a new set of relay cells that are distinguishable by
  20. intermediate hops as permitting extend cells. This approach will allow
  21. us to put an upper bound on circuit length relative to the number of
  22. colluding adversary nodes; but there are some downsides too.
  23. Motivation:
  24. The above attack can be used to generally increase load all across the
  25. network, or it can be used to target specific servers: by building a
  26. circuit back and forth between two victim servers, even a low-bandwidth
  27. attacker can soak up all the bandwidth offered by the fastest Tor
  28. servers.
  29. The general attacks could be used as a demonstration that Tor isn't
  30. perfect (leading to yet more media articles about "breaking" Tor), and
  31. the targetted attacks will come into play once we have a reputation
  32. system -- it will be trivial to DoS a server so it can't pass its
  33. reputation checks, in turn impacting security.
  34. Design:
  35. We should split RELAY cells into two types: RELAY and RELAY_EARLY.
  36. Only K (say, 10) Relay_early cells can be sent across a circuit, and
  37. only relay_early cells are allowed to contain extend requests. We
  38. still support obscuring the length of the circuit (if more research
  39. shows us what to do), because Alice can choose how many of the K to
  40. mark as relay_early. Note that relay_early cells *can* contain any
  41. sort of data cell; so in effect it's actually the relay type cells
  42. that are restricted. By default, she would just send the first K
  43. data cells over the stream as relay_early cells, regardless of their
  44. actual type.
  45. Each intermediate server would pass on the same type of cell that it
  46. received (either relay or relay_early), and the cell's destination
  47. will be able to learn whether it's allowed to contain an Extend request.
  48. If an intermediate server receives more than K relay_early cells, or
  49. if it sees a relay cell that contains an extend request, then it
  50. tears down the circuit (protocol violation).
  51. Security implications:
  52. The upside is that this limits the bandwidth amplification factor to
  53. K: for an individual circuit to become arbitrary-length, the attacker
  54. would need an adversary-controlled node every K hops, and at that
  55. point the attack is no worse than if the attacker creates N/K separate
  56. K-hop circuits.
  57. On the other hand, we want to pick a large enough value of K that we
  58. don't mind the cap.
  59. If we ever want to take steps to hide the number of hops in the circuit
  60. or a node's position in the circuit, this design probably makes that
  61. more complex.
  62. Migration:
  63. In 0.2.0, servers speaking v2 or later of the link protocol accept
  64. RELAY_EARLY cells, and pass them on. If the next OR in the circuit
  65. is not speaking the v2 link protocol, the server relays the cell as
  66. a RELAY cell.
  67. In 0.2.1.x, clients begin using RELAY_EARLY cells on v2 connections.
  68. This functionality can be safely backported to 0.2.0.x. Clients
  69. should pick a random number betweeen (say) 8 and 10 to send.
  70. In 0.2.1.x, servers close any circuit in which more than K
  71. relay_early cells are sent.
  72. Once all versions the do not send RELAY_EARLY cells are obsolete,
  73. servers can begin to reject any EXTEND requests not sent in a
  74. RELAY_EARLY cell.
  75. Spec:
  76. [We can formalize this part once we think the design is a good one.]
  77. Acknowledgements:
  78. This design has been kicking around since Christian Grothoff and I came
  79. up with it at PET 2004. (Nathan Evans, Christian Grothoff's student,
  80. is working on implementing a fix based on this design in the summer
  81. 2007 timeframe.)