control-spec.txt 74 KB

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