challenges.tex 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512
  1. \documentclass{llncs}
  2. % XXXX NM: Fold ``bandwidth and usability'' into ``Tor and file-sharing'' --
  3. % ``bandwidth and file-sharing''.
  4. \usepackage{url}
  5. \usepackage{amsmath}
  6. \usepackage{epsfig}
  7. \setlength{\textwidth}{6.1in}
  8. \setlength{\textheight}{8.5in}
  9. \setlength{\topmargin}{1cm}
  10. \setlength{\oddsidemargin}{.5cm}
  11. \setlength{\evensidemargin}{.5cm}
  12. \newenvironment{tightlist}{\begin{list}{$\bullet$}{
  13. \setlength{\itemsep}{0mm}
  14. \setlength{\parsep}{0mm}
  15. % \setlength{\labelsep}{0mm}
  16. % \setlength{\labelwidth}{0mm}
  17. % \setlength{\topsep}{0mm}
  18. }}{\end{list}}
  19. \begin{document}
  20. \title{Challenges in deploying low-latency anonymity}
  21. \author{Roger Dingledine\inst{1} \and
  22. Nick Mathewson\inst{1} \and
  23. Paul Syverson\inst{2}}
  24. \institute{The Free Haven Project \email{<\{arma,nickm\}@freehaven.net>} \and
  25. Naval Research Laboratory \email{<syverson@itd.nrl.navy.mil>}}
  26. \maketitle
  27. \pagestyle{plain}
  28. \begin{abstract}
  29. There are many unexpected or unexpectedly difficult obstacles to
  30. deploying anonymous communications. Drawing on our experiences deploying
  31. Tor (the second-generation onion routing network), we describe social
  32. challenges and technical issues that must be faced
  33. in building, deploying, and sustaining a scalable, distributed, low-latency
  34. anonymity network.
  35. \end{abstract}
  36. \section{Introduction}
  37. % Your network is not practical unless it is sustainable and distributed.
  38. Anonymous communication is full of surprises. This paper discusses some
  39. unexpected challenges arising from our experiences deploying Tor, a
  40. low-latency general-purpose anonymous communication system. We will discuss
  41. some of the difficulties we have experienced and how we have met them (or how
  42. we plan to meet them, if we know). We will also discuss some less
  43. troublesome open problems that we must nevertheless eventually address.
  44. %We will describe both those future challenges that we intend to explore and
  45. %those that we have decided not to explore and why.
  46. Tor is an overlay network for anonymizing TCP streams over the
  47. Internet~\cite{tor-design}. It addresses limitations in earlier Onion
  48. Routing designs~\cite{or-ih96,or-jsac98,or-discex00,or-pet00} by adding
  49. perfect forward secrecy, congestion control, directory servers, integrity
  50. checking, configurable exit policies, and location-hidden services using
  51. rendezvous points. Tor works on the real-world Internet, requires no special
  52. privileges or kernel modifications, requires little synchronization or
  53. coordination between nodes, and provides a reasonable tradeoff between
  54. anonymity, usability, and efficiency.
  55. We first publicly deployed a Tor network in October 2003; since then it has
  56. grown to over a hundred volunteer Tor nodes
  57. and as much as 80 megabits of
  58. average traffic per second. Tor's research strategy has focused on deploying
  59. a network to as many users as possible; thus, we have resisted designs that
  60. would compromise deployability by imposing high resource demands on node
  61. operators, and designs that would compromise usability by imposing
  62. unacceptable restrictions on which applications we support. Although this
  63. strategy has
  64. its drawbacks (including a weakened threat model, as discussed below), it has
  65. made it possible for Tor to serve many thousands of users and attract
  66. funding from diverse sources whose goals range from security on a
  67. national scale down to the liberties of each individual.
  68. While~\cite{tor-design} gives an overall view of Tor's
  69. design and goals, this paper describes policy, social, and technical
  70. issues that we face as we continue deployment.
  71. Rather than trying to provide complete solutions to every problem here, we
  72. lay out the assumptions and constraints that we have observed while
  73. deploying Tor in the wild. In doing so, we aim to create a research agenda
  74. for others to help in addressing these issues. We believe that the issues
  75. described here will be of general interest to any and all
  76. projects attempting to build
  77. and deploy practical, useable anonymity networks in the wild.
  78. %While the Tor design paper~\cite{tor-design} gives an overall view its
  79. %design and goals,
  80. %this paper describes the policy and technical issues that Tor faces as
  81. %we continue deployment. Rather than trying to provide complete solutions
  82. %to every problem here, we lay out the assumptions and constraints
  83. %that we have observed through deploying Tor in the wild. In doing so, we
  84. %aim to create a research agenda for others to
  85. %help in addressing these issues.
  86. % Section~\ref{sec:what-is-tor} gives an
  87. %overview of the Tor
  88. %design and ours goals. Sections~\ref{sec:crossroads-policy}
  89. %and~\ref{sec:crossroads-design} go on to describe the practical challenges,
  90. %both policy and technical respectively,
  91. %that stand in the way of moving
  92. %from a practical useful network to a practical useful anonymous network.
  93. %\section{What Is Tor}
  94. \section{Background}
  95. Here we give a basic overview of the Tor design and its properties, and
  96. compare Tor to other low-latency anonymity designs.
  97. \subsection{Tor, threat models, and distributed trust}
  98. \label{sec:what-is-tor}
  99. %Here we give a basic overview of the Tor design and its properties. For
  100. %details on the design, assumptions, and security arguments, we refer
  101. %the reader to the Tor design paper~\cite{tor-design}.
  102. %\medskip
  103. \noindent
  104. {\bf How Tor works.}
  105. Tor provides \emph{forward privacy}, so that users can connect to
  106. Internet sites without revealing their logical or physical locations
  107. to those sites or to observers. It also provides \emph{location-hidden
  108. services}, so that critical servers can support authorized users without
  109. giving adversaries an effective vector for physical or online attacks.
  110. The design provides these protections even when a portion of its own
  111. infrastructure is controlled by an adversary.
  112. To create a private network pathway with Tor, the client software
  113. incrementally builds a \emph{circuit} of encrypted connections through
  114. Tor nodes on the network. The circuit is extended one hop at a time, and
  115. each node along the way knows only which node gave it data and which
  116. node it is giving data to. No individual Tor node ever knows the complete
  117. path that a data packet has taken. The client negotiates a separate set
  118. of encryption keys for each hop along the circuit. % to ensure that each
  119. %hop can't trace these connections as they pass through.
  120. Because each node sees no more than one hop in the
  121. circuit, neither an eavesdropper nor a compromised node can use traffic
  122. analysis to link the connection's source and destination.
  123. For efficiency, the Tor software uses the same circuit for all the TCP
  124. connections that happen within the same short period.
  125. Later requests use a new
  126. circuit, to complicate long-term linkability between different actions by
  127. a single user.
  128. Tor also makes it possible for users to hide their locations while
  129. offering various kinds of services, such as web publishing or an instant
  130. messaging server. Using ``rendezvous points'', other Tor users can
  131. connect to these hidden services, each without knowing the other's network
  132. identity.
  133. Tor attempts to anonymize the transport layer, not the application layer, so
  134. application protocols that include personally identifying information need
  135. additional application-level scrubbing proxies, such as
  136. Privoxy~\cite{privoxy} for HTTP\@. Furthermore, Tor does not permit arbitrary
  137. IP packets; it only anonymizes TCP streams and DNS request, and only supports
  138. connections via SOCKS (see Section~\ref{subsec:tcp-vs-ip}).
  139. Most node operators do not want to allow arbitary TCP connections to leave
  140. their server. To address this, Tor provides \emph{exit policies} so that
  141. each exit node can block the IP addresses and ports it is unwilling to allow.
  142. Tor nodes advertise their exit policies to the directory servers, so that
  143. client can tell which nodes will support their connections.
  144. As of January 2005, the Tor network has grown to around a hundred nodes
  145. on four continents, with a total capacity exceeding 1Gbit/s. Appendix A
  146. shows a graph of the number of working nodes over time, as well as a
  147. graph of the number of bytes being handled by the network over time. At
  148. this point the network is sufficiently diverse for further development
  149. and testing; but of course we always encourage and welcome new nodes
  150. to join the network.
  151. Tor research and development has been funded by ONR and DARPA
  152. for use in securing government
  153. communications, and by the Electronic Frontier Foundation, for use
  154. in maintaining civil liberties for ordinary citizens online. The Tor
  155. protocol is one of the leading choices
  156. to be the anonymizing layer in the European Union's PRIME directive to
  157. help maintain privacy in Europe. The University of Dresden in Germany
  158. has integrated an independent implementation of the Tor protocol into
  159. their popular Java Anon Proxy anonymizing client.
  160. % This wide variety of
  161. %interests helps maintain both the stability and the security of the
  162. %network.
  163. \medskip
  164. \noindent
  165. {\bf Threat models and design philosophy.}
  166. The ideal Tor network would be practical, useful and and anonymous. When
  167. trade-offs arise between these properties, Tor's research strategy has been
  168. to insist on remaining useful enough to attract many users,
  169. and practical enough to support them. Only subject to these
  170. constraints do we aim to maximize
  171. anonymity.\footnote{This is not the only possible
  172. direction in anonymity research: designs exist that provide more anonymity
  173. than Tor at the expense of significantly increased resource requirements, or
  174. decreased flexibility in application support (typically because of increased
  175. latency). Such research does not typically abandon aspirations towards
  176. deployability or utility, but instead tries to maximize deployability and
  177. utility subject to a certain degree of inherent anonymity (inherent because
  178. usability and practicality affect usage which affects the actual anonymity
  179. provided by the network \cite{econymics,back01}).}
  180. %{We believe that these
  181. %approaches can be promising and useful, but that by focusing on deploying a
  182. %usable system in the wild, Tor helps us experiment with the actual parameters
  183. %of what makes a system ``practical'' for volunteer operators and ``useful''
  184. %for home users, and helps illuminate undernoticed issues which any deployed
  185. %volunteer anonymity network will need to address.}
  186. Because of this strategy, Tor has a weaker threat model than many anonymity
  187. designs in the literature. In particular, because we
  188. support interactive communications without impractically expensive padding,
  189. we fall prey to a variety
  190. of intra-network~\cite{back01,attack-tor-oak05,flow-correlation04} and
  191. end-to-end~\cite{danezis-pet2004,SS03} anonymity-breaking attacks.
  192. Tor does not attempt to defend against a global observer. In general, an
  193. attacker who can observe both ends of a connection through the Tor network
  194. can correlate the timing and volume of data on that connection as it enters
  195. and leaves the network, and so link a user to her chosen communication
  196. parties. Known solutions to this attack would seem to require introducing a
  197. prohibitive degree of traffic padding between the user and the network, or
  198. introducing an unacceptable degree of latency (but see Section
  199. \ref{subsec:mid-latency}). Also, it is not clear that these methods would
  200. work at all against even a minimally active adversary that can introduce timing
  201. patterns or additional traffic. Thus, Tor only attempts to defend against
  202. external observers who cannot observe both sides of a user's connection.
  203. The distinction between traffic correlation and traffic analysis is
  204. not as cut and dried as we might wish. In \cite{hintz-pet02} it was
  205. shown that if data volumes of various popular
  206. responder destinations are catalogued, it may not be necessary to
  207. observe both ends of a stream to learn a source-destination link.
  208. This should be fairly effective without simultaneously observing both
  209. ends of the connection. However, it is still essentially confirming
  210. suspected communicants where the responder suspects are ``stored'' rather
  211. than observed at the same time as the client.
  212. Similarly latencies of going through various routes can be
  213. catalogued~\cite{back01} to connect endpoints.
  214. This is likely to entail high variability and massive storage since
  215. % XXX hintz-pet02 just looked at data volumes of the sites. this
  216. % doesn't require much variability or storage. I think it works
  217. % quite well actually. Also, \cite{kesdogan:pet2002} takes the
  218. % attack another level further, to narrow down where you could be
  219. % based on an intersection attack on subpages in a website. -RD
  220. %
  221. % I was trying to be terse and simultaneously referring to both the
  222. % Hintz stuff and the Back et al. stuff from Info Hiding 01. I've
  223. % separated the two and added the references. -PFS
  224. routes through the network to each site will be random even if they
  225. have relatively unique latency characteristics. So this does not seem
  226. an immediate practical threat. Further along similar lines, the same
  227. paper suggested a ``clogging attack''. In \cite{attack-tor-oak05}, a
  228. version of this was demonstrated to be practical against portions of
  229. the fifty node Tor network as deployed in mid 2004. There it was shown
  230. that an outside attacker can trace a stream through the Tor network
  231. while a stream is still active simply by observing the latency of his
  232. own traffic sent through various Tor nodes. These attacks do not show
  233. the client address, only the first node within the Tor network, making
  234. helper nodes all the more worthy of exploration. (See
  235. Section~\ref{subsec:helper-nodes}.)
  236. Against internal attackers who sign up Tor nodes, the situation is more
  237. complicated. In the simplest case, if an adversary has compromised $c$ of
  238. $n$ nodes on the Tor network, then the adversary will be able to compromise
  239. a random circuit with probability $\frac{c^2}{n^2}$ (since the circuit
  240. initiator chooses hops randomly). But there are
  241. complicating factors:
  242. (1)~If the user continues to build random circuits over time, an adversary
  243. is pretty certain to see a statistical sample of the user's traffic, and
  244. thereby can build an increasingly accurate profile of her behavior. (See
  245. Section~\ref{subsec:helper-nodes} for possible solutions.)
  246. (2)~An adversary who controls a popular service outside of the Tor network
  247. can be certain of observing all connections to that service; he
  248. therefore will trace connections to that service with probability
  249. $\frac{c}{n}$.
  250. (3)~Users do not in fact choose nodes with uniform probability; they
  251. favor nodes with high bandwidth or uptime, and exit nodes that
  252. permit connections to their favorite services.
  253. (See Section~\ref{subsec:routing-zones} for discussion of how larger
  254. adversaries affect our dispersal goals.)
  255. %\begin{tightlist}
  256. %\item If the user continues to build random circuits over time, an adversary
  257. % is pretty certain to see a statistical sample of the user's traffic, and
  258. % thereby can build an increasingly accurate profile of her behavior. (See
  259. % \ref{subsec:helper-nodes} for possible solutions.)
  260. %\item An adversary who controls a popular service outside of the Tor network
  261. % can be certain of observing all connections to that service; he
  262. % therefore will trace connections to that service with probability
  263. % $\frac{c}{n}$.
  264. %\item Users do not in fact choose nodes with uniform probability; they
  265. % favor nodes with high bandwidth or uptime, and exit nodes that
  266. % permit connections to their favorite services.
  267. %\end{tightlist}
  268. %discuss $\frac{c^2}{n^2}$, except how in practice the chance of owning
  269. %the last hop is not $c/n$ since that doesn't take the destination (website)
  270. %into account. so in cases where the adversary does not also control the
  271. %final destination we're in good shape, but if he *does* then we'd be better
  272. %off with a system that lets each hop choose a path.
  273. %
  274. %Isn't it more accurate to say ``If the adversary _always_ controls the final
  275. % dest, we would be just as well off with such as system.'' ? If not, why
  276. % not? -nm
  277. % Sure. In fact, better off, since they seem to scale more easily. -rd
  278. % XXXX the below paragraph should probably move later, and merge with
  279. % other discussions of attack-tor-oak5.
  280. %Murdoch and Danezis describe an attack
  281. %\cite{attack-tor-oak05} that lets an attacker determine the nodes used
  282. %in a circuit; yet s/he cannot identify the initiator or responder,
  283. %e.g., client or web server, through this attack. So the endpoints
  284. %remain secure, which is the goal. It is conceivable that an
  285. %adversary could attack or set up observation of all connections
  286. %to an arbitrary Tor node in only a few minutes. If such an adversary
  287. %were to exist, s/he could use this probing to remotely identify a node
  288. %for further attack. Of more likely immediate practical concern
  289. %an adversary with active access to the responder traffic
  290. %wants to keep a circuit alive long enough to attack an identified
  291. %node. Thus it is important to prevent the responding end of the circuit
  292. %from keeping it open indefinitely.
  293. %Also, someone could identify nodes in this way and if in their
  294. %jurisdiction, immediately get a subpoena (if they even need one)
  295. %telling the node operator(s) that she must retain all the active
  296. %circuit data she now has.
  297. %Further, the enclave model, which had previously looked to be the most
  298. %generally secure, seems particularly threatened by this attack, since
  299. %it identifies endpoints when they're also nodes in the Tor network:
  300. %see Section~\ref{subsec:helper-nodes} for discussion of some ways to
  301. %address this issue.
  302. \medskip
  303. \noindent
  304. {\bf Distributed trust.}
  305. In practice Tor's threat model is based entirely on the goal of
  306. dispersal and diversity.
  307. Tor's defense lies in having a diverse enough set of nodes
  308. to prevent most real-world
  309. adversaries from being in the right places to attack users.
  310. Tor aims to resist observers and insiders by distributing each transaction
  311. over several nodes in the network. This ``distributed trust'' approach
  312. means the Tor network can be safely operated and used by a wide variety
  313. of mutually distrustful users, providing more sustainability and security
  314. than some previous attempts at anonymizing networks.
  315. The Tor network has a broad range of users, including ordinary citizens
  316. concerned about their privacy, corporations
  317. who don't want to reveal information to their competitors, and law
  318. enforcement and government intelligence agencies who need
  319. to do operations on the Internet without being noticed.
  320. No organization can achieve this security on its own. If a single
  321. corporation or government agency were to build a private network to
  322. protect its operations, any connections entering or leaving that network
  323. would be obviously linkable to the controlling organization. The members
  324. and operations of that agency would be easier, not harder, to distinguish.
  325. Instead, to protect our networks from traffic analysis, we must
  326. collaboratively blend the traffic from many organizations and private
  327. citizens, so that an eavesdropper can't tell which users are which,
  328. and who is looking for what information. %By bringing more users onto
  329. %the network, all users become more secure~\cite{econymics}.
  330. %[XXX I feel uncomfortable saying this last sentence now. -RD]
  331. %[So, I took it out. I think we can do without it. -PFS]
  332. Naturally, organizations will not want to depend on others for their
  333. security. If most participating providers are reliable, Tor tolerates
  334. some hostile infiltration of the network. For maximum protection,
  335. the Tor design includes an enclave approach that lets data be encrypted
  336. (and authenticated) end-to-end, so high-sensitivity users can be sure it
  337. hasn't been read or modified. This even works for Internet services that
  338. don't have built-in encryption and authentication, such as unencrypted
  339. HTTP or chat, and it requires no modification of those services.
  340. \subsection{Related work}
  341. Tor is not the only anonymity system that aims to be practical and useful.
  342. Commercial single-hop proxies~\cite{anonymizer}, as well as unsecured
  343. open proxies around the Internet, can provide good
  344. performance and some security against a weaker attacker. The Java
  345. Anon Proxy~\cite{web-mix} provides similar functionality to Tor but only
  346. handles web browsing rather than arbitrary TCP\@.
  347. %Some peer-to-peer file-sharing overlay networks such as
  348. %Freenet~\cite{freenet} and Mute~\cite{mute}
  349. Zero-Knowledge Systems' commercial Freedom
  350. network~\cite{freedom21-security} was even more flexible than Tor in
  351. that it could transport arbitrary IP packets, and it also supported
  352. pseudonymous access rather than just anonymous access; but it had
  353. a different approach to sustainability (collecting money from users
  354. and paying ISPs to run Tor nodes), and was shut down due to financial
  355. load. Finally, potentially
  356. more scalable designs like Tarzan~\cite{tarzan:ccs02} and
  357. MorphMix~\cite{morphmix:fc04} have been proposed in the literature, but
  358. have not yet been fielded. All of these systems differ somewhat
  359. in threat model and presumably practical resistance to threats.
  360. Morphmix is very close to Tor in circuit setup. And, by separating
  361. node discovery from route selection from circuit setup, Tor is
  362. flexible enough to potentially contain a Morphmix experiment within
  363. it. We direct the interested reader to Section
  364. 2 of~\cite{tor-design} for a more in-depth review of related work.
  365. Tor differs from other deployed systems for traffic analysis resistance
  366. in its security and flexibility. Mix networks such as
  367. Mixmaster~\cite{mixmaster-spec} or its successor Mixminion~\cite{minion-design}
  368. gain the highest degrees of anonymity at the expense of introducing highly
  369. variable delays, thus making them unsuitable for applications such as web
  370. browsing. Commercial single-hop
  371. proxies~\cite{anonymizer} present a single point of failure, where
  372. a single compromise can expose all users' traffic, and a single-point
  373. eavesdropper can perform traffic analysis on the entire network.
  374. Also, their proprietary implementations place any infrastucture that
  375. depends on these single-hop solutions at the mercy of their providers'
  376. financial health as well as network security.
  377. %XXXX six-four. crowds. i2p.
  378. %XXXX
  379. %have a serious discussion of morphmix's assumptions, since they would
  380. %seem to be the direct competition. in fact tor is a flexible architecture
  381. %that would encompass morphmix, and they're nearly identical except for
  382. %path selection and node discovery. and the trust system morphmix has
  383. %seems overkill (and/or insecure) based on the threat model we've picked.
  384. % this para should probably move to the scalability / directory system. -RD
  385. % Nope. Cut for space, except for small comment added above -PFS
  386. \section{Social challenges}
  387. Many of the issues the Tor project needs to address extend beyond
  388. system design and technology development. In particular, the
  389. Tor project's \emph{image} with respect to its users and the rest of
  390. the Internet impacts the security it can provide.
  391. % No image, no sustainability -NM
  392. With this image issue in mind, this section discusses the Tor user base and
  393. Tor's interaction with other services on the Internet.
  394. \subsection{Communicating security}
  395. Usability for anonymity systems
  396. contributes directly to their security, because how usable the system
  397. is impacts the possible anonymity set~\cite{econymics,back01}. Or
  398. conversely, an unusable system attracts few users and thus can't provide
  399. much anonymity.
  400. This phenomenon has a second-order effect: knowing this, users should
  401. choose which anonymity system to use based in part on how usable
  402. \emph{others} will find it, in order to get the protection of a larger
  403. anonymity set. Thus we might replace the adage ``usability is a security
  404. parameter''~\cite{back01} with a new one: ``perceived usability is a
  405. security parameter.'' From here we can better understand the effects
  406. of publicity and advertising on security: the more convincing your
  407. advertising, the more likely people will believe you have users, and thus
  408. the more users you will attract. Perversely, over-hyped systems (if they
  409. are not too broken) may be a better choice than modestly promoted ones,
  410. if the hype attracts more users~\cite{usability-network-effect}.
  411. So it follows that we should come up with ways to accurately communicate
  412. the available security levels to the user, so she can make informed
  413. decisions. JAP aims to do this by including a
  414. comforting `anonymity meter' dial in the software's graphical interface,
  415. giving the user an impression of the level of protection for her current
  416. traffic.
  417. However, there's a catch. For users to share the same anonymity set,
  418. they need to act like each other. An attacker who can distinguish
  419. a given user's traffic from the rest of the traffic will not be
  420. distracted by anonymity set size. For high-latency systems like
  421. Mixminion, where the threat model is based on mixing messages with each
  422. other, there's an arms race between end-to-end statistical attacks and
  423. counter-strategies~\cite{statistical-disclosure,minion-design,e2e-traffic,trickle02}.
  424. But for low-latency systems like Tor, end-to-end \emph{traffic
  425. correlation} attacks~\cite{danezis-pet2004,defensive-dropping,SS03}
  426. allow an attacker who can measure both ends of a communication
  427. to match packet timing and volume, quickly linking
  428. the initiator to her destination. This is why Tor's threat model is
  429. based on preventing the adversary from observing both the initiator and
  430. the responder.
  431. Like Tor, the current JAP implementation does not pad connections
  432. (apart from using small fixed-size cells for transport). In fact,
  433. JAP's cascade-based network topology may be even more vulnerable to these
  434. attacks, because the network has fewer edges. JAP was born out of
  435. the ISDN mix design~\cite{isdn-mixes}, where padding made sense because
  436. every user had a fixed bandwidth allocation and altering the timing
  437. pattern of packets could be immediately detected, but in its current context
  438. as a general Internet web anonymizer, adding sufficient padding to JAP
  439. would be prohibitively expensive and probably ineffective against a
  440. minimally active attacker.\footnote{Even if JAP could
  441. fund higher-capacity nodes indefinitely, our experience
  442. suggests that many users would not accept the increased per-user
  443. bandwidth requirements, leading to an overall much smaller user base. But
  444. cf.\ Section~\ref{subsec:mid-latency}.} Therefore, since under this threat
  445. model the number of concurrent users does not seem to have much impact
  446. on the anonymity provided, we suggest that JAP's anonymity meter is not
  447. accurately communicating security levels to its users.
  448. % because more users don't help anonymity much, we need to rely more
  449. % on other incentive schemes, both policy-based (see sec x) and
  450. % technically enforced (see sec y)
  451. On the other hand, while the number of active concurrent users may not
  452. matter as much as we'd like, it still helps to have some other users
  453. on the network. We investigate this issue next.
  454. \subsection{Reputability and perceived social value}
  455. Another factor impacting the network's security is its reputability:
  456. the perception of its social value based on its current user base. If Alice is
  457. the only user who has ever downloaded the software, it might be socially
  458. accepted, but she's not getting much anonymity. Add a thousand animal rights
  459. activists, and she's anonymous, but everyone thinks she's a Bambi lover (or
  460. NRA member if you prefer a contrasting example). Add a thousand
  461. diverse citizens (cancer survivors, privacy enthusiasts, and so on)
  462. and now she's harder to profile.
  463. Furthermore, the network's reputability affects its node base: more people
  464. are willing to run a service if they believe it will be used by human rights
  465. workers than if they believe it will be used exclusively for disreputable
  466. ends. This effect becomes stronger if node operators themselves think they
  467. will be associated with these disreputable ends.
  468. So the more cancer survivors on Tor, the better for the human rights
  469. activists. The more malicious hackers, the worse for the normal users. Thus,
  470. reputability is an anonymity issue for two reasons. First, it impacts
  471. the sustainability of the network: a network that's always about to be
  472. shut down has difficulty attracting and keeping adquate nodes.
  473. Second, a disreputable network is more vulnerable to legal and
  474. political attacks, since it will attract fewer supporters.
  475. While people therefore have an incentive for the network to be used for
  476. ``more reputable'' activities than their own, there are still tradeoffs
  477. involved when it comes to anonymity. To follow the above example, a
  478. network used entirely by cancer survivors might welcome some NRA members
  479. onto the network, though of course they'd prefer a wider
  480. variety of users.
  481. Reputability becomes even more tricky in the case of privacy networks,
  482. since the good uses of the network (such as publishing by journalists in
  483. dangerous countries) are typically kept private, whereas network abuses
  484. or other problems tend to be more widely publicized.
  485. The impact of public perception on security is especially important
  486. during the bootstrapping phase of the network, where the first few
  487. widely publicized uses of the network can dictate the types of users it
  488. attracts next.
  489. As an example, some U.S.~Department of Energy
  490. penetration testing engineers are tasked with compromising DoE computers
  491. from the outside. They only have a limited number of ISPs from which to
  492. launch their attacks, and they found that the defenders were recognizing
  493. attacks because they came from the same IP space. These engineers wanted
  494. to use Tor to hide their tracks. First, from a technical standpoint,
  495. Tor does not support the variety of IP packets one would like to use in
  496. such attacks (see Section~\ref{subsec:tcp-vs-ip}). But aside from this,
  497. we also decided that it would probably be poor precedent to encourage
  498. such use---even legal use that improves national security---and managed
  499. to dissuade them.
  500. %% "outside of academia, jap has just lost, permanently". (That is,
  501. %% even though the crime detection issues are resolved and are unlikely
  502. %% to go down the same way again, public perception has not been kind.)
  503. \subsection{Sustainability and incentives}
  504. One of the unsolved problems in low-latency anonymity designs is
  505. how to keep the nodes running. Zero-Knowledge Systems's Freedom network
  506. depended on paying third parties to run its servers; the JAP project's
  507. bandwidth depends on grants to pay for its bandwidth and
  508. administrative expenses. In Tor, bandwidth and administrative costs are
  509. distributed across the volunteers who run Tor nodes, so we at least have
  510. reason to think that the Tor network could survive without continued research
  511. funding.\footnote{It also helps that Tor is implemented with free and open
  512. source software that can be maintained by anybody with the ability and
  513. inclination.} But why are these volunteers running nodes, and what can we
  514. do to encourage more volunteers to do so?
  515. We have not formally surveyed Tor node operators to learn why they are
  516. running nodes, but
  517. from the information they have provided, it seems that many of them run Tor
  518. nodes for reasons of personal interest in privacy issues. It is possible
  519. that others are running Tor for their own
  520. anonymity reasons, but of course they are
  521. hardly likely to tell us specifics if they are.
  522. %Significantly, Tor's threat model changes the anonymity incentives for running
  523. %a node. In a high-latency mix network, users can receive additional
  524. %anonymity by running their own node, since doing so obscures when they are
  525. %injecting messages into the network. But, anybody observing all I/O to a Tor
  526. %node can tell when the node is generating traffic that corresponds to
  527. %none of its incoming traffic.
  528. %
  529. %I didn't buy the above for reason's subtle enough that I just cut it -PFS
  530. Tor exit node operators do attain a degree of
  531. ``deniability'' for traffic that originates at that exit node. For
  532. example, it is likely in practice that HTTP requests from a Tor node's IP
  533. will be assumed to be from the Tor network.
  534. More significantly, people and organizations who use Tor for
  535. anonymity depend on the
  536. continued existence of the Tor network to do so; running a node helps to
  537. keep the network operational.
  538. %\item Local Tor entry and exit nodes allow users on a network to run in an
  539. % `enclave' configuration. [XXXX need to resolve this. They would do this
  540. % for E2E encryption + auth?]
  541. %We must try to make the costs of running a Tor node easily minimized.
  542. Since Tor is run by volunteers, the most crucial software usability issue is
  543. usability by operators: when an operator leaves, the network becomes less
  544. usable by everybody. To keep operators pleased, we must try to keep Tor's
  545. resource and administrative demands as low as possible.
  546. Because of ISP billing structures, many Tor operators have underused capacity
  547. that they are willing to donate to the network, at no additional monetary
  548. cost to them. Features to limit bandwidth have been essential to adoption.
  549. Also useful has been a ``hibernation'' feature that allows a Tor node that
  550. wants to provide high bandwidth, but no more than a certain amount in a
  551. giving billing cycle, to become dormant once its bandwidth is exhausted, and
  552. to reawaken at a random offset into the next billing cycle. This feature has
  553. interesting policy implications, however; see
  554. the next section below.
  555. Exit policies help to limit administrative costs by limiting the frequency of
  556. abuse complaints. (See Section~\ref{subsec:tor-and-blacklists}.)
  557. %[XXXX say more. Why else would you run a node? What else can we do/do we
  558. % already do to make running a node more attractive?]
  559. %[We can enforce incentives; see Section 6.1. We can rate-limit clients.
  560. % We can put "top bandwidth nodes lists" up a la seti@home.]
  561. \subsection{Bandwidth and file-sharing}
  562. \label{subsec:bandwidth-and-file-sharing}
  563. %One potentially problematical area with deploying Tor has been our response
  564. %to file-sharing applications.
  565. Once users have configured their applications to work with Tor, the largest
  566. remaining usability issue is performance. Users begin to suffer
  567. when websites ``feel slow''.
  568. Clients currently try to build their connections through nodes that they
  569. guess will have enough bandwidth. But even if capacity is allocated
  570. optimally, it seems unlikely that the current network architecture will have
  571. enough capacity to provide every user with as much bandwidth as she would
  572. receive if she weren't using Tor, unless far more nodes join the network
  573. (see above).
  574. %Limited capacity does not destroy the network, however. Instead, usage tends
  575. %towards an equilibrium: when performance suffers, users who value performance
  576. %over anonymity tend to leave the system, thus freeing capacity until the
  577. %remaining users on the network are exactly those willing to use that capacity
  578. %there is.
  579. Much of Tor's recent bandwidth difficulties have come from file-sharing
  580. applications. These applications provide two challenges to
  581. any anonymizing network: their intensive bandwidth requirement, and the
  582. degree to which they are associated (correctly or not) with copyright
  583. violation.
  584. As noted above, high-bandwidth protocols can make the network unresponsive,
  585. but tend to be somewhat self-correcting. Issues of copyright violation,
  586. however, are more interesting. Typical exit node operators want to help
  587. people achieve private and anonymous speech, not to help people (say) host
  588. Vin Diesel movies for download; and typical ISPs would rather not
  589. deal with customers who incur them the overhead of getting menacing letters
  590. from the MPAA\@. While it is quite likely that the operators are doing nothing
  591. illegal, many ISPs have policies of dropping users who get repeated legal
  592. threats regardless of the merits of those threats, and many operators would
  593. prefer to avoid receiving legal threats even if those threats have little
  594. merit. So when the letters arrive, operators are likely to face
  595. pressure to block file-sharing applications entirely, in order to avoid the
  596. hassle.
  597. But blocking file-sharing would not necessarily be easy; most popular
  598. protocols have evolved to run on a variety of non-standard ports in order to
  599. get around other port-based bans. Thus, exit node operators who wanted to
  600. block file-sharing would have to find some way to integrate Tor with a
  601. protocol-aware exit filter. This could be a technically expensive
  602. undertaking, and one with poor prospects: it is unlikely that Tor exit nodes
  603. would succeed where so many institutional firewalls have failed. Another
  604. possibility for sensitive operators is to run a restrictive node that
  605. only permits exit connections to a restricted range of ports which are
  606. not frequently associated with file sharing. There are increasingly few such
  607. ports.
  608. Other possible approaches might include rate-limiting connections, especially
  609. long-lived connections or connections to file-sharing ports, so that
  610. high-bandwidth connections do not flood the network. We might also want to
  611. give priority to cells on low-bandwidth connections to keep them interactive,
  612. but this could have negative anonymity implications.
  613. For the moment, it seems that Tor's bandwidth issues have rendered it
  614. unattractive for bulk file-sharing traffic; this may continue to be so in the
  615. future. Nevertheless, Tor will likely remain attractive for limited use in
  616. file-sharing protocols that have separate control and data channels.
  617. %[We should say more -- but what? That we'll see a similar
  618. % equilibriating effect as with bandwidth, where sensitive ops switch to
  619. % middleman, and we become less useful for file-sharing, so the file-sharing
  620. % people back off, so we get more ops since there's less file-sharing, so the
  621. % file-sharers come back, etc.]
  622. %XXXX
  623. %in practice, plausible deniability is hypothetical and doesn't seem very
  624. %convincing. if ISPs find the activity antisocial, they don't care *why*
  625. %your computer is doing that behavior.
  626. \subsection{Tor and blacklists}
  627. \label{subsec:tor-and-blacklists}
  628. It was long expected that, alongside Tor's legitimate users, it would also
  629. attract troublemakers who exploited Tor in order to abuse services on the
  630. Internet with vandalism, rude mail, and so on.
  631. %[XXX we're not talking bandwidth abuse here, we're talking vandalism,
  632. %hate mails via hotmail, attacks, etc.]
  633. Our initial answer to this situation was to use ``exit policies''
  634. to allow individual Tor nodes to block access to specific IP/port ranges.
  635. This approach aims to make operators more willing to run Tor by allowing
  636. them to prevent their nodes from being used for abusing particular
  637. services. For example, all Tor nodes currently block SMTP (port 25), in
  638. order to avoid being used to send spam.
  639. This approach is useful, but is insufficient for two reasons. First, since
  640. it is not possible to force all nodes to block access to any given service,
  641. many of those services try to block Tor instead. More broadly, while being
  642. blockable is important to being good netizens, we would like to encourage
  643. services to allow anonymous access; services should not need to decide
  644. between blocking legitimate anonymous use and allowing unlimited abuse.
  645. This is potentially a bigger problem than it may appear.
  646. On the one hand, if people want to refuse connections from your address to
  647. their servers it would seem that they should be allowed. But, it's not just
  648. for himself that the individual node administrator is deciding when he decides
  649. if he wants to post to Wikipedia from his Tor node address or allow
  650. people to read Wikipedia anonymously through his Tor node. (Wikipedia
  651. has blocked all posting from all Tor nodes based on IP address.) If e.g.,
  652. s/he comes through a campus or corporate NAT, then the decision must
  653. be to have the entire population behind it able to have a Tor exit
  654. node or to have write access to Wikipedia. This is a loss for both Tor
  655. and Wikipedia. We don't want to compete for (or divvy up) the NAT
  656. protected entities of the world.
  657. Worse, many IP blacklists are not terribly fine-grained.
  658. No current IP blacklist, for example, allows a service provider to blacklist
  659. only those Tor nodes that allow access to a specific IP or port, even
  660. though this information is readily available. One IP blacklist even bans
  661. every class C network that contains a Tor node, and recommends banning SMTP
  662. from these networks even though Tor does not allow SMTP at all. This
  663. coarse-grained approach is typically a strategic decision to discourage the
  664. operation of anything resembling an open proxy by encouraging its neighbors
  665. to shut it down in order to get unblocked themselves.
  666. %[****Since this is stupid and we oppose it, shouldn't we name names here -pfs]
  667. %[XXX also, they're making \emph{middleman nodes leave} because they're caught
  668. % up in the standoff!]
  669. %[XXX Mention: it's not dumb, it's strategic!]
  670. %[XXX Mention: for some servops, any blacklist is a blacklist too many,
  671. % because it is risky. (Guy lives in apt _building_ with one IP.)]
  672. Problems of abuse occur mainly with services such as IRC networks and
  673. Wikipedia, which rely on IP blocking to ban abusive users. While at first
  674. blush this practice might seem to depend on the anachronistic assumption that
  675. each IP is an identifier for a single user, it is actually more reasonable in
  676. practice: it assumes that non-proxy IPs are a costly resource, and that an
  677. abuser can not change IPs at will. By blocking IPs which are used by Tor
  678. nodes, open proxies, and service abusers, these systems hope to make
  679. ongoing abuse difficult. Although the system is imperfect, it works
  680. tolerably well for them in practice.
  681. But of course, we would prefer that legitimate anonymous users be able to
  682. access abuse-prone services. One conceivable approach would be to require
  683. would-be IRC users, for instance, to register accounts if they wanted to
  684. access the IRC network from Tor. In practise this would not
  685. significantly impede abuse if creating new accounts were easily automatable;
  686. this is why services use IP blocking. In order to deter abuse, pseudonymous
  687. identities need to require a significant switching cost in resources or human
  688. time.
  689. % XXX Mention captchas?
  690. %One approach, similar to that taken by Freedom, would be to bootstrap some
  691. %non-anonymous costly identification mechanism to allow access to a
  692. %blind-signature pseudonym protocol. This would effectively create costly
  693. %pseudonyms, which services could require in order to allow anonymous access.
  694. %This approach has difficulties in practise, however:
  695. %\begin{tightlist}
  696. %\item Unlike Freedom, Tor is not a commercial service. Therefore, it would
  697. % be a shame to require payment in order to make Tor useful, or to make
  698. % non-paying users second-class citizens.
  699. %\item It is hard to think of an underlying resource that would actually work.
  700. % We could use IP addresses, but that's the problem, isn't it?
  701. %\item Managing single sign-on services is not considered a well-solved
  702. % problem in practice. If Microsoft can't get universal acceptance for
  703. % Passport, why do we think that a Tor-specific solution would do any good?
  704. %\item Even if we came up with a perfect authentication system for our needs,
  705. % there's no guarantee that any service would actually start using it. It
  706. % would require a nonzero effort for them to support it, and it might just
  707. % be less hassle for them to block tor anyway.
  708. %\end{tightlist}
  709. %The use of squishy IP-based ``authentication'' and ``authorization''
  710. %has not broken down even to the level that SSNs used for these
  711. %purposes have in commercial and public record contexts. Externalities
  712. %and misplaced incentives cause a continued focus on fighting identity
  713. %theft by protecting SSNs rather than developing better authentication
  714. %and incentive schemes \cite{price-privacy}. Similarly we can expect a
  715. %continued use of identification by IP number as long as there is no
  716. %workable alternative.
  717. %[XXX Mention correct DNS-RBL implementation. -NM]
  718. \section{Design choices}
  719. In addition to social issues, Tor also faces some design tradeoffs that must
  720. be investigated as the network develops.
  721. \subsection{Transporting the stream vs transporting the packets}
  722. \label{subsec:stream-vs-packet}
  723. \label{subsec:tcp-vs-ip}
  724. Tor transports streams; it does not tunnel packets.
  725. Developers of the old Freedom network~\cite{freedom21-security}
  726. keep telling us that IP addresses should ``obviously'' be anonymized
  727. at the IP layer. These issues need to be resolved before
  728. Tor will be ready to carry arbitrary IP traffic:
  729. \begin{enumerate}
  730. \setlength{\itemsep}{0mm}
  731. \setlength{\parsep}{0mm}
  732. \item \emph{IP packets reveal OS characteristics.} We still need to do
  733. IP-level packet normalization, to stop things like IP fingerprinting
  734. attacks. There likely exist libraries that can help with this.
  735. \item \emph{Application-level streams still need scrubbing.} We still need
  736. Tor to be easy to integrate with user-level application-specific proxies
  737. such as Privoxy. So it's not just a matter of capturing packets and
  738. anonymizing them at the IP layer.
  739. \item \emph{Certain protocols will still leak information.} For example,
  740. we must rewrite DNS requests so they are
  741. delivered to an unlinkable DNS server; so we must
  742. understand the protocols we are transporting.
  743. \item \emph{The crypto is unspecified.} First we need a block-level encryption
  744. approach that can provide security despite
  745. packet loss and out-of-order delivery. Freedom allegedly had one, but it was
  746. never publicly specified.
  747. Also, TLS over UDP is not implemented or even
  748. specified, though some early work has begun on that~\cite{dtls}.
  749. \item \emph{We'll still need to tune network parameters}. Since the above
  750. encryption system will likely need sequence numbers (and maybe more) to do
  751. replay detection, handle duplicate frames, etc., we will be reimplementing
  752. a subset of TCP anyway.
  753. \item \emph{Exit policies for arbitrary IP packets mean building a secure
  754. IDS\@.} Our node operators tell us that exit policies are one of
  755. the main reasons they're willing to run Tor.
  756. Adding an Intrusion Detection System to handle exit policies would
  757. increase the security complexity of Tor, and would likely not work anyway,
  758. as evidenced by the entire field of IDS and counter-IDS papers. Many
  759. potential abuse issues are resolved by the fact that Tor only transports
  760. valid TCP streams (as opposed to arbitrary IP including malformed packets
  761. and IP floods), so exit policies become even \emph{more} important as
  762. we become able to transport IP packets. We also need to compactly
  763. describe exit policies so clients can predict
  764. which nodes will allow which packets to exit.
  765. \item \emph{The Tor-internal name spaces would need to be redesigned.} We
  766. support hidden service {\tt{.onion}} addresses, and other special addresses
  767. like {\tt{.exit}} for the user to request a particular exit node,
  768. by intercepting the addresses when they are passed to the Tor client.
  769. \end{enumerate}
  770. This list is discouragingly long, but being able to transport more
  771. protocols obviously has some advantages. It would be good to learn which
  772. items are actual roadblocks and which are easier to resolve than we think.
  773. To be fair, Tor's stream-based approach has run into
  774. stumbling blocks as well. While Tor supports the SOCKS protocol,
  775. which provides a standardized interface for generic TCP proxies, many
  776. applications do not support SOCKS\@. For them we must
  777. replace the networking system calls with SOCKS-aware
  778. versions, or run a SOCKS tunnel locally, neither of which is
  779. easy for the average user. %---even with good instructions.
  780. Even when applications do use SOCKS, they often make DNS requests
  781. themselves before handing the address to Tor, which advertises
  782. where the user is about to connect.
  783. We are still working on usable solutions.
  784. %So in order to actually provide good anonymity, we need to make sure that
  785. %users have a practical way to use Tor anonymously. Possibilities include
  786. %writing wrappers for applications to anonymize them automatically; improving
  787. %the applications' support for SOCKS; writing libraries to help application
  788. %writers use Tor properly; and implementing a local DNS proxy to reroute DNS
  789. %requests to Tor so that applications can simply point their DNS resolvers at
  790. %localhost and continue to use SOCKS for data only.
  791. \subsection{Mid-latency}
  792. \label{subsec:mid-latency}
  793. Some users need to resist traffic correlation attacks. Higher-latency
  794. mix-networks introduce variability into message
  795. arrival times: as timing variance increases, timing correlation attacks
  796. require increasingly more data~\cite{e2e-traffic}. Can we improve Tor's
  797. resistance without losing too much usability?
  798. We need to learn whether we can trade a small increase in latency
  799. for a large anonymity increase, or if we'll end up trading a lot of
  800. latency for a small security gain. A trade could be worthwhile even if we
  801. can only protect certain use cases, such as infrequent short-duration
  802. transactions. % To answer this question
  803. We might adapt the techniques of~\cite{e2e-traffic} to a lower-latency mix
  804. network, where the messages are batches of cells in temporally clustered
  805. connections. These large fixed-size batches can also help resist volume
  806. signature attacks~\cite{hintz-pet02}. We can also experiment with traffic
  807. shaping to get a good balance of throughput and security.
  808. %Other padding regimens might supplement the
  809. %mid-latency option; however, we should continue the caution with which
  810. %we have always approached padding lest the overhead cost us too much
  811. %performance or too many volunteers.
  812. We must keep usability in mind too. How much can latency increase
  813. before we drive away our users? We're already being forced to increase
  814. latency slightly, as our growing network incorporates more DSL and
  815. cable-modem nodes and more nodes in distant continents. Perhaps we can
  816. harness this increased latency to improve anonymity rather than just
  817. reduce usability. Further, if we let clients label certain circuits as
  818. mid-latency as they are constructed, we could handle both types of traffic
  819. on the same network, giving users a choice between speed and security---and
  820. giving researchers a chance to experiment with parameters to improve the
  821. quality of those choices.
  822. \subsection{Enclaves and helper nodes}
  823. \label{subsec:helper-nodes}
  824. It has long been thought that the best anonymity comes from running your
  825. own node~\cite{tor-design,or-ih96,or-pet00}. This is called using Tor in an
  826. \emph{enclave} configuration. By running Tor clients only on Tor nodes
  827. at the enclave perimeter, enclave configuration can also permit anonymity
  828. protection even when policy or other requiremnts prevent individual machines
  829. within the enclave from running Tor clients~\cite{or-jsac98,or-discex00}.
  830. Of course, Tor's default path length of
  831. three is insufficient for these enclaves, since the entry and/or exit
  832. themselves are sensitive. Tor thus increments the path length by one
  833. for each sensitive endpoint in the circuit.
  834. Enclaves also help to protect against end-to-end attacks, since it's
  835. possible that traffic coming from the node has simply been relayed from
  836. elsewhere. However, if the node has recognizable behavior patterns,
  837. an attacker who runs nodes in the network can triangulate over time to
  838. gain confidence that it is in fact originating the traffic. Wright et
  839. al.~\cite{wright03} introduce the notion of a \emph{helper node}---a
  840. single fixed entry node for each user---to combat this \emph{predecessor
  841. attack}.
  842. However, the attack in~\cite{attack-tor-oak05} shows that simply adding
  843. to the path length, or using a helper node, may not protect an enclave
  844. node. A hostile web server can send constant interference traffic to
  845. all nodes in the network, and learn which nodes are involved in the
  846. circuit (though at least in the current attack, he can't learn their
  847. order). Using randomized path lengths may help some, since the attacker
  848. will never be certain he has identified all nodes in the path, but as
  849. long as the network remains small this attack will still be feasible.
  850. Helper nodes also aim to help Tor clients, because choosing entry and exit points
  851. randomly and changing them frequently allows an attacker who controls
  852. even a few nodes to eventually link some of their destinations. The goal
  853. is to take the risk once and for all about choosing a bad entry node,
  854. rather than taking a new risk for each new circuit. (Choosing fixed
  855. exit nodes is less useful, since even an honest exit node still doesn't
  856. protect against a hostile website.) But obstacles still remain before
  857. we can implement them.
  858. For one, the literature does not describe how to choose helpers from a list
  859. of nodes that changes over time. If Alice is forced to choose a new entry
  860. helper every $d$ days and $c$ of the $n$ nodes are bad, she can expect
  861. to choose a compromised node around
  862. every $dc/n$ days. Statistically over time this approach only helps
  863. if she is better at choosing honest helper nodes than at choosing
  864. honest nodes. Worse, an attacker with the ability to DoS nodes could
  865. force users to switch helper nodes more frequently and/or remove
  866. other candidate helpers.
  867. %Do general DoS attacks have anonymity implications? See e.g. Adam
  868. %Back's IH paper, but I think there's more to be pointed out here. -RD
  869. % Not sure what you want to say here. -NM
  870. %Game theory for helper nodes: if Alice offers a hidden service on a
  871. %server (enclave model), and nobody ever uses helper nodes, then against
  872. %George+Steven's attack she's totally nailed. If only Alice uses a helper
  873. %node, then she's still identified as the source of the data. If everybody
  874. %uses a helper node (including Alice), then the attack identifies the
  875. %helper node and also Alice, and knows which one is which. If everybody
  876. %uses a helper node (but not Alice), then the attacker figures the real
  877. %source was a client that is using Alice as a helper node. [How's my
  878. %logic here?] -RD
  879. %
  880. % Not sure about the logic. For the attack to work with helper nodes, the
  881. %attacker needs to guess that Alice is running the hidden service, right?
  882. %Otherwise, how can he know to measure her traffic specifically? -NM
  883. %
  884. % In the Murdoch-Danezis attack, the adversary measures all servers. -RD
  885. %point to routing-zones section re: helper nodes to defend against
  886. %big stuff.
  887. \subsection{Location-hidden services}
  888. \label{subsec:hidden-services}
  889. Tor's \emph{rendezvous points}
  890. let users provide TCP services to other Tor users without revealing
  891. the service's location. Since this feature is relatively recent, we describe here
  892. a couple of our early observations from its deployment.
  893. First, our implementation of hidden services seems less hidden than we'd
  894. like, since they are configured on a single client and get used over
  895. and over---particularly because an external adversary can induce them to
  896. produce traffic. They seem the ideal use case for our above discussion
  897. of helper nodes. This insecurity means that they may not be suitable as
  898. a building block for Free Haven~\cite{freehaven-berk} or other anonymous
  899. publishing systems that aim to provide long-term security.
  900. \emph{Hot-swap} hidden services, where more than one location can
  901. provide the service and loss of any one location does not imply a
  902. change in service, would help foil intersection and observation attacks
  903. where an adversary monitors availability of a hidden service and also
  904. monitors whether certain users or servers are online. The design
  905. challenges in providing such services without otherwise compromising
  906. the hidden service's anonymity remain an open problem;
  907. however, see~\cite{move-ndss05}.
  908. In practice, hidden services are used for more than just providing private
  909. access to a web server or IRC server. People are using hidden services
  910. as a poor man's VPN and firewall-buster. Many people want to be able
  911. to connect to the computers in their private network via secure shell,
  912. and rather than playing with dyndns and trying to pierce holes in their
  913. firewall, they run a hidden service on the inside and then rendezvous
  914. with that hidden service externally.
  915. News sites like Bloggers Without Borders (www.b19s.org) are advertising
  916. a hidden-service address on their front page. Doing this can provide
  917. increased robustness if they use the dual-IP approach we describe
  918. in~\cite{tor-design},
  919. but in practice they do it firstly to increase visibility
  920. of the Tor project and their support for privacy, and secondly to offer
  921. a way for their users, using unmodified software, to get end-to-end
  922. encryption and end-to-end authentication to their website.
  923. \subsection{Location diversity and ISP-class adversaries}
  924. \label{subsec:routing-zones}
  925. Anonymity networks have long relied on diversity of node location for
  926. protection against attacks---typically an adversary who can observe a
  927. larger fraction of the network can launch a more effective attack. One
  928. way to achieve dispersal involves growing the network so a given adversary
  929. sees less. Alternately, we can arrange the topology so traffic can enter
  930. or exit at many places (for example, by using a free-route network
  931. like Tor rather than a cascade network like JAP). Lastly, we can use
  932. distributed trust to spread each transaction over multiple jurisdictions.
  933. But how do we decide whether two nodes are in related locations?
  934. Feamster and Dingledine defined a \emph{location diversity} metric
  935. in~\cite{feamster:wpes2004}, and began investigating a variant of location
  936. diversity based on the fact that the Internet is divided into thousands of
  937. independently operated networks called {\em autonomous systems} (ASes).
  938. The key insight from their paper is that while we typically think of a
  939. connection as going directly from the Tor client to the first Tor node,
  940. actually it traverses many different ASes on each hop. An adversary at
  941. any of these ASes can monitor or influence traffic. Specifically, given
  942. plausible initiators and recipients, and given random path selection,
  943. some ASes in the simulation were able to observe 10\% to 30\% of the
  944. transactions (that is, learn both the origin and the destination) on
  945. the deployed Tor network (33 nodes as of June 2004).
  946. The paper concludes that for best protection against the AS-level
  947. adversary, nodes should be in ASes that have the most links to other ASes:
  948. Tier-1 ISPs such as AT\&T and Abovenet. Further, a given transaction
  949. is safest when it starts or ends in a Tier-1 ISP\@. Therefore, assuming
  950. initiator and responder are both in the U.S., it actually \emph{hurts}
  951. our location diversity to enter or exit from far-flung nodes in
  952. continents like Asia or South America.
  953. Many open questions remain. First, it will be an immense engineering
  954. challenge to get an entire BGP routing table to each Tor client, or to
  955. summarize it sufficiently. Without a local copy, clients won't be
  956. able to safely predict what ASes will be traversed on the various paths
  957. through the Tor network to the final destination. Tarzan~\cite{tarzan:ccs02}
  958. and MorphMix~\cite{morphmix:fc04} suggest that we compare IP prefixes to
  959. determine location diversity; but the above paper showed that in practice
  960. many of the Mixmaster nodes that share a single AS have entirely different
  961. IP prefixes. When the network has scaled to thousands of nodes, does IP
  962. prefix comparison become a more useful approximation?
  963. %
  964. Second, we can take advantage of caching certain content at the
  965. exit nodes, to limit the number of requests that need to leave the
  966. network at all. What about taking advantage of caches like Akamai or
  967. Google~\cite{shsm03}? (Note that they're also well-positioned as global
  968. adversaries.)
  969. %
  970. Third, if we follow the recommendations in~\cite{feamster:wpes2004}
  971. and tailor path selection
  972. to avoid choosing endpoints in similar locations, how much are we hurting
  973. anonymity against larger real-world adversaries who can take advantage
  974. of knowing our algorithm?
  975. %
  976. Lastly, can we use this knowledge to figure out which gaps in our network
  977. would most improve our robustness to this class of attack, and go recruit
  978. new nodes with those ASes in mind?
  979. %Tor's security relies in large part on the dispersal properties of its
  980. %network. We need to be more aware of the anonymity properties of various
  981. %approaches so we can make better design decisions in the future.
  982. \subsection{The China problem}
  983. \label{subsec:china}
  984. Citizens in a variety of countries, such as most recently China and
  985. Iran, are periodically blocked from accessing various sites outside
  986. their country. These users try to find any tools available to allow
  987. them to get-around these firewalls. Some anonymity networks, such as
  988. Six-Four~\cite{six-four}, are designed specifically with this goal in
  989. mind; others like the Anonymizer~\cite{anonymizer} are paid by sponsors
  990. such as Voice of America to set up a network to encourage Internet
  991. freedom. Even though Tor wasn't
  992. designed with ubiquitous access to the network in mind, thousands of
  993. users across the world are trying to use it for exactly this purpose.
  994. % Academic and NGO organizations, peacefire, \cite{berkman}, etc
  995. Anti-censorship networks hoping to bridge country-level blocks face
  996. a variety of challenges. One of these is that they need to find enough
  997. exit nodes---servers on the `free' side that are willing to relay
  998. arbitrary traffic from users to their final destinations. Anonymizing
  999. networks including Tor are well-suited to this task, since we have
  1000. already gathered a set of exit nodes that are willing to tolerate some
  1001. political heat.
  1002. The other main challenge is to distribute a list of reachable relays
  1003. to the users inside the country, and give them software to use them,
  1004. without letting the authorities also enumerate this list and block each
  1005. relay. Anonymizer solves this by buying lots of seemingly-unrelated IP
  1006. addresses (or having them donated), abandoning old addresses as they are
  1007. `used up', and telling a few users about the new ones. Distributed
  1008. anonymizing networks again have an advantage here, in that we already
  1009. have tens of thousands of separate IP addresses whose users might
  1010. volunteer to provide this service since they've already installed and use
  1011. the software for their own privacy~\cite{koepsell:wpes2004}. Because
  1012. the Tor protocol separates routing from network discovery \cite{tor-design},
  1013. volunteers could configure their Tor clients
  1014. to generate node descriptors and send them to a special directory
  1015. server that gives them out to dissidents who need to get around blocks.
  1016. Of course, this still doesn't prevent the adversary
  1017. from enumerating all the volunteer relays and blocking them preemptively.
  1018. Perhaps a tiered-trust system could be built where a few individuals are
  1019. given relays' locations, and they recommend other individuals by telling them
  1020. those addresses, thus providing a built-in incentive to avoid letting the
  1021. adversary intercept them. Max-flow trust algorithms~\cite{advogato}
  1022. might help to bound the number of IP addresses leaked to the adversary. Groups
  1023. like the W3C are looking into using Tor as a component in an overall system to
  1024. help address censorship; we wish them luck.
  1025. %\cite{infranet}
  1026. \section{Scaling}
  1027. \label{sec:scaling}
  1028. Tor is running today with hundreds of nodes and tens of thousands of
  1029. users, but it will certainly not scale to millions.
  1030. Scaling Tor involves three main challenges. First is safe node
  1031. discovery, both bootstrapping -- how a Tor client can robustly find an
  1032. initial node list -- and ongoing -- how a Tor client can learn about
  1033. a fair sample of honest nodes and not let the adversary control his
  1034. circuits (see Section~\ref{subsec:trust-and-discovery}). Second is detecting and handling the speed
  1035. and reliability of the variety of nodes we must use if we want to
  1036. accept many nodes (see Section~\ref{subsec:performance}).
  1037. Since the speed and reliability of a circuit is limited by its worst link,
  1038. we must learn to track and predict performance. Finally, in order to get
  1039. a large set of nodes in the first place, we must address incentives
  1040. for users to carry traffic for others.
  1041. \subsection{Incentives by Design}
  1042. There are three behaviors we need to encourage for each Tor node: relaying
  1043. traffic; providing good throughput and reliability while doing it;
  1044. and allowing traffic to exit the network from that node.
  1045. We encourage these behaviors through \emph{indirect} incentives, that
  1046. is, designing the system and educating users in such a way that users
  1047. with certain goals will choose to relay traffic. One
  1048. main incentive for running a Tor node is social benefit: volunteers
  1049. altruistically donate their bandwidth and time. We also keep public
  1050. rankings of the throughput and reliability of nodes, much like
  1051. seti@home. We further explain to users that they can get plausible
  1052. deniability for any traffic emerging from the same address as a Tor
  1053. exit node, and they can use their own Tor node
  1054. as entry or exit point and be confident it's not run by the adversary.
  1055. Further, users may run a node simply because they need such a network
  1056. to be persistently available and usable.
  1057. And, the value of supporting this exceeds any countervening costs.
  1058. Finally, we can improve the usability and feature set of the software:
  1059. rate limiting support and easy packaging decrease the hassle of
  1060. maintaining a node, and our configurable exit policies allow each
  1061. operator to advertise a policy describing the hosts and ports to which
  1062. he feels comfortable connecting.
  1063. To date these appear to have been adequate. As the system scales or as
  1064. new issues emerge, however, we may also need to provide
  1065. \emph{direct} incentives:
  1066. providing payment or other resources in return for high-quality service.
  1067. Paying actual money is problematic: decentralized e-cash systems are
  1068. not yet practical, and a centralized collection system not only reduces
  1069. robustness, but also has failed in the past (the history of commercial
  1070. anonymizing networks is littered with failed attempts). A more promising
  1071. option is to use a tit-for-tat incentive scheme: provide better service
  1072. to nodes that have provided good service to you.
  1073. Unfortunately, such an approach introduces new anonymity problems.
  1074. There are many surprising ways for nodes to game the incentive and
  1075. reputation system to undermine anonymity because such systems are
  1076. designed to encourage fairness in storage or bandwidth usage not
  1077. fairness of provided anonymity. An adversary can attract more traffic
  1078. by performing well or can provide targeted differential performance to
  1079. individual users to undermine their anonymity. Typically a user who
  1080. chooses evenly from all options is most resistant to an adversary
  1081. targeting him, but that approach precludes the efficient use
  1082. of heterogeneous nodes.
  1083. %When a node (call him Steve) performs well for Alice, does Steve gain
  1084. %reputation with the entire system, or just with Alice? If the entire
  1085. %system, how does Alice tell everybody about her experience in a way that
  1086. %prevents her from lying about it yet still protects her identity? If
  1087. %Steve's behavior only affects Alice's behavior, does this allow Steve to
  1088. %selectively perform only for Alice, and then break her anonymity later
  1089. %when somebody (presumably Alice) routes through his node?
  1090. A possible solution is a simplified approach to the tit-for-tat
  1091. incentive scheme based on two rules: (1) each node should measure the
  1092. service it receives from adjacent nodes, and provide service relative
  1093. to the received service, but (2) when a node is making decisions that
  1094. affect its own security (e.g. when building a circuit for its own
  1095. application connections), it should choose evenly from a sufficiently
  1096. large set of nodes that meet some minimum service threshold
  1097. \cite{casc-rep}. This approach allows us to discourage bad service
  1098. without opening Alice up as much to attacks. All of this requires
  1099. further study.
  1100. %XXX rewrite the above so it sounds less like a grant proposal and
  1101. %more like a "if somebody were to try to solve this, maybe this is a
  1102. %good first step".
  1103. %We should implement the above incentive scheme in the
  1104. %deployed Tor network, in conjunction with our plans to add the necessary
  1105. %associated scalability mechanisms. We will do experiments (simulated
  1106. %and/or real) to determine how much the incentive system improves
  1107. %efficiency over baseline, and also to determine how far we are from
  1108. %optimal efficiency (what we could get if we ignored the anonymity goals).
  1109. \subsection{Trust and discovery}
  1110. \label{subsec:trust-and-discovery}
  1111. The published Tor design adopted a deliberately simplistic design for
  1112. authorizing new nodes and informing clients about Tor nodes and their status.
  1113. In preliminary Tor designs, all nodes periodically uploaded a
  1114. signed description
  1115. of their locations, keys, and capabilities to each of several well-known {\it
  1116. directory servers}. These directory servers constructed a signed summary
  1117. of all known Tor nodes (a ``directory''), and a signed statement of which
  1118. nodes they
  1119. believed to be operational at any given time (a ``network status''). Clients
  1120. periodically downloaded a directory in order to learn the latest nodes and
  1121. keys, and more frequently downloaded a network status to learn which nodes were
  1122. likely to be running. Tor nodes also operate as directory caches, in order to
  1123. lighten the bandwidth on the authoritative directory servers.
  1124. In order to prevent Sybil attacks (wherein an adversary signs up many
  1125. purportedly independent nodes in order to increase her chances of observing
  1126. a stream as it enters and leaves the network), the early Tor directory design
  1127. required the operators of the authoritative directory servers to manually
  1128. approve new nodes. Unapproved nodes were included in the directory,
  1129. but clients
  1130. did not use them at the start or end of their circuits. In practice,
  1131. directory administrators performed little actual verification, and tended to
  1132. approve any Tor node whose operator could compose a coherent email.
  1133. This procedure
  1134. may have prevented trivial automated Sybil attacks, but would do little
  1135. against a clever and determined attacker.
  1136. There are a number of flaws in this system that need to be addressed as we
  1137. move forward. They include:
  1138. \begin{tightlist}
  1139. \item Each directory server represents an independent point of failure; if
  1140. any one were compromised, it could immediately compromise all of its users
  1141. by recommending only compromised nodes.
  1142. \item The more nodes join the network, the more unreasonable it
  1143. becomes to expect clients to know about them all. Directories
  1144. become infeasibly large, and downloading the list of nodes becomes
  1145. burdensome.
  1146. \item The validation scheme may do as much harm as it does good. It is not
  1147. only incapable of preventing clever attackers from mounting Sybil attacks,
  1148. but may deter node operators from joining the network. (For instance, if
  1149. they expect the validation process to be difficult, or if they do not share
  1150. any languages in common with the directory server operators.)
  1151. \end{tightlist}
  1152. We could try to move the system in several directions, depending on our
  1153. choice of threat model and requirements. If we did not need to increase
  1154. network capacity in order to support more users, we could simply
  1155. adopt even stricter validation requirements, and reduce the number of
  1156. nodes in the network to a trusted minimum.
  1157. But, we can only do that if can simultaneously make node capacity
  1158. scale much more than we anticipate to be feasible soon, and if we can find
  1159. entities willing to run such nodes, an equally daunting prospect.
  1160. In order to address the first two issues, it seems wise to move to a system
  1161. including a number of semi-trusted directory servers, no one of which can
  1162. compromise a user on its own. Ultimately, of course, we cannot escape the
  1163. problem of a first introducer: since most users will run Tor in whatever
  1164. configuration the software ships with, the Tor distribution itself will
  1165. remain a potential single point of failure so long as it includes the seed
  1166. keys for directory servers, a list of directory servers, or any other means
  1167. to learn which nodes are on the network. But omitting this information
  1168. from the Tor distribution would only delegate the trust problem to the
  1169. individual users, most of whom are presumably less informed about how to make
  1170. trust decisions than the Tor developers.
  1171. %Network discovery, sybil, node admission, scaling. It seems that the code
  1172. %will ship with something and that's our trust root. We could try to get
  1173. %people to build a web of trust, but no. Where we go from here depends
  1174. %on what threats we have in mind. Really decentralized if your threat is
  1175. %RIAA; less so if threat is to application data or individuals or...
  1176. \subsection{Measuring performance and capacity}
  1177. \label{subsec:performance}
  1178. One of the paradoxes with engineering an anonymity network is that we'd like
  1179. to learn as much as we can about how traffic flows so we can improve the
  1180. network, but we want to prevent others from learning how traffic flows in
  1181. order to trace users' connections through the network. Furthermore, many
  1182. mechanisms that help Tor run efficiently
  1183. require measurements about the network.
  1184. Currently, nodes try to deduce their own available bandwidth (based on how
  1185. much traffic they have been able to transfer recently) and include this
  1186. information in the descriptors they upload to the directory. Clients
  1187. choose servers weighted by their bandwidth, neglecting really slow
  1188. servers and capping the influence of really fast ones.
  1189. %
  1190. This is, of course, eminently cheatable. A malicious node can get a
  1191. disproportionate amount of traffic simply by claiming to have more bandwidth
  1192. than it does. But better mechanisms have their problems. If bandwidth data
  1193. is to be measured rather than self-reported, it is usually possible for
  1194. nodes to selectively provide better service for the measuring party, or
  1195. sabotage the measured value of other nodes. Complex solutions for
  1196. mix networks have been proposed, but do not address the issues
  1197. completely~\cite{mix-acc,casc-rep}.
  1198. Even with no cheating, network measurement is complex. It is common
  1199. for views of a node's latency and/or bandwidth to vary wildly between
  1200. observers. Further, it is unclear whether total bandwidth is really
  1201. the right measure; perhaps clients should instead be considering nodes
  1202. based on unused bandwidth or observed throughput.
  1203. % XXXX say more here?
  1204. %How to measure performance without letting people selectively deny service
  1205. %by distinguishing pings. Heck, just how to measure performance at all. In
  1206. %practice people have funny firewalls that don't match up to their exit
  1207. %policies and Tor doesn't deal.
  1208. %Network investigation: Is all this bandwidth publishing thing a good idea?
  1209. %How can we collect stats better? Note weasel's smokeping, at
  1210. %http://seppia.noreply.org/cgi-bin/smokeping.cgi?target=Tor
  1211. %which probably gives george and steven enough info to break tor?
  1212. Even if we can collect and use this network information effectively, we need
  1213. to make sure that it is not more useful to attackers than to us. While it
  1214. seems plausible that bandwidth data alone is not enough to reveal
  1215. sender-recipient connections under most circumstances, it could certainly
  1216. reveal the path taken by large traffic flows under low-usage circumstances.
  1217. \subsection{Non-clique topologies}
  1218. Tor's comparatively weak threat model makes it easier to scale than
  1219. other mix net
  1220. designs. High-latency mix networks need to avoid partitioning attacks, where
  1221. network splits prevent users of the separate partitions from providing cover
  1222. for each other. In Tor, however, we assume that the adversary cannot
  1223. cheaply observe nodes at will, so even if the network becomes split, the
  1224. users do not necessarily receive much less protection.
  1225. Thus, a simple possibility when the scale of a Tor network
  1226. exceeds some size is to simply split it. Care could be taken in
  1227. allocating which nodes go to which network along the lines of
  1228. \cite{casc-rep} to insure that collaborating hostile nodes are not
  1229. able to gain any advantage in network splitting that they do not
  1230. already have in joining a network.
  1231. If the network is split,
  1232. a client does not need to use just one of the two resulting networks.
  1233. Alice could use either of them, and it would not be difficult to make
  1234. the Tor client able to access several such network on a per circuit
  1235. basis. More analysis is needed; we simply note here that splitting
  1236. a Tor network is an easy way to achieve moderate scalability and that
  1237. it does not necessarily have the same implications as splitting a mixnet.
  1238. Alternatively, we can try to scale a single Tor network. Some issues for
  1239. scaling include restricting the number of sockets and the amount of bandwidth
  1240. used by each node. The number of sockets is determined by the network's
  1241. connectivity and the number of users, while bandwidth capacity is determined
  1242. by the total bandwidth of nodes on the network. The simplest solution to
  1243. bandwidth capacity is to add more nodes, since adding a Tor node of any
  1244. feasible bandwidth will increase the traffic capacity of the network. So as
  1245. a first step to scaling, we should focus on making the network tolerate more
  1246. nodes, by reducing the interconnectivity of the nodes; later we can reduce
  1247. overhead associated with directories, discovery, and so on.
  1248. By reducing the connectivity of the network we increase the total number of
  1249. nodes that the network can contain. Danezis~\cite{danezis-pets03} considers
  1250. the anonymity implications of restricting routes on mix networks, and
  1251. recommends an approach based on expander graphs (where any subgraph is likely
  1252. to have many neighbors). It is not immediately clear that this approach will
  1253. extend to Tor, which has a weaker threat model but higher performance
  1254. requirements than the network considered. Instead of analyzing the
  1255. probability of an attacker's viewing whole paths, we will need to examine the
  1256. attacker's likelihood of compromising the endpoints of a Tor circuit through
  1257. a sparse network.
  1258. % Nick edits these next 2 grafs.
  1259. To make matters simpler, Tor may not need an expander graph per se: it
  1260. may be enough to have a single subnet that is highly connected. As an
  1261. example, assume fifty nodes of relatively high traffic capacity. This
  1262. \emph{center} forms a clique. Assume each center node can
  1263. handle 200 connections to other nodes (including the other ones in the
  1264. center). Assume every noncenter node connects to three nodes in the
  1265. center and anyone out of the center that they want to. Then the
  1266. network easily scales to c. 2500 nodes with commensurate increase in
  1267. bandwidth. There are many open questions: how directory information
  1268. is distributed (presumably information about the center nodes could
  1269. be given to any new nodes with their codebase), whether center nodes
  1270. will need to function as a `backbone', etc. As above the point is
  1271. that this would create problems for the expected anonymity for a mixnet,
  1272. but for a low-latency network where anonymity derives largely from
  1273. the edges, it may be feasible.
  1274. Another point is that we already have a non-clique topology.
  1275. Individuals can set up and run Tor nodes without informing the
  1276. directory servers. This will allow, e.g., dissident groups to run a
  1277. local Tor network of such nodes that connects to the public Tor
  1278. network. This network is hidden behind the Tor network, and its
  1279. only visible connection to Tor is at those points where it connects.
  1280. As far as the public network, or anyone observing it, is concerned,
  1281. they are running clients.
  1282. \section{The Future}
  1283. \label{sec:conclusion}
  1284. Tor is the largest and most diverse low-latency anonymity network
  1285. available, but we are still in the beginning stages of deployment. Several
  1286. major questions remain.
  1287. First, will our volunteer-based approach to sustainability work in the
  1288. long term? As we add more features and destabilize the network, the
  1289. developers spend a lot of time keeping the server operators happy. Even
  1290. though Tor is free software, the network would likely stagnate and die at
  1291. this stage if the developers stopped actively working on it. We may get
  1292. an unexpected boon from the fact that we're a general-purpose overlay
  1293. network: as Tor grows more popular, other groups who need an overlay
  1294. network on the Internet are starting to adapt Tor to their needs.
  1295. %
  1296. Second, Tor is only one of many components that preserve privacy online.
  1297. To keep identifying information out of application traffic, someone must build
  1298. more and better protocol-aware proxies that are usable by ordinary people.
  1299. %
  1300. Third, we need to gain a reputation for social good, and learn how to
  1301. coexist with the variety of Internet services and their established
  1302. authentication mechanisms. We can't just keep escalating the blacklist
  1303. standoff forever.
  1304. %
  1305. Fourth, the current Tor
  1306. architecture does not scale even to handle current user demand. We must
  1307. find designs and incentives to let some clients relay traffic too, without
  1308. sacrificing too much anonymity.
  1309. These are difficult and open questions, yet choosing not to solve them
  1310. means leaving most users to a less secure network or no anonymizing
  1311. network at all.
  1312. \bibliographystyle{plain} \bibliography{tor-design}
  1313. \clearpage
  1314. \appendix
  1315. \begin{figure}[t]
  1316. %\unitlength=1in
  1317. \centering
  1318. %\begin{picture}(6.0,2.0)
  1319. %\put(3,1){\makebox(0,0)[c]{\epsfig{figure=graphnodes,width=6in}}}
  1320. %\end{picture}
  1321. \mbox{\epsfig{figure=graphnodes,width=5in}}
  1322. \caption{Number of Tor nodes over time, through January 2005. Lowest
  1323. line is number of exit
  1324. nodes that allow connections to port 80. Middle line is total number of
  1325. verified (registered) Tor nodes. The line above that represents nodes
  1326. that are running but not yet registered.}
  1327. \label{fig:graphnodes}
  1328. \end{figure}
  1329. \begin{figure}[t]
  1330. \centering
  1331. \mbox{\epsfig{figure=graphtraffic,width=5in}}
  1332. \caption{The sum of traffic reported by each node over time, through
  1333. January 2005. The bottom
  1334. pair show average throughput, and the top pair represent the largest 15
  1335. minute burst in each 4 hour period.}
  1336. \label{fig:graphtraffic}
  1337. \end{figure}
  1338. \end{document}
  1339. Making use of nodes with little bandwidth, or high latency/packet loss.
  1340. Running Tor nodes behind NATs, behind great-firewalls-of-China, etc.
  1341. Restricted routes. How to propagate to everybody the topology? BGP
  1342. style doesn't work because we don't want just *one* path. Point to
  1343. Geoff's stuff.