Skip to content
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

If hostname verification fails, store_context.error is V_OK #244

Closed
joshcooper opened this issue Feb 20, 2019 · 1 comment
Closed

If hostname verification fails, store_context.error is V_OK #244

joshcooper opened this issue Feb 20, 2019 · 1 comment

Comments

@joshcooper
Copy link

#60 enabled hostname verification by default, as many applications using SSLSockets directly don't know or remember to call post_connection_check.

One unexpected outcome is if an application implements a verify_callback and verification fails, then it is called with preverify_ok=false, but the store_context.error=0 which is OpenSSL::X509::V_OK! This could cause problems if an application assumes store_context.error == 0 means verification succeeded.

If a hostname mismatch is detected, I would expect store_context.error to be set to OpenSSL::X509::V_ERR_CERT_REJECTED so that there is no chance of confusion.

rhenium added a commit to rhenium/ruby-openssl that referenced this issue Feb 24, 2020
When the verify_hostname option is enabled, the hostname verification is
done before calling verify_callback provided by the user.

The callback should be notified of the hostname verification failure.
OpenSSL::X509::StoreContext's error code must be set to an appropriate
value rather than OpenSSL::X509::V_OK.

If the constant X509_V_ERR_HOSTNAME_MISMATCH is available (OpenSSL >=
1.0.2), use it. Otherwise use the generic X509_V_ERR_CERT_REJECTED.

Reference: ruby#244
Fixes: 028e495 ("ssl: add verify_hostname option to SSLContext", 2016-06-27)
rhenium added a commit to rhenium/ruby-openssl that referenced this issue Feb 24, 2020
When the verify_hostname option is enabled, the hostname verification is
done before calling verify_callback provided by the user.

The callback should be notified of the hostname verification failure.
OpenSSL::X509::StoreContext's error code must be set to an appropriate
value rather than OpenSSL::X509::V_OK.

If the constant X509_V_ERR_HOSTNAME_MISMATCH is available (OpenSSL >=
1.0.2), use it. Otherwise use the generic X509_V_ERR_CERT_REJECTED.

Reference: ruby#244
Fixes: 028e495 ("ssl: add verify_hostname option to SSLContext", 2016-06-27)
@rhenium rhenium closed this as completed Apr 21, 2020
@joshcooper
Copy link
Author

Thanks @rhenium!

joshcooper added a commit to joshcooper/puppet that referenced this issue Dec 1, 2021
Ruby now correctly sets the store_context.error when the cert is mismatched[1], [2]. So
in that case raise the expected CertMismatchError.

[1] ruby/openssl#244
[2] https://github.com/ruby/ruby-openssl/commit/74ef8c0cc56b840b772240f2ee2b0fc0aafa2743
joshcooper added a commit to joshcooper/puppet that referenced this issue Dec 1, 2021
Ruby now correctly sets the store_context.error when the cert is mismatched[1], [2]. So
in that case raise the expected CertMismatchError.

We also have to monkey patch the ruby constant, which was only recently added to
match openssl 1.1[3].

[1] ruby/openssl#244
[2] ruby/openssl@74ef8c0
[3]
ruby/openssl@65ea09c
joshcooper added a commit to joshcooper/puppet that referenced this issue Dec 1, 2021
Ruby now correctly sets the store_context.error when the cert is mismatched[1], [2]. So
in that case raise the expected CertMismatchError.

We also have to monkey patch the ruby constant, which was only recently added to
match openssl 1.1[3].

[1] ruby/openssl#244
[2] ruby/openssl@74ef8c0
[3] ruby/openssl@65ea09c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants