123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603 |
- const char command_c_id[] =
- "$Id$";
- #include "or.h"
- uint64_t stats_n_padding_cells_processed = 0;
- uint64_t stats_n_create_cells_processed = 0;
- uint64_t stats_n_created_cells_processed = 0;
- uint64_t stats_n_relay_cells_processed = 0;
- uint64_t stats_n_destroy_cells_processed = 0;
- uint64_t stats_n_versions_cells_processed = 0;
- uint64_t stats_n_netinfo_cells_processed = 0;
- uint64_t stats_n_cert_cells_processed = 0;
- uint64_t stats_n_link_auth_cells_processed = 0;
- static void command_process_create_cell(cell_t *cell, or_connection_t *conn);
- static void command_process_created_cell(cell_t *cell, or_connection_t *conn);
- static void command_process_relay_cell(cell_t *cell, or_connection_t *conn);
- static void command_process_destroy_cell(cell_t *cell, or_connection_t *conn);
- static void command_process_versions_cell(var_cell_t *cell,
- or_connection_t *conn);
- static void command_process_netinfo_cell(cell_t *cell, or_connection_t *conn);
- #ifdef KEEP_TIMING_STATS
- static void
- command_time_process_cell(cell_t *cell, or_connection_t *conn, int *time,
- void (*func)(cell_t *, or_connection_t *))
- {
- struct timeval start, end;
- long time_passed;
- tor_gettimeofday(&start);
- (*func)(cell, conn);
- tor_gettimeofday(&end);
- time_passed = tv_udiff(&start, &end) ;
- if (time_passed > 10000) {
- log_debug(LD_OR,"That call just took %ld ms.",time_passed/1000);
- }
- if (time_passed < 0) {
- log_info(LD_GENERAL,"That call took us back in time!");
- time_passed = 0;
- }
- *time += time_passed;
- }
- #endif
- void
- command_process_cell(cell_t *cell, or_connection_t *conn)
- {
- int handshaking = (conn->_base.state == OR_CONN_STATE_OR_HANDSHAKING);
- #ifdef KEEP_TIMING_STATS
-
- static int num_create=0, num_created=0, num_relay=0, num_destroy=0;
-
- static int create_time=0, created_time=0, relay_time=0, destroy_time=0;
- static time_t current_second = 0;
- time_t now = time(NULL);
- if (now > current_second) {
-
- log_info(LD_OR,
- "At end of second: %d creates (%d ms), %d createds (%d ms), "
- "%d relays (%d ms), %d destroys (%d ms)",
- num_create, create_time/1000,
- num_created, created_time/1000,
- num_relay, relay_time/1000,
- num_destroy, destroy_time/1000);
-
- num_create = num_created = num_relay = num_destroy = 0;
- create_time = created_time = relay_time = destroy_time = 0;
-
- current_second = now;
- }
- #endif
- #ifdef KEEP_TIMING_STATS
- #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \
- ++num ## tp; \
- command_time_process_cell(cl, cn, & tp ## time , \
- command_process_ ## tp ## _cell); \
- } STMT_END
- #else
- #define PROCESS_CELL(tp, cl, cn) command_process_ ## tp ## _cell(cl, cn)
- #endif
-
- if (handshaking && cell->command != CELL_VERSIONS &&
- cell->command != CELL_NETINFO)
- return;
- switch (cell->command) {
- case CELL_PADDING:
- ++stats_n_padding_cells_processed;
-
- break;
- case CELL_CREATE:
- case CELL_CREATE_FAST:
- ++stats_n_create_cells_processed;
- PROCESS_CELL(create, cell, conn);
- break;
- case CELL_CREATED:
- case CELL_CREATED_FAST:
- ++stats_n_created_cells_processed;
- PROCESS_CELL(created, cell, conn);
- break;
- case CELL_RELAY:
- case CELL_RELAY_EARLY:
- ++stats_n_relay_cells_processed;
- PROCESS_CELL(relay, cell, conn);
- break;
- case CELL_DESTROY:
- ++stats_n_destroy_cells_processed;
- PROCESS_CELL(destroy, cell, conn);
- break;
- case CELL_VERSIONS:
- tor_fragile_assert();
- break;
- case CELL_NETINFO:
- ++stats_n_netinfo_cells_processed;
- PROCESS_CELL(netinfo, cell, conn);
- break;
- default:
- log_fn(LOG_INFO, LD_PROTOCOL,
- "Cell of unknown type (%d) received. Dropping.", cell->command);
- break;
- }
- }
- void
- command_process_var_cell(var_cell_t *cell, or_connection_t *conn)
- {
- #ifdef KEEP_TIMING_STATS
-
- static int num_versions=0, num_cert=0;
- time_t now = time(NULL);
- if (now > current_second) {
-
- log_info(LD_OR,
- "At end of second: %d versions (%d ms), %d cert (%d ms)",
- num_versions, versions_time/1000,
- cert, cert_time/1000);
- num_versions = num_cert = 0;
- versions_time = cert_time = 0;
-
- current_second = now;
- }
- #endif
-
- if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING)
- return;
- switch (cell->command) {
- case CELL_VERSIONS:
- ++stats_n_versions_cells_processed;
- PROCESS_CELL(versions, cell, conn);
- break;
- default:
- log_warn(LD_BUG,
- "Variable-length cell of unknown type (%d) received.",
- cell->command);
- tor_fragile_assert();
- break;
- }
- }
- static void
- command_process_create_cell(cell_t *cell, or_connection_t *conn)
- {
- or_circuit_t *circ;
- int id_is_high;
- if (we_are_hibernating()) {
- log_info(LD_OR,
- "Received create cell but we're shutting down. Sending back "
- "destroy.");
- connection_or_send_destroy(cell->circ_id, conn,
- END_CIRC_REASON_HIBERNATING);
- return;
- }
- if (!server_mode(get_options())) {
- log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
- "Received create cell (type %d) from %s:%d, but we're a client. "
- "Sending back a destroy.",
- (int)cell->command, conn->_base.address, conn->_base.port);
- connection_or_send_destroy(cell->circ_id, conn,
- END_CIRC_REASON_TORPROTOCOL);
- return;
- }
-
- id_is_high = cell->circ_id & (1<<15);
- if ((id_is_high && conn->circ_id_type == CIRC_ID_TYPE_HIGHER) ||
- (!id_is_high && conn->circ_id_type == CIRC_ID_TYPE_LOWER)) {
- log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
- "Received create cell with unexpected circ_id %d. Closing.",
- cell->circ_id);
- connection_or_send_destroy(cell->circ_id, conn,
- END_CIRC_REASON_TORPROTOCOL);
- return;
- }
- if (circuit_get_by_circid_orconn(cell->circ_id, conn)) {
- routerinfo_t *router = router_get_by_digest(conn->identity_digest);
- log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
- "Received CREATE cell (circID %d) for known circ. "
- "Dropping (age %d).",
- cell->circ_id, (int)(time(NULL) - conn->_base.timestamp_created));
- if (router)
- log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
- "Details: nickname \"%s\", platform %s.",
- router->nickname, escaped(router->platform));
- return;
- }
- circ = or_circuit_new(cell->circ_id, conn);
- circ->_base.purpose = CIRCUIT_PURPOSE_OR;
- circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_ONIONSKIN_PENDING);
- if (cell->command == CELL_CREATE) {
- char *onionskin = tor_malloc(ONIONSKIN_CHALLENGE_LEN);
- memcpy(onionskin, cell->payload, ONIONSKIN_CHALLENGE_LEN);
-
- if (assign_onionskin_to_cpuworker(NULL, circ, onionskin) < 0) {
- log_warn(LD_GENERAL,"Failed to hand off onionskin. Closing.");
- circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
- return;
- }
- log_debug(LD_OR,"success: handed off onionskin.");
- } else {
-
- char keys[CPATH_KEY_MATERIAL_LEN];
- char reply[DIGEST_LEN*2];
- tor_assert(cell->command == CELL_CREATE_FAST);
- if (fast_server_handshake(cell->payload, reply, keys, sizeof(keys))<0) {
- log_warn(LD_OR,"Failed to generate key material. Closing.");
- circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
- return;
- }
- if (onionskin_answer(circ, CELL_CREATED_FAST, reply, keys)<0) {
- log_warn(LD_OR,"Failed to reply to CREATE_FAST cell. Closing.");
- circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
- return;
- }
- }
- }
- static void
- command_process_created_cell(cell_t *cell, or_connection_t *conn)
- {
- circuit_t *circ;
- circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
- if (!circ) {
- log_info(LD_OR,
- "(circID %d) unknown circ (probably got a destroy earlier). "
- "Dropping.", cell->circ_id);
- return;
- }
- if (circ->n_circ_id != cell->circ_id) {
- log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,
- "got created cell from Tor client? Closing.");
- circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
- return;
- }
- if (CIRCUIT_IS_ORIGIN(circ)) {
- origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
- int err_reason = 0;
- log_debug(LD_OR,"at OP. Finishing handshake.");
- if ((err_reason = circuit_finish_handshake(origin_circ, cell->command,
- cell->payload)) < 0) {
- log_warn(LD_OR,"circuit_finish_handshake failed.");
- circuit_mark_for_close(circ, -err_reason);
- return;
- }
- log_debug(LD_OR,"Moving to next skin.");
- if ((err_reason = circuit_send_next_onion_skin(origin_circ)) < 0) {
- log_info(LD_OR,"circuit_send_next_onion_skin failed.");
-
- circuit_mark_for_close(circ, -err_reason);
- return;
- }
- } else {
- log_debug(LD_OR,
- "Converting created cell to extended relay cell, sending.");
- relay_send_command_from_edge(0, circ, RELAY_COMMAND_EXTENDED,
- cell->payload, ONIONSKIN_REPLY_LEN,
- NULL);
- }
- }
- static void
- command_process_relay_cell(cell_t *cell, or_connection_t *conn)
- {
- circuit_t *circ;
- int reason, direction;
- circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
- if (!circ) {
- log_debug(LD_OR,
- "unknown circuit %d on connection from %s:%d. Dropping.",
- cell->circ_id, conn->_base.address, conn->_base.port);
- return;
- }
- if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
- log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit in create_wait. Closing.");
- circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
- return;
- }
- if (CIRCUIT_IS_ORIGIN(circ)) {
-
- conn->client_used = time(NULL);
- }
- if (!CIRCUIT_IS_ORIGIN(circ) &&
- cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id)
- direction = CELL_DIRECTION_OUT;
- else
- direction = CELL_DIRECTION_IN;
- if ((reason = circuit_receive_relay_cell(cell, circ, direction)) < 0) {
- log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit_receive_relay_cell "
- "(%s) failed. Closing.",
- direction==CELL_DIRECTION_OUT?"forward":"backward");
- circuit_mark_for_close(circ, -reason);
- }
- }
- static void
- command_process_destroy_cell(cell_t *cell, or_connection_t *conn)
- {
- circuit_t *circ;
- int reason;
- circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
- reason = (uint8_t)cell->payload[0];
- if (!circ) {
- log_info(LD_OR,"unknown circuit %d on connection from %s:%d. Dropping.",
- cell->circ_id, conn->_base.address, conn->_base.port);
- return;
- }
- log_debug(LD_OR,"Received for circID %d.",cell->circ_id);
- if (!CIRCUIT_IS_ORIGIN(circ) &&
- cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id) {
-
- circuit_set_p_circid_orconn(TO_OR_CIRCUIT(circ), 0, NULL);
- circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
- } else {
- circuit_set_n_circid_orconn(circ, 0, NULL);
- if (CIRCUIT_IS_ORIGIN(circ)) {
- circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
- } else {
- char payload[1];
- log_debug(LD_OR, "Delivering 'truncated' back.");
- payload[0] = (char)reason;
- relay_send_command_from_edge(0, circ, RELAY_COMMAND_TRUNCATED,
- payload, sizeof(payload), NULL);
- }
- }
- }
- static void
- command_process_versions_cell(var_cell_t *cell, or_connection_t *conn)
- {
- int highest_supported_version = 0;
- const char *cp, *end;
- if (conn->link_proto != 0 ||
- conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING ||
- (conn->handshake_state && conn->handshake_state->received_versions)) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Received a VERSIONS cell on a connection with its version "
- "already set to %d; dropping", (int) conn->link_proto);
- return;
- }
- tor_assert(conn->handshake_state);
- end = cell->payload + cell->payload_len;
- for (cp = cell->payload; cp+1 < end; ++cp) {
- uint16_t v = ntohs(get_uint16(cp));
- if (is_or_protocol_version_known(v) && v > highest_supported_version)
- highest_supported_version = v;
- }
- if (!highest_supported_version) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Couldn't find a version in common between my version list and the "
- "list in the VERSIONS cell; closing connection.");
- connection_mark_for_close(TO_CONN(conn));
- return;
- } else if (highest_supported_version == 1) {
-
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Used version negotiation protocol to negotiate a v1 connection. "
- "That's crazily non-compliant. Closing connection.");
- connection_mark_for_close(TO_CONN(conn));
- return;
- }
- conn->link_proto = highest_supported_version;
- conn->handshake_state->received_versions = 1;
- log_info(LD_OR, "Negotiated version %d with %s; sending NETINFO.",
- highest_supported_version, safe_str(conn->_base.address));
- tor_assert(conn->link_proto >= 2);
- if (connection_or_send_netinfo(conn) < 0) {
- connection_mark_for_close(TO_CONN(conn));
- return;
- }
- }
- static void
- command_process_netinfo_cell(cell_t *cell, or_connection_t *conn)
- {
- time_t timestamp;
- uint8_t my_addr_type;
- uint8_t my_addr_len;
- const char *my_addr_ptr;
- const char *cp, *end;
- uint8_t n_other_addrs;
- time_t now = time(NULL);
- long apparent_skew = 0;
- uint32_t my_apparent_addr = 0;
- if (conn->link_proto < 2) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Received a NETINFO cell on %s connection; dropping.",
- conn->link_proto == 0 ? "non-versioned" : "a v1");
- return;
- }
- if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Received a NETINFO cell on a non-handshaking; dropping.");
- return;
- }
- tor_assert(conn->handshake_state &&
- conn->handshake_state->received_versions);
-
- timestamp = ntohl(get_uint32(cell->payload));
- if (abs(now - conn->handshake_state->sent_versions_at) < 180) {
- apparent_skew = now - timestamp;
- }
- my_addr_type = (uint8_t) cell->payload[4];
- my_addr_len = (uint8_t) cell->payload[5];
- my_addr_ptr = cell->payload + 6;
- end = cell->payload + CELL_PAYLOAD_SIZE;
- cp = cell->payload + 6 + my_addr_len;
- if (cp >= end) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Addresses too long in netinfo cell; closing connection.");
- connection_mark_for_close(TO_CONN(conn));
- return;
- } else if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) {
- my_apparent_addr = ntohl(get_uint32(my_addr_ptr));
- }
- n_other_addrs = (uint8_t) *cp++;
- while (n_other_addrs && cp < end-2) {
-
- uint8_t other_addr_type = (uint8_t) *cp++;
- uint8_t other_addr_len = (uint8_t) *cp++;
- if (cp + other_addr_len >= end) {
- log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Address too long in netinfo cell; closing connection.");
- connection_mark_for_close(TO_CONN(conn));
- return;
- }
- if (other_addr_type == RESOLVED_TYPE_IPV4 && other_addr_len == 4) {
- uint32_t addr = ntohl(get_uint32(cp));
- if (addr == conn->real_addr) {
- conn->is_canonical = 1;
- break;
- }
- }
- cp += other_addr_len;
- --n_other_addrs;
- }
-
-
- #define NETINFO_NOTICE_SKEW 3600
- if (abs(apparent_skew) > NETINFO_NOTICE_SKEW &&
- router_get_by_digest(conn->identity_digest)) {
- char dbuf[64];
-
- int severity = server_mode(get_options()) ? LOG_INFO : LOG_WARN;
- format_time_interval(dbuf, sizeof(dbuf), apparent_skew);
- log_fn(severity, LD_GENERAL, "Received NETINFO cell with skewed time from "
- "server at %s:%d. It seems that our clock is %s by %s, or "
- "that theirs is %s. Tor requires an accurate clock to work: "
- "please check your time and date settings.",
- conn->_base.address, (int)conn->_base.port,
- apparent_skew>0 ? "ahead" : "behind", dbuf,
- apparent_skew>0 ? "behind" : "ahead");
- control_event_general_status(LOG_WARN,
- "CLOCK_SKEW SKEW=%ld SOURCE=OR:%s:%d",
- apparent_skew, conn->_base.address, conn->_base.port);
- }
-
- if (connection_or_set_state_open(conn)<0)
- connection_mark_for_close(TO_CONN(conn));
- else
- log_info(LD_OR, "Got good NETINFO cell from %s; OR connection is now "
- "open, using protocol version %d",
- safe_str(conn->_base.address), (int)conn->link_proto);
- assert_connection_ok(TO_CONN(conn),time(NULL));
- }
|