blob: 84aa6dc3bf7b8f028c6c0650c5be71eb6cde866b [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
55"""
56
Christian Heimes05e8be12008-02-23 18:30:17 +000057import textwrap
Antoine Pitrou59fdd672010-10-08 10:37:08 +000058import re
Thomas Woutersed03b412007-08-28 21:37:11 +000059
60import _ssl # if we can't import it, let the error propagate
Thomas Wouters1b7f8912007-09-19 03:06:30 +000061
Antoine Pitrou04f6a322010-04-05 21:40:07 +000062from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
Antoine Pitrou152efa22010-05-16 18:19:27 +000063from _ssl import _SSLContext, SSLError
Thomas Woutersed03b412007-08-28 21:37:11 +000064from _ssl import CERT_NONE, CERT_OPTIONAL, CERT_REQUIRED
Guido van Rossum5b8b1552007-11-16 00:06:11 +000065from _ssl import (PROTOCOL_SSLv2, PROTOCOL_SSLv3, PROTOCOL_SSLv23,
66 PROTOCOL_TLSv1)
Antoine Pitroub5218772010-05-21 09:56:06 +000067from _ssl import OP_ALL, OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_TLSv1
Thomas Wouters1b7f8912007-09-19 03:06:30 +000068from _ssl import RAND_status, RAND_egd, RAND_add
Guido van Rossum5b8b1552007-11-16 00:06:11 +000069from _ssl import (
70 SSL_ERROR_ZERO_RETURN,
71 SSL_ERROR_WANT_READ,
72 SSL_ERROR_WANT_WRITE,
73 SSL_ERROR_WANT_X509_LOOKUP,
74 SSL_ERROR_SYSCALL,
75 SSL_ERROR_SSL,
76 SSL_ERROR_WANT_CONNECT,
77 SSL_ERROR_EOF,
78 SSL_ERROR_INVALID_ERROR_CODE,
79 )
Antoine Pitroud5323212010-10-22 18:19:07 +000080from _ssl import HAS_SNI
Thomas Woutersed03b412007-08-28 21:37:11 +000081
Thomas Wouters47b49bf2007-08-30 22:15:33 +000082from socket import getnameinfo as _getnameinfo
Bill Janssen6e027db2007-11-15 22:23:56 +000083from socket import error as socket_error
Bill Janssen40a0f662008-08-12 16:56:25 +000084from socket import socket, AF_INET, SOCK_STREAM
Thomas Wouters1b7f8912007-09-19 03:06:30 +000085import base64 # for DER-to-PEM translation
Bill Janssen54cc54c2007-12-14 22:08:56 +000086import traceback
Antoine Pitroude8cf322010-04-26 17:29:05 +000087import errno
Thomas Wouters47b49bf2007-08-30 22:15:33 +000088
Thomas Woutersed03b412007-08-28 21:37:11 +000089
Antoine Pitrou59fdd672010-10-08 10:37:08 +000090class CertificateError(ValueError):
91 pass
92
93
94def _dnsname_to_pat(dn):
95 pats = []
96 for frag in dn.split(r'.'):
97 if frag == '*':
98 # When '*' is a fragment by itself, it matches a non-empty dotless
99 # fragment.
100 pats.append('[^.]+')
101 else:
102 # Otherwise, '*' matches any dotless fragment.
103 frag = re.escape(frag)
104 pats.append(frag.replace(r'\*', '[^.]*'))
105 return re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE)
106
107
108def match_hostname(cert, hostname):
109 """Verify that *cert* (in decoded format as returned by
110 SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 rules
111 are mostly followed, but IP addresses are not accepted for *hostname*.
112
113 CertificateError is raised on failure. On success, the function
114 returns nothing.
115 """
116 if not cert:
117 raise ValueError("empty or no certificate")
118 dnsnames = []
119 san = cert.get('subjectAltName', ())
120 for key, value in san:
121 if key == 'DNS':
122 if _dnsname_to_pat(value).match(hostname):
123 return
124 dnsnames.append(value)
125 if not san:
126 # The subject is only checked when subjectAltName is empty
127 for sub in cert.get('subject', ()):
128 for key, value in sub:
129 # XXX according to RFC 2818, the most specific Common Name
130 # must be used.
131 if key == 'commonName':
132 if _dnsname_to_pat(value).match(hostname):
133 return
134 dnsnames.append(value)
135 if len(dnsnames) > 1:
136 raise CertificateError("hostname %r "
137 "doesn't match either of %s"
138 % (hostname, ', '.join(map(repr, dnsnames))))
139 elif len(dnsnames) == 1:
140 raise CertificateError("hostname %r "
141 "doesn't match %r"
142 % (hostname, dnsnames[0]))
143 else:
144 raise CertificateError("no appropriate commonName or "
145 "subjectAltName fields were found")
146
147
Antoine Pitrou152efa22010-05-16 18:19:27 +0000148class SSLContext(_SSLContext):
149 """An SSLContext holds various SSL-related configuration options and
150 data, such as certificates and possibly a private key."""
151
152 __slots__ = ('protocol',)
153
154 def __new__(cls, protocol, *args, **kwargs):
155 return _SSLContext.__new__(cls, protocol)
156
157 def __init__(self, protocol):
158 self.protocol = protocol
159
160 def wrap_socket(self, sock, server_side=False,
161 do_handshake_on_connect=True,
Antoine Pitroud5323212010-10-22 18:19:07 +0000162 suppress_ragged_eofs=True,
163 server_hostname=None):
Antoine Pitrou152efa22010-05-16 18:19:27 +0000164 return SSLSocket(sock=sock, server_side=server_side,
165 do_handshake_on_connect=do_handshake_on_connect,
166 suppress_ragged_eofs=suppress_ragged_eofs,
Antoine Pitroud5323212010-10-22 18:19:07 +0000167 server_hostname=server_hostname,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000168 _context=self)
169
170
171class SSLSocket(socket):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000172 """This class implements a subtype of socket.socket that wraps
173 the underlying OS socket in an SSL context when necessary, and
174 provides read and write methods over that channel."""
175
Bill Janssen6e027db2007-11-15 22:23:56 +0000176 def __init__(self, sock=None, keyfile=None, certfile=None,
Thomas Woutersed03b412007-08-28 21:37:11 +0000177 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000178 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
179 do_handshake_on_connect=True,
180 family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000181 suppress_ragged_eofs=True, ciphers=None,
Antoine Pitroud5323212010-10-22 18:19:07 +0000182 server_hostname=None,
Antoine Pitrou152efa22010-05-16 18:19:27 +0000183 _context=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000184
Antoine Pitrou152efa22010-05-16 18:19:27 +0000185 if _context:
186 self.context = _context
187 else:
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000188 if server_side and not certfile:
189 raise ValueError("certfile must be specified for server-side "
190 "operations")
Giampaolo Rodolà8b7da622010-08-30 18:28:05 +0000191 if keyfile and not certfile:
192 raise ValueError("certfile must be specified")
Antoine Pitrou152efa22010-05-16 18:19:27 +0000193 if certfile and not keyfile:
194 keyfile = certfile
195 self.context = SSLContext(ssl_version)
196 self.context.verify_mode = cert_reqs
197 if ca_certs:
198 self.context.load_verify_locations(ca_certs)
199 if certfile:
200 self.context.load_cert_chain(certfile, keyfile)
201 if ciphers:
202 self.context.set_ciphers(ciphers)
203 self.keyfile = keyfile
204 self.certfile = certfile
205 self.cert_reqs = cert_reqs
206 self.ssl_version = ssl_version
207 self.ca_certs = ca_certs
208 self.ciphers = ciphers
Antoine Pitroud5323212010-10-22 18:19:07 +0000209 if server_side and server_hostname:
210 raise ValueError("server_hostname can only be specified "
211 "in client mode")
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000212 self.server_side = server_side
Antoine Pitroud5323212010-10-22 18:19:07 +0000213 self.server_hostname = server_hostname
Antoine Pitrou152efa22010-05-16 18:19:27 +0000214 self.do_handshake_on_connect = do_handshake_on_connect
215 self.suppress_ragged_eofs = suppress_ragged_eofs
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000216 connected = False
Bill Janssen6e027db2007-11-15 22:23:56 +0000217 if sock is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000218 socket.__init__(self,
219 family=sock.family,
220 type=sock.type,
221 proto=sock.proto,
Antoine Pitroue43f9d02010-08-08 23:24:50 +0000222 fileno=sock.fileno())
Antoine Pitrou40f08742010-04-24 22:04:40 +0000223 self.settimeout(sock.gettimeout())
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000224 # see if it's connected
225 try:
226 sock.getpeername()
227 except socket_error as e:
228 if e.errno != errno.ENOTCONN:
229 raise
230 else:
231 connected = True
Antoine Pitrou6e451df2010-08-09 20:39:54 +0000232 sock.detach()
Bill Janssen6e027db2007-11-15 22:23:56 +0000233 elif fileno is not None:
234 socket.__init__(self, fileno=fileno)
235 else:
236 socket.__init__(self, family=family, type=type, proto=proto)
237
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000238 self._closed = False
239 self._sslobj = None
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000240 self._connected = connected
Antoine Pitroufa2b9382010-04-26 22:17:47 +0000241 if connected:
242 # create the SSL object
Bill Janssen6e027db2007-11-15 22:23:56 +0000243 try:
Antoine Pitroud5323212010-10-22 18:19:07 +0000244 self._sslobj = self.context._wrap_socket(self, server_side,
245 server_hostname)
Bill Janssen6e027db2007-11-15 22:23:56 +0000246 if do_handshake_on_connect:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000247 timeout = self.gettimeout()
248 if timeout == 0.0:
249 # non-blocking
250 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
Bill Janssen6e027db2007-11-15 22:23:56 +0000251 self.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000252
Bill Janssen6e027db2007-11-15 22:23:56 +0000253 except socket_error as x:
254 self.close()
255 raise x
256
Guido van Rossumb7b030e2007-11-16 01:28:45 +0000257 def dup(self):
258 raise NotImplemented("Can't dup() %s instances" %
259 self.__class__.__name__)
260
Bill Janssen6e027db2007-11-15 22:23:56 +0000261 def _checkClosed(self, msg=None):
262 # raise an exception here if you wish to check for spurious closes
263 pass
264
Bill Janssen54cc54c2007-12-14 22:08:56 +0000265 def read(self, len=0, buffer=None):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000266 """Read up to LEN bytes and return them.
267 Return zero-length string on EOF."""
268
Bill Janssen6e027db2007-11-15 22:23:56 +0000269 self._checkClosed()
270 try:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000271 if buffer is not None:
272 v = self._sslobj.read(len, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000273 else:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000274 v = self._sslobj.read(len or 1024)
275 return v
Bill Janssen6e027db2007-11-15 22:23:56 +0000276 except SSLError as x:
277 if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs:
Antoine Pitrou24e561a2010-09-03 18:38:17 +0000278 if buffer is not None:
Bill Janssen54cc54c2007-12-14 22:08:56 +0000279 return 0
280 else:
281 return b''
Bill Janssen6e027db2007-11-15 22:23:56 +0000282 else:
283 raise
Thomas Woutersed03b412007-08-28 21:37:11 +0000284
285 def write(self, data):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000286 """Write DATA to the underlying SSL channel. Returns
287 number of bytes of DATA actually transmitted."""
288
Bill Janssen6e027db2007-11-15 22:23:56 +0000289 self._checkClosed()
Thomas Woutersed03b412007-08-28 21:37:11 +0000290 return self._sslobj.write(data)
291
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000292 def getpeercert(self, binary_form=False):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000293 """Returns a formatted version of the data in the
294 certificate provided by the other end of the SSL channel.
295 Return None if no certificate was provided, {} if a
296 certificate was provided, but not validated."""
297
Bill Janssen6e027db2007-11-15 22:23:56 +0000298 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000299 return self._sslobj.peer_certificate(binary_form)
300
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000301 def cipher(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000302 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000303 if not self._sslobj:
304 return None
305 else:
306 return self._sslobj.cipher()
Thomas Woutersed03b412007-08-28 21:37:11 +0000307
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000308 def send(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000309 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000310 if self._sslobj:
311 if flags != 0:
312 raise ValueError(
313 "non-zero flags not allowed in calls to send() on %s" %
314 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000315 while True:
316 try:
317 v = self._sslobj.write(data)
318 except SSLError as x:
319 if x.args[0] == SSL_ERROR_WANT_READ:
320 return 0
321 elif x.args[0] == SSL_ERROR_WANT_WRITE:
322 return 0
323 else:
324 raise
325 else:
326 return v
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000327 else:
328 return socket.send(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000329
Antoine Pitroua468adc2010-09-14 14:43:44 +0000330 def sendto(self, data, flags_or_addr, addr=None):
Bill Janssen6e027db2007-11-15 22:23:56 +0000331 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000332 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000333 raise ValueError("sendto not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000334 self.__class__)
Antoine Pitroua468adc2010-09-14 14:43:44 +0000335 elif addr is None:
336 return socket.sendto(self, data, flags_or_addr)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000337 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000338 return socket.sendto(self, data, flags_or_addr, addr)
Thomas Woutersed03b412007-08-28 21:37:11 +0000339
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000340 def sendall(self, data, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000341 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000342 if self._sslobj:
Giampaolo Rodolà374f8352010-08-29 12:08:09 +0000343 if flags != 0:
344 raise ValueError(
345 "non-zero flags not allowed in calls to sendall() on %s" %
346 self.__class__)
Bill Janssen6e027db2007-11-15 22:23:56 +0000347 amount = len(data)
348 count = 0
349 while (count < amount):
350 v = self.send(data[count:])
351 count += v
352 return amount
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000353 else:
354 return socket.sendall(self, data, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000355
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000356 def recv(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000357 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000358 if self._sslobj:
359 if flags != 0:
360 raise ValueError(
Antoine Pitrou5733c082010-03-22 14:49:10 +0000361 "non-zero flags not allowed in calls to recv() on %s" %
362 self.__class__)
363 return self.read(buflen)
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000364 else:
365 return socket.recv(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000366
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000367 def recv_into(self, buffer, nbytes=None, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000368 self._checkClosed()
369 if buffer and (nbytes is None):
370 nbytes = len(buffer)
371 elif nbytes is None:
372 nbytes = 1024
373 if self._sslobj:
374 if flags != 0:
375 raise ValueError(
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000376 "non-zero flags not allowed in calls to recv_into() on %s" %
377 self.__class__)
Antoine Pitrou5733c082010-03-22 14:49:10 +0000378 return self.read(nbytes, buffer)
Bill Janssen6e027db2007-11-15 22:23:56 +0000379 else:
380 return socket.recv_into(self, buffer, nbytes, flags)
381
Antoine Pitroua468adc2010-09-14 14:43:44 +0000382 def recvfrom(self, buflen=1024, flags=0):
Bill Janssen6e027db2007-11-15 22:23:56 +0000383 self._checkClosed()
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000384 if self._sslobj:
Bill Janssen980f3142008-06-29 00:05:51 +0000385 raise ValueError("recvfrom not allowed on instances of %s" %
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000386 self.__class__)
387 else:
Antoine Pitroua468adc2010-09-14 14:43:44 +0000388 return socket.recvfrom(self, buflen, flags)
Thomas Woutersed03b412007-08-28 21:37:11 +0000389
Bill Janssen58afe4c2008-09-08 16:45:19 +0000390 def recvfrom_into(self, buffer, nbytes=None, flags=0):
391 self._checkClosed()
392 if self._sslobj:
393 raise ValueError("recvfrom_into not allowed on instances of %s" %
394 self.__class__)
395 else:
396 return socket.recvfrom_into(self, buffer, nbytes, flags)
397
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000398 def pending(self):
Bill Janssen6e027db2007-11-15 22:23:56 +0000399 self._checkClosed()
400 if self._sslobj:
401 return self._sslobj.pending()
402 else:
403 return 0
404
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000405 def shutdown(self, how):
Bill Janssen6e027db2007-11-15 22:23:56 +0000406 self._checkClosed()
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000407 self._sslobj = None
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000408 socket.shutdown(self, how)
Thomas Woutersed03b412007-08-28 21:37:11 +0000409
Ezio Melottidc55e672010-01-18 09:15:14 +0000410 def unwrap(self):
Bill Janssen40a0f662008-08-12 16:56:25 +0000411 if self._sslobj:
412 s = self._sslobj.shutdown()
413 self._sslobj = None
414 return s
415 else:
416 raise ValueError("No SSL wrapper around " + str(self))
417
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000418 def _real_close(self):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000419 self._sslobj = None
Bill Janssen6e027db2007-11-15 22:23:56 +0000420 # self._closed = True
Bill Janssen54cc54c2007-12-14 22:08:56 +0000421 socket._real_close(self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000422
Bill Janssen48dc27c2007-12-05 03:38:10 +0000423 def do_handshake(self, block=False):
Bill Janssen6e027db2007-11-15 22:23:56 +0000424 """Perform a TLS/SSL handshake."""
425
Bill Janssen48dc27c2007-12-05 03:38:10 +0000426 timeout = self.gettimeout()
Bill Janssen6e027db2007-11-15 22:23:56 +0000427 try:
Bill Janssen48dc27c2007-12-05 03:38:10 +0000428 if timeout == 0.0 and block:
429 self.settimeout(None)
Bill Janssen6e027db2007-11-15 22:23:56 +0000430 self._sslobj.do_handshake()
Bill Janssen48dc27c2007-12-05 03:38:10 +0000431 finally:
432 self.settimeout(timeout)
Thomas Woutersed03b412007-08-28 21:37:11 +0000433
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000434 def _real_connect(self, addr, return_errno):
Giampaolo Rodolà745ab382010-08-29 19:25:49 +0000435 if self.server_side:
436 raise ValueError("can't connect in server-side mode")
Thomas Woutersed03b412007-08-28 21:37:11 +0000437 # Here we assume that the socket is client-side, and not
438 # connected at the time of the call. We connect it, then wrap it.
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000439 if self._connected:
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000440 raise ValueError("attempt to connect already-connected SSLSocket!")
Antoine Pitroud5323212010-10-22 18:19:07 +0000441 self._sslobj = self.context._wrap_socket(self, False, self.server_hostname)
Bill Janssen54cc54c2007-12-14 22:08:56 +0000442 try:
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000443 socket.connect(self, addr)
Bill Janssen54cc54c2007-12-14 22:08:56 +0000444 if self.do_handshake_on_connect:
445 self.do_handshake()
Antoine Pitroue93bf7a2011-02-26 23:24:06 +0000446 except socket_error as e:
447 if return_errno:
448 return e.errno
449 else:
450 self._sslobj = None
451 raise e
452 self._connected = True
453 return 0
454
455 def connect(self, addr):
456 """Connects to remote ADDR, and then wraps the connection in
457 an SSL channel."""
458 self._real_connect(addr, False)
459
460 def connect_ex(self, addr):
461 """Connects to remote ADDR, and then wraps the connection in
462 an SSL channel."""
463 return self._real_connect(addr, True)
Thomas Woutersed03b412007-08-28 21:37:11 +0000464
465 def accept(self):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000466 """Accepts a new connection from a remote client, and returns
467 a tuple containing that new connection wrapped with a server-side
468 SSL channel, and the address of the remote client."""
469
470 newsock, addr = socket.accept(self)
Bill Janssen6e027db2007-11-15 22:23:56 +0000471 return (SSLSocket(sock=newsock,
472 keyfile=self.keyfile, certfile=self.certfile,
473 server_side=True,
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000474 cert_reqs=self.cert_reqs,
475 ssl_version=self.ssl_version,
Bill Janssen6e027db2007-11-15 22:23:56 +0000476 ca_certs=self.ca_certs,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000477 ciphers=self.ciphers,
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000478 do_handshake_on_connect=
479 self.do_handshake_on_connect),
Bill Janssen6e027db2007-11-15 22:23:56 +0000480 addr)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000481
Guido van Rossume6650f92007-12-06 19:05:55 +0000482 def __del__(self):
Bill Janssen54cc54c2007-12-14 22:08:56 +0000483 # sys.stderr.write("__del__ on %s\n" % repr(self))
Guido van Rossume6650f92007-12-06 19:05:55 +0000484 self._real_close()
485
Bill Janssen54cc54c2007-12-14 22:08:56 +0000486
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000487def wrap_socket(sock, keyfile=None, certfile=None,
488 server_side=False, cert_reqs=CERT_NONE,
Bill Janssen6e027db2007-11-15 22:23:56 +0000489 ssl_version=PROTOCOL_SSLv23, ca_certs=None,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000490 do_handshake_on_connect=True,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000491 suppress_ragged_eofs=True, ciphers=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000492
Bill Janssen6e027db2007-11-15 22:23:56 +0000493 return SSLSocket(sock=sock, keyfile=keyfile, certfile=certfile,
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000494 server_side=server_side, cert_reqs=cert_reqs,
Bill Janssen6e027db2007-11-15 22:23:56 +0000495 ssl_version=ssl_version, ca_certs=ca_certs,
Bill Janssen48dc27c2007-12-05 03:38:10 +0000496 do_handshake_on_connect=do_handshake_on_connect,
Antoine Pitrou2d9cb9c2010-04-17 17:40:45 +0000497 suppress_ragged_eofs=suppress_ragged_eofs,
498 ciphers=ciphers)
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000499
Thomas Woutersed03b412007-08-28 21:37:11 +0000500# some utility functions
501
502def cert_time_to_seconds(cert_time):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000503 """Takes a date-time string in standard ASN1_print form
504 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
505 a Python time value in seconds past the epoch."""
506
Thomas Woutersed03b412007-08-28 21:37:11 +0000507 import time
508 return time.mktime(time.strptime(cert_time, "%b %d %H:%M:%S %Y GMT"))
509
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000510PEM_HEADER = "-----BEGIN CERTIFICATE-----"
511PEM_FOOTER = "-----END CERTIFICATE-----"
512
513def DER_cert_to_PEM_cert(der_cert_bytes):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000514 """Takes a certificate in binary DER format and returns the
515 PEM version of it as a string."""
516
Bill Janssen6e027db2007-11-15 22:23:56 +0000517 f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict')
518 return (PEM_HEADER + '\n' +
519 textwrap.fill(f, 64) + '\n' +
520 PEM_FOOTER + '\n')
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000521
522def PEM_cert_to_DER_cert(pem_cert_string):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000523 """Takes a certificate in ASCII PEM format and returns the
524 DER-encoded version of it as a byte sequence"""
525
526 if not pem_cert_string.startswith(PEM_HEADER):
527 raise ValueError("Invalid PEM encoding; must start with %s"
528 % PEM_HEADER)
529 if not pem_cert_string.strip().endswith(PEM_FOOTER):
530 raise ValueError("Invalid PEM encoding; must end with %s"
531 % PEM_FOOTER)
532 d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
Georg Brandl706824f2009-06-04 09:42:55 +0000533 return base64.decodebytes(d.encode('ASCII', 'strict'))
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000534
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000535def get_server_certificate(addr, ssl_version=PROTOCOL_SSLv3, ca_certs=None):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000536 """Retrieve the certificate from the server at the specified address,
537 and return it as a PEM-encoded string.
538 If 'ca_certs' is specified, validate the server cert against it.
539 If 'ssl_version' is specified, use it in the connection attempt."""
540
541 host, port = addr
542 if (ca_certs is not None):
543 cert_reqs = CERT_REQUIRED
544 else:
545 cert_reqs = CERT_NONE
546 s = wrap_socket(socket(), ssl_version=ssl_version,
547 cert_reqs=cert_reqs, ca_certs=ca_certs)
548 s.connect(addr)
549 dercert = s.getpeercert(True)
550 s.close()
551 return DER_cert_to_PEM_cert(dercert)
552
Guido van Rossum5b8b1552007-11-16 00:06:11 +0000553def get_protocol_name(protocol_code):
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000554 if protocol_code == PROTOCOL_TLSv1:
555 return "TLSv1"
556 elif protocol_code == PROTOCOL_SSLv23:
557 return "SSLv23"
558 elif protocol_code == PROTOCOL_SSLv2:
559 return "SSLv2"
560 elif protocol_code == PROTOCOL_SSLv3:
561 return "SSLv3"
562 else:
563 return "<unknown>"