blob: 2849deee07e038bd20b0cc71e4d6c5397e978a7c [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
Christian Heimes5fe668c2016-09-12 00:01:11 +020055PROTOCOL_TLS_CLIENT
56PROTOCOL_TLS_SERVER
Thomas Woutersed03b412007-08-28 21:37:11 +000057PROTOCOL_TLSv1
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010058PROTOCOL_TLSv1_1
59PROTOCOL_TLSv1_2
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +010060
61The following constants identify various SSL alert message descriptions as per
62http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6
63
64ALERT_DESCRIPTION_CLOSE_NOTIFY
65ALERT_DESCRIPTION_UNEXPECTED_MESSAGE
66ALERT_DESCRIPTION_BAD_RECORD_MAC
67ALERT_DESCRIPTION_RECORD_OVERFLOW
68ALERT_DESCRIPTION_DECOMPRESSION_FAILURE
69ALERT_DESCRIPTION_HANDSHAKE_FAILURE
70ALERT_DESCRIPTION_BAD_CERTIFICATE
71ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE
72ALERT_DESCRIPTION_CERTIFICATE_REVOKED
73ALERT_DESCRIPTION_CERTIFICATE_EXPIRED
74ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN
75ALERT_DESCRIPTION_ILLEGAL_PARAMETER
76ALERT_DESCRIPTION_UNKNOWN_CA
77ALERT_DESCRIPTION_ACCESS_DENIED
78ALERT_DESCRIPTION_DECODE_ERROR
79ALERT_DESCRIPTION_DECRYPT_ERROR
80ALERT_DESCRIPTION_PROTOCOL_VERSION
81ALERT_DESCRIPTION_INSUFFICIENT_SECURITY
82ALERT_DESCRIPTION_INTERNAL_ERROR
83ALERT_DESCRIPTION_USER_CANCELLED
84ALERT_DESCRIPTION_NO_RENEGOTIATION
85ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION
86ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
87ALERT_DESCRIPTION_UNRECOGNIZED_NAME
88ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE
89ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE
90ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY
Thomas Woutersed03b412007-08-28 21:37:11 +000091"""
92
Antoine Pitrouc481bfb2015-02-15 18:12:20 +010093import ipaddress
Christian Heimes05e8be12008-02-23 18:30:17 +000094import textwrap
Antoine Pitrou59fdd672010-10-08 10:37:08 +000095import re
Christian Heimes46bebee2013-06-09 19:03:31 +020096import sys
Christian Heimes6d7ad132013-06-09 18:02:55 +020097import os
Christian Heimesa6bc95a2013-11-17 19:59:14 +010098from collections import namedtuple
Christian Heimes3aeacad2016-09-10 00:19:35 +020099from enum import Enum as _Enum, IntEnum as _IntEnum, IntFlag as _IntFlag
Thomas Woutersed03b412007-08-28 21:37:11 +0000100
101import _ssl # if we can't import it, let the error propagate
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000102
Antoine Pitrou04f6a322010-04-05 21:40:07 +0000103from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
Christian Heimes99a65702016-09-10 23:44:53 +0200104from _ssl import _SSLContext, MemoryBIO, SSLSession
Antoine Pitrou41032a62011-10-27 23:56:55 +0200105from _ssl import (
106 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
Christian Heimesb3ad0e52017-09-08 12:00:19 -0700107 SSLSyscallError, SSLEOFError, SSLCertVerificationError
Antoine Pitrou41032a62011-10-27 23:56:55 +0200108 )
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100109from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj
Victor Stinnerbeeb5122014-11-28 13:28:25 +0100110from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes
111try:
112 from _ssl import RAND_egd
113except ImportError:
114 # LibreSSL does not provide RAND_egd
115 pass
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100116
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100117
Christian Heimescb5b68a2017-09-07 18:07:00 -0700118from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN, HAS_TLSv1_3
Antoine Pitroub9ac25d2011-07-08 18:47:06 +0200119from _ssl import _OPENSSL_API_VERSION
120
Christian Heimes3aeacad2016-09-10 00:19:35 +0200121
Ethan Furman24e837f2015-03-18 17:27:57 -0700122_IntEnum._convert(
Christian Heimes3aeacad2016-09-10 00:19:35 +0200123 '_SSLMethod', __name__,
124 lambda name: name.startswith('PROTOCOL_') and name != 'PROTOCOL_SSLv23',
125 source=_ssl)
126
127_IntFlag._convert(
128 'Options', __name__,
129 lambda name: name.startswith('OP_'),
130 source=_ssl)
131
132_IntEnum._convert(
133 'AlertDescription', __name__,
134 lambda name: name.startswith('ALERT_DESCRIPTION_'),
135 source=_ssl)
136
137_IntEnum._convert(
138 'SSLErrorNumber', __name__,
139 lambda name: name.startswith('SSL_ERROR_'),
140 source=_ssl)
141
142_IntFlag._convert(
143 'VerifyFlags', __name__,
144 lambda name: name.startswith('VERIFY_'),
145 source=_ssl)
146
147_IntEnum._convert(
148 'VerifyMode', __name__,
149 lambda name: name.startswith('CERT_'),
150 source=_ssl)
151
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100152
Christian Heimes598894f2016-09-05 23:19:05 +0200153PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_TLS
Antoine Pitrou172f0252014-04-18 20:33:08 +0200154_PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()}
155
Christian Heimes3aeacad2016-09-10 00:19:35 +0200156_SSLv2_IF_EXISTS = getattr(_SSLMethod, 'PROTOCOL_SSLv2', None)
157
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100158
Christian Heimes46bebee2013-06-09 19:03:31 +0200159if sys.platform == "win32":
Christian Heimes44109d72013-11-22 01:51:30 +0100160 from _ssl import enum_certificates, enum_crls
Christian Heimes46bebee2013-06-09 19:03:31 +0200161
Antoine Pitrou15399c32011-04-28 19:23:55 +0200162from socket import socket, AF_INET, SOCK_STREAM, create_connection
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100163from socket import SOL_SOCKET, SO_TYPE
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000164import base64 # for DER-to-PEM translation
Antoine Pitroude8cf322010-04-26 17:29:05 +0000165import errno
Steve Dower33bc4a22016-05-26 12:18:12 -0700166import warnings
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000167
Andrew Svetlov0832af62012-12-18 23:10:48 +0200168
169socket_error = OSError # keep that public name in module namespace
170
Antoine Pitroud6494802011-07-21 01:11:30 +0200171if _ssl.HAS_TLS_UNIQUE:
172 CHANNEL_BINDING_TYPES = ['tls-unique']
173else:
174 CHANNEL_BINDING_TYPES = []
Thomas Woutersed03b412007-08-28 21:37:11 +0000175
Christian Heimes03d13c02016-09-06 20:06:47 +0200176
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100177# Disable weak or insecure ciphers by default
178# (OpenSSL's default setting is 'DEFAULT:!aNULL:!eNULL')
Donald Stufft79ccaa22014-03-21 21:33:34 -0400179# Enable a better set of ciphers by default
180# This list has been explicitly chosen to:
Christian Heimescb5b68a2017-09-07 18:07:00 -0700181# * TLS 1.3 ChaCha20 and AES-GCM cipher suites
Donald Stufft79ccaa22014-03-21 21:33:34 -0400182# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
183# * Prefer ECDHE over DHE for better performance
Christian Heimes03d13c02016-09-06 20:06:47 +0200184# * Prefer AEAD over CBC for better performance and security
185# * Prefer AES-GCM over ChaCha20 because most platforms have AES-NI
186# (ChaCha20 needs OpenSSL 1.1.0 or patched 1.0.2)
187# * Prefer any AES-GCM and ChaCha20 over any AES-CBC for better
188# performance and security
Donald Stufft79ccaa22014-03-21 21:33:34 -0400189# * Then Use HIGH cipher suites as a fallback
Christian Heimes03d13c02016-09-06 20:06:47 +0200190# * Disable NULL authentication, NULL encryption, 3DES and MD5 MACs
191# for security reasons
Donald Stufft79ccaa22014-03-21 21:33:34 -0400192_DEFAULT_CIPHERS = (
Christian Heimescb5b68a2017-09-07 18:07:00 -0700193 'TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:'
194 'TLS13-AES-128-GCM-SHA256:'
Christian Heimes03d13c02016-09-06 20:06:47 +0200195 'ECDH+AESGCM:ECDH+CHACHA20:DH+AESGCM:DH+CHACHA20:ECDH+AES256:DH+AES256:'
196 'ECDH+AES128:DH+AES:ECDH+HIGH:DH+HIGH:RSA+AESGCM:RSA+AES:RSA+HIGH:'
197 '!aNULL:!eNULL:!MD5:!3DES'
198 )
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100199
Donald Stufft6a2ba942014-03-23 19:05:28 -0400200# Restricted and more secure ciphers for the server side
Donald Stufft79ccaa22014-03-21 21:33:34 -0400201# This list has been explicitly chosen to:
Christian Heimescb5b68a2017-09-07 18:07:00 -0700202# * TLS 1.3 ChaCha20 and AES-GCM cipher suites
Donald Stufft79ccaa22014-03-21 21:33:34 -0400203# * Prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE)
204# * Prefer ECDHE over DHE for better performance
Christian Heimes03d13c02016-09-06 20:06:47 +0200205# * Prefer AEAD over CBC for better performance and security
206# * Prefer AES-GCM over ChaCha20 because most platforms have AES-NI
207# * Prefer any AES-GCM and ChaCha20 over any AES-CBC for better
208# performance and security
Donald Stufft79ccaa22014-03-21 21:33:34 -0400209# * Then Use HIGH cipher suites as a fallback
Christian Heimes03d13c02016-09-06 20:06:47 +0200210# * Disable NULL authentication, NULL encryption, MD5 MACs, DSS, RC4, and
211# 3DES for security reasons
Donald Stufft6a2ba942014-03-23 19:05:28 -0400212_RESTRICTED_SERVER_CIPHERS = (
Christian Heimescb5b68a2017-09-07 18:07:00 -0700213 'TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:'
214 'TLS13-AES-128-GCM-SHA256:'
Christian Heimes03d13c02016-09-06 20:06:47 +0200215 'ECDH+AESGCM:ECDH+CHACHA20:DH+AESGCM:DH+CHACHA20:ECDH+AES256:DH+AES256:'
216 'ECDH+AES128:DH+AES:ECDH+HIGH:DH+HIGH:RSA+AESGCM:RSA+AES:RSA+HIGH:'
217 '!aNULL:!eNULL:!MD5:!DSS:!RC4:!3DES'
Donald Stufft79ccaa22014-03-21 21:33:34 -0400218)
Christian Heimes4c05b472013-11-23 15:58:30 +0100219
Thomas Woutersed03b412007-08-28 21:37:11 +0000220
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000221class CertificateError(ValueError):
222 pass
223
224
Georg Brandl72c98d32013-10-27 07:16:53 +0100225def _dnsname_match(dn, hostname, max_wildcards=1):
226 """Matching according to RFC 6125, section 6.4.3
227
228 http://tools.ietf.org/html/rfc6125#section-6.4.3
229 """
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000230 pats = []
Georg Brandl72c98d32013-10-27 07:16:53 +0100231 if not dn:
232 return False
233
234 leftmost, *remainder = dn.split(r'.')
235
236 wildcards = leftmost.count('*')
237 if wildcards > max_wildcards:
238 # Issue #17980: avoid denials of service by refusing more
Berker Peksagf23530f2014-10-19 18:04:38 +0300239 # than one wildcard per fragment. A survey of established
Georg Brandl72c98d32013-10-27 07:16:53 +0100240 # policy among SSL implementations showed it to be a
241 # reasonable choice.
242 raise CertificateError(
243 "too many wildcards in certificate DNS name: " + repr(dn))
244
245 # speed up common case w/o wildcards
246 if not wildcards:
247 return dn.lower() == hostname.lower()
248
249 # RFC 6125, section 6.4.3, subitem 1.
250 # The client SHOULD NOT attempt to match a presented identifier in which
251 # the wildcard character comprises a label other than the left-most label.
252 if leftmost == '*':
253 # When '*' is a fragment by itself, it matches a non-empty dotless
254 # fragment.
255 pats.append('[^.]+')
256 elif leftmost.startswith('xn--') or hostname.startswith('xn--'):
257 # RFC 6125, section 6.4.3, subitem 3.
258 # The client SHOULD NOT attempt to match a presented identifier
259 # where the wildcard character is embedded within an A-label or
260 # U-label of an internationalized domain name.
261 pats.append(re.escape(leftmost))
262 else:
263 # Otherwise, '*' matches any dotless string, e.g. www*
264 pats.append(re.escape(leftmost).replace(r'\*', '[^.]*'))
265
266 # add the remaining fragments, ignore any wildcards
267 for frag in remainder:
268 pats.append(re.escape(frag))
269
270 pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
271 return pat.match(hostname)
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000272
273
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100274def _ipaddress_match(ipname, host_ip):
275 """Exact matching of IP addresses.
276
277 RFC 6125 explicitly doesn't define an algorithm for this
278 (section 1.7.2 - "Out of Scope").
279 """
280 # OpenSSL may add a trailing newline to a subjectAltName's IP address
281 ip = ipaddress.ip_address(ipname.rstrip())
282 return ip == host_ip
283
284
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000285def match_hostname(cert, hostname):
286 """Verify that *cert* (in decoded format as returned by
Georg Brandl72c98d32013-10-27 07:16:53 +0100287 SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125
288 rules are followed, but IP addresses are not accepted for *hostname*.
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000289
290 CertificateError is raised on failure. On success, the function
291 returns nothing.
292 """
293 if not cert:
Christian Heimes1aa9a752013-12-02 02:41:19 +0100294 raise ValueError("empty or no certificate, match_hostname needs a "
295 "SSL socket or SSL context with either "
296 "CERT_OPTIONAL or CERT_REQUIRED")
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100297 try:
298 host_ip = ipaddress.ip_address(hostname)
299 except ValueError:
300 # Not an IP address (common case)
301 host_ip = None
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000302 dnsnames = []
303 san = cert.get('subjectAltName', ())
304 for key, value in san:
305 if key == 'DNS':
Antoine Pitrouc481bfb2015-02-15 18:12:20 +0100306 if host_ip is None and _dnsname_match(value, hostname):
307 return
308 dnsnames.append(value)
309 elif key == 'IP Address':
310 if host_ip is not None and _ipaddress_match(value, host_ip):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000311 return
312 dnsnames.append(value)
Antoine Pitrou1c86b442011-05-06 15:19:49 +0200313 if not dnsnames:
314 # The subject is only checked when there is no dNSName entry
315 # in subjectAltName
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000316 for sub in cert.get('subject', ()):
317 for key, value in sub:
318 # XXX according to RFC 2818, the most specific Common Name
319 # must be used.
320 if key == 'commonName':
Georg Brandl72c98d32013-10-27 07:16:53 +0100321 if _dnsname_match(value, hostname):
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000322 return
323 dnsnames.append(value)
324 if len(dnsnames) > 1:
325 raise CertificateError("hostname %r "
326 "doesn't match either of %s"
327 % (hostname, ', '.join(map(repr, dnsnames))))
328 elif len(dnsnames) == 1:
329 raise CertificateError("hostname %r "
330 "doesn't match %r"
331 % (hostname, dnsnames[0]))
332 else:
333 raise CertificateError("no appropriate commonName or "
334 "subjectAltName fields were found")
335
336
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100337DefaultVerifyPaths = namedtuple("DefaultVerifyPaths",
Christian Heimes6d7ad132013-06-09 18:02:55 +0200338 "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env "
339 "openssl_capath")
340
341def get_default_verify_paths():
342 """Return paths to default cafile and capath.
343 """
344 parts = _ssl.get_default_verify_paths()
345
346 # environment vars shadow paths
347 cafile = os.environ.get(parts[0], parts[1])
348 capath = os.environ.get(parts[2], parts[3])
349
350 return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None,
351 capath if os.path.isdir(capath) else None,
352 *parts)
353
354
Christian Heimesa6bc95a2013-11-17 19:59:14 +0100355class _ASN1Object(namedtuple("_ASN1Object", "nid shortname longname oid")):
356 """ASN.1 object identifier lookup
357 """
358 __slots__ = ()
359
360 def __new__(cls, oid):
361 return super().__new__(cls, *_txt2obj(oid, name=False))
362
363 @classmethod
364 def fromnid(cls, nid):
365 """Create _ASN1Object from OpenSSL numeric ID
366 """
367 return super().__new__(cls, *_nid2obj(nid))
368
369 @classmethod
370 def fromname(cls, name):
371 """Create _ASN1Object from short name, long name or OID
372 """
373 return super().__new__(cls, *_txt2obj(name, name=True))
374
375
Christian Heimes72d28502013-11-23 13:56:58 +0100376class Purpose(_ASN1Object, _Enum):
377 """SSLContext purpose flags with X509v3 Extended Key Usage objects
378 """
379 SERVER_AUTH = '1.3.6.1.5.5.7.3.1'
380 CLIENT_AUTH = '1.3.6.1.5.5.7.3.2'
381
382
Antoine Pitrou152efa22010-05-16 18:19:27 +0000383class SSLContext(_SSLContext):
384 """An SSLContext holds various SSL-related configuration options and
385 data, such as certificates and possibly a private key."""
Christian Heimes72d28502013-11-23 13:56:58 +0100386 _windows_cert_stores = ("CA", "ROOT")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000387
Christian Heimes4df60f12017-09-15 20:26:05 +0200388 sslsocket_class = None # SSLSocket is assigned later.
389 sslobject_class = None # SSLObject is assigned later.
390
Christian Heimes598894f2016-09-05 23:19:05 +0200391 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100392 self = _SSLContext.__new__(cls, protocol)
393 if protocol != _SSLv2_IF_EXISTS:
394 self.set_ciphers(_DEFAULT_CIPHERS)
395 return self
Antoine Pitrou152efa22010-05-16 18:19:27 +0000396
Christian Heimes598894f2016-09-05 23:19:05 +0200397 def __init__(self, protocol=PROTOCOL_TLS):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000398 self.protocol = protocol
399
400 def wrap_socket(self, sock, server_side=False,
401 do_handshake_on_connect=True,
Antoine Pitroud5323212010-10-22 18:19:07 +0000402 suppress_ragged_eofs=True,
Christian Heimes99a65702016-09-10 23:44:53 +0200403 server_hostname=None, session=None):
Christian Heimes4df60f12017-09-15 20:26:05 +0200404 return self.sslsocket_class(
405 sock=sock,
406 server_side=server_side,
407 do_handshake_on_connect=do_handshake_on_connect,
408 suppress_ragged_eofs=suppress_ragged_eofs,
409 server_hostname=server_hostname,
410 _context=self,
411 _session=session
412 )
Antoine Pitrou152efa22010-05-16 18:19:27 +0000413
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200414 def wrap_bio(self, incoming, outgoing, server_side=False,
Christian Heimes99a65702016-09-10 23:44:53 +0200415 server_hostname=None, session=None):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200416 sslobj = self._wrap_bio(incoming, outgoing, server_side=server_side,
417 server_hostname=server_hostname)
Christian Heimes4df60f12017-09-15 20:26:05 +0200418 return self.sslobject_class(sslobj, session=session)
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200419
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100420 def set_npn_protocols(self, npn_protocols):
421 protos = bytearray()
422 for protocol in npn_protocols:
423 b = bytes(protocol, 'ascii')
424 if len(b) == 0 or len(b) > 255:
425 raise SSLError('NPN protocols must be 1 to 255 in length')
426 protos.append(len(b))
427 protos.extend(b)
428
429 self._set_npn_protocols(protos)
430
Benjamin Petersoncca27322015-01-23 16:35:37 -0500431 def set_alpn_protocols(self, alpn_protocols):
432 protos = bytearray()
433 for protocol in alpn_protocols:
434 b = bytes(protocol, 'ascii')
435 if len(b) == 0 or len(b) > 255:
436 raise SSLError('ALPN protocols must be 1 to 255 in length')
437 protos.append(len(b))
438 protos.extend(b)
439
440 self._set_alpn_protocols(protos)
441
Christian Heimes72d28502013-11-23 13:56:58 +0100442 def _load_windows_store_certs(self, storename, purpose):
443 certs = bytearray()
Steve Dower33bc4a22016-05-26 12:18:12 -0700444 try:
445 for cert, encoding, trust in enum_certificates(storename):
446 # CA certs are never PKCS#7 encoded
447 if encoding == "x509_asn":
448 if trust is True or purpose.oid in trust:
449 certs.extend(cert)
450 except PermissionError:
451 warnings.warn("unable to enumerate Windows certificate store")
Steve Dower8dd7aeb2016-03-17 15:02:39 -0700452 if certs:
453 self.load_verify_locations(cadata=certs)
Christian Heimes72d28502013-11-23 13:56:58 +0100454 return certs
455
456 def load_default_certs(self, purpose=Purpose.SERVER_AUTH):
457 if not isinstance(purpose, _ASN1Object):
458 raise TypeError(purpose)
459 if sys.platform == "win32":
460 for storename in self._windows_cert_stores:
461 self._load_windows_store_certs(storename, purpose)
Benjamin Peterson5915b0f2014-10-03 17:27:05 -0400462 self.set_default_verify_paths()
Christian Heimes72d28502013-11-23 13:56:58 +0100463
Christian Heimes3aeacad2016-09-10 00:19:35 +0200464 @property
465 def options(self):
466 return Options(super().options)
467
468 @options.setter
469 def options(self, value):
470 super(SSLContext, SSLContext).options.__set__(self, value)
471
472 @property
473 def verify_flags(self):
474 return VerifyFlags(super().verify_flags)
475
476 @verify_flags.setter
477 def verify_flags(self, value):
478 super(SSLContext, SSLContext).verify_flags.__set__(self, value)
479
480 @property
481 def verify_mode(self):
482 value = super().verify_mode
483 try:
484 return VerifyMode(value)
485 except ValueError:
486 return value
487
488 @verify_mode.setter
489 def verify_mode(self, value):
490 super(SSLContext, SSLContext).verify_mode.__set__(self, value)
491
Antoine Pitrou152efa22010-05-16 18:19:27 +0000492
Christian Heimes4c05b472013-11-23 15:58:30 +0100493def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,
494 capath=None, cadata=None):
495 """Create a SSLContext object with default settings.
496
497 NOTE: The protocol and settings may change anytime without prior
498 deprecation. The values represent a fair balance between maximum
499 compatibility and security.
500 """
501 if not isinstance(purpose, _ASN1Object):
502 raise TypeError(purpose)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400503
Christian Heimes358cfd42016-09-10 22:43:48 +0200504 # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,
505 # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE
506 # by default.
Christian Heimes598894f2016-09-05 23:19:05 +0200507 context = SSLContext(PROTOCOL_TLS)
Donald Stufft6a2ba942014-03-23 19:05:28 -0400508
Christian Heimes4c05b472013-11-23 15:58:30 +0100509 if purpose == Purpose.SERVER_AUTH:
Donald Stufft6a2ba942014-03-23 19:05:28 -0400510 # verify certs and host name in client mode
Christian Heimes4c05b472013-11-23 15:58:30 +0100511 context.verify_mode = CERT_REQUIRED
Christian Heimes1aa9a752013-12-02 02:41:19 +0100512 context.check_hostname = True
Donald Stufft6a2ba942014-03-23 19:05:28 -0400513 elif purpose == Purpose.CLIENT_AUTH:
Donald Stufft6a2ba942014-03-23 19:05:28 -0400514 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS)
515
Christian Heimes4c05b472013-11-23 15:58:30 +0100516 if cafile or capath or cadata:
517 context.load_verify_locations(cafile, capath, cadata)
518 elif context.verify_mode != CERT_NONE:
519 # no explicit cafile, capath or cadata but the verify mode is
520 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
521 # root CA certificates for the given purpose. This may fail silently.
522 context.load_default_certs(purpose)
523 return context
524
Christian Heimes598894f2016-09-05 23:19:05 +0200525def _create_unverified_context(protocol=PROTOCOL_TLS, *, cert_reqs=None,
Christian Heimesa02c69a2013-12-02 20:59:28 +0100526 check_hostname=False, purpose=Purpose.SERVER_AUTH,
Christian Heimes67986f92013-11-23 22:43:47 +0100527 certfile=None, keyfile=None,
528 cafile=None, capath=None, cadata=None):
529 """Create a SSLContext object for Python stdlib modules
530
531 All Python stdlib modules shall use this function to create SSLContext
532 objects in order to keep common settings in one place. The configuration
533 is less restrict than create_default_context()'s to increase backward
534 compatibility.
535 """
536 if not isinstance(purpose, _ASN1Object):
537 raise TypeError(purpose)
538
Christian Heimes358cfd42016-09-10 22:43:48 +0200539 # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,
540 # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE
541 # by default.
Christian Heimes67986f92013-11-23 22:43:47 +0100542 context = SSLContext(protocol)
Christian Heimes67986f92013-11-23 22:43:47 +0100543
544 if cert_reqs is not None:
545 context.verify_mode = cert_reqs
Christian Heimesa02c69a2013-12-02 20:59:28 +0100546 context.check_hostname = check_hostname
Christian Heimes67986f92013-11-23 22:43:47 +0100547
548 if keyfile and not certfile:
549 raise ValueError("certfile must be specified")
550 if certfile or keyfile:
551 context.load_cert_chain(certfile, keyfile)
552
553 # load CA root certs
554 if cafile or capath or cadata:
555 context.load_verify_locations(cafile, capath, cadata)
556 elif context.verify_mode != CERT_NONE:
557 # no explicit cafile, capath or cadata but the verify mode is
558 # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system
559 # root CA certificates for the given purpose. This may fail silently.
560 context.load_default_certs(purpose)
561
562 return context
563
Benjamin Peterson4ffb0752014-11-03 14:29:33 -0500564# Used by http.client if no context is explicitly passed.
565_create_default_https_context = create_default_context
566
567
568# Backwards compatibility alias, even though it's not a public name.
569_create_stdlib_context = _create_unverified_context
570
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200571
572class SSLObject:
573 """This class implements an interface on top of a low-level SSL object as
574 implemented by OpenSSL. This object captures the state of an SSL connection
575 but does not provide any network IO itself. IO needs to be performed
576 through separate "BIO" objects which are OpenSSL's IO abstraction layer.
577
578 This class does not have a public constructor. Instances are returned by
579 ``SSLContext.wrap_bio``. This class is typically used by framework authors
580 that want to implement asynchronous IO for SSL through memory buffers.
581
582 When compared to ``SSLSocket``, this object lacks the following features:
583
584 * Any form of network IO incluging methods such as ``recv`` and ``send``.
585 * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery.
586 """
587
Christian Heimes99a65702016-09-10 23:44:53 +0200588 def __init__(self, sslobj, owner=None, session=None):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200589 self._sslobj = sslobj
590 # Note: _sslobj takes a weak reference to owner
591 self._sslobj.owner = owner or self
Christian Heimes99a65702016-09-10 23:44:53 +0200592 if session is not None:
593 self._sslobj.session = session
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200594
595 @property
596 def context(self):
597 """The SSLContext that is currently in use."""
598 return self._sslobj.context
599
600 @context.setter
601 def context(self, ctx):
602 self._sslobj.context = ctx
603
604 @property
Christian Heimes99a65702016-09-10 23:44:53 +0200605 def session(self):
606 """The SSLSession for client socket."""
607 return self._sslobj.session
608
609 @session.setter
610 def session(self, session):
611 self._sslobj.session = session
612
613 @property
614 def session_reused(self):
615 """Was the client session reused during handshake"""
616 return self._sslobj.session_reused
617
618 @property
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200619 def server_side(self):
620 """Whether this is a server-side socket."""
621 return self._sslobj.server_side
622
623 @property
624 def server_hostname(self):
625 """The currently set server hostname (for SNI), or ``None`` if no
626 server hostame is set."""
627 return self._sslobj.server_hostname
628
Martin Panterf6b1d662016-03-28 00:22:09 +0000629 def read(self, len=1024, buffer=None):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200630 """Read up to 'len' bytes from the SSL object and return them.
631
632 If 'buffer' is provided, read into this buffer and return the number of
633 bytes read.
634 """
635 if buffer is not None:
636 v = self._sslobj.read(len, buffer)
637 else:
Martin Panterf6b1d662016-03-28 00:22:09 +0000638 v = self._sslobj.read(len)
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200639 return v
640
641 def write(self, data):
642 """Write 'data' to the SSL object and return the number of bytes
643 written.
644
645 The 'data' argument must support the buffer interface.
646 """
647 return self._sslobj.write(data)
648
649 def getpeercert(self, binary_form=False):
650 """Returns a formatted version of the data in the certificate provided
651 by the other end of the SSL channel.
652
653 Return None if no certificate was provided, {} if a certificate was
654 provided, but not validated.
655 """
656 return self._sslobj.peer_certificate(binary_form)
657
658 def selected_npn_protocol(self):
659 """Return the currently selected NPN protocol as a string, or ``None``
660 if a next protocol was not negotiated or if NPN is not supported by one
661 of the peers."""
662 if _ssl.HAS_NPN:
663 return self._sslobj.selected_npn_protocol()
664
Benjamin Petersoncca27322015-01-23 16:35:37 -0500665 def selected_alpn_protocol(self):
666 """Return the currently selected ALPN protocol as a string, or ``None``
667 if a next protocol was not negotiated or if ALPN is not supported by one
668 of the peers."""
669 if _ssl.HAS_ALPN:
670 return self._sslobj.selected_alpn_protocol()
671
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200672 def cipher(self):
673 """Return the currently selected cipher as a 3-tuple ``(name,
674 ssl_version, secret_bits)``."""
675 return self._sslobj.cipher()
676
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600677 def shared_ciphers(self):
Benjamin Petersonc114e7d2015-01-11 15:22:07 -0500678 """Return a list of ciphers shared by the client during the handshake or
679 None if this is not a valid server connection.
Benjamin Peterson5318c7a2015-01-07 11:26:50 -0600680 """
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600681 return self._sslobj.shared_ciphers()
682
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200683 def compression(self):
684 """Return the current compression algorithm in use, or ``None`` if
685 compression was not negotiated or not supported by one of the peers."""
686 return self._sslobj.compression()
687
688 def pending(self):
689 """Return the number of bytes that can be read immediately."""
690 return self._sslobj.pending()
691
Antoine Pitrou3cb93792014-10-06 00:21:09 +0200692 def do_handshake(self):
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200693 """Start the SSL/TLS handshake."""
694 self._sslobj.do_handshake()
695 if self.context.check_hostname:
696 if not self.server_hostname:
697 raise ValueError("check_hostname needs server_hostname "
698 "argument")
699 match_hostname(self.getpeercert(), self.server_hostname)
700
701 def unwrap(self):
702 """Start the SSL shutdown handshake."""
703 return self._sslobj.shutdown()
704
705 def get_channel_binding(self, cb_type="tls-unique"):
706 """Get channel binding data for current connection. Raise ValueError
707 if the requested `cb_type` is not supported. Return bytes of the data
708 or None if the data is not available (e.g. before the handshake)."""
709 if cb_type not in CHANNEL_BINDING_TYPES:
710 raise ValueError("Unsupported channel binding type")
711 if cb_type != "tls-unique":
712 raise NotImplementedError(
713 "{0} channel binding type not implemented"
714 .format(cb_type))
715 return self._sslobj.tls_unique_cb()
716
717 def version(self):
718 """Return a string identifying the protocol version used by the
719 current SSL channel. """
720 return self._sslobj.version()
721
722
Antoine Pitrou152efa22010-05-16 18:19:27 +0000723class SSLSocket(socket):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000724 """This class implements a subtype of socket.socket that wraps
725 the underlying OS socket in an SSL context when necessary, and
726 provides read and write methods over that channel."""
727
Bill Janssen6e027db2007-11-15 22:23:56 +0000728 def __init__(self, sock=None, keyfile=None, certfile=None,
Thomas Woutersed03b412007-08-28 21:37:11 +0000729 server_side=False, cert_reqs=CERT_NONE,
Christian Heimes598894f2016-09-05 23:19:05 +0200730 ssl_version=PROTOCOL_TLS, ca_certs=None,
Bill Janssen6e027db2007-11-15 22:23:56 +0000731 do_handshake_on_connect=True,
732 family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100733 suppress_ragged_eofs=True, npn_protocols=None, ciphers=None,
Antoine Pitroud5323212010-10-22 18:19:07 +0000734 server_hostname=None,
Christian Heimes99a65702016-09-10 23:44:53 +0200735 _context=None, _session=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000736
Antoine Pitrou152efa22010-05-16 18:19:27 +0000737 if _context:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100738 self._context = _context
Antoine Pitrou152efa22010-05-16 18:19:27 +0000739 else:
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000740 if server_side and not certfile:
741 raise ValueError("certfile must be specified for server-side "
742 "operations")
Giampaolo Rodolà8b7da622010-08-30 18:28:05 +0000743 if keyfile and not certfile:
744 raise ValueError("certfile must be specified")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000745 if certfile and not keyfile:
746 keyfile = certfile
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100747 self._context = SSLContext(ssl_version)
748 self._context.verify_mode = cert_reqs
Antoine Pitrou152efa22010-05-16 18:19:27 +0000749 if ca_certs:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100750 self._context.load_verify_locations(ca_certs)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000751 if certfile:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100752 self._context.load_cert_chain(certfile, keyfile)
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100753 if npn_protocols:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100754 self._context.set_npn_protocols(npn_protocols)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000755 if ciphers:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100756 self._context.set_ciphers(ciphers)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000757 self.keyfile = keyfile
758 self.certfile = certfile
759 self.cert_reqs = cert_reqs
760 self.ssl_version = ssl_version
761 self.ca_certs = ca_certs
762 self.ciphers = ciphers
Antoine Pitrou3e86ba42013-12-28 17:26:33 +0100763 # Can't use sock.type as other flags (such as SOCK_NONBLOCK) get
764 # mixed in.
765 if sock.getsockopt(SOL_SOCKET, SO_TYPE) != SOCK_STREAM:
766 raise NotImplementedError("only stream sockets are supported")
Christian Heimes99a65702016-09-10 23:44:53 +0200767 if server_side:
768 if server_hostname:
769 raise ValueError("server_hostname can only be specified "
770 "in client mode")
771 if _session is not None:
772 raise ValueError("session can only be specified in "
773 "client mode")
Christian Heimes1aa9a752013-12-02 02:41:19 +0100774 if self._context.check_hostname and not server_hostname:
Benjamin Peterson7243b572014-11-23 17:04:34 -0600775 raise ValueError("check_hostname requires server_hostname")
Christian Heimes99a65702016-09-10 23:44:53 +0200776 self._session = _session
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000777 self.server_side = server_side
Antoine Pitroud5323212010-10-22 18:19:07 +0000778 self.server_hostname = server_hostname
Antoine Pitrou152efa22010-05-16 18:19:27 +0000779 self.do_handshake_on_connect = do_handshake_on_connect
780 self.suppress_ragged_eofs = suppress_ragged_eofs
Bill Janssen6e027db2007-11-15 22:23:56 +0000781 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000782 socket.__init__(self,
783 family=sock.family,
784 type=sock.type,
785 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000786 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000787 self.settimeout(sock.gettimeout())
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000788 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000789 elif fileno is not None:
790 socket.__init__(self, fileno=fileno)
791 else:
792 socket.__init__(self, family=family, type=type, proto=proto)
793
Antoine Pitrou242db722013-05-01 20:52:07 +0200794 # See if we are connected
795 try:
796 self.getpeername()
797 except OSError as e:
798 if e.errno != errno.ENOTCONN:
799 raise
800 connected = False
801 else:
802 connected = True
803
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000804 self._closed = False
805 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000806 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000807 if connected:
808 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000809 try:
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200810 sslobj = self._context._wrap_socket(self, server_side,
811 server_hostname)
Christian Heimes99a65702016-09-10 23:44:53 +0200812 self._sslobj = SSLObject(sslobj, owner=self,
813 session=self._session)
Bill Janssen6e027db2007-11-15 22:23:56 +0000814 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000815 timeout = self.gettimeout()
816 if timeout == 0.0:
817 # non-blocking
818 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000819 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000820
Christian Heimes1aa9a752013-12-02 02:41:19 +0100821 except (OSError, ValueError):
Bill Janssen6e027db2007-11-15 22:23:56 +0000822 self.close()
Christian Heimes1aa9a752013-12-02 02:41:19 +0100823 raise
Antoine Pitrou242db722013-05-01 20:52:07 +0200824
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100825 @property
826 def context(self):
827 return self._context
828
829 @context.setter
830 def context(self, ctx):
831 self._context = ctx
832 self._sslobj.context = ctx
Bill Janssen6e027db2007-11-15 22:23:56 +0000833
Christian Heimes99a65702016-09-10 23:44:53 +0200834 @property
835 def session(self):
836 """The SSLSession for client socket."""
837 if self._sslobj is not None:
838 return self._sslobj.session
839
840 @session.setter
841 def session(self, session):
842 self._session = session
843 if self._sslobj is not None:
844 self._sslobj.session = session
845
846 @property
847 def session_reused(self):
848 """Was the client session reused during handshake"""
849 if self._sslobj is not None:
850 return self._sslobj.session_reused
851
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000852 def dup(self):
853 raise NotImplemented("Can't dup() %s instances" %
854 self.__class__.__name__)
855
Bill Janssen6e027db2007-11-15 22:23:56 +0000856 def _checkClosed(self, msg=None):
857 # raise an exception here if you wish to check for spurious closes
858 pass
859
Antoine Pitrou242db722013-05-01 20:52:07 +0200860 def _check_connected(self):
861 if not self._connected:
862 # getpeername() will raise ENOTCONN if the socket is really
863 # not connected; note that we can be connected even without
864 # _connected being set, e.g. if connect() first returned
865 # EAGAIN.
866 self.getpeername()
867
Martin Panterf6b1d662016-03-28 00:22:09 +0000868 def read(self, len=1024, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000869 """Read up to LEN bytes and return them.
870 Return zero-length string on EOF."""
871
Bill Janssen6e027db2007-11-15 22:23:56 +0000872 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200873 if not self._sslobj:
874 raise ValueError("Read on closed or unwrapped SSL socket.")
Bill Janssen6e027db2007-11-15 22:23:56 +0000875 try:
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200876 return self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000877 except SSLError as x:
878 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000879 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000880 return 0
881 else:
882 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000883 else:
884 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000885
886 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000887 """Write DATA to the underlying SSL channel. Returns
888 number of bytes of DATA actually transmitted."""
889
Bill Janssen6e027db2007-11-15 22:23:56 +0000890 self._checkClosed()
Antoine Pitrou60a26e02013-07-20 19:35:16 +0200891 if not self._sslobj:
892 raise ValueError("Write on closed or unwrapped SSL socket.")
Thomas Woutersed03b412007-08-28 21:37:11 +0000893 return self._sslobj.write(data)
894
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000895 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000896 """Returns a formatted version of the data in the
897 certificate provided by the other end of the SSL channel.
898 Return None if no certificate was provided, {} if a
899 certificate was provided, but not validated."""
900
Bill Janssen6e027db2007-11-15 22:23:56 +0000901 self._checkClosed()
Antoine Pitrou242db722013-05-01 20:52:07 +0200902 self._check_connected()
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200903 return self._sslobj.getpeercert(binary_form)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000904
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100905 def selected_npn_protocol(self):
906 self._checkClosed()
907 if not self._sslobj or not _ssl.HAS_NPN:
908 return None
909 else:
910 return self._sslobj.selected_npn_protocol()
911
Benjamin Petersoncca27322015-01-23 16:35:37 -0500912 def selected_alpn_protocol(self):
913 self._checkClosed()
914 if not self._sslobj or not _ssl.HAS_ALPN:
915 return None
916 else:
917 return self._sslobj.selected_alpn_protocol()
918
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000919 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000920 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000921 if not self._sslobj:
922 return None
923 else:
924 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000925
Benjamin Peterson4cb17812015-01-07 11:14:26 -0600926 def shared_ciphers(self):
927 self._checkClosed()
928 if not self._sslobj:
929 return None
930 return self._sslobj.shared_ciphers()
931
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100932 def compression(self):
933 self._checkClosed()
934 if not self._sslobj:
935 return None
936 else:
937 return self._sslobj.compression()
938
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000939 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000940 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000941 if self._sslobj:
942 if flags != 0:
943 raise ValueError(
944 "non-zero flags not allowed in calls to send() on %s" %
945 self.__class__)
Antoine Pitroub4bebda2014-04-29 10:03:28 +0200946 return self._sslobj.write(data)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000947 else:
948 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000949
Antoine Pitroua468adc2010-09-14 14:43:44 +0000950 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000951 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000952 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000953 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000954 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000955 elif addr is None:
956 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000957 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000958 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000959
Nick Coghlan513886a2011-08-28 00:00:27 +1000960 def sendmsg(self, *args, **kwargs):
961 # Ensure programs don't send data unencrypted if they try to
962 # use this method.
963 raise NotImplementedError("sendmsg not allowed on instances of %s" %
964 self.__class__)
965
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000966 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000967 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000968 if self._sslobj:
Giampaolo Rodolà374f8352010-08-29 12:08:09 +0000969 if flags != 0:
970 raise ValueError(
971 "non-zero flags not allowed in calls to sendall() on %s" %
972 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000973 count = 0
Christian Heimes888bbdc2017-09-07 14:18:21 -0700974 with memoryview(data) as view, view.cast("B") as byte_view:
975 amount = len(byte_view)
976 while count < amount:
977 v = self.send(byte_view[count:])
978 count += v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000979 else:
980 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000981
Giampaolo Rodola'915d1412014-06-11 03:54:30 +0200982 def sendfile(self, file, offset=0, count=None):
983 """Send a file, possibly by using os.sendfile() if this is a
984 clear-text socket. Return the total number of bytes sent.
985 """
986 if self._sslobj is None:
987 # os.sendfile() works with plain sockets only
988 return super().sendfile(file, offset, count)
989 else:
990 return self._sendfile_use_send(file, offset, count)
991
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000992 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000993 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000994 if self._sslobj:
995 if flags != 0:
996 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000997 "non-zero flags not allowed in calls to recv() on %s" %
998 self.__class__)
999 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001000 else:
1001 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +00001002
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001003 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +00001004 self._checkClosed()
1005 if buffer and (nbytes is None):
1006 nbytes = len(buffer)
1007 elif nbytes is None:
1008 nbytes = 1024
1009 if self._sslobj:
1010 if flags != 0:
1011 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001012 "non-zero flags not allowed in calls to recv_into() on %s" %
1013 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +00001014 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +00001015 else:
1016 return socket.recv_into(self, buffer, nbytes, flags)
1017
Antoine Pitroua468adc2010-09-14 14:43:44 +00001018 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +00001019 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001020 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +00001021 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001022 self.__class__)
1023 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +00001024 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +00001025
Bill Janssen58afe4c2008-09-08 16:45:19 +00001026 def recvfrom_into(self, buffer, nbytes=None, flags=0):
1027 self._checkClosed()
1028 if self._sslobj:
1029 raise ValueError("recvfrom_into not allowed on instances of %s" %
1030 self.__class__)
1031 else:
1032 return socket.recvfrom_into(self, buffer, nbytes, flags)
1033
Nick Coghlan513886a2011-08-28 00:00:27 +10001034 def recvmsg(self, *args, **kwargs):
1035 raise NotImplementedError("recvmsg not allowed on instances of %s" %
1036 self.__class__)
1037
1038 def recvmsg_into(self, *args, **kwargs):
1039 raise NotImplementedError("recvmsg_into not allowed on instances of "
1040 "%s" % self.__class__)
1041
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001042 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +00001043 self._checkClosed()
1044 if self._sslobj:
1045 return self._sslobj.pending()
1046 else:
1047 return 0
1048
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001049 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +00001050 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001051 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001052 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +00001053
Ezio Melottidc55e672010-01-18 09:15:14 +00001054 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +00001055 if self._sslobj:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001056 s = self._sslobj.unwrap()
Bill Janssen40a0f662008-08-12 16:56:25 +00001057 self._sslobj = None
1058 return s
1059 else:
1060 raise ValueError("No SSL wrapper around " + str(self))
1061
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001062 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001063 self._sslobj = None
Bill Janssen54cc54c2007-12-14 22:08:56 +00001064 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +00001065
Bill Janssen48dc27c2007-12-05 03:38:10 +00001066 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +00001067 """Perform a TLS/SSL handshake."""
Antoine Pitrou242db722013-05-01 20:52:07 +02001068 self._check_connected()
Bill Janssen48dc27c2007-12-05 03:38:10 +00001069 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +00001070 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +00001071 if timeout == 0.0 and block:
1072 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +00001073 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +00001074 finally:
1075 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +00001076
Antoine Pitroub4410db2011-05-18 18:51:06 +02001077 def _real_connect(self, addr, connect_ex):
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00001078 if self.server_side:
1079 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +00001080 # Here we assume that the socket is client-side, and not
1081 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001082 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001083 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001084 sslobj = self.context._wrap_socket(self, False, self.server_hostname)
Christian Heimes99a65702016-09-10 23:44:53 +02001085 self._sslobj = SSLObject(sslobj, owner=self,
1086 session=self._session)
Bill Janssen54cc54c2007-12-14 22:08:56 +00001087 try:
Antoine Pitroub4410db2011-05-18 18:51:06 +02001088 if connect_ex:
1089 rc = socket.connect_ex(self, addr)
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001090 else:
Antoine Pitroub4410db2011-05-18 18:51:06 +02001091 rc = None
1092 socket.connect(self, addr)
1093 if not rc:
Antoine Pitrou242db722013-05-01 20:52:07 +02001094 self._connected = True
Antoine Pitroub4410db2011-05-18 18:51:06 +02001095 if self.do_handshake_on_connect:
1096 self.do_handshake()
Antoine Pitroub4410db2011-05-18 18:51:06 +02001097 return rc
Christian Heimes1aa9a752013-12-02 02:41:19 +01001098 except (OSError, ValueError):
Antoine Pitroub4410db2011-05-18 18:51:06 +02001099 self._sslobj = None
1100 raise
Antoine Pitroue93bf7a2011-02-26 23:24:06 +00001101
1102 def connect(self, addr):
1103 """Connects to remote ADDR, and then wraps the connection in
1104 an SSL channel."""
1105 self._real_connect(addr, False)
1106
1107 def connect_ex(self, addr):
1108 """Connects to remote ADDR, and then wraps the connection in
1109 an SSL channel."""
1110 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +00001111
1112 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001113 """Accepts a new connection from a remote client, and returns
1114 a tuple containing that new connection wrapped with a server-side
1115 SSL channel, and the address of the remote client."""
1116
1117 newsock, addr = socket.accept(self)
Antoine Pitrou5c89b4e2012-11-11 01:25:36 +01001118 newsock = self.context.wrap_socket(newsock,
1119 do_handshake_on_connect=self.do_handshake_on_connect,
1120 suppress_ragged_eofs=self.suppress_ragged_eofs,
1121 server_side=True)
1122 return newsock, addr
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001123
Antoine Pitroud6494802011-07-21 01:11:30 +02001124 def get_channel_binding(self, cb_type="tls-unique"):
1125 """Get channel binding data for current connection. Raise ValueError
1126 if the requested `cb_type` is not supported. Return bytes of the data
1127 or None if the data is not available (e.g. before the handshake).
1128 """
Antoine Pitroud6494802011-07-21 01:11:30 +02001129 if self._sslobj is None:
1130 return None
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001131 return self._sslobj.get_channel_binding(cb_type)
Antoine Pitroud6494802011-07-21 01:11:30 +02001132
Antoine Pitrou47e40422014-09-04 21:00:10 +02001133 def version(self):
1134 """
1135 Return a string identifying the protocol version used by the
1136 current SSL channel, or None if there is no established channel.
1137 """
1138 if self._sslobj is None:
1139 return None
1140 return self._sslobj.version()
1141
Bill Janssen54cc54c2007-12-14 22:08:56 +00001142
Christian Heimes4df60f12017-09-15 20:26:05 +02001143# Python does not support forward declaration of types.
1144SSLContext.sslsocket_class = SSLSocket
1145SSLContext.sslobject_class = SSLObject
1146
1147
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001148def wrap_socket(sock, keyfile=None, certfile=None,
1149 server_side=False, cert_reqs=CERT_NONE,
Christian Heimes598894f2016-09-05 23:19:05 +02001150 ssl_version=PROTOCOL_TLS, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +00001151 do_handshake_on_connect=True,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001152 suppress_ragged_eofs=True,
1153 ciphers=None):
Bill Janssen6e027db2007-11-15 22:23:56 +00001154 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001155 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +00001156 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +00001157 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +00001158 suppress_ragged_eofs=suppress_ragged_eofs,
1159 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001160
Thomas Woutersed03b412007-08-28 21:37:11 +00001161# some utility functions
1162
1163def cert_time_to_seconds(cert_time):
Antoine Pitrouc695c952014-04-28 20:57:36 +02001164 """Return the time in seconds since the Epoch, given the timestring
1165 representing the "notBefore" or "notAfter" date from a certificate
1166 in ``"%b %d %H:%M:%S %Y %Z"`` strptime format (C locale).
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001167
Antoine Pitrouc695c952014-04-28 20:57:36 +02001168 "notBefore" or "notAfter" dates must use UTC (RFC 5280).
1169
1170 Month is one of: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
1171 UTC should be specified as GMT (see ASN1_TIME_print())
1172 """
1173 from time import strptime
1174 from calendar import timegm
1175
1176 months = (
1177 "Jan","Feb","Mar","Apr","May","Jun",
1178 "Jul","Aug","Sep","Oct","Nov","Dec"
1179 )
1180 time_format = ' %d %H:%M:%S %Y GMT' # NOTE: no month, fixed GMT
1181 try:
1182 month_number = months.index(cert_time[:3].title()) + 1
1183 except ValueError:
1184 raise ValueError('time data %r does not match '
1185 'format "%%b%s"' % (cert_time, time_format))
1186 else:
1187 # found valid month
1188 tt = strptime(cert_time[3:], time_format)
1189 # return an integer, the previous mktime()-based implementation
1190 # returned a float (fractional seconds are always zero here).
1191 return timegm((tt[0], month_number) + tt[2:6])
Thomas Woutersed03b412007-08-28 21:37:11 +00001192
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001193PEM_HEADER = "-----BEGIN CERTIFICATE-----"
1194PEM_FOOTER = "-----END CERTIFICATE-----"
1195
1196def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001197 """Takes a certificate in binary DER format and returns the
1198 PEM version of it as a string."""
1199
Bill Janssen6e027db2007-11-15 22:23:56 +00001200 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
1201 return (PEM_HEADER + '\n' +
1202 textwrap.fill(f, 64) + '\n' +
1203 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001204
1205def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001206 """Takes a certificate in ASCII PEM format and returns the
1207 DER-encoded version of it as a byte sequence"""
1208
1209 if not pem_cert_string.startswith(PEM_HEADER):
1210 raise ValueError("Invalid PEM encoding; must start with %s"
1211 % PEM_HEADER)
1212 if not pem_cert_string.strip().endswith(PEM_FOOTER):
1213 raise ValueError("Invalid PEM encoding; must end with %s"
1214 % PEM_FOOTER)
1215 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +00001216 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001217
Christian Heimes598894f2016-09-05 23:19:05 +02001218def get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001219 """Retrieve the certificate from the server at the specified address,
1220 and return it as a PEM-encoded string.
1221 If 'ca_certs' is specified, validate the server cert against it.
1222 If 'ssl_version' is specified, use it in the connection attempt."""
1223
1224 host, port = addr
Christian Heimes67986f92013-11-23 22:43:47 +01001225 if ca_certs is not None:
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001226 cert_reqs = CERT_REQUIRED
1227 else:
1228 cert_reqs = CERT_NONE
Christian Heimes67986f92013-11-23 22:43:47 +01001229 context = _create_stdlib_context(ssl_version,
1230 cert_reqs=cert_reqs,
1231 cafile=ca_certs)
1232 with create_connection(addr) as sock:
1233 with context.wrap_socket(sock) as sslsock:
1234 dercert = sslsock.getpeercert(True)
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001235 return DER_cert_to_PEM_cert(dercert)
1236
Guido van Rossum5b8b1552007-11-16 00:06:11 +00001237def get_protocol_name(protocol_code):
Victor Stinner3de49192011-05-09 00:42:58 +02001238 return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')