control-spec.txt 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. TC: A Tor control protocol (Version 1)
  2. 0. Scope
  3. This document describes an implementation-specific protocol that is used
  4. for other programs (such as frontend user-interfaces) to communicate with a
  5. locally running Tor process. It is not part of the Tor onion routing
  6. protocol.
  7. This protocol replaces version 0 of TC, which is now deprecated. For
  8. reference, TC is described in "control-spec-v0.txt". Implementors are
  9. recommended to avoid using TC directly, but instead to use a library that
  10. can easily be updated to use the newer protocol. (Version 0 is used by Tor
  11. versions 0.1.0.x; the protocol in this document only works with Tor
  12. versions in the 0.1.1.x series and later.)
  13. 1. Protocol outline
  14. TC is a bidirectional message-based protocol. It assumes an underlying
  15. stream for communication between a controlling process (the "client"
  16. or "controller") and a Tor process (or "server"). The stream may be
  17. implemented via TCP, TLS-over-TCP, a Unix-domain socket, or so on,
  18. but it must provide reliable in-order delivery. For security, the
  19. stream should not be accessible by untrusted parties.
  20. In TC, the client and server send typed messages to each other over the
  21. underlying stream. The client sends "commands" and the server sends
  22. "replies".
  23. By default, all messages from the server are in response to messages from
  24. the client. Some client requests, however, will cause the server to send
  25. messages to the client indefinitely far into the future. Such
  26. "asynchronous" replies are marked as such.
  27. Servers respond to messages in the order messages are received.
  28. 2. Message format
  29. 2.1. Description format
  30. The message formats listed below use ABNF as described in RFC 2234.
  31. The protocol itself is loosely based on SMTP (see RFC 2821).
  32. We use the following nonterminals from RFC 2822: atom, qcontent
  33. We define the following general-use nonterminals:
  34. String = DQUOTE *qcontent DQUOTE
  35. There are explicitly no limits on line length. All 8-bit characters are
  36. permitted unless explicitly disallowed.
  37. Wherever CRLF is specified to be accepted from the controller, Tor MAY also
  38. accept LF. Tor, however, MUST NOT generate LF instead of CRLF.
  39. Controllers SHOULD always send CRLF.
  40. 2.2. Commands from controller to Tor
  41. Command = Keyword Arguments CRLF / "+" Keyword Arguments CRLF Data
  42. Keyword = 1*ALPHA
  43. Arguments = *(SP / VCHAR)
  44. Specific commands and their arguments are described below in section 3.
  45. 2.3. Replies from Tor to the controller
  46. Reply = SyncReply / AsyncReply
  47. SyncReply = *(MidReplyLine / DataReplyLine) EndReplyLine
  48. AsyncReply = *(MidReplyLine / DataReplyLine) EndReplyLine
  49. MidReplyLine = StatusCode "-" ReplyLine
  50. DataReplyLine = StatusCode "+" ReplyLine Data
  51. EndReplyLine = StatusCode SP ReplyLine
  52. ReplyLine = [ReplyText] CRLF
  53. ReplyText = XXXX
  54. StatusCode = 3DIGIT
  55. Specific replies are mentioned below in section 3, and described more fully
  56. in section 4.
  57. [Compatibility note: versions of Tor before 0.2.0.3-alpha sometimes
  58. generate AsyncReplies of the form "*(MidReplyLine / DataReplyLine)".
  59. This is incorrect, but controllers that need to work with these
  60. versions of Tor should be prepared to get multi-line AsyncReplies with
  61. the final line (usually "650 OK") omitted.]
  62. 2.4. General-use tokens
  63. ; Identifiers for servers.
  64. ServerID = Nickname / Fingerprint
  65. Nickname = 1*19 NicknameChar
  66. NicknameChar = "a"-"z" / "A"-"Z" / "0" - "9"
  67. Fingerprint = "$" 40*HEXDIG
  68. ; A "=" indicates that the given nickname is canonical; a "~" indicates
  69. ; that the given nickname is not canonical. If no nickname is given at
  70. ; all, Tor does not even have a guess for what this router calls itself.
  71. LongName = Fingerprint [ ( "=" / "~" ) Nickname ]
  72. ; How a controller tells Tor about a particular OR. There are four
  73. ; possible formats:
  74. ; $Digest -- The router whose identity key hashes to the given digest.
  75. ; This is the preferred way to refer to an OR.
  76. ; $Digest~Name -- The router whose identity key hashes to the given
  77. ; digest, but only if the router has the given nickname.
  78. ; $Digest=Name -- The router whose identity key hashes to the given
  79. ; digest, but only if the router is Named and has the given
  80. ; nickname.
  81. ; Name -- The Named router with the given nickname, or, if no such
  82. ; router exists, any router whose nickname matches the one given.
  83. ; This is not a safe way to refer to routers, since Named status
  84. ; could under some circumstances change over time.
  85. ServerSpec = LongName / Nickname
  86. ; Unique identifiers for streams or circuits. Currently, Tor only
  87. ; uses digits, but this may change
  88. StreamID = 1*16 IDChar
  89. CircuitID = 1*16 IDChar
  90. IDChar = ALPHA / DIGIT
  91. Address = ip4-address / ip6-address / hostname (XXXX Define these)
  92. ; A "Data" section is a sequence of octets concluded by the terminating
  93. ; sequence CRLF "." CRLF. The terminating sequence may not appear in the
  94. ; body of the data. Leading periods on lines in the data are escaped with
  95. ; an additional leading period as in RFC 2821 section 4.5.2.
  96. Data = *DataLine "." CRLF
  97. DataLine = CRLF / "." 1*LineItem CRLF / NonDotItem *LineItem CRLF
  98. LineItem = NonCR / 1*CR NonCRLF
  99. NonDotItem = NonDotCR / 1*CR NonCRLF
  100. 3. Commands
  101. All commands are case-insensitive, but most keywords are case-sensitive.
  102. 3.1. SETCONF
  103. Change the value of one or more configuration variables. The syntax is:
  104. "SETCONF" 1*(SP keyword ["=" value]) CRLF
  105. value = String / QuotedString
  106. Tor behaves as though it had just read each of the key-value pairs
  107. from its configuration file. Keywords with no corresponding values have
  108. their configuration values reset to 0 or NULL (use RESETCONF if you want
  109. to set it back to its default). SETCONF is all-or-nothing: if there
  110. is an error in any of the configuration settings, Tor sets none of them.
  111. Tor responds with a "250 configuration values set" reply on success.
  112. If some of the listed keywords can't be found, Tor replies with a
  113. "552 Unrecognized option" message. Otherwise, Tor responds with a
  114. "513 syntax error in configuration values" reply on syntax error, or a
  115. "553 impossible configuration setting" reply on a semantic error.
  116. When a configuration option takes multiple values, or when multiple
  117. configuration keys form a context-sensitive group (see GETCONF below), then
  118. setting _any_ of the options in a SETCONF command is taken to reset all of
  119. the others. For example, if two ORBindAddress values are configured, and a
  120. SETCONF command arrives containing a single ORBindAddress value, the new
  121. command's value replaces the two old values.
  122. Sometimes it is not possible to change configuration options solely by
  123. issuing a series of SETCONF commands, because the value of one of the
  124. configuration options depends on the value of another which has not yet
  125. been set. Such situations can be overcome by setting multiple configuration
  126. options with a single SETCONF command (e.g. SETCONF ORPort=443
  127. ORListenAddress=9001).
  128. 3.2. RESETCONF
  129. Remove all settings for a given configuration option entirely, assign
  130. its default value (if any), and then assign the String provided.
  131. Typically the String is left empty, to simply set an option back to
  132. its default. The syntax is:
  133. "RESETCONF" 1*(SP keyword ["=" String]) CRLF
  134. Otherwise it behaves like SETCONF above.
  135. 3.3. GETCONF
  136. Request the value of a configuration variable. The syntax is:
  137. "GETCONF" 1*(SP keyword) CRLF
  138. If all of the listed keywords exist in the Tor configuration, Tor replies
  139. with a series of reply lines of the form:
  140. 250 keyword=value
  141. If any option is set to a 'default' value semantically different from an
  142. empty string, Tor may reply with a reply line of the form:
  143. 250 keyword
  144. Value may be a raw value or a quoted string. Tor will try to use
  145. unquoted values except when the value could be misinterpreted through
  146. not being quoted.
  147. If some of the listed keywords can't be found, Tor replies with a
  148. "552 unknown configuration keyword" message.
  149. If an option appears multiple times in the configuration, all of its
  150. key-value pairs are returned in order.
  151. Some options are context-sensitive, and depend on other options with
  152. different keywords. These cannot be fetched directly. Currently there
  153. is only one such option: clients should use the "HiddenServiceOptions"
  154. virtual keyword to get all HiddenServiceDir, HiddenServicePort,
  155. HiddenServiceNodes, and HiddenServiceExcludeNodes option settings.
  156. 3.4. SETEVENTS
  157. Request the server to inform the client about interesting events. The
  158. syntax is:
  159. "SETEVENTS" [SP "EXTENDED"] *(SP EventCode) CRLF
  160. EventCode = "CIRC" / "STREAM" / "ORCONN" / "BW" / "DEBUG" /
  161. "INFO" / "NOTICE" / "WARN" / "ERR" / "NEWDESC" / "ADDRMAP" /
  162. "AUTHDIR_NEWDESCS" / "DESCCHANGED" / "STATUS_GENERAL" /
  163. "STATUS_CLIENT" / "STATUS_SERVER" / "GUARD" / "NS" / "STREAM_BW" /
  164. "CLIENTS_SEEN" / "NEWCONSENSUS"
  165. Any events *not* listed in the SETEVENTS line are turned off; thus, sending
  166. SETEVENTS with an empty body turns off all event reporting.
  167. The server responds with a "250 OK" reply on success, and a "552
  168. Unrecognized event" reply if one of the event codes isn't recognized. (On
  169. error, the list of active event codes isn't changed.)
  170. If the flag string "EXTENDED" is provided, Tor may provide extra
  171. information with events for this connection; see 4.1 for more information.
  172. NOTE: All events on a given connection will be provided in extended format,
  173. or none.
  174. NOTE: "EXTENDED" is only supported in Tor 0.1.1.9-alpha or later.
  175. Each event is described in more detail in Section 4.1.
  176. 3.5. AUTHENTICATE
  177. Sent from the client to the server. The syntax is:
  178. "AUTHENTICATE" [ SP 1*HEXDIG / QuotedString ] CRLF
  179. The server responds with "250 OK" on success or "515 Bad authentication" if
  180. the authentication cookie is incorrect. Tor closes the connection on an
  181. authentication failure.
  182. The format of the 'cookie' is implementation-dependent; see 5.1 below for
  183. information on how the standard Tor implementation handles it.
  184. Before the client has authenticated, no command other than PROTOCOLINFO,
  185. AUTHENTICATE, or QUIT is valid. If the controller sends any other command,
  186. or sends a malformed command, or sends an unsuccessful AUTHENTICATE
  187. command, or sends PROTOCOLINFO more than once, Tor sends an error reply and
  188. closes the connection.
  189. To prevent some cross-protocol attacks, the AUTHENTICATE command is still
  190. required even if all authentication methods in Tor are disabled. In this
  191. case, the controller should just send "AUTHENTICATE" CRLF.
  192. (Versions of Tor before 0.1.2.16 and 0.2.0.4-alpha did not close the
  193. connection after an authentication failure.)
  194. 3.6. SAVECONF
  195. Sent from the client to the server. The syntax is:
  196. "SAVECONF" CRLF
  197. Instructs the server to write out its config options into its torrc. Server
  198. returns "250 OK" if successful, or "551 Unable to write configuration
  199. to disk" if it can't write the file or some other error occurs.
  200. See also the "getinfo config-text" command, if the controller wants
  201. to write the torrc file itself.
  202. 3.7. SIGNAL
  203. Sent from the client to the server. The syntax is:
  204. "SIGNAL" SP Signal CRLF
  205. Signal = "RELOAD" / "SHUTDOWN" / "DUMP" / "DEBUG" / "HALT" /
  206. "HUP" / "INT" / "USR1" / "USR2" / "TERM" / "NEWNYM" /
  207. "CLEARDNSCACHE"
  208. The meaning of the signals are:
  209. RELOAD -- Reload: reload config items, refetch directory. (like HUP)
  210. SHUTDOWN -- Controlled shutdown: if server is an OP, exit immediately.
  211. If it's an OR, close listeners and exit after 30 seconds.
  212. (like INT)
  213. DUMP -- Dump stats: log information about open connections and
  214. circuits. (like USR1)
  215. DEBUG -- Debug: switch all open logs to loglevel debug. (like USR2)
  216. HALT -- Immediate shutdown: clean up and exit now. (like TERM)
  217. CLEARDNSCACHE -- Forget the client-side cached IPs for all hostnames.
  218. NEWNYM -- Switch to clean circuits, so new application requests
  219. don't share any circuits with old ones. Also clears
  220. the client-side DNS cache. (Tor MAY rate-limit its
  221. response to this signal.)
  222. The server responds with "250 OK" if the signal is recognized (or simply
  223. closes the socket if it was asked to close immediately), or "552
  224. Unrecognized signal" if the signal is unrecognized.
  225. 3.8. MAPADDRESS
  226. Sent from the client to the server. The syntax is:
  227. "MAPADDRESS" 1*(Address "=" Address SP) CRLF
  228. The first address in each pair is an "original" address; the second is a
  229. "replacement" address. The client sends this message to the server in
  230. order to tell it that future SOCKS requests for connections to the original
  231. address should be replaced with connections to the specified replacement
  232. address. If the addresses are well-formed, and the server is able to
  233. fulfill the request, the server replies with a 250 message:
  234. 250-OldAddress1=NewAddress1
  235. 250 OldAddress2=NewAddress2
  236. containing the source and destination addresses. If request is
  237. malformed, the server replies with "512 syntax error in command
  238. argument". If the server can't fulfill the request, it replies with
  239. "451 resource exhausted".
  240. The client may decline to provide a body for the original address, and
  241. instead send a special null address ("0.0.0.0" for IPv4, "::0" for IPv6, or
  242. "." for hostname), signifying that the server should choose the original
  243. address itself, and return that address in the reply. The server
  244. should ensure that it returns an element of address space that is unlikely
  245. to be in actual use. If there is already an address mapped to the
  246. destination address, the server may reuse that mapping.
  247. If the original address is already mapped to a different address, the old
  248. mapping is removed. If the original address and the destination address
  249. are the same, the server removes any mapping in place for the original
  250. address.
  251. Example:
  252. C: MAPADDRESS 0.0.0.0=torproject.org 1.2.3.4=tor.freehaven.net
  253. S: 250-127.192.10.10=torproject.org
  254. S: 250 1.2.3.4=tor.freehaven.net
  255. {Note: This feature is designed to be used to help Tor-ify applications
  256. that need to use SOCKS4 or hostname-less SOCKS5. There are three
  257. approaches to doing this:
  258. 1. Somehow make them use SOCKS4a or SOCKS5-with-hostnames instead.
  259. 2. Use tor-resolve (or another interface to Tor's resolve-over-SOCKS
  260. feature) to resolve the hostname remotely. This doesn't work
  261. with special addresses like x.onion or x.y.exit.
  262. 3. Use MAPADDRESS to map an IP address to the desired hostname, and then
  263. arrange to fool the application into thinking that the hostname
  264. has resolved to that IP.
  265. This functionality is designed to help implement the 3rd approach.}
  266. Mappings set by the controller last until the Tor process exits:
  267. they never expire. If the controller wants the mapping to last only
  268. a certain time, then it must explicitly un-map the address when that
  269. time has elapsed.
  270. 3.9. GETINFO
  271. Sent from the client to the server. The syntax is as for GETCONF:
  272. "GETINFO" 1*(SP keyword) CRLF
  273. one or more NL-terminated strings. The server replies with an INFOVALUE
  274. message, or a 551 or 552 error.
  275. Unlike GETCONF, this message is used for data that are not stored in the Tor
  276. configuration file, and that may be longer than a single line. On success,
  277. one ReplyLine is sent for each requested value, followed by a final 250 OK
  278. ReplyLine. If a value fits on a single line, the format is:
  279. 250-keyword=value
  280. If a value must be split over multiple lines, the format is:
  281. 250+keyword=
  282. value
  283. .
  284. Recognized keys and their values include:
  285. "version" -- The version of the server's software, including the name
  286. of the software. (example: "Tor 0.0.9.4")
  287. "config-file" -- The location of Tor's configuration file ("torrc").
  288. "config-text" -- The contents that Tor would write if you send it
  289. a SAVECONF command, so the controller can write the file to
  290. disk itself. [First implemented in 0.2.2.7-alpha.]
  291. ["exit-policy/prepend" -- The default exit policy lines that Tor will
  292. *prepend* to the ExitPolicy config option.
  293. -- Never implemented. Useful?]
  294. "exit-policy/default" -- The default exit policy lines that Tor will
  295. *append* to the ExitPolicy config option.
  296. "desc/id/<OR identity>" or "desc/name/<OR nickname>" -- the latest
  297. server descriptor for a given OR, NUL-terminated.
  298. "desc-annotations/id/<OR identity>" -- outputs the annotations string
  299. (source, timestamp of arrival, purpose, etc) for the corresponding
  300. descriptor. [First implemented in 0.2.0.13-alpha.]
  301. "extra-info/digest/<digest>" -- the extrainfo document whose digest (in
  302. hex) is <digest>. Only available if we're downloading extra-info
  303. documents.
  304. "ns/id/<OR identity>" or "ns/name/<OR nickname>" -- the latest router
  305. status info (v2 directory style) for a given OR. Router status
  306. info is as given in
  307. dir-spec.txt, and reflects the current beliefs of this Tor about the
  308. router in question. Like directory clients, controllers MUST
  309. tolerate unrecognized flags and lines. The published date and
  310. descriptor digest are those believed to be best by this Tor,
  311. not necessarily those for a descriptor that Tor currently has.
  312. [First implemented in 0.1.2.3-alpha.]
  313. "ns/all" -- Router status info (v2 directory style) for all ORs we
  314. have an opinion about, joined by newlines. [First implemented
  315. in 0.1.2.3-alpha.]
  316. "ns/purpose/<purpose>" -- Router status info (v2 directory style)
  317. for all ORs of this purpose. Mostly designed for /ns/purpose/bridge
  318. queries. [First implemented in 0.2.0.13-alpha.]
  319. "desc/all-recent" -- the latest server descriptor for every router that
  320. Tor knows about.
  321. "network-status" -- a space-separated list (v1 directory style)
  322. of all known OR identities. This is in the same format as the
  323. router-status line in v1 directories; see dir-spec-v1.txt section
  324. 3 for details. (If VERBOSE_NAMES is enabled, the output will
  325. not conform to dir-spec-v1.txt; instead, the result will be a
  326. space-separated list of LongName, each preceded by a "!" if it is
  327. believed to be not running.) This option is deprecated; use
  328. "ns/all" instead.
  329. "address-mappings/all"
  330. "address-mappings/config"
  331. "address-mappings/cache"
  332. "address-mappings/control" -- a \r\n-separated list of address
  333. mappings, each in the form of "from-address to-address expiry".
  334. The 'config' key returns those address mappings set in the
  335. configuration; the 'cache' key returns the mappings in the
  336. client-side DNS cache; the 'control' key returns the mappings set
  337. via the control interface; the 'all' target returns the mappings
  338. set through any mechanism.
  339. Expiry is formatted as with ADDRMAP events, except that "expiry" is
  340. always a time in GMT or the string "NEVER"; see section 4.1.7.
  341. First introduced in 0.2.0.3-alpha.
  342. "addr-mappings/*" -- as for address-mappings/*, but without the
  343. expiry portion of the value. Use of this value is deprecated
  344. since 0.2.0.3-alpha; use address-mappings instead.
  345. "address" -- the best guess at our external IP address. If we
  346. have no guess, return a 551 error. (Added in 0.1.2.2-alpha)
  347. "fingerprint" -- the contents of the fingerprint file that Tor
  348. writes as a server, or a 551 if we're not a server currently.
  349. (Added in 0.1.2.3-alpha)
  350. "circuit-status"
  351. A series of lines as for a circuit status event. Each line is of
  352. the form:
  353. CircuitID SP CircStatus [SP Path] CRLF
  354. "stream-status"
  355. A series of lines as for a stream status event. Each is of the form:
  356. StreamID SP StreamStatus SP CircID SP Target CRLF
  357. "orconn-status"
  358. A series of lines as for an OR connection status event. Each is of the
  359. form:
  360. ServerID SP ORStatus CRLF
  361. "entry-guards"
  362. A series of lines listing the currently chosen entry guards, if any.
  363. Each is of the form:
  364. ServerID2 SP Status [SP ISOTime] CRLF
  365. Status-with-time = ("unlisted") SP ISOTime
  366. Status = ("up" / "never-connected" / "down" /
  367. "unusable" / "unlisted" )
  368. ServerID2 = Nickname / 40*HEXDIG
  369. [From 0.1.1.4-alpha to 0.1.1.10-alpha, this was called "helper-nodes".
  370. Tor still supports calling it that for now, but support will be
  371. removed in 0.1.3.x.]
  372. [Older versions of Tor (before 0.1.2.x-final) generated 'down' instead
  373. of unlisted/unusable. Current Tors never generate 'down'.]
  374. [XXXX ServerID2 differs from ServerID in not prefixing fingerprints
  375. with a $. This is an implementation error. It would be nice to add
  376. the $ back in if we can do so without breaking compatibility.]
  377. "accounting/enabled"
  378. "accounting/hibernating"
  379. "accounting/bytes"
  380. "accounting/bytes-left"
  381. "accounting/interval-start"
  382. "accounting/interval-wake"
  383. "accounting/interval-end"
  384. Information about accounting status. If accounting is enabled,
  385. "enabled" is 1; otherwise it is 0. The "hibernating" field is "hard"
  386. if we are accepting no data; "soft" if we're accepting no new
  387. connections, and "awake" if we're not hibernating at all. The "bytes"
  388. and "bytes-left" fields contain (read-bytes SP write-bytes), for the
  389. start and the rest of the interval respectively. The 'interval-start'
  390. and 'interval-end' fields are the borders of the current interval; the
  391. 'interval-wake' field is the time within the current interval (if any)
  392. where we plan[ned] to start being active. The times are GMT.
  393. "config/names"
  394. A series of lines listing the available configuration options. Each is
  395. of the form:
  396. OptionName SP OptionType [ SP Documentation ] CRLF
  397. OptionName = Keyword
  398. OptionType = "Integer" / "TimeInterval" / "DataSize" / "Float" /
  399. "Boolean" / "Time" / "CommaList" / "Dependant" / "Virtual" /
  400. "String" / "LineList"
  401. Documentation = Text
  402. "info/names"
  403. A series of lines listing the available GETINFO options. Each is of
  404. one of these forms:
  405. OptionName SP Documentation CRLF
  406. OptionPrefix SP Documentation CRLF
  407. OptionPrefix = OptionName "/*"
  408. "events/names"
  409. A space-separated list of all the events supported by this version of
  410. Tor's SETEVENTS.
  411. "features/names"
  412. A space-separated list of all the events supported by this version of
  413. Tor's USEFEATURE.
  414. "ip-to-country/*"
  415. Maps IP addresses to 2-letter country codes. For example,
  416. "GETINFO ip-to-country/18.0.0.1" should give "US".
  417. "next-circuit/IP:port"
  418. XXX todo.
  419. "dir/status-vote/current/consensus" [added in Tor 0.2.1.6-alpha]
  420. "dir/status/authority"
  421. "dir/status/fp/<F>"
  422. "dir/status/fp/<F1>+<F2>+<F3>"
  423. "dir/status/all"
  424. "dir/server/fp/<F>"
  425. "dir/server/fp/<F1>+<F2>+<F3>"
  426. "dir/server/d/<D>"
  427. "dir/server/d/<D1>+<D2>+<D3>"
  428. "dir/server/authority"
  429. "dir/server/all"
  430. A series of lines listing directory contents, provided according to the
  431. specification for the URLs listed in Section 4.4 of dir-spec.txt. Note
  432. that Tor MUST NOT provide private information, such as descriptors for
  433. routers not marked as general-purpose. When asked for 'authority'
  434. information for which this Tor is not authoritative, Tor replies with
  435. an empty string.
  436. "status/circuit-established"
  437. "status/enough-dir-info"
  438. "status/good-server-descriptor"
  439. "status/accepted-server-descriptor"
  440. "status/..."
  441. These provide the current internal Tor values for various Tor
  442. states. See Section 4.1.10 for explanations. (Only a few of the
  443. status events are available as getinfo's currently. Let us know if
  444. you want more exposed.)
  445. "status/reachability-succeeded/or"
  446. 0 or 1, depending on whether we've found our ORPort reachable.
  447. "status/reachability-succeeded/dir"
  448. 0 or 1, depending on whether we've found our DirPort reachable.
  449. "status/reachability-succeeded"
  450. "OR=" ("0"/"1") SP "DIR=" ("0"/"1")
  451. Combines status/reachability-succeeded/*; controllers MUST ignore
  452. unrecognized elements in this entry.
  453. "status/bootstrap-phase"
  454. Returns the most recent bootstrap phase status event
  455. sent. Specifically, it returns a string starting with either
  456. "NOTICE BOOTSTRAP ..." or "WARN BOOTSTRAP ...". Controllers should
  457. use this getinfo when they connect or attach to Tor to learn its
  458. current bootstrap state.
  459. "status/version/recommended"
  460. List of currently recommended versions.
  461. "status/version/current"
  462. Status of the current version. One of: new, old, unrecommended,
  463. recommended, new in series, obsolete.
  464. "status/clients-seen"
  465. A summary of which countries we've seen clients from recently,
  466. formatted the same as the CLIENTS_SEEN status event described in
  467. Section 4.1.14. This GETINFO option is currently available only
  468. for bridge relays.
  469. Examples:
  470. C: GETINFO version desc/name/moria1
  471. S: 250+desc/name/moria=
  472. S: [Descriptor for moria]
  473. S: .
  474. S: 250-version=Tor 0.1.1.0-alpha-cvs
  475. S: 250 OK
  476. 3.10. EXTENDCIRCUIT
  477. Sent from the client to the server. The format is:
  478. "EXTENDCIRCUIT" SP CircuitID SP
  479. ServerSpec *("," ServerSpec)
  480. [SP "purpose=" Purpose] CRLF
  481. This request takes one of two forms: either the CircuitID is zero, in
  482. which case it is a request for the server to build a new circuit according
  483. to the specified path, or the CircuitID is nonzero, in which case it is a
  484. request for the server to extend an existing circuit with that ID according
  485. to the specified path.
  486. If CircuitID is 0 and "purpose=" is specified, then the circuit's
  487. purpose is set. Two choices are recognized: "general" and
  488. "controller". If not specified, circuits are created as "general".
  489. If the request is successful, the server sends a reply containing a
  490. message body consisting of the CircuitID of the (maybe newly created)
  491. circuit. The syntax is "250" SP "EXTENDED" SP CircuitID CRLF.
  492. 3.11. SETCIRCUITPURPOSE
  493. Sent from the client to the server. The format is:
  494. "SETCIRCUITPURPOSE" SP CircuitID SP Purpose CRLF
  495. This changes the circuit's purpose. See EXTENDCIRCUIT above for details.
  496. 3.12. SETROUTERPURPOSE
  497. Sent from the client to the server. The format is:
  498. "SETROUTERPURPOSE" SP NicknameOrKey SP Purpose CRLF
  499. This changes the descriptor's purpose. See +POSTDESCRIPTOR below
  500. for details.
  501. NOTE: This command was disabled and made obsolete as of Tor
  502. 0.2.0.8-alpha. It doesn't exist anymore, and is listed here only for
  503. historical interest.
  504. 3.13. ATTACHSTREAM
  505. Sent from the client to the server. The syntax is:
  506. "ATTACHSTREAM" SP StreamID SP CircuitID [SP "HOP=" HopNum] CRLF
  507. This message informs the server that the specified stream should be
  508. associated with the specified circuit. Each stream may be associated with
  509. at most one circuit, and multiple streams may share the same circuit.
  510. Streams can only be attached to completed circuits (that is, circuits that
  511. have sent a circuit status 'BUILT' event or are listed as built in a
  512. GETINFO circuit-status request).
  513. If the circuit ID is 0, responsibility for attaching the given stream is
  514. returned to Tor.
  515. If HOP=HopNum is specified, Tor will choose the HopNumth hop in the
  516. circuit as the exit node, rather than the last node in the circuit.
  517. Hops are 1-indexed; generally, it is not permitted to attach to hop 1.
  518. Tor responds with "250 OK" if it can attach the stream, 552 if the circuit
  519. or stream didn't exist, or 551 if the stream couldn't be attached for
  520. another reason.
  521. {Implementation note: Tor will close unattached streams by itself,
  522. roughly two minutes after they are born. Let the developers know if
  523. that turns out to be a problem.}
  524. {Implementation note: By default, Tor automatically attaches streams to
  525. circuits itself, unless the configuration variable
  526. "__LeaveStreamsUnattached" is set to "1". Attempting to attach streams
  527. via TC when "__LeaveStreamsUnattached" is false may cause a race between
  528. Tor and the controller, as both attempt to attach streams to circuits.}
  529. {Implementation note: You can try to attachstream to a stream that
  530. has already sent a connect or resolve request but hasn't succeeded
  531. yet, in which case Tor will detach the stream from its current circuit
  532. before proceeding with the new attach request.}
  533. 3.14. POSTDESCRIPTOR
  534. Sent from the client to the server. The syntax is:
  535. "+POSTDESCRIPTOR" [SP "purpose=" Purpose] [SP "cache=" Cache]
  536. CRLF Descriptor CRLF "." CRLF
  537. This message informs the server about a new descriptor. If Purpose is
  538. specified, it must be either "general", "controller", or "bridge",
  539. else we return a 552 error. The default is "general".
  540. If Cache is specified, it must be either "no" or "yes", else we
  541. return a 552 error. If Cache is not specified, Tor will decide for
  542. itself whether it wants to cache the descriptor, and controllers
  543. must not rely on its choice.
  544. The descriptor, when parsed, must contain a number of well-specified
  545. fields, including fields for its nickname and identity.
  546. If there is an error in parsing the descriptor, the server must send a
  547. "554 Invalid descriptor" reply. If the descriptor is well-formed but
  548. the server chooses not to add it, it must reply with a 251 message
  549. whose body explains why the server was not added. If the descriptor
  550. is added, Tor replies with "250 OK".
  551. 3.15. REDIRECTSTREAM
  552. Sent from the client to the server. The syntax is:
  553. "REDIRECTSTREAM" SP StreamID SP Address [SP Port] CRLF
  554. Tells the server to change the exit address on the specified stream. If
  555. Port is specified, changes the destination port as well. No remapping
  556. is performed on the new provided address.
  557. To be sure that the modified address will be used, this event must be sent
  558. after a new stream event is received, and before attaching this stream to
  559. a circuit.
  560. Tor replies with "250 OK" on success.
  561. 3.16. CLOSESTREAM
  562. Sent from the client to the server. The syntax is:
  563. "CLOSESTREAM" SP StreamID SP Reason *(SP Flag) CRLF
  564. Tells the server to close the specified stream. The reason should be one
  565. of the Tor RELAY_END reasons given in tor-spec.txt, as a decimal. Flags is
  566. not used currently; Tor servers SHOULD ignore unrecognized flags. Tor may
  567. hold the stream open for a while to flush any data that is pending.
  568. Tor replies with "250 OK" on success, or a 512 if there aren't enough
  569. arguments, or a 552 if it doesn't recognize the StreamID or reason.
  570. 3.17. CLOSECIRCUIT
  571. The syntax is:
  572. CLOSECIRCUIT SP CircuitID *(SP Flag) CRLF
  573. Flag = "IfUnused"
  574. Tells the server to close the specified circuit. If "IfUnused" is
  575. provided, do not close the circuit unless it is unused.
  576. Other flags may be defined in the future; Tor SHOULD ignore unrecognized
  577. flags.
  578. Tor replies with "250 OK" on success, or a 512 if there aren't enough
  579. arguments, or a 552 if it doesn't recognize the CircuitID.
  580. 3.18. QUIT
  581. Tells the server to hang up on this controller connection. This command
  582. can be used before authenticating.
  583. 3.19. USEFEATURE
  584. The syntax is:
  585. "USEFEATURE" *(SP FeatureName) CRLF
  586. FeatureName = 1*(ALPHA / DIGIT / "_" / "-")
  587. Sometimes extensions to the controller protocol break compatibility with
  588. older controllers. In this case, whenever possible, the extensions are
  589. first included in Tor disabled by default, and only enabled on a given
  590. controller connection when the "USEFEATURE" command is given. Once a
  591. "USEFEATURE" command is given, it applies to all subsequent interactions on
  592. the same connection; to disable an enabled feature, a new controller
  593. connection must be opened.
  594. This is a forward-compatibility mechanism; each feature will eventually
  595. become a regular part of the control protocol in some future version of Tor.
  596. Tor will ignore a request to use any feature that is already on by default.
  597. Tor will give a "552" error if any requested feature is not recognized.
  598. Feature names are case-insensitive.
  599. EXTENDED_EVENTS
  600. Same as passing 'EXTENDED' to SETEVENTS; this is the preferred way to
  601. request the extended event syntax.
  602. This feature was first used in 0.1.2.3-alpha. It is always-on in
  603. Tor 0.2.2.1-alpha and later.
  604. VERBOSE_NAMES
  605. Instead of ServerID as specified above, the controller should
  606. identify ORs by LongName in events and GETINFO results. This format is
  607. strictly more informative: rather than including Nickname for
  608. known Named routers and Fingerprint for unknown or unNamed routers, the
  609. LongName format includes a Fingerprint, an indication of Named status,
  610. and a Nickname (if one is known).
  611. This will not be always-enabled until at least two stable
  612. releases after 0.1.2.2-alpha, the release where it was first
  613. available. It is always-on in Tor 0.2.2.1-alpha and later.
  614. 3.20. RESOLVE
  615. The syntax is
  616. "RESOLVE" *Option *Address CRLF
  617. Option = "mode=reverse"
  618. Address = a hostname or IPv4 address
  619. This command launches a remote hostname lookup request for every specified
  620. request (or reverse lookup if "mode=reverse" is specified). Note that the
  621. request is done in the background: to see the answers, your controller will
  622. need to listen for ADDRMAP events; see 4.1.7 below.
  623. [Added in Tor 0.2.0.3-alpha]
  624. 3.21. PROTOCOLINFO
  625. The syntax is:
  626. "PROTOCOLINFO" *(SP PIVERSION) CRLF
  627. The server reply format is:
  628. "250-PROTOCOLINFO" SP PIVERSION CRLF *InfoLine "250 OK" CRLF
  629. InfoLine = AuthLine / VersionLine / OtherLine
  630. AuthLine = "250-AUTH" SP "METHODS=" AuthMethod *(",")AuthMethod
  631. *(SP "COOKIEFILE=" AuthCookieFile) CRLF
  632. VersionLine = "250-VERSION" SP "Tor=" TorVersion [SP Arguments] CRLF
  633. AuthMethod =
  634. "NULL" / ; No authentication is required
  635. "HASHEDPASSWORD" / ; A controller must supply the original password
  636. "COOKIE" / ; A controller must supply the contents of a cookie
  637. AuthCookieFile = QuotedString
  638. TorVersion = QuotedString
  639. OtherLine = "250-" Keyword [SP Arguments] CRLF
  640. PIVERSION: 1*DIGIT
  641. Tor MAY give its InfoLines in any order; controllers MUST ignore InfoLines
  642. with keywords they do not recognize. Controllers MUST ignore extraneous
  643. data on any InfoLine.
  644. PIVERSION is there in case we drastically change the syntax one day. For
  645. now it should always be "1". Controllers MAY provide a list of the
  646. protocolinfo versions they support; Tor MAY select a version that the
  647. controller does not support.
  648. AuthMethod is used to specify one or more control authentication
  649. methods that Tor currently accepts.
  650. AuthCookieFile specifies the absolute path and filename of the
  651. authentication cookie that Tor is expecting and is provided iff
  652. the METHODS field contains the method "COOKIE". Controllers MUST handle
  653. escape sequences inside this string.
  654. The VERSION line contains the Tor version.
  655. [Unlike other commands besides AUTHENTICATE, PROTOCOLINFO may be used (but
  656. only once!) before AUTHENTICATE.]
  657. [PROTOCOLINFO was not supported before Tor 0.2.0.5-alpha.]
  658. 4. Replies
  659. Reply codes follow the same 3-character format as used by SMTP, with the
  660. first character defining a status, the second character defining a
  661. subsystem, and the third designating fine-grained information.
  662. The TC protocol currently uses the following first characters:
  663. 2yz Positive Completion Reply
  664. The command was successful; a new request can be started.
  665. 4yz Temporary Negative Completion reply
  666. The command was unsuccessful but might be reattempted later.
  667. 5yz Permanent Negative Completion Reply
  668. The command was unsuccessful; the client should not try exactly
  669. that sequence of commands again.
  670. 6yz Asynchronous Reply
  671. Sent out-of-order in response to an earlier SETEVENTS command.
  672. The following second characters are used:
  673. x0z Syntax
  674. Sent in response to ill-formed or nonsensical commands.
  675. x1z Protocol
  676. Refers to operations of the Tor Control protocol.
  677. x5z Tor
  678. Refers to actual operations of Tor system.
  679. The following codes are defined:
  680. 250 OK
  681. 251 Operation was unnecessary
  682. [Tor has declined to perform the operation, but no harm was done.]
  683. 451 Resource exhausted
  684. 500 Syntax error: protocol
  685. 510 Unrecognized command
  686. 511 Unimplemented command
  687. 512 Syntax error in command argument
  688. 513 Unrecognized command argument
  689. 514 Authentication required
  690. 515 Bad authentication
  691. 550 Unspecified Tor error
  692. 551 Internal error
  693. [Something went wrong inside Tor, so that the client's
  694. request couldn't be fulfilled.]
  695. 552 Unrecognized entity
  696. [A configuration key, a stream ID, circuit ID, event,
  697. mentioned in the command did not actually exist.]
  698. 553 Invalid configuration value
  699. [The client tried to set a configuration option to an
  700. incorrect, ill-formed, or impossible value.]
  701. 554 Invalid descriptor
  702. 555 Unmanaged entity
  703. 650 Asynchronous event notification
  704. Unless specified to have specific contents, the human-readable messages
  705. in error replies should not be relied upon to match those in this document.
  706. 4.1. Asynchronous events
  707. These replies can be sent after a corresponding SETEVENTS command has been
  708. received. They will not be interleaved with other Reply elements, but they
  709. can appear between a command and its corresponding reply. For example,
  710. this sequence is possible:
  711. C: SETEVENTS CIRC
  712. S: 250 OK
  713. C: GETCONF SOCKSPORT ORPORT
  714. S: 650 CIRC 1000 EXTENDED moria1,moria2
  715. S: 250-SOCKSPORT=9050
  716. S: 250 ORPORT=0
  717. But this sequence is disallowed:
  718. C: SETEVENTS CIRC
  719. S: 250 OK
  720. C: GETCONF SOCKSPORT ORPORT
  721. S: 250-SOCKSPORT=9050
  722. S: 650 CIRC 1000 EXTENDED moria1,moria2
  723. S: 250 ORPORT=0
  724. Clients MUST tolerate more arguments in an asynchonous reply than
  725. expected, and MUST tolerate more lines in an asynchronous reply than
  726. expected. For instance, a client that expects a CIRC message like:
  727. 650 CIRC 1000 EXTENDED moria1,moria2
  728. must tolerate:
  729. 650-CIRC 1000 EXTENDED moria1,moria2 0xBEEF
  730. 650-EXTRAMAGIC=99
  731. 650 ANONYMITY=high
  732. If clients ask for extended events, then each event line as specified below
  733. will be followed by additional extensions. Additional lines will be of the
  734. form
  735. "650" ("-"/" ") KEYWORD ["=" ARGUMENTS] CRLF
  736. Additional arguments will be of the form
  737. SP KEYWORD ["=" ( QuotedString / * NonSpDquote ) ]
  738. Such clients MUST tolerate lines with keywords they do not recognize.
  739. 4.1.1. Circuit status changed
  740. The syntax is:
  741. "650" SP "CIRC" SP CircuitID SP CircStatus [SP Path]
  742. [SP "REASON=" Reason [SP "REMOTE_REASON=" Reason]] CRLF
  743. CircStatus =
  744. "LAUNCHED" / ; circuit ID assigned to new circuit
  745. "BUILT" / ; all hops finished, can now accept streams
  746. "EXTENDED" / ; one more hop has been completed
  747. "FAILED" / ; circuit closed (was not built)
  748. "CLOSED" ; circuit closed (was built)
  749. Path = ServerID *("," ServerID)
  750. Reason = "NONE" / "TORPROTOCOL" / "INTERNAL" / "REQUESTED" /
  751. "HIBERNATING" / "RESOURCELIMIT" / "CONNECTFAILED" /
  752. "OR_IDENTITY" / "OR_CONN_CLOSED" / "TIMEOUT" /
  753. "FINISHED" / "DESTROYED" / "NOPATH" / "NOSUCHSERVICE"
  754. The path is provided only when the circuit has been extended at least one
  755. hop.
  756. The "REASON" field is provided only for FAILED and CLOSED events, and only
  757. if extended events are enabled (see 3.19). Clients MUST accept reasons
  758. not listed above. Reasons are as given in tor-spec.txt, except for:
  759. NOPATH (Not enough nodes to make circuit)
  760. The "REMOTE_REASON" field is provided only when we receive a DESTROY or
  761. TRUNCATE cell, and only if extended events are enabled. It contains the
  762. actual reason given by the remote OR for closing the circuit. Clients MUST
  763. accept reasons not listed above. Reasons are as listed in tor-spec.txt.
  764. 4.1.2. Stream status changed
  765. The syntax is:
  766. "650" SP "STREAM" SP StreamID SP StreamStatus SP CircID SP Target
  767. [SP "REASON=" Reason [ SP "REMOTE_REASON=" Reason ]]
  768. [SP "SOURCE=" Source] [ SP "SOURCE_ADDR=" Address ":" Port ]
  769. [SP "PURPOSE=" Purpose]
  770. CRLF
  771. StreamStatus =
  772. "NEW" / ; New request to connect
  773. "NEWRESOLVE" / ; New request to resolve an address
  774. "REMAP" / ; Address re-mapped to another
  775. "SENTCONNECT" / ; Sent a connect cell along a circuit
  776. "SENTRESOLVE" / ; Sent a resolve cell along a circuit
  777. "SUCCEEDED" / ; Received a reply; stream established
  778. "FAILED" / ; Stream failed and not retriable
  779. "CLOSED" / ; Stream closed
  780. "DETACHED" ; Detached from circuit; still retriable
  781. Target = Address ":" Port
  782. The circuit ID designates which circuit this stream is attached to. If
  783. the stream is unattached, the circuit ID "0" is given.
  784. Reason = "MISC" / "RESOLVEFAILED" / "CONNECTREFUSED" /
  785. "EXITPOLICY" / "DESTROY" / "DONE" / "TIMEOUT" /
  786. "HIBERNATING" / "INTERNAL"/ "RESOURCELIMIT" /
  787. "CONNRESET" / "TORPROTOCOL" / "NOTDIRECTORY" / "END"
  788. The "REASON" field is provided only for FAILED, CLOSED, and DETACHED
  789. events, and only if extended events are enabled (see 3.19). Clients MUST
  790. accept reasons not listed above. Reasons are as given in tor-spec.txt,
  791. except for:
  792. END (We received a RELAY_END cell from the other side of this
  793. stream.)
  794. [XXXX document more. -NM]
  795. The "REMOTE_REASON" field is provided only when we receive a RELAY_END
  796. cell, and only if extended events are enabled. It contains the actual
  797. reason given by the remote OR for closing the stream. Clients MUST accept
  798. reasons not listed above. Reasons are as listed in tor-spec.txt.
  799. "REMAP" events include a Source if extended events are enabled:
  800. Source = "CACHE" / "EXIT"
  801. Clients MUST accept sources not listed above. "CACHE" is given if
  802. the Tor client decided to remap the address because of a cached
  803. answer, and "EXIT" is given if the remote node we queried gave us
  804. the new address as a response.
  805. The "SOURCE_ADDR" field is included with NEW and NEWRESOLVE events if
  806. extended events are enabled. It indicates the address and port
  807. that requested the connection, and can be (e.g.) used to look up the
  808. requesting program.
  809. Purpose = "DIR_FETCH" / "UPLOAD_DESC" / "DNS_REQUEST" /
  810. "USER" / "DIRPORT_TEST"
  811. The "PURPOSE" field is provided only for NEW and NEWRESOLVE events, and
  812. only if extended events are enabled (see 3.19). Clients MUST accept
  813. purposes not listed above.
  814. 4.1.3. OR Connection status changed
  815. The syntax is:
  816. "650" SP "ORCONN" SP (ServerID / Target) SP ORStatus [ SP "REASON="
  817. Reason ] [ SP "NCIRCS=" NumCircuits ] CRLF
  818. ORStatus = "NEW" / "LAUNCHED" / "CONNECTED" / "FAILED" / "CLOSED"
  819. NEW is for incoming connections, and LAUNCHED is for outgoing
  820. connections. CONNECTED means the TLS handshake has finished (in
  821. either direction). FAILED means a connection is being closed that
  822. hasn't finished its handshake, and CLOSED is for connections that
  823. have handshaked.
  824. A ServerID is specified unless it's a NEW connection, in which
  825. case we don't know what server it is yet, so we use Address:Port.
  826. If extended events are enabled (see 3.19), optional reason and
  827. circuit counting information is provided for CLOSED and FAILED
  828. events.
  829. Reason = "MISC" / "DONE" / "CONNECTREFUSED" /
  830. "IDENTITY" / "CONNECTRESET" / "TIMEOUT" / "NOROUTE" /
  831. "IOERROR" / "RESOURCELIMIT"
  832. NumCircuits counts both established and pending circuits.
  833. 4.1.4. Bandwidth used in the last second
  834. The syntax is:
  835. "650" SP "BW" SP BytesRead SP BytesWritten *(SP Type "=" Num) CRLF
  836. BytesRead = 1*DIGIT
  837. BytesWritten = 1*DIGIT
  838. Type = "DIR" / "OR" / "EXIT" / "APP" / ...
  839. Num = 1*DIGIT
  840. BytesRead and BytesWritten are the totals. [In a future Tor version,
  841. we may also include a breakdown of the connection types that used
  842. bandwidth this second (not implemented yet).]
  843. 4.1.5. Log messages
  844. The syntax is:
  845. "650" SP Severity SP ReplyText CRLF
  846. or
  847. "650+" Severity CRLF Data 650 SP "OK" CRLF
  848. Severity = "DEBUG" / "INFO" / "NOTICE" / "WARN"/ "ERR"
  849. 4.1.6. New descriptors available
  850. Syntax:
  851. "650" SP "NEWDESC" 1*(SP ServerID) CRLF
  852. 4.1.7. New Address mapping
  853. Syntax:
  854. "650" SP "ADDRMAP" SP Address SP NewAddress SP Expiry
  855. [SP Error] SP GMTExpiry CRLF
  856. NewAddress = Address / "<error>"
  857. Expiry = DQUOTE ISOTime DQUOTE / "NEVER"
  858. Error = "error=" ErrorCode
  859. ErrorCode = XXXX
  860. GMTExpiry = "EXPIRES=" DQUOTE IsoTime DQUOTE
  861. Error and GMTExpiry are only provided if extended events are enabled.
  862. Expiry is expressed as the local time (rather than GMT). This is a bug,
  863. left in for backward compatibility; new code should look at GMTExpiry
  864. instead.
  865. These events are generated when a new address mapping is entered in the
  866. cache, or when the answer for a RESOLVE command is found.
  867. 4.1.8. Descriptors uploaded to us in our role as authoritative dirserver
  868. Syntax:
  869. "650" "+" "AUTHDIR_NEWDESCS" CRLF Action CRLF Message CRLF
  870. Descriptor CRLF "." CRLF "650" SP "OK" CRLF
  871. Action = "ACCEPTED" / "DROPPED" / "REJECTED"
  872. Message = Text
  873. 4.1.9. Our descriptor changed
  874. Syntax:
  875. "650" SP "DESCCHANGED" CRLF
  876. [First added in 0.1.2.2-alpha.]
  877. 4.1.10. Status events
  878. Status events (STATUS_GENERAL, STATUS_CLIENT, and STATUS_SERVER) are sent
  879. based on occurrences in the Tor process pertaining to the general state of
  880. the program. Generally, they correspond to log messages of severity Notice
  881. or higher. They differ from log messages in that their format is a
  882. specified interface.
  883. Syntax:
  884. "650" SP StatusType SP StatusSeverity SP StatusAction
  885. [SP StatusArguments] CRLF
  886. StatusType = "STATUS_GENERAL" / "STATUS_CLIENT" / "STATUS_SERVER"
  887. StatusSeverity = "NOTICE" / "WARN" / "ERR"
  888. StatusAction = 1*ALPHA
  889. StatusArguments = StatusArgument *(SP StatusArgument)
  890. StatusArgument = StatusKeyword '=' StatusValue
  891. StatusKeyword = 1*(ALNUM / "_")
  892. StatusValue = 1*(ALNUM / '_') / QuotedString
  893. Action is a string, and Arguments is a series of keyword=value
  894. pairs on the same line. Values may be space-terminated strings,
  895. or quoted strings.
  896. These events are always produced with EXTENDED_EVENTS and
  897. VERBOSE_NAMES; see the explanations in the USEFEATURE section
  898. for details.
  899. Controllers MUST tolerate unrecognized actions, MUST tolerate
  900. unrecognized arguments, MUST tolerate missing arguments, and MUST
  901. tolerate arguments that arrive in any order.
  902. Each event description below is accompanied by a recommendation for
  903. controllers. These recommendations are suggestions only; no controller
  904. is required to implement them.
  905. Compatibility note: versions of Tor before 0.2.0.22-rc incorrectly
  906. generated "STATUS_SERVER" as "STATUS_SEVER". To be compatible with those
  907. versions, tools should accept both.
  908. Actions for STATUS_GENERAL events can be as follows:
  909. CLOCK_JUMPED
  910. "TIME=NUM"
  911. Tor spent enough time without CPU cycles that it has closed all
  912. its circuits and will establish them anew. This typically
  913. happens when a laptop goes to sleep and then wakes up again. It
  914. also happens when the system is swapping so heavily that Tor is
  915. starving. The "time" argument specifies the number of seconds Tor
  916. thinks it was unconscious for (or alternatively, the number of
  917. seconds it went back in time).
  918. This status event is sent as NOTICE severity normally, but WARN
  919. severity if Tor is acting as a server currently.
  920. {Recommendation for controller: ignore it, since we don't really
  921. know what the user should do anyway. Hm.}
  922. DANGEROUS_VERSION
  923. "CURRENT=version"
  924. "REASON=NEW/OBSOLETE/UNRECOMMENDED"
  925. "RECOMMENDED=\"version, version, ...\""
  926. Tor has found that directory servers don't recommend its version of
  927. the Tor software. RECOMMENDED is a comma-and-space-separated string
  928. of Tor versions that are recommended. REASON is NEW if this version
  929. of Tor is newer than any recommended version, OBSOLETE if
  930. this version of Tor is older than any recommended version, and
  931. UNRECOMMENDED if some recommended versions of Tor are newer and
  932. some are older than this version. (The "OBSOLETE" reason was called
  933. "OLD" from Tor 0.1.2.3-alpha up to and including 0.2.0.12-alpha.)
  934. {Controllers may want to suggest that the user upgrade OLD or
  935. UNRECOMMENDED versions. NEW versions may be known-insecure, or may
  936. simply be development versions.}
  937. TOO_MANY_CONNECTIONS
  938. "CURRENT=NUM"
  939. Tor has reached its ulimit -n or whatever the native limit is on file
  940. descriptors or sockets. CURRENT is the number of sockets Tor
  941. currently has open. The user should really do something about
  942. this. The "current" argument shows the number of connections currently
  943. open.
  944. {Controllers may recommend that the user increase the limit, or
  945. increase it for them. Recommendations should be phrased in an
  946. OS-appropriate way and automated when possible.}
  947. BUG
  948. "REASON=STRING"
  949. Tor has encountered a situation that its developers never expected,
  950. and the developers would like to learn that it happened. Perhaps
  951. the controller can explain this to the user and encourage her to
  952. file a bug report?
  953. {Controllers should log bugs, but shouldn't annoy the user in case a
  954. bug appears frequently.}
  955. CLOCK_SKEW
  956. SKEW="+" / "-" SECONDS
  957. MIN_SKEW="+" / "-" SECONDS.
  958. SOURCE="DIRSERV:" IP ":" Port /
  959. "NETWORKSTATUS:" IP ":" Port /
  960. "OR:" IP ":" Port /
  961. "CONSENSUS"
  962. If "SKEW" is present, it's an estimate of how far we are from the
  963. time declared in the source. (In other words, if we're an hour in
  964. the past, the value is -3600.) "MIN_SKEW" is present, it's a lower
  965. bound. If the source is a DIRSERV, we got the current time from a
  966. connection to a dirserver. If the source is a NETWORKSTATUS, we
  967. decided we're skewed because we got a v2 networkstatus from far in
  968. the future. If the source is OR, the skew comes from a NETINFO
  969. cell from a connection to another relay. If the source is
  970. CONSENSUS, we decided we're skewed because we got a networkstatus
  971. consensus from the future.
  972. {Tor should send this message to controllers when it thinks the
  973. skew is so high that it will interfere with proper Tor operation.
  974. Controllers shouldn't blindly adjust the clock, since the more
  975. accurate source of skew info (DIRSERV) is currently
  976. unauthenticated.}
  977. BAD_LIBEVENT
  978. "METHOD=" libevent method
  979. "VERSION=" libevent version
  980. "BADNESS=" "BROKEN" / "BUGGY" / "SLOW"
  981. "RECOVERED=" "NO" / "YES"
  982. Tor knows about bugs in using the configured event method in this
  983. version of libevent. "BROKEN" libevents won't work at all;
  984. "BUGGY" libevents might work okay; "SLOW" libevents will work
  985. fine, but not quickly. If "RECOVERED" is YES, Tor managed to
  986. switch to a more reliable (but probably slower!) libevent method.
  987. {Controllers may want to warn the user if this event occurs, though
  988. generally it's the fault of whoever built the Tor binary and there's
  989. not much the user can do besides upgrade libevent or upgrade the
  990. binary.}
  991. DIR_ALL_UNREACHABLE
  992. Tor believes that none of the known directory servers are
  993. reachable -- this is most likely because the local network is
  994. down or otherwise not working, and might help to explain for the
  995. user why Tor appears to be broken.
  996. {Controllers may want to warn the user if this event occurs; further
  997. action is generally not possible.}
  998. CONSENSUS_ARRIVED
  999. Tor has received and validated a new consensus networkstatus.
  1000. (This event can be delayed a little while after the consensus
  1001. is received, if Tor needs to fetch certificates.)
  1002. Actions for STATUS_CLIENT events can be as follows:
  1003. BOOTSTRAP
  1004. "PROGRESS=" num
  1005. "TAG=" Keyword
  1006. "SUMMARY=" String
  1007. ["WARNING=" String
  1008. "REASON=" Keyword
  1009. "COUNT=" num
  1010. "RECOMMENDATION=" Keyword
  1011. ]
  1012. Tor has made some progress at establishing a connection to the
  1013. Tor network, fetching directory information, or making its first
  1014. circuit; or it has encountered a problem while bootstrapping. This
  1015. status event is especially useful for users with slow connections
  1016. or with connectivity problems.
  1017. "Progress" gives a number between 0 and 100 for how far through
  1018. the bootstrapping process we are. "Summary" is a string that can
  1019. be displayed to the user to describe the *next* task that Tor
  1020. will tackle, i.e., the task it is working on after sending the
  1021. status event. "Tag" is a string that controllers can use to
  1022. recognize bootstrap phases, if they want to do something smarter
  1023. than just blindly displaying the summary string; see Section 5
  1024. for the current tags that Tor issues.
  1025. The StatusSeverity describes whether this is a normal bootstrap
  1026. phase (severity notice) or an indication of a bootstrapping
  1027. problem (severity warn).
  1028. For bootstrap problems, we include the same progress, tag, and
  1029. summary values as we would for a normal bootstrap event, but we
  1030. also include "warning", "reason", "count", and "recommendation"
  1031. key/value combos. The "count" number tells how many bootstrap
  1032. problems there have been so far at this phase. The "reason"
  1033. string lists one of the reasons allowed in the ORCONN event. The
  1034. "warning" argument string with any hints Tor has to offer about
  1035. why it's having troubles bootstrapping.
  1036. The "reason" values are long-term-stable controller-facing tags to
  1037. identify particular issues in a bootstrapping step. The warning
  1038. strings, on the other hand, are human-readable. Controllers
  1039. SHOULD NOT rely on the format of any warning string. Currently
  1040. the possible values for "recommendation" are either "ignore" or
  1041. "warn" -- if ignore, the controller can accumulate the string in
  1042. a pile of problems to show the user if the user asks; if warn,
  1043. the controller should alert the user that Tor is pretty sure
  1044. there's a bootstrapping problem.
  1045. Currently Tor uses recommendation=ignore for the first
  1046. nine bootstrap problem reports for a given phase, and then
  1047. uses recommendation=warn for subsequent problems at that
  1048. phase. Hopefully this is a good balance between tolerating
  1049. occasional errors and reporting serious problems quickly.
  1050. ENOUGH_DIR_INFO
  1051. Tor now knows enough network-status documents and enough server
  1052. descriptors that it's going to start trying to build circuits now.
  1053. {Controllers may want to use this event to decide when to indicate
  1054. progress to their users, but should not interrupt the user's browsing
  1055. to tell them so.}
  1056. NOT_ENOUGH_DIR_INFO
  1057. We discarded expired statuses and router descriptors to fall
  1058. below the desired threshold of directory information. We won't
  1059. try to build any circuits until ENOUGH_DIR_INFO occurs again.
  1060. {Controllers may want to use this event to decide when to indicate
  1061. progress to their users, but should not interrupt the user's browsing
  1062. to tell them so.}
  1063. CIRCUIT_ESTABLISHED
  1064. Tor is able to establish circuits for client use. This event will
  1065. only be sent if we just built a circuit that changed our mind --
  1066. that is, prior to this event we didn't know whether we could
  1067. establish circuits.
  1068. {Suggested use: controllers can notify their users that Tor is
  1069. ready for use as a client once they see this status event. [Perhaps
  1070. controllers should also have a timeout if too much time passes and
  1071. this event hasn't arrived, to give tips on how to troubleshoot.
  1072. On the other hand, hopefully Tor will send further status events
  1073. if it can identify the problem.]}
  1074. CIRCUIT_NOT_ESTABLISHED
  1075. "REASON=" "EXTERNAL_ADDRESS" / "DIR_ALL_UNREACHABLE" / "CLOCK_JUMPED"
  1076. We are no longer confident that we can build circuits. The "reason"
  1077. keyword provides an explanation: which other status event type caused
  1078. our lack of confidence.
  1079. {Controllers may want to use this event to decide when to indicate
  1080. progress to their users, but should not interrupt the user's browsing
  1081. to do so.}
  1082. [Note: only REASON=CLOCK_JUMPED is implemented currently.]
  1083. DANGEROUS_PORT
  1084. "PORT=" port
  1085. "RESULT=" "REJECT" / "WARN"
  1086. A stream was initiated to a port that's commonly used for
  1087. vulnerable-plaintext protocols. If the Result is "reject", we
  1088. refused the connection; whereas if it's "warn", we allowed it.
  1089. {Controllers should warn their users when this occurs, unless they
  1090. happen to know that the application using Tor is in fact doing so
  1091. correctly (e.g., because it is part of a distributed bundle). They
  1092. might also want some sort of interface to let the user configure
  1093. their RejectPlaintextPorts and WarnPlaintextPorts config options.}
  1094. DANGEROUS_SOCKS
  1095. "PROTOCOL=" "SOCKS4" / "SOCKS5"
  1096. "ADDRESS=" IP:port
  1097. A connection was made to Tor's SOCKS port using one of the SOCKS
  1098. approaches that doesn't support hostnames -- only raw IP addresses.
  1099. If the client application got this address from gethostbyname(),
  1100. it may be leaking target addresses via DNS.
  1101. {Controllers should warn their users when this occurs, unless they
  1102. happen to know that the application using Tor is in fact doing so
  1103. correctly (e.g., because it is part of a distributed bundle).}
  1104. SOCKS_UNKNOWN_PROTOCOL
  1105. "DATA=string"
  1106. A connection was made to Tor's SOCKS port that tried to use it
  1107. for something other than the SOCKS protocol. Perhaps the user is
  1108. using Tor as an HTTP proxy? The DATA is the first few characters
  1109. sent to Tor on the SOCKS port.
  1110. {Controllers may want to warn their users when this occurs: it
  1111. indicates a misconfigured application.}
  1112. SOCKS_BAD_HOSTNAME
  1113. "HOSTNAME=QuotedString"
  1114. Some application gave us a funny-looking hostname. Perhaps
  1115. it is broken? In any case it won't work with Tor and the user
  1116. should know.
  1117. {Controllers may want to warn their users when this occurs: it
  1118. usually indicates a misconfigured application.}
  1119. Actions for STATUS_SERVER can be as follows:
  1120. EXTERNAL_ADDRESS
  1121. "ADDRESS=IP"
  1122. "HOSTNAME=NAME"
  1123. "METHOD=CONFIGURED/DIRSERV/RESOLVED/INTERFACE/GETHOSTNAME"
  1124. Our best idea for our externally visible IP has changed to 'IP'.
  1125. If 'HOSTNAME' is present, we got the new IP by resolving 'NAME'. If the
  1126. method is 'CONFIGURED', the IP was given verbatim as a configuration
  1127. option. If the method is 'RESOLVED', we resolved the Address
  1128. configuration option to get the IP. If the method is 'GETHOSTNAME',
  1129. we resolved our hostname to get the IP. If the method is 'INTERFACE',
  1130. we got the address of one of our network interfaces to get the IP. If
  1131. the method is 'DIRSERV', a directory server told us a guess for what
  1132. our IP might be.
  1133. {Controllers may want to record this info and display it to the user.}
  1134. CHECKING_REACHABILITY
  1135. "ORADDRESS=IP:port"
  1136. "DIRADDRESS=IP:port"
  1137. We're going to start testing the reachability of our external OR port
  1138. or directory port.
  1139. {This event could affect the controller's idea of server status, but
  1140. the controller should not interrupt the user to tell them so.}
  1141. REACHABILITY_SUCCEEDED
  1142. "ORADDRESS=IP:port"
  1143. "DIRADDRESS=IP:port"
  1144. We successfully verified the reachability of our external OR port or
  1145. directory port (depending on which of ORADDRESS or DIRADDRESS is
  1146. given.)
  1147. {This event could affect the controller's idea of server status, but
  1148. the controller should not interrupt the user to tell them so.}
  1149. GOOD_SERVER_DESCRIPTOR
  1150. We successfully uploaded our server descriptor to at least one
  1151. of the directory authorities, with no complaints.
  1152. {Originally, the goal of this event was to declare "every authority
  1153. has accepted the descriptor, so there will be no complaints
  1154. about it." But since some authorities might be offline, it's
  1155. harder to get certainty than we had thought. As such, this event
  1156. is equivalent to ACCEPTED_SERVER_DESCRIPTOR below. Controllers
  1157. should just look at ACCEPTED_SERVER_DESCRIPTOR and should ignore
  1158. this event for now.}
  1159. SERVER_DESCRIPTOR_STATUS
  1160. "STATUS=" "LISTED" / "UNLISTED"
  1161. We just got a new networkstatus consensus, and whether we're in
  1162. it or not in it has changed. Specifically, status is "listed"
  1163. if we're listed in it but previous to this point we didn't know
  1164. we were listed in a consensus; and status is "unlisted" if we
  1165. thought we should have been listed in it (e.g. we were listed in
  1166. the last one), but we're not.
  1167. {Moving from listed to unlisted is not necessarily cause for
  1168. alarm. The relay might have failed a few reachability tests,
  1169. or the Internet might have had some routing problems. So this
  1170. feature is mainly to let relay operators know when their relay
  1171. has successfully been listed in the consensus.}
  1172. [Not implemented yet. We should do this in 0.2.2.x. -RD]
  1173. NAMESERVER_STATUS
  1174. "NS=addr"
  1175. "STATUS=" "UP" / "DOWN"
  1176. "ERR=" message
  1177. One of our nameservers has changed status.
  1178. {This event could affect the controller's idea of server status, but
  1179. the controller should not interrupt the user to tell them so.}
  1180. NAMESERVER_ALL_DOWN
  1181. All of our nameservers have gone down.
  1182. {This is a problem; if it happens often without the nameservers
  1183. coming up again, the user needs to configure more or better
  1184. nameservers.}
  1185. DNS_HIJACKED
  1186. Our DNS provider is providing an address when it should be saying
  1187. "NOTFOUND"; Tor will treat the address as a synonym for "NOTFOUND".
  1188. {This is an annoyance; controllers may want to tell admins that their
  1189. DNS provider is not to be trusted.}
  1190. DNS_USELESS
  1191. Our DNS provider is giving a hijacked address instead of well-known
  1192. websites; Tor will not try to be an exit node.
  1193. {Controllers could warn the admin if the server is running as an
  1194. exit server: the admin needs to configure a good DNS server.
  1195. Alternatively, this happens a lot in some restrictive environments
  1196. (hotels, universities, coffeeshops) when the user hasn't registered.}
  1197. BAD_SERVER_DESCRIPTOR
  1198. "DIRAUTH=addr:port"
  1199. "REASON=string"
  1200. A directory authority rejected our descriptor. Possible reasons
  1201. include malformed descriptors, incorrect keys, highly skewed clocks,
  1202. and so on.
  1203. {Controllers should warn the admin, and try to cope if they can.}
  1204. ACCEPTED_SERVER_DESCRIPTOR
  1205. "DIRAUTH=addr:port"
  1206. A single directory authority accepted our descriptor.
  1207. // actually notice
  1208. {This event could affect the controller's idea of server status, but
  1209. the controller should not interrupt the user to tell them so.}
  1210. REACHABILITY_FAILED
  1211. "ORADDRESS=IP:port"
  1212. "DIRADDRESS=IP:port"
  1213. We failed to connect to our external OR port or directory port
  1214. successfully.
  1215. {This event could affect the controller's idea of server status. The
  1216. controller should warn the admin and suggest reasonable steps to take.}
  1217. 4.1.11. Our set of guard nodes has changed
  1218. Syntax:
  1219. "650" SP "GUARD" SP Type SP Name SP Status ... CRLF
  1220. Type = "ENTRY"
  1221. Name = The (possibly verbose) nickname of the guard affected.
  1222. Status = "NEW" | "UP" | "DOWN" | "BAD" | "GOOD" | "DROPPED"
  1223. [explain states. XXX]
  1224. 4.1.12. Network status has changed
  1225. Syntax:
  1226. "650" "+" "NS" CRLF 1*NetworkStatus "." CRLF "650" SP "OK" CRLF
  1227. The event is used whenever our local view of a relay status changes.
  1228. This happens when we get a new v3 consensus (in which case the entries
  1229. we see are a duplicate of what we see in the NEWCONSENSUS event,
  1230. below), but it also happens when we decide to mark a relay as up or
  1231. down in our local status, for example based on connection attempts.
  1232. [First added in 0.1.2.3-alpha]
  1233. 4.1.13. Bandwidth used on an application stream
  1234. The syntax is:
  1235. "650" SP "STREAM_BW" SP StreamID SP BytesWritten SP BytesRead CRLF
  1236. BytesWritten = 1*DIGIT
  1237. BytesRead = 1*DIGIT
  1238. BytesWritten and BytesRead are the number of bytes written and read
  1239. by the application since the last STREAM_BW event on this stream.
  1240. Note that from Tor's perspective, *reading* a byte on a stream means
  1241. that the application *wrote* the byte. That's why the order of "written"
  1242. vs "read" is opposite for stream_bw events compared to bw events.
  1243. These events are generated about once per second per stream; no events
  1244. are generated for streams that have not written or read. These events
  1245. apply only to streams entering Tor (such as on a SOCKSPort, TransPort,
  1246. or so on). They are not generated for exiting streams.
  1247. 4.1.14. Per-country client stats
  1248. The syntax is:
  1249. "650" SP "CLIENTS_SEEN" SP TimeStarted SP CountrySummary CRLF
  1250. We just generated a new summary of which countries we've seen clients
  1251. from recently. The controller could display this for the user, e.g.
  1252. in their "relay" configuration window, to give them a sense that they
  1253. are actually being useful.
  1254. Currently only bridge relays will receive this event, but once we figure
  1255. out how to sufficiently aggregate and sanitize the client counts on
  1256. main relays, we might start sending these events in other cases too.
  1257. TimeStarted is a quoted string indicating when the reported summary
  1258. counts from (in GMT).
  1259. The CountrySummary keyword has as its argument a comma-separated,
  1260. possibly empty set of "countrycode=count" pairs. For example (without
  1261. linebreak),
  1262. 650-CLIENTS_SEEN TimeStarted="2008-12-25 23:50:43"
  1263. CountrySummary=us=16,de=8,uk=8
  1264. 4.1.15. New consensus networkstatus has arrived.
  1265. The syntax is:
  1266. "650" "+" "NEWCONSENSUS" CRLF 1*NetworkStatus "." CRLF "650" SP
  1267. "OK" CRLF
  1268. A new consensus networkstatus has arrived. We include NS-style lines for
  1269. every relay in the consensus. NEWCONSENSUS is a separate event from the
  1270. NS event, because the list here represents every usable relay: so any
  1271. relay *not* mentioned in this list is implicitly no longer recommended.
  1272. [First added in 0.2.1.13-alpha]
  1273. 5. Implementation notes
  1274. 5.1. Authentication
  1275. If the control port is open and no authentication operation is enabled, Tor
  1276. trusts any local user that connects to the control port. This is generally
  1277. a poor idea.
  1278. If the 'CookieAuthentication' option is true, Tor writes a "magic cookie"
  1279. file named "control_auth_cookie" into its data directory. To authenticate,
  1280. the controller must send the contents of this file, encoded in hexadecimal.
  1281. If the 'HashedControlPassword' option is set, it must contain the salted
  1282. hash of a secret password. The salted hash is computed according to the
  1283. S2K algorithm in RFC 2440 (OpenPGP), and prefixed with the s2k specifier.
  1284. This is then encoded in hexadecimal, prefixed by the indicator sequence
  1285. "16:". Thus, for example, the password 'foo' could encode to:
  1286. 16:660537E3E1CD49996044A3BF558097A981F539FEA2F9DA662B4626C1C2
  1287. ++++++++++++++++**^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1288. salt hashed value
  1289. indicator
  1290. You can generate the salt of a password by calling
  1291. 'tor --hash-password <password>'
  1292. or by using the example code in the Python and Java controller libraries.
  1293. To authenticate under this scheme, the controller sends Tor the original
  1294. secret that was used to generate the password, either as a quoted string
  1295. or encoded in hexadecimal.
  1296. 5.2. Don't let the buffer get too big.
  1297. If you ask for lots of events, and 16MB of them queue up on the buffer,
  1298. the Tor process will close the socket.
  1299. 5.3. Backward compatibility with v0 control protocol.
  1300. The 'version 0' control protocol was replaced in Tor 0.1.1.x. Support
  1301. was removed in Tor 0.2.0.x. Every non-obsolete version of Tor now
  1302. supports the version 1 control protocol.
  1303. For backward compatibility with the "version 0" control protocol,
  1304. Tor used to check whether the third octet of the first command is zero.
  1305. (If it was, Tor assumed that version 0 is in use.)
  1306. This compatibility was removed in Tor 0.1.2.16 and 0.2.0.4-alpha.
  1307. 5.4. Tor config options for use by controllers
  1308. Tor provides a few special configuration options for use by controllers.
  1309. These options can be set and examined by the SETCONF and GETCONF commands,
  1310. but are not saved to disk by SAVECONF.
  1311. Generally, these options make Tor unusable by disabling a portion of Tor's
  1312. normal operations. Unless a controller provides replacement functionality
  1313. to fill this gap, Tor will not correctly handle user requests.
  1314. __AllDirOptionsPrivate
  1315. If true, Tor will try to launch all directory operations through
  1316. anonymous connections. (Ordinarily, Tor only tries to anonymize
  1317. requests related to hidden services.) This option will slow down
  1318. directory access, and may stop Tor from working entirely if it does not
  1319. yet have enough directory information to build circuits.
  1320. (Boolean. Default: "0".)
  1321. __DisablePredictedCircuits
  1322. If true, Tor will not launch preemptive "general-purpose" circuits for
  1323. streams to attach to. (It will still launch circuits for testing and
  1324. for hidden services.)
  1325. (Boolean. Default: "0".)
  1326. __LeaveStreamsUnattached
  1327. If true, Tor will not automatically attach new streams to circuits;
  1328. instead, the controller must attach them with ATTACHSTREAM. If the
  1329. controller does not attach the streams, their data will never be routed.
  1330. (Boolean. Default: "0".)
  1331. __HashedControlSessionPassword
  1332. As HashedControlPassword, but is not saved to the torrc file by
  1333. SAVECONF. Added in Tor 0.2.0.20-rc.
  1334. __ReloadTorrcOnSIGHUP
  1335. If this option is true (the default), we reload the torrc from disk
  1336. every time we get a SIGHUP (from the controller or via a signal).
  1337. Otherwise, we don't. This option exists so that controllers can keep
  1338. their options from getting overwritten when a user sends Tor a HUP for
  1339. some other reason (for example, to rotate the logs).
  1340. (Boolean. Default: "1")
  1341. 5.5. Phases from the Bootstrap status event.
  1342. This section describes the various bootstrap phases currently reported
  1343. by Tor. Controllers should not assume that the percentages and tags
  1344. listed here will continue to match up, or even that the tags will stay
  1345. in the same order. Some phases might also be skipped (not reported)
  1346. if the associated bootstrap step is already complete, or if the phase
  1347. no longer is necessary. Only "starting" and "done" are guaranteed to
  1348. exist in all future versions.
  1349. Current Tor versions enter these phases in order, monotonically.
  1350. Future Tors MAY revisit earlier stages.
  1351. Phase 0:
  1352. tag=starting summary="Starting"
  1353. Tor starts out in this phase.
  1354. Phase 5:
  1355. tag=conn_dir summary="Connecting to directory mirror"
  1356. Tor sends this event as soon as Tor has chosen a directory mirror --
  1357. e.g. one of the authorities if bootstrapping for the first time or
  1358. after a long downtime, or one of the relays listed in its cached
  1359. directory information otherwise.
  1360. Tor will stay at this phase until it has successfully established
  1361. a TCP connection with some directory mirror. Problems in this phase
  1362. generally happen because Tor doesn't have a network connection, or
  1363. because the local firewall is dropping SYN packets.
  1364. Phase 10:
  1365. tag=handshake_dir summary="Finishing handshake with directory mirror"
  1366. This event occurs when Tor establishes a TCP connection with a relay used
  1367. as a directory mirror (or its https proxy if it's using one). Tor remains
  1368. in this phase until the TLS handshake with the relay is finished.
  1369. Problems in this phase generally happen because Tor's firewall is
  1370. doing more sophisticated MITM attacks on it, or doing packet-level
  1371. keyword recognition of Tor's handshake.
  1372. Phase 15:
  1373. tag=onehop_create summary="Establishing one-hop circuit for dir info"
  1374. Once TLS is finished with a relay, Tor will send a CREATE_FAST cell
  1375. to establish a one-hop circuit for retrieving directory information.
  1376. It will remain in this phase until it receives the CREATED_FAST cell
  1377. back, indicating that the circuit is ready.
  1378. Phase 20:
  1379. tag=requesting_status summary="Asking for networkstatus consensus"
  1380. Once we've finished our one-hop circuit, we will start a new stream
  1381. for fetching the networkstatus consensus. We'll stay in this phase
  1382. until we get the 'connected' relay cell back, indicating that we've
  1383. established a directory connection.
  1384. Phase 25:
  1385. tag=loading_status summary="Loading networkstatus consensus"
  1386. Once we've established a directory connection, we will start fetching
  1387. the networkstatus consensus document. This could take a while; this
  1388. phase is a good opportunity for using the "progress" keyword to indicate
  1389. partial progress.
  1390. This phase could stall if the directory mirror we picked doesn't
  1391. have a copy of the networkstatus consensus so we have to ask another,
  1392. or it does give us a copy but we don't find it valid.
  1393. Phase 40:
  1394. tag=loading_keys summary="Loading authority key certs"
  1395. Sometimes when we've finished loading the networkstatus consensus,
  1396. we find that we don't have all the authority key certificates for the
  1397. keys that signed the consensus. At that point we put the consensus we
  1398. fetched on hold and fetch the keys so we can verify the signatures.
  1399. Phase 45
  1400. tag=requesting_descriptors summary="Asking for relay descriptors"
  1401. Once we have a valid networkstatus consensus and we've checked all
  1402. its signatures, we start asking for relay descriptors. We stay in this
  1403. phase until we have received a 'connected' relay cell in response to
  1404. a request for descriptors.
  1405. Phase 50:
  1406. tag=loading_descriptors summary="Loading relay descriptors"
  1407. We will ask for relay descriptors from several different locations,
  1408. so this step will probably make up the bulk of the bootstrapping,
  1409. especially for users with slow connections. We stay in this phase until
  1410. we have descriptors for at least 1/4 of the usable relays listed in
  1411. the networkstatus consensus. This phase is also a good opportunity to
  1412. use the "progress" keyword to indicate partial steps.
  1413. Phase 80:
  1414. tag=conn_or summary="Connecting to entry guard"
  1415. Once we have a valid consensus and enough relay descriptors, we choose
  1416. some entry guards and start trying to build some circuits. This step
  1417. is similar to the "conn_dir" phase above; the only difference is
  1418. the context.
  1419. If a Tor starts with enough recent cached directory information,
  1420. its first bootstrap status event will be for the conn_or phase.
  1421. Phase 85:
  1422. tag=handshake_or summary="Finishing handshake with entry guard"
  1423. This phase is similar to the "handshake_dir" phase, but it gets reached
  1424. if we finish a TCP connection to a Tor relay and we have already reached
  1425. the "conn_or" phase. We'll stay in this phase until we complete a TLS
  1426. handshake with a Tor relay.
  1427. Phase 90:
  1428. tag=circuit_create summary="Establishing circuits"
  1429. Once we've finished our TLS handshake with an entry guard, we will
  1430. set about trying to make some 3-hop circuits in case we need them soon.
  1431. Phase 100:
  1432. tag=done summary="Done"
  1433. A full 3-hop exit circuit has been established. Tor is ready to handle
  1434. application connections now.