-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminated Listener SNI and hostname matching #2417
Comments
nit: If the Listener hostname is |
Thanks for writing this up @youngnick! My concern here is that I think the proposed behavior here may not be broadly implementable. I agree that we need to be very careful to avoid surprises like domain fronting. The more I think about this, the more I wonder if the proposed resolution to #2416 would also resolve this. Since we already have this guidance that requires Routes attached to listeners to have a matching hostname when one is specified, this would ensure that at least domain fronting would not result in different routing behavior: gateway-api/apis/v1beta1/gateway_types.go Lines 190 to 194 in 2457533
This could still be problematic when the request matches the backend with an unexpected host header, but I think that's a significantly smaller problem than for example bypassing client cert validation or being routed to an unexpected backend. |
This will need to take into account 421 status code and certificates as well. SNI and Host headers are not the only variables. "Gateway API implementations enforce that the SNI and the Host header match" (without more nuance) is not complying with HTTP2 specification and will break browsers. On the meeting you mentioned this as well, just want to make sure we take this into account. |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Still need to get to this at some point. /remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Still needs to be done. /remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
still in there. /remove-lifecycle stale |
Another issue to have come out of the discussion on #2288 is that of how hostname matches are performed when traffic matchin on HTTPRoutes when those HTTPRoutes are attached to a Listener that is terminating HTTPS.
When that is happening, there are at least two places where the hostname can be matched - the SNI (Server Name Indicator) that's used as part of the TLS negotiation, and the
Host:
header that's handled as part of the HTTP request.It's both not immediately obvious and critically important for TLS security that Gateway API implementations enforce that the SNI and the
Host
header match, using the usual hostname matching rules.This is really important once we add external client certificate validation (as in #2273). If we don't mandate that the SNI and
Host
header match, then it's possible to bypass client certificate validation by adding another hostname to the same Gateway implementation, using that as the SNI, and then specifying the secure hostname as theHost
header.An example:
We have a secure listener on
secure.example.com
- this Listener requires a client certificate to authenticate external clients, and uses a HTTPRoute that forwards to thesecure
backend.However, if I also add an
insecure.example.com
Listener that also requires TLS, but when performing the actual HTTP request, we send an SNI ofinsecure.example.com
and aHost
header ofsecure.example.com
, then it's possible to bypass the client certificate requirement, through no fault of the owner of thesecure
backend.To address this, I propose the following rules:
(in this part, for simplicity, I'm only going to discuss as though the
hostname
is set as the Listener level, but remember that there is ahostname
-matching part of HTTPRoute attachment that can complicate this further).That is:
hostname
is precise -cafe.example.com
, then both the SNI andHost
header must be equal tocafe.example.com
.hostname
is precise -*.example.com
, then both the SNI andHost
header must still be the same value. For example, bothcafe.example.com
andstoreroom.example.com
are valid matches, but in either case, both the SNI andHost
header must be set to the same value.If the SNI and
Host
header are not exactly equal, then the request must be rejected (the exact error code I'm not sure on at the moment, but probably something in the 4xx range, since it's a property of the user request.)The text was updated successfully, but these errors were encountered: