2009-04-19 17:56:34 +00:00
|
|
|
/*
|
2009-04-19 21:12:48 +00:00
|
|
|
* Copyright (c) 2009 VeriSign, Inc. All rights reserved.
|
2009-04-19 17:56:34 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-04-19 19:27:02 +00:00
|
|
|
package com.versign.tat.dnssec;
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
import java.util.*;
|
|
|
|
import java.io.*;
|
|
|
|
import java.security.*;
|
|
|
|
|
|
|
|
import org.xbill.DNS.*;
|
|
|
|
import org.xbill.DNS.security.*;
|
|
|
|
|
2009-04-19 19:27:02 +00:00
|
|
|
import com.versign.tat.dnssec.SecurityStatus;
|
|
|
|
import com.versign.tat.dnssec.Util;
|
|
|
|
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A class for performing basic DNSSEC verification. The DNSJAVA package
|
2009-04-19 19:24:49 +00:00
|
|
|
* contains a similar class. This is a re-implementation that allows us to have
|
2009-04-19 17:56:34 +00:00
|
|
|
* finer control over the validation process.
|
|
|
|
*/
|
|
|
|
public class DnsSecVerifier
|
|
|
|
{
|
|
|
|
public static final int UNKNOWN = 0;
|
|
|
|
public static final int RSA = 1;
|
|
|
|
public static final int DSA = 2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is a mapping of DNSSEC algorithm numbers/private identifiers to JCA
|
|
|
|
* algorithm identifiers.
|
|
|
|
*/
|
2009-04-19 21:12:48 +00:00
|
|
|
private HashMap<Integer, AlgEntry> mAlgorithmMap;
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
private static class AlgEntry
|
|
|
|
{
|
|
|
|
public String jcaName;
|
|
|
|
public boolean isDSA;
|
|
|
|
public int dnssecAlg;
|
|
|
|
|
|
|
|
public AlgEntry(String name, int dnssecAlg, boolean isDSA)
|
|
|
|
{
|
|
|
|
jcaName = name;
|
|
|
|
this.dnssecAlg = dnssecAlg;
|
|
|
|
this.isDSA = isDSA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public DnsSecVerifier()
|
|
|
|
{
|
2009-04-19 21:12:48 +00:00
|
|
|
mAlgorithmMap = new HashMap<Integer, AlgEntry>();
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
// set the default algorithm map.
|
|
|
|
mAlgorithmMap.put(new Integer(DNSSEC.RSAMD5), new AlgEntry("MD5withRSA",
|
|
|
|
DNSSEC.RSAMD5, false));
|
|
|
|
mAlgorithmMap.put(new Integer(DNSSEC.DSA), new AlgEntry("SHA1withDSA", DNSSEC.DSA,
|
|
|
|
true));
|
|
|
|
mAlgorithmMap.put(new Integer(DNSSEC.RSASHA1), new AlgEntry(
|
|
|
|
"SHA1withRSA", DNSSEC.RSASHA1, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isDSA(int algorithm)
|
|
|
|
{
|
|
|
|
// shortcut the standard algorithms
|
|
|
|
if (algorithm == DNSSEC.DSA) return true;
|
|
|
|
if (algorithm == DNSSEC.RSASHA1) return false;
|
|
|
|
if (algorithm == DNSSEC.RSAMD5) return false;
|
|
|
|
|
|
|
|
AlgEntry entry = (AlgEntry) mAlgorithmMap.get(new Integer(algorithm));
|
|
|
|
if (entry != null) return entry.isDSA;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void init(Properties config)
|
|
|
|
{
|
|
|
|
if (config == null) return;
|
|
|
|
|
|
|
|
// Algorithm configuration
|
|
|
|
|
|
|
|
// For now, we just accept new identifiers for existing algoirthms.
|
|
|
|
// FIXME: handle private identifiers.
|
2009-04-19 21:12:48 +00:00
|
|
|
List<Util.ConfigEntry> aliases = Util.parseConfigPrefix(config, "dns.algorithm.");
|
2009-04-19 17:56:34 +00:00
|
|
|
|
2009-04-19 21:12:48 +00:00
|
|
|
for (Util.ConfigEntry entry : aliases) {
|
2009-04-19 17:56:34 +00:00
|
|
|
Integer alg_alias = new Integer(Util.parseInt(entry.key, -1));
|
|
|
|
Integer alg_orig = new Integer(Util.parseInt(entry.value, -1));
|
|
|
|
|
|
|
|
if (!mAlgorithmMap.containsKey(alg_orig))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.warn("Unable to alias " + alg_alias + " to unknown algorithm "
|
|
|
|
// + alg_orig);
|
2009-04-19 17:56:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mAlgorithmMap.containsKey(alg_alias))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.warn("Algorithm alias " + alg_alias
|
|
|
|
// + " is already defined and cannot be redefined");
|
2009-04-19 17:56:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
mAlgorithmMap.put(alg_alias, mAlgorithmMap.get(alg_orig));
|
|
|
|
}
|
|
|
|
|
|
|
|
// for debugging purposes, log the entire algorithm map table.
|
2009-04-19 21:12:48 +00:00
|
|
|
// for (Integer alg : mAlgorithmMap.keySet()) {
|
|
|
|
// AlgEntry entry = mAlgorithmMap.get(alg);
|
2009-04-19 19:24:49 +00:00
|
|
|
// if (entry == null)
|
|
|
|
// log.warn("DNSSEC alg " + alg + " has a null entry!");
|
|
|
|
// else
|
|
|
|
// log.debug("DNSSEC alg " + alg + " maps to " + entry.jcaName
|
|
|
|
// + " (" + entry.dnssecAlg + ")");
|
2009-04-19 21:12:48 +00:00
|
|
|
// }
|
2009-04-19 17:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the matching DNSKEY(s) to an RRSIG within a DNSKEY rrset. Normally
|
|
|
|
* this will only return one DNSKEY. It can return more than one, since
|
|
|
|
* KeyID/Footprints are not guaranteed to be unique.
|
|
|
|
*
|
|
|
|
* @param dnskey_rrset The DNSKEY rrset to search.
|
|
|
|
* @param signature The RRSIG to match against.
|
|
|
|
* @return A List contains a one or more DNSKEYRecord objects, or null if a
|
|
|
|
* matching DNSKEY could not be found.
|
|
|
|
*/
|
2009-04-19 21:12:48 +00:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
private List<DNSKEYRecord> findKey(RRset dnskey_rrset, RRSIGRecord signature)
|
2009-04-19 17:56:34 +00:00
|
|
|
{
|
|
|
|
if (!signature.getSigner().equals(dnskey_rrset.getName()))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.trace("findKey: could not find appropriate key because "
|
|
|
|
// + "incorrect keyset was supplied. Wanted: " + signature.getSigner()
|
|
|
|
// + ", got: " + dnskey_rrset.getName());
|
2009-04-19 17:56:34 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
int keyid = signature.getFootprint();
|
|
|
|
int alg = signature.getAlgorithm();
|
|
|
|
|
2009-04-19 21:12:48 +00:00
|
|
|
List<DNSKEYRecord> res = new ArrayList<DNSKEYRecord>(dnskey_rrset.size());
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
for (Iterator i = dnskey_rrset.rrs(); i.hasNext();)
|
|
|
|
{
|
|
|
|
DNSKEYRecord r = (DNSKEYRecord) i.next();
|
|
|
|
if (r.getAlgorithm() == alg && r.getFootprint() == keyid)
|
|
|
|
{
|
|
|
|
res.add(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.size() == 0)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.trace("findKey: could not find a key matching "
|
|
|
|
// + "the algorithm and footprint in supplied keyset. ");
|
2009-04-19 17:56:34 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check to see if a signature looks valid (i.e., matches the rrset in
|
|
|
|
* question, in the validity period, etc.)
|
|
|
|
*
|
|
|
|
* @param rrset The rrset that the signature belongs to.
|
|
|
|
* @param sigrec The signature record to check.
|
|
|
|
* @return A value of DNSSEC.Secure if it looks OK, DNSSEC.Faile if it looks
|
|
|
|
* bad.
|
|
|
|
*/
|
|
|
|
private byte checkSignature(RRset rrset, RRSIGRecord sigrec)
|
|
|
|
{
|
|
|
|
if (rrset == null || sigrec == null) return DNSSEC.Failed;
|
|
|
|
if (!rrset.getName().equals(sigrec.getName()))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.debug("Signature name does not match RRset name");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
if (rrset.getType() != sigrec.getTypeCovered())
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.debug("Signature type does not match RRset type");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
Date now = new Date();
|
|
|
|
Date start = sigrec.getTimeSigned();
|
|
|
|
Date expire = sigrec.getExpire();
|
|
|
|
if (now.before(start))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.debug("Signature is not yet valid");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (now.after(expire))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.debug("Signature has expired (now = " + now + ", sig expires = "
|
|
|
|
// + expire);
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SecurityStatus.SECURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PublicKey parseDNSKEY(DNSKEYRecord key)
|
|
|
|
{
|
|
|
|
AlgEntry ae = (AlgEntry) mAlgorithmMap
|
|
|
|
.get(new Integer(key.getAlgorithm()));
|
|
|
|
if (key.getAlgorithm() != ae.dnssecAlg)
|
|
|
|
{
|
|
|
|
// Recast the DNSKEYRecord in question as one using the offical
|
|
|
|
// algorithm, to work around the lack of alias support in the underlying
|
|
|
|
// KEYConverter class from DNSjava
|
|
|
|
|
|
|
|
key = new DNSKEYRecord(key.getName(), key.getDClass(), key.getTTL(),
|
|
|
|
key.getFlags(), key.getProtocol(), ae.dnssecAlg, key.getKey());
|
|
|
|
}
|
|
|
|
|
|
|
|
return KEYConverter.parseRecord(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Actually cryptographically verify a signature over the rrset. The RRSIG
|
|
|
|
* record must match the rrset being verified (see checkSignature).
|
|
|
|
*
|
|
|
|
* @param rrset The rrset to verify.
|
|
|
|
* @param sigrec The signature to verify with.
|
|
|
|
* @param key The (public) key associated with the RRSIG record.
|
|
|
|
* @return A security status code: SECURE if it worked, BOGUS if not,
|
|
|
|
* UNCHECKED if we just couldn't actually do the function.
|
|
|
|
*/
|
|
|
|
public byte verifySignature(RRset rrset, RRSIGRecord sigrec,
|
|
|
|
DNSKEYRecord key)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
PublicKey pk = parseDNSKEY(key);
|
|
|
|
|
|
|
|
if (pk == null)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.warn("Could not convert DNSKEY record to a JCA public key: "
|
|
|
|
// + key);
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.UNCHECKED;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte[] data = SignUtils.generateSigData(rrset, sigrec);
|
|
|
|
|
|
|
|
Signature signer = getSignature(sigrec.getAlgorithm());
|
|
|
|
if (signer == null)
|
|
|
|
{
|
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
signer.initVerify(pk);
|
|
|
|
signer.update(data);
|
|
|
|
|
|
|
|
byte[] sig = sigrec.getSignature();
|
|
|
|
if (isDSA(sigrec.getAlgorithm()))
|
|
|
|
{
|
|
|
|
sig = SignUtils.convertDSASignature(sig);
|
|
|
|
}
|
|
|
|
if (!signer.verify(sig))
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("Signature failed to verify cryptographically");
|
|
|
|
// log.debug("Failed signature: " + sigrec);
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.trace("Signature verified: " + sigrec);
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.SECURE;
|
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.error("I/O error", e);
|
2009-04-19 17:56:34 +00:00
|
|
|
}
|
|
|
|
catch (GeneralSecurityException e)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.error("Security error", e);
|
2009-04-19 17:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Since I'm not sure what would cause an exception here (failure
|
|
|
|
// to have the required crypto?)
|
|
|
|
// We default to UNCHECKED instead of BOGUS. This could be wrong.
|
|
|
|
return SecurityStatus.UNCHECKED;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify an RRset against a particular signature.
|
|
|
|
*
|
|
|
|
* @return DNSSEC.Secure if the signature verfied, DNSSEC.Failed if it did
|
|
|
|
* not verify (for any reason), and DNSSEC.Insecure if verification
|
|
|
|
* could not be completed (usually because the public key was not
|
|
|
|
* available).
|
|
|
|
*/
|
|
|
|
public byte verifySignature(RRset rrset, RRSIGRecord sigrec, RRset key_rrset)
|
|
|
|
{
|
|
|
|
byte result = checkSignature(rrset, sigrec);
|
|
|
|
if (result != SecurityStatus.SECURE) return result;
|
|
|
|
|
2009-04-19 21:12:48 +00:00
|
|
|
List<DNSKEYRecord> keys = findKey(key_rrset, sigrec);
|
2009-04-19 17:56:34 +00:00
|
|
|
|
|
|
|
if (keys == null)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.trace("could not find appropriate key");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte status = SecurityStatus.UNCHECKED;
|
|
|
|
|
2009-04-19 21:12:48 +00:00
|
|
|
for (DNSKEYRecord key : keys) {
|
2009-04-19 17:56:34 +00:00
|
|
|
status = verifySignature(rrset, sigrec, key);
|
|
|
|
|
|
|
|
if (status == SecurityStatus.SECURE) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verifies an RRset. This routine does not modify the RRset. This RRset is
|
|
|
|
* presumed to be verifiable, and the correct DNSKEY rrset is presumed to
|
|
|
|
* have been found.
|
|
|
|
*
|
|
|
|
* @return SecurityStatus.SECURE if the rrest verified positively,
|
|
|
|
* SecurityStatus.BOGUS otherwise.
|
|
|
|
*/
|
2009-04-19 21:12:48 +00:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public byte verify(RRset rrset, RRset key_rrset)
|
2009-04-19 17:56:34 +00:00
|
|
|
{
|
|
|
|
Iterator i = rrset.sigs();
|
|
|
|
|
|
|
|
if (!i.hasNext())
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("RRset failed to verify due to lack of signatures");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i.hasNext())
|
|
|
|
{
|
|
|
|
RRSIGRecord sigrec = (RRSIGRecord) i.next();
|
|
|
|
|
|
|
|
byte res = verifySignature(rrset, sigrec, key_rrset);
|
|
|
|
|
|
|
|
if (res == SecurityStatus.SECURE) return res;
|
|
|
|
}
|
|
|
|
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("RRset failed to verify: all signatures were BOGUS");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify an RRset against a single DNSKEY. Use this when you must be
|
|
|
|
* certain that an RRset signed and verifies with a particular DNSKEY (as
|
|
|
|
* opposed to a particular DNSKEY rrset).
|
|
|
|
*
|
|
|
|
* @param rrset The rrset to verify.
|
|
|
|
* @param dnskey The DNSKEY to verify with.
|
|
|
|
* @return SecurityStatus.SECURE if the rrset verified, BOGUS otherwise.
|
|
|
|
*/
|
2009-04-19 21:12:48 +00:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public byte verify(RRset rrset, DNSKEYRecord dnskey)
|
2009-04-19 17:56:34 +00:00
|
|
|
{
|
|
|
|
// Iterate over RRSIGS
|
|
|
|
|
|
|
|
Iterator i = rrset.sigs();
|
|
|
|
if (!i.hasNext())
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("RRset failed to verify due to lack of signatures");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i.hasNext())
|
|
|
|
{
|
|
|
|
RRSIGRecord sigrec = (RRSIGRecord) i.next();
|
|
|
|
|
|
|
|
// Skip RRSIGs that do not match our given key's footprint.
|
|
|
|
if (sigrec.getFootprint() != dnskey.getFootprint()) continue;
|
|
|
|
|
|
|
|
byte res = verifySignature(rrset, sigrec, dnskey);
|
|
|
|
|
|
|
|
if (res == SecurityStatus.SECURE) return res;
|
|
|
|
}
|
|
|
|
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("RRset failed to verify: all signatures were BOGUS");
|
2009-04-19 17:56:34 +00:00
|
|
|
return SecurityStatus.BOGUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean supportsAlgorithm(int algorithm)
|
|
|
|
{
|
|
|
|
return mAlgorithmMap.containsKey(new Integer(algorithm));
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean supportsAlgorithm(Name private_id)
|
|
|
|
{
|
|
|
|
return mAlgorithmMap.containsKey(private_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int baseAlgorithm(int algorithm)
|
|
|
|
{
|
|
|
|
switch (algorithm)
|
|
|
|
{
|
|
|
|
case DNSSEC.RSAMD5:
|
|
|
|
case DNSSEC.RSASHA1:
|
|
|
|
return RSA;
|
|
|
|
case DNSSEC.DSA:
|
|
|
|
return DSA;
|
|
|
|
}
|
|
|
|
AlgEntry entry = (AlgEntry) mAlgorithmMap.get(new Integer(algorithm));
|
|
|
|
if (entry == null) return UNKNOWN;
|
|
|
|
if (entry.isDSA) return DSA;
|
|
|
|
return RSA;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return the appropriate Signature object for this keypair. */
|
|
|
|
private Signature getSignature(int algorithm)
|
|
|
|
{
|
|
|
|
Signature s = null;
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
AlgEntry entry = (AlgEntry) mAlgorithmMap.get(new Integer(algorithm));
|
|
|
|
if (entry == null)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.info("DNSSEC algorithm " + algorithm + " not recognized.");
|
2009-04-19 17:56:34 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// TODO: should we cache the instance?
|
|
|
|
s = Signature.getInstance(entry.jcaName);
|
|
|
|
}
|
|
|
|
catch (NoSuchAlgorithmException e)
|
|
|
|
{
|
2009-04-19 19:24:49 +00:00
|
|
|
// log.error("error getting Signature object", e);
|
2009-04-19 17:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: enable private algorithm support in dnsjava.
|
|
|
|
// Right now, this cannot be used because the DNSKEYRecord object doesn't
|
|
|
|
// give us
|
|
|
|
// the private key name.
|
|
|
|
// private Signature getSignature(Name private_alg)
|
|
|
|
// {
|
|
|
|
// Signature s = null;
|
|
|
|
//
|
|
|
|
// try
|
|
|
|
// {
|
|
|
|
// String alg_id = (String) mAlgorithmMap.get(private_alg);
|
|
|
|
// if (alg_id == null)
|
|
|
|
// {
|
|
|
|
// log.debug("DNSSEC private algorithm '" + private_alg
|
|
|
|
// + "' not recognized.");
|
|
|
|
// return null;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// s = Signature.getInstance(alg_id);
|
|
|
|
// }
|
|
|
|
// catch (NoSuchAlgorithmException e)
|
|
|
|
// {
|
|
|
|
// log.error("error getting Signature object", e);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return s;
|
|
|
|
// }
|
|
|
|
}
|