control-spec.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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. 3. Message types
  33. 3.1. ERROR (Type 0x0000)
  34. Sent in response to a message that could not be processed as requested.
  35. The body of the message begins with a 2-byte error code. The following
  36. values are defined:
  37. 0x0000 Unspecified error
  38. []
  39. 0x0001 Internal error
  40. [Something went wrong inside Tor, so that the client's
  41. request couldn't be fulfilled.]
  42. 0x0002 Unrecognized message type
  43. [The client sent a message type we don't understand.]
  44. 0x0003 Syntax error
  45. [The client sent a message body in a format we can't parse.]
  46. 0x0004 Unrecognized configuration key
  47. [The client tried to get or set a configuration option we don't
  48. recognize.]
  49. 0x0005 Invalid configuration value
  50. [The client tried to set a configuration option to an
  51. incorrect, ill-formed, or impossible value.]
  52. 0x0006 Unrecognized byte code
  53. [The client tried to set a byte code (in the body) that
  54. we don't recognize.]
  55. 0x0007 Unauthorized.
  56. [The client tried to send a command that requires
  57. authorization, but it hasn't sent a valid AUTHENTICATE
  58. message.]
  59. 0x0008 Failed authentication attempt
  60. [The client sent a well-formed authorization message.]
  61. 0x0009 Resource exhausted
  62. [The server didn't have enough of a given resource to
  63. fulfill a given request.]
  64. The rest of the body should be a human-readable description of the error.
  65. In general, new error codes should only be added when they don't fall under
  66. one of the existing error codes.
  67. 3.2. DONE (Type 0x0001)
  68. Sent from server to client in response to a request that was successfully
  69. completed, with no more information needed. The body is empty.
  70. 3.3. SETCONF (Type 0x0002)
  71. Change the value of a configuration variable. The body contains a list of
  72. newline-terminated key-value configuration lines.
  73. The server behaves as though it had just read the key-value pair in its
  74. configuration file.
  75. The server responds with a DONE message on success, or an ERROR message on
  76. failure.
  77. When a configuration options takes multiple values, or when multiple
  78. configuration keys form a context-sensitive group (see below), then
  79. setting _any_ of the options in a SETCONF command is taken to reset all of
  80. the others. For example, if two ORBindAddress values are configured,
  81. and a SETCONF command arrives containing a single ORBindAddress value, the
  82. new command's value replaces the two old values.
  83. To _remove_ all settings for a given option entirely (and go back to its
  84. default value), send a single line containing the key and no value.
  85. 3.4. GETCONF (Type 0x0003)
  86. Request the value of a configuration variable. The body contains one or
  87. more NL-terminated strings for configuration keys. The server replies
  88. with a CONFVALUE message.
  89. If an option appears multiple times in the configuration, all of its
  90. key-value pairs are returned in order.
  91. Some options are context-sensitive, and depend on other options with
  92. different keywords. These cannot be fetched directly. Currently there
  93. is only one such option: clients should use the "HiddenServiceOptions"
  94. virtual keyword to get all HiddenServiceDir, HiddenServicePort,
  95. HiddenServiceNodes, and HiddenServiceExcludeNodes option settings.
  96. 3.5. CONFVALUE (Type 0x0004)
  97. Sent in response to a GETCONF message; contains a list of "Key Value\n"
  98. (A non-whitespace keyword, a single space, a non-NL value, a NL)
  99. strings.
  100. 3.6. SETEVENTS (Type 0x0005)
  101. Request the server to inform the client about interesting events.
  102. The body contains a list of 2-byte event codes (see "event" below).
  103. Sending SETEVENTS with an empty body turns off all event reporting.
  104. The server responds with a DONE message on success, and an ERROR message
  105. if one of the event codes isn't recognized. (On error, the list of active
  106. event codes isn't changed.)
  107. 3.7. EVENT (Type 0x0006)
  108. Sent from the server to the client when an event has occurred and the
  109. client has requested that kind of event. The body contains a 2-byte
  110. event code followed by additional event-dependent information. Event
  111. codes are:
  112. 0x0001 -- Circuit status changed
  113. Status [1 octet]
  114. (Launched=0,Built=1,Extended=2,Failed=3,Closed=4)
  115. Circuit ID [4 octets]
  116. (Must be unique to Tor process/time)
  117. Path [NUL-terminated comma-separated string]
  118. (For extended/failed, is the portion of the path that is
  119. built)
  120. 0x0002 -- Stream status changed
  121. Status [1 octet]
  122. (Sent connect=0,sent resolve=1,succeeded=2,failed=3,
  123. closed=4)
  124. Stream ID [4 octets]
  125. (Must be unique to Tor process/time)
  126. Target (NUL-terminated address-port string]
  127. 0x0003 -- OR Connection status changed
  128. Status [1 octet]
  129. (Launched=0,connected=1,failed=2,closed=3)
  130. OR nickname/identity [NUL-terminated]
  131. 0x0004 -- Bandwidth used in the last second
  132. Bytes read [4 octets]
  133. Bytes written [4 octets]
  134. 0x0005 -- Notice/warning/error occurred
  135. Message [NUL-terminated]
  136. 3.8. AUTHENTICATE (Type 0x0007)
  137. Sent from the client to the server. Contains a 'magic cookie' to prove
  138. that client is really the admin for this Tor process. The server responds
  139. with DONE or ERROR.
  140. 3.9. SAVECONF (Type 0x0008)
  141. Sent from the client to the server. Instructs the server to write out
  142. its config options into its torrc. Server returns DONE if successful, or
  143. ERROR if it can't write the file or some other error occurs.
  144. 3.10. SIGNAL (Type 0x0009)
  145. Sent from the client to the server. The body contains one byte that
  146. indicates the action the client wishes the server to take.
  147. 0x01 -- Reload: reload config items, refetch directory.
  148. 0x02 -- Controlled shutdown: if server is an OP, exit immediately.
  149. If it's an OR, close listeners and exit after 30 seconds.
  150. 0x10 -- Dump stats: log information about open connections and
  151. circuits.
  152. 0x12 -- Debug: switch all open logs to loglevel debug.
  153. 0x15 -- Immediate shutdown: clean up and exit now.
  154. The server responds with DONE if the signal is recognized (or simply
  155. closes the socket if it was asked to close immediately), else ERROR.
  156. 3.11. MAPADDRESS (Type 0x000A)
  157. [Proposal; not finalized]
  158. Sent from the client to the server. The body contains:
  159. Original address type [1 octet]
  160. Original address [Variable length]
  161. Replacement address type [1 octet]
  162. Replacement address [Variable length]
  163. Addresses types can be:
  164. [0x01] for an IPv4 address (4 octets)
  165. [0x02] for an IPv6 address (16 octets)
  166. [0x03] for a hostname (variable-length, NUL-terminated)
  167. The client sends this message to the server in order to tell it that future
  168. SOCKS requests for connections to the original address should be replaced
  169. with connections to the specified replacement address. If the addresses
  170. are well-formed, and the server is able to fulfill the request, the server
  171. replies with a single ADDRESSMAPPED message containing the source and
  172. destination addresses. If request is malformed, the server replies with
  173. a syntax error message. The server can't fulfill the request, it replies
  174. with an internal ERROR message.
  175. The client may decline to provide a body for the original address, and
  176. instead send a special null address (0.0.0.0 for IPv4, ::0 for IPv6, or
  177. "." for hostname). This signifies that the server should choose the
  178. original address itself, and return that address in the ADDRESSMAPPED
  179. message. The server should ensure that an element of address space
  180. that is unlikely to be in actual use. If there is already an address
  181. mapped to the destination address, the server may reuse that mapping.
  182. If the original address is already mapped to a different address, the old
  183. mapping is removed. If the original address and the destination address
  184. are the same, the server removes any mapping in place for the original
  185. address.
  186. {Note: This feature is designed to be used to help Tor-ify applications
  187. that need to use SOCKS4 or hostname-less SOCKS5. There are three
  188. approaches to doing this:
  189. 1. Somehow make them use SOCKS4a or SOCKS5-with-hostnames instead.
  190. 2. Use tor-resolve (or another interface to Tor's resolve-over-SOCKS
  191. feature) to resolve the hostname remotely. This doesn't work
  192. with special addresses like x.onion or x.y.exit.
  193. 3. Use MAPADDRESS to map an IP address to the desired hostname, and then
  194. arrange to fool the application into thinking that the hostname
  195. has resolved to that IP.
  196. This functionality is designed to help implement the 3rd approach.}
  197. [XXXX When, if ever, can mappings expire? Should they expire?]
  198. [XXXX What addresses, if any, are safe to use?]
  199. 3.12 ADDRESSMAPPED (Type 0x000B)
  200. [Proposal; not finalized]
  201. Same format as MAPADDRESS.
  202. This message is sent from the server to the client in response to a
  203. MAPADDRESS or GETALLMAPPINGS message.
  204. 3.13 GETALLMAPPINGS (Type 0x000C)
  205. [Proposal; not finalized]
  206. Sent from the client to the server. The server replies by sending an
  207. ADDRESSMAPPED message for each current address mapping set by MAPADDRESS or
  208. otherwise, followed by a DONE message.
  209. 4. Implementation notes
  210. 4.1. There are four ways we could authenticate, for now:
  211. 1) Listen on 127.0.0.1; trust all local users.
  212. 2) Write a named socket in tor's data-directory or in some other location;
  213. rely on the OS to ensure that only authorized users can open it. (NOTE:
  214. the Linux unix(7) man page suggests that some BSDs don't enforce
  215. authorization.) If the OS has named sockets, and implements
  216. authentication, trust all users who can read Tor's data directory.
  217. 3) Write a random magic cookie to the FS in Tor's data-directory; use that
  218. magic cookie for authentication. Trust all users who can read Tor's data
  219. directory.
  220. 4) Store a salted-and-hashed passphrase in Tor's configuration. Use the
  221. passphrase for authentication. Trust all users who know the passphrase.
  222. On Win32, our only options are 1, 3, and 4. Since the semantics for 2
  223. and 3 are so similar, we chose to not support 2, and just always bind
  224. on 127.0.0.1. We've implemented 1, 3, and 4.
  225. By default, the Tor client accepts authentication approach #1. If
  226. the controller wants Tor to demand more authentication, it should use
  227. setconf and saveconf to configure Tor to demand more next time.
  228. 4.2. Don't let the buffer get too big.
  229. If you ask for lots of events, and 16MB of them queue up on the buffer,
  230. the Tor process will close the socket.