control-spec.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. $Id$
  2. TC: A Tor control protocol
  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
  6. with a locally running Tor process. It is not part of the Tor onion
  7. routing protocol.
  8. We're trying to be pretty extensible here, but not infinitely
  9. forward-compatible.
  10. 1. Protocol outline
  11. TC is a bidirectional message-based protocol. It assumes an underlying
  12. stream for communication between a controlling process (the "client") and
  13. a Tor process (the "server"). The stream may be implemented via TCP,
  14. TLS-over-TCP, a Unix-domain socket, or so on, but it must provide
  15. reliable in-order delivery. For security, the stream should not be
  16. accessible by untrusted parties.
  17. In TC, the client and server send typed variable-length messages to each
  18. other over the underlying stream. By default, all messages from the server
  19. are in response to messages from the client. Some client requests, however,
  20. will cause the server to send messages to the client indefinitely far into
  21. the future.
  22. Servers respond to messages in the order they're received.
  23. 2. Message format
  24. The messages take the following format:
  25. Length [2 octets; big-endian]
  26. Type [2 octets; big-endian]
  27. Body [Length octets]
  28. Upon encountering a recognized Type, implementations behave as described in
  29. section 3 below. If the type is not recognized, servers respond with a
  30. "STAT" message (code UNRECOGNIZED; see 3.1 below), and clients simply ignore
  31. the message.
  32. 2.1. Types and encodings
  33. All numbers are given in big-endian (network) order.
  34. OR identities are given in hexadecimal, in the same format as identity key
  35. fingerprints, but without spaces; see tor-spec.txt for more information.
  36. 3. Message types
  37. 3.1. ERROR (Type 0x0000)
  38. Sent in response to a message that could not be processed as requested.
  39. The body of the message begins with a 2-byte error code. The following
  40. values are defined:
  41. 0x0000 Unspecified error
  42. []
  43. 0x0001 Internal error
  44. [Something went wrong inside Tor, so that the client's
  45. request couldn't be fulfilled.]
  46. 0x0002 Unrecognized message type
  47. [The client sent a message type we don't understand.]
  48. 0x0003 Syntax error
  49. [The client sent a message body in a format we can't parse.]
  50. 0x0004 Unrecognized configuration key
  51. [The client tried to get or set a configuration option we don't
  52. recognize.]
  53. 0x0005 Invalid configuration value
  54. [The client tried to set a configuration option to an
  55. incorrect, ill-formed, or impossible value.]
  56. 0x0006 Unrecognized byte code
  57. [The client tried to set a byte code (in the body) that
  58. we don't recognize.]
  59. 0x0007 Unauthorized.
  60. [The client tried to send a command that requires
  61. authorization, but it hasn't sent a valid AUTHENTICATE
  62. message.]
  63. 0x0008 Failed authentication attempt
  64. [The client sent a well-formed authorization message.]
  65. 0x0009 Resource exhausted
  66. [The server didn't have enough of a given resource to
  67. fulfill a given request.]
  68. The rest of the body should be a human-readable description of the error.
  69. In general, new error codes should only be added when they don't fall under
  70. one of the existing error codes.
  71. 3.2. DONE (Type 0x0001)
  72. Sent from server to client in response to a request that was successfully
  73. completed, with no more information needed. The body is usually empty but
  74. may contain a message.
  75. 3.3. SETCONF (Type 0x0002)
  76. Change the value of a configuration variable. The body contains a list of
  77. newline-terminated key-value configuration lines.
  78. The server behaves as though it had just read the key-value pair in its
  79. configuration file.
  80. The server responds with a DONE message on success, or an ERROR message on
  81. failure.
  82. When a configuration options takes multiple values, or when multiple
  83. configuration keys form a context-sensitive group (see below), then
  84. setting _any_ of the options in a SETCONF command is taken to reset all of
  85. the others. For example, if two ORBindAddress values are configured,
  86. and a SETCONF command arrives containing a single ORBindAddress value, the
  87. new command's value replaces the two old values.
  88. To _remove_ all settings for a given option entirely (and go back to its
  89. default value), send a single line containing the key and no value.
  90. 3.4. GETCONF (Type 0x0003)
  91. Request the value of a configuration variable. The body contains one or
  92. more NL-terminated strings for configuration keys. The server replies
  93. with a CONFVALUE message.
  94. If an option appears multiple times in the configuration, all of its
  95. key-value pairs are returned in order.
  96. Some options are context-sensitive, and depend on other options with
  97. different keywords. These cannot be fetched directly. Currently there
  98. is only one such option: clients should use the "HiddenServiceOptions"
  99. virtual keyword to get all HiddenServiceDir, HiddenServicePort,
  100. HiddenServiceNodes, and HiddenServiceExcludeNodes option settings.
  101. 3.5. CONFVALUE (Type 0x0004)
  102. Sent in response to a GETCONF message; contains a list of "Key Value\n"
  103. (A non-whitespace keyword, a single space, a non-NL value, a NL)
  104. strings.
  105. 3.6. SETEVENTS (Type 0x0005)
  106. Request the server to inform the client about interesting events.
  107. The body contains a list of 2-byte event codes (see "event" below).
  108. Sending SETEVENTS with an empty body turns off all event reporting.
  109. The server responds with a DONE message on success, and an ERROR message
  110. if one of the event codes isn't recognized. (On error, the list of active
  111. event codes isn't changed.)
  112. 3.7. EVENT (Type 0x0006)
  113. Sent from the server to the client when an event has occurred and the
  114. client has requested that kind of event. The body contains a 2-byte
  115. event code followed by additional event-dependent information. Event
  116. codes are:
  117. 0x0001 -- Circuit status changed
  118. Status [1 octet]
  119. (Launched=0,Built=1,Extended=2,Failed=3,Closed=4)
  120. Circuit ID [4 octets]
  121. (Must be unique to Tor process/time)
  122. Path [NUL-terminated comma-separated string]
  123. (For extended/failed, is the portion of the path that is
  124. built)
  125. 0x0002 -- Stream status changed
  126. Status [1 octet]
  127. (Sent connect=0,sent resolve=1,succeeded=2,failed=3,
  128. closed=4, new=5)
  129. Stream ID [4 octets]
  130. (Must be unique to Tor process/time)
  131. Target (NUL-terminated address-port string]
  132. 0x0003 -- OR Connection status changed
  133. Status [1 octet]
  134. (Launched=0,connected=1,failed=2,closed=3)
  135. OR nickname/identity [NUL-terminated]
  136. 0x0004 -- Bandwidth used in the last second
  137. Bytes read [4 octets]
  138. Bytes written [4 octets]
  139. 0x0005 -- Notice/warning/error occurred
  140. Message [NUL-terminated]
  141. 0x0006 -- New descriptors available
  142. OR List [NUL-terminated, comma-delimited list of
  143. OR identity]
  144. 3.8. AUTHENTICATE (Type 0x0007)
  145. Sent from the client to the server. Contains a 'magic cookie' to prove
  146. that client is really the admin for this Tor process. The server responds
  147. with DONE or ERROR.
  148. 3.9. SAVECONF (Type 0x0008)
  149. Sent from the client to the server. Instructs the server to write out
  150. its config options into its torrc. Server returns DONE if successful, or
  151. ERROR if it can't write the file or some other error occurs.
  152. 3.10. SIGNAL (Type 0x0009)
  153. Sent from the client to the server. The body contains one byte that
  154. indicates the action the client wishes the server to take.
  155. 1 (0x01) -- Reload: reload config items, refetch directory.
  156. 2 (0x02) -- Controlled shutdown: if server is an OP, exit immediately.
  157. If it's an OR, close listeners and exit after 30 seconds.
  158. 10 (0x0A) -- Dump stats: log information about open connections and
  159. circuits.
  160. 12 (0x0C) -- Debug: switch all open logs to loglevel debug.
  161. 15 (0x0F) -- Immediate shutdown: clean up and exit now.
  162. The server responds with DONE if the signal is recognized (or simply
  163. closes the socket if it was asked to close immediately), else ERROR.
  164. 3.11. MAPADDRESS (Type 0x000A)
  165. [Proposal; not finalized]
  166. Sent from the client to the server. The body contains a sequence of
  167. address mappings, each consisting of the address to be mapped, a single
  168. space, the replacement address, and a NL character.
  169. Addresses may be IPv4 addresses, IPv6 addresses, or hostnames.
  170. The client sends this message to the server in order to tell it that future
  171. SOCKS requests for connections to the original address should be replaced
  172. with connections to the specified replacement address. If the addresses
  173. are well-formed, and the server is able to fulfill the request, the server
  174. replies with a single DONE message containing the source and destination
  175. addresses. If request is malformed, the server replies with a syntax error
  176. message. The server can't fulfill the request, it replies with an internal
  177. ERROR message.
  178. The client may decline to provide a body for the original address, and
  179. instead send a special null address ("0.0.0.0" for IPv4, "::0" for IPv6, or
  180. "." for hostname), signifying that the server should choose the original
  181. address itself, and return that address in the DONE message. The server
  182. should ensure that it returns an element of address space that is unlikely
  183. to be in actual use. If there is already an address mapped to the
  184. destination address, the server may reuse that mapping.
  185. If the original address is already mapped to a different address, the old
  186. mapping is removed. If the original address and the destination address
  187. are the same, the server removes any mapping in place for the original
  188. address.
  189. {Note: This feature is designed to be used to help Tor-ify applications
  190. that need to use SOCKS4 or hostname-less SOCKS5. There are three
  191. approaches to doing this:
  192. 1. Somehow make them use SOCKS4a or SOCKS5-with-hostnames instead.
  193. 2. Use tor-resolve (or another interface to Tor's resolve-over-SOCKS
  194. feature) to resolve the hostname remotely. This doesn't work
  195. with special addresses like x.onion or x.y.exit.
  196. 3. Use MAPADDRESS to map an IP address to the desired hostname, and then
  197. arrange to fool the application into thinking that the hostname
  198. has resolved to that IP.
  199. This functionality is designed to help implement the 3rd approach.}
  200. [XXXX When, if ever, can mappings expire? Should they expire?]
  201. [XXXX What addresses, if any, are safe to use?]
  202. 3.12 GETINFO (Type 0x000B)
  203. [Proposal; not finalized]
  204. Sent from the client to the server. The message body is as for GETCONF:
  205. one or more NL-terminated strings. The server replies with an INFOVALUE
  206. message.
  207. Unlike GETCONF, this message is used for data that are not stored in the
  208. Tor configuration file, but instead.
  209. Recognized key and their values include:
  210. "version" -- The version of the server's software, including the name
  211. of the software. (example: "Tor 0.0.9.4")
  212. "desc/id/<OR identity>" or "desc/name/<OR nickname>" -- the latest server
  213. descriptor for a given OR, NUL-terminated. If no such OR is known, the
  214. corresponding value is an empty string.
  215. "desc/all-ids" -- a comma-separated list of all known OR identities.
  216. "addr-mappings" -- a NL-terminated list of address mappings, each in
  217. the form of "from-address" SP "to-address".
  218. 3.13 INFOVALUE (Type 0x000C)
  219. [Proposal; not finalized]
  220. Sent from the server to the client in response to a GETINFO message.
  221. Contains one or more items of the format:
  222. Key [(NUL-terminated string)]
  223. Value [(NUL-terminated string)]
  224. The keys match those given in the GETINFO message.
  225. 3.14 EXTENDCIRCUIT (Type 0x000D)
  226. [Proposal; not finalized]
  227. Sent from the client to the server. The message body contains two fields:
  228. Circuit ID [4 octets]
  229. Path [NUL-terminated, comma-delimited string of OR nickname/identity]
  230. This request takes one of two forms: either the Circuit ID is zero, in
  231. which case it is a request for the server to build a new circuit according
  232. to the specified path, or the Circuit ID is nonzero, in which case it is a
  233. request for the server to extend an existing circuit with that ID according
  234. to the specified path.
  235. If the request for a NEW circuit is successful, then the resultant DONE
  236. message will contain a message body consisting of the four-octet Circuit ID
  237. of the newly created circuit.
  238. 3.15 ATTACHSTREAM (Type 0x000E)
  239. [Proposal; not finalized]
  240. Sent from the client to the server. The message body contains two fields:
  241. Stream ID [4 octets]
  242. Circuit ID [4 octets]
  243. This message informs the server that the specified stream should be
  244. associated with the specified circuit. Each stream may be associated with
  245. at most one circuit, and multiple streams may share the same circuit.
  246. 3.16 POSTDESCRIPTOR (Type 0x000F)
  247. [Proposal; not finalized]
  248. Sent from the client to the server. The message body contains one field:
  249. Descriptor [NUL-terminated string]
  250. This message informs the server about a new descriptor.
  251. The descriptor, when parsed, must contain a number of well-specified
  252. fields, including fields for its nickname and identity.
  253. If there is an error in parsing the descriptor, or if the server rejects
  254. the descriptor for any reason, the server must send an appropriate error
  255. message.
  256. 4. Implementation notes
  257. 4.1. There are four ways we could authenticate, for now:
  258. 1) Listen on 127.0.0.1; trust all local users.
  259. 2) Write a named socket in tor's data-directory or in some other location;
  260. rely on the OS to ensure that only authorized users can open it. (NOTE:
  261. the Linux unix(7) man page suggests that some BSDs don't enforce
  262. authorization.) If the OS has named sockets, and implements
  263. authentication, trust all users who can read Tor's data directory.
  264. 3) Write a random magic cookie to the FS in Tor's data-directory; use that
  265. magic cookie for authentication. Trust all users who can read Tor's data
  266. directory.
  267. 4) Store a salted-and-hashed passphrase in Tor's configuration. Use the
  268. passphrase for authentication. Trust all users who know the passphrase.
  269. On Win32, our only options are 1, 3, and 4. Since the semantics for 2
  270. and 3 are so similar, we chose to not support 2, and just always bind
  271. on 127.0.0.1. We've implemented 1, 3, and 4.
  272. By default, the Tor client accepts authentication approach #1. If
  273. the controller wants Tor to demand more authentication, it should use
  274. setconf and saveconf to configure Tor to demand more next time.
  275. 4.2. Don't let the buffer get too big.
  276. If you ask for lots of events, and 16MB of them queue up on the buffer,
  277. the Tor process will close the socket.