Code improvements

This commit is contained in:
George Kadianakis 2021-07-06 13:22:59 +03:00
parent 52c5b8aa12
commit 1f87269cf4
3 changed files with 14 additions and 7 deletions

View File

@ -3996,8 +3996,14 @@ get_max_lifetime_of_layer2_hs_guards(void)
static int
get_layer2_hs_guard_lifetime(void)
{
return crypto_rand_int_range(get_min_lifetime_of_layer2_hs_guards(),
get_max_lifetime_of_layer2_hs_guards());
int min = get_min_lifetime_of_layer2_hs_guards();
int max = get_max_lifetime_of_layer2_hs_guards();
if (BUG(min >= max)) {
return min;
}
return crypto_rand_int_range(min, max);
}
/** Maintain the L2 guard list. Make sure the list contains enough guards, do
@ -4107,9 +4113,10 @@ purge_vanguards_lite(void)
/** Return a routerset containing the L2 guards or NULL if it's not yet
* initialized. Callers must not free the routerset. Designed for use in
* pick_vanguard_middle_node() and should not be used anywhere else (because
* the routerset pointer can dangle under your feet) */
routerset_t *
* pick_vanguard_middle_node() and should not be used anywhere else. Do not
* store this pointer -- any future calls to maintain_layer2_guards() and
* purge_vanguards_lite() can invalidate it. */
const routerset_t *
get_layer2_guards(void)
{
if (!layer2_guards) {

View File

@ -651,7 +651,7 @@ guard_get_guardfraction_bandwidth(guardfraction_bandwidth_t *guardfraction_bw,
int orig_bandwidth,
uint32_t guardfraction_percentage);
routerset_t *get_layer2_guards(void);
const routerset_t *get_layer2_guards(void);
void maintain_layer2_guards(void);
void purge_vanguards_lite(void);

View File

@ -3102,7 +3102,7 @@ test_entry_guard_layer2_guards(void *arg)
/* Create the guardset */
maintain_layer2_guards();
routerset_t *l2_guards = get_layer2_guards();
const routerset_t *l2_guards = get_layer2_guards();
tt_assert(l2_guards);
tt_int_op(routerset_len(l2_guards), OP_EQ, 4);