org.appenders.log4j2.elasticsearch.ahc.JKSCertInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of log4j2-elasticsearch-ahc Show documentation
Show all versions of log4j2-elasticsearch-ahc Show documentation
Log4j2 Appender plugin pushing logs in batches to Elasticsearch (2.x/5.x/6.x/7.x/8.x) clusters
The newest version!
package org.appenders.log4j2.elasticsearch.ahc;
/*-
* #%L
* log4j2-elasticsearch
* %%
* Copyright (C) 2022 Rafal Foltynski
* %%
* Licensed 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.
* #L%
*/
import org.appenders.log4j2.elasticsearch.CertInfo;
import org.asynchttpclient.netty.ssl.JsseSslEngineFactory;
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;
public class JKSCertInfo implements CertInfo {
static final String configExceptionMessage = "Failed to apply SSL/TLS settings";
private final String keystorePath;
private final String truststorePath;
private final String keystorePassword;
private final String truststorePassword;
public JKSCertInfo(final String keystorePath, final String keystorePassword, final String truststorePath, final String truststorePassword) {
this.keystorePath = keystorePath;
this.keystorePassword = keystorePassword;
this.truststorePath = truststorePath;
this.truststorePassword = truststorePassword;
}
@Override
public void applyTo(final HttpClientFactory.Builder httpClientFactoryBuilder) {
try (
FileInputStream keystoreFile = new FileInputStream(new File(keystorePath));
FileInputStream truststoreFile = new FileInputStream(new File(truststorePath))
) {
final KeyStore keyStore = KeyStore.getInstance("jks");
keyStore.load(keystoreFile, keystorePassword.toCharArray());
final KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
keyManagerFactory.init(keyStore, keystorePassword.toCharArray());
final KeyStore trustStore = KeyStore.getInstance("jks");
trustStore.load(truststoreFile, truststorePassword.toCharArray());
final TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
trustManagerFactory.init(trustStore);
final SSLContext sslContext = SSLContext.getInstance("TLS");
sslContext.init(keyManagerFactory.getKeyManagers(), trustManagerFactory.getTrustManagers(), null);
// TODO: add support for hostname verification modes
final JsseSslEngineFactory jsseSslEngineFactory = new JsseSslEngineFactory(sslContext);
httpClientFactoryBuilder.withSslEngineFactory(jsseSslEngineFactory);
} catch (IOException | GeneralSecurityException e) {
throw new IllegalArgumentException(configExceptionMessage, e);
}
}
public static Builder newBuilder() {
return new Builder();
}
public static class Builder {
public static final String EMPTY_PASSWORD = "";
private String keystorePath;
private String keystorePassword = EMPTY_PASSWORD;
private String truststorePath;
private String truststorePassword = EMPTY_PASSWORD;
public JKSCertInfo build() {
if (keystorePath == null) {
throw new IllegalArgumentException("No keystorePath provided for " + getClass().getSimpleName());
}
if (keystorePassword == null) {
throw new IllegalArgumentException("No keystorePassword provided for " + getClass().getSimpleName());
}
if (truststorePath == null) {
throw new IllegalArgumentException("No truststorePath provided for " + getClass().getSimpleName());
}
if (truststorePassword == null) {
throw new IllegalArgumentException("No truststorePassword provided for " + getClass().getSimpleName());
}
return new JKSCertInfo(keystorePath, keystorePassword, truststorePath, truststorePassword);
}
public Builder withKeystorePath(final String keystorePath) {
this.keystorePath = keystorePath;
return this;
}
public Builder withKeystorePassword(final String keystorePassword) {
this.keystorePassword = keystorePassword;
return this;
}
public Builder withTruststorePath(final String truststorePath) {
this.truststorePath = truststorePath;
return this;
}
public Builder withTruststorePassword(final String truststorePassword) {
this.truststorePassword = truststorePassword;
return this;
}
}
}