blob: d3c18ed1b7936b1eea54635f05cf51c62b1d99b0 [file] [log] [blame]
Thomas Woutersed03b412007-08-28 21:37:11 +00001# Wrapper module for _ssl, providing some additional facilities
2# implemented in Python. Written by Bill Janssen.
3
Guido van Rossum5b8b1552007-11-16 00:06:11 +00004"""This module provides some more Pythonic support for SSL.
Thomas Woutersed03b412007-08-28 21:37:11 +00005
6Object types:
7
Thomas Wouters1b7f8912007-09-19 03:06:30 +00008 SSLSocket -- subtype of socket.socket which does SSL over the socket
Thomas Woutersed03b412007-08-28 21:37:11 +00009
10Exceptions:
11
Thomas Wouters1b7f8912007-09-19 03:06:30 +000012 SSLError -- exception raised for I/O errors
Thomas Woutersed03b412007-08-28 21:37:11 +000013
14Functions:
15
16 cert_time_to_seconds -- convert time string used for certificate
17 notBefore and notAfter functions to integer
18 seconds past the Epoch (the time values
19 returned from time.time())
20
21 fetch_server_certificate (HOST, PORT) -- fetch the certificate provided
22 by the server running on HOST at port PORT. No
23 validation of the certificate is performed.
24
25Integer constants:
26
27SSL_ERROR_ZERO_RETURN
28SSL_ERROR_WANT_READ
29SSL_ERROR_WANT_WRITE
30SSL_ERROR_WANT_X509_LOOKUP
31SSL_ERROR_SYSCALL
32SSL_ERROR_SSL
33SSL_ERROR_WANT_CONNECT
34
35SSL_ERROR_EOF
36SSL_ERROR_INVALID_ERROR_CODE
37
38The following group define certificate requirements that one side is
39allowing/requiring from the other side:
40
41CERT_NONE - no certificates from the other side are required (or will
42 be looked at if provided)
43CERT_OPTIONAL - certificates are not required, but if provided will be
44 validated, and if validation fails, the connection will
45 also fail
46CERT_REQUIRED - certificates are required, and will be validated, and
47 if validation fails, the connection will also fail
48
49The following constants identify various SSL protocol variants:
50
51PROTOCOL_SSLv2
52PROTOCOL_SSLv3
53PROTOCOL_SSLv23
54PROTOCOL_TLSv1
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010055PROTOCOL_TLSv1_1
56PROTOCOL_TLSv1_2
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +010057
58The following constants identify various SSL alert message descriptions as per
59http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6
60
61ALERT_DESCRIPTION_CLOSE_NOTIFY
62ALERT_DESCRIPTION_UNEXPECTED_MESSAGE
63ALERT_DESCRIPTION_BAD_RECORD_MAC
64ALERT_DESCRIPTION_RECORD_OVERFLOW
65ALERT_DESCRIPTION_DECOMPRESSION_FAILURE
66ALERT_DESCRIPTION_HANDSHAKE_FAILURE
67ALERT_DESCRIPTION_BAD_CERTIFICATE
68ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE
69ALERT_DESCRIPTION_CERTIFICATE_REVOKED
70ALERT_DESCRIPTION_CERTIFICATE_EXPIRED
71ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN
72ALERT_DESCRIPTION_ILLEGAL_PARAMETER
73ALERT_DESCRIPTION_UNKNOWN_CA
74ALERT_DESCRIPTION_ACCESS_DENIED
75ALERT_DESCRIPTION_DECODE_ERROR
76ALERT_DESCRIPTION_DECRYPT_ERROR
77ALERT_DESCRIPTION_PROTOCOL_VERSION
78ALERT_DESCRIPTION_INSUFFICIENT_SECURITY
79ALERT_DESCRIPTION_INTERNAL_ERROR
80ALERT_DESCRIPTION_USER_CANCELLED
81ALERT_DESCRIPTION_NO_RENEGOTIATION
82ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION
83ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
84ALERT_DESCRIPTION_UNRECOGNIZED_NAME
85ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE
86ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE
87ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY
Thomas Woutersed03b412007-08-28 21:37:11 +000088"""
89
Christian Heimes05e8be12008-02-23 18:30:17 +000090import textwrap
Antoine Pitrou59fdd672010-10-08 10:37:08 +000091import re
Christian Heimes46bebee2013-06-09 19:03:31 +020092import sys
Christian Heimes6d7ad132013-06-09 18:02:55 +020093import os
Christian Heimesa6bc95a2013-11-17 19:59:14 +010094from collections import namedtuple
Christian Heimes72d28502013-11-23 13:56:58 +010095from enum import Enum as _Enum
Thomas Woutersed03b412007-08-28 21:37:11 +000096
97import _ssl # if we can't import it, let the error propagate
Thomas Wouters1b7f8912007-09-19 03:06:30 +000098
Antoine Pitrou04f6a322010-04-05 21:40:07 +000099from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
Antoine Pitrou41032a62011-10-27 23:56:55 +0200100from _ssl import _SSLContext
101from _ssl import (
102 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
103 SSLSyscallError, SSLEOFError,
104 )
Thomas Woutersed03b412007-08-28 21:37:11 +0000105from _ssl import CERT_NONE, CERT_OPTIONAL, CERT_REQUIRED
Christian Heimes22587792013-11-21 23:56:13 +0100106from _ssl import (VERIFY_DEFAULT, VERIFY_CRL_CHECK_LEAF, VERIFY_CRL_CHECK_CHAIN,
107 VERIFY_X509_STRICT)
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100108from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj
Victor Stinner99c8b162011-05-24 12:05:19 +0200109from _ssl import RAND_status, RAND_egd, RAND_add, RAND_bytes, RAND_pseudo_bytes
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100110
111def _import_symbols(prefix):
112 for n in dir(_ssl):
113 if n.startswith(prefix):
114 globals()[n] = getattr(_ssl, n)
115
116_import_symbols('OP_')
117_import_symbols('ALERT_DESCRIPTION_')
118_import_symbols('SSL_ERROR_')
119
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100120from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100121
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100122from _ssl import PROTOCOL_SSLv3, PROTOCOL_SSLv23, PROTOCOL_TLSv1
Antoine Pitroub9ac25d2011-07-08 18:47:06 +0200123from _ssl import _OPENSSL_API_VERSION
124
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100125
Victor Stinner3de49192011-05-09 00:42:58 +0200126_PROTOCOL_NAMES = {
127 PROTOCOL_TLSv1: "TLSv1",
128 PROTOCOL_SSLv23: "SSLv23",
129 PROTOCOL_SSLv3: "SSLv3",
130}
131try:
132 from _ssl import PROTOCOL_SSLv2
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100133 _SSLv2_IF_EXISTS = PROTOCOL_SSLv2
Brett Cannoncd171c82013-07-04 17:43:24 -0400134except ImportError:
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100135 _SSLv2_IF_EXISTS = None
Victor Stinner3de49192011-05-09 00:42:58 +0200136else:
137 _PROTOCOL_NAMES[PROTOCOL_SSLv2] = "SSLv2"
Thomas Woutersed03b412007-08-28 21:37:11 +0000138
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100139try:
140 from _ssl import PROTOCOL_TLSv1_1, PROTOCOL_TLSv1_2
Brett Cannoncd171c82013-07-04 17:43:24 -0400141except ImportError:
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100142 pass
143else:
144 _PROTOCOL_NAMES[PROTOCOL_TLSv1_1] = "TLSv1.1"
145 _PROTOCOL_NAMES[PROTOCOL_TLSv1_2] = "TLSv1.2"
146
Christian Heimes46bebee2013-06-09 19:03:31 +0200147if sys.platform == "win32":
Christian Heimes44109d72013-11-22 01:51:30 +0100148 from _ssl import enum_certificates, enum_crls
Christian Heimes46bebee2013-06-09 19:03:31 +0200149
Antoine Pitrou15399c32011-04-28 19:23:55 +0200150from socket import socket, AF_INET, SOCK_STREAM, create_connection
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100151from socket import SOL_SOCKET, SO_TYPE
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000152import base64 # for DER-to-PEM translation
Antoine Pitroude8cf322010-04-26 17:29:05 +0000153import errno
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000154
Andrew Svetlov0832af62012-12-18 23:10:48 +0200155
156socket_error = OSError # keep that public name in module namespace
157
Antoine Pitroud6494802011-07-21 01:11:30 +0200158if _ssl.HAS_TLS_UNIQUE:
159 CHANNEL_BINDING_TYPES = ['tls-unique']
160else:
161 CHANNEL_BINDING_TYPES = []
Thomas Woutersed03b412007-08-28 21:37:11 +0000162
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100163# Disable weak or insecure ciphers by default
164# (OpenSSL's default setting is 'DEFAULT:!aNULL:!eNULL')
Donald Stufft79ccaa22014-03-21 21:33:34 -0400165# Enable a better set of ciphers by default
166# This list has been explicitly chosen to:
167# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
168# * Prefer ECDHE over DHE for better performance
169# * Prefer any AES-GCM over any AES-CBC for better performance and security
170# * Then Use HIGH cipher suites as a fallback
171# * Then Use 3DES as fallback which is secure but slow
172# * Finally use RC4 as a fallback which is problematic but needed for
173# compatibility some times.
174# * Disable NULL authentication, NULL encryption, and MD5 MACs for security
175# reasons
176_DEFAULT_CIPHERS = (
177 'ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+HIGH:'
178 'DH+HIGH:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+HIGH:RSA+3DES:ECDH+RC4:'
179 'DH+RC4:RSA+RC4:!aNULL:!eNULL:!MD5'
180)
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100181
Donald Stufft6a2ba942014-03-23 19:05:28 -0400182# Restricted and more secure ciphers for the server side
Donald Stufft79ccaa22014-03-21 21:33:34 -0400183# This list has been explicitly chosen to:
184# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
185# * Prefer ECDHE over DHE for better performance
186# * Prefer any AES-GCM over any AES-CBC for better performance and security
187# * Then Use HIGH cipher suites as a fallback
188# * Then Use 3DES as fallback which is secure but slow
189# * Disable NULL authentication, NULL encryption, MD5 MACs, DSS, and RC4 for
190# security reasons
Donald Stufft6a2ba942014-03-23 19:05:28 -0400191_RESTRICTED_SERVER_CIPHERS = (
Donald Stufft79ccaa22014-03-21 21:33:34 -0400192 'ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+HIGH:'
193 'DH+HIGH:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+HIGH:RSA+3DES:!aNULL:'
194 '!eNULL:!MD5:!DSS:!RC4'
195)
Christian Heimes4c05b472013-11-23 15:58:30 +0100196
Thomas Woutersed03b412007-08-28 21:37:11 +0000197
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000198class CertificateError(ValueError):
199 pass
200
201
Georg Brandl72c98d32013-10-27 07:16:53 +0100202def _dnsname_match(dn, hostname, max_wildcards=1):
203 """Matching according to RFC 6125, section 6.4.3
204
205 http://tools.ietf.org/html/rfc6125#section-6.4.3
206 """
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000207 pats = []
Georg Brandl72c98d32013-10-27 07:16:53 +0100208 if not dn:
209 return False
210
211 leftmost, *remainder = dn.split(r'.')
212
213 wildcards = leftmost.count('*')
214 if wildcards > max_wildcards:
215 # Issue #17980: avoid denials of service by refusing more
216 # than one wildcard per fragment. A survery of established
217 # policy among SSL implementations showed it to be a
218 # reasonable choice.
219 raise CertificateError(
220 "too many wildcards in certificate DNS name: " + repr(dn))
221
222 # speed up common case w/o wildcards
223 if not wildcards:
224 return dn.lower() == hostname.lower()
225
226 # RFC 6125, section 6.4.3, subitem 1.
227 # The client SHOULD NOT attempt to match a presented identifier in which
228 # the wildcard character comprises a label other than the left-most label.
229 if leftmost == '*':
230 # When '*' is a fragment by itself, it matches a non-empty dotless
231 # fragment.
232 pats.append('[^.]+')
233 elif leftmost.startswith('xn--') or hostname.startswith('xn--'):
234 # RFC 6125, section 6.4.3, subitem 3.
235 # The client SHOULD NOT attempt to match a presented identifier
236 # where the wildcard character is embedded within an A-label or
237 # U-label of an internationalized domain name.
238 pats.append(re.escape(leftmost))
239 else:
240 # Otherwise, '*' matches any dotless string, e.g. www*
241 pats.append(re.escape(leftmost).replace(r'\*', '[^.]*'))
242
243 # add the remaining fragments, ignore any wildcards
244 for frag in remainder:
245 pats.append(re.escape(frag))
246
247 pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
248 return pat.match(hostname)
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000249
250
251def match_hostname(cert, hostname):
252 """Verify that *cert* (in decoded format as returned by
Georg Brandl72c98d32013-10-27 07:16:53 +0100253 SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125
254 rules are followed, but IP addresses are not accepted for *hostname*.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000255
256 CertificateError is raised on failure. On success, the function
257 returns nothing.
258 """
259 if not cert:
Christian Heimes1aa9a752013-12-02 02:41:19 +0100260 raise ValueError("empty or no certificate, match_hostname needs a "
261 "SSL socket or SSL context with either "
262 "CERT_OPTIONAL or CERT_REQUIRED")
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000263 dnsnames = []
264 san = cert.get('subjectAltName', ())
265 for key, value in san:
266 if key == 'DNS':
Georg Brandl72c98d32013-10-27 07:16:53 +0100267 if _dnsname_match(value, hostname):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000268 return
269 dnsnames.append(value)
Antoine Pitrou1c86b442011-05-06 15:19:49 +0200270 if not dnsnames:
271 # The subject is only checked when there is no dNSName entry
272 # in subjectAltName
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000273 for sub in cert.get('subject', ()):
274 for key, value in sub:
275 # XXX according to RFC 2818, the most specific Common Name
276 # must be used.
277 if key == 'commonName':
Georg Brandl72c98d32013-10-27 07:16:53 +0100278 if _dnsname_match(value, hostname):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000279 return
280 dnsnames.append(value)
281 if len(dnsnames) > 1:
282 raise CertificateError("hostname %r "
283 "doesn't match either of %s"
284 % (hostname, ', '.join(map(repr, dnsnames))))
285 elif len(dnsnames) == 1:
286 raise CertificateError("hostname %r "
287 "doesn't match %r"
288 % (hostname, dnsnames[0]))
289 else:
290 raise CertificateError("no appropriate commonName or "
291 "subjectAltName fields were found")
292
293
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100294DefaultVerifyPaths = namedtuple("DefaultVerifyPaths",
Christian Heimes6d7ad132013-06-09 18:02:55 +0200295 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
296 "openssl_capath")
297
298def get_default_verify_paths():
299 """Return paths to default cafile and capath.
300 """
301 parts = _ssl.get_default_verify_paths()
302
303 # environment vars shadow paths
304 cafile = os.environ.get(parts[0], parts[1])
305 capath = os.environ.get(parts[2], parts[3])
306
307 return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None,
308 capath if os.path.isdir(capath) else None,
309 *parts)
310
311
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100312class _ASN1Object(namedtuple("_ASN1Object", "nid shortname longname oid")):
313 """ASN.1 object identifier lookup
314 """
315 __slots__ = ()
316
317 def __new__(cls, oid):
318 return super().__new__(cls, *_txt2obj(oid, name=False))
319
320 @classmethod
321 def fromnid(cls, nid):
322 """Create _ASN1Object from OpenSSL numeric ID
323 """
324 return super().__new__(cls, *_nid2obj(nid))
325
326 @classmethod
327 def fromname(cls, name):
328 """Create _ASN1Object from short name, long name or OID
329 """
330 return super().__new__(cls, *_txt2obj(name, name=True))
331
332
Christian Heimes72d28502013-11-23 13:56:58 +0100333class Purpose(_ASN1Object, _Enum):
334 """SSLContext purpose flags with X509v3 Extended Key Usage objects
335 """
336 SERVER_AUTH = '1.3.6.1.5.5.7.3.1'
337 CLIENT_AUTH = '1.3.6.1.5.5.7.3.2'
338
339
Antoine Pitrou152efa22010-05-16 18:19:27 +0000340class SSLContext(_SSLContext):
341 """An SSLContext holds various SSL-related configuration options and
342 data, such as certificates and possibly a private key."""
343
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100344 __slots__ = ('protocol', '__weakref__')
Christian Heimes72d28502013-11-23 13:56:58 +0100345 _windows_cert_stores = ("CA", "ROOT")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000346
347 def __new__(cls, protocol, *args, **kwargs):
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100348 self = _SSLContext.__new__(cls, protocol)
349 if protocol != _SSLv2_IF_EXISTS:
350 self.set_ciphers(_DEFAULT_CIPHERS)
351 return self
Antoine Pitrou152efa22010-05-16 18:19:27 +0000352
353 def __init__(self, protocol):
354 self.protocol = protocol
355
356 def wrap_socket(self, sock, server_side=False,
357 do_handshake_on_connect=True,
Antoine Pitroud5323212010-10-22 18:19:07 +0000358 suppress_ragged_eofs=True,
359 server_hostname=None):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000360 return SSLSocket(sock=sock, server_side=server_side,
361 do_handshake_on_connect=do_handshake_on_connect,
362 suppress_ragged_eofs=suppress_ragged_eofs,
Antoine Pitroud5323212010-10-22 18:19:07 +0000363 server_hostname=server_hostname,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000364 _context=self)
365
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100366 def set_npn_protocols(self, npn_protocols):
367 protos = bytearray()
368 for protocol in npn_protocols:
369 b = bytes(protocol, 'ascii')
370 if len(b) == 0 or len(b) > 255:
371 raise SSLError('NPN protocols must be 1 to 255 in length')
372 protos.append(len(b))
373 protos.extend(b)
374
375 self._set_npn_protocols(protos)
376
Christian Heimes72d28502013-11-23 13:56:58 +0100377 def _load_windows_store_certs(self, storename, purpose):
378 certs = bytearray()
379 for cert, encoding, trust in enum_certificates(storename):
380 # CA certs are never PKCS#7 encoded
381 if encoding == "x509_asn":
382 if trust is True or purpose.oid in trust:
383 certs.extend(cert)
384 self.load_verify_locations(cadata=certs)
385 return certs
386
387 def load_default_certs(self, purpose=Purpose.SERVER_AUTH):
388 if not isinstance(purpose, _ASN1Object):
389 raise TypeError(purpose)
390 if sys.platform == "win32":
391 for storename in self._windows_cert_stores:
392 self._load_windows_store_certs(storename, purpose)
393 else:
394 self.set_default_verify_paths()
395
Antoine Pitrou152efa22010-05-16 18:19:27 +0000396
Christian Heimes4c05b472013-11-23 15:58:30 +0100397def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,
398 capath=None, cadata=None):
399 """Create a SSLContext object with default settings.
400
401 NOTE: The protocol and settings may change anytime without prior
402 deprecation. The values represent a fair balance between maximum
403 compatibility and security.
404 """
405 if not isinstance(purpose, _ASN1Object):
406 raise TypeError(purpose)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400407
408 context = SSLContext(PROTOCOL_SSLv23)
409
Christian Heimes4c05b472013-11-23 15:58:30 +0100410 # SSLv2 considered harmful.
411 context.options |= OP_NO_SSLv2
Donald Stufft6a2ba942014-03-23 19:05:28 -0400412
413 # SSLv3 has problematic security and is only required for really old
414 # clients such as IE6 on Windows XP
415 context.options |= OP_NO_SSLv3
416
Christian Heimesdec813f2013-11-28 08:06:54 +0100417 # disable compression to prevent CRIME attacks (OpenSSL 1.0+)
418 context.options |= getattr(_ssl, "OP_NO_COMPRESSION", 0)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400419
Christian Heimes4c05b472013-11-23 15:58:30 +0100420 if purpose == Purpose.SERVER_AUTH:
Donald Stufft6a2ba942014-03-23 19:05:28 -0400421 # verify certs and host name in client mode
Christian Heimes4c05b472013-11-23 15:58:30 +0100422 context.verify_mode = CERT_REQUIRED
Christian Heimes1aa9a752013-12-02 02:41:19 +0100423 context.check_hostname = True
Donald Stufft6a2ba942014-03-23 19:05:28 -0400424 elif purpose == Purpose.CLIENT_AUTH:
425 # Prefer the server's ciphers by default so that we get stronger
426 # encryption
427 context.options |= getattr(_ssl, "OP_CIPHER_SERVER_PREFERENCE", 0)
428
429 # Use single use keys in order to improve forward secrecy
430 context.options |= getattr(_ssl, "OP_SINGLE_DH_USE", 0)
431 context.options |= getattr(_ssl, "OP_SINGLE_ECDH_USE", 0)
432
433 # disallow ciphers with known vulnerabilities
434 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS)
435
Christian Heimes4c05b472013-11-23 15:58:30 +0100436 if cafile or capath or cadata:
437 context.load_verify_locations(cafile, capath, cadata)
438 elif context.verify_mode != CERT_NONE:
439 # no explicit cafile, capath or cadata but the verify mode is
440 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
441 # root CA certificates for the given purpose. This may fail silently.
442 context.load_default_certs(purpose)
443 return context
444
445
Christian Heimes67986f92013-11-23 22:43:47 +0100446def _create_stdlib_context(protocol=PROTOCOL_SSLv23, *, cert_reqs=None,
Christian Heimesa02c69a2013-12-02 20:59:28 +0100447 check_hostname=False, purpose=Purpose.SERVER_AUTH,
Christian Heimes67986f92013-11-23 22:43:47 +0100448 certfile=None, keyfile=None,
449 cafile=None, capath=None, cadata=None):
450 """Create a SSLContext object for Python stdlib modules
451
452 All Python stdlib modules shall use this function to create SSLContext
453 objects in order to keep common settings in one place. The configuration
454 is less restrict than create_default_context()'s to increase backward
455 compatibility.
456 """
457 if not isinstance(purpose, _ASN1Object):
458 raise TypeError(purpose)
459
460 context = SSLContext(protocol)
461 # SSLv2 considered harmful.
462 context.options |= OP_NO_SSLv2
463
464 if cert_reqs is not None:
465 context.verify_mode = cert_reqs
Christian Heimesa02c69a2013-12-02 20:59:28 +0100466 context.check_hostname = check_hostname
Christian Heimes67986f92013-11-23 22:43:47 +0100467
468 if keyfile and not certfile:
469 raise ValueError("certfile must be specified")
470 if certfile or keyfile:
471 context.load_cert_chain(certfile, keyfile)
472
473 # load CA root certs
474 if cafile or capath or cadata:
475 context.load_verify_locations(cafile, capath, cadata)
476 elif context.verify_mode != CERT_NONE:
477 # no explicit cafile, capath or cadata but the verify mode is
478 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
479 # root CA certificates for the given purpose. This may fail silently.
480 context.load_default_certs(purpose)
481
482 return context
483
Antoine Pitrou152efa22010-05-16 18:19:27 +0000484class SSLSocket(socket):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000485 """This class implements a subtype of socket.socket that wraps
486 the underlying OS socket in an SSL context when necessary, and
487 provides read and write methods over that channel."""
488
Bill Janssen6e027db2007-11-15 22:23:56 +0000489 def __init__(self, sock=None, keyfile=None, certfile=None,
Thomas Woutersed03b412007-08-28 21:37:11 +0000490 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000491 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
492 do_handshake_on_connect=True,
493 family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100494 suppress_ragged_eofs=True, npn_protocols=None, ciphers=None,
Antoine Pitroud5323212010-10-22 18:19:07 +0000495 server_hostname=None,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000496 _context=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000497
Antoine Pitrou152efa22010-05-16 18:19:27 +0000498 if _context:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100499 self._context = _context
Antoine Pitrou152efa22010-05-16 18:19:27 +0000500 else:
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000501 if server_side and not certfile:
502 raise ValueError("certfile must be specified for server-side "
503 "operations")
Giampaolo RodolĂ 8b7da622010-08-30 18:28:05 +0000504 if keyfile and not certfile:
505 raise ValueError("certfile must be specified")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000506 if certfile and not keyfile:
507 keyfile = certfile
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100508 self._context = SSLContext(ssl_version)
509 self._context.verify_mode = cert_reqs
Antoine Pitrou152efa22010-05-16 18:19:27 +0000510 if ca_certs:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100511 self._context.load_verify_locations(ca_certs)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000512 if certfile:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100513 self._context.load_cert_chain(certfile, keyfile)
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100514 if npn_protocols:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100515 self._context.set_npn_protocols(npn_protocols)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000516 if ciphers:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100517 self._context.set_ciphers(ciphers)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000518 self.keyfile = keyfile
519 self.certfile = certfile
520 self.cert_reqs = cert_reqs
521 self.ssl_version = ssl_version
522 self.ca_certs = ca_certs
523 self.ciphers = ciphers
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100524 # Can't use sock.type as other flags (such as SOCK_NONBLOCK) get
525 # mixed in.
526 if sock.getsockopt(SOL_SOCKET, SO_TYPE) != SOCK_STREAM:
527 raise NotImplementedError("only stream sockets are supported")
Antoine Pitroud5323212010-10-22 18:19:07 +0000528 if server_side and server_hostname:
529 raise ValueError("server_hostname can only be specified "
530 "in client mode")
Christian Heimes1aa9a752013-12-02 02:41:19 +0100531 if self._context.check_hostname and not server_hostname:
532 if HAS_SNI:
533 raise ValueError("check_hostname requires server_hostname")
534 else:
535 raise ValueError("check_hostname requires server_hostname, "
536 "but it's not supported by your OpenSSL "
537 "library")
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000538 self.server_side = server_side
Antoine Pitroud5323212010-10-22 18:19:07 +0000539 self.server_hostname = server_hostname
Antoine Pitrou152efa22010-05-16 18:19:27 +0000540 self.do_handshake_on_connect = do_handshake_on_connect
541 self.suppress_ragged_eofs = suppress_ragged_eofs
Bill Janssen6e027db2007-11-15 22:23:56 +0000542 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000543 socket.__init__(self,
544 family=sock.family,
545 type=sock.type,
546 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000547 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000548 self.settimeout(sock.gettimeout())
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000549 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000550 elif fileno is not None:
551 socket.__init__(self, fileno=fileno)
552 else:
553 socket.__init__(self, family=family, type=type, proto=proto)
554
Antoine Pitrou242db722013-05-01 20:52:07 +0200555 # See if we are connected
556 try:
557 self.getpeername()
558 except OSError as e:
559 if e.errno != errno.ENOTCONN:
560 raise
561 connected = False
562 else:
563 connected = True
564
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000565 self._closed = False
566 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000567 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000568 if connected:
569 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000570 try:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100571 self._sslobj = self._context._wrap_socket(self, server_side,
Antoine Pitroud5323212010-10-22 18:19:07 +0000572 server_hostname)
Bill Janssen6e027db2007-11-15 22:23:56 +0000573 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000574 timeout = self.gettimeout()
575 if timeout == 0.0:
576 # non-blocking
577 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000578 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000579
Christian Heimes1aa9a752013-12-02 02:41:19 +0100580 except (OSError, ValueError):
Bill Janssen6e027db2007-11-15 22:23:56 +0000581 self.close()
Christian Heimes1aa9a752013-12-02 02:41:19 +0100582 raise
Antoine Pitrou242db722013-05-01 20:52:07 +0200583
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100584 @property
585 def context(self):
586 return self._context
587
588 @context.setter
589 def context(self, ctx):
590 self._context = ctx
591 self._sslobj.context = ctx
Bill Janssen6e027db2007-11-15 22:23:56 +0000592
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000593 def dup(self):
594 raise NotImplemented("Can't dup() %s instances" %
595 self.__class__.__name__)
596
Bill Janssen6e027db2007-11-15 22:23:56 +0000597 def _checkClosed(self, msg=None):
598 # raise an exception here if you wish to check for spurious closes
599 pass
600
Antoine Pitrou242db722013-05-01 20:52:07 +0200601 def _check_connected(self):
602 if not self._connected:
603 # getpeername() will raise ENOTCONN if the socket is really
604 # not connected; note that we can be connected even without
605 # _connected being set, e.g. if connect() first returned
606 # EAGAIN.
607 self.getpeername()
608
Bill Janssen54cc54c2007-12-14 22:08:56 +0000609 def read(self, len=0, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000610 """Read up to LEN bytes and return them.
611 Return zero-length string on EOF."""
612
Bill Janssen6e027db2007-11-15 22:23:56 +0000613 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200614 if not self._sslobj:
615 raise ValueError("Read on closed or unwrapped SSL socket.")
Bill Janssen6e027db2007-11-15 22:23:56 +0000616 try:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000617 if buffer is not None:
618 v = self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000619 else:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000620 v = self._sslobj.read(len or 1024)
621 return v
Bill Janssen6e027db2007-11-15 22:23:56 +0000622 except SSLError as x:
623 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000624 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000625 return 0
626 else:
627 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000628 else:
629 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000630
631 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000632 """Write DATA to the underlying SSL channel. Returns
633 number of bytes of DATA actually transmitted."""
634
Bill Janssen6e027db2007-11-15 22:23:56 +0000635 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200636 if not self._sslobj:
637 raise ValueError("Write on closed or unwrapped SSL socket.")
Thomas Woutersed03b412007-08-28 21:37:11 +0000638 return self._sslobj.write(data)
639
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000640 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000641 """Returns a formatted version of the data in the
642 certificate provided by the other end of the SSL channel.
643 Return None if no certificate was provided, {} if a
644 certificate was provided, but not validated."""
645
Bill Janssen6e027db2007-11-15 22:23:56 +0000646 self._checkClosed()
Antoine Pitrou242db722013-05-01 20:52:07 +0200647 self._check_connected()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000648 return self._sslobj.peer_certificate(binary_form)
649
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100650 def selected_npn_protocol(self):
651 self._checkClosed()
652 if not self._sslobj or not _ssl.HAS_NPN:
653 return None
654 else:
655 return self._sslobj.selected_npn_protocol()
656
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000657 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000658 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000659 if not self._sslobj:
660 return None
661 else:
662 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000663
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100664 def compression(self):
665 self._checkClosed()
666 if not self._sslobj:
667 return None
668 else:
669 return self._sslobj.compression()
670
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000671 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000672 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000673 if self._sslobj:
674 if flags != 0:
675 raise ValueError(
676 "non-zero flags not allowed in calls to send() on %s" %
677 self.__class__)
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200678 try:
679 v = self._sslobj.write(data)
680 except SSLError as x:
681 if x.args[0] == SSL_ERROR_WANT_READ:
682 return 0
683 elif x.args[0] == SSL_ERROR_WANT_WRITE:
684 return 0
Bill Janssen6e027db2007-11-15 22:23:56 +0000685 else:
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200686 raise
687 else:
688 return v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000689 else:
690 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000691
Antoine Pitroua468adc2010-09-14 14:43:44 +0000692 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000693 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000694 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000695 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000696 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000697 elif addr is None:
698 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000699 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000700 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000701
Nick Coghlan513886a2011-08-28 00:00:27 +1000702 def sendmsg(self, *args, **kwargs):
703 # Ensure programs don't send data unencrypted if they try to
704 # use this method.
705 raise NotImplementedError("sendmsg not allowed on instances of %s" %
706 self.__class__)
707
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000708 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000709 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000710 if self._sslobj:
Giampaolo RodolĂ 374f8352010-08-29 12:08:09 +0000711 if flags != 0:
712 raise ValueError(
713 "non-zero flags not allowed in calls to sendall() on %s" %
714 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000715 amount = len(data)
716 count = 0
717 while (count < amount):
718 v = self.send(data[count:])
719 count += v
720 return amount
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000721 else:
722 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000723
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000724 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000725 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000726 if self._sslobj:
727 if flags != 0:
728 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000729 "non-zero flags not allowed in calls to recv() on %s" %
730 self.__class__)
731 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000732 else:
733 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000734
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000735 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000736 self._checkClosed()
737 if buffer and (nbytes is None):
738 nbytes = len(buffer)
739 elif nbytes is None:
740 nbytes = 1024
741 if self._sslobj:
742 if flags != 0:
743 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000744 "non-zero flags not allowed in calls to recv_into() on %s" %
745 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +0000746 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000747 else:
748 return socket.recv_into(self, buffer, nbytes, flags)
749
Antoine Pitroua468adc2010-09-14 14:43:44 +0000750 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000751 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000752 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000753 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000754 self.__class__)
755 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000756 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000757
Bill Janssen58afe4c2008-09-08 16:45:19 +0000758 def recvfrom_into(self, buffer, nbytes=None, flags=0):
759 self._checkClosed()
760 if self._sslobj:
761 raise ValueError("recvfrom_into not allowed on instances of %s" %
762 self.__class__)
763 else:
764 return socket.recvfrom_into(self, buffer, nbytes, flags)
765
Nick Coghlan513886a2011-08-28 00:00:27 +1000766 def recvmsg(self, *args, **kwargs):
767 raise NotImplementedError("recvmsg not allowed on instances of %s" %
768 self.__class__)
769
770 def recvmsg_into(self, *args, **kwargs):
771 raise NotImplementedError("recvmsg_into not allowed on instances of "
772 "%s" % self.__class__)
773
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000774 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000775 self._checkClosed()
776 if self._sslobj:
777 return self._sslobj.pending()
778 else:
779 return 0
780
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000781 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +0000782 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000783 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000784 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +0000785
Ezio Melottidc55e672010-01-18 09:15:14 +0000786 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +0000787 if self._sslobj:
788 s = self._sslobj.shutdown()
789 self._sslobj = None
790 return s
791 else:
792 raise ValueError("No SSL wrapper around " + str(self))
793
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000794 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000795 self._sslobj = None
Bill Janssen54cc54c2007-12-14 22:08:56 +0000796 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000797
Bill Janssen48dc27c2007-12-05 03:38:10 +0000798 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +0000799 """Perform a TLS/SSL handshake."""
Antoine Pitrou242db722013-05-01 20:52:07 +0200800 self._check_connected()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000801 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +0000802 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000803 if timeout == 0.0 and block:
804 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +0000805 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000806 finally:
807 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +0000808
Christian Heimes1aa9a752013-12-02 02:41:19 +0100809 if self.context.check_hostname:
Christian Heimes1da3ba82013-12-04 20:46:20 +0100810 if not self.server_hostname:
811 raise ValueError("check_hostname needs server_hostname "
812 "argument")
813 match_hostname(self.getpeercert(), self.server_hostname)
Christian Heimes1aa9a752013-12-02 02:41:19 +0100814
Antoine Pitroub4410db2011-05-18 18:51:06 +0200815 def _real_connect(self, addr, connect_ex):
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000816 if self.server_side:
817 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +0000818 # Here we assume that the socket is client-side, and not
819 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000820 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000821 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroud5323212010-10-22 18:19:07 +0000822 self._sslobj = self.context._wrap_socket(self, False, self.server_hostname)
Bill Janssen54cc54c2007-12-14 22:08:56 +0000823 try:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200824 if connect_ex:
825 rc = socket.connect_ex(self, addr)
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000826 else:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200827 rc = None
828 socket.connect(self, addr)
829 if not rc:
Antoine Pitrou242db722013-05-01 20:52:07 +0200830 self._connected = True
Antoine Pitroub4410db2011-05-18 18:51:06 +0200831 if self.do_handshake_on_connect:
832 self.do_handshake()
Antoine Pitroub4410db2011-05-18 18:51:06 +0200833 return rc
Christian Heimes1aa9a752013-12-02 02:41:19 +0100834 except (OSError, ValueError):
Antoine Pitroub4410db2011-05-18 18:51:06 +0200835 self._sslobj = None
836 raise
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000837
838 def connect(self, addr):
839 """Connects to remote ADDR, and then wraps the connection in
840 an SSL channel."""
841 self._real_connect(addr, False)
842
843 def connect_ex(self, addr):
844 """Connects to remote ADDR, and then wraps the connection in
845 an SSL channel."""
846 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +0000847
848 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000849 """Accepts a new connection from a remote client, and returns
850 a tuple containing that new connection wrapped with a server-side
851 SSL channel, and the address of the remote client."""
852
853 newsock, addr = socket.accept(self)
Antoine Pitrou5c89b4e2012-11-11 01:25:36 +0100854 newsock = self.context.wrap_socket(newsock,
855 do_handshake_on_connect=self.do_handshake_on_connect,
856 suppress_ragged_eofs=self.suppress_ragged_eofs,
857 server_side=True)
858 return newsock, addr
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000859
Antoine Pitroud6494802011-07-21 01:11:30 +0200860 def get_channel_binding(self, cb_type="tls-unique"):
861 """Get channel binding data for current connection. Raise ValueError
862 if the requested `cb_type` is not supported. Return bytes of the data
863 or None if the data is not available (e.g. before the handshake).
864 """
865 if cb_type not in CHANNEL_BINDING_TYPES:
866 raise ValueError("Unsupported channel binding type")
867 if cb_type != "tls-unique":
868 raise NotImplementedError(
869 "{0} channel binding type not implemented"
870 .format(cb_type))
871 if self._sslobj is None:
872 return None
873 return self._sslobj.tls_unique_cb()
874
Bill Janssen54cc54c2007-12-14 22:08:56 +0000875
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000876def wrap_socket(sock, keyfile=None, certfile=None,
877 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000878 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000879 do_handshake_on_connect=True,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100880 suppress_ragged_eofs=True,
881 ciphers=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000882
Bill Janssen6e027db2007-11-15 22:23:56 +0000883 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000884 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +0000885 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000886 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000887 suppress_ragged_eofs=suppress_ragged_eofs,
888 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000889
Thomas Woutersed03b412007-08-28 21:37:11 +0000890# some utility functions
891
892def cert_time_to_seconds(cert_time):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000893 """Takes a date-time string in standard ASN1_print form
894 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
895 a Python time value in seconds past the epoch."""
896
Thomas Woutersed03b412007-08-28 21:37:11 +0000897 import time
898 return time.mktime(time.strptime(cert_time, "%b %d %H:%M:%S %Y GMT"))
899
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000900PEM_HEADER = "-----BEGIN CERTIFICATE-----"
901PEM_FOOTER = "-----END CERTIFICATE-----"
902
903def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000904 """Takes a certificate in binary DER format and returns the
905 PEM version of it as a string."""
906
Bill Janssen6e027db2007-11-15 22:23:56 +0000907 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
908 return (PEM_HEADER + '\n' +
909 textwrap.fill(f, 64) + '\n' +
910 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000911
912def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000913 """Takes a certificate in ASCII PEM format and returns the
914 DER-encoded version of it as a byte sequence"""
915
916 if not pem_cert_string.startswith(PEM_HEADER):
917 raise ValueError("Invalid PEM encoding; must start with %s"
918 % PEM_HEADER)
919 if not pem_cert_string.strip().endswith(PEM_FOOTER):
920 raise ValueError("Invalid PEM encoding; must end with %s"
921 % PEM_FOOTER)
922 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +0000923 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000924
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000925def get_server_certificate(addr, ssl_version=PROTOCOL_SSLv3, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000926 """Retrieve the certificate from the server at the specified address,
927 and return it as a PEM-encoded string.
928 If 'ca_certs' is specified, validate the server cert against it.
929 If 'ssl_version' is specified, use it in the connection attempt."""
930
931 host, port = addr
Christian Heimes67986f92013-11-23 22:43:47 +0100932 if ca_certs is not None:
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000933 cert_reqs = CERT_REQUIRED
934 else:
935 cert_reqs = CERT_NONE
Christian Heimes67986f92013-11-23 22:43:47 +0100936 context = _create_stdlib_context(ssl_version,
937 cert_reqs=cert_reqs,
938 cafile=ca_certs)
939 with create_connection(addr) as sock:
940 with context.wrap_socket(sock) as sslsock:
941 dercert = sslsock.getpeercert(True)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000942 return DER_cert_to_PEM_cert(dercert)
943
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000944def get_protocol_name(protocol_code):
Victor Stinner3de49192011-05-09 00:42:58 +0200945 return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')