View Javadoc
1   /*
2    * Copyright 2022 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  package io.netty.handler.ssl.ocsp;
17  
18  import io.netty.buffer.ByteBuf;
19  import io.netty.channel.ChannelHandlerContext;
20  import io.netty.channel.ChannelOutboundHandler;
21  import io.netty.channel.ChannelPromise;
22  import io.netty.handler.codec.ByteToMessageDecoder;
23  import io.netty.handler.ssl.SslHandler;
24  import io.netty.handler.ssl.SslHandshakeCompletionEvent;
25  import io.netty.resolver.dns.DnsNameResolver;
26  import io.netty.resolver.dns.DnsNameResolverBuilder;
27  import io.netty.util.AttributeKey;
28  import io.netty.util.concurrent.Future;
29  import io.netty.util.concurrent.GenericFutureListener;
30  import io.netty.util.concurrent.Promise;
31  import org.bouncycastle.cert.ocsp.BasicOCSPResp;
32  import org.bouncycastle.cert.ocsp.OCSPException;
33  import org.bouncycastle.cert.ocsp.RevokedStatus;
34  import org.bouncycastle.cert.ocsp.SingleResp;
35  
36  import java.net.SocketAddress;
37  import java.security.cert.Certificate;
38  import java.security.cert.X509Certificate;
39  import java.util.Date;
40  import java.util.List;
41  
42  import static io.netty.util.internal.ObjectUtil.checkNotNull;
43  
44  /**
45   * {@link OcspServerCertificateValidator} validates incoming server's certificate
46   * using OCSP. Once TLS handshake is completed, {@link SslHandshakeCompletionEvent#SUCCESS} is fired, validator
47   * will perform certificate validation using OCSP over HTTP/1.1 with the server's certificate issuer OCSP responder.
48   */
49  public class OcspServerCertificateValidator extends ByteToMessageDecoder implements ChannelOutboundHandler {
50      /**
51       * An attribute used to mark all channels created by the {@link OcspServerCertificateValidator}.
52       */
53      public static final AttributeKey<Boolean> OCSP_PIPELINE_ATTRIBUTE =
54              AttributeKey.newInstance("io.netty.handler.ssl.ocsp.pipeline");
55  
56      private final boolean closeAndThrowIfNotValid;
57      private final boolean validateNonce;
58      private final IoTransport ioTransport;
59      private final DnsNameResolver dnsNameResolver;
60      private boolean ocspQueryInProgress;
61      private boolean readPending;
62  
63      /**
64       * Create a new {@link OcspServerCertificateValidator} instance without nonce validation
65       * on OCSP response, using default {@link IoTransport#DEFAULT} instance,
66       * default {@link DnsNameResolver} implementation and with {@link #closeAndThrowIfNotValid}
67       * set to {@code true}
68       */
69      public OcspServerCertificateValidator() {
70          this(false);
71      }
72  
73      /**
74       * Create a new {@link OcspServerCertificateValidator} instance with
75       * default {@link IoTransport#DEFAULT} instance and default {@link DnsNameResolver} implementation
76       * and {@link #closeAndThrowIfNotValid} set to {@code true}.
77       *
78       * @param validateNonce Set to {@code true} if we should force nonce validation on
79       *                      OCSP response else set to {@code false}
80       */
81      public OcspServerCertificateValidator(boolean validateNonce) {
82          this(validateNonce, IoTransport.DEFAULT);
83      }
84  
85      /**
86       * Create a new {@link OcspServerCertificateValidator} instance
87       *
88       * @param validateNonce Set to {@code true} if we should force nonce validation on
89       *                      OCSP response else set to {@code false}
90       * @param ioTransport   {@link IoTransport} to use
91       */
92      public OcspServerCertificateValidator(boolean validateNonce, IoTransport ioTransport) {
93          this(validateNonce, ioTransport, createDefaultResolver(ioTransport));
94      }
95  
96      /**
97       * Create a new {@link IoTransport} instance with {@link #closeAndThrowIfNotValid} set to {@code true}
98       *
99       * @param validateNonce   Set to {@code true} if we should force nonce validation on
100      *                        OCSP response else set to {@code false}
101      * @param ioTransport     {@link IoTransport} to use
102      * @param dnsNameResolver {@link DnsNameResolver} implementation to use
103      */
104     public OcspServerCertificateValidator(boolean validateNonce, IoTransport ioTransport,
105                                           DnsNameResolver dnsNameResolver) {
106         this(true, validateNonce, ioTransport, dnsNameResolver);
107     }
108 
109     /**
110      * Create a new {@link IoTransport} instance
111      *
112      * @param closeAndThrowIfNotValid If set to {@code true} then we will close the channel and throw an exception
113      *                                when certificate is not {@link OcspResponse.Status#VALID}.
114      *                                If set to {@code false} then we will simply pass the {@link OcspValidationEvent}
115      *                                to the next handler in pipeline and let it decide what to do.
116      * @param validateNonce           Set to {@code true} if we should force nonce validation on
117      *                                OCSP response else set to {@code false}
118      * @param ioTransport             {@link IoTransport} to use
119      * @param dnsNameResolver         {@link DnsNameResolver} implementation to use
120      */
121     public OcspServerCertificateValidator(boolean closeAndThrowIfNotValid, boolean validateNonce,
122                                           IoTransport ioTransport, DnsNameResolver dnsNameResolver) {
123         this.closeAndThrowIfNotValid = closeAndThrowIfNotValid;
124         this.validateNonce = validateNonce;
125         this.ioTransport = checkNotNull(ioTransport, "IoTransport");
126         this.dnsNameResolver = checkNotNull(dnsNameResolver, "DnsNameResolver");
127     }
128 
129     protected static DnsNameResolver createDefaultResolver(final IoTransport ioTransport) {
130         return new DnsNameResolverBuilder()
131                 .eventLoop(ioTransport.eventLoop())
132                 .datagramChannelFactory(ioTransport.datagramChannel())
133                 .socketChannelFactory(ioTransport.socketChannel())
134                 .build();
135     }
136 
137     @Override
138     protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
139         // Just buffer until the handler is removed which will happen once we did finish the OCSP processing.
140     }
141 
142     @Override
143     public void userEventTriggered(final ChannelHandlerContext ctx, final Object evt) throws Exception {
144         if (evt instanceof SslHandshakeCompletionEvent) {
145             SslHandshakeCompletionEvent sslHandshakeCompletionEvent = (SslHandshakeCompletionEvent) evt;
146 
147             // If TLS handshake was successful then only we will perform OCSP certificate validation.
148             // If not, then just forward the event to next handler in pipeline and remove ourselves from pipeline.
149             if (sslHandshakeCompletionEvent.isSuccess()) {
150                 Certificate[] certificates = ctx.pipeline().get(SslHandler.class)
151                         .engine()
152                         .getSession()
153                         .getPeerCertificates();
154 
155                 assert certificates.length >= 2 : "There must an end-entity certificate and issuer certificate";
156 
157                 Promise<BasicOCSPResp> ocspRespPromise = ctx.executor().newPromise();
158                 OcspClient.query((X509Certificate) certificates[0], (X509Certificate) certificates[1],
159                         validateNonce, ioTransport, dnsNameResolver, ocspRespPromise);
160                 ocspQueryInProgress = true;
161                 ocspRespPromise.addListener((GenericFutureListener<Future<BasicOCSPResp>>) future -> {
162                     ocspQueryInProgress = false;
163                     try {
164                         // If Future is success then we have successfully received OCSP response
165                         // from OCSP responder. We will validate it now and process.
166                         if (future.isSuccess()) {
167                             SingleResp response = future.getNow().getResponses()[0];
168 
169                             Date current = new Date();
170                             Date thisUpdate = response.getThisUpdate();
171                         Date nextUpdate = response.getNextUpdate();
172                         if (thisUpdate == null || !current.after(thisUpdate) ||
173                                     (nextUpdate != null && !current.before(nextUpdate))) {
174                                 ctx.fireExceptionCaught(new IllegalStateException("OCSP Response is out-of-date"));
175                                 return;
176                             }
177 
178                             OcspResponse.Status status;
179                             if (response.getCertStatus() == null) {
180                                 // 'null' means certificate is valid
181                                 status = OcspResponse.Status.VALID;
182                             } else if (response.getCertStatus() instanceof RevokedStatus) {
183                                 status = OcspResponse.Status.REVOKED;
184                             } else {
185                                 status = OcspResponse.Status.UNKNOWN;
186                             }
187 
188                             ctx.fireUserEventTriggered(new OcspValidationEvent(
189                                     new OcspResponse(status, response.getThisUpdate(), response.getNextUpdate())));
190 
191                             // If Certificate is not VALID and 'closeAndThrowIfNotValid' is set
192                             // to 'true' then close the channel and throw an exception.
193                             if (status != OcspResponse.Status.VALID && closeAndThrowIfNotValid) {
194                                 // Certificate is not valid. Throw
195                                 ctx.fireExceptionCaught(new OCSPException(
196                                         "Certificate not valid. Status: " + status));
197                                 ctx.close();
198                             }
199                         } else {
200                             ctx.fireExceptionCaught(future.cause());
201                             if (closeAndThrowIfNotValid) {
202                                 ctx.close();
203                             }
204                         }
205                     } finally {
206                         ctx.fireUserEventTriggered(evt);
207                         // Lets remove ourselves from the pipeline because we are done processing validation.
208                         ctx.pipeline().remove(this);
209                         if (readPending) {
210                             readPending = false;
211                             ctx.read();
212                         }
213                     }
214                 });
215             } else {
216                 ctx.fireUserEventTriggered(evt);
217             }
218         } else {
219             ctx.fireUserEventTriggered(evt);
220         }
221     }
222 
223     @Override
224     public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
225         ctx.close();
226     }
227 
228     @Override
229     public void bind(ChannelHandlerContext ctx, SocketAddress localAddress, ChannelPromise promise) throws Exception {
230         ctx.bind(localAddress, promise);
231     }
232 
233     @Override
234     public void connect(ChannelHandlerContext ctx, SocketAddress remoteAddress,
235                         SocketAddress localAddress, ChannelPromise promise) throws Exception {
236         ctx.connect(remoteAddress, localAddress, promise);
237     }
238 
239     @Override
240     public void disconnect(ChannelHandlerContext ctx, ChannelPromise promise) throws Exception {
241         ctx.disconnect(promise);
242     }
243 
244     @Override
245     public void close(ChannelHandlerContext ctx, ChannelPromise promise) throws Exception {
246         ctx.close(promise);
247     }
248 
249     @Override
250     public void deregister(ChannelHandlerContext ctx, ChannelPromise promise) throws Exception {
251         ctx.deregister(promise);
252     }
253 
254     @Override
255     public void read(ChannelHandlerContext ctx) throws Exception {
256         // Let's stop reading until we are done with the processing of the OCSP query.
257         if (ocspQueryInProgress) {
258             readPending = true;
259         } else {
260             readPending = false;
261             ctx.read();
262         }
263     }
264 
265     @Override
266     public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) throws Exception {
267         ctx.write(msg, promise);
268     }
269 
270     @Override
271     public void flush(ChannelHandlerContext ctx) throws Exception {
272         ctx.flush();
273     }
274 }