]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Change GETINFO fingerprint to look at server_mode, not my_descriptor
authorNick Mathewson <nickm@torproject.org>
Wed, 13 Jul 2011 16:44:41 +0000 (12:44 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 13 Jul 2011 16:45:18 +0000 (12:45 -0400)
It's possible for us to be a server and have a fingerprint without
having yet generated a descriptor.

Fixes bug 3577; bugfix on 0.2.0.1-alpha

changes/bug3577 [new file with mode: 0644]
src/or/control.c

diff --git a/changes/bug3577 b/changes/bug3577
new file mode 100644 (file)
index 0000000..6335272
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes:
+    - Allow GETINFO fingerprint to return a fingerprint even when
+      we have not yet built a router descriptor. Fixes bug 3577;
+      bugfix on 0.2.0.1-alpha.
index da0a95da155aa59d38b7cf7c987eaa1cc871a506..d33d33734e443c6ee921b6e404d79c4838ea2daa 100644 (file)
@@ -1394,14 +1394,14 @@ getinfo_helper_misc(control_connection_t *conn, const char *question,
   } else if (!strcmp(question, "dir-usage")) {
     *answer = directory_dump_request_log();
   } else if (!strcmp(question, "fingerprint")) {
-    routerinfo_t *me = router_get_my_routerinfo();
-    if (!me) {
+    crypto_pk_env_t *server_key;
+    if (!server_mode(get_options())) {
       *errmsg = "No routerdesc known; am I really a server?";
       return -1;
     }
+    server_key = get_server_identity_key();
     *answer = tor_malloc(HEX_DIGEST_LEN+1);
-    base16_encode(*answer, HEX_DIGEST_LEN+1, me->cache_info.identity_digest,
-                  DIGEST_LEN);
+    crypto_pk_get_fingerprint(server_key, *answer, 0);
   }
   return 0;
 }