Issue
I made a JSR-356 @ServerEndpoint
in which I want to limit alive connections from single IP address, to prevent simple DDOS attacks.
Note that I'm search for Java solution (JSR-356, Tomcat or Servlet 3.0 specs).
I have tried custom endpoint configurer but I don't have access to IP address even in HandshakeRequest
object.
How to limit JSR-356 connection count from single IP address without external software like iptables?
Solution
According to Tomcat developer @mark-thomas client IP is not exposed via JSR-356 thus it is impossible to implement such a function with pure JSR-356 API-s.
You have to use a rather ugly hack to work around the limitation of the standard.
What needs to be done boils down to:
- Generate each user a token that contains their IP on initial request (before websocket handshake)
- Pass the token down the chain until it reaches endpoint implementation
There are at least two hacky options to achieve that.
Use HttpSession
- Listen to incoming HTTP requests with a
ServletRequestListener
- Call
request.getSession()
on incoming request to ensure it has a session and store client IP as a session attribute. - Create a
ServerEndpointConfig.Configurator
that lifts client IP fromHandshakeRequest#getHttpSession
and attaches it toEndpointConfig
as a user property using themodifyHandshake
method. - Get the client IP from
EndpointConfig
user properties, store it in map or whatever and trigger cleanup logic if the number of sessions per IP exceeds a threshold.
You can also use a @WebFilter
instead of ServletRequestListener
Note that this option can have a high resource consumption unless your application already uses sessions e.g. for authentication purposes.
Pass IP as an encrypted token in the URL
- Create a servlet or a filter that attaches to a non websocket entry point. e.g.
/mychat
- Get client IP, encrypt it with a random salt and a secret key to generate a token.
- Use
ServletRequest#getRequestDispatcher
to forward the request to/mychat/TOKEN
- Configure your endpoint to use path parameters e.g.
@ServerEndpoint("/mychat/{token}")
- Lift the token from
@PathParam
and decrypt to get client IP. Store it in map or whatever and trigger cleanup logic if the number of sessions per IP exceeds a threshold.
For ease of installation you may wish to generate encryption keys on application startup.
Please note that you need to encrypt the IP even if you are doing an internal dispatch that is not visible to the client. There is nothing that would stop an attacker from connecting to /mychat/2.3.4.5
directly thus spoofing the client IP if it's not encrypted.
See also:
- apache tomcat 8 websocket origin and client address
- Find number of active sessions created from a given client IP
- Accessing HttpSession from HttpServletRequest in a Web Socket @ServerEndpoint
- https://tyrus.java.net/documentation/1.4/index/websocket-api.html
- http://docs.oracle.com/javaee/7/tutorial/doc/websocket010.htm#BABJAIGH
Answered By - anttix