mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Merge remote-tracking branch 'origin/maint-0.2.6'
This commit is contained in:
commit
fce2a15ffb
5
changes/bug16400
Normal file
5
changes/bug16400
Normal file
@ -0,0 +1,5 @@
|
||||
o Major bugfixes:
|
||||
- Do not crash with an assertion error when parsing certain kinds
|
||||
of malformed or truncated microdescriptors. Fixes bug 16400;
|
||||
bugfix on 0.2.6.1-alpha. Found by "torkeln"; fix based on a patch by
|
||||
"cypherpunks_backup".
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (c) 2001 Matej Pfajfar.
|
||||
/* Copyright (c) 2001 Matej Pfajfar.
|
||||
* Copyright (c) 2001-2004, Roger Dingledine.
|
||||
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||||
* Copyright (c) 2007-2015, The Tor Project, Inc. */
|
||||
@ -4479,7 +4479,10 @@ microdescs_parse_from_string(const char *s, const char *eos,
|
||||
{
|
||||
const char *cp = tor_memstr(s, start_of_next_microdesc-s,
|
||||
"onion-key");
|
||||
tor_assert(cp);
|
||||
const int no_onion_key = (cp == NULL);
|
||||
if (no_onion_key) {
|
||||
cp = s; /* So that we have *some* junk to put in the body */
|
||||
}
|
||||
|
||||
md->bodylen = start_of_next_microdesc - cp;
|
||||
md->saved_location = where;
|
||||
@ -4488,8 +4491,13 @@ microdescs_parse_from_string(const char *s, const char *eos,
|
||||
else
|
||||
md->body = (char*)cp;
|
||||
md->off = cp - start;
|
||||
crypto_digest256(md->digest, md->body, md->bodylen, DIGEST_SHA256);
|
||||
if (no_onion_key) {
|
||||
log_fn(LOG_PROTOCOL_WARN, LD_DIR, "Malformed or truncated descriptor");
|
||||
goto next;
|
||||
}
|
||||
}
|
||||
crypto_digest256(md->digest, md->body, md->bodylen, DIGEST_SHA256);
|
||||
|
||||
|
||||
if (tokenize_string(area, s, start_of_next_microdesc, tokens,
|
||||
microdesc_token_table, flags)) {
|
||||
|
@ -807,12 +807,46 @@ test_md_reject_cache(void *arg)
|
||||
tor_free(mock_ns_val);
|
||||
}
|
||||
|
||||
static void
|
||||
test_md_corrupt_desc(void *arg)
|
||||
{
|
||||
char *cp = NULL;
|
||||
smartlist_t *sl = NULL;
|
||||
(void) arg;
|
||||
|
||||
sl = microdescs_add_to_cache(get_microdesc_cache(),
|
||||
"@last-listed 2015-06-22 10:00:00\n"
|
||||
"onion-k\n",
|
||||
NULL, SAVED_IN_JOURNAL, 0, time(NULL), NULL);
|
||||
tt_int_op(smartlist_len(sl), ==, 0);
|
||||
smartlist_free(sl);
|
||||
|
||||
sl = microdescs_add_to_cache(get_microdesc_cache(),
|
||||
"@last-listed 2015-06-22 10:00:00\n"
|
||||
"wiggly\n",
|
||||
NULL, SAVED_IN_JOURNAL, 0, time(NULL), NULL);
|
||||
tt_int_op(smartlist_len(sl), ==, 0);
|
||||
smartlist_free(sl);
|
||||
|
||||
tor_asprintf(&cp, "%s\n%s", test_md1, "@foobar\nonion-wobble\n");
|
||||
|
||||
sl = microdescs_add_to_cache(get_microdesc_cache(),
|
||||
cp, cp+strlen(cp),
|
||||
SAVED_IN_JOURNAL, 0, time(NULL), NULL);
|
||||
tt_int_op(smartlist_len(sl), ==, 0);
|
||||
smartlist_free(sl);
|
||||
|
||||
done:
|
||||
tor_free(cp);
|
||||
}
|
||||
|
||||
struct testcase_t microdesc_tests[] = {
|
||||
{ "cache", test_md_cache, TT_FORK, NULL, NULL },
|
||||
{ "broken_cache", test_md_cache_broken, TT_FORK, NULL, NULL },
|
||||
{ "generate", test_md_generate, 0, NULL, NULL },
|
||||
{ "parse", test_md_parse, 0, NULL, NULL },
|
||||
{ "reject_cache", test_md_reject_cache, TT_FORK, NULL, NULL },
|
||||
{ "corrupt_desc", test_md_corrupt_desc, TT_FORK, NULL, NULL },
|
||||
END_OF_TESTCASES
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user