Improve log messages for problems about ed25519 keypinning

Fixes 16286; bugfix on 0.2.7.2-alpha.
This commit is contained in:
Nick Mathewson 2015-07-31 10:47:39 -04:00
parent 8c83e8cec0
commit 20254907d7
4 changed files with 30 additions and 20 deletions

8
changes/bug16286 Normal file
View File

@ -0,0 +1,8 @@
o Minor bugfixes (authority):
- Downgrade log messages about Ed25519 key issues, if they are in
old cached router descriptors. Fixes part of bug 16286; bugfix on
0.2.7.2-alpha.
- When we find an Ed25519 key issue in a cached descriptor, stop saying
the descriptor was just "uploaded". Fixes another part of bug 16286;
bugfix on 0.2.7.2-alpha.

View File

@ -244,7 +244,8 @@ dirserv_load_fingerprint_file(void)
* If the status is 'FP_REJECT' and <b>msg</b> is provided, set * If the status is 'FP_REJECT' and <b>msg</b> is provided, set
* *<b>msg</b> to an explanation of why. */ * *<b>msg</b> to an explanation of why. */
uint32_t uint32_t
dirserv_router_get_status(const routerinfo_t *router, const char **msg) dirserv_router_get_status(const routerinfo_t *router, const char **msg,
int severity)
{ {
char d[DIGEST_LEN]; char d[DIGEST_LEN];
@ -263,7 +264,8 @@ dirserv_router_get_status(const routerinfo_t *router, const char **msg)
if (msg) { if (msg) {
*msg = "Ed25519 identity key or RSA identity key has changed."; *msg = "Ed25519 identity key or RSA identity key has changed.";
} }
log_warn(LD_DIR, "Router %s uploaded a descriptor with a Ed25519 key " log_fn(severity, LD_DIR,
"Descriptor from router %s has an Ed25519 key, "
"but the <rsa,ed25519> keys don't match what they were before.", "but the <rsa,ed25519> keys don't match what they were before.",
router_describe(router)); router_describe(router));
return FP_REJECT; return FP_REJECT;
@ -272,7 +274,8 @@ dirserv_router_get_status(const routerinfo_t *router, const char **msg)
/* No ed25519 key */ /* No ed25519 key */
if (KEYPIN_MISMATCH == keypin_check_lone_rsa( if (KEYPIN_MISMATCH == keypin_check_lone_rsa(
(const uint8_t*)router->cache_info.identity_digest)) { (const uint8_t*)router->cache_info.identity_digest)) {
log_warn(LD_DIR, "Router %s uploaded a descriptor with no Ed25519 key, " log_fn(severity, LD_DIR,
"Descriptor from router %s has no Ed25519 key, "
"when we previously knew an Ed25519 for it. Ignoring for now, " "when we previously knew an Ed25519 for it. Ignoring for now, "
"since Tor 0.2.6 is under development.", "since Tor 0.2.6 is under development.",
router_describe(router)); router_describe(router));
@ -299,7 +302,7 @@ dirserv_would_reject_router(const routerstatus_t *rs)
res = dirserv_get_status_impl(rs->identity_digest, rs->nickname, res = dirserv_get_status_impl(rs->identity_digest, rs->nickname,
rs->addr, rs->or_port, rs->addr, rs->or_port,
NULL, NULL, 0); NULL, NULL, LOG_DEBUG);
return (res & FP_REJECT) != 0; return (res & FP_REJECT) != 0;
} }
@ -308,13 +311,13 @@ dirserv_would_reject_router(const routerstatus_t *rs)
* (hex, no spaces), nickname, address (used for logging only), IP address, OR * (hex, no spaces), nickname, address (used for logging only), IP address, OR
* port and platform (logging only) as arguments. * port and platform (logging only) as arguments.
* *
* If should_log is false, do not log messages. (There's not much point in * Log messages at 'severity'. (There's not much point in
* logging that we're rejecting servers we'll not download.) * logging that we're rejecting servers we'll not download.)
*/ */
static uint32_t static uint32_t
dirserv_get_status_impl(const char *id_digest, const char *nickname, dirserv_get_status_impl(const char *id_digest, const char *nickname,
uint32_t addr, uint16_t or_port, uint32_t addr, uint16_t or_port,
const char *platform, const char **msg, int should_log) const char *platform, const char **msg, int severity)
{ {
uint32_t result = 0; uint32_t result = 0;
router_status_t *status_by_digest; router_status_t *status_by_digest;
@ -322,10 +325,9 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname,
if (!fingerprint_list) if (!fingerprint_list)
fingerprint_list = authdir_config_new(); fingerprint_list = authdir_config_new();
if (should_log) log_debug(LD_DIRSERV, "%d fingerprints, %d digests known.",
log_debug(LD_DIRSERV, "%d fingerprints, %d digests known.", strmap_size(fingerprint_list->fp_by_name),
strmap_size(fingerprint_list->fp_by_name), digestmap_size(fingerprint_list->status_by_digest));
digestmap_size(fingerprint_list->status_by_digest));
/* Versions before Tor 0.2.4.18-rc are too old to support, and are /* Versions before Tor 0.2.4.18-rc are too old to support, and are
* missing some important security fixes too. Disable them. */ * missing some important security fixes too. Disable them. */
@ -350,23 +352,22 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname,
} }
if (authdir_policy_badexit_address(addr, or_port)) { if (authdir_policy_badexit_address(addr, or_port)) {
if (should_log) log_fn(severity, LD_DIRSERV,
log_info(LD_DIRSERV, "Marking '%s' as bad exit because of address '%s'", "Marking '%s' as bad exit because of address '%s'",
nickname, fmt_addr32(addr)); nickname, fmt_addr32(addr));
result |= FP_BADEXIT; result |= FP_BADEXIT;
} }
if (!authdir_policy_permits_address(addr, or_port)) { if (!authdir_policy_permits_address(addr, or_port)) {
if (should_log) log_fn(severity, LD_DIRSERV, "Rejecting '%s' because of address '%s'",
log_info(LD_DIRSERV, "Rejecting '%s' because of address '%s'",
nickname, fmt_addr32(addr)); nickname, fmt_addr32(addr));
if (msg) if (msg)
*msg = "Authdir is rejecting routers in this range."; *msg = "Authdir is rejecting routers in this range.";
return FP_REJECT; return FP_REJECT;
} }
if (!authdir_policy_valid_address(addr, or_port)) { if (!authdir_policy_valid_address(addr, or_port)) {
if (should_log) log_fn(severity, LD_DIRSERV,
log_info(LD_DIRSERV, "Not marking '%s' valid because of address '%s'", "Not marking '%s' valid because of address '%s'",
nickname, fmt_addr32(addr)); nickname, fmt_addr32(addr));
result |= FP_INVALID; result |= FP_INVALID;
} }
@ -422,9 +423,9 @@ authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
int complain, int *valid_out) int complain, int *valid_out)
{ {
/* Okay. Now check whether the fingerprint is recognized. */ /* Okay. Now check whether the fingerprint is recognized. */
uint32_t status = dirserv_router_get_status(ri, msg);
time_t now; time_t now;
int severity = (complain && ri->contact_info) ? LOG_NOTICE : LOG_INFO; int severity = (complain && ri->contact_info) ? LOG_NOTICE : LOG_INFO;
uint32_t status = dirserv_router_get_status(ri, msg, severity);
tor_assert(msg); tor_assert(msg);
if (status & FP_REJECT) if (status & FP_REJECT)
return -1; /* msg is already set. */ return -1; /* msg is already set. */
@ -734,7 +735,7 @@ directory_remove_invalid(void)
uint32_t r; uint32_t r;
if (!ent) if (!ent)
continue; continue;
r = dirserv_router_get_status(ent, &msg); r = dirserv_router_get_status(ent, &msg, LOG_INFO);
router_get_description(description, ent); router_get_description(description, ent);
if (r & FP_REJECT) { if (r & FP_REJECT) {
log_info(LD_DIRSERV, "Router %s is now rejected: %s", log_info(LD_DIRSERV, "Router %s is now rejected: %s",

View File

@ -84,7 +84,8 @@ int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
int complain, int complain,
int *valid_out); int *valid_out);
uint32_t dirserv_router_get_status(const routerinfo_t *router, uint32_t dirserv_router_get_status(const routerinfo_t *router,
const char **msg); const char **msg,
int severity);
void dirserv_set_node_flags_from_authoritative_status(node_t *node, void dirserv_set_node_flags_from_authoritative_status(node_t *node,
uint32_t authstatus); uint32_t authstatus);

View File

@ -176,7 +176,7 @@ nodelist_set_routerinfo(routerinfo_t *ri, routerinfo_t **ri_old_out)
if (authdir_mode(get_options()) && !had_router) { if (authdir_mode(get_options()) && !had_router) {
const char *discard=NULL; const char *discard=NULL;
uint32_t status = dirserv_router_get_status(ri, &discard); uint32_t status = dirserv_router_get_status(ri, &discard, LOG_INFO);
dirserv_set_node_flags_from_authoritative_status(node, status); dirserv_set_node_flags_from_authoritative_status(node, status);
} }