MediaBrowser / SocketHttpListener

A standalone HttpListener with support for SSL, WebSockets and Mono
MIT License
42 stars 14 forks source link

Support for configurable timeouts #17

Open tekhedd opened 7 years ago

tekhedd commented 7 years ago

Minimal support for TCP timeouts, with tests.

There are several issues remaining in the code. In particular, several of the "Begin..." asynchronous I/O functions actually call the blocking Write functions on the socket, and are therefore dependent on the socket's SendTimeout if a connection is abandoned. A thread that is using timeouts with "async" could still end up blocking forever if a socket is abandoned at exactly the right time, although this is not necessariy an urgent problem: this issue is mostly applicable to flushing headers, and these fit into I/O buffers most of the time.

The timeouts as documented should time the "total time" to perform an action, for example to read the header, but this code applies the timeouts to indivual read/write operations. Therefore, the listener is still vulnerable to tarpit style DOS attacks.

tekhedd commented 7 years ago

Notes:

LukePulverenti commented 7 years ago

Thanks, just one thing to be aware of. I'm trying to mirror the mono http listener as much as possible while only adding features that it is missing: https://github.com/mono/mono/tree/master/mcs/class/System/System.Net

The idea is that hopefully we eventually won't even need this anymore once they add WebSocket support. I guess if you're mirroring newer .net classes that is good because the mono version will probably later go that way, but just keep it in mind.

tekhedd commented 7 years ago

I had guessed standards-compatibility was a goal. Yes, I was sorely tempted to rename the timeout fields from the somewhat silly IIS-derived names they have now. :) But I was strong.

I thought I'd submit what I did so far more for comment right away. I'm actually pretty proud of the socket tests--networking code can be very tricky to get right. It was two days before I realized that "FlushInput" actually works correctly because the input stream considers itself "empty" when it has read the entire entity body.

I wonder if I should be submitting this upstream to the mono project, as the current code's failure modes are "very bad" in the face of flaky networking and capricious corporate firewalls: infinite timeouts and hung threads.

I could (and probably should) remove largely-unnecessary timer class and changes, to keep the changes minimal. The other changes, well, they're not sexy, but this provides the bare minimum required for a production environment.