tor-design.tex 99 KB

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