command.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char command_c_id[] =
  7. "$Id$";
  8. /**
  9. * \file command.c
  10. * \brief Functions for processing incoming cells.
  11. **/
  12. /* In-points to command.c:
  13. *
  14. * - command_process_cell(), called from
  15. * connection_or_process_cells_from_inbuf() in connection_or.c
  16. */
  17. #include "or.h"
  18. /** Keep statistics about how many of each type of cell we've received. */
  19. uint64_t stats_n_padding_cells_processed = 0;
  20. uint64_t stats_n_create_cells_processed = 0;
  21. uint64_t stats_n_created_cells_processed = 0;
  22. uint64_t stats_n_relay_cells_processed = 0;
  23. uint64_t stats_n_destroy_cells_processed = 0;
  24. uint64_t stats_n_versions_cells_processed = 0;
  25. uint64_t stats_n_netinfo_cells_processed = 0;
  26. uint64_t stats_n_cert_cells_processed = 0;
  27. uint64_t stats_n_link_auth_cells_processed = 0;
  28. /* These are the main functions for processing cells */
  29. static void command_process_create_cell(cell_t *cell, or_connection_t *conn);
  30. static void command_process_created_cell(cell_t *cell, or_connection_t *conn);
  31. static void command_process_relay_cell(cell_t *cell, or_connection_t *conn);
  32. static void command_process_destroy_cell(cell_t *cell, or_connection_t *conn);
  33. static void command_process_versions_cell(var_cell_t *cell,
  34. or_connection_t *conn);
  35. static void command_process_netinfo_cell(cell_t *cell, or_connection_t *conn);
  36. static void command_process_cert_cell(var_cell_t *cell, or_connection_t *conn);
  37. static void command_process_link_auth_cell(cell_t *cell,or_connection_t *conn);
  38. #ifdef KEEP_TIMING_STATS
  39. /** This is a wrapper function around the actual function that processes the
  40. * <b>cell</b> that just arrived on <b>conn</b>. Increment <b>*time</b>
  41. * by the number of microseconds used by the call to <b>*func(cell, conn)</b>.
  42. */
  43. static void
  44. command_time_process_cell(cell_t *cell, or_connection_t *conn, int *time,
  45. void (*func)(cell_t *, or_connection_t *))
  46. {
  47. struct timeval start, end;
  48. long time_passed;
  49. tor_gettimeofday(&start);
  50. (*func)(cell, conn);
  51. tor_gettimeofday(&end);
  52. time_passed = tv_udiff(&start, &end) ;
  53. if (time_passed > 10000) { /* more than 10ms */
  54. log_debug(LD_OR,"That call just took %ld ms.",time_passed/1000);
  55. }
  56. if (time_passed < 0) {
  57. log_info(LD_GENERAL,"That call took us back in time!");
  58. time_passed = 0;
  59. }
  60. *time += time_passed;
  61. }
  62. #endif
  63. /** Process a <b>cell</b> that was just received on <b>conn</b>. Keep internal
  64. * statistics about how many of each cell we've processed so far
  65. * this second, and the total number of microseconds it took to
  66. * process each type of cell.
  67. */
  68. void
  69. command_process_cell(cell_t *cell, or_connection_t *conn)
  70. {
  71. #ifdef KEEP_TIMING_STATS
  72. /* how many of each cell have we seen so far this second? needs better
  73. * name. */
  74. static int num_create=0, num_created=0, num_relay=0, num_destroy=0;
  75. /* how long has it taken to process each type of cell? */
  76. static int create_time=0, created_time=0, relay_time=0, destroy_time=0;
  77. static time_t current_second = 0; /* from previous calls to time */
  78. time_t now = time(NULL);
  79. if (now > current_second) { /* the second has rolled over */
  80. /* print stats */
  81. log_info(LD_OR,
  82. "At end of second: %d creates (%d ms), %d createds (%d ms), "
  83. "%d relays (%d ms), %d destroys (%d ms)",
  84. num_create, create_time/1000,
  85. num_created, created_time/1000,
  86. num_relay, relay_time/1000,
  87. num_destroy, destroy_time/1000);
  88. /* zero out stats */
  89. num_create = num_created = num_relay = num_destroy = 0;
  90. create_time = created_time = relay_time = destroy_time = 0;
  91. /* remember which second it is, for next time */
  92. current_second = now;
  93. }
  94. #endif
  95. #ifdef KEEP_TIMING_STATS
  96. #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \
  97. ++num ## tp; \
  98. command_time_process_cell(cl, cn, & tp ## time , \
  99. command_process_ ## tp ## _cell); \
  100. } STMT_END
  101. #else
  102. #define PROCESS_CELL(tp, cl, cn) command_process_ ## tp ## _cell(cl, cn)
  103. #endif
  104. /*XXXX020 reject all but VERSIONS, NETINFO, CERT, LINK_AUTH when
  105. * handshaking. */
  106. switch (cell->command) {
  107. case CELL_PADDING:
  108. ++stats_n_padding_cells_processed;
  109. /* do nothing */
  110. break;
  111. case CELL_CREATE:
  112. case CELL_CREATE_FAST:
  113. ++stats_n_create_cells_processed;
  114. PROCESS_CELL(create, cell, conn);
  115. break;
  116. case CELL_CREATED:
  117. case CELL_CREATED_FAST:
  118. ++stats_n_created_cells_processed;
  119. PROCESS_CELL(created, cell, conn);
  120. break;
  121. case CELL_RELAY:
  122. ++stats_n_relay_cells_processed;
  123. PROCESS_CELL(relay, cell, conn);
  124. break;
  125. case CELL_DESTROY:
  126. ++stats_n_destroy_cells_processed;
  127. PROCESS_CELL(destroy, cell, conn);
  128. break;
  129. case CELL_VERSIONS:
  130. tor_fragile_assert();
  131. break;
  132. case CELL_NETINFO:
  133. ++stats_n_netinfo_cells_processed;
  134. PROCESS_CELL(netinfo, cell, conn);
  135. break;
  136. case CELL_CERT:
  137. tor_fragile_assert();
  138. break;
  139. case CELL_LINK_AUTH:
  140. ++stats_n_link_auth_cells_processed;
  141. PROCESS_CELL(link_auth, cell, conn);
  142. break;
  143. default:
  144. log_fn(LOG_INFO, LD_PROTOCOL,
  145. "Cell of unknown type (%d) received. Dropping.", cell->command);
  146. break;
  147. }
  148. }
  149. /** Process a <b>cell</b> that was just received on <b>conn</b>. Keep internal
  150. * statistics about how many of each cell we've processed so far
  151. * this second, and the total number of microseconds it took to
  152. * process each type of cell.
  153. */
  154. void
  155. command_process_var_cell(var_cell_t *cell, or_connection_t *conn)
  156. {
  157. #ifdef KEEP_TIMING_STATS
  158. /* how many of each cell have we seen so far this second? needs better
  159. * name. */
  160. static int num_versions=0, num_cert=0;
  161. time_t now = time(NULL);
  162. if (now > current_second) { /* the second has rolled over */
  163. /* print stats */
  164. log_info(LD_OR,
  165. "At end of second: %d versions (%d ms), %d cert (%d ms)",
  166. num_versions, versions_time/1000,
  167. cert, cert_time/1000);
  168. num_versions = num_cert = 0;
  169. versions_time = cert_time = 0;
  170. /* remember which second it is, for next time */
  171. current_second = now;
  172. }
  173. #endif
  174. /*XXXX020 reject all when not handshaking. */
  175. switch (cell->command) {
  176. case CELL_VERSIONS:
  177. ++stats_n_versions_cells_processed;
  178. PROCESS_CELL(versions, cell, conn);
  179. break;
  180. case CELL_CERT:
  181. ++stats_n_cert_cells_processed;
  182. PROCESS_CELL(cert, cell, conn);
  183. break;
  184. default:
  185. log_warn(LD_BUG,
  186. "Variable-length cell of unknown type (%d) received.",
  187. cell->command);
  188. tor_fragile_assert();
  189. break;
  190. }
  191. }
  192. /** Process a 'create' <b>cell</b> that just arrived from <b>conn</b>. Make a
  193. * new circuit with the p_circ_id specified in cell. Put the circuit in state
  194. * onionskin_pending, and pass the onionskin to the cpuworker. Circ will get
  195. * picked up again when the cpuworker finishes decrypting it.
  196. */
  197. static void
  198. command_process_create_cell(cell_t *cell, or_connection_t *conn)
  199. {
  200. or_circuit_t *circ;
  201. int id_is_high;
  202. if (we_are_hibernating()) {
  203. log_info(LD_OR,
  204. "Received create cell but we're shutting down. Sending back "
  205. "destroy.");
  206. connection_or_send_destroy(cell->circ_id, conn,
  207. END_CIRC_REASON_HIBERNATING);
  208. return;
  209. }
  210. if (!server_mode(get_options())) {
  211. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  212. "Received create cell (type %d) from %s:%d, but we're a client. "
  213. "Sending back a destroy.",
  214. (int)cell->command, conn->_base.address, conn->_base.port);
  215. connection_or_send_destroy(cell->circ_id, conn,
  216. END_CIRC_REASON_TORPROTOCOL);
  217. return;
  218. }
  219. /* If the high bit of the circuit ID is not as expected, close the
  220. * circ. */
  221. id_is_high = cell->circ_id & (1<<15);
  222. if ((id_is_high && conn->circ_id_type == CIRC_ID_TYPE_HIGHER) ||
  223. (!id_is_high && conn->circ_id_type == CIRC_ID_TYPE_LOWER)) {
  224. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  225. "Received create cell with unexpected circ_id %d. Closing.",
  226. cell->circ_id);
  227. connection_or_send_destroy(cell->circ_id, conn,
  228. END_CIRC_REASON_TORPROTOCOL);
  229. return;
  230. }
  231. if (circuit_get_by_circid_orconn(cell->circ_id, conn)) {
  232. routerinfo_t *router = router_get_by_digest(conn->identity_digest);
  233. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  234. "Received CREATE cell (circID %d) for known circ. "
  235. "Dropping (age %d).",
  236. cell->circ_id, (int)(time(NULL) - conn->_base.timestamp_created));
  237. if (router)
  238. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  239. "Details: nickname \"%s\", platform %s.",
  240. router->nickname, escaped(router->platform));
  241. return;
  242. }
  243. circ = or_circuit_new(cell->circ_id, conn);
  244. circ->_base.purpose = CIRCUIT_PURPOSE_OR;
  245. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_ONIONSKIN_PENDING);
  246. if (cell->command == CELL_CREATE) {
  247. circ->_base.onionskin = tor_malloc(ONIONSKIN_CHALLENGE_LEN);
  248. memcpy(circ->_base.onionskin, cell->payload, ONIONSKIN_CHALLENGE_LEN);
  249. /* hand it off to the cpuworkers, and then return. */
  250. if (assign_to_cpuworker(NULL, CPUWORKER_TASK_ONION, circ) < 0) {
  251. log_warn(LD_GENERAL,"Failed to hand off onionskin. Closing.");
  252. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
  253. return;
  254. }
  255. log_debug(LD_OR,"success: handed off onionskin.");
  256. } else {
  257. /* This is a CREATE_FAST cell; we can handle it immediately without using
  258. * a CPU worker. */
  259. char keys[CPATH_KEY_MATERIAL_LEN];
  260. char reply[DIGEST_LEN*2];
  261. tor_assert(cell->command == CELL_CREATE_FAST);
  262. if (fast_server_handshake(cell->payload, reply, keys, sizeof(keys))<0) {
  263. log_warn(LD_OR,"Failed to generate key material. Closing.");
  264. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
  265. return;
  266. }
  267. if (onionskin_answer(circ, CELL_CREATED_FAST, reply, keys)<0) {
  268. log_warn(LD_OR,"Failed to reply to CREATE_FAST cell. Closing.");
  269. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
  270. return;
  271. }
  272. }
  273. }
  274. /** Process a 'created' <b>cell</b> that just arrived from <b>conn</b>.
  275. * Find the circuit
  276. * that it's intended for. If we're not the origin of the circuit, package
  277. * the 'created' cell in an 'extended' relay cell and pass it back. If we
  278. * are the origin of the circuit, send it to circuit_finish_handshake() to
  279. * finish processing keys, and then call circuit_send_next_onion_skin() to
  280. * extend to the next hop in the circuit if necessary.
  281. */
  282. static void
  283. command_process_created_cell(cell_t *cell, or_connection_t *conn)
  284. {
  285. circuit_t *circ;
  286. circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
  287. if (!circ) {
  288. log_info(LD_OR,
  289. "(circID %d) unknown circ (probably got a destroy earlier). "
  290. "Dropping.", cell->circ_id);
  291. return;
  292. }
  293. if (circ->n_circ_id != cell->circ_id) {
  294. log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,
  295. "got created cell from Tor client? Closing.");
  296. circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
  297. return;
  298. }
  299. if (CIRCUIT_IS_ORIGIN(circ)) { /* we're the OP. Handshake this. */
  300. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  301. int err_reason = 0;
  302. log_debug(LD_OR,"at OP. Finishing handshake.");
  303. if ((err_reason = circuit_finish_handshake(origin_circ, cell->command,
  304. cell->payload)) < 0) {
  305. log_warn(LD_OR,"circuit_finish_handshake failed.");
  306. circuit_mark_for_close(circ, -err_reason);
  307. return;
  308. }
  309. log_debug(LD_OR,"Moving to next skin.");
  310. if ((err_reason = circuit_send_next_onion_skin(origin_circ)) < 0) {
  311. log_info(LD_OR,"circuit_send_next_onion_skin failed.");
  312. /* XXX push this circuit_close lower */
  313. circuit_mark_for_close(circ, -err_reason);
  314. return;
  315. }
  316. } else { /* pack it into an extended relay cell, and send it. */
  317. log_debug(LD_OR,
  318. "Converting created cell to extended relay cell, sending.");
  319. relay_send_command_from_edge(0, circ, RELAY_COMMAND_EXTENDED,
  320. cell->payload, ONIONSKIN_REPLY_LEN,
  321. NULL);
  322. }
  323. }
  324. /** Process a 'relay' <b>cell</b> that just arrived from <b>conn</b>. Make sure
  325. * it came in with a recognized circ_id. Pass it on to
  326. * circuit_receive_relay_cell() for actual processing.
  327. */
  328. static void
  329. command_process_relay_cell(cell_t *cell, or_connection_t *conn)
  330. {
  331. circuit_t *circ;
  332. int reason, direction;
  333. circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
  334. if (!circ) {
  335. log_debug(LD_OR,
  336. "unknown circuit %d on connection from %s:%d. Dropping.",
  337. cell->circ_id, conn->_base.address, conn->_base.port);
  338. return;
  339. }
  340. if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
  341. log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit in create_wait. Closing.");
  342. circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
  343. return;
  344. }
  345. if (CIRCUIT_IS_ORIGIN(circ)) {
  346. /* if we're a server and treating connections with recent local
  347. * traffic better, then this is one of them. */
  348. conn->client_used = time(NULL);
  349. }
  350. if (!CIRCUIT_IS_ORIGIN(circ) &&
  351. cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id)
  352. direction = CELL_DIRECTION_OUT;
  353. else
  354. direction = CELL_DIRECTION_IN;
  355. if ((reason = circuit_receive_relay_cell(cell, circ, direction)) < 0) {
  356. log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit_receive_relay_cell "
  357. "(%s) failed. Closing.",
  358. direction==CELL_DIRECTION_OUT?"forward":"backward");
  359. circuit_mark_for_close(circ, -reason);
  360. }
  361. }
  362. /** Process a 'destroy' <b>cell</b> that just arrived from
  363. * <b>conn</b>. Find the circ that it refers to (if any).
  364. *
  365. * If the circ is in state
  366. * onionskin_pending, then call onion_pending_remove() to remove it
  367. * from the pending onion list (note that if it's already being
  368. * processed by the cpuworker, it won't be in the list anymore; but
  369. * when the cpuworker returns it, the circuit will be gone, and the
  370. * cpuworker response will be dropped).
  371. *
  372. * Then mark the circuit for close (which marks all edges for close,
  373. * and passes the destroy cell onward if necessary).
  374. */
  375. static void
  376. command_process_destroy_cell(cell_t *cell, or_connection_t *conn)
  377. {
  378. circuit_t *circ;
  379. int reason;
  380. circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
  381. reason = (uint8_t)cell->payload[0];
  382. if (!circ) {
  383. log_info(LD_OR,"unknown circuit %d on connection from %s:%d. Dropping.",
  384. cell->circ_id, conn->_base.address, conn->_base.port);
  385. return;
  386. }
  387. log_debug(LD_OR,"Received for circID %d.",cell->circ_id);
  388. if (!CIRCUIT_IS_ORIGIN(circ) &&
  389. cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id) {
  390. /* the destroy came from behind */
  391. circuit_set_p_circid_orconn(TO_OR_CIRCUIT(circ), 0, NULL);
  392. circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
  393. } else { /* the destroy came from ahead */
  394. circuit_set_n_circid_orconn(circ, 0, NULL);
  395. if (CIRCUIT_IS_ORIGIN(circ)) {
  396. circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
  397. } else {
  398. char payload[1];
  399. log_debug(LD_OR, "Delivering 'truncated' back.");
  400. payload[0] = (char)reason;
  401. relay_send_command_from_edge(0, circ, RELAY_COMMAND_TRUNCATED,
  402. payload, sizeof(payload), NULL);
  403. }
  404. }
  405. }
  406. /** Process a 'versions' cell. The current link protocol version must be 0
  407. * to indicate that no version has yet been negotiated. DOCDOC say more. */
  408. static void
  409. command_process_versions_cell(var_cell_t *cell, or_connection_t *conn)
  410. {
  411. int highest_supported_version = 0;
  412. const char *cp, *end;
  413. if (conn->link_proto != 0 ||
  414. conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING ||
  415. (conn->handshake_state && conn->handshake_state->received_versions)) {
  416. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  417. "Received a VERSIONS cell on a connection with its version "
  418. "already set to %d; dropping", (int) conn->link_proto);
  419. return;
  420. }
  421. tor_assert(conn->handshake_state);
  422. end = cell->payload + cell->payload_len;
  423. for (cp = cell->payload; cp+1 < end; ++cp) {
  424. uint16_t v = ntohs(get_uint16(cp));
  425. if (v == 1 || v == 2) {
  426. if (v > highest_supported_version)
  427. highest_supported_version = v;
  428. }
  429. }
  430. if (!highest_supported_version) {
  431. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  432. "Couldn't find a version in common; defaulting to v1.");
  433. /*XXXX020 just break the connection! */
  434. conn->link_proto = 1;
  435. return;
  436. }
  437. conn->link_proto = highest_supported_version;
  438. conn->handshake_state->received_versions = 1;
  439. if (highest_supported_version >= 2) {
  440. /*XXXX020 check return values. */
  441. connection_or_send_netinfo(conn);
  442. connection_or_send_cert(conn);
  443. if (conn->handshake_state->started_here)
  444. connection_or_send_link_auth(conn);
  445. } else {
  446. /* XXXX020 finish v1 verification. */
  447. }
  448. }
  449. /** Process a 'netinfo' cell. DOCDOC say more. */
  450. static void
  451. command_process_netinfo_cell(cell_t *cell, or_connection_t *conn)
  452. {
  453. time_t timestamp;
  454. uint8_t my_addr_type;
  455. uint8_t my_addr_len;
  456. const char *my_addr_ptr;
  457. const char *cp, *end;
  458. uint8_t n_other_addrs;
  459. time_t now = time(NULL);
  460. if (conn->link_proto < 2) {
  461. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  462. "Received a NETINFO cell on %s connection; dropping.",
  463. conn->link_proto == 0 ? "non-versioned" : "a v1");
  464. return;
  465. }
  466. if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING) {
  467. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  468. "Received a NETINFO cell on a non-handshaking; dropping.");
  469. return;
  470. }
  471. tor_assert(conn->handshake_state &&
  472. conn->handshake_state->received_versions);
  473. if (conn->handshake_state->received_netinfo) {
  474. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  475. "Received a duplicate NETINFO cell; dropping.");
  476. return;
  477. }
  478. /* Decode the cell. */
  479. timestamp = ntohl(get_uint32(cell->payload));
  480. if (abs(now - conn->handshake_state->sent_versions_at) < 180) {
  481. conn->handshake_state->apparent_skew = now - timestamp;
  482. }
  483. my_addr_type = (uint8_t) cell->payload[4];
  484. my_addr_len = (uint8_t) cell->payload[5];
  485. my_addr_ptr = cell->payload + 6;
  486. end = cell->payload + CELL_PAYLOAD_SIZE;
  487. cp = cell->payload + 6 + my_addr_len;
  488. if (cp >= end) {
  489. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  490. "Address too long in netinfo cell; dropping.");
  491. /*XXXX020 reject and break OR conn! */
  492. return;
  493. } else if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) {
  494. conn->handshake_state->my_apparent_addr = ntohl(get_uint32(my_addr_ptr));
  495. }
  496. n_other_addrs = (uint8_t) *cp++;
  497. while (n_other_addrs && cp < end-2) {
  498. /* Consider all the other addresses; if any matches, this connection is
  499. * "canonical." */
  500. uint8_t other_addr_type = (uint8_t) *cp++;
  501. uint8_t other_addr_len = (uint8_t) *cp++;
  502. if (cp + other_addr_len >= end)
  503. break; /*XXXX020 protocol warn. */
  504. if (other_addr_type == RESOLVED_TYPE_IPV4 && other_addr_len == 4) {
  505. uint32_t addr = ntohl(get_uint32(cp));
  506. if (addr == conn->real_addr) {
  507. conn->handshake_state->apparently_canonical = 1;
  508. break;
  509. }
  510. }
  511. cp += other_addr_len;
  512. --n_other_addrs;
  513. }
  514. conn->handshake_state->received_netinfo = 1;
  515. }
  516. /*XXXX020 move to connection_or.c */
  517. /** DOCDOC Called when we're done authenticating; act on stuff we
  518. * learned in netinfo. */
  519. void
  520. connection_or_act_on_netinfo(or_connection_t *conn)
  521. {
  522. long delta;
  523. if (!conn->handshake_state)
  524. return;
  525. tor_assert(conn->handshake_state->authenticated != 0);
  526. delta = conn->handshake_state->apparent_skew;
  527. /*XXXX020 magic number 3600 */
  528. if (abs(delta) > 3600 &&
  529. router_get_by_digest(conn->identity_digest)) {
  530. char dbuf[64];
  531. /*XXXX020 not always warn!*/
  532. format_time_interval(dbuf, sizeof(dbuf), delta);
  533. log_fn(LOG_WARN, LD_HTTP, "Received NETINFO cell with skewed time from "
  534. "server at %s:%d. It seems that our clock is %s by %s, or "
  535. "that theirs is %s. Tor requires an accurate clock to work: "
  536. "please check your time and date settings.",
  537. conn->_base.address, (int)conn->_base.port,
  538. delta>0 ? "ahead" : "behind", dbuf,
  539. delta>0 ? "behind" : "ahead");
  540. control_event_general_status(LOG_WARN,
  541. "CLOCK_SKEW SKEW=%ld SOURCE=OR:%s:%d",
  542. delta, conn->_base.address, conn->_base.port);
  543. }
  544. /* XXX020 possibly, learn my address from my_apparent_addr */
  545. if (conn->handshake_state->apparently_canonical) {
  546. conn->is_canonical = 1;
  547. }
  548. }
  549. static void
  550. command_process_cert_cell(var_cell_t *cell, or_connection_t *conn)
  551. {
  552. (void) cell;
  553. (void) conn;
  554. /* Parse certs. */
  555. /* Verify that identity cert has signed peer cert in SSL, or
  556. * peer cert in the cell. */
  557. /* Verify that identity cert is self-signed. */
  558. /* Learn ID digest. */
  559. /* Learn cert digests. */
  560. /* Remember peer cert public key. */
  561. /* set received_certs. */
  562. }
  563. #define LINK_AUTH_STRING "Tor initiator certificate verification"
  564. /** DOCDOC */
  565. static void
  566. command_process_link_auth_cell(cell_t *cell, or_connection_t *conn)
  567. {
  568. or_handshake_state_t *s;
  569. char hmac[DIGEST_LEN];
  570. uint16_t len;
  571. size_t sig_len;
  572. const char *sig;
  573. char *checked = NULL;
  574. int checked_len;
  575. tor_assert(conn);
  576. if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING) {
  577. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  578. "Received a LINK_AUTH cell on connection in the wrong state; "
  579. "dropping.");
  580. return;
  581. }
  582. s = conn->handshake_state;
  583. tor_assert(s);
  584. if (s->started_here) {
  585. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  586. "Got a LINK_AUTH cell from a server; closing the connection.");
  587. goto err;
  588. }
  589. if (!s->received_netinfo || !s->received_versions || !s->received_certs) {
  590. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Got a LINK_AUTH cell too early; "
  591. "closing the connection");
  592. goto err;
  593. }
  594. len = ntohs(get_uint16(cell->payload));
  595. if (len < 2 || 2+len > CELL_PAYLOAD_SIZE) {
  596. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Bad length field (%d) on LINK_AUTH cell;"
  597. " closing the connection", (int)len);
  598. goto err;
  599. }
  600. if (cell->payload[2] != 0x00) {
  601. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Unrecognized LINK_AUTH signature "
  602. "version; closing the connection");
  603. goto err;
  604. }
  605. connection_or_compute_link_auth_hmac(conn, hmac);
  606. tor_assert(s->signing_key);
  607. sig = cell->payload+3;
  608. sig_len = len-1;
  609. checked = tor_malloc(crypto_pk_keysize(s->signing_key));
  610. checked_len = crypto_pk_public_checksig(s->signing_key,checked,sig,sig_len);
  611. if (checked_len < 0) {
  612. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Bad signature on LINK_AUTH cell; "
  613. "closing the connection");
  614. goto err;
  615. }
  616. if (checked_len != DIGEST_LEN) {
  617. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Bad length (%d) of signed material in "
  618. "LINK_AUTH cell; closing the connection", checked_len);
  619. goto err;
  620. }
  621. if (memcmp(checked, hmac, DIGEST_LEN) != 0) {
  622. log_fn(LOG_PROTOCOL_WARN, LD_OR, "Bad signed data in LINK_AUTH cell; "
  623. "closing the connection.");
  624. goto err;
  625. }
  626. /* Okay, we're authenticated. */
  627. s->authenticated = 1;
  628. /* XXXX020 act on being authenticated: */
  629. return;
  630. err:
  631. tor_free(checked);
  632. connection_mark_for_close(TO_CONN(conn));
  633. }