public abstract class AbstractSession extends SessionHelper
The AbstractSession handles all the basic SSH protocol such as key exchange, authentication,
encoding and decoding. Both server side and client side sessions should inherit from this
abstract class. Some basic packet processing methods are defined but the actual call to these
methods should be done from the handleMessage(Buffer)
method, which is dependent on the state and side of this session.
AbstractCloseable.StateSession.TimeoutStatusAttributeRepository.AttributeKey<T>| Modifier and Type | Field and Description |
|---|---|
protected ChannelListener |
channelListenerProxy |
protected java.util.Collection<ChannelListener> |
channelListeners
Channel events listener container
|
private byte[] |
clientKexData |
protected java.util.Map<KexProposalOption,java.lang.String> |
clientProposal |
protected java.lang.String |
clientVersion |
protected Service |
currentService |
protected java.lang.Object |
decodeLock |
protected SessionWorkBuffer |
decoderBuffer |
protected int |
decoderLength |
protected int |
decoderState |
protected java.lang.Object |
encodeLock |
protected java.lang.Boolean |
firstKexPacketFollows |
protected int |
ignorePacketDataLength |
protected java.util.concurrent.atomic.AtomicLong |
ignorePacketsCount |
protected long |
ignorePacketsFrequency |
protected int |
ignorePacketsVariance |
protected java.util.concurrent.atomic.AtomicLong |
inBlocksCount |
protected java.util.concurrent.atomic.AtomicLong |
inBytesCount |
protected Cipher |
inCipher |
protected int |
inCipherSize |
protected Compression |
inCompression |
protected Mac |
inMac |
protected byte[] |
inMacResult |
protected java.util.concurrent.atomic.AtomicLong |
inPacketsCount |
protected KeyExchange |
kex |
protected java.util.concurrent.atomic.AtomicReference<DefaultKeyExchangeFuture> |
kexFutureHolder |
protected java.util.concurrent.atomic.AtomicReference<KexState> |
kexState |
protected java.util.concurrent.atomic.AtomicLong |
lastKeyTimeValue |
protected java.util.concurrent.atomic.AtomicLong |
maxRekeyBlocks |
protected long |
maxRekeyBytes |
protected long |
maxRekeyInterval |
protected long |
maxRekyPackets |
protected java.util.Map<KexProposalOption,java.lang.String> |
negotiationResult |
protected java.util.concurrent.atomic.AtomicLong |
outBlocksCount |
protected java.util.concurrent.atomic.AtomicLong |
outBytesCount |
protected Cipher |
outCipher |
protected int |
outCipherSize |
protected Compression |
outCompression |
protected Mac |
outMac |
protected java.util.concurrent.atomic.AtomicLong |
outPacketsCount |
protected java.util.Queue<PendingWriteFuture> |
pendingPackets |
protected Random |
random
The pseudo random generator
|
protected java.lang.Object |
requestLock |
private java.util.concurrent.atomic.AtomicReference<java.lang.Object> |
requestResult
Used to wait for global requests result synchronous wait
|
protected long |
seqi |
protected long |
seqo |
private byte[] |
serverKexData |
protected java.util.Map<KexProposalOption,java.lang.String> |
serverProposal |
protected java.lang.String |
serverVersion |
static java.lang.String |
SESSION
Name of the property where this session is stored in the attributes of the
underlying MINA session.
|
protected byte[] |
sessionId |
protected SessionListener |
sessionListenerProxy |
protected java.util.Collection<SessionListener> |
sessionListeners
Session listeners container
|
protected PortForwardingEventListener |
tunnelListenerProxy |
protected java.util.Collection<PortForwardingEventListener> |
tunnelListeners
Port forwarding events listener container
|
protected SessionWorkBuffer |
uncompressBuffer |
closeFuture, lock, statelogDEFAULT_SSH_VERSION_PREFIX, FALLBACK_SSH_VERSION_PREFIX, MAX_VERSION_LINE_LENGTHEMPTYNONECLOSE_WAIT_TIMEOUT, DEFAULT_CLOSE_WAIT_TIMEOUT| Modifier | Constructor and Description |
|---|---|
protected |
AbstractSession(boolean serverSession,
FactoryManager factoryManager,
IoSession ioSession)
Create a new session.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addChannelListener(ChannelListener listener)
Add a channel listener
|
void |
addPortForwardingEventListener(PortForwardingEventListener listener)
Add a port forwarding listener
|
void |
addSessionListener(SessionListener listener)
Add a session listener.
|
static void |
attachSession(IoSession ioSession,
AbstractSession session)
Attach an SSH
AbstractSession to the I/O session |
protected abstract void |
checkKeys()
Indicates the the key exchange is completed and the exchanged keys
can now be verified - e.g., client can verify the server's key
|
protected KeyExchangeFuture |
checkRekey()
Checks if a re-keying is required and if so initiates it
|
protected java.util.AbstractMap.SimpleImmutableEntry<java.lang.String,java.lang.String> |
comparePreferredKexProposalOption(KexProposalOption option) |
Buffer |
createBuffer(byte cmd,
int len)
Create a new buffer for the specified SSH packet and reserve the needed space
(5 bytes) for the packet header.
|
protected void |
decode()
Decode the incoming buffer and handle packets as needed.
|
protected void |
doHandleMessage(Buffer buffer) |
protected IoWriteFuture |
doWritePacket(Buffer buffer) |
protected Buffer |
encode(Buffer buffer)
Encode a buffer into the SSH protocol.
|
ChannelListener |
getChannelListenerProxy() |
CipherInformation |
getCipherInformation(boolean incoming)
Retrieves current cipher information - Note: may change if
key re-exchange executed
|
protected byte[] |
getClientKexData() |
java.lang.String |
getClientVersion()
Retrieve the client version for this session.
|
CompressionInformation |
getCompressionInformation(boolean incoming)
Retrieves current compression information - Note: may change if
key re-exchange executed
|
protected Closeable |
getInnerCloseable() |
KeyExchange |
getKex() |
MacInformation |
getMacInformation(boolean incoming)
Retrieves current MAC information - Note: may change if
key re-exchange executed
|
java.lang.String |
getNegotiatedKexParameter(KexProposalOption paramType)
Retrieve one of the negotiated values during the KEX stage
|
PortForwardingEventListener |
getPortForwardingEventListenerProxy() |
protected byte[] |
getServerKexData() |
java.lang.String |
getServerVersion()
Retrieve the server version for this session.
|
<T extends Service> |
getService(java.lang.Class<T> clazz)
Get the service of the specified type.
|
protected java.util.List<Service> |
getServices() |
static AbstractSession |
getSession(IoSession ioSession)
Retrieve the SSH session from the I/O session.
|
static AbstractSession |
getSession(IoSession ioSession,
boolean allowNull)
Retrieve the session SSH from the I/O session.
|
byte[] |
getSessionId() |
SessionListener |
getSessionListenerProxy() |
protected boolean |
handleFirstKexPacketFollows(int cmd,
Buffer buffer,
boolean followFlag) |
protected void |
handleKexInit(Buffer buffer) |
protected void |
handleKexMessage(int cmd,
Buffer buffer) |
protected void |
handleMessage(Buffer buffer)
Abstract method for processing incoming decoded packets.
|
protected void |
handleNewKeys(int cmd,
Buffer buffer) |
protected void |
handleServiceAccept(Buffer buffer) |
protected void |
handleServiceAccept(java.lang.String serviceName,
Buffer buffer) |
protected void |
handleServiceRequest(Buffer buffer) |
protected boolean |
handleServiceRequest(java.lang.String serviceName,
Buffer buffer) |
protected boolean |
isRekeyBlocksCountExceeded() |
protected boolean |
isRekeyDataSizeExceeded() |
protected boolean |
isRekeyPacketCountsExceeded() |
protected boolean |
isRekeyRequired() |
protected boolean |
isRekeyTimeIntervalExceeded() |
void |
messageReceived(Readable buffer)
Main input point for the MINA framework.
|
protected java.util.Map<KexProposalOption,java.lang.String> |
negotiate()
Compute the negotiated proposals by merging the client and
server proposal.
|
protected IoWriteFuture |
notImplemented(int cmd,
Buffer buffer)
Send a
SSH_MSG_UNIMPLEMENTED packet. |
protected void |
preClose()
preClose is guaranteed to be called before doCloseGracefully or doCloseImmediately.
|
Buffer |
prepareBuffer(byte cmd,
Buffer buffer)
Prepare a new "clean" buffer while reserving the needed space
(5 bytes) for the packet header.
|
protected abstract boolean |
readIdentification(Buffer buffer)
Read the other side identification.
|
protected byte[] |
receiveKexInit(Buffer buffer) |
protected byte[] |
receiveKexInit(Buffer buffer,
java.util.Map<KexProposalOption,java.lang.String> proposal)
Receive the remote key exchange init message.
|
protected abstract void |
receiveKexInit(java.util.Map<KexProposalOption,java.lang.String> proposal,
byte[] seed) |
protected void |
receiveNewKeys()
Put new keys into use.
|
KeyExchangeFuture |
reExchangeKeys()
Initiate a new key exchange.
|
protected void |
refreshConfiguration()
Refresh whatever internal configuration is not
final |
void |
removeChannelListener(ChannelListener listener)
Remove a channel listener
|
void |
removePortForwardingEventListener(PortForwardingEventListener listener)
Remove a port forwarding listener
|
void |
removeSessionListener(SessionListener listener)
Remove a session listener.
|
Buffer |
request(java.lang.String request,
Buffer buffer,
long timeout,
java.util.concurrent.TimeUnit unit)
Send a global request and wait for the response.
|
protected void |
requestFailure(Buffer buffer)
Indicates the reception of a
SSH_MSG_REQUEST_FAILURE message |
protected KeyExchangeFuture |
requestNewKeysExchange()
Initiates a new keys exchange if one not already in progress
|
protected void |
requestSuccess(Buffer buffer)
Indicates the reception of a
SSH_MSG_REQUEST_SUCCESS message |
protected java.lang.String |
resolveAvailableSignaturesProposal() |
protected abstract java.lang.String |
resolveAvailableSignaturesProposal(FactoryManager manager) |
protected int |
resolveIgnoreBufferDataLength() |
protected byte[] |
sendKexInit() |
protected byte[] |
sendKexInit(java.util.Map<KexProposalOption,java.lang.String> proposal)
Send the key exchange initialization packet.
|
protected java.util.List<java.util.AbstractMap.SimpleImmutableEntry<PendingWriteFuture,IoWriteFuture>> |
sendPendingPackets(java.util.Queue<PendingWriteFuture> packetsQueue) |
protected void |
setClientKexData(byte[] data) |
protected abstract void |
setKexSeed(byte... seed) |
protected java.util.Map<KexProposalOption,java.lang.String> |
setNegotiationResult(java.util.Map<KexProposalOption,java.lang.String> guess) |
protected void |
setServerKexData(byte[] data) |
protected void |
validateKexState(int cmd,
KexState expected) |
protected <B extends Buffer> |
validateTargetBuffer(int cmd,
B buffer)
Makes sure that the buffer used for output is not
null or one
of the session's internal ones used for decoding and uncompressing |
IoWriteFuture |
writePacket(Buffer buffer)
Encode and send the given buffer.
|
attributeKeys, calculateNextIgnorePacketCount, checkAuthenticationTimeout, checkForTimeouts, checkIdleTimeout, clearAttributes, computeAttributeIfAbsent, createProposal, disconnect, doReadIdentification, exceptionCaught, getAttribute, getAttributesCount, getAuthTimeout, getAuthTimeoutStart, getBoundLocalPortForward, getBoundRemotePortForward, getChannelStreamPacketWriterResolver, getConnectionService, getFactoryManager, getForwardingFilter, getIdleTimeout, getIdleTimeoutStart, getIoSession, getLocalForwardsBindings, getLock, getParentPropertyResolver, getProperties, getRemoteForwardsBindings, getReservedSessionMessagesHandler, getStartedLocalPortForwards, getStartedRemotePortForwards, getTimeoutStatus, getUnknownChannelReferenceHandler, getUsername, handleDebug, handleDisconnect, handleDisconnect, handleIgnore, handleUnimplemented, invokeSessionSignaller, isAuthenticated, isLocalPortForwardingStartedForPort, isRemotePortForwardingStartedForPort, isServerSession, mergeProposals, removeAttribute, resetAuthTimeout, resetIdleTimeout, resizeKey, resolveChannelStreamPacketWriterResolver, resolveIdentificationString, resolvePeerAddress, resolveReservedSessionMessagesHandler, resolveUnknownChannelReferenceHandler, sendDebugMessage, sendIdentification, sendIgnoreMessage, sendNewKeys, sendNotImplemented, setAttribute, setAuthenticated, setChannelStreamPacketWriterResolver, setReservedSessionMessagesHandler, setUnknownChannelReferenceHandler, setUsername, signalDisconnect, signalDisconnect, signalExceptionCaught, signalExceptionCaught, signalNegotiationEnd, signalNegotiationEnd, signalNegotiationStart, signalNegotiationStart, signalSessionClosed, signalSessionClosed, signalSessionCreated, signalSessionCreated, signalSessionEvent, signalSessionEvent, toString, writePacketgetCipherFactories, getCompressionFactories, getDelegate, getKeyExchangeFactories, getMacFactories, getSignatureFactories, resolveEffectiveFactories, resolveEffectiveProvider, setCipherFactories, setCompressionFactories, setKeyExchangeFactories, setMacFactories, setSignatureFactoriesdoCloseGracefully, doCloseImmediatelyaddCloseFutureListener, builder, close, isClosed, isClosing, removeCloseFutureListenergetSimplifiedLoggerclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitcreateBuffer, getLocalAddress, getRemoteAddress, resolveAttribute, resolveAttribute, startServiceisValidVersionPrefixgetBoolean, getBooleanProperty, getInteger, getIntProperty, getLong, getLongProperty, getObject, getString, getStringPropertyofAttributesMap, ofKeyValuePairgetCipherFactories, getCipherFactoriesNameList, getCipherFactoriesNames, getCompressionFactories, getCompressionFactoriesNameList, getCompressionFactoriesNames, getKeyExchangeFactories, getMacFactories, getMacFactoriesNameList, getMacFactoriesNames, setCipherFactories, setCipherFactoriesNameList, setCipherFactoriesNames, setCipherFactoriesNames, setCompressionFactories, setCompressionFactoriesNameList, setCompressionFactoriesNames, setCompressionFactoriesNames, setKeyExchangeFactories, setMacFactories, setMacFactoriesNameList, setMacFactoriesNames, setMacFactoriesNamesgetSignatureFactories, getSignatureFactories, getSignatureFactoriesNameList, getSignatureFactoriesNames, resolveSignatureFactories, setSignatureFactories, setSignatureFactoriesNameList, setSignatureFactoriesNames, setSignatureFactoriesNamesresolveChannelStreamPacketWriteraddCloseFutureListener, close, close, close, getMaxCloseWaitTime, isClosed, isClosing, isOpen, removeCloseFutureListenerpublic static final java.lang.String SESSION
getSession(IoSession, boolean)
and attachSession(IoSession, AbstractSession).protected final Random random
protected final java.util.Collection<SessionListener> sessionListeners
protected final SessionListener sessionListenerProxy
protected final java.util.Collection<ChannelListener> channelListeners
protected final ChannelListener channelListenerProxy
protected final java.util.Collection<PortForwardingEventListener> tunnelListeners
protected final PortForwardingEventListener tunnelListenerProxy
protected byte[] sessionId
protected java.lang.String serverVersion
protected java.lang.String clientVersion
protected final java.util.Map<KexProposalOption,java.lang.String> serverProposal
protected final java.util.Map<KexProposalOption,java.lang.String> clientProposal
protected final java.util.Map<KexProposalOption,java.lang.String> negotiationResult
protected KeyExchange kex
protected java.lang.Boolean firstKexPacketFollows
protected final java.util.concurrent.atomic.AtomicReference<KexState> kexState
protected final java.util.concurrent.atomic.AtomicReference<DefaultKeyExchangeFuture> kexFutureHolder
protected Cipher outCipher
protected Cipher inCipher
protected int outCipherSize
protected int inCipherSize
protected Mac outMac
protected Mac inMac
protected byte[] inMacResult
protected Compression outCompression
protected Compression inCompression
protected long seqi
protected long seqo
protected SessionWorkBuffer uncompressBuffer
protected final SessionWorkBuffer decoderBuffer
protected int decoderState
protected int decoderLength
protected final java.lang.Object encodeLock
protected final java.lang.Object decodeLock
protected final java.lang.Object requestLock
protected final java.util.concurrent.atomic.AtomicLong inPacketsCount
protected final java.util.concurrent.atomic.AtomicLong outPacketsCount
protected final java.util.concurrent.atomic.AtomicLong inBytesCount
protected final java.util.concurrent.atomic.AtomicLong outBytesCount
protected final java.util.concurrent.atomic.AtomicLong inBlocksCount
protected final java.util.concurrent.atomic.AtomicLong outBlocksCount
protected final java.util.concurrent.atomic.AtomicLong lastKeyTimeValue
protected long maxRekyPackets
protected long maxRekeyBytes
protected long maxRekeyInterval
protected final java.util.Queue<PendingWriteFuture> pendingPackets
protected Service currentService
protected int ignorePacketDataLength
protected long ignorePacketsFrequency
protected int ignorePacketsVariance
protected final java.util.concurrent.atomic.AtomicLong maxRekeyBlocks
protected final java.util.concurrent.atomic.AtomicLong ignorePacketsCount
private final java.util.concurrent.atomic.AtomicReference<java.lang.Object> requestResult
private byte[] clientKexData
private byte[] serverKexData
protected AbstractSession(boolean serverSession,
FactoryManager factoryManager,
IoSession ioSession)
serverSession - true if this is a server session, false if client onefactoryManager - the factory managerioSession - the underlying I/O sessionpublic java.lang.String getServerVersion()
SessionContextnull/empty if versions not yet exchangedpublic java.lang.String getClientVersion()
SessionContextnull/empty if versions not yet exchangedpublic KeyExchange getKex()
public byte[] getSessionId()
null if
not yet establishedpublic java.lang.String getNegotiatedKexParameter(KexProposalOption paramType)
SessionparamType - The request KexProposalOption value
- ignored if nullnull if invalid
parameter or no negotiated valuepublic CipherInformation getCipherInformation(boolean incoming)
Sessionincoming - If true then the cipher for the incoming data,
otherwise for the outgoing dataCipherInformation - or null if not negotiated yet.public CompressionInformation getCompressionInformation(boolean incoming)
Sessionincoming - If true then the compression for the incoming data,
otherwise for the outgoing dataCompressionInformation - or null if not negotiated yet.public MacInformation getMacInformation(boolean incoming)
Sessionincoming - If true then the MAC for the incoming data,
otherwise for the outgoing dataMacInformation - or null if not negotiated yet.public void messageReceived(Readable buffer) throws java.lang.Exception
Main input point for the MINA framework.
This method will be called each time new data is received on
the socket and will append it to the input buffer before
calling the decode() method.
buffer - the new buffer receivedjava.lang.Exception - if an error occurs while decoding or handling the dataprotected void refreshConfiguration()
finalprotected void handleMessage(Buffer buffer) throws java.lang.Exception
buffer - The Buffer containing the packet - it may be
re-used to generate the response once request has been decodedjava.lang.Exception - if an exception occurs while handling this packet.doHandleMessage(Buffer)protected void doHandleMessage(Buffer buffer) throws java.lang.Exception
java.lang.Exceptionprotected boolean handleFirstKexPacketFollows(int cmd,
Buffer buffer,
boolean followFlag)
protected java.util.AbstractMap.SimpleImmutableEntry<java.lang.String,java.lang.String> comparePreferredKexProposalOption(KexProposalOption option)
protected void handleKexMessage(int cmd,
Buffer buffer)
throws java.lang.Exception
java.lang.Exceptionprotected void handleServiceRequest(Buffer buffer) throws java.lang.Exception
java.lang.Exceptionprotected boolean handleServiceRequest(java.lang.String serviceName,
Buffer buffer)
throws java.lang.Exception
java.lang.Exceptionprotected void handleServiceAccept(Buffer buffer) throws java.lang.Exception
java.lang.Exceptionprotected void handleServiceAccept(java.lang.String serviceName,
Buffer buffer)
throws java.lang.Exception
java.lang.Exceptionprotected void handleKexInit(Buffer buffer) throws java.lang.Exception
java.lang.Exceptionprotected void handleNewKeys(int cmd,
Buffer buffer)
throws java.lang.Exception
java.lang.Exceptionprotected java.util.List<java.util.AbstractMap.SimpleImmutableEntry<PendingWriteFuture,IoWriteFuture>> sendPendingPackets(java.util.Queue<PendingWriteFuture> packetsQueue) throws java.io.IOException
java.io.IOExceptionprotected void validateKexState(int cmd,
KexState expected)
protected Closeable getInnerCloseable()
getInnerCloseable in class AbstractInnerCloseableprotected void preClose()
AbstractCloseablepreClose in class AbstractCloseableprotected java.util.List<Service> getServices()
public <T extends Service> T getService(java.lang.Class<T> clazz)
SessionT - The generic Service typeclazz - The service classpublic IoWriteFuture writePacket(Buffer buffer) throws java.io.IOException
PacketWriterbuffer - the buffer to encode and send. NOTE: the buffer must not be touched
until the returned write future is completed.IoWriteFuture that can be used to check when the packet has actually been sentjava.io.IOException - if an error occurred when encoding sending the packetprotected IoWriteFuture doWritePacket(Buffer buffer) throws java.io.IOException
java.io.IOExceptionprotected int resolveIgnoreBufferDataLength()
public Buffer request(java.lang.String request, Buffer buffer, long timeout, java.util.concurrent.TimeUnit unit) throws java.io.IOException
SessionSSH_MSG_GLOBAL_REQUEST with a result expected, else it will time outrequest - the request name - used mainly for logging and debuggingbuffer - the buffer containing the global requesttimeout - The number of time units to wait - must be positiveunit - The TimeUnit to wait for the responsenull otherwise.java.io.IOException - if an error occurred when encoding sending the packetpublic Buffer createBuffer(byte cmd, int len)
Sessioncmd - The SSH command to initialize the buffer withlen - Estimated number of bytes the buffer will hold, 0 if unknown.Session.prepareBuffer(byte, Buffer)public Buffer prepareBuffer(byte cmd, Buffer buffer)
Sessioncmd - The SSH command to initialize the buffer withbuffer - The Buffer instance to initializeprotected <B extends Buffer> B validateTargetBuffer(int cmd, B buffer)
null or one
of the session's internal ones used for decoding and uncompressingB - The Buffer type being validatedcmd - The most likely command this buffer refers to (not guaranteed to be correct)buffer - The buffer to be examinedjava.lang.IllegalArgumentException - if any of the conditions is violatedprotected Buffer encode(Buffer buffer) throws java.io.IOException
buffer - the buffer to encodeSshConstants.SSH_PACKET_HEADER_LEN,
in which a substitute buffer will be created and used.java.io.IOException - if an exception occurs during the encoding processprotected void decode()
throws java.lang.Exception
java.lang.Exception - If failed to decodeprotected abstract boolean readIdentification(Buffer buffer) throws java.io.IOException, java.security.GeneralSecurityException
SessionHelper.doReadIdentification(Buffer, boolean) and
store the result in the needed property.buffer - The Buffer containing the remote identificationtrue if the identification has been fully read or
false if more data is neededjava.io.IOException - if an error occurs such as a bad protocol versionjava.security.GeneralSecurityException - If unsuccessful KEX was involvedprotected byte[] sendKexInit(java.util.Map<KexProposalOption,java.lang.String> proposal) throws java.io.IOException
proposal - our proposal for key exchange negotiationjava.io.IOException - if an error occurred sending the packetprotected byte[] receiveKexInit(Buffer buffer, java.util.Map<KexProposalOption,java.lang.String> proposal)
buffer - the Buffer containing the key exchange init packetproposal - the remote proposal to fillprotected void receiveNewKeys()
throws java.lang.Exception
java.lang.Exception - if an error occursprotected IoWriteFuture notImplemented(int cmd, Buffer buffer) throws java.lang.Exception
SSH_MSG_UNIMPLEMENTED packet. This packet should
contain the sequence id of the unsupported packet: this number
is assumed to be the last packet received.cmd - The un-implemented command valuebuffer - The Buffer that contains the command. Note: the
buffer's read position is just beyond the command.IoWriteFuture that can be used to wait for packet write
completion - null if the registered ReservedSessionMessagesHandler
decided to handle the command internallyjava.lang.Exception - if an error occurred while handling the packet.SessionHelper.sendNotImplemented(long)protected java.util.Map<KexProposalOption,java.lang.String> negotiate()
negotiationResult property.Mapprotected java.util.Map<KexProposalOption,java.lang.String> setNegotiationResult(java.util.Map<KexProposalOption,java.lang.String> guess)
protected void requestSuccess(Buffer buffer) throws java.lang.Exception
SSH_MSG_REQUEST_SUCCESS messagebuffer - The Buffer containing the message datajava.lang.Exception - If failed to handle the messageprotected void requestFailure(Buffer buffer) throws java.lang.Exception
SSH_MSG_REQUEST_FAILURE messagebuffer - The Buffer containing the message datajava.lang.Exception - If failed to handle the messagepublic void addSessionListener(SessionListener listener)
SessionListenerManagerlistener - The SessionListener to add - not nullpublic void removeSessionListener(SessionListener listener)
SessionListenerManagerlistener - The SessionListener to removepublic SessionListener getSessionListenerProxy()
null proxy SessionListener that represents
all the currently registered listeners. Any method invocation on the proxy
is replicated to the currently registered listenerspublic void addChannelListener(ChannelListener listener)
ChannelListenerManagerlistener - The ChannelListener to add - not nullpublic void removeChannelListener(ChannelListener listener)
ChannelListenerManagerlistener - The ChannelListener to removepublic ChannelListener getChannelListenerProxy()
null proxy ChannelListener that represents
all the currently registered listeners. Any method invocation on the proxy
is replicated to the currently registered listenerspublic PortForwardingEventListener getPortForwardingEventListenerProxy()
public void addPortForwardingEventListener(PortForwardingEventListener listener)
PortForwardingEventListenerManagerlistener - The PortForwardingEventListener to add - never nullpublic void removePortForwardingEventListener(PortForwardingEventListener listener)
PortForwardingEventListenerManagerlistener - The PortForwardingEventListener to remove - ignored if nullpublic KeyExchangeFuture reExchangeKeys() throws java.io.IOException
SessionKeyExchangeFuture for awaiting the completion of the exchangejava.io.IOException - If failed to request keys re-negotiationprotected KeyExchangeFuture checkRekey() throws java.io.IOException, java.security.GeneralSecurityException
KeyExchangeFuture to wait for the initiated exchange
or null if no need to re-key or an exchange is already in progressjava.io.IOException - If failed load the keys or send the requestjava.security.GeneralSecurityException - If failed to generate the necessary keysisRekeyRequired(),
requestNewKeysExchange()protected KeyExchangeFuture requestNewKeysExchange() throws java.io.IOException, java.security.GeneralSecurityException
KeyExchangeFuture to wait for the initiated exchange
or null if an exchange is already in progressjava.io.IOException - If failed to load the keys or send the requestjava.security.GeneralSecurityException - If failed to generate the keysprotected boolean isRekeyRequired()
protected boolean isRekeyTimeIntervalExceeded()
protected boolean isRekeyPacketCountsExceeded()
protected boolean isRekeyDataSizeExceeded()
protected boolean isRekeyBlocksCountExceeded()
protected byte[] sendKexInit()
throws java.io.IOException,
java.security.GeneralSecurityException
java.io.IOExceptionjava.security.GeneralSecurityExceptionprotected byte[] getClientKexData()
protected void setClientKexData(byte[] data)
protected byte[] getServerKexData()
protected void setServerKexData(byte[] data)
protected abstract void setKexSeed(byte... seed)
seed - The result of the KEXINIT handshake - required for correct session key establishmentprotected java.lang.String resolveAvailableSignaturesProposal()
throws java.io.IOException,
java.security.GeneralSecurityException
null/empty if no proposaljava.io.IOException - If failed to read/parse the keys datajava.security.GeneralSecurityException - If failed to generate the keysSessionHelper.getFactoryManager(),
resolveAvailableSignaturesProposal(FactoryManager)protected abstract java.lang.String resolveAvailableSignaturesProposal(FactoryManager manager) throws java.io.IOException, java.security.GeneralSecurityException
manager - The FactoryManagernull/empty if no proposaljava.io.IOException - If failed to read/parse the keys datajava.security.GeneralSecurityException - If failed to generate the keysprotected abstract void checkKeys()
throws java.io.IOException
java.io.IOException - If validation failedprotected byte[] receiveKexInit(Buffer buffer) throws java.io.IOException
java.io.IOExceptionprotected abstract void receiveKexInit(java.util.Map<KexProposalOption,java.lang.String> proposal, byte[] seed) throws java.io.IOException
java.io.IOExceptionpublic static AbstractSession getSession(IoSession ioSession) throws MissingAttachedSessionException
ioSession - The IoSessionMissingAttachedSessionException - if no attached SSH sessiongetSession(IoSession, boolean)public static void attachSession(IoSession ioSession, AbstractSession session) throws MultipleAttachedSessionException
AbstractSession to the I/O sessionioSession - The IoSessionsession - The SSH session to attachMultipleAttachedSessionException - If a previous session already attachedpublic static AbstractSession getSession(IoSession ioSession, boolean allowNull) throws MissingAttachedSessionException
false, an exception will be thrown, otherwise
a null will be returned.ioSession - The IoSessionallowNull - If true, a null value may be returned if no
session is attachednullMissingAttachedSessionException - if no attached session and allowNull=false