| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980 | \documentclass[times,10pt,twocolumn]{article}\usepackage{latex8}\usepackage{times}\usepackage{url}\usepackage{graphics}\usepackage{amsmath}\pagestyle{empty}\renewcommand\url{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}\newcommand\emailaddr{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}% If an URL ends up with '%'s in it, that's because the line *in the .bib/.tex% file* is too long, so break it there (it doesn't matter if the next line is% indented with spaces). -DH%\newif\ifpdf%\ifx\pdfoutput\undefined%   \pdffalse%\else%   \pdfoutput=1%   \pdftrue%\fi\newenvironment{tightlist}{\begin{list}{$\bullet$}{  \setlength{\itemsep}{0mm}    \setlength{\parsep}{0mm}    %  \setlength{\labelsep}{0mm}    %  \setlength{\labelwidth}{0mm}    %  \setlength{\topsep}{0mm}    }}{\end{list}}\begin{document}%% Use dvipdfm instead. --DH%\ifpdf%  \pdfcompresslevel=9%  \pdfpagewidth=\the\paperwidth%  \pdfpageheight=\the\paperheight%\fi\title{Tor: The Second-Generation Onion Router}% Putting the 'Private' back in 'Virtual Private Network'%\author{Roger Dingledine \\ The Free Haven Project \\ arma@freehaven.net \and%Nick Mathewson \\ The Free Haven Project \\ nickm@freehaven.net \and%Paul Syverson \\ Naval Research Lab \\ syverson@itd.nrl.navy.mil}\maketitle\thispagestyle{empty}\begin{abstract}We present Tor, a circuit-based low-latency anonymous communicationsystem. This second-generation Onion Routing system addresses limitationsin the original design. We add perfect forward secrecy, congestioncontrol, directory servers, integrity checking, variable exit policies,and a practical design for rendezvous points. Tor works on the real-worldInternet, requires no special privileges or kernel modifications, requireslittle synchronization or coordination between nodes, and provides areasonable trade-off between anonymity, usability, and efficiency. Weclose with a list of open problems in anonymous communication systems.\end{abstract}%\begin{center}%\textbf{Keywords:} anonymity, peer-to-peer, remailer, nymserver, reply block%\end{center}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\Section{Overview}\label{sec:intro}Onion Routing is a distributed overlay network designed to anonymizelow-latency TCP-based applications such as web browsing, secure shell,and instant messaging. Clients choose a path through the network andbuild a \emph{virtual circuit}, in which each node (or ``onion router'') in the path knows itspredecessor and successor, but no other nodes in the circuit. Traffic flowing down the circuitis sent in fixed-size \emph{cells}, which are unwrapped by a symmetric keyat each node (like the layers of an onion) and relayed downstream. Theoriginal Onion Routing project published several design and analysispapers\cite{or-ih96,or-jsac98,or-discex00,or-pet00}. Whilea wide area Onion Routing network was deployed for some weeks,the only long-running and publicly accessibleimplementation of the original design was a fragile proof-of-conceptthat ran on a single machine. Even this simple deployment processed tensof thousands of connections daily from thousands of users worldwide. Butmany critical design and deployment issues were never resolved, and thedesign has not been updated in several years. Here we describe Tor, aprotocol for asynchronous, loosely federated onion routers that providesthe following improvements over the old Onion Routing design:\begin{tightlist}\item \textbf{Perfect forward secrecy:} The original Onion Routingdesign was vulnerable to a single hostile node recording traffic and latercompromising successive nodes in the circuit and forcing them todecrypt it. Rather than using a single onion to lay each circuit,Tor now uses an incremental or \emph{telescoping}path-building design, where the initiator negotiates session keys witheach successive hop in the circuit.  Once these keys are deleted,subsequently compromised nodes cannot decrypt old traffic.As a side benefit, onion replay detection is no longernecessary, and the process of building circuits is more reliable, sincethe initiator knows when a hop fails and can then try extending to a new node.\item \textbf{Separation of protocol cleaning from anonymity:}The original Onion Routing design required a separate ``applicationproxy'' for eachsupported application protocol---mostof which were never written, so many applications were never supported.Tor uses the standard and near-ubiquitous SOCKS\cite{socks4} proxy interface, allowing us to support most TCP-basedprograms without modification.  This design change allows Tor touse the filtering features of privacy-enhancingapplication-level proxies such as Privoxy \cite{privoxy} without having toincorporate those features itself.\item \textbf{Many TCP streams can share one circuit:} The originalOnion Routing design built a separate circuit for each application-levelrequest.This hurt performance by requiring multiple public key operations forevery request, and also presenteda threat to anonymity from building so many different circuits; seeSection~\ref{sec:maintaining-anonymity}.Tor multiplexes multiple TCP streams along each virtualcircuit, to improve efficiency and anonymity.\item \textbf{Leaky-pipe circuit topology:} Through in-band signallingwithin the circuit, Tor initiators can direct traffic to nodes partwaydown the circuit. This novel approach allows both for long-rangepadding to frustrate traffic shape and volume attacks at the initiator\cite{defensive-dropping}, and, because circuits are used by more than oneapplication, allows traffic to exit the circuit from the middle---thusfrustrating traffic shape and volume attacks based on observing the endof the circuit.\item \textbf{No mixing, padding, or traffic shaping:} The originalOnion Routing design called for batching and reordering the cells arrivingfrom each circuit. It also included padding between onion routers and,in a later design, between onionproxies (that is, users) and onion routers \cite{or-ih96,or-jsac98}.The trade-off between padding protection and cost was discussed, but nogeneral padding scheme was suggested. In\cite{or-pet00} it was theorized \emph{traffic shaping} would generallybe used, but details were not provided.Recent research \cite{econymics} and deploymentexperience \cite{freedom21-security} suggest that this level of resourceuse is not practical or economical; and even full link padding is stillvulnerable \cite{defensive-dropping}. Thus, until we have a proven andconvenient design for traffic shaping or low-latency mixing thatwill improve anonymity against a realistic adversary, we leave thesestrategies out.\item \textbf{Congestion control:} Earlier anonymity designs do notaddress traffic bottlenecks. Unfortunately, typical approaches to loadbalancing and flow control in overlay networks involve inter-node controlcommunication and global views of traffic. Tor's decentralized congestioncontrol uses end-to-end acks to maintain reasonable anonymity whileallowing nodesat the edges of the network to detect congestion or flooding attacksand send less data until the congestion subsides.\item \textbf{Directory servers:} The original Onion Routing designplanned to flood link-state information through the network---anapproach that can be unreliable andopen to partitioning attacks or outright deception. Tor takes a simplifiedview toward distributing link-state information. Certain more trustedonion routers also act as directory servers: they provide signed\emph{directories} that describe known routers and their availability.Users periodically download these directories via HTTP.\item \textbf{End-to-end integrity checking:} The original Onion Routingdesign did no integrity checking on data. Any onion router on the circuitcould change the contents of data cells as they passed by---for example, toalter aconnection request on the fly so it would connect to a differentwebserver, or to`tag' encrypted traffic and look for corresponding corrupted trafficat the networkedges \cite{minion-design}.  Tor hampers these attacks by checking dataintegrity before it leaves the network.\item \textbf{Improved robustness to failed nodes:} A failed node inthe old designmeant that circuit-building failed, but thanks to Tor's step-by-stepcircuit building, users can notice failednodes while building circuits and route around them.  Additionally,liveness information from directories allows users to avoidunreliable nodes in the first place.\item \textbf{Variable exit policies:} Tor provides a consistentmechanism foreach node to specify and advertise a policy describing the hosts andports to which it will connect. These exit policiesare critical in a volunteer-based distributed infrastructure, becauseeach operator is comfortable with allowing different types of trafficto exit the Tor network from his node.\item \textbf{Implementable in user-space:} Unlike other anonymity systemslike Freedom \cite{freedom2-arch}, Tor only attempts to anonymize TCPstreams. Thus it does not require patches to an operating system's networkstack (or built-in support) to operate.  Although this approach is lessflexible, it has proven valuable to Tor's portability and deployability.\item \textbf{Rendezvous points and location-protected servers:}Tor provides an integrated mechanism for responder anonymity vialocation-protected servers.  Previous Onion Routing designs includedlong-lived ``reply onions'' that could be used to build virtual circuitsto a hidden server, but these reply onions did not provide forwardsecurity, and would become useless if any node inthe path went down or rotated its keys.In Tor, clients negotiate {\itrendezvous points} to connect with hidden servers; reply onions are nolonger required.\end{tightlist}We have implemented most of the above features. Our source code isavailable under a free license, and we believe it to beunencumbered by patents. We haverecently begun deploying a widespread alpha network to testthe design in practice, to get more experience with usability and users,and to provide a research platform for experimenting with new ideas.We review previous work in Section~\ref{sec:related-work}, describeour goals and assumptions in Section~\ref{sec:assumptions},and then address the above list of improvements inSections~\ref{sec:design}-\ref{sec:rendezvous}. Wesummarize in Section~\ref{sec:analysis}how our design stands up to known attacks, and conclude with a list ofopen problems in Section~\ref{sec:maintaining-anonymity} and futurework for the Onion Routing project in Section~\ref{sec:conclusion}.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\Section{Related work}\label{sec:related-work}Modern anonymity systems date to Chaum's Mix-Net design\cite{chaum-mix}. Chaumproposed hiding the correspondence between sender and recipient bywrapping messages in layers of public key cryptography, and relaying themthrough a path composed of ``Mixes.''  These mixes in turn decrypt, delay,and re-order messages, before relaying them along the sender-selectedpath towards their destinations.Subsequent relay-based anonymity designs have diverged in twoprincipal directions.  Some have attempted to maximize anonymity atthe cost of introducing comparatively large and variable latencies,including Babel \cite{babel}, Mixmaster \cite{mixmaster-spec}, andMixminion \cite{minion-design}.  Because of thisdecision, these \emph{high-latency} networks are well-suited for anonymousemail, but introduce too much lag for interactive tasks such as web browsing,internet chat, or SSH connections.Tor belongs to the second category: \emph{low-latency} designs thatattempt to anonymize interactive network traffic. These systems handlea variety of bidirectional protocols. They also provide more convenientmail delivery than the high-latency fire-and-forget anonymous emailnetworks, because the remote mail server provides explicit deliveryconfirmation. But because these designs typicallyinvolve many packets that must be delivered quickly, it isdifficult for them to prevent an attacker who can eavesdrop both ends of thecommunication from correlating the timing and volumeof traffic entering the anonymity network with traffic leaving it.  Theseprotocols are also vulnerable against active attacks in which anadversary introduces timing patterns into traffic entering the network, and looksfor correlated patterns among exiting traffic.Although some work has been done to frustratethese attacks,\footnote{  The most common approach is to pad and limit communication to a constant  rate, or to limit  the variation in traffic shape.  Doing so can have prohibitive bandwidth  costs and/or performance limitations.} most designs protect primarily against traffic analysis rather than trafficconfirmation \cite{or-jsac98}---that is, they assume that the attacker isattempting to learn who is talking to whom, not to confirm a prior suspicionabout who is talking to whom.The simplest low-latency designs are single-hop proxies such as theAnonymizer \cite{anonymizer}, wherein a single trusted server strips thedata's origin before relaying it.  These designs are easy toanalyze, but require end-users to trust the anonymizing proxy. Concentrating the traffic to a single point increases the anonymity set(the set of people a given user is hiding among), but it can make trafficanalysis easier: an adversary need only eavesdrop on the proxy to observethe entire system.More complex are distributed-trust, circuit-based anonymizing systems.In these designs, a user establishes one or more medium-term bidirectionalend-to-end circuits, and tunnels TCP streams in fixed-size cells.Establishing circuits is computationally expensive and typicallyrequires public-keycryptography, whereas relaying cells is comparatively inexpensive andtypically requires only symmetric encryption.Because a circuit crosses several servers, and each server only knowsthe adjacent servers in the circuit, no single server can link auser to her communication partners.The Java Anon Proxy (also known as JAP or Web MIXes) uses fixed sharedroutes known as \emph{cascades}.  As with a single-hop proxy, thisapproach aggregates users into larger anonymity sets, but again anattacker only needs to observe both ends of the cascade to bridge allthe system's traffic.  The Java Anon Proxy's design providesprotection by padding between end users and the head of the cascade\cite{web-mix}. However, it is not demonstrated whether the currentimplementation's padding policy improves anonymity.PipeNet \cite{back01, pipenet}, another low-latency design proposed atabout the same time as the original Onion Routing design, providedstronger anonymity at the cost of allowing a single user to shutdown the network simply by not sending.  Low-latency anonymouscommunication has also been designed for other environments such asISDN \cite{isdn-mixes}.In P2P designs like Tarzan \cite{tarzan:ccs02} and MorphMix\cite{morphmix:fc04}, all participants both generate traffic and relaytraffic for others. These systems aim to prevent a peeror observer from knowing whether a given peer originated a requestor just relayed it from another peer. While Tarzan and MorphMix uselayered encryption as above, Crowds \cite{crowds-tissec} simply assumesan adversary who cannot observe the initiator: it uses no public-keyencryption, so nodes on a circuit can read that circuit's traffic.Hordes \cite{hordes-jcs} is based on Crowds but also uses multicastresponses to hide the initiator. Herbivore \cite{herbivore} and P5\cite{p5} go even further, requiring broadcast. They make anonymityand efficiency trade-offs to make broadcast more practical.These systems are designed primarily for communication between peers,although Herbivore users can make external connections byrequesting a peer to serve as a proxy.Systems like Freedom and the original Onion Routing build the circuitall at once, using a layered ``onion'' of public-key encrypted messages,each layer of which provides a set of session keys and the address of thenext server in the circuit. Tor as described herein, Tarzan, MorphMix,Cebolla \cite{cebolla}, and AnonNet \cite{anonnet} build the circuitin stages, extending it one hop at a time.Section~\ref{subsubsec:constructing-a-circuit} describes how thisapproach makes perfect forward secrecy feasible.Circuit-based anonymity designs must choose which protocol layerto anonymize. They may choose to intercept IP packets directly, andrelay them whole (stripping the source address) along the circuit\cite{freedom2-arch,tarzan:ccs02}.  Alternatively, likeTor, they may accept TCP streams and relay the data in those streamsalong the circuit, ignoring the breakdown of that data into TCP frames\cite{morphmix:fc04,anonnet}. Finally, they may accept application-levelprotocols (such as HTTP) and relay the application requests themselvesalong the circuit.  Making this protocol-layer decision requires a compromise between flexibilityand anonymity.  For example, a system that understands HTTP can stripidentifying information from those requests, can take advantage of cachingto limit the number of requests that leave the network, and can batchor encode those requests in order to minimize the number of connections.On the other hand, an IP-level anonymizer can handle nearly any protocol,even ones unforeseen by their designers (though these systems requirekernel-level modifications to some operating systems, and so are morecomplex and less portable). TCP-level anonymity networks like Tor presenta middle approach: they are fairly application neutral (so long as theapplication supports, or can be tunneled across, TCP), but by treatingapplication connections as data streams rather than raw TCP packets,they avoid the well-known inefficiencies of tunneling TCP over TCP\cite{tcp-over-tcp-is-bad}.Distributed-trust anonymizing systems need to prevent attackers fromadding too many servers and thus compromising too many user paths.Tor relies on a small set of well-known directory servers, run byindependent parties, to make decisions about which nodes canjoin. Tarzan and MorphMix allow unknown users to run servers, and usea limited resource (like IP addresses) to prevent an attacker fromcontrolling too much of the network.  Crowds suggests requiringwritten, notarized requests from potential crowd members.Anonymous communication is essential for censorship-resistantsystems like Eternity \cite{eternity}, Free~Haven \cite{freehaven-berk},Publius \cite{publius}, and Tangler \cite{tangler}. Tor's rendezvouspoints enable connections between mutually anonymous entities; theyare a building block for location-hidden servers, which are needed byEternity and Free~Haven.% didn't include rewebbers. No clear place to put them, so I'll leave% them out for now. -RD\Section{Design goals and assumptions}\label{sec:assumptions}\SubSection{Goals}Like other low-latency anonymity designs, Tor seeks to frustrateattackers from linking communication partners, or from linkingmultiple communications to or from a single user.  Within thismain goal, however, several design considerations have directedTor's evolution.\textbf{Deployability:} The design must be one that can be implemented,deployed, and used in the real world.  This requirement precludes designsthat are expensive to run (for example, by requiring more bandwidththan volunteers are willing to provide); designs that place a heavyliability burden on operators (for example, by allowing attackers toimplicate onion routers in illegal activities); and designs that aredifficult or expensive to implement (for example, by requiring kernelpatches, or separate proxies for every protocol).  This requirement alsoprecludes systems in which non-anonymous parties (such as websites)must run our software.  (We do not meet this goal for the currentrendezvous design,however; see Section~\ref{sec:rendezvous}.)\textbf{Usability:} A hard-to-use system has fewer users---and becauseanonymity systems hide users among users, a system with fewer usersprovides less anonymity.  Usability is thus not only a convenience for Tor:it is a security requirement \cite{econymics,back01}. Tor shouldtherefore notrequire modifying applications; should not introduce prohibitive delays;and should require the user to make as few configuration decisionsas possible.\textbf{Flexibility:} The protocol must be flexible and well-specified,so that it can serve as a test-bed for future research in low-latencyanonymity systems.  Many of the open problems in low-latency anonymitynetworks, such as generating dummy traffic or preventing Sybil attacks\cite{sybil}, may be solvable independently from the issues solved byTor. Hopefully future systems will not need to reinvent Tor's design.(But note that while a flexible design benefits researchers,there is a danger that differing choices of extensions will make usersdistinguishable. Experiments should be run on a separate network.)\textbf{Simple design:} The protocol's design and securityparameters must be well-understood. Additional features impose implementationand complexity costs; adding unproven techniques to the design threatensdeployability, readability, and ease of security analysis. Tor aims todeploy a simple and stable system that integrates the best well-understoodapproaches to protecting anonymity.\SubSection{Non-goals}\label{subsec:non-goals}In favoring simple, deployable designs, we have explicitly deferredseveral possible goals, either because they are solved elsewhere, or becausetheir solution is an open research problem.\textbf{Not Peer-to-peer:} Tarzan and MorphMix aim to scale to completelydecentralized peer-to-peer environments with thousands of short-livedservers, many of which may be controlled by an adversary.  This approachis appealing, but still has many open problems\cite{tarzan:ccs02,morphmix:fc04}.\textbf{Not secure against end-to-end attacks:} Tor does not claimto provide a definitive solution to end-to-end timing or intersectionattacks. Some approaches, such as running an onion router, may help;see Section~\ref{sec:analysis} for more discussion.\textbf{No protocol normalization:} Tor does not provide \emph{protocolnormalization} like Privoxy or the Anonymizer. For complex and variableprotocols such as HTTP, Tor must be layered with a filtering proxy suchas Privoxy to hide differences between clients, and expunge protocolfeatures that leak identity. Similarly, Tor does not currently integratetunneling for non-stream-based protocols like UDP; this too must beprovided by an external service.% Actually, tunneling udp over tcp is probably horrible for some apps.% Should this get its own non-goal bulletpoint? The motivation for% non-goal-ness would be burden on clients / portability. -RD% No, leave it as is. -RD\textbf{Not steganographic:} Tor does not try to conceal which users aresending or receiving communications; it only tries to conceal with whomthey communicate.\SubSection{Threat Model}\label{subsec:threat-model}A global passive adversary is the most commonly assumed threat whenanalyzing theoretical anonymity designs. But like all practicallow-latency systems, Tor does not protect against such a strongadversary. Instead, we assume an adversary who can observe some fractionof network traffic; who can generate, modify, delete, or delay trafficon the network; who can operate onion routers of its own; and who cancompromise some fraction of the onion routers on the network.In low-latency anonymity systems that use layered encryption, theadversary's typical goal is to observe both the initiator and thereceiver. Passive attackers can confirm a suspicion that Alice istalking to Bob if the timing and volume patterns of the traffic on theconnection are distinct enough; active attackers can induce timingsignatures on the traffic to \emph{force} distinct patterns. Tor providessome defenses against these \emph{traffic confirmation} attacks, forexample by encouraging users to run their own onion routers, but it doesnot provide complete protection. Rather, we aim to prevent \emph{trafficanalysis} attacks, where the adversary uses traffic patterns to learnwhich points in the network he should attack.Our adversary might try to link an initiator Alice with any of hercommunication partners, or he might try to build a profile of Alice'sbehavior. He might mount passive attacks by observing the edges of thenetwork and correlating traffic entering and leaving the network---eitherby relationships in packet timing; relationships in the volumeof data sent; or relationships in any externally visible user-selectedoptions. The adversary can also mount active attacks by compromisingrouters or keys; by replaying traffic; by selectively denying serviceto trustworthy routers to encourage users to send their traffic throughcompromised routers, or denying service to users to see if the trafficelsewhere in thenetwork stops; or by introducing patterns into traffic that can later bedetected. The adversary might attack the directory servers to give usersdiffering views of network state. Additionally, he can try to decreasethe network's reliability by attacking nodes or by performing antisocialactivities from reliable servers and trying to get them taken down;making the network unreliable flushes users to other less anonymoussystems, where they may be easier to attack.We consider each of these attacks in more detail below, and summarizein Section~\ref{sec:attacks} how well the Tor design defends againsteach of them.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\Section{The Tor Design}\label{sec:design}The Tor network is an overlay network; each node is called an onion router(OR). Onion routers run as normal user-level processes without needingany specialprivileges.  Currently, each OR maintains a long-term TLS \cite{TLS}connection to every otherOR.  (We examine some ways to relax this clique-topology assumption inSection~\ref{subsec:restricted-routes}.) A subset of the ORs also act asdirectory servers, tracking which routers are in the network;see Section~\ref{subsec:dirservers} for directory server details.Each userruns local software called an onion proxy (OP) to fetch directories,establish paths (called \emph{virtual circuits}) across the network,and handle connections from user applications.  These onion proxies acceptTCP streams and multiplex them across the virtual circuit. The onionrouter on the other side % I don't mean other side, I mean wherever it is on the circuit. But% don't want to introduce complexity this early? Hm. -RDof the circuit connects to the destinations ofthe TCP streams and relays data.Each onion router uses three public keys: a long-term identity key, ashort-term onion key, and a short-term link key.  The identity(signing) key is used to sign TLS certificates, to sign its routerdescriptor (a summary of its keys, address, bandwidth, exit policy,etc), and to sign directories if it is a directory server. Changingthe identity key of a router is considered equivalent to creating anew router. The onion (decryption) key is used for decrypting requestsfrom users to set up a circuit and negotiate ephemeral keys. Finally,link keys are used by the TLS protocol when communicating betweenonion routers.  Both short-term keys are rotated periodically andindependantly, to limit the impact of compromised keys.Section~\ref{subsec:cells} discusses the structure of the fixed-size\emph{cells} that are the unit of communication in Tor. We describein Section~\ref{subsec:circuits} how virtual circuits arebuilt, extended, truncated, and destroyed. Section~\ref{subsec:tcp}describes how TCP streams are routed through the network, and finallySection~\ref{subsec:congestion} talks about congestion control andfairness issues.\SubSection{Cells}\label{subsec:cells}ORs communicate with one another, and with users' OPs, via TLSconnections with ephemeral keys.  This prevents an attacker fromimpersonating an OR, conceals the contents of the connection withperfect forward secrecy, and prevents an attacker from modifying dataon the wire.Traffic passes along these connections in fixed-size cells.  Each cellis 256 bytes (but see Section~\ref{sec:conclusion} for a discussion ofallowing large cells and small cells on the same network), andconsists of a header and a payload. The header includes a circuitidentifier (circID) that specifies which circuit the cell refers to(many circuits are be multiplexed over the single TLS connection), anda command to describe what to do with the cell's payload.  (Circuitidentifiers are connection-specific; a single circuit has a differentcircID on each connection it uses.)% XXX Say that each OR can have many circuits with same circID, so% XXX long as they're on different connections, and that ORs know % XXX which circIDs/connection pairs are linked by a circuit.Based on their command, cells are either \emph{control} cells, which arealways interpreted by the node that receives them, or \emph{relay} cells,which carry end-to-end stream data.   The controls cells commands are:\emph{padding} (currently used for keepalive, but also usable for linkpadding); \emph{create} or \emph{created} (used to set up a new circuit);and \emph{destroy} (to tear down a circuit).Relay cells have an additional header (the relay header) after thecell header, containing the stream identifier (many streams canbe multiplexed over a circuit); an end-to-end checksum for integritychecking; the length of the relay payload; and a relay command.  % XXX Mention _here_ that relay headers are {en|de}crypted as they% XXX progress along the circuit.Therelay commands are: \emph{relaydata} (for data flowing down the stream), \emph{relay begin} (to open astream), \emph{relay end} (to close a stream cleanly), \emph{relayteardown} (to close a broken stream), \emph{relay connected}(to notify the OP that a relay begin has succeeded), \emph{relayextend} and \emph{relay extended} (to extend the circuit by a hop,and to acknowledge), \emph{relay truncate} and \emph{relay truncated}(to tear down only part of the circuit, and to acknowledge), \emph{relaysendme} (used for congestion control), and \emph{relay drop} (used toimplement long-range dummies).We describe each of these cell types and commands in more detail below.\SubSection{Circuits and streams}\label{subsec:circuits}% I think when we say ``the user,'' maybe we should say ``the user's OP.''The original Onion Routing design built one circuit for eachTCP stream.  Because building a circuit can take several tenths of asecond (due to public-key cryptography delays and network latency),this design imposed high costs on applications like web browsing thatopen many TCP streams.In Tor, each circuit can be shared by many TCP streams.  To avoiddelays, users construct circuits preemptively.  To limit linkabilityamong their streams, users' OPs build a new circuitperiodically if the previous one has been used,and expire old used circuits that no longer have any open streams.  OPs consider making a new circuit once a minute: thuseven heavy users spend a negligible amount of time and CPU inbuilding circuits, but only a limited number of requests can be linkedto each other through a given exit node. Also, because circuits are builtin the background, OPs can recover from failed circuit creationwithout delaying streams and thereby harming user experience.\subsubsection{Constructing a circuit}\label{subsubsec:constructing-a-circuit}%XXXX Discuss what happens with circIDs here.Users construct a circuit incrementally, negotiating a symmetric key witheach OR on the circuit, one hop at a time. To begin creating a newcircuit, the user(call her Alice) sends a \emph{create} cell to the first node in herchosen path. This cell's payload contains the first half of theDiffie-Hellman handshake ($g^x$), encrypted to the onion key of the OR (callhim Bob). Bob responds with a \emph{created} cell containing the secondhalf of the DH handshake, along with a hash of the negotiated key$K=g^{xy}$.Once the circuit has been established, Alice and Bob can send oneanother relay cells encrypted with the negotiatedkey.\footnote{Actually, the negotiated key is used to derive two  symmetric keys: one for each direction.}  More detail is given inthe next section.To extend the circuit further, Alice sends a \emph{relay extend} cellto Bob, specifying the address of the next OR (call her Carol), andan encrypted $g^{x_2}$ for her.  Bob copies the half-handshake into a\emph{create} cell, and passes it to Carol to extend the circuit.When Carol responds with a \emph{created} cell, Bob wraps the payloadinto a \emph{relay extended} cell and passes it back to Alice.  Nowthe circuit is extended to Carol, and Alice and Carol share a common key$K_2 = g^{x_2 y_2}$.In order to extend the circuit to a third node or beyond, Aliceproceeds as above, always telling the last node in the circuit toextend one hop further.% XXX Briefly mention path selection.This circuit-level handshake protocol achieves unilateral entityauthentication (Alice knows she's handshaking with Bob/Carol, butBob/Carol doesn't care who is opening the circuit---Alice has no keyand is trying to remain anonymous) and unilateral key authentication(Alice and Bob/Carol agree on a key, and Alice knows Bob/Carol is theonly other person who should know it). It also achieves forwardsecrecy and key freshness.  Formally, the protocol is as follows(Where $E_{PK_{Bob}}(\cdot)$ is encryption with Bob's public key,$H$ is a secure hash function, and $|$ is concatenation.)\begin{equation}\begin{aligned}\mathrm{Alice} \rightarrow \mathrm{Bob}&: E_{PK_{Bob}}(g^x) \\\mathrm{Bob} \rightarrow \mathrm{Alice}&: g^y, H(K | \mathrm{``handshake"}) \\\end{aligned}\end{equation}In the second step, Bob proves that it was he who who received $g^x$,and who came up with $y$. We use PK encryption in the first step(rather than, say, using the first two steps of STS, which has asignature in the second step) because a single cell is too small tohold both a public key and a signature. Preliminary analysis with theNRL protocol analyzer \cite{meadows96} shows the above protocol to besecure (including providing PFS) under the traditional Dolev-Yaomodel.\subsubsection{Relay cells}Once Alice has established the circuit (so she shares keys with eachOR on the circuit), she can send relay cells.% XXX Describe _here_ what happens with relay cells that are not % XXX targeted at a given node; how they're decrypted; how they're% XXX encrypted.  The easiest expository order should probably be: What ORs% XXX Do With Unrecognized Streams; What Alice Does To Build Relay% XXX Cells; What ORs Do With Streams They Recognize.Recall that every relay header has a stream ID in the relay headerthat indicates towhich stream the cell belongs.This stream ID allows a relay cell to be addressed to any of the ORson the circuit. Toconstruct a relay cell addressed to a given OR, Alice iterativelyencrypts the cell payload (that is, the relay header and payload)with the symmetric key of each hop up to that OR. Then, at each hopdown the circuit, the OR decrypts the cell payload and checks whetherit recognizes the stream ID.  A stream ID is recognized either if itis an already open stream at that OR, or if it is equal to zero. Thezero stream ID is treated specially, and is used for control messages,e.g. starting a new stream. If the stream ID is unrecognized, the ORpasses the relay cell downstream. This \emph{leaky pipe} circuit topologyallows Alice's streams to exit at different ORs on a single circuit.  Alice may choose different exit points because of their exit policies,or to keep the ORs from knowing that two streamsoriginate at the same person.To tear down a whole circuit, Alice sends a \emph{destroy} controlcell. Each ORin the circuit receives the \emph{destroy} cell, closes all open streams onthat circuit, and passes a new \emph{destroy} cell forward. But since circuitscan be built incrementally, they can also be torn down incrementally:Alice can instead send a relay truncate cell to a node along the circuit. Thatnode will send a \emph{destroy} cell forward, and reply with an acknowledgment(a \emph{relay truncated} cell).  Alice might truncate her circuit soshe can extend itto different nodes without signaling to the first few nodes (or somebodyobserving them) that she is changing her circuit. That is, nodes in themiddle of a truncated are not even aware when the circuit istruncated, because they see only the encrypted relay cells.Similarly, if a node on the circuit goes down,the adjacent node can send a \emph{relay truncated} cell back toAlice.  Thus the``break a node and see which circuits go down'' attack is weakened.\SubSection{Opening and closing streams}\label{subsec:tcp}When Alice's application wants to open a TCP connection to a givenaddress and port, it asks the OP (via SOCKS) to make the connection. TheOP chooses the newest open circuit (or creates one if none is available),chooses a suitable OR on that circuit to be the exit node (usually thelast node, but maybe others due to exit policy conflicts; seeSection~\ref{sec:exit-policies}), chooses a new random stream ID forthis stream,and delivers a relay begin cell to that exit node. It uses a stream IDof zero for the begin cell (so the OR will recognize it), and the relaypayload lists the new stream ID and the destination address and port.Once the exit node completes the connection to the remote host, itresponds with a relay connected cell through the circuit. Upon receipt,the OP notifies the application that it can begin talking.There's a catch to using SOCKS, though -- some applications hand thealphanumeric address to the proxy, while others resolve it into an IPaddress first and then hand the IP to the proxy. When the applicationdoes the DNS resolution first, Alice broadcasts her destination. Commonapplications like Mozilla and ssh have this flaw.In the case of Mozilla, we're fine: the filtering web proxy called Privoxydoes the SOCKS call safely, and Mozilla talks to Privoxy safely. But aportable general solution, such as for ssh, is an open problem. We canmodify the local nameserver, but this approach is invasive, brittle, andnot portable. We can encourage the resolver library to do resolutionvia TCP rather than UDP, but this approach is hard to do right, and alsohas portability problems. We can provide a tool similar to \emph{dig} thatcan do a private lookup through the Tor network. Our current answer is toencourage the use of privacy-aware proxies like Privoxy wherever possible,Ending a Tor stream is analogous to ending a TCP stream: it uses atwo-step handshake for normal operation, or a one-step handshake forerrors. If one side of the stream closes abnormally, that node simplysends a relay teardown cell, and tears down the stream. If one sideof the stream closes the connection normally, that node sends a relayend cell down the circuit. When the other side has sent back its ownrelay end, the stream can be torn down. This two-step handshake allowsfor TCP-based applications that, for example, close a socket for writingbut are still willing to read. Remember that all relay cells use layeredencryption, so only the destination OR knows what type of relay cellit is.\SubSection{Integrity checking on streams}Because the old Onion Routing design used a stream cipher, traffic wasvulnerable to a malleability attack: even though the attacker could notdecrypt cells, he could make changes to an encryptedcell to create corresponding changes to the data leaving the network.(Even an external adversary could do this, despite link encryption!)This weakness allowed an adversary to change a padding cell to a destroycell; change the destination address in a relay begin cell to theadversary's webserver; or change a user on an ftp connection fromtyping ``dir'' to typing ``delete~*''. Any node or external adversaryalong the circuit could introduce such corruption in a stream.Tor prevents external adversaries from mounting this attack simply byusing TLS. Addressing the insider malleability attack, however, ismore complex.We could do integrity checking of the relay cells at each hop, eitherby including hashes or by using a cipher mode like EAX \cite{eax},but we don't want the added message-expansion overhead at each hop, andwe don't want to leak the path length or pad to some max path length.Because we've already accepted that our design is vulnerable to end-to-endtiming attacks, we can perform integrity checking only at the edges ofthe circuit without introducing any new anonymity attacks. When Alicenegotiates a keywith each hop, they both start a SHA-1 with some derivative of that key,% Not just the exit hop, but each hop: any hop can be an exit node. -RDthus starting out with randomness that only the two of them know. Fromthen on they each incrementally add to the SHA-1 all the data bytesentering or exiting from the circuit, and each such relay cell includesthe first 4 bytes of the current value of the hash.The attacker must be able to guess all previous bytes between Aliceand Bob on that circuit (including the pseudorandomness from the keynegotiation), plus the bytes in the current cell, to remove or modify thecell. Attacks on SHA-1 where the adversary can incrementally add to ahash to produce a new valid hash don't work,because all hashes are end-to-end encrypted across the circuit.The computational overhead isn't so bad, compared to doing an AEScrypt at each hop in the circuit. We use only four bytes per cell tominimize overhead; the chance that an adversary will correctly guess avalid hash, plus the payload the current cell, is acceptly low, giventhat Alice or Bob tear down the circuit if they receive a bad hash.\SubSection{Rate limiting and fairness}Volunteers are generally more willing to run services that can limittheir bandwidth usage.  To accomodate them, Tor servers use a tokenbucket approach to limit the number of bytes they% XXX cite token bucket?receive. Tokens are added to the bucket each second (when the bucket isfull, new tokens are discarded.) Each token represents permission toreceive one byte from the network---to receive a byte, the connectionmust remove a token from the bucket. Thus if the bucket is empty, thatconnection must wait until more tokens arrive. The number of tokens weadd enforces a long-term average rate of incoming bytes, while stillpermitting short-term bursts above the allowed bandwidth. Current bucketsizes are set to ten seconds worth of traffic.Further, we want to avoid starving any Tor streams. Entire circuitscould starve if we read greedily from connections and one connectionuses all the remaining bandwidth. We solve this by dividing the numberof tokens in the bucket by the number of connections that want to read,and reading at most that number of bytes from each connection. We iteratethis procedure until the number of tokens in the bucket is under somethreshold (eg 10KB), at which point we greedily read from connections.Because the Tor protocol generates roughly the same number of outgoingbytes as incoming bytes, it is sufficient in practice to rate-limitincoming bytes.% Is it?  Fun attack: I send you lots of 1-byte-at-a-time TCP frames.% In response, you send lots of 256 byte cells.  Can I use this to % make you exceed your outgoing bandwidth limit by a factor of 256? -NM% Can we resolve this by, when reading from edge connections, rounding up% the bytes read (wrt buckets) to the nearest multiple of 256? -RDFurther, inspired by Rennhard et al's design in \cite{anonnet}, acircuit's edges heuristically distinguish interactive streams from bulkstreams by comparing the frequency with which they supply cells.  We canprovide good latency for interactive streams by giving them preferentialservice, while still getting good overall throughput to the bulkstreams. Such preferential treatment presents a possible end-to-endattack, but an adversary who can observe bothends of the stream can already learn this information through timingattacks.\SubSection{Congestion control}\label{subsec:congestion}Even with bandwidth rate limiting, we still need to worry aboutcongestion, either accidental or intentional. If enough users choose thesame OR-to-OR connection for their circuits, that connection can becomesaturated. For example, an adversary could make a large HTTP PUT requestthrough the onion routing network to a webserver he runs, and thenrefuse to read any of the bytes at the webserver end of thecircuit. Without some congestion control mechanism, these bottleneckscan propagate back through the entire network.  We describe ourresponses below.\subsubsection{Circuit-level}To control a circuit's bandwidth usage, each OR keeps track of twowindows. The \emph{package window} tracks how many relay data cells the OR isallowed to package (from outside streams) for transmission back to the OP,and the \emph{deliver window} tracks how many relay data cells it is willingto deliver to streams outside the network. Each window is initialized(say, to 1000 data cells). When a data cell is packaged or delivered,the appropriate window is decremented. When an OR has received enoughdata cells (currently 100), it sends a relay sendme cell towards the OP,with stream ID zero. When an OR receives a relay sendme cell with streamID zero, it increments its packaging window. Either of these cellsincrements the corresponding window by 100. If the packaging windowreaches 0, the OR stops reading from TCP connections for all streamson the corresponding circuit, and sends no more relay data cells untilreceiving a relay sendme cell.The OP behaves identically, except that it must track a packaging windowand a delivery window for every OR in the circuit. If a packaging windowreaches 0, it stops reading from streams destined for that OR.\subsubsection{Stream-level}The stream-level congestion control mechanism is similar to thecircuit-level mechanism above. ORs and OPs use relay sendme cellsto implement end-to-end flow control for individual streams acrosscircuits. Each stream begins with a package window (e.g. 500 cells),and increments the window by a fixed value (50) upon receiving a relaysendme cell. Rather than always returning a relay sendme cell as soonas enough cells have arrived, the stream-level congestion control alsohas to check whether data has been successfully flushed onto the TCPstream; it sends a relay sendme only when the number of bytes pendingto be flushed is under some threshold (currently 10 cells worth).Currently, non-data relay cells do not affect the windows. Thus weavoid potential deadlock issues, e.g. because a stream can't send arelay sendme cell because its packaging window is empty.% XXX Bad heading\subsubsection{Needs more research}We don't need to reimplement full TCP windows (with sequence numbers,the ability to drop cells when we're full and retransmit later, etc),because the TCP streams already guarantee in-order delivery of eachcell. But we need to investigate further the effects of the currentparameters on throughput and latency, while also keeping privacy in mind;see Section~\ref{sec:maintaining-anonymity} for more discussion.\Section{Other design decisions}\SubSection{Resource management and denial-of-service}\label{subsec:dos}Providing Tor as a public service provides many opportunities for anattacker to mount denial-of-service attacks against the network.  Whileflow control and rate limiting (discussed inSection~\ref{subsec:congestion}) prevent users from consuming morebandwidth than routers are willing to provide, opportunities remain forusers toconsume more network resources than their fair share, or to render thenetwork unusable for other users.First of all, there are several CPU-consuming denial-of-serviceattacks wherein an attacker can force an OR to perform expensivecryptographic operations.  For example, an attacker who sends a\emph{create} cell full of junk bytes can force an OR to perform an RSAdecrypt.  Similarly, an attacker canfake the start of a TLS handshake, forcing the OR to carry out its(comparatively expensive) half of the handshake at no real computationalcost to the attacker.Several approaches exist to address these attacks. First, ORs mayrequire clients to solve a puzzle \cite{puzzles-tls} while beginning newTLS handshakes or accepting \emph{create} cells.  So long as thesetokens are easy to verify and computationally expensive to produce, thisapproach limits the attack multiplier.  Additionally, ORs may limitthe rate at which they accept create cells and TLS connections, so thatthe computational work of processing them does not drown out the (comparativelyinexpensive) work of symmetric cryptography needed to keep cellsflowing.  This rate limiting could, however, allow an attackerto slow down other users when they build new circuits.% What about link-to-link rate limiting?Attackers also have an opportunity to attack the Tor network by mountingattacks on its hosts and network links. Disrupting a single circuit orlink breaks all currently open streams passing along that part of thecircuit. Indeed, this same loss of service occurs when a router crashesor its operator restarts it. The current Tor design treats such attacksas intermittent network failures, and depends on users and applicationsto respond or recover as appropriate. A future design could use anend-to-end TCP-like acknowledgment protocol, so that no streams arelost unless the entry or exit point itself is disrupted. This solutionwould require more buffering at the network edges, however, and theperformance and anonymity implications from this extra complexity stillrequire investigation.\SubSection{Exit policies and abuse}\label{subsec:exitpolicies}Exit abuse is a serious barrier to wide-scale Tor deployment. Anonymitypresents would-be vandals and abusers with an opportunity to hidethe origins of their activities. Attackers can harm the Tor network byimplicating exit servers for their abuse. Also, applications that commonlyuse IP-based authentication (such as institutional mail or web servers)can be fooled by the fact that anonymous connections appear to originateat the exit OR.We stress that Tor does not enable any new class of abuse. Spammersand other attackers already have access to thousands of misconfiguredsystems worldwide, and the Tor network is far from the easiest wayto launch these antisocial or illegal attacks. Indeed, Tor's limitedanonymity may be a benefit here, because large determined adversariesmay still be able to track down criminals. In any case, because the%XXXonion routers can easily be mistaken for the originators of the abuse,and the volunteers who run them may not want to deal with the hassle ofrepeatedly explaining anonymity networks, we must block or limit attacksand other abuse that travel through the Tor network.To mitigate abuse issues, in Tor, each onion router's \emph{exit policy}describes to which external addresses and ports the router will permitstream connections. On one end of the spectrum are \emph{open exit}nodes that will connect anywhere. On the other end are \emph{middleman}nodes that only relay traffic to other Tor nodes, and \emph{private exit}nodes that only connect to a local host or network.  Using a privateexit (if one exists) is a more secure way for a client to connect to agiven host or network---an external adversary cannot eavesdrop trafficbetween the private exit and the final destination, and so is less sure ofAlice's destination and activities. Most onion routers will function as\emph{restricted exits} that permit connections to the world at large,but prevent access to certain abuse-prone addresses and services. Ingeneral, nodes can require a variety of forms of traffic authentication\cite{or-discex00}.%The abuse issues on closed (e.g. military) networks are different%from the abuse on open networks like the Internet. While these IP-based%access controls are still commonplace on the Internet, on closed networks,%nearly all participants will be honest, and end-to-end authentication%can be assumed for important traffic.Many administrators will use port restrictions to support only alimited set of well-known services, such as HTTP, SSH, or AIM.This is not a complete solution, since abuse opportunities for theseprotocols are still well known. Nonetheless, the benefits are real,since administrators seem used to the concept of port 80 abuse notcoming from the machine's owner.A further solution may be to use proxies to clean traffic for certainprotocols as it leaves the network.  For example, much abusive HTTPbehavior (such as exploiting buffer overflows or well-known scriptvulnerabilities) can be detected in a straightforward manner.Similarly, one could run automatic spam filtering software (such asSpamAssassin) on email exiting the OR network.ORs may also choose to rewrite exiting traffic in order to appendheaders or other information to indicate that the traffic has passedthrough an anonymity service.  This approach is commonly usedby email-only anonymity systems.  When possible, ORs can alsorun on servers with hostnames such as {\it anonymous}, to furtheralert abuse targets to the nature of the anonymous traffic.A mixture of open and restricted exit nodes will allow the mostflexibility for volunteers running servers. But while manymiddleman nodes help provide a large and robust network,having only a few exit nodes reduces the number of pointsan adversary needs to monitor for traffic analysis, and places agreater burden on the exit nodes.  This tension can be seen in theJava Anon Proxycascade model, wherein only one node in each cascade needs to handleabuse complaints---but an adversary only needs to observe the entryand exit of a cascade to perform traffic analysis on all thatcascade's users. The Hydra model (many entries, few exits) presents adifferent compromise: only a few exit nodes are needed, but anadversary needs to work harder to watch all the clients; seeSection~\ref{sec:conclusion}.Finally, we note that exit abuse must not be dismissed as a peripheralissue: when a system's public image suffers, it can reduce the numberand diversity of that system's users, and thereby reduce the anonymityof the system itself.  Like usability, public perception is also asecurity parameter.  Sadly, preventing abuse of open exit nodes is anunsolved problem, and will probably remain an arms race for theforseeable future.  The abuse problems faced by Princeton's CoDeeNproject \cite{darkside} give us a glimpse of likely issues.\SubSection{Directory Servers}\label{subsec:dirservers}First-generation Onion Routing designs \cite{freedom2-arch,or-jsac98} usedin-band network status updates: each router flooded a signed statementto its neighbors, which propagated it onward. But anonymizing networkshave different security goals than typical link-state routing protocols.For example, delays (accidental or intentional)that can cause different parts of the network to have different picturesof link-state and topology are not only inconvenient---they giveattackers an opportunity to exploit differences in client knowledge.We also worry about attacks to deceive aclient about the router membership list, topology, or current networkstate. Such \emph{partitioning attacks} on client knowledge help anadversary to efficiently deploy resourceswhen attacking a target.Tor uses a small group of redundant, well-known onion routers totrack changes in network topology and node state, including keys andexit policies.  Each such \emph{directory server} also acts as an HTTPserver, so participants can fetch current network state and routerlists (a \emph{directory}), and so other onion routers can uploadtheir router descriptors.  Onion routers periodically publish signedstatements of their state to each directory server, which combines thisstate information with its own view of network liveness, and generatesa signed description of the entire network state. Client software ispre-loaded with a list of the directory servers and their keys; it usesthis information to bootstrap each client's view of the network.When a directory server receives a signed statement from an onionrouter, it recognizes the onion router by its identity key. Directoryservers do not automatically advertise unrecognized ORs. (If they did,an adversary could take over the network by creating many servers\cite{sybil}.) Instead, new nodes must be approved by the directoryserver administrator before they are included. Mechanisms for automatednode approval are an area of active research, and are discussed morein Section~\ref{sec:maintaining-anonymity}.  Of course, a variety of attacks remain. An adversary who controlsa directory server can track certain clients by providing differentinformation---perhaps by listing only nodes under its control, or byinforming only certain clients about a given node. Even an externaladversary can exploit differences in client knowledge: clients who usea node listed on one directory server but not the others are vulnerable.Thus these directory servers must be synchronized and redundant.Valid directories are those signed by a threshold of the directoryservers.The directory servers in Tor are modeled after those in Mixminion\cite{minion-design}, but our situation is easier. First, we make thesimplifying assumption that all participants agree on the set ofdirectory servers. Second, while Mixminion needs to predict nodebehavior, Tor only needs a threshold consensus of the currentstate of the network.Tor directory servers build a consensus directory through a simplefour-round broadcast protocol.  In round one, each server dates andsigns its current opinion, and broadcasts it to the other directoryservers; then in round two, each server rebroadcasts all the signedopinions it has received.  At this point all directory servers checkto see whether any server has signed multiple opinions in the sameperiod. Such a server is either broken or cheating, so the protocolstops and notifies the administrators, who either remove the cheateror wait for the broken server to be fixed.  If there are nodiscrepancies, each directory server then locally computes an algorithm(described below)on the set of opinions, resulting in a uniform shared directory. Inround three servers sign this directory and broadcast it; and finallyin round four the servers rebroadcast the directory and all thesignatures.  If any directory server drops out of the network, itssignature is not included on the final directory.The rebroadcast steps ensure that a directory server is heard byeither all of the other servers or none of them, even when some linksare down (assuming that any two directory servers can talk directly orvia a third). Broadcasts are feasible because there are relatively fewdirectory servers (currently 3, but we expect as many as 9 as the networkscales). Computing the shared directory locally is a straightforwardthreshold voting process: we include an OR if a majority of directoryservers believe it to be good.To avoid attacks where a router connects to all the directory serversbut refuses to relay traffic from other routers, the directory serversmust build circuits and use them to anonymously test router reliability\cite{mix-acc}.Using directory servers is simpler and more flexible than flooding.For example, flooding complicates the analysis when westart experimenting with non-clique network topologies. And becausethe directories are signed, they can be cached by other onion routers.Thus directory servers are not a performancebottleneck when we have many users, and do not aid traffic analysis byforcing clients to periodically announce their existence to anycentral point.\Section{Rendezvous points: location privacy}\label{sec:rendezvous}Rendezvous points are a building block for \emph{location-hiddenservices} (also known as ``responder anonymity'') in the Tornetwork.  Location-hidden services allow Bob to offer a TCPservice, such as a webserver, without revealing its IP.We are also motivated by protection against distributed DoS attacks:attackers are forced to attack the onion routing network as a wholerather than just Bob's IP.Our design for location-hidden servers has the following goals.\textbf{Flood-proof:} An attacker should not be able to flood Bobwith traffic simply by sending many requests to talk to Bob.  Thus,Bob needs a way to filter incoming requests. \textbf{Robust:} Bobshould be able to maintain a long-term pseudonymous identity evenin the presence of router failure.  Thus, Bob's service must not betied to a single OR, and Bob must be able to tie his service to newORs. \textbf{Smear-resistant:} An attacker should not be able to userendezvous points to smear an OR.  That is, if a social attacker triesto host a location-hidden service that is illegal or disreputable, itshould not appear---even to a casual observer---that the OR is hostingthat service. \textbf{Application-transparent:} Although we are willing torequire users to run special software to access location-hidden servers,we are not willing to require them to modify their applications.\subsection{Rendezvous design}We provide location-hiding for Bob by allowing him to advertiseseveral onion routers (his \emph{Introduction Points}) as his publiclocation.  (He may do this on any robust efficient distributedkey-value lookup system with authenticated updates, such as CFS\cite{cfs:sosp01}\footnote{Each onion router could run a node in this lookupsystem; also note that as a stopgap measure, we can start by running asimple lookup system on the directory servers.})  Alice, the client, chooses a node for her\emph{Meeting Point}. She connects to one of Bob's introductionpoints, informs him about her rendezvous point, and then waits for himto connect to the rendezvous point. This extra level of indirectionhelps Bob's introduction points avoid problems associated with servingunpopular files directly, as could occur, for example, if Bob choosesan introduction point in Texas to serve anti-ranching propaganda,or if Bob's service tends to get attacked by network vandals.The extra level of indirection also allows Bob to respond to some requestsand ignore others.The steps of a rendezvous as follows.  These steps are performed onbehalf of Alice and Bob by their local onion proxies, which they bothmust run; application integration is described more fully below.\begin{tightlist}\item Bob chooses some introduction ppoints, and advertises them via      CFS (or some other distributed key-value publication system).\item Bob establishes a Tor virtual circuit to each of his      Introduction Points, and waits.\item Alice learns about Bob's service out of band (perhaps Bob told her,      or she found it on a website). She looks up the details of Bob's      service from CFS.\item Alice chooses an OR to serve as a Rendezvous Point (RP) for this      transaction. She establishes a virtual circuit to her RP, and      tells it to wait for connections. %[XXX how?]\item Alice opens an anonymous stream to one of Bob's Introduction      Points, and gives it message (encrypted for Bob) which tells him      about herself, her chosen RP, and the first half of an ephemeral      key handshake. The Introduction Point sends the message to Bob.\item Bob may decide to ignore Alice's request.  %[XXX Based on what?]      Otherwise, he creates a new virtual circuit to Alice's RP, and      authenticates himself. %[XXX how?]\item If the authentication is successful, the RP connects Alice's      virtual circuit to Bob's. Note that RP can't recognize Alice,      Bob, or the data they transmit (they share a session key).\item Alice now sends a Begin cell along the circuit. It arrives at Bob's      onion proxy. Bob's onion proxy connects to Bob's webserver.\item An anonymous stream has been established, and Alice and Bob      communicate as normal.\end{tightlist}%[XXX We need to modify the above to refer people down to these next%  paragraphs. -NM]When establishing an introduction point, Bob provides the onion routerwith a public ``introduction'' key.  The hash of this public keyidentifies a unique service, and (since Bob is required to sign hismessages) prevents anybody else from usurping Bob's introduction pointin the future. Bob uses the same public key when establishing the otherintroduction points for that service.The message that Alice gives the introduction point includes a hash of Bob'spublic key to identify the service, an optional initial authenticationtoken (the introduction point can do prescreening, eg to block replays),and (encrypted to Bob's public key) the location of the rendezvous point,a rendezvous cookie Bob should tell RP so he gets connected toAlice, an optional authentication token so Bob can choose whether to respond,and the first half of a DH key exchange. When Bob connects to RPand gets connected to Alice's pipe, his first cell contains theother half of the DH key exchange.The authentication tokens can be used to provide selective access to usersproportional to how important it is that they main uninterrupted accessto the service. During normal situations, Bob's service might simply beoffered directly from mirrors; Bob can also give out authentication cookiesto high-priority users. If those mirrors are knocked down bydistributed DoS attacks,those users can switch to accessing Bob's service via the Torrendezvous system.\SubSection{Integration with user applications}For each service Bob offers, he configures his local onion proxy to knowthe local IP and port of the server, a strategy for authorizing Alices,and a public key.   Bob publishesthe public key, an expirationtime (``not valid after''), and the current introduction points forhisservice into CFS, all indexed by the hash of the public keyNote that Bob's webserver is unmodified, and doesn't even knowthat it's hidden behind the Tor network.Because Alice's applications must work unchanged, her client interfaceremains a SOCKS proxy.  Thus we must encode all of the necessaryinformation into the fully qualified domain name Alice uses whenestablishing her connections.  Location-hidden services use a virtualtop level domain called `.onion': thus hostnames take the formx.y.onion where x is the authentication cookie, and y encodes the hashof PK. Alice's onion proxy examines hostnames and recognizes whenthey're destined for a hidden server. If so, it decodes the PK andstarts the rendezvous as described in the table above.\subsection{Previous rendezvous work}Ian Goldberg developed a similar notion of rendezvous points forlow-latency anonymity systems \cite{ian-thesis}. His ``service tags''play the same role in his design as the hashes of services' publickeys play in ours.  We use public key hashes so that they can beself-authenticating, and so the client can recognize the same servicewith confidence later on. His design also differs from ours in thefollowing ways: First, Goldberg suggests that the client shouldmanually hunt down a current location of the service via Gnutella;whereas our use of CFS makes lookup faster, more robust, andtransparent to the user. Second, in Tor the client and servernegotiate ephemeral keys via Diffie-Hellman, so at no point in thepath is the plaintext exposed. Third, our design tries to minimize theexposure associated with running the service, so as to make volunteersmore willing to offer introduction and rendezvous point services.Tor's introduction points do not output any bytes to the clients, andthe rendezvous points don't know the client, the server, or the databeing transmitted. The indirection scheme is also designed to includeauthentication/authorization---if the client doesn't include the rightcookie with its request for service, the server need not evenacknowledge its existence.\Section{Analysis}\label{sec:analysis}In this section, we discuss how well Tor meets our stated design goalsand its resistance to attacks.\SubSection{Meeting Basic Goals}% None of these seem to say very much.  Should this subsection be removed?\begin{tightlist}\item [Basic Anonymity:] Because traffic is encrypted, changing in  appearance, and can flow from anywhere to anywhere within the  network, a simple observer that cannot see both the initiator  activity and the corresponding activity where the responder talks to  the network will not be able to link the initiator and responder.  Nor is it possible to directly correlate any two communication  sessions as coming from a single source without additional  information. Resistance to more sophisticated anonymity threats is  discussed below.\item[Deployability:] Tor requires no specialized hardware. Tor  requires no kernel modifications; it runs in user space (currently  on Linux, various BSDs, and Windows). All of these imply a low  technical barrier to running a Tor node. There is an assumption that  Tor nodes have good relatively persistent net connectivity  (currently T1 or better);% Is that reasonable to say? We haven't really discussed it -P.S.% Roger thinks otherwise; he will fix this. -NM  however, there is no padding overhead, and operators can limit  bandwidth on any link.  Tor is freely available under the modified  BSD license, and operators are able to choose their own exit  policies, thus reducing legal and social barriers to  running a node.  \item[Usability:] As noted, Tor runs in user space. So does the onion  proxy, which is comparatively easy to install and run. SOCKS-aware  applications require nothing more than to be pointed at the onion  proxy; other applications can be redirected to use SOCKS for their  outgoing TCP connections by drop-in libraries such as tsocks.  \item[Flexibility:] Tor's design and implementation is fairly modular,  so that, for example, a scalable P2P replacement for the directory  servers would not substantially impact other aspects of the system.  Tor runs on top of TCP, so design options that could not easily do  so would be difficult to test on the current network. However, most  low-latency protocols are designed to run over TCP. We are currently  working with the designers of MorphMix to render our two systems  interoperable. So for, this seems to be relatively straightforward.  Interoperability will allow testing and direct comparison of the two  rather different designs.  \item[Simple design:] Tor opts for practicality when there is no  clear resolution of anonymity trade-offs or practical means to  achieve resolution. Thus, we do not currently pad or mix; although  it would be easy to add either of these. Indeed, our system allows  long-range and variable padding if this should ever be shown to have  a clear advantage.  Similarly, we do not currently attempt to  resolve such issues as Sybil attacks to dominate the network except  by such direct means as personal familiarity of director operators  with all node operators.\end{tightlist}\SubSection{Attacks and Defenses}\label{sec:attacks}Below we summarize a variety of attacks, and discuss how well ourdesign withstands them.\subsubsection*{Passive attacks}\begin{tightlist}\item \emph{Observing user traffic patterns.} Observations of connection  between an end user and a first onion router will not reveal to whom  the user is connecting or what information is being sent. It will  reveal patterns of user traffic (both sent and received). Simple  profiling of user connection patterns is not generally possible,  however, because multiple application connections (streams) may be  operating simultaneously or in series over a single circuit. Thus,  further processing is necessary to try to discern even these usage  patterns.  \item \emph{Observing user content.} At the user end, content is  encrypted; however, connections from the network to arbitrary  websites may not be. Further, a responding website may itself be  considered an adversary. Filtering content is not a primary goal of  Onion Routing; nonetheless, Tor can directly make use of Privoxy and  related filtering services via SOCKS and thus anonymize their  application data streams.\item \emph{Option distinguishability.} Configuration options can be a  source of distinguishable patterns. In general there is economic  incentive to allow preferential services \cite{econymics}, and some  degree of configuration choice can be a factor in attracting many users  to provide anonymity.  So far, however, we have  not found a compelling use case in Tor for any client-configurable  options.  Thus, clients are currently distinguishable only by their  behavior.  \item \emph{End-to-end Timing correlation.}  Tor only minimally hides  end-to-end timing correlations. If an attacker can watch patterns of  traffic at the initiator end and the responder end, then he will be  able to confirm the correspondence with high probability. The  greatest protection currently against such confirmation is if the  connection between the onion proxy and the first Tor node is hidden,  possibly because it is local or behind a firewall.  This approach  requires an observer to separate traffic originating the onion  router from traffic passes through it.  We still do not, however,  predict this approach to be a large problem for an attacker who can  observe traffic at both ends of an application connection.  \item \emph{End-to-end Size correlation.} Simple packet counting  without timing consideration will also be effective in confirming  endpoints of a connection through Onion Routing; although slightly  less so. This is because, even without padding, the leaky pipe  topology means different numbers of packets may enter one end of a  circuit than exit at the other.  \item \emph{Website fingerprinting.} All the above passive  attacks that are at all effective are traffic confirmation attacks.  This puts them outside our general design goals. There is also  a passive traffic analysis attack that is potentially effective.  Instead of searching exit connections for timing and volume  correlations it is possible to build up a database of  ``fingerprints'' containing file sizes and access patterns for many  interesting websites. If one now wants to  monitor the activity of a user, it may be possible to confirm a  connection to a site simply by consulting the database. This attack has  been shown to be effective against SafeWeb \cite{hintz-pet02}. Onion  Routing is not as vulnerable as SafeWeb to this attack: There is the  possibility that multiple streams are exiting the circuit at  different places concurrently.  Also, fingerprinting will be limited to  the granularity of cells, currently 256 bytes. Larger cell sizes  and/or minimal padding schemes that group websites into large sets  are possible responses.  But this remains an open problem.  Link  padding or long-range dummies may also make fingerprints harder to  detect. (Note that  such fingerprinting should not be confused with the latency attacks  of \cite{back01}. Those require a fingerprint of the latencies of  all circuits through the network, combined with those from the  network edges to the targeted user and the responder website. While  these are in principal feasible and surprises are always possible,  these constitute a much more complicated attack, and there is no  current evidence of their practicality.)\item \emph{Content analysis.}  Tor explicitly provides no content  rewriting for any protocol at a higher level than TCP.  When  protocol cleaners are available, however (as Privoxy is for HTTP),  Tor can integrate them in order to address these attacks.\end{tightlist}\subsubsection*{Active attacks}\begin{tightlist}\item \emph{Key compromise.}  We consider the impact of a compromise  for each type of key in turn, from the shortest- to the  longest-lived.  If a circuit session key is compromised, the  attacker can unwrap a single layer of encryption from the relay  cells traveling along that circuit.  (Only nodes on the circuit can  see these cells.)  If a TLS session key is compromised, an attacker  can view all the cells on TLS connection until the key is  renegotiated.  (These cells are themselves encrypted.)  If a TLS  private key is compromised, the attacker can fool others into  thinking that he is the affected OR, but still cannot accept any  connections.  If an onion private key is compromised, the attacker  can impersonate the OR in circuits, but only if the attacker has  also compromised the OR's TLS private key, or is running the  previous OR in the circuit.  (This compromise affects newly created  circuits, but because of perfect forward secrecy, the attacker  cannot hijack old circuits without compromising their session keys.)  In any case, an attacker can only take advantage of a compromise in  these mid-term private keys until they expire.  Only by  compromising a node's identity key can an attacker replace that  node indefinitely, by sending new forged mid-term keys to the  directories.  Finally, an attacker who can compromise a  \emph{directory's} identity key can influence every client's view  of the network---but only to the degree made possible by gaining a  vote with the rest of the the directory servers.\item \emph{Iterated compromise.} A roving adversary who can  compromise ORs (by system intrusion, legal coersion, or extralegal  coersion) could march down length of a circuit compromising the  nodes until he reaches the end.  Unless the adversary can complete  this attack within the lifetime of the circuit, however, the ORs  will have discarded the necessary information before the attack can  be completed.  (Thanks to the perfect forward secrecy of session  keys, the attacker cannot cannot force nodes to decrypt recorded  traffic once the circuits have been closed.)  Additionally, building  circuits that cross jurisdictions can make legal coercion  harder---this phenomenon is commonly called ``jurisdictional  arbitrage.'' The Java Anon Proxy project recently experienced this  issue, when  the German government successfully ordered them to add a backdoor to  all of their nodes \cite{jap-backdoor}.  \item \emph{Run a recipient.} By running a Web server, an adversary  trivially learns the timing patterns of those connecting to it, and  can introduce arbitrary patterns in its responses.  This can greatly  facilitate end-to-end attacks: If the adversary can induce certain  users to connect to connect to his webserver (perhaps by providing  content targeted at those users), she now holds one end of their  connection.  Additonally, here is a danger that the application  protocols and associated programs can be induced to reveal  information about the initiator.  This is not directly in Onion  Routing's protection area, so we are dependent on Privoxy and  similar protocol cleaners to solve the problem.  \item \emph{Run an onion proxy.} It is expected that end users will  nearly always run their own local onion proxy. However, in some  settings, it may be necessary for the proxy to run  remotely---typically, in an institutional setting where it was  necessary to monitor the activity of those connecting to the proxy.  The drawback, of course, is that if the onion proxy is compromised,  then all future connections through it are completely compromised.\item \emph{DoS non-observed nodes.} An observer who can observe some  of the Tor network can increase the value of this traffic analysis  if it can attack non-observed nodes to shut them down, reduce  their reliability, or persuade users that they are not trustworthy.  The best defense here is robustness.  \item \emph{Run a hostile node.}  In addition to the abilties of a  local observer, an isolated hostile node can create circuits through  itself, or alter traffic patterns, in order to affect traffic at  other nodes. Its ability to directly DoS a neighbor is now limited  by bandwidth throttling. Nonetheless, in order to compromise the  anonymity of the endpoints of a circuit by its observations, a  hostile node is only significant if it is immediately adjacent to  that endpoint.   \item \emph{Run multiple hostile nodes.}  If an adversary is able to  run multiple ORs, and is able to persuade the directory servers  that those ORs are trustworthy and independant, then occasionally  some user will choose one of those ORs for the start and another of  those ORs as the end of a circuit.  When this happens, the user's  anonymity is compromised for those circuits.  If an adversary can  control $m$ out of $N$ nodes, he should be able to correlate at most   $\frac{m}{N}$ of the traffic in this way---although an adersary  could possibly attract a disproportionately large amount of traffic  by running an exit node with an unusually permisssive exit policy.\item \emph{Compromise entire path.} Anyone compromising both  endpoints of a circuit can confirm this with high probability. If  the entire path is compromised, this becomes a certainty; however,  the added benefit to the adversary of such an attack is small in  relation to the difficulty.  \item \emph{Run a hostile directory server.} Directory servers control  admission to the network. However, because the network directory  must be signed by a majority of servers, the threat of a single  hostile server is minimized.  \item \emph{Selectively DoS a Tor node.} As noted, neighbors are  bandwidth limited; however, it is possible to open up sufficient  circuits that converge at a single onion router to  overwhelm its network connection, its ability to process new  circuits, or both.%OK so I noticed that twins are completely removed from the paper above,% but it's after 5 so I'll leave that problem to you guys. -PS  \item \emph{Introduce timing into messages.} This is simply a stronger  version of passive timing attacks already discussed above.  \item \emph{Tagging attacks.} A hostile node could try to ``tag'' a  cell by altering it. This would render it unreadable, but if the  connection is, for example, an unencrypted request to a Web site,  the garbled content coming out at the appropriate time could confirm  the association. However, integrity checks on cells prevent  this attack from succeeding.\item \emph{Replace contents of unauthenticated protocols.}  When a  relaying an unauthenticated protocol like HTTP, a hostile exit node   can impersonate the target server.  Thus, whenever possible, clients  should prefer protocols with end-to-end authentication.\item \emph{Replay attacks.} Some anonymity protocols are vulnerable  to replay attacks.  Tor is not; replaying one side of a handshake  will result in a different negotiated session key, and so the rest  of the recorded session can't be used.    % ``NonSSL Anonymizer''?\item \emph{Smear attacks.} An attacker could use the Tor network to  engage in socially dissapproved acts, so as to try to bring the  entire network into disrepute and get its operators to shut it down.  Exit policies can help reduce the possibilities for abuse, but  ultimately, the network will require volunteers who can tolerate  some political heat.\item \emph{Distribute hostile code.} An attacker could trick users  into running subverted Tor software that did not, in fact, anonymize  their connections---or worse, trick ORs into running weakened  software that provided users with less anonymity.  We address this  problem (but do not solve it completely) by signing all Tor releases  with an official public key, and including an entry the directory  describing which versions are currently believed to be secure.  To  prevent an attacker from subverting the official release itself  (through threats, bribery, or insider attacks), we provide all  releases in source code form, encourage source audits, and  frequently warn our users never to trust any software (even from  us!) that comes without source.\end{tightlist}\subsubsection*{Directory attacks}\begin{tightlist}\item \emph{Destroy directory servers.}  If a single directory  server drops out of operation, the others still arrive at a final  directory.  So long as any directory servers remain in operation,  they will still broadcast their views of the network and generate a  consensus directory.  (If more than half are destroyed, this  directory will not, however, have enough signatures for clients to  use it automatically; human intervention will be necessary for  clients to decide whether to trust the resulting directory.)\item \emph{Subvert a directory server.}  By taking over a directory  server, an attacker can influence (but not control) the final  directory.  Since ORs are included or excluded by majority vote,  the corrupt directory can at worst cast a tie-breaking vote to  decide whether to include marginal ORs.  How often such marginal  cases will occur in practice, however, remains to be seen.\item \emph{Subvert a majority of directory servers.}  If the  adversary controls more than half of the directory servers, he can  decide on a final directory, and thus can include as many  compromised ORs in the final directory as he wishes.  Other than  trying to ensure that directory server operators are truly  independent and resistant to attack, Tor does not address this  possibility.\item \emph{Encourage directory server dissent.}  The directory  agreement protocol requires that directory server operators agree on   the list of directory servers.  An adversary who can persuade some  of the directory server operators to distrust one another could  split the quorum into mutually hostile camps, thus partitioning  users based on which directory they used.  Tor does not address  this attack.\item \emph{Trick the directory servers into listing a hostile OR.}  Our threat model explicitly assumes directory server operators will  be able to filter out most hostile ORs.  If this is not true, an  attacker can flood the directory with compromised servers.\item \emph{Convince the directories that a malfunctioning OR is  working.}  In the current Tor implementation, directory servers  assume that if they can start a TLS connection to an an OR, that OR  must be running correctly.  It would be easy for a hostile OR to  subvert this test by only accepting TLS connections from ORs, and  ignoring all cells. Thus, directory servers must actively test ORs  by building circuits and streams as appropriate.  The benefits and  hazards of a similar approach are discussed in \cite{mix-acc}.  \end{tightlist}\subsubsection*{Attacks against rendezvous points}\begin{tightlist}\item \emph{Make many introduction requests.}  An attacker could  attempt to deny Bob service by flooding his Introduction Point with  requests.  Because the introduction point can block requests that  lack authentication tokens, however, Bob can restrict the volume of  requests he receives, or require a certain amount of computation for  every request he receives.  \item \emph{Attack an introduction point.} An attacker could try to  disrupt a location-hidden service by disabling its introduction  point.  But because a service's identity is attached to its public  key, not its introduction point, the service can simply re-advertise  itself at a different introduction point.\item \emph{Compromise an introduction point.} If an attacker controls  an introduction point for a service, it can flood the service with  introduction requests, or prevent valid introduction requests from  reaching the hidden server.  The server will notice a flooding  attempt if it receives many introduction requests.  To notice  blocking of valid requests, however, the hidden server should  periodically test the introduction point by sending its introduction  requests, and making sure it receives them.\item \emph{Compromise a rendezvous point.}  Controlling a rendezvous  point gains an attacker no more than controlling any other OR along  a circuit, since all data passing along the rendezvous is protected  by the session key shared by the client and server.\end{tightlist}\Section{Open Questions in Low-latency Anonymity}\label{sec:maintaining-anonymity} % There must be a better intro than this! -NMIn addition to the open problems discussed inSection~\ref{subsec:non-goals}, many other questions remain to besolved by future research before we can be truly confident that wehave built a secure low-latency anonymity service.Many of these open issues are questions of balance.  For example,how often should users rotate to fresh circuits?  Too-frequentrotation is inefficient and expensive, but too-infrequent rotationmakes the user's traffic linkable.   Instead of opening a freshcircuit; clients can also limit linkability exit from a middle pointof the circuit, or by truncating and re-extending the circuit, butmore analysis is needed to determine the proper trade-off.%[XXX mention predecessor attacks?]A similar question surrounds timing of directory operations:how often should directories be updated?  With too-infrequentupdates clients receive an inaccurate picture of the network; withtoo-frequent updates the directory servers are overloaded.%do different exit policies at different exit nodes trash anonymity sets,%or not mess with them much?%%% Why would they?  By routing traffic to certain nodes preferentially?%[XXX Choosing paths and path lengths: I'm not writing this bit till%  Arma's pathselection stuff is in. -NM]%%%% Roger said that he'd put a path selection paragraph into section%%%% 4 that would replace this.%%I probably should have noted that this means loops will be on at least%five hop routes, which should be rare given the distribution.  I'm    %realizing that this is reproducing some of the thought that led to a  %default of five hops in the original onion routing design.  There were%some different assumptions, which I won't spell out now.  Note that   %enclave level protections really change these assumptions.  If most   %circuits are just two hops, then just a single link observer will be  %able to tell that two enclaves are communicating with high probability.%So, it would seem that enclaves should have a four node minimum circuit%to prevent trivial circuit insider identification of the whole circuit,%and three hop minimum for circuits from an enclave to some nonclave    %responder. But then... we would have to make everyone obey these rules %or a node that through timing inferred it was on a four hop circuit    %would know that it was probably carrying enclave to enclave traffic.   %Which... if there were even a moderate number of bad nodes in the      %network would make it advantageous to break the connection to conduct  %a reformation intersection attack. Ahhh! I gotta stop thinking         %about this and work on the paper some before the family wakes up.  %On Sat, Oct 25, 2003 at 06:57:12AM -0400, Paul Syverson wrote:%> Which... if there were even a moderate number of bad nodes in the%> network would make it advantageous to break the connection to conduct%> a reformation intersection attack. Ahhh! I gotta stop thinking%> about this and work on the paper some before the family wakes up. %This is the sort of issue that should go in the 'maintaining anonymity%with tor' section towards the end. :)%Email from between roger and me to beginning of section above. Fix and move.Throughout this paper, we have assumed that end-to-end trafficanalysis will immediately and automatically defeat a low-latencyanonymity system. Even high-latency anonymitysystems can be vulnerable to end-to-end traffic analysis, if thetraffic volumes are high enough, and if users' habits are sufficientlydistinct \cite{limits-open,statistical-disclosure}.  \emph{Can  anything be donw to make low-latency systems resist these attacks as  well as high-latency systems?}Tor already makes some effort to conceal the starts andends of streams by wrapping all long-range control commands inidentical-looking relay cells, but more analysis is needed.  Linkpadding could frustrate passive observers who count packets; long-rangepadding could work against observers who own the first hop in acircuit.  But more research needs to be done in order to find anefficient and practical approach.  Volunteers prefer not to runconstant-bandwidth padding; but more sophisticated traffic shapingapproaches remain somewhat unanalyzed. %[XXX is this so?] Recent workon long-range padding \cite{defensive-dropping} shows promise.  Onecould also try to reduce correlation in packet timing by batching andre-ordering packets, but it is unclear whether this could improveanonymity without introducing so much latency as to render thenetwork unusable.Even if passive timing attacks were wholly solved, active timingattacks would remain.  \emph{What can  be done to address attackers who can introduce timing patterns into  a user's traffic?}  % [XXX mention likely approaches]%%% I think we cover this by framing the problem as ``Can we make %%% end-to-end characteristics of low-latency systems as good as%%% those of high-latency systems?''  Eliminating long-term%%% intersection is a hard problem.%%Even regardless of link padding from Alice to the cloud, there will be%times when Alice is simply not online. Link padding, at the edges or%inside the cloud, does not help for this.In order to scale to large numbers of users, and to prevent anattacker from observing the whole network at once, it may be necessaryfor low-latency anonymity systems to support far more servers than Torcurrently anticipates.  This introduces several issues.  First, ifapproval by a centralized set of directory servers is no longerfeasible, what mechanism should be used to prevent adversaries fromsigning up many spurious servers? Second, if clients can no longer have a completepicture of the network at all times, how can should they performdiscovery while preventing attackers from manipulating or exploitinggaps in client knowledge?  Third, if there are too many serversfor every server to constantly communicate with every other, what kindof non-clique topology should the network use?   Restricted-routetopologies promise comparable anonymity with better scalability\cite{danezis-pets03}, but whatever topology we choose, we need someway to keep attackers from manipulating their position within it.Fourth, since no centralized authority is tracking server reliability,How do we prevent unreliable servers from rendering the networkunusable?  Fifth, do clients receive so much anonymity benefit fromrunning their own servers that we should expect them all to do so, ordo we need to find another incentive structure to motivate them?(Tarzan and MorphMix present possible solutions.)% [[ XXX how to approve new nodes (advogato, sybil, captcha (RTT));]Alternatively, it may be the case that one of these problems provesintractable, or that the drawbacks to many-server systems provegreater than the benefits.  Nevertheless, we may still do well toconsider non-clique topologies.  A cascade topology may provide moredefense against traffic confirmation confirmation.% XXX Why would it?   Cite.  -NMDoes the hydra (many inputs, few outputs) topology workbetter? Are we going to get a hydra anyway because most nodes will bemiddleman nodes?As mentioned in Section~\ref{subsec:dos}, Tor could improve itsrobustness against node failure by buffering transmitted stream dataat the network's edges until the data has been acknowledged by theother end of the stream.  The efficacy of this approach remains to betested, however, and there may be more effective means for ensuringreliable connections in the presence of unreliable nodes.%%% Keeping this original paragraph for a little while, since it %%% is not the same as what's written there now.%%Because Tor depends on TLS and TCP to provide a reliable transport,%when one of the servers goes down, all the circuits (and thus streams)%traveling over that server must break.  This reduces anonymity because%everybody needs to reconnect right then (does it? how much?)  and%because exit connections all break at the same time, and it also harms%usability. It seems the problem is even worse in a peer-to-peer%environment, because so far such systems don't really provide an%incentive for nodes to stay connected when they're done browsing, so%we would expect a much higher churn rate than for onion routing.%there ways of allowing streams to survive the loss of a node in the%path?% Roger or Paul suggested that we say something about incentives,% too, but I think that's a better candidate for our future work% section.  After all, we will doubtlessly learn very much about why% people do or don't run and use Tor in the near future. -NM%We should run a squid at each exit node, to provide comparable anonymity%to private exit nodes for cache hits, to speed everything up, and to%have a buffer for funny stuff coming out of port 80.% on the other hand, it hampers PFS, because ORs have pages in the cache.%I previously elsewhere suggested bulk transfer proxies to carve%up big things so that they could be downloaded in less noticeable%pieces over several normal looking connections. We could suggest%similarly one or a handful of squid nodes that might serve up%some of the more sensitive but common material, especially if%the relevant sites didn't want to or couldn't run their own OR.%This would be better than having everyone run a squid which would%just help identify after the fact the different history of that%node's activity. All this kind of speculation needs to move to%future work section I guess. -PS]%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\Section{Future Directions}\label{sec:conclusion}Tor brings together many innovations intoa unified deployable system. But there are still several attacks thatwork quite well, as well as a number of sustainability and run-timeissues remaining to be ironed out. In particular:% Many of these (Scalability, cover traffic, morphmix) % are duplicates from open problems.%\begin{tightlist}\item \emph{Scalability:} Tor's emphasis on design simplicity and  deployability has led us to adopt a clique topology, a  semi-centralized model for directories and trusts, and a  full-network-visibility model for client knowledge.  None of these  properties will scale to more than a few hundred servers, at most.  Promising approaches to better scalability exist (see  Section~\ref{sec:maintaining-anonymity}), but more deployment  experience would be helpful in learning the relative importance of  these bottlenecks.\item \emph{Cover traffic:} Currently we avoid cover traffic because  of its clear costs in performance and bandwidth, and because its  security benefits have not well understood. With more research  \cite{SS03,defensive-dropping}, the price/value ratio may change,  both for link-level cover traffic and also long-range cover traffic.\item \emph{Better directory distribution:} Even with the threshold  directory agreement algorithm described in Section~\ref{subsec:dirservers},  the directory servers are still trust bottlenecks. We must find more  decentralized yet practical ways to distribute up-to-date snapshots of  network status without introducing new attacks.  Also, directory  retrieval presents a scaling problem, since clients currently  download a description of the entire network state every 15  minutes.  As the state grows larger and clients more numerous, we  may need to move to a solution in which clients only receive  incremental updates to directory state, or where directories are  cached at the ORs to avoid high loads on the directory servers.\item \emph{Implementing location-hidden servers:} While  Section~\ref{sec:rendezvous} describes a design for rendezvous  points and location-hidden servers, these feature has not yet been  implemented.  While doing so, will likely encounter additional  issues, both in terms of usability and anonymity, that must be  resolved.\item \emph{Further specification review:} Although we have a public,  byte-level specification for the Tor protocols, this protocol has  not received extensive external review.  We hope that as Tor  becomes more widely deployed, more people will become interested in  examining our specification.\item \emph{Wider-scale deployment:} The original goal of Tor was to  gain experience in deploying an anonymizing overlay network, and  learn from having actual users.  We are now at the point in design  and development where we can start deploying a wider network.  Once  we have are ready for actual users, we will doubtlessly be better  able to evaluate some of our design decisions, including our  robustness/latency trade-offs, our performance trade-offs (including  cell size), our abuse-prevention mechanisms, and  our overall usability.% XXX large and small cells on same network.% XXX work with morphmix spec\end{tightlist}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% commented out for anonymous submission%\Section{Acknowledgments}% Peter Palfrader, Geoff Goodell, Adam Shostack, Joseph Sokol-Margolis%   for editing and comments% Bram Cohen for congestion control discussions% Adam Back for suggesting telescoping circuits%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\bibliographystyle{latex8}\bibliography{tor-design}\end{document}% Style guide:%     U.S. spelling%     avoid contractions (it's, can't, etc.)%     prefer ``for example'' or ``such as'' to e.g.%     prefer ``that is'' to i.e.%     'mix', 'mixes' (as noun)%     'mix-net'%     'mix', 'mixing' (as verb)%     'middleman'  [Not with a hyphen; the hyphen has been optional%         since Middle English.]%     'nymserver'%     'Cypherpunk', 'Cypherpunks', 'Cypherpunk remailer'%     'Onion Routing design', 'onion router' [note capitalization]%     'SOCKS'%     Try not to use \cite as a noun.  %     'Authorizating' sounds great, but it isn't a word.%     'First, second, third', not 'Firstly, secondly, thirdly'.%     'circuit', not 'channel'%     Typography: no space on either side of an em dash---ever.%     Hyphens are for multi-part words; en dashs imply movement or%        opposition (The Alice--Bob connection); and em dashes are%        for punctuation---like that.%     A relay cell; a control cell; a \emph{create} cell; a%     \emph{relay truncated} cell.  Never ``a \emph{relay truncated}.''%%     'Substitute ``Damn'' every time you're inclined to write ``very;'' your%     editor will delete it and the writing will be just as it should be.'%     -- Mark Twain
 |