|
|
|
@ -16,6 +16,7 @@
|
|
|
|
|
|
|
|
|
|
package org.springframework.boot.web.embedded.netty;
|
|
|
|
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
|
import java.net.URL;
|
|
|
|
|
import java.security.KeyStore;
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
@ -31,6 +32,7 @@ import reactor.netty.tcp.SslProvider;
|
|
|
|
|
import org.springframework.boot.web.server.Http2;
|
|
|
|
|
import org.springframework.boot.web.server.Ssl;
|
|
|
|
|
import org.springframework.boot.web.server.SslStoreProvider;
|
|
|
|
|
import org.springframework.boot.web.server.WebServerException;
|
|
|
|
|
import org.springframework.util.ResourceUtils;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -38,6 +40,7 @@ import org.springframework.util.ResourceUtils;
|
|
|
|
|
* instance.
|
|
|
|
|
*
|
|
|
|
|
* @author Brian Clozel
|
|
|
|
|
* @author Raheela Aslam
|
|
|
|
|
*/
|
|
|
|
|
public class SslServerCustomizer implements NettyServerCustomizer {
|
|
|
|
|
|
|
|
|
@ -135,21 +138,40 @@ public class SslServerCustomizer implements NettyServerCustomizer {
|
|
|
|
|
if (sslStoreProvider != null) {
|
|
|
|
|
return sslStoreProvider.getTrustStore();
|
|
|
|
|
}
|
|
|
|
|
return loadKeyStore(ssl.getTrustStoreType(), ssl.getTrustStoreProvider(),
|
|
|
|
|
return loadTrustStore(ssl.getTrustStoreType(), ssl.getTrustStoreProvider(),
|
|
|
|
|
ssl.getTrustStore(), ssl.getTrustStorePassword());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private KeyStore loadKeyStore(String type, String provider, String resource,
|
|
|
|
|
String password) throws Exception {
|
|
|
|
|
type = (type != null) ? type : "JKS";
|
|
|
|
|
|
|
|
|
|
return loadStore(type, provider, resource, password);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private KeyStore loadTrustStore(String type, String provider, String resource,
|
|
|
|
|
String password) throws Exception {
|
|
|
|
|
if (resource == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return loadStore(type, provider, resource, password);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private KeyStore loadStore(String type, String provider, String resource,
|
|
|
|
|
String password) throws Exception {
|
|
|
|
|
type = (type != null) ? type : "JKS";
|
|
|
|
|
KeyStore store = (provider != null) ? KeyStore.getInstance(type, provider)
|
|
|
|
|
: KeyStore.getInstance(type);
|
|
|
|
|
URL url = ResourceUtils.getURL(resource);
|
|
|
|
|
store.load(url.openStream(), (password != null) ? password.toCharArray() : null);
|
|
|
|
|
return store;
|
|
|
|
|
try {
|
|
|
|
|
URL url = ResourceUtils.getURL(resource);
|
|
|
|
|
store.load(url.openStream(),
|
|
|
|
|
(password != null) ? password.toCharArray() : null);
|
|
|
|
|
return store;
|
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException ex) {
|
|
|
|
|
throw new WebServerException("Could not load store: " + ex.getMessage(), ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|