9eb66984055ccaf7f6b9f5a707623c1a37f74e34
[captive-validator.git] / src / com / verisign / tat / dnssec / NSEC3ValUtils.java
1 /***************************** -*- Java -*- ********************************\
2  *                                                                         *
3  *   Copyright (c) 2009 VeriSign, Inc. All rights reserved.                *
4  *                                                                         *
5  * This software is provided solely in connection with the terms of the    *
6  * license agreement.  Any other use without the prior express written     *
7  * permission of VeriSign is completely prohibited.  The software and      *
8  * documentation are "Commercial Items", as that term is defined in 48     *
9  * C.F.R.  section 2.101, consisting of "Commercial Computer Software" and *
10  * "Commercial Computer Software Documentation" as such terms are defined  *
11  * in 48 C.F.R. section 252.227-7014(a)(5) and 48 C.F.R. section           *
12  * 252.227-7014(a)(1), and used in 48 C.F.R. section 12.212 and 48 C.F.R.  *
13  * section 227.7202, as applicable.  Pursuant to the above and other       *
14  * relevant sections of the Code of Federal Regulations, as applicable,    *
15  * VeriSign's publications, commercial computer software, and commercial   *
16  * computer software documentation are distributed and licensed to United  *
17  * States Government end users with only those rights as granted to all    *
18  * other end users, according to the terms and conditions contained in the *
19  * license agreement(s) that accompany the products and software           *
20  * documentation.                                                          *
21  *                                                                         *
22 \***************************************************************************/
23
24 package com.verisign.tat.dnssec;
25
26 import com.verisign.tat.dnssec.SignUtils.ByteArrayComparator;
27
28 import org.apache.log4j.Logger;
29
30 import org.xbill.DNS.*;
31 import org.xbill.DNS.utils.base32;
32
33 import java.security.NoSuchAlgorithmException;
34
35 import java.util.*;
36
37
38 public class NSEC3ValUtils {
39     // FIXME: should probably refactor to handle different NSEC3 parameters more
40     // efficiently.
41     // Given a list of NSEC3 RRs, they should be grouped according to
42     // parameters. The idea is to hash and compare for each group independently,
43     // instead of having to skip NSEC3 RRs with the wrong parameters.
44     private static Name   asterisk_label = Name.fromConstantString("*");
45     private static Logger st_log         = Logger.getLogger(NSEC3ValUtils.class);
46     private static final base32 b32      = new base32(base32.Alphabet.BASE32HEX,
47                                                       false, false);
48
49     public static boolean supportsHashAlgorithm(int alg) {
50         if (alg == NSEC3Record.SHA1_DIGEST_ID) {
51             return true;
52         }
53
54         return false;
55     }
56
57     public static void stripUnknownAlgNSEC3s(List<NSEC3Record> nsec3s) {
58         if (nsec3s == null) {
59             return;
60         }
61
62         for (ListIterator<NSEC3Record> i = nsec3s.listIterator(); i.hasNext();) {
63             NSEC3Record nsec3 = i.next();
64
65             if (!supportsHashAlgorithm(nsec3.getHashAlgorithm())) {
66                 i.remove();
67             }
68         }
69     }
70
71     public static boolean isOptOut(NSEC3Record nsec3) {
72         return (nsec3.getFlags() & NSEC3Record.Flags.OPT_OUT) == NSEC3Record.Flags.OPT_OUT;
73     }
74
75     /**
76      * Given a list of NSEC3Records that are part of a message, determine the
77      * NSEC3 parameters (hash algorithm, iterations, and salt) present. If there
78      * is more than one distinct grouping, return null;
79      *
80      * @param nsec3s
81      *            A list of NSEC3Record object.
82      * @return A set containing a number of objects (NSEC3Parameter objects)
83      *         that correspond to each distinct set of parameters, or null if
84      *         the nsec3s list was empty.
85      */
86     public static NSEC3Parameters nsec3Parameters(List<NSEC3Record> nsec3s) {
87         if ((nsec3s == null) || (nsec3s.size() == 0)) {
88             return null;
89         }
90
91         NSEC3Parameters     params = new NSEC3Parameters((NSEC3Record) nsec3s.get(
92                     0));
93         ByteArrayComparator bac    = new ByteArrayComparator();
94
95         for (NSEC3Record nsec3 : nsec3s) {
96             if (!params.match(nsec3, bac)) {
97                 return null;
98             }
99         }
100
101         return params;
102     }
103
104     /**
105      * Given a hash and an a zone name, construct an NSEC3 ownername.
106      *
107      * @param hash
108      *            The hash of an original name.
109      * @param zonename
110      *            The zone to use in constructing the NSEC3 name.
111      * @return The NSEC3 name.
112      */
113     private static Name hashName(byte [] hash, Name zonename) {
114         try {
115             return new Name(b32.toString(hash).toLowerCase(), zonename);
116         } catch (TextParseException e) {
117             // Note, this should never happen.
118             return null;
119         }
120     }
121
122     /**
123      * Given a set of NSEC3 parameters, hash a name.
124      *
125      * @param name
126      *            The name to hash.
127      * @param params
128      *            The parameters to hash with.
129      * @return The hash.
130      */
131     private static byte [] hash(Name name, NSEC3Parameters params) {
132         try {
133             return params.hash(name);
134         } catch (NoSuchAlgorithmException e) {
135             st_log.warn("Did not recognize hash algorithm: " + params.alg);
136
137             return null;
138         }
139     }
140
141     private static byte[] hash(Name name, NSEC3Record nsec3) {
142         try {
143             return nsec3.hashName(name);
144         } catch (NoSuchAlgorithmException e) {
145             st_log.warn("Did not recognize hash algorithm: " + nsec3.getHashAlgorithm());
146
147             return null;
148         }
149     }
150
151     /**
152      * Given the name of a closest encloser, return the name *.closest_encloser.
153      *
154      * @param closestEncloser
155      *            The name to start with.
156      * @return The wildcard name.
157      */
158     private static Name ceWildcard(Name closestEncloser) {
159         try {
160             Name wc = Name.concatenate(asterisk_label, closestEncloser);
161
162             return wc;
163         } catch (NameTooLongException e) {
164             return null;
165         }
166     }
167
168     /**
169      * Given a qname and its proven closest encloser, calculate the "next
170      * closest" name. Basically, this is the name that is one label longer than
171      * the closest encloser that is still a subdomain of qname.
172      *
173      * @param qname
174      *            The qname.
175      * @param closestEncloser
176      *            The closest encloser name.
177      * @return The next closer name.
178      */
179     private static Name nextClosest(Name qname, Name closestEncloser) {
180         int strip = qname.labels() - closestEncloser.labels() - 1;
181
182         return (strip > 0) ? new Name(qname, strip) : qname;
183     }
184
185     /**
186      * Find the NSEC3Record that matches a hash of a name.
187      *
188      * @param hash
189      *            The pre-calculated hash of a name.
190      * @param zonename
191      *            The name of the zone that the NSEC3s are from.
192      * @param nsec3s
193      *            A list of NSEC3Records from a given message.
194      * @param params
195      *            The parameters used for calculating the hash.
196      * @param bac
197      *            An already allocated ByteArrayComparator, for reuse. This may
198      *            be null.
199      *
200      * @return The matching NSEC3Record, if one is present.
201      */
202     private static NSEC3Record findMatchingNSEC3(byte [] hash, Name zonename,
203         List<NSEC3Record> nsec3s, NSEC3Parameters params,
204         ByteArrayComparator bac) {
205         Name n = hashName(hash, zonename);
206
207         for (NSEC3Record nsec3 : nsec3s) {
208             // Skip nsec3 records that are using different parameters.
209             if (!params.match(nsec3, bac)) {
210                 continue;
211             }
212
213             if (n.equals(nsec3.getName())) {
214                 return nsec3;
215             }
216         }
217
218         return null;
219     }
220
221     /**
222      * Given a hash and a candidate NSEC3Record, determine if that NSEC3Record
223      * covers the hash. Covers specifically means that the hash is in between
224      * the owner and next hashes and does not equal either.
225      *
226      * @param nsec3
227      *            The candidate NSEC3Record.
228      * @param hash
229      *            The precalculated hash.
230      * @param bac
231      *            An already allocated comparator. This may be null.
232      * @return True if the NSEC3Record covers the hash.
233      */
234     private static boolean nsec3Covers(NSEC3Record nsec3, byte [] hash,
235         ByteArrayComparator bac) {
236         byte [] owner = hash(nsec3.getName(), nsec3);
237         byte [] next  = nsec3.getNext();
238
239         // This is the "normal case: owner < next and owner < hash < next
240         if ((bac.compare(owner, hash) < 0) && (bac.compare(hash, next) < 0)) {
241             return true;
242         }
243
244         // this is the end of zone case: next < owner && hash > owner || hash <
245         // next
246         if ((bac.compare(next, owner) <= 0) &&
247                 ((bac.compare(hash, next) < 0) ||
248                 (bac.compare(owner, hash) < 0))) {
249             return true;
250         }
251
252         // Otherwise, the NSEC3 does not cover the hash.
253         return false;
254     }
255
256     /**
257      * Given a pre-hashed name, find a covering NSEC3 from among a list of
258      * NSEC3s.
259      *
260      * @param hash
261      *            The hash to consider.
262      * @param zonename
263      *            The name of the zone.
264      * @param nsec3s
265      *            The list of NSEC3s present in a message.
266      * @param params
267      *            The NSEC3 parameters used to generate the hash -- NSEC3s that
268      *            do not use those parameters will be skipped.
269      *
270      * @return A covering NSEC3 if one is present, null otherwise.
271      */
272     private static NSEC3Record findCoveringNSEC3(byte [] hash, Name zonename,
273         List<NSEC3Record> nsec3s, NSEC3Parameters params,
274         ByteArrayComparator bac) {
275         ByteArrayComparator comparator = new ByteArrayComparator();
276
277         for (NSEC3Record nsec3 : nsec3s) {
278             if (!params.match(nsec3, bac)) {
279                 continue;
280             }
281
282             if (nsec3Covers(nsec3, hash, comparator)) {
283                 return nsec3;
284             }
285         }
286
287         return null;
288     }
289
290     /**
291      * Given a name and a list of NSEC3s, find the candidate closest encloser.
292      * This will be the first ancestor of 'name' (including itself) to have a
293      * matching NSEC3 RR.
294      *
295      * @param name
296      *            The name the start with.
297      * @param zonename
298      *            The name of the zone that the NSEC3s came from.
299      * @param nsec3s
300      *            The list of NSEC3s.
301      * @param nsec3params
302      *            The NSEC3 parameters.
303      * @param bac
304      *            A pre-allocated comparator. May be null.
305      *
306      * @return A CEResponse containing the closest encloser name and the NSEC3
307      *         RR that matched it, or null if there wasn't one.
308      */
309     private static CEResponse findClosestEncloser(Name name, Name zonename,
310         List<NSEC3Record> nsec3s, NSEC3Parameters params,
311         ByteArrayComparator bac) {
312         Name        n     = name;
313
314         NSEC3Record nsec3;
315
316         // This scans from longest name to shortest, so the first match we find
317         // is the only viable candidate.
318         // FIXME: modify so that the NSEC3 matching the zone apex need not be
319         // present.
320         while (n.labels() >= zonename.labels()) {
321             nsec3         = findMatchingNSEC3(hash(n, params), zonename,
322                     nsec3s, params, bac);
323
324             if (nsec3 != null) {
325                 return new CEResponse(n, nsec3);
326             }
327
328             n = new Name(n, 1);
329         }
330
331         return null;
332     }
333
334     /**
335      * Given a List of nsec3 RRs, find and prove the closest encloser to qname.
336      *
337      * @param qname
338      *            The qname in question.
339      * @param zonename
340      *            The name of the zone that the NSEC3 RRs come from.
341      * @param nsec3s
342      *            The list of NSEC3s found the this response (already verified).
343      * @param params
344      *            The NSEC3 parameters found in the response.
345      * @param bac
346      *            A pre-allocated comparator. May be null.
347      * @param proveDoesNotExist
348      *            If true, then if the closest encloser turns out to be qname,
349      *            then null is returned.
350      * @return null if the proof isn't completed. Otherwise, return a CEResponse
351      *         object which contains the closest encloser name and the NSEC3
352      *         that matches it.
353      */
354     private static CEResponse proveClosestEncloser(Name qname, Name zonename,
355         List<NSEC3Record> nsec3s, NSEC3Parameters params,
356         ByteArrayComparator bac, boolean proveDoesNotExist) {
357         CEResponse candidate = findClosestEncloser(qname, zonename, nsec3s,
358                 params, bac);
359
360         if (candidate == null) {
361             st_log.debug("proveClosestEncloser: could not find a " +
362                 "candidate for the closest encloser.");
363
364             return null;
365         }
366
367         if (candidate.closestEncloser.equals(qname)) {
368             if (proveDoesNotExist) {
369                 st_log.debug("proveClosestEncloser: proved that qname existed!");
370
371                 return null;
372             }
373
374             // otherwise, we need to nothing else to prove that qname is its own
375             // closest encloser.
376             return candidate;
377         }
378
379         // If the closest encloser is actually a delegation, then the response
380         // should have been a referral. If it is a DNAME, then it should have
381         // been
382         // a DNAME response.
383         if (candidate.ce_nsec3.hasType(Type.NS) &&
384                 !candidate.ce_nsec3.hasType(Type.SOA)) {
385             st_log.debug("proveClosestEncloser: closest encloser " +
386                 "was a delegation!");
387
388             return null;
389         }
390
391         if (candidate.ce_nsec3.hasType(Type.DNAME)) {
392             st_log.debug("proveClosestEncloser: closest encloser was a DNAME!");
393
394             return null;
395         }
396
397         // Otherwise, we need to show that the next closer name is covered.
398         Name    nextClosest = nextClosest(qname, candidate.closestEncloser);
399
400         byte [] nc_hash     = hash(nextClosest, params);
401         candidate.nc_nsec3  = findCoveringNSEC3(nc_hash, zonename, nsec3s,
402                 params, bac);
403
404         if (candidate.nc_nsec3 == null) {
405             st_log.debug("Could not find proof that the " +
406                 "closest encloser was the closest encloser");
407
408             return null;
409         }
410
411         return candidate;
412     }
413
414     private static int maxIterations(int baseAlg, int keysize) {
415         switch (baseAlg) {
416             case DnsSecVerifier.RSA:
417
418                 if (keysize == 0) {
419                     return 2500; // the max at 4096
420                 }
421
422                 if (keysize > 2048) {
423                     return 2500;
424                 }
425
426                 if (keysize > 1024) {
427                     return 500;
428                 }
429
430                 if (keysize > 0) {
431                     return 150;
432                 }
433
434                 break;
435
436             case DnsSecVerifier.DSA:
437
438                 if (keysize == 0) {
439                     return 5000; // the max at 2048;
440                 }
441
442                 if (keysize > 1024) {
443                     return 5000;
444                 }
445
446                 if (keysize > 0) {
447                     return 1500;
448                 }
449
450                 break;
451         }
452
453         return -1;
454     }
455
456     @SuppressWarnings("unchecked")
457     private static boolean validIterations(NSEC3Parameters nsec3params,
458         RRset dnskey_rrset, DnsSecVerifier verifier) {
459         // for now, we return the maximum iterations based simply on the key
460         // algorithms that may have been used to sign the NSEC3 RRsets.
461         int max_iterations = 0;
462
463         for (Iterator i = dnskey_rrset.rrs(); i.hasNext();) {
464             DNSKEYRecord dnskey  = (DNSKEYRecord) i.next();
465             int          baseAlg = verifier.baseAlgorithm(dnskey.getAlgorithm());
466             int          iters   = maxIterations(baseAlg, 0);
467             max_iterations       = (max_iterations < iters) ? iters
468                                                             : max_iterations;
469         }
470
471         if (nsec3params.iterations > max_iterations) {
472             return false;
473         }
474
475         return true;
476     }
477
478     /**
479      * Determine if all of the NSEC3s in a response are legally ignoreable
480      * (i.e., their presence should lead to an INSECURE result). Currently, this
481      * is solely based on iterations.
482      *
483      * @param nsec3s
484      *            The list of NSEC3s. If there is more than one set of NSEC3
485      *            parameters present, this test will not be performed.
486      * @param dnskey_rrset
487      *            The set of validating DNSKEYs.
488      * @param verifier
489      *            The verifier used to verify the NSEC3 RRsets. This is solely
490      *            used to map algorithm aliases.
491      * @return true if all of the NSEC3s can be legally ignored, false if not.
492      */
493     public static boolean allNSEC3sIgnoreable(List<NSEC3Record> nsec3s,
494         RRset dnskey_rrset, DnsSecVerifier verifier) {
495         NSEC3Parameters params = nsec3Parameters(nsec3s);
496
497         if (params == null) {
498             return false;
499         }
500
501         return !validIterations(params, dnskey_rrset, verifier);
502     }
503
504     /**
505      * Determine if the set of NSEC3 records provided with a response prove NAME
506      * ERROR. This means that the NSEC3s prove a) the closest encloser exists,
507      * b) the direct child of the closest encloser towards qname doesn't exist,
508      * and c) *.closest encloser does not exist.
509      *
510      * @param nsec3s
511      *            The list of NSEC3s.
512      * @param qname
513      *            The query name to check against.
514      * @param zonename
515      *            This is the name of the zone that the NSEC3s belong to. This
516      *            may be discovered in any number of ways. A good one is to use
517      *            the signerName from the NSEC3 record's RRSIG.
518      * @return SecurityStatus.SECURE of the Name Error is proven by the NSEC3
519      *         RRs, BOGUS if not, INSECURE if all of the NSEC3s could be validly
520      *         ignored.
521      */
522     public static boolean proveNameError(List<NSEC3Record> nsec3s, Name qname,
523         Name zonename) {
524         if ((nsec3s == null) || (nsec3s.size() == 0)) {
525             return false;
526         }
527
528         NSEC3Parameters nsec3params = nsec3Parameters(nsec3s);
529
530         if (nsec3params == null) {
531             st_log.debug("Could not find a single set of " +
532                 "NSEC3 parameters (multiple parameters present).");
533
534             return false;
535         }
536
537         ByteArrayComparator bac = new ByteArrayComparator();
538
539         // First locate and prove the closest encloser to qname. We will use the
540         // variant that fails if the closest encloser turns out to be qname.
541         CEResponse ce = proveClosestEncloser(qname, zonename, nsec3s,
542                 nsec3params, bac, true);
543
544         if (ce == null) {
545             st_log.debug("proveNameError: failed to prove a closest encloser.");
546
547             return false;
548         }
549
550         // At this point, we know that qname does not exist. Now we need to
551         // prove
552         // that the wildcard does not exist.
553         Name        wc      = ceWildcard(ce.closestEncloser);
554         byte []     wc_hash = hash(wc, nsec3params);
555         NSEC3Record nsec3   = findCoveringNSEC3(wc_hash, zonename, nsec3s,
556                 nsec3params, bac);
557
558         if (nsec3 == null) {
559             st_log.debug("proveNameError: could not prove that the " +
560                 "applicable wildcard did not exist.");
561
562             return false;
563         }
564
565         return true;
566     }
567
568     /**
569      * Determine if the NSEC3s provided in a response prove the NOERROR/NODATA
570      * status. There are a number of different variants to this:
571      *
572      * 1) Normal NODATA -- qname is matched to an NSEC3 record, type is not
573      * present.
574      *
575      * 2) ENT NODATA -- because there must be NSEC3 record for
576      * empty-non-terminals, this is the same as #1.
577      *
578      * 3) NSEC3 ownername NODATA -- qname matched an existing, lone NSEC3
579      * ownername, but qtype was not NSEC3. NOTE: as of nsec-05, this case no
580      * longer exists.
581      *
582      * 4) Wildcard NODATA -- A wildcard matched the name, but not the type.
583      *
584      * 5) Opt-In DS NODATA -- the qname is covered by an opt-in span and qtype
585      * == DS. (or maybe some future record with the same parent-side-only
586      * property)
587      *
588      * @param nsec3s
589      *            The NSEC3Records to consider.
590      * @param qname
591      *            The qname in question.
592      * @param qtype
593      *            The qtype in question.
594      * @param zonename
595      *            The name of the zone that the NSEC3s came from.
596      * @return true if the NSEC3s prove the proposition.
597      */
598     public static boolean proveNodata(List<NSEC3Record> nsec3s, Name qname,
599         int qtype, Name zonename) {
600         if ((nsec3s == null) || (nsec3s.size() == 0)) {
601             return false;
602         }
603
604         NSEC3Parameters nsec3params = nsec3Parameters(nsec3s);
605
606         if (nsec3params == null) {
607             st_log.debug("could not find a single set of " +
608                 "NSEC3 parameters (multiple parameters present)");
609
610             return false;
611         }
612
613         ByteArrayComparator bac   = new ByteArrayComparator();
614
615         NSEC3Record         nsec3 = findMatchingNSEC3(hash(qname, nsec3params),
616                 zonename, nsec3s, nsec3params, bac);
617
618         // Cases 1 & 2.
619         if (nsec3 != null) {
620             if (nsec3.hasType(qtype)) {
621                 st_log.debug(
622                     "proveNodata: Matching NSEC3 proved that type existed!");
623
624                 return false;
625             }
626
627             if (nsec3.hasType(Type.CNAME)) {
628                 st_log.debug("proveNodata: Matching NSEC3 proved " +
629                     "that a CNAME existed!");
630
631                 return false;
632             }
633
634             return true;
635         }
636
637         // For cases 3 - 5, we need the proven closest encloser, and it can't
638         // match qname. Although, at this point, we know that it won't since we
639         // just checked that.
640         CEResponse ce = proveClosestEncloser(qname, zonename, nsec3s,
641                 nsec3params, bac, true);
642
643         // At this point, not finding a match or a proven closest encloser is a
644         // problem.
645         if (ce == null) {
646             st_log.debug("proveNodata: did not match qname, " +
647                 "nor found a proven closest encloser.");
648
649             return false;
650         }
651
652         // Case 3: REMOVED
653
654         // Case 4:
655         Name wc = ceWildcard(ce.closestEncloser);
656         nsec3 = findMatchingNSEC3(hash(wc, nsec3params), zonename, nsec3s,
657                 nsec3params, bac);
658
659         if (nsec3 != null) {
660             if (nsec3.hasType(qtype)) {
661                 st_log.debug("proveNodata: matching wildcard had qtype!");
662
663                 return false;
664             }
665
666             return true;
667         }
668
669         // Case 5.
670         if (qtype != Type.DS) {
671             st_log.debug("proveNodata: could not find matching NSEC3, " +
672                 "nor matching wildcard, and qtype is not DS -- no more options.");
673
674             return false;
675         }
676
677         // We need to make sure that the covering NSEC3 is opt-in.
678         if (!isOptOut(ce.nc_nsec3)) {
679             st_log.debug("proveNodata: covering NSEC3 was not " +
680                 "opt-in in an opt-in DS NOERROR/NODATA case.");
681
682             return false;
683         }
684
685         return true;
686     }
687
688     /**
689      * Prove that a positive wildcard match was appropriate (no direct match
690      * RRset).
691      *
692      * @param nsec3s
693      *            The NSEC3 records to work with.
694      * @param qname
695      *            The qname that was matched to the wildcard
696      * @param zonename
697      *            The name of the zone that the NSEC3s come from.
698      * @param wildcard
699      *            The purported wildcard that matched.
700      * @return true if the NSEC3 records prove this case.
701      */
702     public static boolean proveWildcard(List<NSEC3Record> nsec3s, Name qname,
703         Name zonename, Name wildcard) {
704         if ((nsec3s == null) || (nsec3s.size() == 0)) {
705             return false;
706         }
707
708         if ((qname == null) || (wildcard == null)) {
709             return false;
710         }
711
712         NSEC3Parameters nsec3params = nsec3Parameters(nsec3s);
713
714         if (nsec3params == null) {
715             st_log.debug(
716                 "couldn't find a single set of NSEC3 parameters (multiple parameters present).");
717
718             return false;
719         }
720
721         ByteArrayComparator bac = new ByteArrayComparator();
722
723         // We know what the (purported) closest encloser is by just looking at
724         // the
725         // supposed generating wildcard.
726         CEResponse candidate = new CEResponse(new Name(wildcard, 1), null);
727
728         // Now we still need to prove that the original data did not exist.
729         // Otherwise, we need to show that the next closer name is covered.
730         Name nextClosest = nextClosest(qname, candidate.closestEncloser);
731         candidate.nc_nsec3 = findCoveringNSEC3(hash(nextClosest, nsec3params),
732                 zonename, nsec3s, nsec3params, bac);
733
734         if (candidate.nc_nsec3 == null) {
735             st_log.debug("proveWildcard: did not find a covering NSEC3 " +
736                 "that covered the next closer name to " + qname + " from " +
737                 candidate.closestEncloser + " (derived from wildcard " +
738                 wildcard + ")");
739
740             return false;
741         }
742
743         return true;
744     }
745
746     /**
747      * Prove that a DS response either had no DS, or wasn't a delegation point.
748      *
749      * Fundamentally there are two cases here: normal NODATA and Opt-In NODATA.
750      *
751      * @param nsec3s
752      *            The NSEC3 RRs to examine.
753      * @param qname
754      *            The name of the DS in question.
755      * @param zonename
756      *            The name of the zone that the NSEC3 RRs come from.
757      *
758      * @return SecurityStatus.SECURE if it was proven that there is no DS in a
759      *         secure (i.e., not opt-in) way, SecurityStatus.INSECURE if there
760      *         was no DS in an insecure (i.e., opt-in) way,
761      *         SecurityStatus.INDETERMINATE if it was clear that this wasn't a
762      *         delegation point, and SecurityStatus.BOGUS if the proofs don't
763      *         work out.
764      */
765     public static byte proveNoDS(List<NSEC3Record> nsec3s, Name qname,
766         Name zonename) {
767         if ((nsec3s == null) || (nsec3s.size() == 0)) {
768             return SecurityStatus.BOGUS;
769         }
770
771         NSEC3Parameters nsec3params = nsec3Parameters(nsec3s);
772
773         if (nsec3params == null) {
774             st_log.debug("couldn't find a single set of " +
775                 "NSEC3 parameters (multiple parameters present).");
776
777             return SecurityStatus.BOGUS;
778         }
779
780         ByteArrayComparator bac = new ByteArrayComparator();
781
782         // Look for a matching NSEC3 to qname -- this is the normal NODATA case.
783         NSEC3Record nsec3 = findMatchingNSEC3(hash(qname, nsec3params),
784                 zonename, nsec3s, nsec3params, bac);
785
786         if (nsec3 != null) {
787             // If the matching NSEC3 has the SOA bit set, it is from the wrong
788             // zone (the child instead of the parent). If it has the DS bit set,
789             // then we were lied to.
790             if (nsec3.hasType(Type.SOA) || nsec3.hasType(Type.DS)) {
791                 return SecurityStatus.BOGUS;
792             }
793
794             // If the NSEC3 RR doesn't have the NS bit set, then this wasn't a
795             // delegation point.
796             if (!nsec3.hasType(Type.NS)) {
797                 return SecurityStatus.INDETERMINATE;
798             }
799
800             // Otherwise, this proves no DS.
801             return SecurityStatus.SECURE;
802         }
803
804         // Otherwise, we are probably in the opt-in case.
805         CEResponse ce = proveClosestEncloser(qname, zonename, nsec3s,
806                 nsec3params, bac, true);
807
808         if (ce == null) {
809             return SecurityStatus.BOGUS;
810         }
811
812         // If we had the closest encloser proof, then we need to check that the
813         // covering NSEC3 was opt-in -- the proveClosestEncloser step already
814         // checked to see if the closest encloser was a delegation or DNAME.
815         if (isOptOut(ce.nc_nsec3)) {
816             return SecurityStatus.SECURE;
817         }
818
819         return SecurityStatus.BOGUS;
820     }
821
822     /**
823      * This is a class to encapsulate a unique set of NSEC3 parameters:
824      * algorithm, iterations, and salt.
825      */
826     private static class NSEC3Parameters {
827         public int     alg;
828         public byte [] salt;
829         public int     iterations;
830         private NSEC3PARAMRecord nsec3paramrec;
831
832         public NSEC3Parameters(NSEC3Record r) {
833             alg            = r.getHashAlgorithm();
834             salt           = r.getSalt();
835             iterations     = r.getIterations();
836
837             nsec3paramrec = new NSEC3PARAMRecord(Name.root, DClass.IN, 0,
838                                                  alg, 0, iterations, salt);
839         }
840
841         public boolean match(NSEC3Record r, ByteArrayComparator bac) {
842             if (r.getHashAlgorithm() != alg) {
843                 return false;
844             }
845
846             if (r.getIterations() != iterations) {
847                 return false;
848             }
849
850             if ((salt == null) && (r.getSalt() != null)) {
851                 return false;
852             }
853
854             if (salt == null) {
855                 return true;
856             }
857
858             if (bac == null) {
859                 bac = new ByteArrayComparator();
860             }
861
862             return bac.compare(r.getSalt(), salt) == 0;
863         }
864
865         public byte[] hash(Name name) throws NoSuchAlgorithmException {
866             return nsec3paramrec.hashName(name);
867         }
868     }
869
870     /**
871      * This is just a simple class to encapsulate the response to a closest
872      * encloser proof.
873      */
874     private static class CEResponse {
875         public Name        closestEncloser;
876         public NSEC3Record ce_nsec3;
877         public NSEC3Record nc_nsec3;
878
879         public CEResponse(Name ce, NSEC3Record nsec3) {
880             this.closestEncloser     = ce;
881             this.ce_nsec3            = nsec3;
882         }
883     }
884 }