Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sslutil.py @ 29601:6cff2ac0ccb9
sslutil: more robustly detect protocol support
The Python ssl module conditionally sets the TLS 1.1 and TLS 1.2
constants depending on whether HAVE_TLSv1_2 is defined. Yes, these
are both tied to the same constant (I would think there would be
separate constants for each version). Perhaps support for TLS 1.1
and 1.2 were added at the same time and the assumption is that
OpenSSL either has neither or both. I don't know.
As part of developing this patch, it was discovered that Apple's
/usr/bin/python2.7 does not support TLS 1.1 and 1.2 (only TLS 1.0)!
On OS X 10.11, Apple Python has the modern ssl module including
SSLContext, but it doesn't appear to negotiate TLS 1.1+ nor does
it expose the constants related to TLS 1.1+. Since this code is
doing more robust feature detection (and not assuming modern ssl
implies TLS 1.1+ support), we now get TLS 1.0 warnings when running
on Apple Python. Hence the test changes.
I'm not super thrilled about shipping a Mercurial that always
whines about TLS 1.0 on OS X. We may want a follow-up patch to
suppress this warning.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 18 Jul 2016 11:27:27 -0700 |
parents | 4a4b8d3b4e43 |
children | 2960ceee1948 |
line wrap: on
line diff
--- a/mercurial/sslutil.py Mon Jul 11 11:05:08 2016 +0200 +++ b/mercurial/sslutil.py Mon Jul 18 11:27:27 2016 -0700 @@ -37,6 +37,14 @@ hassni = getattr(ssl, 'HAS_SNI', False) +# TLS 1.1 and 1.2 may not be supported if the OpenSSL Python is compiled +# against doesn't support them. +supportedprotocols = set(['tls1.0']) +if util.safehasattr(ssl, 'PROTOCOL_TLSv1_1'): + supportedprotocols.add('tls1.1') +if util.safehasattr(ssl, 'PROTOCOL_TLSv1_2'): + supportedprotocols.add('tls1.2') + try: # ssl.SSLContext was added in 2.7.9 and presence indicates modern # SSL/TLS features are available. @@ -148,15 +156,13 @@ hint=_('valid protocols: %s') % ' '.join(sorted(configprotocols))) - # Legacy Python can only do TLS 1.0. We default to TLS 1.1+ where we - # can because TLS 1.0 has known vulnerabilities (like BEAST and POODLE). - # We allow users to downgrade to TLS 1.0+ via config options in case a - # legacy server is encountered. - if modernssl: + # We default to TLS 1.1+ where we can because TLS 1.0 has known + # vulnerabilities (like BEAST and POODLE). We allow users to downgrade to + # TLS 1.0+ via config options in case a legacy server is encountered. + if 'tls1.1' in supportedprotocols: defaultprotocol = 'tls1.1' else: - # Let people on legacy Python versions know they are borderline - # secure. + # Let people know they are borderline secure. # We don't document this config option because we want people to see # the bold warnings on the web site. # internal config: hostsecurity.disabletls10warning @@ -288,7 +294,7 @@ # disable protocols via SSLContext.options and OP_NO_* constants. # However, SSLContext.options doesn't work unless we have the # full/real SSLContext available to us. - if not modernssl: + if supportedprotocols == set(['tls1.0']): if protocol != 'tls1.0': raise error.Abort(_('current Python does not support protocol ' 'setting %s') % protocol, @@ -441,8 +447,12 @@ if exactprotocol == 'tls1.0': protocol = ssl.PROTOCOL_TLSv1 elif exactprotocol == 'tls1.1': + if 'tls1.1' not in supportedprotocols: + raise error.Abort(_('TLS 1.1 not supported by this Python')) protocol = ssl.PROTOCOL_TLSv1_1 elif exactprotocol == 'tls1.2': + if 'tls1.2' not in supportedprotocols: + raise error.Abort(_('TLS 1.2 not supported by this Python')) protocol = ssl.PROTOCOL_TLSv1_2 elif exactprotocol: raise error.Abort(_('invalid value for serverexactprotocol: %s') %