Websocket incoming frame parsing fixes - #473
willmmiles wants to merge 4 commits into
Conversation
|
How do you folks feel about the state machine parser? Is the robustness worth the performance cost, or should we instead try buffering the header (spends more RAM and/or we're playing I don't have a good way to quantify the performance either, all of our benchmarks so far have focused on outgoing frames. |
That's a tricky question! I think we could test that with websocat. |
9ba38e6 to
7e0ee46
Compare
|
I'm working on some test cases for the fixes. Claude and I have found that the last fix (close reason handling) isn't really sufficient - we will have to defragment control frames for standards compliant operation. Stand by for more code. |
7e0ee46 to
6cca924
Compare
|
I read recently that modern AI is really, really good at finding all the bugs you ask it for. This is definitely turning out to be my experience here! I'm trying to validate the close-on-error semantics and it's turning in to a rabbit hole. There's a pernicious corner case with ... and there's more: in most cases where we close as a result of the client asking (like AsyncWebSocket), we must ack the bytes read before closing. Otherwise the TCP stack generates a RST-close instead of a FIN-close, as is required by the TCP protocol, to indicate that the remote client did not in fact consume all bytes. Even if it was safe to call I'm going to think about this one a bit -- wanted to share where it's at, though. |
it's like we need a "deferred" close ? |
Yup, that's one approach. Basically the solution space breaks down to:
Lots to think about. |
Use a state machine to process headers byte-by-byte so we can handle partial reception at any point.
If a control frame spans multiple TCP packets, buffer the data so that the frame can be processed once fully received. This ensures that the frame can be correctly handled instead of generating invalid PONG responses or overrunning the buffer with a disconnect reason.
6cca924 to
ddf5ce9
Compare
ESP32Async/AsyncTCP#124 implents this solution - it adds that guarantee that it's safe to I've pushed one more commit here that reorders things so it's "as safe as possible" with older AsyncTCP. This is as good as it'll get, I think. |
|
Reporting back with the real-Safari disconnect testing you flagged as untestable — done against Three disconnect paths from Safari (macOS, same machine the WS server sees):
Across the whole session: zero panics, zero reboots, zero error lines, no dropped-frame accounting anomalies, heartbeat cadence continuous. Heap floor during the Safari load + reconnect burst was ~7.9 KB with all responses completing. Honest caveat: this is black-box validation — I did not capture the wire bytes, so I cannot prove the specific "missing mask on close frame" Safari quirk actually fired; what I can say is that repeated real-Safari disconnects (all three styles, several rounds) never upset the parser. If you want wire-level evidence of that exact frame shape, I can arrange a capture. Combined with the earlier torn-frame injection suite (64 injections across header/mask/payload/close tears + fuzz, all clean, connection survives torn headers and keeps answering — reported in #481), our side has nothing blocking this PR. |
Thanks, that's still very helpful. As part of the patch development process my harness and I ended up building a byte-by-byte socket test sequence for validating that the code works as designed, but I don't have any Apple devices on hand to see what any particular version of Safari actually sends. Thanks for giving it a try and providing feedback. |
Fix handling of incoming frame headers that span multiple packets, a corner case processing very large frames, and an edge case handling disconnect frames that are split between packets.
Filed as draft for these open concerns: