diff options
author | David Goulet <dgoulet@torproject.org> | 2022-10-24 11:03:38 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-10-26 15:05:44 -0400 |
commit | a7aa22a4e76d0076e4c46f474708d2386c3139c6 (patch) | |
tree | 4a9e43e7a6b36509dda758bcc57172fdd93b51da /src/feature | |
parent | 0a49e04691b6f6efedadc003521cd0e5809f81da (diff) | |
download | tor-a7aa22a4e76d0076e4c46f474708d2386c3139c6.tar.gz tor-a7aa22a4e76d0076e4c46f474708d2386c3139c6.zip |
hs: Retry rdv circuit if repurposed
This can happen if our measurement subsystem decides to snatch it.
Fixes #40696
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/hs/hs_circuit.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/feature/hs/hs_circuit.c b/src/feature/hs/hs_circuit.c index d253802f79..edb5e692e7 100644 --- a/src/feature/hs/hs_circuit.c +++ b/src/feature/hs/hs_circuit.c @@ -1319,6 +1319,17 @@ hs_circ_cleanup_on_repurpose(circuit_t *circ) if (circ->hs_token) { hs_circuitmap_remove_circuit(circ); } + + switch (circ->purpose) { + case CIRCUIT_PURPOSE_S_CONNECT_REND: + /* This circuit was connecting to a rendezvous point but it is being + * repurposed so we need to relaunch an attempt else the client will be + * left hanging waiting for the rendezvous. */ + hs_circ_retry_service_rendezvous_point(TO_ORIGIN_CIRCUIT(circ)); + break; + default: + break; + } } /** Return true iff the given established client rendezvous circuit was sent |