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-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * \brief Launch the right sort of circuits and attach the right streams to
12 * As distinct from circuitlist.c, which manages lookups to find circuits, and
13 * circuitbuild.c, which handles the logistics of circuit construction, this
14 * module keeps track of which streams can be attached to which circuits (in
15 * circuit_get_best()), and attaches streams to circuits (with
16 * circuit_try_attaching_streams(), connection_ap_handshake_attach_circuit(),
17 * and connection_ap_handshake_attach_chosen_circuit() ).
19 * This module also makes sure that we are building circuits for all of the
20 * predicted ports, using circuit_remove_handled_ports(),
21 * circuit_stream_is_being_handled(), and circuit_build_needed_cirs(). It
22 * handles launching circuits for specific targets using
23 * circuit_launch_by_extend_info().
25 * This is also where we handle expiring circuits that have been around for
26 * too long without actually completing, along with the circuit_build_timeout
27 * logic in circuitstats.c.
30 #include "core/or/or.h"
31 #include "app/config/config.h"
32 #include "core/mainloop/connection.h"
33 #include "core/or/channel.h"
34 #include "core/or/circuitbuild.h"
35 #include "core/or/circuitlist.h"
36 #include "core/or/circuitstats.h"
37 #include "core/or/circuituse.h"
38 #include "core/or/circuitpadding.h"
39 #include "core/or/connection_edge.h"
40 #include "core/or/extendinfo.h"
41 #include "core/or/policies.h"
42 #include "core/or/trace_probes_circuit.h"
43 #include "feature/client/addressmap.h"
44 #include "feature/client/bridges.h"
45 #include "feature/client/circpathbias.h"
46 #include "feature/client/entrynodes.h"
47 #include "feature/client/proxymode.h"
48 #include "feature/control/control_events.h"
49 #include "feature/dircommon/directory.h"
50 #include "feature/hs/hs_circuit.h"
51 #include "feature/hs/hs_client.h"
52 #include "feature/hs/hs_common.h"
53 #include "feature/hs/hs_ident.h"
54 #include "feature/hs/hs_stats.h"
55 #include "feature/nodelist/describe.h"
56 #include "feature/nodelist/networkstatus.h"
57 #include "feature/nodelist/nodelist.h"
58 #include "feature/nodelist/routerlist.h"
59 #include "feature/relay/routermode.h"
60 #include "feature/relay/selftest.h"
61 #include "feature/stats/predict_ports.h"
62 #include "lib/math/fp.h"
63 #include "lib/time/tvdiff.h"
64 #include "lib/trace/events.h"
66 #include "core/or/cpath_build_state_st.h"
67 #include "feature/dircommon/dir_connection_st.h"
68 #include "core/or/entry_connection_st.h"
69 #include "core/or/extend_info_st.h"
70 #include "core/or/or_circuit_st.h"
71 #include "core/or/origin_circuit_st.h"
72 #include "core/or/socks_request_st.h"
74 STATIC
void circuit_expire_old_circuits_clientside(void);
75 static void circuit_increment_failure_count(void);
77 /** Check whether the hidden service destination of the stream at
78 * <b>edge_conn</b> is the same as the destination of the circuit at
79 * <b>origin_circ</b>. */
81 circuit_matches_with_rend_stream(const edge_connection_t
*edge_conn
,
82 const origin_circuit_t
*origin_circ
)
84 /* Check if this is a v3 rendezvous circ/stream */
85 if ((edge_conn
->hs_ident
&& !origin_circ
->hs_ident
) ||
86 (!edge_conn
->hs_ident
&& origin_circ
->hs_ident
) ||
87 (edge_conn
->hs_ident
&& origin_circ
->hs_ident
&&
88 !ed25519_pubkey_eq(&edge_conn
->hs_ident
->identity_pk
,
89 &origin_circ
->hs_ident
->identity_pk
))) {
90 /* this circ is not for this conn */
97 /** Return 1 if <b>circ</b> could be returned by circuit_get_best().
101 circuit_is_acceptable(const origin_circuit_t
*origin_circ
,
102 const entry_connection_t
*conn
,
103 int must_be_open
, uint8_t purpose
,
104 int need_uptime
, int need_internal
,
107 const circuit_t
*circ
= TO_CIRCUIT(origin_circ
);
108 const node_t
*exitnode
;
109 cpath_build_state_t
*build_state
;
112 tor_assert(conn
->socks_request
);
114 if (must_be_open
&& (circ
->state
!= CIRCUIT_STATE_OPEN
|| !circ
->n_chan
))
115 return 0; /* ignore non-open circs */
116 if (circ
->marked_for_close
)
119 /* if this circ isn't our purpose, skip. */
120 if (purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
&& !must_be_open
) {
121 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_ESTABLISH_REND
&&
122 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_READY
&&
123 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
&&
124 circ
->purpose
!= CIRCUIT_PURPOSE_C_REND_JOINED
)
126 } else if (purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
&&
128 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_INTRODUCING
&&
129 circ
->purpose
!= CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
132 if (purpose
!= circ
->purpose
)
136 /* If this is a timed-out hidden service circuit, skip it. */
137 if (origin_circ
->hs_circ_has_timed_out
) {
141 if (purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
142 purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
||
143 purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
144 purpose
== CIRCUIT_PURPOSE_HS_VANGUARDS
||
145 purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
) {
146 if (circ
->timestamp_dirty
&&
147 circ
->timestamp_dirty
+get_options()->MaxCircuitDirtiness
<= now
)
151 if (origin_circ
->unusable_for_new_conns
)
154 /* decide if this circ is suitable for this conn */
156 /* for rend circs, circ->cpath->prev is not the last router in the
157 * circuit, it's the magical extra service hop. so just check the nickname
158 * of the one we meant to finish at.
160 build_state
= origin_circ
->build_state
;
161 exitnode
= build_state_get_exit_node(build_state
);
163 if (need_uptime
&& !build_state
->need_uptime
)
165 if (need_internal
!= build_state
->is_internal
)
168 if (purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
169 purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
170 purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
) {
172 if (!exitnode
&& !build_state
->onehop_tunnel
) {
173 log_debug(LD_CIRC
,"Not considering circuit with unknown router.");
174 return 0; /* this circuit is screwed and doesn't know it yet,
175 * or is a rendezvous circuit. */
177 if (build_state
->onehop_tunnel
) {
178 if (!conn
->want_onehop
) {
179 log_debug(LD_CIRC
,"Skipping one-hop circuit.");
182 tor_assert(conn
->chosen_exit_name
);
183 if (build_state
->chosen_exit
) {
184 char digest
[DIGEST_LEN
];
185 if (hexdigest_to_digest(conn
->chosen_exit_name
, digest
) < 0)
186 return 0; /* broken digest, we don't want it */
187 if (tor_memneq(digest
, build_state
->chosen_exit
->identity_digest
,
189 return 0; /* this is a circuit to somewhere else */
190 if (tor_digest_is_zero(digest
)) {
191 /* we don't know the digest; have to compare addr:port */
192 const int family
= tor_addr_parse(&addr
,
193 conn
->socks_request
->address
);
195 !extend_info_has_orport(build_state
->chosen_exit
, &addr
,
196 conn
->socks_request
->port
))
201 if (conn
->want_onehop
) {
202 /* don't use three-hop circuits -- that could hurt our anonymity. */
206 if (origin_circ
->prepend_policy
) {
207 if (tor_addr_parse(&addr
, conn
->socks_request
->address
) != -1) {
208 int r
= compare_tor_addr_to_addr_policy(&addr
,
209 conn
->socks_request
->port
,
210 origin_circ
->prepend_policy
);
211 if (r
== ADDR_POLICY_REJECTED
)
215 if (exitnode
&& !connection_ap_can_use_exit(conn
, exitnode
)) {
216 /* can't exit from this router */
219 } else { /* not general: this might be a rend circuit */
220 const edge_connection_t
*edge_conn
= ENTRY_TO_EDGE_CONN(conn
);
221 if (!circuit_matches_with_rend_stream(edge_conn
, origin_circ
)) {
226 if (!connection_edge_compatible_with_circuit(conn
, origin_circ
)) {
227 /* conn needs to be isolated from other conns that have already used
235 /** Return 1 if circuit <b>a</b> is better than circuit <b>b</b> for
236 * <b>conn</b>, and return 0 otherwise. Used by circuit_get_best.
239 circuit_is_better(const origin_circuit_t
*oa
, const origin_circuit_t
*ob
,
240 const entry_connection_t
*conn
)
242 const circuit_t
*a
= TO_CIRCUIT(oa
);
243 const circuit_t
*b
= TO_CIRCUIT(ob
);
244 const uint8_t purpose
= ENTRY_TO_CONN(conn
)->purpose
;
247 /* If one of the circuits was allowed to live due to relaxing its timeout,
248 * it is definitely worse (it's probably a much slower path). */
249 if (oa
->relaxed_timeout
&& !ob
->relaxed_timeout
)
250 return 0; /* ob is better. It's not relaxed. */
251 if (!oa
->relaxed_timeout
&& ob
->relaxed_timeout
)
252 return 1; /* oa is better. It's not relaxed. */
255 case CIRCUIT_PURPOSE_S_HSDIR_POST
:
256 case CIRCUIT_PURPOSE_C_HSDIR_GET
:
257 case CIRCUIT_PURPOSE_C_GENERAL
:
258 /* if it's used but less dirty it's best;
259 * else if it's more recently created it's best
261 if (b
->timestamp_dirty
) {
262 if (a
->timestamp_dirty
&&
263 a
->timestamp_dirty
> b
->timestamp_dirty
)
266 if (a
->timestamp_dirty
||
267 timercmp(&a
->timestamp_began
, &b
->timestamp_began
, OP_GT
))
269 if (ob
->build_state
->is_internal
)
270 /* XXXX++ what the heck is this internal thing doing here. I
271 * think we can get rid of it. circuit_is_acceptable() already
272 * makes sure that is_internal is exactly what we need it to
277 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
278 /* the closer it is to ack_wait the better it is */
279 if (a
->purpose
> b
->purpose
)
282 case CIRCUIT_PURPOSE_C_REND_JOINED
:
283 /* the closer it is to rend_joined the better it is */
284 if (a
->purpose
> b
->purpose
)
289 /* XXXX Maybe this check should get a higher priority to avoid
290 * using up circuits too rapidly. */
292 a_bits
= connection_edge_update_circuit_isolation(conn
,
293 (origin_circuit_t
*)oa
, 1);
294 b_bits
= connection_edge_update_circuit_isolation(conn
,
295 (origin_circuit_t
*)ob
, 1);
296 /* if x_bits < 0, then we have not used x for anything; better not to dirty
297 * a connection if we can help it. */
300 } else if (b_bits
< 0) {
303 a_bits
&= ~ oa
->isolation_flags_mixed
;
304 a_bits
&= ~ ob
->isolation_flags_mixed
;
305 if (n_bits_set_u8(a_bits
) < n_bits_set_u8(b_bits
)) {
306 /* The fewer new restrictions we need to make on a circuit for stream
307 * isolation, the better. */
314 /** Find the best circ that conn can use, preferably one which is
315 * dirty. Circ must not be too old.
317 * Conn must be defined.
319 * If must_be_open, ignore circs not in CIRCUIT_STATE_OPEN.
321 * circ_purpose specifies what sort of circuit we must have.
322 * It can be C_GENERAL, C_INTRODUCE_ACK_WAIT, or C_REND_JOINED.
324 * If it's REND_JOINED and must_be_open==0, then return the closest
325 * rendezvous-purposed circuit that you can find.
327 * If it's INTRODUCE_ACK_WAIT and must_be_open==0, then return the
328 * closest introduce-purposed circuit that you can find.
330 static origin_circuit_t
*
331 circuit_get_best(const entry_connection_t
*conn
,
332 int must_be_open
, uint8_t purpose
,
333 int need_uptime
, int need_internal
)
335 origin_circuit_t
*best
=NULL
;
337 int intro_going_on_but_too_old
= 0;
341 tor_assert(purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
342 purpose
== CIRCUIT_PURPOSE_HS_VANGUARDS
||
343 purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
||
344 purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
345 purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
||
346 purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
);
348 tor_gettimeofday(&now
);
350 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
351 origin_circuit_t
*origin_circ
;
352 if (!CIRCUIT_IS_ORIGIN(circ
))
354 origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
356 /* Log an info message if we're going to launch a new intro circ in
358 if (purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
&&
359 !must_be_open
&& origin_circ
->hs_circ_has_timed_out
&&
360 !circ
->marked_for_close
) {
361 intro_going_on_but_too_old
= 1;
365 if (!circuit_is_acceptable(origin_circ
,conn
,must_be_open
,purpose
,
366 need_uptime
,need_internal
, (time_t)now
.tv_sec
))
369 /* now this is an acceptable circ to hand back. but that doesn't
370 * mean it's the *best* circ to hand back. try to decide.
372 if (!best
|| circuit_is_better(origin_circ
,best
,conn
))
375 SMARTLIST_FOREACH_END(circ
);
377 if (!best
&& intro_going_on_but_too_old
)
378 log_info(LD_REND
|LD_CIRC
, "There is an intro circuit being created "
379 "right now, but it has already taken quite a while. Starting "
385 /** Return the number of not-yet-open general-purpose origin circuits. */
387 count_pending_general_client_circuits(void)
391 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
392 if (circ
->marked_for_close
||
393 circ
->state
== CIRCUIT_STATE_OPEN
||
394 !CIRCUIT_PURPOSE_COUNTS_TOWARDS_MAXPENDING(circ
->purpose
) ||
395 !CIRCUIT_IS_ORIGIN(circ
))
400 SMARTLIST_FOREACH_END(circ
);
406 /** Check whether, according to the policies in <b>options</b>, the
407 * circuit <b>circ</b> makes sense. */
408 /* XXXX currently only checks Exclude{Exit}Nodes; it should check more.
409 * Also, it doesn't have the right definition of an exit circuit. Also,
410 * it's never called. */
412 circuit_conforms_to_options(const origin_circuit_t
*circ
,
413 const or_options_t
*options
)
415 const crypt_path_t
*cpath
, *cpath_next
= NULL
;
417 /* first check if it includes any excluded nodes */
418 for (cpath
= circ
->cpath
; cpath_next
!= circ
->cpath
; cpath
= cpath_next
) {
419 cpath_next
= cpath
->next
;
420 if (routerset_contains_extendinfo(options
->ExcludeNodes
,
425 /* then consider the final hop */
426 if (routerset_contains_extendinfo(options
->ExcludeExitNodes
,
427 circ
->cpath
->prev
->extend_info
))
435 * Close all circuits that start at us, aren't open, and were born
436 * at least CircuitBuildTimeout seconds ago.
438 * TODO: This function is now partially redundant to
439 * circuit_build_times_handle_completed_hop(), but that function only
440 * covers circuits up to and including 3 hops that are still actually
441 * completing hops. However, circuit_expire_building() also handles longer
442 * circuits, as well as circuits that are completely stalled.
443 * In the future (after prop247/other path selection revamping), we probably
444 * want to eliminate this rats nest in favor of a simpler approach.
447 circuit_expire_building(void)
449 /* circ_times.timeout_ms and circ_times.close_ms are from
450 * circuit_build_times_get_initial_timeout() if we haven't computed
451 * custom timeouts yet */
452 struct timeval general_cutoff
, begindir_cutoff
, fourhop_cutoff
,
453 close_cutoff
, extremely_old_cutoff
, hs_extremely_old_cutoff
,
454 cannibalized_cutoff
, c_intro_cutoff
, s_intro_cutoff
, stream_cutoff
;
455 const or_options_t
*options
= get_options();
457 cpath_build_state_t
*build_state
;
458 int any_opened_circs
= 0;
460 tor_gettimeofday(&now
);
462 /* Check to see if we have any opened circuits. If we don't,
463 * we want to be more lenient with timeouts, in case the
464 * user has relocated and/or changed network connections.
466 any_opened_circs
= circuit_any_opened_circuits();
468 #define SET_CUTOFF(target, msec) do { \
469 long ms = tor_lround(msec); \
470 struct timeval diff; \
471 diff.tv_sec = ms / 1000; \
472 diff.tv_usec = (int)((ms % 1000) * 1000); \
473 timersub(&now, &diff, &target); \
477 * Because circuit build timeout is calculated only based on 3 hop
478 * general purpose circuit construction, we need to scale the timeout
479 * to make it properly apply to longer circuits, and circuits of
480 * certain usage types. The following diagram illustrates how we
481 * derive the scaling below. In short, we calculate the number
482 * of times our telescoping-based circuit construction causes cells
483 * to traverse each link for the circuit purpose types in question,
484 * and then assume each link is equivalent.
486 * OP --a--> A --b--> B --c--> C
487 * OP --a--> A --b--> B --c--> C --d--> D
489 * Let h = a = b = c = d
491 * Three hops (general_cutoff)
498 * RTTs = 4a + 3b + 2c + d
500 * Client INTRODUCE1+ACK: // XXX: correct?
501 * RTTs = 5a + 4b + 3c + 2d
504 * RTTs = 4a + 3b + 2c
507 SET_CUTOFF(general_cutoff
, get_circuit_build_timeout_ms());
508 SET_CUTOFF(begindir_cutoff
, get_circuit_build_timeout_ms());
510 // TODO: We should probably use route_len_for_purpose() here instead,
511 // except that does not count the extra round trip for things like server
514 /* > 3hop circs seem to have a 1.0 second delay on their cannibalized
516 SET_CUTOFF(fourhop_cutoff
, get_circuit_build_timeout_ms() * (10/6.0) + 1000);
518 /* CIRCUIT_PURPOSE_C_ESTABLISH_REND behaves more like a RELAY cell.
519 * Use the stream cutoff (more or less). */
520 SET_CUTOFF(stream_cutoff
, MAX(options
->CircuitStreamTimeout
,15)*1000 + 1000);
522 /* Be lenient with cannibalized circs. They already survived the official
523 * CBT, and they're usually not performance-critical. */
524 SET_CUTOFF(cannibalized_cutoff
,
525 MAX(get_circuit_build_close_time_ms()*(4/6.0),
526 options
->CircuitStreamTimeout
* 1000) + 1000);
528 /* Intro circs have an extra round trip (and are also 4 hops long) */
529 SET_CUTOFF(c_intro_cutoff
, get_circuit_build_timeout_ms() * (14/6.0) + 1000);
531 /* Server intro circs have an extra round trip */
532 SET_CUTOFF(s_intro_cutoff
, get_circuit_build_timeout_ms() * (9/6.0) + 1000);
534 SET_CUTOFF(close_cutoff
, get_circuit_build_close_time_ms());
535 SET_CUTOFF(extremely_old_cutoff
, get_circuit_build_close_time_ms()*2 + 1000);
537 SET_CUTOFF(hs_extremely_old_cutoff
,
538 MAX(get_circuit_build_close_time_ms()*2 + 1000,
539 options
->SocksTimeout
* 1000));
541 bool fixed_time
= circuit_build_times_disabled(get_options());
543 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*,victim
) {
544 struct timeval cutoff
;
546 if (!CIRCUIT_IS_ORIGIN(victim
) || /* didn't originate here */
547 victim
->marked_for_close
) /* don't mess with marked circs */
550 /* If we haven't yet started the first hop, it means we don't have
551 * any orconns available, and thus have not started counting time yet
552 * for this circuit. See circuit_deliver_create_cell() and uses of
555 * Continue to wait in this case. The ORConn should timeout
556 * independently and kill us then.
558 if (TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
== CPATH_STATE_CLOSED
) {
562 build_state
= TO_ORIGIN_CIRCUIT(victim
)->build_state
;
563 if (build_state
&& build_state
->onehop_tunnel
)
564 cutoff
= begindir_cutoff
;
565 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
)
566 cutoff
= close_cutoff
;
567 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
568 cutoff
= c_intro_cutoff
;
569 else if (victim
->purpose
== CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
)
570 cutoff
= s_intro_cutoff
;
571 else if (victim
->purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
)
572 cutoff
= stream_cutoff
;
573 else if (victim
->purpose
== CIRCUIT_PURPOSE_PATH_BIAS_TESTING
)
574 cutoff
= close_cutoff
;
575 else if (TO_ORIGIN_CIRCUIT(victim
)->has_opened
&&
576 victim
->state
!= CIRCUIT_STATE_OPEN
)
577 cutoff
= cannibalized_cutoff
;
578 else if (build_state
&& build_state
->desired_path_len
>= 4)
579 cutoff
= fourhop_cutoff
;
581 cutoff
= general_cutoff
;
583 if (TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
)
584 cutoff
= hs_extremely_old_cutoff
;
586 if (timercmp(&victim
->timestamp_began
, &cutoff
, OP_GT
))
587 continue; /* it's still young, leave it alone */
589 /* We need to double-check the opened state here because
590 * we don't want to consider opened 1-hop dircon circuits for
591 * deciding when to relax the timeout, but we *do* want to relax
592 * those circuits too if nothing else is opened *and* they still
594 if (!any_opened_circs
&& victim
->state
!= CIRCUIT_STATE_OPEN
) {
595 /* It's still young enough that we wouldn't close it, right? */
596 if (timercmp(&victim
->timestamp_began
, &close_cutoff
, OP_GT
)) {
597 if (!TO_ORIGIN_CIRCUIT(victim
)->relaxed_timeout
) {
598 int first_hop_succeeded
= TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
602 "No circuits are opened. Relaxing timeout for circuit %d "
603 "(a %s %d-hop circuit in state %s with channel state %s).",
604 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
605 circuit_purpose_to_string(victim
->purpose
),
606 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
607 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
609 circuit_state_to_string(victim
->state
),
611 channel_state_to_string(victim
->n_chan
->state
) : "none");
614 /* We count the timeout here for CBT, because technically this
615 * was a timeout, and the timeout value needs to reset if we
616 * see enough of them. Note this means we also need to avoid
617 * double-counting below, too. */
618 circuit_build_times_count_timeout(get_circuit_build_times_mutable(),
619 first_hop_succeeded
);
620 TO_ORIGIN_CIRCUIT(victim
)->relaxed_timeout
= 1;
624 static ratelim_t relax_timeout_limit
= RATELIM_INIT(3600);
625 const double build_close_ms
= get_circuit_build_close_time_ms();
627 log_fn_ratelim(&relax_timeout_limit
, LOG_NOTICE
, LD_CIRC
,
628 "No circuits are opened. Relaxed timeout for circuit %d "
629 "(a %s %d-hop circuit in state %s with channel state %s) to "
630 "%ldms. However, it appears the circuit has timed out "
632 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
633 circuit_purpose_to_string(victim
->purpose
),
634 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
635 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
637 circuit_state_to_string(victim
->state
),
639 channel_state_to_string(victim
->n_chan
->state
) : "none",
640 (long)build_close_ms
);
646 /* some debug logs, to help track bugs */
647 if (victim
->purpose
>= CIRCUIT_PURPOSE_C_INTRODUCING
&&
648 victim
->purpose
<= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
) {
649 if (!victim
->timestamp_dirty
)
650 log_fn(LOG_DEBUG
,"Considering %sopen purpose %d to %s (circid %d)."
652 victim
->state
== CIRCUIT_STATE_OPEN
? "" : "non",
653 victim
->purpose
, victim
->build_state
->chosen_exit_name
,
656 log_fn(LOG_DEBUG
,"Considering %sopen purpose %d to %s (circid %d). "
657 "%d secs since dirty.",
658 victim
->state
== CIRCUIT_STATE_OPEN
? "" : "non",
659 victim
->purpose
, victim
->build_state
->chosen_exit_name
,
661 (int)(now
- victim
->timestamp_dirty
));
665 /* if circ is !open, or if it's open but purpose is a non-finished
666 * intro or rend, then mark it for close */
667 if (victim
->state
== CIRCUIT_STATE_OPEN
) {
668 switch (victim
->purpose
) {
669 default: /* most open circuits can be left alone. */
670 continue; /* yes, continue inside a switch refers to the nearest
671 * enclosing loop. C is smart. */
672 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
673 break; /* too old, need to die */
674 case CIRCUIT_PURPOSE_C_REND_READY
:
675 /* it's a rend_ready circ -- has it already picked a query? */
676 /* c_rend_ready circs measure age since timestamp_dirty,
677 * because that's set when they switch purposes
679 if (TO_ORIGIN_CIRCUIT(victim
)->hs_ident
||
680 victim
->timestamp_dirty
> cutoff
.tv_sec
)
683 case CIRCUIT_PURPOSE_PATH_BIAS_TESTING
:
684 /* Open path bias testing circuits are given a long
685 * time to complete the test, but not forever */
686 TO_ORIGIN_CIRCUIT(victim
)->path_state
= PATH_STATE_USE_FAILED
;
688 case CIRCUIT_PURPOSE_C_INTRODUCING
:
689 /* That purpose means that the intro point circuit has been opened
690 * successfully but the INTRODUCE1 cell hasn't been sent yet because
691 * the client is waiting for the rendezvous point circuit to open.
692 * Keep this circuit open while waiting for the rendezvous circuit.
693 * We let the circuit idle timeout take care of cleaning this
694 * circuit if it never used. */
696 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
697 case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
:
698 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
699 /* rend and intro circs become dirty each time they
700 * make an introduction attempt. so timestamp_dirty
701 * will reflect the time since the last attempt.
703 if (victim
->timestamp_dirty
> cutoff
.tv_sec
)
707 } else { /* circuit not open, consider recording failure as timeout */
708 int first_hop_succeeded
= TO_ORIGIN_CIRCUIT(victim
)->cpath
&&
709 TO_ORIGIN_CIRCUIT(victim
)->cpath
->state
== CPATH_STATE_OPEN
;
711 if (TO_ORIGIN_CIRCUIT(victim
)->p_streams
!= NULL
) {
712 log_warn(LD_BUG
, "Circuit %d (purpose %d, %s) has timed out, "
713 "yet has attached streams!",
714 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
716 circuit_purpose_to_string(victim
->purpose
));
717 tor_fragile_assert();
721 if (circuit_timeout_want_to_count_circ(TO_ORIGIN_CIRCUIT(victim
)) &&
722 circuit_build_times_enough_to_compute(get_circuit_build_times())) {
725 "Deciding to count the timeout for circuit %"PRIu32
,
726 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
);
728 /* Circuits are allowed to last longer for measurement.
729 * Switch their purpose and wait. */
730 if (victim
->purpose
!= CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
) {
731 circuit_build_times_mark_circ_as_measurement_only(TO_ORIGIN_CIRCUIT(
737 * If the circuit build time is much greater than we would have cut
738 * it off at, we probably had a suspend event along this codepath,
739 * and we should discard the value.
741 if (timercmp(&victim
->timestamp_began
, &extremely_old_cutoff
, OP_LT
)) {
743 "Extremely large value for circuit build timeout: %lds. "
744 "Assuming clock jump. Purpose %d (%s)",
745 (long)(now
.tv_sec
- victim
->timestamp_began
.tv_sec
),
747 circuit_purpose_to_string(victim
->purpose
));
748 } else if (circuit_build_times_count_close(
749 get_circuit_build_times_mutable(),
751 (time_t)victim
->timestamp_created
.tv_sec
)) {
752 circuit_build_times_set_timeout(get_circuit_build_times_mutable());
757 /* If this is a hidden service client circuit which is far enough along in
758 * connecting to its destination, and we haven't already flagged it as
759 * 'timed out', flag it so we'll launch another intro or rend circ, but
760 * don't mark it for close yet.
762 * (Circs flagged as 'timed out' are given a much longer timeout
763 * period above, so we won't close them in the next call to
764 * circuit_expire_building.) */
765 if (!(TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
)) {
766 switch (victim
->purpose
) {
767 case CIRCUIT_PURPOSE_C_REND_READY
:
768 /* We only want to spare a rend circ iff it has been specified in an
769 * INTRODUCE1 cell sent to a hidden service. */
770 if (!hs_circ_is_rend_sent_in_intro1(CONST_TO_ORIGIN_CIRCUIT(victim
))) {
774 case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
:
775 case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
:
776 /* If we have reached this line, we want to spare the circ for now. */
777 log_info(LD_CIRC
,"Marking circ %u (state %d:%s, purpose %d) "
778 "as timed-out HS circ",
779 (unsigned)victim
->n_circ_id
,
780 victim
->state
, circuit_state_to_string(victim
->state
),
782 TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
= 1;
789 /* If this is a service-side rendezvous circuit which is far
790 * enough along in connecting to its destination, consider sparing
792 if (!(TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
) &&
793 victim
->purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
) {
794 log_info(LD_CIRC
,"Marking circ %u (state %d:%s, purpose %d) "
795 "as timed-out HS circ; relaunching rendezvous attempt.",
796 (unsigned)victim
->n_circ_id
,
797 victim
->state
, circuit_state_to_string(victim
->state
),
799 TO_ORIGIN_CIRCUIT(victim
)->hs_circ_has_timed_out
= 1;
800 hs_circ_retry_service_rendezvous_point(TO_ORIGIN_CIRCUIT(victim
));
806 "Abandoning circ %u %s:%u (state %d,%d:%s, purpose %d, "
807 "len %d)", TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
808 channel_describe_peer(victim
->n_chan
),
809 (unsigned)victim
->n_circ_id
,
810 TO_ORIGIN_CIRCUIT(victim
)->has_opened
,
811 victim
->state
, circuit_state_to_string(victim
->state
),
813 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
814 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
818 "Abandoning circ %u %u (state %d,%d:%s, purpose %d, len %d)",
819 TO_ORIGIN_CIRCUIT(victim
)->global_identifier
,
820 (unsigned)victim
->n_circ_id
,
821 TO_ORIGIN_CIRCUIT(victim
)->has_opened
,
823 circuit_state_to_string(victim
->state
), victim
->purpose
,
824 TO_ORIGIN_CIRCUIT(victim
)->build_state
?
825 TO_ORIGIN_CIRCUIT(victim
)->build_state
->desired_path_len
:
828 circuit_log_path(LOG_INFO
,LD_CIRC
,TO_ORIGIN_CIRCUIT(victim
));
829 tor_trace(TR_SUBSYS(circuit
), TR_EV(timeout
), TO_ORIGIN_CIRCUIT(victim
));
830 if (victim
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
)
831 circuit_mark_for_close(victim
, END_CIRC_REASON_MEASUREMENT_EXPIRED
);
833 circuit_mark_for_close(victim
, END_CIRC_REASON_TIMEOUT
);
835 pathbias_count_timeout(TO_ORIGIN_CIRCUIT(victim
));
836 } SMARTLIST_FOREACH_END(victim
);
840 * Mark for close all circuits that start here, that were built through a
841 * guard we weren't sure if we wanted to use, and that have been waiting
842 * around for way too long.
845 circuit_expire_waiting_for_better_guard(void)
847 SMARTLIST_FOREACH_BEGIN(circuit_get_global_origin_circuit_list(),
848 origin_circuit_t
*, circ
) {
849 if (TO_CIRCUIT(circ
)->marked_for_close
)
851 if (circ
->guard_state
== NULL
)
853 if (entry_guard_state_should_expire(circ
->guard_state
))
854 circuit_mark_for_close(TO_CIRCUIT(circ
), END_CIRC_REASON_NONE
);
855 } SMARTLIST_FOREACH_END(circ
);
858 /** For debugging #8387: track when we last called
859 * circuit_expire_old_circuits_clientside. */
860 static time_t last_expired_clientside_circuits
= 0;
863 * As a diagnostic for bug 8387, log information about how many one-hop
864 * circuits we have around that have been there for at least <b>age</b>
865 * seconds. Log a few of them. Ignores Single Onion Service intro, it is
866 * expected to be long-term one-hop circuits.
869 circuit_log_ancient_one_hop_circuits(int age
)
871 #define MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG 10
872 time_t now
= time(NULL
);
873 time_t cutoff
= now
- age
;
875 smartlist_t
*log_these
= smartlist_new();
876 const or_options_t
*options
= get_options();
878 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
879 const origin_circuit_t
*ocirc
;
880 if (! CIRCUIT_IS_ORIGIN(circ
))
882 if (circ
->timestamp_created
.tv_sec
>= cutoff
)
884 /* Single Onion Services deliberately make long term one-hop intro
885 * and rendezvous connections. Don't log the established ones. */
886 if (hs_service_allow_non_anonymous_connection(options
) &&
887 (circ
->purpose
== CIRCUIT_PURPOSE_S_INTRO
||
888 circ
->purpose
== CIRCUIT_PURPOSE_S_REND_JOINED
))
890 ocirc
= CONST_TO_ORIGIN_CIRCUIT(circ
);
892 if (ocirc
->build_state
&& ocirc
->build_state
->onehop_tunnel
) {
895 if (smartlist_len(log_these
) < MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG
)
896 smartlist_add(log_these
, (origin_circuit_t
*) ocirc
);
899 SMARTLIST_FOREACH_END(circ
);
904 log_notice(LD_HEARTBEAT
,
905 "Diagnostic for issue 8387: Found %d one-hop circuits more "
906 "than %d seconds old! Logging %d...",
907 n_found
, age
, smartlist_len(log_these
));
909 SMARTLIST_FOREACH_BEGIN(log_these
, const origin_circuit_t
*, ocirc
) {
910 char created
[ISO_TIME_LEN
+1];
912 const edge_connection_t
*conn
;
914 const circuit_t
*circ
= TO_CIRCUIT(ocirc
);
916 format_local_iso_time(created
,
917 (time_t)circ
->timestamp_created
.tv_sec
);
919 if (circ
->timestamp_dirty
) {
920 char dirty_since
[ISO_TIME_LEN
+1];
921 format_local_iso_time(dirty_since
, circ
->timestamp_dirty
);
923 tor_asprintf(&dirty
, "Dirty since %s (%ld seconds vs %ld-second cutoff)",
924 dirty_since
, (long)(now
- circ
->timestamp_dirty
),
925 (long) options
->MaxCircuitDirtiness
);
927 dirty
= tor_strdup("Not marked dirty");
930 log_notice(LD_HEARTBEAT
, " #%d created at %s. %s, %s. %s for close. "
931 "Package window: %d. "
932 "%s for new conns. %s.",
935 circuit_state_to_string(circ
->state
),
936 circuit_purpose_to_string(circ
->purpose
),
937 circ
->marked_for_close
? "Marked" : "Not marked",
938 circ
->package_window
,
939 ocirc
->unusable_for_new_conns
? "Not usable" : "usable",
944 for (conn
= ocirc
->p_streams
; conn
; conn
= conn
->next_stream
) {
945 const connection_t
*c
= TO_CONN(conn
);
946 char stream_created
[ISO_TIME_LEN
+1];
947 if (++stream_num
>= 5)
950 format_local_iso_time(stream_created
, c
->timestamp_created
);
952 log_notice(LD_HEARTBEAT
, " Stream#%d created at %s. "
953 "%s conn in state %s. "
954 "It is %slinked and %sreading from a linked connection %p. "
955 "Package window %d. "
956 "%s for close (%s:%d). Hold-open is %sset. "
957 "Has %ssent RELAY_END. %s on circuit.",
960 conn_type_to_string(c
->type
),
961 conn_state_to_string(c
->type
, c
->state
),
962 c
->linked
? "" : "not ",
963 c
->reading_from_linked_conn
? "": "not",
965 conn
->package_window
,
966 c
->marked_for_close
? "Marked" : "Not marked",
967 c
->marked_for_close_file
? c
->marked_for_close_file
: "--",
969 c
->hold_open_until_flushed
? "" : "not ",
970 conn
->edge_has_sent_end
? "" : "not ",
971 conn
->edge_blocked_on_circ
? "Blocked" : "Not blocked");
972 if (! c
->linked_conn
)
977 log_notice(LD_HEARTBEAT
, " Linked to %s connection in state %s "
978 "(Purpose %d). %s for close (%s:%d). Hold-open is %sset. ",
979 conn_type_to_string(c
->type
),
980 conn_state_to_string(c
->type
, c
->state
),
982 c
->marked_for_close
? "Marked" : "Not marked",
983 c
->marked_for_close_file
? c
->marked_for_close_file
: "--",
985 c
->hold_open_until_flushed
? "" : "not ");
987 } SMARTLIST_FOREACH_END(ocirc
);
989 log_notice(LD_HEARTBEAT
, "It has been %ld seconds since I last called "
990 "circuit_expire_old_circuits_clientside().",
991 (long)(now
- last_expired_clientside_circuits
));
994 smartlist_free(log_these
);
997 /** Remove any elements in <b>needed_ports</b> that are handled by an
998 * open or in-progress circuit.
1001 circuit_remove_handled_ports(smartlist_t
*needed_ports
)
1006 for (i
= 0; i
< smartlist_len(needed_ports
); ++i
) {
1007 port
= smartlist_get(needed_ports
, i
);
1009 if (circuit_stream_is_being_handled(NULL
, *port
,
1010 MIN_CIRCUITS_HANDLING_STREAM
)) {
1011 log_debug(LD_CIRC
,"Port %d is already being handled; removing.", *port
);
1012 smartlist_del(needed_ports
, i
--);
1015 log_debug(LD_CIRC
,"Port %d is not handled.", *port
);
1020 /** Return 1 if at least <b>min</b> general-purpose non-internal circuits
1021 * will have an acceptable exit node for exit stream <b>conn</b> if it
1022 * is defined, else for "*:port".
1026 circuit_stream_is_being_handled(entry_connection_t
*conn
,
1027 uint16_t port
, int min
)
1029 const node_t
*exitnode
;
1031 time_t now
= time(NULL
);
1032 int need_uptime
= smartlist_contains_int_as_string(
1033 get_options()->LongLivedPorts
,
1034 conn
? conn
->socks_request
->port
: port
);
1036 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1037 if (CIRCUIT_IS_ORIGIN(circ
) &&
1038 !circ
->marked_for_close
&&
1039 circ
->purpose
== CIRCUIT_PURPOSE_C_GENERAL
&&
1040 (!circ
->timestamp_dirty
||
1041 circ
->timestamp_dirty
+ get_options()->MaxCircuitDirtiness
> now
)) {
1042 origin_circuit_t
*origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
1043 cpath_build_state_t
*build_state
= origin_circ
->build_state
;
1044 if (build_state
->is_internal
|| build_state
->onehop_tunnel
)
1046 if (origin_circ
->unusable_for_new_conns
)
1048 if (origin_circ
->isolation_values_set
&&
1050 !connection_edge_compatible_with_circuit(conn
, origin_circ
)))
1053 exitnode
= build_state_get_exit_node(build_state
);
1054 if (exitnode
&& (!need_uptime
|| build_state
->need_uptime
)) {
1057 ok
= connection_ap_can_use_exit(conn
, exitnode
);
1059 addr_policy_result_t r
;
1060 r
= compare_tor_addr_to_node_policy(NULL
, port
, exitnode
);
1061 ok
= r
!= ADDR_POLICY_REJECTED
&& r
!= ADDR_POLICY_PROBABLY_REJECTED
;
1070 SMARTLIST_FOREACH_END(circ
);
1074 /** Don't keep more than this many unused open circuits around. */
1075 #define MAX_UNUSED_OPEN_CIRCUITS 14
1077 /* Return true if a circuit is available for use, meaning that it is open,
1078 * clean, usable for new multi-hop connections, and a general purpose origin
1080 * Accept any kind of circuit, return false if the above conditions are not
1083 circuit_is_available_for_use(const circuit_t
*circ
)
1085 const origin_circuit_t
*origin_circ
;
1086 cpath_build_state_t
*build_state
;
1088 if (!CIRCUIT_IS_ORIGIN(circ
))
1089 return 0; /* We first filter out only origin circuits before doing the
1090 following checks. */
1091 if (circ
->marked_for_close
)
1092 return 0; /* Don't mess with marked circs */
1093 if (circ
->timestamp_dirty
)
1094 return 0; /* Only count clean circs */
1095 if (circ
->purpose
!= CIRCUIT_PURPOSE_C_GENERAL
&&
1096 circ
->purpose
!= CIRCUIT_PURPOSE_HS_VANGUARDS
)
1097 return 0; /* We only pay attention to general purpose circuits.
1098 General purpose circuits are always origin circuits. */
1100 origin_circ
= CONST_TO_ORIGIN_CIRCUIT(circ
);
1101 if (origin_circ
->unusable_for_new_conns
)
1104 build_state
= origin_circ
->build_state
;
1105 if (build_state
->onehop_tunnel
)
1111 /* Return true if we need any more exit circuits.
1112 * needs_uptime and needs_capacity are set only if we need more exit circuits.
1113 * Check if we know of a port that's been requested recently and no circuit
1114 * is currently available that can handle it. */
1116 needs_exit_circuits(time_t now
, int *needs_uptime
, int *needs_capacity
)
1118 return (!circuit_all_predicted_ports_handled(now
, needs_uptime
,
1120 router_have_consensus_path() == CONSENSUS_PATH_EXIT
);
1123 /* Hidden services need at least this many internal circuits */
1124 #define SUFFICIENT_UPTIME_INTERNAL_HS_SERVERS 3
1126 /* Return true if we need any more hidden service server circuits.
1127 * HS servers only need an internal circuit. */
1129 needs_hs_server_circuits(time_t now
, int num_uptime_internal
)
1131 if (!hs_service_get_num_services()) {
1132 /* No services, we don't need anything. */
1136 if (num_uptime_internal
>= SUFFICIENT_UPTIME_INTERNAL_HS_SERVERS
) {
1137 /* We have sufficient amount of internal circuit. */
1141 if (router_have_consensus_path() == CONSENSUS_PATH_UNKNOWN
) {
1142 /* Consensus hasn't been checked or might be invalid so requesting
1143 * internal circuits is not wise. */
1147 /* At this point, we need a certain amount of circuits and we will most
1148 * likely use them for rendezvous so we note down the use of internal
1149 * circuit for our prediction for circuit needing uptime and capacity. */
1150 rep_hist_note_used_internal(now
, 1, 1);
1157 /* We need at least this many internal circuits for hidden service clients */
1158 #define SUFFICIENT_INTERNAL_HS_CLIENTS 3
1160 /* We need at least this much uptime for internal circuits for hidden service
1162 #define SUFFICIENT_UPTIME_INTERNAL_HS_CLIENTS 2
1164 /* Return true if we need any more hidden service client circuits.
1165 * HS clients only need an internal circuit. */
1167 needs_hs_client_circuits(time_t now
, int *needs_uptime
, int *needs_capacity
,
1168 int num_internal
, int num_uptime_internal
)
1170 int used_internal_recently
= rep_hist_get_predicted_internal(now
,
1173 int requires_uptime
= num_uptime_internal
<
1174 SUFFICIENT_UPTIME_INTERNAL_HS_CLIENTS
&&
1177 return (used_internal_recently
&&
1178 (requires_uptime
|| num_internal
< SUFFICIENT_INTERNAL_HS_CLIENTS
) &&
1179 router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN
);
1182 /* This is how many circuits can be opened concurrently during the cbt learning
1183 * phase. This number cannot exceed the tor-wide MAX_UNUSED_OPEN_CIRCUITS. */
1184 #define DFLT_CBT_UNUSED_OPEN_CIRCS (10)
1185 #define MIN_CBT_UNUSED_OPEN_CIRCS 0
1186 #define MAX_CBT_UNUSED_OPEN_CIRCS MAX_UNUSED_OPEN_CIRCUITS
1188 /* Return true if we need more circuits for a good build timeout.
1189 * XXXX make the assumption that build timeout streams should be
1190 * created whenever we can build internal circuits. */
1192 needs_circuits_for_build(int num
)
1194 if (router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN
) {
1195 if (num
< networkstatus_get_param(NULL
, "cbtmaxopencircs",
1196 DFLT_CBT_UNUSED_OPEN_CIRCS
,
1197 MIN_CBT_UNUSED_OPEN_CIRCS
,
1198 MAX_CBT_UNUSED_OPEN_CIRCS
) &&
1199 !circuit_build_times_disabled(get_options()) &&
1200 circuit_build_times_needs_circuits_now(get_circuit_build_times())) {
1207 /** Determine how many circuits we have open that are clean,
1208 * Make sure it's enough for all the upcoming behaviors we predict we'll have.
1209 * But put an upper bound on the total number of circuits.
1212 circuit_predict_and_launch_new(void)
1214 int num
=0, num_internal
=0, num_uptime_internal
=0;
1215 int hidserv_needs_uptime
=0, hidserv_needs_capacity
=1;
1216 int port_needs_uptime
=0, port_needs_capacity
=1;
1217 time_t now
= time(NULL
);
1220 /* Count how many of each type of circuit we currently have. */
1221 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1222 if (!circuit_is_available_for_use(circ
))
1227 cpath_build_state_t
*build_state
= TO_ORIGIN_CIRCUIT(circ
)->build_state
;
1228 if (build_state
->is_internal
)
1230 if (build_state
->need_uptime
&& build_state
->is_internal
)
1231 num_uptime_internal
++;
1233 SMARTLIST_FOREACH_END(circ
);
1235 /* If that's enough, then stop now. */
1236 if (num
>= MAX_UNUSED_OPEN_CIRCUITS
)
1239 if (needs_exit_circuits(now
, &port_needs_uptime
, &port_needs_capacity
)) {
1240 if (port_needs_uptime
)
1241 flags
|= CIRCLAUNCH_NEED_UPTIME
;
1242 if (port_needs_capacity
)
1243 flags
|= CIRCLAUNCH_NEED_CAPACITY
;
1246 "Have %d clean circs (%d internal), need another exit circ.",
1248 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1252 if (needs_hs_server_circuits(now
, num_uptime_internal
)) {
1253 flags
= (CIRCLAUNCH_NEED_CAPACITY
| CIRCLAUNCH_NEED_UPTIME
|
1254 CIRCLAUNCH_IS_INTERNAL
);
1257 "Have %d clean circs (%d internal), need another internal "
1258 "circ for my hidden service.",
1260 circuit_launch(CIRCUIT_PURPOSE_HS_VANGUARDS
, flags
);
1264 if (needs_hs_client_circuits(now
, &hidserv_needs_uptime
,
1265 &hidserv_needs_capacity
,
1266 num_internal
, num_uptime_internal
))
1268 if (hidserv_needs_uptime
)
1269 flags
|= CIRCLAUNCH_NEED_UPTIME
;
1270 if (hidserv_needs_capacity
)
1271 flags
|= CIRCLAUNCH_NEED_CAPACITY
;
1272 flags
|= CIRCLAUNCH_IS_INTERNAL
;
1275 "Have %d clean circs (%d uptime-internal, %d internal), need"
1276 " another hidden service circ.",
1277 num
, num_uptime_internal
, num_internal
);
1279 /* Always launch vanguards purpose circuits for HS clients,
1280 * for vanguards-lite. This prevents us from cannibalizing
1281 * to build these circuits (and thus not use vanguards). */
1282 circuit_launch(CIRCUIT_PURPOSE_HS_VANGUARDS
, flags
);
1286 if (needs_circuits_for_build(num
)) {
1287 flags
= CIRCLAUNCH_NEED_CAPACITY
;
1288 /* if there are no exits in the consensus, make timeout
1289 * circuits internal */
1290 if (router_have_consensus_path() == CONSENSUS_PATH_INTERNAL
)
1291 flags
|= CIRCLAUNCH_IS_INTERNAL
;
1294 "Have %d clean circs need another buildtime test circ.", num
);
1295 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, flags
);
1300 /** Build a new test circuit every 5 minutes */
1301 #define TESTING_CIRCUIT_INTERVAL 300
1303 /** This function is called once a second, if router_have_minimum_dir_info()
1304 * is true. Its job is to make sure all services we offer have enough circuits
1305 * available. Some services just want enough circuits for current tasks,
1306 * whereas others want a minimum set of idle circuits hanging around.
1309 circuit_build_needed_circs(time_t now
)
1311 const or_options_t
*options
= get_options();
1313 /* launch a new circ for any pending streams that need one
1314 * XXXX make the assumption that (some) AP streams (i.e. HS clients)
1315 * don't require an exit circuit, review in #13814.
1316 * This allows HSs to function in a consensus without exits. */
1317 if (router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN
)
1318 connection_ap_rescan_and_attach_pending();
1320 circuit_expire_old_circs_as_needed(now
);
1322 if (!options
->DisablePredictedCircuits
)
1323 circuit_predict_and_launch_new();
1327 * Called once a second either directly or from
1328 * circuit_build_needed_circs(). As appropriate (once per NewCircuitPeriod)
1329 * resets failure counts and expires old circuits.
1332 circuit_expire_old_circs_as_needed(time_t now
)
1334 static time_t time_to_expire_and_reset
= 0;
1336 if (time_to_expire_and_reset
< now
) {
1337 circuit_reset_failure_count(1);
1338 time_to_expire_and_reset
= now
+ get_options()->NewCircuitPeriod
;
1339 if (proxy_mode(get_options()))
1340 addressmap_clean(now
);
1341 circuit_expire_old_circuits_clientside();
1343 #if 0 /* disable for now, until predict-and-launch-new can cull leftovers */
1345 /* If we ever re-enable, this has to move into
1346 * circuit_build_needed_circs */
1348 circ
= circuit_get_youngest_clean_open(CIRCUIT_PURPOSE_C_GENERAL
);
1349 if (get_options()->RunTesting
&&
1351 circ
->timestamp_began
.tv_sec
+ TESTING_CIRCUIT_INTERVAL
< now
) {
1352 log_fn(LOG_INFO
,"Creating a new testing circuit.");
1353 circuit_launch(CIRCUIT_PURPOSE_C_GENERAL
, 0);
1359 /** If the stream <b>conn</b> is a member of any of the linked
1360 * lists of <b>circ</b>, then remove it from the list.
1363 circuit_detach_stream(circuit_t
*circ
, edge_connection_t
*conn
)
1365 edge_connection_t
*prevconn
;
1370 if (conn
->base_
.type
== CONN_TYPE_AP
) {
1371 entry_connection_t
*entry_conn
= EDGE_TO_ENTRY_CONN(conn
);
1372 entry_conn
->may_use_optimistic_data
= 0;
1374 conn
->cpath_layer
= NULL
; /* don't keep a stale pointer */
1375 conn
->on_circuit
= NULL
;
1377 if (CIRCUIT_IS_ORIGIN(circ
)) {
1378 origin_circuit_t
*origin_circ
= TO_ORIGIN_CIRCUIT(circ
);
1380 if (conn
== origin_circ
->p_streams
) {
1381 origin_circ
->p_streams
= conn
->next_stream
;
1384 for (prevconn
= origin_circ
->p_streams
;
1385 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1386 prevconn
= prevconn
->next_stream
)
1388 if (prevconn
&& prevconn
->next_stream
) {
1389 prevconn
->next_stream
= conn
->next_stream
;
1394 log_debug(LD_APP
, "Removing stream %d from circ %u",
1395 conn
->stream_id
, (unsigned)circ
->n_circ_id
);
1397 /* If the stream was removed, and it was a rend stream, decrement the
1398 * number of streams on the circuit associated with the rend service.
1400 if (circ
->purpose
== CIRCUIT_PURPOSE_S_REND_JOINED
) {
1401 hs_dec_rdv_stream_counter(origin_circ
);
1404 /* If there are no more streams on this circ, tell circpad */
1405 if (!origin_circ
->p_streams
)
1406 circpad_machine_event_circ_has_no_streams(origin_circ
);
1411 or_circuit_t
*or_circ
= TO_OR_CIRCUIT(circ
);
1412 if (conn
== or_circ
->n_streams
) {
1413 or_circ
->n_streams
= conn
->next_stream
;
1416 if (conn
== or_circ
->resolving_streams
) {
1417 or_circ
->resolving_streams
= conn
->next_stream
;
1421 for (prevconn
= or_circ
->n_streams
;
1422 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1423 prevconn
= prevconn
->next_stream
)
1425 if (prevconn
&& prevconn
->next_stream
) {
1426 prevconn
->next_stream
= conn
->next_stream
;
1430 for (prevconn
= or_circ
->resolving_streams
;
1431 prevconn
&& prevconn
->next_stream
&& prevconn
->next_stream
!= conn
;
1432 prevconn
= prevconn
->next_stream
)
1434 if (prevconn
&& prevconn
->next_stream
) {
1435 prevconn
->next_stream
= conn
->next_stream
;
1440 log_warn(LD_BUG
,"Edge connection not in circuit's list.");
1441 /* Don't give an error here; it's harmless. */
1442 tor_fragile_assert();
1445 /** Find each circuit that has been unused for too long, or dirty
1446 * for too long and has no streams on it: mark it for close.
1449 circuit_expire_old_circuits_clientside(void)
1451 struct timeval cutoff
, now
;
1453 tor_gettimeofday(&now
);
1454 last_expired_clientside_circuits
= now
.tv_sec
;
1456 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1457 if (circ
->marked_for_close
|| !CIRCUIT_IS_ORIGIN(circ
))
1461 cutoff
.tv_sec
-= TO_ORIGIN_CIRCUIT(circ
)->circuit_idle_timeout
;
1463 /* If the circuit has been dirty for too long, and there are no streams
1464 * on it, mark it for close.
1466 if (circ
->timestamp_dirty
&&
1467 circ
->timestamp_dirty
+ get_options()->MaxCircuitDirtiness
<
1469 !TO_ORIGIN_CIRCUIT(circ
)->p_streams
/* nothing attached */ ) {
1470 log_debug(LD_CIRC
, "Closing n_circ_id %u (dirty %ld sec ago, "
1472 (unsigned)circ
->n_circ_id
,
1473 (long)(now
.tv_sec
- circ
->timestamp_dirty
),
1475 /* Don't do this magic for testing circuits. Their death is governed
1476 * by circuit_expire_building */
1477 if (circ
->purpose
!= CIRCUIT_PURPOSE_PATH_BIAS_TESTING
) {
1478 tor_trace(TR_SUBSYS(circuit
), TR_EV(idle_timeout
),
1479 TO_ORIGIN_CIRCUIT(circ
));
1480 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1482 } else if (!circ
->timestamp_dirty
&& circ
->state
== CIRCUIT_STATE_OPEN
) {
1483 if (timercmp(&circ
->timestamp_began
, &cutoff
, OP_LT
)) {
1484 if (circ
->purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
1485 circ
->purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
||
1486 circ
->purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
1487 circ
->purpose
== CIRCUIT_PURPOSE_HS_VANGUARDS
||
1488 circ
->purpose
== CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT
||
1489 circ
->purpose
== CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
||
1490 circ
->purpose
== CIRCUIT_PURPOSE_TESTING
||
1491 circ
->purpose
== CIRCUIT_PURPOSE_C_CIRCUIT_PADDING
||
1492 (circ
->purpose
>= CIRCUIT_PURPOSE_C_INTRODUCING
&&
1493 circ
->purpose
<= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
) ||
1494 circ
->purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
) {
1496 "Closing circuit %"PRIu32
1497 " that has been unused for %ld msec.",
1498 TO_ORIGIN_CIRCUIT(circ
)->global_identifier
,
1499 tv_mdiff(&circ
->timestamp_began
, &now
));
1500 tor_trace(TR_SUBSYS(circuit
), TR_EV(idle_timeout
),
1501 TO_ORIGIN_CIRCUIT(circ
));
1502 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1503 } else if (!TO_ORIGIN_CIRCUIT(circ
)->is_ancient
) {
1504 /* Server-side rend joined circuits can end up really old, because
1505 * they are reused by clients for longer than normal. The client
1506 * controls their lifespan. (They never become dirty, because
1507 * connection_exit_begin_conn() never marks anything as dirty.)
1508 * Similarly, server-side intro circuits last a long time. */
1509 if (circ
->purpose
!= CIRCUIT_PURPOSE_S_REND_JOINED
&&
1510 circ
->purpose
!= CIRCUIT_PURPOSE_S_INTRO
) {
1512 "Ancient non-dirty circuit %d is still around after "
1513 "%ld milliseconds. Purpose: %d (%s)",
1514 TO_ORIGIN_CIRCUIT(circ
)->global_identifier
,
1515 tv_mdiff(&circ
->timestamp_began
, &now
),
1517 circuit_purpose_to_string(circ
->purpose
));
1518 TO_ORIGIN_CIRCUIT(circ
)->is_ancient
= 1;
1523 } SMARTLIST_FOREACH_END(circ
);
1526 /** How long do we wait before killing circuits with the properties
1529 * Probably we could choose a number here as low as 5 to 10 seconds,
1530 * since these circs are used for begindir, and a) generally you either
1531 * ask another begindir question right after or you don't for a long time,
1532 * b) clients at least through 0.2.1.x choose from the whole set of
1533 * directory mirrors at each choice, and c) re-establishing a one-hop
1534 * circuit via create-fast is a light operation assuming the TLS conn is
1537 * I expect "b" to go away one day when we move to using directory
1538 * guards, but I think "a" and "c" are good enough reasons that a low
1539 * number is safe even then.
1541 #define IDLE_ONE_HOP_CIRC_TIMEOUT 60
1543 /** Find each non-origin circuit that has been unused for too long,
1544 * has no streams on it, came from a client, and ends here: mark it
1548 circuit_expire_old_circuits_serverside(time_t now
)
1550 or_circuit_t
*or_circ
;
1551 time_t cutoff
= now
- IDLE_ONE_HOP_CIRC_TIMEOUT
;
1553 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1554 if (circ
->marked_for_close
|| CIRCUIT_IS_ORIGIN(circ
))
1556 or_circ
= TO_OR_CIRCUIT(circ
);
1557 /* If the circuit has been idle for too long, and there are no streams
1558 * on it, and it ends here, and it used a create_fast, mark it for close.
1560 * Also if there is a rend_splice on it, it's a single onion service
1561 * circuit and we should not close it.
1563 if (or_circ
->p_chan
&& channel_is_client(or_circ
->p_chan
) &&
1565 !or_circ
->n_streams
&& !or_circ
->resolving_streams
&&
1566 !or_circ
->rend_splice
&&
1567 channel_when_last_xmit(or_circ
->p_chan
) <= cutoff
) {
1568 log_info(LD_CIRC
, "Closing circ_id %u (empty %d secs ago)",
1569 (unsigned)or_circ
->p_circ_id
,
1570 (int)(now
- channel_when_last_xmit(or_circ
->p_chan
)));
1571 circuit_mark_for_close(circ
, END_CIRC_REASON_FINISHED
);
1574 SMARTLIST_FOREACH_END(circ
);
1577 /** Number of testing circuits we want open before testing our bandwidth. */
1578 #define NUM_PARALLEL_TESTING_CIRCS 4
1580 /** True iff we've ever had enough testing circuits open to test our
1582 static int have_performed_bandwidth_test
= 0;
1584 /** Reset have_performed_bandwidth_test, so we'll start building
1585 * testing circuits again so we can exercise our bandwidth. */
1587 reset_bandwidth_test(void)
1589 have_performed_bandwidth_test
= 0;
1592 /** Return 1 if we've already exercised our bandwidth, or if we
1593 * have fewer than NUM_PARALLEL_TESTING_CIRCS testing circuits
1594 * established or on the way. Else return 0.
1597 circuit_enough_testing_circs(void)
1601 if (have_performed_bandwidth_test
)
1604 SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t
*, circ
) {
1605 if (!circ
->marked_for_close
&& CIRCUIT_IS_ORIGIN(circ
) &&
1606 circ
->purpose
== CIRCUIT_PURPOSE_TESTING
&&
1607 circ
->state
== CIRCUIT_STATE_OPEN
)
1610 SMARTLIST_FOREACH_END(circ
);
1611 return num
>= NUM_PARALLEL_TESTING_CIRCS
;
1614 /** A testing circuit has completed. Take whatever stats we want.
1615 * Noticing reachability is taken care of in onionskin_answer(),
1616 * so there's no need to record anything here. But if we still want
1617 * to do the bandwidth test, and we now have enough testing circuits
1621 circuit_testing_opened(origin_circuit_t
*circ
)
1623 if (have_performed_bandwidth_test
||
1624 !router_orport_seems_reachable(get_options(), AF_INET
)) {
1625 /* either we've already done everything we want with testing circuits,
1626 * OR this IPv4 testing circuit became open due to a fluke, e.g. we picked
1627 * a last hop where we already had the connection open due to a
1628 * outgoing local circuit, OR this is an IPv6 self-test circuit, not
1629 * a bandwidth test circuit. */
1630 circuit_mark_for_close(TO_CIRCUIT(circ
), END_CIRC_AT_ORIGIN
);
1631 } else if (circuit_enough_testing_circs()) {
1632 router_perform_bandwidth_test(NUM_PARALLEL_TESTING_CIRCS
, time(NULL
));
1633 have_performed_bandwidth_test
= 1;
1635 router_do_reachability_checks();
1639 /** A testing circuit has failed to build. Take whatever stats we want. */
1641 circuit_testing_failed(origin_circuit_t
*circ
, int at_last_hop
)
1643 const or_options_t
*options
= get_options();
1644 if (server_mode(options
) &&
1645 router_all_orports_seem_reachable(options
))
1648 log_info(LD_GENERAL
,
1649 "Our testing circuit (to see if your ORPort is reachable) "
1650 "has failed. I'll try again later.");
1652 /* These aren't used yet. */
1657 /** The circuit <b>circ</b> has just become open. Take the next
1658 * step: for rendezvous circuits, we pass circ to the appropriate
1659 * function in rendclient or rendservice. For general circuits, we
1660 * call connection_ap_attach_pending, which looks for pending streams
1661 * that could use circ.
1664 circuit_has_opened(origin_circuit_t
*circ
)
1666 tor_trace(TR_SUBSYS(circuit
), TR_EV(opened
), circ
);
1667 circuit_event_status(circ
, CIRC_EVENT_BUILT
, 0);
1669 /* Remember that this circuit has finished building. Now if we start
1670 * it building again later (e.g. by extending it), we will know not
1671 * to consider its build time. */
1672 circ
->has_opened
= 1;
1674 switch (TO_CIRCUIT(circ
)->purpose
) {
1675 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
1676 hs_client_circuit_has_opened(circ
);
1677 /* Start building an intro circ if we don't have one yet. */
1678 connection_ap_attach_pending(1);
1679 /* This isn't a call to circuit_try_attaching_streams because a
1680 * circuit in _C_ESTABLISH_REND state isn't connected to its
1681 * hidden service yet, thus we can't attach streams to it yet,
1682 * thus circuit_try_attaching_streams would always clear the
1683 * circuit's isolation state. circuit_try_attaching_streams is
1684 * called later, when the rend circ enters _C_REND_JOINED
1687 case CIRCUIT_PURPOSE_C_INTRODUCING
:
1688 hs_client_circuit_has_opened(circ
);
1690 case CIRCUIT_PURPOSE_C_GENERAL
:
1691 case CIRCUIT_PURPOSE_C_HSDIR_GET
:
1692 case CIRCUIT_PURPOSE_S_HSDIR_POST
:
1693 /* Tell any AP connections that have been waiting for a new
1694 * circuit that one is ready. */
1695 circuit_try_attaching_streams(circ
);
1697 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
1698 /* at the service, waiting for introductions */
1699 hs_service_circuit_has_opened(circ
);
1701 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
1702 /* at the service, connecting to rend point */
1703 hs_service_circuit_has_opened(circ
);
1705 case CIRCUIT_PURPOSE_TESTING
:
1706 circuit_testing_opened(circ
);
1709 * This won't happen in normal operation, but might happen if the
1710 * controller did it. Just let it slide. */
1714 /** If the stream-isolation state of <b>circ</b> can be cleared, clear
1715 * it. Return non-zero iff <b>circ</b>'s isolation state was cleared. */
1717 circuit_try_clearing_isolation_state(origin_circuit_t
*circ
)
1719 if (/* The circuit may have become non-open if it was cannibalized.*/
1720 circ
->base_
.state
== CIRCUIT_STATE_OPEN
&&
1721 /* If !isolation_values_set, there is nothing to clear. */
1722 circ
->isolation_values_set
&&
1723 /* It's not legal to clear a circuit's isolation info if it's ever had
1724 * streams attached */
1725 !circ
->isolation_any_streams_attached
) {
1726 /* If we have any isolation information set on this circuit, and
1727 * we didn't manage to attach any streams to it, then we can
1728 * and should clear it and try again. */
1729 circuit_clear_isolation(circ
);
1736 /** Called when a circuit becomes ready for streams to be attached to
1739 circuit_try_attaching_streams(origin_circuit_t
*circ
)
1741 /* Attach streams to this circuit if we can. */
1742 connection_ap_attach_pending(1);
1744 /* The call to circuit_try_clearing_isolation_state here will do
1745 * nothing and return 0 if we didn't attach any streams to circ
1747 if (circuit_try_clearing_isolation_state(circ
)) {
1748 /* Maybe *now* we can attach some streams to this circuit. */
1749 connection_ap_attach_pending(1);
1753 /** Called whenever a circuit could not be successfully built.
1756 circuit_build_failed(origin_circuit_t
*circ
)
1758 channel_t
*n_chan
= NULL
;
1759 /* we should examine circ and see if it failed because of
1760 * the last hop or an earlier hop. then use this info below.
1762 int failed_at_last_hop
= 0;
1764 /* First, check to see if this was a path failure, rather than build
1767 * Note that we deliberately use circuit_get_cpath_len() (and not
1768 * circuit_get_cpath_opened_len()) because we only want to ensure
1769 * that a full path is *chosen*. This is different than a full path
1770 * being *built*. We only want to count *build* failures below.
1772 * Path selection failures can happen spuriously for a number
1773 * of reasons (such as aggressive/invalid user-specified path
1774 * restrictions in the torrc, insufficient microdescriptors, and
1775 * non-user reasons like exitpolicy issues), and so should not be
1776 * counted as failures below.
1778 if (circuit_get_cpath_len(circ
) < circ
->build_state
->desired_path_len
) {
1779 static ratelim_t pathfail_limit
= RATELIM_INIT(3600);
1780 log_fn_ratelim(&pathfail_limit
, LOG_NOTICE
, LD_CIRC
,
1781 "Our circuit %u (id: %" PRIu32
") died due to an invalid "
1782 "selected path, purpose %s. This may be a torrc "
1783 "configuration issue, or a bug.",
1784 TO_CIRCUIT(circ
)->n_circ_id
, circ
->global_identifier
,
1785 circuit_purpose_to_string(TO_CIRCUIT(circ
)->purpose
));
1787 /* If the path failed on an RP, retry it. */
1788 if (TO_CIRCUIT(circ
)->purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
)
1789 hs_circ_retry_service_rendezvous_point(circ
);
1791 /* In all other cases, just bail. The rest is just failure accounting
1792 * that we don't want to do */
1796 /* If the last hop isn't open, and the second-to-last is, we failed
1797 * at the last hop. */
1799 circ
->cpath
->prev
->state
!= CPATH_STATE_OPEN
&&
1800 circ
->cpath
->prev
->prev
->state
== CPATH_STATE_OPEN
) {
1801 failed_at_last_hop
= 1;
1804 /* Check if we failed at first hop */
1806 circ
->cpath
->state
!= CPATH_STATE_OPEN
&&
1807 ! circ
->base_
.received_destroy
) {
1808 /* We failed at the first hop for some reason other than a DESTROY cell.
1809 * If there's an OR connection to blame, blame it. Also, avoid this relay
1810 * for a while, and fail any one-hop directory fetches destined for it. */
1811 const char *n_chan_ident
= circ
->cpath
->extend_info
->identity_digest
;
1812 tor_assert(n_chan_ident
);
1813 int already_marked
= 0;
1814 if (circ
->base_
.n_chan
) {
1815 n_chan
= circ
->base_
.n_chan
;
1817 if (n_chan
->is_bad_for_new_circs
) {
1818 /* We only want to blame this router when a fresh healthy
1819 * connection fails. So don't mark this router as newly failed,
1820 * since maybe this was just an old circuit attempt that's
1821 * finally timing out now. Also, there's no need to blow away
1822 * circuits/streams/etc, since the failure of an unhealthy conn
1823 * doesn't tell us much about whether a healthy conn would
1828 "Our circuit %u (id: %" PRIu32
") failed to get a response "
1829 "from the first hop (%s). I'm going to try to rotate to a "
1830 "better connection.",
1831 TO_CIRCUIT(circ
)->n_circ_id
, circ
->global_identifier
,
1832 channel_describe_peer(n_chan
));
1833 n_chan
->is_bad_for_new_circs
= 1;
1836 "Our circuit %u (id: %" PRIu32
") died before the first hop "
1837 "with no connection",
1838 TO_CIRCUIT(circ
)->n_circ_id
, circ
->global_identifier
);
1840 if (!already_marked
) {
1842 * If we have guard state (new guard API) and our path selection
1843 * code actually chose a full path, then blame the failure of this
1844 * circuit on the guard.
1846 if (circ
->guard_state
)
1847 entry_guard_failed(&circ
->guard_state
);
1848 /* if there are any one-hop streams waiting on this circuit, fail
1849 * them now so they can retry elsewhere. */
1850 connection_ap_fail_onehop(n_chan_ident
, circ
->build_state
);
1854 switch (circ
->base_
.purpose
) {
1855 case CIRCUIT_PURPOSE_C_HSDIR_GET
:
1856 case CIRCUIT_PURPOSE_S_HSDIR_POST
:
1857 case CIRCUIT_PURPOSE_C_GENERAL
:
1858 /* If we never built the circuit, note it as a failure. */
1859 circuit_increment_failure_count();
1860 if (failed_at_last_hop
) {
1861 /* Make sure any streams that demand our last hop as their exit
1862 * know that it's unlikely to happen. */
1863 circuit_discard_optional_exit_enclaves(circ
->cpath
->prev
->extend_info
);
1866 case CIRCUIT_PURPOSE_TESTING
:
1867 circuit_testing_failed(circ
, failed_at_last_hop
);
1869 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
1870 /* at the service, waiting for introductions */
1871 if (circ
->base_
.state
!= CIRCUIT_STATE_OPEN
) {
1872 circuit_increment_failure_count();
1874 /* no need to care here, because the service will rebuild intro
1875 * points periodically. */
1877 case CIRCUIT_PURPOSE_C_INTRODUCING
:
1878 /* at the client, connecting to intro point */
1879 /* Don't increment failure count, since the service may have picked
1880 * the introduction point maliciously */
1881 /* The client will pick a new intro point when this one dies, if
1882 * the stream in question still cares. No need to act here. */
1884 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
1885 /* at the client, waiting for the service */
1886 circuit_increment_failure_count();
1887 /* the client will pick a new rend point when this one dies, if
1888 * the stream in question still cares. No need to act here. */
1890 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
1891 /* at the service, connecting to rend point */
1892 /* Don't increment failure count, since the client may have picked
1893 * the rendezvous point maliciously */
1895 "Couldn't connect to the client's chosen rend point %s "
1897 escaped(build_state_get_exit_nickname(circ
->build_state
)),
1898 failed_at_last_hop
?"last":"non-last");
1899 hs_circ_retry_service_rendezvous_point(circ
);
1902 * This won't happen in normal operation, but might happen if the
1903 * controller did it. Just let it slide. */
1907 /** Number of consecutive failures so far; should only be touched by
1908 * circuit_launch_new and circuit_*_failure_count.
1910 static int n_circuit_failures
= 0;
1911 /** Before the last time we called circuit_reset_failure_count(), were
1912 * there a lot of failures? */
1913 static int did_circs_fail_last_period
= 0;
1915 /** Don't retry launching a new circuit if we try this many times with no
1917 #define MAX_CIRCUIT_FAILURES 5
1919 /** Launch a new circuit; see circuit_launch_by_extend_info() for
1920 * details on arguments. */
1922 circuit_launch(uint8_t purpose
, int flags
)
1924 return circuit_launch_by_extend_info(purpose
, NULL
, flags
);
1927 /* Do we have enough descriptors to build paths?
1928 * If need_exit is true, return 1 if we can build exit paths.
1929 * (We need at least one Exit in the consensus to build exit paths.)
1930 * If need_exit is false, return 1 if we can build internal paths.
1933 have_enough_path_info(int need_exit
)
1936 return router_have_consensus_path() == CONSENSUS_PATH_EXIT
;
1938 return router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN
;
1942 * Tell us if a circuit is a hidden service circuit.
1945 circuit_purpose_is_hidden_service(uint8_t purpose
)
1947 /* HS Vanguard purpose. */
1948 if (circuit_purpose_is_hs_vanguards(purpose
)) {
1952 /* Client-side purpose */
1953 if (circuit_purpose_is_hs_client(purpose
)) {
1957 /* Service-side purpose */
1958 if (circuit_purpose_is_hs_service(purpose
)) {
1965 /** Return true iff the given circuit is an HS client circuit. */
1967 circuit_purpose_is_hs_client(const uint8_t purpose
)
1969 return (purpose
>= CIRCUIT_PURPOSE_C_HS_MIN_
&&
1970 purpose
<= CIRCUIT_PURPOSE_C_HS_MAX_
);
1973 /** Return true iff the given circuit is an HS service circuit. */
1975 circuit_purpose_is_hs_service(const uint8_t purpose
)
1977 return (purpose
>= CIRCUIT_PURPOSE_S_HS_MIN_
&&
1978 purpose
<= CIRCUIT_PURPOSE_S_HS_MAX_
);
1981 /** Return true iff the given circuit is an HS Vanguards circuit. */
1983 circuit_purpose_is_hs_vanguards(const uint8_t purpose
)
1985 return (purpose
== CIRCUIT_PURPOSE_HS_VANGUARDS
);
1988 /** Return true iff the given circuit is an HS v3 circuit. */
1990 circuit_is_hs_v3(const circuit_t
*circ
)
1992 return (CIRCUIT_IS_ORIGIN(circ
) &&
1993 (CONST_TO_ORIGIN_CIRCUIT(circ
)->hs_ident
!= NULL
));
1997 * Return true if this circuit purpose should use vanguards
1998 * or pinned Layer2 or Layer3 guards.
2000 * This function takes both the circuit purpose and the
2001 * torrc options for pinned middles/vanguards into account
2002 * (ie: the circuit must be a hidden service circuit and
2003 * vanguards/pinned middles must be enabled for it to return
2007 circuit_should_use_vanguards(uint8_t purpose
)
2009 /* All hidden service circuits use either vanguards or
2010 * vanguards-lite. */
2011 if (circuit_purpose_is_hidden_service(purpose
))
2014 /* Everything else is a normal circuit */
2019 * Return true for the set of conditions for which it is OK to use
2020 * a cannibalized circuit.
2022 * Don't cannibalize for onehops, or certain purposes.
2025 circuit_should_cannibalize_to_build(uint8_t purpose_to_build
,
2026 int has_extend_info
,
2030 /* Do not try to cannibalize if this is a one hop circuit. */
2031 if (onehop_tunnel
) {
2035 /* Don't try to cannibalize for general purpose circuits that do not
2036 * specify a custom exit. */
2037 if (purpose_to_build
== CIRCUIT_PURPOSE_C_GENERAL
&& !has_extend_info
) {
2041 /* Don't cannibalize for testing circuits. We want to see if they
2042 * complete normally. Also don't cannibalize for vanguard-purpose
2043 * circuits, since those are specially pre-built for later
2044 * cannibalization by the actual specific circuit types that need
2047 if (purpose_to_build
== CIRCUIT_PURPOSE_TESTING
||
2048 purpose_to_build
== CIRCUIT_PURPOSE_HS_VANGUARDS
) {
2052 /* The server-side intro circ is not cannibalized because it only
2053 * needs a 3 hop circuit. It is also long-lived, so it is more
2054 * important that it have lower latency than get built fast.
2056 if (purpose_to_build
== CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
) {
2063 /** Launch a new circuit with purpose <b>purpose</b> and exit node
2064 * <b>extend_info</b> (or NULL to select a random exit node).
2066 * If flags contains:
2067 * - CIRCLAUNCH_ONEHOP_TUNNEL: the circuit will have only one hop;
2068 * - CIRCLAUNCH_NEED_UPTIME: choose routers with high uptime;
2069 * - CIRCLAUNCH_NEED_CAPACITY: choose routers with high bandwidth;
2070 * - CIRCLAUNCH_IS_IPV6_SELFTEST: the second-last hop must support IPv6
2072 * - CIRCLAUNCH_IS_INTERNAL: the last hop need not be an exit node;
2073 * - CIRCLAUNCH_IS_V3_RP: the last hop must support v3 onion service
2076 * Return the newly allocated circuit on success, or NULL on failure. */
2078 circuit_launch_by_extend_info(uint8_t purpose
,
2079 extend_info_t
*extend_info
,
2082 origin_circuit_t
*circ
;
2083 int onehop_tunnel
= (flags
& CIRCLAUNCH_ONEHOP_TUNNEL
) != 0;
2084 int have_path
= have_enough_path_info(! (flags
& CIRCLAUNCH_IS_INTERNAL
) );
2086 /* Keep some stats about our attempts to launch HS rendezvous circuits */
2087 if (purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
) {
2088 hs_stats_note_service_rendezvous_launch();
2091 if (!onehop_tunnel
&& (!router_have_minimum_dir_info() || !have_path
)) {
2092 log_debug(LD_CIRC
,"Haven't %s yet; canceling "
2094 !router_have_minimum_dir_info() ?
2095 "fetched enough directory info" :
2096 "received a consensus with exits");
2100 /* If we can/should cannibalize another circuit to build this one,
2102 if (circuit_should_cannibalize_to_build(purpose
,
2103 extend_info
!= NULL
,
2105 /* see if there are appropriate circs available to cannibalize. */
2106 /* XXX if we're planning to add a hop, perhaps we want to look for
2107 * internal circs rather than exit circs? -RD */
2108 circ
= circuit_find_to_cannibalize(purpose
, extend_info
, flags
);
2110 uint8_t old_purpose
= circ
->base_
.purpose
;
2111 struct timeval old_timestamp_began
= circ
->base_
.timestamp_began
;
2113 log_info(LD_CIRC
, "Cannibalizing circ %u (id: %" PRIu32
") for "
2115 TO_CIRCUIT(circ
)->n_circ_id
, circ
->global_identifier
, purpose
,
2116 circuit_purpose_to_string(purpose
));
2118 if ((purpose
== CIRCUIT_PURPOSE_S_CONNECT_REND
||
2119 purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
) &&
2120 circ
->path_state
== PATH_STATE_BUILD_SUCCEEDED
) {
2121 /* Path bias: Cannibalized rends pre-emptively count as a
2122 * successfully built but unused closed circuit. We don't
2123 * wait until the extend (or the close) because the rend
2124 * point could be malicious.
2126 * Same deal goes for client side introductions. Clients
2127 * can be manipulated to connect repeatedly to them
2128 * (especially web clients).
2130 * If we decide to probe the initial portion of these circs,
2131 * (up to the adversary's final hop), we need to remove this,
2132 * or somehow mark the circuit with a special path state.
2135 /* This must be called before the purpose change */
2136 pathbias_check_close(circ
, END_CIRC_REASON_FINISHED
);
2139 circuit_change_purpose(TO_CIRCUIT(circ
), purpose
);
2140 /* Reset the start date of this circ, else expire_building
2141 * will see it and think it's been trying to build since it
2144 * Technically, the code should reset this when the
2145 * create cell is finally sent, but we're close enough
2147 tor_gettimeofday(&circ
->base_
.timestamp_began
);
2149 control_event_circuit_cannibalized(circ
, old_purpose
,
2150 &old_timestamp_began
);
2153 case CIRCUIT_PURPOSE_C_ESTABLISH_REND
:
2154 /* it's ready right now */
2156 case CIRCUIT_PURPOSE_C_INTRODUCING
:
2157 case CIRCUIT_PURPOSE_S_CONNECT_REND
:
2158 case CIRCUIT_PURPOSE_C_GENERAL
:
2159 case CIRCUIT_PURPOSE_S_HSDIR_POST
:
2160 case CIRCUIT_PURPOSE_C_HSDIR_GET
:
2161 case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO
:
2162 /* need to add a new hop */
2163 tor_assert(extend_info
);
2164 if (circuit_extend_to_new_exit(circ
, extend_info
) < 0)
2169 "unexpected purpose %d when cannibalizing a circ.",
2171 tor_fragile_assert();
2175 tor_trace(TR_SUBSYS(circuit
), TR_EV(cannibalized
), circ
);
2180 if (did_circs_fail_last_period
&&
2181 n_circuit_failures
> MAX_CIRCUIT_FAILURES
) {
2182 /* too many failed circs in a row. don't try. */
2183 // log_fn(LOG_INFO,"%d failures so far, not trying.",n_circuit_failures);
2187 /* try a circ. if it fails, circuit_mark_for_close will increment
2188 * n_circuit_failures */
2189 return circuit_establish_circuit(purpose
, extend_info
, flags
);
2192 /** Record another failure at opening a general circuit. When we have
2193 * too many, we'll stop trying for the remainder of this minute.
2196 circuit_increment_failure_count(void)
2198 ++n_circuit_failures
;
2199 log_debug(LD_CIRC
,"n_circuit_failures now %d.",n_circuit_failures
);
2202 /** Reset the failure count for opening general circuits. This means
2203 * we will try MAX_CIRCUIT_FAILURES times more (if necessary) before
2207 circuit_reset_failure_count(int timeout
)
2209 if (timeout
&& n_circuit_failures
> MAX_CIRCUIT_FAILURES
)
2210 did_circs_fail_last_period
= 1;
2212 did_circs_fail_last_period
= 0;
2213 n_circuit_failures
= 0;
2216 /** Find an open circ that we're happy to use for <b>conn</b> and return 1. If
2217 * there isn't one, and there isn't one on the way, launch one and return
2218 * 0. If it will never work, return -1.
2220 * Write the found or in-progress or launched circ into *circp.
2223 circuit_get_open_circ_or_launch(entry_connection_t
*conn
,
2224 uint8_t desired_circuit_purpose
,
2225 origin_circuit_t
**circp
)
2227 origin_circuit_t
*circ
;
2228 int check_exit_policy
;
2229 int need_uptime
, need_internal
;
2231 const or_options_t
*options
= get_options();
2235 if (ENTRY_TO_CONN(conn
)->state
!= AP_CONN_STATE_CIRCUIT_WAIT
) {
2236 connection_t
*c
= ENTRY_TO_CONN(conn
);
2237 log_err(LD_BUG
, "Connection state mismatch: wanted "
2238 "AP_CONN_STATE_CIRCUIT_WAIT, but got %d (%s)",
2239 c
->state
, conn_state_to_string(c
->type
, c
->state
));
2241 tor_assert(ENTRY_TO_CONN(conn
)->state
== AP_CONN_STATE_CIRCUIT_WAIT
);
2243 /* Will the exit policy of the exit node apply to this stream? */
2245 conn
->socks_request
->command
== SOCKS_COMMAND_CONNECT
&&
2246 !conn
->use_begindir
&&
2247 !connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn
));
2249 /* Does this connection want a one-hop circuit? */
2250 want_onehop
= conn
->want_onehop
;
2252 /* Do we need a high-uptime circuit? */
2253 need_uptime
= !conn
->want_onehop
&& !conn
->use_begindir
&&
2254 smartlist_contains_int_as_string(options
->LongLivedPorts
,
2255 conn
->socks_request
->port
);
2257 /* Do we need an "internal" circuit? */
2258 if (desired_circuit_purpose
!= CIRCUIT_PURPOSE_C_GENERAL
)
2260 else if (conn
->use_begindir
|| conn
->want_onehop
)
2265 /* We now know what kind of circuit we need. See if there is an
2266 * open circuit that we can use for this stream */
2267 circ
= circuit_get_best(conn
, 1 /* Insist on open circuits */,
2268 desired_circuit_purpose
,
2269 need_uptime
, need_internal
);
2272 /* We got a circuit that will work for this stream! We can return it. */
2274 return 1; /* we're happy */
2277 /* Okay, there's no circuit open that will work for this stream. Let's
2278 * see if there's an in-progress circuit or if we have to launch one */
2280 /* Do we know enough directory info to build circuits at all? */
2281 int have_path
= have_enough_path_info(!need_internal
);
2283 if (!want_onehop
&& (!router_have_minimum_dir_info() || !have_path
)) {
2284 /* If we don't have enough directory information, we can't build
2285 * multihop circuits.
2287 if (!connection_get_by_type(CONN_TYPE_DIR
)) {
2288 int severity
= LOG_NOTICE
;
2289 /* Retry some stuff that might help the connection work. */
2290 /* If we are configured with EntryNodes or UseBridges */
2291 if (entry_list_is_constrained(options
)) {
2292 /* Retry all our guards / bridges.
2293 * guards_retry_optimistic() always returns true here. */
2294 int rv
= guards_retry_optimistic(options
);
2295 tor_assert_nonfatal_once(rv
);
2296 log_fn(severity
, LD_APP
|LD_DIR
,
2297 "Application request when we haven't %s. "
2298 "Optimistically trying known %s again.",
2299 !router_have_minimum_dir_info() ?
2300 "used client functionality lately" :
2301 "received a consensus with exits",
2302 options
->UseBridges
? "bridges" : "entrynodes");
2304 /* Getting directory documents doesn't help much if we have a limited
2305 * number of guards */
2306 tor_assert_nonfatal(!options
->UseBridges
);
2307 tor_assert_nonfatal(!options
->EntryNodes
);
2308 /* Retry our directory fetches, so we have a fresh set of guard info */
2309 log_fn(severity
, LD_APP
|LD_DIR
,
2310 "Application request when we haven't %s. "
2311 "Optimistically trying directory fetches again.",
2312 !router_have_minimum_dir_info() ?
2313 "used client functionality lately" :
2314 "received a consensus with exits");
2315 routerlist_retry_directory_downloads(time(NULL
));
2318 /* Since we didn't have enough directory info, we can't attach now. The
2319 * stream will be dealt with when router_have_minimum_dir_info becomes 1,
2320 * or when all directory attempts fail and directory_all_unreachable()
2326 /* Check whether the exit policy of the chosen exit, or the exit policies
2327 * of _all_ nodes, would forbid this node. */
2328 if (check_exit_policy
) {
2329 if (!conn
->chosen_exit_name
) {
2331 tor_addr_t addr
, *addrp
=NULL
;
2332 if (tor_inet_aton(conn
->socks_request
->address
, &in
)) {
2333 tor_addr_from_in(&addr
, &in
);
2336 if (router_exit_policy_all_nodes_reject(addrp
,
2337 conn
->socks_request
->port
,
2340 "No Tor server allows exit to %s:%d. Rejecting.",
2341 safe_str_client(conn
->socks_request
->address
),
2342 conn
->socks_request
->port
);
2346 /* XXXX Duplicates checks in connection_ap_handshake_attach_circuit:
2347 * refactor into a single function. */
2348 const node_t
*node
= node_get_by_nickname(conn
->chosen_exit_name
, 0);
2349 int opt
= conn
->chosen_exit_optional
;
2350 if (node
&& !connection_ap_can_use_exit(conn
, node
)) {
2351 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2352 "Requested exit point '%s' is excluded or "
2353 "would refuse request. %s.",
2354 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2356 conn
->chosen_exit_optional
= 0;
2357 tor_free(conn
->chosen_exit_name
);
2359 return circuit_get_open_circ_or_launch(conn
,
2360 desired_circuit_purpose
,
2368 /* Now, check whether there already a circuit on the way that could handle
2369 * this stream. This check matches the one above, but this time we
2370 * do not require that the circuit will work. */
2371 circ
= circuit_get_best(conn
, 0 /* don't insist on open circuits */,
2372 desired_circuit_purpose
,
2373 need_uptime
, need_internal
);
2375 log_debug(LD_CIRC
, "one on the way!");
2378 /* No open or in-progress circuit could handle this stream! We
2379 * will have to launch one!
2382 /* The chosen exit node, if there is one. */
2383 extend_info_t
*extend_info
=NULL
;
2384 const int n_pending
= count_pending_general_client_circuits();
2386 /* Do we have too many pending circuits? */
2387 if (n_pending
>= options
->MaxClientCircuitsPending
) {
2388 static ratelim_t delay_limit
= RATELIM_INIT(10*60);
2390 if ((m
= rate_limit_log(&delay_limit
, approx_time()))) {
2391 log_notice(LD_APP
, "We'd like to launch a circuit to handle a "
2392 "connection, but we already have %d general-purpose client "
2393 "circuits pending. Waiting until some finish.%s",
2400 /* If this is a hidden service trying to start an introduction point,
2401 * handle that case. */
2402 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
) {
2403 const edge_connection_t
*edge_conn
= ENTRY_TO_EDGE_CONN(conn
);
2404 /* need to pick an intro point */
2405 extend_info
= hs_client_get_random_intro_from_edge(edge_conn
);
2407 log_info(LD_REND
, "No intro points: re-fetching service descriptor.");
2408 hs_client_refetch_hsdesc(&edge_conn
->hs_ident
->identity_pk
);
2409 connection_ap_mark_as_waiting_for_renddesc(conn
);
2412 log_info(LD_REND
,"Chose %s as intro point for service",
2413 extend_info_describe(extend_info
));
2416 /* If we have specified a particular exit node for our
2417 * connection, then be sure to open a circuit to that exit node.
2419 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
2420 desired_circuit_purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
2421 desired_circuit_purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
) {
2422 if (conn
->chosen_exit_name
) {
2424 int opt
= conn
->chosen_exit_optional
;
2425 r
= node_get_by_nickname(conn
->chosen_exit_name
, 0);
2426 if (r
&& node_has_preferred_descriptor(r
, conn
->want_onehop
? 1 : 0)) {
2427 /* We might want to connect to an IPv6 bridge for loading
2428 descriptors so we use the preferred address rather than
2430 extend_info
= extend_info_from_node(r
, conn
->want_onehop
? 1 : 0);
2432 log_warn(LD_CIRC
,"Could not make a one-hop connection to %s. "
2433 "Discarding this circuit.", conn
->chosen_exit_name
);
2436 } else { /* ! (r && node_has_preferred_descriptor(...)) */
2437 log_debug(LD_DIR
, "considering %d, %s",
2438 want_onehop
, conn
->chosen_exit_name
);
2439 if (want_onehop
&& conn
->chosen_exit_name
[0] == '$') {
2440 /* We're asking for a one-hop circuit to a router that
2441 * we don't have a routerinfo about. Make up an extend_info. */
2442 /* XXX prop220: we need to make chosen_exit_name able to
2443 * encode both key formats. This is not absolutely critical
2444 * since this is just for one-hop circuits, but we should
2445 * still get it done */
2446 char digest
[DIGEST_LEN
];
2447 char *hexdigest
= conn
->chosen_exit_name
+1;
2449 if (strlen(hexdigest
) < HEX_DIGEST_LEN
||
2450 base16_decode(digest
,DIGEST_LEN
,
2451 hexdigest
,HEX_DIGEST_LEN
) != DIGEST_LEN
) {
2452 log_info(LD_DIR
, "Broken exit digest on tunnel conn. Closing.");
2455 if (tor_addr_parse(&addr
, conn
->socks_request
->address
) < 0) {
2456 log_info(LD_DIR
, "Broken address %s on tunnel conn. Closing.",
2457 escaped_safe_str_client(conn
->socks_request
->address
));
2460 /* XXXX prop220 add a workaround for ed25519 ID below*/
2461 extend_info
= extend_info_new(conn
->chosen_exit_name
+1,
2463 NULL
, /* Ed25519 ID */
2464 NULL
, NULL
, /* onion keys */
2465 &addr
, conn
->socks_request
->port
,
2467 } else { /* ! (want_onehop && conn->chosen_exit_name[0] == '$') */
2468 /* We will need an onion key for the router, and we
2469 * don't have one. Refuse or relax requirements. */
2470 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2471 "Requested exit point '%s' is not known. %s.",
2472 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2474 conn
->chosen_exit_optional
= 0;
2475 tor_free(conn
->chosen_exit_name
);
2476 /* Try again with no requested exit */
2477 return circuit_get_open_circ_or_launch(conn
,
2478 desired_circuit_purpose
,
2485 } /* Done checking for general circutis with chosen exits. */
2487 /* What purpose do we need to launch this circuit with? */
2488 uint8_t new_circ_purpose
;
2489 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
)
2490 new_circ_purpose
= CIRCUIT_PURPOSE_C_ESTABLISH_REND
;
2491 else if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
)
2492 new_circ_purpose
= CIRCUIT_PURPOSE_C_INTRODUCING
;
2494 new_circ_purpose
= desired_circuit_purpose
;
2496 /* Determine what kind of a circuit to launch, and actually launch it. */
2498 int flags
= CIRCLAUNCH_NEED_CAPACITY
;
2499 if (want_onehop
) flags
|= CIRCLAUNCH_ONEHOP_TUNNEL
;
2500 if (need_uptime
) flags
|= CIRCLAUNCH_NEED_UPTIME
;
2501 if (need_internal
) flags
|= CIRCLAUNCH_IS_INTERNAL
;
2503 /* If we are about to pick a v3 RP right now, make sure we pick a
2504 * rendezvous point that supports the v3 protocol! */
2505 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
&&
2506 new_circ_purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
&&
2507 ENTRY_TO_EDGE_CONN(conn
)->hs_ident
) {
2508 flags
|= CIRCLAUNCH_IS_V3_RP
;
2509 log_info(LD_GENERAL
, "Getting rendezvous circuit to v3 service!");
2512 circ
= circuit_launch_by_extend_info(new_circ_purpose
, extend_info
,
2516 extend_info_free(extend_info
);
2518 /* Now trigger things that need to happen when we launch circuits */
2520 if (desired_circuit_purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
2521 desired_circuit_purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
||
2522 desired_circuit_purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
) {
2523 /* We just caused a circuit to get built because of this stream.
2524 * If this stream has caused a _lot_ of circuits to be built, that's
2525 * a bad sign: we should tell the user. */
2526 if (conn
->num_circuits_launched
< NUM_CIRCUITS_LAUNCHED_THRESHOLD
&&
2527 ++conn
->num_circuits_launched
== NUM_CIRCUITS_LAUNCHED_THRESHOLD
)
2528 log_info(LD_CIRC
, "The application request to %s:%d has launched "
2529 "%d circuits without finding one it likes.",
2530 escaped_safe_str_client(conn
->socks_request
->address
),
2531 conn
->socks_request
->port
,
2532 conn
->num_circuits_launched
);
2534 /* help predict this next time */
2535 rep_hist_note_used_internal(time(NULL
), need_uptime
, 1);
2537 const edge_connection_t
*edge_conn
= ENTRY_TO_EDGE_CONN(conn
);
2538 if (edge_conn
->hs_ident
) {
2540 hs_ident_circuit_new(&edge_conn
->hs_ident
->identity_pk
);
2542 if (circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_ESTABLISH_REND
&&
2543 circ
->base_
.state
== CIRCUIT_STATE_OPEN
)
2544 circuit_has_opened(circ
);
2547 } /* endif (!circ) */
2549 /* We either found a good circuit, or launched a new circuit, or failed to
2550 * do so. Report success, and delay. */
2553 /* Mark the circuit with the isolation fields for this connection.
2554 * When the circuit arrives, we'll clear these flags: this is
2555 * just some internal bookkeeping to make sure that we have
2556 * launched enough circuits.
2558 connection_edge_update_circuit_isolation(conn
, circ
, 0);
2561 "No safe circuit (purpose %d) ready for edge "
2562 "connection; delaying.",
2563 desired_circuit_purpose
);
2569 /** Return true iff <b>crypt_path</b> is one of the crypt_paths for
2572 cpath_is_on_circuit(origin_circuit_t
*circ
, crypt_path_t
*crypt_path
)
2574 crypt_path_t
*cpath
, *cpath_next
= NULL
;
2575 for (cpath
= circ
->cpath
; cpath_next
!= circ
->cpath
; cpath
= cpath_next
) {
2576 cpath_next
= cpath
->next
;
2577 if (crypt_path
== cpath
)
2583 /** Attach the AP stream <b>apconn</b> to circ's linked list of
2584 * p_streams. Also set apconn's cpath_layer to <b>cpath</b>, or to the last
2585 * hop in circ's cpath if <b>cpath</b> is NULL.
2588 link_apconn_to_circ(entry_connection_t
*apconn
, origin_circuit_t
*circ
,
2589 crypt_path_t
*cpath
)
2591 const node_t
*exitnode
= NULL
;
2593 /* add it into the linked list of streams on this circuit */
2594 log_debug(LD_APP
|LD_CIRC
, "attaching new conn to circ. n_circ_id %u.",
2595 (unsigned)circ
->base_
.n_circ_id
);
2597 /* If this is the first stream on this circuit, tell circpad
2598 * that streams are attached */
2599 if (!circ
->p_streams
)
2600 circpad_machine_event_circ_has_streams(circ
);
2602 /* reset it, so we can measure circ timeouts */
2603 ENTRY_TO_CONN(apconn
)->timestamp_last_read_allowed
= time(NULL
);
2604 ENTRY_TO_EDGE_CONN(apconn
)->next_stream
= circ
->p_streams
;
2605 ENTRY_TO_EDGE_CONN(apconn
)->on_circuit
= TO_CIRCUIT(circ
);
2606 /* assert_connection_ok(conn, time(NULL)); */
2607 circ
->p_streams
= ENTRY_TO_EDGE_CONN(apconn
);
2609 if (connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(apconn
))) {
2610 /* We are attaching a stream to a rendezvous circuit. That means
2611 * that an attempt to connect to a hidden service just
2612 * succeeded. Tell rendclient.c. */
2613 hs_client_note_connection_attempt_succeeded(ENTRY_TO_EDGE_CONN(apconn
));
2616 if (cpath
) { /* we were given one; use it */
2617 tor_assert(cpath_is_on_circuit(circ
, cpath
));
2619 /* use the last hop in the circuit */
2620 tor_assert(circ
->cpath
);
2621 tor_assert(circ
->cpath
->prev
);
2622 tor_assert(circ
->cpath
->prev
->state
== CPATH_STATE_OPEN
);
2623 cpath
= circ
->cpath
->prev
;
2625 ENTRY_TO_EDGE_CONN(apconn
)->cpath_layer
= cpath
;
2627 circ
->isolation_any_streams_attached
= 1;
2628 connection_edge_update_circuit_isolation(apconn
, circ
, 0);
2630 /* Compute the exitnode if possible, for logging below */
2631 if (cpath
->extend_info
)
2632 exitnode
= node_get_by_id(cpath
->extend_info
->identity_digest
);
2634 /* See if we can use optimistic data on this circuit */
2635 if (circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
2636 circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_HSDIR_GET
||
2637 circ
->base_
.purpose
== CIRCUIT_PURPOSE_S_HSDIR_POST
||
2638 circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_REND_JOINED
)
2639 apconn
->may_use_optimistic_data
= 1;
2641 apconn
->may_use_optimistic_data
= 0;
2642 log_info(LD_APP
, "Looks like completed circuit to %s %s allow "
2643 "optimistic data for connection to %s",
2644 (circ
->base_
.purpose
== CIRCUIT_PURPOSE_C_GENERAL
||
2645 circ
->base_
.purpose
== CIRCUIT_PURPOSE_CONTROLLER
) ?
2646 /* node_describe() does the right thing if exitnode is NULL */
2647 safe_str_client(node_describe(exitnode
)) :
2649 apconn
->may_use_optimistic_data
? "does" : "doesn't",
2650 safe_str_client(apconn
->socks_request
->address
));
2653 /** Return true iff <b>address</b> is matched by one of the entries in
2654 * TrackHostExits. */
2656 hostname_in_track_host_exits(const or_options_t
*options
, const char *address
)
2658 if (!options
->TrackHostExits
)
2660 SMARTLIST_FOREACH_BEGIN(options
->TrackHostExits
, const char *, cp
) {
2661 if (cp
[0] == '.') { /* match end */
2662 if (cp
[1] == '\0' ||
2663 !strcasecmpend(address
, cp
) ||
2664 !strcasecmp(address
, &cp
[1]))
2666 } else if (strcasecmp(cp
, address
) == 0) {
2669 } SMARTLIST_FOREACH_END(cp
);
2673 /** If an exit wasn't explicitly specified for <b>conn</b>, consider saving
2674 * the exit that we *did* choose for use by future connections to
2675 * <b>conn</b>'s destination.
2678 consider_recording_trackhost(const entry_connection_t
*conn
,
2679 const origin_circuit_t
*circ
)
2681 const or_options_t
*options
= get_options();
2682 char *new_address
= NULL
;
2683 char fp
[HEX_DIGEST_LEN
+1];
2684 uint64_t stream_id
= 0;
2690 stream_id
= ENTRY_TO_CONN(conn
)->global_identifier
;
2692 /* Search the addressmap for this conn's destination. */
2693 /* If they're not in the address map.. */
2694 if (!options
->TrackHostExits
||
2695 addressmap_have_mapping(conn
->socks_request
->address
,
2696 options
->TrackHostExitsExpire
))
2697 return; /* nothing to track, or already mapped */
2699 if (!hostname_in_track_host_exits(options
, conn
->socks_request
->address
) ||
2700 !circ
->build_state
->chosen_exit
)
2703 /* write down the fingerprint of the chosen exit, not the nickname,
2704 * because the chosen exit might not be named. */
2705 base16_encode(fp
, sizeof(fp
),
2706 circ
->build_state
->chosen_exit
->identity_digest
, DIGEST_LEN
);
2708 /* Add this exit/hostname pair to the addressmap. */
2709 tor_asprintf(&new_address
, "%s.%s.exit",
2710 conn
->socks_request
->address
, fp
);
2712 addressmap_register(conn
->socks_request
->address
, new_address
,
2713 time(NULL
) + options
->TrackHostExitsExpire
,
2714 ADDRMAPSRC_TRACKEXIT
, 0, 0, stream_id
);
2717 /** Attempt to attach the connection <b>conn</b> to <b>circ</b>, and send a
2718 * begin or resolve cell as appropriate. Return values are as for
2719 * connection_ap_handshake_attach_circuit. The stream will exit from the hop
2720 * indicated by <b>cpath</b>, or from the last hop in circ's cpath if
2721 * <b>cpath</b> is NULL. */
2723 connection_ap_handshake_attach_chosen_circuit(entry_connection_t
*conn
,
2724 origin_circuit_t
*circ
,
2725 crypt_path_t
*cpath
)
2727 connection_t
*base_conn
= ENTRY_TO_CONN(conn
);
2729 tor_assert(base_conn
->state
== AP_CONN_STATE_CIRCUIT_WAIT
||
2730 base_conn
->state
== AP_CONN_STATE_CONTROLLER_WAIT
);
2731 tor_assert(conn
->socks_request
);
2733 tor_assert(circ
->base_
.state
== CIRCUIT_STATE_OPEN
);
2735 base_conn
->state
= AP_CONN_STATE_CIRCUIT_WAIT
;
2737 if (!circ
->base_
.timestamp_dirty
||
2738 ((conn
->entry_cfg
.isolation_flags
& ISO_SOCKSAUTH
) &&
2739 (conn
->entry_cfg
.socks_iso_keep_alive
) &&
2740 (conn
->socks_request
->usernamelen
||
2741 conn
->socks_request
->passwordlen
))) {
2742 /* When stream isolation is in use and controlled by an application
2743 * we are willing to keep using the stream. */
2744 circ
->base_
.timestamp_dirty
= approx_time();
2747 pathbias_count_use_attempt(circ
);
2749 /* Now, actually link the connection. */
2750 link_apconn_to_circ(conn
, circ
, cpath
);
2752 tor_assert(conn
->socks_request
);
2753 if (conn
->socks_request
->command
== SOCKS_COMMAND_CONNECT
) {
2754 if (!conn
->use_begindir
) {
2755 consider_recording_trackhost(conn
, circ
);
2757 if (connection_ap_handshake_send_begin(conn
) < 0)
2760 if (connection_ap_handshake_send_resolve(conn
) < 0)
2768 * Return an appropriate circuit purpose for non-rend streams.
2769 * We don't handle rends here because a rend stream triggers two
2770 * circuit builds with different purposes, so it is handled elsewhere.
2772 * This function just figures out what type of hsdir activity this is,
2773 * and tells us. Everything else is general.
2776 connection_ap_get_nonrend_circ_purpose(const entry_connection_t
*conn
)
2778 const connection_t
*base_conn
= ENTRY_TO_CONN(conn
);
2779 tor_assert_nonfatal(!connection_edge_is_rendezvous_stream(
2780 ENTRY_TO_EDGE_CONN(conn
)));
2782 if (base_conn
->linked_conn
&&
2783 base_conn
->linked_conn
->type
== CONN_TYPE_DIR
) {
2784 /* Set a custom purpose for hsdir activity */
2785 if (base_conn
->linked_conn
->purpose
== DIR_PURPOSE_UPLOAD_HSDESC
) {
2786 return CIRCUIT_PURPOSE_S_HSDIR_POST
;
2787 } else if (base_conn
->linked_conn
->purpose
== DIR_PURPOSE_FETCH_HSDESC
) {
2788 return CIRCUIT_PURPOSE_C_HSDIR_GET
;
2792 /* All other purposes are general for now */
2793 return CIRCUIT_PURPOSE_C_GENERAL
;
2796 /** Try to find a safe live circuit for stream <b>conn</b>. If we find one,
2797 * attach the stream, send appropriate cells, and return 1. Otherwise,
2798 * try to launch new circuit(s) for the stream. If we can launch
2799 * circuits, return 0. Otherwise, if we simply can't proceed with
2800 * this stream, return -1. (conn needs to die, and is maybe already marked).
2802 /* XXXX this function should mark for close whenever it returns -1;
2803 * its callers shouldn't have to worry about that. */
2805 connection_ap_handshake_attach_circuit(entry_connection_t
*conn
)
2807 connection_t
*base_conn
= ENTRY_TO_CONN(conn
);
2813 tor_assert(base_conn
->state
== AP_CONN_STATE_CIRCUIT_WAIT
);
2814 tor_assert(conn
->socks_request
);
2815 want_onehop
= conn
->want_onehop
;
2817 conn_age
= (int)(time(NULL
) - base_conn
->timestamp_created
);
2819 /* Is this connection so old that we should give up on it? */
2820 if (conn_age
>= get_options()->SocksTimeout
) {
2821 int severity
= (tor_addr_is_null(&base_conn
->addr
) && !base_conn
->port
) ?
2822 LOG_INFO
: LOG_NOTICE
;
2823 log_fn(severity
, LD_APP
,
2824 "Tried for %d seconds to get a connection to %s:%d. Giving up.",
2825 conn_age
, safe_str_client(conn
->socks_request
->address
),
2826 conn
->socks_request
->port
);
2830 /* We handle "general" (non-onion) connections much more straightforwardly.
2832 if (!connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn
))) {
2833 /* we're a general conn */
2834 origin_circuit_t
*circ
=NULL
;
2836 /* Are we linked to a dir conn that aims to fetch a consensus?
2837 * We check here because the conn might no longer be needed. */
2838 if (base_conn
->linked_conn
&&
2839 base_conn
->linked_conn
->type
== CONN_TYPE_DIR
&&
2840 base_conn
->linked_conn
->purpose
== DIR_PURPOSE_FETCH_CONSENSUS
) {
2842 /* Yes we are. Is there a consensus fetch farther along than us? */
2843 if (networkstatus_consensus_is_already_downloading(
2844 TO_DIR_CONN(base_conn
->linked_conn
)->requested_resource
)) {
2845 /* We're doing the "multiple consensus fetch attempts" game from
2846 * proposal 210, and we're late to the party. Just close this conn.
2847 * The circuit and TLS conn that we made will time out after a while
2848 * if nothing else wants to use them. */
2849 log_info(LD_DIR
, "Closing extra consensus fetch (to %s) since one "
2850 "is already downloading.", base_conn
->linked_conn
->address
);
2855 /* If we have a chosen exit, we need to use a circuit that's
2856 * open to that exit. See what exit we meant, and whether we can use it.
2858 if (conn
->chosen_exit_name
) {
2859 const node_t
*node
= node_get_by_nickname(conn
->chosen_exit_name
, 0);
2860 int opt
= conn
->chosen_exit_optional
;
2861 if (!node
&& !want_onehop
) {
2862 /* We ran into this warning when trying to extend a circuit to a
2863 * hidden service directory for which we didn't have a router
2864 * descriptor. See flyspray task 767 for more details. We should
2865 * keep this in mind when deciding to use BEGIN_DIR cells for other
2866 * directory requests as well. -KL*/
2867 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2868 "Requested exit point '%s' is not known. %s.",
2869 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2871 /* If we are allowed to ignore the .exit request, do so */
2872 conn
->chosen_exit_optional
= 0;
2873 tor_free(conn
->chosen_exit_name
);
2878 if (node
&& !connection_ap_can_use_exit(conn
, node
)) {
2879 log_fn(opt
? LOG_INFO
: LOG_WARN
, LD_APP
,
2880 "Requested exit point '%s' is excluded or "
2881 "would refuse request. %s.",
2882 conn
->chosen_exit_name
, opt
? "Trying others" : "Closing");
2884 /* If we are allowed to ignore the .exit request, do so */
2885 conn
->chosen_exit_optional
= 0;
2886 tor_free(conn
->chosen_exit_name
);
2893 /* Find the circuit that we should use, if there is one. Otherwise
2896 retval
= circuit_get_open_circ_or_launch(conn
,
2897 connection_ap_get_nonrend_circ_purpose(conn
),
2901 /* We were either told "-1" (complete failure) or 0 (circuit in
2902 * progress); we can't attach this stream yet. */
2906 log_debug(LD_APP
|LD_CIRC
,
2907 "Attaching apconn to circ %u (stream %d sec old).",
2908 (unsigned)circ
->base_
.n_circ_id
, conn_age
);
2909 /* print the circ's path, so clients can figure out which circs are
2911 circuit_log_path(LOG_INFO
,LD_APP
|LD_CIRC
,circ
);
2913 /* We have found a suitable circuit for our conn. Hurray. Do
2914 * the attachment. */
2915 return connection_ap_handshake_attach_chosen_circuit(conn
, circ
, NULL
);
2917 } else { /* we're a rendezvous conn */
2918 origin_circuit_t
*rendcirc
=NULL
, *introcirc
=NULL
;
2920 tor_assert(!ENTRY_TO_EDGE_CONN(conn
)->cpath_layer
);
2922 /* start by finding a rendezvous circuit for us */
2924 retval
= circuit_get_open_circ_or_launch(
2925 conn
, CIRCUIT_PURPOSE_C_REND_JOINED
, &rendcirc
);
2926 if (retval
< 0) return -1; /* failed */
2929 tor_assert(rendcirc
);
2930 /* one is already established, attach */
2932 "rend joined circ %u (id: %" PRIu32
") already here. "
2933 "Attaching. (stream %d sec old)",
2934 (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
,
2935 rendcirc
->global_identifier
, conn_age
);
2936 /* Mark rendezvous circuits as 'newly dirty' every time you use
2937 * them, since the process of rebuilding a rendezvous circ is so
2938 * expensive. There is a tradeoff between linkability and
2939 * feasibility, at this point.
2941 rendcirc
->base_
.timestamp_dirty
= time(NULL
);
2943 /* We've also attempted to use them. If they fail, we need to
2944 * probe them for path bias */
2945 pathbias_count_use_attempt(rendcirc
);
2947 link_apconn_to_circ(conn
, rendcirc
, NULL
);
2948 if (connection_ap_handshake_send_begin(conn
) < 0)
2949 return 0; /* already marked, let them fade away */
2953 /* At this point we need to re-check the state, since it's possible that
2954 * our call to circuit_get_open_circ_or_launch() changed the connection's
2955 * state from "CIRCUIT_WAIT" to "RENDDESC_WAIT" because we decided to
2956 * re-fetch the descriptor.
2958 if (ENTRY_TO_CONN(conn
)->state
!= AP_CONN_STATE_CIRCUIT_WAIT
) {
2959 log_info(LD_REND
, "This connection is no longer ready to attach; its "
2961 "(We probably have to re-fetch its descriptor.)");
2965 if (rendcirc
&& (rendcirc
->base_
.purpose
==
2966 CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED
)) {
2968 "pending-join circ %u (id: %" PRIu32
") already here, with "
2969 "intro ack. Stalling. (stream %d sec old)",
2970 (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
,
2971 rendcirc
->global_identifier
, conn_age
);
2975 /* it's on its way. find an intro circ. */
2976 retval
= circuit_get_open_circ_or_launch(
2977 conn
, CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT
, &introcirc
);
2978 if (retval
< 0) return -1; /* failed */
2981 /* one has already sent the intro. keep waiting. */
2982 tor_assert(introcirc
);
2983 log_info(LD_REND
, "Intro circ %u (id: %" PRIu32
") present and "
2984 "awaiting ACK. Rend circuit %u (id: %" PRIu32
"). "
2985 "Stalling. (stream %d sec old)",
2986 (unsigned) TO_CIRCUIT(introcirc
)->n_circ_id
,
2987 introcirc
->global_identifier
,
2988 rendcirc
? (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
: 0,
2989 rendcirc
? rendcirc
->global_identifier
: 0,
2994 /* now rendcirc and introcirc are each either undefined or not finished */
2996 if (rendcirc
&& introcirc
&&
2997 rendcirc
->base_
.purpose
== CIRCUIT_PURPOSE_C_REND_READY
) {
2999 "ready rend circ %u (id: %" PRIu32
") already here. No"
3000 "intro-ack yet on intro %u (id: %" PRIu32
"). "
3001 "(stream %d sec old)",
3002 (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
,
3003 rendcirc
->global_identifier
,
3004 (unsigned) TO_CIRCUIT(introcirc
)->n_circ_id
,
3005 introcirc
->global_identifier
, conn_age
);
3007 tor_assert(introcirc
->base_
.purpose
== CIRCUIT_PURPOSE_C_INTRODUCING
);
3008 if (introcirc
->base_
.state
== CIRCUIT_STATE_OPEN
) {
3010 log_info(LD_REND
, "Found open intro circ %u (id: %" PRIu32
"). "
3011 "Rend circuit %u (id: %" PRIu32
"); Sending "
3012 "introduction. (stream %d sec old)",
3013 (unsigned) TO_CIRCUIT(introcirc
)->n_circ_id
,
3014 introcirc
->global_identifier
,
3015 (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
,
3016 rendcirc
->global_identifier
, conn_age
);
3017 ret
= hs_client_send_introduce1(introcirc
, rendcirc
);
3019 case 0: /* success */
3020 rendcirc
->base_
.timestamp_dirty
= time(NULL
);
3021 introcirc
->base_
.timestamp_dirty
= time(NULL
);
3023 pathbias_count_use_attempt(introcirc
);
3024 pathbias_count_use_attempt(rendcirc
);
3026 assert_circuit_ok(TO_CIRCUIT(rendcirc
));
3027 assert_circuit_ok(TO_CIRCUIT(introcirc
));
3029 case -1: /* transient error */
3031 case -2: /* permanent error */
3034 tor_fragile_assert();
3040 log_info(LD_REND
, "Intro %u (id: %" PRIu32
") and rend circuit %u "
3041 "(id: %" PRIu32
") circuits are not both ready. "
3042 "Stalling conn. (%d sec old)",
3043 introcirc
? (unsigned) TO_CIRCUIT(introcirc
)->n_circ_id
: 0,
3044 introcirc
? introcirc
->global_identifier
: 0,
3045 rendcirc
? (unsigned) TO_CIRCUIT(rendcirc
)->n_circ_id
: 0,
3046 rendcirc
? rendcirc
->global_identifier
: 0, conn_age
);
3051 /** Change <b>circ</b>'s purpose to <b>new_purpose</b>. */
3053 circuit_change_purpose(circuit_t
*circ
, uint8_t new_purpose
)
3055 uint8_t old_purpose
;
3056 /* Don't allow an OR circ to become an origin circ or vice versa. */
3057 tor_assert(!!(CIRCUIT_IS_ORIGIN(circ
)) ==
3058 !!(CIRCUIT_PURPOSE_IS_ORIGIN(new_purpose
)));
3060 if (circ
->purpose
== new_purpose
) return;
3062 if (CIRCUIT_IS_ORIGIN(circ
)) {
3063 char old_purpose_desc
[80] = "";
3065 strncpy(old_purpose_desc
, circuit_purpose_to_string(circ
->purpose
), 80-1);
3066 old_purpose_desc
[80-1] = '\0';
3069 "changing purpose of origin circ %d "
3070 "from \"%s\" (%d) to \"%s\" (%d)",
3071 TO_ORIGIN_CIRCUIT(circ
)->global_identifier
,
3074 circuit_purpose_to_string(new_purpose
),
3077 /* Take specific actions if we are repurposing a hidden service circuit. */
3078 if (circuit_purpose_is_hidden_service(circ
->purpose
) &&
3079 !circuit_purpose_is_hidden_service(new_purpose
)) {
3080 hs_circ_cleanup_on_repurpose(circ
);
3084 old_purpose
= circ
->purpose
;
3085 circ
->purpose
= new_purpose
;
3086 tor_trace(TR_SUBSYS(circuit
), TR_EV(change_purpose
), circ
, old_purpose
,
3089 if (CIRCUIT_IS_ORIGIN(circ
)) {
3090 control_event_circuit_purpose_changed(TO_ORIGIN_CIRCUIT(circ
),
3093 circpad_machine_event_circ_purpose_changed(TO_ORIGIN_CIRCUIT(circ
));
3097 /** Mark <b>circ</b> so that no more connections can be attached to it. */
3099 mark_circuit_unusable_for_new_conns(origin_circuit_t
*circ
)
3101 const or_options_t
*options
= get_options();
3104 /* XXXX This is a kludge; we're only keeping it around in case there's
3105 * something that doesn't check unusable_for_new_conns, and to avoid
3106 * deeper refactoring of our expiration logic. */
3107 if (! circ
->base_
.timestamp_dirty
)
3108 circ
->base_
.timestamp_dirty
= approx_time();
3109 if (options
->MaxCircuitDirtiness
>= circ
->base_
.timestamp_dirty
)
3110 circ
->base_
.timestamp_dirty
= 1; /* prevent underflow */
3112 circ
->base_
.timestamp_dirty
-= options
->MaxCircuitDirtiness
;
3114 circ
->unusable_for_new_conns
= 1;
3118 * Add relay_body_len and RELAY_PAYLOAD_SIZE-relay_body_len to
3119 * the valid delivered written fields and the overhead field,
3123 circuit_sent_valid_data(origin_circuit_t
*circ
, uint16_t relay_body_len
)
3127 tor_assertf_nonfatal(relay_body_len
<= RELAY_PAYLOAD_SIZE
,
3128 "Wrong relay_body_len: %d (should be at most %d)",
3129 relay_body_len
, RELAY_PAYLOAD_SIZE
);
3131 circ
->n_delivered_written_circ_bw
=
3132 tor_add_u32_nowrap(circ
->n_delivered_written_circ_bw
, relay_body_len
);
3133 circ
->n_overhead_written_circ_bw
=
3134 tor_add_u32_nowrap(circ
->n_overhead_written_circ_bw
,
3135 RELAY_PAYLOAD_SIZE
-relay_body_len
);
3139 * Add relay_body_len and RELAY_PAYLOAD_SIZE-relay_body_len to
3140 * the valid delivered read field and the overhead field,
3144 circuit_read_valid_data(origin_circuit_t
*circ
, uint16_t relay_body_len
)
3148 tor_assert_nonfatal(relay_body_len
<= RELAY_PAYLOAD_SIZE
);
3150 circ
->n_delivered_read_circ_bw
=
3151 tor_add_u32_nowrap(circ
->n_delivered_read_circ_bw
, relay_body_len
);
3152 circ
->n_overhead_read_circ_bw
=
3153 tor_add_u32_nowrap(circ
->n_overhead_read_circ_bw
,
3154 RELAY_PAYLOAD_SIZE
-relay_body_len
);