rendmid.c 11 KB

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