control-spec.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  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.
  12. 1 Protocol outline
  13. TC is a bidirectional message-based protocol. It assumes an underlying
  14. stream for communication between a controlling process (the "client"
  15. or "controller") and a Tor process (or "server"). The stream may be
  16. implemented via TCP, TLS-over-TCP, a Unix-domain socket, or so on,
  17. but it must provide reliable in-order delivery. For security, the
  18. stream should not be accessible by untrusted parties.
  19. In TC, the client and server send typed messages to each other over the
  20. underlying stream. The client sends "commands" and the server sends
  21. "replies".
  22. By default, all messages from the server are in response to messages from
  23. the client. Some client requests, however, will cause the server to send
  24. messages to the client indefinitely far into the future. Such
  25. "asynchronous" replies are marked as such.
  26. Servers respond to messages in the order messages are received.
  27. 2 Message format
  28. 2.1 Description format
  29. The message formats listed below use ABNF as described in RFC2234.
  30. The protocol itself is loosely based on SMTP (see RFC 2821).
  31. We use the following nonterminals from RFC2822: atom, qcontent
  32. We define the following general-use nonterminals:
  33. String = DQUOTE *qcontent DQUOTE
  34. There are explicitly no limits on line length. All 8-bit characters are
  35. permitted unless explicitly disallowed.
  36. 2.2 Commands from controller to Tor
  37. Command = Keyword Arguments CRLF / "+" Keyword Arguments CRLF Data
  38. Keyword = 1*ALPHA
  39. Arguments = *(SP / VCHAR)
  40. Specific commands and their arguments are described below in section 3.
  41. 2.3 Replies from Tor to the controller
  42. Reply = *(MidReplyLine / DataReplyLine) EndReplyLine
  43. MidReplyLine = "-" ReplyLine
  44. DataReplyLine = "+" ReplyLine Data
  45. EndReplyLine = SP ReplyLine
  46. ReplyLine = StatusCode [ SP ReplyText ] CRLF
  47. ReplyText = XXXX
  48. StatusCode = XXXX
  49. Specific replies are mentioned below in section 3, and described more fully
  50. in section 4.
  51. 2.4 General-use tokens
  52. ; Identifiers for servers.
  53. ServerID = Nickname / Fingerprint
  54. Nickname = 1*19 NicknameChar
  55. NicknameChar = "a"-"z" / "A"-"Z" / "0" - "9"
  56. Fingerprint = "$" 40*HEXDIG
  57. ; Unique identifiers for streams or circuits. Currently, Tor only
  58. ; uses digits, but this may change
  59. StreamID = 1*16 IDChar
  60. CircuitID = 1*16 IDChar
  61. IDChar = ALPHA / DIGIT
  62. Address = ip4-address / ip6-address / hostname (XXXX Define these)
  63. ; A "Data" section is a sequence of octets concluded by the terminating
  64. ; sequence CRLF "." CRLF. The terminating sequence may not appear in the
  65. ; body of the data. Leading periods on lines in the data are escaped with
  66. ; an additional leading period as in RFC2821 section 4.5.2
  67. Data = *DataLine "." CRLF
  68. DataLine = CRLF / "." 1*LineItem CRLF/ NonDotItem *LineItem CRLF
  69. LineItem = NonCR / 1*CR NonCRLF
  70. NonDotItem = NonDotCR / 1*CR NonCRLF
  71. 3 Commands
  72. All commands and other keywords are case-insensitive.
  73. 3.1 SETCONF
  74. Change the value of one or more configuration variables. The syntax is:
  75. "SETCONF" 1*(SP keyword ["=" String]) CRLF
  76. Tor behaves as though it had just read each of the key-value pairs
  77. from its configuration file. Keywords with no corresponding values have
  78. their configuration values reset to their defaults. SETCONF is
  79. all-or-nothing: if there is an error in any of the configuration settings,
  80. Tor sets none of them.
  81. Tor responds with a "250 configuration values set" reply on success.
  82. Tor responds with a "513 syntax error in configuration values" reply on
  83. syntax error, or a "553 impossible configuration setting" reply on a
  84. semantic error.
  85. When a configuration option takes multiple values, or when multiple
  86. configuration keys form a context-sensitive group (see GETCONF below), then
  87. setting _any_ of the options in a SETCONF command is taken to reset all of
  88. the others. For example, if two ORBindAddress values are configured, and a
  89. SETCONF command arrives containing a single ORBindAddress value, the new
  90. command's value replaces the two old values.
  91. To _remove_ all settings for a given option entirely (and go back to its
  92. default value), send a single line containing the key and no value.
  93. 3.2 GETCONF
  94. Request the value of a configuration variable. The syntax is:
  95. "GETCONF" 1*(SP keyword) CRLF
  96. If all of the listed keywords exist in the Tor configuration, Tor replies
  97. with a series of reply lines of the form:
  98. 250 keyword=value
  99. If any option is set to a 'default' value semantically different from an
  100. empty string, Tor may reply with a reply line of the form:
  101. 250 keyword
  102. If some of the listed keywords can't be found, Tor replies with a
  103. "552 unknown configuration keyword" message.
  104. If an option appears multiple times in the configuration, all of its
  105. key-value pairs are returned in order.
  106. Some options are context-sensitive, and depend on other options with
  107. different keywords. These cannot be fetched directly. Currently there
  108. is only one such option: clients should use the "HiddenServiceOptions"
  109. virtual keyword to get all HiddenServiceDir, HiddenServicePort,
  110. HiddenServiceNodes, and HiddenServiceExcludeNodes option settings.
  111. 3.3 SETEVENTS
  112. Request the server to inform the client about interesting events. The
  113. syntax is:
  114. "SETEVENTS" *(SP EventCode) CRLF
  115. EventCode = "CIRC" / "STREAM" / "ORCONN" / "BW" / "DEBUG" /
  116. "INFO" / "NOTICE" / "WARN" / "ERR" / "NEWDESC" / "ADDRMAP"
  117. Any events *not* listed in the SETEVENTS line are turned off; thus, sending
  118. SETEVENTS with an empty body turns off all event reporting.
  119. The server responds with a "250 OK" reply on success, and a "552
  120. Unrecognized event" reply if one of the event codes isn't recognized. (On
  121. error, the list of active event codes isn't changed.)
  122. 3.4 AUTHENTICATE
  123. Sent from the client to the server. The syntax is:
  124. "AUTHENTICATE" [ SP 1*HEXDIG / QuotedString ] CRLF
  125. The server responds with "250 OK" on success or "515 Bad authentication" if
  126. the authentication cookie is incorrect.
  127. The format of the 'cookie' is implementation-dependent; see 5.1 below for
  128. information on how the standard Tor implementation handles it.
  129. If Tor requires authentication and the controller has not yet sent an
  130. AUTHENTICATE message, Tor sends a "514 authentication required" reply to
  131. any other kind of message.
  132. 3.5 SAVECONF
  133. Sent from the client to the server. The syntax is:
  134. "SAVECONF" CRLF
  135. Instructs the server to write out its config options into its torrc. Server
  136. returns "250 OK" if successful, or "551 Unable to write configuration
  137. to disk" if it can't write the file or some other error occurs.
  138. 3.6 SIGNAL
  139. Sent from the client to the server. The syntax is:
  140. "SIGNAL" SP Signal CRLF
  141. Signal = "RELOAD" / "SHUTDOWN" / "DUMP" / "DEBUG" / "HALT" /
  142. "HUP" / "INT" / "USR1" / "USR2" / "TERM"
  143. The meaning of the signals are:
  144. RELOAD -- Reload: reload config items, refetch directory. (like HUP)
  145. SHUTDOWN -- Controlled shutdown: if server is an OP, exit immediately.
  146. If it's an OR, close listeners and exit after 30 seconds.
  147. (like INT)
  148. DUMP -- Dump stats: log information about open connections and
  149. circuits. (like USR1)
  150. DEBUG -- Debug: switch all open logs to loglevel debug. (like USR2)
  151. HALT -- Immediate shutdown: clean up and exit now. (like TERM)
  152. The server responds with "250 OK" if the signal is recognized (or simply
  153. closes the socket if it was asked to close immediately), or "552
  154. Unrecognized signal" if the signal is unrecognized.
  155. 3.7 MAPADDRESS
  156. Sent from the client to the server. The syntax is:
  157. "MAPADDRESS" 1*(Address "=" Address SP) CRLF
  158. The first address in each pair is an "original" address; the second is a
  159. "replacement" address. The client sends this message to the server in
  160. order to tell it that future SOCKS requests for connections to the original
  161. address should be replaced with connections to the specified replacement
  162. address. If the addresses are well-formed, and the server is able to
  163. fulfill the request, the server replies with a 250 message:
  164. 250-OldAddress1=NewAddress1
  165. 250 OldAddress2=NewAddress2
  166. containing the source and destination addresses. If request is malformed,
  167. the server replies with "512 syntax error in command argument". If the server
  168. can't fulfill the request, it replies with "451 resource exhausted."
  169. The client may decline to provide a body for the original address, and
  170. instead send a special null address ("0.0.0.0" for IPv4, "::0" for IPv6, or
  171. "." for hostname), signifying that the server should choose the original
  172. address itself, and return that address in the reply. The server
  173. should ensure that it returns an element of address space that is unlikely
  174. to be in actual use. If there is already an address mapped to the
  175. destination address, the server may reuse that mapping.
  176. If the original address is already mapped to a different address, the old
  177. mapping is removed. If the original address and the destination address
  178. are the same, the server removes any mapping in place for the original
  179. address.
  180. Example:
  181. C: MAPADDRESS 0.0.0.0=tor.eff.org 1.2.3.4=tor.freehaven.net
  182. S: 250-127.192.10.10=tor.eff.org
  183. S: 250 1.2.3.4=tor.freehaven.net
  184. {Note: This feature is designed to be used to help Tor-ify applications
  185. that need to use SOCKS4 or hostname-less SOCKS5. There are three
  186. approaches to doing this:
  187. 1. Somehow make them use SOCKS4a or SOCKS5-with-hostnames instead.
  188. 2. Use tor-resolve (or another interface to Tor's resolve-over-SOCKS
  189. feature) to resolve the hostname remotely. This doesn't work
  190. with special addresses like x.onion or x.y.exit.
  191. 3. Use MAPADDRESS to map an IP address to the desired hostname, and then
  192. arrange to fool the application into thinking that the hostname
  193. has resolved to that IP.
  194. This functionality is designed to help implement the 3rd approach.}
  195. Mappings set by the controller last until the Tor process exits:
  196. they never expire. If the controller wants the mapping to last only
  197. a certain time, then it must explicitly un-map the address when that
  198. time has elapsed.
  199. 3.8 GETINFO
  200. Sent from the client to the server. The syntax is as for GETCONF:
  201. "GETINFO" 1*(SP keyword) CRLF
  202. one or more NL-terminated strings. The server replies with an INFOVALUE
  203. message.
  204. Unlike GETCONF, this message is used for data that are not stored in the Tor
  205. configuration file, and that may be longer than a single line. On success,
  206. one ReplyLine is sent for each requested value, followed by a final 250 OK
  207. ReplyLine. If a value fits on a single line, the format is:
  208. 250-keyword=value
  209. If avalue must be split over multiple lines, the format is:
  210. 250+keyword=
  211. value
  212. .
  213. Recognized key and their values include:
  214. "version" -- The version of the server's software, including the name
  215. of the software. (example: "Tor 0.0.9.4")
  216. "desc/id/<OR identity>" or "desc/name/<OR nickname>" -- the latest server
  217. descriptor for a given OR, NUL-terminated. If no such OR is known, the
  218. corresponding value is an empty string.
  219. "network-status" -- a space-separated list of all known OR identities.
  220. This is in the same format as the router-status line in directories;
  221. see tor-spec.txt for details.
  222. "addr-mappings/all"
  223. "addr-mappings/config"
  224. "addr-mappings/cache"
  225. "addr-mappings/control" -- a space-separated list of address mappings, each
  226. in the form of "from-address=to-address". The 'config' key
  227. returns those address mappings set in the configuration; the 'cache'
  228. key returns the mappings in the client-side DNS cache; the 'control'
  229. key returns the mappings set via the control interface; the 'all'
  230. target returns the mappings set through any mechanism.
  231. "circuit-status"
  232. A series of lines as for a circuit status event. Each line is of the form:
  233. CircuitID SP CircStatus SP Path CRLF
  234. "stream-status"
  235. A series of lines as for a stream status event. Each is of the form:
  236. StreamID SP StreamStatus SP CircID SP Target CRLF
  237. "orconn-status"
  238. A series of lines as for an OR connection status event. Each is of the
  239. form:
  240. ServerID SP ORStatus CRLF
  241. Examples:
  242. C: GETINFO version desc/name/moria1
  243. S: 250+desc/name/moria=
  244. S: [Descriptor for moria]
  245. S: .
  246. S: 250-version=Tor 0.1.1.0-alpha-cvs
  247. S: 250 OK
  248. 3.9 EXTENDCIRCUIT
  249. Sent from the client to the server. The format is:
  250. "EXTENDCIRCUIT" SP CircuitID SP ServerID *("," ServerID) CRLF
  251. This request takes one of two forms: either the Circuit ID is zero, in
  252. which case it is a request for the server to build a new circuit according
  253. to the specified path, or the Circuit ID is nonzero, in which case it is a
  254. request for the server to extend an existing circuit with that ID according
  255. to the specified path.
  256. If the request is successful, the server sends a reply containing a message
  257. body consisting of the Circuit ID of the (maybe newly created) circuit.
  258. The syntax is "250" SP "EXTENDED" SP CircuitID CRLF.
  259. 3.10 ATTACHSTREAM
  260. Sent from the client to the server. The syntax is:
  261. "ATTACHSTREAM" SP StreamID SP CircuitID CRLF
  262. This message informs the server that the specified stream should be
  263. associated with the specified circuit. Each stream may be associated with
  264. at most one circuit, and multiple streams may share the same circuit.
  265. Streams can only be attached to completed circuits (that is, circuits that
  266. have sent a circuit status 'BUILT' event or are listed as built in a
  267. GETINFO circuit-status request).
  268. If the circuit ID is 0, responsibility for attaching the given stream is
  269. returned to Tor.
  270. Tor responds with "250 OK" if it can attach the stream, 552 if the circuit
  271. or stream didn't exist, or 551 if the stream couldn't be attached for
  272. another reason.
  273. {Implementation note: By default, Tor automatically attaches streams to
  274. circuits itself, unless the configuration variable
  275. "__LeaveStreamsUnattached" is set to "1". Attempting to attach streams
  276. via TC when "__LeaveStreamsUnattached" is false may cause a race between
  277. Tor and the controller, as both attempt to attach streams to circuits.}
  278. 3.11 POSTDESCRIPTOR
  279. Sent from the client to the server. The syntax is:
  280. "+POSTDESCRIPTOR" CRLF Descriptor CRLF "." CRLF
  281. This message informs the server about a new descriptor.
  282. The descriptor, when parsed, must contain a number of well-specified
  283. fields, including fields for its nickname and identity.
  284. If there is an error in parsing the descriptor, the server must send a "554
  285. Invalid descriptor" reply. If the descriptor is well-formed but the server
  286. chooses not to add it, it must reply with a 251 message whose body explains
  287. why the server was not added. If the descriptor is added, Tor replies with
  288. "250 OK".
  289. 3.12 REDIRECTSTREAM
  290. Sent from the client to the server. The syntax is:
  291. "REDIRECTSTREAM" SP StreamID SP Address CRLF
  292. Tells the server to change the exit address on the specified stream. No
  293. remapping is performed on the new provided address.
  294. To be sure that the modified address will be used, this event must be sent
  295. after a new stream event is received, and before attaching this stream to
  296. a circuit.
  297. Tor replies with "250 OK" on success.
  298. 3.13 CLOSESTREAM
  299. Sent from the client to the server. The syntax is:
  300. "CLOSESTREAM" SP StreamID SP Reason *(SP Flag) CRLF
  301. Tells the server to close the specified stream. The reason should be one
  302. of the Tor RELAY_END reasons given in tor-spec.txt, as a decimal. Flags is
  303. not used currently; Tor servers SHOULD ignore unrecognized flags. Tor may
  304. hold the stream open for a while to flush any data that is pending.
  305. 3.14 CLOSECIRCUIT
  306. The syntax is:
  307. CLOSECIRCUIT SP CircuitID *(SP Flag) CRLF
  308. Flag = "IfUnused"
  309. Tells the server to close the specified circuit. If "IfUnused" is
  310. provided, do not close the circuit unless it is unused.
  311. Other flags may be defined in the future; Tor SHOULD ignore unrecognized
  312. flags.
  313. 4 Replies
  314. Reply codes follow the same 3-character format as used by SMTP, with the
  315. first character defining a status, the second character defining a
  316. subsystem, and the third designating fine-grained information.
  317. The TC protocol currently uses the following first characters:
  318. 2yz Positive Completion Reply
  319. The command was successful; a new request can be started.
  320. 4yz Temporary Negative Completion reply
  321. The command was unsuccessful but might be reattempted later.
  322. 5yz Permanent Negative Completion Reply
  323. The command was unsuccessful; the client should not try exactly
  324. that sequence of commands again.
  325. 6yz Asynchronous Reply
  326. Sent out-of-order in response to an earlier SETEVENTS command.
  327. The following second characters are used:
  328. x0z Syntax
  329. Sent in response to ill-formed or nonsensical commands.
  330. x1z Protocol
  331. Refers to operations of the Tor Control protocol.
  332. x5z Tor
  333. Refers to actual operations of Tor system.
  334. The following codes are defined:
  335. 250 OK
  336. 251 Operation was unnecessary
  337. [Tor has declined to perform the operation, but no harm was done.]
  338. 451 Resource exhausted
  339. 500 Syntax error: protocol
  340. 510 Unrecognized command
  341. 511 Unimplemented command
  342. 512 Syntax error in command argument
  343. 513 Unrecognized command argument
  344. 514 Authentication required
  345. 515 Bad authentication
  346. 550 Unspecified Tor error
  347. 551 Internal error
  348. [Something went wrong inside Tor, so that the client's
  349. request couldn't be fulfilled.]
  350. 552 Unrecognized entity
  351. [A configuration key, a stream ID, circuit ID, event,
  352. mentioned in the command did not actually exist.]
  353. 553 Invalid configuration value
  354. [The client tried to set a configuration option to an
  355. incorrect, ill-formed, or impossible value.]
  356. 554 Invalid descriptor
  357. 555 Unmanaged entity
  358. 650 Asynchronous event notification
  359. Unless specified to have specific contents, the human-readable messages
  360. in error replies should not be relied upon to match those in this document.
  361. 4.1 Asynchronous events
  362. These replies can be sent after a corresponding SETEVENTS command has been
  363. received. They will not be interleaved with other Reply elements, but they
  364. can appear between a command and its corresponding reply. For example,
  365. this sequence is possible:
  366. C: SETEVENTS CIRC
  367. S: 250 OK
  368. C: GETCONF SOCKSPORT ORPORT
  369. S: 650 CIRC 1000 EXTENDED moria1,moria2
  370. S: 250-SOCKSPORT=9050
  371. S: 250 ORPORT=0
  372. But this sequence is disallowed:
  373. C: SETEVENTS CIRC
  374. S: 250 OK
  375. C: GETCONF SOCKSPORT ORPORT
  376. S: 250-SOCKSPORT=9050
  377. S: 650 CIRC 1000 EXTENDED moria1,moria2
  378. S: 250 ORPORT=0
  379. Clients SHOULD tolerate more arguments in an asynchonous reply than
  380. expected, and SHOULD tolerate more lines in an asynchronous reply than
  381. expected. For instance, a client that expects a CIRC message like:
  382. 650 CIRC 1000 EXTENDED moria1,moria2
  383. should tolerate:
  384. 650+CIRC 1000 EXTENDED moria1,moria2 0xBEEF
  385. 650-EXTRAMAGIC=99
  386. 650 ANONYMITY=high
  387. 4.1.1 Circuit status changed
  388. The syntax is:
  389. "650" SP "CIRC" SP CircuitID SP CircStatus SP Path
  390. CircStatus =
  391. "LAUNCHED" / ; circuit ID assigned to new circuit
  392. "BUILT" / ; all hops finished, can now accept streams
  393. "EXTENDED" / ; one more hop has been completed
  394. "FAILED" / ; circuit closed (was not built)
  395. "CLOSED" ; circuit closed (was built)
  396. Path = ServerID *("," ServerID)
  397. 4.1.2. Stream status changed
  398. The syntax is:
  399. "650" SP "STREAM" SP StreamID SP StreamStatus SP CircID SP Target SP
  400. StreamStatus =
  401. "NEW" / ; New request to connect
  402. "NEWRESOLVE" / ; New request to resolve an address
  403. "SENTCONNECT" / ; Sent a connect cell along a circuit
  404. "SENTRESOLVE" / ; Sent a resolve cell along a circuit
  405. "SUCCEEDED" / ; Received a reply; stream established
  406. "FAILED" / ; Stream failed and not retriable.
  407. "CLOSED" / ; Stream closed
  408. "DETACHED" ; Detached from circuit; still retriable.
  409. Target = Address ":" Port
  410. The circuit ID designates which circuit this stream is attached to. If
  411. the stream is unattached, the circuit ID "0" is given.
  412. 4.1.3 OR Connection status changed
  413. The syntax is:
  414. "650" SP "ORCONN" SP ServerID SP ORStatus
  415. ORStatus = "LAUNCHED" / "CONNECTED" / "FAILED" / "CLOSED"
  416. 4.1.3 Bandwidth used in the last second
  417. The syntax is:
  418. "650" SP "BW" SP BytesRead SP BytesWritten
  419. BytesRead = 1*DIGIT
  420. BytesWritten = 1*DIGIT
  421. 4.1.4 Log message
  422. The syntax is:
  423. "650" SP Severity SP ReplyText
  424. or
  425. "650+" Severity CRLF Data
  426. Severity = "DEBUG" / "INFO" / "NOTICE" / "WARN"/ "ERR"
  427. 4.1.5 New descriptors available
  428. Syntax:
  429. "650" SP "NEWDESC" 1*(SP ServerID)
  430. 4.1.6 New Address mapping
  431. Syntax:
  432. "650" SP "ADDRMAP" SP Address SP Address SP Expiry
  433. Expiry = DQOUTE ISOTime DQUOTE / "NEVER"
  434. 5. Implementation notes
  435. 5.1. Authentication
  436. By default, the current Tor implementation trusts all local users.
  437. If the 'CookieAuthentication' option is true, Tor writes a "magic cookie"
  438. file named "control_auth_cookie" into its data directory. To authenticate,
  439. the controller must send the contents of this file.
  440. If the 'HashedControlPassword' option is set, it must contain the salted
  441. hash of a secret password. The salted hash is computed according to the
  442. S2K algorithm in RFC 2440 (OpenPGP), and prefixed with the s2k specifier.
  443. This is then encoded in hexadecimal, prefixed by the indicator sequence
  444. "16:". Thus, for example, the password 'foo' could encode to:
  445. 16:660537E3E1CD49996044A3BF558097A981F539FEA2F9DA662B4626C1C2
  446. ++++++++++++++++**^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  447. salt hashed value
  448. indicator
  449. You can generate the salt of a password by calling
  450. 'tor --hash-password <password>'
  451. or by using the example code in the Python and Java controller libraries.
  452. To authenticate under this scheme, the controller sends Tor the original
  453. secret that was used to generate the password.
  454. 5.2. Don't let the buffer get too big.
  455. If you ask for lots of events, and 16MB of them queue up on the buffer,
  456. the Tor process will close the socket.
  457. 5.3. Backward compatibility
  458. For backward compatibility with the "version 0" control protocol, Tor checks
  459. whether the third octet the first command is zero. If it is, Tor
  460. assumes that version 0 is in use. This feature is deprecated, and will be
  461. removed in the 0.1.2.x Tor development series.
  462. In order to detect which version of the protocol is supported controllers
  463. should send the sequence [00 00 0D 0A]. This is a valid and unrecognized
  464. command in both protocol versions, and implementations can detect which
  465. error they have received.