org.appenders.log4j2.elasticsearch.jest.PEMCertInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of log4j2-elasticsearch-jest Show documentation
Show all versions of log4j2-elasticsearch-jest Show documentation
Log4j2 Appender plugin pushing logs in batches to Elasticsearch (2.x/5.x/6.x) clusters
package org.appenders.log4j2.elasticsearch.jest;
/*-
* #%L
* log4j-elasticsearch
* %%
* Copyright (C) 2018 Rafal Foltynski
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
import io.searchbox.client.config.HttpClientConfig;
import org.apache.http.conn.ssl.NoopHostnameVerifier;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.nio.conn.ssl.SSLIOSessionStrategy;
import org.apache.logging.log4j.core.config.ConfigurationException;
import org.apache.logging.log4j.core.config.Node;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.config.plugins.PluginAliases;
import org.apache.logging.log4j.core.config.plugins.PluginBuilderAttribute;
import org.apache.logging.log4j.core.config.plugins.PluginBuilderFactory;
import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required;
import org.appenders.log4j2.elasticsearch.CertInfo;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.appenders.log4j2.elasticsearch.thirdparty.PemReader;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManagerFactory;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.KeyStore;
import java.util.Optional;
@Plugin(name = PEMCertInfo.PLUGIN_NAME, category = Node.CATEGORY, elementType = CertInfo.ELEMENT_TYPE)
public class PEMCertInfo implements CertInfo {
static final String PLUGIN_NAME = "PEM";
private final String keyPath;
private final String keyPassphrase;
private final String clientCertPath;
private final String caPath;
static final String configExceptionMessage = "Failed to apply SSL/TLS settings";
protected PEMCertInfo(String keyPath, String keyPassphrase, String clientCertPath, String caPath) {
this.keyPath = keyPath;
this.keyPassphrase = keyPassphrase;
this.clientCertPath = clientCertPath;
this.caPath = caPath;
}
@Override
public void applyTo(HttpClientConfig.Builder builder) {
if (java.security.Security.getProvider(BouncyCastleProvider.PROVIDER_NAME) == null) {
java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
}
try (
FileInputStream clientCert = new FileInputStream(new File(clientCertPath));
FileInputStream key = new FileInputStream(new File(keyPath));
FileInputStream certificateAuthoritiies = new FileInputStream(new File(caPath))
) {
KeyStore keyStore = PemReader.loadKeyStore(clientCert, key, Optional.ofNullable(keyPassphrase));
KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
keyManagerFactory.init(keyStore, keyPassphrase.toCharArray());
KeyStore trustStore = PemReader.loadTrustStore(certificateAuthoritiies);
TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
trustManagerFactory.init(trustStore);
SSLContext sslContext = SSLContext.getInstance("TLS");
sslContext.init(keyManagerFactory.getKeyManagers(), trustManagerFactory.getTrustManagers(), null);
// TODO: add support for hostname verification modes
builder.sslSocketFactory(new SSLConnectionSocketFactory(sslContext));
builder.httpsIOSessionStrategy(new SSLIOSessionStrategy(sslContext, new NoopHostnameVerifier()));
} catch (IOException | GeneralSecurityException e) {
throw new ConfigurationException(configExceptionMessage, e);
}
}
@PluginBuilderFactory
public static PEMCertInfo.Builder newBuilder() {
return new PEMCertInfo.Builder();
}
public static class Builder implements org.apache.logging.log4j.core.util.Builder {
@PluginBuilderAttribute
@Required(message = "No keyPath provided for " + PLUGIN_NAME)
private String keyPath;
@PluginBuilderAttribute
@Required(message = "No clientCertPath provided for " + PLUGIN_NAME)
private String clientCertPath;
@PluginBuilderAttribute
@Required(message = "No caPath provided for " + PLUGIN_NAME)
private String caPath;
@PluginBuilderAttribute
@PluginAliases({"keyPassword"})
private String keyPassphrase;
@Override
public PEMCertInfo build() {
if (keyPath == null) {
throw new ConfigurationException("No keyPath provided for " + PLUGIN_NAME);
}
if (clientCertPath == null) {
throw new ConfigurationException("No clientCertPath provided for " + PLUGIN_NAME);
}
if (caPath == null) {
throw new ConfigurationException("No caPath provided for " + PLUGIN_NAME);
}
return new PEMCertInfo(keyPath, keyPassphrase, clientCertPath, caPath);
}
public Builder withKeyPath(String keyPath) {
this.keyPath = keyPath;
return this;
}
public Builder withClientCertPath(String clientCertPath) {
this.clientCertPath = clientCertPath;
return this;
}
public Builder withCaPath(String caPath) {
this.caPath = caPath;
return this;
}
public Builder withKeyPassphrase(String keyPassphrase) {
this.keyPassphrase = keyPassphrase;
return this;
}
}
}