rendmid.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2016, 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 %u",
  32. (unsigned) circ->p_circ_id);
  33. if (circ->base_.purpose != CIRCUIT_PURPOSE_OR || circ->base_.n_chan) {
  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 rend_circ_nonce | "INTRODUCE" */
  53. memcpy(buf, circ->rend_circ_nonce, 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 the service'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 = hs_circuitmap_get_intro_circ_v2((const uint8_t *)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_no_close;
  98. }
  99. /* Now, set up this circuit. */
  100. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_INTRO_POINT);
  101. hs_circuitmap_register_intro_circ_v2(circ, (uint8_t *)pk_digest);
  102. log_info(LD_REND,
  103. "Established introduction point on circuit %u for service %s",
  104. (unsigned) 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. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  111. err_no_close:
  112. if (pk) crypto_pk_free(pk);
  113. return -1;
  114. }
  115. /** Process an INTRODUCE1 cell by finding the corresponding introduction
  116. * circuit, and relaying the body of the INTRODUCE1 cell inside an
  117. * INTRODUCE2 cell.
  118. */
  119. int
  120. rend_mid_introduce(or_circuit_t *circ, const uint8_t *request,
  121. size_t request_len)
  122. {
  123. or_circuit_t *intro_circ;
  124. char serviceid[REND_SERVICE_ID_LEN_BASE32+1];
  125. char nak_body[1];
  126. log_info(LD_REND, "Received an INTRODUCE1 request on circuit %u",
  127. (unsigned)circ->p_circ_id);
  128. if (circ->base_.purpose != CIRCUIT_PURPOSE_OR || circ->base_.n_chan) {
  129. log_warn(LD_PROTOCOL,
  130. "Rejecting INTRODUCE1 on non-OR or non-edge circuit %u.",
  131. (unsigned)circ->p_circ_id);
  132. goto err;
  133. }
  134. /* We have already done an introduction on this circuit but we just
  135. received a request for another one. We block it since this might
  136. be an attempt to DoS a hidden service (#15515). */
  137. if (circ->already_received_introduce1) {
  138. log_fn(LOG_PROTOCOL_WARN, LD_REND,
  139. "Blocking multiple introductions on the same circuit. "
  140. "Someone might be trying to attack a hidden service through "
  141. "this relay.");
  142. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_TORPROTOCOL);
  143. return -1;
  144. }
  145. circ->already_received_introduce1 = 1;
  146. /* We could change this to MAX_HEX_NICKNAME_LEN now that 0.0.9.x is
  147. * obsolete; however, there isn't much reason to do so, and we're going
  148. * to revise this protocol anyway.
  149. */
  150. if (request_len < (DIGEST_LEN+(MAX_NICKNAME_LEN+1)+REND_COOKIE_LEN+
  151. DH_KEY_LEN+CIPHER_KEY_LEN+PKCS1_OAEP_PADDING_OVERHEAD)) {
  152. log_warn(LD_PROTOCOL, "Impossibly short INTRODUCE1 cell on circuit %u; "
  153. "responding with nack.",
  154. (unsigned)circ->p_circ_id);
  155. goto err;
  156. }
  157. base32_encode(serviceid, REND_SERVICE_ID_LEN_BASE32+1,
  158. (char*)request, REND_SERVICE_ID_LEN);
  159. /* The first 20 bytes are all we look at: they have a hash of the service's
  160. * PK. */
  161. intro_circ = hs_circuitmap_get_intro_circ_v2((const uint8_t*)request);
  162. if (!intro_circ) {
  163. log_info(LD_REND,
  164. "No intro circ found for INTRODUCE1 cell (%s) from circuit %u; "
  165. "responding with nack.",
  166. safe_str(serviceid), (unsigned)circ->p_circ_id);
  167. goto err;
  168. }
  169. log_info(LD_REND,
  170. "Sending introduction request for service %s "
  171. "from circ %u to circ %u",
  172. safe_str(serviceid), (unsigned)circ->p_circ_id,
  173. (unsigned)intro_circ->p_circ_id);
  174. /* Great. Now we just relay the cell down the circuit. */
  175. if (relay_send_command_from_edge(0, TO_CIRCUIT(intro_circ),
  176. RELAY_COMMAND_INTRODUCE2,
  177. (char*)request, request_len, NULL)) {
  178. log_warn(LD_GENERAL,
  179. "Unable to send INTRODUCE2 cell to Tor client.");
  180. /* Stop right now, the circuit has been closed. */
  181. return -1;
  182. }
  183. /* And send an ack down the client's circuit. Empty body means succeeded. */
  184. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  185. RELAY_COMMAND_INTRODUCE_ACK,
  186. NULL,0,NULL)) {
  187. log_warn(LD_GENERAL, "Unable to send INTRODUCE_ACK cell to Tor client.");
  188. /* Stop right now, the circuit has been closed. */
  189. return -1;
  190. }
  191. return 0;
  192. err:
  193. /* Send the client a NACK */
  194. nak_body[0] = 1;
  195. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  196. RELAY_COMMAND_INTRODUCE_ACK,
  197. nak_body, 1, NULL)) {
  198. log_warn(LD_GENERAL, "Unable to send NAK to Tor client.");
  199. }
  200. return -1;
  201. }
  202. /** Process an ESTABLISH_RENDEZVOUS cell by setting the circuit's purpose and
  203. * rendezvous cookie.
  204. */
  205. int
  206. rend_mid_establish_rendezvous(or_circuit_t *circ, const uint8_t *request,
  207. size_t request_len)
  208. {
  209. char hexid[9];
  210. int reason = END_CIRC_REASON_TORPROTOCOL;
  211. log_info(LD_REND, "Received an ESTABLISH_RENDEZVOUS request on circuit %u",
  212. (unsigned)circ->p_circ_id);
  213. if (circ->base_.purpose != CIRCUIT_PURPOSE_OR) {
  214. log_warn(LD_PROTOCOL,
  215. "Tried to establish rendezvous on non-OR circuit with purpose %s",
  216. circuit_purpose_to_string(circ->base_.purpose));
  217. goto err;
  218. }
  219. if (circ->base_.n_chan) {
  220. log_warn(LD_PROTOCOL,
  221. "Tried to establish rendezvous on non-edge circuit");
  222. goto err;
  223. }
  224. if (request_len != REND_COOKIE_LEN) {
  225. log_fn(LOG_PROTOCOL_WARN,
  226. LD_PROTOCOL, "Invalid length on ESTABLISH_RENDEZVOUS.");
  227. goto err;
  228. }
  229. if (hs_circuitmap_get_rend_circ(request)) {
  230. log_warn(LD_PROTOCOL,
  231. "Duplicate rendezvous cookie in ESTABLISH_RENDEZVOUS.");
  232. goto err;
  233. }
  234. /* Acknowledge the request. */
  235. if (relay_send_command_from_edge(0,TO_CIRCUIT(circ),
  236. RELAY_COMMAND_RENDEZVOUS_ESTABLISHED,
  237. "", 0, NULL)<0) {
  238. log_warn(LD_PROTOCOL, "Couldn't send RENDEZVOUS_ESTABLISHED cell.");
  239. /* Stop right now, the circuit has been closed. */
  240. return -1;
  241. }
  242. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_REND_POINT_WAITING);
  243. hs_circuitmap_register_rend_circ(circ, request);
  244. base16_encode(hexid,9,(char*)request,4);
  245. log_info(LD_REND,
  246. "Established rendezvous point on circuit %u for cookie %s",
  247. (unsigned)circ->p_circ_id, hexid);
  248. return 0;
  249. err:
  250. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  251. return -1;
  252. }
  253. /** Process a RENDEZVOUS1 cell by looking up the correct rendezvous
  254. * circuit by its relaying the cell's body in a RENDEZVOUS2 cell, and
  255. * connecting the two circuits.
  256. */
  257. int
  258. rend_mid_rendezvous(or_circuit_t *circ, const uint8_t *request,
  259. size_t request_len)
  260. {
  261. const or_options_t *options = get_options();
  262. or_circuit_t *rend_circ;
  263. char hexid[9];
  264. int reason = END_CIRC_REASON_INTERNAL;
  265. if (circ->base_.purpose != CIRCUIT_PURPOSE_OR || circ->base_.n_chan) {
  266. log_info(LD_REND,
  267. "Tried to complete rendezvous on non-OR or non-edge circuit %u.",
  268. (unsigned)circ->p_circ_id);
  269. reason = END_CIRC_REASON_TORPROTOCOL;
  270. goto err;
  271. }
  272. if (request_len < REND_COOKIE_LEN) {
  273. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  274. "Rejecting RENDEZVOUS1 cell with bad length (%d) on circuit %u.",
  275. (int)request_len, (unsigned)circ->p_circ_id);
  276. reason = END_CIRC_REASON_TORPROTOCOL;
  277. goto err;
  278. }
  279. base16_encode(hexid, sizeof(hexid), (const char*)request, 4);
  280. log_info(LD_REND,
  281. "Got request for rendezvous from circuit %u to cookie %s.",
  282. (unsigned)circ->p_circ_id, hexid);
  283. rend_circ = hs_circuitmap_get_rend_circ(request);
  284. if (!rend_circ) {
  285. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  286. "Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie %s.",
  287. hexid);
  288. reason = END_CIRC_REASON_TORPROTOCOL;
  289. goto err;
  290. }
  291. /* Statistics: Mark this circuit as an RP circuit so that we collect
  292. stats from it. */
  293. if (options->HiddenServiceStatistics) {
  294. circ->circuit_carries_hs_traffic_stats = 1;
  295. }
  296. /* Send the RENDEZVOUS2 cell to the client. */
  297. if (relay_send_command_from_edge(0, TO_CIRCUIT(rend_circ),
  298. RELAY_COMMAND_RENDEZVOUS2,
  299. (char*)(request+REND_COOKIE_LEN),
  300. request_len-REND_COOKIE_LEN, NULL)) {
  301. log_warn(LD_GENERAL,
  302. "Unable to send RENDEZVOUS2 cell to client on circuit %u.",
  303. (unsigned)rend_circ->p_circ_id);
  304. /* Stop right now, the circuit has been closed. */
  305. return -1;
  306. }
  307. /* Join the circuits. */
  308. log_info(LD_REND,
  309. "Completing rendezvous: circuit %u joins circuit %u (cookie %s)",
  310. (unsigned)circ->p_circ_id, (unsigned)rend_circ->p_circ_id, hexid);
  311. circuit_change_purpose(TO_CIRCUIT(circ), CIRCUIT_PURPOSE_REND_ESTABLISHED);
  312. circuit_change_purpose(TO_CIRCUIT(rend_circ),
  313. CIRCUIT_PURPOSE_REND_ESTABLISHED);
  314. hs_circuitmap_remove_circuit(circ);
  315. rend_circ->rend_splice = circ;
  316. circ->rend_splice = rend_circ;
  317. return 0;
  318. err:
  319. circuit_mark_for_close(TO_CIRCUIT(circ), reason);
  320. return -1;
  321. }