rend-spec.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. $Id$
  2. Tor Rendezvous Specification
  3. 0. Overview and preliminaries
  4. Read http://tor.eff.org/doc/design-paper/tor-design.html#sec:rendezvous
  5. before you read this specification. It will make more sense.
  6. Rendezvous points provide location-hidden services (server
  7. anonymity) for the onion routing network. With rendezvous points,
  8. Bob can offer a TCP service (say, a webserver) via the onion
  9. routing network, without revealing the IP of that service.
  10. Bob does this by anonymously advertising a public key for his
  11. service, along with a list of onion routers to act as "Introduction
  12. Points" for his service. He creates forward circuits to those
  13. introduction points, and tells them about his public key. To
  14. connect to Bob, Alice first builds a circuit to an OR to act as
  15. her "Rendezvous Point." She then connects to one of Bob's chosen
  16. introduction points, optionally provides authentication or
  17. authorization information, and asks it to tell him about her Rendezvous
  18. Point (RP). If Bob chooses to answer, he builds a circuit to her
  19. RP, and tells it to connect him to Alice. The RP joins their
  20. circuits together, and begins relaying cells. Alice's 'BEGIN'
  21. cells are received directly by Bob's OP, which passes data to
  22. and from the local server implementing Bob's service.
  23. Below we describe a network-level specification of this service,
  24. along with interfaces to make this process transparent to Alice
  25. (so long as she is using an OP).
  26. 0.1. Notation, conventions and prerequisites
  27. In the specifications below, we use the same notation and terminology
  28. as in "tor-spec.txt". The service specified here also requires the
  29. existence of an onion routing network as specified in that file.
  30. H(x) is a SHA1 digest of x.
  31. PKSign(SK,x) is a PKCS.1-padded RSA signature of x with SK.
  32. PKEncrypt(SK,x) is a PKCS.1-padded RSA encryption of x with SK.
  33. Public keys are all RSA, and encoded in ASN.1.
  34. All integers are stored in network (big-endian) order.
  35. All symmetric encryption uses AES in counter mode, except where
  36. otherwise noted.
  37. In all discussions, "Alice" will refer to a user connecting to a
  38. location-hidden service, and "Bob" will refer to a user running a
  39. location-hidden service.
  40. An OP is (as defined elsewhere) an "Onion Proxy" or Tor client.
  41. An OR is (as defined elsewhere) an "Onion Router" or Tor server.
  42. An "Introduction point" is a Tor server chosen to be Bob's medium-term
  43. 'meeting place'. A "Rendezvous point" is a Tor server chosen by Alice to
  44. be a short-term communication relay between her and Bob. All Tor servers
  45. potentially act as introduction and rendezvous points.
  46. 0.2. Protocol outline
  47. 1. Bob->Bob's OP: "Offer IP:Port as
  48. public-key-name:Port". [configuration]
  49. (We do not specify this step; it is left to the implementor of
  50. Bob's OP.)
  51. 2. Bob's OP generates keypair and rendezvous service descriptor:
  52. "Meet public-key X at introduction point A, B, or C." (signed)
  53. 3. Bob's OP->Introduction point via Tor: [introduction setup]
  54. "This pk is me."
  55. 4. Bob's OP->directory service via Tor: publishes Bob's service
  56. descriptor [advertisement]
  57. 5. Out of band, Alice receives a [x.y.]z.onion:port address.
  58. She opens a SOCKS connection to her OP, and requests
  59. x.y.z.onion:port.
  60. 6. Alice's OP retrieves Bob's descriptor via Tor. [descriptor lookup.]
  61. 7. Alice's OP chooses a rendezvous point, opens a circuit to that
  62. rendezvous point, and establishes a rendezvous circuit. [rendezvous
  63. setup.]
  64. 8. Alice connects to the Introduction point via Tor, and tells it about
  65. her rendezvous point and optional authentication/authorization
  66. information. (Encrypted to Bob.) [Introduction 1]
  67. 9. The Introduction point passes this on to Bob's OP via Tor, along the
  68. introduction circuit. [Introduction 2]
  69. 10. Bob's OP decides whether to connect to Alice, and if so, creates a
  70. circuit to Alice's RP via Tor. Establishes a shared circuit.
  71. [Rendezvous.]
  72. 11. Alice's OP sends begin cells to Bob's OP. [Connection]
  73. 0.3. Constants and new cell types
  74. Relay cell types
  75. 32 -- RELAY_ESTABLISH_INTRO
  76. 33 -- RELAY_ESTABLISH_RENDEZVOUS
  77. 34 -- RELAY_INTRODUCE1
  78. 35 -- RELAY_INTRODUCE2
  79. 36 -- RELAY_RENDEZVOUS1
  80. 37 -- RELAY_RENDEZVOUS2
  81. 38 -- RELAY_INTRO_ESTABLISHED
  82. 39 -- RELAY_RENDEZVOUS_ESTABLISHED
  83. 40 -- RELAY_COMMAND_INTRODUCE_ACK
  84. 1. The Protocol
  85. 1.1. Bob configures his local OP.
  86. We do not specify a format for the OP configuration file. However,
  87. OPs SHOULD allow Bob to provide more than one advertised service
  88. per OP, and MUST allow Bob to specify one or more virtual ports per
  89. service. Bob provides a mapping from each of these virtual ports
  90. to a local IP:Port pair.
  91. 1.2. Bob's OP generates service descriptors.
  92. The first time the OP provides an advertised service, it generates
  93. a public/private keypair (stored locally). Periodically, the OP
  94. generates a pair of service descriptors, one "V1" and one "V0".
  95. The "V1" descriptor in 0.1.1.6-alpha contains:
  96. V Format byte: set to 255 [1 octet]
  97. V Version byte: set to 1 [1 octet]
  98. KL Key length [2 octets]
  99. PK Bob's public key [KL octets]
  100. TS A timestamp [4 octets]
  101. PROTO Rendezvous protocol versions: bitmask [2 octets]
  102. NA Number of auth mechanisms accepted [1 octet]
  103. For each auth mechanism:
  104. AUTHT The auth type that is supported [2 octets]
  105. AUTHL Length of auth data [1 octet]
  106. AUTHD Auth data [variable]
  107. NI Number of introduction points [2 octets]
  108. For each introduction point: (as in INTRODUCE2 cells)
  109. ATYPE An address type (typically 4) [1 octet]
  110. ADDR Introduction point's IP address [4 or 16 octets]
  111. PORT Introduction point's OR port [2 octets]
  112. AUTHT The auth type that is supported [2 octets]
  113. AUTHL Length of auth data [1 octet]
  114. AUTHD Auth data [variable]
  115. ID Introduction point identity ID [20 octets]
  116. KLEN Length of onion key [2 octets]
  117. KEY Introduction point onion key [KLEN octets]
  118. SIG Signature of above fields [variable]
  119. The "V1" descriptor in 0.1.1.5-alpha-cvs contains:
  120. V Format byte: set to 255 [1 octet]
  121. V Version byte: set to 1 [1 octet]
  122. KL Key length [2 octets]
  123. PK Bob's public key [KL octets]
  124. TS A timestamp [4 octets]
  125. PROTO Protocol versions: bitmask [2 octets]
  126. NI Number of introduction points [2 octets]
  127. For each introduction point: (as in INTRODUCE2 cells)
  128. IP Introduction point's address [4 octets]
  129. PORT Introduction point's OR port [2 octets]
  130. ID Introduction point identity ID [20 octets]
  131. KLEN Length of onion key [2 octets]
  132. KEY Introduction point onion key [KLEN octets]
  133. SIG Signature of above fields [variable]
  134. The "V0" descriptor contains:
  135. KL Key length [2 octets]
  136. PK Bob's public key [KL octets]
  137. TS A timestamp [4 octets]
  138. NI Number of introduction points [2 octets]
  139. Ipt A list of NUL-terminated ORs [variable]
  140. SIG Signature of above fields [variable]
  141. KL is the length of PK, in octets.
  142. TS is the number of seconds elapsed since Jan 1, 1970.
  143. AUTHT specifies which authentication/authorization mechanism is
  144. required by the hidden service or the introduction point. AUTHD
  145. is arbitrary data that can be associated with an auth approach.
  146. Currently only AUTHT of [00 00] is supported, with an AUTHL of 0.
  147. See section 2 of this document for details on auth mechanisms.
  148. The members of Ipt may be either (a) nicknames, or (b) identity key
  149. digests, encoded in hex, and prefixed with a '$'. Clients must
  150. accept both forms. Services must only generate the second form.
  151. Once 0.0.9.x is obsoleted, we can drop the first form.
  152. [It's ok for Bob to advertise 0 introduction points. He might want
  153. to do that if he previously advertised some introduction points,
  154. and now he doesn't have any. -RD]
  155. [Once Tor 0.1.0.x is obsolete, we can stop generating or using V0
  156. descriptors. -NM]
  157. 1.3. Bob's OP establishes his introduction points.
  158. The OP establishes a new introduction circuit to each introduction
  159. point. These circuits MUST NOT be used for anything but rendezvous
  160. introduction. To establish the introduction, Bob sends a
  161. RELAY_ESTABLISH_INTRO cell, containing:
  162. KL Key length [2 octets]
  163. PK Bob's public key [KL octets]
  164. HS Hash of session info [20 octets]
  165. SIG Signature of above information [variable]
  166. [XXX011, need to add auth information here. -RD]
  167. To prevent replay attacks, the HS field contains a SHA-1 hash based on the
  168. shared secret KH between Bob's OP and the introduction point, as
  169. follows:
  170. HS = H(KH | "INTRODUCE")
  171. That is:
  172. HS = H(KH | [49 4E 54 52 4F 44 55 43 45])
  173. (KH, as specified in tor-spec.txt, is H(g^xy | [00]) .)
  174. Upon receiving such a cell, the OR first checks that the signature is
  175. correct with the included public key. If so, it checks whether HS is
  176. correct given the shared state between Bob's OP and the OR. If either
  177. check fails, the OP discards the cell; otherwise, it associates the
  178. circuit with Bob's public key, and dissociates any other circuits
  179. currently associated with PK. On success, the OR sends Bob a
  180. RELAY_INTRO_ESTABLISHED cell with an empty payload.
  181. 1.4. Bob's OP advertises his service descriptor(s).
  182. Bob's OP opens a stream to each directory server's directory port via Tor.
  183. (He may re-use old circuits for this.) Over this stream, Bob's OP makes
  184. an HTTP 'POST' request, to a URL "/tor/rendezvous/publish" relative to the
  185. directory server's root, containing as its body Bob's service descriptor.
  186. Bob should upload a service descriptor for each version format that
  187. is supported in the current Tor network.
  188. Upon receiving a descriptor, the directory server checks the signature,
  189. and discards the descriptor if the signature does not match the enclosed
  190. public key. Next, the directory server checks the timestamp. If the
  191. timestamp is more than 24 hours in the past or more than 1 hour in the
  192. future, or the directory server already has a newer descriptor with the
  193. same public key, the server discards the descriptor. Otherwise, the
  194. server discards any older descriptors with the same public key and
  195. version format, and associates the new descriptor with the public key.
  196. The directory server remembers this descriptor for at least 24 hours
  197. after its timestamp. At least every 18 hours, Bob's OP uploads a
  198. fresh descriptor.
  199. 1.5. Alice receives a x.y.z.onion address.
  200. When Alice receives a pointer to a location-hidden service, it is as a
  201. hostname of the form "z.onion" or "y.z.onion" or "x.y.z.onion", where
  202. z is a base-32 encoding of a 10-octet hash of Bob's service's public
  203. key, computed as follows:
  204. 1. Let H = H(PK).
  205. 2. Let H' = the first 80 bits of H, considering each octet from
  206. most significant bit to least significant bit.
  207. 2. Generate a 16-character encoding of H', using base32 as defined
  208. in RFC 3548.
  209. (We only use 80 bits instead of the 160 bits from SHA1 because we
  210. don't need to worry about arbitrary collisions, and because it will
  211. make handling the url's more convenient.)
  212. The string "x", if present, is the base-32 encoding of the
  213. authentication/authorization required by the introduction point.
  214. The string "y", if present, is the base-32 encoding of the
  215. authentication/authorization required by the hidden service.
  216. Omitting a string is taken to mean auth type [00 00].
  217. See section 2 of this document for details on auth mechanisms.
  218. [Yes, numbers are allowed at the beginning. See RFC 1123. -NM]
  219. 1.6. Alice's OP retrieves a service descriptor.
  220. Alice opens a stream to a directory server via Tor, and makes an HTTP GET
  221. request for the document '/tor/rendezvous/<z>' or '/tor/rendezvous1/<z>',
  222. where '<z>' is replaced with the encoding of Bob's public key as described
  223. above. (She may re-use old circuits for this.) The directory replies with
  224. a 404 HTTP response if it does not recognize <z>, and otherwise returns
  225. Bob's most recently uploaded service descriptor. (If Alice requests
  226. 'rendezvous1', the directory server provides a V1 descriptor or a V0
  227. descriptor if no V1 descriptor is available. If Alice requests
  228. 'rendezvous', the directory server returns a V0 descriptor.)
  229. If Alice's OP receives a 404 response, it tries the other directory
  230. servers, and only fails the lookup if none recognize the public key hash.
  231. Upon receiving a service descriptor, Alice verifies with the same process
  232. as the directory server uses, described above in section 1.4.
  233. The directory server gives a 400 response if it cannot understand Alice's
  234. request.
  235. Alice should cache the descriptor locally, but should not use
  236. descriptors that are more than 24 hours older than their timestamp.
  237. [Caching may make her partitionable, but she fetched it anonymously,
  238. and we can't very well *not* cache it. -RD]
  239. 1.7. Alice's OP establishes a rendezvous point.
  240. When Alice requests a connection to a given location-hidden service,
  241. and Alice's OP does not have an established circuit to that service,
  242. the OP builds a rendezvous circuit. It does this by establishing
  243. a circuit to a randomly chosen OR, and sending a
  244. RELAY_ESTABLISH_RENDEZVOUS cell to that OR. The body of that cell
  245. contains:
  246. RC Rendezvous cookie [20 octets]
  247. [XXX011 this looks like an auth mechanism. should we generalize here? -RD]
  248. The rendezvous cookie is an arbitrary 20-byte value, chosen randomly by
  249. Alice's OP.
  250. Upon receiving a RELAY_ESTABLISH_RENDEZVOUS cell, the OR associates the
  251. RC with the circuit that sent it. It replies to Alice with an empty
  252. RELAY_RENDEZVOUS_ESTABLISHED cell to indicate success.
  253. Alice's OP MUST NOT use the circuit which sent the cell for any purpose
  254. other than rendezvous with the given location-hidden service.
  255. 1.8. Introduction: from Alice's OP to Introduction Point
  256. Alice builds a separate circuit to one of Bob's chosen introduction
  257. points, and sends it a RELAY_INTRODUCE1 cell containing:
  258. Cleartext
  259. PK_ID Identifier for Bob's PK [20 octets]
  260. [XXX011 want to put intro-level auth info here, but no version. crap. -RD]
  261. Encrypted to Bob's PK:
  262. RP Rendezvous point's nickname [20 octets]
  263. RC Rendezvous cookie [20 octets]
  264. g^x Diffie-Hellman data, part 1 [128 octets]
  265. OR
  266. VER Version byte: set to 1. [1 octet]
  267. RP Rendezvous point nick or ID [42 octets]
  268. RC Rendezvous cookie [20 octets]
  269. g^x Diffie-Hellman data, part 1 [128 octets]
  270. OR
  271. VER Version byte: set to 2. [1 octet]
  272. IP Rendezvous point's address [4 octets]
  273. PORT Rendezvous point's OR port [2 octets]
  274. ID Rendezvous point identity ID [20 octets]
  275. KLEN Length of onion key [2 octets]
  276. KEY Rendezvous point onion key [KLEN octets]
  277. RC Rendezvous cookie [20 octets]
  278. g^x Diffie-Hellman data, part 1 [128 octets]
  279. OR
  280. VER Version byte: set to 3. [1 octet]
  281. ATYPE An address type (typically 4) [1 octet]
  282. ADDR Rendezvous point's IP address [4 or 16 octets]
  283. PORT Rendezvous point's OR port [2 octets]
  284. AUTHT The auth type that is supported [2 octets]
  285. AUTHL Length of auth data [1 octet]
  286. AUTHD Auth data [variable]
  287. ID Rendezvous point identity ID [20 octets]
  288. KLEN Length of onion key [2 octets]
  289. KEY Rendezvous point onion key [KLEN octets]
  290. RC Rendezvous cookie [20 octets]
  291. g^x Diffie-Hellman data, part 1 [128 octets]
  292. PK_ID is the hash of Bob's public key. RP is NUL-padded and terminated,
  293. and must contain EITHER a nickname, or an identity key digest, encoded in
  294. hex, and prefixed with a '$'.
  295. Implementations SHOULD accept all variants, and list the variants they
  296. accept in their V1 descriptor. Implementations should only generate the
  297. variants listed in the service's V1 descriptor; if no V1 descriptor is
  298. available, only the first variant should be generated. No version should
  299. generate the second variant (version byte=1).
  300. The hybrid encryption to Bob's PK works just like the hybrid
  301. encryption in CREATE cells (see main spec). Thus the payload of the
  302. RELAY_INTRODUCE1 cell on the wire will contain 20+42+16+20+20+128=246
  303. bytes. [XXXX not really]
  304. 1.9. Introduction: From the Introduction Point to Bob's OP
  305. If the Introduction Point recognizes PK_ID as a public key which has
  306. established a circuit for introductions as in 1.3 above, it sends the body
  307. of the cell in a new RELAY_INTRODUCE2 cell down the corresponding circuit.
  308. (If the PK_ID is unrecognized, the RELAY_INTRODUCE1 cell is discarded.)
  309. After sending the RELAY_INTRODUCE2 cell, the OR replies to Alice with an
  310. empty RELAY_COMMAND_INTRODUCE_ACK cell. If no RELAY_INTRODUCE2 cell can
  311. be sent, the OR replies to Alice with a non-empty cell to indicate an
  312. error. (The semantics of the cell body may be determined later; the
  313. current implementation sends a single '1' byte on failure.)
  314. When Bob's OP receives the RELAY_INTRODUCE2 cell, it decrypts it with
  315. the private key for the corresponding hidden service, and extracts the
  316. rendezvous point's nickname, the rendezvous cookie, and the value of g^x
  317. chosen by Alice.
  318. 1.10. Rendezvous
  319. Bob's OP builds a new Tor circuit ending at Alice's chosen rendezvous
  320. point, and sends a RELAY_RENDEZVOUS1 cell along this circuit, containing:
  321. RC Rendezvous cookie [20 octets]
  322. g^y Diffie-Hellman [128 octets]
  323. KH Handshake digest [20 octets]
  324. (Bob's OP MUST NOT use this circuit for any other purpose.)
  325. If the RP recognizes RC, it relays the rest of the cell down the
  326. corresponding circuit in a RELAY_RENDEZVOUS2 cell, containing:
  327. g^y Diffie-Hellman [128 octets]
  328. KH Handshake digest [20 octets]
  329. (If the RP does not recognize the RC, it discards the cell and
  330. tears down the circuit.)
  331. When Alice's OP receives a RELAY_RENDEZVOUS2 cell on a circuit which
  332. has sent a RELAY_ESTABLISH_RENDEZVOUS cell but which has not yet received
  333. a reply, it uses g^y and H(g^xy) to complete the handshake as in the Tor
  334. circuit extend process: they establish a 60-octet string as
  335. K = SHA1(g^xy | [00]) | SHA1(g^xy | [01]) | SHA1(g^xy | [02])
  336. and generate
  337. KH = K[0..15]
  338. Kf = K[16..31]
  339. Kb = K[32..47]
  340. Subsequently, the rendezvous point passes relay cells, unchanged, from
  341. each of the two circuits to the other. When Alice's OP sends
  342. RELAY cells along the circuit, it first encrypts them with the
  343. Kf, then with all of the keys for the ORs in Alice's side of the circuit;
  344. and when Alice's OP receives RELAY cells from the circuit, it decrypts
  345. them with the keys for the ORs in Alice's side of the circuit, then
  346. decrypts them with Kb. Bob's OP does the same, with Kf and Kb
  347. interchanged.
  348. 1.11. Creating streams
  349. To open TCP connections to Bob's location-hidden service, Alice's OP sends
  350. a RELAY_BEGIN cell along the established circuit, using the special
  351. address "", and a chosen port. Bob's OP chooses a destination IP and
  352. port, based on the configuration of the service connected to the circuit,
  353. and opens a TCP stream. From then on, Bob's OP treats the stream as an
  354. ordinary exit connection.
  355. [ Except he doesn't include addr in the connected cell or the end
  356. cell. -RD]
  357. Alice MAY send multiple RELAY_BEGIN cells along the circuit, to open
  358. multiple streams to Bob. Alice SHOULD NOT send RELAY_BEGIN cells for any
  359. other address along her circuit to Bob; if she does, Bob MUST reject them.
  360. 2. Authentication and authorization.
  361. Foo.