mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 15:43:32 +01:00
Count unknown authorities as unknown only once, not once per signature.
Do not double-report signatures from unrecognized authorities both as "from unknown authority" and "not present". Fixes bug 1956, bugfix on 0.2.2.16-alpha.
This commit is contained in:
parent
ff5ffd1776
commit
1411842933
5
changes/bug1956
Normal file
5
changes/bug1956
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes
|
||||||
|
- Do not double-report signatures from unrecognized authorities both
|
||||||
|
as "from unknown authority" and "not present". Fixes bug 1956,
|
||||||
|
bugfix on 0.2.2.16-alpha.
|
||||||
|
|
@ -482,6 +482,7 @@ networkstatus_check_consensus_signature(networkstatus_t *consensus,
|
|||||||
voter) {
|
voter) {
|
||||||
int good_here = 0;
|
int good_here = 0;
|
||||||
int bad_here = 0;
|
int bad_here = 0;
|
||||||
|
int unknown_here = 0;
|
||||||
int missing_key_here = 0, dl_failed_key_here = 0;
|
int missing_key_here = 0, dl_failed_key_here = 0;
|
||||||
SMARTLIST_FOREACH_BEGIN(voter->sigs, document_signature_t *, sig) {
|
SMARTLIST_FOREACH_BEGIN(voter->sigs, document_signature_t *, sig) {
|
||||||
if (!sig->good_signature && !sig->bad_signature &&
|
if (!sig->good_signature && !sig->bad_signature &&
|
||||||
@ -497,7 +498,7 @@ networkstatus_check_consensus_signature(networkstatus_t *consensus,
|
|||||||
|
|
||||||
if (!is_v3_auth) {
|
if (!is_v3_auth) {
|
||||||
smartlist_add(unrecognized, voter);
|
smartlist_add(unrecognized, voter);
|
||||||
++n_unknown;
|
++unknown_here;
|
||||||
continue;
|
continue;
|
||||||
} else if (!cert || cert->expires < now) {
|
} else if (!cert || cert->expires < now) {
|
||||||
smartlist_add(need_certs_from, voter);
|
smartlist_add(need_certs_from, voter);
|
||||||
@ -527,8 +528,11 @@ networkstatus_check_consensus_signature(networkstatus_t *consensus,
|
|||||||
++n_missing_key;
|
++n_missing_key;
|
||||||
if (dl_failed_key_here)
|
if (dl_failed_key_here)
|
||||||
++n_dl_failed_key;
|
++n_dl_failed_key;
|
||||||
} else
|
} else if (unknown_here) {
|
||||||
|
++n_unknown;
|
||||||
|
} else {
|
||||||
++n_no_signature;
|
++n_no_signature;
|
||||||
|
}
|
||||||
} SMARTLIST_FOREACH_END(voter);
|
} SMARTLIST_FOREACH_END(voter);
|
||||||
|
|
||||||
/* Now see whether we're missing any voters entirely. */
|
/* Now see whether we're missing any voters entirely. */
|
||||||
|
Loading…
Reference in New Issue
Block a user