control-spec.txt 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431
  1. $Id$
  2. TC: A Tor control protocol (Version 1)
  3. 0. Scope
  4. This document describes an implementation-specific protocol that is used
  5. for other programs (such as frontend user-interfaces) to communicate with a
  6. locally running Tor process. It is not part of the Tor onion routing
  7. protocol.
  8. This protocol replaces version 0 of TC, which is now deprecated. For
  9. reference, TC is described in "control-spec-v0.txt". Implementors are
  10. recommended to avoid using TC directly, but instead to use a library that
  11. can easily be updated to use the newer protocol. (Version 0 is used by Tor
  12. versions 0.1.0.x; the protocol in this document only works with Tor
  13. versions in the 0.1.1.x series and later.)
  14. 1. Protocol outline
  15. TC is a bidirectional message-based protocol. It assumes an underlying
  16. stream for communication between a controlling process (the "client"
  17. or "controller") and a Tor process (or "server"). The stream may be
  18. implemented via TCP, TLS-over-TCP, a Unix-domain socket, or so on,
  19. but it must provide reliable in-order delivery. For security, the
  20. stream should not be accessible by untrusted parties.
  21. In TC, the client and server send typed messages to each other over the
  22. underlying stream. The client sends "commands" and the server sends
  23. "replies".
  24. By default, all messages from the server are in response to messages from
  25. the client. Some client requests, however, will cause the server to send
  26. messages to the client indefinitely far into the future. Such
  27. "asynchronous" replies are marked as such.
  28. Servers respond to messages in the order messages are received.
  29. 2. Message format
  30. 2.1. Description format
  31. The message formats listed below use ABNF as described in RFC 2234.
  32. The protocol itself is loosely based on SMTP (see RFC 2821).
  33. We use the following nonterminals from RFC 2822: atom, qcontent
  34. We define the following general-use nonterminals:
  35. String = DQUOTE *qcontent DQUOTE
  36. There are explicitly no limits on line length. All 8-bit characters are
  37. permitted unless explicitly disallowed.
  38. 2.2. Commands from controller to Tor
  39. Command = Keyword Arguments CRLF / "+" Keyword Arguments CRLF Data
  40. Keyword = 1*ALPHA
  41. Arguments = *(SP / VCHAR)
  42. Specific commands and their arguments are described below in section 3.
  43. 2.3. Replies from Tor to the controller
  44. Reply = SyncReply / AsyncReply
  45. SyncReply = *(MidReplyLine / DataReplyLine) EndReplyLine
  46. AsyncReply = *(MidReplyLine / DataReplyLine) EndReplyLine
  47. MidReplyLine = StatusCode "-" ReplyLine
  48. DataReplyLine = StatusCode "+" ReplyLine Data
  49. EndReplyLine = StatusCode SP ReplyLine
  50. ReplyLine = [ReplyText] CRLF
  51. ReplyText = XXXX
  52. StatusCode = 3DIGIT
  53. Specific replies are mentioned below in section 3, and described more fully
  54. in section 4.
  55. [Compatibility note: versions of Tor before 0.2.0.3-alpha sometimes
  56. generate AsyncReplies of the form "*(MidReplyLine / DataReplyLine)".
  57. This is incorrect, but controllers that need to work with these
  58. versions of Tor should be prepared to get multi-line AsyncReplies with
  59. the final line (usually "650 OK") omitted.]
  60. 2.4. General-use tokens
  61. ; Identifiers for servers.
  62. ServerID = Nickname / Fingerprint
  63. Nickname = 1*19 NicknameChar
  64. NicknameChar = "a"-"z" / "A"-"Z" / "0" - "9"
  65. Fingerprint = "$" 40*HEXDIG
  66. ; A "=" indicates that the given nickname is canonical; a "~" indicates
  67. ; that the given nickname is not canonical.
  68. LongName = Fingerprint [ ( "=" / "~" ) Nickname ]
  69. ; How a controller tells Tor about a particular OR. There are four
  70. ; possible formats:
  71. ; $Digest -- The router whose identity key hashes to the given digest.
  72. ; This is the preferred way to refer to an OR.
  73. ; $Digest~Name -- The router whose identity key hashes to the given
  74. ; digest, but only if the router has the given nickname.
  75. ; $Digest=Name -- The router whose identity key hashes to the given
  76. ; digest, but only if the router is Named and has the given
  77. ; nickname.
  78. ; Name -- The Named router with the given nickname, or, if no such
  79. ; router exists, any router whose nickname matches the one given.
  80. ; This is not a safe way to refer to routers, since Named status
  81. ; could under some circumstances change over time.
  82. ServerSpec = LongName / Nickname
  83. ; Unique identifiers for streams or circuits. Currently, Tor only
  84. ; uses digits, but this may change
  85. StreamID = 1*16 IDChar
  86. CircuitID = 1*16 IDChar
  87. IDChar = ALPHA / DIGIT
  88. Address = ip4-address / ip6-address / hostname (XXXX Define these)
  89. ; A "Data" section is a sequence of octets concluded by the terminating
  90. ; sequence CRLF "." CRLF. The terminating sequence may not appear in the
  91. ; body of the data. Leading periods on lines in the data are escaped with
  92. ; an additional leading period as in RFC 2821 section 4.5.2.
  93. Data = *DataLine "." CRLF
  94. DataLine = CRLF / "." 1*LineItem CRLF / NonDotItem *LineItem CRLF
  95. LineItem = NonCR / 1*CR NonCRLF
  96. NonDotItem = NonDotCR / 1*CR NonCRLF
  97. 3. Commands
  98. All commands and other keywords are case-insensitive.
  99. 3.1. SETCONF
  100. Change the value of one or more configuration variables. The syntax is:
  101. "SETCONF" 1*(SP keyword ["=" String]) CRLF
  102. Tor behaves as though it had just read each of the key-value pairs
  103. from its configuration file. Keywords with no corresponding values have
  104. their configuration values reset to 0 or NULL (use RESETCONF if you want
  105. to set it back to its default). SETCONF is all-or-nothing: if there
  106. is an error in any of the configuration settings, Tor sets none of them.
  107. Tor responds with a "250 configuration values set" reply on success.
  108. If some of the listed keywords can't be found, Tor replies with a
  109. "552 Unrecognized option" message. Otherwise, Tor responds with a
  110. "513 syntax error in configuration values" reply on syntax error, or a
  111. "553 impossible configuration setting" reply on a semantic error.
  112. When a configuration option takes multiple values, or when multiple
  113. configuration keys form a context-sensitive group (see GETCONF below), then
  114. setting _any_ of the options in a SETCONF command is taken to reset all of
  115. the others. For example, if two ORBindAddress values are configured, and a
  116. SETCONF command arrives containing a single ORBindAddress value, the new
  117. command's value replaces the two old values.
  118. 3.2. RESETCONF
  119. Remove all settings for a given configuration option entirely, assign
  120. its default value (if any), and then assign the String provided.
  121. Typically the String is left empty, to simply set an option back to
  122. its default. The syntax is:
  123. "RESETCONF" 1*(SP keyword ["=" String]) CRLF
  124. Otherwise it behaves like SETCONF above.
  125. 3.3. GETCONF
  126. Request the value of a configuration variable. The syntax is:
  127. "GETCONF" 1*(SP keyword) CRLF
  128. If all of the listed keywords exist in the Tor configuration, Tor replies
  129. with a series of reply lines of the form:
  130. 250 keyword=value
  131. If any option is set to a 'default' value semantically different from an
  132. empty string, Tor may reply with a reply line of the form:
  133. 250 keyword
  134. If some of the listed keywords can't be found, Tor replies with a
  135. "552 unknown configuration keyword" message.
  136. If an option appears multiple times in the configuration, all of its
  137. key-value pairs are returned in order.
  138. Some options are context-sensitive, and depend on other options with
  139. different keywords. These cannot be fetched directly. Currently there
  140. is only one such option: clients should use the "HiddenServiceOptions"
  141. virtual keyword to get all HiddenServiceDir, HiddenServicePort,
  142. HiddenServiceNodes, and HiddenServiceExcludeNodes option settings.
  143. 3.4. SETEVENTS
  144. Request the server to inform the client about interesting events. The
  145. syntax is:
  146. "SETEVENTS" [SP "EXTENDED"] *(SP EventCode) CRLF
  147. EventCode = "CIRC" / "STREAM" / "ORCONN" / "BW" / "DEBUG" /
  148. "INFO" / "NOTICE" / "WARN" / "ERR" / "NEWDESC" / "ADDRMAP" /
  149. "AUTHDIR_NEWDESCS" / "DESCCHANGED" / "STATUS_GENERAL" /
  150. "STATUS_CLIENT" / "STATUS_SERVER" / "GUARD" / "NS" / "STREAM_BW"
  151. Any events *not* listed in the SETEVENTS line are turned off; thus, sending
  152. SETEVENTS with an empty body turns off all event reporting.
  153. The server responds with a "250 OK" reply on success, and a "552
  154. Unrecognized event" reply if one of the event codes isn't recognized. (On
  155. error, the list of active event codes isn't changed.)
  156. If the flag string "EXTENDED" is provided, Tor may provide extra
  157. information with events for this connection; see 4.1 for more information.
  158. NOTE: All events on a given connection will be provided in extended format,
  159. or none.
  160. NOTE: "EXTENDED" is only supported in Tor 0.1.1.9-alpha or later.
  161. Each event is described in more detail in Section 4.1.
  162. 3.5. AUTHENTICATE
  163. Sent from the client to the server. The syntax is:
  164. "AUTHENTICATE" [ SP 1*HEXDIG / QuotedString ] CRLF
  165. The server responds with "250 OK" on success or "515 Bad authentication" if
  166. the authentication cookie is incorrect. Tor closes the connection on an
  167. authentication failure.
  168. The format of the 'cookie' is implementation-dependent; see 5.1 below for
  169. information on how the standard Tor implementation handles it.
  170. If Tor requires authentication and the controller has not yet sent an
  171. AUTHENTICATE message, Tor sends a "514 authentication required" reply to
  172. any other kind of message, and then closes the connection.
  173. (Versions of Tor before 0.1.2.16 and 0.2.0.4-alpha did not close the
  174. connection after an authentication failure.)
  175. 3.6. SAVECONF
  176. Sent from the client to the server. The syntax is:
  177. "SAVECONF" CRLF
  178. Instructs the server to write out its config options into its torrc. Server
  179. returns "250 OK" if successful, or "551 Unable to write configuration
  180. to disk" if it can't write the file or some other error occurs.
  181. 3.7. SIGNAL
  182. Sent from the client to the server. The syntax is:
  183. "SIGNAL" SP Signal CRLF
  184. Signal = "RELOAD" / "SHUTDOWN" / "DUMP" / "DEBUG" / "HALT" /
  185. "HUP" / "INT" / "USR1" / "USR2" / "TERM" / "NEWNYM" /
  186. "CLEARDNSCACHE"
  187. The meaning of the signals are:
  188. RELOAD -- Reload: reload config items, refetch directory. (like HUP)
  189. SHUTDOWN -- Controlled shutdown: if server is an OP, exit immediately.
  190. If it's an OR, close listeners and exit after 30 seconds.
  191. (like INT)
  192. DUMP -- Dump stats: log information about open connections and
  193. circuits. (like USR1)
  194. DEBUG -- Debug: switch all open logs to loglevel debug. (like USR2)
  195. HALT -- Immediate shutdown: clean up and exit now. (like TERM)
  196. CLEARDNSCACHE -- Forget the client-side cached IPs for all hostnames.
  197. NEWNYM -- Switch to clean circuits, so new application requests
  198. don't share any circuits with old ones. Also clears
  199. the client-side DNS cache. (Tor MAY rate-limit its
  200. response to this signal.)
  201. The server responds with "250 OK" if the signal is recognized (or simply
  202. closes the socket if it was asked to close immediately), or "552
  203. Unrecognized signal" if the signal is unrecognized.
  204. 3.8. MAPADDRESS
  205. Sent from the client to the server. The syntax is:
  206. "MAPADDRESS" 1*(Address "=" Address SP) CRLF
  207. The first address in each pair is an "original" address; the second is a
  208. "replacement" address. The client sends this message to the server in
  209. order to tell it that future SOCKS requests for connections to the original
  210. address should be replaced with connections to the specified replacement
  211. address. If the addresses are well-formed, and the server is able to
  212. fulfill the request, the server replies with a 250 message:
  213. 250-OldAddress1=NewAddress1
  214. 250 OldAddress2=NewAddress2
  215. containing the source and destination addresses. If request is
  216. malformed, the server replies with "512 syntax error in command
  217. argument". If the server can't fulfill the request, it replies with
  218. "451 resource exhausted".
  219. The client may decline to provide a body for the original address, and
  220. instead send a special null address ("0.0.0.0" for IPv4, "::0" for IPv6, or
  221. "." for hostname), signifying that the server should choose the original
  222. address itself, and return that address in the reply. The server
  223. should ensure that it returns an element of address space that is unlikely
  224. to be in actual use. If there is already an address mapped to the
  225. destination address, the server may reuse that mapping.
  226. If the original address is already mapped to a different address, the old
  227. mapping is removed. If the original address and the destination address
  228. are the same, the server removes any mapping in place for the original
  229. address.
  230. Example:
  231. C: MAPADDRESS 0.0.0.0=tor.eff.org 1.2.3.4=tor.freehaven.net
  232. S: 250-127.192.10.10=tor.eff.org
  233. S: 250 1.2.3.4=tor.freehaven.net
  234. {Note: This feature is designed to be used to help Tor-ify applications
  235. that need to use SOCKS4 or hostname-less SOCKS5. There are three
  236. approaches to doing this:
  237. 1. Somehow make them use SOCKS4a or SOCKS5-with-hostnames instead.
  238. 2. Use tor-resolve (or another interface to Tor's resolve-over-SOCKS
  239. feature) to resolve the hostname remotely. This doesn't work
  240. with special addresses like x.onion or x.y.exit.
  241. 3. Use MAPADDRESS to map an IP address to the desired hostname, and then
  242. arrange to fool the application into thinking that the hostname
  243. has resolved to that IP.
  244. This functionality is designed to help implement the 3rd approach.}
  245. Mappings set by the controller last until the Tor process exits:
  246. they never expire. If the controller wants the mapping to last only
  247. a certain time, then it must explicitly un-map the address when that
  248. time has elapsed.
  249. 3.9. GETINFO
  250. Sent from the client to the server. The syntax is as for GETCONF:
  251. "GETINFO" 1*(SP keyword) CRLF
  252. one or more NL-terminated strings. The server replies with an INFOVALUE
  253. message, or a 551 or 552 error.
  254. Unlike GETCONF, this message is used for data that are not stored in the Tor
  255. configuration file, and that may be longer than a single line. On success,
  256. one ReplyLine is sent for each requested value, followed by a final 250 OK
  257. ReplyLine. If a value fits on a single line, the format is:
  258. 250-keyword=value
  259. If a value must be split over multiple lines, the format is:
  260. 250+keyword=
  261. value
  262. .
  263. Recognized keys and their values include:
  264. "version" -- The version of the server's software, including the name
  265. of the software. (example: "Tor 0.0.9.4")
  266. "config-file" -- The location of Tor's configuration file ("torrc").
  267. ["exit-policy/prepend" -- The default exit policy lines that Tor will
  268. *prepend* to the ExitPolicy config option.
  269. -- Never implemented. Useful?]
  270. "exit-policy/default" -- The default exit policy lines that Tor will
  271. *append* to the ExitPolicy config option.
  272. "desc/id/<OR identity>" or "desc/name/<OR nickname>" -- the latest
  273. server descriptor for a given OR, NUL-terminated.
  274. "ns/id/<OR identity>" or "ns/name/<OR nickname>" -- the latest network
  275. status info for a given OR. Network status info is as given in
  276. dir-spec.txt, and reflects the current beliefs of this Tor about the
  277. router in question. Like directory clients, controllers MUST
  278. tolerate unrecognized flags and lines. The published date and
  279. descriptor digest are those believed to be best by this Tor,
  280. not necessarily those for a descriptor that Tor currently has.
  281. [First implemented in 0.1.2.3-alpha.]
  282. "ns/all" -- Network status info (v2 directory style) for all ORs we
  283. have an opinion about, joined by newlines. [First implemented
  284. in 0.1.2.3-alpha.]
  285. "desc/all-recent" -- the latest server descriptor for every router that
  286. Tor knows about.
  287. "network-status" -- a space-separated list (v1 directory style)
  288. of all known OR identities. This is in the same format as the
  289. router-status line in v1 directories; see dir-spec-v1.txt section
  290. 3 for details. (If VERBOSE_NAMES is enabled, the output will
  291. not conform to dir-spec-v1.txt; instead, the result will be a
  292. space-separated list of LongName, each preceded by a "!" if it is
  293. believed to be not running.)
  294. "address-mappings/all"
  295. "address-mappings/config"
  296. "address-mappings/cache"
  297. "address-mappings/control" -- a \r\n-separated list of address
  298. mappings, each in the form of "from-address to-address expiry".
  299. The 'config' key returns those address mappings set in the
  300. configuration; the 'cache' key returns the mappings in the
  301. client-side DNS cache; the 'control' key returns the mappings set
  302. via the control interface; the 'all' target returns the mappings
  303. set through any mechanism.
  304. Expiry is formatted as with ADDRMAP events, except that "expiry" is
  305. always a time in GMT or the string "NEVER"; see section 4.1.7.
  306. First introduced in 0.2.0.3-alpha.
  307. "addr-mappings/*" -- as for address-mappings/*, but without the
  308. expiry portion of the value. Use of this value is deprecated
  309. since 0.2.0.3-alpha; use address-mappings instead.
  310. "address" -- the best guess at our external IP address. If we
  311. have no guess, return a 551 error. (Added in 0.1.2.2-alpha)
  312. "fingerprint" -- the contents of the fingerprint file that Tor
  313. writes as a server, or a 551 if we're not a server currently.
  314. (Added in 0.1.2.3-alpha)
  315. "circuit-status"
  316. A series of lines as for a circuit status event. Each line is of
  317. the form:
  318. CircuitID SP CircStatus [SP Path] CRLF
  319. "stream-status"
  320. A series of lines as for a stream status event. Each is of the form:
  321. StreamID SP StreamStatus SP CircID SP Target CRLF
  322. "orconn-status"
  323. A series of lines as for an OR connection status event. Each is of the
  324. form:
  325. ServerID SP ORStatus CRLF
  326. "entry-guards"
  327. A series of lines listing the currently chosen entry guards, if any.
  328. Each is of the form:
  329. ServerID SP (Status-with-time / Status) CRLF
  330. Status-with-time = ("down" / "unlisted") SP ISOTime
  331. Status = ("up" / "never-connected")
  332. [From 0.1.1.4-alpha to 0.1.1.10-alpha, this was called "helper-nodes".
  333. Tor still supports calling it that for now, but support will be
  334. removed in 0.1.3.x.]
  335. "accounting/enabled"
  336. "accounting/hibernating"
  337. "accounting/bytes"
  338. "accounting/bytes-left"
  339. "accounting/interval-start"
  340. "accounting/interval-wake"
  341. "accounting/interval-end"
  342. Information about accounting status. If accounting is enabled,
  343. "enabled" is 1; otherwise it is 0. The "hibernating" field is "hard"
  344. if we are accepting no data; "soft" if we're accepting no new
  345. connections, and "awake" if we're not hibernating at all. The "bytes"
  346. and "bytes-left" fields contain (read-bytes SP write-bytes), for the
  347. start and the rest of the interval respectively. The 'interval-start'
  348. and 'interval-end' fields are the borders of the current interval; the
  349. 'interval-wake' field is the time within the current interval (if any)
  350. where we plan[ned] to start being active.
  351. "config/names"
  352. A series of lines listing the available configuration options. Each is
  353. of the form:
  354. OptionName SP OptionType [ SP Documentation ] CRLF
  355. OptionName = Keyword
  356. OptionType = "Integer" / "TimeInterval" / "DataSize" / "Float" /
  357. "Boolean" / "Time" / "CommaList" / "Dependant" / "Virtual" /
  358. "String" / "LineList"
  359. Documentation = Text
  360. "info/names"
  361. A series of lines listing the available GETINFO options. Each is of
  362. one of these forms:
  363. OptionName SP Documentation CRLF
  364. OptionPrefix SP Documentation CRLF
  365. OptionPrefix = OptionName "/*"
  366. "events/names"
  367. A space-separated list of all the events supported by this version of
  368. Tor's SETEVENTS.
  369. "features/names"
  370. A space-separated list of all the events supported by this version of
  371. Tor's USEFEATURE.
  372. "next-circuit/IP:port"
  373. XXX todo.
  374. "dir/status/authority"
  375. "dir/status/fp/<F>"
  376. "dir/status/fp/<F1>+<F2>+<F3>"
  377. "dir/status/all"
  378. "dir/server/fp/<F>"
  379. "dir/server/fp/<F1>+<F2>+<F3>"
  380. "dir/server/d/<D>"
  381. "dir/server/d/<D1>+<D2>+<D3>"
  382. "dir/server/authority"
  383. "dir/server/all"
  384. A series of lines listing directory contents, provided according to the
  385. specification for the URLs listed in Section 4.4 of dir-spec.txt. Note
  386. that Tor MUST NOT provide private information, such as descriptors for
  387. routers not marked as general-purpose. When asked for 'authority'
  388. information for which this Tor is not authoritative, Tor replies with
  389. an empty string.
  390. "status/circuit-established"
  391. "status/enough-dir-info"
  392. "status/..."
  393. These provide the current internal Tor values for various Tor
  394. states. See Section 4.1.10 for explanations. (Only a few of the
  395. status events are available as getinfo's currently. Let us know if
  396. you want more exposed.)
  397. "status/version/recommended" -- List of currently recommended versions
  398. "status/version/current" -- Status of the current version. One of:
  399. new, old, unrecommended, recommended, new in series, obsolete.
  400. "status/version/num-versioning" -- Number of versioning authorities
  401. "status/version/num-concurring" -- Number of versioning authorities
  402. agreeing on the status of the current version
  403. Examples:
  404. C: GETINFO version desc/name/moria1
  405. S: 250+desc/name/moria=
  406. S: [Descriptor for moria]
  407. S: .
  408. S: 250-version=Tor 0.1.1.0-alpha-cvs
  409. S: 250 OK
  410. 3.10. EXTENDCIRCUIT
  411. Sent from the client to the server. The format is:
  412. "EXTENDCIRCUIT" SP CircuitID SP
  413. ServerSpec *("," ServerSpec) SP
  414. ("purpose=" Purpose) CRLF
  415. This request takes one of two forms: either the CircuitID is zero, in
  416. which case it is a request for the server to build a new circuit according
  417. to the specified path, or the CircuitID is nonzero, in which case it is a
  418. request for the server to extend an existing circuit with that ID according
  419. to the specified path.
  420. If CircuitID is 0 and "purpose=" is specified, then the circuit's
  421. purpose is set. Two choices are recognized: "general" and
  422. "controller". If not specified, circuits are created as "general".
  423. If the request is successful, the server sends a reply containing a
  424. message body consisting of the CircuitID of the (maybe newly created)
  425. circuit. The syntax is "250" SP "EXTENDED" SP CircuitID CRLF.
  426. 3.11. SETCIRCUITPURPOSE
  427. Sent from the client to the server. The format is:
  428. "SETCIRCUITPURPOSE" SP CircuitID SP Purpose CRLF
  429. This changes the circuit's purpose. See EXTENDCIRCUIT above for details.
  430. 3.12. SETROUTERPURPOSE
  431. Sent from the client to the server. The format is:
  432. "SETROUTERPURPOSE" SP NicknameOrKey SP Purpose CRLF
  433. This changes the descriptor's purpose. See +POSTDESCRIPTOR below
  434. for details.
  435. 3.13. ATTACHSTREAM
  436. Sent from the client to the server. The syntax is:
  437. "ATTACHSTREAM" SP StreamID SP CircuitID [SP "HOP=" HopNum] CRLF
  438. This message informs the server that the specified stream should be
  439. associated with the specified circuit. Each stream may be associated with
  440. at most one circuit, and multiple streams may share the same circuit.
  441. Streams can only be attached to completed circuits (that is, circuits that
  442. have sent a circuit status 'BUILT' event or are listed as built in a
  443. GETINFO circuit-status request).
  444. If the circuit ID is 0, responsibility for attaching the given stream is
  445. returned to Tor.
  446. If HOP=HopNum is specified, Tor will choose the HopNumth hop in the
  447. circuit as the exit node, rather than the last node in the circuit.
  448. Hops are 1-indexed; generally, it is not permitted to attach to hop 1.
  449. Tor responds with "250 OK" if it can attach the stream, 552 if the circuit
  450. or stream didn't exist, or 551 if the stream couldn't be attached for
  451. another reason.
  452. {Implementation note: Tor will close unattached streams by itself,
  453. roughly two minutes after they are born. Let the developers know if
  454. that turns out to be a problem.}
  455. {Implementation note: By default, Tor automatically attaches streams to
  456. circuits itself, unless the configuration variable
  457. "__LeaveStreamsUnattached" is set to "1". Attempting to attach streams
  458. via TC when "__LeaveStreamsUnattached" is false may cause a race between
  459. Tor and the controller, as both attempt to attach streams to circuits.}
  460. {Implementation note: You can try to attachstream to a stream that
  461. has already sent a connect or resolve request but hasn't succeeded
  462. yet, in which case Tor will detach the stream from its current circuit
  463. before proceeding with the new attach request.}
  464. 3.14. POSTDESCRIPTOR
  465. Sent from the client to the server. The syntax is:
  466. "+POSTDESCRIPTOR" ("purpose=" Purpose) CRLF Descriptor CRLF "." CRLF
  467. This message informs the server about a new descriptor. If Purpose is
  468. specified, it must be either "general" or "controller", else we
  469. return a 552 error.
  470. The descriptor, when parsed, must contain a number of well-specified
  471. fields, including fields for its nickname and identity.
  472. If there is an error in parsing the descriptor, the server must send a "554
  473. Invalid descriptor" reply. If the descriptor is well-formed but the server
  474. chooses not to add it, it must reply with a 251 message whose body explains
  475. why the server was not added. If the descriptor is added, Tor replies with
  476. "250 OK".
  477. 3.15. REDIRECTSTREAM
  478. Sent from the client to the server. The syntax is:
  479. "REDIRECTSTREAM" SP StreamID SP Address (SP Port) CRLF
  480. Tells the server to change the exit address on the specified stream. If
  481. Port is specified, changes the destination port as well. No remapping
  482. is performed on the new provided address.
  483. To be sure that the modified address will be used, this event must be sent
  484. after a new stream event is received, and before attaching this stream to
  485. a circuit.
  486. Tor replies with "250 OK" on success.
  487. 3.16. CLOSESTREAM
  488. Sent from the client to the server. The syntax is:
  489. "CLOSESTREAM" SP StreamID SP Reason *(SP Flag) CRLF
  490. Tells the server to close the specified stream. The reason should be one
  491. of the Tor RELAY_END reasons given in tor-spec.txt, as a decimal. Flags is
  492. not used currently; Tor servers SHOULD ignore unrecognized flags. Tor may
  493. hold the stream open for a while to flush any data that is pending.
  494. Tor replies with "250 OK" on success, or a 512 if there aren't enough
  495. arguments, or a 552 if it doesn't recognize the StreamID or reason.
  496. 3.17. CLOSECIRCUIT
  497. The syntax is:
  498. CLOSECIRCUIT SP CircuitID *(SP Flag) CRLF
  499. Flag = "IfUnused"
  500. Tells the server to close the specified circuit. If "IfUnused" is
  501. provided, do not close the circuit unless it is unused.
  502. Other flags may be defined in the future; Tor SHOULD ignore unrecognized
  503. flags.
  504. Tor replies with "250 OK" on success, or a 512 if there aren't enough
  505. arguments, or a 552 if it doesn't recognize the CircuitID.
  506. 3.18. QUIT
  507. Tells the server to hang up on this controller connection. This command
  508. can be used before authenticating.
  509. 3.19. USEFEATURE
  510. The syntax is:
  511. "USEFEATURE" *(SP FeatureName) CRLF
  512. FeatureName = 1*(ALPHA / DIGIT / "_" / "-")
  513. Sometimes extensions to the controller protocol break compatibility with
  514. older controllers. In this case, whenever possible, the extensions are
  515. first included in Tor disabled by default, and only enabled on a given
  516. controller connection when the "USEFEATURE" command is given. Once a
  517. "USEFEATURE" command is given, it applies to all subsequent interactions on
  518. the same connection; to disable an enabled feature, a new controller
  519. connection must be opened.
  520. This is a forward-compatibility mechanism; each feature will eventually
  521. become a regular part of the control protocol in some future version of Tor.
  522. Tor will ignore a request to use any feature that is already on by default.
  523. Tor will give a "552" error if any requested feature is not recognized.
  524. Feature names are case-insensitive.
  525. EXTENDED_EVENTS
  526. Same as passing 'EXTENDED' to SETEVENTS; this is the preferred way to
  527. request the extended event syntax.
  528. This will not be always-enabled until at least XXX (or, at least two
  529. stable releases after XXX, the release where it was first used for
  530. anything.)
  531. VERBOSE_NAMES
  532. Instead of ServerID as specified above, the controller should
  533. identify ORs by LongName in events and GETINFO results. This format is
  534. strictly more informative: rather than including Nickname for
  535. known Named routers and Fingerprint for unknown or unNamed routers, the
  536. LongName format includes a Fingerprint, an indication of Named status,
  537. and a Nickname (if one is known).
  538. This will not be always-enabled until at least 0.1.4.x (or at least two
  539. stable releases after 0.1.2.2-alpha, the release where it was first
  540. available.)
  541. 3.20. RESOLVE
  542. The syntax is
  543. "RESOLVE" *Option *Address CRLF
  544. Option = "mode=reverse"
  545. Address = a hostname or IPv4 address
  546. This command launches a remote hostname lookup request for every specified
  547. request (or reverse lookup if "mode=reverse" is specified). Note that the
  548. request is done in the background: to see the answers, your controller will
  549. need to listen for ADDRMAP events; see 4.1.7 below.
  550. [Added in Tor 0.2.0.3-alpha]
  551. 4. Replies
  552. Reply codes follow the same 3-character format as used by SMTP, with the
  553. first character defining a status, the second character defining a
  554. subsystem, and the third designating fine-grained information.
  555. The TC protocol currently uses the following first characters:
  556. 2yz Positive Completion Reply
  557. The command was successful; a new request can be started.
  558. 4yz Temporary Negative Completion reply
  559. The command was unsuccessful but might be reattempted later.
  560. 5yz Permanent Negative Completion Reply
  561. The command was unsuccessful; the client should not try exactly
  562. that sequence of commands again.
  563. 6yz Asynchronous Reply
  564. Sent out-of-order in response to an earlier SETEVENTS command.
  565. The following second characters are used:
  566. x0z Syntax
  567. Sent in response to ill-formed or nonsensical commands.
  568. x1z Protocol
  569. Refers to operations of the Tor Control protocol.
  570. x5z Tor
  571. Refers to actual operations of Tor system.
  572. The following codes are defined:
  573. 250 OK
  574. 251 Operation was unnecessary
  575. [Tor has declined to perform the operation, but no harm was done.]
  576. 451 Resource exhausted
  577. 500 Syntax error: protocol
  578. 510 Unrecognized command
  579. 511 Unimplemented command
  580. 512 Syntax error in command argument
  581. 513 Unrecognized command argument
  582. 514 Authentication required
  583. 515 Bad authentication
  584. 550 Unspecified Tor error
  585. 551 Internal error
  586. [Something went wrong inside Tor, so that the client's
  587. request couldn't be fulfilled.]
  588. 552 Unrecognized entity
  589. [A configuration key, a stream ID, circuit ID, event,
  590. mentioned in the command did not actually exist.]
  591. 553 Invalid configuration value
  592. [The client tried to set a configuration option to an
  593. incorrect, ill-formed, or impossible value.]
  594. 554 Invalid descriptor
  595. 555 Unmanaged entity
  596. 650 Asynchronous event notification
  597. Unless specified to have specific contents, the human-readable messages
  598. in error replies should not be relied upon to match those in this document.
  599. 4.1. Asynchronous events
  600. These replies can be sent after a corresponding SETEVENTS command has been
  601. received. They will not be interleaved with other Reply elements, but they
  602. can appear between a command and its corresponding reply. For example,
  603. this sequence is possible:
  604. C: SETEVENTS CIRC
  605. S: 250 OK
  606. C: GETCONF SOCKSPORT ORPORT
  607. S: 650 CIRC 1000 EXTENDED moria1,moria2
  608. S: 250-SOCKSPORT=9050
  609. S: 250 ORPORT=0
  610. But this sequence is disallowed:
  611. C: SETEVENTS CIRC
  612. S: 250 OK
  613. C: GETCONF SOCKSPORT ORPORT
  614. S: 250-SOCKSPORT=9050
  615. S: 650 CIRC 1000 EXTENDED moria1,moria2
  616. S: 250 ORPORT=0
  617. Clients MUST tolerate more arguments in an asynchonous reply than
  618. expected, and MUST tolerate more lines in an asynchronous reply than
  619. expected. For instance, a client that expects a CIRC message like:
  620. 650 CIRC 1000 EXTENDED moria1,moria2
  621. must tolerate:
  622. 650-CIRC 1000 EXTENDED moria1,moria2 0xBEEF
  623. 650-EXTRAMAGIC=99
  624. 650 ANONYMITY=high
  625. If clients ask for extended events, then each event line as specified below
  626. will be followed by additional extensions. Additional lines will be of the
  627. form
  628. "650" ("-"/" ") KEYWORD ["=" ARGUMENTS] CRLF
  629. Additional arguments will be of the form
  630. SP KEYWORD ["=" ( QuotedString / * NonSpDquote ) ]
  631. Such clients MUST tolerate lines with keywords they do not recognize.
  632. 4.1.1. Circuit status changed
  633. The syntax is:
  634. "650" SP "CIRC" SP CircuitID SP CircStatus [SP Path]
  635. [SP "REASON=" Reason [SP "REMOTE_REASON=" Reason]] CRLF
  636. CircStatus =
  637. "LAUNCHED" / ; circuit ID assigned to new circuit
  638. "BUILT" / ; all hops finished, can now accept streams
  639. "EXTENDED" / ; one more hop has been completed
  640. "FAILED" / ; circuit closed (was not built)
  641. "CLOSED" ; circuit closed (was built)
  642. Path = ServerID *("," ServerID)
  643. Reason = "NONE" / "TORPROTOCOL" / "INTERNAL" / "REQUESTED" /
  644. "HIBERNATING" / "RESOURCELIMIT" / "CONNECTFAILED" /
  645. "OR_IDENTITY" / "OR_CONN_CLOSED" / "TIMEOUT" /
  646. "FINISHED" / "DESTROYED" / "NOPATH" / "NOSUCHSERVICE"
  647. The path is provided only when the circuit has been extended at least one
  648. hop.
  649. The "REASON" field is provided only for FAILED and CLOSED events, and only
  650. if extended events are enabled (see 3.19). Clients MUST accept reasons
  651. not listed above. Reasons are as given in tor-spec.txt, except for:
  652. NOPATH (Not enough nodes to make circuit)
  653. The "REMOTE_REASON" field is provided only when we receive a DESTROY or
  654. TRUNCATE cell, and only if extended events are enabled. It contains the
  655. actual reason given by the remote OR for closing the circuit. Clients MUST
  656. accept reasons not listed above. Reasons are as listed in tor-spec.txt.
  657. 4.1.2. Stream status changed
  658. The syntax is:
  659. "650" SP "STREAM" SP StreamID SP StreamStatus SP CircID SP Target
  660. [SP "REASON=" Reason [ SP "REMOTE_REASON=" Reason ]]
  661. [SP "SOURCE=" Source] [ SP "SOURCE_ADDR=" Address ":" Port ]
  662. CRLF
  663. StreamStatus =
  664. "NEW" / ; New request to connect
  665. "NEWRESOLVE" / ; New request to resolve an address
  666. "REMAP" / ; Address re-mapped to another
  667. "SENTCONNECT" / ; Sent a connect cell along a circuit
  668. "SENTRESOLVE" / ; Sent a resolve cell along a circuit
  669. "SUCCEEDED" / ; Received a reply; stream established
  670. "FAILED" / ; Stream failed and not retriable
  671. "CLOSED" / ; Stream closed
  672. "DETACHED" ; Detached from circuit; still retriable
  673. Target = Address ":" Port
  674. The circuit ID designates which circuit this stream is attached to. If
  675. the stream is unattached, the circuit ID "0" is given.
  676. Reason = "MISC" / "RESOLVEFAILED" / "CONNECTREFUSED" /
  677. "EXITPOLICY" / "DESTROY" / "DONE" / "TIMEOUT" /
  678. "HIBERNATING" / "INTERNAL"/ "RESOURCELIMIT" /
  679. "CONNRESET" / "TORPROTOCOL" / "NOTDIRECTORY" / "END"
  680. The "REASON" field is provided only for FAILED, CLOSED, and DETACHED
  681. events, and only if extended events are enabled (see 3.19). Clients MUST
  682. accept reasons not listed above. Reasons are as given in tor-spec.txt,
  683. except for:
  684. END (We received a RELAY_END cell from the other side of thise
  685. stream.)
  686. [XXXX document more.]
  687. The "REMOTE_REASON" field is provided only when we receive a RELAY_END
  688. cell, and only if extended events are enabled. It contains the actual
  689. reason given by the remote OR for closing the stream. Clients MUST accept
  690. reasons not listed above. Reasons are as listed in tor-spec.txt.
  691. "REMAP" events include a Source if extended events are enabled:
  692. Source = "CACHE" / "EXIT"
  693. Clients MUST accept sources not listed above. "CACHE" is given if
  694. the Tor client decided to remap the address because of a cached
  695. answer, and "EXIT" is given if the remote node we queried gave us
  696. the new address as a response.
  697. The "SOURCE_ADDR" field is included with NEW and NEWRESOLVE events if
  698. extended events are enabled. It indicates the address and port
  699. that requested the connection, and can be (e.g.) used to look up the
  700. requesting program.
  701. 4.1.3. OR Connection status changed
  702. The syntax is:
  703. "650" SP "ORCONN" SP (ServerID / Target) SP ORStatus [ SP "REASON="
  704. Reason ] [ SP "NCIRCS=" NumCircuits ]
  705. ORStatus = "NEW" / "LAUNCHED" / "CONNECTED" / "FAILED" / "CLOSED"
  706. NEW is for incoming connections, and LAUNCHED is for outgoing
  707. connections. CONNECTED means the TLS handshake has finished (in
  708. either direction). FAILED means a connection is being closed that
  709. hasn't finished its handshake, and CLOSED is for connections that
  710. have handshaked.
  711. A ServerID is specified unless it's a NEW connection, in which
  712. case we don't know what server it is yet, so we use Address:Port.
  713. If extended events are enabled (see 3.19), optional reason and
  714. circuit counting information is provided for CLOSED and FAILED
  715. events.
  716. Reason = "MISC" / "DONE" / "CONNECTREFUSED" /
  717. "IDENTITY" / "CONNECTRESET" / "TIMEOUT" / "NOROUTE" /
  718. "IOERROR"
  719. NumCircuits counts both established and pending circuits.
  720. 4.1.4. Bandwidth used in the last second
  721. The syntax is:
  722. "650" SP "BW" SP BytesRead SP BytesWritten *(SP Type "=" Num)
  723. BytesRead = 1*DIGIT
  724. BytesWritten = 1*DIGIT
  725. Type = "DIR" / "OR" / "EXIT" / "APP" / ...
  726. Num = 1*DIGIT
  727. BytesRead and BytesWritten are the totals. In Tor 0.1.x.y-alpha
  728. and later, we also include a breakdown of the connection types
  729. that used bandwidth this second (not implemented yet).
  730. 4.1.5. Log messages
  731. The syntax is:
  732. "650" SP Severity SP ReplyText
  733. or
  734. "650+" Severity CRLF Data 650 SP "OK" CRLF
  735. Severity = "DEBUG" / "INFO" / "NOTICE" / "WARN"/ "ERR"
  736. 4.1.6. New descriptors available
  737. Syntax:
  738. "650" SP "NEWDESC" 1*(SP ServerID)
  739. 4.1.7. New Address mapping
  740. Syntax:
  741. "650" SP "ADDRMAP" SP Address SP Address SP Expiry SP Error SP GMTExpiry
  742. Expiry = DQUOTE ISOTime DQUOTE / "NEVER"
  743. Error = / "error=" ErrorCode
  744. GMTExpiry = "EXPIRES=" DQUOTE IsoTime DQUOTE
  745. Error and GMTExpiry are only provided if extended events are enabled.
  746. Expiry is expressed as the local time (rather than GMT). This is a bug,
  747. left in for backward compatibility; new code should look at GMTExpiry
  748. instead.
  749. These events are generated when a new address mapping is entered in the
  750. cache, or when the answer for a RESOLVE command is found.
  751. 4.1.8. Descriptors uploaded to us in our role as authoritative dirserver
  752. Syntax:
  753. "650" "+" "AUTHDIR_NEWDESCS" CRLF Action CRLF Message CRLF
  754. Descriptor CRLF "." CRLF "650" SP "OK" CRLF
  755. Action = "ACCEPTED" / "DROPPED" / "REJECTED"
  756. Message = Text
  757. 4.1.9. Our descriptor changed
  758. Syntax:
  759. "650" SP "DESCCHANGED"
  760. [First added in 0.1.2.2-alpha.]
  761. 4.1.10. Status events
  762. Status events (STATUS_GENERAL, STATUS_CLIENT, and STATUS_SERVER) are sent
  763. based on occurrences in the Tor process pertaining to the general state of
  764. the program. Generally, they correspond to log messages of severity Notice
  765. or higher. They differ from log messages in that their format is a
  766. specified interface.
  767. Syntax:
  768. "650" SP StatusType SP StatusSeverity SP StatusAction
  769. [SP StatusArguments] CRLF
  770. StatusType = "STATUS_GENERAL" / "STATUS_CLIENT" / "STATUS_SERVER"
  771. StatusSeverity = "NOTICE" / "WARN" / "ERR"
  772. StatusAction = 1*ALPHA
  773. StatusArguments = StatusArgument *(SP StatusArgument)
  774. StatusArgument = StatusKeyword '=' StatusValue
  775. StatusKeyword = 1*(ALNUM / "_")
  776. StatusValue = 1*(ALNUM / '_') / QuotedString
  777. Action is a string, and Arguments is a series of keyword=value
  778. pairs on the same line. Values may be space-terminated strings,
  779. or quoted strings.
  780. These events are always produced with EXTENDED_EVENTS and
  781. VERBOSE_NAMES; see the explanations in the USEFEATURE section
  782. for details.
  783. Controllers MUST tolerate unrecognized actions, MUST tolerate
  784. unrecognized arguments, MUST tolerate missing arguments, and MUST
  785. tolerate arguments that arrive in any order.
  786. Each event description below is accompanied by a recommendation for
  787. controllers. These recommendations are suggestions only; no controller
  788. is required to implement them.
  789. Actions for STATUS_GENERAL events can be as follows:
  790. CLOCK_JUMPED
  791. "TIME=NUM"
  792. Tor spent enough time without CPU cycles that it has closed all
  793. its circuits and will establish them anew. This typically
  794. happens when a laptop goes to sleep and then wakes up again. It
  795. also happens when the system is swapping so heavily that Tor is
  796. starving. The "time" argument specifies the number of seconds Tor
  797. thinks it was unconscious for (or alternatively, the number of
  798. seconds it went back in time).
  799. This status event is sent as NOTICE severity normally, but WARN
  800. severity if Tor is acting as a server currently.
  801. {Recommendation for controller: ignore it, since we don't really
  802. know what the user should do anyway. Hm.}
  803. DANGEROUS_VERSION
  804. "CURRENT=version"
  805. "REASON=NEW/OLD/UNRECOMMENDED"
  806. "RECOMMENDED=\"version, version, ...\""
  807. Tor has found that directory servers don't recommend its version of
  808. the Tor software. RECOMMENDED is a comma-and-space-separated string
  809. of Tor versions that are recommended. REASON is NEW if this version
  810. of Tor is newer than any recommended version, OLD if this version of
  811. Tor is older than any recommended version, and UNRECOMMENDED if
  812. some recommended versions of Tor are newer and some are old than this
  813. version.
  814. {Controllers may want to suggest that the user upgrade OLD or
  815. UNRECOMMENDED versions. NEW versions may be known-insecure, or may
  816. simply be development versions.}
  817. TOO_MANY_CONNECTIONS
  818. "CURRENT=NUM"
  819. Tor has reached its ulimit -n or whatever the native limit is on file
  820. descriptors or sockets. CURRENT is the number of sockets Tor
  821. currently has open. The user should really do something about
  822. this. The "current" argument shows the number of connections currently
  823. open.
  824. {Controllers may recommend that the user increase the limit, or
  825. increase it for them. Recommendations should be phrased in an
  826. OS-appropriate way and automated when possible.}
  827. BUG
  828. "REASON=STRING"
  829. Tor has encountered a situation that its developers never expected,
  830. and the developers would like to learn that it happened. Perhaps
  831. the controller can explain this to the user and encourage her to
  832. file a bug report?
  833. {Controllers should log bugs, but shouldn't annoy the user in case a
  834. bug appears frequently.}
  835. CLOCK_SKEWED
  836. SKEW="+" / "-" SECONDS
  837. SOURCE="DIRSERV:IP:Port" / "NETWORKSTATUS:IP:PORT"
  838. If "SKEW" is present, it's an estimate of how far we are from the
  839. time declared in the source. If the source is a DIRSERV, we got
  840. the current time from a connection to a dirserver. If the source is
  841. a NETWORKSTATUS, we decided we're skewed because we got a
  842. networkstatus from far in the future.
  843. {Controllers may want to warn the user if the skew is high, or if
  844. multiple skew messages appear at severity WARN. Controllers
  845. shouldn't blindly adjust the clock, since the more accurate source
  846. of skew info (DIRSERV) is currently unauthenticated.}
  847. BAD_LIBEVENT
  848. "METHOD=" libevent method
  849. "VERSION=" libevent version
  850. "BADNESS=" "BROKEN" / "BUGGY" / "SLOW"
  851. "RECOVERED=" "NO" / "YES"
  852. Tor knows about bugs in using the configured event method in this
  853. version of libevent. "BROKEN" libevents won't work at all;
  854. "BUGGY" libevents might work okay; "SLOW" libevents will work
  855. fine, but not quickly. If "RECOVERED" is YES, Tor managed to
  856. switch to a more reliable (but probably slower!) libevent method.
  857. {Controllers may want to warn the user if this event occurs, though
  858. generally it's the fault of whoever built the Tor binary and there's
  859. not much the user can do besides upgrade libevent or upgrade the
  860. binary.}
  861. DIR_ALL_UNREACHABLE
  862. Tor believes that none of the known directory servers are
  863. reachable -- this is most likely because the local network is
  864. down or otherwise not working, and might help to explain for the
  865. user why Tor appears to be broken.
  866. {Controllers may want to warn the user if this event occurs; further
  867. action is generally not possible.}
  868. Actions for STATUS_CLIENT events can be as follows:
  869. ENOUGH_DIR_INFO
  870. Tor now knows enough network-status documents and enough server
  871. descriptors that it's going to start trying to build circuits now.
  872. {Controllers may want to use this event to decide when to indicate
  873. progress to their users, but should not interrupt the user's browsing
  874. to tell them so.}
  875. NOT_ENOUGH_DIR_INFO
  876. We discarded expired statuses and router descriptors to fall
  877. below the desired threshold of directory information. We won't
  878. try to build any circuits until ENOUGH_DIR_INFO occurs again.
  879. {Controllers may want to use this event to decide when to indicate
  880. progress to their users, but should not interrupt the user's browsing
  881. to tell them so.}
  882. CIRCUIT_ESTABLISHED
  883. Tor is able to establish circuits for client use. This event will
  884. only be sent if we just built a circuit that changed our mind --
  885. that is, prior to this event we didn't know whether we could
  886. establish circuits.
  887. {Suggested use: controllers can notify their users that Tor is
  888. ready for use as a client once they see this status event. [Perhaps
  889. controllers should also have a timeout if too much time passes and
  890. this event hasn't arrived, to give tips on how to troubleshoot.
  891. On the other hand, hopefully Tor will send further status events
  892. if it can identify the problem.]}
  893. CIRCUIT_NOT_ESTABLISHED
  894. "REASON=" "EXTERNAL_ADDRESS" / "DIR_ALL_UNREACHABLE" / "CLOCK_JUMPED"
  895. We are no longer confident that we can build circuits. The "reason"
  896. keyword provides an explanation: which other status event type caused
  897. our lack of confidence.
  898. {Controllers may want to use this event to decide when to indicate
  899. progress to their users, but should not interrupt the user's browsing
  900. to do so.}
  901. [Note: only REASON=CLOCK_JUMPED is implemented currently.]
  902. DANGEROUS_SOCKS
  903. "PROTOCOL=SOCKS4/SOCKS5"
  904. "ADDRESS=IP:port"
  905. A connection was made to Tor's SOCKS port using one of the SOCKS
  906. approaches that doesn't support hostnames -- only raw IP addresses.
  907. If the client application got this address from gethostbyname(),
  908. it may be leaking target addresses via DNS.
  909. {Controllers should warn their users when this occurs, unless they
  910. happen to know that the application using Tor is in fact doing so
  911. correctly (e.g., because it is part of a distributed bundle).}
  912. SOCKS_UNKNOWN_PROTOCOL
  913. "DATA=string"
  914. A connection was made to Tor's SOCKS port that tried to use it
  915. for something other than the SOCKS protocol. Perhaps the user is
  916. using Tor as an HTTP proxy? The DATA is the first few characters
  917. sent to Tor on the SOCKS port.
  918. {Controllers may want to warn their users when this occurs: it
  919. indicates a misconfigured application.}
  920. SOCKS_BAD_HOSTNAME
  921. "HOSTNAME=QuotedString"
  922. Some application gave us a funny-looking hostname. Perhaps
  923. it is broken? In any case it won't work with Tor and the user
  924. should know.
  925. {Controllers may want to warn their users when this occurs: it
  926. usually indicates a misconfigured application.}
  927. Actions for STATUS_SERVER can be as follows:
  928. EXTERNAL_ADDRESS
  929. "ADDRESS=IP"
  930. "HOSTNAME=NAME"
  931. "METHOD=CONFIGURED/DIRSERV/RESOLVED/INTERFACE/GETHOSTNAME"
  932. Our best idea for our externally visible IP has changed to 'IP'.
  933. If 'HOSTNAME' is present, we got the new IP by resolving 'NAME'. If the
  934. method is 'CONFIGURED', the IP was given verbatim as a configuration
  935. option. If the method is 'RESOLVED', we resolved the Address
  936. configuration option to get the IP. If the method is 'GETHOSTNAME',
  937. we resolved our hostname to get the IP. If the method is 'INTERFACE',
  938. we got the address of one of our network interfaces to get the IP. If
  939. the method is 'DIRSERV', a directory server told us a guess for what
  940. our IP might be.
  941. {Controllers may want to record this info and display it to the user.}
  942. CHECKING_REACHABILITY
  943. "ORADDRESS=IP:port"
  944. "DIRADDRESS=IP:port"
  945. We're going to start testing the reachability of our external OR port
  946. or directory port.
  947. {This event could effect the controller's idea of server status, but
  948. the controller should not interrupt the user to tell them so.}
  949. REACHABILITY_SUCCEEDED
  950. "ORADDRESS=IP:port"
  951. "DIRADDRESS=IP:port"
  952. We successfully verified the reachability of our external OR port or
  953. directory port.
  954. {This event could effect the controller's idea of server status, but
  955. the controller should not interrupt the user to tell them so.}
  956. GOOD_SERVER_DESCRIPTOR
  957. We successfully uploaded our server descriptor to each of the
  958. directory authorities, with no complaints.
  959. {This event could effect the controller's idea of server status, but
  960. the controller should not interrupt the user to tell them so.}
  961. NAMESERVER_STATUS
  962. "NS=addr"
  963. "STATUS=" "UP" / "DOWN"
  964. "ERR=" message
  965. One of our nameservers has changed status.
  966. // actually notice
  967. {This event could effect the controller's idea of server status, but
  968. the controller should not interrupt the user to tell them so.}
  969. NAMESERVER_ALL_DOWN
  970. All of our nameservers have gone down.
  971. {This is a problem; if it happens often without the nameservers
  972. coming up again, the user needs to configure more or better
  973. nameservers.}
  974. DNS_HIJACKED
  975. Our DNS provider is providing an address when it should be saying
  976. "NOTFOUND"; Tor will treat the address as a synonym for "NOTFOUND".
  977. {This is an annoyance; controllers may want to tell admins that their
  978. DNS provider is not to be trusted.}
  979. DNS_USELESS
  980. Our DNS provider is giving a hijacked address instead of well-known
  981. websites; Tor will not try to be an exit node.
  982. {Controllers could warn the admin if the server is running as an
  983. exit server: the admin needs to configure a good DNS server.
  984. Alternatively, this happens a lot in some restrictive environments
  985. (hotels, universities, coffeeshops) when the user hasn't registered.}
  986. BAD_SERVER_DESCRIPTOR
  987. "DIRAUTH=addr:port"
  988. "REASON=string"
  989. A directory authority rejected our descriptor. Possible reasons
  990. include malformed descriptors, incorrect keys, highly skewed clocks,
  991. and so on.
  992. {Controllers should warn the admin, and try to cope if they can.}
  993. ACCEPTED_SERVER_DESCRIPTOR
  994. "DIRAUTH=addr:port"
  995. A single directory authority accepted our descriptor.
  996. // actually notice
  997. {This event could effect the controller's idea of server status, but
  998. the controller should not interrupt the user to tell them so.}
  999. REACHABILITY_FAILED
  1000. "ORADDRESS=IP:port"
  1001. "DIRADDRESS=IP:port"
  1002. We failed to connect to our external OR port or directory port
  1003. successfully.
  1004. {This event could effect the controller's idea of server status. The
  1005. controller should warn the admin and suggest reasonable steps to take.}
  1006. 4.1.11. Our set of guard nodes has changed
  1007. Syntax:
  1008. "650" SP "GUARD" SP Type SP Name SP Status ... CRLF
  1009. Type = "ENTRY"
  1010. Name = The (possibly verbose) nickname of the guard affected.
  1011. Status = "NEW" | "UP" | "DOWN" | "BAD" | "GOOD" | "DROPPED"
  1012. [explain states. XXX]
  1013. 4.1.12. Network status has changed
  1014. Syntax:
  1015. "650" "+" "NS" CRLF 1*NetworkStatus "." CRLF "650" SP "OK" CRLF
  1016. [First added in 0.1.2.3-alpha]
  1017. 4.1.13. Bandwidth used on an application stream
  1018. The syntax is:
  1019. "650" SP "STREAM_BW" SP StreamID SP BytesRead SP BytesWritten
  1020. BytesRead = 1*DIGIT
  1021. BytesWritten = 1*DIGIT
  1022. BytesRead and BytesWritten are the number of bytes read and written since
  1023. the last STREAM_BW event on this stream. These events are generated about
  1024. once per second per stream; no events are generated for streams that have
  1025. not read or written.
  1026. These events apply only to streams entering Tor (such as on a SOCKSPort,
  1027. TransPort, or so on). They are not generated for exiting streams.
  1028. 5. Implementation notes
  1029. 5.1. Authentication
  1030. By default, the current Tor implementation trusts all local users.
  1031. If the 'CookieAuthentication' option is true, Tor writes a "magic cookie"
  1032. file named "control_auth_cookie" into its data directory. To authenticate,
  1033. the controller must send the contents of this file, encoded in hexadecimal.
  1034. If the 'HashedControlPassword' option is set, it must contain the salted
  1035. hash of a secret password. The salted hash is computed according to the
  1036. S2K algorithm in RFC 2440 (OpenPGP), and prefixed with the s2k specifier.
  1037. This is then encoded in hexadecimal, prefixed by the indicator sequence
  1038. "16:". Thus, for example, the password 'foo' could encode to:
  1039. 16:660537E3E1CD49996044A3BF558097A981F539FEA2F9DA662B4626C1C2
  1040. ++++++++++++++++**^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1041. salt hashed value
  1042. indicator
  1043. You can generate the salt of a password by calling
  1044. 'tor --hash-password <password>'
  1045. or by using the example code in the Python and Java controller libraries.
  1046. To authenticate under this scheme, the controller sends Tor the original
  1047. secret that was used to generate the password.
  1048. 5.2. Don't let the buffer get too big.
  1049. If you ask for lots of events, and 16MB of them queue up on the buffer,
  1050. the Tor process will close the socket.
  1051. 5.3. Backward compatibility with v0 control protocol.
  1052. The 'version 0' control protocol was replaced in Tor 0.1.1.x. Support was
  1053. removed in Tor 0.2.0.x. Every non-obsolete version of Tor now supports the
  1054. version 1 control protocol.
  1055. For backward compatibility with the "version 0" control protocol,
  1056. Tor used to check whether the third octet of the first command is zero.
  1057. (If it was, Tor assumed that version 0 is in use.)
  1058. This compatibility was removed in Tor 0.1.2.16 and 0.2.0.4-alpha.
  1059. 5.4. Options for use by controllers
  1060. Tor provides a few special configuration options for use by controllers.
  1061. These options can be set and examined by the SETCONF and GETCONF commands,
  1062. but are not saved to disk by SAVECONF.
  1063. Generally, these options make Tor unusable by disabling a portion of Tor's
  1064. normal operations. Unless a controller provides replacement functionality
  1065. to fill this gap, Tor will not correctly handle user requests.
  1066. __AllDirOptionsPrivate
  1067. If true, Tor will try to launch all directory operations through
  1068. anonymous connections. (Ordinarily, Tor only tries to anonymize
  1069. requests related to hidden services.) This option will slow down
  1070. directory access, and may stop Tor from working entirely if it does not
  1071. yet have enough directory information to build circuits.
  1072. (Boolean. Default: "0".)
  1073. __DisablePredictedCircuits
  1074. If true, Tor will not launch preemptive "general purpose" circuits for
  1075. streams to attach to. (It will still launch circuits for testing and
  1076. for hidden services.)
  1077. (Boolean. Default: "0".)
  1078. __LeaveStreamsUnattached
  1079. If true, Tor will not automatically attach new streams to circuits;
  1080. instead, the controller must attach them with ATTACHSTREAM. If the
  1081. controller does not attach the streams, their data will never be routed.
  1082. (Boolean. Default: "0".)