tor-design.tex 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953
  1. \documentclass[times,10pt,twocolumn]{article}
  2. \usepackage{latex8}
  3. \usepackage{times}
  4. \usepackage{url}
  5. \usepackage{graphics}
  6. \usepackage{amsmath}
  7. \pagestyle{empty}
  8. \renewcommand\url{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}
  9. \newcommand\emailaddr{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}
  10. % If an URL ends up with '%'s in it, that's because the line *in the .bib/.tex
  11. % file* is too long, so break it there (it doesn't matter if the next line is
  12. % indented with spaces). -DH
  13. %\newif\ifpdf
  14. %\ifx\pdfoutput\undefined
  15. % \pdffalse
  16. %\else
  17. % \pdfoutput=1
  18. % \pdftrue
  19. %\fi
  20. \newenvironment{tightlist}{\begin{list}{$\bullet$}{
  21. \setlength{\itemsep}{0mm}
  22. \setlength{\parsep}{0mm}
  23. % \setlength{\labelsep}{0mm}
  24. % \setlength{\labelwidth}{0mm}
  25. % \setlength{\topsep}{0mm}
  26. }}{\end{list}}
  27. \begin{document}
  28. %% Use dvipdfm instead. --DH
  29. %\ifpdf
  30. % \pdfcompresslevel=9
  31. % \pdfpagewidth=\the\paperwidth
  32. % \pdfpageheight=\the\paperheight
  33. %\fi
  34. \title{Tor: The Second-Generation Onion Router}
  35. % Putting the 'Private' back in 'Virtual Private Network'
  36. %\author{Roger Dingledine \\ The Free Haven Project \\ arma@freehaven.net \and
  37. %Nick Mathewson \\ The Free Haven Project \\ nickm@freehaven.net \and
  38. %Paul Syverson \\ Naval Research Lab \\ syverson@itd.nrl.navy.mil}
  39. \maketitle
  40. \thispagestyle{empty}
  41. \begin{abstract}
  42. We present Tor, a circuit-based low-latency anonymous communication
  43. system. This second-generation Onion Routing system addresses limitations
  44. in the original design. We add perfect forward secrecy, congestion
  45. control, directory servers, integrity checking, variable exit policies,
  46. and a practical design for rendezvous points. Tor works on the real-world
  47. Internet, requires no special privileges or kernel modifications, requires
  48. little synchronization or coordination between nodes, and provides a
  49. reasonable trade-off between anonymity, usability, and efficiency. We
  50. close with a list of open problems in anonymous communication systems.
  51. \end{abstract}
  52. %\begin{center}
  53. %\textbf{Keywords:} anonymity, peer-to-peer, remailer, nymserver, reply block
  54. %\end{center}
  55. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  56. \Section{Overview}
  57. \label{sec:intro}
  58. Onion Routing is a distributed overlay network designed to anonymize
  59. low-latency TCP-based applications such as web browsing, secure shell,
  60. and instant messaging. Clients choose a path through the network and
  61. build a \emph{virtual circuit}, in which each node (or ``onion router'')
  62. in the path knows its predecessor and successor, but no other nodes in
  63. the circuit. Traffic flowing down the circuit is sent in fixed-size
  64. \emph{cells}, which are unwrapped by a symmetric key at each node
  65. (like the layers of an onion) and relayed downstream. The original
  66. Onion Routing project published several design and analysis papers
  67. \cite{or-ih96,or-jsac98,or-discex00,or-pet00}. While a wide area Onion
  68. Routing network was deployed for some weeks, the only long-running and
  69. publicly accessible implementation of the original design was a fragile
  70. proof-of-concept that ran on a single machine. Even this simple deployment
  71. processed connections from over sixty thousand distinct IP addresses from
  72. all over the world at an average rate of about fifty thousand per day.
  73. But many critical design and deployment issues were never
  74. resolved, and the design has not been updated in several years. Here
  75. we describe Tor, a protocol for asynchronous, loosely federated onion
  76. routers that provides the following improvements over the old Onion
  77. Routing design:
  78. \begin{tightlist}
  79. \item \textbf{Perfect forward secrecy:} The original Onion Routing
  80. design was vulnerable to a single hostile node recording traffic and
  81. later compromising successive nodes in the circuit and forcing them
  82. to decrypt it. Rather than using a single onion to lay each circuit,
  83. Tor now uses an incremental or \emph{telescoping} path-building design,
  84. where the initiator negotiates session keys with each successive hop in
  85. the circuit. Once these keys are deleted, subsequently compromised nodes
  86. cannot decrypt old traffic. As a side benefit, onion replay detection
  87. is no longer necessary, and the process of building circuits is more
  88. reliable, since the initiator knows when a hop fails and can then try
  89. extending to a new node.
  90. \item \textbf{Separation of protocol cleaning from anonymity:}
  91. The original Onion Routing design required a separate ``application
  92. proxy'' for each supported application protocol---most of which were
  93. never written, so many applications were never supported. Tor uses the
  94. standard and near-ubiquitous SOCKS \cite{socks4} proxy interface, allowing
  95. us to support most TCP-based programs without modification. This design
  96. change allows Tor to use the filtering features of privacy-enhancing
  97. application-level proxies such as Privoxy \cite{privoxy} without having
  98. to incorporate those features itself.
  99. \item \textbf{Many TCP streams can share one circuit:} The
  100. original Onion Routing design built a separate circuit for each
  101. application-level request. This hurt performance by requiring
  102. multiple public key operations for every request, and also presented
  103. a threat to anonymity from building so many different circuits; see
  104. Section~\ref{sec:maintaining-anonymity}. Tor multiplexes multiple TCP
  105. streams along each virtual circuit, to improve efficiency and anonymity.
  106. \item \textbf{Leaky-pipe circuit topology:} Through in-band signalling
  107. within the circuit, Tor initiators can direct traffic to nodes partway
  108. down the circuit. This novel approach allows both for long-range
  109. padding to frustrate traffic shape and volume attacks at the initiator
  110. \cite{defensive-dropping}, and, because circuits are used by more than one
  111. application, allows traffic to exit the circuit from the middle---thus
  112. frustrating traffic shape and volume attacks based on observing the end
  113. of the circuit.
  114. \item \textbf{No mixing, padding, or traffic shaping:} The original Onion
  115. Routing design called for batching and reordering the cells arriving from
  116. each circuit. It also included padding between onion routers and, in a
  117. later design, between onion proxies (that is, users) and onion routers
  118. \cite{or-ih96,or-jsac98}. The trade-off between padding protection
  119. and cost was discussed, but no general padding scheme was suggested. In
  120. \cite{or-pet00} it was theorized \emph{traffic shaping} would generally
  121. be used, but details were not provided. Recent research \cite{econymics}
  122. and deployment experience \cite{freedom21-security} suggest that this
  123. level of resource use is not practical or economical; and even full link
  124. padding is still vulnerable \cite{defensive-dropping}. Thus, until we
  125. have a proven and convenient design for traffic shaping or low-latency
  126. mixing that will improve anonymity against a realistic adversary, we
  127. leave these strategies out.
  128. \item \textbf{Congestion control:} Earlier anonymity designs do not
  129. address traffic bottlenecks. Unfortunately, typical approaches to
  130. load balancing and flow control in overlay networks involve inter-node
  131. control communication and global views of traffic. Tor's decentralized
  132. congestion control uses end-to-end acks to maintain reasonable anonymity
  133. while allowing nodes at the edges of the network to detect congestion
  134. or flooding attacks and send less data until the congestion subsides.
  135. \item \textbf{Directory servers:} The original Onion Routing design
  136. planned to flood link-state information through the network---an approach
  137. that can be unreliable and open to partitioning attacks or outright
  138. deception. Tor takes a simplified view toward distributing link-state
  139. information. Certain more trusted onion routers also act as directory
  140. servers: they provide signed \emph{directories} that describe known
  141. routers and their availability. Users periodically download these
  142. directories via HTTP.
  143. \item \textbf{Variable exit policies:} Tor provides a consistent mechanism
  144. for each node to specify and advertise a policy describing the hosts
  145. and ports to which it will connect. These exit policies are critical
  146. in a volunteer-based distributed infrastructure, because each operator
  147. is comfortable with allowing different types of traffic to exit the Tor
  148. network from his node.
  149. \item \textbf{End-to-end integrity checking:} The original Onion Routing
  150. design did no integrity checking on data. Any onion router on the
  151. circuit could change the contents of data cells as they passed by---for
  152. example, to alter a connection request on the fly so it would connect
  153. to a different webserver, or to `tag' encrypted traffic and look for
  154. corresponding corrupted traffic at the network edges \cite{minion-design}.
  155. Tor hampers these attacks by checking data integrity before it leaves
  156. the network.
  157. \item \textbf{Improved robustness to failed nodes:} A failed node
  158. in the old design meant that circuit-building failed, but thanks to
  159. Tor's step-by-step circuit building, users can notice failed nodes
  160. while building circuits and route around them. Additionally, liveness
  161. information from directories allows users to avoid unreliable nodes in
  162. the first place.
  163. \item \textbf{Rendezvous points and location-protected servers:}
  164. Tor provides an integrated mechanism for responder anonymity via
  165. location-protected servers. Previous Onion Routing designs included
  166. long-lived ``reply onions'' that could be used to build virtual circuits
  167. to a hidden server, but these reply onions did not provide forward
  168. security, and would become useless if any node in the path went down
  169. or rotated its keys. In Tor, clients negotiate {\it rendezvous points}
  170. to connect with hidden servers; reply onions are no longer required.
  171. \end{tightlist}
  172. Unlike anonymity systems like Freedom \cite{freedom2-arch}, Tor only
  173. attempts to anonymize TCP streams. Because it does not require patches
  174. (or built-in support) in an operating system's network stack, this
  175. approach has proven valuable to Tor's portability and deployability.
  176. We have implemented most of the above features. Our source code is
  177. available under a free license, and, as far as we know, is unencumbered by
  178. patents. We have recently begun deploying a widespread alpha network
  179. to test the design in practice, to get more experience with usability
  180. and users, and to provide a research platform for experimenting with
  181. new ideas.
  182. We review previous work in Section~\ref{sec:related-work}, describe
  183. our goals and assumptions in Section~\ref{sec:assumptions},
  184. and then address the above list of improvements in
  185. Sections~\ref{sec:design}-\ref{sec:rendezvous}. We summarize
  186. in Section~\ref{sec:attacks} how our design stands up to
  187. known attacks, and conclude with a list of open problems in
  188. Section~\ref{sec:maintaining-anonymity} and future work for the Onion
  189. Routing project in Section~\ref{sec:conclusion}.
  190. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  191. \Section{Related work}
  192. \label{sec:related-work}
  193. Modern anonymity systems date to Chaum's Mix-Net design
  194. \cite{chaum-mix}. Chaum
  195. proposed hiding the correspondence between sender and recipient by
  196. wrapping messages in layers of public key cryptography, and relaying them
  197. through a path composed of ``Mixes.'' These mixes in turn decrypt, delay,
  198. and re-order messages, before relaying them along the sender-selected
  199. path towards their destinations.
  200. Subsequent relay-based anonymity designs have diverged in two
  201. principal directions. Some have attempted to maximize anonymity at
  202. the cost of introducing comparatively large and variable latencies,
  203. including Babel \cite{babel}, Mixmaster \cite{mixmaster-spec}, and
  204. Mixminion \cite{minion-design}. Because of this
  205. decision, these \emph{high-latency} networks are well-suited for anonymous
  206. email, but introduce too much lag for interactive tasks such as web browsing,
  207. internet chat, or SSH connections.
  208. Tor belongs to the second category: \emph{low-latency} designs that
  209. attempt to anonymize interactive network traffic. These systems handle
  210. a variety of bidirectional protocols. They also provide more convenient
  211. mail delivery than the high-latency fire-and-forget anonymous email
  212. networks, because the remote mail server provides explicit delivery
  213. confirmation. But because these designs typically
  214. involve many packets that must be delivered quickly, it is
  215. difficult for them to prevent an attacker who can eavesdrop both ends of the
  216. communication from correlating the timing and volume
  217. of traffic entering the anonymity network with traffic leaving it. These
  218. protocols are also vulnerable against active attacks in which an
  219. adversary introduces timing patterns into traffic entering the network, and
  220. looks
  221. for correlated patterns among exiting traffic.
  222. Although some work has been done to frustrate
  223. these attacks,\footnote{
  224. The most common approach is to pad and limit communication to a constant
  225. rate, or to limit
  226. the variation in traffic shape. Doing so can have prohibitive bandwidth
  227. costs and/or performance limitations.
  228. } most designs protect primarily against traffic analysis rather than traffic
  229. confirmation \cite{or-jsac98}---that is, they assume that the attacker is
  230. attempting to learn who is talking to whom, not to confirm a prior suspicion
  231. about who is talking to whom.
  232. The simplest low-latency designs are single-hop proxies such as the
  233. Anonymizer \cite{anonymizer}, wherein a single trusted server strips the
  234. data's origin before relaying it. These designs are easy to
  235. analyze, but require end-users to trust the anonymizing proxy.
  236. Concentrating the traffic to a single point increases the anonymity set
  237. (the set of people a given user is hiding among), but it can make traffic
  238. analysis easier: an adversary need only eavesdrop on the proxy to observe
  239. the entire system.
  240. More complex are distributed-trust, circuit-based anonymizing systems.
  241. In these designs, a user establishes one or more medium-term bidirectional
  242. end-to-end circuits, and tunnels TCP streams in fixed-size cells.
  243. Establishing circuits is computationally expensive and typically
  244. requires public-key
  245. cryptography, whereas relaying cells is comparatively inexpensive and
  246. typically requires only symmetric encryption.
  247. Because a circuit crosses several servers, and each server only knows
  248. the adjacent servers in the circuit, no single server can link a
  249. user to her communication partners.
  250. The Java Anon Proxy (also known as JAP or Web MIXes) uses fixed shared
  251. routes known as \emph{cascades}. As with a single-hop proxy, this
  252. approach aggregates users into larger anonymity sets, but again an
  253. attacker only needs to observe both ends of the cascade to bridge all
  254. the system's traffic. The Java Anon Proxy's design provides
  255. protection by padding between end users and the head of the cascade
  256. \cite{web-mix}. However, it is not demonstrated whether the current
  257. implementation's padding policy improves anonymity.
  258. PipeNet \cite{back01, pipenet}, another low-latency design proposed at
  259. about the same time as the original Onion Routing design, provided
  260. stronger anonymity at the cost of allowing a single user to shut
  261. down the network simply by not sending. Low-latency anonymous
  262. communication has also been designed for other environments such as
  263. ISDN \cite{isdn-mixes}.
  264. In P2P designs like Tarzan \cite{tarzan:ccs02} and MorphMix
  265. \cite{morphmix:fc04}, all participants both generate traffic and relay
  266. traffic for others. These systems aim to prevent a peer
  267. or observer from knowing whether a given peer originated a request
  268. or just relayed it from another peer. While Tarzan and MorphMix use
  269. layered encryption as above, Crowds \cite{crowds-tissec} simply assumes
  270. an adversary who cannot observe the initiator: it uses no public-key
  271. encryption, so nodes on a circuit can read that circuit's traffic.
  272. Hordes \cite{hordes-jcs} is based on Crowds but also uses multicast
  273. responses to hide the initiator. Herbivore \cite{herbivore} and P5
  274. \cite{p5} go even further, requiring broadcast. They make anonymity
  275. and efficiency trade-offs to make broadcast more practical.
  276. These systems are designed primarily for communication between peers,
  277. although Herbivore users can make external connections by
  278. requesting a peer to serve as a proxy.
  279. Systems like Freedom and the original Onion Routing build the circuit
  280. all at once, using a layered ``onion'' of public-key encrypted messages,
  281. each layer of which provides a set of session keys and the address of the
  282. next server in the circuit. Tor as described herein, Tarzan, MorphMix,
  283. Cebolla \cite{cebolla}, and Rennhard's Anonymity Network \cite{anonnet}
  284. build the circuit
  285. in stages, extending it one hop at a time.
  286. Section~\ref{subsubsec:constructing-a-circuit} describes how this
  287. approach makes perfect forward secrecy feasible.
  288. Circuit-based anonymity designs must choose which protocol layer
  289. to anonymize. They may choose to intercept IP packets directly, and
  290. relay them whole (stripping the source address) along the circuit
  291. \cite{freedom2-arch,tarzan:ccs02}. Alternatively, like
  292. Tor, they may accept TCP streams and relay the data in those streams
  293. along the circuit, ignoring the breakdown of that data into TCP frames
  294. \cite{morphmix:fc04,anonnet}. Finally, they may accept application-level
  295. protocols (such as HTTP) and relay the application requests themselves
  296. along the circuit.
  297. Making this protocol-layer decision requires a compromise between flexibility
  298. and anonymity. For example, a system that understands HTTP, such as Crowds,
  299. can strip
  300. identifying information from those requests, can take advantage of caching
  301. to limit the number of requests that leave the network, and can batch
  302. or encode those requests in order to minimize the number of connections.
  303. On the other hand, an IP-level anonymizer can handle nearly any protocol,
  304. even ones unforeseen by their designers (though these systems require
  305. kernel-level modifications to some operating systems, and so are more
  306. complex and less portable). TCP-level anonymity networks like Tor present
  307. a middle approach: they are fairly application neutral (so long as the
  308. application supports, or can be tunneled across, TCP), but by treating
  309. application connections as data streams rather than raw TCP packets,
  310. they avoid the well-known inefficiencies of tunneling TCP over TCP
  311. \cite{tcp-over-tcp-is-bad}.
  312. Distributed-trust anonymizing systems need to prevent attackers from
  313. adding too many servers and thus compromising too many user paths.
  314. Tor relies on a small set of well-known directory servers, run by
  315. independent parties, to make decisions about which nodes can
  316. join. Tarzan and MorphMix allow unknown users to run servers, and use
  317. a limited resource (like IP addresses) to prevent an attacker from
  318. controlling too much of the network. Crowds suggests requiring
  319. written, notarized requests from potential crowd members.
  320. Anonymous communication is essential for censorship-resistant
  321. systems like Eternity \cite{eternity}, Free~Haven \cite{freehaven-berk},
  322. Publius \cite{publius}, and Tangler \cite{tangler}. Tor's rendezvous
  323. points enable connections between mutually anonymous entities; they
  324. are a building block for location-hidden servers, which are needed by
  325. Eternity and Free~Haven.
  326. % didn't include rewebbers. No clear place to put them, so I'll leave
  327. % them out for now. -RD
  328. \Section{Design goals and assumptions}
  329. \label{sec:assumptions}
  330. \SubSection{Goals}
  331. Like other low-latency anonymity designs, Tor seeks to frustrate
  332. attackers from linking communication partners, or from linking
  333. multiple communications to or from a single user. Within this
  334. main goal, however, several design considerations have directed
  335. Tor's evolution.
  336. \textbf{Deployability:} The design must be one that can be implemented,
  337. deployed, and used in the real world. This requirement precludes designs
  338. that are expensive to run (for example, by requiring more bandwidth
  339. than volunteers are willing to provide); designs that place a heavy
  340. liability burden on operators (for example, by allowing attackers to
  341. implicate onion routers in illegal activities); and designs that are
  342. difficult or expensive to implement (for example, by requiring kernel
  343. patches, or separate proxies for every protocol). This requirement also
  344. precludes systems in which non-anonymous parties (such as websites)
  345. must run our software. (We do not meet this goal for the current
  346. rendezvous design,
  347. however; see Section~\ref{sec:rendezvous}.)
  348. \textbf{Usability:} A hard-to-use system has fewer users---and because
  349. anonymity systems hide users among users, a system with fewer users
  350. provides less anonymity. Usability is thus not only a convenience for Tor:
  351. it is a security requirement \cite{econymics,back01}. Tor should
  352. therefore not
  353. require modifying applications; should not introduce prohibitive delays;
  354. and should require the user to make as few configuration decisions
  355. as possible. Finally, Tor should be easily implemented on all commonly used
  356. platforms; we cannot require users to change their operating system in order
  357. to be anonymous. (The current Tor implementation runs on Windows and
  358. assorted Unix-clones including Linux, FreeBSD, and MacOS X.)
  359. \textbf{Flexibility:} The protocol must be flexible and well-specified,
  360. so that it can serve as a test-bed for future research in low-latency
  361. anonymity systems. Many of the open problems in low-latency anonymity
  362. networks, such as generating dummy traffic or preventing Sybil attacks
  363. \cite{sybil}, may be solvable independently from the issues solved by
  364. Tor. Hopefully future systems will not need to reinvent Tor's design.
  365. (But note that while a flexible design benefits researchers,
  366. there is a danger that differing choices of extensions will make users
  367. distinguishable. Experiments should be run on a separate network.)
  368. \textbf{Simple design:} The protocol's design and security
  369. parameters must be well-understood. Additional features impose implementation
  370. and complexity costs; adding unproven techniques to the design threatens
  371. deployability, readability, and ease of security analysis. Tor aims to
  372. deploy a simple and stable system that integrates the best well-understood
  373. approaches to protecting anonymity.
  374. \SubSection{Non-goals}
  375. \label{subsec:non-goals}
  376. In favoring simple, deployable designs, we have explicitly deferred
  377. several possible goals, either because they are solved elsewhere, or because
  378. their solution is an open research problem.
  379. \textbf{Not Peer-to-peer:} Tarzan and MorphMix aim to scale to completely
  380. decentralized peer-to-peer environments with thousands of short-lived
  381. servers, many of which may be controlled by an adversary. This approach
  382. is appealing, but still has many open problems
  383. \cite{tarzan:ccs02,morphmix:fc04}.
  384. \textbf{Not secure against end-to-end attacks:} Tor does not claim
  385. to provide a definitive solution to end-to-end timing or intersection
  386. attacks. Some approaches, such as running an onion router, may help;
  387. see Section~\ref{sec:attacks} for more discussion.
  388. \textbf{No protocol normalization:} Tor does not provide \emph{protocol
  389. normalization} like Privoxy or the Anonymizer. If anonymization from
  390. the responder is desired for complex and variable
  391. protocols such as HTTP, Tor must be layered with a filtering proxy such
  392. as Privoxy to hide differences between clients, and expunge protocol
  393. features that leak identity.
  394. Note that by this separation Tor can also provide connections that
  395. are anonymous to the network yet authenticated to the responder, for
  396. example SSH.
  397. Similarly, Tor does not currently integrate
  398. tunneling for non-stream-based protocols like UDP; this too must be
  399. provided by an external service.
  400. % Actually, tunneling udp over tcp is probably horrible for some apps.
  401. % Should this get its own non-goal bulletpoint? The motivation for
  402. % non-goal-ness would be burden on clients / portability. -RD
  403. % No, leave it as is. -RD
  404. \textbf{Not steganographic:} Tor does not try to conceal which users are
  405. sending or receiving communications; it only tries to conceal with whom
  406. they communicate.
  407. \SubSection{Threat Model}
  408. \label{subsec:threat-model}
  409. A global passive adversary is the most commonly assumed threat when
  410. analyzing theoretical anonymity designs. But like all practical
  411. low-latency systems, Tor does not protect against such a strong
  412. adversary. Instead, we assume an adversary who can observe some fraction
  413. of network traffic; who can generate, modify, delete, or delay traffic
  414. on the network; who can operate onion routers of its own; and who can
  415. compromise some fraction of the onion routers on the network.
  416. In low-latency anonymity systems that use layered encryption, the
  417. adversary's typical goal is to observe both the initiator and the
  418. responder. Passive attackers can confirm a suspicion that Alice is
  419. talking to Bob if the timing and volume patterns of the traffic on the
  420. connection are distinct enough; active attackers can induce timing
  421. signatures on the traffic to \emph{force} distinct patterns. Tor provides
  422. some defenses against these \emph{traffic confirmation} attacks, for
  423. example by encouraging users to run their own onion routers, but it does
  424. not provide complete protection. Rather, we aim to prevent \emph{traffic
  425. analysis} attacks, where the adversary uses traffic patterns to learn
  426. which points in the network he should attack.
  427. Our adversary might try to link an initiator Alice with any of her
  428. communication partners, or he might try to build a profile of Alice's
  429. behavior. He might mount passive attacks by observing the edges of the
  430. network and correlating traffic entering and leaving the network---either
  431. by relationships in packet timing; relationships in the volume
  432. of data sent; or relationships in any externally visible user-selected
  433. options. The adversary can also mount active attacks by compromising
  434. routers or keys; by replaying traffic; by selectively denying service
  435. to trustworthy routers to encourage users to send their traffic through
  436. compromised routers, or denying service to users to see if the traffic
  437. elsewhere in the
  438. network stops; or by introducing patterns into traffic that can later be
  439. detected. The adversary might attack the directory servers to give users
  440. differing views of network state. Additionally, he can try to decrease
  441. the network's reliability by attacking nodes or by performing antisocial
  442. activities from reliable servers and trying to get them taken down;
  443. making the network unreliable flushes users to other less anonymous
  444. systems, where they may be easier to attack.
  445. We consider each of these attacks in more detail below, and summarize
  446. in Section~\ref{sec:attacks} how well the Tor design defends against
  447. each of them.
  448. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  449. \Section{The Tor Design}
  450. \label{sec:design}
  451. The Tor network is an overlay network; each node is called an onion router
  452. (OR). Onion routers run as normal user-level processes without needing
  453. any special
  454. privileges. Currently, each OR maintains a long-term TLS \cite{TLS}
  455. connection to every other
  456. OR. (We further discuss this clique-topology assumption in
  457. Section~\ref{sec:maintaining-anonymity}.) A subset of the ORs also act as
  458. directory servers, tracking which routers are in the network;
  459. see Section~\ref{subsec:dirservers} for directory server details.
  460. Each user
  461. runs local software called an onion proxy (OP) to fetch directories,
  462. establish paths (called \emph{virtual circuits}) across the network,
  463. and handle connections from user applications. These onion proxies accept
  464. TCP streams and multiplex them across the virtual circuit. The onion
  465. router on the other side
  466. % I don't mean other side, I mean wherever it is on the circuit. But
  467. % don't want to introduce complexity this early? Hm. -RD
  468. of the circuit connects to the destinations of
  469. the TCP streams and relays data.
  470. Each onion router uses three public keys: a long-term identity key, a
  471. short-term onion key, and a short-term link key. The identity
  472. (signing) key is used to sign TLS certificates, to sign its router
  473. descriptor (a summary of its keys, address, bandwidth, exit policy,
  474. etc), and to sign directories if it is a directory server. Changing
  475. the identity key of a router is considered equivalent to creating a
  476. new router. The onion (decryption) key is used for decrypting requests
  477. from users to set up a circuit and negotiate ephemeral keys. Finally,
  478. link keys are used by the TLS protocol when communicating between
  479. onion routers. Each short-term key is rotated periodically and
  480. independently, to limit the impact of key compromise.
  481. Section~\ref{subsec:cells} discusses the structure of the fixed-size
  482. \emph{cells} that are the unit of communication in Tor. We describe
  483. in Section~\ref{subsec:circuits} how virtual circuits are
  484. built, extended, truncated, and destroyed. Section~\ref{subsec:tcp}
  485. describes how TCP streams are routed through the network, and finally
  486. Section~\ref{subsec:congestion} talks about congestion control and
  487. fairness issues.
  488. \SubSection{Cells}
  489. \label{subsec:cells}
  490. Onion routers communicate with one another, and with users' OPs, via TLS
  491. connections with ephemeral keys. This prevents an attacker from
  492. impersonating an OR, conceals the contents of the connection with
  493. perfect forward secrecy, and prevents an attacker from modifying data
  494. on the wire.
  495. Traffic passes along these connections in fixed-size cells. Each cell
  496. is 256 bytes (but see Section~\ref{sec:conclusion} for a discussion of
  497. allowing large cells and small cells on the same network), and
  498. consists of a header and a payload. The header includes a circuit
  499. identifier (circID) that specifies which circuit the cell refers to
  500. (many circuits can be multiplexed over the single TLS connection), and
  501. a command to describe what to do with the cell's payload. (Circuit
  502. identifiers are connection-specific: each single circuit has one circID
  503. for the forward connection and another for the backward connection.)
  504. % XXX Say that each OR can have many circuits with same circID, so
  505. % XXX long as they're on different connections, and that ORs know
  506. % XXX which circIDs/connection pairs are linked by a circuit.
  507. Based on their command, cells are either \emph{control} cells, which are
  508. always interpreted by the node that receives them, or \emph{relay} cells,
  509. which carry end-to-end stream data. The control cell commands are:
  510. \emph{padding} (currently used for keepalive, but also usable for link
  511. padding); \emph{create} or \emph{created} (used to set up a new circuit);
  512. and \emph{destroy} (to tear down a circuit).
  513. Relay cells have an additional header (the relay header) after the
  514. cell header, containing the stream identifier (many streams can
  515. be multiplexed over a circuit); an end-to-end checksum for integrity
  516. checking; the length of the relay payload; and a relay command.
  517. % XXX Mention _here_ that relay headers are {en|de}crypted as they
  518. % XXX progress along the circuit.
  519. The
  520. relay commands are: \emph{relay
  521. data} (for data flowing down the stream), \emph{relay begin} (to open a
  522. stream), \emph{relay end} (to close a stream cleanly), \emph{relay
  523. teardown} (to close a broken stream), \emph{relay connected}
  524. (to notify the OP that a relay begin has succeeded), \emph{relay
  525. extend} and \emph{relay extended} (to extend the circuit by a hop,
  526. and to acknowledge), \emph{relay truncate} and \emph{relay truncated}
  527. (to tear down only part of the circuit, and to acknowledge), \emph{relay
  528. sendme} (used for congestion control), and \emph{relay drop} (used to
  529. implement long-range dummies).
  530. We describe each of these cell types and commands in more detail below.
  531. \SubSection{Circuits and streams}
  532. \label{subsec:circuits}
  533. % I think when we say ``the user,'' maybe we should say ``the user's OP.''
  534. The original Onion Routing design built one circuit for each
  535. TCP stream. Because building a circuit can take several tenths of a
  536. second (due to public-key cryptography delays and network latency),
  537. this design imposed high costs on applications like web browsing that
  538. open many TCP streams.
  539. In Tor, each circuit can be shared by many TCP streams. To avoid
  540. delays, users construct circuits preemptively. To limit linkability
  541. among their streams, users' OPs build a new circuit
  542. periodically if the previous one has been used,
  543. and expire old used circuits that no longer have any open streams.
  544. OPs consider making a new circuit once a minute: thus
  545. even heavy users spend a negligible amount of time and CPU in
  546. building circuits, but only a limited number of requests can be linked
  547. to each other through a given exit node. Also, because circuits are built
  548. in the background, OPs can recover from failed circuit creation
  549. without delaying streams and thereby harming user experience.
  550. Because we are using in-band signalling, in theory a cell layer could
  551. randomly decrypt to a valid relay command and stream identifier
  552. causing any of several errors depending what the command and
  553. identifier are. It is possible to use encoding schemes that entirely
  554. prevent this. However, we currently rely simply on the very low
  555. probability of such a collision given our stream identifier size of
  556. seven bytes, plus one byte for the command.
  557. \subsubsection{Constructing a circuit}
  558. \label{subsubsec:constructing-a-circuit}
  559. %XXXX Discuss what happens with circIDs here.
  560. A user's OP constructs a circuit incrementally, negotiating a
  561. symmetric key with each OR on the circuit, one hop at a time. To begin
  562. creating a new circuit, the OP (call her Alice) sends a
  563. \emph{create} cell to the first node in her chosen path. This cell's
  564. payload contains the first half of the Diffie-Hellman handshake
  565. ($g^x$), encrypted to the onion key of the OR (call him Bob). Bob
  566. responds with a \emph{created} cell containing the second half of the
  567. DH handshake, along with a hash of the negotiated key $K=g^{xy}$.
  568. Once the circuit has been established, Alice and Bob can send one
  569. another relay cells encrypted with the negotiated
  570. key.\footnote{Actually, the negotiated key is used to derive two
  571. symmetric keys: one for each direction.} More detail is given in
  572. the next section.
  573. To extend the circuit further, Alice sends a \emph{relay extend} cell
  574. to Bob, specifying the address of the next OR (call her Carol), and
  575. an encrypted $g^{x_2}$ for her. Bob copies the half-handshake into a
  576. \emph{create} cell, and passes it to Carol to extend the circuit.
  577. When Carol responds with a \emph{created} cell, Bob wraps the payload
  578. into a \emph{relay extended} cell and passes it back to Alice. Now
  579. the circuit is extended to Carol, and Alice and Carol share a common key
  580. $K_2 = g^{x_2 y_2}$.
  581. To extend the circuit to a third node or beyond, Alice
  582. proceeds as above, always telling the last node in the circuit to
  583. extend one hop further.
  584. % XXX Briefly mention path selection and path length.
  585. This circuit-level handshake protocol achieves unilateral entity
  586. authentication (Alice knows she's handshaking with the OR, but
  587. the OR doesn't care who is opening the circuit---Alice has no key
  588. and is trying to remain anonymous) and unilateral key authentication
  589. (Alice and the OR agree on a key, and Alice knows the OR is the
  590. only other entity who should know it). It also achieves forward
  591. secrecy and key freshness. More formally, the protocol is as follows
  592. (where $E_{PK_{Bob}}(\cdot)$ is encryption with Bob's public key,
  593. $H$ is a secure hash function, and $|$ is concatenation):
  594. \begin{equation}
  595. \begin{aligned}
  596. \mathrm{Alice} \rightarrow \mathrm{Bob}&: E_{PK_{Bob}}(g^x) \\
  597. \mathrm{Bob} \rightarrow \mathrm{Alice}&: g^y, H(K | \mathrm{``handshake"}) \\
  598. \end{aligned}
  599. \end{equation}
  600. In the second step, Bob proves that it was he who who received $g^x$,
  601. and who came up with $y$. We use PK encryption in the first step
  602. (rather than, say, using the first two steps of STS, which has a
  603. signature in the second step) because a single cell is too small to
  604. hold both a public key and a signature. Preliminary analysis with the
  605. NRL protocol analyzer \cite{meadows96} shows the above protocol to be
  606. secure (including providing perfect forward secrecy) under the
  607. traditional Dolev-Yao model.
  608. \subsubsection{Relay cells}
  609. Once Alice has established the circuit (so she shares keys with each
  610. OR on the circuit), she can send relay cells.
  611. % XXX Describe _here_ what happens with relay cells that are not
  612. % XXX targeted at a given node; how they're decrypted; how they're
  613. % XXX encrypted. The easiest expository order should probably be: What ORs
  614. % XXX Do With Unrecognized Streams; What Alice Does To Build Relay
  615. % XXX Cells; What ORs Do With Streams They Recognize.
  616. Recall that every relay cell has a stream ID in the relay header
  617. that indicates to
  618. which stream the cell belongs.
  619. This stream ID allows a relay cell to be addressed to any of the ORs
  620. on the circuit. To
  621. construct a relay cell addressed to a given OR, Alice iteratively
  622. encrypts the cell payload (that is, the relay header and payload)
  623. with the symmetric key of each hop up to that OR. Then, at each hop
  624. down the circuit, the OR decrypts the cell payload and checks whether
  625. it recognizes the stream ID. A stream ID is recognized either if it
  626. is an already open stream at that OR, or if it is equal to zero. The
  627. zero stream ID is treated specially, and is used for control messages,
  628. e.g. starting a new stream. If the stream ID is unrecognized, the OR
  629. passes the relay cell downstream. This \emph{leaky pipe} circuit topology
  630. allows Alice's streams to exit at different ORs on a single circuit.
  631. Alice may choose different exit points because of their exit policies,
  632. or to keep the ORs from knowing that two streams
  633. originate at the same person.
  634. To tear down a whole circuit, Alice sends a \emph{destroy} control
  635. cell. Each OR
  636. in the circuit receives the \emph{destroy} cell, closes all open streams on
  637. that circuit, and passes a new \emph{destroy} cell forward. But since circuits
  638. can be built incrementally, they can also be torn down incrementally:
  639. Alice can instead send a relay truncate cell to a node along the circuit. That
  640. node will send a \emph{destroy} cell forward, and reply with an acknowledgment
  641. (a \emph{relay truncated} cell). Alice might truncate her circuit so
  642. she can extend it
  643. to different nodes without signalling to the first few nodes (or somebody
  644. observing them) that she is changing her circuit. That is, nodes in the
  645. middle of a circuit are not even aware that the circuit has been
  646. truncated, because they see only the encrypted relay cells.
  647. Similarly, if a node on the circuit goes down,
  648. the adjacent node can send a \emph{relay truncated} cell back to
  649. Alice. Thus the
  650. ``break a node and see which circuits go down'' attack is weakened.
  651. \SubSection{Opening and closing streams}
  652. \label{subsec:tcp}
  653. When Alice's application wants to open a TCP connection to a given
  654. address and port, it asks the OP (via SOCKS) to make the connection. The
  655. OP chooses the newest open circuit (or creates one if none is available),
  656. chooses a suitable OR on that circuit to be the exit node (usually the
  657. last node, but maybe others due to exit policy conflicts; see
  658. Section~\ref{subsec:exitpolicies}), chooses a new random stream ID for
  659. this stream,
  660. and delivers a relay begin cell to that exit node. It uses a stream ID
  661. of zero for the begin cell (so the OR will recognize it), and the relay
  662. payload lists the new stream ID and the destination address and port.
  663. Once the exit node completes the connection to the remote host, it
  664. responds with a relay connected cell through the circuit. Upon receipt,
  665. the OP notifies the application that it can begin talking.
  666. There's a catch to using SOCKS, though -- some applications hand the
  667. alphanumeric address to the proxy, while others resolve it into an IP
  668. address first and then hand the IP to the proxy. When the application
  669. does the DNS resolution first, Alice broadcasts her destination. Common
  670. applications like Mozilla and ssh have this flaw.
  671. In the case of Mozilla, we're fine: the filtering web proxy called Privoxy
  672. does the SOCKS call safely, and Mozilla talks to Privoxy safely. But a
  673. portable general solution, such as for ssh, is an open problem. We can
  674. modify the local nameserver, but this approach is invasive, brittle, and
  675. not portable. We can encourage the resolver library to do resolution
  676. via TCP rather than UDP, but this approach is hard to do right, and also
  677. has portability problems. We can provide a tool similar to \emph{dig} that
  678. can do a private lookup through the Tor network. Our current answer is to
  679. encourage the use of privacy-aware proxies like Privoxy wherever possible,
  680. Ending a Tor stream is analogous to ending a TCP stream: it uses a
  681. two-step handshake for normal operation, or a one-step handshake for
  682. errors. If one side of the stream closes abnormally, that node simply
  683. sends a relay teardown cell, and tears down the stream. If one side
  684. of the stream closes the connection normally, that node sends a relay
  685. end cell down the circuit. When the other side has sent back its own
  686. relay end, the stream can be torn down. This two-step handshake allows
  687. for TCP-based applications that, for example, close a socket for writing
  688. but are still willing to read. Remember that all relay cells use layered
  689. encryption, so only the destination OR knows what type of relay cell
  690. it is.
  691. \SubSection{Integrity checking on streams}
  692. Because the old Onion Routing design used a stream cipher, traffic was
  693. vulnerable to a malleability attack: even though the attacker could not
  694. decrypt cells, he could make changes to an encrypted
  695. cell to create corresponding changes to the data leaving the network.
  696. (Even an external adversary could do this, despite link encryption!)
  697. This weakness allowed an adversary to change a padding cell to a destroy
  698. cell; change the destination address in a relay begin cell to the
  699. adversary's webserver; or change a user on an ftp connection from
  700. typing ``dir'' to typing ``delete~*''. Any node or external adversary
  701. along the circuit could introduce such corruption in a stream---if it
  702. knew or could guess the encrypted content.
  703. Tor prevents external adversaries from mounting this attack simply by
  704. using TLS, which provides integrity checking.
  705. Addressing the insider malleability attack, however, is
  706. more complex.
  707. We could do integrity checking of the relay cells at each hop, either
  708. by including hashes or by using a cipher mode like EAX \cite{eax},
  709. but we don't want the added message-expansion overhead at each hop, and
  710. we don't want to leak the path length or pad to some max path length.
  711. Because we've already accepted that our design is vulnerable to end-to-end
  712. timing attacks, we can perform integrity checking only at the edges of
  713. the circuit without introducing any new anonymity attacks. When Alice
  714. negotiates a key
  715. with each hop, they both start a SHA-1 with some derivative of that key,
  716. % Not just the exit hop, but each hop: any hop can be an exit node. -RD
  717. thus starting out with randomness that only the two of them know. From
  718. then on they each incrementally add to the SHA-1 all the data bytes
  719. entering or exiting from the circuit, and each such relay cell includes
  720. the first 4 bytes of the current value of the hash.
  721. The attacker must be able to guess all previous bytes between Alice
  722. and Bob on that circuit (including the pseudorandomness from the key
  723. negotiation), plus the bytes in the current cell, to remove or modify the
  724. cell. Attacks on SHA-1 where the adversary can incrementally add to a
  725. hash to produce a new valid hash don't work,
  726. because all hashes are end-to-end encrypted across the circuit.
  727. The computational overhead is minimal compared to doing an AES
  728. crypt at each hop in the circuit. We use only four bytes per cell to
  729. minimize overhead; the chance that an adversary will correctly guess a
  730. valid hash, plus the payload the current cell, is acceptly low, given
  731. that Alice or Bob tear down the circuit if they receive a bad hash.
  732. \SubSection{Rate limiting and fairness}
  733. Volunteers are generally more willing to run services that can limit
  734. their bandwidth usage. To accomodate them, Tor servers use a token
  735. bucket approach to limit the number of bytes they
  736. % XXX cite token bucket?
  737. receive. Tokens are added to the bucket each second (when the bucket is
  738. full, new tokens are discarded.) Each token represents permission to
  739. receive one byte from the network---to receive a byte, the connection
  740. must remove a token from the bucket. Thus if the bucket is empty, that
  741. connection must wait until more tokens arrive. The number of tokens we
  742. add enforces a long-term average rate of incoming bytes, while still
  743. permitting short-term bursts above the allowed bandwidth. Current bucket
  744. sizes are set to ten seconds worth of traffic.
  745. Further, we want to avoid starving any Tor streams. Entire circuits
  746. could starve if we read greedily from connections and one connection
  747. uses all the remaining bandwidth. We solve this by dividing the number
  748. of tokens in the bucket by the number of connections that want to read,
  749. and reading at most that number of bytes from each connection. We iterate
  750. this procedure until the number of tokens in the bucket is under some
  751. threshold (e.g., 10KB), at which point we greedily read from connections.
  752. Because the Tor protocol generates roughly the same number of outgoing
  753. bytes as incoming bytes, it is sufficient in practice to rate-limit
  754. incoming bytes.
  755. % Is it? Fun attack: I send you lots of 1-byte-at-a-time TCP frames.
  756. % In response, you send lots of 256 byte cells. Can I use this to
  757. % make you exceed your outgoing bandwidth limit by a factor of 256? -NM
  758. % Can we resolve this by, when reading from edge connections, rounding up
  759. % the bytes read (wrt buckets) to the nearest multiple of 256? -RD
  760. Further, inspired by Rennhard et al's design in \cite{anonnet}, a
  761. circuit's edges heuristically distinguish interactive streams from bulk
  762. streams by comparing the frequency with which they supply cells. We can
  763. provide good latency for interactive streams by giving them preferential
  764. service, while still getting good overall throughput to the bulk
  765. streams. Such preferential treatment presents a possible end-to-end
  766. attack, but an adversary who can observe both
  767. ends of the stream can already learn this information through timing
  768. attacks.
  769. \SubSection{Congestion control}
  770. \label{subsec:congestion}
  771. Even with bandwidth rate limiting, we still need to worry about
  772. congestion, either accidental or intentional. If enough users choose the
  773. same OR-to-OR connection for their circuits, that connection can become
  774. saturated. For example, an adversary could make a large HTTP PUT request
  775. through the onion routing network to a webserver he runs, and then
  776. refuse to read any of the bytes at the webserver end of the
  777. circuit. Without some congestion control mechanism, these bottlenecks
  778. can propagate back through the entire network. We describe our
  779. responses below.
  780. \subsubsection{Circuit-level}
  781. To control a circuit's bandwidth usage, each OR keeps track of two
  782. windows. The \emph{package window} tracks how many relay data cells the OR is
  783. allowed to package (from outside streams) for transmission back to the OP,
  784. and the \emph{deliver window} tracks how many relay data cells it is willing
  785. to deliver to streams outside the network. Each window is initialized
  786. (say, to 1000 data cells). When a data cell is packaged or delivered,
  787. the appropriate window is decremented. When an OR has received enough
  788. data cells (currently 100), it sends a relay sendme cell towards the OP,
  789. with stream ID zero. When an OR receives a relay sendme cell with stream
  790. ID zero, it increments its packaging window. Either of these cells
  791. increments the corresponding window by 100. If the packaging window
  792. reaches 0, the OR stops reading from TCP connections for all streams
  793. on the corresponding circuit, and sends no more relay data cells until
  794. receiving a relay sendme cell.
  795. The OP behaves identically, except that it must track a packaging window
  796. and a delivery window for every OR in the circuit. If a packaging window
  797. reaches 0, it stops reading from streams destined for that OR.
  798. \subsubsection{Stream-level}
  799. The stream-level congestion control mechanism is similar to the
  800. circuit-level mechanism above. ORs and OPs use relay sendme cells
  801. to implement end-to-end flow control for individual streams across
  802. circuits. Each stream begins with a package window (e.g., 500 cells),
  803. and increments the window by a fixed value (50) upon receiving a relay
  804. sendme cell. Rather than always returning a relay sendme cell as soon
  805. as enough cells have arrived, the stream-level congestion control also
  806. has to check whether data has been successfully flushed onto the TCP
  807. stream; it sends a relay sendme only when the number of bytes pending
  808. to be flushed is under some threshold (currently 10 cells worth).
  809. Currently, non-data relay cells do not affect the windows. Thus we
  810. avoid potential deadlock issues, for example, arising because a stream
  811. can't send a relay sendme cell when its packaging window is empty.
  812. % XXX Bad heading
  813. \subsubsection{Needs more research}
  814. We don't need to reimplement full TCP windows (with sequence numbers,
  815. the ability to drop cells when we're full and retransmit later, etc),
  816. because the TCP streams already guarantee in-order delivery of each
  817. cell. But we need to investigate further the effects of the current
  818. parameters on throughput and latency, while also keeping privacy in mind;
  819. see Section~\ref{sec:maintaining-anonymity} for more discussion.
  820. \Section{Other design decisions}
  821. \SubSection{Resource management and denial-of-service}
  822. \label{subsec:dos}
  823. Providing Tor as a public service provides many opportunities for an
  824. attacker to mount denial-of-service attacks against the network. While
  825. flow control and rate limiting (discussed in
  826. Section~\ref{subsec:congestion}) prevent users from consuming more
  827. bandwidth than routers are willing to provide, opportunities remain for
  828. users to
  829. consume more network resources than their fair share, or to render the
  830. network unusable for other users.
  831. First of all, there are several CPU-consuming denial-of-service
  832. attacks wherein an attacker can force an OR to perform expensive
  833. cryptographic operations. For example, an attacker who sends a
  834. \emph{create} cell full of junk bytes can force an OR to perform an RSA
  835. decrypt. Similarly, an attacker can
  836. fake the start of a TLS handshake, forcing the OR to carry out its
  837. (comparatively expensive) half of the handshake at no real computational
  838. cost to the attacker.
  839. Several approaches exist to address these attacks. First, ORs may
  840. require clients to solve a puzzle \cite{puzzles-tls} while beginning new
  841. TLS handshakes or accepting \emph{create} cells. So long as these
  842. tokens are easy to verify and computationally expensive to produce, this
  843. approach limits the attack multiplier. Additionally, ORs may limit
  844. the rate at which they accept create cells and TLS connections, so that
  845. the computational work of processing them does not drown out the (comparatively
  846. inexpensive) work of symmetric cryptography needed to keep cells
  847. flowing. This rate limiting could, however, allow an attacker
  848. to slow down other users when they build new circuits.
  849. % What about link-to-link rate limiting?
  850. Attackers also have an opportunity to attack the Tor network by mounting
  851. attacks on its hosts and network links. Disrupting a single circuit or
  852. link breaks all currently open streams passing along that part of the
  853. circuit. Indeed, this same loss of service occurs when a router crashes
  854. or its operator restarts it. The current Tor design treats such attacks
  855. as intermittent network failures, and depends on users and applications
  856. to respond or recover as appropriate. A future design could use an
  857. end-to-end TCP-like acknowledgment protocol, so that no streams are
  858. lost unless the entry or exit point itself is disrupted. This solution
  859. would require more buffering at the network edges, however, and the
  860. performance and anonymity implications from this extra complexity still
  861. require investigation.
  862. \SubSection{Exit policies and abuse}
  863. \label{subsec:exitpolicies}
  864. %XXX originally, we planned to put the "users only know the hostname,
  865. % not the IP, but exit policies are by IP" problem here too. Worth
  866. % while still? -RD
  867. Exit abuse is a serious barrier to wide-scale Tor deployment. Anonymity
  868. presents would-be vandals and abusers with an opportunity to hide
  869. the origins of their activities. Attackers can harm the Tor network by
  870. implicating exit servers for their abuse. Also, applications that commonly
  871. use IP-based authentication (such as institutional mail or web servers)
  872. can be fooled by the fact that anonymous connections appear to originate
  873. at the exit OR.
  874. We stress that Tor does not enable any new class of abuse. Spammers
  875. and other attackers already have access to thousands of misconfigured
  876. systems worldwide, and the Tor network is far from the easiest way
  877. to launch these antisocial or illegal attacks.
  878. %Indeed, because of its limited
  879. %anonymity, Tor is probably not a good way to commit crimes.
  880. But because the
  881. onion routers can easily be mistaken for the originators of the abuse,
  882. and the volunteers who run them may not want to deal with the hassle of
  883. repeatedly explaining anonymity networks, we must block or limit attacks
  884. and other abuse that travel through the Tor network.
  885. To mitigate abuse issues, in Tor, each onion router's \emph{exit policy}
  886. describes to which external addresses and ports the router will permit
  887. stream connections. On one end of the spectrum are \emph{open exit}
  888. nodes that will connect anywhere. On the other end are \emph{middleman}
  889. nodes that only relay traffic to other Tor nodes, and \emph{private exit}
  890. nodes that only connect to a local host or network. Using a private
  891. exit (if one exists) is a more secure way for a client to connect to a
  892. given host or network---an external adversary cannot eavesdrop traffic
  893. between the private exit and the final destination, and so is less sure of
  894. Alice's destination and activities. Most onion routers will function as
  895. \emph{restricted exits} that permit connections to the world at large,
  896. but prevent access to certain abuse-prone addresses and services. In
  897. general, nodes can require a variety of forms of traffic authentication
  898. \cite{or-discex00}.
  899. %The abuse issues on closed (e.g. military) networks are different
  900. %from the abuse on open networks like the Internet. While these IP-based
  901. %access controls are still commonplace on the Internet, on closed networks,
  902. %nearly all participants will be honest, and end-to-end authentication
  903. %can be assumed for important traffic.
  904. Many administrators will use port restrictions to support only a
  905. limited set of well-known services, such as HTTP, SSH, or AIM.
  906. This is not a complete solution, since abuse opportunities for these
  907. protocols are still well known. Nonetheless, the benefits are real,
  908. since administrators seem used to the concept of port 80 abuse not
  909. coming from the machine's owner.
  910. A further solution may be to use proxies to clean traffic for certain
  911. protocols as it leaves the network. For example, much abusive HTTP
  912. behavior (such as exploiting buffer overflows or well-known script
  913. vulnerabilities) can be detected in a straightforward manner.
  914. Similarly, one could run automatic spam filtering software (such as
  915. SpamAssassin) on email exiting the OR network.
  916. ORs may also choose to rewrite exiting traffic in order to append
  917. headers or other information to indicate that the traffic has passed
  918. through an anonymity service. This approach is commonly used
  919. by email-only anonymity systems. When possible, ORs can also
  920. run on servers with hostnames such as {\it anonymous}, to further
  921. alert abuse targets to the nature of the anonymous traffic.
  922. A mixture of open and restricted exit nodes will allow the most
  923. flexibility for volunteers running servers. But while many
  924. middleman nodes help provide a large and robust network,
  925. having only a few exit nodes reduces the number of points
  926. an adversary needs to monitor for traffic analysis, and places a
  927. greater burden on the exit nodes. This tension can be seen in the
  928. Java Anon Proxy
  929. cascade model, wherein only one node in each cascade needs to handle
  930. abuse complaints---but an adversary only needs to observe the entry
  931. and exit of a cascade to perform traffic analysis on all that
  932. cascade's users. The Hydra model (many entries, few exits) presents a
  933. different compromise: only a few exit nodes are needed, but an
  934. adversary needs to work harder to watch all the clients; see
  935. Section~\ref{sec:conclusion}.
  936. Finally, we note that exit abuse must not be dismissed as a peripheral
  937. issue: when a system's public image suffers, it can reduce the number
  938. and diversity of that system's users, and thereby reduce the anonymity
  939. of the system itself. Like usability, public perception is also a
  940. security parameter. Sadly, preventing abuse of open exit nodes is an
  941. unsolved problem, and will probably remain an arms race for the
  942. forseeable future. The abuse problems faced by Princeton's CoDeeN
  943. project \cite{darkside} give us a glimpse of likely issues.
  944. \SubSection{Directory Servers}
  945. \label{subsec:dirservers}
  946. First-generation Onion Routing designs \cite{freedom2-arch,or-jsac98} used
  947. in-band network status updates: each router flooded a signed statement
  948. to its neighbors, which propagated it onward. But anonymizing networks
  949. have different security goals than typical link-state routing protocols.
  950. For example, delays (accidental or intentional)
  951. that can cause different parts of the network to have different pictures
  952. of link-state and topology are not only inconvenient---they give
  953. attackers an opportunity to exploit differences in client knowledge.
  954. We also worry about attacks to deceive a
  955. client about the router membership list, topology, or current network
  956. state. Such \emph{partitioning attacks} on client knowledge help an
  957. adversary to efficiently deploy resources
  958. when attacking a target.
  959. Tor uses a small group of redundant, well-known onion routers to
  960. track changes in network topology and node state, including keys and
  961. exit policies. Each such \emph{directory server} also acts as an HTTP
  962. server, so participants can fetch current network state and router
  963. lists (a \emph{directory}), and so other onion routers can upload
  964. their router descriptors. Onion routers periodically publish signed
  965. statements of their state to each directory server, which combines this
  966. state information with its own view of network liveness, and generates
  967. a signed description of the entire network state. Client software is
  968. pre-loaded with a list of the directory servers and their keys; it uses
  969. this information to bootstrap each client's view of the network.
  970. When a directory server receives a signed statement from an onion
  971. router, it recognizes the onion router by its identity key. Directory
  972. servers do not automatically advertise unrecognized ORs. (If they did,
  973. an adversary could take over the network by creating many servers
  974. \cite{sybil}.) Instead, new nodes must be approved by the directory
  975. server administrator before they are included. Mechanisms for automated
  976. node approval are an area of active research, and are discussed more
  977. in Section~\ref{sec:maintaining-anonymity}.
  978. Of course, a variety of attacks remain. An adversary who controls
  979. a directory server can track certain clients by providing different
  980. information---perhaps by listing only nodes under its control, or by
  981. informing only certain clients about a given node. Even an external
  982. adversary can exploit differences in client knowledge: clients who use
  983. a node listed on one directory server but not the others are vulnerable.
  984. Thus these directory servers must be synchronized and redundant.
  985. Directories are valid if they are signed by a threshold of the directory
  986. servers.
  987. The directory servers in Tor are modeled after those in Mixminion
  988. \cite{minion-design}, but our situation is easier. First, we make the
  989. simplifying assumption that all participants agree on the set of
  990. directory servers. Second, while Mixminion needs to predict node
  991. behavior, Tor only needs a threshold consensus of the current
  992. state of the network.
  993. Tor directory servers build a consensus directory through a simple
  994. four-round broadcast protocol. In round one, each server dates and
  995. signs its current opinion, and broadcasts it to the other directory
  996. servers; then in round two, each server rebroadcasts all the signed
  997. opinions it has received. At this point all directory servers check
  998. to see whether any server has signed multiple opinions in the same
  999. period. Such a server is either broken or cheating, so the protocol
  1000. stops and notifies the administrators, who either remove the cheater
  1001. or wait for the broken server to be fixed. If there are no
  1002. discrepancies, each directory server then locally computes an algorithm
  1003. (described below)
  1004. on the set of opinions, resulting in a uniform shared directory. In
  1005. round three servers sign this directory and broadcast it; and finally
  1006. in round four the servers rebroadcast the directory and all the
  1007. signatures. If any directory server drops out of the network, its
  1008. signature is not included on the final directory.
  1009. The rebroadcast steps ensure that a directory server is heard by
  1010. either all of the other servers or none of them, even when some links
  1011. are down (assuming that any two directory servers can talk directly or
  1012. via a third). Broadcasts are feasible because there are relatively few
  1013. directory servers (currently 3, but we expect as many as 9 as the network
  1014. scales). Computing the shared directory locally is a straightforward
  1015. threshold voting process: we include an OR if a majority of directory
  1016. servers believe it to be good.
  1017. To avoid attacks where a router connects to all the directory servers
  1018. but refuses to relay traffic from other routers, the directory servers
  1019. must build circuits and use them to anonymously test router reliability
  1020. \cite{mix-acc}.
  1021. Using directory servers is simpler and more flexible than flooding.
  1022. For example, flooding complicates the analysis when we
  1023. start experimenting with non-clique network topologies. And because
  1024. the directories are signed, they can be cached by other onion routers.
  1025. Thus directory servers are not a performance
  1026. bottleneck when we have many users, and do not aid traffic analysis by
  1027. forcing clients to periodically announce their existence to any
  1028. central point.
  1029. \Section{Rendezvous points and location privacy}
  1030. \label{sec:rendezvous}
  1031. Rendezvous points are a building block for \emph{location-hidden
  1032. services} (also known as \emph{responder anonymity}) in the Tor
  1033. network. Location-hidden services allow Bob to offer a TCP
  1034. service, such as a webserver, without revealing its IP\@.
  1035. This type of anonymity protects against distributed DoS attacks:
  1036. attackers are forced to attack the onion routing network as a whole
  1037. rather than just Bob's IP.
  1038. Our design for location-hidden servers has the following goals.
  1039. \textbf{Flood-proof:} Bob needs a way to filter incoming requests,
  1040. so an attacker cannot flood Bob simply by sending many requests.
  1041. \textbf{Robust:} Bob should be able to maintain a long-term pseudonymous
  1042. identity even in the presence of router failure. Bob's service must
  1043. not be tied to a single OR, and Bob must be able to tie his service
  1044. to new ORs. \textbf{Smear-resistant:} if a social attacker offers a
  1045. location-hidden service that is illegal or disreputable, it should not
  1046. appear---even to a casual observer---that a rendezvous router is hosting
  1047. that service. \textbf{Application-transparent:} Although we require users
  1048. to run special software to access location-hidden servers, we must not
  1049. require them to modify their applications.
  1050. We provide location-hiding for Bob by allowing him to advertise
  1051. several onion routers (his \emph{introduction points}) as contact
  1052. points. He may do this on any robust efficient
  1053. key-value lookup system with authenticated updates, such as a
  1054. distributed hash table (DHT) like CFS \cite{cfs:sosp01}\footnote{
  1055. Rather than rely on an external infrastructure, the Onion Routing network
  1056. can run the DHT; to begin, we can run a simple lookup system on the
  1057. directory servers.} Alice, the client, chooses an OR as her
  1058. \emph{rendezvous point}. She connects to one of Bob's introduction
  1059. points, informs him about her rendezvous point, and then waits for him
  1060. to connect to the rendezvous point. This extra level of indirection
  1061. helps Bob's introduction points avoid problems associated with serving
  1062. unpopular files directly (for example, if Bob chooses
  1063. an introduction point in Texas to serve anti-ranching propaganda,
  1064. or if Bob's service tends to get attacked by network vandals).
  1065. The extra level of indirection also allows Bob to respond to some requests
  1066. and ignore others.
  1067. We give an overview of the steps of a rendezvous. These steps are
  1068. performed on behalf of Alice and Bob by their local onion proxies;
  1069. application integration is described more fully below.
  1070. \begin{tightlist}
  1071. \item Bob chooses some introduction points, and advertises them on
  1072. the DHT.
  1073. \item Bob establishes a Tor circuit to each of his introduction points,
  1074. and waits.
  1075. \item Alice learns about Bob's service out of band (perhaps Bob told her,
  1076. or she found it on a website). She retrieves the details of Bob's
  1077. service from the DHT.
  1078. \item Alice chooses an OR to serve as the rendezvous point (RP) for this
  1079. transaction. She establishes a circuit to RP, and gives it a
  1080. rendezvous cookie, which it will use to recognize Bob.
  1081. \item Alice opens an anonymous stream to one of Bob's introduction
  1082. points, and gives it a message (encrypted for Bob) which tells him
  1083. about herself, her chosen RP and the rendezvous cookie, and the
  1084. first half of an ephemeral
  1085. key handshake. The introduction point sends the message to Bob.
  1086. \item If Bob wants to talk to Alice, he builds a new circuit to Alice's
  1087. RP and provides the rendezvous cookie and the second half of the DH
  1088. handshake (along with a hash of the session key they now share).
  1089. \item The RP connects Alice's circuit to Bob's. Note that RP can't
  1090. recognize Alice, Bob, or the data they transmit.
  1091. \item Alice now sends a \emph{relay begin} cell along the circuit. It
  1092. arrives at Bob's onion proxy. Bob's onion proxy connects to Bob's
  1093. webserver.
  1094. \item An anonymous stream has been established, and Alice and Bob
  1095. communicate as normal.
  1096. \end{tightlist}
  1097. When establishing an introduction point, Bob provides the onion router
  1098. with a public ``introduction'' key. The hash of this public key
  1099. identifies a unique service, and (since Bob is required to sign his
  1100. messages) prevents anybody else from usurping Bob's introduction point
  1101. in the future. Bob uses the same public key when establishing the other
  1102. introduction points for that service. Bob periodically refreshes his
  1103. entry in the DHT.
  1104. The message that Alice gives
  1105. the introduction point includes a hash of Bob's public key to identify
  1106. the service, along with an optional initial authentication token (the
  1107. introduction point can do prescreening, for example to block replays). Her
  1108. message to Bob may include an end-to-end authentication token so Bob
  1109. can choose whether to respond.
  1110. The authentication tokens can be used to provide selective access:
  1111. important users get tokens to ensure uninterrupted access to the
  1112. service. During normal situations, Bob's service might simply be offered
  1113. directly from mirrors, and Bob gives out tokens to high-priority users. If
  1114. the mirrors are knocked down by distributed DoS attacks or even
  1115. physical attack, those users can switch to accessing Bob's service via
  1116. the Tor rendezvous system.
  1117. Since Bob's introduction points might themselves be subject to DoS he
  1118. could be faced with a choice between keeping large numbers of
  1119. introduction connections open or risking such an attack. In this case,
  1120. similar to the authentication tokens, he can provide selected users
  1121. with a current list and/or future schedule of introduction points that
  1122. are not advertised in the DHT\@. This is most likely to be practical
  1123. if there is a relatively stable and large group of introduction points
  1124. generally available. Alternatively, Bob could give secret public keys
  1125. to selected users for consulting the DHT\@. All of these approaches
  1126. have the advantage of limiting the damage that can be done even if
  1127. some of the selected high-priority users colludes in the DoS\@.
  1128. \SubSection{Integration with user applications}
  1129. Bob configures his onion proxy to know the local IP and port of his
  1130. service, a strategy for authorizing clients, and a public key. Bob
  1131. publishes the public key, an expiration time (``not valid after''), and
  1132. the current introduction points for his service into the DHT, all indexed
  1133. by the hash of the public key. Note that Bob's webserver is unmodified,
  1134. and doesn't even know that it's hidden behind the Tor network.
  1135. Alice's applications also work unchanged---her client interface
  1136. remains a SOCKS proxy. We encode all of the necessary information
  1137. into the fully qualified domain name Alice uses when establishing her
  1138. connection. Location-hidden services use a virtual top level domain
  1139. called `.onion': thus hostnames take the form x.y.onion where x is the
  1140. authentication cookie, and y encodes the hash of PK. Alice's onion proxy
  1141. examines addresses; if they're destined for a hidden server, it decodes
  1142. the PK and starts the rendezvous as described in the table above.
  1143. \subsection{Previous rendezvous work}
  1144. Rendezvous points in low-latency anonymity systems were first
  1145. described for use in ISDN telephony \cite{isdn-mixes,jerichow-jsac98}.
  1146. Later low-latency designs used rendezvous points for hiding location
  1147. of mobile phones and low-power location trackers
  1148. \cite{federrath-ih96,reed-protocols97}. Rendezvous for low-latency
  1149. Internet connections was suggested in early Onion Routing work
  1150. \cite{or-ih96}; however, the first published design of rendezvous
  1151. points for low-latency Internet connections was by Ian Goldberg
  1152. \cite{ian-thesis}. His design differs from
  1153. ours in three ways. First, Goldberg suggests that Alice should manually
  1154. hunt down a current location of the service via Gnutella; whereas our
  1155. use of CFS makes lookup faster, more robust, and transparent to the
  1156. user. Second, in Tor the client and server negotiate ephemeral keys
  1157. via Diffie-Hellman, so plaintext is not exposed at any point. Third,
  1158. our design tries to minimize the exposure associated with running the
  1159. service, to encourage volunteers to offer introduction and rendezvous
  1160. point services. Tor's introduction points do not output any bytes to the
  1161. clients, and the rendezvous points don't know the client or the server,
  1162. and can't read the data being transmitted. The indirection scheme is
  1163. also designed to include authentication/authorization---if Alice doesn't
  1164. include the right cookie with her request for service, Bob need not even
  1165. acknowledge his existence.
  1166. \Section{Attacks and Defenses}
  1167. \label{sec:attacks}
  1168. % XXX In sec4 we should talk about bandwidth classes, which will
  1169. % enable us to accept a lot more ORs than if we continue to
  1170. % require 10mbit connections for all ORs. -RD
  1171. % XXX In sec9, we should note that we are currently
  1172. % working with the designers of MorphMix to render our two systems
  1173. % interoperable. So far, this seems to be relatively straightforward.
  1174. % Interoperability will allow testing and direct comparison of the two
  1175. % rather different designs.
  1176. Below we summarize a variety of attacks, and discuss how well our
  1177. design withstands them.
  1178. \subsubsection*{Passive attacks}
  1179. \begin{tightlist}
  1180. \item \emph{Observing user traffic patterns.} Observations of connection
  1181. between a user and her first onion router will not reveal to whom
  1182. the user is connecting or what information is being sent. It will
  1183. reveal patterns of user traffic (both sent and received). Simple
  1184. profiling of user connection patterns is not generally possible,
  1185. however, because multiple application streams may be operating
  1186. simultaneously or in series over a single circuit. Thus, further
  1187. processing is necessary to discern even these usage patterns.
  1188. \item \emph{Observing user content.} At the user end, content is
  1189. encrypted; however, connections from the network to arbitrary
  1190. websites may not be. Further, a responding website may itself be
  1191. hostile. Filtering content is not a primary goal of
  1192. Onion Routing; nonetheless, Tor can directly make use of Privoxy and
  1193. related filtering services to anonymize application data streams.
  1194. \item \emph{Option distinguishability.} Configuration options can be a
  1195. source of distinguishable patterns. In general there is economic
  1196. incentive to allow preferential services \cite{econymics}, and some
  1197. degree of configuration choice can attract users, which
  1198. provide anonymity. So far, however, we have
  1199. not found a compelling use case in Tor for any client-configurable
  1200. options. Thus, clients are currently distinguishable only by their
  1201. behavior.
  1202. %XXX Actually, circuitrebuildperiod is such an option. -RD
  1203. \item \emph{End-to-end Timing correlation.} Tor only minimally hides
  1204. end-to-end timing correlations. An attacker watching patterns of
  1205. traffic at the initiator and the responder will be
  1206. able to confirm the correspondence with high probability. The
  1207. greatest protection currently available against such confirmation is to hide
  1208. the connection between the onion proxy and the first Tor node,
  1209. by running the onion proxy locally or
  1210. behind a firewall. This approach
  1211. requires an observer to separate traffic originating at the onion
  1212. router from traffic passing through it; but because we do not mix
  1213. or pad, this does not provide much defense.
  1214. \item \emph{End-to-end Size correlation.} Simple packet counting
  1215. without timing correlation will also be effective in confirming
  1216. endpoints of a stream. However, even without padding, we have some
  1217. limited protection: the leaky pipe topology means different numbers
  1218. of packets may enter one end of a circuit than exit at the other.
  1219. \item \emph{Website fingerprinting.} All the above passive
  1220. attacks that are at all effective are traffic confirmation attacks.
  1221. This puts them outside our general design goals. There is also
  1222. a passive traffic analysis attack that is potentially effective.
  1223. Rather than searching exit connections for timing and volume
  1224. correlations, the adversary may build up a database of
  1225. ``fingerprints'' containing file sizes and access patterns for many
  1226. interesting websites. He can confirm a user's connection to a given
  1227. site simply by consulting the database. This attack has
  1228. been shown to be effective against SafeWeb \cite{hintz-pet02}. But
  1229. Tor is not as vulnerable as SafeWeb to this attack: there is the
  1230. possibility that multiple streams are exiting the circuit at
  1231. different places concurrently. Also, fingerprinting will be limited to
  1232. the granularity of cells, currently 256 bytes. Other defenses include
  1233. larger cell sizes and/or minimal padding schemes that group websites
  1234. into large sets. But this remains an open problem. Link
  1235. padding or long-range dummies may also make fingerprints harder to
  1236. detect.\footnote{Note that
  1237. such fingerprinting should not be confused with the latency attacks
  1238. of \cite{back01}. Those require a fingerprint of the latencies of
  1239. all circuits through the network, combined with those from the
  1240. network edges to the targeted user and the responder website. While
  1241. these are in principal feasible and surprises are always possible,
  1242. these constitute a much more complicated attack, and there is no
  1243. current evidence of their practicality.}
  1244. %\item \emph{Content analysis.} Tor explicitly provides no content
  1245. % rewriting for any protocol at a higher level than TCP. When
  1246. % protocol cleaners are available, however (as Privoxy is for HTTP),
  1247. % Tor can integrate them to address these attacks.
  1248. \end{tightlist}
  1249. \subsubsection*{Active attacks}
  1250. \begin{tightlist}
  1251. \item \emph{Compromise keys.}
  1252. If a TLS session key is compromised, an attacker
  1253. can view all the cells on TLS connection until the key is
  1254. renegotiated. (These cells are themselves encrypted.) If a TLS
  1255. private key is compromised, the attacker can fool others into
  1256. thinking that he is the affected OR, but still cannot accept any
  1257. connections. \\
  1258. If a circuit session key is compromised, the
  1259. attacker can unwrap a single layer of encryption from the relay
  1260. cells traveling along that circuit. (Only nodes on the circuit can
  1261. see these cells.) If an onion private key is compromised, the attacker
  1262. can impersonate the OR in circuits, but only if the attacker has
  1263. also compromised the OR's TLS private key, or is running the
  1264. previous OR in the circuit. (This compromise affects newly created
  1265. circuits, but because of perfect forward secrecy, the attacker
  1266. cannot hijack old circuits without compromising their session keys.)
  1267. In any case, periodic key rotation limits the window of opportunity
  1268. for compromising these keys. \\
  1269. Only by
  1270. compromising a node's identity key can an attacker replace that
  1271. node indefinitely, by sending new forged descriptors to the
  1272. directory servers. Finally, an attacker who can compromise a
  1273. directory server's identity key can influence every client's view
  1274. of the network---but only to the degree made possible by gaining a
  1275. vote with the rest of the the directory servers.
  1276. \item \emph{Iterated compromise.} A roving adversary who can
  1277. compromise ORs (by system intrusion, legal coersion, or extralegal
  1278. coersion) could march down the circuit compromising the
  1279. nodes until he reaches the end. Unless the adversary can complete
  1280. this attack within the lifetime of the circuit, however, the ORs
  1281. will have discarded the necessary information before the attack can
  1282. be completed. (Thanks to the perfect forward secrecy of session
  1283. keys, the attacker cannot force nodes to decrypt recorded
  1284. traffic once the circuits have been closed.) Additionally, building
  1285. circuits that cross jurisdictions can make legal coercion
  1286. harder---this phenomenon is commonly called ``jurisdictional
  1287. arbitrage.'' The Java Anon Proxy project recently experienced the
  1288. need for this approach, when
  1289. the German government successfully ordered them to add a backdoor to
  1290. all of their nodes \cite{jap-backdoor}.
  1291. \item \emph{Run a recipient.} By running a Web server, an adversary
  1292. trivially learns the timing patterns of users connecting to it, and
  1293. can introduce arbitrary patterns in its responses. This can greatly
  1294. facilitate end-to-end attacks: If the adversary can induce certain
  1295. users to connect to his webserver (perhaps by advertising
  1296. content targeted at those users), she now holds one end of their
  1297. connection. Additionally, there is a danger that the application
  1298. protocols and associated programs can be induced to reveal
  1299. information about the initiator. Tor does not aim to solve this problem;
  1300. we depend on Privoxy and similar protocol cleaners.
  1301. \item \emph{Run an onion proxy.} It is expected that end users will
  1302. nearly always run their own local onion proxy. However, in some
  1303. settings, it may be necessary for the proxy to run
  1304. remotely---typically, in an institutional setting which wants
  1305. to monitor the activity of those connecting to the proxy.
  1306. Compromising an onion proxy means compromising all future connections
  1307. through it.
  1308. \item \emph{DoS non-observed nodes.} An observer who can observe some
  1309. of the Tor network can increase the value of this traffic analysis
  1310. by attacking non-observed nodes to shut them down, reduce
  1311. their reliability, or persuade users that they are not trustworthy.
  1312. The best defense here is robustness.
  1313. \item \emph{Run a hostile node.} In addition to the abilities of a
  1314. local observer, an isolated hostile node can create circuits through
  1315. itself, or alter traffic patterns, to affect traffic at
  1316. other nodes. Its ability to directly DoS a neighbor is now limited
  1317. by bandwidth throttling. Nonetheless, in order to compromise the
  1318. anonymity of the endpoints of a circuit by its observations, a
  1319. hostile node must be immediately adjacent to that endpoint.
  1320. \item \emph{Run multiple hostile nodes.} If an adversary is able to
  1321. run multiple ORs, and is able to persuade the directory servers
  1322. that those ORs are trustworthy and independant, then occasionally
  1323. some user will choose one of those ORs for the start and another
  1324. as the end of a circuit. When this happens, the user's
  1325. anonymity is compromised for those streams. If an adversary can
  1326. control $m$ out of $N$ nodes, he should be able to correlate at most
  1327. $\frac{m}{N}$ of the traffic in this way---although an adversary
  1328. % XXX Isn't this (m/N)^2 ? -RD
  1329. could possibly attract a disproportionately large amount of traffic
  1330. by running an exit node with an unusually permissive exit policy.
  1331. \item \emph{Compromise entire path.} Anyone compromising both
  1332. endpoints of a circuit can confirm this with high probability. If
  1333. the entire path is compromised, this becomes a certainty; however,
  1334. the added benefit to the adversary of such an attack is small in
  1335. relation to the difficulty.
  1336. \item \emph{Run a hostile directory server.} Directory servers control
  1337. admission to the network. However, because the network directory
  1338. must be signed by a majority of servers, the threat of a single
  1339. hostile server is minimized.
  1340. \item \emph{Selectively DoS a Tor node.} As noted, neighbors are
  1341. bandwidth limited; however, it is possible to open up sufficient
  1342. circuits that converge at a single onion router to
  1343. overwhelm its network connection, its ability to process new
  1344. circuits, or both.
  1345. % We aim to address something like this attack with our congestion
  1346. % control algorithm.
  1347. \item \emph{Introduce timing into messages.} This is simply a stronger
  1348. version of passive timing attacks already discussed above.
  1349. \item \emph{Tagging attacks.} A hostile node could ``tag'' a
  1350. cell by altering it. This would render it unreadable, but if the
  1351. stream is, for example, an unencrypted request to a Web site,
  1352. the garbled content coming out at the appropriate time could confirm
  1353. the association. However, integrity checks on cells prevent
  1354. this attack.
  1355. \item \emph{Replace contents of unauthenticated protocols.} When
  1356. relaying an unauthenticated protocol like HTTP, a hostile exit node
  1357. can impersonate the target server. Thus, whenever possible, clients
  1358. should prefer protocols with end-to-end authentication.
  1359. \item \emph{Replay attacks.} Some anonymity protocols are vulnerable
  1360. to replay attacks. Tor is not; replaying one side of a handshake
  1361. will result in a different negotiated session key, and so the rest
  1362. of the recorded session can't be used.
  1363. % ``NonSSL Anonymizer''?
  1364. \item \emph{Smear attacks.} An attacker could use the Tor network to
  1365. engage in socially dissapproved acts, so as to try to bring the
  1366. entire network into disrepute and get its operators to shut it down.
  1367. Exit policies can help reduce the possibilities for abuse, but
  1368. ultimately, the network will require volunteers who can tolerate
  1369. some political heat.
  1370. \item \emph{Distribute hostile code.} An attacker could trick users
  1371. into running subverted Tor software that did not, in fact, anonymize
  1372. their connections---or worse, trick ORs into running weakened
  1373. software that provided users with less anonymity. We address this
  1374. problem (but do not solve it completely) by signing all Tor releases
  1375. with an official public key, and including an entry in the directory
  1376. describing which versions are currently believed to be secure. To
  1377. prevent an attacker from subverting the official release itself
  1378. (through threats, bribery, or insider attacks), we provide all
  1379. releases in source code form, encourage source audits, and
  1380. frequently warn our users never to trust any software (even from
  1381. us!) that comes without source.
  1382. \end{tightlist}
  1383. \subsubsection*{Directory attacks}
  1384. \begin{tightlist}
  1385. \item \emph{Destroy directory servers.} If a few directory
  1386. servers drop out of operation, the others still arrive at a final
  1387. directory. So long as any directory servers remain in operation,
  1388. they will still broadcast their views of the network and generate a
  1389. consensus directory. (If more than half are destroyed, this
  1390. directory will not, however, have enough signatures for clients to
  1391. use it automatically; human intervention will be necessary for
  1392. clients to decide whether to trust the resulting directory, or continue
  1393. to use the old valid one.)
  1394. \item \emph{Subvert a directory server.} By taking over a directory
  1395. server, an attacker can influence (but not control) the final
  1396. directory. Since ORs are included or excluded by majority vote,
  1397. the corrupt directory can at worst cast a tie-breaking vote to
  1398. decide whether to include marginal ORs. How often such marginal
  1399. cases will occur in practice, however, remains to be seen.
  1400. \item \emph{Subvert a majority of directory servers.} If the
  1401. adversary controls more than half of the directory servers, he can
  1402. decide on a final directory, and thus can include as many
  1403. compromised ORs in the final directory as he wishes. Other than
  1404. trying to ensure that directory server operators are truly
  1405. independent and resistant to attack, Tor does not address this
  1406. possibility.
  1407. \item \emph{Encourage directory server dissent.} The directory
  1408. agreement protocol requires that directory server operators agree on
  1409. the list of directory servers. An adversary who can persuade some
  1410. of the directory server operators to distrust one another could
  1411. split the quorum into mutually hostile camps, thus partitioning
  1412. users based on which directory they used. Tor does not address
  1413. this attack.
  1414. \item \emph{Trick the directory servers into listing a hostile OR.}
  1415. Our threat model explicitly assumes directory server operators will
  1416. be able to filter out most hostile ORs. If this is not true, an
  1417. attacker can flood the directory with compromised servers.
  1418. \item \emph{Convince the directories that a malfunctioning OR is
  1419. working.} In the current Tor implementation, directory servers
  1420. assume that if they can start a TLS connection to an an OR, that OR
  1421. must be running correctly. It would be easy for a hostile OR to
  1422. subvert this test by only accepting TLS connections from ORs, and
  1423. ignoring all cells. Thus, directory servers must actively test ORs
  1424. by building circuits and streams as appropriate. The benefits and
  1425. hazards of a similar approach are discussed in \cite{mix-acc}.
  1426. \end{tightlist}
  1427. \subsubsection*{Attacks against rendezvous points}
  1428. \begin{tightlist}
  1429. \item \emph{Make many introduction requests.} An attacker could
  1430. attempt to deny Bob service by flooding his Introduction Point with
  1431. requests. Because the introduction point can block requests that
  1432. lack authentication tokens, however, Bob can restrict the volume of
  1433. requests he receives, or require a certain amount of computation for
  1434. every request he receives.
  1435. \item \emph{Attack an introduction point.} An attacker could try to
  1436. disrupt a location-hidden service by disabling its introduction
  1437. point. But because a service's identity is attached to its public
  1438. key, not its introduction point, the service can simply re-advertise
  1439. itself at a different introduction point.
  1440. \item \emph{Attack multiple introduction points.} If an attacker is
  1441. able to disable all of the introduction points for a given service,
  1442. he can block access to the service. However, re-advertisement of
  1443. introduction points can still be done secretly so that only
  1444. high-priority clients know the address of the service's introduction
  1445. points. Such selective secret authorizations can also be issued
  1446. during normal operation so that the attack cannot also prevent their
  1447. issuance. In this setting an attack must be able to disable all
  1448. introduction points for all services to be effective.
  1449. \item \emph{Compromise an introduction point.} If an attacker controls
  1450. an introduction point for a service, it can flood the service with
  1451. introduction requests, or prevent valid introduction requests from
  1452. reaching the hidden server. The server will notice a flooding
  1453. attempt if it receives many introduction requests. To notice
  1454. blocking of valid requests, however, the hidden server should
  1455. periodically test the introduction point by sending its introduction
  1456. requests, and making sure it receives them.
  1457. \item \emph{Compromise a rendezvous point.} Controlling a rendezvous
  1458. point gains an attacker no more than controlling any other OR along
  1459. a circuit, since all data passing along the rendezvous is protected
  1460. by the session key shared by the client and server.
  1461. \end{tightlist}
  1462. \Section{Open Questions in Low-latency Anonymity}
  1463. \label{sec:maintaining-anonymity}
  1464. % There must be a better intro than this! -NM
  1465. In addition to the open problems discussed in
  1466. Section~\ref{subsec:non-goals}, many other questions remain to be
  1467. solved by future research before we can be confident that we
  1468. have built a secure low-latency anonymity service.
  1469. Many of these open issues are questions of balance. For example,
  1470. how often should users rotate to fresh circuits? Too-frequent
  1471. rotation is inefficient, expensive and may lead to intersection attacks,
  1472. but too-infrequent rotation
  1473. makes the user's traffic linkable. Instead of opening a fresh
  1474. circuit; clients can also limit linkability by exiting from a middle point
  1475. of the circuit, or by truncating and re-extending the circuit, but
  1476. more analysis is needed to determine the proper trade-off.
  1477. %[XXX mention predecessor attacks?]
  1478. A similar question surrounds timing of directory operations:
  1479. how often should directories be updated? With too-infrequent
  1480. updates clients receive an inaccurate picture of the network; with
  1481. too-frequent updates the directory servers are overloaded.
  1482. %do different exit policies at different exit nodes trash anonymity sets,
  1483. %or not mess with them much?
  1484. %
  1485. %% Why would they? By routing traffic to certain nodes preferentially?
  1486. %[XXX Choosing paths and path lengths: I'm not writing this bit till
  1487. % Arma's pathselection stuff is in. -NM]
  1488. %%%% Roger said that he'd put a path selection paragraph into section
  1489. %%%% 4 that would replace this.
  1490. %
  1491. %I probably should have noted that this means loops will be on at least
  1492. %five hop routes, which should be rare given the distribution. I'm
  1493. %realizing that this is reproducing some of the thought that led to a
  1494. %default of five hops in the original onion routing design. There were
  1495. %some different assumptions, which I won't spell out now. Note that
  1496. %enclave level protections really change these assumptions. If most
  1497. %circuits are just two hops, then just a single link observer will be
  1498. %able to tell that two enclaves are communicating with high probability.
  1499. %So, it would seem that enclaves should have a four node minimum circuit
  1500. %to prevent trivial circuit insider identification of the whole circuit,
  1501. %and three hop minimum for circuits from an enclave to some nonclave
  1502. %responder. But then... we would have to make everyone obey these rules
  1503. %or a node that through timing inferred it was on a four hop circuit
  1504. %would know that it was probably carrying enclave to enclave traffic.
  1505. %Which... if there were even a moderate number of bad nodes in the
  1506. %network would make it advantageous to break the connection to conduct
  1507. %a reformation intersection attack. Ahhh! I gotta stop thinking
  1508. %about this and work on the paper some before the family wakes up.
  1509. %On Sat, Oct 25, 2003 at 06:57:12AM -0400, Paul Syverson wrote:
  1510. %> Which... if there were even a moderate number of bad nodes in the
  1511. %> network would make it advantageous to break the connection to conduct
  1512. %> a reformation intersection attack. Ahhh! I gotta stop thinking
  1513. %> about this and work on the paper some before the family wakes up.
  1514. %This is the sort of issue that should go in the 'maintaining anonymity
  1515. %with tor' section towards the end. :)
  1516. %Email from between roger and me to beginning of section above. Fix and move.
  1517. Throughout this paper, we have assumed that end-to-end traffic
  1518. confirmation will immediately and automatically defeat a low-latency
  1519. anonymity system. Even high-latency anonymity
  1520. systems can be vulnerable to end-to-end traffic confirmation, if the
  1521. traffic volumes are high enough, and if users' habits are sufficiently
  1522. distinct \cite{limits-open,statistical-disclosure}. \emph{Can
  1523. anything be done to make low-latency systems resist these attacks as
  1524. well as high-latency systems?}
  1525. Tor already makes some effort to conceal the starts and
  1526. ends of streams by wrapping all long-range control commands in
  1527. identical-looking relay cells, but more analysis is needed. Link
  1528. padding could frustrate passive observers who count packets; long-range
  1529. padding could work against observers who own the first hop in a
  1530. circuit. But more research needs to be done in order to find an
  1531. efficient and practical approach. Volunteers prefer not to run
  1532. constant-bandwidth padding; but more sophisticated traffic shaping
  1533. approaches remain somewhat unanalyzed.
  1534. %[XXX is this so?]
  1535. Recent work
  1536. on long-range padding \cite{defensive-dropping} shows promise. One
  1537. could also try to reduce correlation in packet timing by batching and
  1538. re-ordering packets, but it is unclear whether this could improve
  1539. anonymity without introducing so much latency as to render the
  1540. network unusable.
  1541. Even if passive timing attacks were wholly solved, active timing
  1542. attacks would remain. \emph{What can
  1543. be done to address attackers who can introduce timing patterns into
  1544. a user's traffic?} % [XXX mention likely approaches]
  1545. %%% I think we cover this by framing the problem as ``Can we make
  1546. %%% end-to-end characteristics of low-latency systems as good as
  1547. %%% those of high-latency systems?'' Eliminating long-term
  1548. %%% intersection is a hard problem.
  1549. %
  1550. %Even regardless of link padding from Alice to the cloud, there will be
  1551. %times when Alice is simply not online. Link padding, at the edges or
  1552. %inside the cloud, does not help for this.
  1553. In order to scale to large numbers of users, and to prevent an
  1554. attacker from observing the whole network at once, it may be necessary
  1555. for low-latency anonymity systems to support far more servers than Tor
  1556. currently anticipates. This introduces several issues. First, if
  1557. approval by a centralized set of directory servers is no longer
  1558. feasible, what mechanism should be used to prevent adversaries from
  1559. signing up many spurious servers?
  1560. Second, if clients can no longer have a complete
  1561. picture of the network at all times, how can they perform
  1562. discovery while preventing attackers from manipulating or exploiting
  1563. gaps in client knowledge? Third, if there are too many servers
  1564. for every server to constantly communicate with every other, what kind
  1565. of non-clique topology should the network use? Restricted-route
  1566. topologies promise comparable anonymity with better scalability
  1567. \cite{danezis-pets03}, but whatever topology we choose, we need some
  1568. way to keep attackers from manipulating their position within it.
  1569. Fourth, since no centralized authority is tracking server reliability,
  1570. How do we prevent unreliable servers from rendering the network
  1571. unusable? Fifth, do clients receive so much anonymity benefit from
  1572. running their own servers that we should expect them all to do so, or
  1573. do we need to find another incentive structure to motivate them?
  1574. (Tarzan and MorphMix present possible solutions.)
  1575. % [[ XXX how to approve new nodes (advogato, sybil, captcha (RTT));]
  1576. Alternatively, it may be the case that one of these problems proves
  1577. intractable, or that the drawbacks to many-server systems prove
  1578. greater than the benefits. Nevertheless, we may still do well to
  1579. consider non-clique topologies. A cascade topology may provide more
  1580. defense against traffic confirmation.
  1581. % XXX Why would it? Cite. -NM
  1582. %
  1583. % Huh? Do you mean for simple attacks just because of larger anonymity
  1584. % sets? -PS
  1585. Does the hydra topology (many input nodes, few output nodes) work
  1586. better? Are we going to get a hydra anyway because most nodes will be
  1587. middleman nodes?
  1588. As mentioned in Section~\ref{subsec:dos}, Tor could improve its
  1589. robustness against node failure by buffering transmitted stream data
  1590. at the network's edges until the data has been acknowledged by the
  1591. other end of the stream. The efficacy of this approach remains to be
  1592. tested, however, and there may be more effective means for ensuring
  1593. reliable connections in the presence of unreliable nodes.
  1594. %%% Keeping this original paragraph for a little while, since it
  1595. %%% is not the same as what's written there now.
  1596. %
  1597. %Because Tor depends on TLS and TCP to provide a reliable transport,
  1598. %when one of the servers goes down, all the circuits (and thus streams)
  1599. %traveling over that server must break. This reduces anonymity because
  1600. %everybody needs to reconnect right then (does it? how much?) and
  1601. %because exit connections all break at the same time, and it also harms
  1602. %usability. It seems the problem is even worse in a peer-to-peer
  1603. %environment, because so far such systems don't really provide an
  1604. %incentive for nodes to stay connected when they're done browsing, so
  1605. %we would expect a much higher churn rate than for onion routing.
  1606. %there ways of allowing streams to survive the loss of a node in the
  1607. %path?
  1608. % Roger or Paul suggested that we say something about incentives,
  1609. % too, but I think that's a better candidate for our future work
  1610. % section. After all, we will doubtlessly learn very much about why
  1611. % people do or don't run and use Tor in the near future. -NM
  1612. %We should run a squid at each exit node, to provide comparable anonymity
  1613. %to private exit nodes for cache hits, to speed everything up, and to
  1614. %have a buffer for funny stuff coming out of port 80.
  1615. % on the other hand, it hampers PFS, because ORs have pages in the cache.
  1616. %I previously elsewhere suggested bulk transfer proxies to carve
  1617. %up big things so that they could be downloaded in less noticeable
  1618. %pieces over several normal looking connections. We could suggest
  1619. %similarly one or a handful of squid nodes that might serve up
  1620. %some of the more sensitive but common material, especially if
  1621. %the relevant sites didn't want to or couldn't run their own OR.
  1622. %This would be better than having everyone run a squid which would
  1623. %just help identify after the fact the different history of that
  1624. %node's activity. All this kind of speculation needs to move to
  1625. %future work section I guess. -PS]
  1626. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  1627. \Section{Future Directions}
  1628. \label{sec:conclusion}
  1629. Tor brings together many innovations into
  1630. a unified deployable system. But there are still several attacks that
  1631. work quite well, as well as a number of sustainability and run-time
  1632. issues remaining to be ironed out. In particular:
  1633. % Many of these (Scalability, cover traffic, morphmix)
  1634. % are duplicates from open problems.
  1635. %
  1636. \begin{tightlist}
  1637. \item \emph{Scalability:} Tor's emphasis on design simplicity and
  1638. deployability has led us to adopt a clique topology, a
  1639. semi-centralized model for directories and trusts, and a
  1640. full-network-visibility model for client knowledge. None of these
  1641. properties will scale to more than a few hundred servers, at most.
  1642. Promising approaches to better scalability exist (see
  1643. Section~\ref{sec:maintaining-anonymity}), but more deployment
  1644. experience would be helpful in learning the relative importance of
  1645. these bottlenecks.
  1646. \item \emph{Cover traffic:} Currently we avoid cover traffic because
  1647. of its clear costs in performance and bandwidth, and because its
  1648. security benefits are not well understood. With more research
  1649. \cite{SS03,defensive-dropping}, the price/value ratio may change,
  1650. both for link-level cover traffic and also long-range cover traffic.
  1651. \item \emph{Better directory distribution:} Even with the threshold
  1652. directory agreement algorithm described in Section~\ref{subsec:dirservers},
  1653. the directory servers are still trust bottlenecks. We must find more
  1654. decentralized yet practical ways to distribute up-to-date snapshots of
  1655. network status without introducing new attacks. Also, directory
  1656. retrieval presents a scaling problem, since clients currently
  1657. download a description of the entire network state every 15
  1658. minutes. As the state grows larger and clients more numerous, we
  1659. may need to move to a solution in which clients only receive
  1660. incremental updates to directory state, or where directories are
  1661. cached at the ORs to avoid high loads on the directory servers.
  1662. % XXX this is a design paper, not an implementation paper. the design
  1663. % says that they're already cached at the ORs. Agree/disagree?
  1664. % XXX Agree. -NM
  1665. \item \emph{Implementing location-hidden servers:} While
  1666. Section~\ref{sec:rendezvous} describes a design for rendezvous
  1667. points and location-hidden servers, these features have not yet been
  1668. implemented. While doing so we are likely to encounter additional
  1669. issues that must be resolved, both in terms of usability and anonymity.
  1670. \item \emph{Further specification review:} Although we have a public,
  1671. byte-level specification for the Tor protocols, this protocol has
  1672. not received extensive external review. We hope that as Tor
  1673. becomes more widely deployed, more people will become interested in
  1674. examining our specification.
  1675. \item \emph{Wider-scale deployment:} The original goal of Tor was to
  1676. gain experience in deploying an anonymizing overlay network, and
  1677. learn from having actual users. We are now at the point in design
  1678. and development where we can start deploying a wider network. Once
  1679. we have large numbers of actual users, we will doubtlessly be better
  1680. able to evaluate some of our design decisions, including our
  1681. robustness/latency trade-offs, our performance trade-offs (including
  1682. cell size), our abuse-prevention mechanisms, and
  1683. our overall usability.
  1684. % XXX large and small cells on same network.
  1685. % XXX work with morphmix spec
  1686. \end{tightlist}
  1687. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  1688. %% commented out for anonymous submission
  1689. %\Section{Acknowledgments}
  1690. % Peter Palfrader, Geoff Goodell, Adam Shostack, Joseph Sokol-Margolis,
  1691. % John Bashinski
  1692. % for editing and comments
  1693. % Matej Pfajfar, Andrei Serjantov, Marc Rennhard for design discussions
  1694. % Bram Cohen for congestion control discussions
  1695. % Adam Back for suggesting telescoping circuits
  1696. % Cathy Meadows for formal analysis of candidate extend DH protocols
  1697. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  1698. \bibliographystyle{latex8}
  1699. \bibliography{tor-design}
  1700. \end{document}
  1701. % Style guide:
  1702. % U.S. spelling
  1703. % avoid contractions (it's, can't, etc.)
  1704. % prefer ``for example'' or ``such as'' to e.g.
  1705. % prefer ``that is'' to i.e.
  1706. % 'mix', 'mixes' (as noun)
  1707. % 'mix-net'
  1708. % 'mix', 'mixing' (as verb)
  1709. % 'middleman' [Not with a hyphen; the hyphen has been optional
  1710. % since Middle English.]
  1711. % 'nymserver'
  1712. % 'Cypherpunk', 'Cypherpunks', 'Cypherpunk remailer'
  1713. % 'Onion Routing design', 'onion router' [note capitalization]
  1714. % 'SOCKS'
  1715. % Try not to use \cite as a noun.
  1716. % 'Authorizating' sounds great, but it isn't a word.
  1717. % 'First, second, third', not 'Firstly, secondly, thirdly'.
  1718. % 'circuit', not 'channel'
  1719. % Typography: no space on either side of an em dash---ever.
  1720. % Hyphens are for multi-part words; en dashs imply movement or
  1721. % opposition (The Alice--Bob connection); and em dashes are
  1722. % for punctuation---like that.
  1723. % A relay cell; a control cell; a \emph{create} cell; a
  1724. % \emph{relay truncated} cell. Never ``a \emph{relay truncated}.''
  1725. %
  1726. % 'Substitute ``Damn'' every time you're inclined to write ``very;'' your
  1727. % editor will delete it and the writing will be just as it should be.'
  1728. % -- Mark Twain