110-avoid-infinite-circuits.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. Hi folks,
  2. I figured I'd get up to speed on proposal writing with a rather simple
  3. one, rather than jump in over my head first. :) This design has been
  4. kicking around since Christian Grothoff and I came up with it at PET 2004.
  5. Filename: 1xx-avoid-infinite-circuits.txt
  6. Title: Avoiding infinite length circuits
  7. Version:
  8. Last-Modified:
  9. Author: Roger Dingledine
  10. Created:
  11. Status: Open
  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_EXTEND.
  36. Relay_extend cells can only be sent in the first K (say, 10) data
  37. cells sent across a circuit, and only relay_extend cells are allowed
  38. to contain extend requests. We still support obscuring the length of
  39. the circuit (if more research shows us what to do), because Alice can
  40. choose how many of the K to mark as relay_extend. Note that relay_extend
  41. cells *can* contain any sort of data cell; so in effect it's actually
  42. the relay type cells that are restricted.
  43. Each intermediate server would pass on the same type of cell that it
  44. received (either relay or relay_extend), and the cell's destination
  45. will be able to learn whether it's allowed to contain an Extend request.
  46. If an intermediate server receives a relay_extend cell after it has
  47. already seen k cells, or if it sees a relay cell that contains an
  48. extend request, then it tears down the circuit (protocol violation).
  49. Security implications:
  50. The upside is that this limits the bandwidth amplification factor to
  51. K: for an individual circuit to become arbitrary-length, the attacker
  52. would need an adversary-controlled node every K hops, and at that
  53. point the attack is no worse than if the attacker creates N/K separate
  54. K-hop circuits.
  55. On the other hand, we want to pick a large enough value of K that we
  56. don't mind the cap.
  57. If we ever want to take steps to hide the number of hops in the circuit
  58. or a node's position in the circuit, this design probably makes that
  59. more complex.
  60. Migration:
  61. Phase one: servers should recognize relay_extend cells and pass them
  62. on just like relay cells. Don't do any enforcement of the protocol
  63. yet. We could do this phase in the 0.2.0 timeline.
  64. Phase two: once support in phase one is pervasive, clients could start
  65. using relay_extend cells when all nodes currently in the circuit would
  66. recognize them. We could conceivably do this phase during 0.2.0 too.
  67. Phase three: once clients that don't use relay_extend cells are
  68. obsolete, servers should start enforcing the protocol.
  69. (Another migration plan would be to coordinate this with proposal
  70. 105's new link versions. Would that be better/worse? Can somebody
  71. sketch out what it might look like?)
  72. Spec:
  73. [We can formalize this part once we think the design is a good one.]
  74. Additional complexity:
  75. Rather than limiting the relay_extend cells to being in the first K
  76. data cells seen, we could instead permit up to K relay_extend cells
  77. in the lifetime of the circuit. This would let us extend the circuit
  78. later on in its life if we decided it was worth doing, though we would
  79. reveal our intent to each node in the circuit when we do.