Class SslConnection
- java.lang.Object
-
- org.eclipse.jetty.io.AbstractConnection
-
- org.eclipse.jetty.io.ssl.SslConnection
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Connection
,Connection.UpgradeTo
@Deprecated(since="2021-05-27") public class SslConnection extends AbstractConnection implements Connection.UpgradeTo
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A Connection that acts as an interceptor between an EndPoint providing SSL encrypted data and another consumer of an EndPoint (typically anConnection
like HttpConnection) that wants unencrypted data.The connector uses an
EndPoint
(typically SocketChannelEndPoint) as it's source/sink of encrypted data. It then provides an endpoint viagetDecryptedEndPoint()
to expose a source/sink of unencrypted data to another connection (eg HttpConnection).The design of this class is based on a clear separation between the passive methods, which do not block nor schedule any asynchronous callbacks, and active methods that do schedule asynchronous callbacks.
The passive methods are
SslConnection.DecryptedEndPoint.fill(ByteBuffer)
andSslConnection.DecryptedEndPoint.flush(ByteBuffer...)
. They make best effort attempts to progress the connection using only calls to the encryptedEndPoint.fill(ByteBuffer)
andEndPoint.flush(ByteBuffer...)
methods. They will never block nor schedule any readInterest or write callbacks. If a fill/flush cannot progress either because of network congestion or waiting for an SSL handshake message, then the fill/flush will simply return with zero bytes filled/flushed. Specifically, if a flush cannot proceed because it needs to receive a handshake message, then the flush will attempt to fill bytes from the encrypted endpoint, but if insufficient bytes are read it will NOT callEndPoint.fillInterested(Callback)
.It is only the active methods :
AbstractEndPoint.fillInterested(Callback)
andAbstractEndPoint.write(Callback, ByteBuffer...)
that may schedule callbacks by calling the encryptedEndPoint.fillInterested(Callback)
andEndPoint.write(Callback, ByteBuffer...)
methods. For normal data handling, the decrypted fillInterest method will result in an encrypted fillInterest and a decrypted write will result in an encrypted write. However, due to SSL handshaking requirements, it is also possible for a decrypted fill to call the encrypted write and for the decrypted flush to call the encrypted fillInterested methods.MOST IMPORTANTLY, the encrypted callbacks from the active methods (#onFillable() and WriteFlusher#completeWrite()) do no filling or flushing themselves. Instead they simple make the callbacks to the decrypted callbacks, so that the passive encrypted fill/flush will be called again and make another best effort attempt to progress the connection.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
SslConnection.DecryptedEndPoint
Deprecated.-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.Connection
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo
-
-
Constructor Summary
Constructors Constructor Description SslConnection(ByteBufferPool byteBufferPool, Executor executor, EndPoint endPoint, SSLEngine sslEngine)
Deprecated.SslConnection(ByteBufferPool byteBufferPool, Executor executor, EndPoint endPoint, SSLEngine sslEngine, boolean useDirectBuffersForEncryption, boolean useDirectBuffersForDecryption)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addHandshakeListener(SslHandshakeListener listener)
Deprecated.void
close()
Deprecated.Performs a logical close of this connection.long
getBytesIn()
Deprecated.long
getBytesOut()
Deprecated.SslConnection.DecryptedEndPoint
getDecryptedEndPoint()
Deprecated.int
getRenegotiationLimit()
Deprecated.SSLEngine
getSSLEngine()
Deprecated.boolean
isAllowMissingCloseMessage()
Deprecated.use invertedisRequireCloseMessage()
insteadboolean
isRenegotiationAllowed()
Deprecated.boolean
isRequireCloseMessage()
Deprecated.void
onClose()
Deprecated.Callback method invoked when this connection is closed.void
onFillable()
Deprecated.Callback method invoked when the endpoint is ready to be read.void
onFillInterestedFailed(Throwable cause)
Deprecated.boolean
onIdleExpired()
Deprecated.Callback method invoked upon an idle timeout event.void
onOpen()
Deprecated.Callback method invoked when this connection is opened.void
onUpgradeTo(ByteBuffer buffer)
Deprecated.Invoked during anupgrade
to receive a buffer containing bytes that have not been consumed by the upgrade-from connection, and that must be consumed by this connection.boolean
removeHandshakeListener(SslHandshakeListener listener)
Deprecated.void
setAllowMissingCloseMessage(boolean allowMissingCloseMessage)
Deprecated.use invertedsetRequireCloseMessage(boolean)
insteadvoid
setRenegotiationAllowed(boolean renegotiationAllowed)
Deprecated.void
setRenegotiationLimit(int renegotiationLimit)
Deprecated.void
setRequireCloseMessage(boolean requireCloseMessage)
Deprecated.Sets whether it is required that a peer send the TLSclose_notify
message to indicate the will to close the connection, otherwise it may be interpreted as a truncation attack.String
toConnectionString()
Deprecated.-
Methods inherited from class org.eclipse.jetty.io.AbstractConnection
addListener, fillInterested, getCreatedTimeStamp, getEndPoint, getInputBufferSize, getMessagesIn, getMessagesOut, isFillInterested, removeListener, setInputBufferSize, toString, tryFillInterested, tryFillInterested
-
-
-
-
Constructor Detail
-
SslConnection
public SslConnection(ByteBufferPool byteBufferPool, Executor executor, EndPoint endPoint, SSLEngine sslEngine)
Deprecated.
-
SslConnection
public SslConnection(ByteBufferPool byteBufferPool, Executor executor, EndPoint endPoint, SSLEngine sslEngine, boolean useDirectBuffersForEncryption, boolean useDirectBuffersForDecryption)
Deprecated.
-
-
Method Detail
-
getBytesIn
public long getBytesIn()
Deprecated.- Specified by:
getBytesIn
in interfaceConnection
- Overrides:
getBytesIn
in classAbstractConnection
-
getBytesOut
public long getBytesOut()
Deprecated.- Specified by:
getBytesOut
in interfaceConnection
- Overrides:
getBytesOut
in classAbstractConnection
-
addHandshakeListener
public void addHandshakeListener(SslHandshakeListener listener)
Deprecated.
-
removeHandshakeListener
public boolean removeHandshakeListener(SslHandshakeListener listener)
Deprecated.
-
getSSLEngine
public SSLEngine getSSLEngine()
Deprecated.
-
getDecryptedEndPoint
public SslConnection.DecryptedEndPoint getDecryptedEndPoint()
Deprecated.
-
isRenegotiationAllowed
public boolean isRenegotiationAllowed()
Deprecated.
-
setRenegotiationAllowed
public void setRenegotiationAllowed(boolean renegotiationAllowed)
Deprecated.
-
getRenegotiationLimit
public int getRenegotiationLimit()
Deprecated.- Returns:
- The number of renegotiations allowed for this connection. When the limit is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied.
-
setRenegotiationLimit
public void setRenegotiationLimit(int renegotiationLimit)
Deprecated.- Parameters:
renegotiationLimit
- The number of renegotiations allowed for this connection. When the limit is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied. Default -1.
-
isAllowMissingCloseMessage
@Deprecated public boolean isAllowMissingCloseMessage()
Deprecated.use invertedisRequireCloseMessage()
instead- Returns:
- whether is not required that peers send the TLS
close_notify
message
-
setAllowMissingCloseMessage
@Deprecated public void setAllowMissingCloseMessage(boolean allowMissingCloseMessage)
Deprecated.use invertedsetRequireCloseMessage(boolean)
instead- Parameters:
allowMissingCloseMessage
- whether is not required that peers send the TLSclose_notify
message
-
isRequireCloseMessage
public boolean isRequireCloseMessage()
Deprecated.- Returns:
- whether peers must send the TLS
close_notify
message
-
setRequireCloseMessage
public void setRequireCloseMessage(boolean requireCloseMessage)
Deprecated.Sets whether it is required that a peer send the TLS
close_notify
message to indicate the will to close the connection, otherwise it may be interpreted as a truncation attack.This option is only useful on clients, since typically servers cannot accept connection-delimited content that may be truncated.
- Parameters:
requireCloseMessage
- whether peers must send the TLSclose_notify
message
-
onUpgradeTo
public void onUpgradeTo(ByteBuffer buffer)
Deprecated.Description copied from interface:Connection.UpgradeTo
Invoked during an
upgrade
to receive a buffer containing bytes that have not been consumed by the upgrade-from connection, and that must be consumed by this connection.- Specified by:
onUpgradeTo
in interfaceConnection.UpgradeTo
- Parameters:
buffer
- a non-null buffer of unconsumed bytes received from the upgrade-from connection. The buffer does not belong to any pool and should be discarded after having consumed its bytes.
-
onOpen
public void onOpen()
Deprecated.Description copied from interface:Connection
Callback method invoked when this connection is opened.
Creators of the connection implementation are responsible for calling this method.
- Specified by:
onOpen
in interfaceConnection
- Overrides:
onOpen
in classAbstractConnection
-
onClose
public void onClose()
Deprecated.Description copied from interface:Connection
Callback method invoked when this connection is closed.
Creators of the connection implementation are responsible for calling this method.
- Specified by:
onClose
in interfaceConnection
- Overrides:
onClose
in classAbstractConnection
-
close
public void close()
Deprecated.Description copied from interface:Connection
Performs a logical close of this connection.
For simple connections, this may just mean to delegate the close to the associated
EndPoint
but, for example, SSL connections should write the SSL close message before closing the associatedEndPoint
.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceConnection
- Overrides:
close
in classAbstractConnection
-
onIdleExpired
public boolean onIdleExpired()
Deprecated.Description copied from interface:Connection
Callback method invoked upon an idle timeout event.
Implementations of this method may return true to indicate that the idle timeout handling should proceed normally, typically failing the EndPoint and causing it to be closed.
When false is returned, the handling of the idle timeout event is halted immediately and the EndPoint left in the state it was before the idle timeout event.
- Specified by:
onIdleExpired
in interfaceConnection
- Overrides:
onIdleExpired
in classAbstractConnection
- Returns:
- true to let the EndPoint handle the idle timeout, false to tell the EndPoint to halt the handling of the idle timeout.
-
onFillable
public void onFillable()
Deprecated.Description copied from class:AbstractConnection
Callback method invoked when the endpoint is ready to be read.
- Specified by:
onFillable
in classAbstractConnection
- See Also:
AbstractConnection.fillInterested()
-
onFillInterestedFailed
public void onFillInterestedFailed(Throwable cause)
Deprecated.
-
toConnectionString
public String toConnectionString()
Deprecated.- Overrides:
toConnectionString
in classAbstractConnection
-
-