rendmid.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2012, The Tor Project, Inc. */
  3. /* See LICENSE for licensing information */
  4. /**
  5. * \file rendmid.c
  6. * \brief Implement introductions points and rendezvous points.
  7. **/
  8. #include "or.h"
  9. #include "circuitlist.h"
  10. #include "circuituse.h"
  11. #include "config.h"
  12. #include "relay.h"
  13. #include "rendmid.h"
  14. #include "rephist.h"
  15. /** Respond to an ESTABLISH_INTRO cell by checking the signed data and
  16. * setting the circuit's purpose and service pk digest.
  17. */
  18. int
  19. rend_mid_establish_intro(or_circuit_t *circ, const uint8_t *request,
  20. size_t request_len)
  21. {
  22. crypto_pk_t *pk = NULL;
  23. char buf[DIGEST_LEN+9];
  24. char expected_digest[DIGEST_LEN];
  25. char pk_digest[DIGEST_LEN];
  26. size_t asn1len;
  27. or_circuit_t *c;
  28. char serviceid[REND_SERVICE_ID_LEN_BASE32+1];
  29. int reason = END_CIRC_REASON_INTERNAL;
  30. log_info(LD_REND,
  31. "Received an ESTABLISH_INTRO request on circuit %d",
  32. circ->p_circ_id);
  33. if (circ->_base.purpose != CIRCUIT_PURPOSE_OR || circ->_base.n_conn) {
  34. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  35. "Rejecting ESTABLISH_INTRO on non-OR or non-edge circuit.");
  36. reason = END_CIRC_REASON_TORPROTOCOL;
  37. goto err;
  38. }
  39. if (request_len < 2+DIGEST_LEN)
  40. goto truncated;
  41. /* First 2 bytes: length of asn1-encoded key. */
  42. asn1len = ntohs(get_uint16(request));
  43. /* Next asn1len bytes: asn1-encoded key. */
  44. if (request_len < 2+DIGEST_LEN+asn1len)
  45. goto truncated;
  46. pk = crypto_pk_asn1_decode((char*)(request+2), asn1len);
  47. if (!pk) {
  48. reason = END_CIRC_REASON_TORPROTOCOL;
  49. log_warn(LD_PROTOCOL, "Couldn't decode public key.");
  50. goto err;
  51. }
  52. /* Next 20 bytes: Hash of handshake_digest | "INTRODUCE" */
  53. memcpy(buf, circ->handshake_digest, DIGEST_LEN);
  54. memcpy(buf+DIGEST_LEN, "INTRODUCE", 9);
  55. if (crypto_digest(expected_digest, buf, DIGEST_LEN+9) < 0) {
  56. log_warn(LD_BUG, "Internal error computing digest.");
  57. goto err;
  58. }
  59. if (tor_memneq(expected_digest, request+2+asn1len, DIGEST_LEN)) {
  60. log_warn(LD_PROTOCOL, "Hash of session info was not as expected.");
  61. reason = END_CIRC_REASON_TORPROTOCOL;
  62. goto err;
  63. }
  64. /* Rest of body: signature of previous data */
  65. note_crypto_pk_op(REND_MID);
  66. if (crypto_pk_public_checksig_digest(pk,
  67. (char*)request, 2+asn1len+DIGEST_LEN,
  68. (char*)(request+2+DIGEST_LEN+asn1len),
  69. request_len-(2+DIGEST_LEN+asn1len))<0) {
  70. log_warn(LD_PROTOCOL,
  71. "Incorrect signature on ESTABLISH_INTRO cell; rejecting.");
  72. reason = END_CIRC_REASON_TORPROTOCOL;
  73. goto err;
  74. }
  75. /* The request is valid. First, compute the hash of Bob's PK.*/
  76. if (crypto_pk_get_digest(pk, pk_digest)<0) {
  77. log_warn(LD_BUG, "Internal error: couldn't hash public key.");
  78. goto err;
  79. }
  80. crypto_pk_free(pk); /* don't need it anymore */
  81. pk = NULL; /* so we don't free it again if err */
  82. base32_encode(serviceid, REND_SERVICE_ID_LEN_BASE32+1,
  83. pk_digest, REND_SERVICE_ID_LEN);
  84. /* Close any other intro circuits with the same pk. */
  85. c = NULL;
  86. while ((c = circuit_get_intro_point(pk_digest))) {
  87. log_info(LD_REND, "Replacing old circuit for service %s",
  88. safe_str(serviceid));
  89. circuit_mark_for_close(TO_CIRCUIT(c), END_CIRC_REASON_FINISHED);
  90. /* Now it's marked, and it won't be returned next time. */
  91. }
  92. /* Acknowledge the request. */
  93. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  94. RELAY_COMMAND_INTRO_ESTABLISHED,
  95. "", 0, NULL)<0) {
  96. log_info(LD_GENERAL, "Couldn't send INTRO_ESTABLISHED cell.");
  97. goto err;
  98. }
  99. /* Now, set up this circuit. */
  100. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_INTRO_POINT);
  101. memcpy(circ->rend_token, pk_digest, DIGEST_LEN);
  102. log_info(LD_REND,
  103. "Established introduction point on circuit %d for service %s",
  104. circ->p_circ_id, safe_str(serviceid));
  105. return 0;
  106. truncated:
  107. log_warn(LD_PROTOCOL, "Rejecting truncated ESTABLISH_INTRO cell.");
  108. reason = END_CIRC_REASON_TORPROTOCOL;
  109. err:
  110. if (pk) crypto_pk_free(pk);
  111. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  112. return -1;
  113. }
  114. /** Process an INTRODUCE1 cell by finding the corresponding introduction
  115. * circuit, and relaying the body of the INTRODUCE1 cell inside an
  116. * INTRODUCE2 cell.
  117. */
  118. int
  119. rend_mid_introduce(or_circuit_t *circ, const uint8_t *request,
  120. size_t request_len)
  121. {
  122. or_circuit_t *intro_circ;
  123. char serviceid[REND_SERVICE_ID_LEN_BASE32+1];
  124. char nak_body[1];
  125. log_info(LD_REND, "Received an INTRODUCE1 request on circuit %d",
  126. circ->p_circ_id);
  127. if (circ->_base.purpose != CIRCUIT_PURPOSE_OR || circ->_base.n_conn) {
  128. log_warn(LD_PROTOCOL,
  129. "Rejecting INTRODUCE1 on non-OR or non-edge circuit %d.",
  130. circ->p_circ_id);
  131. goto err;
  132. }
  133. /* We could change this to MAX_HEX_NICKNAME_LEN now that 0.0.9.x is
  134. * obsolete; however, there isn't much reason to do so, and we're going
  135. * to revise this protocol anyway.
  136. */
  137. if (request_len < (DIGEST_LEN+(MAX_NICKNAME_LEN+1)+REND_COOKIE_LEN+
  138. DH_KEY_LEN+CIPHER_KEY_LEN+PKCS1_OAEP_PADDING_OVERHEAD)) {
  139. log_warn(LD_PROTOCOL, "Impossibly short INTRODUCE1 cell on circuit %d; "
  140. "responding with nack.",
  141. circ->p_circ_id);
  142. goto err;
  143. }
  144. base32_encode(serviceid, REND_SERVICE_ID_LEN_BASE32+1,
  145. (char*)request, REND_SERVICE_ID_LEN);
  146. /* The first 20 bytes are all we look at: they have a hash of Bob's PK. */
  147. intro_circ = circuit_get_intro_point((char*)request);
  148. if (!intro_circ) {
  149. log_info(LD_REND,
  150. "No intro circ found for INTRODUCE1 cell (%s) from circuit %d; "
  151. "responding with nack.",
  152. safe_str(serviceid), circ->p_circ_id);
  153. goto err;
  154. }
  155. log_info(LD_REND,
  156. "Sending introduction request for service %s "
  157. "from circ %d to circ %d",
  158. safe_str(serviceid), circ->p_circ_id,
  159. intro_circ->p_circ_id);
  160. /* Great. Now we just relay the cell down the circuit. */
  161. if (relay_send_command_from_edge(0, TO_CIRCUIT(intro_circ),
  162. RELAY_COMMAND_INTRODUCE2,
  163. (char*)request, request_len, NULL)) {
  164. log_warn(LD_GENERAL,
  165. "Unable to send INTRODUCE2 cell to Tor client.");
  166. goto err;
  167. }
  168. /* And sent an ack down Alice's circuit. Empty body means succeeded. */
  169. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  170. RELAY_COMMAND_INTRODUCE_ACK,
  171. NULL,0,NULL)) {
  172. log_warn(LD_GENERAL, "Unable to send INTRODUCE_ACK cell to Tor client.");
  173. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
  174. return -1;
  175. }
  176. return 0;
  177. err:
  178. /* Send the client an NACK */
  179. nak_body[0] = 1;
  180. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  181. RELAY_COMMAND_INTRODUCE_ACK,
  182. nak_body, 1, NULL)) {
  183. log_warn(LD_GENERAL, "Unable to send NAK to Tor client.");
  184. /* Is this right? */
  185. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
  186. }
  187. return -1;
  188. }
  189. /** Process an ESTABLISH_RENDEZVOUS cell by setting the circuit's purpose and
  190. * rendezvous cookie.
  191. */
  192. int
  193. rend_mid_establish_rendezvous(or_circuit_t *circ, const uint8_t *request,
  194. size_t request_len)
  195. {
  196. char hexid[9];
  197. int reason = END_CIRC_REASON_TORPROTOCOL;
  198. log_info(LD_REND, "Received an ESTABLISH_RENDEZVOUS request on circuit %d",
  199. circ->p_circ_id);
  200. if (circ->_base.purpose != CIRCUIT_PURPOSE_OR || circ->_base.n_conn) {
  201. log_warn(LD_PROTOCOL,
  202. "Tried to establish rendezvous on non-OR or non-edge circuit.");
  203. goto err;
  204. }
  205. if (request_len != REND_COOKIE_LEN) {
  206. log_warn(LD_PROTOCOL, "Invalid length on ESTABLISH_RENDEZVOUS.");
  207. goto err;
  208. }
  209. if (circuit_get_rendezvous((char*)request)) {
  210. log_warn(LD_PROTOCOL,
  211. "Duplicate rendezvous cookie in ESTABLISH_RENDEZVOUS.");
  212. goto err;
  213. }
  214. /* Acknowledge the request. */
  215. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  216. RELAY_COMMAND_RENDEZVOUS_ESTABLISHED,
  217. "", 0, NULL)<0) {
  218. log_warn(LD_PROTOCOL, "Couldn't send RENDEZVOUS_ESTABLISHED cell.");
  219. reason = END_CIRC_REASON_INTERNAL;
  220. goto err;
  221. }
  222. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_REND_POINT_WAITING);
  223. memcpy(circ->rend_token, request, REND_COOKIE_LEN);
  224. base16_encode(hexid,9,(char*)request,4);
  225. log_info(LD_REND,
  226. "Established rendezvous point on circuit %d for cookie %s",
  227. circ->p_circ_id, hexid);
  228. return 0;
  229. err:
  230. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  231. return -1;
  232. }
  233. /** Process a RENDEZVOUS1 cell by looking up the correct rendezvous
  234. * circuit by its relaying the cell's body in a RENDEZVOUS2 cell, and
  235. * connecting the two circuits.
  236. */
  237. int
  238. rend_mid_rendezvous(or_circuit_t *circ, const uint8_t *request,
  239. size_t request_len)
  240. {
  241. or_circuit_t *rend_circ;
  242. char hexid[9];
  243. int reason = END_CIRC_REASON_INTERNAL;
  244. if (circ->_base.purpose != CIRCUIT_PURPOSE_OR || circ->_base.n_conn) {
  245. log_info(LD_REND,
  246. "Tried to complete rendezvous on non-OR or non-edge circuit %d.",
  247. circ->p_circ_id);
  248. reason = END_CIRC_REASON_TORPROTOCOL;
  249. goto err;
  250. }
  251. if (request_len != REND_COOKIE_LEN+DH_KEY_LEN+DIGEST_LEN) {
  252. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  253. "Rejecting RENDEZVOUS1 cell with bad length (%d) on circuit %d.",
  254. (int)request_len, circ->p_circ_id);
  255. reason = END_CIRC_REASON_TORPROTOCOL;
  256. goto err;
  257. }
  258. base16_encode(hexid, sizeof(hexid), (const char*)request, 4);
  259. log_info(LD_REND,
  260. "Got request for rendezvous from circuit %d to cookie %s.",
  261. circ->p_circ_id, hexid);
  262. rend_circ = circuit_get_rendezvous((char*)request);
  263. if (!rend_circ) {
  264. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  265. "Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie %s.",
  266. hexid);
  267. reason = END_CIRC_REASON_TORPROTOCOL;
  268. goto err;
  269. }
  270. /* Send the RENDEZVOUS2 cell to Alice. */
  271. if (relay_send_command_from_edge(0, TO_CIRCUIT(rend_circ),
  272. RELAY_COMMAND_RENDEZVOUS2,
  273. (char*)(request+REND_COOKIE_LEN),
  274. request_len-REND_COOKIE_LEN, NULL)) {
  275. log_warn(LD_GENERAL,
  276. "Unable to send RENDEZVOUS2 cell to client on circuit %d.",
  277. rend_circ->p_circ_id);
  278. goto err;
  279. }
  280. /* Join the circuits. */
  281. log_info(LD_REND,
  282. "Completing rendezvous: circuit %d joins circuit %d (cookie %s)",
  283. circ->p_circ_id, rend_circ->p_circ_id, hexid);
  284. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_REND_ESTABLISHED);
  285. circuit_change_purpose(TO_CIRCUIT(rend_circ),
  286. CIRCUIT_PURPOSE_REND_ESTABLISHED);
  287. memset(circ->rend_token, 0, REND_COOKIE_LEN);
  288. rend_circ->rend_splice = circ;
  289. circ->rend_splice = rend_circ;
  290. return 0;
  291. err:
  292. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  293. return -1;
  294. }