Class AbstractProxyServlet
- All Implemented Interfaces:
jakarta.servlet.Servlet
,jakarta.servlet.ServletConfig
,Serializable
- Direct Known Subclasses:
AsyncMiddleManServlet
,ProxyServlet
Abstract base class for proxy servlets.
Forwards requests to another server either as a standard web reverse proxy or as a transparent reverse proxy (as defined by RFC 7230).
To facilitate JMX monitoring, the HttpClient
instance is set
as ServletContext attribute, prefixed with this servlet's name and
exposed by the mechanism provided by
ServletContext.setAttribute(String, Object)
.
The following init parameters may be used to configure the servlet:
- preserveHost - the host header specified by the client is forwarded to the server
- hostHeader - forces the host header to a particular value
- viaHost - the name to use in the Via header: Via: http/1.1 <viaHost>
- whiteList - comma-separated list of allowed proxy hosts
- blackList - comma-separated list of forbidden proxy hosts
In addition, see createHttpClient()
for init parameters
used to configure the HttpClient
instance.
NOTE: By default the Host header sent to the server by this proxy
servlet is the server's host name. However, this breaks redirects.
Set preserveHost
to true
to make redirects working,
although this may break server's virtual host selection.
The default behavior of not preserving the Host header mimics the default behavior of Apache httpd and Nginx, which both have a way to be configured to preserve the Host header.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static class
Utility class that implement transparent proxy functionalities. -
Field Summary
Fields inherited from class jakarta.servlet.http.HttpServlet
LEGACY_DO_HEAD
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
addProxyHeaders
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected void
addViaHeader
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Adds the HTTPVia
header to the proxied request, taking into account data present in the client request.protected void
addViaHeader
(Request proxyRequest) Adds the HTTPVia
header to the proxied request.protected void
addXForwardedHeaders
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected int
clientRequestStatus
(Throwable failure) protected void
copyRequestHeaders
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected HttpClient
Creates aHttpClient
instance, configured with init parameters of this servlet.protected org.slf4j.Logger
void
destroy()
protected boolean
expects100Continue
(jakarta.servlet.http.HttpServletRequest request) protected String
filterServerResponseHeader
(jakarta.servlet.http.HttpServletRequest clientRequest, Response serverResponse, String headerName, String headerValue) findConnectionHeaders
(jakarta.servlet.http.HttpServletRequest clientRequest) protected HttpClient
protected int
getRequestId
(jakarta.servlet.http.HttpServletRequest clientRequest) long
protected boolean
hasContent
(jakarta.servlet.http.HttpServletRequest clientRequest) void
init()
protected ClientConnector
protected HttpClient
The servlet init parameter 'selectors' can be set for the number of selector threads to be used by the HttpClient.protected HttpClient
newHttpClient
(ClientConnector clientConnector) protected Request
newProxyRequest
(jakarta.servlet.http.HttpServletRequest request, String rewrittenTarget) protected abstract Response.CompleteListener
newProxyResponseListener
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse) protected void
onClientRequestFailure
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Throwable failure) protected Runnable
onContinue
(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected void
onProxyResponseFailure
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Response serverResponse, Throwable failure) protected void
onProxyResponseSuccess
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Response serverResponse) protected void
onProxyRewriteFailed
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse) Callback method invoked when the URI rewrite performed inrewriteTarget(HttpServletRequest)
returns null indicating that no rewrite can be performed.protected void
onServerResponseHeaders
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Response serverResponse) protected int
proxyResponseStatus
(Throwable failure) protected String
rewriteTarget
(jakarta.servlet.http.HttpServletRequest clientRequest) protected void
sendProxyRequest
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected void
sendProxyResponseError
(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, int status) void
setTimeout
(long timeout) boolean
validateDestination
(String host, int port) Checks the givenhost
andport
against whitelist and blacklist.Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, init, service, service
Methods inherited from class jakarta.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, log, log
-
Field Details
-
CLIENT_REQUEST_ATTRIBUTE
- See Also:
-
HOP_HEADERS
-
_log
protected org.slf4j.Logger _log
-
-
Constructor Details
-
AbstractProxyServlet
public AbstractProxyServlet()
-
-
Method Details
-
init
public void init() throws jakarta.servlet.ServletException- Overrides:
init
in classjakarta.servlet.GenericServlet
- Throws:
jakarta.servlet.ServletException
-
destroy
public void destroy()- Specified by:
destroy
in interfacejakarta.servlet.Servlet
- Overrides:
destroy
in classjakarta.servlet.GenericServlet
-
getHostHeader
-
getViaHost
-
getTimeout
public long getTimeout() -
setTimeout
public void setTimeout(long timeout) -
getWhiteListHosts
-
getBlackListHosts
-
createLogger
protected org.slf4j.Logger createLogger()- Returns:
- a logger instance with a name derived from this servlet's name.
-
createHttpClient
Creates a
HttpClient
instance, configured with init parameters of this servlet.The init parameters used to configure the
HttpClient
instance are:Init Parameters init-param default description maxThreads 256 The max number of threads of HttpClient's Executor. If not set, or set to the value of "-", then the Jetty server thread pool will be used. maxConnections 32768 The max number of connections per destination, see HttpClient.setMaxConnectionsPerDestination(int)
idleTimeout 30000 The idle timeout in milliseconds, see HttpClient.setIdleTimeout(long)
timeout 60000 The total timeout in milliseconds, see Request.timeout(long, java.util.concurrent.TimeUnit)
requestBufferSize HttpClient's default The request buffer size, see HttpClient.setRequestBufferSize(int)
responseBufferSize HttpClient's default The response buffer size, see HttpClient.setResponseBufferSize(int)
maxResponseHeadersSize HttpClient's default The maximum response headers size, see HttpClient.setMaxResponseHeadersSize(int)
selectors cores / 2 The number of NIO selectors used by HttpClient
- Returns:
- a
HttpClient
configured from theservlet configuration
- Throws:
jakarta.servlet.ServletException
- if theHttpClient
cannot be created- See Also:
-
newHttpClient
The servlet init parameter 'selectors' can be set for the number of selector threads to be used by the HttpClient.- Returns:
- a new HttpClient instance
-
newHttpClient
-
newClientConnector
-
getHttpClient
-
validateDestination
Checks the givenhost
andport
against whitelist and blacklist.- Parameters:
host
- the host to checkport
- the port to check- Returns:
- true if it is allowed to be proxy to the given host and port
-
rewriteTarget
-
onProxyRewriteFailed
protected void onProxyRewriteFailed(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse) Callback method invoked when the URI rewrite performed in
rewriteTarget(HttpServletRequest)
returns null indicating that no rewrite can be performed.It is possible to use blocking API in this method, like
HttpServletResponse.sendError(int)
.- Parameters:
clientRequest
- the client requestproxyResponse
- the client response
-
hasContent
protected boolean hasContent(jakarta.servlet.http.HttpServletRequest clientRequest) -
expects100Continue
protected boolean expects100Continue(jakarta.servlet.http.HttpServletRequest request) -
newProxyRequest
-
copyRequestHeaders
protected void copyRequestHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) -
findConnectionHeaders
-
addProxyHeaders
protected void addProxyHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) -
addViaHeader
Adds the HTTPVia
header to the proxied request.- Parameters:
proxyRequest
- the request being proxied- See Also:
-
addViaHeader
protected void addViaHeader(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Adds the HTTP
Via
header to the proxied request, taking into account data present in the client request.This method considers the protocol of the client request when forming the proxied request. If it is HTTP, then the protocol name will not be included in the
Via
header that is sent by the proxy, and only the protocol version will be sent. If it is not, the entire protocol (name and version) will be included. If the client request includes aVia
header, the result will be appended to that to form a chain.- Parameters:
clientRequest
- the client requestproxyRequest
- the request being proxied- See Also:
-
addXForwardedHeaders
protected void addXForwardedHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) -
sendProxyRequest
protected void sendProxyRequest(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) -
newProxyResponseListener
protected abstract Response.CompleteListener newProxyResponseListener(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse) -
onClientRequestFailure
-
clientRequestStatus
-
onServerResponseHeaders
protected void onServerResponseHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Response serverResponse) -
filterServerResponseHeader
-
onProxyResponseSuccess
protected void onProxyResponseSuccess(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Response serverResponse) -
onProxyResponseFailure
-
proxyResponseStatus
-
getRequestId
protected int getRequestId(jakarta.servlet.http.HttpServletRequest clientRequest) -
sendProxyResponseError
protected void sendProxyResponseError(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, int status) -
onContinue
-