blob: eb12d9d14896540fca5f5290480712d51bd9f8a1 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package org.apache.ofbiz.base.util;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Enumeration;
import java.util.LinkedList;
import java.util.List;
import javax.net.ssl.X509TrustManager;
/**
* MultiTrustManager
*/
public class MultiTrustManager implements X509TrustManager {
private static final String MODULE = MultiTrustManager.class.getName();
private List<KeyStore> keystores;
public MultiTrustManager(KeyStore ks) {
this();
keystores.add(ks);
}
public MultiTrustManager() {
keystores = new LinkedList<>();
}
/**
* Add.
* @param ks the ks
*/
public void add(KeyStore ks) {
if (ks != null) {
keystores.add(ks);
}
}
/**
* Gets number of key stores.
* @return the number of key stores
*/
public int getNumberOfKeyStores() {
return keystores.size();
}
@Override
public void checkClientTrusted(X509Certificate[] certs, String alg) throws CertificateException {
if (isTrusted(certs)) {
return;
}
if (!"true".equals(UtilProperties.getPropertyValue("certificate", "client.all-trusted", "true"))) {
throw new CertificateException("No trusted certificate found");
}
}
@Override
public void checkServerTrusted(X509Certificate[] certs, String alg) throws CertificateException {
if (isTrusted(certs)) {
return;
}
if (!"true".equals(UtilProperties.getPropertyValue("certificate", "server.all-trusted", "true"))) {
throw new CertificateException("No trusted certificate found");
}
}
@Override
public X509Certificate[] getAcceptedIssuers() {
List<X509Certificate> issuers = new LinkedList<>();
for (KeyStore store: keystores) {
try {
Enumeration<String> e = store.aliases();
while (e.hasMoreElements()) {
String alias = e.nextElement();
Certificate[] chain = store.getCertificateChain(alias);
if (chain != null) {
for (Certificate cert: chain) {
if (cert instanceof X509Certificate) {
if (Debug.verboseOn()) {
Debug.logVerbose("Read certificate (chain) : " + ((X509Certificate) cert).getSubjectX500Principal().getName(),
MODULE);
}
issuers.add((X509Certificate) cert);
}
}
} else {
Certificate cert = store.getCertificate(alias);
if (cert != null && cert instanceof X509Certificate) {
if (Debug.verboseOn()) {
Debug.logVerbose("Read certificate : " + ((X509Certificate) cert).getSubjectX500Principal().getName(), MODULE);
}
issuers.add((X509Certificate) cert);
}
}
}
} catch (KeyStoreException e) {
Debug.logError(e, MODULE);
}
}
return issuers.toArray(new X509Certificate[issuers.size()]);
}
/**
* Is trusted boolean.
* @param cert the cert
* @return the boolean
*/
protected boolean isTrusted(X509Certificate[] cert) {
if (cert != null) {
X509Certificate[] issuers = this.getAcceptedIssuers();
for (X509Certificate issuer : issuers) {
for (X509Certificate c : cert) {
if (Debug.verboseOn()) {
Debug.logVerbose("--- Checking cert: " + issuer.getSubjectX500Principal() + " vs " + c.getSubjectX500Principal(), MODULE);
}
if (issuer.equals(c)) {
if (Debug.verboseOn()) {
Debug.logVerbose("--- Found trusted cert: " + issuer.getSerialNumber().toString(16) + " : "
+ issuer.getSubjectX500Principal(), MODULE);
}
return true;
}
}
}
}
return false;
}
}