Skip to content

Commit

Permalink
Merge remote-tracking branch 'asn/bug23343'
Browse files Browse the repository at this point in the history
  • Loading branch information
nmathewson committed Aug 28, 2017
2 parents 5ef656e + e94f68e commit 3cf8da0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
17 changes: 8 additions & 9 deletions src/or/hs_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ hs_hsdir_requery_period(const or_options_t *options)
*
* where 'hsdir_identity' is the identity digest of the HSDir node, and
* 'hs_identity' is the descriptor ID of the HS in the v2 case, or the ed25519
* identity public key of the HS in the v3 case. */
* blinded public key of the HS in the v3 case. */
static strmap_t *last_hid_serv_requests_ = NULL;

/** Returns last_hid_serv_requests_, initializing it to a new strmap if
Expand Down Expand Up @@ -1453,14 +1453,13 @@ hs_purge_hid_serv_from_last_hid_serv_requests(const char *req_key_str)
/* XXX: The use of REND_DESC_ID_V2_LEN_BASE32 is very wrong in terms of
* semantic, see #23305. */

/* Length check on the strings we are about to compare. The "key" contains
* both the base32 HSDir identity digest and the requested key at the
* directory. The "req_key_str" can either be a base32 descriptor ID or a
* base64 blinded key which should be the second part of "key". BUG on
* this check because both strings are internally controlled so this
* should never happen. */
if (BUG((strlen(req_key_str) + REND_DESC_ID_V2_LEN_BASE32) <
strlen(key))) {
/* This strmap contains variable-sized elements so this is a basic length
* check on the strings we are about to compare. The key is variable sized
* since it's composed as follows:
* key = base32(hsdir_identity) + base32(req_key_str)
* where 'req_key_str' is the descriptor ID of the HS in the v2 case, or
* the ed25519 blinded public key of the HS in the v3 case. */
if (strlen(key) < REND_DESC_ID_V2_LEN_BASE32 + strlen(req_key_str)) {
iter = strmap_iter_next(last_hid_serv_requests, iter);
continue;
}
Expand Down
23 changes: 17 additions & 6 deletions src/test/test_hs_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,13 +703,14 @@ test_hid_serv_request_tracker(void *arg)
{
(void) arg;
time_t retval;
routerstatus_t *hsdir = NULL, *hsdir2 = NULL;
routerstatus_t *hsdir = NULL, *hsdir2 = NULL, *hsdir3 = NULL;
time_t now = approx_time();

const char *req_key_str_first =
"vd4zb6zesaubtrjvdqcr2w7x7lhw2up4Xnw4526ThUNbL5o1go+EdUuEqlKxHkNbnK41pRzizzs";
const char *req_key_str_second =
"g53o7iavcd62oihswhr24u6czmqws5kpXnw4526ThUNbL5o1go+EdUuEqlKxHkNbnK41pRzizzs";
const char *req_key_str_small = "ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ";

/*************************** basic test *******************************/

Expand Down Expand Up @@ -741,7 +742,7 @@ test_hid_serv_request_tracker(void *arg)

/* Let's add another request for the same HS but on a different HSDir. */
hsdir2 = tor_malloc_zero(sizeof(routerstatus_t));
memset(hsdir->identity_digest, 2, DIGEST_LEN);
memset(hsdir2->identity_digest, 2, DIGEST_LEN);
retval = hs_lookup_last_hid_serv_request(hsdir2, req_key_str_first,
now+3, 1);
tt_int_op(retval, OP_EQ, now+3);
Expand All @@ -755,16 +756,25 @@ test_hid_serv_request_tracker(void *arg)
now+2, 0);
tt_int_op(retval, OP_EQ, 0);

/* Now let's add a smaller req key str */
hsdir3 = tor_malloc_zero(sizeof(routerstatus_t));
memset(hsdir3->identity_digest, 3, DIGEST_LEN);
retval = hs_lookup_last_hid_serv_request(hsdir3, req_key_str_small,
now+4, 1);
tt_int_op(retval, OP_EQ, now+4);
tt_int_op(strmap_size(request_tracker),OP_EQ, 2);

/*************************** deleting entries **************************/

/* Add another request with very short key */
retval = hs_lookup_last_hid_serv_request(hsdir, "l", now, 1);
tt_int_op(strmap_size(request_tracker),OP_EQ, 3);

/* Try deleting entries with a dummy key. Check that our previous requests
* are still there */
tor_capture_bugs_(1);
hs_purge_hid_serv_from_last_hid_serv_requests("a");
tt_int_op(strmap_size(request_tracker),OP_EQ, 2);
tt_int_op(strmap_size(request_tracker),OP_EQ, 3);
tor_end_capture_bugs_();

/* Try another dummy key. Check that requests are still there */
Expand All @@ -773,16 +783,16 @@ test_hid_serv_request_tracker(void *arg)
memset(dummy, 'Z', 2000);
dummy[1999] = '\x00';
hs_purge_hid_serv_from_last_hid_serv_requests(dummy);
tt_int_op(strmap_size(request_tracker),OP_EQ, 2);
tt_int_op(strmap_size(request_tracker),OP_EQ, 3);
}

/* Another dummy key! */
hs_purge_hid_serv_from_last_hid_serv_requests(req_key_str_second);
tt_int_op(strmap_size(request_tracker),OP_EQ, 2);
tt_int_op(strmap_size(request_tracker),OP_EQ, 3);

/* Now actually delete a request! */
hs_purge_hid_serv_from_last_hid_serv_requests(req_key_str_first);
tt_int_op(strmap_size(request_tracker),OP_EQ, 1);
tt_int_op(strmap_size(request_tracker),OP_EQ, 2);

/* Purge it all! */
hs_purge_last_hid_serv_requests();
Expand All @@ -792,6 +802,7 @@ test_hid_serv_request_tracker(void *arg)
done:
tor_free(hsdir);
tor_free(hsdir2);
tor_free(hsdir3);
}

static void
Expand Down

0 comments on commit 3cf8da0

Please sign in to comment.