dir-spec.txt 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  1. Tor directory protocol, version 3
  2. 0. Scope and preliminaries
  3. This directory protocol is used by Tor version 0.2.0.x-alpha and later.
  4. See dir-spec-v1.txt for information on the protocol used up to the
  5. 0.1.0.x series, and dir-spec-v2.txt for information on the protocol
  6. used by the 0.1.1.x and 0.1.2.x series.
  7. Caches and authorities must still support older versions of the
  8. directory protocols, until the versions of Tor that require them are
  9. finally out of commission.
  10. This document merges and supersedes the following proposals:
  11. 101 Voting on the Tor Directory System
  12. 103 Splitting identity key from regularly used signing key
  13. 104 Long and Short Router Descriptors
  14. XXX when to download certificates.
  15. XXX timeline
  16. XXX fill in XXXXs
  17. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
  18. NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and
  19. "OPTIONAL" in this document are to be interpreted as described in
  20. RFC 2119.
  21. 0.1. History
  22. The earliest versions of Onion Routing shipped with a list of known
  23. routers and their keys. When the set of routers changed, users needed to
  24. fetch a new list.
  25. The Version 1 Directory protocol
  26. --------------------------------
  27. Early versions of Tor (0.0.2) introduced "Directory authorities": servers
  28. that served signed "directory" documents containing a list of signed
  29. "router descriptors", along with short summary of the status of each
  30. router. Thus, clients could get up-to-date information on the state of
  31. the network automatically, and be certain that the list they were getting
  32. was attested by a trusted directory authority.
  33. Later versions (0.0.8) added directory caches, which download
  34. directories from the authorities and serve them to clients. Non-caches
  35. fetch from the caches in preference to fetching from the authorities, thus
  36. distributing bandwidth requirements.
  37. Also added during the version 1 directory protocol were "router status"
  38. documents: short documents that listed only the up/down status of the
  39. routers on the network, rather than a complete list of all the
  40. descriptors. Clients and caches would fetch these documents far more
  41. frequently than they would fetch full directories.
  42. The Version 2 Directory Protocol
  43. --------------------------------
  44. During the Tor 0.1.1.x series, Tor revised its handling of directory
  45. documents in order to address two major problems:
  46. * Directories had grown quite large (over 1MB), and most directory
  47. downloads consisted mainly of router descriptors that clients
  48. already had.
  49. * Every directory authority was a trust bottleneck: if a single
  50. directory authority lied, it could make clients believe for a time
  51. an arbitrarily distorted view of the Tor network. (Clients
  52. trusted the most recent signed document they downloaded.) Thus,
  53. adding more authorities would make the system less secure, not
  54. more.
  55. To address these, we extended the directory protocol so that
  56. authorities now published signed "network status" documents. Each
  57. network status listed, for every router in the network: a hash of its
  58. identity key, a hash of its most recent descriptor, and a summary of
  59. what the authority believed about its status. Clients would download
  60. the authorities' network status documents in turn, and believe
  61. statements about routers iff they were attested to by more than half of
  62. the authorities.
  63. Instead of downloading all router descriptors at once, clients
  64. downloaded only the descriptors that they did not have. Descriptors
  65. were indexed by their digests, in order to prevent malicious caches
  66. from giving different versions of a router descriptor to different
  67. clients.
  68. Routers began working harder to upload new descriptors only when their
  69. contents were substantially changed.
  70. 0.2. Goals of the version 3 protocol
  71. Version 3 of the Tor directory protocol tries to solve the following
  72. issues:
  73. * A great deal of bandwidth used to transmit router descriptors was
  74. used by two fields that are not actually used by Tor routers
  75. (namely read-history and write-history). We save about 60% by
  76. moving them into a separate document that most clients do not
  77. fetch or use.
  78. * It was possible under certain perverse circumstances for clients
  79. to download an unusual set of network status documents, thus
  80. partitioning themselves from clients who have a more recent and/or
  81. typical set of documents. Even under the best of circumstances,
  82. clients were sensitive to the ages of the network status documents
  83. they downloaded. Therefore, instead of having the clients
  84. correlate multiple network status documents, we have the
  85. authorities collectively vote on a single consensus network status
  86. document.
  87. * The most sensitive data in the entire network (the identity keys
  88. of the directory authorities) needed to be stored unencrypted so
  89. that the authorities can sign network-status documents on the fly.
  90. Now, the authorities' identity keys are stored offline, and used
  91. to certify medium-term signing keys that can be rotated.
  92. 0.3. Some Remaining questions
  93. Things we could solve on a v3 timeframe:
  94. The SHA-1 hash is showing its age. We should do something about our
  95. dependency on it. We could probably future-proof ourselves here in
  96. this revision, at least so far as documents from the authorities are
  97. concerned.
  98. Too many things about the authorities are hardcoded by IP.
  99. Perhaps we should start accepting longer identity keys for routers
  100. too.
  101. Things to solve eventually:
  102. Requiring every client to know about every router won't scale forever.
  103. Requiring every directory cache to know every router won't scale
  104. forever.
  105. 1. Outline
  106. There is a small set (say, around 5-10) of semi-trusted directory
  107. authorities. A default list of authorities is shipped with the Tor
  108. software. Users can change this list, but are encouraged not to do so,
  109. in order to avoid partitioning attacks.
  110. Every authority has a very-secret, long-term "Authority Identity Key".
  111. This is stored encrypted and/or offline, and is used to sign "key
  112. certificate" documents. Every key certificate contains a medium-term
  113. (3-12 months) "authority signing key", that is used by the authority to
  114. sign other directory information. (Note that the authority identity
  115. key is distinct from the router identity key that the authority uses
  116. in its role as an ordinary router.)
  117. Routers periodically upload signed "routers descriptors" to the
  118. directory authorities describing their keys, capabilities, and other
  119. information. Routers may also upload signed "extra info documents"
  120. containing information that is not required for the Tor protocol.
  121. Directory authorities serve router descriptors indexed by router
  122. identity, or by hash of the descriptor.
  123. Routers may act as directory caches to reduce load on the directory
  124. authorities. They announce this in their descriptors.
  125. Periodically, each directory authority generates a view of
  126. the current descriptors and status for known routers. They send a
  127. signed summary of this view (a "status vote") to the other
  128. authorities. The authorities compute the result of this vote, and sign
  129. a "consensus status" document containing the result of the vote.
  130. Directory caches download, cache, and re-serve consensus documents.
  131. Clients, directory caches, and directory authorities all use consensus
  132. documents to find out when their list of routers is out-of-date.
  133. (Directory authorities also use vote statuses.) If it is, they download
  134. any missing router descriptors. Clients download missing descriptors
  135. from caches; caches and authorities download from authorities.
  136. Descriptors are downloaded by the hash of the descriptor, not by the
  137. server's identity key: this prevents servers from attacking clients by
  138. giving them descriptors nobody else uses.
  139. All directory information is uploaded and downloaded with HTTP.
  140. [Authorities also generate and caches also cache documents produced and
  141. used by earlier versions of this protocol; see dir-spec-v1.txt and
  142. dir-spec-v2.txt for notes on those versions.]
  143. 1.1. What's different from version 2?
  144. Clients used to download multiple network status documents,
  145. corresponding roughly to "status votes" above. They would compute the
  146. result of the vote on the client side.
  147. Authorities used to sign documents using the same private keys they used
  148. for their roles as routers. This forced them to keep these extremely
  149. sensitive keys in memory unencrypted.
  150. All of the information in extra-info documents used to be kept in the
  151. main descriptors.
  152. 1.2. Document meta-format
  153. Router descriptors, directories, and running-routers documents all obey the
  154. following lightweight extensible information format.
  155. The highest level object is a Document, which consists of one or more
  156. Items. Every Item begins with a KeywordLine, followed by zero or more
  157. Objects. A KeywordLine begins with a Keyword, optionally followed by
  158. whitespace and more non-newline characters, and ends with a newline. A
  159. Keyword is a sequence of one or more characters in the set [A-Za-z0-9-].
  160. An Object is a block of encoded data in pseudo-Open-PGP-style
  161. armor. (cf. RFC 2440)
  162. More formally:
  163. NL = The ascii LF character (hex value 0x0a).
  164. Document ::= (Item | NL)+
  165. Item ::= KeywordLine Object*
  166. KeywordLine ::= Keyword NL | Keyword WS ArgumentChar+ NL
  167. Keyword = KeywordChar+
  168. KeywordChar ::= 'A' ... 'Z' | 'a' ... 'z' | '0' ... '9' | '-'
  169. ArgumentChar ::= any printing ASCII character except NL.
  170. WS = (SP | TAB)+
  171. Object ::= BeginLine Base-64-encoded-data EndLine
  172. BeginLine ::= "-----BEGIN " Keyword "-----" NL
  173. EndLine ::= "-----END " Keyword "-----" NL
  174. The BeginLine and EndLine of an Object must use the same keyword.
  175. When interpreting a Document, software MUST ignore any KeywordLine that
  176. starts with a keyword it doesn't recognize; future implementations MUST NOT
  177. require current clients to understand any KeywordLine not currently
  178. described.
  179. The "opt" keyword was used until Tor 0.1.2.5-alpha for non-critical future
  180. extensions. All implementations MUST ignore any item of the form "opt
  181. keyword ....." when they would not recognize "keyword ....."; and MUST
  182. treat "opt keyword ....." as synonymous with "keyword ......" when keyword
  183. is recognized.
  184. Implementations before 0.1.2.5-alpha rejected any document with a
  185. KeywordLine that started with a keyword that they didn't recognize.
  186. When generating documents that need to be read by older versions of Tor,
  187. implementations MUST prefix items not recognized by older versions of
  188. Tor with an "opt" until those versions of Tor are obsolete. [Note that
  189. key certificates, status vote documents, extra info documents, and
  190. status consensus documents will never be read by older versions of Tor.]
  191. Other implementations that want to extend Tor's directory format MAY
  192. introduce their own items. The keywords for extension items SHOULD start
  193. with the characters "x-" or "X-", to guarantee that they will not conflict
  194. with keywords used by future versions of Tor.
  195. In our document descriptions below, we tag Items with a multiplicity in
  196. brackets. Possible tags are:
  197. "At start, exactly once": These items MUST occur in every instance of
  198. the document type, and MUST appear exactly once, and MUST be the
  199. first item in their documents.
  200. "Exactly once": These items MUST occur exactly one time in every
  201. instance of the document type.
  202. "At end, exactly once": These items MUST occur in every instance of
  203. the document type, and MUST appear exactly once, and MUST be the
  204. last item in their documents.
  205. "At most once": These items MAY occur zero or one times in any
  206. instance of the document type, but MUST NOT occur more than once.
  207. "Any number": These items MAY occur zero, one, or more times in any
  208. instance of the document type.
  209. "Once or more": These items MUST occur at least once in any instance
  210. of the document type, and MAY occur more.
  211. 1.3. Signing documents
  212. Every signable document below is signed in a similar manner, using a
  213. given "Initial Item", a final "Signature Item", a digest algorithm, and
  214. a signing key.
  215. The Initial Item must be the first item in the document.
  216. The Signature Item has the following format:
  217. <signature item keyword> [arguments] NL SIGNATURE NL
  218. The "SIGNATURE" Object contains a signature (using the signing key) of
  219. the PKCS1-padded digest of the entire document, taken from the
  220. beginning of the Initial item, through the newline after the Signature
  221. Item's keyword and its arguments.
  222. Unless otherwise, the digest algorithm is SHA-1.
  223. All documents are invalid unless signed with the correct signing key.
  224. The "Digest" of a document, unless stated otherwise, is its digest *as
  225. signed by this signature scheme*.
  226. 1.4. Voting timeline
  227. Every consensus document has a "valid-after" (VA) time, a "fresh-until"
  228. (FU) time and a "valid-until" (VU) time. VA MUST precede FU, which MUST
  229. in turn precede VU. Times are chosen so that every consensus will be
  230. "fresh" until the next consensus becomes valid, and "valid" for a while
  231. after. At least 3 consensuses should be valid at any given time.
  232. The timeline for a given consensus is as follows:
  233. VA-DistSeconds-VoteSeconds: The authorities exchange votes.
  234. VA-DistSeconds-VoteSeconds/2: The authorities try to download any
  235. votes they don't have.
  236. VA-DistSeconds: The authorities calculate the consensus and exchange
  237. signatures.
  238. VA-DistSeconds/2: The authorities try to download any signatures
  239. they don't have.
  240. VA: All authorities have a multiply signed consensus.
  241. VA ... FU: Caches download the consensus. (Note that since caches have
  242. no way of telling what VA and FU are until they have downloaded
  243. the consensus, they assume that the present consensus's VA is
  244. equal to the previous one's FU, and that its FU is one interval after
  245. that.)
  246. FU: The consensus is no longer the freshest consensus.
  247. FU ... (the current consensus's VU): Clients download the consensus.
  248. (See note above: clients guess that the next consensus's FU will be
  249. two intervals after the current VA.)
  250. VU: The consensus is no longer valid.
  251. VoteSeconds and DistSeconds MUST each be at least 20 seconds; FU-VA and
  252. VU-FU MUST each be at least 5 minutes.
  253. 2. Router operation and formats
  254. ORs SHOULD generate a new router descriptor and a new extra-info
  255. document whenever any of the following events have occurred:
  256. - A period of time (18 hrs by default) has passed since the last
  257. time a descriptor was generated.
  258. - A descriptor field other than bandwidth or uptime has changed.
  259. - Bandwidth has changed by a factor of 2 from the last time a
  260. descriptor was generated, and at least a given interval of time
  261. (20 mins by default) has passed since then.
  262. - Its uptime has been reset (by restarting).
  263. [XXX this list is incomplete; see router_differences_are_cosmetic()
  264. in routerlist.c for others]
  265. ORs SHOULD NOT publish a new router descriptor or extra-info document
  266. if none of the above events have occurred and not much time has passed
  267. (12 hours by default).
  268. After generating a descriptor, ORs upload them to every directory
  269. authority they know, by posting them (in order) to the URL
  270. http://<hostname:port>/tor/
  271. 2.1. Router descriptor format
  272. Router descriptors consist of the following items. For backward
  273. compatibility, there should be an extra NL at the end of each router
  274. descriptor.
  275. In lines that take multiple arguments, extra arguments SHOULD be
  276. accepted and ignored. Many of the nonterminals below are defined in
  277. section 2.3.
  278. "router" nickname address ORPort SOCKSPort DirPort NL
  279. [At start, exactly once.]
  280. Indicates the beginning of a router descriptor. "nickname" must be a
  281. valid router nickname as specified in 2.3. "address" must be an IPv4
  282. address in dotted-quad format. The last three numbers indicate the
  283. TCP ports at which this OR exposes functionality. ORPort is a port at
  284. which this OR accepts TLS connections for the main OR protocol;
  285. SOCKSPort is deprecated and should always be 0; and DirPort is the
  286. port at which this OR accepts directory-related HTTP connections. If
  287. any port is not supported, the value 0 is given instead of a port
  288. number. (At least one of DirPort and ORPort SHOULD be set;
  289. authorities MAY reject any descriptor with both DirPort and ORPort of
  290. 0.)
  291. "bandwidth" bandwidth-avg bandwidth-burst bandwidth-observed NL
  292. [Exactly once]
  293. Estimated bandwidth for this router, in bytes per second. The
  294. "average" bandwidth is the volume per second that the OR is willing to
  295. sustain over long periods; the "burst" bandwidth is the volume that
  296. the OR is willing to sustain in very short intervals. The "observed"
  297. value is an estimate of the capacity this server can handle. The
  298. server remembers the max bandwidth sustained output over any ten
  299. second period in the past day, and another sustained input. The
  300. "observed" value is the lesser of these two numbers.
  301. "platform" string NL
  302. [At most once]
  303. A human-readable string describing the system on which this OR is
  304. running. This MAY include the operating system, and SHOULD include
  305. the name and version of the software implementing the Tor protocol.
  306. "published" YYYY-MM-DD HH:MM:SS NL
  307. [Exactly once]
  308. The time, in GMT, when this descriptor (and its corresponding
  309. extra-info document if any) was generated.
  310. "fingerprint" fingerprint NL
  311. [At most once]
  312. A fingerprint (a HASH_LEN-byte of asn1 encoded public key, encoded in
  313. hex, with a single space after every 4 characters) for this router's
  314. identity key. A descriptor is considered invalid (and MUST be
  315. rejected) if the fingerprint line does not match the public key.
  316. [We didn't start parsing this line until Tor 0.1.0.6-rc; it should
  317. be marked with "opt" until earlier versions of Tor are obsolete.]
  318. "hibernating" bool NL
  319. [At most once]
  320. If the value is 1, then the Tor server was hibernating when the
  321. descriptor was published, and shouldn't be used to build circuits.
  322. [We didn't start parsing this line until Tor 0.1.0.6-rc; it should be
  323. marked with "opt" until earlier versions of Tor are obsolete.]
  324. "uptime" number NL
  325. [At most once]
  326. The number of seconds that this OR process has been running.
  327. "onion-key" NL a public key in PEM format
  328. [Exactly once]
  329. This key is used to encrypt EXTEND cells for this OR. The key MUST be
  330. accepted for at least 1 week after any new key is published in a
  331. subsequent descriptor. It MUST be 1024 bits.
  332. "signing-key" NL a public key in PEM format
  333. [Exactly once]
  334. The OR's long-term identity key. It MUST be 1024 bits.
  335. "accept" exitpattern NL
  336. "reject" exitpattern NL
  337. [Any number]
  338. These lines describe an "exit policy": the rules that an OR follows
  339. when deciding whether to allow a new stream to a given address. The
  340. 'exitpattern' syntax is described below. There MUST be at least one
  341. such entry. The rules are considered in order; if no rule matches,
  342. the address will be accepted. For clarity, the last such entry SHOULD
  343. be accept *:* or reject *:*.
  344. "router-signature" NL Signature NL
  345. [At end, exactly once]
  346. The "SIGNATURE" object contains a signature of the PKCS1-padded
  347. hash of the entire router descriptor, taken from the beginning of the
  348. "router" line, through the newline after the "router-signature" line.
  349. The router descriptor is invalid unless the signature is performed
  350. with the router's identity key.
  351. "contact" info NL
  352. [At most once]
  353. Describes a way to contact the server's administrator, preferably
  354. including an email address and a PGP key fingerprint.
  355. "family" names NL
  356. [At most once]
  357. 'Names' is a space-separated list of server nicknames or
  358. hexdigests. If two ORs list one another in their "family" entries,
  359. then OPs should treat them as a single OR for the purpose of path
  360. selection.
  361. For example, if node A's descriptor contains "family B", and node B's
  362. descriptor contains "family A", then node A and node B should never
  363. be used on the same circuit.
  364. "read-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM,NUM,NUM... NL
  365. [At most once]
  366. "write-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM,NUM,NUM... NL
  367. [At most once]
  368. Declare how much bandwidth the OR has used recently. Usage is divided
  369. into intervals of NSEC seconds. The YYYY-MM-DD HH:MM:SS field
  370. defines the end of the most recent interval. The numbers are the
  371. number of bytes used in the most recent intervals, ordered from
  372. oldest to newest.
  373. [We didn't start parsing these lines until Tor 0.1.0.6-rc; they should
  374. be marked with "opt" until earlier versions of Tor are obsolete.]
  375. [See also migration notes in section 2.2.1.]
  376. "eventdns" bool NL
  377. [At most once]
  378. Declare whether this version of Tor is using the newer enhanced
  379. dns logic. Versions of Tor with this field set to false SHOULD NOT
  380. be used for reverse hostname lookups.
  381. [This option is obsolete. All Tor current servers should be presumed
  382. to have the evdns backend.]
  383. "caches-extra-info" NL
  384. [At most once.]
  385. Present only if this router is a directory cache that provides
  386. extra-info documents.
  387. [Versions before 0.2.0.1-alpha don't recognize this, and versions
  388. before 0.1.2.5-alpha will reject descriptors containing it unless
  389. it is prefixed with "opt"; it should be so prefixed until these
  390. versions are obsolete.]
  391. "extra-info-digest" digest NL
  392. [At most once]
  393. "Digest" is a hex-encoded digest (using upper-case characters) of the
  394. router's extra-info document, as signed in the router's extra-info
  395. (that is, not including the signature). (If this field is absent, the
  396. router is not uploading a corresponding extra-info document.)
  397. [Versions before 0.2.0.1-alpha don't recognize this, and versions
  398. before 0.1.2.5-alpha will reject descriptors containing it unless
  399. it is prefixed with "opt"; it should be so prefixed until these
  400. versions are obsolete.]
  401. "hidden-service-dir" *(SP VersionNum) NL
  402. [At most once.]
  403. Present only if this router stores and serves hidden service
  404. descriptors. If any VersionNum(s) are specified, this router
  405. supports those descriptor versions. If none are specified, it
  406. defaults to version 2 descriptors.
  407. [Versions of Tor before 0.1.2.5-alpha rejected router descriptors
  408. with unrecognized items; the protocols line should be preceded with
  409. an "opt" until these Tors are obsolete.]
  410. "protocols" SP "Link" SP LINK-VERSION-LIST SP "Circuit" SP
  411. CIRCUIT-VERSION-LIST NL
  412. [At most once.]
  413. Both lists are space-separated sequences of numbers, to indicate which
  414. protocols the server supports. As of 30 Mar 2008, specified
  415. protocols are "Link 1 2 Circuit 1". See section 4.1 of tor-spec.txt
  416. for more information about link protocol versions.
  417. [Versions of Tor before 0.1.2.5-alpha rejected router descriptors
  418. with unrecognized items; the protocols line should be preceded with
  419. an "opt" until these Tors are obsolete.]
  420. "allow-single-hop-exits" NL
  421. [At most once.]
  422. Present only if the router allows single-hop circuits to make exit
  423. connections. Most Tor servers do not support this: this is
  424. included for specialized controllers designed to support perspective
  425. access and such.
  426. 2.2. Extra-info documents
  427. Extra-info documents consist of the following items:
  428. "extra-info" Nickname Fingerprint NL
  429. [At start, exactly once.]
  430. Identifies what router this is an extra info descriptor for.
  431. Fingerprint is encoded in hex (using upper-case letters), with
  432. no spaces.
  433. "published" YYYY-MM-DD HH:MM:SS NL
  434. [Exactly once.]
  435. The time, in GMT, when this document (and its corresponding router
  436. descriptor if any) was generated. It MUST match the published time
  437. in the corresponding router descriptor.
  438. "read-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM,NUM,NUM... NL
  439. [At most once.]
  440. "write-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM,NUM,NUM... NL
  441. [At most once.]
  442. As documented in 2.1 above. See migration notes in section 2.2.1.
  443. "geoip-db-digest" Digest NL
  444. [At most once.]
  445. SHA1 digest of the GeoIP database file that is used to resolve IP
  446. addresses to country codes.
  447. ("geoip-start" YYYY-MM-DD HH:MM:SS NL)
  448. ("geoip-client-origins" CC=N,CC=N,... NL)
  449. Only generated by bridge routers (see blocking.pdf), and only
  450. when they have been configured with a geoip database.
  451. Non-bridges SHOULD NOT generate these fields. Contains a list
  452. of mappings from two-letter country codes (CC) to the number
  453. of clients that have connected to that bridge from that
  454. country (approximate, and rounded up to the nearest multiple of 8
  455. in order to hamper traffic analysis). A country is included
  456. only if it has at least one address. The time in
  457. "geoip-start" is the time at which we began collecting geoip
  458. statistics.
  459. "geoip-start" and "geoip-client-origins" have been replaced by
  460. "bridge-stats-end" and "bridge-stats-ips" in 0.2.2.4-alpha. The
  461. reason is that the measurement interval with "geoip-stats" as
  462. determined by subtracting "geoip-start" from "published" could
  463. have had a variable length, whereas the measurement interval in
  464. 0.2.2.4-alpha and later is set to be exactly 24 hours long. In
  465. order to clearly distinguish the new measurement intervals from
  466. the old ones, the new keywords have been introduced.
  467. "bridge-stats-end" YYYY-MM-DD HH:MM:SS (NSEC s) NL
  468. [At most once.]
  469. YYYY-MM-DD HH:MM:SS defines the end of the included measurement
  470. interval of length NSEC seconds (86400 seconds by default).
  471. A "bridge-stats-end" line, as well as any other "bridge-*" line,
  472. is only added when the relay has been running as a bridge for at
  473. least 24 hours.
  474. "bridge-ips" CC=N,CC=N,... NL
  475. [At most once.]
  476. List of mappings from two-letter country codes to the number of
  477. unique IP addresses that have connected from that country to the
  478. bridge and which are no known relays, rounded up to the nearest
  479. multiple of 8.
  480. "dirreq-stats-end" YYYY-MM-DD HH:MM:SS (NSEC s) NL
  481. [At most once.]
  482. YYYY-MM-DD HH:MM:SS defines the end of the included measurement
  483. interval of length NSEC seconds (86400 seconds by default).
  484. A "dirreq-stats-end" line, as well as any other "dirreq-*" line,
  485. is only added when the relay has opened its Dir port and after 24
  486. hours of measuring directory requests.
  487. "dirreq-v2-ips" CC=N,CC=N,... NL
  488. [At most once.]
  489. "dirreq-v3-ips" CC=N,CC=N,... NL
  490. [At most once.]
  491. List of mappings from two-letter country codes to the number of
  492. unique IP addresses that have connected from that country to
  493. request a v2/v3 network status, rounded up to the nearest multiple
  494. of 8. Only those IP addresses are counted that the directory can
  495. answer with a 200 OK status code.
  496. "dirreq-v2-reqs" CC=N,CC=N,... NL
  497. [At most once.]
  498. "dirreq-v3-reqs" CC=N,CC=N,... NL
  499. [At most once.]
  500. List of mappings from two-letter country codes to the number of
  501. requests for v2/v3 network statuses from that country, rounded up
  502. to the nearest multiple of 8. Only those requests are counted that
  503. the directory can answer with a 200 OK status code.
  504. "dirreq-v2-share" num% NL
  505. [At most once.]
  506. "dirreq-v3-share" num% NL
  507. [At most once.]
  508. The share of v2/v3 network status requests that the directory
  509. expects to receive from clients based on its advertised bandwidth
  510. compared to the overall network bandwidth capacity. Shares are
  511. formatted in percent with two decimal places. Shares are
  512. calculated as means over the whole 24-hour interval.
  513. "dirreq-v2-resp" status=num,... NL
  514. [At most once.]
  515. "dirreq-v3-resp" status=nul,... NL
  516. [At most once.]
  517. List of mappings from response statuses to the number of requests
  518. for v2/v3 network statuses that were answered with that response
  519. status, rounded up to the nearest multiple of 4. Only response
  520. statuses with at least 1 response are reported. New response
  521. statuses can be added at any time. The current list of response
  522. statuses is as follows:
  523. "ok": a network status request is answered; this number
  524. corresponds to the sum of all requests as reported in
  525. "dirreq-v2-reqs" or "dirreq-v3-reqs", respectively, before
  526. rounding up.
  527. "not-enough-sigs: a version 3 network status is not signed by a
  528. sufficient number of requested authorities.
  529. "unavailable": a requested network status object is unavailable.
  530. "not-found": a requested network status is not found.
  531. "not-modified": a network status has not been modified since the
  532. If-Modified-Since time that is included in the request.
  533. "busy": the directory is busy.
  534. "dirreq-v2-direct-dl" key=val,... NL
  535. [At most once.]
  536. "dirreq-v3-direct-dl" key=val,... NL
  537. [At most once.]
  538. "dirreq-v2-tunneled-dl" key=val,... NL
  539. [At most once.]
  540. "dirreq-v3-tunneled-dl" key=val,... NL
  541. [At most once.]
  542. List of statistics about possible failures in the download process
  543. of v2/v3 network statuses. Requests are either "direct"
  544. HTTP-encoded requests over the relay's directory port, or
  545. "tunneled" requests using a BEGIN_DIR cell over the relay's OR
  546. port. The list of possible statistics can change, and statistics
  547. can be left out from reporting. The current list of statistics is
  548. as follows:
  549. Successful downloads and failures:
  550. "complete": a client has finished the download successfully.
  551. "timeout": a download did not finish within 10 minutes after
  552. starting to send the response.
  553. "running": a download is still running at the end of the
  554. measurement period for less than 10 minutes after starting to
  555. send the response.
  556. Download times:
  557. "min", "max": smallest and largest measured bandwidth in B/s.
  558. "d[1-4,6-9]": 1st to 4th and 6th to 9th decile of measured
  559. bandwidth in B/s. For a given decile i, i/10 of all downloads
  560. had a smaller bandwidth than di, and (10-i)/10 of all downloads
  561. had a larger bandwidth than di.
  562. "q[1,3]": 1st and 3rd quartile of measured bandwidth in B/s. One
  563. fourth of all downloads had a smaller bandwidth than q1, one
  564. fourth of all downloads had a larger bandwidth than q3, and the
  565. remaining half of all downloads had a bandwidth between q1 and
  566. q3.
  567. "md": median of measured bandwidth in B/s. Half of the downloads
  568. had a smaller bandwidth than md, the other half had a larger
  569. bandwidth than md.
  570. "dirreq-read-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM... NL
  571. [At most once]
  572. "dirreq-write-history" YYYY-MM-DD HH:MM:SS (NSEC s) NUM,NUM,NUM... NL
  573. [At most once]
  574. Declare how much bandwidth the OR has spent on answering directory
  575. requests. Usage is divided into intervals of NSEC seconds. The
  576. YYYY-MM-DD HH:MM:SS field defines the end of the most recent
  577. interval. The numbers are the number of bytes used in the most
  578. recent intervals, ordered from oldest to newest.
  579. "entry-stats-end" YYYY-MM-DD HH:MM:SS (NSEC s) NL
  580. [At most once.]
  581. YYYY-MM-DD HH:MM:SS defines the end of the included measurement
  582. interval of length NSEC seconds (86400 seconds by default).
  583. An "entry-stats-end" line, as well as any other "entry-*"
  584. line, is first added after the relay has been running for at least
  585. 24 hours.
  586. "entry-ips" CC=N,CC=N,... NL
  587. [At most once.]
  588. List of mappings from two-letter country codes to the number of
  589. unique IP addresses that have connected from that country to the
  590. relay and which are no known other relays, rounded up to the
  591. nearest multiple of 8.
  592. "cell-stats-end" YYYY-MM-DD HH:MM:SS (NSEC s) NL
  593. [At most once.]
  594. YYYY-MM-DD HH:MM:SS defines the end of the included measurement
  595. interval of length NSEC seconds (86400 seconds by default).
  596. A "cell-stats-end" line, as well as any other "cell-*" line,
  597. is first added after the relay has been running for at least 24
  598. hours.
  599. "cell-processed-cells" num,...,num NL
  600. [At most once.]
  601. Mean number of processed cells per circuit, subdivided into
  602. deciles of circuits by the number of cells they have processed in
  603. descending order from loudest to quietest circuits.
  604. "cell-queued-cells" num,...,num NL
  605. [At most once.]
  606. Mean number of cells contained in queues by circuit decile. These
  607. means are calculated by 1) determining the mean number of cells in
  608. a single circuit between its creation and its termination and 2)
  609. calculating the mean for all circuits in a given decile as
  610. determined in "cell-processed-cells". Numbers have a precision of
  611. two decimal places.
  612. "cell-time-in-queue" num,...,num NL
  613. [At most once.]
  614. Mean time cells spend in circuit queues in milliseconds. Times are
  615. calculated by 1) determining the mean time cells spend in the
  616. queue of a single circuit and 2) calculating the mean for all
  617. circuits in a given decile as determined in
  618. "cell-processed-cells".
  619. "cell-circuits-per-decile" num NL
  620. [At most once.]
  621. Mean number of circuits that are included in any of the deciles,
  622. rounded up to the next integer.
  623. "exit-stats-end" YYYY-MM-DD HH:MM:SS (NSEC s) NL
  624. [At most once.]
  625. YYYY-MM-DD HH:MM:SS defines the end of the included measurement
  626. interval of length NSEC seconds (86400 seconds by default).
  627. An "exit-stats-end" line, as well as any other "exit-*" line, is
  628. first added after the relay has been running for at least 24 hours
  629. and only if the relay permits exiting (where exiting to a single
  630. port and IP address is sufficient).
  631. "exit-kibibytes-written" port=N,port=N,... NL
  632. [At most once.]
  633. "exit-kibibytes-read" port=N,port=N,... NL
  634. [At most once.]
  635. List of mappings from ports to the number of kibibytes that the
  636. relay has written to or read from exit connections to that port,
  637. rounded up to the next full kibibyte.
  638. "exit-streams-opened" port=N,port=N,... NL
  639. [At most once.]
  640. List of mappings from ports to the number of opened exit streams
  641. to that port, rounded up to the nearest multiple of 4.
  642. "router-signature" NL Signature NL
  643. [At end, exactly once.]
  644. A document signature as documented in section 1.3, using the
  645. initial item "extra-info" and the final item "router-signature",
  646. signed with the router's identity key.
  647. 2.2.1. Moving history fields to extra-info documents.
  648. Tools that want to use the read-history and write-history values SHOULD
  649. download extra-info documents as well as router descriptors. Such
  650. tools SHOULD accept history values from both sources; if they appear in
  651. both documents, the values in the extra-info documents are authoritative.
  652. New versions of Tor no longer generate router descriptors
  653. containing read-history or write-history. Tools should continue to
  654. accept read-history and write-history values in router descriptors
  655. produced by older versions of Tor until all Tor versions earlier
  656. than 0.2.0.x are obsolete.
  657. 2.3. Nonterminals in router descriptors
  658. nickname ::= between 1 and 19 alphanumeric characters ([A-Za-z0-9]),
  659. case-insensitive.
  660. hexdigest ::= a '$', followed by 40 hexadecimal characters
  661. ([A-Fa-f0-9]). [Represents a server by the digest of its identity
  662. key.]
  663. exitpattern ::= addrspec ":" portspec
  664. portspec ::= "*" | port | port "-" port
  665. port ::= an integer between 1 and 65535, inclusive.
  666. [Some implementations incorrectly generate ports with value 0.
  667. Implementations SHOULD accept this, and SHOULD NOT generate it.
  668. Connections to port 0 are never permitted.]
  669. addrspec ::= "*" | ip4spec | ip6spec
  670. ipv4spec ::= ip4 | ip4 "/" num_ip4_bits | ip4 "/" ip4mask
  671. ip4 ::= an IPv4 address in dotted-quad format
  672. ip4mask ::= an IPv4 mask in dotted-quad format
  673. num_ip4_bits ::= an integer between 0 and 32
  674. ip6spec ::= ip6 | ip6 "/" num_ip6_bits
  675. ip6 ::= an IPv6 address, surrounded by square brackets.
  676. num_ip6_bits ::= an integer between 0 and 128
  677. bool ::= "0" | "1"
  678. 3. Formats produced by directory authorities.
  679. Every authority has two keys used in this protocol: a signing key, and
  680. an authority identity key. (Authorities also have a router identity
  681. key used in their role as a router and by earlier versions of the
  682. directory protocol.) The identity key is used from time to time to
  683. sign new key certificates using new signing keys; it is very sensitive.
  684. The signing key is used to sign key certificates and status documents.
  685. There are three kinds of documents generated by directory authorities:
  686. Key certificates
  687. Status votes
  688. Status consensuses
  689. Each is discussed below.
  690. 3.1. Key certificates
  691. Key certificates consist of the following items:
  692. "dir-key-certificate-version" version NL
  693. [At start, exactly once.]
  694. Determines the version of the key certificate. MUST be "3" for
  695. the protocol described in this document. Implementations MUST
  696. reject formats they don't understand.
  697. "dir-address" IPPort NL
  698. [At most once]
  699. An IP:Port for this authority's directory port.
  700. "fingerprint" fingerprint NL
  701. [Exactly once.]
  702. Hexadecimal encoding without spaces based on the authority's
  703. identity key.
  704. "dir-identity-key" NL a public key in PEM format
  705. [Exactly once.]
  706. The long-term authority identity key for this authority. This key
  707. SHOULD be at least 2048 bits long; it MUST NOT be shorter than
  708. 1024 bits.
  709. "dir-key-published" YYYY-MM-DD HH:MM:SS NL
  710. [Exactly once.]
  711. The time (in GMT) when this document and corresponding key were
  712. last generated.
  713. "dir-key-expires" YYYY-MM-DD HH:MM:SS NL
  714. [Exactly once.]
  715. A time (in GMT) after which this key is no longer valid.
  716. "dir-signing-key" NL a key in PEM format
  717. [Exactly once.]
  718. The directory server's public signing key. This key MUST be at
  719. least 1024 bits, and MAY be longer.
  720. "dir-key-crosscert" NL CrossSignature NL
  721. [At most once.]
  722. NOTE: Authorities MUST include this field in all newly generated
  723. certificates. A future version of this specification will make
  724. the field required.
  725. CrossSignature is a signature, made using the certificate's signing
  726. key, of the digest of the PKCS1-padded hash of the certificate's
  727. identity key. For backward compatibility with broken versions of the
  728. parser, we wrap the base64-encoded signature in -----BEGIN ID
  729. SIGNATURE---- and -----END ID SIGNATURE----- tags. Implementations
  730. MUST allow the "ID " portion to be omitted, however.
  731. When encountering a certificate with a dir-key-crosscert entry,
  732. implementations MUST verify that the signature is a correct signature
  733. of the hash of the identity key using the signing key.
  734. "dir-key-certification" NL Signature NL
  735. [At end, exactly once.]
  736. A document signature as documented in section 1.3, using the
  737. initial item "dir-key-certificate-version" and the final item
  738. "dir-key-certification", signed with the authority identity key.
  739. Authorities MUST generate a new signing key and corresponding
  740. certificate before the key expires.
  741. 3.2. Vote and consensus status documents
  742. Votes and consensuses are more strictly formatted then other documents
  743. in this specification, since different authorities must be able to
  744. generate exactly the same consensus given the same set of votes.
  745. The procedure for deciding when to generate vote and consensus status
  746. documents are described in section 1.4 on the voting timeline.
  747. Status documents contain a preamble, an authority section, a list of
  748. router status entries, and one or more footer signature, in that order.
  749. Unlike other formats described above, a SP in these documents must be a
  750. single space character (hex 20).
  751. Some items appear only in votes, and some items appear only in
  752. consensuses. Unless specified, items occur in both.
  753. The preamble contains the following items. They MUST occur in the
  754. order given here:
  755. "network-status-version" SP version NL.
  756. [At start, exactly once.]
  757. A document format version. For this specification, the version is
  758. "3".
  759. "vote-status" SP type NL
  760. [Exactly once.]
  761. The status MUST be "vote" or "consensus", depending on the type of
  762. the document.
  763. "consensus-methods" SP IntegerList NL
  764. [Exactly once for votes; does not occur in consensuses.]
  765. A space-separated list of supported methods for generating
  766. consensuses from votes. See section 3.4.1 for details. Method "1"
  767. MUST be included.
  768. "consensus-method" SP Integer NL
  769. [Exactly once for consensuses; does not occur in votes.]
  770. See section 3.4.1 for details.
  771. (Only included when the vote is generated with consensus-method 2 or
  772. later.)
  773. "published" SP YYYY-MM-DD SP HH:MM:SS NL
  774. [Exactly once for votes; does not occur in consensuses.]
  775. The publication time for this status document (if a vote).
  776. "valid-after" SP YYYY-MM-DD SP HH:MM:SS NL
  777. [Exactly once.]
  778. The start of the Interval for this vote. Before this time, the
  779. consensus document produced from this vote should not be used.
  780. See 1.4 for voting timeline information.
  781. "fresh-until" SP YYYY-MM-DD SP HH:MM:SS NL
  782. [Exactly once.]
  783. The time at which the next consensus should be produced; before this
  784. time, there is no point in downloading another consensus, since there
  785. won't be a new one. See 1.4 for voting timeline information.
  786. "valid-until" SP YYYY-MM-DD SP HH:MM:SS NL
  787. [Exactly once.]
  788. The end of the Interval for this vote. After this time, the
  789. consensus produced by this vote should not be used. See 1.4 for
  790. voting timeline information.
  791. "voting-delay" SP VoteSeconds SP DistSeconds NL
  792. [Exactly once.]
  793. VoteSeconds is the number of seconds that we will allow to collect
  794. votes from all authorities; DistSeconds is the number of seconds
  795. we'll allow to collect signatures from all authorities. See 1.4 for
  796. voting timeline information.
  797. "client-versions" SP VersionList NL
  798. [At most once.]
  799. A comma-separated list of recommended client versions, in
  800. ascending order. If absent, no opinion is held about client
  801. versions.
  802. "server-versions" SP VersionList NL
  803. [At most once.]
  804. A comma-separated list of recommended server versions, in
  805. ascending order. If absent, no opinion is held about server
  806. versions.
  807. "known-flags" SP FlagList NL
  808. [Exactly once.]
  809. A space-separated list of all of the flags that this document
  810. might contain. A flag is "known" either because the authority
  811. knows about them and might set them (if in a vote), or because
  812. enough votes were counted for the consensus for an authoritative
  813. opinion to have been formed about their status.
  814. "params" SP [Parameters] NL
  815. [At most once]
  816. Parameter ::= Keyword '=' Int32
  817. Int32 ::= A decimal integer between -2147483648 and 2147483647.
  818. Parameters ::= Parameter | Parameters SP Parameter
  819. The parameters list, if present, contains a space-separated list of
  820. case-sensitive key-value pairs, sorted in lexical order by
  821. their keyword. Each parameter has its own meaning.
  822. (Only included when the vote is generated with consensus-method 7 or
  823. later.)
  824. Commonly used "param" arguments at this point include:
  825. "circwindow" -- the default package window that circuits should
  826. be established with. It started out at 1000 cells, but some
  827. research indicates that a lower value would mean fewer cells in
  828. transit in the network at any given time. Obeyed by Tor 0.2.1.20
  829. and later.
  830. "CircuitPriorityHalflifeMsec" -- the halflife parameter used when
  831. weighting which circuit will send the next cell. Obeyed by Tor
  832. 0.2.2.10-alpha and later. (Versions of Tor between 0.2.2.7-alpha
  833. and 0.2.2.10-alpha recognized a "CircPriorityHalflifeMsec" parameter,
  834. but mishandled it badly.)
  835. "perconnbwrate" and "perconnbwburst" -- if set, each relay sets
  836. up a separate token bucket for every client OR connection,
  837. and rate limits that connection indepedently. Typically left
  838. unset, except when used for performance experiments around trac
  839. entry 1750. Only honored by relays running Tor 0.2.2.16-alpha
  840. and later. (Note that relays running 0.2.2.7-alpha through
  841. 0.2.2.14-alpha looked for bwconnrate and bwconnburst, but then
  842. did the wrong thing with them; see bug 1830 for details.)
  843. "refuseunknownexits" -- if set and non-zero, exit relays look at
  844. the previous hop of circuits that ask to open an exit stream,
  845. and refuse to exit if they don't recognize it as a relay. The
  846. goal is to make it harder for people to use them as one-hop
  847. proxies. See trac entry 1751 for details.
  848. See also "2.4.5. Consensus parameters governing behavior"
  849. in path-spec.txt for a series of circuit build time related
  850. consensus params.
  851. The authority section of a vote contains the following items, followed
  852. in turn by the authority's current key certificate:
  853. "dir-source" SP nickname SP identity SP address SP IP SP dirport SP
  854. orport NL
  855. [Exactly once, at start]
  856. Describes this authority. The nickname is a convenient identifier
  857. for the authority. The identity is an uppercase hex fingerprint of
  858. the authority's current (v3 authority) identity key. The address is
  859. the server's hostname. The IP is the server's current IP address,
  860. and dirport is its current directory port. XXXXorport
  861. "contact" SP string NL
  862. [At most once.]
  863. An arbitrary string describing how to contact the directory
  864. server's administrator. Administrators should include at least an
  865. email address and a PGP fingerprint.
  866. "legacy-key" SP FINGERPRINT NL
  867. [At most once]
  868. Lists a fingerprint for an obsolete _identity_ key still used
  869. by this authority to keep older clients working. This option
  870. is used to keep key around for a little while in case the
  871. authorities need to migrate many identity keys at once.
  872. (Generally, this would only happen because of a security
  873. vulnerability that affected multiple authorities, like the
  874. Debian OpenSSL RNG bug of May 2008.)
  875. The authority section of a consensus contains groups the following items,
  876. in the order given, with one group for each authority that contributed to
  877. the consensus, with groups sorted by authority identity digest:
  878. "dir-source" SP nickname SP identity SP address SP IP SP dirport SP
  879. orport NL
  880. [Exactly once, at start]
  881. As in the authority section of a vote.
  882. "contact" SP string NL
  883. [At most once.]
  884. As in the authority section of a vote.
  885. "vote-digest" SP digest NL
  886. [Exactly once.]
  887. A digest of the vote from the authority that contributed to this
  888. consensus, as signed (that is, not including the signature).
  889. (Hex, upper-case.)
  890. Each router status entry contains the following items. Router status
  891. entries are sorted in ascending order by identity digest.
  892. "r" SP nickname SP identity SP digest SP publication SP IP SP ORPort
  893. SP DirPort NL
  894. [At start, exactly once.]
  895. "Nickname" is the OR's nickname. "Identity" is a hash of its
  896. identity key, encoded in base64, with trailing equals sign(s)
  897. removed. "Digest" is a hash of its most recent descriptor as
  898. signed (that is, not including the signature), encoded in base64.
  899. "Publication" is the
  900. publication time of its most recent descriptor, in the form
  901. YYYY-MM-DD HH:MM:SS, in GMT. "IP" is its current IP address;
  902. ORPort is its current OR port, "DirPort" is it's current directory
  903. port, or "0" for "none".
  904. "s" SP Flags NL
  905. [At most once.]
  906. A series of space-separated status flags, in alphabetical order.
  907. Currently documented flags are:
  908. "Authority" if the router is a directory authority.
  909. "BadExit" if the router is believed to be useless as an exit node
  910. (because its ISP censors it, because it is behind a restrictive
  911. proxy, or for some similar reason).
  912. "BadDirectory" if the router is believed to be useless as a
  913. directory cache (because its directory port isn't working,
  914. its bandwidth is always throttled, or for some similar
  915. reason).
  916. "Exit" if the router is more useful for building
  917. general-purpose exit circuits than for relay circuits. The
  918. path building algorithm uses this flag; see path-spec.txt.
  919. "Fast" if the router is suitable for high-bandwidth circuits.
  920. "Guard" if the router is suitable for use as an entry guard.
  921. "HSDir" if the router is considered a v2 hidden service directory.
  922. "Named" if the router's identity-nickname mapping is canonical,
  923. and this authority binds names.
  924. "Stable" if the router is suitable for long-lived circuits.
  925. "Running" if the router is currently usable.
  926. "Unnamed" if another router has bound the name used by this
  927. router, and this authority binds names.
  928. "Valid" if the router has been 'validated'.
  929. "V2Dir" if the router implements the v2 directory protocol.
  930. "V3Dir" if the router implements this protocol.
  931. "v" SP version NL
  932. [At most once.]
  933. The version of the Tor protocol that this server is running. If
  934. the value begins with "Tor" SP, the rest of the string is a Tor
  935. version number, and the protocol is "The Tor protocol as supported
  936. by the given version of Tor." Otherwise, if the value begins with
  937. some other string, Tor has upgraded to a more sophisticated
  938. protocol versioning system, and the protocol is "a version of the
  939. Tor protocol more recent than any we recognize."
  940. Directory authorities SHOULD omit version strings they receive from
  941. descriptors if they would cause "v" lines to be over 128 characters
  942. long.
  943. "w" SP "Bandwidth=" INT [SP "Measured=" INT] NL
  944. [At most once.]
  945. An estimate of the bandwidth of this server, in an arbitrary
  946. unit (currently kilobytes per second). Used to weight router
  947. selection.
  948. Additionally, the Measured= keyword is present in votes by
  949. participating bandwidth measurement authorities to indicate
  950. a measured bandwidth currently produced by measuring stream
  951. capacities.
  952. Other weighting keywords may be added later.
  953. Clients MUST ignore keywords they do not recognize.
  954. "p" SP ("accept" / "reject") SP PortList NL
  955. [At most once.]
  956. PortList = PortOrRange
  957. PortList = PortList "," PortOrRange
  958. PortOrRange = INT "-" INT / INT
  959. A list of those ports that this router supports (if 'accept')
  960. or does not support (if 'reject') for exit to "most
  961. addresses".
  962. The footer section is delineated in all votes and consensuses supporting
  963. consensus method 9 and above with the following:
  964. "directory-footer" NL
  965. It contains two subsections, a bandwidths-weights line and a
  966. directory-signature.
  967. The bandwidths-weights line appears At Most Once for a consensus. It does
  968. not appear in votes.
  969. "bandwidth-weights" SP
  970. "Wbd=" INT SP "Wbe=" INT SP "Wbg=" INT SP "Wbm=" INT SP
  971. "Wdb=" INT SP
  972. "Web=" INT SP "Wed=" INT SP "Wee=" INT SP "Weg=" INT SP "Wem=" INT SP
  973. "Wgb=" INT SP "Wgd=" INT SP "Wgg=" INT SP "Wgm=" INT SP
  974. "Wmb=" INT SP "Wmd=" INT SP "Wme=" INT SP "Wmg=" INT SP "Wmm=" INT NL
  975. These values represent the weights to apply to router bandwidths during
  976. path selection. They are sorted in alphabetical order in the list. The
  977. integer values are divided by BW_WEIGHT_SCALE=10000 or the consensus
  978. param "bwweightscale". They are:
  979. Wgg - Weight for Guard-flagged nodes in the guard position
  980. Wgm - Weight for non-flagged nodes in the guard Position
  981. Wgd - Weight for Guard+Exit-flagged nodes in the guard Position
  982. Wmg - Weight for Guard-flagged nodes in the middle Position
  983. Wmm - Weight for non-flagged nodes in the middle Position
  984. Wme - Weight for Exit-flagged nodes in the middle Position
  985. Wmd - Weight for Guard+Exit flagged nodes in the middle Position
  986. Weg - Weight for Guard flagged nodes in the exit Position
  987. Wem - Weight for non-flagged nodes in the exit Position
  988. Wee - Weight for Exit-flagged nodes in the exit Position
  989. Wed - Weight for Guard+Exit-flagged nodes in the exit Position
  990. Wgb - Weight for BEGIN_DIR-supporting Guard-flagged nodes
  991. Wmb - Weight for BEGIN_DIR-supporting non-flagged nodes
  992. Web - Weight for BEGIN_DIR-supporting Exit-flagged nodes
  993. Wdb - Weight for BEGIN_DIR-supporting Guard+Exit-flagged nodes
  994. Wbg - Weight for Guard flagged nodes for BEGIN_DIR requests
  995. Wbm - Weight for non-flagged nodes for BEGIN_DIR requests
  996. Wbe - Weight for Exit-flagged nodes for BEGIN_DIR requests
  997. Wbd - Weight for Guard+Exit-flagged nodes for BEGIN_DIR requests
  998. These values are calculated as specified in Section 3.4.3.
  999. The signature contains the following item, which appears Exactly Once
  1000. for a vote, and At Least Once for a consensus.
  1001. "directory-signature" SP identity SP signing-key-digest NL Signature
  1002. This is a signature of the status document, with the initial item
  1003. "network-status-version", and the signature item
  1004. "directory-signature", using the signing key. (In this case, we take
  1005. the hash through the _space_ after directory-signature, not the
  1006. newline: this ensures that all authorities sign the same thing.)
  1007. "identity" is the hex-encoded digest of the authority identity key of
  1008. the signing authority, and "signing-key-digest" is the hex-encoded
  1009. digest of the current authority signing key of the signing authority.
  1010. 3.3. Assigning flags in a vote
  1011. (This section describes how directory authorities choose which status
  1012. flags to apply to routers, as of Tor 0.2.0.0-alpha-dev. Later directory
  1013. authorities MAY do things differently, so long as clients keep working
  1014. well. Clients MUST NOT depend on the exact behaviors in this section.)
  1015. In the below definitions, a router is considered "active" if it is
  1016. running, valid, and not hibernating.
  1017. "Valid" -- a router is 'Valid' if it is running a version of Tor not
  1018. known to be broken, and the directory authority has not blacklisted
  1019. it as suspicious.
  1020. "Named" -- Directory authority administrators may decide to support name
  1021. binding. If they do, then they must maintain a file of
  1022. nickname-to-identity-key mappings, and try to keep this file consistent
  1023. with other directory authorities. If they don't, they act as clients, and
  1024. report bindings made by other directory authorities (name X is bound to
  1025. identity Y if at least one binding directory lists it, and no directory
  1026. binds X to some other Y'.) A router is called 'Named' if the router
  1027. believes the given name should be bound to the given key.
  1028. Two strategies exist on the current network for deciding on
  1029. values for the Named flag. In the original version, server
  1030. operators were asked to send nickname-identity pairs to a
  1031. mailing list of Naming directory authorities operators. The
  1032. operators were then supposed to add the pairs to their
  1033. mapping files; in practice, they didn't get to this often.
  1034. Newer Naming authorities run a script that registers routers
  1035. in their mapping files once the routers have been online at
  1036. least two weeks, no other router has that nickname, and no
  1037. other router has wanted the nickname for a month. If a router
  1038. has not been online for six months, the router is removed.
  1039. "Unnamed" -- Directory authorities that support naming should vote for a
  1040. router to be 'Unnamed' if its given nickname is mapped to a different
  1041. identity.
  1042. "Running" -- A router is 'Running' if the authority managed to connect to
  1043. it successfully within the last 30 minutes.
  1044. "Stable" -- A router is 'Stable' if it is active, and either its Weighted
  1045. MTBF is at least the median for known active routers or its Weighted MTBF
  1046. corresponds to at least 7 days. Routers are never called Stable if they are
  1047. running a version of Tor known to drop circuits stupidly. (0.1.1.10-alpha
  1048. through 0.1.1.16-rc are stupid this way.)
  1049. To calculate weighted MTBF, compute the weighted mean of the lengths
  1050. of all intervals when the router was observed to be up, weighting
  1051. intervals by $\alpha^n$, where $n$ is the amount of time that has
  1052. passed since the interval ended, and $\alpha$ is chosen so that
  1053. measurements over approximately one month old no longer influence the
  1054. weighted MTBF much.
  1055. [XXXX what happens when we have less than 4 days of MTBF info.]
  1056. "Exit" -- A router is called an 'Exit' iff it allows exits to at
  1057. least two of the ports 80, 443, and 6667 and allows exits to at
  1058. least one /8 address space.
  1059. "Fast" -- A router is 'Fast' if it is active, and its bandwidth is
  1060. either in the top 7/8ths for known active routers or at least 20KB/s.
  1061. "Guard" -- A router is a possible 'Guard' if its Weighted Fractional
  1062. Uptime is at least the median for "familiar" active routers, and if
  1063. its bandwidth is at least median or at least 250KB/s.
  1064. To calculate weighted fractional uptime, compute the fraction
  1065. of time that the router is up in any given day, weighting so that
  1066. downtime and uptime in the past counts less.
  1067. A node is 'familiar' if 1/8 of all active nodes have appeared more
  1068. recently than it, OR it has been around for a few weeks.
  1069. "Authority" -- A router is called an 'Authority' if the authority
  1070. generating the network-status document believes it is an authority.
  1071. "V2Dir" -- A router supports the v2 directory protocol if it has an open
  1072. directory port, and it is running a version of the directory protocol that
  1073. supports the functionality clients need. (Currently, this is
  1074. 0.1.1.9-alpha or later.)
  1075. "V3Dir" -- A router supports the v3 directory protocol if it has an open
  1076. directory port, and it is running a version of the directory protocol that
  1077. supports the functionality clients need. (Currently, this is
  1078. 0.2.0.?????-alpha or later.)
  1079. "HSDir" -- A router is a v2 hidden service directory if it stores and
  1080. serves v2 hidden service descriptors and the authority managed to connect
  1081. to it successfully within the last 24 hours.
  1082. Directory server administrators may label some servers or IPs as
  1083. blacklisted, and elect not to include them in their network-status lists.
  1084. Authorities SHOULD 'disable' any servers in excess of 3 on any single IP.
  1085. When there are more than 3 to choose from, authorities should first prefer
  1086. authorities to non-authorities, then prefer Running to non-Running, and
  1087. then prefer high-bandwidth to low-bandwidth. To 'disable' a server, the
  1088. authority *should* advertise it without the Running or Valid flag.
  1089. Thus, the network-status vote includes all non-blacklisted,
  1090. non-expired, non-superseded descriptors.
  1091. The bandwidth in a "w" line should be taken as the best estimate
  1092. of the router's actual capacity that the authority has. For now,
  1093. this should be the lesser of the observed bandwidth and bandwidth
  1094. rate limit from the router descriptor. It is given in kilobytes
  1095. per second, and capped at some arbitrary value (currently 10 MB/s).
  1096. The Measured= keyword on a "w" line vote is currently computed
  1097. by multiplying the previous published consensus bandwidth by the
  1098. ratio of the measured average node stream capacity to the network
  1099. average. If 3 or more authorities provide a Measured= keyword for
  1100. a router, the authorities produce a consensus containing a "w"
  1101. Bandwidth= keyword equal to the median of the Measured= votes.
  1102. The ports listed in a "p" line should be taken as those ports for
  1103. which the router's exit policy permits 'most' addresses, ignoring any
  1104. accept not for all addresses, ignoring all rejects for private
  1105. netblocks. "Most" addresses are permitted if no more than 2^25
  1106. IPv4 addresses (two /8 networks) were blocked. The list is encoded
  1107. as described in 3.4.2.
  1108. 3.4. Computing a consensus from a set of votes
  1109. Given a set of votes, authorities compute the contents of the consensus
  1110. document as follows:
  1111. The "valid-after", "valid-until", and "fresh-until" times are taken as
  1112. the median of the respective values from all the votes.
  1113. The times in the "voting-delay" line are taken as the median of the
  1114. VoteSeconds and DistSeconds times in the votes.
  1115. Known-flags is the union of all flags known by any voter.
  1116. Entries are given on the "params" line for every keyword on which any
  1117. authority voted. The values given are the low-median of all votes on
  1118. that keyword.
  1119. "client-versions" and "server-versions" are sorted in ascending
  1120. order; A version is recommended in the consensus if it is recommended
  1121. by more than half of the voting authorities that included a
  1122. client-versions or server-versions lines in their votes.
  1123. The authority item groups (dir-source, contact, fingerprint,
  1124. vote-digest) are taken from the votes of the voting
  1125. authorities. These groups are sorted by the digests of the
  1126. authorities identity keys, in ascending order. If the consensus
  1127. method is 3 or later, a dir-source line must be included for
  1128. every vote with legacy-key entry, using the legacy-key's
  1129. fingerprint, the voter's ordinary nickname with the string
  1130. "-legacy" appended, and all other fields as from the original
  1131. vote's dir-source line.
  1132. A router status entry:
  1133. * is included in the result if some router status entry with the same
  1134. identity is included by more than half of the authorities (total
  1135. authorities, not just those whose votes we have).
  1136. * For any given identity, we include at most one router status entry.
  1137. * A router entry has a flag set if that is included by more than half
  1138. of the authorities who care about that flag.
  1139. * Two router entries are "the same" if they have the same
  1140. <descriptor digest, published time, nickname, IP, ports> tuple.
  1141. We choose the tuple for a given router as whichever tuple appears
  1142. for that router in the most votes. We break ties first in favor of
  1143. the more recently published, then in favor of smaller server
  1144. descriptor digest.
  1145. * The Named flag appears if it is included for this routerstatus by
  1146. _any_ authority, and if all authorities that list it list the same
  1147. nickname. However, if consensus-method 2 or later is in use, and
  1148. any authority calls this identity/nickname pair Unnamed, then
  1149. this routerstatus does not get the Named flag.
  1150. * If consensus-method 2 or later is in use, the Unnamed flag is
  1151. set for a routerstatus if any authorities have voted for a different
  1152. identities to be Named with that nickname, or if any authority
  1153. lists that nickname/ID pair as Unnamed.
  1154. (With consensus-method 1, Unnamed is set like any other flag.)
  1155. * The version is given as whichever version is listed by the most
  1156. voters, with ties decided in favor of more recent versions.
  1157. * If consensus-method 4 or later is in use, then routers that
  1158. do not have the Running flag are not listed at all.
  1159. * If consensus-method 5 or later is in use, then the "w" line
  1160. is generated using a low-median of the bandwidth values from
  1161. the votes that included "w" lines for this router.
  1162. * If consensus-method 5 or later is in use, then the "p" line
  1163. is taken from the votes that have the same policy summary
  1164. for the descriptor we are listing. (They should all be the
  1165. same. If they are not, we pick the most commonly listed
  1166. one, breaking ties in favor of the lexicographically larger
  1167. vote.) The port list is encoded as specified in 3.4.2.
  1168. * If consensus-method 6 or later is in use and if 3 or more
  1169. authorities provide a Measured= keyword in their votes for
  1170. a router, the authorities produce a consensus containing a
  1171. Bandwidth= keyword equal to the median of the Measured= votes.
  1172. * If consensus-method 7 or later is in use, the params line is
  1173. included in the output.
  1174. The signatures at the end of a consensus document are sorted in
  1175. ascending order by identity digest.
  1176. All ties in computing medians are broken in favor of the smaller or
  1177. earlier item.
  1178. 3.4.1. Forward compatibility
  1179. Future versions of Tor will need to include new information in the
  1180. consensus documents, but it is important that all authorities (or at least
  1181. half) generate and sign the same signed consensus.
  1182. To achieve this, authorities list in their votes their supported methods
  1183. for generating consensuses from votes. Later methods will be assigned
  1184. higher numbers. Currently recognized methods:
  1185. "1" -- The first implemented version.
  1186. "2" -- Added support for the Unnamed flag.
  1187. "3" -- Added legacy ID key support to aid in authority ID key rollovers
  1188. "4" -- No longer list routers that are not running in the consensus
  1189. "5" -- adds support for "w" and "p" lines.
  1190. "6" -- Prefers measured bandwidth values rather than advertised
  1191. "7" -- Provides keyword=integer pairs of consensus parameters
  1192. "8" -- Provides microdescriptor summaries
  1193. "9" -- Provides weights for selecting flagged routers in paths
  1194. "10" -- Fixes edge case bugs in router flag selection weights
  1195. Before generating a consensus, an authority must decide which consensus
  1196. method to use. To do this, it looks for the highest version number
  1197. supported by more than 2/3 of the authorities voting. If it supports this
  1198. method, then it uses it. Otherwise, it falls back to method 1.
  1199. (The consensuses generated by new methods must be parsable by
  1200. implementations that only understand the old methods, and must not cause
  1201. those implementations to compromise their anonymity. This is a means for
  1202. making changes in the contents of consensus; not for making
  1203. backward-incompatible changes in their format.)
  1204. 3.4.2. Encoding port lists
  1205. Whether the summary shows the list of accepted ports or the list of
  1206. rejected ports depends on which list is shorter (has a shorter string
  1207. representation). In case of ties we choose the list of accepted
  1208. ports. As an exception to this rule an allow-all policy is
  1209. represented as "accept 1-65535" instead of "reject " and a reject-all
  1210. policy is similarly given as "reject 1-65535".
  1211. Summary items are compressed, that is instead of "80-88,89-100" there
  1212. only is a single item of "80-100", similarly instead of "20,21" a
  1213. summary will say "20-21".
  1214. Port lists are sorted in ascending order.
  1215. The maximum allowed length of a policy summary (including the "accept "
  1216. or "reject ") is 1000 characters. If a summary exceeds that length we
  1217. use an accept-style summary and list as much of the port list as is
  1218. possible within these 1000 bytes. [XXXX be more specific.]
  1219. 3.4.3. Computing Bandwidth Weights
  1220. Let weight_scale = 10000
  1221. Let G be the total bandwidth for Guard-flagged nodes.
  1222. Let M be the total bandwidth for non-flagged nodes.
  1223. Let E be the total bandwidth for Exit-flagged nodes.
  1224. Let D be the total bandwidth for Guard+Exit-flagged nodes.
  1225. Let T = G+M+E+D
  1226. Let Wgd be the weight for choosing a Guard+Exit for the guard position.
  1227. Let Wmd be the weight for choosing a Guard+Exit for the middle position.
  1228. Let Wed be the weight for choosing a Guard+Exit for the exit position.
  1229. Let Wme be the weight for choosing an Exit for the middle position.
  1230. Let Wmg be the weight for choosing a Guard for the middle position.
  1231. Let Wgg be the weight for choosing a Guard for the guard position.
  1232. Let Wee be the weight for choosing an Exit for the exit position.
  1233. Balanced network conditions then arise from solutions to the following
  1234. system of equations:
  1235. Wgg*G + Wgd*D == M + Wmd*D + Wme*E + Wmg*G (guard bw = middle bw)
  1236. Wgg*G + Wgd*D == Wee*E + Wed*D (guard bw = exit bw)
  1237. Wed*D + Wmd*D + Wgd*D == D (aka: Wed+Wmd+Wdg = 1)
  1238. Wmg*G + Wgg*G == G (aka: Wgg = 1-Wmg)
  1239. Wme*E + Wee*E == E (aka: Wee = 1-Wme)
  1240. We are short 2 constraints with the above set. The remaining constraints
  1241. come from examining different cases of network load. The following
  1242. constraints are used in consensus method 10 and above. There are another
  1243. incorrect and obsolete set of constraints used for these same cases in
  1244. consensus method 9. For those, see dir-spec.txt in Tor 0.2.2.10-alpha
  1245. to 0.2.2.16-alpha.
  1246. Case 1: E >= T/3 && G >= T/3 (Neither Exit nor Guard Scarce)
  1247. In this case, the additional two constraints are: Wmg == Wmd,
  1248. Wed == 1/3.
  1249. This leads to the solution:
  1250. Wgd = weight_scale/3
  1251. Wed = weight_scale/3
  1252. Wmd = weight_scale/3
  1253. Wee = (weight_scale*(E+G+M))/(3*E)
  1254. Wme = weight_scale - Wee
  1255. Wmg = (weight_scale*(2*G-E-M))/(3*G)
  1256. Wgg = weight_scale - Wmg
  1257. Case 2: E < T/3 && G < T/3 (Both are scarce)
  1258. Let R denote the more scarce class (Rare) between Guard vs Exit.
  1259. Let S denote the less scarce class.
  1260. Subcase a: R+D < S
  1261. In this subcase, we simply devote all of D bandwidth to the
  1262. scarce class.
  1263. Wgg = Wee = weight_scale
  1264. Wmg = Wme = Wmd = 0;
  1265. if E < G:
  1266. Wed = weight_scale
  1267. Wgd = 0
  1268. else:
  1269. Wed = 0
  1270. Wgd = weight_scale
  1271. Subcase b: R+D >= S
  1272. In this case, if M <= T/3, we have enough bandwidth to try to achieve
  1273. a balancing condition.
  1274. Add constraints Wgg = 1, Wmd == Wgd to maximize bandwidth in the guard
  1275. position while still allowing exits to be used as middle nodes:
  1276. Wee = (weight_scale*(E - G + M))/E
  1277. Wed = (weight_scale*(D - 2*E + 4*G - 2*M))/(3*D)
  1278. Wme = (weight_scale*(G-M))/E
  1279. Wmg = 0
  1280. Wgg = weight_scale
  1281. Wmd = (weight_scale - Wed)/2
  1282. Wgd = (weight_scale - Wed)/2
  1283. If this system ends up with any values out of range (ie negative, or
  1284. above weight_scale), use the constraints Wgg == 1 and Wee == 1, since
  1285. both those positions are scarce:
  1286. Wgg = weight_scale
  1287. Wee = weight_scale
  1288. Wed = (weight_scale*(D - 2*E + G + M))/(3*D)
  1289. Wmd = (weight_Scale*(D - 2*M + G + E))/(3*D)
  1290. Wme = 0
  1291. Wmg = 0
  1292. Wgd = weight_scale - Wed - Wmd
  1293. If M > T/3, then the Wmd weight above will become negative. Set it to 0
  1294. in this case:
  1295. Wmd = 0
  1296. Wgd = weight_scale - Wed
  1297. Case 3: One of E < T/3 or G < T/3
  1298. Let S be the scarce class (of E or G).
  1299. Subcase a: (S+D) < T/3:
  1300. if G=S:
  1301. Wgg = Wgd = weight_scale;
  1302. Wmd = Wed = Wmg = 0;
  1303. // Minor subcase, if E is more scarce than M,
  1304. // keep its bandwidth in place.
  1305. if (E < M) Wme = 0;
  1306. else Wme = (weight_scale*(E-M))/(2*E);
  1307. Wee = weight_scale-Wme;
  1308. if E=S:
  1309. Wee = Wed = weight_scale;
  1310. Wmd = Wgd = Wme = 0;
  1311. // Minor subcase, if G is more scarce than M,
  1312. // keep its bandwidth in place.
  1313. if (G < M) Wmg = 0;
  1314. else Wmg = (weight_scale*(G-M))/(2*G);
  1315. Wgg = weight_scale-Wmg;
  1316. Subcase b: (S+D) >= T/3
  1317. if G=S:
  1318. Add constraints Wgg = 1, Wmd == Wed to maximize bandwidth
  1319. in the guard position, while still allowing exits to be
  1320. used as middle nodes:
  1321. Wgg = weight_scale
  1322. Wgd = (weight_scale*(D - 2*G + E + M))/(3*D)
  1323. Wmg = 0
  1324. Wee = (weight_scale*(E+M))/(2*E)
  1325. Wme = weight_scale - Wee
  1326. Wmd = (weight_scale - Wgd)/2
  1327. Wed = (weight_scale - Wgd)/2
  1328. if E=S:
  1329. Add constraints Wee == 1, Wmd == Wgd to maximize bandwidth
  1330. in the exit position:
  1331. Wee = weight_scale;
  1332. Wed = (weight_scale*(D - 2*E + G + M))/(3*D);
  1333. Wme = 0;
  1334. Wgg = (weight_scale*(G+M))/(2*G);
  1335. Wmg = weight_scale - Wgg;
  1336. Wmd = (weight_scale - Wed)/2;
  1337. Wgd = (weight_scale - Wed)/2;
  1338. To ensure consensus, all calculations are performed using integer math
  1339. with a fixed precision determined by the bwweightscale consensus
  1340. parameter (defaults at 10000).
  1341. For future balancing improvements, Tor clients support 11 additional weights
  1342. for directory requests and middle weighting. These weights are currently
  1343. set at weight_scale, with the exception of the following groups of
  1344. assignments:
  1345. Directory requests use middle weights:
  1346. Wbd=Wmd, Wbg=Wmg, Wbe=Wme, Wbm=Wmm
  1347. Handle bridges and strange exit policies:
  1348. Wgm=Wgg, Wem=Wee, Weg=Wed
  1349. 3.5. Detached signatures
  1350. Assuming full connectivity, every authority should compute and sign the
  1351. same consensus directory in each period. Therefore, it isn't necessary to
  1352. download the consensus computed by each authority; instead, the
  1353. authorities only push/fetch each others' signatures. A "detached
  1354. signature" document contains items as follows:
  1355. "consensus-digest" SP Digest NL
  1356. [At start, at most once.]
  1357. The digest of the consensus being signed.
  1358. "valid-after" SP YYYY-MM-DD SP HH:MM:SS NL
  1359. "fresh-until" SP YYYY-MM-DD SP HH:MM:SS NL
  1360. "valid-until" SP YYYY-MM-DD SP HH:MM:SS NL
  1361. [As in the consensus]
  1362. "directory-signature"
  1363. [As in the consensus; the signature object is the same as in the
  1364. consensus document.]
  1365. 4. Directory server operation
  1366. All directory authorities and directory caches ("directory servers")
  1367. implement this section, except as noted.
  1368. 4.1. Accepting uploads (authorities only)
  1369. When a router posts a signed descriptor to a directory authority, the
  1370. authority first checks whether it is well-formed and correctly
  1371. self-signed. If it is, the authority next verifies that the nickname
  1372. in question is not already assigned to a router with a different
  1373. public key.
  1374. Finally, the authority MAY check that the router is not blacklisted
  1375. because of its key, IP, or another reason.
  1376. If the descriptor passes these tests, and the authority does not already
  1377. have a descriptor for a router with this public key, it accepts the
  1378. descriptor and remembers it.
  1379. If the authority _does_ have a descriptor with the same public key, the
  1380. newly uploaded descriptor is remembered if its publication time is more
  1381. recent than the most recent old descriptor for that router, and either:
  1382. - There are non-cosmetic differences between the old descriptor and the
  1383. new one.
  1384. - Enough time has passed between the descriptors' publication times.
  1385. (Currently, 12 hours.)
  1386. Differences between router descriptors are "non-cosmetic" if they would be
  1387. sufficient to force an upload as described in section 2 above.
  1388. Note that the "cosmetic difference" test only applies to uploaded
  1389. descriptors, not to descriptors that the authority downloads from other
  1390. authorities.
  1391. When a router posts a signed extra-info document to a directory authority,
  1392. the authority again checks it for well-formedness and correct signature,
  1393. and checks that its matches the extra-info-digest in some router
  1394. descriptor that it believes is currently useful. If so, it accepts it and
  1395. stores it and serves it as requested. If not, it drops it.
  1396. 4.2. Voting (authorities only)
  1397. Authorities divide time into Intervals. Authority administrators SHOULD
  1398. try to all pick the same interval length, and SHOULD pick intervals that
  1399. are commonly used divisions of time (e.g., 5 minutes, 15 minutes, 30
  1400. minutes, 60 minutes, 90 minutes). Voting intervals SHOULD be chosen to
  1401. divide evenly into a 24-hour day.
  1402. Authorities SHOULD act according to interval and delays in the
  1403. latest consensus. Lacking a latest consensus, they SHOULD default to a
  1404. 30-minute Interval, a 5 minute VotingDelay, and a 5 minute DistDelay.
  1405. Authorities MUST take pains to ensure that their clocks remain accurate
  1406. within a few seconds. (Running NTP is usually sufficient.)
  1407. The first voting period of each day begins at 00:00 (midnight) GMT. If
  1408. the last period of the day would be truncated by one-half or more, it is
  1409. merged with the second-to-last period.
  1410. An authority SHOULD publish its vote immediately at the start of each voting
  1411. period (minus VoteSeconds+DistSeconds). It does this by making it
  1412. available at
  1413. http://<hostname>/tor/status-vote/next/authority.z
  1414. and sending it in an HTTP POST request to each other authority at the URL
  1415. http://<hostname>/tor/post/vote
  1416. If, at the start of the voting period, minus DistSeconds, an authority
  1417. does not have a current statement from another authority, the first
  1418. authority downloads the other's statement.
  1419. Once an authority has a vote from another authority, it makes it available
  1420. at
  1421. http://<hostname>/tor/status-vote/next/<fp>.z
  1422. where <fp> is the fingerprint of the other authority's identity key.
  1423. And at
  1424. http://<hostname>/tor/status-vote/next/d/<d>.z
  1425. where <d> is the digest of the vote document.
  1426. The consensus status, along with as many signatures as the server
  1427. currently knows, should be available at
  1428. http://<hostname>/tor/status-vote/next/consensus.z
  1429. All of the detached signatures it knows for consensus status should be
  1430. available at:
  1431. http://<hostname>/tor/status-vote/next/consensus-signatures.z
  1432. Once there are enough signatures, or once the voting period starts,
  1433. these documents are available at
  1434. http://<hostname>/tor/status-vote/current/consensus.z
  1435. and
  1436. http://<hostname>/tor/status-vote/current/consensus-signatures.z
  1437. [XXX current/consensus-signatures is not currently implemented, as it
  1438. is not used in the voting protocol.]
  1439. The other vote documents are analogously made available under
  1440. http://<hostname>/tor/status-vote/current/authority.z
  1441. http://<hostname>/tor/status-vote/current/<fp>.z
  1442. http://<hostname>/tor/status-vote/current/d/<d>.z
  1443. once the consensus is complete.
  1444. Once an authority has computed and signed a consensus network status, it
  1445. should send its detached signature to each other authority in an HTTP POST
  1446. request to the URL:
  1447. http://<hostname>/tor/post/consensus-signature
  1448. [XXX Note why we support push-and-then-pull.]
  1449. [XXX possible future features include support for downloading old
  1450. consensuses.]
  1451. 4.3. Downloading consensus status documents (caches only)
  1452. All directory servers (authorities and caches) try to keep a recent
  1453. network-status consensus document to serve to clients. A cache ALWAYS
  1454. downloads a network-status consensus if any of the following are true:
  1455. - The cache has no consensus document.
  1456. - The cache's consensus document is no longer valid.
  1457. Otherwise, the cache downloads a new consensus document at a randomly
  1458. chosen time in the first half-interval after its current consensus
  1459. stops being fresh. (This time is chosen at random to avoid swarming
  1460. the authorities at the start of each period. The interval size is
  1461. inferred from the difference between the valid-after time and the
  1462. fresh-until time on the consensus.)
  1463. [For example, if a cache has a consensus that became valid at 1:00,
  1464. and is fresh until 2:00, that cache will fetch a new consensus at
  1465. a random time between 2:00 and 2:30.]
  1466. 4.4. Downloading and storing router descriptors (authorities and caches)
  1467. Periodically (currently, every 10 seconds), directory servers check
  1468. whether there are any specific descriptors that they do not have and that
  1469. they are not currently trying to download. Caches identify these
  1470. descriptors by hash in the recent network-status consensus documents;
  1471. authorities identify them by hash in vote (if publication date is more
  1472. recent than the descriptor we currently have).
  1473. [XXXX need a way to fetch descriptors ahead of the vote? v2 status docs can
  1474. do that for now.]
  1475. If so, the directory server launches requests to the authorities for these
  1476. descriptors, such that each authority is only asked for descriptors listed
  1477. in its most recent vote (if the requester is an authority) or in the
  1478. consensus (if the requester is a cache). If we're an authority, and more
  1479. than one authority lists the descriptor, we choose which to ask at random.
  1480. If one of these downloads fails, we do not try to download that descriptor
  1481. from the authority that failed to serve it again unless we receive a newer
  1482. network-status (consensus or vote) from that authority that lists the same
  1483. descriptor.
  1484. Directory servers must potentially cache multiple descriptors for each
  1485. router. Servers must not discard any descriptor listed by any recent
  1486. consensus. If there is enough space to store additional descriptors,
  1487. servers SHOULD try to hold those which clients are likely to download the
  1488. most. (Currently, this is judged based on the interval for which each
  1489. descriptor seemed newest.)
  1490. [XXXX define recent]
  1491. Authorities SHOULD NOT download descriptors for routers that they would
  1492. immediately reject for reasons listed in 3.1.
  1493. 4.5. Downloading and storing extra-info documents
  1494. All authorities, and any cache that chooses to cache extra-info documents,
  1495. and any client that uses extra-info documents, should implement this
  1496. section.
  1497. Note that generally, clients don't need extra-info documents.
  1498. Periodically, the Tor instance checks whether it is missing any extra-info
  1499. documents: in other words, if it has any router descriptors with an
  1500. extra-info-digest field that does not match any of the extra-info
  1501. documents currently held. If so, it downloads whatever extra-info
  1502. documents are missing. Caches download from authorities; non-caches try
  1503. to download from caches. We follow the same splitting and back-off rules
  1504. as in 4.4 (if a cache) or 5.3 (if a client).
  1505. 4.6. General-use HTTP URLs
  1506. "Fingerprints" in these URLs are base-16-encoded SHA1 hashes.
  1507. The most recent v3 consensus should be available at:
  1508. http://<hostname>/tor/status-vote/current/consensus.z
  1509. Starting with Tor version 0.2.1.1-alpha is also available at:
  1510. http://<hostname>/tor/status-vote/current/consensus/<F1>+<F2>+<F3>.z
  1511. Where F1, F2, etc. are authority identity fingerprints the client trusts.
  1512. Servers will only return a consensus if more than half of the requested
  1513. authorities have signed the document, otherwise a 404 error will be sent
  1514. back. The fingerprints can be shortened to a length of any multiple of
  1515. two, using only the leftmost part of the encoded fingerprint. Tor uses
  1516. 3 bytes (6 hex characters) of the fingerprint.
  1517. Clients SHOULD sort the fingerprints in ascending order. Server MUST
  1518. accept any order.
  1519. Clients SHOULD use this format when requesting consensus documents from
  1520. directory authority servers and from caches running a version of Tor
  1521. that is known to support this URL format.
  1522. A concatenated set of all the current key certificates should be available
  1523. at:
  1524. http://<hostname>/tor/keys/all.z
  1525. The key certificate for this server (if it is an authority) should be
  1526. available at:
  1527. http://<hostname>/tor/keys/authority.z
  1528. The key certificate for an authority whose authority identity fingerprint
  1529. is <F> should be available at:
  1530. http://<hostname>/tor/keys/fp/<F>.z
  1531. The key certificate whose signing key fingerprint is <F> should be
  1532. available at:
  1533. http://<hostname>/tor/keys/sk/<F>.z
  1534. The key certificate whose identity key fingerprint is <F> and whose signing
  1535. key fingerprint is <S> should be available at:
  1536. http://<hostname>/tor/keys/fp-sk/<F>-<S>.z
  1537. (As usual, clients may request multiple certificates using:
  1538. http://<hostname>/tor/keys/fp-sk/<F1>-<S1>+<F2>-<S2>.z )
  1539. [The above fp-sk format was not supported before Tor 0.2.1.9-alpha.]
  1540. The most recent descriptor for a server whose identity key has a
  1541. fingerprint of <F> should be available at:
  1542. http://<hostname>/tor/server/fp/<F>.z
  1543. The most recent descriptors for servers with identity fingerprints
  1544. <F1>,<F2>,<F3> should be available at:
  1545. http://<hostname>/tor/server/fp/<F1>+<F2>+<F3>.z
  1546. (NOTE: Implementations SHOULD NOT download descriptors by identity key
  1547. fingerprint. This allows a corrupted server (in collusion with a cache) to
  1548. provide a unique descriptor to a client, and thereby partition that client
  1549. from the rest of the network.)
  1550. The server descriptor with (descriptor) digest <D> (in hex) should be
  1551. available at:
  1552. http://<hostname>/tor/server/d/<D>.z
  1553. The most recent descriptors with digests <D1>,<D2>,<D3> should be
  1554. available at:
  1555. http://<hostname>/tor/server/d/<D1>+<D2>+<D3>.z
  1556. The most recent descriptor for this server should be at:
  1557. http://<hostname>/tor/server/authority.z
  1558. [Nothing in the Tor protocol uses this resource yet, but it is useful
  1559. for debugging purposes. Also, the official Tor implementations
  1560. (starting at 0.1.1.x) use this resource to test whether a server's
  1561. own DirPort is reachable.]
  1562. A concatenated set of the most recent descriptors for all known servers
  1563. should be available at:
  1564. http://<hostname>/tor/server/all.z
  1565. Extra-info documents are available at the URLS
  1566. http://<hostname>/tor/extra/d/...
  1567. http://<hostname>/tor/extra/fp/...
  1568. http://<hostname>/tor/extra/all[.z]
  1569. http://<hostname>/tor/extra/authority[.z]
  1570. (As for /tor/server/ URLs: supports fetching extra-info
  1571. documents by their digest, by the fingerprint of their servers,
  1572. or all at once. When serving by fingerprint, we serve the
  1573. extra-info that corresponds to the descriptor we would serve by
  1574. that fingerprint. Only directory authorities of version
  1575. 0.2.0.1-alpha or later are guaranteed to support the first
  1576. three classes of URLs. Caches may support them, and MUST
  1577. support them if they have advertised "caches-extra-info".)
  1578. For debugging, directories SHOULD expose non-compressed objects at URLs like
  1579. the above, but without the final ".z".
  1580. Clients MUST handle compressed concatenated information in two forms:
  1581. - A concatenated list of zlib-compressed objects.
  1582. - A zlib-compressed concatenated list of objects.
  1583. Directory servers MAY generate either format: the former requires less
  1584. CPU, but the latter requires less bandwidth.
  1585. Clients SHOULD use upper case letters (A-F) when base16-encoding
  1586. fingerprints. Servers MUST accept both upper and lower case fingerprints
  1587. in requests.
  1588. 5. Client operation: downloading information
  1589. Every Tor that is not a directory server (that is, those that do
  1590. not have a DirPort set) implements this section.
  1591. 5.1. Downloading network-status documents
  1592. Each client maintains a list of directory authorities. Insofar as
  1593. possible, clients SHOULD all use the same list.
  1594. Clients try to have a live consensus network-status document at all times.
  1595. A network-status document is "live" if the time in its valid-until field
  1596. has not passed.
  1597. If a client is missing a live network-status document, it tries to fetch
  1598. it from a directory cache (or from an authority if it knows no caches).
  1599. On failure, the client waits briefly, then tries that network-status
  1600. document again from another cache. The client does not build circuits
  1601. until it has a live network-status consensus document, and it has
  1602. descriptors for more than 1/4 of the routers that it believes are running.
  1603. (Note: clients can and should pick caches based on the network-status
  1604. information they have: once they have first fetched network-status info
  1605. from an authority, they should not need to go to the authority directly
  1606. again.)
  1607. To avoid swarming the caches whenever a consensus expires, the
  1608. clients download new consensuses at a randomly chosen time after the
  1609. caches are expected to have a fresh consensus, but before their
  1610. consensus will expire. (This time is chosen uniformly at random from
  1611. the interval between the time 3/4 into the first interval after the
  1612. consensus is no longer fresh, and 7/8 of the time remaining after
  1613. that before the consensus is invalid.)
  1614. [For example, if a cache has a consensus that became valid at 1:00,
  1615. and is fresh until 2:00, and expires at 4:00, that cache will fetch
  1616. a new consensus at a random time between 2:45 and 3:50, since 3/4
  1617. of the one-hour interval is 45 minutes, and 7/8 of the remaining 75
  1618. minutes is 65 minutes.]
  1619. 5.2. Downloading and storing router descriptors
  1620. Clients try to have the best descriptor for each router. A descriptor is
  1621. "best" if:
  1622. * It is listed in the consensus network-status document.
  1623. Periodically (currently every 10 seconds) clients check whether there are
  1624. any "downloadable" descriptors. A descriptor is downloadable if:
  1625. - It is the "best" descriptor for some router.
  1626. - The descriptor was published at least 10 minutes in the past.
  1627. (This prevents clients from trying to fetch descriptors that the
  1628. mirrors have probably not yet retrieved and cached.)
  1629. - The client does not currently have it.
  1630. - The client is not currently trying to download it.
  1631. - The client would not discard it immediately upon receiving it.
  1632. - The client thinks it is running and valid (see 6.1 below).
  1633. If at least 16 known routers have downloadable descriptors, or if
  1634. enough time (currently 10 minutes) has passed since the last time the
  1635. client tried to download descriptors, it launches requests for all
  1636. downloadable descriptors, as described in 5.3 below.
  1637. When a descriptor download fails, the client notes it, and does not
  1638. consider the descriptor downloadable again until a certain amount of time
  1639. has passed. (Currently 0 seconds for the first failure, 60 seconds for the
  1640. second, 5 minutes for the third, 10 minutes for the fourth, and 1 day
  1641. thereafter.) Periodically (currently once an hour) clients reset the
  1642. failure count.
  1643. Clients retain the most recent descriptor they have downloaded for each
  1644. router so long as it is not too old (currently, 48 hours), OR so long as
  1645. no better descriptor has been downloaded for the same router.
  1646. [Versions of Tor before 0.1.2.3-alpha would discard descriptors simply for
  1647. being published too far in the past.] [The code seems to discard
  1648. descriptors in all cases after they're 5 days old. True? -RD]
  1649. 5.3. Managing downloads
  1650. When a client has no consensus network-status document, it downloads it
  1651. from a randomly chosen authority. In all other cases, the client
  1652. downloads from caches randomly chosen from among those believed to be V2
  1653. directory servers. (This information comes from the network-status
  1654. documents; see 6 below.)
  1655. When downloading multiple router descriptors, the client chooses multiple
  1656. mirrors so that:
  1657. - At least 3 different mirrors are used, except when this would result
  1658. in more than one request for under 4 descriptors.
  1659. - No more than 128 descriptors are requested from a single mirror.
  1660. - Otherwise, as few mirrors as possible are used.
  1661. After choosing mirrors, the client divides the descriptors among them
  1662. randomly.
  1663. After receiving any response client MUST discard any network-status
  1664. documents and descriptors that it did not request.
  1665. 6. Using directory information
  1666. Everyone besides directory authorities uses the approaches in this section
  1667. to decide which servers to use and what their keys are likely to be.
  1668. (Directory authorities just believe their own opinions, as in 3.1 above.)
  1669. 6.1. Choosing routers for circuits.
  1670. Circuits SHOULD NOT be built until the client has enough directory
  1671. information: a live consensus network status [XXXX fallback?] and
  1672. descriptors for at least 1/4 of the servers believed to be running.
  1673. A server is "listed" if it is included by the consensus network-status
  1674. document. Clients SHOULD NOT use unlisted servers.
  1675. These flags are used as follows:
  1676. - Clients SHOULD NOT use non-'Valid' or non-'Running' routers unless
  1677. requested to do so.
  1678. - Clients SHOULD NOT use non-'Fast' routers for any purpose other than
  1679. very-low-bandwidth circuits (such as introduction circuits).
  1680. - Clients SHOULD NOT use non-'Stable' routers for circuits that are
  1681. likely to need to be open for a very long time (such as those used for
  1682. IRC or SSH connections).
  1683. - Clients SHOULD NOT choose non-'Guard' nodes when picking entry guard
  1684. nodes.
  1685. - Clients SHOULD NOT download directory information from non-'V2Dir'
  1686. caches.
  1687. See the "path-spec.txt" document for more details.
  1688. 6.2. Managing naming
  1689. In order to provide human-memorable names for individual server
  1690. identities, some directory servers bind names to IDs. Clients handle
  1691. names in two ways:
  1692. When a client encounters a name it has not mapped before:
  1693. If the consensus lists any router with that name as "Named", or if
  1694. consensus-method 2 or later is in use and the consensus lists any
  1695. router with that name as having the "Unnamed" flag, then the name is
  1696. bound. (It's bound to the ID listed in the entry with the Named,
  1697. or to an unknown ID if no name is found.)
  1698. When the user refers to a bound name, the implementation SHOULD provide
  1699. only the router with ID bound to that name, and no other router, even
  1700. if the router with the right ID can't be found.
  1701. When a user tries to refer to a non-bound name, the implementation SHOULD
  1702. warn the user. After warning the user, the implementation MAY use any
  1703. router that advertises the name.
  1704. Not every router needs a nickname. When a router doesn't configure a
  1705. nickname, it publishes with the default nickname "Unnamed". Authorities
  1706. SHOULD NOT ever mark a router with this nickname as Named; client software
  1707. SHOULD NOT ever use a router in response to a user request for a router
  1708. called "Unnamed".
  1709. 6.3. Software versions
  1710. An implementation of Tor SHOULD warn when it has fetched a consensus
  1711. network-status, and it is running a software version not listed.
  1712. 6.4. Warning about a router's status.
  1713. If a router tries to publish its descriptor to a Naming authority
  1714. that has its nickname mapped to another key, the router SHOULD
  1715. warn the operator that it is either using the wrong key or is using
  1716. an already claimed nickname.
  1717. If a router has fetched a consensus document,, and the
  1718. authorities do not publish a binding for the router's nickname, the
  1719. router MAY remind the operator that the chosen nickname is not
  1720. bound to this key at the authorities, and suggest contacting the
  1721. authority operators.
  1722. ...
  1723. 6.5. Router protocol versions
  1724. A client should believe that a router supports a given feature if that
  1725. feature is supported by the router or protocol versions in more than half
  1726. of the live networkstatuses' "v" entries for that router. In other words,
  1727. if the "v" entries for some router are:
  1728. v Tor 0.0.8pre1 (from authority 1)
  1729. v Tor 0.1.2.11 (from authority 2)
  1730. v FutureProtocolDescription 99 (from authority 3)
  1731. then the client should believe that the router supports any feature
  1732. supported by 0.1.2.11.
  1733. This is currently equivalent to believing the median declared version for
  1734. a router in all live networkstatuses.
  1735. 7. Standards compliance
  1736. All clients and servers MUST support HTTP 1.0. Clients and servers MAY
  1737. support later versions of HTTP as well.
  1738. 7.1. HTTP headers
  1739. Servers MAY set the Content-Length: header. Servers SHOULD set
  1740. Content-Encoding to "deflate" or "identity".
  1741. Servers MAY include an X-Your-Address-Is: header, whose value is the
  1742. apparent IP address of the client connecting to them (as a dotted quad).
  1743. For directory connections tunneled over a BEGIN_DIR stream, servers SHOULD
  1744. report the IP from which the circuit carrying the BEGIN_DIR stream reached
  1745. them. [Servers before version 0.1.2.5-alpha reported 127.0.0.1 for all
  1746. BEGIN_DIR-tunneled connections.]
  1747. Servers SHOULD disable caching of multiple network statuses or multiple
  1748. router descriptors. Servers MAY enable caching of single descriptors,
  1749. single network statuses, the list of all router descriptors, a v1
  1750. directory, or a v1 running routers document. XXX mention times.
  1751. 7.2. HTTP status codes
  1752. Tor delivers the following status codes. Some were chosen without much
  1753. thought; other code SHOULD NOT rely on specific status codes yet.
  1754. 200 -- the operation completed successfully
  1755. -- the user requested statuses or serverdescs, and none of the ones we
  1756. requested were found (0.2.0.4-alpha and earlier).
  1757. 304 -- the client specified an if-modified-since time, and none of the
  1758. requested resources have changed since that time.
  1759. 400 -- the request is malformed, or
  1760. -- the URL is for a malformed variation of one of the URLs we support,
  1761. or
  1762. -- the client tried to post to a non-authority, or
  1763. -- the authority rejected a malformed posted document, or
  1764. 404 -- the requested document was not found.
  1765. -- the user requested statuses or serverdescs, and none of the ones
  1766. requested were found (0.2.0.5-alpha and later).
  1767. 503 -- we are declining the request in order to save bandwidth
  1768. -- user requested some items that we ordinarily generate or store,
  1769. but we do not have any available.
  1770. 9. Backward compatibility and migration plans
  1771. Until Tor versions before 0.1.1.x are completely obsolete, directory
  1772. authorities should generate, and mirrors should download and cache, v1
  1773. directories and running-routers lists, and allow old clients to download
  1774. them. These documents and the rules for retrieving, serving, and caching
  1775. them are described in dir-spec-v1.txt.
  1776. Until Tor versions before 0.2.0.x are completely obsolete, directory
  1777. authorities should generate, mirrors should download and cache, v2
  1778. network-status documents, and allow old clients to download them.
  1779. Additionally, all directory servers and caches should download, store, and
  1780. serve any router descriptor that is required because of v2 network-status
  1781. documents. These documents and the rules for retrieving, serving, and
  1782. caching them are described in dir-spec-v1.txt.
  1783. A. Consensus-negotiation timeline.
  1784. Period begins: this is the Published time.
  1785. Everybody sends votes
  1786. Reconciliation: everybody tries to fetch missing votes.
  1787. consensus may exist at this point.
  1788. End of voting period:
  1789. everyone swaps signatures.
  1790. Now it's okay for caches to download
  1791. Now it's okay for clients to download.
  1792. Valid-after/valid-until switchover