]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Serve the latest v3 networkstatus consensus via the control
authorRoger Dingledine <arma@torproject.org>
Sun, 14 Sep 2008 04:07:29 +0000 (04:07 +0000)
committerRoger Dingledine <arma@torproject.org>
Sun, 14 Sep 2008 04:07:29 +0000 (04:07 +0000)
port. Use "getinfo dir/status-vote/current/consensus" to fetch it.

svn:r16907

ChangeLog
doc/spec/control-spec.txt
src/or/control.c
src/or/directory.c
src/or/dirserv.c

index 41822f0d5a8f18b4304d79454a99c8f46932509a..ed0e3e4256f1a849debe0d71c2fa7bfecad3de92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -33,7 +33,9 @@ Changes in version 0.2.1.6-alpha - 2008-09-xx
     - Use a lockfile to make sure that two Tor processes are not
       simultaneously running with the same datadir.
     - Directory mirrors store and serve v2 hidden service descriptors by
-      default (new default value for HidServDirectoryV2 is 1).
+      default (i.e. new default value for HidServDirectoryV2 is 1).
+    - Serve the latest v3 networkstatus consensus via the control
+      port. Use "getinfo dir/status-vote/current/consensus" to fetch it.
 
   o Code simplifications and refactoring:
     - Revise the connection_new functions so that a more typesafe variant
index ceb671e16fbeb8dc9c57ff29839299e7907a5d89..de5cf7d704eaa2abb3e7e55f2c9bc9080d4bf8d2 100644 (file)
@@ -531,6 +531,7 @@ $Id$
     "next-circuit/IP:port"
       XXX todo.
 
+    "dir/status-vote/current/consensus" [added in Tor 0.2.1.6-alpha]
     "dir/status/authority"
     "dir/status/fp/<F>"
     "dir/status/fp/<F1>+<F2>+<F3>"
index ac31f5d940c46de055c0d9b4f525e80439daecbe..93a946405d4da4b7187c95d114f3953f4cedaf48 100644 (file)
@@ -1401,7 +1401,7 @@ getinfo_helper_misc(control_connection_t *conn, const char *question,
  * <b>ei</b> into the resulting string.  The thing you get back won't
  * necessarily have a valid signature.
  *
- * New code should never use this; it's for backward compatibiliy.
+ * New code should never use this; it's for backward compatibility.
  *
  * NOTE: <b>ri_body</b> is as returned by signed_descriptor_get_body: it might
  * not be NUL-terminated. */
@@ -1572,7 +1572,18 @@ getinfo_helper_dir(control_connection_t *control_conn,
       SMARTLIST_FOREACH(status_list, char *, s, tor_free(s));
       smartlist_free(status_list);
     }
-  } else if (!strcmp(question, "network-status")) {
+  } else if (!strcmp(question, "dir/status-vote/current/consensus")) { /* v3 */
+    if (directory_caches_dir_info(get_options())) {
+      const cached_dir_t *consensus = dirserv_get_consensus();
+      if (consensus)
+        *answer = tor_strdup(consensus->dir);
+    }
+    if (!*answer) { /* try loading it from disk */
+      char *filename = get_datadir_fname("cached-consensus");
+      *answer = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
+      tor_free(filename);
+    }
+  } else if (!strcmp(question, "network-status")) { /* v1 */
     routerlist_t *routerlist = router_get_routerlist();
     int verbose = control_conn->use_long_names;
     if (!routerlist || !routerlist->routers ||
@@ -1920,7 +1931,10 @@ static const getinfo_item_t getinfo_items[] = {
   ITEM("dir-usage", misc, "Breakdown of bytes transferred over DirPort."),
   PREFIX("desc-annotations/id/", dir, "Router annotations by hexdigest."),
   PREFIX("dir/server/", dir,"Router descriptors as retrieved from a DirPort."),
-  PREFIX("dir/status/", dir,"Networkstatus docs as retrieved from a DirPort."),
+  PREFIX("dir/status/", dir,
+         "v2 networkstatus docs as retrieved from a DirPort."),
+  ITEM("dir/status-vote/current/consensus", dir,
+       "v3 Networkstatus consensus as retrieved from a DirPort."),
   PREFIX("exit-policy/default", policies,
          "The default value appended to the configured exit policy."),
   PREFIX("ip-to-country/", geoip, "Perform a GEOIP lookup"),
index 3c2c05da27d86c9741c640272029f425168ff649..f494fe2839954329cab23a0ff0bdfd4fdddcd96d 100644 (file)
@@ -2408,7 +2408,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
     url_len -= 2;
   }
 
-  if (!strcmp(url,"/tor/") || !strcmp(url,"/tor/dir")) { /* dir fetch */
+  if (!strcmp(url,"/tor/") || !strcmp(url,"/tor/dir")) { /* v1 dir fetch */
     cached_dir_t *d = dirserv_get_directory();
 
     if (!d) {
index 9d718baa08f842b380dde5ed35056dc6acf8670f..b7080aa78536b4b596461995507615743e67cbbe 100644 (file)
@@ -1300,7 +1300,7 @@ _free_cached_dir(void *_d)
   cached_dir_decref(d);
 }
 
-/** If we have no cached directory, or it is older than <b>published</b>,
+/** If we have no cached v1 directory, or it is older than <b>published</b>,
  * then replace it with <b>directory</b>, published at <b>published</b>.
  *
  * If <b>published</b> is too old, do nothing.