fix whitespace issues
[tor/rransom.git] / src / or / command.c
blob9269456805d27aeb4206032bf384495be019a3ad
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2011, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 /**
8 * \file command.c
9 * \brief Functions for processing incoming cells.
10 **/
12 /* In-points to command.c:
14 * - command_process_cell(), called from
15 * connection_or_process_cells_from_inbuf() in connection_or.c
18 #include "or.h"
20 /** How many CELL_PADDING cells have we received, ever? */
21 uint64_t stats_n_padding_cells_processed = 0;
22 /** How many CELL_CREATE cells have we received, ever? */
23 uint64_t stats_n_create_cells_processed = 0;
24 /** How many CELL_CREATED cells have we received, ever? */
25 uint64_t stats_n_created_cells_processed = 0;
26 /** How many CELL_RELAY cells have we received, ever? */
27 uint64_t stats_n_relay_cells_processed = 0;
28 /** How many CELL_DESTROY cells have we received, ever? */
29 uint64_t stats_n_destroy_cells_processed = 0;
30 /** How many CELL_VERSIONS cells have we received, ever? */
31 uint64_t stats_n_versions_cells_processed = 0;
32 /** How many CELL_NETINFO cells have we received, ever? */
33 uint64_t stats_n_netinfo_cells_processed = 0;
35 /* These are the main functions for processing cells */
36 static void command_process_create_cell(cell_t *cell, or_connection_t *conn);
37 static void command_process_created_cell(cell_t *cell, or_connection_t *conn);
38 static void command_process_relay_cell(cell_t *cell, or_connection_t *conn);
39 static void command_process_destroy_cell(cell_t *cell, or_connection_t *conn);
40 static void command_process_versions_cell(var_cell_t *cell,
41 or_connection_t *conn);
42 static void command_process_netinfo_cell(cell_t *cell, or_connection_t *conn);
44 #ifdef KEEP_TIMING_STATS
45 /** This is a wrapper function around the actual function that processes the
46 * <b>cell</b> that just arrived on <b>conn</b>. Increment <b>*time</b>
47 * by the number of microseconds used by the call to <b>*func(cell, conn)</b>.
49 static void
50 command_time_process_cell(cell_t *cell, or_connection_t *conn, int *time,
51 void (*func)(cell_t *, or_connection_t *))
53 struct timeval start, end;
54 long time_passed;
56 tor_gettimeofday(&start);
58 (*func)(cell, conn);
60 tor_gettimeofday(&end);
61 time_passed = tv_udiff(&start, &end) ;
63 if (time_passed > 10000) { /* more than 10ms */
64 log_debug(LD_OR,"That call just took %ld ms.",time_passed/1000);
66 if (time_passed < 0) {
67 log_info(LD_GENERAL,"That call took us back in time!");
68 time_passed = 0;
70 *time += time_passed;
72 #endif
74 /** Process a <b>cell</b> that was just received on <b>conn</b>. Keep internal
75 * statistics about how many of each cell we've processed so far
76 * this second, and the total number of microseconds it took to
77 * process each type of cell.
79 void
80 command_process_cell(cell_t *cell, or_connection_t *conn)
82 int handshaking = (conn->_base.state == OR_CONN_STATE_OR_HANDSHAKING);
83 #ifdef KEEP_TIMING_STATS
84 /* how many of each cell have we seen so far this second? needs better
85 * name. */
86 static int num_create=0, num_created=0, num_relay=0, num_destroy=0;
87 /* how long has it taken to process each type of cell? */
88 static int create_time=0, created_time=0, relay_time=0, destroy_time=0;
89 static time_t current_second = 0; /* from previous calls to time */
91 time_t now = time(NULL);
93 if (now > current_second) { /* the second has rolled over */
94 /* print stats */
95 log_info(LD_OR,
96 "At end of second: %d creates (%d ms), %d createds (%d ms), "
97 "%d relays (%d ms), %d destroys (%d ms)",
98 num_create, create_time/1000,
99 num_created, created_time/1000,
100 num_relay, relay_time/1000,
101 num_destroy, destroy_time/1000);
103 /* zero out stats */
104 num_create = num_created = num_relay = num_destroy = 0;
105 create_time = created_time = relay_time = destroy_time = 0;
107 /* remember which second it is, for next time */
108 current_second = now;
110 #endif
112 #ifdef KEEP_TIMING_STATS
113 #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \
114 ++num ## tp; \
115 command_time_process_cell(cl, cn, & tp ## time , \
116 command_process_ ## tp ## _cell); \
117 } STMT_END
118 #else
119 #define PROCESS_CELL(tp, cl, cn) command_process_ ## tp ## _cell(cl, cn)
120 #endif
122 /* Reject all but VERSIONS and NETINFO when handshaking. */
123 if (handshaking && cell->command != CELL_VERSIONS &&
124 cell->command != CELL_NETINFO)
125 return;
127 switch (cell->command) {
128 case CELL_PADDING:
129 ++stats_n_padding_cells_processed;
130 /* do nothing */
131 break;
132 case CELL_CREATE:
133 case CELL_CREATE_FAST:
134 ++stats_n_create_cells_processed;
135 PROCESS_CELL(create, cell, conn);
136 break;
137 case CELL_CREATED:
138 case CELL_CREATED_FAST:
139 ++stats_n_created_cells_processed;
140 PROCESS_CELL(created, cell, conn);
141 break;
142 case CELL_RELAY:
143 case CELL_RELAY_EARLY:
144 ++stats_n_relay_cells_processed;
145 PROCESS_CELL(relay, cell, conn);
146 break;
147 case CELL_DESTROY:
148 ++stats_n_destroy_cells_processed;
149 PROCESS_CELL(destroy, cell, conn);
150 break;
151 case CELL_VERSIONS:
152 tor_fragile_assert();
153 break;
154 case CELL_NETINFO:
155 ++stats_n_netinfo_cells_processed;
156 PROCESS_CELL(netinfo, cell, conn);
157 break;
158 default:
159 log_fn(LOG_INFO, LD_PROTOCOL,
160 "Cell of unknown type (%d) received. Dropping.", cell->command);
161 break;
165 /** Process a <b>cell</b> that was just received on <b>conn</b>. Keep internal
166 * statistics about how many of each cell we've processed so far
167 * this second, and the total number of microseconds it took to
168 * process each type of cell.
170 void
171 command_process_var_cell(var_cell_t *cell, or_connection_t *conn)
173 #ifdef KEEP_TIMING_STATS
174 /* how many of each cell have we seen so far this second? needs better
175 * name. */
176 static int num_versions=0, num_cert=0;
178 time_t now = time(NULL);
180 if (now > current_second) { /* the second has rolled over */
181 /* print stats */
182 log_info(LD_OR,
183 "At end of second: %d versions (%d ms), %d cert (%d ms)",
184 num_versions, versions_time/1000,
185 cert, cert_time/1000);
187 num_versions = num_cert = 0;
188 versions_time = cert_time = 0;
190 /* remember which second it is, for next time */
191 current_second = now;
193 #endif
195 /* reject all when not handshaking. */
196 if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING)
197 return;
199 switch (cell->command) {
200 case CELL_VERSIONS:
201 ++stats_n_versions_cells_processed;
202 PROCESS_CELL(versions, cell, conn);
203 break;
204 default:
205 log_warn(LD_BUG,
206 "Variable-length cell of unknown type (%d) received.",
207 cell->command);
208 tor_fragile_assert();
209 break;
213 /** Process a 'create' <b>cell</b> that just arrived from <b>conn</b>. Make a
214 * new circuit with the p_circ_id specified in cell. Put the circuit in state
215 * onionskin_pending, and pass the onionskin to the cpuworker. Circ will get
216 * picked up again when the cpuworker finishes decrypting it.
218 static void
219 command_process_create_cell(cell_t *cell, or_connection_t *conn)
221 or_circuit_t *circ;
222 int id_is_high;
224 if (we_are_hibernating()) {
225 log_info(LD_OR,
226 "Received create cell but we're shutting down. Sending back "
227 "destroy.");
228 connection_or_send_destroy(cell->circ_id, conn,
229 END_CIRC_REASON_HIBERNATING);
230 return;
233 if (!server_mode(get_options())) {
234 log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
235 "Received create cell (type %d) from %s:%d, but we're a client. "
236 "Sending back a destroy.",
237 (int)cell->command, conn->_base.address, conn->_base.port);
238 connection_or_send_destroy(cell->circ_id, conn,
239 END_CIRC_REASON_TORPROTOCOL);
240 return;
243 /* If the high bit of the circuit ID is not as expected, close the
244 * circ. */
245 id_is_high = cell->circ_id & (1<<15);
246 if ((id_is_high && conn->circ_id_type == CIRC_ID_TYPE_HIGHER) ||
247 (!id_is_high && conn->circ_id_type == CIRC_ID_TYPE_LOWER)) {
248 log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
249 "Received create cell with unexpected circ_id %d. Closing.",
250 cell->circ_id);
251 connection_or_send_destroy(cell->circ_id, conn,
252 END_CIRC_REASON_TORPROTOCOL);
253 return;
256 if (circuit_id_in_use_on_orconn(cell->circ_id, conn)) {
257 routerinfo_t *router = router_get_by_digest(conn->identity_digest);
258 log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
259 "Received CREATE cell (circID %d) for known circ. "
260 "Dropping (age %d).",
261 cell->circ_id, (int)(time(NULL) - conn->_base.timestamp_created));
262 if (router)
263 log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
264 "Details: nickname \"%s\", platform %s.",
265 router->nickname, escaped(router->platform));
266 return;
269 circ = or_circuit_new(cell->circ_id, conn);
270 circ->_base.purpose = CIRCUIT_PURPOSE_OR;
271 circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_ONIONSKIN_PENDING);
272 if (cell->command == CELL_CREATE) {
273 char *onionskin = tor_malloc(ONIONSKIN_CHALLENGE_LEN);
274 memcpy(onionskin, cell->payload, ONIONSKIN_CHALLENGE_LEN);
276 /* hand it off to the cpuworkers, and then return. */
277 if (assign_onionskin_to_cpuworker(NULL, circ, onionskin) < 0) {
278 log_warn(LD_GENERAL,"Failed to hand off onionskin. Closing.");
279 circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
280 return;
282 log_debug(LD_OR,"success: handed off onionskin.");
283 } else {
284 /* This is a CREATE_FAST cell; we can handle it immediately without using
285 * a CPU worker. */
286 char keys[CPATH_KEY_MATERIAL_LEN];
287 char reply[DIGEST_LEN*2];
288 tor_assert(cell->command == CELL_CREATE_FAST);
289 if (fast_server_handshake(cell->payload, (uint8_t*)reply,
290 (uint8_t*)keys, sizeof(keys))<0) {
291 log_warn(LD_OR,"Failed to generate key material. Closing.");
292 circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
293 return;
295 if (onionskin_answer(circ, CELL_CREATED_FAST, reply, keys)<0) {
296 log_warn(LD_OR,"Failed to reply to CREATE_FAST cell. Closing.");
297 circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_INTERNAL);
298 return;
303 /** Process a 'created' <b>cell</b> that just arrived from <b>conn</b>.
304 * Find the circuit
305 * that it's intended for. If we're not the origin of the circuit, package
306 * the 'created' cell in an 'extended' relay cell and pass it back. If we
307 * are the origin of the circuit, send it to circuit_finish_handshake() to
308 * finish processing keys, and then call circuit_send_next_onion_skin() to
309 * extend to the next hop in the circuit if necessary.
311 static void
312 command_process_created_cell(cell_t *cell, or_connection_t *conn)
314 circuit_t *circ;
316 circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
318 if (!circ) {
319 log_info(LD_OR,
320 "(circID %d) unknown circ (probably got a destroy earlier). "
321 "Dropping.", cell->circ_id);
322 return;
325 if (circ->n_circ_id != cell->circ_id) {
326 log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,
327 "got created cell from Tor client? Closing.");
328 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
329 return;
332 if (CIRCUIT_IS_ORIGIN(circ)) { /* we're the OP. Handshake this. */
333 origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
334 int err_reason = 0;
335 log_debug(LD_OR,"at OP. Finishing handshake.");
336 if ((err_reason = circuit_finish_handshake(origin_circ, cell->command,
337 cell->payload)) < 0) {
338 log_warn(LD_OR,"circuit_finish_handshake failed.");
339 circuit_mark_for_close(circ, -err_reason);
340 return;
342 log_debug(LD_OR,"Moving to next skin.");
343 if ((err_reason = circuit_send_next_onion_skin(origin_circ)) < 0) {
344 log_info(LD_OR,"circuit_send_next_onion_skin failed.");
345 /* XXX push this circuit_close lower */
346 circuit_mark_for_close(circ, -err_reason);
347 return;
349 } else { /* pack it into an extended relay cell, and send it. */
350 log_debug(LD_OR,
351 "Converting created cell to extended relay cell, sending.");
352 relay_send_command_from_edge(0, circ, RELAY_COMMAND_EXTENDED,
353 (char*)cell->payload, ONIONSKIN_REPLY_LEN,
354 NULL);
358 /** Process a 'relay' or 'relay_early' <b>cell</b> that just arrived from
359 * <b>conn</b>. Make sure it came in with a recognized circ_id. Pass it on to
360 * circuit_receive_relay_cell() for actual processing.
362 static void
363 command_process_relay_cell(cell_t *cell, or_connection_t *conn)
365 circuit_t *circ;
366 int reason, direction;
368 circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
370 if (!circ) {
371 log_debug(LD_OR,
372 "unknown circuit %d on connection from %s:%d. Dropping.",
373 cell->circ_id, conn->_base.address, conn->_base.port);
374 return;
377 if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
378 log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit in create_wait. Closing.");
379 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
380 return;
383 if (CIRCUIT_IS_ORIGIN(circ)) {
384 /* if we're a relay and treating connections with recent local
385 * traffic better, then this is one of them. */
386 conn->client_used = time(NULL);
389 if (!CIRCUIT_IS_ORIGIN(circ) &&
390 cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id)
391 direction = CELL_DIRECTION_OUT;
392 else
393 direction = CELL_DIRECTION_IN;
395 /* If we have a relay_early cell, make sure that it's outbound, and we've
396 * gotten no more than MAX_RELAY_EARLY_CELLS_PER_CIRCUIT of them. */
397 if (cell->command == CELL_RELAY_EARLY) {
398 if (direction == CELL_DIRECTION_IN) {
399 /* XXX Allow an unlimited number of inbound relay_early cells for
400 * now, for hidden service compatibility. See bug 1038. -RD */
401 } else {
402 or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
403 if (or_circ->remaining_relay_early_cells == 0) {
404 log_fn(LOG_PROTOCOL_WARN, LD_OR,
405 "Received too many RELAY_EARLY cells on circ %d from %s:%d."
406 " Closing circuit.",
407 cell->circ_id, safe_str(conn->_base.address), conn->_base.port);
408 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
409 return;
411 --or_circ->remaining_relay_early_cells;
415 if ((reason = circuit_receive_relay_cell(cell, circ, direction)) < 0) {
416 log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,"circuit_receive_relay_cell "
417 "(%s) failed. Closing.",
418 direction==CELL_DIRECTION_OUT?"forward":"backward");
419 circuit_mark_for_close(circ, -reason);
423 /** Process a 'destroy' <b>cell</b> that just arrived from
424 * <b>conn</b>. Find the circ that it refers to (if any).
426 * If the circ is in state
427 * onionskin_pending, then call onion_pending_remove() to remove it
428 * from the pending onion list (note that if it's already being
429 * processed by the cpuworker, it won't be in the list anymore; but
430 * when the cpuworker returns it, the circuit will be gone, and the
431 * cpuworker response will be dropped).
433 * Then mark the circuit for close (which marks all edges for close,
434 * and passes the destroy cell onward if necessary).
436 static void
437 command_process_destroy_cell(cell_t *cell, or_connection_t *conn)
439 circuit_t *circ;
440 int reason;
442 circ = circuit_get_by_circid_orconn(cell->circ_id, conn);
443 reason = (uint8_t)cell->payload[0];
444 if (!circ) {
445 log_info(LD_OR,"unknown circuit %d on connection from %s:%d. Dropping.",
446 cell->circ_id, conn->_base.address, conn->_base.port);
447 return;
449 log_debug(LD_OR,"Received for circID %d.",cell->circ_id);
451 if (!CIRCUIT_IS_ORIGIN(circ) &&
452 cell->circ_id == TO_OR_CIRCUIT(circ)->p_circ_id) {
453 /* the destroy came from behind */
454 circuit_set_p_circid_orconn(TO_OR_CIRCUIT(circ), 0, NULL);
455 circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
456 } else { /* the destroy came from ahead */
457 circuit_set_n_circid_orconn(circ, 0, NULL);
458 if (CIRCUIT_IS_ORIGIN(circ)) {
459 circuit_mark_for_close(circ, reason|END_CIRC_REASON_FLAG_REMOTE);
460 } else {
461 char payload[1];
462 log_debug(LD_OR, "Delivering 'truncated' back.");
463 payload[0] = (char)reason;
464 relay_send_command_from_edge(0, circ, RELAY_COMMAND_TRUNCATED,
465 payload, sizeof(payload), NULL);
470 /** Process a 'versions' cell. The current link protocol version must be 0
471 * to indicate that no version has yet been negotiated. We compare the
472 * versions in the cell to the list of versions we support, pick the
473 * highest version we have in common, and continue the negotiation from
474 * there.
476 static void
477 command_process_versions_cell(var_cell_t *cell, or_connection_t *conn)
479 int highest_supported_version = 0;
480 const uint8_t *cp, *end;
481 if (conn->link_proto != 0 ||
482 conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING ||
483 (conn->handshake_state && conn->handshake_state->received_versions)) {
484 log_fn(LOG_PROTOCOL_WARN, LD_OR,
485 "Received a VERSIONS cell on a connection with its version "
486 "already set to %d; dropping", (int) conn->link_proto);
487 return;
489 tor_assert(conn->handshake_state);
490 end = cell->payload + cell->payload_len;
491 for (cp = cell->payload; cp+1 < end; ++cp) {
492 uint16_t v = ntohs(get_uint16(cp));
493 if (is_or_protocol_version_known(v) && v > highest_supported_version)
494 highest_supported_version = v;
496 if (!highest_supported_version) {
497 log_fn(LOG_PROTOCOL_WARN, LD_OR,
498 "Couldn't find a version in common between my version list and the "
499 "list in the VERSIONS cell; closing connection.");
500 connection_mark_for_close(TO_CONN(conn));
501 return;
502 } else if (highest_supported_version == 1) {
503 /* Negotiating version 1 makes no sense, since version 1 has no VERSIONS
504 * cells. */
505 log_fn(LOG_PROTOCOL_WARN, LD_OR,
506 "Used version negotiation protocol to negotiate a v1 connection. "
507 "That's crazily non-compliant. Closing connection.");
508 connection_mark_for_close(TO_CONN(conn));
509 return;
511 conn->link_proto = highest_supported_version;
512 conn->handshake_state->received_versions = 1;
514 log_info(LD_OR, "Negotiated version %d with %s:%d; sending NETINFO.",
515 highest_supported_version, safe_str(conn->_base.address),
516 conn->_base.port);
517 tor_assert(conn->link_proto >= 2);
519 if (connection_or_send_netinfo(conn) < 0) {
520 connection_mark_for_close(TO_CONN(conn));
521 return;
525 /** Process a 'netinfo' cell: read and act on its contents, and set the
526 * connection state to "open". */
527 static void
528 command_process_netinfo_cell(cell_t *cell, or_connection_t *conn)
530 time_t timestamp;
531 uint8_t my_addr_type;
532 uint8_t my_addr_len;
533 const uint8_t *my_addr_ptr;
534 const uint8_t *cp, *end;
535 uint8_t n_other_addrs;
536 time_t now = time(NULL);
538 long apparent_skew = 0;
539 uint32_t my_apparent_addr = 0;
541 if (conn->link_proto < 2) {
542 log_fn(LOG_PROTOCOL_WARN, LD_OR,
543 "Received a NETINFO cell on %s connection; dropping.",
544 conn->link_proto == 0 ? "non-versioned" : "a v1");
545 return;
547 if (conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING) {
548 log_fn(LOG_PROTOCOL_WARN, LD_OR,
549 "Received a NETINFO cell on non-handshaking connection; dropping.");
550 return;
552 tor_assert(conn->handshake_state &&
553 conn->handshake_state->received_versions);
554 /* Decode the cell. */
555 timestamp = ntohl(get_uint32(cell->payload));
556 if (labs(now - conn->handshake_state->sent_versions_at) < 180) {
557 apparent_skew = now - timestamp;
560 my_addr_type = (uint8_t) cell->payload[4];
561 my_addr_len = (uint8_t) cell->payload[5];
562 my_addr_ptr = (uint8_t*) cell->payload + 6;
563 end = cell->payload + CELL_PAYLOAD_SIZE;
564 cp = cell->payload + 6 + my_addr_len;
565 if (cp >= end) {
566 log_fn(LOG_PROTOCOL_WARN, LD_OR,
567 "Addresses too long in netinfo cell; closing connection.");
568 connection_mark_for_close(TO_CONN(conn));
569 return;
570 } else if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) {
571 my_apparent_addr = ntohl(get_uint32(my_addr_ptr));
574 n_other_addrs = (uint8_t) *cp++;
575 while (n_other_addrs && cp < end-2) {
576 /* Consider all the other addresses; if any matches, this connection is
577 * "canonical." */
578 tor_addr_t addr;
579 const uint8_t *next =
580 decode_address_from_payload(&addr, cp, (int)(end-cp));
581 if (next == NULL) {
582 log_fn(LOG_PROTOCOL_WARN, LD_OR,
583 "Bad address in netinfo cell; closing connection.");
584 connection_mark_for_close(TO_CONN(conn));
585 return;
587 if (tor_addr_eq(&addr, &conn->real_addr)) {
588 conn->is_canonical = 1;
589 break;
591 cp = next;
592 --n_other_addrs;
595 /* Act on apparent skew. */
596 /** Warn when we get a netinfo skew with at least this value. */
597 #define NETINFO_NOTICE_SKEW 3600
598 if (labs(apparent_skew) > NETINFO_NOTICE_SKEW &&
599 router_get_by_digest(conn->identity_digest)) {
600 char dbuf[64];
601 int severity;
602 /*XXXX be smarter about when everybody says we are skewed. */
603 if (router_digest_is_trusted_dir(conn->identity_digest))
604 severity = LOG_WARN;
605 else
606 severity = LOG_INFO;
607 format_time_interval(dbuf, sizeof(dbuf), apparent_skew);
608 log_fn(severity, LD_GENERAL, "Received NETINFO cell with skewed time from "
609 "server at %s:%d. It seems that our clock is %s by %s, or "
610 "that theirs is %s. Tor requires an accurate clock to work: "
611 "please check your time and date settings.",
612 conn->_base.address, (int)conn->_base.port,
613 apparent_skew>0 ? "ahead" : "behind", dbuf,
614 apparent_skew>0 ? "behind" : "ahead");
615 if (severity == LOG_WARN) /* only tell the controller if an authority */
616 control_event_general_status(LOG_WARN,
617 "CLOCK_SKEW SKEW=%ld SOURCE=OR:%s:%d",
618 apparent_skew,
619 conn->_base.address, conn->_base.port);
622 /* XXX maybe act on my_apparent_addr, if the source is sufficiently
623 * trustworthy. */
625 if (connection_or_set_state_open(conn)<0)
626 connection_mark_for_close(TO_CONN(conn));
627 else
628 log_info(LD_OR, "Got good NETINFO cell from %s:%d; OR connection is now "
629 "open, using protocol version %d",
630 safe_str(conn->_base.address), conn->_base.port,
631 (int)conn->link_proto);
632 assert_connection_ok(TO_CONN(conn),time(NULL));