blob: dc43db7506c74ab5ff491d5e7cec157a5d925e62 [file] [log] [blame]
Thomas Woutersed03b412007-08-28 21:37:11 +00001# Wrapper module for _ssl, providing some additional facilities
2# implemented in Python. Written by Bill Janssen.
3
Guido van Rossum5b8b1552007-11-16 00:06:11 +00004"""This module provides some more Pythonic support for SSL.
Thomas Woutersed03b412007-08-28 21:37:11 +00005
6Object types:
7
Thomas Wouters1b7f8912007-09-19 03:06:30 +00008 SSLSocket -- subtype of socket.socket which does SSL over the socket
Thomas Woutersed03b412007-08-28 21:37:11 +00009
10Exceptions:
11
Thomas Wouters1b7f8912007-09-19 03:06:30 +000012 SSLError -- exception raised for I/O errors
Thomas Woutersed03b412007-08-28 21:37:11 +000013
14Functions:
15
16 cert_time_to_seconds -- convert time string used for certificate
17 notBefore and notAfter functions to integer
18 seconds past the Epoch (the time values
19 returned from time.time())
20
21 fetch_server_certificate (HOST, PORT) -- fetch the certificate provided
22 by the server running on HOST at port PORT. No
23 validation of the certificate is performed.
24
25Integer constants:
26
27SSL_ERROR_ZERO_RETURN
28SSL_ERROR_WANT_READ
29SSL_ERROR_WANT_WRITE
30SSL_ERROR_WANT_X509_LOOKUP
31SSL_ERROR_SYSCALL
32SSL_ERROR_SSL
33SSL_ERROR_WANT_CONNECT
34
35SSL_ERROR_EOF
36SSL_ERROR_INVALID_ERROR_CODE
37
38The following group define certificate requirements that one side is
39allowing/requiring from the other side:
40
41CERT_NONE - no certificates from the other side are required (or will
42 be looked at if provided)
43CERT_OPTIONAL - certificates are not required, but if provided will be
44 validated, and if validation fails, the connection will
45 also fail
46CERT_REQUIRED - certificates are required, and will be validated, and
47 if validation fails, the connection will also fail
48
49The following constants identify various SSL protocol variants:
50
51PROTOCOL_SSLv2
52PROTOCOL_SSLv3
53PROTOCOL_SSLv23
54PROTOCOL_TLSv1
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010055PROTOCOL_TLSv1_1
56PROTOCOL_TLSv1_2
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +010057
58The following constants identify various SSL alert message descriptions as per
59http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6
60
61ALERT_DESCRIPTION_CLOSE_NOTIFY
62ALERT_DESCRIPTION_UNEXPECTED_MESSAGE
63ALERT_DESCRIPTION_BAD_RECORD_MAC
64ALERT_DESCRIPTION_RECORD_OVERFLOW
65ALERT_DESCRIPTION_DECOMPRESSION_FAILURE
66ALERT_DESCRIPTION_HANDSHAKE_FAILURE
67ALERT_DESCRIPTION_BAD_CERTIFICATE
68ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE
69ALERT_DESCRIPTION_CERTIFICATE_REVOKED
70ALERT_DESCRIPTION_CERTIFICATE_EXPIRED
71ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN
72ALERT_DESCRIPTION_ILLEGAL_PARAMETER
73ALERT_DESCRIPTION_UNKNOWN_CA
74ALERT_DESCRIPTION_ACCESS_DENIED
75ALERT_DESCRIPTION_DECODE_ERROR
76ALERT_DESCRIPTION_DECRYPT_ERROR
77ALERT_DESCRIPTION_PROTOCOL_VERSION
78ALERT_DESCRIPTION_INSUFFICIENT_SECURITY
79ALERT_DESCRIPTION_INTERNAL_ERROR
80ALERT_DESCRIPTION_USER_CANCELLED
81ALERT_DESCRIPTION_NO_RENEGOTIATION
82ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION
83ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
84ALERT_DESCRIPTION_UNRECOGNIZED_NAME
85ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE
86ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE
87ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY
Thomas Woutersed03b412007-08-28 21:37:11 +000088"""
89
Christian Heimes05e8be12008-02-23 18:30:17 +000090import textwrap
Antoine Pitrou59fdd672010-10-08 10:37:08 +000091import re
Thomas Woutersed03b412007-08-28 21:37:11 +000092
93import _ssl # if we can't import it, let the error propagate
Thomas Wouters1b7f8912007-09-19 03:06:30 +000094
Antoine Pitrou04f6a322010-04-05 21:40:07 +000095from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
Antoine Pitrou41032a62011-10-27 23:56:55 +020096from _ssl import _SSLContext
97from _ssl import (
98 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
99 SSLSyscallError, SSLEOFError,
100 )
Thomas Woutersed03b412007-08-28 21:37:11 +0000101from _ssl import CERT_NONE, CERT_OPTIONAL, CERT_REQUIRED
Victor Stinner99c8b162011-05-24 12:05:19 +0200102from _ssl import RAND_status, RAND_egd, RAND_add, RAND_bytes, RAND_pseudo_bytes
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100103
104def _import_symbols(prefix):
105 for n in dir(_ssl):
106 if n.startswith(prefix):
107 globals()[n] = getattr(_ssl, n)
108
109_import_symbols('OP_')
110_import_symbols('ALERT_DESCRIPTION_')
111_import_symbols('SSL_ERROR_')
112
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100113from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100114
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100115from _ssl import PROTOCOL_SSLv3, PROTOCOL_SSLv23, PROTOCOL_TLSv1
Antoine Pitroub9ac25d2011-07-08 18:47:06 +0200116from _ssl import _OPENSSL_API_VERSION
117
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100118
Victor Stinner3de49192011-05-09 00:42:58 +0200119_PROTOCOL_NAMES = {
120 PROTOCOL_TLSv1: "TLSv1",
121 PROTOCOL_SSLv23: "SSLv23",
122 PROTOCOL_SSLv3: "SSLv3",
123}
124try:
125 from _ssl import PROTOCOL_SSLv2
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100126 _SSLv2_IF_EXISTS = PROTOCOL_SSLv2
Victor Stinner3de49192011-05-09 00:42:58 +0200127except ImportError:
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100128 _SSLv2_IF_EXISTS = None
Victor Stinner3de49192011-05-09 00:42:58 +0200129else:
130 _PROTOCOL_NAMES[PROTOCOL_SSLv2] = "SSLv2"
Thomas Woutersed03b412007-08-28 21:37:11 +0000131
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100132try:
133 from _ssl import PROTOCOL_TLSv1_1, PROTOCOL_TLSv1_2
134except ImportError:
135 pass
136else:
137 _PROTOCOL_NAMES[PROTOCOL_TLSv1_1] = "TLSv1.1"
138 _PROTOCOL_NAMES[PROTOCOL_TLSv1_2] = "TLSv1.2"
139
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000140from socket import getnameinfo as _getnameinfo
Antoine Pitrou15399c32011-04-28 19:23:55 +0200141from socket import socket, AF_INET, SOCK_STREAM, create_connection
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000142import base64 # for DER-to-PEM translation
Bill Janssen54cc54c2007-12-14 22:08:56 +0000143import traceback
Antoine Pitroude8cf322010-04-26 17:29:05 +0000144import errno
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000145
Andrew Svetlov0832af62012-12-18 23:10:48 +0200146
147socket_error = OSError # keep that public name in module namespace
148
Antoine Pitroud6494802011-07-21 01:11:30 +0200149if _ssl.HAS_TLS_UNIQUE:
150 CHANNEL_BINDING_TYPES = ['tls-unique']
151else:
152 CHANNEL_BINDING_TYPES = []
Thomas Woutersed03b412007-08-28 21:37:11 +0000153
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100154# Disable weak or insecure ciphers by default
155# (OpenSSL's default setting is 'DEFAULT:!aNULL:!eNULL')
156_DEFAULT_CIPHERS = 'DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2'
157
Thomas Woutersed03b412007-08-28 21:37:11 +0000158
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000159class CertificateError(ValueError):
160 pass
161
162
163def _dnsname_to_pat(dn):
164 pats = []
165 for frag in dn.split(r'.'):
166 if frag == '*':
167 # When '*' is a fragment by itself, it matches a non-empty dotless
168 # fragment.
169 pats.append('[^.]+')
170 else:
171 # Otherwise, '*' matches any dotless fragment.
172 frag = re.escape(frag)
173 pats.append(frag.replace(r'\*', '[^.]*'))
174 return re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
175
176
177def match_hostname(cert, hostname):
178 """Verify that *cert* (in decoded format as returned by
179 SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 rules
180 are mostly followed, but IP addresses are not accepted for *hostname*.
181
182 CertificateError is raised on failure. On success, the function
183 returns nothing.
184 """
185 if not cert:
186 raise ValueError("empty or no certificate")
187 dnsnames = []
188 san = cert.get('subjectAltName', ())
189 for key, value in san:
190 if key == 'DNS':
191 if _dnsname_to_pat(value).match(hostname):
192 return
193 dnsnames.append(value)
Antoine Pitrou1c86b442011-05-06 15:19:49 +0200194 if not dnsnames:
195 # The subject is only checked when there is no dNSName entry
196 # in subjectAltName
Antoine Pitrou59fdd672010-10-08 10:37:08 +0000197 for sub in cert.get('subject', ()):
198 for key, value in sub:
199 # XXX according to RFC 2818, the most specific Common Name
200 # must be used.
201 if key == 'commonName':
202 if _dnsname_to_pat(value).match(hostname):
203 return
204 dnsnames.append(value)
205 if len(dnsnames) > 1:
206 raise CertificateError("hostname %r "
207 "doesn't match either of %s"
208 % (hostname, ', '.join(map(repr, dnsnames))))
209 elif len(dnsnames) == 1:
210 raise CertificateError("hostname %r "
211 "doesn't match %r"
212 % (hostname, dnsnames[0]))
213 else:
214 raise CertificateError("no appropriate commonName or "
215 "subjectAltName fields were found")
216
217
Antoine Pitrou152efa22010-05-16 18:19:27 +0000218class SSLContext(_SSLContext):
219 """An SSLContext holds various SSL-related configuration options and
220 data, such as certificates and possibly a private key."""
221
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100222 __slots__ = ('protocol', '__weakref__')
Antoine Pitrou152efa22010-05-16 18:19:27 +0000223
224 def __new__(cls, protocol, *args, **kwargs):
Antoine Pitrou8f85f902012-01-03 22:46:48 +0100225 self = _SSLContext.__new__(cls, protocol)
226 if protocol != _SSLv2_IF_EXISTS:
227 self.set_ciphers(_DEFAULT_CIPHERS)
228 return self
Antoine Pitrou152efa22010-05-16 18:19:27 +0000229
230 def __init__(self, protocol):
231 self.protocol = protocol
232
233 def wrap_socket(self, sock, server_side=False,
234 do_handshake_on_connect=True,
Antoine Pitroud5323212010-10-22 18:19:07 +0000235 suppress_ragged_eofs=True,
236 server_hostname=None):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000237 return SSLSocket(sock=sock, server_side=server_side,
238 do_handshake_on_connect=do_handshake_on_connect,
239 suppress_ragged_eofs=suppress_ragged_eofs,
Antoine Pitroud5323212010-10-22 18:19:07 +0000240 server_hostname=server_hostname,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000241 _context=self)
242
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100243 def set_npn_protocols(self, npn_protocols):
244 protos = bytearray()
245 for protocol in npn_protocols:
246 b = bytes(protocol, 'ascii')
247 if len(b) == 0 or len(b) > 255:
248 raise SSLError('NPN protocols must be 1 to 255 in length')
249 protos.append(len(b))
250 protos.extend(b)
251
252 self._set_npn_protocols(protos)
253
Antoine Pitrou152efa22010-05-16 18:19:27 +0000254
255class SSLSocket(socket):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000256 """This class implements a subtype of socket.socket that wraps
257 the underlying OS socket in an SSL context when necessary, and
258 provides read and write methods over that channel."""
259
Bill Janssen6e027db2007-11-15 22:23:56 +0000260 def __init__(self, sock=None, keyfile=None, certfile=None,
Thomas Woutersed03b412007-08-28 21:37:11 +0000261 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000262 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
263 do_handshake_on_connect=True,
264 family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100265 suppress_ragged_eofs=True, npn_protocols=None, ciphers=None,
Antoine Pitroud5323212010-10-22 18:19:07 +0000266 server_hostname=None,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000267 _context=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000268
Antoine Pitrou152efa22010-05-16 18:19:27 +0000269 if _context:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100270 self._context = _context
Antoine Pitrou152efa22010-05-16 18:19:27 +0000271 else:
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000272 if server_side and not certfile:
273 raise ValueError("certfile must be specified for server-side "
274 "operations")
Giampaolo RodolĂ 8b7da622010-08-30 18:28:05 +0000275 if keyfile and not certfile:
276 raise ValueError("certfile must be specified")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000277 if certfile and not keyfile:
278 keyfile = certfile
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100279 self._context = SSLContext(ssl_version)
280 self._context.verify_mode = cert_reqs
Antoine Pitrou152efa22010-05-16 18:19:27 +0000281 if ca_certs:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100282 self._context.load_verify_locations(ca_certs)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000283 if certfile:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100284 self._context.load_cert_chain(certfile, keyfile)
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100285 if npn_protocols:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100286 self._context.set_npn_protocols(npn_protocols)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000287 if ciphers:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100288 self._context.set_ciphers(ciphers)
Antoine Pitrou152efa22010-05-16 18:19:27 +0000289 self.keyfile = keyfile
290 self.certfile = certfile
291 self.cert_reqs = cert_reqs
292 self.ssl_version = ssl_version
293 self.ca_certs = ca_certs
294 self.ciphers = ciphers
Antoine Pitroud5323212010-10-22 18:19:07 +0000295 if server_side and server_hostname:
296 raise ValueError("server_hostname can only be specified "
297 "in client mode")
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000298 self.server_side = server_side
Antoine Pitroud5323212010-10-22 18:19:07 +0000299 self.server_hostname = server_hostname
Antoine Pitrou152efa22010-05-16 18:19:27 +0000300 self.do_handshake_on_connect = do_handshake_on_connect
301 self.suppress_ragged_eofs = suppress_ragged_eofs
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000302 connected = False
Bill Janssen6e027db2007-11-15 22:23:56 +0000303 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000304 socket.__init__(self,
305 family=sock.family,
306 type=sock.type,
307 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000308 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000309 self.settimeout(sock.gettimeout())
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000310 # see if it's connected
311 try:
312 sock.getpeername()
Andrew Svetlov0832af62012-12-18 23:10:48 +0200313 except OSError as e:
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000314 if e.errno != errno.ENOTCONN:
315 raise
316 else:
317 connected = True
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000318 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000319 elif fileno is not None:
320 socket.__init__(self, fileno=fileno)
321 else:
322 socket.__init__(self, family=family, type=type, proto=proto)
323
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000324 self._closed = False
325 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000326 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000327 if connected:
328 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000329 try:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100330 self._sslobj = self._context._wrap_socket(self, server_side,
Antoine Pitroud5323212010-10-22 18:19:07 +0000331 server_hostname)
Bill Janssen6e027db2007-11-15 22:23:56 +0000332 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000333 timeout = self.gettimeout()
334 if timeout == 0.0:
335 # non-blocking
336 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000337 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000338
Andrew Svetlov0832af62012-12-18 23:10:48 +0200339 except OSError as x:
Bill Janssen6e027db2007-11-15 22:23:56 +0000340 self.close()
341 raise x
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100342 @property
343 def context(self):
344 return self._context
345
346 @context.setter
347 def context(self, ctx):
348 self._context = ctx
349 self._sslobj.context = ctx
Bill Janssen6e027db2007-11-15 22:23:56 +0000350
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000351 def dup(self):
352 raise NotImplemented("Can't dup() %s instances" %
353 self.__class__.__name__)
354
Bill Janssen6e027db2007-11-15 22:23:56 +0000355 def _checkClosed(self, msg=None):
356 # raise an exception here if you wish to check for spurious closes
357 pass
358
Bill Janssen54cc54c2007-12-14 22:08:56 +0000359 def read(self, len=0, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000360 """Read up to LEN bytes and return them.
361 Return zero-length string on EOF."""
362
Bill Janssen6e027db2007-11-15 22:23:56 +0000363 self._checkClosed()
364 try:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000365 if buffer is not None:
366 v = self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000367 else:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000368 v = self._sslobj.read(len or 1024)
369 return v
Bill Janssen6e027db2007-11-15 22:23:56 +0000370 except SSLError as x:
371 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000372 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000373 return 0
374 else:
375 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000376 else:
377 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000378
379 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000380 """Write DATA to the underlying SSL channel. Returns
381 number of bytes of DATA actually transmitted."""
382
Bill Janssen6e027db2007-11-15 22:23:56 +0000383 self._checkClosed()
Thomas Woutersed03b412007-08-28 21:37:11 +0000384 return self._sslobj.write(data)
385
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000386 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000387 """Returns a formatted version of the data in the
388 certificate provided by the other end of the SSL channel.
389 Return None if no certificate was provided, {} if a
390 certificate was provided, but not validated."""
391
Bill Janssen6e027db2007-11-15 22:23:56 +0000392 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000393 return self._sslobj.peer_certificate(binary_form)
394
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100395 def selected_npn_protocol(self):
396 self._checkClosed()
397 if not self._sslobj or not _ssl.HAS_NPN:
398 return None
399 else:
400 return self._sslobj.selected_npn_protocol()
401
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000402 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000403 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000404 if not self._sslobj:
405 return None
406 else:
407 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000408
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100409 def compression(self):
410 self._checkClosed()
411 if not self._sslobj:
412 return None
413 else:
414 return self._sslobj.compression()
415
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000416 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000417 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000418 if self._sslobj:
419 if flags != 0:
420 raise ValueError(
421 "non-zero flags not allowed in calls to send() on %s" %
422 self.__class__)
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200423 try:
424 v = self._sslobj.write(data)
425 except SSLError as x:
426 if x.args[0] == SSL_ERROR_WANT_READ:
427 return 0
428 elif x.args[0] == SSL_ERROR_WANT_WRITE:
429 return 0
Bill Janssen6e027db2007-11-15 22:23:56 +0000430 else:
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200431 raise
432 else:
433 return v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000434 else:
435 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000436
Antoine Pitroua468adc2010-09-14 14:43:44 +0000437 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000438 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000439 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000440 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000441 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000442 elif addr is None:
443 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000444 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000445 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000446
Nick Coghlan513886a2011-08-28 00:00:27 +1000447 def sendmsg(self, *args, **kwargs):
448 # Ensure programs don't send data unencrypted if they try to
449 # use this method.
450 raise NotImplementedError("sendmsg not allowed on instances of %s" %
451 self.__class__)
452
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000453 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000454 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000455 if self._sslobj:
Giampaolo RodolĂ 374f8352010-08-29 12:08:09 +0000456 if flags != 0:
457 raise ValueError(
458 "non-zero flags not allowed in calls to sendall() on %s" %
459 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000460 amount = len(data)
461 count = 0
462 while (count < amount):
463 v = self.send(data[count:])
464 count += v
465 return amount
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000466 else:
467 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000468
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000469 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000470 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000471 if self._sslobj:
472 if flags != 0:
473 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000474 "non-zero flags not allowed in calls to recv() on %s" %
475 self.__class__)
476 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000477 else:
478 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000479
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000480 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000481 self._checkClosed()
482 if buffer and (nbytes is None):
483 nbytes = len(buffer)
484 elif nbytes is None:
485 nbytes = 1024
486 if self._sslobj:
487 if flags != 0:
488 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000489 "non-zero flags not allowed in calls to recv_into() on %s" %
490 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +0000491 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000492 else:
493 return socket.recv_into(self, buffer, nbytes, flags)
494
Antoine Pitroua468adc2010-09-14 14:43:44 +0000495 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000496 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000497 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000498 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000499 self.__class__)
500 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000501 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000502
Bill Janssen58afe4c2008-09-08 16:45:19 +0000503 def recvfrom_into(self, buffer, nbytes=None, flags=0):
504 self._checkClosed()
505 if self._sslobj:
506 raise ValueError("recvfrom_into not allowed on instances of %s" %
507 self.__class__)
508 else:
509 return socket.recvfrom_into(self, buffer, nbytes, flags)
510
Nick Coghlan513886a2011-08-28 00:00:27 +1000511 def recvmsg(self, *args, **kwargs):
512 raise NotImplementedError("recvmsg not allowed on instances of %s" %
513 self.__class__)
514
515 def recvmsg_into(self, *args, **kwargs):
516 raise NotImplementedError("recvmsg_into not allowed on instances of "
517 "%s" % self.__class__)
518
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000519 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000520 self._checkClosed()
521 if self._sslobj:
522 return self._sslobj.pending()
523 else:
524 return 0
525
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000526 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +0000527 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000528 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000529 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +0000530
Ezio Melottidc55e672010-01-18 09:15:14 +0000531 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +0000532 if self._sslobj:
533 s = self._sslobj.shutdown()
534 self._sslobj = None
535 return s
536 else:
537 raise ValueError("No SSL wrapper around " + str(self))
538
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000539 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000540 self._sslobj = None
Bill Janssen6e027db2007-11-15 22:23:56 +0000541 # self._closed = True
Bill Janssen54cc54c2007-12-14 22:08:56 +0000542 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000543
Bill Janssen48dc27c2007-12-05 03:38:10 +0000544 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +0000545 """Perform a TLS/SSL handshake."""
546
Bill Janssen48dc27c2007-12-05 03:38:10 +0000547 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +0000548 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000549 if timeout == 0.0 and block:
550 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +0000551 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000552 finally:
553 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +0000554
Antoine Pitroub4410db2011-05-18 18:51:06 +0200555 def _real_connect(self, addr, connect_ex):
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000556 if self.server_side:
557 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +0000558 # Here we assume that the socket is client-side, and not
559 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000560 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000561 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroud5323212010-10-22 18:19:07 +0000562 self._sslobj = self.context._wrap_socket(self, False, self.server_hostname)
Bill Janssen54cc54c2007-12-14 22:08:56 +0000563 try:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200564 if connect_ex:
565 rc = socket.connect_ex(self, addr)
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000566 else:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200567 rc = None
568 socket.connect(self, addr)
569 if not rc:
570 if self.do_handshake_on_connect:
571 self.do_handshake()
572 self._connected = True
573 return rc
Andrew Svetlov0832af62012-12-18 23:10:48 +0200574 except OSError:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200575 self._sslobj = None
576 raise
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000577
578 def connect(self, addr):
579 """Connects to remote ADDR, and then wraps the connection in
580 an SSL channel."""
581 self._real_connect(addr, False)
582
583 def connect_ex(self, addr):
584 """Connects to remote ADDR, and then wraps the connection in
585 an SSL channel."""
586 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +0000587
588 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000589 """Accepts a new connection from a remote client, and returns
590 a tuple containing that new connection wrapped with a server-side
591 SSL channel, and the address of the remote client."""
592
593 newsock, addr = socket.accept(self)
Antoine Pitrou5c89b4e2012-11-11 01:25:36 +0100594 newsock = self.context.wrap_socket(newsock,
595 do_handshake_on_connect=self.do_handshake_on_connect,
596 suppress_ragged_eofs=self.suppress_ragged_eofs,
597 server_side=True)
598 return newsock, addr
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000599
Antoine Pitroud6494802011-07-21 01:11:30 +0200600 def get_channel_binding(self, cb_type="tls-unique"):
601 """Get channel binding data for current connection. Raise ValueError
602 if the requested `cb_type` is not supported. Return bytes of the data
603 or None if the data is not available (e.g. before the handshake).
604 """
605 if cb_type not in CHANNEL_BINDING_TYPES:
606 raise ValueError("Unsupported channel binding type")
607 if cb_type != "tls-unique":
608 raise NotImplementedError(
609 "{0} channel binding type not implemented"
610 .format(cb_type))
611 if self._sslobj is None:
612 return None
613 return self._sslobj.tls_unique_cb()
614
Bill Janssen54cc54c2007-12-14 22:08:56 +0000615
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000616def wrap_socket(sock, keyfile=None, certfile=None,
617 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000618 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000619 do_handshake_on_connect=True,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100620 suppress_ragged_eofs=True,
621 ciphers=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000622
Bill Janssen6e027db2007-11-15 22:23:56 +0000623 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000624 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +0000625 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000626 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000627 suppress_ragged_eofs=suppress_ragged_eofs,
628 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000629
Thomas Woutersed03b412007-08-28 21:37:11 +0000630# some utility functions
631
632def cert_time_to_seconds(cert_time):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000633 """Takes a date-time string in standard ASN1_print form
634 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
635 a Python time value in seconds past the epoch."""
636
Thomas Woutersed03b412007-08-28 21:37:11 +0000637 import time
638 return time.mktime(time.strptime(cert_time, "%b %d %H:%M:%S %Y GMT"))
639
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000640PEM_HEADER = "-----BEGIN CERTIFICATE-----"
641PEM_FOOTER = "-----END CERTIFICATE-----"
642
643def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000644 """Takes a certificate in binary DER format and returns the
645 PEM version of it as a string."""
646
Bill Janssen6e027db2007-11-15 22:23:56 +0000647 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
648 return (PEM_HEADER + '\n' +
649 textwrap.fill(f, 64) + '\n' +
650 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000651
652def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000653 """Takes a certificate in ASCII PEM format and returns the
654 DER-encoded version of it as a byte sequence"""
655
656 if not pem_cert_string.startswith(PEM_HEADER):
657 raise ValueError("Invalid PEM encoding; must start with %s"
658 % PEM_HEADER)
659 if not pem_cert_string.strip().endswith(PEM_FOOTER):
660 raise ValueError("Invalid PEM encoding; must end with %s"
661 % PEM_FOOTER)
662 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +0000663 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000664
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000665def get_server_certificate(addr, ssl_version=PROTOCOL_SSLv3, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000666 """Retrieve the certificate from the server at the specified address,
667 and return it as a PEM-encoded string.
668 If 'ca_certs' is specified, validate the server cert against it.
669 If 'ssl_version' is specified, use it in the connection attempt."""
670
671 host, port = addr
672 if (ca_certs is not None):
673 cert_reqs = CERT_REQUIRED
674 else:
675 cert_reqs = CERT_NONE
Antoine Pitrou15399c32011-04-28 19:23:55 +0200676 s = create_connection(addr)
677 s = wrap_socket(s, ssl_version=ssl_version,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000678 cert_reqs=cert_reqs, ca_certs=ca_certs)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000679 dercert = s.getpeercert(True)
680 s.close()
681 return DER_cert_to_PEM_cert(dercert)
682
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000683def get_protocol_name(protocol_code):
Victor Stinner3de49192011-05-09 00:42:58 +0200684 return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')