Tor 0.4.9.8
Loading...
Searching...
No Matches
conflux_pool.c
Go to the documentation of this file.
1/* Copyright (c) 2021, The Tor Project, Inc. */
2/* See LICENSE for licensing information */
3
4/**
5 * \file conflux_pool.c
6 * \brief Conflux circuit pool management
7 */
8
9#define TOR_CONFLUX_PRIVATE
10#define CONFLUX_CELL_PRIVATE
11
12#include "core/or/or.h"
13
14#include "app/config/config.h"
15
17#include "core/or/circuitlist.h"
19#include "core/or/circuituse.h"
21#include "core/or/conflux.h"
23#include "trunnel/conflux.h"
27#include "core/or/relay.h"
30
32#include "core/or/or_circuit_st.h"
35#include "core/or/conflux_st.h"
36
39#include "app/config/config.h"
40
43
44/* Indicate if we are shutting down. This is used so we avoid recovering a
45 * conflux set on total shutdown. */
46static bool shutting_down = false;
47
48/** The pool of client-side conflux_t that are built, linked, and ready
49 * to be used. Indexed by nonce. */
50static digest256map_t *client_linked_pool;
51
52/** The pool of origin unlinked_circuits_t indexed by nonce. */
53static digest256map_t *client_unlinked_pool;
54
55/** The pool of relay conflux_t indexed by nonce. We call these "server"
56 * because they could be onion-service side too (even though we likely will
57 * only implement onion service conflux in Arti). The code is littered with
58 * asserts to ensure there are no origin circuits in here for now, too. */
59static digest256map_t *server_linked_pool;
60
61/** The pool of relay unlinked_circuits_t indexed by nonce. */
62static digest256map_t *server_unlinked_pool;
63
64/* A leg is essentially a circuit for a conflux set. We use this object for the
65 * unlinked pool. */
66typedef struct leg_t {
67 /* The circuit of the leg. */
68 circuit_t *circ;
69
70 /* The LINK cell content which is used to put the information back in the
71 * conflux_t object once all legs have linked and validate the ack. */
73
74 /* Indicate if the leg has received the LINKED or the LINKED_ACK cell
75 * depending on its side of the circuit. When all legs are linked, we then
76 * finalize the conflux_t object and move it to the linked pool. */
77 bool linked;
78
79 /* What time did we send the LINK/LINKED (depending on which side) so we can
80 * calculate the RTT. */
81 uint64_t link_sent_usec;
82
83 /* The RTT value in usec takend from the LINK <--> LINKED round trip. */
84 uint64_t rtt_usec;
85} leg_t;
86
87/* Object used to track unlinked circuits which are kept in the unlinked pool
88 * until they are linked and moved to the linked pool and global circuit set.
89 */
90typedef struct unlinked_circuits_t {
91 /* If true, indicate that this unlinked set is client side as in the legs are
92 * origin circuits. Else, it is on the exit side and thus or circuits. */
93 bool is_client;
94
95 /* If true, indicate if the conflux_t is related to a linked set. */
96 bool is_for_linked_set;
97
98 /* Conflux object that will be set in each leg once all linked. */
99 conflux_t *cfx;
100
101 /* Legs. */
102 smartlist_t *legs;
104
105/** Error code used when linking circuits. Based on those, we decide to
106 * relaunch or not. */
107typedef enum link_circ_err_t {
108 /* Linking was successful. */
109 ERR_LINK_CIRC_OK = 0,
110 /* The RTT was not acceptable. */
111 ERR_LINK_CIRC_BAD_RTT = 1,
112 /* The leg can't be found. */
113 ERR_LINK_CIRC_MISSING_LEG = 2,
114 /* The set can't be found. */
115 ERR_LINK_CIRC_MISSING_SET = 3,
116 /* Invalid leg as in not pass validation. */
117 ERR_LINK_CIRC_INVALID_LEG = 4,
119
120#ifdef TOR_UNIT_TESTS
121digest256map_t *
122get_unlinked_pool(bool is_client)
123{
124 return is_client ? client_unlinked_pool : server_unlinked_pool;
125}
126
127digest256map_t *
128get_linked_pool(bool is_client)
129{
130 return is_client ? client_linked_pool : server_linked_pool;
131}
132#endif
133
134/* For unit tests only: please treat these exactly as the defines in the
135 * code. */
136STATIC uint8_t DEFAULT_CLIENT_UX = CONFLUX_UX_HIGH_THROUGHPUT;
137STATIC uint8_t DEFAULT_EXIT_UX = CONFLUX_UX_MIN_LATENCY;
138
139/** Helper: Format at 8 bytes the nonce for logging. */
140static inline const char *
141fmt_nonce(const uint8_t *nonce)
142{
143 return hex_str((char *) nonce, 8);
144}
145
146/**
147 * Return the conflux algorithm for a desired UX value.
148 */
149static uint8_t
150conflux_choose_algorithm(uint8_t desired_ux)
151{
152 switch (desired_ux) {
153 case CONFLUX_UX_NO_OPINION:
154 return CONFLUX_ALG_LOWRTT;
155 case CONFLUX_UX_MIN_LATENCY:
156 return CONFLUX_ALG_MINRTT;
157 case CONFLUX_UX_HIGH_THROUGHPUT:
158 return CONFLUX_ALG_LOWRTT;
159 /* For now, we have no low mem algs, so use minRTT since it should
160 * switch less and thus use less mem */
161 /* TODO-329-TUNING: Pick better algs here*/
162 case CONFLUX_UX_LOW_MEM_THROUGHPUT:
163 case CONFLUX_UX_LOW_MEM_LATENCY:
164 return CONFLUX_ALG_MINRTT;
165 default:
166 /* Trunnel should protect us from this */
168 return CONFLUX_ALG_LOWRTT;
169 }
170}
171
172/** Return a newly allocated conflux_t object. */
173static conflux_t *
175{
176 conflux_t *cfx = tor_malloc_zero(sizeof(*cfx));
177
178 cfx->ooo_q = smartlist_new();
179 cfx->legs = smartlist_new();
180
181 return cfx;
182}
183
184static void
185conflux_free_(conflux_t *cfx)
186{
187 if (!cfx) {
188 return;
189 }
190 tor_assert(cfx->legs);
191 tor_assert(cfx->ooo_q);
192
194 SMARTLIST_DEL_CURRENT(cfx->legs, leg);
195 tor_free(leg);
196 } SMARTLIST_FOREACH_END(leg);
197 smartlist_free(cfx->legs);
198
200 smartlist_free(cfx->ooo_q);
201
202 memwipe(cfx->nonce, 0, sizeof(cfx->nonce));
203 tor_free(cfx);
204}
205
206/** Wrapper for the free function, set the cfx pointer to NULL after free */
207#define conflux_free(cfx) \
208 FREE_AND_NULL(conflux_t, conflux_free_, cfx)
209
210/** Helper: Free function for the digest256map_free(). */
211static inline void
213{
214 conflux_t *cfx = (conflux_t *)ptr;
215 conflux_free(cfx);
216}
217
218/** Return a newly allocated leg object containing the given circuit and link
219 * pointer (no copy). */
220static leg_t *
222{
223 leg_t *leg = tor_malloc_zero(sizeof(*leg));
224 leg->circ = circ;
225 leg->link = link;
226 return leg;
227}
228
229/** Free the given leg object. Passing NULL is safe. */
230static void
232{
233 if (!leg) {
234 return;
235 }
236 if (leg->circ) {
238 leg->circ->conflux_pending_nonce = NULL;
239 }
240 tor_free(leg->link);
241 tor_free(leg);
242}
243
244/** Return a newly allocated unlinked set object for the given nonce. A new
245 * conflux object is also created. */
246static unlinked_circuits_t *
247unlinked_new(const uint8_t *nonce, bool is_client)
248{
249 unlinked_circuits_t *unlinked = tor_malloc_zero(sizeof(*unlinked));
250 unlinked->cfx = conflux_new();
251 unlinked->legs = smartlist_new();
252 unlinked->is_client = is_client;
253 memcpy(unlinked->cfx->nonce, nonce, sizeof(unlinked->cfx->nonce));
254
255 return unlinked;
256}
257
258/** Free the given unlinked object. */
259static void
261{
262 if (!unlinked) {
263 return;
264 }
265 tor_assert(unlinked->legs);
266
267 /* This cfx is pointing to a linked set. */
268 if (!unlinked->is_for_linked_set) {
269 conflux_free(unlinked->cfx);
270 }
271 SMARTLIST_FOREACH(unlinked->legs, leg_t *, leg, leg_free(leg));
272 smartlist_free(unlinked->legs);
273 tor_free(unlinked);
274}
275
276/** Add the given unlinked object to the unlinked pool. */
277static void
278unlinked_pool_add(unlinked_circuits_t *unlinked, bool is_client)
279{
280 tor_assert(unlinked);
281 if (is_client) {
282 digest256map_set(client_unlinked_pool, unlinked->cfx->nonce, unlinked);
283 } else {
284 digest256map_set(server_unlinked_pool, unlinked->cfx->nonce, unlinked);
285 }
286}
287
288/** Delete the given unlinked object from the unlinked pool. */
289static void
290unlinked_pool_del(unlinked_circuits_t *unlinked, bool is_client)
291{
292 tor_assert(unlinked);
293
294 if (is_client) {
295 digest256map_remove(client_unlinked_pool, unlinked->cfx->nonce);
296 } else {
297 digest256map_remove(server_unlinked_pool, unlinked->cfx->nonce);
298 }
299}
300
301/** Return an unlinked object for the given nonce else NULL. */
302static unlinked_circuits_t *
303unlinked_pool_get(const uint8_t *nonce, bool is_client)
304{
305 tor_assert(nonce);
306 if (is_client) {
307 return digest256map_get(client_unlinked_pool, nonce);
308 } else {
309 return digest256map_get(server_unlinked_pool, nonce);
310 }
311}
312
313/** Delete from the pool and free the given unlinked object. */
314static void
316{
317 tor_assert(unlinked);
318 unlinked_pool_del(unlinked, is_client);
319 unlinked_free(unlinked);
320}
321
322/** Add the given conflux object to the linked conflux set. */
323static void
324linked_pool_add(conflux_t *cfx, bool is_client)
325{
326 tor_assert(cfx);
327 if (is_client) {
328 digest256map_set(client_linked_pool, cfx->nonce, cfx);
329 } else {
330 digest256map_set(server_linked_pool, cfx->nonce, cfx);
331 }
332}
333
334/** Delete from the linked conflux set the given nonce. */
335static void
336linked_pool_del(const uint8_t *nonce, bool is_client)
337{
338 tor_assert(nonce);
339 if (is_client) {
340 digest256map_remove(client_linked_pool, nonce);
341 } else {
342 digest256map_remove(server_linked_pool, nonce);
343 }
344}
345
346/** Return a conflux_t object for the given nonce from the linked set. */
347static conflux_t *
348linked_pool_get(const uint8_t *nonce, bool is_client)
349{
350 tor_assert(nonce);
351 if (is_client) {
352 return digest256map_get(client_linked_pool, nonce);
353 } else {
354 return digest256map_get(server_linked_pool, nonce);
355 }
356}
357
358/** Add the given leg to the given unlinked object. */
359static inline void
361{
362 tor_assert(unlinked);
363 tor_assert(leg);
364
365 smartlist_add(unlinked->legs, leg);
366}
367
368/** Return an unlinked leg for the given unlinked object and for the given
369 * circuit. */
370static inline leg_t *
371leg_find(const unlinked_circuits_t *unlinked, const circuit_t *circ)
372{
373 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
374 if (leg->circ == circ) {
375 return leg;
376 }
377 } SMARTLIST_FOREACH_END(leg);
378 return NULL;
379}
380
381/** Return the given circuit leg from its unlinked set (if any). */
382static leg_t *
383unlinked_leg_find(const circuit_t *circ, bool is_client)
384{
385 unlinked_circuits_t *unlinked =
387 if (!unlinked) {
388 return NULL;
389 }
390 return leg_find(unlinked, circ);
391}
392
393static void
394unlinked_leg_del_and_free(unlinked_circuits_t *unlinked,
395 const circuit_t *circ)
396{
397 tor_assert(circ);
398 tor_assert(unlinked);
399
400 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
401 if (leg->circ == circ) {
402 SMARTLIST_DEL_CURRENT(unlinked->legs, leg);
403 leg_free(leg);
404 break;
405 }
406 } SMARTLIST_FOREACH_END(leg);
407}
408
409/**
410 * Ensure that the given circuit has no attached streams.
411 *
412 * This validation function is called at various stages for
413 * unlinked circuits, to make sure they have no streams.
414 */
415static void
417{
418 if (CIRCUIT_IS_ORIGIN(circ)) {
419 origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
420 if (BUG(ocirc->p_streams)) {
421 log_warn(LD_BUG,
422 "Unlinked Conflux circuit %u has attached streams.",
423 ocirc->global_identifier);
424 ocirc->p_streams = NULL;
425 }
426 if (BUG(ocirc->half_streams)) {
427 log_warn(LD_BUG,
428 "Unlinked conflux circ %u has half streams.",
429 ocirc->global_identifier);
430 ocirc->half_streams = NULL;
431 }
432 } else {
433 or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
434 if (BUG(orcirc->n_streams)) {
435 log_warn(LD_BUG,
436 "Unlinked conflux circuit has attached streams.");
437 orcirc->n_streams = NULL;
438 }
439 if (BUG(orcirc->resolving_streams)) {
440 log_warn(LD_BUG,
441 "Unlinked conflux circuit has resolving streams.");
442 orcirc->resolving_streams = NULL;
443 }
444 }
445}
446
447/** Return true iff the legs in the given unlinked set are valid and coherent
448 * to be a linked set. */
449static bool
451{
452 bool valid = true;
453 uint8_t version;
454 uint8_t *nonce = NULL;
455
456 tor_assert(unlinked);
457
458 SMARTLIST_FOREACH_BEGIN(unlinked->legs, const leg_t *, leg) {
459 if (!nonce) {
460 nonce = leg->link->nonce;
461 version = leg->link->version;
462 } else {
463 /* Version and nonce must match in all legs. */
464 valid &= (leg->link->version == version &&
465 tor_memeq(leg->link->nonce, nonce, sizeof(leg->link->nonce)));
466 }
467
468 // If the other ends last sent sequence number is higher than the
469 // last sequence number we delivered, we have data loss, and cannot link.
470 if (leg->link->last_seqno_sent > unlinked->cfx->last_seq_delivered) {
471 log_fn(unlinked->is_client ? LOG_NOTICE : LOG_PROTOCOL_WARN, LD_CIRC,
472 "Data loss detected while trying to add a conflux leg.");
473 valid = false;
474
475 // TODO-329-ARTI: Instead of closing the set here, we could
476 // immediately send a SWITCH cell and re-send the missing data.
477 // To do this, though, we would need to constantly buffer at least
478 // a cwnd worth of sent data to retransmit. We're not going to try
479 // this in C-Tor, but arti could consider it.
480 }
482 } SMARTLIST_FOREACH_END(leg);
483
484 /* Note that if no legs, it validates. */
485
486 return valid;
487}
488
489/** Add up a new leg to the given conflux object. */
490static void
492{
493 tor_assert(cfx);
494 tor_assert(leg);
495 tor_assert(leg->link);
496
497 /* Big trouble if we add a leg to the wrong set. */
498 tor_assert(tor_memeq(cfx->nonce, leg->link->nonce, sizeof(cfx->nonce)));
499
500 conflux_leg_t *cleg = tor_malloc_zero(sizeof(*cleg));
501 cleg->circ = leg->circ;
502 // TODO-329-ARTI: Blindly copying the values from the cell. Is this correct?
503 // I think no... When adding new legs, switching to this leg is
504 // likely to break, unless the sender tracks what link cell it sent..
505 // Is that the best option? Or should we use the max of our legs, here?
506 // (It seems the other side will have no idea what our current maxes
507 /// are, so this option seems better right now)
508 cleg->last_seq_recv = leg->link->last_seqno_sent;
509 cleg->last_seq_sent = leg->link->last_seqno_recv;
510 cleg->circ_rtts_usec = leg->rtt_usec;
511 cleg->linked_sent_usec = leg->link_sent_usec;
512
513 cfx->params.alg = conflux_choose_algorithm(leg->link->desired_ux);
514
515 /* Add leg to given conflux. */
516 smartlist_add(cfx->legs, cleg);
517
518 /* Ensure the new circuit has no streams. */
520
521 /* If this is not the first leg, get the first leg, and get
522 * the reference streams from it. */
523 if (CONFLUX_NUM_LEGS(cfx) > 0) {
524 conflux_leg_t *first_leg = smartlist_get(cfx->legs, 0);
525 if (CIRCUIT_IS_ORIGIN(first_leg->circ)) {
526 origin_circuit_t *old_circ = TO_ORIGIN_CIRCUIT(first_leg->circ);
527 origin_circuit_t *new_circ = TO_ORIGIN_CIRCUIT(leg->circ);
528
529 new_circ->p_streams = old_circ->p_streams;
530 new_circ->half_streams = old_circ->half_streams;
531 /* Sync all legs with the new stream(s). */
532 conflux_sync_circ_fields(cfx, old_circ);
533 } else {
534 or_circuit_t *old_circ = TO_OR_CIRCUIT(first_leg->circ);
535 or_circuit_t *new_circ = TO_OR_CIRCUIT(leg->circ);
536 new_circ->n_streams = old_circ->n_streams;
537 new_circ->resolving_streams = old_circ->resolving_streams;
538 }
539 }
540
541 if (CIRCUIT_IS_ORIGIN(cleg->circ)) {
542 tor_assert_nonfatal(cleg->circ->purpose ==
544 circuit_change_purpose(cleg->circ, CIRCUIT_PURPOSE_CONFLUX_LINKED);
545 }
547}
548
549/**
550 * Clean up a circuit from its conflux_t object.
551 *
552 * Return true if closing this circuit should tear down the entire set,
553 * false otherwise.
554 */
555static bool
557{
558 conflux_leg_t *leg;
559 bool full_teardown = false;
560
561 tor_assert(cfx);
562 tor_assert(circ);
563
564 leg = conflux_get_leg(cfx, circ);
565 if (!leg) {
566 goto end;
567 }
568
569 // If the circuit still has inflight data, teardown
570 const struct congestion_control_t *cc = circuit_ccontrol(circ);
571 tor_assert(cc);
573 if (cc->inflight >= cc->sendme_inc) {
574 full_teardown = true;
575 log_info(LD_CIRC, "Conflux current circuit has closed with "
576 "data in flight, tearing down entire set.");
577 }
578
579 /* Remove it from the cfx. */
580 smartlist_remove(cfx->legs, leg);
581
582 /* After removal, if this leg had the highest sent (or recv)
583 * sequence number, it was in active use by us (or the other side).
584 * We need to tear down the entire set. */
585 // TODO-329-ARTI: If we support resumption, we don't need this.
586 if (CONFLUX_NUM_LEGS(cfx) > 0) {
587 if (conflux_get_max_seq_sent(cfx) < leg->last_seq_sent ||
589 full_teardown = true;
590 log_info(LD_CIRC, "Conflux sequence number check failed, "
591 "tearing down entire set.");
592 }
593 }
594
595 /* Cleanup any reference to leg. */
596 if (cfx->curr_leg == leg) {
597 cfx->curr_leg = NULL;
598 full_teardown = true;
599 log_info(LD_CIRC, "Conflux current circuit has closed, "
600 "tearing down entire set.");
601 }
602 if (cfx->prev_leg == leg) {
603 cfx->prev_leg = NULL;
604 }
605
606 tor_free(leg);
607
608 end:
609 return full_teardown;
610}
611
612/** Close the circuit of each legs of the given unlinked object. */
613static void
615{
616 smartlist_t *circ_to_close = NULL;
617
618 tor_assert(unlinked);
619
620 /* Small optimization here, avoid this work if no legs. */
621 if (smartlist_len(unlinked->legs) == 0) {
622 return;
623 }
624
625 /* We will iterate over all legs and put the circuit in its own list and then
626 * mark them for close. The unlinked object gets freed opportunistically once
627 * there is no more legs attached to it and so we can't hold a reference
628 * while closing circuits. */
629 circ_to_close = smartlist_new();
630
631 SMARTLIST_FOREACH(unlinked->legs, leg_t *, leg,
632 smartlist_add(circ_to_close, leg->circ));
633 unlinked = NULL;
634
635 /* The leg gets cleaned up in the circuit close. */
636 SMARTLIST_FOREACH_BEGIN(circ_to_close, circuit_t *, circ) {
637 if (CIRCUIT_IS_ORIGIN(circ)) {
638 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_UNLINKED);
639 }
640 if (!circ->marked_for_close) {
641 circuit_mark_for_close(circ, END_CIRC_REASON_INTERNAL);
642 }
643 } SMARTLIST_FOREACH_END(circ);
644
645 /* Drop the list and ignore its content, we don't have ownership. */
646 smartlist_free(circ_to_close);
647}
648
649/** Either closee all legs of the given unlinked set or delete it from the pool
650 * and free its memory.
651 *
652 * Important: The unlinked object is freed opportunistically when legs are
653 * removed until the point none remains. And so, it is only safe to free the
654 * object if no more legs exist.
655 */
656static void
658{
659 if (!unlinked) {
660 return;
661 }
662
663 /* If we have legs, the circuit close will trigger the unlinked object to be
664 * opportunistically freed. Else, we do it explicitly. */
665 if (smartlist_len(unlinked->legs) > 0) {
666 unlinked_close_all_legs(unlinked);
667 } else {
668 unlinked_pool_del_and_free(unlinked, unlinked->is_client);
669 }
670 /* Either the unlinked object has been freed or the last leg close will free
671 * it so from this point on, nullify for safety reasons. */
672 unlinked = NULL;
673}
674
675/** Upon an error condition or a close of an in-use circuit, we must close all
676 * linked and unlinked circuits associated with a set. When the last leg of
677 * each set is closed, the set is removed from the pool. */
678void
679conflux_mark_all_for_close(const uint8_t *nonce, bool is_client, int reason)
680{
681 /* It is possible that for a nonce we have both an unlinked set and a linked
682 * set. This happens if there is a recovery leg launched for an existing
683 * linked set. */
684
685 /* Close the unlinked set. */
686 unlinked_circuits_t *unlinked = unlinked_pool_get(nonce, is_client);
687 if (unlinked) {
688 unlinked_close_or_free(unlinked);
689 }
690 /* In case it gets freed, be safe here. */
691 unlinked = NULL;
692
693 /* Close the linked set. It will free itself upon the close of
694 * the last leg. */
695 conflux_t *linked = linked_pool_get(nonce, is_client);
696 if (linked) {
697 if (linked->in_full_teardown) {
698 return;
699 }
700 linked->in_full_teardown = true;
701
702 smartlist_t *circ_to_close = smartlist_new();
703
704 SMARTLIST_FOREACH(linked->legs, conflux_leg_t *, leg,
705 smartlist_add(circ_to_close, leg->circ));
706
707 SMARTLIST_FOREACH(circ_to_close, circuit_t *, circ,
708 circuit_mark_for_close(circ, reason));
709
710 /* Drop the list and ignore its content, we don't have ownership. */
711 smartlist_free(circ_to_close);
712 }
713}
714
715/** Helper: Free function taking a void pointer for the digest256map_free. */
716static inline void
718{
719 unlinked_circuits_t *unlinked = ptr;
720 unlinked_pool_del_and_free(unlinked, unlinked->is_client);
721}
722
723/** Attempt to finalize the unlinked set to become a linked set and be put in
724 * the linked pool.
725 *
726 * If this finalized successfully, the given unlinked object is freed. */
727static link_circ_err_t
729{
730 link_circ_err_t err = ERR_LINK_CIRC_OK;
731 bool is_client;
732
733 tor_assert(unlinked);
734 tor_assert(unlinked->legs);
735 tor_assert(unlinked->cfx);
736 tor_assert(unlinked->cfx->legs);
737
738 /* Without legs, this is not ready to become a linked set. */
739 if (BUG(smartlist_len(unlinked->legs) == 0)) {
740 err = ERR_LINK_CIRC_MISSING_LEG;
741 goto end;
742 }
743
744 /* If there are too many legs, we can't link. */
745 if (smartlist_len(unlinked->legs) +
746 smartlist_len(unlinked->cfx->legs) > conflux_params_get_max_legs_set()) {
747 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
748 "Conflux set has too many legs to link. "
749 "Rejecting this circuit.");
750 conflux_log_set(LOG_PROTOCOL_WARN, unlinked->cfx, unlinked->is_client);
751 err = ERR_LINK_CIRC_INVALID_LEG;
752 goto end;
753 }
754
755 /* Validate that all legs are coherent and parameters match. On failure, we
756 * teardown the whole unlinked set because this means we either have a code
757 * flow problem or the Exit is trying to trick us. */
758 if (!validate_unlinked_legs(unlinked)) {
759 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
760 "Conflux unlinked set legs are not validating. Tearing it down.");
761 conflux_mark_all_for_close(unlinked->cfx->nonce, unlinked->is_client,
762 END_CIRC_REASON_TORPROTOCOL);
763 err = ERR_LINK_CIRC_INVALID_LEG;
764 goto end;
765 }
766
767 /* Check all linked status. All need to be true in order to finalize the set
768 * and move it to the linked pool. */
769 SMARTLIST_FOREACH_BEGIN(unlinked->legs, const leg_t *, leg) {
770 /* We are still waiting on a leg. */
771 if (!leg->linked) {
772 log_info(LD_CIRC, "Can't finalize conflux set, still waiting on at "
773 "least one leg to link up.");
774
775 goto end;
776 }
777 } SMARTLIST_FOREACH_END(leg);
778
779 /* Finalize the cfx object by adding all legs into it. */
780 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
781 /* Removing the leg from the list is important so we avoid ending up with a
782 * leg in the unlinked list that is set with LINKED purpose. */
783 SMARTLIST_DEL_CURRENT(unlinked->legs, leg);
784
785 /* We are ready to attach the leg to the cfx object now. */
786 cfx_add_leg(unlinked->cfx, leg);
787
788 /* Clean the pending nonce and set the conflux object in the circuit. */
789 leg->circ->conflux = unlinked->cfx;
790
791 /* We are done with this leg object. */
792 leg_free(leg);
793 } SMARTLIST_FOREACH_END(leg);
794
795 is_client = unlinked->is_client;
796
797 /* Add the conflux object to the linked pool. For an existing linked cfx
798 * object, we'll simply replace it with itself. */
799 linked_pool_add(unlinked->cfx, is_client);
800
801 /* Remove it from the unlinked pool. */
802 unlinked_pool_del(unlinked, is_client);
803
804 /* We don't recover a leg when it is linked but if we would like to support
805 * session ressumption, this would be very important in order to allow new
806 * legs to be created/recovered. */
807 unlinked->cfx->num_leg_launch = 0;
808
809 /* Nullify because we are about to free the unlinked object and the cfx has
810 * moved to all circuits. */
811 unlinked->cfx = NULL;
812 unlinked_free(unlinked);
813
814 log_info(LD_CIRC,
815 "Successfully linked a conflux %s set which is now usable.",
816 is_client ? "client" : "relay");
817
818 end:
819 return err;
820}
821
822/** Record the RTT for this client circuit.
823 *
824 * Return the RTT value. UINT64_MAX is returned if we couldn't find the initial
825 * measurement of when the cell was sent or if the leg is missing. */
826static uint64_t
828{
829 tor_assert(circ);
832
833 leg_t *leg = unlinked_leg_find(circ, true);
834
835 if (BUG(!leg || leg->link_sent_usec == 0)) {
836 log_warn(LD_BUG,
837 "Conflux: Trying to record client RTT without a timestamp");
838 goto err;
839 }
840
841 uint64_t now = monotime_absolute_usec();
842 tor_assert_nonfatal(now >= leg->link_sent_usec);
843 leg->rtt_usec = now - leg->link_sent_usec;
844 if (leg->rtt_usec == 0) {
845 log_warn(LD_CIRC, "Clock appears stalled for conflux.");
846 // TODO-329-TUNING: For now, let's accept this case. We need to do
847 // tuning and clean up the tests such that they use RTT in order to
848 // fail here.
849 //goto err;
850 }
851 return leg->rtt_usec;
852
853 err:
854 // Avoid using this leg until a timestamp comes in
855 if (leg)
856 leg->rtt_usec = UINT64_MAX;
857 return UINT64_MAX;
858}
859
860/** Record the RTT for this Exit circuit.
861 *
862 * Return the RTT value. UINT64_MAX is returned if we couldn't find the initial
863 * measurement of when the cell was sent or if the leg is missing. */
864
865static uint64_t
867{
868 tor_assert(circ);
869 tor_assert(circ->conflux);
871
872 conflux_leg_t *leg = conflux_get_leg(circ->conflux, circ);
873
874 if (BUG(!leg || leg->linked_sent_usec == 0)) {
875 log_warn(LD_BUG,
876 "Conflux: Trying to record exit RTT without a timestamp");
877 goto err;
878 }
879
880 uint64_t now = monotime_absolute_usec();
881 tor_assert_nonfatal(now >= leg->linked_sent_usec);
882 leg->circ_rtts_usec = now - leg->linked_sent_usec;
883
884 if (leg->circ_rtts_usec == 0) {
885 log_warn(LD_CIRC, "Clock appears stalled for conflux.");
886 goto err;
887 }
888 return leg->circ_rtts_usec;
889
890 err:
891 if (leg)
892 leg->circ_rtts_usec = UINT64_MAX;
893 return UINT64_MAX;
894}
895
896/** For the given circuit, record the RTT from when the LINK or LINKED cell was
897 * sent that is this function works for either client or Exit.
898 *
899 * Return false if the RTT is too high for our standard else true. */
900static bool
901record_rtt(const circuit_t *circ, bool is_client)
902{
903 uint64_t rtt_usec;
904
905 tor_assert(circ);
906
907 if (is_client) {
908 rtt_usec = record_rtt_client(circ);
909
910 if (rtt_usec == UINT64_MAX)
911 return false;
912
913 if (rtt_usec >= get_circuit_build_timeout_ms()*1000) {
914 log_info(LD_CIRC, "Conflux leg RTT is above circuit build time out "
915 "currently at %f msec. Relaunching.",
917 return false;
918 }
919 } else {
920 rtt_usec = record_rtt_exit(circ);
921 }
922
923 return true;
924}
925
926/** Link the given circuit within its unlinked set. This is called when either
927 * the LINKED or LINKED_ACK is received depending on which side of the circuit
928 * it is.
929 *
930 * It attempts to finalize the unlinked set as well which, if successful, puts
931 * it in the linked pool. */
932static link_circ_err_t
934{
935 link_circ_err_t err = ERR_LINK_CIRC_OK;
936 unlinked_circuits_t *unlinked = NULL;
937 bool is_client = false;
938
939 tor_assert(circ);
940 if (CIRCUIT_IS_ORIGIN(circ)) {
941 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_UNLINKED);
942 is_client = true;
943 }
944
945 unlinked = unlinked_pool_get(circ->conflux_pending_nonce, is_client);
946 if (BUG(!unlinked)) {
947 log_warn(LD_BUG, "Failed to find the unlinked set %s when linking. "
948 "Closing circuit.",
950 err = ERR_LINK_CIRC_MISSING_SET;
951 goto end;
952 }
953
954 leg_t *leg = leg_find(unlinked, circ);
955 if (BUG(!leg)) {
956 /* Failure to find the leg when linking a circuit is an important problem
957 * so log loudly and error. */
958 log_warn(LD_BUG, "Failed to find leg for the unlinked set %s when "
959 "linking. Closing circuit.",
960 fmt_nonce(unlinked->cfx->nonce));
961 err = ERR_LINK_CIRC_MISSING_LEG;
962 goto end;
963 }
964
965 /* Successful link. Attempt to finalize the set in case this was the last
966 * LINKED or LINKED_ACK cell to receive. */
967 leg->linked = true;
968 err = try_finalize_set(unlinked);
969
970 end:
971 return err;
972}
973
974/** Launch a brand new set.
975 *
976 * Return true if all legs successfully launched or false if one failed. */
977STATIC bool
978launch_new_set(int num_legs)
979{
980 uint8_t nonce[DIGEST256_LEN];
981
982 /* Brand new nonce for this set. */
983 crypto_rand((char *) nonce, sizeof(nonce));
984
985 /* Launch all legs. */
986 for (int i = 0; i < num_legs; i++) {
987 if (!conflux_launch_leg(nonce)) {
988 /* This function cleans up entirely the unlinked set if a leg is unable
989 * to be launched. The recovery would be complex here. */
990 goto err;
991 }
992 }
993
994 return true;
995
996 err:
997 return false;
998}
999
1000static unlinked_circuits_t *
1001unlinked_get_or_create(const uint8_t *nonce, bool is_client)
1002{
1003 unlinked_circuits_t *unlinked;
1004
1005 tor_assert(nonce);
1006
1007 unlinked = unlinked_pool_get(nonce, is_client);
1008 if (!unlinked) {
1009 unlinked = unlinked_new(nonce, is_client);
1010
1011 /* If this is a leg of an existing linked set, use that conflux object
1012 * instead so all legs point to the same. It is put in the leg's circuit
1013 * once the link is confirmed. */
1014 conflux_t *cfx = linked_pool_get(nonce, is_client);
1015 if (cfx) {
1016 conflux_free(unlinked->cfx);
1017 unlinked->cfx = cfx;
1018 unlinked->is_for_linked_set = true;
1019 }
1020 /* Add this set to the unlinked pool. */
1021 unlinked_pool_add(unlinked, is_client);
1022 }
1023
1024 return unlinked;
1025}
1026
1027/**
1028 * On the client side, we need to determine if there is already
1029 * an exit in use for this set, and if so, use that.
1030 *
1031 * Otherwise, we return NULL and the exit is decided by the
1032 * circuitbuild.c code.
1033 */
1034static extend_info_t *
1035get_exit_for_nonce(const uint8_t *nonce)
1036{
1037 extend_info_t *exit = NULL;
1038
1039 tor_assert(nonce);
1040
1041 // First, check the linked pool for the nonce
1042 const conflux_t *cfx = linked_pool_get(nonce, true);
1043 if (cfx) {
1044 tor_assert(cfx->legs);
1045 /* Get the exit from the first leg */
1046 conflux_leg_t *leg = smartlist_get(cfx->legs, 0);
1047 tor_assert(leg);
1048 tor_assert(leg->circ);
1051 tor_assert(exit);
1052 } else {
1053 unlinked_circuits_t *unlinked = NULL;
1054 unlinked = unlinked_pool_get(nonce, true);
1055
1056 if (unlinked) {
1057 tor_assert(unlinked->legs);
1058 if (smartlist_len(unlinked->legs) > 0) {
1059 /* Get the exit from the first leg */
1060 leg_t *leg = smartlist_get(unlinked->legs, 0);
1061 tor_assert(leg);
1062 tor_assert(leg->circ);
1063 tor_assert(TO_ORIGIN_CIRCUIT(leg->circ)->cpath);
1064 exit = TO_ORIGIN_CIRCUIT(leg->circ)->cpath->prev->extend_info;
1065 tor_assert(exit);
1066 }
1067 }
1068 }
1069
1070 return exit;
1071}
1072
1073/**
1074 * Return the currently configured client UX.
1075 */
1076static uint8_t
1078{
1079#ifdef TOR_UNIT_TESTS
1080 return DEFAULT_CLIENT_UX;
1081#else
1082 const or_options_t *opt = get_options();
1083 tor_assert(opt);
1084 (void)DEFAULT_CLIENT_UX;
1085
1086 /* Return the UX */
1087 return opt->ConfluxClientUX;
1088#endif
1089}
1090
1091/** Return true iff the given conflux object is allowed to launch a new leg. If
1092 * the cfx object is NULL, then it is always allowed to launch a new leg. */
1093static bool
1095{
1096 if (!cfx) {
1097 goto allowed;
1098 }
1099
1100 /* The maximum number of retry is the minimum number of legs we are allowed
1101 * per set plus the maximum amount of retries we are allowed to do. */
1102 unsigned int max_num_launch =
1103 conflux_params_get_num_legs_set() +
1104 conflux_params_get_max_unlinked_leg_retry();
1105
1106 /* Only log once per nonce if we've reached the maximum. */
1107 if (cfx->num_leg_launch == max_num_launch) {
1108 log_info(LD_CIRC, "Maximum number of leg launch reached for nonce %s",
1109 fmt_nonce(cfx->nonce));
1110 }
1111
1112 if (cfx->num_leg_launch >= max_num_launch) {
1113 return false;
1114 }
1115
1116 allowed:
1117 return true;
1118}
1119
1120/*
1121 * Public API.
1122 */
1123
1124/** Launch a new conflux leg for the given nonce.
1125 *
1126 * Return true on success else false which teardowns the entire unlinked set if
1127 * any. */
1128bool
1129conflux_launch_leg(const uint8_t *nonce)
1130{
1133 unlinked_circuits_t *unlinked = NULL;
1134 extend_info_t *exit = NULL;
1135
1136 tor_assert(nonce);
1137
1138 /* Get or create a new unlinked object for this leg. */
1139 unlinked = unlinked_get_or_create(nonce, true);
1140 tor_assert(unlinked);
1141
1142 /* If we have an existing linked set, validate the number of leg retries
1143 * before attempting the launch. */
1144 if (!launch_leg_is_allowed(unlinked->cfx)) {
1145 goto err;
1146 }
1147
1148 exit = get_exit_for_nonce(nonce);
1149
1150 if (exit) {
1151 log_info(LD_CIRC, "Launching conflux leg for nonce %s.", fmt_nonce(nonce));
1152 } else {
1153 log_info(LD_CIRC, "Launching new conflux set for nonce %s.",
1154 fmt_nonce(nonce));
1155 }
1156
1157 /* Increase the retry count for this conflux object as in this nonce.
1158 * We must do this now, because some of the maze's early failure paths
1159 * call right back into this function for relaunch. */
1160 unlinked->cfx->num_leg_launch++;
1161
1162 origin_circuit_t *circ =
1164 exit, flags);
1165
1166 /* The above call to establish a circuit can send us back a closed
1167 * circuit if the OOM handler closes this very circuit while in that
1168 * function. OOM handler runs everytime we queue a cell on a circuit which
1169 * the above function does with the CREATE cell.
1170 *
1171 * The BUG() checks after are in the same spirit which is that there are so
1172 * many things that can happen in that establish circuit function that we
1173 * ought to make sure we have a valid nonce and a valid conflux object. */
1174 if (!circ || TO_CIRCUIT(circ)->marked_for_close) {
1175 goto err;
1176 }
1177 /* We think this won't happen but it might. The maze is powerful. #41155 */
1178 if (BUG(!TO_CIRCUIT(circ)->conflux_pending_nonce || !unlinked->cfx)) {
1179 goto err;
1180 }
1181
1182 /* At this point, the unlinked object has either a new conflux_t or the one
1183 * used by a linked set so it is fine to use the cfx from the unlinked object
1184 * from now on. */
1185
1186 /* Get the max_seq_sent and recv from the linked pool, if it exists, and pass
1187 * to new link cell. */
1188 uint64_t last_seq_sent = conflux_get_max_seq_sent(unlinked->cfx);
1189 uint64_t last_seq_recv = unlinked->cfx->last_seq_delivered;
1190
1191 // TODO-329-ARTI: To support resumption/retransmit, the client should store
1192 // the last_seq_sent now, so that it can know how much data to retransmit to
1193 // the server after link. C-Tor will not be implementing this, but arti and
1194 // arti-relay could (if resumption seems worthwhile; it may not be worth the
1195 // memory storage there, either).
1196
1197 /* We have a circuit, create the new leg and attach it to the set. */
1198 leg_t *leg = leg_new(TO_CIRCUIT(circ),
1199 conflux_cell_new_link(nonce,
1200 last_seq_sent, last_seq_recv,
1201 get_client_ux()));
1202
1203 unlinked_leg_add(unlinked, leg);
1204 return true;
1205
1206 err:
1207 return false;
1208}
1209
1210/**
1211 * Add the identity digest of the guard nodes of all legs of the conflux
1212 * circuit.
1213 *
1214 * This function checks both pending and linked conflux circuits.
1215 */
1216void
1218 smartlist_t *excluded)
1219{
1220 tor_assert(orig_circ);
1221 tor_assert(excluded);
1222
1223 /* Ease our lives. */
1224 const circuit_t *circ = TO_CIRCUIT(orig_circ);
1225
1226 /* Ignore if this is not conflux related. */
1227 if (!CIRCUIT_IS_CONFLUX(circ)) {
1228 return;
1229 }
1230
1231 /* When building a circuit, we should not have a conflux object
1232 * ourselves (though one may exist elsewhere). */
1233 tor_assert(!circ->conflux);
1234
1235 /* Getting here without a nonce is a code flow issue. */
1236 if (BUG(!circ->conflux_pending_nonce)) {
1237 return;
1238 }
1239
1240 /* If there is only one bridge, then only issue a warn once that
1241 * at least two bridges are best for conflux. Exempt Snowflake
1242 * from this warn */
1243 if (get_options()->UseBridges && !conflux_can_exclude_used_bridges()) {
1244 /* Do not build any exclude lists; not enough bridges */
1245 return;
1246 }
1247
1248 /* A linked set exists, use it. */
1249 const conflux_t *cfx = linked_pool_get(circ->conflux_pending_nonce, true);
1250 if (cfx) {
1251 CONFLUX_FOR_EACH_LEG_BEGIN(cfx, leg) {
1252 const origin_circuit_t *ocirc = CONST_TO_ORIGIN_CIRCUIT(leg->circ);
1253 smartlist_add(excluded,
1254 tor_memdup(ocirc->cpath->extend_info->identity_digest,
1255 DIGEST_LEN));
1256 } CONFLUX_FOR_EACH_LEG_END(leg);
1257 }
1258
1259 /* An unlinked set might exist for this nonce, if so, add the second hop of
1260 * the existing legs to the exclusion list. */
1261 unlinked_circuits_t *unlinked =
1263 if (unlinked) {
1264 tor_assert(unlinked->is_client);
1265 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
1266 /* Convert to origin circ and get cpath */
1267 const origin_circuit_t *ocirc = CONST_TO_ORIGIN_CIRCUIT(leg->circ);
1268 smartlist_add(excluded,
1269 tor_memdup(ocirc->cpath->extend_info->identity_digest,
1270 DIGEST_LEN));
1271 } SMARTLIST_FOREACH_END(leg);
1272 }
1273}
1274
1275/**
1276 * Add the identity digest of the middle nodes of all legs of the conflux
1277 * circuit.
1278 *
1279 * This function checks both pending and linked conflux circuits.
1280 *
1281 * XXX: The add guard and middle could be merged since it is the exact same
1282 * code except for the cpath position and the identity digest vs node_t in
1283 * the list. We could use an extra param indicating guard or middle. */
1284void
1286 smartlist_t *excluded)
1287{
1288 tor_assert(orig_circ);
1289 tor_assert(excluded);
1290
1291 /* Ease our lives. */
1292 const circuit_t *circ = TO_CIRCUIT(orig_circ);
1293
1294 /* Ignore if this is not conflux related. */
1295 if (!CIRCUIT_IS_CONFLUX(circ)) {
1296 return;
1297 }
1298
1299 /* When building a circuit, we should not have a conflux object
1300 * ourselves (though one may exist elsewhere). */
1301 tor_assert(!circ->conflux);
1302
1303 /* Getting here without a nonce is a code flow issue. */
1304 if (BUG(!circ->conflux_pending_nonce)) {
1305 return;
1306 }
1307
1308 /* A linked set exists, use it. */
1309 const conflux_t *cfx = linked_pool_get(circ->conflux_pending_nonce, true);
1310 if (cfx) {
1311 CONFLUX_FOR_EACH_LEG_BEGIN(cfx, leg) {
1312 const origin_circuit_t *ocirc = CONST_TO_ORIGIN_CIRCUIT(leg->circ);
1315 if (node) {
1316 smartlist_add(excluded, node);
1317 }
1318 } CONFLUX_FOR_EACH_LEG_END(leg);
1319 }
1320
1321 /* An unlinked set might exist for this nonce, if so, add the second hop of
1322 * the existing legs to the exclusion list. */
1323 unlinked_circuits_t *unlinked =
1325 if (unlinked) {
1326 tor_assert(unlinked->is_client);
1327 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
1328 /* Convert to origin circ and get cpath */
1329 const origin_circuit_t *ocirc = CONST_TO_ORIGIN_CIRCUIT(leg->circ);
1332 if (node) {
1333 smartlist_add(excluded, node);
1334 }
1335 } SMARTLIST_FOREACH_END(leg);
1336 }
1337}
1338
1339/** Return the number of unused client linked set. */
1340static int
1342{
1343 int count = 0;
1344
1345 DIGEST256MAP_FOREACH(client_linked_pool, key, conflux_t *, cfx) {
1346 conflux_leg_t *leg = smartlist_get(cfx->legs, 0);
1347 if (BUG(!leg->circ)) {
1348 log_warn(LD_BUG, "Client conflux linked set leg without a circuit");
1349 continue;
1350 }
1351
1352 /* The maze marks circuits used several different ways. If any of
1353 * them are marked for this leg, launch a new one. */
1354 if (!CONST_TO_ORIGIN_CIRCUIT(leg->circ)->unusable_for_new_conns &&
1355 !CONST_TO_ORIGIN_CIRCUIT(leg->circ)->isolation_values_set &&
1356 !leg->circ->timestamp_dirty) {
1357 count++;
1358 }
1359 } DIGEST256MAP_FOREACH_END;
1360
1361 return count;
1362}
1363
1364/** Determine if we need to launch new conflux circuits for our preemptive
1365 * pool.
1366 *
1367 * This is called once a second from the mainloop from
1368 * circuit_predict_and_launch_new(). */
1369void
1371{
1372 (void) now;
1373
1374 /* If conflux is disabled, or we have insufficient consensus exits,
1375 * don't prebuild. */
1376 if (!conflux_is_enabled(NULL) ||
1377 router_have_consensus_path() != CONSENSUS_PATH_EXIT) {
1378 return;
1379 }
1380
1381 /* Don't attempt to build a new set if we are above our allowed maximum of
1382 * linked sets. */
1383 if (digest256map_size(client_linked_pool) >=
1384 conflux_params_get_max_linked_set()) {
1385 return;
1386 }
1387
1388 /* Count the linked and unlinked to get the total number of sets we have
1389 * (will have). */
1390 int num_linked = count_client_usable_sets();
1391 int num_unlinked = digest256map_size(client_unlinked_pool);
1392 int num_set = num_unlinked + num_linked;
1393 int max_prebuilt = conflux_params_get_max_prebuilt();
1394
1395 if (num_set >= max_prebuilt) {
1396 return;
1397 }
1398
1399 log_info(LD_CIRC, "Preemptively launching new conflux circuit set(s). "
1400 "We have %d linked and %d unlinked.",
1401 num_linked, num_unlinked);
1402
1403 for (int i = 0; i < (max_prebuilt - num_set); i++) {
1404 if (!launch_new_set(conflux_params_get_num_legs_set())) {
1405 /* Failing once likely means we'll fail next attempt so stop for now and
1406 * we'll try later. */
1407 break;
1408 }
1409 }
1410}
1411
1412/** Return the first circuit from the linked pool that will work with the conn.
1413 * If no such circuit exists, return NULL.
1414 *
1415 * The need_internal argument must match the caller's stream requirement. When
1416 * it is true (for example, for anonymized directory requests), non-internal
1417 * conflux circuits are excluded by circuit_is_acceptable(). At present,
1418 * conflux circuits in this pool are non-internal.
1419 */
1422 int need_internal)
1423{
1424 /* Use conn to check the exit policy of the first circuit
1425 * of each set in the linked pool. */
1426 tor_assert(conn);
1427
1428 DIGEST256MAP_FOREACH(client_linked_pool, key, conflux_t *, cfx) {
1429 /* Get the first circuit of the set. */
1430 conflux_leg_t *leg = smartlist_get(cfx->legs, 0);
1431 tor_assert(leg);
1432 tor_assert(leg->circ);
1433
1434 /* Bug on these but we can recover. */
1435 if (BUG(leg->circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED)) {
1436 continue;
1437 }
1438 if (BUG(!CIRCUIT_IS_ORIGIN(leg->circ))) {
1439 continue;
1440 }
1442
1443 /* Make sure the connection conforms with the exit policy and isolation
1444 * flags.
1445 *
1446 * Conflux circuits in this pool are currently built as non-internal,
1447 * so a true need_internal requirement will reject them.
1448 */
1449 if (!circuit_is_acceptable(ocirc, conn, 1 /* Must be open */,
1450 CIRCUIT_PURPOSE_CONFLUX_LINKED,
1451 1 /* Need uptime */,
1452 need_internal, now)) {
1453 continue;
1454 }
1455
1456 /* Found a circuit that works. */
1457 return ocirc;
1458 } DIGEST256MAP_FOREACH_END;
1459
1460 return NULL;
1461}
1462
1463/** The given circuit is conflux pending and has closed. This deletes the leg
1464 * from the set, attempt to finalize it and relaunch a new leg. If the set is
1465 * empty after removing this leg, it is deleted. */
1466static void
1468{
1469 uint8_t nonce[DIGEST256_LEN];
1470 unlinked_circuits_t *unlinked = NULL;
1471 bool is_client = false;
1472
1473 tor_assert(circ);
1475
1476 if (CIRCUIT_IS_ORIGIN(circ)) {
1477 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_UNLINKED);
1478 is_client = true;
1479 }
1480
1481 unlinked = unlinked_pool_get(circ->conflux_pending_nonce, is_client);
1482
1483 /* This circuit is part of set that has already been removed previously freed
1484 * by another leg closing. */
1485 if (!unlinked) {
1486 return;
1487 }
1488
1489 /* We keep the nonce here because we will try to recover if we can and the
1490 * pending nonce will get nullified early. */
1491 memcpy(nonce, circ->conflux_pending_nonce, sizeof(nonce));
1492
1493 log_info(LD_CIRC, "Conflux unlinked circuit with nonce %s has closed",
1494 fmt_nonce(nonce));
1495
1496 /* Remove leg from set. */
1497 unlinked_leg_del_and_free(unlinked, circ);
1498 /* The circuit pending nonce has been nullified at this point. */
1499
1500 /* If no more legs, opportunistically free the unlinked set. */
1501 if (smartlist_len(unlinked->legs) == 0) {
1502 unlinked_pool_del_and_free(unlinked, is_client);
1503 } else if (!shutting_down && !have_been_under_memory_pressure()) {
1504 /* Launch a new leg for this set to recover if we are not shutting down or
1505 * if we are not under memory pressure. We must not launch legs under
1506 * memory pressure else it can just create a feedback loop of being closed
1507 * by the OOM handler and relaunching, rinse and repeat. */
1508 if (CIRCUIT_IS_ORIGIN(circ)) {
1509 conflux_launch_leg(nonce);
1510 }
1511 }
1512 /* After this, it might have been freed. */
1513 unlinked = NULL;
1514
1515 /* Unlinked circuits should not have attached streams, but check
1516 * anyway, because The Maze. */
1518}
1519
1520/** Update all stream pointers to point to this circuit.
1521 * This is used when a linked circuit is closed and we need to update the
1522 * streams to point to the remaining circuit
1523 */
1524static void
1526{
1527 tor_assert(circ);
1528 tor_assert_nonfatal(circ->conflux);
1529
1530 if (CIRCUIT_IS_ORIGIN(circ)) {
1531 origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
1532 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_LINKED);
1533 /* Iterate over stream list using next_stream pointer, until null */
1534 for (edge_connection_t *stream = ocirc->p_streams; stream;
1535 stream = stream->next_stream) {
1536 /* Update the circuit pointer of each stream */
1537 stream->on_circuit = circ;
1538 stream->cpath_layer = ocirc->cpath->prev;
1539 }
1540 } else {
1541 or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
1542 /* Iterate over stream list using next_stream pointer, until null */
1543 for (edge_connection_t *stream = orcirc->n_streams; stream;
1544 stream = stream->next_stream) {
1545 /* Update the circuit pointer of each stream */
1546 stream->on_circuit = circ;
1547 }
1548 /* Iterate over stream list using next_stream pointer, until null */
1549 for (edge_connection_t *stream = orcirc->resolving_streams; stream;
1550 stream = stream->next_stream) {
1551 /* Update the circuit pointer of each stream */
1552 stream->on_circuit = circ;
1553 }
1554 }
1555}
1556
1557/** Nullify all streams of the given circuit. */
1558static void
1560{
1561 tor_assert(circ);
1562
1563 if (CIRCUIT_IS_ORIGIN(circ)) {
1564 origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
1565 ocirc->p_streams = NULL;
1566 ocirc->half_streams = NULL;
1567 } else {
1568 or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
1569 orcirc->n_streams = NULL;
1570 orcirc->resolving_streams = NULL;
1571 }
1572}
1573
1574/** The given circuit is already linked to a set and has been closed. Remove it
1575 * from the set and free the pool if no more legs. */
1576static void
1578{
1579 bool is_client = false;
1580 bool full_teardown = false;
1581 uint8_t nonce[DIGEST256_LEN] = {0};
1582
1583 tor_assert(circ);
1584 tor_assert(circ->conflux);
1585
1586 if (CIRCUIT_IS_ORIGIN(circ)) {
1587 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_LINKED);
1588 is_client = true;
1589 }
1590
1591 /* Unlink circuit from its conflux object. */
1592 full_teardown = cfx_del_leg(circ->conflux, circ);
1593
1594 if (CONFLUX_NUM_LEGS(circ->conflux) == 0) {
1595 /* Last leg, remove conflux object from linked set. */
1596 linked_pool_del(circ->conflux->nonce, is_client);
1597 } else {
1598 /* If there are other circuits, update streams backpointers and
1599 * nullify the stream lists. We do not free those streams in circuit_free_.
1600 * (They only get freed when the last circuit is freed). */
1601 conflux_leg_t *leg = smartlist_get(circ->conflux->legs, 0);
1604 }
1605
1606 /* Keep the nonce so we can use it through out the rest of the function in
1607 * case we nullify the conflux object before. Reason is that in the case of a
1608 * full teardown, this function becomes basically recursive and so we must
1609 * nullify the conflux object of this circuit now before the recursiveness
1610 * starts leading to all legs being removed and thus not noticing if we are
1611 * the last or the first.
1612 *
1613 * Not the prettiest but that is the price to pay to live in the C-tor maze
1614 * and protected by ballrogs. */
1615 memcpy(nonce, circ->conflux->nonce, sizeof(nonce));
1616
1617 /* Nullify the conflux object from the circuit being closed iff we have more
1618 * legs. Reason being that the last leg needs to have the conflux object
1619 * attached to the circuit so it can be freed in conflux_circuit_free(). */
1620 if (CONFLUX_NUM_LEGS(circ->conflux) > 0) {
1621 circ->conflux = NULL;
1622 }
1623
1624 /* If this was a teardown condition, we need to mark other circuits,
1625 * including any potential unlinked circuits, for close.
1626 *
1627 * This call is recursive in the sense that linked_circuit_closed() will end
1628 * up being called for all legs and so by the time we come back here, the
1629 * linked is likely entirely gone. Thus why this is done last. */
1630 if (full_teardown) {
1631 conflux_mark_all_for_close(nonce, is_client, END_CIRC_REASON_FINISHED);
1632 }
1633}
1634
1635/** The given circuit is being freed and it is a linked leg. Clean up and free
1636 * anything that has to do with this circuit.
1637 *
1638 * After this call, the circuit should NOT be referenced anymore anywhere. */
1639static void
1640linked_circuit_free(circuit_t *circ, bool is_client)
1641{
1642 tor_assert(circ);
1643 tor_assert(circ->conflux);
1644 tor_assert(circ->conflux->legs);
1645 tor_assert(circ->conflux->ooo_q);
1646
1647 if (is_client) {
1648 tor_assert(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_LINKED);
1649 }
1650
1651 /* Circuit can be freed without being closed and so we try to delete this leg
1652 * so we can learn if this circuit is the last leg or not. */
1653 if (cfx_del_leg(circ->conflux, circ)) {
1654 /* Check for instances of bug #40870, which we suspect happen
1655 * during exit. If any happen outside of exit, BUG and warn. */
1656 if (!circ->conflux->in_full_teardown) {
1657 /* We should bug and warn if we're not in a shutdown process; that
1658 * means we got here somehow without a close. */
1659 if (BUG(!shutting_down)) {
1660 log_warn(LD_BUG,
1661 "Conflux circuit %p being freed without being marked for "
1662 "full teardown via close, with shutdown state %d. "
1663 "Please report this.", circ, shutting_down);
1664 conflux_log_set(LOG_WARN, circ->conflux, is_client);
1665 }
1666 circ->conflux->in_full_teardown = true;
1667 }
1668 }
1669
1670 if (CONFLUX_NUM_LEGS(circ->conflux) > 0) {
1671 /* The last leg will free the streams but until then, we nullify to avoid
1672 * use-after-free. */
1674 } else {
1675 /* We are the last leg. */
1676
1677 /* Remove from pool in case it is still lingering there else we'll end up
1678 * in a double free situation. */
1679 linked_pool_del(circ->conflux->nonce, is_client);
1680
1681 /* If there is an unlinked circuit that was also created for this set, we
1682 * need to look for it, and tell it is no longer part of a linked set
1683 * anymore, so it can be freed properly, or can complete the link if it is
1684 * able to. Effectively, the conflux_t object lifetime is longer than
1685 * either the linked or unlinked sets by themselves. This is a situation we
1686 * could cover with handles, but so far, it is not clear they are an
1687 * obvious benefit for other cases than this one. */
1688 unlinked_circuits_t *unlinked =
1689 unlinked_pool_get(circ->conflux->nonce, is_client);
1690 if (unlinked) {
1691 tor_assert(unlinked->is_for_linked_set);
1692 unlinked->is_for_linked_set = false;
1693 } else {
1694 /* We are the last one, clear the conflux object. If an unlinked object
1695 * has a reference to it, it won't get freed due to is_for_linked_set
1696 * flag. */
1697 conflux_free(circ->conflux);
1698 }
1699 }
1700}
1701
1702/** The given circuit is being freed and it is an unlinked leg. Clean up and
1703 * free anything that has to do with this circuit.
1704 *
1705 * After this call, the circuit should NOT be referenced anymore anywhere. */
1706static void
1707unlinked_circuit_free(circuit_t *circ, bool is_client)
1708{
1709 tor_assert(circ);
1711 if (is_client) {
1713 }
1714
1715 /* Cleanup circuit reference if a leg exists. This is possible if the circuit
1716 * was not marked for close before being freed. */
1717 leg_t *leg = unlinked_leg_find(circ, is_client);
1718 if (leg) {
1719 leg->circ = NULL;
1720 }
1721
1722 /* Null pointers are safe here. */
1724}
1725
1726/** Circuit has been marked for close. */
1727void
1729{
1730 /* The unlinked case. If an unlinked set exists, we delete the leg and then
1731 * attempt to finalize it. After that, we'll launch a new leg to recover. */
1732 if (circ->conflux_pending_nonce) {
1734 } else if (circ->conflux) {
1736 }
1737}
1738
1739/** Circuit with conflux purpose just opened. */
1740void
1742{
1743 circuit_t *circ = NULL;
1744 leg_t *leg = NULL;
1745
1746 tor_assert(orig_circ);
1747
1748 circ = TO_CIRCUIT(orig_circ);
1749
1750 /* Extra safety layer so we never let a circuit opens if conflux is not
1751 * enabled. */
1752 if (!conflux_is_enabled(circ)) {
1753 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1754 static ratelim_t conflux_ratelim = RATELIM_INIT(600);
1755 log_fn_ratelim(&conflux_ratelim, LOG_NOTICE, LD_CIRC,
1756 "Conflux circuit opened without negotiating "
1757 "congestion control");
1758 return;
1759 }
1760
1761 /* Unrelated to conflux. */
1762 if (circ->conflux_pending_nonce == NULL) {
1763 goto end;
1764 }
1765
1766 log_info(LD_CIRC, "Conflux circuit has opened with nonce %s",
1768
1769 leg = unlinked_leg_find(circ, true);
1770 if (BUG(!leg)) {
1771 log_warn(LD_CIRC, "Unable to find conflux leg in unlinked set.");
1772 goto end;
1773 }
1774
1775 /* On failure here, the circuit is closed and thus the leg and unlinked set
1776 * will be cleaned up. */
1777 if (!conflux_cell_send_link(leg->link, orig_circ)) {
1778 goto end;
1779 }
1780
1781 /* Mark the leg on when the LINK cell is sent. Used to timeout the circuit
1782 * for a minimum RTT when getting the LINKED. */
1783 leg->link_sent_usec = monotime_absolute_usec();
1784
1785 end:
1787 return;
1788}
1789
1790/** Process a CONFLUX_LINK cell which arrived on the given circuit. */
1791void
1793{
1794 unlinked_circuits_t *unlinked = NULL;
1795 conflux_cell_link_t *link = NULL;
1796
1797 tor_assert(circ);
1798 tor_assert(msg);
1799
1800 if (!conflux_is_enabled(circ)) {
1801 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1802 goto end;
1803 }
1804
1805 /* This cell can't be received on an origin circuit because only the endpoint
1806 * creating the circuit sends it. */
1807 if (CIRCUIT_IS_ORIGIN(circ)) {
1808 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1809 "Got a CONFLUX_LINK cell on an origin circuit. Closing circuit.");
1810 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1811 goto end;
1812 }
1813
1814 if (!conflux_validate_source_hop(circ, NULL)) {
1815 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1816 "Got a CONFLUX_LINK with further hops. Closing circuit.");
1817 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1818 goto end;
1819 }
1820
1821 if (circ->conflux_pending_nonce) {
1822 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1823 "Got a CONFLUX_LINK on a circuit with a pending nonce. "
1824 "Closing circuit.");
1825 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1826 goto end;
1827 }
1828
1829 if (circ->conflux) {
1830 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1831 "Got a CONFLUX_LINK on an already linked circuit "
1832 "Closing circuit.");
1833 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1834 goto end;
1835 }
1836
1837 /* On errors, logging is emitted in this parsing function. */
1838 link = conflux_cell_parse_link(msg);
1839 if (!link) {
1840 log_fn(LOG_PROTOCOL_WARN, LD_CIRC, "Unable to parse "
1841 "CONFLUX_LINK cell. Closing circuit.");
1842 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1843 goto end;
1844 }
1845
1846 log_info(LD_CIRC, "Processing a CONFLUX_LINK for set %s",
1847 fmt_nonce(link->nonce));
1848
1849 /* Consider this circuit a new leg. We'll now attempt to attach it to an
1850 * existing set or unlinked one. */
1851 leg_t *leg = leg_new(circ, link);
1852 unlinked = unlinked_get_or_create(link->nonce, false);
1853 tor_assert(unlinked);
1854
1855 /* Attach leg to the unlinked set. */
1856 unlinked_leg_add(unlinked, leg);
1857
1858 /* Set the circuit in a pending conflux state for the LINKED_ACK. */
1859 circ->conflux_pending_nonce = tor_memdup(leg->link->nonce,
1860 sizeof(leg->link->nonce));
1861
1862 /* Mark when we send the LINKED. */
1863 leg->link_sent_usec = monotime_absolute_usec();
1864
1865 /* Send LINKED. */
1866 uint64_t last_seq_sent = conflux_get_max_seq_sent(unlinked->cfx);
1867 uint64_t last_seq_recv = unlinked->cfx->last_seq_delivered;
1868
1869 // TODO-329-ARTI: To support resumption/retransmit, the server should
1870 // store the last_seq_sent now, so that it can know how much data
1871 // to retransmit to the server after link. C-Tor will not be implementing
1872 // this, but arti and arti-relay could (if resumption seems worthwhile;
1873 // it may not be worth the memory storage there, either).
1874
1875 uint8_t nonce[DIGEST256_LEN];
1876 memcpy(nonce, circ->conflux_pending_nonce, sizeof(nonce));
1877
1878 /* Link the circuit to the a conflux set immediately before the LINKED is
1879 * sent. Reason is that once the client sends the LINKED_ACK, there is a race
1880 * with the BEGIN cell that can be sent immediately after and arrive first.
1881 * And so, we need to sync the streams before that happens that is before we
1882 * receive the LINKED_ACK. */
1883 if (link_circuit(circ) != ERR_LINK_CIRC_OK) {
1884 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1885 goto end;
1886 }
1887
1888 /* Exits should always request min latency from clients */
1889 conflux_cell_link_t *linked = conflux_cell_new_link(nonce, last_seq_sent,
1890 last_seq_recv,
1891 DEFAULT_EXIT_UX);
1892
1893 conflux_cell_send_linked(linked, TO_OR_CIRCUIT(circ));
1894 tor_free(linked);
1895
1896 end:
1897 return;
1898}
1899
1900/** Process a CONFLUX_LINKED cell which arrived on the given circuit. */
1901void
1903 const relay_msg_t *msg)
1904{
1905 conflux_cell_link_t *link = NULL;
1906
1907 tor_assert(circ);
1908
1909 /*
1910 * There several ways a malicious exit could create problems when sending
1911 * back this LINKED cell.
1912 *
1913 * 1. Using a different nonce that it knows about from another set. Accepting
1914 * it would mean a confirmation attack of linking sets to the same client.
1915 * To address that, the cell nonce MUST be matched with the circuit nonce.
1916 *
1917 * 2. Re-Sending a LINKED cell on an already linked circuit could create side
1918 * channel attacks or unpredictable issues. Circuit is closed.
1919 *
1920 * 3. Receiving a LINKED cell on a circuit that was not expecting it. Again,
1921 * as (2), can create side channel(s). Circuit is closed.
1922 *
1923 * 4. Receiving a LINKED cell from the another hop other than the last one
1924 * (exit). Same as (2) and (3) in terms of issues. Circuit is closed.
1925 */
1926
1927 if (!conflux_is_enabled(circ)) {
1928 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
1929 goto end;
1930 }
1931
1932 /* LINKED cell are in response to a LINK cell which are only sent on an
1933 * origin circuit and thus received on such.*/
1934 if (!CIRCUIT_IS_ORIGIN(circ)) {
1935 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1936 "Received CONFLUX_LINKED cell on a non origin circuit.");
1937 goto close;
1938 }
1939
1940 if (!circ->conflux_pending_nonce) {
1941 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1942 "Received a CONFLUX_LINKED cell without having sent a "
1943 "CONFLUX_LINK cell. Closing circuit.");
1944 goto close;
1945 }
1946
1947 if (circ->conflux) {
1948 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1949 "Received a CONFLUX_LINKED cell on a circuit that is already "
1950 "linked. Closing circuit.");
1951 goto close;
1952 }
1953
1954 if (!conflux_validate_source_hop(circ, layer_hint)) {
1955 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1956 "Got a CONFLUX_LINKED from wrong hop on circuit. Closing circuit.");
1957 goto close;
1958 }
1959
1960 tor_assert_nonfatal(circ->purpose == CIRCUIT_PURPOSE_CONFLUX_UNLINKED);
1961
1962 /* On errors, logging is emitted in this parsing function. */
1963 link = conflux_cell_parse_link(msg);
1964 if (!link) {
1965 goto close;
1966 }
1967
1968 log_info(LD_CIRC, "Processing a CONFLUX_LINKED for set %s",
1969 fmt_nonce(link->nonce));
1970
1971 /* Make sure the cell nonce matches the one on the circuit that was
1972 * previously set by the CONFLUX_LINK cell. */
1973 if (tor_memneq(link->nonce, circ->conflux_pending_nonce,
1974 sizeof(link->nonce))) {
1975 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
1976 "Received CONFLUX_LINKED but circuit nonce doesn't match "
1977 "cell nonce. Closing circuit.");
1978 goto close;
1979 }
1980
1981 /* Find the leg from the associated unlinked set. */
1982 leg_t *leg = unlinked_leg_find(circ, true);
1983 if (BUG(!leg)) {
1984 log_warn(LD_CIRC, "Received CONFLUX_LINKED but can't find "
1985 "associated leg. Closing circuit.");
1986 goto close;
1987 }
1988
1989 log_info(LD_CIRC, "Successfully processed a CONFLUX_LINKED cell.");
1990
1991 /* Free the old link, and store the new one. We need to validate
1992 * the one we get during finalize, not the one we sent. */
1993 tor_free(leg->link);
1994 leg->link = link;
1995
1996 /* Record the RTT for this circuit. On failure, it means the RTT was too
1997 * high, we relaunch to recover. */
1998 if (!record_rtt(circ, true)) {
1999 goto close;
2000 }
2001
2002 /* The following will link the circuit with its set and attempt to finalize
2003 * the set if all expected legs have linked. On error, we close the circuit
2004 * because it means the unlinked set needs to be teardowned. */
2005 link_circ_err_t err = link_circuit(circ);
2006 switch (err) {
2007 case ERR_LINK_CIRC_OK:
2008 /* Successfully linked. */
2009 break;
2010 case ERR_LINK_CIRC_INVALID_LEG:
2011 case ERR_LINK_CIRC_MISSING_SET:
2012 /* No relaunch if the leg is invalid or the set is not found as in the
2013 * nonce is unknown. */
2014 break;
2015 case ERR_LINK_CIRC_BAD_RTT:
2016 case ERR_LINK_CIRC_MISSING_LEG:
2017 goto close;
2018 }
2019
2020 /* We can send the ack only if we finalize. This will not cause issues,
2021 * because LINKED_ACK is exempted from multiplexing in
2022 * conflux_should_multiplex(). */
2023 if (!conflux_cell_send_linked_ack(TO_ORIGIN_CIRCUIT(circ))) {
2024 /* On failure, the circuit is closed by the underlying function(s). */
2025 goto end;
2026 }
2027
2028 /* If this set is ready to use with a valid conflux set, try any pending
2029 * streams again. */
2030 if (circ->conflux) {
2032 }
2033
2034 /* This cell is now considered valid for clients. */
2035 circuit_read_valid_data(TO_ORIGIN_CIRCUIT(circ), msg->length);
2036
2037 goto end;
2038
2039 close:
2040 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
2041
2042 end:
2043 return;
2044}
2045
2046/** Process a CONFLUX_LINKED_ACK cell which arrived on the given circuit. */
2047void
2049{
2050 tor_assert(circ);
2051
2052 if (!conflux_is_enabled(circ)) {
2053 goto close;
2054 }
2055
2056 if (CIRCUIT_IS_ORIGIN(circ)) {
2057 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
2058 "Received CONFLUX_LINKED_ACK cell on an origin circuit. Closing.");
2059 goto close;
2060 }
2061
2062 if (!conflux_validate_source_hop(circ, NULL)) {
2063 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
2064 "Got a CONFLUX_LINKED_ACK with further hops. Closing circuit.");
2065 goto close;
2066 }
2067
2068 if (BUG(!circ->conflux)) {
2069 log_fn(LOG_PROTOCOL_WARN, LD_CIRC,
2070 "Received a CONFLUX_LINKED_ACK cell on a circuit that is not"
2071 "linked. Closing circuit.");
2072 goto close;
2073 }
2074
2075 log_info(LD_CIRC, "Processing a CONFLUX_LINKED_ACK for set %s",
2076 fmt_nonce(circ->conflux->nonce));
2077
2078 /* Record the RTT for this circuit. This should not fail */
2079 if (BUG(!record_rtt(circ, false))) {
2080 goto close;
2081 }
2082
2083 return;
2084
2085 close:
2086 circuit_mark_for_close(circ, END_CIRC_REASON_TORPROTOCOL);
2087}
2088
2089/** Called when a circuit is freed.
2090 *
2091 * It is possible a conflux circuit gets freed without being closed (for
2092 * instance SIGTERM) and so this callback is needed in order to finalize the
2093 * cleanup. */
2094void
2096{
2097 tor_assert(circ);
2098
2099 bool is_client = CIRCUIT_IS_ORIGIN(circ);
2100
2101 if (circ->conflux) {
2102 linked_circuit_free(circ, is_client);
2103 } else if (circ->conflux_pending_nonce) {
2104 unlinked_circuit_free(circ, is_client);
2105 }
2106
2107 /* Whatever happens, nullify all conflux related pointers. */
2108 circ->conflux = NULL;
2109 circ->conflux_pending_nonce = NULL;
2110}
2111
2112/** Initialize the conflux pool subsystem. This is called by the subsys
2113 * manager. */
2114void
2116{
2117 if (!client_linked_pool) {
2118 client_linked_pool = digest256map_new();
2119 }
2120 if (!client_unlinked_pool) {
2121 client_unlinked_pool = digest256map_new();
2122 }
2123 if (!server_linked_pool) {
2124 server_linked_pool = digest256map_new();
2125 }
2126 if (!server_unlinked_pool) {
2127 server_unlinked_pool = digest256map_new();
2128 }
2129}
2130
2131/**
2132 * Return a description of all linked and unlinked circuits associated
2133 * with a conflux set.
2134 *
2135 * For use in rare bug cases that are hard to diagnose.
2136 */
2137void
2138conflux_log_set(int loglevel, const conflux_t *cfx, bool is_client)
2139{
2140 /* This could be called on a closed circuit. */
2141 if (cfx == NULL) {
2142 return;
2143 }
2144
2145 log_fn(loglevel,
2146 LD_BUG,
2147 "Conflux %s: %d linked, %d launched. Delivered: %"PRIu64"; "
2148 "teardown: %d; Current: %p, Previous: %p",
2149 fmt_nonce(cfx->nonce), smartlist_len(cfx->legs),
2150 cfx->num_leg_launch,
2152 cfx->curr_leg, cfx->prev_leg);
2153
2154 // Log all linked legs
2155 int legs = 0;
2156 CONFLUX_FOR_EACH_LEG_BEGIN(cfx, leg) {
2157 const struct congestion_control_t *cc = circuit_ccontrol(leg->circ);
2158 log_fn(loglevel, LD_BUG,
2159 " - Linked Leg %d purpose=%d; RTT %"PRIu64", sent: %"PRIu64
2160 "; sent: %"PRIu64", recv: %"PRIu64", infl: %"PRIu64", "
2161 "ptr: %p, idx: %d, marked: %d",
2162 legs, leg->circ->purpose, leg->circ_rtts_usec,
2163 leg->linked_sent_usec, leg->last_seq_recv,
2164 leg->last_seq_sent, cc->inflight, leg->circ,
2165 leg->circ->global_circuitlist_idx,
2166 leg->circ->marked_for_close);
2167 legs++;
2168 } CONFLUX_FOR_EACH_LEG_END(leg);
2169
2170 // Look up the nonce to see if we have any unlinked circuits.
2171 unlinked_circuits_t *unlinked = unlinked_pool_get(cfx->nonce, is_client);
2172 if (unlinked) {
2173 // Log the number of legs and the is_for_linked_set status
2174 log_fn(loglevel, LD_BUG, " - Unlinked set: %d legs, for link: %d",
2175 smartlist_len(unlinked->legs), unlinked->is_for_linked_set);
2176 legs = 0;
2177 SMARTLIST_FOREACH_BEGIN(unlinked->legs, leg_t *, leg) {
2178 log_fn(loglevel, LD_BUG,
2179 " Unlinked Leg: %d purpose=%d; linked: %d, RTT %"PRIu64", "
2180 "sent: %"PRIu64" link ptr %p, circ ptr: %p, idx: %d, marked: %d",
2181 legs, leg->circ->purpose, leg->linked,
2182 leg->rtt_usec, leg->link_sent_usec,
2183 leg->link, leg->circ,
2184 leg->circ->global_circuitlist_idx,
2185 leg->circ->marked_for_close);
2186 legs++;
2187 } SMARTLIST_FOREACH_END(leg);
2188 }
2189}
2190
2191/**
2192 * Conflux needs a notification when tor_shutdown() begins, so that
2193 * when circuits are freed, new legs are not launched.
2194 *
2195 * This needs a separate notification from conflux_pool_free_all(),
2196 * because circuits must be freed before that function.
2197 */
2198void
2200{
2201 shutting_down = true;
2202}
2203
2204#ifdef TOR_UNIT_TESTS
2205/**
2206 * For unit tests: Clear the shutting down state so we resume building legs.
2207 */
2208void
2209conflux_clear_shutdown(void)
2210{
2211 shutting_down = false;
2212}
2213#endif
2214
2215/** Free and clean up the conflux pool subsystem. This is called by the subsys
2216 * manager AFTER all circuits have been freed which implies that all objects in
2217 * the pools aren't referenced anymore. */
2218void
2220{
2221 digest256map_free(client_linked_pool, free_conflux_void_);
2222 digest256map_free(server_linked_pool, free_conflux_void_);
2223 digest256map_free(client_unlinked_pool, free_unlinked_void_);
2224 digest256map_free(server_unlinked_pool, free_unlinked_void_);
2225}
const char * hex_str(const char *from, size_t fromlen)
Definition binascii.c:34
bool conflux_can_exclude_used_bridges(void)
Definition bridges.c:147
Header file for circuitbuild.c.
origin_circuit_t * circuit_establish_circuit_conflux(const uint8_t *conflux_nonce, uint8_t purpose, extend_info_t *exit_ei, int flags)
Header file for circuitbuild.c.
origin_circuit_t * TO_ORIGIN_CIRCUIT(circuit_t *x)
or_circuit_t * TO_OR_CIRCUIT(circuit_t *x)
Header file for circuitlist.c.
#define CIRCUIT_IS_ORCIRC(c)
#define CIRCUIT_IS_ORIGIN(c)
#define CIRCUIT_PURPOSE_CONFLUX_UNLINKED
double get_circuit_build_timeout_ms(void)
Header file for circuitstats.c.
void circuit_read_valid_data(origin_circuit_t *circ, uint16_t relay_body_len)
void circuit_change_purpose(circuit_t *circ, uint8_t new_purpose)
int circuit_is_acceptable(const origin_circuit_t *origin_circ, const entry_connection_t *conn, int must_be_open, uint8_t purpose, int need_uptime, int need_internal, time_t now)
Definition circuituse.c:109
Header file for circuituse.c.
#define CIRCLAUNCH_NEED_CAPACITY
Definition circuituse.h:43
#define CIRCLAUNCH_NEED_UPTIME
Definition circuituse.h:41
#define CIRCLAUNCH_NEED_CONFLUX
Definition circuituse.h:53
uint64_t monotime_absolute_usec(void)
const or_options_t * get_options(void)
Definition config.c:948
Header file for config.c.
const congestion_control_t * circuit_ccontrol(const circuit_t *circ)
Definition conflux.c:760
uint64_t conflux_get_max_seq_recv(const conflux_t *cfx)
Definition conflux.c:165
uint64_t conflux_get_max_seq_sent(const conflux_t *cfx)
Definition conflux.c:148
void conflux_clear_ooo_q(conflux_t *cfx)
Definition conflux.c:219
conflux_leg_t * conflux_get_leg(conflux_t *cfx, const circuit_t *circ)
Definition conflux.c:127
Public APIs for conflux multipath support.
#define CONFLUX_FOR_EACH_LEG_BEGIN(cfx, var)
Definition conflux.h:20
#define CONFLUX_NUM_LEGS(cfx)
Definition conflux.h:26
Header file for conflux_cell.c.
Header file for conflux_params.c.
static void unlinked_pool_del(unlinked_circuits_t *unlinked, bool is_client)
static const char * fmt_nonce(const uint8_t *nonce)
static link_circ_err_t link_circuit(circuit_t *circ)
static unlinked_circuits_t * unlinked_pool_get(const uint8_t *nonce, bool is_client)
static leg_t * leg_find(const unlinked_circuits_t *unlinked, const circuit_t *circ)
static void linked_circuit_closed(circuit_t *circ)
void conflux_circuit_has_opened(origin_circuit_t *orig_circ)
void conflux_process_linked_ack(circuit_t *circ)
static void unlinked_close_all_legs(unlinked_circuits_t *unlinked)
static void leg_free(leg_t *leg)
#define conflux_free(cfx)
static bool cfx_del_leg(conflux_t *cfx, const circuit_t *circ)
void conflux_log_set(int loglevel, const conflux_t *cfx, bool is_client)
void conflux_circuit_has_closed(circuit_t *circ)
static void linked_circuit_free(circuit_t *circ, bool is_client)
static void free_conflux_void_(void *ptr)
static void cfx_add_leg(conflux_t *cfx, leg_t *leg)
static extend_info_t * get_exit_for_nonce(const uint8_t *nonce)
static uint64_t record_rtt_client(const circuit_t *circ)
STATIC bool launch_new_set(int num_legs)
static bool validate_unlinked_legs(unlinked_circuits_t *unlinked)
static bool record_rtt(const circuit_t *circ, bool is_client)
static leg_t * leg_new(circuit_t *circ, conflux_cell_link_t *link)
void conflux_predict_new(time_t now)
static void linked_nullify_streams(circuit_t *circ)
static bool launch_leg_is_allowed(const conflux_t *cfx)
static digest256map_t * server_unlinked_pool
void conflux_notify_shutdown(void)
static uint8_t conflux_choose_algorithm(uint8_t desired_ux)
static void linked_pool_del(const uint8_t *nonce, bool is_client)
static link_circ_err_t try_finalize_set(unlinked_circuits_t *unlinked)
static void unlinked_pool_add(unlinked_circuits_t *unlinked, bool is_client)
static digest256map_t * client_linked_pool
static void linked_update_stream_backpointers(circuit_t *circ)
static void unlinked_pool_del_and_free(unlinked_circuits_t *unlinked, bool is_client)
void conflux_pool_init(void)
static void unlinked_circuit_free(circuit_t *circ, bool is_client)
static conflux_t * linked_pool_get(const uint8_t *nonce, bool is_client)
void conflux_add_middles_to_exclude_list(const origin_circuit_t *orig_circ, smartlist_t *excluded)
static void unlinked_close_or_free(unlinked_circuits_t *unlinked)
void conflux_circuit_about_to_free(circuit_t *circ)
static unlinked_circuits_t * unlinked_new(const uint8_t *nonce, bool is_client)
static uint64_t record_rtt_exit(const circuit_t *circ)
static void free_unlinked_void_(void *ptr)
static digest256map_t * client_unlinked_pool
link_circ_err_t
static digest256map_t * server_linked_pool
static void linked_pool_add(conflux_t *cfx, bool is_client)
bool conflux_launch_leg(const uint8_t *nonce)
static void unlinked_leg_add(unlinked_circuits_t *unlinked, leg_t *leg)
static int count_client_usable_sets(void)
void conflux_mark_all_for_close(const uint8_t *nonce, bool is_client, int reason)
static void unlinked_free(unlinked_circuits_t *unlinked)
void conflux_pool_free_all(void)
void conflux_add_guards_to_exclude_list(const origin_circuit_t *orig_circ, smartlist_t *excluded)
static conflux_t * conflux_new(void)
static void validate_circ_has_no_streams(circuit_t *circ)
static uint8_t get_client_ux(void)
void conflux_process_link(circuit_t *circ, const relay_msg_t *msg)
void conflux_process_linked(circuit_t *circ, crypt_path_t *layer_hint, const relay_msg_t *msg)
static void unlinked_circuit_closed(circuit_t *circ)
origin_circuit_t * conflux_get_circ_for_conn(const entry_connection_t *conn, time_t now, int need_internal)
static leg_t * unlinked_leg_find(const circuit_t *circ, bool is_client)
Header file for conflux_pool.c.
Structure definitions for conflux multipath.
void conflux_validate_stream_lists(const conflux_t *cfx)
bool conflux_validate_source_hop(circuit_t *in_circ, crypt_path_t *layer_hint)
void conflux_sync_circ_fields(conflux_t *cfx, origin_circuit_t *ref_circ)
Header file for conflux_util.c.
Structure definitions for congestion control.
void connection_ap_attach_pending(int retry)
Header file for connection_edge.c.
Path structures for origin circuits.
void crypto_rand(char *to, size_t n)
Common functions for using (pseudo-)random number generators.
void memwipe(void *mem, uint8_t byte, size_t sz)
Definition crypto_util.c:55
Common functions for cryptographic routines.
int tor_memeq(const void *a, const void *b, size_t sz)
Definition di_ops.c:107
#define tor_memneq(a, b, sz)
Definition di_ops.h:21
#define DIGEST_LEN
#define DIGEST256_LEN
Edge-connection structure.
Extend-info structure.
#define log_fn(severity, domain, args,...)
Definition log.h:283
#define log_fn_ratelim(ratelim, severity, domain, args,...)
Definition log.h:288
#define LD_BUG
Definition log.h:86
#define LOG_NOTICE
Definition log.h:50
#define LD_CIRC
Definition log.h:82
#define LOG_WARN
Definition log.h:53
#define tor_free(p)
Definition malloc.h:56
consensus_path_type_t router_have_consensus_path(void)
Definition nodelist.c:2514
node_t * node_get_mutable_by_id(const char *identity_digest)
Definition nodelist.c:197
Header file for nodelist.c.
Master header file for Tor-specific functionality.
#define TO_CIRCUIT(x)
Definition or.h:951
Origin circuit structure.
bool have_been_under_memory_pressure(void)
Definition relay.c:2950
Header file for relay.c.
smartlist_t * smartlist_new(void)
void smartlist_add(smartlist_t *sl, void *element)
void smartlist_remove(smartlist_t *sl, const void *element)
#define SMARTLIST_FOREACH_BEGIN(sl, type, var)
#define SMARTLIST_FOREACH(sl, type, var, cmd)
#define SMARTLIST_DEL_CURRENT(sl, var)
time_t timestamp_dirty
Definition circuit_st.h:198
uint16_t marked_for_close
Definition circuit_st.h:200
struct conflux_t * conflux
Definition circuit_st.h:273
uint8_t purpose
Definition circuit_st.h:112
uint8_t * conflux_pending_nonce
Definition circuit_st.h:281
uint64_t last_seq_sent
Definition conflux_st.h:66
uint64_t last_seq_recv
Definition conflux_st.h:47
uint64_t circ_rtts_usec
Definition conflux_st.h:75
uint64_t linked_sent_usec
Definition conflux_st.h:79
circuit_t * circ
Definition conflux_st.h:82
smartlist_t * ooo_q
Definition conflux_st.h:103
struct conflux_leg_t * curr_leg
Definition conflux_st.h:123
struct conflux_params_t params
Definition conflux_st.h:88
struct conflux_leg_t * prev_leg
Definition conflux_st.h:127
uint8_t nonce[DIGEST256_LEN]
Definition conflux_st.h:130
uint64_t last_seq_delivered
Definition conflux_st.h:114
smartlist_t * legs
Definition conflux_st.h:93
bool in_full_teardown
Definition conflux_st.h:135
unsigned int num_leg_launch
Definition conflux_st.h:139
struct crypt_path_t * prev
struct crypt_path_t * next
extend_info_t * extend_info
struct edge_connection_t * next_stream
char identity_digest[DIGEST_LEN]
edge_connection_t * resolving_streams
edge_connection_t * n_streams
edge_connection_t * p_streams
unsigned int isolation_values_set
crypt_path_t * cpath
smartlist_t * half_streams
#define STATIC
Definition testsupport.h:32
#define tor_assert_nonfatal_unreached()
Definition util_bug.h:177
#define tor_assert(expr)
Definition util_bug.h:103