proposal: add subprotocol for token-authenticated websockets#1407
proposal: add subprotocol for token-authenticated websockets#1407minrk wants to merge 3 commits into
Conversation
follows kubernetes' example of smuggling the token in the subprotocol itself
|
Unfortunately, upon further testing this is trivially backward-compatible for clients except on Chrome, where requesting a subprotocol that is not granted results in a dropped connection. So for a client to be backward-compatible, it would have to try with the subprotocol, then fallback to without the subprotocol if it doesn't have another way to determine whether the subprotocol is supported. Since we use subprotocols for the kernel already which already present the same issue, JupyterLab already has the necessary logic to try connecting with subprotocols, then fallback without them. |
|
Not sure if it's relevant, but we use subprotocols in the kernel protocol over WebSocket, maybe this helps: #657 (comment). |
Chrome doesn't accept websocket connections if protocol is requested but not provided
7f309b3 to
aef6348
Compare
|
@davidbrochart Thanks for linking to the discussion. I did mention the JupyterLab implementation of subprotocol fallback for that, so I think we have everything we need for this, at least in JupyterLab, and have precedent. A kernel request would have subprotocols = ["v1.kernel.websocket.jupyter.org", "v1.token.websocket.jupyter.org", "v1.token.websocket.jupyter.org.abc123"]and the response would be unchanged, selecting |
|
Started JEP process for this, if that makes sense to folks: jupyter/enhancement-proposals#119 |
follows kubernetes' example of smuggling the token in the subprotocol itself. Maybe not great, but solves our problem and is simple and appears to work.
To authenticate websockets via new mechanism, clients should:
which sets the header:
The response will have the header:
This is transparently ignored if unrecognized, so fully backward compatible for both clients and servers, and fully compatible with specifying other subprotocols, etc.This is transparently ignored if unrecognized by servers and most clients, but at least Chrome checks that the server's response includes one of the requested subprotocols if any are specified. For backward-compatibility, a client must try with subprotocols, then retry without them. This is the reason for the
v1.token.websocket.juptyer.orgsubprotocol in addition to the protocol including the token itself.This seems like the simplest path to not sending the token in URL parameters. The alternative of using a handshake message is more complex and protocol-breaking, and further allows clients that never authenticate to hold open connections indefinitely.
Notable difference: kubernetes base64-encodes the token on the end. I haven't done that because negotiating url-safe-base64-without-padding seems like a pain because:
I think the only question that remains is whether and how servers advertise support for this.
via