o Minor bugfixes:
- Refuse to start if both ORPort and UseBridges are set. Bugfix
on 0.2.0.x.
+ - Better log message on vote from unknown authority.
o Minor bugfixes (memory leaks):
- Stop leaking memory every time we parse a v3 certificate. Bugfix
vi = get_voter(vote);
tor_assert(vi->good_signature == 1);
ds = trusteddirserver_get_by_v3_auth_digest(vi->identity_digest);
- if (!ds || !(ds->type & V3_AUTHORITY)) {
+ if (!ds) {
char *keys = list_v3_auth_ids();
log_warn(LD_DIR, "Got a vote from an authority with authority key ID %s. "
- "This authority %s. Known v3 key IDs are: %s",
- hex_str(vi->identity_digest, DIGEST_LEN),
- ds?"is not recognized":"is recognized, but is not listed as v3",
-/* XXX020 isn't the above line backwards? -RD */
-/* In fact, how can ds->v3_identity_digest be set if it's not a
- * V3_AUTHORITY? */
- keys);
+ "This key ID is not recognized. Known v3 key IDs are: %s",
+ hex_str(vi->identity_digest, DIGEST_LEN), keys);
tor_free(keys);
-
*msg_out = "Vote not from a recognized v3 authority";
goto err;
}
SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
{
- if (!memcmp(ds->v3_identity_digest, digest, DIGEST_LEN))
+ if (!memcmp(ds->v3_identity_digest, digest, DIGEST_LEN) &&
+ (ds->type & V3_AUTHORITY))
return ds;
});