[or-cvs] [metrics-db/master] Delete secrets that we don't need anymore.

karsten at torproject.org karsten at torproject.org
Thu Feb 10 08:14:09 UTC 2011


commit c05156a2049a6f6e48f56e42034d73745bcd584b
Author: Karsten Loesing <karsten.loesing at gmx.net>
Date:   Wed Feb 9 16:04:22 2011 +0100

    Delete secrets that we don't need anymore.
---
 .../ernie/db/SanitizedBridgesWriter.java           |   38 +++++++++++++++++---
 1 files changed, 33 insertions(+), 5 deletions(-)

diff --git a/src/org/torproject/ernie/db/SanitizedBridgesWriter.java b/src/org/torproject/ernie/db/SanitizedBridgesWriter.java
index e610325..0d08b76 100644
--- a/src/org/torproject/ernie/db/SanitizedBridgesWriter.java
+++ b/src/org/torproject/ernie/db/SanitizedBridgesWriter.java
@@ -167,7 +167,7 @@ public class SanitizedBridgesWriter {
 
   private boolean replaceIPAddressesWithHashes;
 
-  private Map<String, byte[]> secretsForHashingIPAddresses;
+  private SortedMap<String, byte[]> secretsForHashingIPAddresses;
 
   private String bridgeDescriptorMappingsCutOffTimestamp;
 
@@ -201,7 +201,7 @@ public class SanitizedBridgesWriter {
 
     /* Read secrets for replacing IP addresses with hashes from disk. */
     // TODO actually implement reading from disk
-    this.secretsForHashingIPAddresses = new HashMap<String, byte[]>();
+    this.secretsForHashingIPAddresses = new TreeMap<String, byte[]>();
 
     /* If we're configured to keep descriptor mappings only for a limited
      * time, define the cut-off day and time. */
@@ -270,11 +270,17 @@ public class SanitizedBridgesWriter {
       if (!this.secretsForHashingIPAddresses.containsKey(month)) {
         // TODO implement generating secrets using a secure random
         // generator
-        // TODO also, we should write secrets to disk immediately before
-        // using them, or we might end with inconsistently sanitized
-        // bridges
         this.secretsForHashingIPAddresses.put(month,
             ("secret for hashing IPs: " + month).getBytes());
+        if (month.compareTo(
+            this.bridgeDescriptorMappingsCutOffTimestamp) < 0) {
+          this.logger.warning("Generated a secret that we won't make "
+              + "persistent, because it's outside our bridge descriptors "
+              + "mapping interval.");
+        } else {
+          // TODO append secrets to file on disk immediately before using
+          // it, or we might end with inconsistently sanitized bridges
+        }
       }
       byte[] secret = this.secretsForHashingIPAddresses.get(month);
       System.arraycopy(secret, 0, hashInput, 24, 31);
@@ -1160,6 +1166,28 @@ public class SanitizedBridgesWriter {
       this.logger.log(Level.WARNING, "Could not write descriptor "
           + "mappings to disk.", e);
     }
+
+    /* Delete secrets that we don't need anymore. */
+    if (!this.secretsForHashingIPAddresses.isEmpty() &&
+        this.secretsForHashingIPAddresses.firstKey().compareTo(
+        this.bridgeDescriptorMappingsCutOffTimestamp) < 0) {
+      int kept = 0, deleted = 0;
+      SortedMap<String, byte[]> secretsStoredOnDisk =
+          new TreeMap<String, byte[]>();
+      for (Map.Entry<String, byte[]> e :
+          this.secretsForHashingIPAddresses.entrySet()) {
+        if (e.getKey().compareTo(
+            this.bridgeDescriptorMappingsCutOffTimestamp) < 0) {
+          deleted++;
+        } else {
+          secretsStoredOnDisk.put(e.getKey(), e.getValue());
+          kept++;
+        }
+      }
+      // TODO write reduced set of secrets to disk
+      this.logger.info("Deleted " + deleted + " secrets that we don't "
+          + "need anymore and kept " + kept + ".");
+    }
   }
 }
 





More information about the tor-commits mailing list