blob: 36f30983129c89eb3621b393938721f0b4c4c1cc [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
Bill Janssen6e027db2007-11-15 22:23:56 +0000302 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000303 socket.__init__(self,
304 family=sock.family,
305 type=sock.type,
306 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000307 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000308 self.settimeout(sock.gettimeout())
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000309 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000310 elif fileno is not None:
311 socket.__init__(self, fileno=fileno)
312 else:
313 socket.__init__(self, family=family, type=type, proto=proto)
314
Antoine Pitrou242db722013-05-01 20:52:07 +0200315 # See if we are connected
316 try:
317 self.getpeername()
318 except OSError as e:
319 if e.errno != errno.ENOTCONN:
320 raise
321 connected = False
322 else:
323 connected = True
324
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000325 self._closed = False
326 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000327 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000328 if connected:
329 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000330 try:
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100331 self._sslobj = self._context._wrap_socket(self, server_side,
Antoine Pitroud5323212010-10-22 18:19:07 +0000332 server_hostname)
Bill Janssen6e027db2007-11-15 22:23:56 +0000333 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000334 timeout = self.gettimeout()
335 if timeout == 0.0:
336 # non-blocking
337 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000338 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000339
Andrew Svetlov0832af62012-12-18 23:10:48 +0200340 except OSError as x:
Bill Janssen6e027db2007-11-15 22:23:56 +0000341 self.close()
342 raise x
Antoine Pitrou242db722013-05-01 20:52:07 +0200343
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100344 @property
345 def context(self):
346 return self._context
347
348 @context.setter
349 def context(self, ctx):
350 self._context = ctx
351 self._sslobj.context = ctx
Bill Janssen6e027db2007-11-15 22:23:56 +0000352
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000353 def dup(self):
354 raise NotImplemented("Can't dup() %s instances" %
355 self.__class__.__name__)
356
Bill Janssen6e027db2007-11-15 22:23:56 +0000357 def _checkClosed(self, msg=None):
358 # raise an exception here if you wish to check for spurious closes
359 pass
360
Antoine Pitrou242db722013-05-01 20:52:07 +0200361 def _check_connected(self):
362 if not self._connected:
363 # getpeername() will raise ENOTCONN if the socket is really
364 # not connected; note that we can be connected even without
365 # _connected being set, e.g. if connect() first returned
366 # EAGAIN.
367 self.getpeername()
368
Bill Janssen54cc54c2007-12-14 22:08:56 +0000369 def read(self, len=0, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000370 """Read up to LEN bytes and return them.
371 Return zero-length string on EOF."""
372
Bill Janssen6e027db2007-11-15 22:23:56 +0000373 self._checkClosed()
374 try:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000375 if buffer is not None:
376 v = self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000377 else:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000378 v = self._sslobj.read(len or 1024)
379 return v
Bill Janssen6e027db2007-11-15 22:23:56 +0000380 except SSLError as x:
381 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000382 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000383 return 0
384 else:
385 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000386 else:
387 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000388
389 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000390 """Write DATA to the underlying SSL channel. Returns
391 number of bytes of DATA actually transmitted."""
392
Bill Janssen6e027db2007-11-15 22:23:56 +0000393 self._checkClosed()
Thomas Woutersed03b412007-08-28 21:37:11 +0000394 return self._sslobj.write(data)
395
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000396 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000397 """Returns a formatted version of the data in the
398 certificate provided by the other end of the SSL channel.
399 Return None if no certificate was provided, {} if a
400 certificate was provided, but not validated."""
401
Bill Janssen6e027db2007-11-15 22:23:56 +0000402 self._checkClosed()
Antoine Pitrou242db722013-05-01 20:52:07 +0200403 self._check_connected()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000404 return self._sslobj.peer_certificate(binary_form)
405
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100406 def selected_npn_protocol(self):
407 self._checkClosed()
408 if not self._sslobj or not _ssl.HAS_NPN:
409 return None
410 else:
411 return self._sslobj.selected_npn_protocol()
412
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000413 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000414 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000415 if not self._sslobj:
416 return None
417 else:
418 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000419
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +0100420 def compression(self):
421 self._checkClosed()
422 if not self._sslobj:
423 return None
424 else:
425 return self._sslobj.compression()
426
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000427 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000428 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000429 if self._sslobj:
430 if flags != 0:
431 raise ValueError(
432 "non-zero flags not allowed in calls to send() on %s" %
433 self.__class__)
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200434 try:
435 v = self._sslobj.write(data)
436 except SSLError as x:
437 if x.args[0] == SSL_ERROR_WANT_READ:
438 return 0
439 elif x.args[0] == SSL_ERROR_WANT_WRITE:
440 return 0
Bill Janssen6e027db2007-11-15 22:23:56 +0000441 else:
Giampaolo Rodola'06d0c1e2013-04-03 12:01:44 +0200442 raise
443 else:
444 return v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000445 else:
446 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000447
Antoine Pitroua468adc2010-09-14 14:43:44 +0000448 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000449 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000450 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000451 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000452 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000453 elif addr is None:
454 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000455 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000456 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000457
Nick Coghlan513886a2011-08-28 00:00:27 +1000458 def sendmsg(self, *args, **kwargs):
459 # Ensure programs don't send data unencrypted if they try to
460 # use this method.
461 raise NotImplementedError("sendmsg not allowed on instances of %s" %
462 self.__class__)
463
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000464 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000465 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000466 if self._sslobj:
Giampaolo RodolĂ 374f8352010-08-29 12:08:09 +0000467 if flags != 0:
468 raise ValueError(
469 "non-zero flags not allowed in calls to sendall() on %s" %
470 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000471 amount = len(data)
472 count = 0
473 while (count < amount):
474 v = self.send(data[count:])
475 count += v
476 return amount
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000477 else:
478 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000479
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000480 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000481 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000482 if self._sslobj:
483 if flags != 0:
484 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000485 "non-zero flags not allowed in calls to recv() on %s" %
486 self.__class__)
487 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000488 else:
489 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000490
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000491 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000492 self._checkClosed()
493 if buffer and (nbytes is None):
494 nbytes = len(buffer)
495 elif nbytes is None:
496 nbytes = 1024
497 if self._sslobj:
498 if flags != 0:
499 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000500 "non-zero flags not allowed in calls to recv_into() on %s" %
501 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +0000502 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000503 else:
504 return socket.recv_into(self, buffer, nbytes, flags)
505
Antoine Pitroua468adc2010-09-14 14:43:44 +0000506 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000507 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000508 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000509 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000510 self.__class__)
511 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000512 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000513
Bill Janssen58afe4c2008-09-08 16:45:19 +0000514 def recvfrom_into(self, buffer, nbytes=None, flags=0):
515 self._checkClosed()
516 if self._sslobj:
517 raise ValueError("recvfrom_into not allowed on instances of %s" %
518 self.__class__)
519 else:
520 return socket.recvfrom_into(self, buffer, nbytes, flags)
521
Nick Coghlan513886a2011-08-28 00:00:27 +1000522 def recvmsg(self, *args, **kwargs):
523 raise NotImplementedError("recvmsg not allowed on instances of %s" %
524 self.__class__)
525
526 def recvmsg_into(self, *args, **kwargs):
527 raise NotImplementedError("recvmsg_into not allowed on instances of "
528 "%s" % self.__class__)
529
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000530 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000531 self._checkClosed()
532 if self._sslobj:
533 return self._sslobj.pending()
534 else:
535 return 0
536
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000537 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +0000538 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000539 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000540 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +0000541
Ezio Melottidc55e672010-01-18 09:15:14 +0000542 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +0000543 if self._sslobj:
544 s = self._sslobj.shutdown()
545 self._sslobj = None
546 return s
547 else:
548 raise ValueError("No SSL wrapper around " + str(self))
549
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000550 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000551 self._sslobj = None
Bill Janssen54cc54c2007-12-14 22:08:56 +0000552 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000553
Bill Janssen48dc27c2007-12-05 03:38:10 +0000554 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +0000555 """Perform a TLS/SSL handshake."""
Antoine Pitrou242db722013-05-01 20:52:07 +0200556 self._check_connected()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000557 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +0000558 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000559 if timeout == 0.0 and block:
560 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +0000561 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000562 finally:
563 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +0000564
Antoine Pitroub4410db2011-05-18 18:51:06 +0200565 def _real_connect(self, addr, connect_ex):
Giampaolo RodolĂ 745ab382010-08-29 19:25:49 +0000566 if self.server_side:
567 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +0000568 # Here we assume that the socket is client-side, and not
569 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000570 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000571 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroud5323212010-10-22 18:19:07 +0000572 self._sslobj = self.context._wrap_socket(self, False, self.server_hostname)
Bill Janssen54cc54c2007-12-14 22:08:56 +0000573 try:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200574 if connect_ex:
575 rc = socket.connect_ex(self, addr)
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000576 else:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200577 rc = None
578 socket.connect(self, addr)
579 if not rc:
Antoine Pitrou242db722013-05-01 20:52:07 +0200580 self._connected = True
Antoine Pitroub4410db2011-05-18 18:51:06 +0200581 if self.do_handshake_on_connect:
582 self.do_handshake()
Antoine Pitroub4410db2011-05-18 18:51:06 +0200583 return rc
Andrew Svetlov0832af62012-12-18 23:10:48 +0200584 except OSError:
Antoine Pitroub4410db2011-05-18 18:51:06 +0200585 self._sslobj = None
586 raise
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000587
588 def connect(self, addr):
589 """Connects to remote ADDR, and then wraps the connection in
590 an SSL channel."""
591 self._real_connect(addr, False)
592
593 def connect_ex(self, addr):
594 """Connects to remote ADDR, and then wraps the connection in
595 an SSL channel."""
596 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +0000597
598 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000599 """Accepts a new connection from a remote client, and returns
600 a tuple containing that new connection wrapped with a server-side
601 SSL channel, and the address of the remote client."""
602
603 newsock, addr = socket.accept(self)
Antoine Pitrou5c89b4e2012-11-11 01:25:36 +0100604 newsock = self.context.wrap_socket(newsock,
605 do_handshake_on_connect=self.do_handshake_on_connect,
606 suppress_ragged_eofs=self.suppress_ragged_eofs,
607 server_side=True)
608 return newsock, addr
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000609
Antoine Pitroud6494802011-07-21 01:11:30 +0200610 def get_channel_binding(self, cb_type="tls-unique"):
611 """Get channel binding data for current connection. Raise ValueError
612 if the requested `cb_type` is not supported. Return bytes of the data
613 or None if the data is not available (e.g. before the handshake).
614 """
615 if cb_type not in CHANNEL_BINDING_TYPES:
616 raise ValueError("Unsupported channel binding type")
617 if cb_type != "tls-unique":
618 raise NotImplementedError(
619 "{0} channel binding type not implemented"
620 .format(cb_type))
621 if self._sslobj is None:
622 return None
623 return self._sslobj.tls_unique_cb()
624
Bill Janssen54cc54c2007-12-14 22:08:56 +0000625
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000626def wrap_socket(sock, keyfile=None, certfile=None,
627 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000628 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000629 do_handshake_on_connect=True,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100630 suppress_ragged_eofs=True,
631 ciphers=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000632
Bill Janssen6e027db2007-11-15 22:23:56 +0000633 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000634 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +0000635 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000636 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000637 suppress_ragged_eofs=suppress_ragged_eofs,
638 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000639
Thomas Woutersed03b412007-08-28 21:37:11 +0000640# some utility functions
641
642def cert_time_to_seconds(cert_time):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000643 """Takes a date-time string in standard ASN1_print form
644 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
645 a Python time value in seconds past the epoch."""
646
Thomas Woutersed03b412007-08-28 21:37:11 +0000647 import time
648 return time.mktime(time.strptime(cert_time, "%b %d %H:%M:%S %Y GMT"))
649
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000650PEM_HEADER = "-----BEGIN CERTIFICATE-----"
651PEM_FOOTER = "-----END CERTIFICATE-----"
652
653def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000654 """Takes a certificate in binary DER format and returns the
655 PEM version of it as a string."""
656
Bill Janssen6e027db2007-11-15 22:23:56 +0000657 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
658 return (PEM_HEADER + '\n' +
659 textwrap.fill(f, 64) + '\n' +
660 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000661
662def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000663 """Takes a certificate in ASCII PEM format and returns the
664 DER-encoded version of it as a byte sequence"""
665
666 if not pem_cert_string.startswith(PEM_HEADER):
667 raise ValueError("Invalid PEM encoding; must start with %s"
668 % PEM_HEADER)
669 if not pem_cert_string.strip().endswith(PEM_FOOTER):
670 raise ValueError("Invalid PEM encoding; must end with %s"
671 % PEM_FOOTER)
672 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +0000673 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000674
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000675def get_server_certificate(addr, ssl_version=PROTOCOL_SSLv3, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000676 """Retrieve the certificate from the server at the specified address,
677 and return it as a PEM-encoded string.
678 If 'ca_certs' is specified, validate the server cert against it.
679 If 'ssl_version' is specified, use it in the connection attempt."""
680
681 host, port = addr
682 if (ca_certs is not None):
683 cert_reqs = CERT_REQUIRED
684 else:
685 cert_reqs = CERT_NONE
Antoine Pitrou15399c32011-04-28 19:23:55 +0200686 s = create_connection(addr)
687 s = wrap_socket(s, ssl_version=ssl_version,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000688 cert_reqs=cert_reqs, ca_certs=ca_certs)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000689 dercert = s.getpeercert(True)
690 s.close()
691 return DER_cert_to_PEM_cert(dercert)
692
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000693def get_protocol_name(protocol_code):
Victor Stinner3de49192011-05-09 00:42:58 +0200694 return _PROTOCOL_NAMES.get(protocol_code, '<unknown>')