-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Case-insensitive TLS host matching #5456
Case-insensitive TLS host matching #5456
Conversation
Hi @AndiDog. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Just in case, even with this change, you will see the same error. The Ingress validation is done in Kubernetes itself, not ingress-nginx |
/ok-to-test |
/retest |
/assign |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aledbf, AndiDog The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
2 similar comments
/retest |
/retest |
What this PR does / why we need it:
Right now, TLS host comparison is implemented as case-sensitive. For example, compressed QR codes of alphanumeric type only allow uppercase letters, and therefore a URL contained in a QR code might also be requested as-is (with uppercase domain name and query) depending on the client. DNS/X509-related RFCs state that comparison must be case-insensitive for the ASCII human-readable character range. That is already the case for
VerifyHostname
and correctly implemented for certificate SAN/CN matching, but the controller also first has to match the host against an ingress rule. This PR fixes the comparison.Before the fix:
There is no obvious workaround to accept uppercase host names:
Types of changes
How Has This Been Tested?
New unit test which was failing before the fix
Checklist: