tor-design.tex 99 KB

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