All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
psiprobe.controllers.certificates.ListCertificatesController Maven / Gradle / Ivy
/**
* Licensed under the GPL License. You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
* PURPOSE.
*/
package psiprobe.controllers.certificates;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.net.URI;
import java.net.URL;
import java.nio.file.Files;
import java.security.KeyStore;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.management.ObjectName;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.catalina.connector.Connector;
import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.lang3.reflect.MethodUtils;
import org.apache.coyote.ProtocolHandler;
import org.apache.coyote.http11.AbstractHttp11JsseProtocol;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import psiprobe.controllers.AbstractTomcatContainerController;
import psiprobe.model.certificates.Cert;
import psiprobe.model.certificates.CertificateInfo;
import psiprobe.model.certificates.ConnectorInfo;
import psiprobe.model.certificates.OldConnectorInfo;
import psiprobe.model.certificates.SslHostConfigInfo;
/**
* The Class ListCertificatesController.
*/
@Controller
public class ListCertificatesController extends AbstractTomcatContainerController {
/** The Constant logger. */
private static final Logger logger = LoggerFactory.getLogger(ListCertificatesController.class);
@RequestMapping(path = "/certificates.htm")
@Override
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
throws Exception {
return super.handleRequest(request, response);
}
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView modelAndView = new ModelAndView(getViewName());
try {
List connectors = getContainerWrapper().getTomcatContainer().findConnectors();
List infos = getConnectorInfos(connectors);
for (ConnectorInfo info : infos) {
List certs;
List sslHostConfigInfos = info.getSslHostConfigInfos();
for (SslHostConfigInfo sslHostConfigInfo : sslHostConfigInfos) {
if (sslHostConfigInfo.getTruststoreFile() != null) {
certs = getCertificates(sslHostConfigInfo.getTruststoreType(),
sslHostConfigInfo.getTruststoreFile(), sslHostConfigInfo.getTruststorePassword());
sslHostConfigInfo.setTrustStoreCerts(certs);
}
List certificateInfos = sslHostConfigInfo.getCertificateInfos();
for (CertificateInfo certificateInfo : certificateInfos) {
if (certificateInfo.getCertificateKeystoreFile() != null) {
certs = getCertificates(certificateInfo.getCertificateKeystoreType(),
certificateInfo.getCertificateKeystoreFile(),
certificateInfo.getCertificateKeystorePassword());
certificateInfo.setKeyStoreCerts(certs);
}
}
}
}
modelAndView.addObject("connectors", infos);
} catch (Exception e) {
logger.error("There was an exception listing certificates", e);
}
return modelAndView;
}
/**
* Gets the certificates.
*
* @param storeType the store type
* @param storeFile the store file
* @param storePassword the store password
* @return the certificates
* @throws Exception the exception
*/
public List getCertificates(String storeType, String storeFile, String storePassword)
throws Exception {
KeyStore keyStore;
// Get key store
if (storeType != null) {
keyStore = KeyStore.getInstance(storeType);
} else {
keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
}
// Get password
char[] password = null;
if (storePassword != null) {
password = storePassword.toCharArray();
}
// Load key store from file
try (InputStream storeInput = getStoreInputStream(storeFile)) {
keyStore.load(storeInput, password);
} catch (IOException e) {
logger.error("Error loading store file {}", storeFile, e);
return null;
}
List certs = new ArrayList<>();
for (String alias : Collections.list(keyStore.aliases())) {
Certificate[] certificateChains = keyStore.getCertificateChain(alias);
if (certificateChains != null) {
for (Certificate certificateChain : certificateChains) {
X509Certificate x509Cert = (X509Certificate) certificateChain;
addToStore(certs, alias, x509Cert);
}
} else {
X509Certificate x509Cert = (X509Certificate) keyStore.getCertificate(alias);
addToStore(certs, alias, x509Cert);
}
}
return certs;
}
/**
* Gets the connector infos.
*
* @param connectors the connectors
* @return the connector infos
* @throws IllegalAccessException the illegal access exception
* @throws InvocationTargetException the invocation target exception
*/
private List getConnectorInfos(List connectors)
throws IllegalAccessException, InvocationTargetException {
List infos = new ArrayList<>();
for (Connector connector : connectors) {
if (!connector.getSecure()) {
continue;
}
ProtocolHandler protocolHandler = connector.getProtocolHandler();
if (protocolHandler instanceof AbstractHttp11JsseProtocol) {
AbstractHttp11JsseProtocol> protocol = (AbstractHttp11JsseProtocol>) protocolHandler;
if (!protocol.getSecure()) {
continue;
}
infos.add(toConnectorInfo(protocol));
}
}
return infos;
}
/**
* Tries to open a InputStream the same way as Tomcat ConfigFileLoader
* {@link org.apache.tomcat.util.file.ConfigFileLoader#getInputStream(String) getInputStream}.
*
* @param path the path of a store file (absolute or relative to CATALINA.BASE), or URI to store
* file (absolute or relative to CATALINA.BASE).
* @return the input stream of the path file
* @throws IOException if path can not be resolved
*/
private InputStream getStoreInputStream(String path) throws IOException {
File file = new File(path);
if (file.exists()) {
return Files.newInputStream(file.toPath());
}
File catalinaBaseFolder = new File(System.getProperty("catalina.base"));
file = new File(catalinaBaseFolder, path);
if (file.exists()) {
return Files.newInputStream(file.toPath());
}
URI uri = catalinaBaseFolder.toURI().resolve(path);
URL url = uri.toURL();
return url.openConnection().getInputStream();
}
/**
* To connector info.
*
* @param protocol the protocol
* @return the connector info
* @throws IllegalAccessException the illegal access exception
* @throws InvocationTargetException the invocation target exception
*/
private ConnectorInfo toConnectorInfo(AbstractHttp11JsseProtocol> protocol)
throws IllegalAccessException, InvocationTargetException {
ConnectorInfo info = new ConnectorInfo();
info.setName(ObjectName.unquote(protocol.getName()));
try {
// Introduced in Tomcat 8.5.x+
Object defaultSslHostConfigName =
MethodUtils.invokeMethod(protocol, "getDefaultSSLHostConfigName");
if (defaultSslHostConfigName == null) {
logger.error("Cannot determine defaultSslHostConfigName");
return info;
}
info.setDefaultSslHostConfigName(String.valueOf(defaultSslHostConfigName));
new SslHostConfigHelper(protocol, info);
} catch (NoSuchMethodException e) {
logger.trace("", e);
// We are using Tomcat 7 or 8, fill in the old way
OldConnectorInfo oldConnectorInfo = new OldConnectorInfo();
BeanUtils.copyProperties(oldConnectorInfo, protocol);
info.setDefaultSslHostConfigName("_default_");
info.setSslHostConfigInfos(oldConnectorInfo.getSslHostConfigInfos());
}
return info;
}
/**
* Adds the to store.
*
* @param certs the certs
* @param alias the alias
* @param x509Cert the x509 cert
*/
private void addToStore(List certs, String alias, X509Certificate x509Cert) {
Cert cert = new Cert();
cert.setAlias(alias);
cert.setSubjectDistinguishedName(x509Cert.getSubjectDN().toString());
cert.setNotBefore(x509Cert.getNotBefore());
cert.setNotAfter(x509Cert.getNotAfter());
cert.setIssuerDistinguishedName(x509Cert.getIssuerDN().toString());
certs.add(cert);
}
@Value("certificates")
@Override
public void setViewName(String viewName) {
super.setViewName(viewName);
}
}