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-2013, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * \brief Launch the right sort of circuits and attach streams to them.
13 #include "addressmap.h"
15 #include "circpathbias.h"
16 #include "circuitbuild.h"
17 #include "circuitlist.h"
18 #include "circuitstats.h"
19 #include "circuituse.h"
21 #include "connection.h"
22 #include "connection_edge.h"
24 #include "entrynodes.h"
26 #include "networkstatus.h"
28 #include "rendclient.h"
29 #include "rendcommon.h"
30 #include "rendservice.h"
33 #include "routerlist.h"
35 static void circuit_expire_old_circuits_clientside(void);
36 static void circuit_increment_failure_count(void);
38 /** Return 1 if <b>circ</b> could be returned by circuit_get_best().
42 circuit_is_acceptable(const origin_circuit_t
*origin_circ
,
43 const entry_connection_t
*conn
,
44 int must_be_open
, uint8_t purpose
,
45 int need_uptime
, int need_internal
,
48 const circuit_t
*circ
= TO_CIRCUIT(origin_circ
);
49 const node_t
*exitnode
;
50 cpath_build_state_t
*build_state
;
53 tor_assert(conn
->socks_request
);
55 if (must_be_open
&& (circ
->state
!= CIRCUIT_STATE_OPEN
|| !circ
->n_chan
))
56 return 0; /* ignore non-open circs */
57 if (circ
->marked_for_close
)
60 /* if this circ isn't our purpose, skip. */
61 if (purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
&& !must_be_open
) {
62 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_ESTABLISH_REND
&&
63 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_READY
&&
64 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
&&
65 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_JOINED
)
67 } else if (purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
&&
69 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_INTRODUCING
&&
70 circ
->purpose
!= CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
73 if (purpose
!= circ
->purpose
)
77 /* If this is a timed-out hidden service circuit, skip it. */
78 if (origin_circ
->hs_circ_has_timed_out
) {
82 if (purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
83 purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
) {
84 if (circ
->timestamp_dirty
&&
85 circ
->timestamp_dirty
+get_options()->MaxCircuitDirtiness
<= now
)
89 if (origin_circ
->unusable_for_new_conns
)
92 /* decide if this circ is suitable for this conn */
94 /* for rend circs, circ->cpath->prev is not the last router in the
95 * circuit, it's the magical extra bob hop. so just check the nickname
96 * of the one we meant to finish at.
98 build_state
= origin_circ
->build_state
;
99 exitnode
= build_state_get_exit_node(build_state
);
101 if (need_uptime
&& !build_state
->need_uptime
)
103 if (need_internal
!= build_state
->is_internal
)
106 if (purpose
== CIRCUIT_PURPOSE_C_GENERAL
) {
108 const int family
= tor_addr_parse(&addr
, conn
->socks_request
->address
);
109 if (!exitnode
&& !build_state
->onehop_tunnel
) {
110 log_debug(LD_CIRC
,"Not considering circuit with unknown router.");
111 return 0; /* this circuit is screwed and doesn't know it yet,
112 * or is a rendezvous circuit. */
114 if (build_state
->onehop_tunnel
) {
115 if (!conn
->want_onehop
) {
116 log_debug(LD_CIRC
,"Skipping one-hop circuit.");
119 tor_assert(conn
->chosen_exit_name
);
120 if (build_state
->chosen_exit
) {
121 char digest
[DIGEST_LEN
];
122 if (hexdigest_to_digest(conn
->chosen_exit_name
, digest
) < 0)
123 return 0; /* broken digest, we don't want it */
124 if (tor_memneq(digest
, build_state
->chosen_exit
->identity_digest
,
126 return 0; /* this is a circuit to somewhere else */
127 if (tor_digest_is_zero(digest
)) {
128 /* we don't know the digest; have to compare addr:port */
130 !tor_addr_eq(&build_state
->chosen_exit
->addr
, &addr
) ||
131 build_state
->chosen_exit
->port
!= conn
->socks_request
->port
)
136 if (conn
->want_onehop
) {
137 /* don't use three-hop circuits -- that could hurt our anonymity. */
141 if (origin_circ
->prepend_policy
&& family
!= -1) {
142 int r
= compare_tor_addr_to_addr_policy(&addr
,
143 conn
->socks_request
->port
,
144 origin_circ
->prepend_policy
);
145 if (r
== ADDR_POLICY_REJECTED
)
148 if (exitnode
&& !connection_ap_can_use_exit(conn
, exitnode
)) {
149 /* can't exit from this router */
152 } else { /* not general */
153 const edge_connection_t
*edge_conn
= ENTRY_TO_EDGE_CONN(conn
);
154 if ((edge_conn
->rend_data
&& !origin_circ
->rend_data
) ||
155 (!edge_conn
->rend_data
&& origin_circ
->rend_data
) ||
156 (edge_conn
->rend_data
&& origin_circ
->rend_data
&&
157 rend_cmp_service_ids(edge_conn
->rend_data
->onion_address
,
158 origin_circ
->rend_data
->onion_address
))) {
159 /* this circ is not for this conn */
164 if (!connection_edge_compatible_with_circuit(conn
, origin_circ
)) {
165 /* conn needs to be isolated from other conns that have already used
173 /** Return 1 if circuit <b>a</b> is better than circuit <b>b</b> for
174 * <b>conn</b>, and return 0 otherwise. Used by circuit_get_best.
177 circuit_is_better(const origin_circuit_t
*oa
, const origin_circuit_t
*ob
,
178 const entry_connection_t
*conn
)
180 const circuit_t
*a
= TO_CIRCUIT(oa
);
181 const circuit_t
*b
= TO_CIRCUIT(ob
);
182 const uint8_t purpose
= ENTRY_TO_CONN(conn
)->purpose
;
185 /* If one of the circuits was allowed to live due to relaxing its timeout,
186 * it is definitely worse (it's probably a much slower path). */
187 if (oa
->relaxed_timeout
&& !ob
->relaxed_timeout
)
188 return 0; /* ob is better. It's not relaxed. */
189 if (!oa
->relaxed_timeout
&& ob
->relaxed_timeout
)
190 return 1; /* oa is better. It's not relaxed. */
193 case CIRCUIT_PURPOSE_C_GENERAL
:
194 /* if it's used but less dirty it's best;
195 * else if it's more recently created it's best
197 if (b
->timestamp_dirty
) {
198 if (a
->timestamp_dirty
&&
199 a
->timestamp_dirty
> b
->timestamp_dirty
)
202 if (a
->timestamp_dirty
||
203 timercmp(&a
->timestamp_began
, &b
->timestamp_began
, >))
205 if (ob
->build_state
->is_internal
)
206 /* XXX023 what the heck is this internal thing doing here. I
207 * think we can get rid of it. circuit_is_acceptable() already
208 * makes sure that is_internal is exactly what we need it to
213 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
214 /* the closer it is to ack_wait the better it is */
215 if (a
->purpose
> b
->purpose
)
218 case CIRCUIT_PURPOSE_C_REND_JOINED
:
219 /* the closer it is to rend_joined the better it is */
220 if (a
->purpose
> b
->purpose
)
225 /* XXXX023 Maybe this check should get a higher priority to avoid
226 * using up circuits too rapidly. */
228 a_bits
= connection_edge_update_circuit_isolation(conn
,
229 (origin_circuit_t
*)oa
, 1);
230 b_bits
= connection_edge_update_circuit_isolation(conn
,
231 (origin_circuit_t
*)ob
, 1);
232 /* if x_bits < 0, then we have not used x for anything; better not to dirty
233 * a connection if we can help it. */
236 } else if (b_bits
< 0) {
239 a_bits
&= ~ oa
->isolation_flags_mixed
;
240 a_bits
&= ~ ob
->isolation_flags_mixed
;
241 if (n_bits_set_u8(a_bits
) < n_bits_set_u8(b_bits
)) {
242 /* The fewer new restrictions we need to make on a circuit for stream
243 * isolation, the better. */
250 /** Find the best circ that conn can use, preferably one which is
251 * dirty. Circ must not be too old.
253 * Conn must be defined.
255 * If must_be_open, ignore circs not in CIRCUIT_STATE_OPEN.
257 * circ_purpose specifies what sort of circuit we must have.
258 * It can be C_GENERAL, C_INTRODUCE_ACK_WAIT, or C_REND_JOINED.
260 * If it's REND_JOINED and must_be_open==0, then return the closest
261 * rendezvous-purposed circuit that you can find.
263 * If it's INTRODUCE_ACK_WAIT and must_be_open==0, then return the
264 * closest introduce-purposed circuit that you can find.
266 static origin_circuit_t
*
267 circuit_get_best(const entry_connection_t
*conn
,
268 int must_be_open
, uint8_t purpose
,
269 int need_uptime
, int need_internal
)
271 origin_circuit_t
*best
=NULL
;
273 int intro_going_on_but_too_old
= 0;
277 tor_assert(purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
278 purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
||
279 purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
);
281 tor_gettimeofday(&now
);
283 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
284 origin_circuit_t
*origin_circ
;
285 if (!CIRCUIT_IS_ORIGIN(circ
))
287 origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
289 /* Log an info message if we're going to launch a new intro circ in
291 if (purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
&&
292 !must_be_open
&& origin_circ
->hs_circ_has_timed_out
) {
293 intro_going_on_but_too_old
= 1;
297 if (!circuit_is_acceptable(origin_circ
,conn
,must_be_open
,purpose
,
298 need_uptime
,need_internal
, (time_t)now
.tv_sec
))
301 /* now this is an acceptable circ to hand back. but that doesn't
302 * mean it's the *best* circ to hand back. try to decide.
304 if (!best
|| circuit_is_better(origin_circ
,best
,conn
))
307 SMARTLIST_FOREACH_END(circ
);
309 if (!best
&& intro_going_on_but_too_old
)
310 log_info(LD_REND
|LD_CIRC
, "There is an intro circuit being created "
311 "right now, but it has already taken quite a while. Starting "
317 /** Return the number of not-yet-open general-purpose origin circuits. */
319 count_pending_general_client_circuits(void)
323 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
324 if (circ
->marked_for_close
||
325 circ
->state
== CIRCUIT_STATE_OPEN
||
326 circ
->purpose
!= CIRCUIT_PURPOSE_C_GENERAL
||
327 !CIRCUIT_IS_ORIGIN(circ
))
332 SMARTLIST_FOREACH_END(circ
);
338 /** Check whether, according to the policies in <b>options</b>, the
339 * circuit <b>circ</b> makes sense. */
340 /* XXXX currently only checks Exclude{Exit}Nodes; it should check more.
341 * Also, it doesn't have the right definition of an exit circuit. Also,
342 * it's never called. */
344 circuit_conforms_to_options(const origin_circuit_t
*circ
,
345 const or_options_t
*options
)
347 const crypt_path_t
*cpath
, *cpath_next
= NULL
;
349 /* first check if it includes any excluded nodes */
350 for (cpath
= circ
->cpath
; cpath_next
!= circ
->cpath
; cpath
= cpath_next
) {
351 cpath_next
= cpath
->next
;
352 if (routerset_contains_extendinfo(options
->ExcludeNodes
,
357 /* then consider the final hop */
358 if (routerset_contains_extendinfo(options
->ExcludeExitNodes
,
359 circ
->cpath
->prev
->extend_info
))
366 /** Close all circuits that start at us, aren't open, and were born
367 * at least CircuitBuildTimeout seconds ago.
370 circuit_expire_building(void)
372 /* circ_times.timeout_ms and circ_times.close_ms are from
373 * circuit_build_times_get_initial_timeout() if we haven't computed
374 * custom timeouts yet */
375 struct timeval general_cutoff
, begindir_cutoff
, fourhop_cutoff
,
376 close_cutoff
, extremely_old_cutoff
, hs_extremely_old_cutoff
,
377 cannibalized_cutoff
, c_intro_cutoff
, s_intro_cutoff
, stream_cutoff
;
378 const or_options_t
*options
= get_options();
380 cpath_build_state_t
*build_state
;
381 int any_opened_circs
= 0;
383 tor_gettimeofday(&now
);
385 /* Check to see if we have any opened circuits. If we don't,
386 * we want to be more lenient with timeouts, in case the
387 * user has relocated and/or changed network connections.
389 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, next_circ
) {
390 if (!CIRCUIT_IS_ORIGIN(next_circ
) || /* didn't originate here */
391 next_circ
->marked_for_close
) { /* don't mess with marked circs */
395 if (TO_ORIGIN_CIRCUIT(next_circ
)->has_opened
&&
396 next_circ
->state
== CIRCUIT_STATE_OPEN
&&
397 TO_ORIGIN_CIRCUIT(next_circ
)->build_state
&&
398 TO_ORIGIN_CIRCUIT(next_circ
)->build_state
->desired_path_len
399 == DEFAULT_ROUTE_LEN
) {
400 any_opened_circs
= 1;
403 } SMARTLIST_FOREACH_END(next_circ
);
405 #define SET_CUTOFF(target, msec) do { \
406 long ms = tor_lround(msec); \
407 struct timeval diff; \
408 diff.tv_sec = ms / 1000; \
409 diff.tv_usec = (int)((ms % 1000) * 1000); \
410 timersub(&now, &diff, &target); \
414 * Because circuit build timeout is calculated only based on 3 hop
415 * general purpose circuit construction, we need to scale the timeout
416 * to make it properly apply to longer circuits, and circuits of
417 * certain usage types. The following diagram illustrates how we
418 * derive the scaling below. In short, we calculate the number
419 * of times our telescoping-based circuit construction causes cells
420 * to traverse each link for the circuit purpose types in question,
421 * and then assume each link is equivalent.
423 * OP --a--> A --b--> B --c--> C
424 * OP --a--> A --b--> B --c--> C --d--> D
426 * Let h = a = b = c = d
428 * Three hops (general_cutoff)
435 * RTTs = 4a + 3b + 2c + d
437 * Client INTRODUCE1+ACK: // XXX: correct?
438 * RTTs = 5a + 4b + 3c + 2d
441 * RTTs = 4a + 3b + 2c
444 SET_CUTOFF(general_cutoff
, get_circuit_build_timeout_ms());
445 SET_CUTOFF(begindir_cutoff
, get_circuit_build_timeout_ms());
447 /* > 3hop circs seem to have a 1.0 second delay on their cannibalized
449 SET_CUTOFF(fourhop_cutoff
, get_circuit_build_timeout_ms() * (10/6.0) + 1000);
451 /* CIRCUIT_PURPOSE_C_ESTABLISH_REND behaves more like a RELAY cell.
452 * Use the stream cutoff (more or less). */
453 SET_CUTOFF(stream_cutoff
, MAX(options
->CircuitStreamTimeout
,15)*1000 + 1000);
455 /* Be lenient with cannibalized circs. They already survived the official
456 * CBT, and they're usually not performance-critical. */
457 SET_CUTOFF(cannibalized_cutoff
,
458 MAX(get_circuit_build_close_time_ms()*(4/6.0),
459 options
->CircuitStreamTimeout
* 1000) + 1000);
461 /* Intro circs have an extra round trip (and are also 4 hops long) */
462 SET_CUTOFF(c_intro_cutoff
, get_circuit_build_timeout_ms() * (14/6.0) + 1000);
464 /* Server intro circs have an extra round trip */
465 SET_CUTOFF(s_intro_cutoff
, get_circuit_build_timeout_ms() * (9/6.0) + 1000);
467 SET_CUTOFF(close_cutoff
, get_circuit_build_close_time_ms());
468 SET_CUTOFF(extremely_old_cutoff
, get_circuit_build_close_time_ms()*2 + 1000);
470 SET_CUTOFF(hs_extremely_old_cutoff
,
471 MAX(get_circuit_build_close_time_ms()*2 + 1000,
472 options
->SocksTimeout
* 1000));
474 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*,victim
) {
475 struct timeval cutoff
;
476 if (!CIRCUIT_IS_ORIGIN(victim
) || /* didn't originate here */
477 victim
->marked_for_close
) /* don't mess with marked circs */
480 /* If we haven't yet started the first hop, it means we don't have
481 * any orconns available, and thus have not started counting time yet
482 * for this circuit. See circuit_deliver_create_cell() and uses of
485 * Continue to wait in this case. The ORConn should timeout
486 * independently and kill us then.
488 if (TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
== CPATH_STATE_CLOSED
) {
492 build_state
= TO_ORIGIN_CIRCUIT(victim
)->build_state
;
493 if (build_state
&& build_state
->onehop_tunnel
)
494 cutoff
= begindir_cutoff
;
495 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
)
496 cutoff
= close_cutoff
;
497 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
||
498 victim
->purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
499 cutoff
= c_intro_cutoff
;
500 else if (victim
->purpose
== CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
)
501 cutoff
= s_intro_cutoff
;
502 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
)
503 cutoff
= stream_cutoff
;
504 else if (victim
->purpose
== CIRCUIT_PURPOSE_PATH_BIAS_TESTING
)
505 cutoff
= close_cutoff
;
506 else if (TO_ORIGIN_CIRCUIT(victim
)->has_opened
&&
507 victim
->state
!= CIRCUIT_STATE_OPEN
)
508 cutoff
= cannibalized_cutoff
;
509 else if (build_state
&& build_state
->desired_path_len
>= 4)
510 cutoff
= fourhop_cutoff
;
512 cutoff
= general_cutoff
;
514 if (TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
)
515 cutoff
= hs_extremely_old_cutoff
;
517 if (timercmp(&victim
->timestamp_began
, &cutoff
, >))
518 continue; /* it's still young, leave it alone */
520 /* We need to double-check the opened state here because
521 * we don't want to consider opened 1-hop dircon circuits for
522 * deciding when to relax the timeout, but we *do* want to relax
523 * those circuits too if nothing else is opened *and* they still
525 if (!any_opened_circs
&& victim
->state
!= CIRCUIT_STATE_OPEN
) {
526 /* It's still young enough that we wouldn't close it, right? */
527 if (timercmp(&victim
->timestamp_began
, &close_cutoff
, >)) {
528 if (!TO_ORIGIN_CIRCUIT(victim
)->relaxed_timeout
) {
529 int first_hop_succeeded
= TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
532 "No circuits are opened. Relaxing timeout for circuit %d "
533 "(a %s %d-hop circuit in state %s with channel state %s). "
534 "%d guards are live.",
535 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
536 circuit_purpose_to_string(victim
->purpose
),
537 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
538 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
540 circuit_state_to_string(victim
->state
),
541 channel_state_to_string(victim
->n_chan
->state
),
542 num_live_entry_guards(0));
544 /* We count the timeout here for CBT, because technically this
545 * was a timeout, and the timeout value needs to reset if we
546 * see enough of them. Note this means we also need to avoid
547 * double-counting below, too. */
548 circuit_build_times_count_timeout(get_circuit_build_times_mutable(),
549 first_hop_succeeded
);
550 TO_ORIGIN_CIRCUIT(victim
)->relaxed_timeout
= 1;
554 static ratelim_t relax_timeout_limit
= RATELIM_INIT(3600);
555 const double build_close_ms
= get_circuit_build_close_time_ms();
556 log_fn_ratelim(&relax_timeout_limit
, LOG_NOTICE
, LD_CIRC
,
557 "No circuits are opened. Relaxed timeout for circuit %d "
558 "(a %s %d-hop circuit in state %s with channel state %s) to "
559 "%ldms. However, it appears the circuit has timed out "
560 "anyway. %d guards are live.",
561 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
562 circuit_purpose_to_string(victim
->purpose
),
563 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
564 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
566 circuit_state_to_string(victim
->state
),
567 channel_state_to_string(victim
->n_chan
->state
),
568 (long)build_close_ms
,
569 num_live_entry_guards(0));
574 /* some debug logs, to help track bugs */
575 if (victim
->purpose
>= CIRCUIT_PURPOSE_C_INTRODUCING
&&
576 victim
->purpose
<= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
) {
577 if (!victim
->timestamp_dirty
)
578 log_fn(LOG_DEBUG
,"Considering %sopen purpose %d to %s (circid %d)."
580 victim
->state
== CIRCUIT_STATE_OPEN
? "" : "non",
581 victim
->purpose
, victim
->build_state
->chosen_exit_name
,
584 log_fn(LOG_DEBUG
,"Considering %sopen purpose %d to %s (circid %d). "
585 "%d secs since dirty.",
586 victim
->state
== CIRCUIT_STATE_OPEN
? "" : "non",
587 victim
->purpose
, victim
->build_state
->chosen_exit_name
,
589 (int)(now
- victim
->timestamp_dirty
));
593 /* if circ is !open, or if it's open but purpose is a non-finished
594 * intro or rend, then mark it for close */
595 if (victim
->state
== CIRCUIT_STATE_OPEN
) {
596 switch (victim
->purpose
) {
597 default: /* most open circuits can be left alone. */
598 continue; /* yes, continue inside a switch refers to the nearest
599 * enclosing loop. C is smart. */
600 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
601 break; /* too old, need to die */
602 case CIRCUIT_PURPOSE_C_REND_READY
:
603 /* it's a rend_ready circ -- has it already picked a query? */
604 /* c_rend_ready circs measure age since timestamp_dirty,
605 * because that's set when they switch purposes
607 if (TO_ORIGIN_CIRCUIT(victim
)->rend_data
||
608 victim
->timestamp_dirty
> cutoff
.tv_sec
)
611 case CIRCUIT_PURPOSE_PATH_BIAS_TESTING
:
612 /* Open path bias testing circuits are given a long
613 * time to complete the test, but not forever */
614 TO_ORIGIN_CIRCUIT(victim
)->path_state
= PATH_STATE_USE_FAILED
;
616 case CIRCUIT_PURPOSE_C_INTRODUCING
:
617 /* We keep old introducing circuits around for
618 * a while in parallel, and they can end up "opened".
619 * We decide below if we're going to mark them timed
620 * out and eventually close them.
623 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
624 case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
:
625 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
626 /* rend and intro circs become dirty each time they
627 * make an introduction attempt. so timestamp_dirty
628 * will reflect the time since the last attempt.
630 if (victim
->timestamp_dirty
> cutoff
.tv_sec
)
634 } else { /* circuit not open, consider recording failure as timeout */
635 int first_hop_succeeded
= TO_ORIGIN_CIRCUIT(victim
)->cpath
&&
636 TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
== CPATH_STATE_OPEN
;
638 if (TO_ORIGIN_CIRCUIT(victim
)->p_streams
!= NULL
) {
639 log_warn(LD_BUG
, "Circuit %d (purpose %d, %s) has timed out, "
640 "yet has attached streams!",
641 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
643 circuit_purpose_to_string(victim
->purpose
));
644 tor_fragile_assert();
648 if (circuit_timeout_want_to_count_circ(TO_ORIGIN_CIRCUIT(victim
)) &&
649 circuit_build_times_enough_to_compute(get_circuit_build_times())) {
650 /* Circuits are allowed to last longer for measurement.
651 * Switch their purpose and wait. */
652 if (victim
->purpose
!= CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
) {
653 control_event_circuit_status(TO_ORIGIN_CIRCUIT(victim
),
655 END_CIRC_REASON_TIMEOUT
);
656 circuit_change_purpose(victim
, CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
);
657 /* Record this failure to check for too many timeouts
658 * in a row. This function does not record a time value yet
659 * (we do that later); it only counts the fact that we did
660 * have a timeout. We also want to avoid double-counting
661 * already "relaxed" circuits, which are counted above. */
662 if (!TO_ORIGIN_CIRCUIT(victim
)->relaxed_timeout
) {
663 circuit_build_times_count_timeout(
664 get_circuit_build_times_mutable(),
665 first_hop_succeeded
);
671 * If the circuit build time is much greater than we would have cut
672 * it off at, we probably had a suspend event along this codepath,
673 * and we should discard the value.
675 if (timercmp(&victim
->timestamp_began
, &extremely_old_cutoff
, <)) {
677 "Extremely large value for circuit build timeout: %lds. "
678 "Assuming clock jump. Purpose %d (%s)",
679 (long)(now
.tv_sec
- victim
->timestamp_began
.tv_sec
),
681 circuit_purpose_to_string(victim
->purpose
));
682 } else if (circuit_build_times_count_close(
683 get_circuit_build_times_mutable(),
685 (time_t)victim
->timestamp_created
.tv_sec
)) {
686 circuit_build_times_set_timeout(get_circuit_build_times_mutable());
691 /* If this is a hidden service client circuit which is far enough
692 * along in connecting to its destination, and we haven't already
693 * flagged it as 'timed out', and the user has not told us to
694 * close such circs immediately on timeout, flag it as 'timed out'
695 * so we'll launch another intro or rend circ, but don't mark it
698 * (Circs flagged as 'timed out' are given a much longer timeout
699 * period above, so we won't close them in the next call to
700 * circuit_expire_building.) */
701 if (!(options
->CloseHSClientCircuitsImmediatelyOnTimeout
) &&
702 !(TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
)) {
703 switch (victim
->purpose
) {
704 case CIRCUIT_PURPOSE_C_REND_READY
:
705 /* We only want to spare a rend circ if it has been specified in
706 * an INTRODUCE1 cell sent to a hidden service. A circ's
707 * pending_final_cpath field is non-NULL iff it is a rend circ
708 * and we have tried to send an INTRODUCE1 cell specifying it.
709 * Thus, if the pending_final_cpath field *is* NULL, then we
710 * want to not spare it. */
711 if (TO_ORIGIN_CIRCUIT(victim
)->build_state
&&
712 TO_ORIGIN_CIRCUIT(victim
)->build_state
->pending_final_cpath
==
716 case CIRCUIT_PURPOSE_C_INTRODUCING
:
717 /* connection_ap_handshake_attach_circuit() will relaunch for us */
718 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
719 case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
:
720 /* If we have reached this line, we want to spare the circ for now. */
721 log_info(LD_CIRC
,"Marking circ %u (state %d:%s, purpose %d) "
722 "as timed-out HS circ",
723 (unsigned)victim
->n_circ_id
,
724 victim
->state
, circuit_state_to_string(victim
->state
),
726 TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
= 1;
733 /* If this is a service-side rendezvous circuit which is far
734 * enough along in connecting to its destination, consider sparing
736 if (!(options
->CloseHSServiceRendCircuitsImmediatelyOnTimeout
) &&
737 !(TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
) &&
738 victim
->purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
) {
739 log_info(LD_CIRC
,"Marking circ %u (state %d:%s, purpose %d) "
740 "as timed-out HS circ; relaunching rendezvous attempt.",
741 (unsigned)victim
->n_circ_id
,
742 victim
->state
, circuit_state_to_string(victim
->state
),
744 TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
= 1;
745 rend_service_relaunch_rendezvous(TO_ORIGIN_CIRCUIT(victim
));
751 "Abandoning circ %u %s:%u (state %d,%d:%s, purpose %d, "
752 "len %d)", TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
753 channel_get_canonical_remote_descr(victim
->n_chan
),
754 (unsigned)victim
->n_circ_id
,
755 TO_ORIGIN_CIRCUIT(victim
)->has_opened
,
756 victim
->state
, circuit_state_to_string(victim
->state
),
758 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
759 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
763 "Abandoning circ %u %u (state %d,%d:%s, purpose %d, len %d)",
764 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
765 (unsigned)victim
->n_circ_id
,
766 TO_ORIGIN_CIRCUIT(victim
)->has_opened
,
768 circuit_state_to_string(victim
->state
), victim
->purpose
,
769 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
770 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
773 circuit_log_path(LOG_INFO
,LD_CIRC
,TO_ORIGIN_CIRCUIT(victim
));
774 if (victim
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
)
775 circuit_mark_for_close(victim
, END_CIRC_REASON_MEASUREMENT_EXPIRED
);
777 circuit_mark_for_close(victim
, END_CIRC_REASON_TIMEOUT
);
779 pathbias_count_timeout(TO_ORIGIN_CIRCUIT(victim
));
780 } SMARTLIST_FOREACH_END(victim
);
783 /** For debugging #8387: track when we last called
784 * circuit_expire_old_circuits_clientside. */
785 static time_t last_expired_clientside_circuits
= 0;
788 * As a diagnostic for bug 8387, log information about how many one-hop
789 * circuits we have around that have been there for at least <b>age</b>
790 * seconds. Log a few of them.
793 circuit_log_ancient_one_hop_circuits(int age
)
795 #define MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG 10
796 time_t now
= time(NULL
);
797 time_t cutoff
= now
- age
;
799 smartlist_t
*log_these
= smartlist_new();
801 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
802 const origin_circuit_t
*ocirc
;
803 if (! CIRCUIT_IS_ORIGIN(circ
))
805 if (circ
->timestamp_created
.tv_sec
>= cutoff
)
807 ocirc
= CONST_TO_ORIGIN_CIRCUIT(circ
);
809 if (ocirc
->build_state
&& ocirc
->build_state
->onehop_tunnel
) {
812 if (smartlist_len(log_these
) < MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG
)
813 smartlist_add(log_these
, (origin_circuit_t
*) ocirc
);
816 SMARTLIST_FOREACH_END(circ
);
821 log_notice(LD_HEARTBEAT
,
822 "Diagnostic for issue 8387: Found %d one-hop circuits more "
823 "than %d seconds old! Logging %d...",
824 n_found
, age
, smartlist_len(log_these
));
826 SMARTLIST_FOREACH_BEGIN(log_these
, const origin_circuit_t
*, ocirc
) {
827 char created
[ISO_TIME_LEN
+1];
829 const edge_connection_t
*conn
;
831 const circuit_t
*circ
= TO_CIRCUIT(ocirc
);
833 format_local_iso_time(created
,
834 (time_t)circ
->timestamp_created
.tv_sec
);
836 if (circ
->timestamp_dirty
) {
837 char dirty_since
[ISO_TIME_LEN
+1];
838 format_local_iso_time(dirty_since
, circ
->timestamp_dirty
);
840 tor_asprintf(&dirty
, "Dirty since %s (%ld seconds vs %ld-second cutoff)",
841 dirty_since
, (long)(now
- circ
->timestamp_dirty
),
842 (long) get_options()->MaxCircuitDirtiness
);
844 dirty
= tor_strdup("Not marked dirty");
847 log_notice(LD_HEARTBEAT
, " #%d created at %s. %s, %s. %s for close. "
848 "%s for new conns. %s.",
851 circuit_state_to_string(circ
->state
),
852 circuit_purpose_to_string(circ
->purpose
),
853 circ
->marked_for_close
? "Marked" : "Not marked",
854 ocirc
->unusable_for_new_conns
? "Not usable" : "usable",
859 for (conn
= ocirc
->p_streams
; conn
; conn
= conn
->next_stream
) {
860 const connection_t
*c
= TO_CONN(conn
);
861 char stream_created
[ISO_TIME_LEN
+1];
862 if (++stream_num
>= 5)
865 format_local_iso_time(stream_created
, c
->timestamp_created
);
867 log_notice(LD_HEARTBEAT
, " Stream#%d created at %s. "
868 "%s conn in state %s. "
869 "%s for close (%s:%d). Hold-open is %sset. "
870 "Has %ssent RELAY_END. %s on circuit.",
873 conn_type_to_string(c
->type
),
874 conn_state_to_string(c
->type
, c
->state
),
875 c
->marked_for_close
? "Marked" : "Not marked",
876 c
->marked_for_close_file
? c
->marked_for_close_file
: "--",
878 c
->hold_open_until_flushed
? "" : "not ",
879 conn
->edge_has_sent_end
? "" : "not ",
880 conn
->edge_blocked_on_circ
? "Blocked" : "Not blocked");
881 if (! c
->linked_conn
)
886 log_notice(LD_HEARTBEAT
, " Linked to %s connection in state %s "
887 "(Purpose %d). %s for close (%s:%d). Hold-open is %sset. ",
888 conn_type_to_string(c
->type
),
889 conn_state_to_string(c
->type
, c
->state
),
891 c
->marked_for_close
? "Marked" : "Not marked",
892 c
->marked_for_close_file
? c
->marked_for_close_file
: "--",
894 c
->hold_open_until_flushed
? "" : "not ");
896 } SMARTLIST_FOREACH_END(ocirc
);
898 log_notice(LD_HEARTBEAT
, "It has been %ld seconds since I last called "
899 "circuit_expire_old_circuits_clientside().",
900 (long)(now
- last_expired_clientside_circuits
));
903 smartlist_free(log_these
);
906 /** Remove any elements in <b>needed_ports</b> that are handled by an
907 * open or in-progress circuit.
910 circuit_remove_handled_ports(smartlist_t
*needed_ports
)
915 for (i
= 0; i
< smartlist_len(needed_ports
); ++i
) {
916 port
= smartlist_get(needed_ports
, i
);
918 if (circuit_stream_is_being_handled(NULL
, *port
,
919 MIN_CIRCUITS_HANDLING_STREAM
)) {
920 // log_debug(LD_CIRC,"Port %d is already being handled; removing.", port);
921 smartlist_del(needed_ports
, i
--);
924 log_debug(LD_CIRC
,"Port %d is not handled.", *port
);
929 /** Return 1 if at least <b>min</b> general-purpose non-internal circuits
930 * will have an acceptable exit node for exit stream <b>conn</b> if it
931 * is defined, else for "*:port".
935 circuit_stream_is_being_handled(entry_connection_t
*conn
,
936 uint16_t port
, int min
)
938 const node_t
*exitnode
;
940 time_t now
= time(NULL
);
941 int need_uptime
= smartlist_contains_int_as_string(
942 get_options()->LongLivedPorts
,
943 conn
? conn
->socks_request
->port
: port
);
945 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
946 if (CIRCUIT_IS_ORIGIN(circ
) &&
947 !circ
->marked_for_close
&&
948 circ
->purpose
== CIRCUIT_PURPOSE_C_GENERAL
&&
949 (!circ
->timestamp_dirty
||
950 circ
->timestamp_dirty
+ get_options()->MaxCircuitDirtiness
> now
)) {
951 origin_circuit_t
*origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
952 cpath_build_state_t
*build_state
= origin_circ
->build_state
;
953 if (build_state
->is_internal
|| build_state
->onehop_tunnel
)
955 if (origin_circ
->unusable_for_new_conns
)
958 exitnode
= build_state_get_exit_node(build_state
);
959 if (exitnode
&& (!need_uptime
|| build_state
->need_uptime
)) {
962 ok
= connection_ap_can_use_exit(conn
, exitnode
);
964 addr_policy_result_t r
;
965 r
= compare_tor_addr_to_node_policy(NULL
, port
, exitnode
);
966 ok
= r
!= ADDR_POLICY_REJECTED
&& r
!= ADDR_POLICY_PROBABLY_REJECTED
;
975 SMARTLIST_FOREACH_END(circ
);
979 /** Don't keep more than this many unused open circuits around. */
980 #define MAX_UNUSED_OPEN_CIRCUITS 14
982 /** Figure out how many circuits we have open that are clean. Make
983 * sure it's enough for all the upcoming behaviors we predict we'll have.
984 * But put an upper bound on the total number of circuits.
987 circuit_predict_and_launch_new(void)
989 int num
=0, num_internal
=0, num_uptime_internal
=0;
990 int hidserv_needs_uptime
=0, hidserv_needs_capacity
=1;
991 int port_needs_uptime
=0, port_needs_capacity
=1;
992 time_t now
= time(NULL
);
995 /* First, count how many of each type of circuit we have already. */
996 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
997 cpath_build_state_t
*build_state
;
998 origin_circuit_t
*origin_circ
;
999 if (!CIRCUIT_IS_ORIGIN(circ
))
1001 if (circ
->marked_for_close
)
1002 continue; /* don't mess with marked circs */
1003 if (circ
->timestamp_dirty
)
1004 continue; /* only count clean circs */
1005 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_GENERAL
)
1006 continue; /* only pay attention to general-purpose circs */
1007 origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
1008 if (origin_circ
->unusable_for_new_conns
)
1010 build_state
= origin_circ
->build_state
;
1011 if (build_state
->onehop_tunnel
)
1014 if (build_state
->is_internal
)
1016 if (build_state
->need_uptime
&& build_state
->is_internal
)
1017 num_uptime_internal
++;
1019 SMARTLIST_FOREACH_END(circ
);
1021 /* If that's enough, then stop now. */
1022 if (num
>= MAX_UNUSED_OPEN_CIRCUITS
)
1023 return; /* we already have many, making more probably will hurt */
1025 /* Second, see if we need any more exit circuits. */
1026 /* check if we know of a port that's been requested recently
1027 * and no circuit is currently available that can handle it. */
1028 if (!circuit_all_predicted_ports_handled(now
, &port_needs_uptime
,
1029 &port_needs_capacity
)) {
1030 if (port_needs_uptime
)
1031 flags
|= CIRCLAUNCH_NEED_UPTIME
;
1032 if (port_needs_capacity
)
1033 flags
|= CIRCLAUNCH_NEED_CAPACITY
;
1035 "Have %d clean circs (%d internal), need another exit circ.",
1037 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1041 /* Third, see if we need any more hidden service (server) circuits. */
1042 if (num_rend_services() && num_uptime_internal
< 3) {
1043 flags
= (CIRCLAUNCH_NEED_CAPACITY
| CIRCLAUNCH_NEED_UPTIME
|
1044 CIRCLAUNCH_IS_INTERNAL
);
1046 "Have %d clean circs (%d internal), need another internal "
1047 "circ for my hidden service.",
1049 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1053 /* Fourth, see if we need any more hidden service (client) circuits. */
1054 if (rep_hist_get_predicted_internal(now
, &hidserv_needs_uptime
,
1055 &hidserv_needs_capacity
) &&
1056 ((num_uptime_internal
<2 && hidserv_needs_uptime
) ||
1058 if (hidserv_needs_uptime
)
1059 flags
|= CIRCLAUNCH_NEED_UPTIME
;
1060 if (hidserv_needs_capacity
)
1061 flags
|= CIRCLAUNCH_NEED_CAPACITY
;
1062 flags
|= CIRCLAUNCH_IS_INTERNAL
;
1064 "Have %d clean circs (%d uptime-internal, %d internal), need"
1065 " another hidden service circ.",
1066 num
, num_uptime_internal
, num_internal
);
1067 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1071 /* Finally, check to see if we still need more circuits to learn
1072 * a good build timeout. But if we're close to our max number we
1073 * want, don't do another -- we want to leave a few slots open so
1074 * we can still build circuits preemptively as needed. */
1075 if (num
< MAX_UNUSED_OPEN_CIRCUITS
-2 &&
1076 ! circuit_build_times_disabled() &&
1077 circuit_build_times_needs_circuits_now(get_circuit_build_times())) {
1078 flags
= CIRCLAUNCH_NEED_CAPACITY
;
1080 "Have %d clean circs need another buildtime test circ.", num
);
1081 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1086 /** Build a new test circuit every 5 minutes */
1087 #define TESTING_CIRCUIT_INTERVAL 300
1089 /** This function is called once a second, if router_have_min_dir_info() is
1090 * true. Its job is to make sure all services we offer have enough circuits
1091 * available. Some services just want enough circuits for current tasks,
1092 * whereas others want a minimum set of idle circuits hanging around.
1095 circuit_build_needed_circs(time_t now
)
1097 const or_options_t
*options
= get_options();
1099 /* launch a new circ for any pending streams that need one */
1100 connection_ap_attach_pending();
1102 /* make sure any hidden services have enough intro points */
1103 rend_services_introduce();
1105 circuit_expire_old_circs_as_needed(now
);
1107 if (!options
->DisablePredictedCircuits
)
1108 circuit_predict_and_launch_new();
1112 * Called once a second either directly or from
1113 * circuit_build_needed_circs(). As appropriate (once per NewCircuitPeriod)
1114 * resets failure counts and expires old circuits.
1117 circuit_expire_old_circs_as_needed(time_t now
)
1119 static time_t time_to_expire_and_reset
= 0;
1121 if (time_to_expire_and_reset
< now
) {
1122 circuit_reset_failure_count(1);
1123 time_to_expire_and_reset
= now
+ get_options()->NewCircuitPeriod
;
1124 if (proxy_mode(get_options()))
1125 addressmap_clean(now
);
1126 circuit_expire_old_circuits_clientside();
1128 #if 0 /* disable for now, until predict-and-launch-new can cull leftovers */
1130 /* If we ever re-enable, this has to move into
1131 * circuit_build_needed_circs */
1133 circ
= circuit_get_youngest_clean_open(CIRCUIT_PURPOSE_C_GENERAL
);
1134 if (get_options()->RunTesting
&&
1136 circ
->timestamp_began
.tv_sec
+ TESTING_CIRCUIT_INTERVAL
< now
) {
1137 log_fn(LOG_INFO
,"Creating a new testing circuit.");
1138 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, 0);
1144 /** If the stream <b>conn</b> is a member of any of the linked
1145 * lists of <b>circ</b>, then remove it from the list.
1148 circuit_detach_stream(circuit_t
*circ
, edge_connection_t
*conn
)
1150 edge_connection_t
*prevconn
;
1155 if (conn
->base_
.type
== CONN_TYPE_AP
) {
1156 entry_connection_t
*entry_conn
= EDGE_TO_ENTRY_CONN(conn
);
1157 entry_conn
->may_use_optimistic_data
= 0;
1159 conn
->cpath_layer
= NULL
; /* don't keep a stale pointer */
1160 conn
->on_circuit
= NULL
;
1162 if (CIRCUIT_IS_ORIGIN(circ
)) {
1163 origin_circuit_t
*origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
1164 if (conn
== origin_circ
->p_streams
) {
1165 origin_circ
->p_streams
= conn
->next_stream
;
1169 for (prevconn
= origin_circ
->p_streams
;
1170 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1171 prevconn
= prevconn
->next_stream
)
1173 if (prevconn
&& prevconn
->next_stream
) {
1174 prevconn
->next_stream
= conn
->next_stream
;
1178 or_circuit_t
*or_circ
= TO_OR_CIRCUIT(circ
);
1179 if (conn
== or_circ
->n_streams
) {
1180 or_circ
->n_streams
= conn
->next_stream
;
1183 if (conn
== or_circ
->resolving_streams
) {
1184 or_circ
->resolving_streams
= conn
->next_stream
;
1188 for (prevconn
= or_circ
->n_streams
;
1189 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1190 prevconn
= prevconn
->next_stream
)
1192 if (prevconn
&& prevconn
->next_stream
) {
1193 prevconn
->next_stream
= conn
->next_stream
;
1197 for (prevconn
= or_circ
->resolving_streams
;
1198 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1199 prevconn
= prevconn
->next_stream
)
1201 if (prevconn
&& prevconn
->next_stream
) {
1202 prevconn
->next_stream
= conn
->next_stream
;
1207 log_warn(LD_BUG
,"Edge connection not in circuit's list.");
1208 /* Don't give an error here; it's harmless. */
1209 tor_fragile_assert();
1212 /** If we haven't yet decided on a good timeout value for circuit
1213 * building, we close idles circuits aggressively so we can get more
1215 #define IDLE_TIMEOUT_WHILE_LEARNING (10*60)
1217 /** Find each circuit that has been unused for too long, or dirty
1218 * for too long and has no streams on it: mark it for close.
1221 circuit_expire_old_circuits_clientside(void)
1223 struct timeval cutoff
, now
;
1225 tor_gettimeofday(&now
);
1227 last_expired_clientside_circuits
= now
.tv_sec
;
1229 if (! circuit_build_times_disabled() &&
1230 circuit_build_times_needs_circuits(get_circuit_build_times())) {
1231 /* Circuits should be shorter lived if we need more of them
1232 * for learning a good build timeout */
1233 cutoff
.tv_sec
-= IDLE_TIMEOUT_WHILE_LEARNING
;
1235 cutoff
.tv_sec
-= get_options()->CircuitIdleTimeout
;
1238 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1239 if (circ
->marked_for_close
|| !CIRCUIT_IS_ORIGIN(circ
))
1241 /* If the circuit has been dirty for too long, and there are no streams
1242 * on it, mark it for close.
1244 if (circ
->timestamp_dirty
&&
1245 circ
->timestamp_dirty
+ get_options()->MaxCircuitDirtiness
<
1247 !TO_ORIGIN_CIRCUIT(circ
)->p_streams
/* nothing attached */ ) {
1248 log_debug(LD_CIRC
, "Closing n_circ_id %u (dirty %ld sec ago, "
1250 (unsigned)circ
->n_circ_id
,
1251 (long)(now
.tv_sec
- circ
->timestamp_dirty
),
1253 /* Don't do this magic for testing circuits. Their death is governed
1254 * by circuit_expire_building */
1255 if (circ
->purpose
!= CIRCUIT_PURPOSE_PATH_BIAS_TESTING
)
1256 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1257 } else if (!circ
->timestamp_dirty
&& circ
->state
== CIRCUIT_STATE_OPEN
) {
1258 if (timercmp(&circ
->timestamp_began
, &cutoff
, <)) {
1259 if (circ
->purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
1260 circ
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
||
1261 circ
->purpose
== CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
||
1262 circ
->purpose
== CIRCUIT_PURPOSE_TESTING
||
1263 (circ
->purpose
>= CIRCUIT_PURPOSE_C_INTRODUCING
&&
1264 circ
->purpose
<= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
) ||
1265 circ
->purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
) {
1267 "Closing circuit that has been unused for %ld msec.",
1268 tv_mdiff(&circ
->timestamp_began
, &now
));
1269 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1270 } else if (!TO_ORIGIN_CIRCUIT(circ
)->is_ancient
) {
1271 /* Server-side rend joined circuits can end up really old, because
1272 * they are reused by clients for longer than normal. The client
1273 * controls their lifespan. (They never become dirty, because
1274 * connection_exit_begin_conn() never marks anything as dirty.)
1275 * Similarly, server-side intro circuits last a long time. */
1276 if (circ
->purpose
!= CIRCUIT_PURPOSE_S_REND_JOINED
&&
1277 circ
->purpose
!= CIRCUIT_PURPOSE_S_INTRO
) {
1279 "Ancient non-dirty circuit %d is still around after "
1280 "%ld milliseconds. Purpose: %d (%s)",
1281 TO_ORIGIN_CIRCUIT(circ
)->global_identifier
,
1282 tv_mdiff(&circ
->timestamp_began
, &now
),
1284 circuit_purpose_to_string(circ
->purpose
));
1285 TO_ORIGIN_CIRCUIT(circ
)->is_ancient
= 1;
1290 } SMARTLIST_FOREACH_END(circ
);
1293 /** How long do we wait before killing circuits with the properties
1296 * Probably we could choose a number here as low as 5 to 10 seconds,
1297 * since these circs are used for begindir, and a) generally you either
1298 * ask another begindir question right after or you don't for a long time,
1299 * b) clients at least through 0.2.1.x choose from the whole set of
1300 * directory mirrors at each choice, and c) re-establishing a one-hop
1301 * circuit via create-fast is a light operation assuming the TLS conn is
1304 * I expect "b" to go away one day when we move to using directory
1305 * guards, but I think "a" and "c" are good enough reasons that a low
1306 * number is safe even then.
1308 #define IDLE_ONE_HOP_CIRC_TIMEOUT 60
1310 /** Find each non-origin circuit that has been unused for too long,
1311 * has no streams on it, used a create_fast, and ends here: mark it
1315 circuit_expire_old_circuits_serverside(time_t now
)
1317 or_circuit_t
*or_circ
;
1318 time_t cutoff
= now
- IDLE_ONE_HOP_CIRC_TIMEOUT
;
1320 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1321 if (circ
->marked_for_close
|| CIRCUIT_IS_ORIGIN(circ
))
1323 or_circ
= TO_OR_CIRCUIT(circ
);
1324 /* If the circuit has been idle for too long, and there are no streams
1325 * on it, and it ends here, and it used a create_fast, mark it for close.
1327 if (or_circ
->is_first_hop
&& !circ
->n_chan
&&
1328 !or_circ
->n_streams
&& !or_circ
->resolving_streams
&&
1330 channel_when_last_xmit(or_circ
->p_chan
) <= cutoff
) {
1331 log_info(LD_CIRC
, "Closing circ_id %u (empty %d secs ago)",
1332 (unsigned)or_circ
->p_circ_id
,
1333 (int)(now
- channel_when_last_xmit(or_circ
->p_chan
)));
1334 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1337 SMARTLIST_FOREACH_END(circ
);
1340 /** Number of testing circuits we want open before testing our bandwidth. */
1341 #define NUM_PARALLEL_TESTING_CIRCS 4
1343 /** True iff we've ever had enough testing circuits open to test our
1345 static int have_performed_bandwidth_test
= 0;
1347 /** Reset have_performed_bandwidth_test, so we'll start building
1348 * testing circuits again so we can exercise our bandwidth. */
1350 reset_bandwidth_test(void)
1352 have_performed_bandwidth_test
= 0;
1355 /** Return 1 if we've already exercised our bandwidth, or if we
1356 * have fewer than NUM_PARALLEL_TESTING_CIRCS testing circuits
1357 * established or on the way. Else return 0.
1360 circuit_enough_testing_circs(void)
1364 if (have_performed_bandwidth_test
)
1367 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1368 if (!circ
->marked_for_close
&& CIRCUIT_IS_ORIGIN(circ
) &&
1369 circ
->purpose
== CIRCUIT_PURPOSE_TESTING
&&
1370 circ
->state
== CIRCUIT_STATE_OPEN
)
1373 SMARTLIST_FOREACH_END(circ
);
1374 return num
>= NUM_PARALLEL_TESTING_CIRCS
;
1377 /** A testing circuit has completed. Take whatever stats we want.
1378 * Noticing reachability is taken care of in onionskin_answer(),
1379 * so there's no need to record anything here. But if we still want
1380 * to do the bandwidth test, and we now have enough testing circuits
1384 circuit_testing_opened(origin_circuit_t
*circ
)
1386 if (have_performed_bandwidth_test
||
1387 !check_whether_orport_reachable()) {
1388 /* either we've already done everything we want with testing circuits,
1389 * or this testing circuit became open due to a fluke, e.g. we picked
1390 * a last hop where we already had the connection open due to an
1391 * outgoing local circuit. */
1392 circuit_mark_for_close(TO_CIRCUIT(circ
), END_CIRC_AT_ORIGIN
);
1393 } else if (circuit_enough_testing_circs()) {
1394 router_perform_bandwidth_test(NUM_PARALLEL_TESTING_CIRCS
, time(NULL
));
1395 have_performed_bandwidth_test
= 1;
1397 consider_testing_reachability(1, 0);
1400 /** A testing circuit has failed to build. Take whatever stats we want. */
1402 circuit_testing_failed(origin_circuit_t
*circ
, int at_last_hop
)
1404 if (server_mode(get_options()) && check_whether_orport_reachable())
1407 log_info(LD_GENERAL
,
1408 "Our testing circuit (to see if your ORPort is reachable) "
1409 "has failed. I'll try again later.");
1411 /* These aren't used yet. */
1416 /** The circuit <b>circ</b> has just become open. Take the next
1417 * step: for rendezvous circuits, we pass circ to the appropriate
1418 * function in rendclient or rendservice. For general circuits, we
1419 * call connection_ap_attach_pending, which looks for pending streams
1420 * that could use circ.
1423 circuit_has_opened(origin_circuit_t
*circ
)
1425 control_event_circuit_status(circ
, CIRC_EVENT_BUILT
, 0);
1427 /* Remember that this circuit has finished building. Now if we start
1428 * it building again later (e.g. by extending it), we will know not
1429 * to consider its build time. */
1430 circ
->has_opened
= 1;
1432 switch (TO_CIRCUIT(circ
)->purpose
) {
1433 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
1434 rend_client_rendcirc_has_opened(circ
);
1435 /* Start building an intro circ if we don't have one yet. */
1436 connection_ap_attach_pending();
1437 /* This isn't a call to circuit_try_attaching_streams because a
1438 * circuit in _C_ESTABLISH_REND state isn't connected to its
1439 * hidden service yet, thus we can't attach streams to it yet,
1440 * thus circuit_try_attaching_streams would always clear the
1441 * circuit's isolation state. circuit_try_attaching_streams is
1442 * called later, when the rend circ enters _C_REND_JOINED
1445 case CIRCUIT_PURPOSE_C_INTRODUCING
:
1446 rend_client_introcirc_has_opened(circ
);
1448 case CIRCUIT_PURPOSE_C_GENERAL
:
1449 /* Tell any AP connections that have been waiting for a new
1450 * circuit that one is ready. */
1451 circuit_try_attaching_streams(circ
);
1453 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
1454 /* at Bob, waiting for introductions */
1455 rend_service_intro_has_opened(circ
);
1457 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
1458 /* at Bob, connecting to rend point */
1459 rend_service_rendezvous_has_opened(circ
);
1461 case CIRCUIT_PURPOSE_TESTING
:
1462 circuit_testing_opened(circ
);
1465 * This won't happen in normal operation, but might happen if the
1466 * controller did it. Just let it slide. */
1470 /** If the stream-isolation state of <b>circ</b> can be cleared, clear
1471 * it. Return non-zero iff <b>circ</b>'s isolation state was cleared. */
1473 circuit_try_clearing_isolation_state(origin_circuit_t
*circ
)
1475 if (/* The circuit may have become non-open if it was cannibalized.*/
1476 circ
->base_
.state
== CIRCUIT_STATE_OPEN
&&
1477 /* If !isolation_values_set, there is nothing to clear. */
1478 circ
->isolation_values_set
&&
1479 /* It's not legal to clear a circuit's isolation info if it's ever had
1480 * streams attached */
1481 !circ
->isolation_any_streams_attached
) {
1482 /* If we have any isolation information set on this circuit, and
1483 * we didn't manage to attach any streams to it, then we can
1484 * and should clear it and try again. */
1485 circuit_clear_isolation(circ
);
1492 /** Called when a circuit becomes ready for streams to be attached to
1495 circuit_try_attaching_streams(origin_circuit_t
*circ
)
1497 /* Attach streams to this circuit if we can. */
1498 connection_ap_attach_pending();
1500 /* The call to circuit_try_clearing_isolation_state here will do
1501 * nothing and return 0 if we didn't attach any streams to circ
1503 if (circuit_try_clearing_isolation_state(circ
)) {
1504 /* Maybe *now* we can attach some streams to this circuit. */
1505 connection_ap_attach_pending();
1509 /** Called whenever a circuit could not be successfully built.
1512 circuit_build_failed(origin_circuit_t
*circ
)
1514 channel_t
*n_chan
= NULL
;
1515 /* we should examine circ and see if it failed because of
1516 * the last hop or an earlier hop. then use this info below.
1518 int failed_at_last_hop
= 0;
1519 /* If the last hop isn't open, and the second-to-last is, we failed
1520 * at the last hop. */
1522 circ
->cpath
->prev
->state
!= CPATH_STATE_OPEN
&&
1523 circ
->cpath
->prev
->prev
->state
== CPATH_STATE_OPEN
) {
1524 failed_at_last_hop
= 1;
1527 circ
->cpath
->state
!= CPATH_STATE_OPEN
&&
1528 ! circ
->base_
.received_destroy
) {
1529 /* We failed at the first hop for some reason other than a DESTROY cell.
1530 * If there's an OR connection to blame, blame it. Also, avoid this relay
1531 * for a while, and fail any one-hop directory fetches destined for it. */
1532 const char *n_chan_id
= circ
->cpath
->extend_info
->identity_digest
;
1533 int already_marked
= 0;
1534 if (circ
->base_
.n_chan
) {
1535 n_chan
= circ
->base_
.n_chan
;
1537 if (n_chan
->is_bad_for_new_circs
) {
1538 /* We only want to blame this router when a fresh healthy
1539 * connection fails. So don't mark this router as newly failed,
1540 * since maybe this was just an old circuit attempt that's
1541 * finally timing out now. Also, there's no need to blow away
1542 * circuits/streams/etc, since the failure of an unhealthy conn
1543 * doesn't tell us much about whether a healthy conn would
1548 "Our circuit failed to get a response from the first hop "
1549 "(%s). I'm going to try to rotate to a better connection.",
1550 channel_get_canonical_remote_descr(n_chan
));
1551 n_chan
->is_bad_for_new_circs
= 1;
1554 "Our circuit died before the first hop with no connection");
1556 if (n_chan_id
&& !already_marked
) {
1557 entry_guard_register_connect_status(n_chan_id
, 0, 1, time(NULL
));
1558 /* if there are any one-hop streams waiting on this circuit, fail
1559 * them now so they can retry elsewhere. */
1560 connection_ap_fail_onehop(n_chan_id
, circ
->build_state
);
1564 switch (circ
->base_
.purpose
) {
1565 case CIRCUIT_PURPOSE_C_GENERAL
:
1566 /* If we never built the circuit, note it as a failure. */
1567 circuit_increment_failure_count();
1568 if (failed_at_last_hop
) {
1569 /* Make sure any streams that demand our last hop as their exit
1570 * know that it's unlikely to happen. */
1571 circuit_discard_optional_exit_enclaves(circ
->cpath
->prev
->extend_info
);
1574 case CIRCUIT_PURPOSE_TESTING
:
1575 circuit_testing_failed(circ
, failed_at_last_hop
);
1577 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
1578 /* at Bob, waiting for introductions */
1579 if (circ
->base_
.state
!= CIRCUIT_STATE_OPEN
) {
1580 circuit_increment_failure_count();
1582 /* no need to care here, because bob will rebuild intro
1583 * points periodically. */
1585 case CIRCUIT_PURPOSE_C_INTRODUCING
:
1586 /* at Alice, connecting to intro point */
1587 /* Don't increment failure count, since Bob may have picked
1588 * the introduction point maliciously */
1589 /* Alice will pick a new intro point when this one dies, if
1590 * the stream in question still cares. No need to act here. */
1592 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
1593 /* at Alice, waiting for Bob */
1594 circuit_increment_failure_count();
1595 /* Alice will pick a new rend point when this one dies, if
1596 * the stream in question still cares. No need to act here. */
1598 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
1599 /* at Bob, connecting to rend point */
1600 /* Don't increment failure count, since Alice may have picked
1601 * the rendezvous point maliciously */
1603 "Couldn't connect to Alice's chosen rend point %s "
1605 escaped(build_state_get_exit_nickname(circ
->build_state
)),
1606 failed_at_last_hop
?"last":"non-last");
1607 rend_service_relaunch_rendezvous(circ
);
1610 * This won't happen in normal operation, but might happen if the
1611 * controller did it. Just let it slide. */
1615 /** Number of consecutive failures so far; should only be touched by
1616 * circuit_launch_new and circuit_*_failure_count.
1618 static int n_circuit_failures
= 0;
1619 /** Before the last time we called circuit_reset_failure_count(), were
1620 * there a lot of failures? */
1621 static int did_circs_fail_last_period
= 0;
1623 /** Don't retry launching a new circuit if we try this many times with no
1625 #define MAX_CIRCUIT_FAILURES 5
1627 /** Launch a new circuit; see circuit_launch_by_extend_info() for
1628 * details on arguments. */
1630 circuit_launch(uint8_t purpose
, int flags
)
1632 return circuit_launch_by_extend_info(purpose
, NULL
, flags
);
1635 /** Launch a new circuit with purpose <b>purpose</b> and exit node
1636 * <b>extend_info</b> (or NULL to select a random exit node). If flags
1637 * contains CIRCLAUNCH_NEED_UPTIME, choose among routers with high uptime. If
1638 * CIRCLAUNCH_NEED_CAPACITY is set, choose among routers with high bandwidth.
1639 * If CIRCLAUNCH_IS_INTERNAL is true, the last hop need not be an exit node.
1640 * If CIRCLAUNCH_ONEHOP_TUNNEL is set, the circuit will have only one hop.
1641 * Return the newly allocated circuit on success, or NULL on failure. */
1643 circuit_launch_by_extend_info(uint8_t purpose
,
1644 extend_info_t
*extend_info
,
1647 origin_circuit_t
*circ
;
1648 int onehop_tunnel
= (flags
& CIRCLAUNCH_ONEHOP_TUNNEL
) != 0;
1650 if (!onehop_tunnel
&& !router_have_minimum_dir_info()) {
1651 log_debug(LD_CIRC
,"Haven't fetched enough directory info yet; canceling "
1656 if ((extend_info
|| purpose
!= CIRCUIT_PURPOSE_C_GENERAL
) &&
1657 purpose
!= CIRCUIT_PURPOSE_TESTING
&& !onehop_tunnel
) {
1658 /* see if there are appropriate circs available to cannibalize. */
1659 /* XXX if we're planning to add a hop, perhaps we want to look for
1660 * internal circs rather than exit circs? -RD */
1661 circ
= circuit_find_to_cannibalize(purpose
, extend_info
, flags
);
1663 uint8_t old_purpose
= circ
->base_
.purpose
;
1664 struct timeval old_timestamp_began
= circ
->base_
.timestamp_began
;
1666 log_info(LD_CIRC
,"Cannibalizing circ '%s' for purpose %d (%s)",
1667 build_state_get_exit_nickname(circ
->build_state
), purpose
,
1668 circuit_purpose_to_string(purpose
));
1670 if ((purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
||
1671 purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
) &&
1672 circ
->path_state
== PATH_STATE_BUILD_SUCCEEDED
) {
1673 /* Path bias: Cannibalized rends pre-emptively count as a
1674 * successfully built but unused closed circuit. We don't
1675 * wait until the extend (or the close) because the rend
1676 * point could be malicious.
1678 * Same deal goes for client side introductions. Clients
1679 * can be manipulated to connect repeatedly to them
1680 * (especially web clients).
1682 * If we decide to probe the initial portion of these circs,
1683 * (up to the adversary's final hop), we need to remove this,
1684 * or somehow mark the circuit with a special path state.
1687 /* This must be called before the purpose change */
1688 pathbias_check_close(circ
, END_CIRC_REASON_FINISHED
);
1691 circuit_change_purpose(TO_CIRCUIT(circ
), purpose
);
1692 /* Reset the start date of this circ, else expire_building
1693 * will see it and think it's been trying to build since it
1696 * Technically, the code should reset this when the
1697 * create cell is finally sent, but we're close enough
1699 tor_gettimeofday(&circ
->base_
.timestamp_began
);
1701 control_event_circuit_cannibalized(circ
, old_purpose
,
1702 &old_timestamp_began
);
1705 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
1706 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
1707 /* it's ready right now */
1709 case CIRCUIT_PURPOSE_C_INTRODUCING
:
1710 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
1711 case CIRCUIT_PURPOSE_C_GENERAL
:
1712 /* need to add a new hop */
1713 tor_assert(extend_info
);
1714 if (circuit_extend_to_new_exit(circ
, extend_info
) < 0)
1719 "unexpected purpose %d when cannibalizing a circ.",
1721 tor_fragile_assert();
1728 if (did_circs_fail_last_period
&&
1729 n_circuit_failures
> MAX_CIRCUIT_FAILURES
) {
1730 /* too many failed circs in a row. don't try. */
1731 // log_fn(LOG_INFO,"%d failures so far, not trying.",n_circuit_failures);
1735 /* try a circ. if it fails, circuit_mark_for_close will increment
1736 * n_circuit_failures */
1737 return circuit_establish_circuit(purpose
, extend_info
, flags
);
1740 /** Record another failure at opening a general circuit. When we have
1741 * too many, we'll stop trying for the remainder of this minute.
1744 circuit_increment_failure_count(void)
1746 ++n_circuit_failures
;
1747 log_debug(LD_CIRC
,"n_circuit_failures now %d.",n_circuit_failures
);
1750 /** Reset the failure count for opening general circuits. This means
1751 * we will try MAX_CIRCUIT_FAILURES times more (if necessary) before
1755 circuit_reset_failure_count(int timeout
)
1757 if (timeout
&& n_circuit_failures
> MAX_CIRCUIT_FAILURES
)
1758 did_circs_fail_last_period
= 1;
1760 did_circs_fail_last_period
= 0;
1761 n_circuit_failures
= 0;
1764 /** Find an open circ that we're happy to use for <b>conn</b> and return 1. If
1765 * there isn't one, and there isn't one on the way, launch one and return
1766 * 0. If it will never work, return -1.
1768 * Write the found or in-progress or launched circ into *circp.
1771 circuit_get_open_circ_or_launch(entry_connection_t
*conn
,
1772 uint8_t desired_circuit_purpose
,
1773 origin_circuit_t
**circp
)
1775 origin_circuit_t
*circ
;
1776 int check_exit_policy
;
1777 int need_uptime
, need_internal
;
1779 const or_options_t
*options
= get_options();
1783 tor_assert(ENTRY_TO_CONN(conn
)->state
== AP_CONN_STATE_CIRCUIT_WAIT
);
1785 conn
->socks_request
->command
== SOCKS_COMMAND_CONNECT
&&
1786 !conn
->use_begindir
&&
1787 !connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn
));
1788 want_onehop
= conn
->want_onehop
;
1790 need_uptime
= !conn
->want_onehop
&& !conn
->use_begindir
&&
1791 smartlist_contains_int_as_string(options
->LongLivedPorts
,
1792 conn
->socks_request
->port
);
1794 if (desired_circuit_purpose
!= CIRCUIT_PURPOSE_C_GENERAL
)
1796 else if (conn
->use_begindir
|| conn
->want_onehop
)
1801 circ
= circuit_get_best(conn
, 1, desired_circuit_purpose
,
1802 need_uptime
, need_internal
);
1806 return 1; /* we're happy */
1809 if (!want_onehop
&& !router_have_minimum_dir_info()) {
1810 if (!connection_get_by_type(CONN_TYPE_DIR
)) {
1811 int severity
= LOG_NOTICE
;
1812 /* FFFF if this is a tunneled directory fetch, don't yell
1813 * as loudly. the user doesn't even know it's happening. */
1814 if (entry_list_is_constrained(options
) &&
1815 entries_known_but_down(options
)) {
1816 log_fn(severity
, LD_APP
|LD_DIR
,
1817 "Application request when we haven't used client functionality "
1818 "lately. Optimistically trying known %s again.",
1819 options
->UseBridges
? "bridges" : "entrynodes");
1820 entries_retry_all(options
);
1821 } else if (!options
->UseBridges
|| any_bridge_descriptors_known()) {
1822 log_fn(severity
, LD_APP
|LD_DIR
,
1823 "Application request when we haven't used client functionality "
1824 "lately. Optimistically trying directory fetches again.");
1825 routerlist_retry_directory_downloads(time(NULL
));
1828 /* the stream will be dealt with when router_have_minimum_dir_info becomes
1829 * 1, or when all directory attempts fail and directory_all_unreachable()
1835 /* Do we need to check exit policy? */
1836 if (check_exit_policy
) {
1837 if (!conn
->chosen_exit_name
) {
1839 tor_addr_t addr
, *addrp
=NULL
;
1840 if (tor_inet_aton(conn
->socks_request
->address
, &in
)) {
1841 tor_addr_from_in(&addr
, &in
);
1844 if (router_exit_policy_all_nodes_reject(addrp
,
1845 conn
->socks_request
->port
,
1848 "No Tor server allows exit to %s:%d. Rejecting.",
1849 safe_str_client(conn
->socks_request
->address
),
1850 conn
->socks_request
->port
);
1854 /* XXXX024 Duplicates checks in connection_ap_handshake_attach_circuit:
1855 * refactor into a single function? */
1856 const node_t
*node
= node_get_by_nickname(conn
->chosen_exit_name
, 1);
1857 int opt
= conn
->chosen_exit_optional
;
1858 if (node
&& !connection_ap_can_use_exit(conn
, node
)) {
1859 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
1860 "Requested exit point '%s' is excluded or "
1861 "would refuse request. %s.",
1862 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
1864 conn
->chosen_exit_optional
= 0;
1865 tor_free(conn
->chosen_exit_name
);
1867 return circuit_get_open_circ_or_launch(conn
,
1868 desired_circuit_purpose
,
1876 /* is one already on the way? */
1877 circ
= circuit_get_best(conn
, 0, desired_circuit_purpose
,
1878 need_uptime
, need_internal
);
1880 log_debug(LD_CIRC
, "one on the way!");
1882 extend_info_t
*extend_info
=NULL
;
1883 uint8_t new_circ_purpose
;
1884 const int n_pending
= count_pending_general_client_circuits();
1886 if (n_pending
>= options
->MaxClientCircuitsPending
) {
1887 static ratelim_t delay_limit
= RATELIM_INIT(10*60);
1889 if ((m
= rate_limit_log(&delay_limit
, approx_time()))) {
1890 log_notice(LD_APP
, "We'd like to launch a circuit to handle a "
1891 "connection, but we already have %d general-purpose client "
1892 "circuits pending. Waiting until some finish.%s",
1899 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
) {
1900 /* need to pick an intro point */
1901 rend_data_t
*rend_data
= ENTRY_TO_EDGE_CONN(conn
)->rend_data
;
1902 tor_assert(rend_data
);
1903 extend_info
= rend_client_get_random_intro(rend_data
);
1906 "No intro points for '%s': re-fetching service descriptor.",
1907 safe_str_client(rend_data
->onion_address
));
1908 rend_client_refetch_v2_renddesc(rend_data
);
1909 ENTRY_TO_CONN(conn
)->state
= AP_CONN_STATE_RENDDESC_WAIT
;
1912 log_info(LD_REND
,"Chose %s as intro point for '%s'.",
1913 extend_info_describe(extend_info
),
1914 safe_str_client(rend_data
->onion_address
));
1917 /* If we have specified a particular exit node for our
1918 * connection, then be sure to open a circuit to that exit node.
1920 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_GENERAL
) {
1921 if (conn
->chosen_exit_name
) {
1923 int opt
= conn
->chosen_exit_optional
;
1924 r
= node_get_by_nickname(conn
->chosen_exit_name
, 1);
1925 if (r
&& node_has_descriptor(r
)) {
1926 /* We might want to connect to an IPv6 bridge for loading
1927 descriptors so we use the preferred address rather than
1929 extend_info
= extend_info_from_node(r
, conn
->want_onehop
? 1 : 0);
1931 log_debug(LD_DIR
, "considering %d, %s",
1932 want_onehop
, conn
->chosen_exit_name
);
1933 if (want_onehop
&& conn
->chosen_exit_name
[0] == '$') {
1934 /* We're asking for a one-hop circuit to a router that
1935 * we don't have a routerinfo about. Make up an extend_info. */
1936 char digest
[DIGEST_LEN
];
1937 char *hexdigest
= conn
->chosen_exit_name
+1;
1939 if (strlen(hexdigest
) < HEX_DIGEST_LEN
||
1940 base16_decode(digest
,DIGEST_LEN
,hexdigest
,HEX_DIGEST_LEN
)<0) {
1941 log_info(LD_DIR
, "Broken exit digest on tunnel conn. Closing.");
1944 if (tor_addr_parse(&addr
, conn
->socks_request
->address
) < 0) {
1945 log_info(LD_DIR
, "Broken address %s on tunnel conn. Closing.",
1946 escaped_safe_str_client(conn
->socks_request
->address
));
1949 extend_info
= extend_info_new(conn
->chosen_exit_name
+1,
1950 digest
, NULL
, NULL
, &addr
,
1951 conn
->socks_request
->port
);
1953 /* We will need an onion key for the router, and we
1954 * don't have one. Refuse or relax requirements. */
1955 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
1956 "Requested exit point '%s' is not known. %s.",
1957 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
1959 conn
->chosen_exit_optional
= 0;
1960 tor_free(conn
->chosen_exit_name
);
1961 /* Try again with no requested exit */
1962 return circuit_get_open_circ_or_launch(conn
,
1963 desired_circuit_purpose
,
1972 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
)
1973 new_circ_purpose
= CIRCUIT_PURPOSE_C_ESTABLISH_REND
;
1974 else if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
1975 new_circ_purpose
= CIRCUIT_PURPOSE_C_INTRODUCING
;
1977 new_circ_purpose
= desired_circuit_purpose
;
1979 if (options
->Tor2webMode
&&
1980 (new_circ_purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
||
1981 new_circ_purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
)) {
1986 int flags
= CIRCLAUNCH_NEED_CAPACITY
;
1987 if (want_onehop
) flags
|= CIRCLAUNCH_ONEHOP_TUNNEL
;
1988 if (need_uptime
) flags
|= CIRCLAUNCH_NEED_UPTIME
;
1989 if (need_internal
) flags
|= CIRCLAUNCH_IS_INTERNAL
;
1990 circ
= circuit_launch_by_extend_info(new_circ_purpose
, extend_info
,
1994 extend_info_free(extend_info
);
1996 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_GENERAL
) {
1997 /* We just caused a circuit to get built because of this stream.
1998 * If this stream has caused a _lot_ of circuits to be built, that's
1999 * a bad sign: we should tell the user. */
2000 if (conn
->num_circuits_launched
< NUM_CIRCUITS_LAUNCHED_THRESHOLD
&&
2001 ++conn
->num_circuits_launched
== NUM_CIRCUITS_LAUNCHED_THRESHOLD
)
2002 log_info(LD_CIRC
, "The application request to %s:%d has launched "
2003 "%d circuits without finding one it likes.",
2004 escaped_safe_str_client(conn
->socks_request
->address
),
2005 conn
->socks_request
->port
,
2006 conn
->num_circuits_launched
);
2008 /* help predict this next time */
2009 rep_hist_note_used_internal(time(NULL
), need_uptime
, 1);
2011 /* write the service_id into circ */
2012 circ
->rend_data
= rend_data_dup(ENTRY_TO_EDGE_CONN(conn
)->rend_data
);
2013 if (circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
&&
2014 circ
->base_
.state
== CIRCUIT_STATE_OPEN
)
2015 rend_client_rendcirc_has_opened(circ
);
2018 } /* endif (!circ) */
2020 /* Mark the circuit with the isolation fields for this connection.
2021 * When the circuit arrives, we'll clear these flags: this is
2022 * just some internal bookkeeping to make sure that we have
2023 * launched enough circuits.
2025 connection_edge_update_circuit_isolation(conn
, circ
, 0);
2028 "No safe circuit (purpose %d) ready for edge "
2029 "connection; delaying.",
2030 desired_circuit_purpose
);
2036 /** Return true iff <b>crypt_path</b> is one of the crypt_paths for
2039 cpath_is_on_circuit(origin_circuit_t
*circ
, crypt_path_t
*crypt_path
)
2041 crypt_path_t
*cpath
, *cpath_next
= NULL
;
2042 for (cpath
= circ
->cpath
; cpath_next
!= circ
->cpath
; cpath
= cpath_next
) {
2043 cpath_next
= cpath
->next
;
2044 if (crypt_path
== cpath
)
2050 /** Return true iff client-side optimistic data is supported. */
2052 optimistic_data_enabled(void)
2054 const or_options_t
*options
= get_options();
2055 if (options
->OptimisticData
< 0) {
2056 /* XXX023 consider having auto default to 1 rather than 0 before
2057 * the 0.2.3 branch goes stable. See bug 3617. -RD */
2058 const int32_t enabled
=
2059 networkstatus_get_param(NULL
, "UseOptimisticData", 0, 0, 1);
2060 return (int)enabled
;
2062 return options
->OptimisticData
;
2065 /** Attach the AP stream <b>apconn</b> to circ's linked list of
2066 * p_streams. Also set apconn's cpath_layer to <b>cpath</b>, or to the last
2067 * hop in circ's cpath if <b>cpath</b> is NULL.
2070 link_apconn_to_circ(entry_connection_t
*apconn
, origin_circuit_t
*circ
,
2071 crypt_path_t
*cpath
)
2073 const node_t
*exitnode
;
2075 /* add it into the linked list of streams on this circuit */
2076 log_debug(LD_APP
|LD_CIRC
, "attaching new conn to circ. n_circ_id %u.",
2077 (unsigned)circ
->base_
.n_circ_id
);
2078 /* reset it, so we can measure circ timeouts */
2079 ENTRY_TO_CONN(apconn
)->timestamp_lastread
= time(NULL
);
2080 ENTRY_TO_EDGE_CONN(apconn
)->next_stream
= circ
->p_streams
;
2081 ENTRY_TO_EDGE_CONN(apconn
)->on_circuit
= TO_CIRCUIT(circ
);
2082 /* assert_connection_ok(conn, time(NULL)); */
2083 circ
->p_streams
= ENTRY_TO_EDGE_CONN(apconn
);
2085 if (connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(apconn
))) {
2086 /* We are attaching a stream to a rendezvous circuit. That means
2087 * that an attempt to connect to a hidden service just
2088 * succeeded. Tell rendclient.c. */
2089 rend_client_note_connection_attempt_ended(
2090 ENTRY_TO_EDGE_CONN(apconn
)->rend_data
->onion_address
);
2093 if (cpath
) { /* we were given one; use it */
2094 tor_assert(cpath_is_on_circuit(circ
, cpath
));
2096 /* use the last hop in the circuit */
2097 tor_assert(circ
->cpath
);
2098 tor_assert(circ
->cpath
->prev
);
2099 tor_assert(circ
->cpath
->prev
->state
== CPATH_STATE_OPEN
);
2100 cpath
= circ
->cpath
->prev
;
2102 ENTRY_TO_EDGE_CONN(apconn
)->cpath_layer
= cpath
;
2104 circ
->isolation_any_streams_attached
= 1;
2105 connection_edge_update_circuit_isolation(apconn
, circ
, 0);
2107 /* See if we can use optimistic data on this circuit */
2108 if (cpath
->extend_info
&&
2109 (exitnode
= node_get_by_id(cpath
->extend_info
->identity_digest
)) &&
2111 /* Okay; we know what exit node this is. */
2112 if (optimistic_data_enabled() &&
2113 circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_GENERAL
)
2114 apconn
->may_use_optimistic_data
= 1;
2116 apconn
->may_use_optimistic_data
= 0;
2117 log_info(LD_APP
, "Looks like completed circuit to %s %s allow "
2118 "optimistic data for connection to %s",
2119 safe_str_client(node_describe(exitnode
)),
2120 apconn
->may_use_optimistic_data
? "does" : "doesn't",
2121 safe_str_client(apconn
->socks_request
->address
));
2125 /** Return true iff <b>address</b> is matched by one of the entries in
2126 * TrackHostExits. */
2128 hostname_in_track_host_exits(const or_options_t
*options
, const char *address
)
2130 if (!options
->TrackHostExits
)
2132 SMARTLIST_FOREACH_BEGIN(options
->TrackHostExits
, const char *, cp
) {
2133 if (cp
[0] == '.') { /* match end */
2134 if (cp
[1] == '\0' ||
2135 !strcasecmpend(address
, cp
) ||
2136 !strcasecmp(address
, &cp
[1]))
2138 } else if (strcasecmp(cp
, address
) == 0) {
2141 } SMARTLIST_FOREACH_END(cp
);
2145 /** If an exit wasn't explicitly specified for <b>conn</b>, consider saving
2146 * the exit that we *did* choose for use by future connections to
2147 * <b>conn</b>'s destination.
2150 consider_recording_trackhost(const entry_connection_t
*conn
,
2151 const origin_circuit_t
*circ
)
2153 const or_options_t
*options
= get_options();
2154 char *new_address
= NULL
;
2155 char fp
[HEX_DIGEST_LEN
+1];
2157 /* Search the addressmap for this conn's destination. */
2158 /* If he's not in the address map.. */
2159 if (!options
->TrackHostExits
||
2160 addressmap_have_mapping(conn
->socks_request
->address
,
2161 options
->TrackHostExitsExpire
))
2162 return; /* nothing to track, or already mapped */
2164 if (!hostname_in_track_host_exits(options
, conn
->socks_request
->address
) ||
2165 !circ
->build_state
->chosen_exit
)
2168 /* write down the fingerprint of the chosen exit, not the nickname,
2169 * because the chosen exit might not be named. */
2170 base16_encode(fp
, sizeof(fp
),
2171 circ
->build_state
->chosen_exit
->identity_digest
, DIGEST_LEN
);
2173 /* Add this exit/hostname pair to the addressmap. */
2174 tor_asprintf(&new_address
, "%s.%s.exit",
2175 conn
->socks_request
->address
, fp
);
2177 addressmap_register(conn
->socks_request
->address
, new_address
,
2178 time(NULL
) + options
->TrackHostExitsExpire
,
2179 ADDRMAPSRC_TRACKEXIT
, 0, 0);
2182 /** Attempt to attach the connection <b>conn</b> to <b>circ</b>, and send a
2183 * begin or resolve cell as appropriate. Return values are as for
2184 * connection_ap_handshake_attach_circuit. The stream will exit from the hop
2185 * indicated by <b>cpath</b>, or from the last hop in circ's cpath if
2186 * <b>cpath</b> is NULL. */
2188 connection_ap_handshake_attach_chosen_circuit(entry_connection_t
*conn
,
2189 origin_circuit_t
*circ
,
2190 crypt_path_t
*cpath
)
2192 connection_t
*base_conn
= ENTRY_TO_CONN(conn
);
2194 tor_assert(base_conn
->state
== AP_CONN_STATE_CIRCUIT_WAIT
||
2195 base_conn
->state
== AP_CONN_STATE_CONTROLLER_WAIT
);
2196 tor_assert(conn
->socks_request
);
2198 tor_assert(circ
->base_
.state
== CIRCUIT_STATE_OPEN
);
2200 base_conn
->state
= AP_CONN_STATE_CIRCUIT_WAIT
;
2202 if (!circ
->base_
.timestamp_dirty
)
2203 circ
->base_
.timestamp_dirty
= time(NULL
);
2205 pathbias_count_use_attempt(circ
);
2207 link_apconn_to_circ(conn
, circ
, cpath
);
2208 tor_assert(conn
->socks_request
);
2209 if (conn
->socks_request
->command
== SOCKS_COMMAND_CONNECT
) {
2210 if (!conn
->use_begindir
)
2211 consider_recording_trackhost(conn
, circ
);
2212 if (connection_ap_handshake_send_begin(conn
) < 0)
2215 if (connection_ap_handshake_send_resolve(conn
) < 0)
2222 /** Try to find a safe live circuit for CONN_TYPE_AP connection conn. If
2223 * we don't find one: if conn cannot be handled by any known nodes,
2224 * warn and return -1 (conn needs to die, and is maybe already marked);
2225 * else launch new circuit (if necessary) and return 0.
2226 * Otherwise, associate conn with a safe live circuit, do the
2227 * right next step, and return 1.
2229 /* XXXX this function should mark for close whenever it returns -1;
2230 * its callers shouldn't have to worry about that. */
2232 connection_ap_handshake_attach_circuit(entry_connection_t
*conn
)
2234 connection_t
*base_conn
= ENTRY_TO_CONN(conn
);
2240 tor_assert(base_conn
->state
== AP_CONN_STATE_CIRCUIT_WAIT
);
2241 tor_assert(conn
->socks_request
);
2242 want_onehop
= conn
->want_onehop
;
2244 conn_age
= (int)(time(NULL
) - base_conn
->timestamp_created
);
2246 if (conn_age
>= get_options()->SocksTimeout
) {
2247 int severity
= (tor_addr_is_null(&base_conn
->addr
) && !base_conn
->port
) ?
2248 LOG_INFO
: LOG_NOTICE
;
2249 log_fn(severity
, LD_APP
,
2250 "Tried for %d seconds to get a connection to %s:%d. Giving up.",
2251 conn_age
, safe_str_client(conn
->socks_request
->address
),
2252 conn
->socks_request
->port
);
2256 if (!connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn
))) {
2257 /* we're a general conn */
2258 origin_circuit_t
*circ
=NULL
;
2260 if (conn
->chosen_exit_name
) {
2261 const node_t
*node
= node_get_by_nickname(conn
->chosen_exit_name
, 1);
2262 int opt
= conn
->chosen_exit_optional
;
2263 if (!node
&& !want_onehop
) {
2264 /* We ran into this warning when trying to extend a circuit to a
2265 * hidden service directory for which we didn't have a router
2266 * descriptor. See flyspray task 767 for more details. We should
2267 * keep this in mind when deciding to use BEGIN_DIR cells for other
2268 * directory requests as well. -KL*/
2269 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2270 "Requested exit point '%s' is not known. %s.",
2271 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2273 conn
->chosen_exit_optional
= 0;
2274 tor_free(conn
->chosen_exit_name
);
2279 if (node
&& !connection_ap_can_use_exit(conn
, node
)) {
2280 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2281 "Requested exit point '%s' is excluded or "
2282 "would refuse request. %s.",
2283 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2285 conn
->chosen_exit_optional
= 0;
2286 tor_free(conn
->chosen_exit_name
);
2293 /* find the circuit that we should use, if there is one. */
2294 retval
= circuit_get_open_circ_or_launch(
2295 conn
, CIRCUIT_PURPOSE_C_GENERAL
, &circ
);
2296 if (retval
< 1) // XXX023 if we totally fail, this still returns 0 -RD
2299 log_debug(LD_APP
|LD_CIRC
,
2300 "Attaching apconn to circ %u (stream %d sec old).",
2301 (unsigned)circ
->base_
.n_circ_id
, conn_age
);
2302 /* print the circ's path, so people can figure out which circs are
2304 circuit_log_path(LOG_INFO
,LD_APP
|LD_CIRC
,circ
);
2306 /* We have found a suitable circuit for our conn. Hurray. */
2307 return connection_ap_handshake_attach_chosen_circuit(conn
, circ
, NULL
);
2309 } else { /* we're a rendezvous conn */
2310 origin_circuit_t
*rendcirc
=NULL
, *introcirc
=NULL
;
2312 tor_assert(!ENTRY_TO_EDGE_CONN(conn
)->cpath_layer
);
2314 /* start by finding a rendezvous circuit for us */
2316 retval
= circuit_get_open_circ_or_launch(
2317 conn
, CIRCUIT_PURPOSE_C_REND_JOINED
, &rendcirc
);
2318 if (retval
< 0) return -1; /* failed */
2321 tor_assert(rendcirc
);
2322 /* one is already established, attach */
2324 "rend joined circ %d already here. attaching. "
2325 "(stream %d sec old)",
2326 (unsigned)rendcirc
->base_
.n_circ_id
, conn_age
);
2327 /* Mark rendezvous circuits as 'newly dirty' every time you use
2328 * them, since the process of rebuilding a rendezvous circ is so
2329 * expensive. There is a tradeoff between linkability and
2330 * feasibility, at this point.
2332 rendcirc
->base_
.timestamp_dirty
= time(NULL
);
2334 /* We've also attempted to use them. If they fail, we need to
2335 * probe them for path bias */
2336 pathbias_count_use_attempt(rendcirc
);
2338 link_apconn_to_circ(conn
, rendcirc
, NULL
);
2339 if (connection_ap_handshake_send_begin(conn
) < 0)
2340 return 0; /* already marked, let them fade away */
2344 if (rendcirc
&& (rendcirc
->base_
.purpose
==
2345 CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
)) {
2347 "pending-join circ %u already here, with intro ack. "
2348 "Stalling. (stream %d sec old)",
2349 (unsigned)rendcirc
->base_
.n_circ_id
, conn_age
);
2353 /* it's on its way. find an intro circ. */
2354 retval
= circuit_get_open_circ_or_launch(
2355 conn
, CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
, &introcirc
);
2356 if (retval
< 0) return -1; /* failed */
2359 /* one has already sent the intro. keep waiting. */
2360 tor_assert(introcirc
);
2361 log_info(LD_REND
, "Intro circ %u present and awaiting ack (rend %u). "
2362 "Stalling. (stream %d sec old)",
2363 (unsigned)introcirc
->base_
.n_circ_id
,
2364 rendcirc
? (unsigned)rendcirc
->base_
.n_circ_id
: 0,
2369 /* now rendcirc and introcirc are each either undefined or not finished */
2371 if (rendcirc
&& introcirc
&&
2372 rendcirc
->base_
.purpose
== CIRCUIT_PURPOSE_C_REND_READY
) {
2374 "ready rend circ %u already here (no intro-ack yet on "
2375 "intro %u). (stream %d sec old)",
2376 (unsigned)rendcirc
->base_
.n_circ_id
,
2377 (unsigned)introcirc
->base_
.n_circ_id
, conn_age
);
2379 tor_assert(introcirc
->base_
.purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
);
2380 if (introcirc
->base_
.state
== CIRCUIT_STATE_OPEN
) {
2381 log_info(LD_REND
,"found open intro circ %u (rend %u); sending "
2382 "introduction. (stream %d sec old)",
2383 (unsigned)introcirc
->base_
.n_circ_id
,
2384 (unsigned)rendcirc
->base_
.n_circ_id
,
2386 switch (rend_client_send_introduction(introcirc
, rendcirc
)) {
2387 case 0: /* success */
2388 rendcirc
->base_
.timestamp_dirty
= time(NULL
);
2389 introcirc
->base_
.timestamp_dirty
= time(NULL
);
2391 pathbias_count_use_attempt(introcirc
);
2392 pathbias_count_use_attempt(rendcirc
);
2394 assert_circuit_ok(TO_CIRCUIT(rendcirc
));
2395 assert_circuit_ok(TO_CIRCUIT(introcirc
));
2397 case -1: /* transient error */
2399 case -2: /* permanent error */
2402 tor_fragile_assert();
2408 log_info(LD_REND
, "Intro (%u) and rend (%u) circs are not both ready. "
2409 "Stalling conn. (%d sec old)",
2410 introcirc
? (unsigned)introcirc
->base_
.n_circ_id
: 0,
2411 rendcirc
? (unsigned)rendcirc
->base_
.n_circ_id
: 0, conn_age
);
2416 /** Change <b>circ</b>'s purpose to <b>new_purpose</b>. */
2418 circuit_change_purpose(circuit_t
*circ
, uint8_t new_purpose
)
2420 uint8_t old_purpose
;
2421 /* Don't allow an OR circ to become an origin circ or vice versa. */
2422 tor_assert(!!(CIRCUIT_IS_ORIGIN(circ
)) ==
2423 !!(CIRCUIT_PURPOSE_IS_ORIGIN(new_purpose
)));
2425 if (circ
->purpose
== new_purpose
) return;
2427 if (CIRCUIT_IS_ORIGIN(circ
)) {
2428 char old_purpose_desc
[80] = "";
2430 strncpy(old_purpose_desc
, circuit_purpose_to_string(circ
->purpose
), 80-1);
2431 old_purpose_desc
[80-1] = '\0';
2434 "changing purpose of origin circ %d "
2435 "from \"%s\" (%d) to \"%s\" (%d)",
2436 TO_ORIGIN_CIRCUIT(circ
)->global_identifier
,
2439 circuit_purpose_to_string(new_purpose
),
2443 old_purpose
= circ
->purpose
;
2444 circ
->purpose
= new_purpose
;
2446 if (CIRCUIT_IS_ORIGIN(circ
)) {
2447 control_event_circuit_purpose_changed(TO_ORIGIN_CIRCUIT(circ
),
2452 /** Mark <b>circ</b> so that no more connections can be attached to it. */
2454 mark_circuit_unusable_for_new_conns(origin_circuit_t
*circ
)
2456 const or_options_t
*options
= get_options();
2459 /* XXXX025 This is a kludge; we're only keeping it around in case there's
2460 * something that doesn't check unusable_for_new_conns, and to avoid
2461 * deeper refactoring of our expiration logic. */
2462 if (! circ
->base_
.timestamp_dirty
)
2463 circ
->base_
.timestamp_dirty
= approx_time();
2464 if (options
->MaxCircuitDirtiness
>= circ
->base_
.timestamp_dirty
)
2465 circ
->base_
.timestamp_dirty
= 1; /* prevent underflow */
2467 circ
->base_
.timestamp_dirty
-= options
->MaxCircuitDirtiness
;
2469 circ
->unusable_for_new_conns
= 1;