forked from bcgit/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
257 additions
and
49 deletions.
There are no files selected for viewing
193 changes: 193 additions & 0 deletions
193
pkix/src/main/java/org/bouncycastle/pkix/jcajce/CrlCache.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
package org.bouncycastle.pkix.jcajce; | ||
|
||
import java.io.ByteArrayInputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.lang.ref.WeakReference; | ||
import java.net.HttpURLConnection; | ||
import java.net.URI; | ||
import java.security.cert.CRL; | ||
import java.security.cert.CRLException; | ||
import java.security.cert.CertificateFactory; | ||
import java.security.cert.X509CRL; | ||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
import java.util.Date; | ||
import java.util.Hashtable; | ||
import java.util.Iterator; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.WeakHashMap; | ||
|
||
import javax.naming.Context; | ||
import javax.naming.NamingException; | ||
import javax.naming.directory.Attribute; | ||
import javax.naming.directory.Attributes; | ||
import javax.naming.directory.DirContext; | ||
import javax.naming.directory.InitialDirContext; | ||
|
||
import org.bouncycastle.jcajce.PKIXCRLStore; | ||
import org.bouncycastle.util.CollectionStore; | ||
import org.bouncycastle.util.Iterable; | ||
import org.bouncycastle.util.Selector; | ||
import org.bouncycastle.util.Store; | ||
|
||
class CrlCache | ||
{ | ||
private static final int DEFAULT_TIMEOUT = 15000; | ||
|
||
private static Map<URI, WeakReference<PKIXCRLStore>> cache = | ||
Collections.synchronizedMap(new WeakHashMap<URI, WeakReference<PKIXCRLStore>>()); | ||
|
||
static synchronized PKIXCRLStore getCrl(CertificateFactory certFact, Date validDate, URI distributionPoint) | ||
throws IOException, CRLException | ||
{ | ||
PKIXCRLStore crlStore = null; | ||
|
||
WeakReference<PKIXCRLStore> markerRef = (WeakReference)cache.get(distributionPoint); | ||
if (markerRef != null) | ||
{ | ||
crlStore = (PKIXCRLStore)markerRef.get(); | ||
} | ||
|
||
if (crlStore != null) | ||
{ | ||
boolean isExpired = false; | ||
for (Iterator it = crlStore.getMatches(null).iterator(); it.hasNext();) | ||
{ | ||
X509CRL crl = (X509CRL)it.next(); | ||
|
||
Date nextUpdate = crl.getNextUpdate(); | ||
if (nextUpdate != null && nextUpdate.before(validDate)) | ||
{ | ||
isExpired = true; | ||
break; | ||
} | ||
} | ||
|
||
if (!isExpired) | ||
{ | ||
return crlStore; | ||
} | ||
} | ||
|
||
Collection crls; | ||
|
||
if (distributionPoint.getScheme().equals("ldap")) | ||
{ | ||
crls = getCrlsFromLDAP(certFact, distributionPoint); | ||
} | ||
else | ||
{ | ||
// http, https, ftp | ||
crls = getCrls(certFact, distributionPoint); | ||
} | ||
|
||
LocalCRLStore localCRLStore = new LocalCRLStore(new CollectionStore<CRL>(crls)); | ||
|
||
cache.put(distributionPoint, new WeakReference<PKIXCRLStore>(localCRLStore)); | ||
|
||
return localCRLStore; | ||
} | ||
|
||
private static Collection getCrlsFromLDAP(CertificateFactory certFact, URI distributionPoint) | ||
throws IOException, CRLException | ||
{ | ||
Map<String, String> env = new Hashtable<String, String>(); | ||
|
||
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); | ||
env.put(Context.PROVIDER_URL, distributionPoint.toString()); | ||
|
||
byte[] val = null; | ||
try | ||
{ | ||
DirContext ctx = new InitialDirContext((Hashtable)env); | ||
Attributes avals = ctx.getAttributes(""); | ||
Attribute aval = avals.get("certificateRevocationList;binary"); | ||
val = (byte[])aval.get(); | ||
} | ||
catch (NamingException e) | ||
{ | ||
throw new CRLException("issue connecting to: " + distributionPoint.toString(), e); | ||
} | ||
|
||
if ((val == null) || (val.length == 0)) | ||
{ | ||
throw new CRLException("no CRL returned from: " + distributionPoint); | ||
} | ||
else | ||
{ | ||
return certFact.generateCRLs(new ByteArrayInputStream(val)); | ||
} | ||
} | ||
|
||
private static Collection getCrls(CertificateFactory certFact, URI distributionPoint) | ||
throws IOException, CRLException | ||
{ | ||
HttpURLConnection crlCon = (HttpURLConnection)distributionPoint.toURL().openConnection(); | ||
crlCon.setConnectTimeout(DEFAULT_TIMEOUT); | ||
crlCon.setReadTimeout(DEFAULT_TIMEOUT); | ||
|
||
InputStream crlIn = crlCon.getInputStream(); | ||
|
||
Collection crls = certFact.generateCRLs(crlIn); | ||
|
||
crlIn.close(); | ||
|
||
return crls; | ||
} | ||
|
||
private static class LocalCRLStore<T extends CRL> | ||
implements PKIXCRLStore, Iterable<CRL> | ||
{ | ||
private Collection<CRL> _local; | ||
|
||
/** | ||
* Basic constructor. | ||
* | ||
* @param collection - initial contents for the store, this is copied. | ||
*/ | ||
public LocalCRLStore( | ||
Store<CRL> collection) | ||
{ | ||
_local = new ArrayList<CRL>(collection.getMatches(null)); | ||
} | ||
|
||
/** | ||
* Return the matches in the collection for the passed in selector. | ||
* | ||
* @param selector the selector to match against. | ||
* @return a possibly empty collection of matching objects. | ||
*/ | ||
public Collection getMatches(Selector selector) | ||
{ | ||
if (selector == null) | ||
{ | ||
return new ArrayList<CRL>(_local); | ||
} | ||
else | ||
{ | ||
List<CRL> col = new ArrayList<CRL>(); | ||
Iterator<CRL> iter = _local.iterator(); | ||
|
||
while (iter.hasNext()) | ||
{ | ||
CRL obj = iter.next(); | ||
|
||
if (selector.match(obj)) | ||
{ | ||
col.add(obj); | ||
} | ||
} | ||
|
||
return col; | ||
} | ||
} | ||
|
||
public Iterator<CRL> iterator() | ||
{ | ||
return getMatches(null).iterator(); | ||
} | ||
} | ||
} |
Oops, something went wrong.