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

org.zodiac.sdk.nio.channeling.SSLSocketChannel Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
/*
 * APACHE LICENSE, VERSION 2.0
 * Original Source code are from https://github.com/baswerc/niossl
 */
package org.zodiac.sdk.nio.channeling;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLSession;
import java.io.IOException;
import java.net.Socket;
import java.net.SocketAddress;
import java.net.SocketOption;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import java.util.Set;
import java.util.concurrent.ExecutorService;

/**
 * A wrapper around a real {@link SocketChannel} that adds SSL support.
 */
class SSLSocketChannel extends SocketChannel {
    private final SocketChannel socketChannel;

    private final SSLEngineBuffer sslEngineBuffer;

    private static Logger logger = LoggerFactory.getLogger(SSLSocketChannel.class);


    /**
     * @param socketChannel   The real SocketChannel.
     * @param sslEngine       The SSL engine to use for traffic back and forth on the given SocketChannel.
     * @param executorService Used to execute long running, blocking SSL operations such as certificate validation with a CA (NEED_TASK)
     */
    public SSLSocketChannel(SocketChannel socketChannel, final SSLEngine sslEngine, ExecutorService executorService) {
        super(socketChannel.provider());
        this.socketChannel = socketChannel;
        sslEngineBuffer = new SSLEngineBuffer(socketChannel, sslEngine, executorService);
    }

    public SocketChannel getWrappedSocketChannel() {
        return socketChannel;
    }

    /**
     * 

Reads a sequence of bytes from this channel into the given buffer.

* *

An attempt is made to read up to r bytes from the channel, where r is the number of bytes remaining in the buffer, that is, dst.remaining(), at the moment this method is invoked.

* *

Suppose that a byte sequence of length n is read, where 0 <= n <= r. This byte sequence will be transferred into the buffer so that the first byte in the sequence is at index p and the last byte is at index p + n - 1, where p is the buffer's position at the moment this method is invoked. Upon return the buffer's position will be equal to p + n; its limit will not have changed.

* *

A read operation might not fill the buffer, and in fact it might not read any bytes at all. Whether or not it does so depends upon the nature and state of the channel. A socket channel in non-blocking mode, for example, cannot read any more bytes than are immediately available from the socket's input buffer; similarly, a file channel cannot read any more bytes than remain in the file. It is guaranteed, however, that if a channel is in blocking mode and there is at least one byte remaining in the buffer then this method will block until at least one byte is read.

* *

This method may be invoked at any time. If another thread has already initiated a read operation upon this channel, however, then an invocation of this method will block until the first operation is complete.

* * @param applicationBuffer The buffer into which bytes are to be transferred * @return The number of bytes read, possibly zero, or -1 if the channel has reached end-of-stream * @throws java.nio.channels.NotYetConnectedException If this channel is not yet connected * @throws java.nio.channels.ClosedChannelException If this channel is closed * @throws java.nio.channels.AsynchronousCloseException If another thread closes this channel while the read operation is in progress * @throws java.nio.channels.ClosedByInterruptException If another thread interrupts the current thread while the read operation is in progress, thereby closing the channel and setting the current thread's interrupt status * @throws IOException If some other I/O error occurs * @throws IllegalArgumentException If the given applicationBuffer capacity ({@link ByteBuffer#capacity()} is less then the application buffer size of the {@link SSLEngine} session application buffer size ({@link SSLSession#getApplicationBufferSize()} this channel was constructed was. */ @Override synchronized public int read(ByteBuffer applicationBuffer) throws IOException, IllegalArgumentException { logger.debug("read: " + applicationBuffer.position() + " " + applicationBuffer.limit()); int intialPosition = applicationBuffer.position(); int readFromChannel = sslEngineBuffer.unwrap(applicationBuffer); logger.debug("read: from channel: " + readFromChannel); if (readFromChannel < 0) { logger.debug("read: channel closed."); return readFromChannel; } else { int totalRead = applicationBuffer.position() - intialPosition; logger.debug("read: total read: " + totalRead); return totalRead; } } /** *

Writes a sequence of bytes to this channel from the given buffer.

* *

An attempt is made to write up to r bytes to the channel, where r is the number of bytes remaining in the buffer, that is, src.remaining(), at the moment this method is invoked.

* *

Suppose that a byte sequence of length n is written, where 0 <= n <= r. This byte sequence will be transferred from the buffer starting at index p, where p is the buffer's position at the moment this method is invoked; the index of the last byte written will be p + n - 1. Upon return the buffer's position will be equal to p + n; its limit will not have changed.

* *

Unless otherwise specified, a write operation will return only after writing all of the r requested bytes. Some types of channels, depending upon their state, may write only some of the bytes or possibly none at all. A socket channel in non-blocking mode, for example, cannot write any more bytes than are free in the socket's output buffer.

* *

This method may be invoked at any time. If another thread has already initiated a write operation upon this channel, however, then an invocation of this method will block until the first operation is complete.

* * @param applicationBuffer The buffer from which bytes are to be retrieved * @return The number of bytes written, possibly zero * @throws java.nio.channels.NotYetConnectedException If this channel is not yet connected * @throws java.nio.channels.ClosedChannelException If this channel is closed * @throws java.nio.channels.AsynchronousCloseException If another thread closes this channel while the read operation is in progress * @throws java.nio.channels.ClosedByInterruptException If another thread interrupts the current thread while the read operation is in progress, thereby closing the channel and setting the current thread's interrupt status * @throws IOException If some other I/O error occurs * @throws IllegalArgumentException If the given applicationBuffer capacity ({@link ByteBuffer#capacity()} is less then the application buffer size of the {@link SSLEngine} session application buffer size ({@link SSLSession#getApplicationBufferSize()} this channel was constructed was. */ @Override synchronized public int write(ByteBuffer applicationBuffer) throws IOException, IllegalArgumentException { logger.debug("write:"); int intialPosition = applicationBuffer.position(); int writtenToChannel = sslEngineBuffer.wrap(applicationBuffer); if (writtenToChannel < 0) { logger.debug("write: channel closed"); return writtenToChannel; } else { int totalWritten = applicationBuffer.position() - intialPosition; logger.debug("write: total written: " + totalWritten + " amount available in network outbound: " + applicationBuffer.remaining()); return totalWritten; } } /** *

Reads a sequence of bytes from this channel into a subsequence of the given buffers.

* *

An invocation of this method attempts to read up to r bytes from this channel, where r is the total number of bytes remaining the specified subsequence of the given buffer array, that is, *

     * {@code
     * dsts[offset].remaining()
     *   + dsts[offset+1].remaining()
     *   + ... + dsts[offset+length-1].remaining()
     * }
     * 
*

at the moment that this method is invoked.

* *

Suppose that a byte sequence of length n is read, where 0 <= n <= r. Up to the first dsts[offset].remaining() bytes of this sequence are transferred into buffer dsts[offset], up to the next dsts[offset+1].remaining() bytes are transferred into buffer dsts[offset+1], and so forth, until the entire byte sequence is transferred into the given buffers. As many bytes as possible are transferred into each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit.

* *

This method may be invoked at any time. If another thread has already initiated a read operation upon this channel, however, then an invocation of this method will block until the first operation is complete.

* * @param applicationByteBuffers The buffers into which bytes are to be transferred * @param offset The offset within the buffer array of the first buffer into which bytes are to be transferred; must be non-negative and no larger than dsts.length * @param length The maximum number of buffers to be accessed; must be non-negative and no larger than dsts.length - offset * @return The number of bytes read, possibly zero, or -1 if the channel has reached end-of-stream * @throws java.nio.channels.NotYetConnectedException If this channel is not yet connected * @throws java.nio.channels.ClosedChannelException If this channel is closed * @throws java.nio.channels.AsynchronousCloseException If another thread closes this channel while the read operation is in progress * @throws java.nio.channels.ClosedByInterruptException If another thread interrupts the current thread while the read operation is in progress, thereby closing the channel and setting the current thread's interrupt status * @throws IOException If some other I/O error occurs * @throws IllegalArgumentException If one of the given applicationBuffers capacity ({@link ByteBuffer#capacity()} is less then the application buffer size of the {@link SSLEngine} session application buffer size ({@link SSLSession#getApplicationBufferSize()} this channel was constructed was. */ @Override public long read(ByteBuffer[] applicationByteBuffers, int offset, int length) throws IOException, IllegalArgumentException { long totalRead = 0; for (int i = offset; i < length; i++) { ByteBuffer applicationByteBuffer = applicationByteBuffers[i]; if (applicationByteBuffer.hasRemaining()) { int read = read(applicationByteBuffer); if (read > 0) { totalRead += read; if (applicationByteBuffer.hasRemaining()) { break; } } else { if ((read < 0) && (totalRead == 0)) { totalRead = -1; } break; } } } return totalRead; } /** *

Writes a sequence of bytes to this channel from a subsequence of the given buffers.

* *

An attempt is made to write up to r bytes to this channel, where r is the total number of bytes remaining in the specified subsequence of the given buffer array, that is,

*
     * {@code
     * srcs[offset].remaining()
     *   + srcs[offset+1].remaining()
     *   + ... + srcs[offset+length-1].remaining()
     * }
     * 
*

at the moment that this method is invoked.

* *

Suppose that a byte sequence of length n is written, where 0 <= n <= r. Up to the first srcs[offset].remaining() bytes of this sequence are written from buffer srcs[offset], up to the next srcs[offset+1].remaining() bytes are written from buffer srcs[offset+1], and so forth, until the entire byte sequence is written. As many bytes as possible are written from each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit.

* *

Unless otherwise specified, a write operation will return only after writing all of the r requested bytes. Some types of channels, depending upon their state, may write only some of the bytes or possibly none at all. A socket channel in non-blocking mode, for example, cannot write any more bytes than are free in the socket's output buffer.

* *

This method may be invoked at any time. If another thread has already initiated a write operation upon this channel, however, then an invocation of this method will block until the first operation is complete.

* * @param applicationByteBuffers The buffers from which bytes are to be retrieved * @param offset offset - The offset within the buffer array of the first buffer from which bytes are to be retrieved; must be non-negative and no larger than srcs.length * @param length The maximum number of buffers to be accessed; must be non-negative and no larger than srcs.length - offset * @return The number of bytes written, possibly zero * @throws java.nio.channels.NotYetConnectedException If this channel is not yet connected * @throws java.nio.channels.ClosedChannelException If this channel is closed * @throws java.nio.channels.AsynchronousCloseException If another thread closes this channel while the read operation is in progress * @throws java.nio.channels.ClosedByInterruptException If another thread interrupts the current thread while the read operation is in progress, thereby closing the channel and setting the current thread's interrupt status * @throws IOException If some other I/O error occurs * @throws IllegalArgumentException If one of the given applicationBuffers capacity ({@link ByteBuffer#capacity()} is less then the application buffer size of the {@link SSLEngine} session application buffer size ({@link SSLSession#getApplicationBufferSize()} this channel was constructed was. */ @Override public long write(ByteBuffer[] applicationByteBuffers, int offset, int length) throws IOException, IllegalArgumentException { long totalWritten = 0; for (int i = offset; i < length; i++) { ByteBuffer byteBuffer = applicationByteBuffers[i]; if (byteBuffer.hasRemaining()) { int written = write(byteBuffer); if (written > 0) { totalWritten += written; if (byteBuffer.hasRemaining()) { break; } } else { if ((written < 0) && (totalWritten == 0)) { totalWritten = -1; } break; } } } return totalWritten; } @Override public Socket socket() { return socketChannel.socket(); } @Override public boolean isConnected() { return socketChannel.isConnected(); } @Override public boolean isConnectionPending() { return socketChannel.isConnectionPending(); } @Override public boolean connect(SocketAddress socketAddress) throws IOException { return socketChannel.connect(socketAddress); } @Override public boolean finishConnect() throws IOException { return socketChannel.finishConnect(); } @Override public SocketChannel bind(SocketAddress local) throws IOException { socketChannel.bind(local); return this; } @Override public SocketAddress getLocalAddress() throws IOException { return socketChannel.getLocalAddress(); } @Override public SocketChannel setOption(SocketOption name, T value) throws IOException { return socketChannel.setOption(name, value); } @Override public T getOption(SocketOption name) throws IOException { return socketChannel.getOption(name); } @Override public Set> supportedOptions() { return socketChannel.supportedOptions(); } @Override public SocketChannel shutdownInput() throws IOException { return socketChannel.shutdownInput(); } @Override public SocketChannel shutdownOutput() throws IOException { return socketChannel.shutdownOutput(); } @Override public SocketAddress getRemoteAddress() throws IOException { return socketChannel.getRemoteAddress(); } @Override protected void implConfigureBlocking(boolean b) throws IOException { socketChannel.configureBlocking(b); } @Override protected void implCloseSelectableChannel() throws IOException { try { sslEngineBuffer.flushNetworkOutbound(); } catch (Exception e) { } socketChannel.close(); sslEngineBuffer.close(); } protected int getMinApplicationBufferSize() { return sslEngineBuffer.getMinimumApplicationBufferSize(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy