View Javadoc
1   /*
2    * This file is part of Waarp Project (named also Waarp or GG).
3    *
4    *  Copyright (c) 2019, Waarp SAS, and individual contributors by the @author
5    *  tags. See the COPYRIGHT.txt in the distribution for a full listing of
6    * individual contributors.
7    *
8    *  All Waarp Project is free software: you can redistribute it and/or
9    * modify it under the terms of the GNU General Public License as published by
10   * the Free Software Foundation, either version 3 of the License, or (at your
11   * option) any later version.
12   *
13   * Waarp is distributed in the hope that it will be useful, but WITHOUT ANY
14   * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15   * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16   *
17   *  You should have received a copy of the GNU General Public License along with
18   * Waarp . If not, see <http://www.gnu.org/licenses/>.
19   */
20  package org.waarp.openr66.proxy.network.ssl;
21  
22  import io.netty.channel.Channel;
23  import io.netty.channel.ChannelHandler;
24  import io.netty.channel.ChannelHandlerContext;
25  import io.netty.handler.ssl.SslHandler;
26  import io.netty.util.concurrent.Future;
27  import io.netty.util.concurrent.GenericFutureListener;
28  import org.waarp.common.crypto.ssl.WaarpSslUtility;
29  import org.waarp.common.logging.WaarpLogger;
30  import org.waarp.common.logging.WaarpLoggerFactory;
31  import org.waarp.openr66.proxy.network.NetworkServerHandler;
32  
33  import static org.waarp.openr66.protocol.configuration.Configuration.*;
34  
35  /**
36   *
37   */
38  public class NetworkSslServerHandler extends NetworkServerHandler {
39    /**
40     * @param isServer
41     */
42    public NetworkSslServerHandler(final boolean isServer) {
43      super(isServer);
44    }
45  
46    /**
47     * Internal Logger
48     */
49    private static final WaarpLogger logger =
50        WaarpLoggerFactory.getLogger(NetworkSslServerHandler.class);
51  
52    /**
53     * @param channel
54     *
55     * @return True if the SSL handshake is over and OK, else False
56     */
57    public static boolean isSslConnectedChannel(final Channel channel) {
58      return WaarpSslUtility.waitForHandshake(channel);
59    }
60  
61    @Override
62    public void channelActive(final ChannelHandlerContext ctx) throws Exception {
63      final Channel channel = ctx.channel();
64      logger.debug("Add channel to ssl");
65      WaarpSslUtility.addSslOpenedChannel(channel);
66      isSSL = true;
67      // Get the SslHandler in the current pipeline.
68      // We added it in NetworkSslServerInitializer.
69      final ChannelHandler handler = ctx.pipeline().first();
70      if (handler instanceof SslHandler) {
71        final SslHandler sslHandler = (SslHandler) handler;
72        sslHandler.handshakeFuture().addListener(
73            new GenericFutureListener<Future<? super Channel>>() {
74              @Override
75              public final void operationComplete(
76                  final Future<? super Channel> future) {
77                if (!future.isSuccess() && configuration.getR66Mib() != null) {
78                  configuration.getR66Mib().notifyError("SSL Connection Error",
79                                                        "During Handshake");
80                }
81                ctx.channel().config().setAutoRead(false);
82              }
83            });
84      } else {
85        logger.error("SSL Not found");
86      }
87      super.channelActive(ctx);
88    }
89  }