74
lazy_import.lazy_import(globals(), """
77
_ = (ssl.match_hostname, ssl.CertificateError)
78
except AttributeError:
79
# Provide fallbacks for python < 2.7.9
80
def match_hostname(cert, host):
82
'%s cannot be verified, https certificates verification is only'
83
' available for python versions >= 2.7.9' % (host,))
84
ssl.match_hostname = match_hostname
85
ssl.CertificateError = ValueError
79
88
# Note for packagers: if there is no package providing certs for your platform,
80
89
# the curl project produces http://curl.haxx.se/ca/cacert.pem weekly.
81
90
_ssl_ca_certs_known_locations = [
82
u'/etc/ssl/certs/ca-certificates.crt', # Ubuntu/debian/gentoo
83
u'/etc/pki/tls/certs/ca-bundle.crt', # Fedora/CentOS/RH
84
u'/etc/ssl/ca-bundle.pem', # OpenSuse
85
u'/etc/ssl/cert.pem', # OpenSuse
86
u"/usr/local/share/certs/ca-root-nss.crt", # FreeBSD
91
u'/etc/ssl/certs/ca-certificates.crt', # Ubuntu/debian/gentoo
92
u'/etc/pki/tls/certs/ca-bundle.crt', # Fedora/CentOS/RH
93
u'/etc/ssl/ca-bundle.pem', # OpenSuse
94
u'/etc/ssl/cert.pem', # OpenSuse
95
u"/usr/local/share/certs/ca-root-nss.crt", # FreeBSD
87
96
# XXX: Needs checking, can't trust the interweb ;) -- vila 2012-01-25
88
u'/etc/openssl/certs/ca-certificates.crt', # Solaris
97
u'/etc/openssl/certs/ca-certificates.crt', # Solaris
90
101
def default_ca_certs():
91
102
if sys.platform == 'win32':
92
103
return os.path.join(os.path.dirname(sys.executable), u"cacert.pem")
115
126
def cert_reqs_from_store(unicode_str):
119
"required": ssl.CERT_REQUIRED,
120
"none": ssl.CERT_NONE
129
return {"required": ssl.CERT_REQUIRED,
130
"none": ssl.CERT_NONE}[unicode_str]
123
132
raise ValueError("invalid value %s" % unicode_str)
125
135
def default_ca_reqs():
126
136
if sys.platform in ('win32', 'darwin'):
127
137
# FIXME: Once we get a native access to root certificates there, this
131
141
return u'required'
133
143
opt_ssl_ca_certs = config.Option('ssl.ca_certs',
134
from_unicode=ca_certs_from_store,
135
default=default_ca_certs,
144
from_unicode=ca_certs_from_store,
145
default=default_ca_certs,
138
148
Path to certification authority certificates to trust.
140
150
This should be a valid path to a bundle containing all root Certificate
146
156
opt_ssl_cert_reqs = config.Option('ssl.cert_reqs',
147
default=default_ca_reqs,
148
from_unicode=cert_reqs_from_store,
157
default=default_ca_reqs,
158
from_unicode=cert_reqs_from_store,
151
161
Whether to require a certificate from the remote side. (default:required)
398
408
self._wrap_socket_for_reporting(self.sock)
401
# These two methods were imported from Python 3.2's ssl module
403
def _dnsname_to_pat(dn, max_wildcards=1):
405
for frag in dn.split(r'.'):
406
if frag.count('*') > max_wildcards:
407
# Python Issue #17980: avoid denials of service by refusing more
408
# than one wildcard per fragment. A survery of established
409
# policy among SSL implementations showed it to be a
412
"too many wildcards in certificate DNS name: " + repr(dn))
414
# When '*' is a fragment by itself, it matches a non-empty dotless
418
# Otherwise, '*' matches any dotless fragment.
419
frag = re.escape(frag)
420
pats.append(frag.replace(r'\*', '[^.]*'))
421
return re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
424
def match_hostname(cert, hostname):
425
"""Verify that *cert* (in decoded format as returned by
426
SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 rules
427
are mostly followed, but IP addresses are not accepted for *hostname*.
429
CertificateError is raised on failure. On success, the function
433
raise ValueError("empty or no certificate")
435
san = cert.get('subjectAltName', ())
436
for key, value in san:
438
if _dnsname_to_pat(value).match(hostname):
440
dnsnames.append(value)
442
# The subject is only checked when subjectAltName is empty
443
for sub in cert.get('subject', ()):
444
for key, value in sub:
445
# XXX according to RFC 2818, the most specific Common Name
447
if key == 'commonName':
448
if _dnsname_to_pat(value).match(hostname):
450
dnsnames.append(value)
451
if len(dnsnames) > 1:
452
raise errors.CertificateError(
453
"hostname %r doesn't match either of %s"
454
% (hostname, ', '.join(map(repr, dnsnames))))
455
elif len(dnsnames) == 1:
456
raise errors.CertificateError("hostname %r doesn't match %r" %
457
(hostname, dnsnames[0]))
459
raise errors.CertificateError("no appropriate commonName or "
460
"subjectAltName fields were found")
463
411
class HTTPSConnection(AbstractHTTPConnection, httplib.HTTPSConnection):
465
413
def __init__(self, host, port=None, key_file=None, cert_file=None,
503
451
"'bzr help ssl.ca_certs' for more information on setting "
506
ssl_sock = ssl.wrap_socket(self.sock, self.key_file, self.cert_file,
454
ssl_sock = ssl.wrap_socket(
455
self.sock, self.key_file, self.cert_file,
507
456
cert_reqs=cert_reqs, ca_certs=ca_certs)
508
except ssl.SSLError, e:
511
460
"See `bzr help ssl.ca_certs` for how to specify trusted CA"
516
465
if cert_reqs == ssl.CERT_REQUIRED:
517
466
peer_cert = ssl_sock.getpeercert()
518
match_hostname(peer_cert, host)
467
ssl.match_hostname(peer_cert, host)
520
469
# Wrap the ssl socket before anybody use it
521
470
self._wrap_socket_for_reporting(ssl_sock)
833
782
% (request, request.connection.sock.getsockname())
834
783
response = connection.getresponse()
835
784
convert_to_addinfourl = True
836
except (ssl.SSLError, errors.CertificateError):
785
except (ssl.SSLError, ssl.CertificateError):
837
786
# Something is wrong with either the certificate or the hostname,
838
787
# re-trying won't help