All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.starboot.socket.plugins.ssl.SslAsynchronousSocketChannel Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
/*
 *    Copyright 2019 The aio-socket Project
 *
 *    The aio-socket Project Licenses this file to you under the Apache License,
 *    Version 2.0 (the "License"); you may not use this file except in compliance
 *    with the License. You may obtain a copy of the License at:
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package cn.starboot.socket.plugins.ssl;

import cn.starboot.socket.plugins.channels.AsynchronousSocketChannelProxy;
import cn.starboot.socket.utils.pool.memory.MemoryBlock;
import cn.starboot.socket.utils.pool.memory.MemoryUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLEngineResult;
import javax.net.ssl.SSLException;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.AsynchronousSocketChannel;
import java.nio.channels.CompletionHandler;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

/**
 * @author MDong
 * @version 2.10.1.v20211002-RELEASE
 */
public class SslAsynchronousSocketChannel extends AsynchronousSocketChannelProxy {

	private static final Logger LOGGER = LoggerFactory.getLogger(SslAsynchronousSocketChannel.class);

    private final MemoryUnit netWriteBuffer;
    private final MemoryUnit netReadBuffer;
    private final MemoryUnit appReadBuffer;
    private SSLEngine sslEngine = null;
    /**
     * 完成握手置null
     */
    private HandshakeModel handshakeModel;
    /**
     * 完成握手置null
     */
    private final SslService sslService;

    private boolean handshake = true;
    /**
     * 自适应的输出长度
     */
    private int adaptiveWriteSize = -1;

    public SslAsynchronousSocketChannel(AsynchronousSocketChannel asynchronousSocketChannel, SslService sslService, MemoryBlock memoryBlock) {
        super(asynchronousSocketChannel);
        this.handshakeModel = sslService.createSSLEngine(asynchronousSocketChannel, memoryBlock);
        this.sslService = sslService;
        this.sslEngine = handshakeModel.getSslEngine();
        this.netWriteBuffer = handshakeModel.getNetWriteBuffer();
        this.netReadBuffer = handshakeModel.getNetReadBuffer();
        this.appReadBuffer = handshakeModel.getAppReadBuffer();
    }

    @Override
    public  void read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler handler) {
		if (handshake) {
			handshakeModel.setHandshakeCallback(new HandshakeCallback() {
				@Override
				public void callback() {
					handshake = false;
					synchronized (SslAsynchronousSocketChannel.this) {
						//释放内存
						handshakeModel.getAppWriteBuffer().clean();
						netReadBuffer.buffer().clear();
						netWriteBuffer.buffer().clear();
						appReadBuffer.buffer().clear().flip();
						SslAsynchronousSocketChannel.this.notifyAll();
					}
					if (handshakeModel.isEof()) {
						handler.completed(-1, attachment);
					} else {
						SslAsynchronousSocketChannel.this.read(dst, timeout, unit, attachment, handler);
					}
					handshakeModel = null;
				}
			});
			//触发握手
			sslService.doHandshake(handshakeModel);
			return;
        }
		ByteBuffer appBuffer = appReadBuffer.buffer();
		//netBuffer还有残留,尝试解码
		if (netReadBuffer.buffer().hasRemaining()) {
			appBuffer.compact();
			doUnWrap(netReadBuffer.buffer(), appReadBuffer.buffer());
			appBuffer.flip();
		}
		//appBuffer还有残留数据,先腾空
		if (appBuffer.hasRemaining()) {
			int pos = dst.position();
			if (appBuffer.remaining() > dst.remaining()) {
				int limit = appBuffer.limit();
				appBuffer.limit(appBuffer.position() + dst.remaining());
				dst.put(appBuffer);
				appBuffer.limit(limit);
			} else {
				dst.put(appBuffer);
			}
			handler.completed(dst.position() - pos, attachment);
			return;
		}

		asynchronousSocketChannel.read(netReadBuffer.buffer(), timeout, unit, attachment, new CompletionHandler() {
			int index = 0;

			@Override
			public void completed(Integer result, A attachment) {
				int pos = dst.position();
				ByteBuffer appBuffer = appReadBuffer.buffer();
//                if (appBuffer.hasRemaining()) {
//                    logger.error("error appReadBuffer:" + appBuffer);
//                }
				appBuffer.clear();
				SSLEngineResult.Status status = doUnWrap(netReadBuffer.buffer(), appReadBuffer.buffer());
				appBuffer.flip();
				//appBuffer较多
				if (appBuffer.remaining() > dst.remaining()) {
					int limit = appBuffer.limit();
					appBuffer.limit(appBuffer.position() + dst.remaining());
					dst.put(appBuffer);
					appBuffer.limit(limit);
				} else if (appBuffer.hasRemaining()) {
					dst.put(appBuffer);
				} else if (result > 0) {//说明appBuffer.remaining==0
					if (index >= 16) {
						LOGGER.error("maybe trigger bug here...");
					}
					if (status == SSLEngineResult.Status.OK && index < 16) {
						index++;
						completed(result, attachment);
					} else {
						asynchronousSocketChannel.read(netReadBuffer.buffer(), timeout, unit, attachment, this);
					}
					return;
				}
				index = 0;
				handler.completed(result != -1 ? dst.position() - pos : result, attachment);
			}

			@Override
			public void failed(Throwable exc, A attachment) {
				handler.failed(exc, attachment);
			}
		});
    }

	private SSLEngineResult.Status doUnWrap(ByteBuffer netBuffer, ByteBuffer appBuffer) {
		netBuffer.flip();
		try {
			SSLEngineResult result = sslEngine.unwrap(netBuffer, appBuffer);
			boolean closed = false;
			while (!closed && result.getStatus() != SSLEngineResult.Status.OK) {
				switch (result.getStatus()) {
					case BUFFER_OVERFLOW:
						LOGGER.warn("BUFFER_OVERFLOW error");
						break;
					case BUFFER_UNDERFLOW:
						if (netBuffer.limit() == netBuffer.capacity()) {
							LOGGER.error("BUFFER_UNDERFLOW error");
						} else {
							if (LOGGER.isDebugEnabled()) {
								LOGGER.debug("BUFFER_UNDERFLOW,continue read:" + netBuffer);
							}
						}
//                        logger.error("doUnWrap return, " + netBuffer);
						return result.getStatus();
					case CLOSED:
						LOGGER.warn("doUnWrap Result:" + result.getStatus());
						closed = true;
						break;
					default:
						LOGGER.warn("doUnWrap Result:" + result.getStatus());
				}
				result = sslEngine.unwrap(netBuffer, appBuffer);
			}
			return result.getStatus();
		} catch (SSLException e) {
			throw new RuntimeException(e);
		} finally {
			netBuffer.compact();
		}
	}

    @Override
    public Future read(ByteBuffer dst) {
        throw new UnsupportedOperationException();
    }

    @Override
    public  void read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler handler) {
        throw new UnsupportedOperationException();
    }

	@Override
	public  void write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler handler) {
		if (handshake) {
			checkInitialized();
		}
		int pos = src.position();
		try {
			doWrap(src);
		} catch (SSLException e) {
			handler.failed(e, attachment);
			return;
		}
		if (src.position() - pos == 0) {
			LOGGER.error("write error:" + src + " netWrite:" + netWriteBuffer.buffer());
		}
		asynchronousSocketChannel.write(netWriteBuffer.buffer(), timeout, unit, attachment, new CompletionHandler() {
			@Override
			public void completed(Integer result, A attachment) {
				if (result == -1) {
					System.err.println("aaaaaaaaaaa");
				}
				if (netWriteBuffer.buffer().hasRemaining()) {
					asynchronousSocketChannel.write(netWriteBuffer.buffer(), timeout, unit, attachment, this);
				} else {
					handler.completed(src.position() - pos, attachment);
				}
			}

			@Override
			public void failed(Throwable exc, A attachment) {
				handler.failed(exc, attachment);
			}
		});
	}

	/**
	 * 校验是否已完成初始化,如果还处于Handshake阶段则阻塞当前线程
	 */
	private void checkInitialized() {
		if (!handshake) {
			return;
		}
		synchronized (this) {
			if (!handshake) {
				return;
			}
			try {
				this.wait();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
	}

	private void doWrap(ByteBuffer writeBuffer) throws SSLException {
		ByteBuffer netBuffer = netWriteBuffer.buffer();
		netBuffer.compact();
		int limit = writeBuffer.limit();
		if (adaptiveWriteSize > 0 && writeBuffer.remaining() > adaptiveWriteSize) {
			writeBuffer.limit(writeBuffer.position() + adaptiveWriteSize);
		}
		SSLEngineResult result = sslEngine.wrap(writeBuffer, netBuffer);
		while (result.getStatus() != SSLEngineResult.Status.OK) {
			switch (result.getStatus()) {
				case BUFFER_OVERFLOW:
					netBuffer.clear();
					writeBuffer.limit(writeBuffer.position() + ((writeBuffer.limit() - writeBuffer.position() >> 1)));
					adaptiveWriteSize = writeBuffer.remaining();
//                        logger.info("doWrap BUFFER_OVERFLOW maybeSize:{}", maybeWriteSize);
					break;
				case BUFFER_UNDERFLOW:
					LOGGER.info("doWrap BUFFER_UNDERFLOW");
					break;
				case CLOSED:
					throw new SSLException("SSLEngine has " + result.getStatus());
				default:
					LOGGER.warn("doWrap Result:" + result.getStatus());
			}
			result = sslEngine.wrap(writeBuffer, netBuffer);
		}
		writeBuffer.limit(limit);
		netBuffer.flip();

	}

	@Override
	public Future write(ByteBuffer src) {
		throw new UnsupportedOperationException();
	}

	@Override
	public  void write(ByteBuffer[] srcs, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler handler) {
		throw new UnsupportedOperationException();
	}

	@Override
	public void close() throws IOException {
		netWriteBuffer.clean();
		netReadBuffer.clean();
		appReadBuffer.clean();
		try {
			sslEngine.closeInbound();
		} catch (SSLException e) {
			LOGGER.warn("ignore closeInbound exception: {}", e.getMessage());
		}
		sslEngine.closeOutbound();
		asynchronousSocketChannel.close();

	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy