Package org.apache.tomcat.util.net
Class AbstractEndpoint<S,U>
java.lang.Object
org.apache.tomcat.util.net.AbstractEndpoint<S,U>
- Type Parameters:
S
- The type used by the socket wrapper associated with this endpoint. May be the same as U.U
- The type of the underlying socket used by this endpoint. May be the same as S.
- Direct Known Subclasses:
AbstractJsseEndpoint
,AprEndpoint
- Author:
- Mladen Turk, Remy Maucherat
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static enum
static interface
-
Field Summary
Modifier and TypeFieldDescriptionThread used to accept new connections and pass them to worker threads.protected int
Deprecated.protected int
Priority of the acceptor threads.Attributes provide a way for configuration to be passed to sub-components without theProtocolHandler
being aware of the properties available on those sub-components.protected Map<U,
SocketWrapperBase<S>> Map holding all current connections keyed with the sockets.protected boolean
Are we using an internal executorprotected boolean
Will be set to true whenever the endpoint is paused.protected SynchronizedStack<SocketProcessorBase<S>>
Cache for SocketProcessor objectsprotected boolean
Running state of the endpoint.protected static final StringManager
protected final SocketProperties
Socket propertiesprotected ConcurrentMap<String,
SSLHostConfig> protected int
Priority of the worker threads. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addNegotiatedProtocol
(String negotiableProtocol) void
addSslHostConfig
(SSLHostConfig sslHostConfig) Add the given SSL Host configuration.void
addSslHostConfig
(SSLHostConfig sslHostConfig, boolean replace) Add the given SSL Host configuration, optionally replacing the existing configuration for the given host.final long
awaitConnectionsClose
(long waitMillis) Wait for the client connections to the server to close gracefully.abstract void
bind()
final void
protected void
closeSocket
(U socket) Close the socket when the connection has to be immediately closed when an error occurs while configuring the accepted socket or trying to dispatch it for processing.protected long
protected void
void
protected abstract SocketProcessorBase<S>
createSocketProcessor
(SocketWrapperBase<S> socketWrapper, SocketEvent event) protected abstract void
createSSLContext
(SSLHostConfig sslHostConfig) Create the SSLContext for the given SSLHostConfig.final void
destroy()
protected abstract void
destroySocket
(U socket) Close the socket.protected void
protected abstract void
Actually close the server socket but don't perform any other clean-up.protected String
generateCertificateDebug
(X509Certificate certificate) int
int
Deprecated.This attribute is hard-coded to1
and is no longer configurable.int
getAttribute
(String key) Used by sub-components to retrieve configuration information.int
Deprecated.boolean
protected AbstractEndpoint.BindState
long
Return the current count of connections handled by this endpoint, if the connections are counted (which happens when the maximum count of connections is limited), or-1
if they are not.int
Socket linger.Get a set with the current open connections.int
Socket timeout.int
Return the amount of threads that are managed by the pool.int
Return the amount of threads that are in useboolean
protected abstract boolean
long
int
protected abstract InetSocketAddress
Obtain the network address the server socket is bound to.final int
protected abstract Log
getLog()
protected Log
int
int
int
int
int
getName()
int
getPort()
int
int
getProperty
(String name) int
Deprecated.int
Deprecated.protected SSLHostConfig
getSSLHostConfig
(String sniHostName) Look up the SSLHostConfig for the given host name.boolean
Socket TCP no delay.int
boolean
boolean
boolean
boolean
void
init()
protected LimitLatch
abstract boolean
Identifies if the endpoint supports ALPN.boolean
isPaused()
boolean
boolean
protected void
logCertificate
(SSLHostConfigCertificate certificate) void
pause()
Pause the endpoint, which will stop it accepting new connections and unlock the acceptor.boolean
processSocket
(SocketWrapperBase<S> socketWrapper, SocketEvent event, boolean dispatch) Process the given SocketWrapper with the given status.protected void
protected void
releaseSSLContext
(SSLHostConfig sslHostConfig) Release the SSLContext, if any, associated with the SSLHostConfig.void
reloadSslHostConfig
(String hostName) Re-read the configuration files for the SSL host and replace the existing SSL configuration with the updated settings.void
Re-read the configuration files for all SSL hosts and replace the existing SSL configuration with the updated settings.removeSslHostConfig
(String hostName) Removes the SSL host configuration for the given host name, if such a configuration exists.void
resume()
Resume the endpoint, which will make it start accepting new connections again.protected abstract U
void
setAcceptCount
(int acceptCount) void
setAcceptorThreadCount
(int acceptorThreadCount) Deprecated.This attribute is hard-coded to1
and is no longer configurable.void
setAcceptorThreadPriority
(int acceptorThreadPriority) void
setAddress
(InetAddress address) void
setAttribute
(String name, Object value) Generic property setter called when a property for which a specific setter already exists within theProtocolHandler
needs to be made available to sub-components.void
setBacklog
(int backlog) Deprecated.void
setBindOnInit
(boolean b) void
setConnectionLinger
(int connectionLinger) void
setConnectionTimeout
(int soTimeout) void
setDaemon
(boolean b) protected abstract void
setDefaultSslHostConfig
(SSLHostConfig sslHostConfig) void
setDefaultSSLHostConfigName
(String defaultSSLHostConfigName) void
void
setExecutor
(Executor executor) void
setExecutorTerminationTimeoutMillis
(long executorTerminationTimeoutMillis) void
setHandler
(AbstractEndpoint.Handler<S> handler) void
setKeepAliveTimeout
(int keepAliveTimeout) void
setMaxConnections
(int maxCon) void
setMaxHeaderCount
(int maxHeaderCount) void
setMaxKeepAliveRequests
(int maxKeepAliveRequests) void
setMaxThreads
(int maxThreads) void
setMinSpareThreads
(int minSpareThreads) void
void
setPort
(int port) void
setPortOffset
(int portOffset) boolean
setProperty
(String name, String value) protected abstract boolean
setSocketOptions
(U socket) void
setSoLinger
(int soLinger) Deprecated.void
setSoTimeout
(int soTimeout) Deprecated.void
setSSLEnabled
(boolean SSLEnabled) void
setTcpNoDelay
(boolean tcpNoDelay) void
setThreadPriority
(int threadPriority) void
setUseAsyncIO
(boolean useAsyncIO) void
setUseSendfile
(boolean useSendfile) void
setUseVirtualThreads
(boolean useVirtualThreads) void
final void
start()
protected void
abstract void
final void
stop()
abstract void
static long
toTimeout
(long timeout) abstract void
unbind()
protected void
Unlock the server socket acceptor threads using bogus connections.
-
Field Details
-
sm
-
running
protected volatile boolean runningRunning state of the endpoint. -
paused
protected volatile boolean pausedWill be set to true whenever the endpoint is paused. -
internalExecutor
protected volatile boolean internalExecutorAre we using an internal executor -
socketProperties
Socket properties -
acceptor
Thread used to accept new connections and pass them to worker threads. -
processorCache
Cache for SocketProcessor objects -
connections
Map holding all current connections keyed with the sockets. -
sslHostConfigs
-
acceptorThreadCount
Deprecated.This attribute is hard-coded to1
and is no longer configurable. It will be removed in Tomcat 10.1.Unused. -
acceptorThreadPriority
protected int acceptorThreadPriorityPriority of the acceptor threads. -
threadPriority
protected int threadPriorityPriority of the worker threads. -
negotiableProtocols
-
attributes
Attributes provide a way for configuration to be passed to sub-components without theProtocolHandler
being aware of the properties available on those sub-components.
-
-
Constructor Details
-
AbstractEndpoint
public AbstractEndpoint()
-
-
Method Details
-
toTimeout
public static long toTimeout(long timeout) -
getSocketProperties
-
getConnections
Get a set with the current open connections.- Returns:
- A set with the open socket wrappers
-
getDefaultSSLHostConfigName
- Returns:
- The host name for the default SSL configuration for this endpoint - always in lower case.
-
setDefaultSSLHostConfigName
-
addSslHostConfig
Add the given SSL Host configuration.- Parameters:
sslHostConfig
- The configuration to add- Throws:
IllegalArgumentException
- If the host name is not valid or if a configuration has already been provided for that host
-
addSslHostConfig
public void addSslHostConfig(SSLHostConfig sslHostConfig, boolean replace) throws IllegalArgumentException Add the given SSL Host configuration, optionally replacing the existing configuration for the given host.- Parameters:
sslHostConfig
- The configuration to addreplace
- Iftrue
replacement of an existing configuration is permitted, otherwise any such attempted replacement will trigger an exception- Throws:
IllegalArgumentException
- If the host name is not valid or if a configuration has already been provided for that host and replacement is not allowed
-
removeSslHostConfig
Removes the SSL host configuration for the given host name, if such a configuration exists.- Parameters:
hostName
- The host name associated with the SSL host configuration to remove- Returns:
- The SSL host configuration that was removed, if any
-
reloadSslHostConfig
Re-read the configuration files for the SSL host and replace the existing SSL configuration with the updated settings. Note this replacement will happen even if the settings remain unchanged.- Parameters:
hostName
- The SSL host for which the configuration should be reloaded. This must match a current SSL host
-
reloadSslHostConfigs
public void reloadSslHostConfigs()Re-read the configuration files for all SSL hosts and replace the existing SSL configuration with the updated settings. Note this replacement will happen even if the settings remain unchanged. -
findSslHostConfigs
-
createSSLContext
Create the SSLContext for the given SSLHostConfig.- Parameters:
sslHostConfig
- The SSLHostConfig for which the SSLContext should be created- Throws:
Exception
- If the SSLContext cannot be created for the given SSLHostConfig
-
setDefaultSslHostConfig
-
logCertificate
-
generateCertificateDebug
-
destroySsl
- Throws:
Exception
-
releaseSSLContext
Release the SSLContext, if any, associated with the SSLHostConfig.- Parameters:
sslHostConfig
- The SSLHostConfig for which the SSLContext should be released
-
getSSLHostConfig
Look up the SSLHostConfig for the given host name. Lookup order is:- exact match
- wild card match
- default SSLHostConfig
- Parameters:
sniHostName
- Host name - must be in lower case- Returns:
- The SSLHostConfig for the given host name.
-
getUseSendfile
public boolean getUseSendfile() -
setUseSendfile
public void setUseSendfile(boolean useSendfile) -
getExecutorTerminationTimeoutMillis
public long getExecutorTerminationTimeoutMillis() -
setExecutorTerminationTimeoutMillis
public void setExecutorTerminationTimeoutMillis(long executorTerminationTimeoutMillis) -
setAcceptorThreadCount
Deprecated.This attribute is hard-coded to1
and is no longer configurable. This setter will be removed in Tomcat 10.Unused.- Parameters:
acceptorThreadCount
- Ignored
-
getAcceptorThreadCount
Deprecated.This attribute is hard-coded to1
and is no longer configurable. This getter will be removed in Tomcat 10.Unused.- Returns:
- Always returns
1
-
setAcceptorThreadPriority
public void setAcceptorThreadPriority(int acceptorThreadPriority) -
getAcceptorThreadPriority
public int getAcceptorThreadPriority() -
setMaxConnections
public void setMaxConnections(int maxCon) -
getMaxConnections
public int getMaxConnections() -
getConnectionCount
public long getConnectionCount()Return the current count of connections handled by this endpoint, if the connections are counted (which happens when the maximum count of connections is limited), or-1
if they are not. This property is added here so that this value can be inspected through JMX. It is visible on "ThreadPool" MBean.The count is incremented by the Acceptor before it tries to accept a new connection. Until the limit is reached and thus the count cannot be incremented, this value is more by 1 (the count of acceptors) than the actual count of connections that are being served.
- Returns:
- The count
-
setExecutor
-
getExecutor
-
setUseVirtualThreads
public void setUseVirtualThreads(boolean useVirtualThreads) -
getUseVirtualThreads
public boolean getUseVirtualThreads() -
getPort
public int getPort() -
setPort
public void setPort(int port) -
getPortOffset
public int getPortOffset() -
setPortOffset
public void setPortOffset(int portOffset) -
getPortWithOffset
public int getPortWithOffset() -
getLocalPort
public final int getLocalPort() -
getAddress
-
setAddress
-
getLocalAddress
Obtain the network address the server socket is bound to. This primarily exists to enable the correct address to be used when unlocking the server socket since it removes the guess-work involved if no address is specifically set.- Returns:
- The network address that the server socket is listening on or null if the server socket is not currently bound.
- Throws:
IOException
- If there is a problem determining the currently bound socket
-
setAcceptCount
public void setAcceptCount(int acceptCount) -
getAcceptCount
public int getAcceptCount() -
setBacklog
Deprecated. -
getBacklog
Deprecated. -
getBindOnInit
public boolean getBindOnInit() -
setBindOnInit
public void setBindOnInit(boolean b) -
getBindState
-
getKeepAliveTimeout
public int getKeepAliveTimeout() -
setKeepAliveTimeout
public void setKeepAliveTimeout(int keepAliveTimeout) -
getTcpNoDelay
public boolean getTcpNoDelay()Socket TCP no delay.- Returns:
- The current TCP no delay setting for sockets created by this endpoint
-
setTcpNoDelay
public void setTcpNoDelay(boolean tcpNoDelay) -
getConnectionLinger
public int getConnectionLinger()Socket linger.- Returns:
- The current socket linger time for sockets created by this endpoint
-
setConnectionLinger
public void setConnectionLinger(int connectionLinger) -
getSoLinger
Deprecated. -
setSoLinger
Deprecated. -
getConnectionTimeout
public int getConnectionTimeout()Socket timeout.- Returns:
- The current socket timeout for sockets created by this endpoint
-
setConnectionTimeout
public void setConnectionTimeout(int soTimeout) -
getSoTimeout
Deprecated. -
setSoTimeout
Deprecated. -
isSSLEnabled
public boolean isSSLEnabled() -
setSSLEnabled
public void setSSLEnabled(boolean SSLEnabled) -
isAlpnSupported
public abstract boolean isAlpnSupported()Identifies if the endpoint supports ALPN. Note that a return value oftrue
implies thatisSSLEnabled()
will also returntrue
.- Returns:
true
if the endpoint supports ALPN in its current configuration, otherwisefalse
.
-
setMinSpareThreads
public void setMinSpareThreads(int minSpareThreads) -
getMinSpareThreads
public int getMinSpareThreads() -
setMaxThreads
public void setMaxThreads(int maxThreads) -
getMaxThreads
public int getMaxThreads() -
setThreadPriority
public void setThreadPriority(int threadPriority) -
getThreadPriority
public int getThreadPriority() -
getMaxKeepAliveRequests
public int getMaxKeepAliveRequests() -
setMaxKeepAliveRequests
public void setMaxKeepAliveRequests(int maxKeepAliveRequests) -
getMaxHeaderCount
public int getMaxHeaderCount() -
setMaxHeaderCount
public void setMaxHeaderCount(int maxHeaderCount) -
setName
-
getName
-
setDomain
-
getDomain
-
setDaemon
public void setDaemon(boolean b) -
getDaemon
public boolean getDaemon() -
setUseAsyncIO
public void setUseAsyncIO(boolean useAsyncIO) -
getUseAsyncIO
public boolean getUseAsyncIO() -
getDeferAccept
protected abstract boolean getDeferAccept() -
addNegotiatedProtocol
-
hasNegotiableProtocols
public boolean hasNegotiableProtocols() -
setHandler
-
getHandler
-
setAttribute
Generic property setter called when a property for which a specific setter already exists within theProtocolHandler
needs to be made available to sub-components. The specific setter will call this method to populate the attributes.- Parameters:
name
- Name of property to setvalue
- The value to set the property to
-
getAttribute
Used by sub-components to retrieve configuration information.- Parameters:
key
- The name of the property for which the value should be retrieved- Returns:
- The value of the specified property
-
setProperty
-
getProperty
-
getCurrentThreadCount
public int getCurrentThreadCount()Return the amount of threads that are managed by the pool.- Returns:
- the amount of threads that are managed by the pool
-
getCurrentThreadsBusy
public int getCurrentThreadsBusy()Return the amount of threads that are in use- Returns:
- the amount of threads that are in use
-
isRunning
public boolean isRunning() -
isPaused
public boolean isPaused() -
createExecutor
public void createExecutor() -
shutdownExecutor
public void shutdownExecutor() -
unlockAccept
protected void unlockAccept()Unlock the server socket acceptor threads using bogus connections. -
processSocket
public boolean processSocket(SocketWrapperBase<S> socketWrapper, SocketEvent event, boolean dispatch) Process the given SocketWrapper with the given status. Used to trigger processing as if the Poller (for those endpoints that have one) selected the socket.- Parameters:
socketWrapper
- The socket wrapper to processevent
- The socket event to be processeddispatch
- Should the processing be performed on a new container thread- Returns:
- if processing was triggered successfully
-
createSocketProcessor
protected abstract SocketProcessorBase<S> createSocketProcessor(SocketWrapperBase<S> socketWrapper, SocketEvent event) -
bind
- Throws:
Exception
-
unbind
- Throws:
Exception
-
startInternal
- Throws:
Exception
-
stopInternal
- Throws:
Exception
-
init
- Throws:
Exception
-
start
- Throws:
Exception
-
startAcceptorThread
protected void startAcceptorThread() -
pause
public void pause()Pause the endpoint, which will stop it accepting new connections and unlock the acceptor. -
resume
public void resume()Resume the endpoint, which will make it start accepting new connections again. -
stop
- Throws:
Exception
-
destroy
- Throws:
Exception
-
getLog
-
getLogCertificate
-
initializeConnectionLatch
-
releaseConnectionLatch
protected void releaseConnectionLatch() -
countUpOrAwaitConnection
- Throws:
InterruptedException
-
countDownConnection
protected long countDownConnection() -
closeServerSocketGraceful
public final void closeServerSocketGraceful()Close the server socket (to prevent further connections) if the server socket was originally bound onstart()
(rather than oninit()
).- See Also:
-
awaitConnectionsClose
public final long awaitConnectionsClose(long waitMillis) Wait for the client connections to the server to close gracefully. The method will return when all of the client connections have closed or the method has been waiting forwaitTimeMillis
.- Parameters:
waitMillis
- The maximum time to wait in milliseconds for the client connections to close.- Returns:
- The wait time, if any remaining when the method returned
-
doCloseServerSocket
Actually close the server socket but don't perform any other clean-up.- Throws:
IOException
- If an error occurs closing the socket
-
serverSocketAccept
- Throws:
Exception
-
setSocketOptions
-
closeSocket
Close the socket when the connection has to be immediately closed when an error occurs while configuring the accepted socket or trying to dispatch it for processing. The wrapper associated with the socket will be used for the close.- Parameters:
socket
- The newly accepted socket
-
destroySocket
Close the socket. This is used when the connector is not in a state which allows processing the socket, or if there was an error which prevented the allocation of the socket wrapper.- Parameters:
socket
- The newly accepted socket
-
1
and is no longer configurable.