blob: 3400b7f3f0b8d73d1c5809f6f5c652cadf3a9b4e [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
Christian Heimes598894f2016-09-05 23:19:05 +020054PROTOCOL_TLS
Thomas Woutersed03b412007-08-28 21:37:11 +000055PROTOCOL_TLSv1
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010056PROTOCOL_TLSv1_1
57PROTOCOL_TLSv1_2
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +010058
59The following constants identify various SSL alert message descriptions as per
60http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6
61
62ALERT_DESCRIPTION_CLOSE_NOTIFY
63ALERT_DESCRIPTION_UNEXPECTED_MESSAGE
64ALERT_DESCRIPTION_BAD_RECORD_MAC
65ALERT_DESCRIPTION_RECORD_OVERFLOW
66ALERT_DESCRIPTION_DECOMPRESSION_FAILURE
67ALERT_DESCRIPTION_HANDSHAKE_FAILURE
68ALERT_DESCRIPTION_BAD_CERTIFICATE
69ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE
70ALERT_DESCRIPTION_CERTIFICATE_REVOKED
71ALERT_DESCRIPTION_CERTIFICATE_EXPIRED
72ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN
73ALERT_DESCRIPTION_ILLEGAL_PARAMETER
74ALERT_DESCRIPTION_UNKNOWN_CA
75ALERT_DESCRIPTION_ACCESS_DENIED
76ALERT_DESCRIPTION_DECODE_ERROR
77ALERT_DESCRIPTION_DECRYPT_ERROR
78ALERT_DESCRIPTION_PROTOCOL_VERSION
79ALERT_DESCRIPTION_INSUFFICIENT_SECURITY
80ALERT_DESCRIPTION_INTERNAL_ERROR
81ALERT_DESCRIPTION_USER_CANCELLED
82ALERT_DESCRIPTION_NO_RENEGOTIATION
83ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION
84ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
85ALERT_DESCRIPTION_UNRECOGNIZED_NAME
86ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE
87ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE
88ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY
Thomas Woutersed03b412007-08-28 21:37:11 +000089"""
90
Antoine Pitrouc481bfb2015-02-15 18:12:20 +010091import ipaddress
Christian Heimes05e8be12008-02-23 18:30:17 +000092import textwrap
Antoine Pitrou59fdd672010-10-08 10:37:08 +000093import re
Christian Heimes46bebee2013-06-09 19:03:31 +020094import sys
Christian Heimes6d7ad132013-06-09 18:02:55 +020095import os
Christian Heimesa6bc95a2013-11-17 19:59:14 +010096from collections import namedtuple
Christian Heimes3aeacad2016-09-10 00:19:35 +020097from enum import Enum as _Enum, IntEnum as _IntEnum, IntFlag as _IntFlag
Thomas Woutersed03b412007-08-28 21:37:11 +000098
99import _ssl # if we can't import it, let the error propagate
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000100
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000101from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200102from _ssl import _SSLContext, MemoryBIO
Antoine Pitrou41032a62011-10-27 23:56:55 +0200103from _ssl import (
104 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
105 SSLSyscallError, SSLEOFError,
106 )
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100107from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj
Victor Stinnerbeeb5122014-11-28 13:28:25 +0100108from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes
109try:
110 from _ssl import RAND_egd
111except ImportError:
112 # LibreSSL does not provide RAND_egd
113 pass
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100114
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100115
Benjamin Petersoncca27322015-01-23 16:35:37 -0500116from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN
Antoine Pitroub9ac25d2011-07-08 18:47:06 +0200117from _ssl import _OPENSSL_API_VERSION
118
Christian Heimes3aeacad2016-09-10 00:19:35 +0200119
Ethan Furman24e837f2015-03-18 17:27:57 -0700120_IntEnum._convert(
Christian Heimes3aeacad2016-09-10 00:19:35 +0200121 '_SSLMethod', __name__,
122 lambda name: name.startswith('PROTOCOL_') and name != 'PROTOCOL_SSLv23',
123 source=_ssl)
124
125_IntFlag._convert(
126 'Options', __name__,
127 lambda name: name.startswith('OP_'),
128 source=_ssl)
129
130_IntEnum._convert(
131 'AlertDescription', __name__,
132 lambda name: name.startswith('ALERT_DESCRIPTION_'),
133 source=_ssl)
134
135_IntEnum._convert(
136 'SSLErrorNumber', __name__,
137 lambda name: name.startswith('SSL_ERROR_'),
138 source=_ssl)
139
140_IntFlag._convert(
141 'VerifyFlags', __name__,
142 lambda name: name.startswith('VERIFY_'),
143 source=_ssl)
144
145_IntEnum._convert(
146 'VerifyMode', __name__,
147 lambda name: name.startswith('CERT_'),
148 source=_ssl)
149
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100150
Christian Heimes598894f2016-09-05 23:19:05 +0200151PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_TLS
Antoine Pitrou172f0252014-04-18 20:33:08 +0200152_PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()}
153
Christian Heimes3aeacad2016-09-10 00:19:35 +0200154_SSLv2_IF_EXISTS = getattr(_SSLMethod, 'PROTOCOL_SSLv2', None)
155
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100156
Christian Heimes46bebee2013-06-09 19:03:31 +0200157if sys.platform == "win32":
Christian Heimes44109d72013-11-22 01:51:30 +0100158 from _ssl import enum_certificates, enum_crls
Christian Heimes46bebee2013-06-09 19:03:31 +0200159
Antoine Pitrou15399c32011-04-28 19:23:55 +0200160from socket import socket, AF_INET, SOCK_STREAM, create_connection
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100161from socket import SOL_SOCKET, SO_TYPE
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000162import base64 # for DER-to-PEM translation
Antoine Pitroude8cf322010-04-26 17:29:05 +0000163import errno
Steve Dower33bc4a22016-05-26 12:18:12 -0700164import warnings
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000165
Andrew Svetlov0832af62012-12-18 23:10:48 +0200166
167socket_error = OSError # keep that public name in module namespace
168
Antoine Pitroud6494802011-07-21 01:11:30 +0200169if _ssl.HAS_TLS_UNIQUE:
170 CHANNEL_BINDING_TYPES = ['tls-unique']
171else:
172 CHANNEL_BINDING_TYPES = []
Thomas Woutersed03b412007-08-28 21:37:11 +0000173
Christian Heimes03d13c02016-09-06 20:06:47 +0200174
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100175# Disable weak or insecure ciphers by default
176# (OpenSSL's default setting is 'DEFAULT:!aNULL:!eNULL')
Donald Stufft79ccaa22014-03-21 21:33:34 -0400177# Enable a better set of ciphers by default
178# This list has been explicitly chosen to:
179# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
180# * Prefer ECDHE over DHE for better performance
Christian Heimes03d13c02016-09-06 20:06:47 +0200181# * Prefer AEAD over CBC for better performance and security
182# * Prefer AES-GCM over ChaCha20 because most platforms have AES-NI
183# (ChaCha20 needs OpenSSL 1.1.0 or patched 1.0.2)
184# * Prefer any AES-GCM and ChaCha20 over any AES-CBC for better
185# performance and security
Donald Stufft79ccaa22014-03-21 21:33:34 -0400186# * Then Use HIGH cipher suites as a fallback
Christian Heimes03d13c02016-09-06 20:06:47 +0200187# * Disable NULL authentication, NULL encryption, 3DES and MD5 MACs
188# for security reasons
Donald Stufft79ccaa22014-03-21 21:33:34 -0400189_DEFAULT_CIPHERS = (
Christian Heimes03d13c02016-09-06 20:06:47 +0200190 'ECDH+AESGCM:ECDH+CHACHA20:DH+AESGCM:DH+CHACHA20:ECDH+AES256:DH+AES256:'
191 'ECDH+AES128:DH+AES:ECDH+HIGH:DH+HIGH:RSA+AESGCM:RSA+AES:RSA+HIGH:'
192 '!aNULL:!eNULL:!MD5:!3DES'
193 )
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100194
Donald Stufft6a2ba942014-03-23 19:05:28 -0400195# Restricted and more secure ciphers for the server side
Donald Stufft79ccaa22014-03-21 21:33:34 -0400196# This list has been explicitly chosen to:
197# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
198# * Prefer ECDHE over DHE for better performance
Christian Heimes03d13c02016-09-06 20:06:47 +0200199# * Prefer AEAD over CBC for better performance and security
200# * Prefer AES-GCM over ChaCha20 because most platforms have AES-NI
201# * Prefer any AES-GCM and ChaCha20 over any AES-CBC for better
202# performance and security
Donald Stufft79ccaa22014-03-21 21:33:34 -0400203# * Then Use HIGH cipher suites as a fallback
Christian Heimes03d13c02016-09-06 20:06:47 +0200204# * Disable NULL authentication, NULL encryption, MD5 MACs, DSS, RC4, and
205# 3DES for security reasons
Donald Stufft6a2ba942014-03-23 19:05:28 -0400206_RESTRICTED_SERVER_CIPHERS = (
Christian Heimes03d13c02016-09-06 20:06:47 +0200207 'ECDH+AESGCM:ECDH+CHACHA20:DH+AESGCM:DH+CHACHA20:ECDH+AES256:DH+AES256:'
208 'ECDH+AES128:DH+AES:ECDH+HIGH:DH+HIGH:RSA+AESGCM:RSA+AES:RSA+HIGH:'
209 '!aNULL:!eNULL:!MD5:!DSS:!RC4:!3DES'
Donald Stufft79ccaa22014-03-21 21:33:34 -0400210)
Christian Heimes4c05b472013-11-23 15:58:30 +0100211
Thomas Woutersed03b412007-08-28 21:37:11 +0000212
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000213class CertificateError(ValueError):
214 pass
215
216
Georg Brandl72c98d32013-10-27 07:16:53 +0100217def _dnsname_match(dn, hostname, max_wildcards=1):
218 """Matching according to RFC 6125, section 6.4.3
219
220 http://tools.ietf.org/html/rfc6125#section-6.4.3
221 """
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000222 pats = []
Georg Brandl72c98d32013-10-27 07:16:53 +0100223 if not dn:
224 return False
225
226 leftmost, *remainder = dn.split(r'.')
227
228 wildcards = leftmost.count('*')
229 if wildcards > max_wildcards:
230 # Issue #17980: avoid denials of service by refusing more
Berker Peksagf23530f2014-10-19 18:04:38 +0300231 # than one wildcard per fragment. A survey of established
Georg Brandl72c98d32013-10-27 07:16:53 +0100232 # policy among SSL implementations showed it to be a
233 # reasonable choice.
234 raise CertificateError(
235 "too many wildcards in certificate DNS name: " + repr(dn))
236
237 # speed up common case w/o wildcards
238 if not wildcards:
239 return dn.lower() == hostname.lower()
240
241 # RFC 6125, section 6.4.3, subitem 1.
242 # The client SHOULD NOT attempt to match a presented identifier in which
243 # the wildcard character comprises a label other than the left-most label.
244 if leftmost == '*':
245 # When '*' is a fragment by itself, it matches a non-empty dotless
246 # fragment.
247 pats.append('[^.]+')
248 elif leftmost.startswith('xn--') or hostname.startswith('xn--'):
249 # RFC 6125, section 6.4.3, subitem 3.
250 # The client SHOULD NOT attempt to match a presented identifier
251 # where the wildcard character is embedded within an A-label or
252 # U-label of an internationalized domain name.
253 pats.append(re.escape(leftmost))
254 else:
255 # Otherwise, '*' matches any dotless string, e.g. www*
256 pats.append(re.escape(leftmost).replace(r'\*', '[^.]*'))
257
258 # add the remaining fragments, ignore any wildcards
259 for frag in remainder:
260 pats.append(re.escape(frag))
261
262 pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
263 return pat.match(hostname)
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000264
265
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100266def _ipaddress_match(ipname, host_ip):
267 """Exact matching of IP addresses.
268
269 RFC 6125 explicitly doesn't define an algorithm for this
270 (section 1.7.2 - "Out of Scope").
271 """
272 # OpenSSL may add a trailing newline to a subjectAltName's IP address
273 ip = ipaddress.ip_address(ipname.rstrip())
274 return ip == host_ip
275
276
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000277def match_hostname(cert, hostname):
278 """Verify that *cert* (in decoded format as returned by
Georg Brandl72c98d32013-10-27 07:16:53 +0100279 SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125
280 rules are followed, but IP addresses are not accepted for *hostname*.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000281
282 CertificateError is raised on failure. On success, the function
283 returns nothing.
284 """
285 if not cert:
Christian Heimes1aa9a752013-12-02 02:41:19 +0100286 raise ValueError("empty or no certificate, match_hostname needs a "
287 "SSL socket or SSL context with either "
288 "CERT_OPTIONAL or CERT_REQUIRED")
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100289 try:
290 host_ip = ipaddress.ip_address(hostname)
291 except ValueError:
292 # Not an IP address (common case)
293 host_ip = None
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000294 dnsnames = []
295 san = cert.get('subjectAltName', ())
296 for key, value in san:
297 if key == 'DNS':
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100298 if host_ip is None and _dnsname_match(value, hostname):
299 return
300 dnsnames.append(value)
301 elif key == 'IP Address':
302 if host_ip is not None and _ipaddress_match(value, host_ip):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000303 return
304 dnsnames.append(value)
Antoine Pitrou1c86b442011-05-06 15:19:49 +0200305 if not dnsnames:
306 # The subject is only checked when there is no dNSName entry
307 # in subjectAltName
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000308 for sub in cert.get('subject', ()):
309 for key, value in sub:
310 # XXX according to RFC 2818, the most specific Common Name
311 # must be used.
312 if key == 'commonName':
Georg Brandl72c98d32013-10-27 07:16:53 +0100313 if _dnsname_match(value, hostname):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000314 return
315 dnsnames.append(value)
316 if len(dnsnames) > 1:
317 raise CertificateError("hostname %r "
318 "doesn't match either of %s"
319 % (hostname, ', '.join(map(repr, dnsnames))))
320 elif len(dnsnames) == 1:
321 raise CertificateError("hostname %r "
322 "doesn't match %r"
323 % (hostname, dnsnames[0]))
324 else:
325 raise CertificateError("no appropriate commonName or "
326 "subjectAltName fields were found")
327
328
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100329DefaultVerifyPaths = namedtuple("DefaultVerifyPaths",
Christian Heimes6d7ad132013-06-09 18:02:55 +0200330 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
331 "openssl_capath")
332
333def get_default_verify_paths():
334 """Return paths to default cafile and capath.
335 """
336 parts = _ssl.get_default_verify_paths()
337
338 # environment vars shadow paths
339 cafile = os.environ.get(parts[0], parts[1])
340 capath = os.environ.get(parts[2], parts[3])
341
342 return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None,
343 capath if os.path.isdir(capath) else None,
344 *parts)
345
346
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100347class _ASN1Object(namedtuple("_ASN1Object", "nid shortname longname oid")):
348 """ASN.1 object identifier lookup
349 """
350 __slots__ = ()
351
352 def __new__(cls, oid):
353 return super().__new__(cls, *_txt2obj(oid, name=False))
354
355 @classmethod
356 def fromnid(cls, nid):
357 """Create _ASN1Object from OpenSSL numeric ID
358 """
359 return super().__new__(cls, *_nid2obj(nid))
360
361 @classmethod
362 def fromname(cls, name):
363 """Create _ASN1Object from short name, long name or OID
364 """
365 return super().__new__(cls, *_txt2obj(name, name=True))
366
367
Christian Heimes72d28502013-11-23 13:56:58 +0100368class Purpose(_ASN1Object, _Enum):
369 """SSLContext purpose flags with X509v3 Extended Key Usage objects
370 """
371 SERVER_AUTH = '1.3.6.1.5.5.7.3.1'
372 CLIENT_AUTH = '1.3.6.1.5.5.7.3.2'
373
374
Antoine Pitrou152efa22010-05-16 18:19:27 +0000375class SSLContext(_SSLContext):
376 """An SSLContext holds various SSL-related configuration options and
377 data, such as certificates and possibly a private key."""
378
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100379 __slots__ = ('protocol', '__weakref__')
Christian Heimes72d28502013-11-23 13:56:58 +0100380 _windows_cert_stores = ("CA", "ROOT")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000381
Christian Heimes598894f2016-09-05 23:19:05 +0200382 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100383 self = _SSLContext.__new__(cls, protocol)
384 if protocol != _SSLv2_IF_EXISTS:
385 self.set_ciphers(_DEFAULT_CIPHERS)
386 return self
Antoine Pitrou152efa22010-05-16 18:19:27 +0000387
Christian Heimes598894f2016-09-05 23:19:05 +0200388 def __init__(self, protocol=PROTOCOL_TLS):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000389 self.protocol = protocol
390
391 def wrap_socket(self, sock, server_side=False,
392 do_handshake_on_connect=True,
Antoine Pitroud5323212010-10-22 18:19:07 +0000393 suppress_ragged_eofs=True,
394 server_hostname=None):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000395 return SSLSocket(sock=sock, server_side=server_side,
396 do_handshake_on_connect=do_handshake_on_connect,
397 suppress_ragged_eofs=suppress_ragged_eofs,
Antoine Pitroud5323212010-10-22 18:19:07 +0000398 server_hostname=server_hostname,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000399 _context=self)
400
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200401 def wrap_bio(self, incoming, outgoing, server_side=False,
402 server_hostname=None):
403 sslobj = self._wrap_bio(incoming, outgoing, server_side=server_side,
404 server_hostname=server_hostname)
405 return SSLObject(sslobj)
406
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100407 def set_npn_protocols(self, npn_protocols):
408 protos = bytearray()
409 for protocol in npn_protocols:
410 b = bytes(protocol, 'ascii')
411 if len(b) == 0 or len(b) > 255:
412 raise SSLError('NPN protocols must be 1 to 255 in length')
413 protos.append(len(b))
414 protos.extend(b)
415
416 self._set_npn_protocols(protos)
417
Benjamin Petersoncca27322015-01-23 16:35:37 -0500418 def set_alpn_protocols(self, alpn_protocols):
419 protos = bytearray()
420 for protocol in alpn_protocols:
421 b = bytes(protocol, 'ascii')
422 if len(b) == 0 or len(b) > 255:
423 raise SSLError('ALPN protocols must be 1 to 255 in length')
424 protos.append(len(b))
425 protos.extend(b)
426
427 self._set_alpn_protocols(protos)
428
Christian Heimes72d28502013-11-23 13:56:58 +0100429 def _load_windows_store_certs(self, storename, purpose):
430 certs = bytearray()
Steve Dower33bc4a22016-05-26 12:18:12 -0700431 try:
432 for cert, encoding, trust in enum_certificates(storename):
433 # CA certs are never PKCS#7 encoded
434 if encoding == "x509_asn":
435 if trust is True or purpose.oid in trust:
436 certs.extend(cert)
437 except PermissionError:
438 warnings.warn("unable to enumerate Windows certificate store")
Steve Dower8dd7aeb2016-03-17 15:02:39 -0700439 if certs:
440 self.load_verify_locations(cadata=certs)
Christian Heimes72d28502013-11-23 13:56:58 +0100441 return certs
442
443 def load_default_certs(self, purpose=Purpose.SERVER_AUTH):
444 if not isinstance(purpose, _ASN1Object):
445 raise TypeError(purpose)
446 if sys.platform == "win32":
447 for storename in self._windows_cert_stores:
448 self._load_windows_store_certs(storename, purpose)
Benjamin Peterson5915b0f2014-10-03 17:27:05 -0400449 self.set_default_verify_paths()
Christian Heimes72d28502013-11-23 13:56:58 +0100450
Christian Heimes3aeacad2016-09-10 00:19:35 +0200451 @property
452 def options(self):
453 return Options(super().options)
454
455 @options.setter
456 def options(self, value):
457 super(SSLContext, SSLContext).options.__set__(self, value)
458
459 @property
460 def verify_flags(self):
461 return VerifyFlags(super().verify_flags)
462
463 @verify_flags.setter
464 def verify_flags(self, value):
465 super(SSLContext, SSLContext).verify_flags.__set__(self, value)
466
467 @property
468 def verify_mode(self):
469 value = super().verify_mode
470 try:
471 return VerifyMode(value)
472 except ValueError:
473 return value
474
475 @verify_mode.setter
476 def verify_mode(self, value):
477 super(SSLContext, SSLContext).verify_mode.__set__(self, value)
478
Antoine Pitrou152efa22010-05-16 18:19:27 +0000479
Christian Heimes4c05b472013-11-23 15:58:30 +0100480def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,
481 capath=None, cadata=None):
482 """Create a SSLContext object with default settings.
483
484 NOTE: The protocol and settings may change anytime without prior
485 deprecation. The values represent a fair balance between maximum
486 compatibility and security.
487 """
488 if not isinstance(purpose, _ASN1Object):
489 raise TypeError(purpose)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400490
Christian Heimes358cfd42016-09-10 22:43:48 +0200491 # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,
492 # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE
493 # by default.
Christian Heimes598894f2016-09-05 23:19:05 +0200494 context = SSLContext(PROTOCOL_TLS)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400495
Christian Heimes4c05b472013-11-23 15:58:30 +0100496 if purpose == Purpose.SERVER_AUTH:
Donald Stufft6a2ba942014-03-23 19:05:28 -0400497 # verify certs and host name in client mode
Christian Heimes4c05b472013-11-23 15:58:30 +0100498 context.verify_mode = CERT_REQUIRED
Christian Heimes1aa9a752013-12-02 02:41:19 +0100499 context.check_hostname = True
Donald Stufft6a2ba942014-03-23 19:05:28 -0400500 elif purpose == Purpose.CLIENT_AUTH:
Donald Stufft6a2ba942014-03-23 19:05:28 -0400501 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS)
502
Christian Heimes4c05b472013-11-23 15:58:30 +0100503 if cafile or capath or cadata:
504 context.load_verify_locations(cafile, capath, cadata)
505 elif context.verify_mode != CERT_NONE:
506 # no explicit cafile, capath or cadata but the verify mode is
507 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
508 # root CA certificates for the given purpose. This may fail silently.
509 context.load_default_certs(purpose)
510 return context
511
Christian Heimes598894f2016-09-05 23:19:05 +0200512def _create_unverified_context(protocol=PROTOCOL_TLS, *, cert_reqs=None,
Christian Heimesa02c69a2013-12-02 20:59:28 +0100513 check_hostname=False, purpose=Purpose.SERVER_AUTH,
Christian Heimes67986f92013-11-23 22:43:47 +0100514 certfile=None, keyfile=None,
515 cafile=None, capath=None, cadata=None):
516 """Create a SSLContext object for Python stdlib modules
517
518 All Python stdlib modules shall use this function to create SSLContext
519 objects in order to keep common settings in one place. The configuration
520 is less restrict than create_default_context()'s to increase backward
521 compatibility.
522 """
523 if not isinstance(purpose, _ASN1Object):
524 raise TypeError(purpose)
525
Christian Heimes358cfd42016-09-10 22:43:48 +0200526 # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,
527 # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE
528 # by default.
Christian Heimes67986f92013-11-23 22:43:47 +0100529 context = SSLContext(protocol)
Christian Heimes67986f92013-11-23 22:43:47 +0100530
531 if cert_reqs is not None:
532 context.verify_mode = cert_reqs
Christian Heimesa02c69a2013-12-02 20:59:28 +0100533 context.check_hostname = check_hostname
Christian Heimes67986f92013-11-23 22:43:47 +0100534
535 if keyfile and not certfile:
536 raise ValueError("certfile must be specified")
537 if certfile or keyfile:
538 context.load_cert_chain(certfile, keyfile)
539
540 # load CA root certs
541 if cafile or capath or cadata:
542 context.load_verify_locations(cafile, capath, cadata)
543 elif context.verify_mode != CERT_NONE:
544 # no explicit cafile, capath or cadata but the verify mode is
545 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
546 # root CA certificates for the given purpose. This may fail silently.
547 context.load_default_certs(purpose)
548
549 return context
550
Benjamin Peterson4ffb0752014-11-03 14:29:33 -0500551# Used by http.client if no context is explicitly passed.
552_create_default_https_context = create_default_context
553
554
555# Backwards compatibility alias, even though it's not a public name.
556_create_stdlib_context = _create_unverified_context
557
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200558
559class SSLObject:
560 """This class implements an interface on top of a low-level SSL object as
561 implemented by OpenSSL. This object captures the state of an SSL connection
562 but does not provide any network IO itself. IO needs to be performed
563 through separate "BIO" objects which are OpenSSL's IO abstraction layer.
564
565 This class does not have a public constructor. Instances are returned by
566 ``SSLContext.wrap_bio``. This class is typically used by framework authors
567 that want to implement asynchronous IO for SSL through memory buffers.
568
569 When compared to ``SSLSocket``, this object lacks the following features:
570
571 * Any form of network IO incluging methods such as ``recv`` and ``send``.
572 * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery.
573 """
574
575 def __init__(self, sslobj, owner=None):
576 self._sslobj = sslobj
577 # Note: _sslobj takes a weak reference to owner
578 self._sslobj.owner = owner or self
579
580 @property
581 def context(self):
582 """The SSLContext that is currently in use."""
583 return self._sslobj.context
584
585 @context.setter
586 def context(self, ctx):
587 self._sslobj.context = ctx
588
589 @property
590 def server_side(self):
591 """Whether this is a server-side socket."""
592 return self._sslobj.server_side
593
594 @property
595 def server_hostname(self):
596 """The currently set server hostname (for SNI), or ``None`` if no
597 server hostame is set."""
598 return self._sslobj.server_hostname
599
Martin Panterf6b1d662016-03-28 00:22:09 +0000600 def read(self, len=1024, buffer=None):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200601 """Read up to 'len' bytes from the SSL object and return them.
602
603 If 'buffer' is provided, read into this buffer and return the number of
604 bytes read.
605 """
606 if buffer is not None:
607 v = self._sslobj.read(len, buffer)
608 else:
Martin Panterf6b1d662016-03-28 00:22:09 +0000609 v = self._sslobj.read(len)
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200610 return v
611
612 def write(self, data):
613 """Write 'data' to the SSL object and return the number of bytes
614 written.
615
616 The 'data' argument must support the buffer interface.
617 """
618 return self._sslobj.write(data)
619
620 def getpeercert(self, binary_form=False):
621 """Returns a formatted version of the data in the certificate provided
622 by the other end of the SSL channel.
623
624 Return None if no certificate was provided, {} if a certificate was
625 provided, but not validated.
626 """
627 return self._sslobj.peer_certificate(binary_form)
628
629 def selected_npn_protocol(self):
630 """Return the currently selected NPN protocol as a string, or ``None``
631 if a next protocol was not negotiated or if NPN is not supported by one
632 of the peers."""
633 if _ssl.HAS_NPN:
634 return self._sslobj.selected_npn_protocol()
635
Benjamin Petersoncca27322015-01-23 16:35:37 -0500636 def selected_alpn_protocol(self):
637 """Return the currently selected ALPN protocol as a string, or ``None``
638 if a next protocol was not negotiated or if ALPN is not supported by one
639 of the peers."""
640 if _ssl.HAS_ALPN:
641 return self._sslobj.selected_alpn_protocol()
642
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200643 def cipher(self):
644 """Return the currently selected cipher as a 3-tuple ``(name,
645 ssl_version, secret_bits)``."""
646 return self._sslobj.cipher()
647
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600648 def shared_ciphers(self):
Benjamin Petersonc114e7d2015-01-11 15:22:07 -0500649 """Return a list of ciphers shared by the client during the handshake or
650 None if this is not a valid server connection.
Benjamin Peterson5318c7a2015-01-07 11:26:50 -0600651 """
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600652 return self._sslobj.shared_ciphers()
653
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200654 def compression(self):
655 """Return the current compression algorithm in use, or ``None`` if
656 compression was not negotiated or not supported by one of the peers."""
657 return self._sslobj.compression()
658
659 def pending(self):
660 """Return the number of bytes that can be read immediately."""
661 return self._sslobj.pending()
662
Antoine Pitrou3cb93792014-10-06 00:21:09 +0200663 def do_handshake(self):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200664 """Start the SSL/TLS handshake."""
665 self._sslobj.do_handshake()
666 if self.context.check_hostname:
667 if not self.server_hostname:
668 raise ValueError("check_hostname needs server_hostname "
669 "argument")
670 match_hostname(self.getpeercert(), self.server_hostname)
671
672 def unwrap(self):
673 """Start the SSL shutdown handshake."""
674 return self._sslobj.shutdown()
675
676 def get_channel_binding(self, cb_type="tls-unique"):
677 """Get channel binding data for current connection. Raise ValueError
678 if the requested `cb_type` is not supported. Return bytes of the data
679 or None if the data is not available (e.g. before the handshake)."""
680 if cb_type not in CHANNEL_BINDING_TYPES:
681 raise ValueError("Unsupported channel binding type")
682 if cb_type != "tls-unique":
683 raise NotImplementedError(
684 "{0} channel binding type not implemented"
685 .format(cb_type))
686 return self._sslobj.tls_unique_cb()
687
688 def version(self):
689 """Return a string identifying the protocol version used by the
690 current SSL channel. """
691 return self._sslobj.version()
692
693
Antoine Pitrou152efa22010-05-16 18:19:27 +0000694class SSLSocket(socket):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000695 """This class implements a subtype of socket.socket that wraps
696 the underlying OS socket in an SSL context when necessary, and
697 provides read and write methods over that channel."""
698
Bill Janssen6e027db2007-11-15 22:23:56 +0000699 def __init__(self, sock=None, keyfile=None, certfile=None,
Thomas Woutersed03b412007-08-28 21:37:11 +0000700 server_side=False, cert_reqs=CERT_NONE,
Christian Heimes598894f2016-09-05 23:19:05 +0200701 ssl_version=PROTOCOL_TLS, ca_certs=None,
Bill Janssen6e027db2007-11-15 22:23:56 +0000702 do_handshake_on_connect=True,
703 family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100704 suppress_ragged_eofs=True, npn_protocols=None, ciphers=None,
Antoine Pitroud5323212010-10-22 18:19:07 +0000705 server_hostname=None,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000706 _context=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000707
Antoine Pitrou152efa22010-05-16 18:19:27 +0000708 if _context:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100709 self._context = _context
Antoine Pitrou152efa22010-05-16 18:19:27 +0000710 else:
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000711 if server_side and not certfile:
712 raise ValueError("certfile must be specified for server-side "
713 "operations")
Giampaolo Rodolà8b7da622010-08-30 18:28:05 +0000714 if keyfile and not certfile:
715 raise ValueError("certfile must be specified")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000716 if certfile and not keyfile:
717 keyfile = certfile
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100718 self._context = SSLContext(ssl_version)
719 self._context.verify_mode = cert_reqs
Antoine Pitrou152efa22010-05-16 18:19:27 +0000720 if ca_certs:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100721 self._context.load_verify_locations(ca_certs)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000722 if certfile:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100723 self._context.load_cert_chain(certfile, keyfile)
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100724 if npn_protocols:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100725 self._context.set_npn_protocols(npn_protocols)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000726 if ciphers:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100727 self._context.set_ciphers(ciphers)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000728 self.keyfile = keyfile
729 self.certfile = certfile
730 self.cert_reqs = cert_reqs
731 self.ssl_version = ssl_version
732 self.ca_certs = ca_certs
733 self.ciphers = ciphers
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100734 # Can't use sock.type as other flags (such as SOCK_NONBLOCK) get
735 # mixed in.
736 if sock.getsockopt(SOL_SOCKET, SO_TYPE) != SOCK_STREAM:
737 raise NotImplementedError("only stream sockets are supported")
Antoine Pitroud5323212010-10-22 18:19:07 +0000738 if server_side and server_hostname:
739 raise ValueError("server_hostname can only be specified "
740 "in client mode")
Christian Heimes1aa9a752013-12-02 02:41:19 +0100741 if self._context.check_hostname and not server_hostname:
Benjamin Peterson7243b572014-11-23 17:04:34 -0600742 raise ValueError("check_hostname requires server_hostname")
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000743 self.server_side = server_side
Antoine Pitroud5323212010-10-22 18:19:07 +0000744 self.server_hostname = server_hostname
Antoine Pitrou152efa22010-05-16 18:19:27 +0000745 self.do_handshake_on_connect = do_handshake_on_connect
746 self.suppress_ragged_eofs = suppress_ragged_eofs
Bill Janssen6e027db2007-11-15 22:23:56 +0000747 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000748 socket.__init__(self,
749 family=sock.family,
750 type=sock.type,
751 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000752 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000753 self.settimeout(sock.gettimeout())
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000754 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000755 elif fileno is not None:
756 socket.__init__(self, fileno=fileno)
757 else:
758 socket.__init__(self, family=family, type=type, proto=proto)
759
Antoine Pitrou242db722013-05-01 20:52:07 +0200760 # See if we are connected
761 try:
762 self.getpeername()
763 except OSError as e:
764 if e.errno != errno.ENOTCONN:
765 raise
766 connected = False
767 else:
768 connected = True
769
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000770 self._closed = False
771 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000772 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000773 if connected:
774 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000775 try:
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200776 sslobj = self._context._wrap_socket(self, server_side,
777 server_hostname)
778 self._sslobj = SSLObject(sslobj, owner=self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000779 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000780 timeout = self.gettimeout()
781 if timeout == 0.0:
782 # non-blocking
783 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000784 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000785
Christian Heimes1aa9a752013-12-02 02:41:19 +0100786 except (OSError, ValueError):
Bill Janssen6e027db2007-11-15 22:23:56 +0000787 self.close()
Christian Heimes1aa9a752013-12-02 02:41:19 +0100788 raise
Antoine Pitrou242db722013-05-01 20:52:07 +0200789
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100790 @property
791 def context(self):
792 return self._context
793
794 @context.setter
795 def context(self, ctx):
796 self._context = ctx
797 self._sslobj.context = ctx
Bill Janssen6e027db2007-11-15 22:23:56 +0000798
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000799 def dup(self):
800 raise NotImplemented("Can't dup() %s instances" %
801 self.__class__.__name__)
802
Bill Janssen6e027db2007-11-15 22:23:56 +0000803 def _checkClosed(self, msg=None):
804 # raise an exception here if you wish to check for spurious closes
805 pass
806
Antoine Pitrou242db722013-05-01 20:52:07 +0200807 def _check_connected(self):
808 if not self._connected:
809 # getpeername() will raise ENOTCONN if the socket is really
810 # not connected; note that we can be connected even without
811 # _connected being set, e.g. if connect() first returned
812 # EAGAIN.
813 self.getpeername()
814
Martin Panterf6b1d662016-03-28 00:22:09 +0000815 def read(self, len=1024, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000816 """Read up to LEN bytes and return them.
817 Return zero-length string on EOF."""
818
Bill Janssen6e027db2007-11-15 22:23:56 +0000819 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200820 if not self._sslobj:
821 raise ValueError("Read on closed or unwrapped SSL socket.")
Bill Janssen6e027db2007-11-15 22:23:56 +0000822 try:
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200823 return self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000824 except SSLError as x:
825 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000826 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000827 return 0
828 else:
829 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000830 else:
831 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000832
833 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000834 """Write DATA to the underlying SSL channel. Returns
835 number of bytes of DATA actually transmitted."""
836
Bill Janssen6e027db2007-11-15 22:23:56 +0000837 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200838 if not self._sslobj:
839 raise ValueError("Write on closed or unwrapped SSL socket.")
Thomas Woutersed03b412007-08-28 21:37:11 +0000840 return self._sslobj.write(data)
841
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000842 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000843 """Returns a formatted version of the data in the
844 certificate provided by the other end of the SSL channel.
845 Return None if no certificate was provided, {} if a
846 certificate was provided, but not validated."""
847
Bill Janssen6e027db2007-11-15 22:23:56 +0000848 self._checkClosed()
Antoine Pitrou242db722013-05-01 20:52:07 +0200849 self._check_connected()
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200850 return self._sslobj.getpeercert(binary_form)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000851
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100852 def selected_npn_protocol(self):
853 self._checkClosed()
854 if not self._sslobj or not _ssl.HAS_NPN:
855 return None
856 else:
857 return self._sslobj.selected_npn_protocol()
858
Benjamin Petersoncca27322015-01-23 16:35:37 -0500859 def selected_alpn_protocol(self):
860 self._checkClosed()
861 if not self._sslobj or not _ssl.HAS_ALPN:
862 return None
863 else:
864 return self._sslobj.selected_alpn_protocol()
865
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000866 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000867 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000868 if not self._sslobj:
869 return None
870 else:
871 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000872
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600873 def shared_ciphers(self):
874 self._checkClosed()
875 if not self._sslobj:
876 return None
877 return self._sslobj.shared_ciphers()
878
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100879 def compression(self):
880 self._checkClosed()
881 if not self._sslobj:
882 return None
883 else:
884 return self._sslobj.compression()
885
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000886 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000887 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000888 if self._sslobj:
889 if flags != 0:
890 raise ValueError(
891 "non-zero flags not allowed in calls to send() on %s" %
892 self.__class__)
Antoine Pitroub4bebda2014-04-29 10:03:28 +0200893 return self._sslobj.write(data)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000894 else:
895 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000896
Antoine Pitroua468adc2010-09-14 14:43:44 +0000897 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000898 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000899 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000900 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000901 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000902 elif addr is None:
903 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000904 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000905 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000906
Nick Coghlan513886a2011-08-28 00:00:27 +1000907 def sendmsg(self, *args, **kwargs):
908 # Ensure programs don't send data unencrypted if they try to
909 # use this method.
910 raise NotImplementedError("sendmsg not allowed on instances of %s" %
911 self.__class__)
912
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000913 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000914 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000915 if self._sslobj:
Giampaolo Rodolà374f8352010-08-29 12:08:09 +0000916 if flags != 0:
917 raise ValueError(
918 "non-zero flags not allowed in calls to sendall() on %s" %
919 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000920 amount = len(data)
921 count = 0
922 while (count < amount):
923 v = self.send(data[count:])
924 count += v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000925 else:
926 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000927
Giampaolo Rodola'915d1412014-06-11 03:54:30 +0200928 def sendfile(self, file, offset=0, count=None):
929 """Send a file, possibly by using os.sendfile() if this is a
930 clear-text socket. Return the total number of bytes sent.
931 """
932 if self._sslobj is None:
933 # os.sendfile() works with plain sockets only
934 return super().sendfile(file, offset, count)
935 else:
936 return self._sendfile_use_send(file, offset, count)
937
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000938 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000939 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000940 if self._sslobj:
941 if flags != 0:
942 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000943 "non-zero flags not allowed in calls to recv() on %s" %
944 self.__class__)
945 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000946 else:
947 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000948
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000949 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000950 self._checkClosed()
951 if buffer and (nbytes is None):
952 nbytes = len(buffer)
953 elif nbytes is None:
954 nbytes = 1024
955 if self._sslobj:
956 if flags != 0:
957 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000958 "non-zero flags not allowed in calls to recv_into() on %s" %
959 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +0000960 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000961 else:
962 return socket.recv_into(self, buffer, nbytes, flags)
963
Antoine Pitroua468adc2010-09-14 14:43:44 +0000964 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000965 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000966 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000967 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000968 self.__class__)
969 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000970 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000971
Bill Janssen58afe4c2008-09-08 16:45:19 +0000972 def recvfrom_into(self, buffer, nbytes=None, flags=0):
973 self._checkClosed()
974 if self._sslobj:
975 raise ValueError("recvfrom_into not allowed on instances of %s" %
976 self.__class__)
977 else:
978 return socket.recvfrom_into(self, buffer, nbytes, flags)
979
Nick Coghlan513886a2011-08-28 00:00:27 +1000980 def recvmsg(self, *args, **kwargs):
981 raise NotImplementedError("recvmsg not allowed on instances of %s" %
982 self.__class__)
983
984 def recvmsg_into(self, *args, **kwargs):
985 raise NotImplementedError("recvmsg_into not allowed on instances of "
986 "%s" % self.__class__)
987
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000988 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000989 self._checkClosed()
990 if self._sslobj:
991 return self._sslobj.pending()
992 else:
993 return 0
994
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000995 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +0000996 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000997 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000998 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +0000999
Ezio Melottidc55e672010-01-18 09:15:14 +00001000 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +00001001 if self._sslobj:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001002 s = self._sslobj.unwrap()
Bill Janssen40a0f662008-08-12 16:56:25 +00001003 self._sslobj = None
1004 return s
1005 else:
1006 raise ValueError("No SSL wrapper around " + str(self))
1007
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001008 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001009 self._sslobj = None
Bill Janssen54cc54c2007-12-14 22:08:56 +00001010 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +00001011
Bill Janssen48dc27c2007-12-05 03:38:10 +00001012 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +00001013 """Perform a TLS/SSL handshake."""
Antoine Pitrou242db722013-05-01 20:52:07 +02001014 self._check_connected()
Bill Janssen48dc27c2007-12-05 03:38:10 +00001015 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +00001016 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +00001017 if timeout == 0.0 and block:
1018 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +00001019 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +00001020 finally:
1021 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +00001022
Antoine Pitroub4410db2011-05-18 18:51:06 +02001023 def _real_connect(self, addr, connect_ex):
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00001024 if self.server_side:
1025 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +00001026 # Here we assume that the socket is client-side, and not
1027 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001028 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001029 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001030 sslobj = self.context._wrap_socket(self, False, self.server_hostname)
1031 self._sslobj = SSLObject(sslobj, owner=self)
Bill Janssen54cc54c2007-12-14 22:08:56 +00001032 try:
Antoine Pitroub4410db2011-05-18 18:51:06 +02001033 if connect_ex:
1034 rc = socket.connect_ex(self, addr)
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001035 else:
Antoine Pitroub4410db2011-05-18 18:51:06 +02001036 rc = None
1037 socket.connect(self, addr)
1038 if not rc:
Antoine Pitrou242db722013-05-01 20:52:07 +02001039 self._connected = True
Antoine Pitroub4410db2011-05-18 18:51:06 +02001040 if self.do_handshake_on_connect:
1041 self.do_handshake()
Antoine Pitroub4410db2011-05-18 18:51:06 +02001042 return rc
Christian Heimes1aa9a752013-12-02 02:41:19 +01001043 except (OSError, ValueError):
Antoine Pitroub4410db2011-05-18 18:51:06 +02001044 self._sslobj = None
1045 raise
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001046
1047 def connect(self, addr):
1048 """Connects to remote ADDR, and then wraps the connection in
1049 an SSL channel."""
1050 self._real_connect(addr, False)
1051
1052 def connect_ex(self, addr):
1053 """Connects to remote ADDR, and then wraps the connection in
1054 an SSL channel."""
1055 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +00001056
1057 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001058 """Accepts a new connection from a remote client, and returns
1059 a tuple containing that new connection wrapped with a server-side
1060 SSL channel, and the address of the remote client."""
1061
1062 newsock, addr = socket.accept(self)
Antoine Pitrou5c89b4e2012-11-11 01:25:36 +01001063 newsock = self.context.wrap_socket(newsock,
1064 do_handshake_on_connect=self.do_handshake_on_connect,
1065 suppress_ragged_eofs=self.suppress_ragged_eofs,
1066 server_side=True)
1067 return newsock, addr
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001068
Antoine Pitroud6494802011-07-21 01:11:30 +02001069 def get_channel_binding(self, cb_type="tls-unique"):
1070 """Get channel binding data for current connection. Raise ValueError
1071 if the requested `cb_type` is not supported. Return bytes of the data
1072 or None if the data is not available (e.g. before the handshake).
1073 """
Antoine Pitroud6494802011-07-21 01:11:30 +02001074 if self._sslobj is None:
1075 return None
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001076 return self._sslobj.get_channel_binding(cb_type)
Antoine Pitroud6494802011-07-21 01:11:30 +02001077
Antoine Pitrou47e40422014-09-04 21:00:10 +02001078 def version(self):
1079 """
1080 Return a string identifying the protocol version used by the
1081 current SSL channel, or None if there is no established channel.
1082 """
1083 if self._sslobj is None:
1084 return None
1085 return self._sslobj.version()
1086
Bill Janssen54cc54c2007-12-14 22:08:56 +00001087
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001088def wrap_socket(sock, keyfile=None, certfile=None,
1089 server_side=False, cert_reqs=CERT_NONE,
Christian Heimes598894f2016-09-05 23:19:05 +02001090 ssl_version=PROTOCOL_TLS, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +00001091 do_handshake_on_connect=True,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001092 suppress_ragged_eofs=True,
1093 ciphers=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001094
Bill Janssen6e027db2007-11-15 22:23:56 +00001095 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001096 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +00001097 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +00001098 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +00001099 suppress_ragged_eofs=suppress_ragged_eofs,
1100 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001101
Thomas Woutersed03b412007-08-28 21:37:11 +00001102# some utility functions
1103
1104def cert_time_to_seconds(cert_time):
Antoine Pitrouc695c952014-04-28 20:57:36 +02001105 """Return the time in seconds since the Epoch, given the timestring
1106 representing the "notBefore" or "notAfter" date from a certificate
1107 in ``"%b %d %H:%M:%S %Y %Z"`` strptime format (C locale).
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001108
Antoine Pitrouc695c952014-04-28 20:57:36 +02001109 "notBefore" or "notAfter" dates must use UTC (RFC 5280).
1110
1111 Month is one of: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
1112 UTC should be specified as GMT (see ASN1_TIME_print())
1113 """
1114 from time import strptime
1115 from calendar import timegm
1116
1117 months = (
1118 "Jan","Feb","Mar","Apr","May","Jun",
1119 "Jul","Aug","Sep","Oct","Nov","Dec"
1120 )
1121 time_format = ' %d %H:%M:%S %Y GMT' # NOTE: no month, fixed GMT
1122 try:
1123 month_number = months.index(cert_time[:3].title()) + 1
1124 except ValueError:
1125 raise ValueError('time data %r does not match '
1126 'format "%%b%s"' % (cert_time, time_format))
1127 else:
1128 # found valid month
1129 tt = strptime(cert_time[3:], time_format)
1130 # return an integer, the previous mktime()-based implementation
1131 # returned a float (fractional seconds are always zero here).
1132 return timegm((tt[0], month_number) + tt[2:6])
Thomas Woutersed03b412007-08-28 21:37:11 +00001133
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001134PEM_HEADER = "-----BEGIN CERTIFICATE-----"
1135PEM_FOOTER = "-----END CERTIFICATE-----"
1136
1137def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001138 """Takes a certificate in binary DER format and returns the
1139 PEM version of it as a string."""
1140
Bill Janssen6e027db2007-11-15 22:23:56 +00001141 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
1142 return (PEM_HEADER + '\n' +
1143 textwrap.fill(f, 64) + '\n' +
1144 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001145
1146def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001147 """Takes a certificate in ASCII PEM format and returns the
1148 DER-encoded version of it as a byte sequence"""
1149
1150 if not pem_cert_string.startswith(PEM_HEADER):
1151 raise ValueError("Invalid PEM encoding; must start with %s"
1152 % PEM_HEADER)
1153 if not pem_cert_string.strip().endswith(PEM_FOOTER):
1154 raise ValueError("Invalid PEM encoding; must end with %s"
1155 % PEM_FOOTER)
1156 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +00001157 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001158
Christian Heimes598894f2016-09-05 23:19:05 +02001159def get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001160 """Retrieve the certificate from the server at the specified address,
1161 and return it as a PEM-encoded string.
1162 If 'ca_certs' is specified, validate the server cert against it.
1163 If 'ssl_version' is specified, use it in the connection attempt."""
1164
1165 host, port = addr
Christian Heimes67986f92013-11-23 22:43:47 +01001166 if ca_certs is not None:
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001167 cert_reqs = CERT_REQUIRED
1168 else:
1169 cert_reqs = CERT_NONE
Christian Heimes67986f92013-11-23 22:43:47 +01001170 context = _create_stdlib_context(ssl_version,
1171 cert_reqs=cert_reqs,
1172 cafile=ca_certs)
1173 with create_connection(addr) as sock:
1174 with context.wrap_socket(sock) as sslsock:
1175 dercert = sslsock.getpeercert(True)
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001176 return DER_cert_to_PEM_cert(dercert)
1177
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001178def get_protocol_name(protocol_code):
Victor Stinner3de49192011-05-09 00:42:58 +02001179 return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')