/driver-core/src/main/com/mongodb/internal/connection/Java8SniSslHelper.java

https://github.com/mongodb/mongo-java-driver · Java · 49 lines · 24 code · 7 blank · 18 comment · 0 complexity · 8633a855f1c0ddd594a1d12138e9b351 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.internal.connection;
  17. import javax.net.ssl.SNIHostName;
  18. import javax.net.ssl.SNIServerName;
  19. import javax.net.ssl.SSLParameters;
  20. import static java.util.Collections.singletonList;
  21. // This class is loaded via Class.forName from SslHelper.
  22. final class Java8SniSslHelper implements SniSslHelper {
  23. // if running on Java 8 or above then SNIHostName will be available and initialization will succeed. Otherwise it will fail.
  24. static {
  25. try {
  26. Class.forName("javax.net.ssl.SNIHostName");
  27. } catch (ClassNotFoundException e) {
  28. throw new ExceptionInInitializerError(e);
  29. }
  30. }
  31. @Override
  32. public void enableSni(final String host, final SSLParameters sslParameters) {
  33. try {
  34. SNIServerName sniHostName = new SNIHostName(host);
  35. sslParameters.setServerNames(singletonList(sniHostName));
  36. } catch (IllegalArgumentException e) {
  37. // ignore because SNIHostName will throw this for some legit host names for connecting to MongoDB, e.g an IPV6 literal
  38. }
  39. }
  40. Java8SniSslHelper() {
  41. }
  42. }