View Javadoc
1   /*
2    * Copyright 2014 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://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, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  
17  package io.netty.handler.ssl.util;
18  
19  import io.netty.util.internal.EmptyArrays;
20  import io.netty.util.internal.logging.InternalLogger;
21  import io.netty.util.internal.logging.InternalLoggerFactory;
22  
23  import javax.net.ssl.ManagerFactoryParameters;
24  import javax.net.ssl.SSLEngine;
25  import javax.net.ssl.TrustManager;
26  import javax.net.ssl.TrustManagerFactory;
27  import javax.net.ssl.X509ExtendedTrustManager;
28  import javax.net.ssl.X509TrustManager;
29  import java.net.Socket;
30  import java.security.KeyStore;
31  import java.security.cert.CertificateException;
32  import java.security.cert.X509Certificate;
33  
34  /**
35   * An insecure {@link TrustManagerFactory} that trusts all X.509 certificates without any verification.
36   * <p>
37   * <strong>NOTE:</strong>
38   * Never use this {@link TrustManagerFactory} in production.
39   * It is purely for testing purposes, and thus it is very insecure.
40   * </p>
41   */
42  public final class InsecureTrustManagerFactory extends SimpleTrustManagerFactory {
43  
44      private static final InternalLogger logger = InternalLoggerFactory.getInstance(InsecureTrustManagerFactory.class);
45  
46      public static final TrustManagerFactory INSTANCE = new InsecureTrustManagerFactory();
47  
48      // This needs to be X509ExtendedTrustManager so hostname verification is skipped as well.
49      // Otherwise the JDK will internally wrap it with AbstractTrustManagerWrapper and add hostname verification
50      // by itself.
51      private static final TrustManager tm = new X509ExtendedTrustManager() {
52          @Override
53          public void checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) {
54              checkClientTrusted(chain, authType);
55          }
56  
57          @Override
58          public void checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) {
59              checkServerTrusted(chain, authType);
60          }
61  
62          @Override
63          public void checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) {
64              checkClientTrusted(chain, authType);
65          }
66  
67          @Override
68          public void checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) {
69              checkServerTrusted(chain, authType);
70          }
71  
72          @Override
73          public void checkClientTrusted(X509Certificate[] chain, String s) {
74              if (logger.isDebugEnabled()) {
75                  logger.debug("Accepting a client certificate: " + chain[0].getSubjectDN());
76              }
77          }
78  
79          @Override
80          public void checkServerTrusted(X509Certificate[] chain, String s) {
81              if (logger.isDebugEnabled()) {
82                  logger.debug("Accepting a server certificate: " + chain[0].getSubjectDN());
83              }
84          }
85  
86          @Override
87          public X509Certificate[] getAcceptedIssuers() {
88              return EmptyArrays.EMPTY_X509_CERTIFICATES;
89          }
90      };
91  
92      private InsecureTrustManagerFactory() { }
93  
94      @Override
95      protected void engineInit(KeyStore keyStore) throws Exception { }
96  
97      @Override
98      protected void engineInit(ManagerFactoryParameters managerFactoryParameters) throws Exception { }
99  
100     @Override
101     protected TrustManager[] engineGetTrustManagers() {
102         return new TrustManager[] { tm };
103     }
104 }