-
Notifications
You must be signed in to change notification settings - Fork 84
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
tls: SAN verification changed in Envoy #630
Comments
Description: this PR updates Envoy Mobile's Envoy ref past the point where Envoy internally uses v3 config. I took the chance to update Envoy Mobile's config and delete deprecated fields. Note that SAN verification changes, and thus it was removed here. I opened an issue tracking #630. Further note that this ref update significantly increased the binary size. It is a priority for the team to investigate and trim the binary ahead of the v0.3 release (noted in #447) Risk Level: med boost to v3 config and deleted deprecated fields. Testing: passing liveliness in CI and locally. Signed-off-by: Jose Nino <[email protected]>
I believe this is relevant, and would allow us to do SAN based on authority. Need to read more carefully, but want to put here before I forget envoyproxy/envoy#9863 |
wildcard matching is getting fixed in Envoy in envoyproxy/envoy#10005 |
envoyproxy/envoy#9863 made it so that the dynamic forward proxy automatically does SAN validation. via the verifySubjectAltName path based on the host/authority header. Therefore, after #663 Envoy Mobile has been verifying SAN. envoyproxy/envoy#10005 was not needed as the auto san path does not use the matcher code and in fact envoyproxy/envoy#10005 moves exact matches in static SAN config to use the same code as the dynamic SAN verification uses. |
SAN verification changed in Envoy in envoyproxy/envoy#9264. Therefore, for v3 config it is not as easy as to put the configured
domain
as a SAN to verify, as there is no wildcard matching as there was before. i.e foo.company.com in the config will no longer match *.company.com in the presented certificate.#626 deleted SAN verification until a better option is exposed in Envoy Mobile.
The text was updated successfully, but these errors were encountered: