add error_file, count options; configure log4j so it stops whining; eclipse formattin...
[captive-validator.git] / src / com / verisign / cl / DNSSECReconciler.java
index 49c0777..64a3f05 100644 (file)
@@ -1,10 +1,15 @@
 package com.verisign.cl;
 
+import java.io.*;
+import java.net.SocketTimeoutException;
 import java.util.*;
 
+import org.apache.log4j.PropertyConfigurator;
 import org.xbill.DNS.*;
 
 import com.verisign.tat.dnssec.CaptiveValidator;
+import com.verisign.tat.dnssec.SecurityStatus;
+import com.verisign.tat.dnssec.Util;
 
 public class DNSSECReconciler {
 
@@ -13,6 +18,11 @@ public class DNSSECReconciler {
      * query_file=queries.txt dnskey_query=net dnskey_query=edu
      */
     private CaptiveValidator validator;
+    private SimpleResolver resolver;
+
+    private BufferedReader queryStream;
+    private PrintStream errorStream;
+    private Set<Name> zoneNames;
 
     // Options
     public String server;
@@ -20,6 +30,8 @@ public class DNSSECReconciler {
     public String queryFile;
     public String dnskeyFile;
     public List<String> dnskeyNames;
+    public String errorFile;
+    public long count = 0;
 
     DNSSECReconciler() {
         validator = new CaptiveValidator();
@@ -28,7 +40,7 @@ public class DNSSECReconciler {
     /**
      * Convert a query line of the form: <qname> <qtype> <flags> to a request
      * message.
-     *
+     * 
      * @param query_line
      * @return A query message
      * @throws TextParseException
@@ -53,6 +65,7 @@ public class DNSSECReconciler {
         for (int i = 1; i < tokens.length; i++) {
             if (tokens[i].startsWith("+")) {
                 // For now, we ignore flags as uninteresting
+                // All queries will get the DO bit anyway
                 continue;
             }
 
@@ -79,7 +92,181 @@ public class DNSSECReconciler {
         return query;
     }
 
-    public void execute() {
+    /**
+     * Fetch the next query from either the command line or the query file
+     * 
+     * @return a query Message, or null if the query list is exhausted
+     * @throws IOException
+     */
+    private Message nextQuery() throws IOException {
+        if (query != null) {
+            Message res = queryFromString(query);
+            query = null;
+            return res;
+        }
+
+        if (queryStream == null && queryFile != null) {
+            queryStream = new BufferedReader(new FileReader(queryFile));
+        }
+
+        if (queryStream != null) {
+            String line = queryStream.readLine();
+
+            if (line == null)
+                return null;
+
+            return queryFromString(line);
+        }
+
+        return null;
+
+    }
+
+    /**
+     * Figure out the correct zone from the query by comparing the qname to the
+     * list of trusted DNSKEY owner names.
+     * 
+     * @param query
+     * @return a zone name
+     * @throws IOException
+     */
+    private Name zoneFromQuery(Message query) throws IOException {
+
+        if (zoneNames == null) {
+            zoneNames = new HashSet<Name>();
+            for (String key : validator.listTrustedKeys()) {
+                String[] components = key.split("/");
+                Name keyname = Name.fromString(components[0]);
+                if (!keyname.isAbsolute()) {
+                    keyname = Name.concatenate(keyname, Name.root);
+                }
+                zoneNames.add(keyname);
+            }
+        }
+
+        Name qname = query.getQuestion().getName();
+        for (Name n : zoneNames) {
+            if (qname.subdomain(n)) {
+                return n;
+            }
+        }
+
+        return null;
+    }
+
+    private Message resolve(Message query) {
+
+        try {
+            return resolver.send(query);
+        } catch (SocketTimeoutException e) {
+            System.err.println("Error: timed out querying " + server + " for "
+                    + queryToString(query));
+        } catch (IOException e) {
+            System.err.println("Error: error querying " + server + " for "
+                    + queryToString(query) + ":" + e.getMessage());
+        }
+        return null;
+    }
+
+    private String queryToString(Message query) {
+        if (query == null)
+            return null;
+        Record question = query.getQuestion();
+        return question.getName() + "/" + Type.string(question.getType()) + "/"
+                + DClass.string(question.getDClass());
+    }
+
+    public void execute() throws IOException {
+        // Configure our resolver
+        resolver = new SimpleResolver(server);
+        resolver.setEDNS(0, 4096, Flags.DO, null);
+
+        // Create our DNSSEC error stream
+        if (errorFile != null) {
+            errorStream = new PrintStream(new FileOutputStream(errorFile, true));
+        } else {
+            errorStream = System.out;
+        }
+
+        // Prime the validator
+        if (dnskeyFile != null) {
+            validator.addTrustedKeysFromFile(dnskeyFile);
+        } else {
+            for (String name : dnskeyNames) {
+                Message query = queryFromString(name + " DNSKEY");
+                Message response = resolve(query);
+                validator.addTrustedKeysFromResponse(response);
+            }
+        }
+
+        // Log our set of trusted keys
+        for (String key : validator.listTrustedKeys()) {
+            System.out.println("Trusted Key: " + key);
+        }
+
+        // Iterate over all queries
+        Message query = nextQuery();
+        long total = 0;
+        long validCount = 0;
+        long errorCount = 0;
+
+        while (query != null) {
+
+            Name zone = zoneFromQuery(query);
+            // Skip queries in zones that we don't have keys for
+            if (zone == null) {
+                continue;
+            }
+
+            Message response = resolve(query);
+            if (response == null) {
+                continue;
+            }
+            byte result = validator.validateMessage(response, zone.toString());
+
+            switch (result) {
+            case SecurityStatus.BOGUS:
+            case SecurityStatus.INVALID:
+                errorStream.println("BOGUS Answer:");
+                errorStream.println("Query: " + queryToString(query));
+                errorStream.println("Response:\n" + response);
+                for (String err : validator.getErrorList()) {
+                    errorStream.println("Error: " + err);
+                }
+                errorStream.println("");
+                errorCount++;
+                break;
+            case SecurityStatus.INSECURE:
+            case SecurityStatus.INDETERMINATE:
+            case SecurityStatus.UNCHECKED:
+                errorStream.println("Insecure Answer:");
+                errorStream.println("Query: " + queryToString(query));
+                errorStream.println("Response:\n" + response);
+                for (String err : validator.getErrorList()) {
+                    errorStream.println("Error: " + err);
+                }
+                errorCount++;
+                break;
+            case SecurityStatus.SECURE:
+                validCount++;
+                break;
+            }
+
+            if (++total % 1000 == 0) {
+                System.out.println("Completed " + total + " queries: "
+                        + validCount + " valid, " + errorCount + " errors.");
+            }
+         
+            if (count > 0 && total >= count) {
+                break;
+            }
+            
+            query = nextQuery();
+        }
+
+        System.out.println("Completed " + total
+                + (total > 1 ? " queries" : " query") +
+                ": " + validCount + " valid, " + errorCount + " errors.");
     }
 
     private static void usage() {
@@ -87,11 +274,15 @@ public class DNSSECReconciler {
         System.err.println("       server: the DNS server to query.");
         System.err.println("       query: a name [type [flags]] string.");
         System.err.println("       query_file: a list of queries, one query per line.");
+        System.err.println("       count: send up to'count' queries, then stop.");
         System.err.println("       dnskey_file: a file containing DNSKEY RRs to trust.");
         System.err.println("       dnskey_query: query 'server' for DNSKEY at given name to trust, may repeat");
+        System.err.println("       error_file: write DNSSEC validation failure details to this file");
     }
 
-    public static int main(String[] argv) {
+    public static void main(String[] argv) {
+
+        PropertyConfigurator.configure("lib/log4j.properties");
 
         DNSSECReconciler dr = new DNSSECReconciler();
 
@@ -102,17 +293,23 @@ public class DNSSECReconciler {
                 if (arg.indexOf('=') < 0) {
                     System.err.println("Unrecognized option: " + arg);
                     usage();
-                    return 1;
+                    System.exit(1);
                 }
 
-                String[] split_arg = arg.split("[ \t]*=[ \t]*", 2);
+                String[] split_arg = arg.split("=", 2);
                 String opt = split_arg[0];
                 String optarg = split_arg[1];
 
                 if (opt.equals("server")) {
                     dr.server = optarg;
+                } else if (opt.equals("query")) {
+                    dr.query = optarg;
                 } else if (opt.equals("query_file")) {
                     dr.queryFile = optarg;
+                } else if (opt.equals("count")) {
+                    dr.count = Util.parseInt(optarg, 0);
+                } else if (opt.equals("error_file")) {
+                    dr.errorFile = optarg;
                 } else if (opt.equals("dnskey_file")) {
                     dr.dnskeyFile = optarg;
                 } else if (opt.equals("dnskey_query")) {
@@ -123,7 +320,7 @@ public class DNSSECReconciler {
                 } else {
                     System.err.println("Unrecognized option: " + opt);
                     usage();
-                    return 1;
+                    System.exit(1);
                 }
             }
 
@@ -131,17 +328,17 @@ public class DNSSECReconciler {
             if (dr.server == null) {
                 System.err.println("'server' must be specified");
                 usage();
-                return 1;
+                System.exit(1);
             }
             if (dr.query == null && dr.queryFile == null) {
                 System.err.println("Either 'query' or 'query_file' must be specified");
                 usage();
-                return 1;
+                System.exit(1);
             }
             if (dr.dnskeyFile == null && dr.dnskeyNames == null) {
                 System.err.println("Either 'dnskey_file' or 'dnskey_query' must be specified");
                 usage();
-                return 1;
+                System.exit(1);
             }
 
             // Execute the job
@@ -149,9 +346,7 @@ public class DNSSECReconciler {
 
         } catch (Exception e) {
             e.printStackTrace();
-            return 1;
+            System.exit(1);
         }
-
-        return 0;
     }
 }