diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-09-29 04:51:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-09-29 04:51:28 +0000 |
commit | 8992bf6204b70436c2dc881ffa2d79db40384b38 (patch) | |
tree | 6739ca3668aef26968b872c15b70dee91b75330d /src/or/dirserv.c | |
parent | 4feccecfe813313a8302a44ed560dd7b61c51c2a (diff) | |
download | tor-8992bf6204b70436c2dc881ffa2d79db40384b38.tar tor-8992bf6204b70436c2dc881ffa2d79db40384b38.tar.gz |
r8776@totoro: nickm | 2006-09-29 00:50:46 -0400
Reserve the nickname "Unnamed" for routers that can't pick a hostname; any
router can call itself Unnamed; directory servers will never allocate Unnamed
to any particular router; clients won't believe that any router is the
canonical Unnamed.
svn:r8529
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 0c8e08032..872f2f065 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -89,6 +89,12 @@ add_fingerprint_to_dir(const char *nickname, const char *fp, smartlist_t *list) fingerprint = tor_strdup(fp); tor_strstrip(fingerprint, " "); + if (!strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME)) { + log_warn(LD_DIRSERV, "Tried to add a mapping for reserved nickname %s", + UNNAMED_ROUTER_NICKNAME); + return 0; + } + if (nickname[0] != '!') { for (i = 0; i < smartlist_len(list); ++i) { ent = smartlist_get(list, i); @@ -317,7 +323,10 @@ dirserv_get_status_impl(const char *fp, const char *nickname, if (0==strcasecmp(nn_ent->fingerprint, fp)) { if (should_log) log_debug(LD_DIRSERV,"Good fingerprint for '%s'",nickname); - return FP_NAMED; /* Right fingerprint. */ + if (!strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME)) + return FP_VALID; + else + return FP_NAMED; /* Right fingerprint. */ } else { if (should_log) { char *esc_contact = esc_for_log(contact); @@ -1448,6 +1457,9 @@ generate_v2_networkstatus(void) char identity64[BASE64_DIGEST_LEN+1]; char digest64[BASE64_DIGEST_LEN+1]; + if (!strcasecmp(ri->nickname, UNNAMED_ROUTER_NICKNAME)) + f_named = 0; + format_iso_time(published, ri->cache_info.published_on); digest_to_base64(identity64, ri->cache_info.identity_digest); |