blob: 5968ed53303b13fd652693ae441375ad47f022af [file] [log] [blame]
Thomas Woutersed03b412007-08-28 21:37:11 +00001/* SSL socket module
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00002
3 SSL support based on patches by Brian E Gallew and Laszlo Kovacs.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004 Re-worked a bit by Bill Janssen to add server-side support and
Bill Janssen6e027db2007-11-15 22:23:56 +00005 certificate decoding. Chris Stawarz contributed some non-blocking
6 patches.
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00007
Thomas Wouters1b7f8912007-09-19 03:06:30 +00008 This module is imported by ssl.py. It should *not* be used
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00009 directly.
10
Thomas Wouters1b7f8912007-09-19 03:06:30 +000011 XXX should partial writes be enabled, SSL_MODE_ENABLE_PARTIAL_WRITE?
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +000012
13 XXX integrate several "shutdown modes" as suggested in
14 http://bugs.python.org/issue8108#msg102867 ?
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000015*/
16
Victor Stinner2e57b4e2014-07-01 16:37:17 +020017#define PY_SSIZE_T_CLEAN
18
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +000019#include "Python.h"
Thomas Woutersed03b412007-08-28 21:37:11 +000020
Thomas Wouters1b7f8912007-09-19 03:06:30 +000021#ifdef WITH_THREAD
22#include "pythread.h"
Christian Heimesf77b4b22013-08-21 13:26:05 +020023
Christian Heimesf77b4b22013-08-21 13:26:05 +020024
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +020025#define PySSL_BEGIN_ALLOW_THREADS_S(save) \
26 do { if (_ssl_locks_count>0) { (save) = PyEval_SaveThread(); } } while (0)
27#define PySSL_END_ALLOW_THREADS_S(save) \
28 do { if (_ssl_locks_count>0) { PyEval_RestoreThread(save); } } while (0)
Thomas Wouters1b7f8912007-09-19 03:06:30 +000029#define PySSL_BEGIN_ALLOW_THREADS { \
Antoine Pitroucbb82eb2010-05-05 15:57:33 +000030 PyThreadState *_save = NULL; \
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +020031 PySSL_BEGIN_ALLOW_THREADS_S(_save);
32#define PySSL_BLOCK_THREADS PySSL_END_ALLOW_THREADS_S(_save);
33#define PySSL_UNBLOCK_THREADS PySSL_BEGIN_ALLOW_THREADS_S(_save);
34#define PySSL_END_ALLOW_THREADS PySSL_END_ALLOW_THREADS_S(_save); }
Thomas Wouters1b7f8912007-09-19 03:06:30 +000035
Antoine Pitroucbb82eb2010-05-05 15:57:33 +000036#else /* no WITH_THREAD */
Thomas Wouters1b7f8912007-09-19 03:06:30 +000037
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +020038#define PySSL_BEGIN_ALLOW_THREADS_S(save)
39#define PySSL_END_ALLOW_THREADS_S(save)
Thomas Wouters1b7f8912007-09-19 03:06:30 +000040#define PySSL_BEGIN_ALLOW_THREADS
41#define PySSL_BLOCK_THREADS
42#define PySSL_UNBLOCK_THREADS
43#define PySSL_END_ALLOW_THREADS
44
45#endif
46
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010047/* Include symbols from _socket module */
48#include "socketmodule.h"
49
50static PySocketModule_APIObject PySocketModule;
51
52#if defined(HAVE_POLL_H)
53#include <poll.h>
54#elif defined(HAVE_SYS_POLL_H)
55#include <sys/poll.h>
56#endif
57
58/* Include OpenSSL header files */
59#include "openssl/rsa.h"
60#include "openssl/crypto.h"
61#include "openssl/x509.h"
62#include "openssl/x509v3.h"
63#include "openssl/pem.h"
64#include "openssl/ssl.h"
65#include "openssl/err.h"
66#include "openssl/rand.h"
Antoine Pitroub1fdf472014-10-05 20:41:53 +020067#include "openssl/bio.h"
Antoine Pitrou2463e5f2013-03-28 22:24:43 +010068
69/* SSL error object */
70static PyObject *PySSLErrorObject;
71static PyObject *PySSLZeroReturnErrorObject;
72static PyObject *PySSLWantReadErrorObject;
73static PyObject *PySSLWantWriteErrorObject;
74static PyObject *PySSLSyscallErrorObject;
75static PyObject *PySSLEOFErrorObject;
76
77/* Error mappings */
78static PyObject *err_codes_to_names;
79static PyObject *err_names_to_codes;
80static PyObject *lib_codes_to_names;
81
82struct py_ssl_error_code {
83 const char *mnemonic;
84 int library, reason;
85};
86struct py_ssl_library_code {
87 const char *library;
88 int code;
89};
90
91/* Include generated data (error codes) */
92#include "_ssl_data.h"
93
94/* Openssl comes with TLSv1.1 and TLSv1.2 between 1.0.0h and 1.0.1
95 http://www.openssl.org/news/changelog.html
96 */
97#if OPENSSL_VERSION_NUMBER >= 0x10001000L
98# define HAVE_TLSv1_2 1
99#else
100# define HAVE_TLSv1_2 0
101#endif
102
Christian Heimes470fba12013-11-28 15:12:15 +0100103/* SNI support (client- and server-side) appeared in OpenSSL 1.0.0 and 0.9.8f
Antoine Pitrou912fbff2013-03-30 16:29:32 +0100104 * This includes the SSL_set_SSL_CTX() function.
105 */
106#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
107# define HAVE_SNI 1
108#else
109# define HAVE_SNI 0
110#endif
111
Benjamin Petersond3308222015-09-27 00:09:02 -0700112#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Benjamin Petersoncca27322015-01-23 16:35:37 -0500113# define HAVE_ALPN
114#endif
115
Martin v. Löwis6af3e2d2002-04-20 07:47:40 +0000116enum py_ssl_error {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000117 /* these mirror ssl.h */
118 PY_SSL_ERROR_NONE,
119 PY_SSL_ERROR_SSL,
120 PY_SSL_ERROR_WANT_READ,
121 PY_SSL_ERROR_WANT_WRITE,
122 PY_SSL_ERROR_WANT_X509_LOOKUP,
123 PY_SSL_ERROR_SYSCALL, /* look at error stack/return value/errno */
124 PY_SSL_ERROR_ZERO_RETURN,
125 PY_SSL_ERROR_WANT_CONNECT,
126 /* start of non ssl.h errorcodes */
127 PY_SSL_ERROR_EOF, /* special case of SSL_ERROR_SYSCALL */
128 PY_SSL_ERROR_NO_SOCKET, /* socket has been GC'd */
129 PY_SSL_ERROR_INVALID_ERROR_CODE
Martin v. Löwis6af3e2d2002-04-20 07:47:40 +0000130};
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000131
Thomas Woutersed03b412007-08-28 21:37:11 +0000132enum py_ssl_server_or_client {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000133 PY_SSL_CLIENT,
134 PY_SSL_SERVER
Thomas Woutersed03b412007-08-28 21:37:11 +0000135};
136
137enum py_ssl_cert_requirements {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000138 PY_SSL_CERT_NONE,
139 PY_SSL_CERT_OPTIONAL,
140 PY_SSL_CERT_REQUIRED
Thomas Woutersed03b412007-08-28 21:37:11 +0000141};
142
143enum py_ssl_version {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000144 PY_SSL_VERSION_SSL2,
Victor Stinner3de49192011-05-09 00:42:58 +0200145 PY_SSL_VERSION_SSL3=1,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000146 PY_SSL_VERSION_SSL23,
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100147#if HAVE_TLSv1_2
148 PY_SSL_VERSION_TLS1,
149 PY_SSL_VERSION_TLS1_1,
150 PY_SSL_VERSION_TLS1_2
151#else
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000152 PY_SSL_VERSION_TLS1
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000153#endif
Antoine Pitrou2463e5f2013-03-28 22:24:43 +0100154};
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200155
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000156#ifdef WITH_THREAD
157
158/* serves as a flag to see whether we've initialized the SSL thread support. */
159/* 0 means no, greater than 0 means yes */
160
161static unsigned int _ssl_locks_count = 0;
162
163#endif /* def WITH_THREAD */
164
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000165/* SSL socket object */
166
167#define X509_NAME_MAXLEN 256
168
Gregory P. Smithbd4dacb2010-10-13 03:53:21 +0000169/* SSL_CTX_clear_options() and SSL_clear_options() were first added in
170 * OpenSSL 0.9.8m but do not appear in some 0.9.9-dev versions such the
171 * 0.9.9 from "May 2008" that NetBSD 5.0 uses. */
172#if OPENSSL_VERSION_NUMBER >= 0x009080dfL && OPENSSL_VERSION_NUMBER != 0x00909000L
Antoine Pitroub5218772010-05-21 09:56:06 +0000173# define HAVE_SSL_CTX_CLEAR_OPTIONS
174#else
175# undef HAVE_SSL_CTX_CLEAR_OPTIONS
176#endif
177
Antoine Pitroud6494802011-07-21 01:11:30 +0200178/* In case of 'tls-unique' it will be 12 bytes for TLS, 36 bytes for
179 * older SSL, but let's be safe */
180#define PySSL_CB_MAXLEN 128
181
Antoine Pitroua9bf2ac2012-02-17 18:47:54 +0100182
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000183typedef struct {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000184 PyObject_HEAD
Antoine Pitrou152efa22010-05-16 18:19:27 +0000185 SSL_CTX *ctx;
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100186#ifdef OPENSSL_NPN_NEGOTIATED
Benjamin Petersoncca27322015-01-23 16:35:37 -0500187 unsigned char *npn_protocols;
Antoine Pitroud5d17eb2012-03-22 00:23:03 +0100188 int npn_protocols_len;
189#endif
Benjamin Petersoncca27322015-01-23 16:35:37 -0500190#ifdef HAVE_ALPN
191 unsigned char *alpn_protocols;
192 int alpn_protocols_len;
193#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100194#ifndef OPENSSL_NO_TLSEXT
Victor Stinner7e001512013-06-25 00:44:31 +0200195 PyObject *set_hostname;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100196#endif
Christian Heimes1aa9a752013-12-02 02:41:19 +0100197 int check_hostname;
Antoine Pitrou152efa22010-05-16 18:19:27 +0000198} PySSLContext;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000199
Antoine Pitrou152efa22010-05-16 18:19:27 +0000200typedef struct {
201 PyObject_HEAD
202 PyObject *Socket; /* weakref to socket on which we're layered */
203 SSL *ssl;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100204 PySSLContext *ctx; /* weakref to SSL context */
Antoine Pitrou152efa22010-05-16 18:19:27 +0000205 X509 *peer_cert;
Antoine Pitrou20b85552013-09-29 19:50:53 +0200206 char shutdown_seen_zero;
207 char handshake_done;
Antoine Pitroud6494802011-07-21 01:11:30 +0200208 enum py_ssl_server_or_client socket_type;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200209 PyObject *owner; /* Python level "owner" passed to servername callback */
210 PyObject *server_hostname;
Antoine Pitrou152efa22010-05-16 18:19:27 +0000211} PySSLSocket;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000212
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200213typedef struct {
214 PyObject_HEAD
215 BIO *bio;
216 int eof_written;
217} PySSLMemoryBIO;
218
Antoine Pitrou152efa22010-05-16 18:19:27 +0000219static PyTypeObject PySSLContext_Type;
220static PyTypeObject PySSLSocket_Type;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200221static PyTypeObject PySSLMemoryBIO_Type;
Antoine Pitrou152efa22010-05-16 18:19:27 +0000222
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +0300223/*[clinic input]
224module _ssl
225class _ssl._SSLContext "PySSLContext *" "&PySSLContext_Type"
226class _ssl._SSLSocket "PySSLSocket *" "&PySSLSocket_Type"
227class _ssl.MemoryBIO "PySSLMemoryBIO *" "&PySSLMemoryBIO_Type"
228[clinic start generated code]*/
229/*[clinic end generated code: output=da39a3ee5e6b4b0d input=7bf7cb832638e2e1]*/
230
231#include "clinic/_ssl.c.h"
232
Victor Stinner14690702015-04-06 22:46:13 +0200233static int PySSL_select(PySocketSockObject *s, int writing, _PyTime_t timeout);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000234
Antoine Pitrou152efa22010-05-16 18:19:27 +0000235#define PySSLContext_Check(v) (Py_TYPE(v) == &PySSLContext_Type)
236#define PySSLSocket_Check(v) (Py_TYPE(v) == &PySSLSocket_Type)
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200237#define PySSLMemoryBIO_Check(v) (Py_TYPE(v) == &PySSLMemoryBIO_Type)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000238
Andrew M. Kuchling9c3efe32004-07-10 21:15:17 +0000239typedef enum {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000240 SOCKET_IS_NONBLOCKING,
241 SOCKET_IS_BLOCKING,
242 SOCKET_HAS_TIMED_OUT,
243 SOCKET_HAS_BEEN_CLOSED,
244 SOCKET_TOO_LARGE_FOR_SELECT,
245 SOCKET_OPERATION_OK
Andrew M. Kuchling9c3efe32004-07-10 21:15:17 +0000246} timeout_state;
247
Thomas Woutersed03b412007-08-28 21:37:11 +0000248/* Wrap error strings with filename and line # */
Thomas Woutersed03b412007-08-28 21:37:11 +0000249#define ERRSTR1(x,y,z) (x ":" y ": " z)
Victor Stinner45e8e2f2014-05-14 17:24:35 +0200250#define ERRSTR(x) ERRSTR1("_ssl.c", Py_STRINGIFY(__LINE__), x)
Thomas Woutersed03b412007-08-28 21:37:11 +0000251
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200252/* Get the socket from a PySSLSocket, if it has one */
253#define GET_SOCKET(obj) ((obj)->Socket ? \
254 (PySocketSockObject *) PyWeakref_GetObject((obj)->Socket) : NULL)
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200255
Victor Stinner14690702015-04-06 22:46:13 +0200256/* If sock is NULL, use a timeout of 0 second */
257#define GET_SOCKET_TIMEOUT(sock) \
258 ((sock != NULL) ? (sock)->sock_timeout : 0)
259
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200260/*
261 * SSL errors.
262 */
263
264PyDoc_STRVAR(SSLError_doc,
265"An error occurred in the SSL implementation.");
266
267PyDoc_STRVAR(SSLZeroReturnError_doc,
268"SSL/TLS session closed cleanly.");
269
270PyDoc_STRVAR(SSLWantReadError_doc,
271"Non-blocking SSL socket needs to read more data\n"
272"before the requested operation can be completed.");
273
274PyDoc_STRVAR(SSLWantWriteError_doc,
275"Non-blocking SSL socket needs to write more data\n"
276"before the requested operation can be completed.");
277
278PyDoc_STRVAR(SSLSyscallError_doc,
279"System error when attempting SSL operation.");
280
281PyDoc_STRVAR(SSLEOFError_doc,
282"SSL/TLS connection terminated abruptly.");
283
284static PyObject *
285SSLError_str(PyOSErrorObject *self)
286{
287 if (self->strerror != NULL && PyUnicode_Check(self->strerror)) {
288 Py_INCREF(self->strerror);
289 return self->strerror;
290 }
291 else
292 return PyObject_Str(self->args);
293}
294
295static PyType_Slot sslerror_type_slots[] = {
296 {Py_tp_base, NULL}, /* Filled out in module init as it's not a constant */
297 {Py_tp_doc, SSLError_doc},
298 {Py_tp_str, SSLError_str},
299 {0, 0},
300};
301
302static PyType_Spec sslerror_type_spec = {
303 "ssl.SSLError",
304 sizeof(PyOSErrorObject),
305 0,
306 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
307 sslerror_type_slots
308};
309
310static void
311fill_and_set_sslerror(PyObject *type, int ssl_errno, const char *errstr,
312 int lineno, unsigned long errcode)
313{
314 PyObject *err_value = NULL, *reason_obj = NULL, *lib_obj = NULL;
315 PyObject *init_value, *msg, *key;
316 _Py_IDENTIFIER(reason);
317 _Py_IDENTIFIER(library);
318
319 if (errcode != 0) {
320 int lib, reason;
321
322 lib = ERR_GET_LIB(errcode);
323 reason = ERR_GET_REASON(errcode);
324 key = Py_BuildValue("ii", lib, reason);
325 if (key == NULL)
326 goto fail;
327 reason_obj = PyDict_GetItem(err_codes_to_names, key);
328 Py_DECREF(key);
329 if (reason_obj == NULL) {
330 /* XXX if reason < 100, it might reflect a library number (!!) */
331 PyErr_Clear();
332 }
333 key = PyLong_FromLong(lib);
334 if (key == NULL)
335 goto fail;
336 lib_obj = PyDict_GetItem(lib_codes_to_names, key);
337 Py_DECREF(key);
338 if (lib_obj == NULL) {
339 PyErr_Clear();
340 }
341 if (errstr == NULL)
342 errstr = ERR_reason_error_string(errcode);
343 }
344 if (errstr == NULL)
345 errstr = "unknown error";
346
347 if (reason_obj && lib_obj)
348 msg = PyUnicode_FromFormat("[%S: %S] %s (_ssl.c:%d)",
349 lib_obj, reason_obj, errstr, lineno);
350 else if (lib_obj)
351 msg = PyUnicode_FromFormat("[%S] %s (_ssl.c:%d)",
352 lib_obj, errstr, lineno);
353 else
354 msg = PyUnicode_FromFormat("%s (_ssl.c:%d)", errstr, lineno);
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200355 if (msg == NULL)
356 goto fail;
Victor Stinnerba9be472013-10-31 15:00:24 +0100357
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200358 init_value = Py_BuildValue("iN", ssl_errno, msg);
Victor Stinnerba9be472013-10-31 15:00:24 +0100359 if (init_value == NULL)
360 goto fail;
361
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200362 err_value = PyObject_CallObject(type, init_value);
363 Py_DECREF(init_value);
364 if (err_value == NULL)
365 goto fail;
Victor Stinnerba9be472013-10-31 15:00:24 +0100366
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200367 if (reason_obj == NULL)
368 reason_obj = Py_None;
369 if (_PyObject_SetAttrId(err_value, &PyId_reason, reason_obj))
370 goto fail;
371 if (lib_obj == NULL)
372 lib_obj = Py_None;
373 if (_PyObject_SetAttrId(err_value, &PyId_library, lib_obj))
374 goto fail;
375 PyErr_SetObject(type, err_value);
376fail:
377 Py_XDECREF(err_value);
378}
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000379
380static PyObject *
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200381PySSL_SetError(PySSLSocket *obj, int ret, const char *filename, int lineno)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000382{
Antoine Pitrou41032a62011-10-27 23:56:55 +0200383 PyObject *type = PySSLErrorObject;
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200384 char *errstr = NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000385 int err;
386 enum py_ssl_error p = PY_SSL_ERROR_NONE;
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200387 unsigned long e = 0;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000388
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000389 assert(ret <= 0);
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200390 e = ERR_peek_last_error();
Martin v. Löwis6af3e2d2002-04-20 07:47:40 +0000391
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000392 if (obj->ssl != NULL) {
393 err = SSL_get_error(obj->ssl, ret);
Thomas Woutersed03b412007-08-28 21:37:11 +0000394
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000395 switch (err) {
396 case SSL_ERROR_ZERO_RETURN:
Antoine Pitrou41032a62011-10-27 23:56:55 +0200397 errstr = "TLS/SSL connection has been closed (EOF)";
398 type = PySSLZeroReturnErrorObject;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000399 p = PY_SSL_ERROR_ZERO_RETURN;
400 break;
401 case SSL_ERROR_WANT_READ:
402 errstr = "The operation did not complete (read)";
Antoine Pitrou41032a62011-10-27 23:56:55 +0200403 type = PySSLWantReadErrorObject;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000404 p = PY_SSL_ERROR_WANT_READ;
405 break;
406 case SSL_ERROR_WANT_WRITE:
407 p = PY_SSL_ERROR_WANT_WRITE;
Antoine Pitrou41032a62011-10-27 23:56:55 +0200408 type = PySSLWantWriteErrorObject;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000409 errstr = "The operation did not complete (write)";
410 break;
411 case SSL_ERROR_WANT_X509_LOOKUP:
412 p = PY_SSL_ERROR_WANT_X509_LOOKUP;
Antoine Pitrou525807b2010-05-12 14:05:24 +0000413 errstr = "The operation did not complete (X509 lookup)";
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000414 break;
415 case SSL_ERROR_WANT_CONNECT:
416 p = PY_SSL_ERROR_WANT_CONNECT;
417 errstr = "The operation did not complete (connect)";
418 break;
419 case SSL_ERROR_SYSCALL:
420 {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000421 if (e == 0) {
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200422 PySocketSockObject *s = GET_SOCKET(obj);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000423 if (ret == 0 || (((PyObject *)s) == Py_None)) {
Antoine Pitrou525807b2010-05-12 14:05:24 +0000424 p = PY_SSL_ERROR_EOF;
Antoine Pitrou41032a62011-10-27 23:56:55 +0200425 type = PySSLEOFErrorObject;
Antoine Pitrou525807b2010-05-12 14:05:24 +0000426 errstr = "EOF occurred in violation of protocol";
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200427 } else if (s && ret == -1) {
Antoine Pitrou525807b2010-05-12 14:05:24 +0000428 /* underlying BIO reported an I/O error */
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000429 Py_INCREF(s);
Antoine Pitrou9d74b422010-05-16 23:14:22 +0000430 ERR_clear_error();
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200431 s->errorhandler();
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000432 Py_DECREF(s);
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200433 return NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000434 } else { /* possible? */
Antoine Pitrou525807b2010-05-12 14:05:24 +0000435 p = PY_SSL_ERROR_SYSCALL;
Antoine Pitrou41032a62011-10-27 23:56:55 +0200436 type = PySSLSyscallErrorObject;
Antoine Pitrou525807b2010-05-12 14:05:24 +0000437 errstr = "Some I/O error occurred";
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000438 }
439 } else {
440 p = PY_SSL_ERROR_SYSCALL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000441 }
442 break;
443 }
444 case SSL_ERROR_SSL:
445 {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000446 p = PY_SSL_ERROR_SSL;
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200447 if (e == 0)
448 /* possible? */
Antoine Pitrou525807b2010-05-12 14:05:24 +0000449 errstr = "A failure in the SSL library occurred";
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000450 break;
451 }
452 default:
453 p = PY_SSL_ERROR_INVALID_ERROR_CODE;
454 errstr = "Invalid error code";
455 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000456 }
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200457 fill_and_set_sslerror(type, p, errstr, lineno, e);
Antoine Pitrou9d74b422010-05-16 23:14:22 +0000458 ERR_clear_error();
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000459 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000460}
461
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000462static PyObject *
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200463_setSSLError (const char *errstr, int errcode, const char *filename, int lineno) {
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000464
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200465 if (errstr == NULL)
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000466 errcode = ERR_peek_last_error();
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200467 else
468 errcode = 0;
469 fill_and_set_sslerror(PySSLErrorObject, errcode, errstr, lineno, errcode);
Antoine Pitrou9d74b422010-05-16 23:14:22 +0000470 ERR_clear_error();
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000471 return NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000472}
473
Antoine Pitrou3b36fb12012-06-22 21:11:52 +0200474/*
475 * SSL objects
476 */
477
Antoine Pitrou152efa22010-05-16 18:19:27 +0000478static PySSLSocket *
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100479newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock,
Antoine Pitroud5323212010-10-22 18:19:07 +0000480 enum py_ssl_server_or_client socket_type,
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200481 char *server_hostname,
482 PySSLMemoryBIO *inbio, PySSLMemoryBIO *outbio)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000483{
Antoine Pitrou152efa22010-05-16 18:19:27 +0000484 PySSLSocket *self;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100485 SSL_CTX *ctx = sslctx->ctx;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200486 PyObject *hostname;
Antoine Pitrou19fef692013-05-25 13:23:03 +0200487 long mode;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000488
Antoine Pitrou152efa22010-05-16 18:19:27 +0000489 self = PyObject_New(PySSLSocket, &PySSLSocket_Type);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000490 if (self == NULL)
491 return NULL;
Antoine Pitrou152efa22010-05-16 18:19:27 +0000492
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000493 self->peer_cert = NULL;
494 self->ssl = NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000495 self->Socket = NULL;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100496 self->ctx = sslctx;
Antoine Pitrou860aee72013-09-29 19:52:45 +0200497 self->shutdown_seen_zero = 0;
Antoine Pitrou20b85552013-09-29 19:50:53 +0200498 self->handshake_done = 0;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200499 self->owner = NULL;
500 if (server_hostname != NULL) {
501 hostname = PyUnicode_Decode(server_hostname, strlen(server_hostname),
502 "idna", "strict");
503 if (hostname == NULL) {
504 Py_DECREF(self);
505 return NULL;
506 }
507 self->server_hostname = hostname;
508 } else
509 self->server_hostname = NULL;
510
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +0100511 Py_INCREF(sslctx);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000512
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000513 /* Make sure the SSL error state is initialized */
514 (void) ERR_get_state();
515 ERR_clear_error();
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000516
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000517 PySSL_BEGIN_ALLOW_THREADS
Antoine Pitrou152efa22010-05-16 18:19:27 +0000518 self->ssl = SSL_new(ctx);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000519 PySSL_END_ALLOW_THREADS
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200520 SSL_set_app_data(self->ssl, self);
521 if (sock) {
522 SSL_set_fd(self->ssl, Py_SAFE_DOWNCAST(sock->sock_fd, SOCKET_T, int));
523 } else {
524 /* BIOs are reference counted and SSL_set_bio borrows our reference.
525 * To prevent a double free in memory_bio_dealloc() we need to take an
526 * extra reference here. */
527 CRYPTO_add(&inbio->bio->references, 1, CRYPTO_LOCK_BIO);
528 CRYPTO_add(&outbio->bio->references, 1, CRYPTO_LOCK_BIO);
529 SSL_set_bio(self->ssl, inbio->bio, outbio->bio);
530 }
Antoine Pitrou19fef692013-05-25 13:23:03 +0200531 mode = SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER;
Antoine Pitrou0ae7b582010-04-09 20:42:09 +0000532#ifdef SSL_MODE_AUTO_RETRY
Antoine Pitrou19fef692013-05-25 13:23:03 +0200533 mode |= SSL_MODE_AUTO_RETRY;
Antoine Pitrou0ae7b582010-04-09 20:42:09 +0000534#endif
Antoine Pitrou19fef692013-05-25 13:23:03 +0200535 SSL_set_mode(self->ssl, mode);
Guido van Rossum4f707ac2003-01-31 18:13:18 +0000536
Antoine Pitrou912fbff2013-03-30 16:29:32 +0100537#if HAVE_SNI
Antoine Pitroud5323212010-10-22 18:19:07 +0000538 if (server_hostname != NULL)
539 SSL_set_tlsext_host_name(self->ssl, server_hostname);
540#endif
541
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000542 /* If the socket is in non-blocking mode or timeout mode, set the BIO
543 * to non-blocking mode (blocking is the default)
544 */
Victor Stinnere2452312015-03-28 03:00:46 +0100545 if (sock && sock->sock_timeout >= 0) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000546 BIO_set_nbio(SSL_get_rbio(self->ssl), 1);
547 BIO_set_nbio(SSL_get_wbio(self->ssl), 1);
548 }
Guido van Rossum4f707ac2003-01-31 18:13:18 +0000549
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000550 PySSL_BEGIN_ALLOW_THREADS
551 if (socket_type == PY_SSL_CLIENT)
552 SSL_set_connect_state(self->ssl);
553 else
554 SSL_set_accept_state(self->ssl);
555 PySSL_END_ALLOW_THREADS
Martin v. Löwis09c35f72002-07-28 09:57:45 +0000556
Antoine Pitroud6494802011-07-21 01:11:30 +0200557 self->socket_type = socket_type;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200558 if (sock != NULL) {
559 self->Socket = PyWeakref_NewRef((PyObject *) sock, NULL);
560 if (self->Socket == NULL) {
561 Py_DECREF(self);
562 Py_XDECREF(self->server_hostname);
563 return NULL;
564 }
Victor Stinnera9eb38f2013-10-31 16:35:38 +0100565 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000566 return self;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000567}
568
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000569/* SSL object methods */
570
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +0300571/*[clinic input]
572_ssl._SSLSocket.do_handshake
573[clinic start generated code]*/
574
575static PyObject *
576_ssl__SSLSocket_do_handshake_impl(PySSLSocket *self)
577/*[clinic end generated code: output=6c0898a8936548f6 input=d2d737de3df018c8]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000578{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000579 int ret;
580 int err;
581 int sockstate, nonblocking;
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200582 PySocketSockObject *sock = GET_SOCKET(self);
Victor Stinner14690702015-04-06 22:46:13 +0200583 _PyTime_t timeout, deadline = 0;
584 int has_timeout;
Antoine Pitroud3f8ab82010-04-24 21:26:44 +0000585
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200586 if (sock) {
587 if (((PyObject*)sock) == Py_None) {
588 _setSSLError("Underlying socket connection gone",
589 PY_SSL_ERROR_NO_SOCKET, __FILE__, __LINE__);
590 return NULL;
591 }
592 Py_INCREF(sock);
593
594 /* just in case the blocking state of the socket has been changed */
Victor Stinnere2452312015-03-28 03:00:46 +0100595 nonblocking = (sock->sock_timeout >= 0);
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200596 BIO_set_nbio(SSL_get_rbio(self->ssl), nonblocking);
597 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000598 }
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000599
Victor Stinner14690702015-04-06 22:46:13 +0200600 timeout = GET_SOCKET_TIMEOUT(sock);
601 has_timeout = (timeout > 0);
602 if (has_timeout)
603 deadline = _PyTime_GetMonotonicClock() + timeout;
604
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000605 /* Actually negotiate SSL connection */
606 /* XXX If SSL_do_handshake() returns 0, it's also a failure. */
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000607 do {
Bill Janssen6e027db2007-11-15 22:23:56 +0000608 PySSL_BEGIN_ALLOW_THREADS
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000609 ret = SSL_do_handshake(self->ssl);
610 err = SSL_get_error(self->ssl, ret);
611 PySSL_END_ALLOW_THREADS
Victor Stinner4e3cfa42015-04-02 21:28:28 +0200612
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000613 if (PyErr_CheckSignals())
614 goto error;
Victor Stinner4e3cfa42015-04-02 21:28:28 +0200615
Victor Stinner14690702015-04-06 22:46:13 +0200616 if (has_timeout)
617 timeout = deadline - _PyTime_GetMonotonicClock();
618
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000619 if (err == SSL_ERROR_WANT_READ) {
Victor Stinner14690702015-04-06 22:46:13 +0200620 sockstate = PySSL_select(sock, 0, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000621 } else if (err == SSL_ERROR_WANT_WRITE) {
Victor Stinner14690702015-04-06 22:46:13 +0200622 sockstate = PySSL_select(sock, 1, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000623 } else {
624 sockstate = SOCKET_OPERATION_OK;
625 }
Victor Stinner4e3cfa42015-04-02 21:28:28 +0200626
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000627 if (sockstate == SOCKET_HAS_TIMED_OUT) {
Antoine Pitrouc4df7842010-12-03 19:59:41 +0000628 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitrou525807b2010-05-12 14:05:24 +0000629 ERRSTR("The handshake operation timed out"));
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000630 goto error;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000631 } else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
632 PyErr_SetString(PySSLErrorObject,
Antoine Pitrou525807b2010-05-12 14:05:24 +0000633 ERRSTR("Underlying socket has been closed."));
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000634 goto error;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000635 } else if (sockstate == SOCKET_TOO_LARGE_FOR_SELECT) {
636 PyErr_SetString(PySSLErrorObject,
Antoine Pitrou525807b2010-05-12 14:05:24 +0000637 ERRSTR("Underlying socket too large for select()."));
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000638 goto error;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000639 } else if (sockstate == SOCKET_IS_NONBLOCKING) {
640 break;
641 }
642 } while (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE);
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200643 Py_XDECREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000644 if (ret < 1)
645 return PySSL_SetError(self, ret, __FILE__, __LINE__);
Bill Janssen6e027db2007-11-15 22:23:56 +0000646
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000647 if (self->peer_cert)
648 X509_free (self->peer_cert);
649 PySSL_BEGIN_ALLOW_THREADS
650 self->peer_cert = SSL_get_peer_certificate(self->ssl);
651 PySSL_END_ALLOW_THREADS
Antoine Pitrou20b85552013-09-29 19:50:53 +0200652 self->handshake_done = 1;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000653
654 Py_INCREF(Py_None);
655 return Py_None;
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000656
657error:
Antoine Pitroub1fdf472014-10-05 20:41:53 +0200658 Py_XDECREF(sock);
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +0000659 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000660}
661
Thomas Woutersed03b412007-08-28 21:37:11 +0000662static PyObject *
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000663_create_tuple_for_attribute (ASN1_OBJECT *name, ASN1_STRING *value) {
Thomas Woutersed03b412007-08-28 21:37:11 +0000664
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000665 char namebuf[X509_NAME_MAXLEN];
666 int buflen;
667 PyObject *name_obj;
668 PyObject *value_obj;
669 PyObject *attr;
670 unsigned char *valuebuf = NULL;
Thomas Woutersed03b412007-08-28 21:37:11 +0000671
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000672 buflen = OBJ_obj2txt(namebuf, sizeof(namebuf), name, 0);
673 if (buflen < 0) {
674 _setSSLError(NULL, 0, __FILE__, __LINE__);
675 goto fail;
676 }
677 name_obj = PyUnicode_FromStringAndSize(namebuf, buflen);
678 if (name_obj == NULL)
679 goto fail;
Guido van Rossumf06628b2007-11-21 20:01:53 +0000680
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000681 buflen = ASN1_STRING_to_UTF8(&valuebuf, value);
682 if (buflen < 0) {
683 _setSSLError(NULL, 0, __FILE__, __LINE__);
684 Py_DECREF(name_obj);
685 goto fail;
686 }
687 value_obj = PyUnicode_DecodeUTF8((char *) valuebuf,
Antoine Pitrou525807b2010-05-12 14:05:24 +0000688 buflen, "strict");
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000689 OPENSSL_free(valuebuf);
690 if (value_obj == NULL) {
691 Py_DECREF(name_obj);
692 goto fail;
693 }
694 attr = PyTuple_New(2);
695 if (attr == NULL) {
696 Py_DECREF(name_obj);
697 Py_DECREF(value_obj);
698 goto fail;
699 }
700 PyTuple_SET_ITEM(attr, 0, name_obj);
701 PyTuple_SET_ITEM(attr, 1, value_obj);
702 return attr;
Thomas Woutersed03b412007-08-28 21:37:11 +0000703
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000704 fail:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000705 return NULL;
Thomas Woutersed03b412007-08-28 21:37:11 +0000706}
707
708static PyObject *
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000709_create_tuple_for_X509_NAME (X509_NAME *xname)
Thomas Woutersed03b412007-08-28 21:37:11 +0000710{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000711 PyObject *dn = NULL; /* tuple which represents the "distinguished name" */
712 PyObject *rdn = NULL; /* tuple to hold a "relative distinguished name" */
713 PyObject *rdnt;
714 PyObject *attr = NULL; /* tuple to hold an attribute */
715 int entry_count = X509_NAME_entry_count(xname);
716 X509_NAME_ENTRY *entry;
717 ASN1_OBJECT *name;
718 ASN1_STRING *value;
719 int index_counter;
720 int rdn_level = -1;
721 int retcode;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000722
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000723 dn = PyList_New(0);
724 if (dn == NULL)
725 return NULL;
726 /* now create another tuple to hold the top-level RDN */
727 rdn = PyList_New(0);
728 if (rdn == NULL)
729 goto fail0;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000730
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000731 for (index_counter = 0;
732 index_counter < entry_count;
733 index_counter++)
734 {
735 entry = X509_NAME_get_entry(xname, index_counter);
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000736
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000737 /* check to see if we've gotten to a new RDN */
738 if (rdn_level >= 0) {
739 if (rdn_level != entry->set) {
740 /* yes, new RDN */
741 /* add old RDN to DN */
742 rdnt = PyList_AsTuple(rdn);
743 Py_DECREF(rdn);
744 if (rdnt == NULL)
745 goto fail0;
746 retcode = PyList_Append(dn, rdnt);
747 Py_DECREF(rdnt);
748 if (retcode < 0)
749 goto fail0;
750 /* create new RDN */
751 rdn = PyList_New(0);
752 if (rdn == NULL)
753 goto fail0;
754 }
755 }
756 rdn_level = entry->set;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000757
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000758 /* now add this attribute to the current RDN */
759 name = X509_NAME_ENTRY_get_object(entry);
760 value = X509_NAME_ENTRY_get_data(entry);
761 attr = _create_tuple_for_attribute(name, value);
762 /*
763 fprintf(stderr, "RDN level %d, attribute %s: %s\n",
764 entry->set,
765 PyBytes_AS_STRING(PyTuple_GET_ITEM(attr, 0)),
766 PyBytes_AS_STRING(PyTuple_GET_ITEM(attr, 1)));
767 */
768 if (attr == NULL)
769 goto fail1;
770 retcode = PyList_Append(rdn, attr);
771 Py_DECREF(attr);
772 if (retcode < 0)
773 goto fail1;
774 }
775 /* now, there's typically a dangling RDN */
Antoine Pitrou2f5a1632012-02-15 22:25:27 +0100776 if (rdn != NULL) {
777 if (PyList_GET_SIZE(rdn) > 0) {
778 rdnt = PyList_AsTuple(rdn);
779 Py_DECREF(rdn);
780 if (rdnt == NULL)
781 goto fail0;
782 retcode = PyList_Append(dn, rdnt);
783 Py_DECREF(rdnt);
784 if (retcode < 0)
785 goto fail0;
786 }
787 else {
788 Py_DECREF(rdn);
789 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000790 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000791
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000792 /* convert list to tuple */
793 rdnt = PyList_AsTuple(dn);
794 Py_DECREF(dn);
795 if (rdnt == NULL)
796 return NULL;
797 return rdnt;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000798
799 fail1:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000800 Py_XDECREF(rdn);
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000801
802 fail0:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000803 Py_XDECREF(dn);
804 return NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000805}
806
807static PyObject *
808_get_peer_alt_names (X509 *certificate) {
Guido van Rossumf06628b2007-11-21 20:01:53 +0000809
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000810 /* this code follows the procedure outlined in
811 OpenSSL's crypto/x509v3/v3_prn.c:X509v3_EXT_print()
812 function to extract the STACK_OF(GENERAL_NAME),
813 then iterates through the stack to add the
814 names. */
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000815
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000816 int i, j;
817 PyObject *peer_alt_names = Py_None;
Christian Heimes60bf2fc2013-09-05 16:04:35 +0200818 PyObject *v = NULL, *t;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000819 X509_EXTENSION *ext = NULL;
820 GENERAL_NAMES *names = NULL;
821 GENERAL_NAME *name;
Benjamin Petersoneb1410f2010-10-13 22:06:39 +0000822 const X509V3_EXT_METHOD *method;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000823 BIO *biobuf = NULL;
824 char buf[2048];
825 char *vptr;
826 int len;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000827 const unsigned char *p;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000828
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000829 if (certificate == NULL)
830 return peer_alt_names;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000831
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000832 /* get a memory buffer */
833 biobuf = BIO_new(BIO_s_mem());
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000834
Antoine Pitroud8c347a2011-10-01 19:20:25 +0200835 i = -1;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000836 while ((i = X509_get_ext_by_NID(
837 certificate, NID_subject_alt_name, i)) >= 0) {
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000838
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000839 if (peer_alt_names == Py_None) {
840 peer_alt_names = PyList_New(0);
841 if (peer_alt_names == NULL)
842 goto fail;
843 }
Guido van Rossumf06628b2007-11-21 20:01:53 +0000844
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000845 /* now decode the altName */
846 ext = X509_get_ext(certificate, i);
847 if(!(method = X509V3_EXT_get(ext))) {
848 PyErr_SetString
849 (PySSLErrorObject,
850 ERRSTR("No method for internalizing subjectAltName!"));
851 goto fail;
852 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000853
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000854 p = ext->value->data;
855 if (method->it)
856 names = (GENERAL_NAMES*)
857 (ASN1_item_d2i(NULL,
858 &p,
859 ext->value->length,
860 ASN1_ITEM_ptr(method->it)));
861 else
862 names = (GENERAL_NAMES*)
863 (method->d2i(NULL,
864 &p,
865 ext->value->length));
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000866
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000867 for(j = 0; j < sk_GENERAL_NAME_num(names); j++) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000868 /* get a rendering of each name in the set of names */
Christian Heimes824f7f32013-08-17 00:54:47 +0200869 int gntype;
870 ASN1_STRING *as = NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000871
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000872 name = sk_GENERAL_NAME_value(names, j);
Christian Heimes474afdd2013-08-17 17:18:56 +0200873 gntype = name->type;
Christian Heimes824f7f32013-08-17 00:54:47 +0200874 switch (gntype) {
875 case GEN_DIRNAME:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000876 /* we special-case DirName as a tuple of
877 tuples of attributes */
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000878
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000879 t = PyTuple_New(2);
880 if (t == NULL) {
881 goto fail;
882 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000883
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000884 v = PyUnicode_FromString("DirName");
885 if (v == NULL) {
886 Py_DECREF(t);
887 goto fail;
888 }
889 PyTuple_SET_ITEM(t, 0, v);
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000890
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000891 v = _create_tuple_for_X509_NAME (name->d.dirn);
892 if (v == NULL) {
893 Py_DECREF(t);
894 goto fail;
895 }
896 PyTuple_SET_ITEM(t, 1, v);
Christian Heimes824f7f32013-08-17 00:54:47 +0200897 break;
Guido van Rossumf06628b2007-11-21 20:01:53 +0000898
Christian Heimes824f7f32013-08-17 00:54:47 +0200899 case GEN_EMAIL:
900 case GEN_DNS:
901 case GEN_URI:
902 /* GENERAL_NAME_print() doesn't handle NULL bytes in ASN1_string
903 correctly, CVE-2013-4238 */
904 t = PyTuple_New(2);
905 if (t == NULL)
906 goto fail;
907 switch (gntype) {
908 case GEN_EMAIL:
909 v = PyUnicode_FromString("email");
910 as = name->d.rfc822Name;
911 break;
912 case GEN_DNS:
913 v = PyUnicode_FromString("DNS");
914 as = name->d.dNSName;
915 break;
916 case GEN_URI:
917 v = PyUnicode_FromString("URI");
918 as = name->d.uniformResourceIdentifier;
919 break;
920 }
921 if (v == NULL) {
922 Py_DECREF(t);
923 goto fail;
924 }
925 PyTuple_SET_ITEM(t, 0, v);
926 v = PyUnicode_FromStringAndSize((char *)ASN1_STRING_data(as),
927 ASN1_STRING_length(as));
928 if (v == NULL) {
929 Py_DECREF(t);
930 goto fail;
931 }
932 PyTuple_SET_ITEM(t, 1, v);
933 break;
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000934
Christian Heimes824f7f32013-08-17 00:54:47 +0200935 default:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000936 /* for everything else, we use the OpenSSL print form */
Christian Heimes824f7f32013-08-17 00:54:47 +0200937 switch (gntype) {
938 /* check for new general name type */
939 case GEN_OTHERNAME:
940 case GEN_X400:
941 case GEN_EDIPARTY:
942 case GEN_IPADD:
943 case GEN_RID:
944 break;
945 default:
946 if (PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
947 "Unknown general name type %d",
948 gntype) == -1) {
949 goto fail;
950 }
951 break;
952 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000953 (void) BIO_reset(biobuf);
954 GENERAL_NAME_print(biobuf, name);
955 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
956 if (len < 0) {
957 _setSSLError(NULL, 0, __FILE__, __LINE__);
958 goto fail;
959 }
960 vptr = strchr(buf, ':');
961 if (vptr == NULL)
962 goto fail;
963 t = PyTuple_New(2);
964 if (t == NULL)
965 goto fail;
966 v = PyUnicode_FromStringAndSize(buf, (vptr - buf));
967 if (v == NULL) {
968 Py_DECREF(t);
969 goto fail;
970 }
971 PyTuple_SET_ITEM(t, 0, v);
972 v = PyUnicode_FromStringAndSize((vptr + 1),
973 (len - (vptr - buf + 1)));
974 if (v == NULL) {
975 Py_DECREF(t);
976 goto fail;
977 }
978 PyTuple_SET_ITEM(t, 1, v);
Christian Heimes824f7f32013-08-17 00:54:47 +0200979 break;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000980 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000981
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000982 /* and add that rendering to the list */
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000983
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000984 if (PyList_Append(peer_alt_names, t) < 0) {
985 Py_DECREF(t);
986 goto fail;
987 }
988 Py_DECREF(t);
989 }
Antoine Pitrou116d6b92011-11-23 01:39:19 +0100990 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +0000991 }
992 BIO_free(biobuf);
993 if (peer_alt_names != Py_None) {
994 v = PyList_AsTuple(peer_alt_names);
995 Py_DECREF(peer_alt_names);
996 return v;
997 } else {
998 return peer_alt_names;
999 }
Guido van Rossumf06628b2007-11-21 20:01:53 +00001000
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001001
1002 fail:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001003 if (biobuf != NULL)
1004 BIO_free(biobuf);
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001005
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001006 if (peer_alt_names != Py_None) {
1007 Py_XDECREF(peer_alt_names);
1008 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001009
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001010 return NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001011}
1012
1013static PyObject *
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001014_get_aia_uri(X509 *certificate, int nid) {
1015 PyObject *lst = NULL, *ostr = NULL;
1016 int i, result;
1017 AUTHORITY_INFO_ACCESS *info;
1018
1019 info = X509_get_ext_d2i(certificate, NID_info_access, NULL, NULL);
Benjamin Petersonf0c90382015-11-14 15:12:18 -08001020 if (info == NULL)
1021 return Py_None;
1022 if (sk_ACCESS_DESCRIPTION_num(info) == 0) {
1023 AUTHORITY_INFO_ACCESS_free(info);
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001024 return Py_None;
1025 }
1026
1027 if ((lst = PyList_New(0)) == NULL) {
1028 goto fail;
1029 }
1030
1031 for (i = 0; i < sk_ACCESS_DESCRIPTION_num(info); i++) {
1032 ACCESS_DESCRIPTION *ad = sk_ACCESS_DESCRIPTION_value(info, i);
1033 ASN1_IA5STRING *uri;
1034
1035 if ((OBJ_obj2nid(ad->method) != nid) ||
1036 (ad->location->type != GEN_URI)) {
1037 continue;
1038 }
1039 uri = ad->location->d.uniformResourceIdentifier;
1040 ostr = PyUnicode_FromStringAndSize((char *)uri->data,
1041 uri->length);
1042 if (ostr == NULL) {
1043 goto fail;
1044 }
1045 result = PyList_Append(lst, ostr);
1046 Py_DECREF(ostr);
1047 if (result < 0) {
1048 goto fail;
1049 }
1050 }
1051 AUTHORITY_INFO_ACCESS_free(info);
1052
1053 /* convert to tuple or None */
1054 if (PyList_Size(lst) == 0) {
1055 Py_DECREF(lst);
1056 return Py_None;
1057 } else {
1058 PyObject *tup;
1059 tup = PyList_AsTuple(lst);
1060 Py_DECREF(lst);
1061 return tup;
1062 }
1063
1064 fail:
1065 AUTHORITY_INFO_ACCESS_free(info);
Christian Heimes18fc7be2013-11-21 23:57:49 +01001066 Py_XDECREF(lst);
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001067 return NULL;
1068}
1069
1070static PyObject *
1071_get_crl_dp(X509 *certificate) {
1072 STACK_OF(DIST_POINT) *dps;
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001073 int i, j;
1074 PyObject *lst, *res = NULL;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001075
Christian Heimes949ec142013-11-21 16:26:51 +01001076#if OPENSSL_VERSION_NUMBER < 0x10001000L
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001077 dps = X509_get_ext_d2i(certificate, NID_crl_distribution_points, NULL, NULL);
Christian Heimes949ec142013-11-21 16:26:51 +01001078#else
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001079 /* Calls x509v3_cache_extensions and sets up crldp */
1080 X509_check_ca(certificate);
1081 dps = certificate->crldp;
Christian Heimes949ec142013-11-21 16:26:51 +01001082#endif
1083
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001084 if (dps == NULL)
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001085 return Py_None;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001086
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001087 lst = PyList_New(0);
1088 if (lst == NULL)
1089 goto done;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001090
1091 for (i=0; i < sk_DIST_POINT_num(dps); i++) {
1092 DIST_POINT *dp;
1093 STACK_OF(GENERAL_NAME) *gns;
1094
1095 dp = sk_DIST_POINT_value(dps, i);
1096 gns = dp->distpoint->name.fullname;
1097
1098 for (j=0; j < sk_GENERAL_NAME_num(gns); j++) {
1099 GENERAL_NAME *gn;
1100 ASN1_IA5STRING *uri;
1101 PyObject *ouri;
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001102 int err;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001103
1104 gn = sk_GENERAL_NAME_value(gns, j);
1105 if (gn->type != GEN_URI) {
1106 continue;
1107 }
1108 uri = gn->d.uniformResourceIdentifier;
1109 ouri = PyUnicode_FromStringAndSize((char *)uri->data,
1110 uri->length);
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001111 if (ouri == NULL)
1112 goto done;
1113
1114 err = PyList_Append(lst, ouri);
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001115 Py_DECREF(ouri);
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001116 if (err < 0)
1117 goto done;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001118 }
1119 }
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001120
1121 /* Convert to tuple. */
1122 res = (PyList_GET_SIZE(lst) > 0) ? PyList_AsTuple(lst) : Py_None;
1123
1124 done:
1125 Py_XDECREF(lst);
1126#if OPENSSL_VERSION_NUMBER < 0x10001000L
Benjamin Peterson806fb252015-11-14 00:09:22 -08001127 sk_DIST_POINT_free(dps);
Benjamin Petersoneda06c82015-11-11 22:07:38 -08001128#endif
1129 return res;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001130}
1131
1132static PyObject *
Antoine Pitroufb046912010-11-09 20:21:19 +00001133_decode_certificate(X509 *certificate) {
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001134
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001135 PyObject *retval = NULL;
1136 BIO *biobuf = NULL;
1137 PyObject *peer;
1138 PyObject *peer_alt_names = NULL;
1139 PyObject *issuer;
1140 PyObject *version;
1141 PyObject *sn_obj;
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001142 PyObject *obj;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001143 ASN1_INTEGER *serialNumber;
1144 char buf[2048];
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001145 int len, result;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001146 ASN1_TIME *notBefore, *notAfter;
1147 PyObject *pnotBefore, *pnotAfter;
Thomas Woutersed03b412007-08-28 21:37:11 +00001148
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001149 retval = PyDict_New();
1150 if (retval == NULL)
1151 return NULL;
Thomas Woutersed03b412007-08-28 21:37:11 +00001152
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001153 peer = _create_tuple_for_X509_NAME(
1154 X509_get_subject_name(certificate));
1155 if (peer == NULL)
1156 goto fail0;
1157 if (PyDict_SetItemString(retval, (const char *) "subject", peer) < 0) {
1158 Py_DECREF(peer);
1159 goto fail0;
1160 }
1161 Py_DECREF(peer);
Thomas Woutersed03b412007-08-28 21:37:11 +00001162
Antoine Pitroufb046912010-11-09 20:21:19 +00001163 issuer = _create_tuple_for_X509_NAME(
1164 X509_get_issuer_name(certificate));
1165 if (issuer == NULL)
1166 goto fail0;
1167 if (PyDict_SetItemString(retval, (const char *)"issuer", issuer) < 0) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001168 Py_DECREF(issuer);
Antoine Pitroufb046912010-11-09 20:21:19 +00001169 goto fail0;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001170 }
Antoine Pitroufb046912010-11-09 20:21:19 +00001171 Py_DECREF(issuer);
1172
1173 version = PyLong_FromLong(X509_get_version(certificate) + 1);
Christian Heimes5962bef2013-07-26 15:51:18 +02001174 if (version == NULL)
1175 goto fail0;
Antoine Pitroufb046912010-11-09 20:21:19 +00001176 if (PyDict_SetItemString(retval, "version", version) < 0) {
1177 Py_DECREF(version);
1178 goto fail0;
1179 }
1180 Py_DECREF(version);
Guido van Rossumf06628b2007-11-21 20:01:53 +00001181
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001182 /* get a memory buffer */
1183 biobuf = BIO_new(BIO_s_mem());
Guido van Rossumf06628b2007-11-21 20:01:53 +00001184
Antoine Pitroufb046912010-11-09 20:21:19 +00001185 (void) BIO_reset(biobuf);
1186 serialNumber = X509_get_serialNumber(certificate);
1187 /* should not exceed 20 octets, 160 bits, so buf is big enough */
1188 i2a_ASN1_INTEGER(biobuf, serialNumber);
1189 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1190 if (len < 0) {
1191 _setSSLError(NULL, 0, __FILE__, __LINE__);
1192 goto fail1;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001193 }
Antoine Pitroufb046912010-11-09 20:21:19 +00001194 sn_obj = PyUnicode_FromStringAndSize(buf, len);
1195 if (sn_obj == NULL)
1196 goto fail1;
1197 if (PyDict_SetItemString(retval, "serialNumber", sn_obj) < 0) {
1198 Py_DECREF(sn_obj);
1199 goto fail1;
1200 }
1201 Py_DECREF(sn_obj);
1202
1203 (void) BIO_reset(biobuf);
1204 notBefore = X509_get_notBefore(certificate);
1205 ASN1_TIME_print(biobuf, notBefore);
1206 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1207 if (len < 0) {
1208 _setSSLError(NULL, 0, __FILE__, __LINE__);
1209 goto fail1;
1210 }
1211 pnotBefore = PyUnicode_FromStringAndSize(buf, len);
1212 if (pnotBefore == NULL)
1213 goto fail1;
1214 if (PyDict_SetItemString(retval, "notBefore", pnotBefore) < 0) {
1215 Py_DECREF(pnotBefore);
1216 goto fail1;
1217 }
1218 Py_DECREF(pnotBefore);
Thomas Woutersed03b412007-08-28 21:37:11 +00001219
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001220 (void) BIO_reset(biobuf);
1221 notAfter = X509_get_notAfter(certificate);
1222 ASN1_TIME_print(biobuf, notAfter);
1223 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1224 if (len < 0) {
1225 _setSSLError(NULL, 0, __FILE__, __LINE__);
1226 goto fail1;
1227 }
1228 pnotAfter = PyUnicode_FromStringAndSize(buf, len);
1229 if (pnotAfter == NULL)
1230 goto fail1;
1231 if (PyDict_SetItemString(retval, "notAfter", pnotAfter) < 0) {
1232 Py_DECREF(pnotAfter);
1233 goto fail1;
1234 }
1235 Py_DECREF(pnotAfter);
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001236
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001237 /* Now look for subjectAltName */
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001238
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001239 peer_alt_names = _get_peer_alt_names(certificate);
1240 if (peer_alt_names == NULL)
1241 goto fail1;
1242 else if (peer_alt_names != Py_None) {
1243 if (PyDict_SetItemString(retval, "subjectAltName",
1244 peer_alt_names) < 0) {
1245 Py_DECREF(peer_alt_names);
1246 goto fail1;
1247 }
1248 Py_DECREF(peer_alt_names);
1249 }
Guido van Rossumf06628b2007-11-21 20:01:53 +00001250
Christian Heimesbd3a7f92013-11-21 03:40:15 +01001251 /* Authority Information Access: OCSP URIs */
1252 obj = _get_aia_uri(certificate, NID_ad_OCSP);
1253 if (obj == NULL) {
1254 goto fail1;
1255 } else if (obj != Py_None) {
1256 result = PyDict_SetItemString(retval, "OCSP", obj);
1257 Py_DECREF(obj);
1258 if (result < 0) {
1259 goto fail1;
1260 }
1261 }
1262
1263 obj = _get_aia_uri(certificate, NID_ad_ca_issuers);
1264 if (obj == NULL) {
1265 goto fail1;
1266 } else if (obj != Py_None) {
1267 result = PyDict_SetItemString(retval, "caIssuers", obj);
1268 Py_DECREF(obj);
1269 if (result < 0) {
1270 goto fail1;
1271 }
1272 }
1273
1274 /* CDP (CRL distribution points) */
1275 obj = _get_crl_dp(certificate);
1276 if (obj == NULL) {
1277 goto fail1;
1278 } else if (obj != Py_None) {
1279 result = PyDict_SetItemString(retval, "crlDistributionPoints", obj);
1280 Py_DECREF(obj);
1281 if (result < 0) {
1282 goto fail1;
1283 }
1284 }
1285
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001286 BIO_free(biobuf);
1287 return retval;
Thomas Woutersed03b412007-08-28 21:37:11 +00001288
1289 fail1:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001290 if (biobuf != NULL)
1291 BIO_free(biobuf);
Thomas Woutersed03b412007-08-28 21:37:11 +00001292 fail0:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001293 Py_XDECREF(retval);
1294 return NULL;
Thomas Woutersed03b412007-08-28 21:37:11 +00001295}
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001296
Christian Heimes9a5395a2013-06-17 15:44:12 +02001297static PyObject *
1298_certificate_to_der(X509 *certificate)
1299{
1300 unsigned char *bytes_buf = NULL;
1301 int len;
1302 PyObject *retval;
1303
1304 bytes_buf = NULL;
1305 len = i2d_X509(certificate, &bytes_buf);
1306 if (len < 0) {
1307 _setSSLError(NULL, 0, __FILE__, __LINE__);
1308 return NULL;
1309 }
1310 /* this is actually an immutable bytes sequence */
1311 retval = PyBytes_FromStringAndSize((const char *) bytes_buf, len);
1312 OPENSSL_free(bytes_buf);
1313 return retval;
1314}
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001315
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001316/*[clinic input]
1317_ssl._test_decode_cert
1318 path: object(converter="PyUnicode_FSConverter")
1319 /
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001320
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001321[clinic start generated code]*/
1322
1323static PyObject *
1324_ssl__test_decode_cert_impl(PyModuleDef *module, PyObject *path)
1325/*[clinic end generated code: output=679e01db282804e9 input=cdeaaf02d4346628]*/
1326{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001327 PyObject *retval = NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001328 X509 *x=NULL;
1329 BIO *cert;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001330
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001331 if ((cert=BIO_new(BIO_s_file())) == NULL) {
1332 PyErr_SetString(PySSLErrorObject,
1333 "Can't malloc memory to read file");
1334 goto fail0;
1335 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001336
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001337 if (BIO_read_filename(cert, PyBytes_AsString(path)) <= 0) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001338 PyErr_SetString(PySSLErrorObject,
1339 "Can't open file");
1340 goto fail0;
1341 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001342
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001343 x = PEM_read_bio_X509_AUX(cert,NULL, NULL, NULL);
1344 if (x == NULL) {
1345 PyErr_SetString(PySSLErrorObject,
1346 "Error decoding PEM-encoded file");
1347 goto fail0;
1348 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001349
Antoine Pitroufb046912010-11-09 20:21:19 +00001350 retval = _decode_certificate(x);
Mark Dickinsonee55df52010-08-03 18:31:54 +00001351 X509_free(x);
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001352
1353 fail0:
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001354 Py_DECREF(path);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001355 if (cert != NULL) BIO_free(cert);
1356 return retval;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001357}
1358
1359
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001360/*[clinic input]
1361_ssl._SSLSocket.peer_certificate
1362 der as binary_mode: bool = False
1363 /
1364
1365Returns the certificate for the peer.
1366
1367If no certificate was provided, returns None. If a certificate was
1368provided, but not validated, returns an empty dictionary. Otherwise
1369returns a dict containing information about the peer certificate.
1370
1371If the optional argument is True, returns a DER-encoded copy of the
1372peer certificate, or None if no certificate was provided. This will
1373return the certificate even if it wasn't validated.
1374[clinic start generated code]*/
1375
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001376static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001377_ssl__SSLSocket_peer_certificate_impl(PySSLSocket *self, int binary_mode)
1378/*[clinic end generated code: output=f0dc3e4d1d818a1d input=8281bd1d193db843]*/
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001379{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001380 int verification;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001381
Antoine Pitrou20b85552013-09-29 19:50:53 +02001382 if (!self->handshake_done) {
1383 PyErr_SetString(PyExc_ValueError,
1384 "handshake not done yet");
1385 return NULL;
1386 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001387 if (!self->peer_cert)
1388 Py_RETURN_NONE;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001389
Antoine Pitrou721738f2012-08-15 23:20:39 +02001390 if (binary_mode) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001391 /* return cert in DER-encoded format */
Christian Heimes9a5395a2013-06-17 15:44:12 +02001392 return _certificate_to_der(self->peer_cert);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001393 } else {
Antoine Pitrou152efa22010-05-16 18:19:27 +00001394 verification = SSL_CTX_get_verify_mode(SSL_get_SSL_CTX(self->ssl));
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001395 if ((verification & SSL_VERIFY_PEER) == 0)
1396 return PyDict_New();
1397 else
Antoine Pitroufb046912010-11-09 20:21:19 +00001398 return _decode_certificate(self->peer_cert);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001399 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001400}
1401
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001402static PyObject *
1403cipher_to_tuple(const SSL_CIPHER *cipher)
1404{
1405 const char *cipher_name, *cipher_protocol;
1406 PyObject *v, *retval = PyTuple_New(3);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001407 if (retval == NULL)
1408 return NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001409
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001410 cipher_name = SSL_CIPHER_get_name(cipher);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001411 if (cipher_name == NULL) {
Hirokazu Yamamoto524f1032010-12-09 10:49:00 +00001412 Py_INCREF(Py_None);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001413 PyTuple_SET_ITEM(retval, 0, Py_None);
1414 } else {
1415 v = PyUnicode_FromString(cipher_name);
1416 if (v == NULL)
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001417 goto fail;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001418 PyTuple_SET_ITEM(retval, 0, v);
1419 }
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001420
1421 cipher_protocol = SSL_CIPHER_get_version(cipher);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001422 if (cipher_protocol == NULL) {
Hirokazu Yamamoto524f1032010-12-09 10:49:00 +00001423 Py_INCREF(Py_None);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001424 PyTuple_SET_ITEM(retval, 1, Py_None);
1425 } else {
1426 v = PyUnicode_FromString(cipher_protocol);
1427 if (v == NULL)
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001428 goto fail;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001429 PyTuple_SET_ITEM(retval, 1, v);
1430 }
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001431
1432 v = PyLong_FromLong(SSL_CIPHER_get_bits(cipher, NULL));
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001433 if (v == NULL)
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001434 goto fail;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001435 PyTuple_SET_ITEM(retval, 2, v);
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001436
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001437 return retval;
Guido van Rossumf06628b2007-11-21 20:01:53 +00001438
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001439 fail:
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001440 Py_DECREF(retval);
1441 return NULL;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001442}
1443
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001444/*[clinic input]
1445_ssl._SSLSocket.shared_ciphers
1446[clinic start generated code]*/
1447
1448static PyObject *
1449_ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self)
1450/*[clinic end generated code: output=3d174ead2e42c4fd input=0bfe149da8fe6306]*/
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001451{
Benjamin Petersonbaf7c1e2015-01-07 11:32:00 -06001452 SSL_SESSION *sess = SSL_get_session(self->ssl);
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001453 STACK_OF(SSL_CIPHER) *ciphers;
1454 int i;
1455 PyObject *res;
1456
Benjamin Petersonbaf7c1e2015-01-07 11:32:00 -06001457 if (!sess || !sess->ciphers)
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001458 Py_RETURN_NONE;
Benjamin Petersonbaf7c1e2015-01-07 11:32:00 -06001459 ciphers = sess->ciphers;
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001460 res = PyList_New(sk_SSL_CIPHER_num(ciphers));
1461 if (!res)
1462 return NULL;
1463 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1464 PyObject *tup = cipher_to_tuple(sk_SSL_CIPHER_value(ciphers, i));
1465 if (!tup) {
1466 Py_DECREF(res);
1467 return NULL;
1468 }
1469 PyList_SET_ITEM(res, i, tup);
1470 }
1471 return res;
1472}
1473
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001474/*[clinic input]
1475_ssl._SSLSocket.cipher
1476[clinic start generated code]*/
1477
1478static PyObject *
1479_ssl__SSLSocket_cipher_impl(PySSLSocket *self)
1480/*[clinic end generated code: output=376417c16d0e5815 input=548fb0e27243796d]*/
Benjamin Peterson4cb17812015-01-07 11:14:26 -06001481{
1482 const SSL_CIPHER *current;
1483
1484 if (self->ssl == NULL)
1485 Py_RETURN_NONE;
1486 current = SSL_get_current_cipher(self->ssl);
1487 if (current == NULL)
1488 Py_RETURN_NONE;
1489 return cipher_to_tuple(current);
1490}
1491
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001492/*[clinic input]
1493_ssl._SSLSocket.version
1494[clinic start generated code]*/
1495
1496static PyObject *
1497_ssl__SSLSocket_version_impl(PySSLSocket *self)
1498/*[clinic end generated code: output=178aed33193b2cdb input=900186a503436fd6]*/
Antoine Pitrou47e40422014-09-04 21:00:10 +02001499{
1500 const char *version;
1501
1502 if (self->ssl == NULL)
1503 Py_RETURN_NONE;
1504 version = SSL_get_version(self->ssl);
1505 if (!strcmp(version, "unknown"))
1506 Py_RETURN_NONE;
1507 return PyUnicode_FromString(version);
1508}
1509
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001510#ifdef OPENSSL_NPN_NEGOTIATED
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001511/*[clinic input]
1512_ssl._SSLSocket.selected_npn_protocol
1513[clinic start generated code]*/
1514
1515static PyObject *
1516_ssl__SSLSocket_selected_npn_protocol_impl(PySSLSocket *self)
1517/*[clinic end generated code: output=b91d494cd207ecf6 input=c28fde139204b826]*/
1518{
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001519 const unsigned char *out;
1520 unsigned int outlen;
1521
Victor Stinner4569cd52013-06-23 14:58:43 +02001522 SSL_get0_next_proto_negotiated(self->ssl,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001523 &out, &outlen);
1524
1525 if (out == NULL)
1526 Py_RETURN_NONE;
Benjamin Petersoncca27322015-01-23 16:35:37 -05001527 return PyUnicode_FromStringAndSize((char *)out, outlen);
1528}
1529#endif
1530
1531#ifdef HAVE_ALPN
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001532/*[clinic input]
1533_ssl._SSLSocket.selected_alpn_protocol
1534[clinic start generated code]*/
1535
1536static PyObject *
1537_ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self)
1538/*[clinic end generated code: output=ec33688b303d250f input=442de30e35bc2913]*/
1539{
Benjamin Petersoncca27322015-01-23 16:35:37 -05001540 const unsigned char *out;
1541 unsigned int outlen;
1542
1543 SSL_get0_alpn_selected(self->ssl, &out, &outlen);
1544
1545 if (out == NULL)
1546 Py_RETURN_NONE;
1547 return PyUnicode_FromStringAndSize((char *)out, outlen);
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01001548}
1549#endif
1550
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001551/*[clinic input]
1552_ssl._SSLSocket.compression
1553[clinic start generated code]*/
1554
1555static PyObject *
1556_ssl__SSLSocket_compression_impl(PySSLSocket *self)
1557/*[clinic end generated code: output=bd16cb1bb4646ae7 input=5d059d0a2bbc32c8]*/
1558{
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +01001559#ifdef OPENSSL_NO_COMP
1560 Py_RETURN_NONE;
1561#else
1562 const COMP_METHOD *comp_method;
1563 const char *short_name;
1564
1565 if (self->ssl == NULL)
1566 Py_RETURN_NONE;
1567 comp_method = SSL_get_current_compression(self->ssl);
1568 if (comp_method == NULL || comp_method->type == NID_undef)
1569 Py_RETURN_NONE;
1570 short_name = OBJ_nid2sn(comp_method->type);
1571 if (short_name == NULL)
1572 Py_RETURN_NONE;
1573 return PyUnicode_DecodeFSDefault(short_name);
1574#endif
1575}
1576
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001577static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) {
1578 Py_INCREF(self->ctx);
1579 return self->ctx;
1580}
1581
1582static int PySSL_set_context(PySSLSocket *self, PyObject *value,
1583 void *closure) {
1584
1585 if (PyObject_TypeCheck(value, &PySSLContext_Type)) {
Antoine Pitrou912fbff2013-03-30 16:29:32 +01001586#if !HAVE_SNI
1587 PyErr_SetString(PyExc_NotImplementedError, "setting a socket's "
1588 "context is not supported by your OpenSSL library");
Antoine Pitrou41f8c4f2013-03-30 16:36:54 +01001589 return -1;
Antoine Pitrou912fbff2013-03-30 16:29:32 +01001590#else
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001591 Py_INCREF(value);
Serhiy Storchaka5a57ade2015-12-24 10:35:59 +02001592 Py_SETREF(self->ctx, (PySSLContext *)value);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001593 SSL_set_SSL_CTX(self->ssl, self->ctx->ctx);
Antoine Pitrou912fbff2013-03-30 16:29:32 +01001594#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001595 } else {
1596 PyErr_SetString(PyExc_TypeError, "The value must be a SSLContext");
1597 return -1;
1598 }
1599
1600 return 0;
1601}
1602
1603PyDoc_STRVAR(PySSL_set_context_doc,
1604"_setter_context(ctx)\n\
1605\
1606This changes the context associated with the SSLSocket. This is typically\n\
1607used from within a callback function set by the set_servername_callback\n\
1608on the SSLContext to change the certificate information associated with the\n\
1609SSLSocket before the cryptographic exchange handshake messages\n");
1610
1611
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001612static PyObject *
1613PySSL_get_server_side(PySSLSocket *self, void *c)
1614{
1615 return PyBool_FromLong(self->socket_type == PY_SSL_SERVER);
1616}
1617
1618PyDoc_STRVAR(PySSL_get_server_side_doc,
1619"Whether this is a server-side socket.");
1620
1621static PyObject *
1622PySSL_get_server_hostname(PySSLSocket *self, void *c)
1623{
1624 if (self->server_hostname == NULL)
1625 Py_RETURN_NONE;
1626 Py_INCREF(self->server_hostname);
1627 return self->server_hostname;
1628}
1629
1630PyDoc_STRVAR(PySSL_get_server_hostname_doc,
1631"The currently set server hostname (for SNI).");
1632
1633static PyObject *
1634PySSL_get_owner(PySSLSocket *self, void *c)
1635{
1636 PyObject *owner;
1637
1638 if (self->owner == NULL)
1639 Py_RETURN_NONE;
1640
1641 owner = PyWeakref_GetObject(self->owner);
1642 Py_INCREF(owner);
1643 return owner;
1644}
1645
1646static int
1647PySSL_set_owner(PySSLSocket *self, PyObject *value, void *c)
1648{
Serhiy Storchaka5a57ade2015-12-24 10:35:59 +02001649 Py_SETREF(self->owner, PyWeakref_NewRef(value, NULL));
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001650 if (self->owner == NULL)
1651 return -1;
1652 return 0;
1653}
1654
1655PyDoc_STRVAR(PySSL_get_owner_doc,
1656"The Python-level owner of this object.\
1657Passed as \"self\" in servername callback.");
1658
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001659
Antoine Pitrou152efa22010-05-16 18:19:27 +00001660static void PySSL_dealloc(PySSLSocket *self)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001661{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001662 if (self->peer_cert) /* Possible not to have one? */
1663 X509_free (self->peer_cert);
1664 if (self->ssl)
1665 SSL_free(self->ssl);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001666 Py_XDECREF(self->Socket);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01001667 Py_XDECREF(self->ctx);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001668 Py_XDECREF(self->server_hostname);
1669 Py_XDECREF(self->owner);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001670 PyObject_Del(self);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001671}
1672
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001673/* If the socket has a timeout, do a select()/poll() on the socket.
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001674 The argument writing indicates the direction.
Andrew M. Kuchling9c3efe32004-07-10 21:15:17 +00001675 Returns one of the possibilities in the timeout_state enum (above).
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001676 */
Andrew M. Kuchling9c3efe32004-07-10 21:15:17 +00001677
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001678static int
Victor Stinner14690702015-04-06 22:46:13 +02001679PySSL_select(PySocketSockObject *s, int writing, _PyTime_t timeout)
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001680{
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001681 int rc;
1682#ifdef HAVE_POLL
1683 struct pollfd pollfd;
1684 _PyTime_t ms;
1685#else
1686 int nfds;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001687 fd_set fds;
1688 struct timeval tv;
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001689#endif
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001690
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001691 /* Nothing to do unless we're in timeout mode (not non-blocking) */
Victor Stinner14690702015-04-06 22:46:13 +02001692 if ((s == NULL) || (timeout == 0))
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001693 return SOCKET_IS_NONBLOCKING;
Victor Stinner14690702015-04-06 22:46:13 +02001694 else if (timeout < 0) {
1695 if (s->sock_timeout > 0)
1696 return SOCKET_HAS_TIMED_OUT;
1697 else
1698 return SOCKET_IS_BLOCKING;
1699 }
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001700
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001701 /* Guard against closed socket */
1702 if (s->sock_fd < 0)
1703 return SOCKET_HAS_BEEN_CLOSED;
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001704
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001705 /* Prefer poll, if available, since you can poll() any fd
1706 * which can't be done with select(). */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001707#ifdef HAVE_POLL
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001708 pollfd.fd = s->sock_fd;
1709 pollfd.events = writing ? POLLOUT : POLLIN;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001710
Victor Stinner14690702015-04-06 22:46:13 +02001711 /* timeout is in seconds, poll() uses milliseconds */
1712 ms = (int)_PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING);
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001713 assert(ms <= INT_MAX);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001714
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001715 PySSL_BEGIN_ALLOW_THREADS
1716 rc = poll(&pollfd, 1, (int)ms);
1717 PySSL_END_ALLOW_THREADS
1718#else
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001719 /* Guard against socket too large for select*/
Charles-François Nataliaa26b272011-08-28 17:51:43 +02001720 if (!_PyIsSelectable_fd(s->sock_fd))
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001721 return SOCKET_TOO_LARGE_FOR_SELECT;
Neal Norwitz082b2df2006-02-07 07:04:46 +00001722
Victor Stinner14690702015-04-06 22:46:13 +02001723 _PyTime_AsTimeval_noraise(timeout, &tv, _PyTime_ROUND_CEILING);
Victor Stinnere2452312015-03-28 03:00:46 +01001724
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001725 FD_ZERO(&fds);
1726 FD_SET(s->sock_fd, &fds);
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001727
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001728 /* Wait until the socket becomes ready */
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001729 PySSL_BEGIN_ALLOW_THREADS
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001730 nfds = Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001731 if (writing)
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001732 rc = select(nfds, NULL, &fds, NULL, &tv);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001733 else
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001734 rc = select(nfds, &fds, NULL, NULL, &tv);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001735 PySSL_END_ALLOW_THREADS
Bill Janssen6e027db2007-11-15 22:23:56 +00001736#endif
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001737
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001738 /* Return SOCKET_TIMED_OUT on timeout, SOCKET_OPERATION_OK otherwise
1739 (when we are able to write or when there's something to read) */
1740 return rc == 0 ? SOCKET_HAS_TIMED_OUT : SOCKET_OPERATION_OK;
Guido van Rossum99d4abf2003-01-27 22:22:50 +00001741}
1742
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001743/*[clinic input]
1744_ssl._SSLSocket.write
1745 b: Py_buffer
1746 /
1747
1748Writes the bytes-like object b into the SSL object.
1749
1750Returns the number of bytes written.
1751[clinic start generated code]*/
1752
1753static PyObject *
1754_ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b)
1755/*[clinic end generated code: output=aa7a6be5527358d8 input=77262d994fe5100a]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001756{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001757 int len;
1758 int sockstate;
1759 int err;
1760 int nonblocking;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001761 PySocketSockObject *sock = GET_SOCKET(self);
Victor Stinner14690702015-04-06 22:46:13 +02001762 _PyTime_t timeout, deadline = 0;
1763 int has_timeout;
Bill Janssen54cc54c2007-12-14 22:08:56 +00001764
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001765 if (sock != NULL) {
1766 if (((PyObject*)sock) == Py_None) {
1767 _setSSLError("Underlying socket connection gone",
1768 PY_SSL_ERROR_NO_SOCKET, __FILE__, __LINE__);
1769 return NULL;
1770 }
1771 Py_INCREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001772 }
1773
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001774 if (b->len > INT_MAX) {
Victor Stinner6efa9652013-06-25 00:42:31 +02001775 PyErr_Format(PyExc_OverflowError,
1776 "string longer than %d bytes", INT_MAX);
1777 goto error;
1778 }
1779
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001780 if (sock != NULL) {
1781 /* just in case the blocking state of the socket has been changed */
Victor Stinnere2452312015-03-28 03:00:46 +01001782 nonblocking = (sock->sock_timeout >= 0);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001783 BIO_set_nbio(SSL_get_rbio(self->ssl), nonblocking);
1784 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking);
1785 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001786
Victor Stinner14690702015-04-06 22:46:13 +02001787 timeout = GET_SOCKET_TIMEOUT(sock);
1788 has_timeout = (timeout > 0);
1789 if (has_timeout)
1790 deadline = _PyTime_GetMonotonicClock() + timeout;
1791
1792 sockstate = PySSL_select(sock, 1, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001793 if (sockstate == SOCKET_HAS_TIMED_OUT) {
Antoine Pitrouc4df7842010-12-03 19:59:41 +00001794 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001795 "The write operation timed out");
1796 goto error;
1797 } else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
1798 PyErr_SetString(PySSLErrorObject,
1799 "Underlying socket has been closed.");
1800 goto error;
1801 } else if (sockstate == SOCKET_TOO_LARGE_FOR_SELECT) {
1802 PyErr_SetString(PySSLErrorObject,
1803 "Underlying socket too large for select().");
1804 goto error;
1805 }
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001806
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001807 do {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001808 PySSL_BEGIN_ALLOW_THREADS
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001809 len = SSL_write(self->ssl, b->buf, (int)b->len);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001810 err = SSL_get_error(self->ssl, len);
1811 PySSL_END_ALLOW_THREADS
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001812
1813 if (PyErr_CheckSignals())
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001814 goto error;
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001815
Victor Stinner14690702015-04-06 22:46:13 +02001816 if (has_timeout)
1817 timeout = deadline - _PyTime_GetMonotonicClock();
1818
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001819 if (err == SSL_ERROR_WANT_READ) {
Victor Stinner14690702015-04-06 22:46:13 +02001820 sockstate = PySSL_select(sock, 0, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001821 } else if (err == SSL_ERROR_WANT_WRITE) {
Victor Stinner14690702015-04-06 22:46:13 +02001822 sockstate = PySSL_select(sock, 1, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001823 } else {
1824 sockstate = SOCKET_OPERATION_OK;
1825 }
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001826
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001827 if (sockstate == SOCKET_HAS_TIMED_OUT) {
Antoine Pitrouc4df7842010-12-03 19:59:41 +00001828 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001829 "The write operation timed out");
1830 goto error;
1831 } else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
1832 PyErr_SetString(PySSLErrorObject,
1833 "Underlying socket has been closed.");
1834 goto error;
1835 } else if (sockstate == SOCKET_IS_NONBLOCKING) {
1836 break;
1837 }
1838 } while (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001839
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001840 Py_XDECREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001841 if (len > 0)
1842 return PyLong_FromLong(len);
1843 else
1844 return PySSL_SetError(self, len, __FILE__, __LINE__);
Antoine Pitrou7d7aede2009-11-25 18:55:32 +00001845
1846error:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001847 Py_XDECREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001848 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001849}
1850
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001851/*[clinic input]
1852_ssl._SSLSocket.pending
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001853
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001854Returns the number of already decrypted bytes available for read, pending on the connection.
1855[clinic start generated code]*/
1856
1857static PyObject *
1858_ssl__SSLSocket_pending_impl(PySSLSocket *self)
1859/*[clinic end generated code: output=983d9fecdc308a83 input=2b77487d6dfd597f]*/
Bill Janssen6e027db2007-11-15 22:23:56 +00001860{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001861 int count = 0;
Bill Janssen6e027db2007-11-15 22:23:56 +00001862
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001863 PySSL_BEGIN_ALLOW_THREADS
1864 count = SSL_pending(self->ssl);
1865 PySSL_END_ALLOW_THREADS
1866 if (count < 0)
1867 return PySSL_SetError(self, count, __FILE__, __LINE__);
1868 else
1869 return PyLong_FromLong(count);
Bill Janssen6e027db2007-11-15 22:23:56 +00001870}
1871
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001872/*[clinic input]
1873_ssl._SSLSocket.read
1874 size as len: int
1875 [
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001876 buffer: Py_buffer(accept={rwbuffer})
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001877 ]
1878 /
Bill Janssen6e027db2007-11-15 22:23:56 +00001879
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001880Read up to size bytes from the SSL socket.
1881[clinic start generated code]*/
1882
1883static PyObject *
1884_ssl__SSLSocket_read_impl(PySSLSocket *self, int len, int group_right_1,
1885 Py_buffer *buffer)
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001886/*[clinic end generated code: output=00097776cec2a0af input=ff157eb918d0905b]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001887{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001888 PyObject *dest = NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001889 char *mem;
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001890 int count;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001891 int sockstate;
1892 int err;
1893 int nonblocking;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001894 PySocketSockObject *sock = GET_SOCKET(self);
Victor Stinner14690702015-04-06 22:46:13 +02001895 _PyTime_t timeout, deadline = 0;
1896 int has_timeout;
Bill Janssen54cc54c2007-12-14 22:08:56 +00001897
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001898 if (sock != NULL) {
1899 if (((PyObject*)sock) == Py_None) {
1900 _setSSLError("Underlying socket connection gone",
1901 PY_SSL_ERROR_NO_SOCKET, __FILE__, __LINE__);
1902 return NULL;
1903 }
1904 Py_INCREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001905 }
1906
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001907 if (!group_right_1) {
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001908 dest = PyBytes_FromStringAndSize(NULL, len);
1909 if (dest == NULL)
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00001910 goto error;
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001911 mem = PyBytes_AS_STRING(dest);
1912 }
1913 else {
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001914 mem = buffer->buf;
1915 if (len <= 0 || len > buffer->len) {
1916 len = (int) buffer->len;
1917 if (buffer->len != len) {
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001918 PyErr_SetString(PyExc_OverflowError,
1919 "maximum length can't fit in a C 'int'");
1920 goto error;
1921 }
1922 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001923 }
1924
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001925 if (sock != NULL) {
1926 /* just in case the blocking state of the socket has been changed */
Victor Stinnere2452312015-03-28 03:00:46 +01001927 nonblocking = (sock->sock_timeout >= 0);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001928 BIO_set_nbio(SSL_get_rbio(self->ssl), nonblocking);
1929 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking);
1930 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001931
Victor Stinner14690702015-04-06 22:46:13 +02001932 timeout = GET_SOCKET_TIMEOUT(sock);
1933 has_timeout = (timeout > 0);
1934 if (has_timeout)
1935 deadline = _PyTime_GetMonotonicClock() + timeout;
1936
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001937 do {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001938 PySSL_BEGIN_ALLOW_THREADS
1939 count = SSL_read(self->ssl, mem, len);
1940 err = SSL_get_error(self->ssl, count);
1941 PySSL_END_ALLOW_THREADS
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001942
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001943 if (PyErr_CheckSignals())
1944 goto error;
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001945
Victor Stinner14690702015-04-06 22:46:13 +02001946 if (has_timeout)
1947 timeout = deadline - _PyTime_GetMonotonicClock();
1948
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001949 if (err == SSL_ERROR_WANT_READ) {
Victor Stinner14690702015-04-06 22:46:13 +02001950 sockstate = PySSL_select(sock, 0, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001951 } else if (err == SSL_ERROR_WANT_WRITE) {
Victor Stinner14690702015-04-06 22:46:13 +02001952 sockstate = PySSL_select(sock, 1, timeout);
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001953 } else if (err == SSL_ERROR_ZERO_RETURN &&
1954 SSL_get_shutdown(self->ssl) == SSL_RECEIVED_SHUTDOWN)
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001955 {
1956 count = 0;
1957 goto done;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001958 }
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001959 else
1960 sockstate = SOCKET_OPERATION_OK;
1961
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001962 if (sockstate == SOCKET_HAS_TIMED_OUT) {
Antoine Pitrouc4df7842010-12-03 19:59:41 +00001963 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001964 "The read operation timed out");
1965 goto error;
1966 } else if (sockstate == SOCKET_IS_NONBLOCKING) {
1967 break;
1968 }
1969 } while (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE);
Victor Stinner4e3cfa42015-04-02 21:28:28 +02001970
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001971 if (count <= 0) {
1972 PySSL_SetError(self, count, __FILE__, __LINE__);
1973 goto error;
1974 }
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001975
1976done:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001977 Py_XDECREF(sock);
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001978 if (!group_right_1) {
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001979 _PyBytes_Resize(&dest, count);
1980 return dest;
1981 }
1982 else {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001983 return PyLong_FromLong(count);
1984 }
Antoine Pitrou24e561a2010-09-03 18:38:17 +00001985
1986error:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02001987 Py_XDECREF(sock);
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001988 if (!group_right_1)
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00001989 Py_XDECREF(dest);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00001990 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001991}
1992
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001993/*[clinic input]
1994_ssl._SSLSocket.shutdown
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00001995
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03001996Does the SSL shutdown handshake with the remote end.
1997
1998Returns the underlying socket object.
1999[clinic start generated code]*/
2000
2001static PyObject *
2002_ssl__SSLSocket_shutdown_impl(PySSLSocket *self)
2003/*[clinic end generated code: output=ca1aa7ed9d25ca42 input=ede2cc1a2ddf0ee4]*/
Bill Janssen40a0f662008-08-12 16:56:25 +00002004{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002005 int err, ssl_err, sockstate, nonblocking;
2006 int zeros = 0;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002007 PySocketSockObject *sock = GET_SOCKET(self);
Victor Stinner14690702015-04-06 22:46:13 +02002008 _PyTime_t timeout, deadline = 0;
2009 int has_timeout;
Bill Janssen40a0f662008-08-12 16:56:25 +00002010
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002011 if (sock != NULL) {
2012 /* Guard against closed socket */
2013 if ((((PyObject*)sock) == Py_None) || (sock->sock_fd < 0)) {
2014 _setSSLError("Underlying socket connection gone",
2015 PY_SSL_ERROR_NO_SOCKET, __FILE__, __LINE__);
2016 return NULL;
2017 }
2018 Py_INCREF(sock);
2019
2020 /* Just in case the blocking state of the socket has been changed */
Victor Stinnere2452312015-03-28 03:00:46 +01002021 nonblocking = (sock->sock_timeout >= 0);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002022 BIO_set_nbio(SSL_get_rbio(self->ssl), nonblocking);
2023 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002024 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002025
Victor Stinner14690702015-04-06 22:46:13 +02002026 timeout = GET_SOCKET_TIMEOUT(sock);
2027 has_timeout = (timeout > 0);
2028 if (has_timeout)
2029 deadline = _PyTime_GetMonotonicClock() + timeout;
2030
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002031 while (1) {
2032 PySSL_BEGIN_ALLOW_THREADS
2033 /* Disable read-ahead so that unwrap can work correctly.
2034 * Otherwise OpenSSL might read in too much data,
2035 * eating clear text data that happens to be
2036 * transmitted after the SSL shutdown.
Ezio Melotti85a86292013-08-17 16:57:41 +03002037 * Should be safe to call repeatedly every time this
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002038 * function is used and the shutdown_seen_zero != 0
2039 * condition is met.
2040 */
2041 if (self->shutdown_seen_zero)
2042 SSL_set_read_ahead(self->ssl, 0);
2043 err = SSL_shutdown(self->ssl);
2044 PySSL_END_ALLOW_THREADS
Victor Stinner4e3cfa42015-04-02 21:28:28 +02002045
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002046 /* If err == 1, a secure shutdown with SSL_shutdown() is complete */
2047 if (err > 0)
2048 break;
2049 if (err == 0) {
2050 /* Don't loop endlessly; instead preserve legacy
2051 behaviour of trying SSL_shutdown() only twice.
2052 This looks necessary for OpenSSL < 0.9.8m */
2053 if (++zeros > 1)
2054 break;
2055 /* Shutdown was sent, now try receiving */
2056 self->shutdown_seen_zero = 1;
2057 continue;
Bill Janssen40a0f662008-08-12 16:56:25 +00002058 }
2059
Victor Stinner14690702015-04-06 22:46:13 +02002060 if (has_timeout)
2061 timeout = deadline - _PyTime_GetMonotonicClock();
2062
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002063 /* Possibly retry shutdown until timeout or failure */
2064 ssl_err = SSL_get_error(self->ssl, err);
2065 if (ssl_err == SSL_ERROR_WANT_READ)
Victor Stinner14690702015-04-06 22:46:13 +02002066 sockstate = PySSL_select(sock, 0, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002067 else if (ssl_err == SSL_ERROR_WANT_WRITE)
Victor Stinner14690702015-04-06 22:46:13 +02002068 sockstate = PySSL_select(sock, 1, timeout);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002069 else
2070 break;
Victor Stinner4e3cfa42015-04-02 21:28:28 +02002071
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002072 if (sockstate == SOCKET_HAS_TIMED_OUT) {
2073 if (ssl_err == SSL_ERROR_WANT_READ)
Antoine Pitrouc4df7842010-12-03 19:59:41 +00002074 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002075 "The read operation timed out");
2076 else
Antoine Pitrouc4df7842010-12-03 19:59:41 +00002077 PyErr_SetString(PySocketModule.timeout_error,
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002078 "The write operation timed out");
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002079 goto error;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002080 }
2081 else if (sockstate == SOCKET_TOO_LARGE_FOR_SELECT) {
2082 PyErr_SetString(PySSLErrorObject,
2083 "Underlying socket too large for select().");
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002084 goto error;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002085 }
2086 else if (sockstate != SOCKET_OPERATION_OK)
2087 /* Retain the SSL error code */
2088 break;
2089 }
Antoine Pitrou2c4f98b2010-04-23 00:16:21 +00002090
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002091 if (err < 0) {
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002092 Py_XDECREF(sock);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002093 return PySSL_SetError(self, err, __FILE__, __LINE__);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002094 }
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002095 if (sock)
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002096 /* It's already INCREF'ed */
2097 return (PyObject *) sock;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002098 else
2099 Py_RETURN_NONE;
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002100
2101error:
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002102 Py_XDECREF(sock);
Antoine Pitrou8bae4ec2010-06-24 22:34:04 +00002103 return NULL;
Bill Janssen40a0f662008-08-12 16:56:25 +00002104}
2105
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002106/*[clinic input]
2107_ssl._SSLSocket.tls_unique_cb
2108
2109Returns the 'tls-unique' channel binding data, as defined by RFC 5929.
2110
2111If the TLS handshake is not yet complete, None is returned.
2112[clinic start generated code]*/
Bill Janssen40a0f662008-08-12 16:56:25 +00002113
Antoine Pitroud6494802011-07-21 01:11:30 +02002114static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002115_ssl__SSLSocket_tls_unique_cb_impl(PySSLSocket *self)
2116/*[clinic end generated code: output=f3a832d603f586af input=439525c7b3d8d34d]*/
Antoine Pitroud6494802011-07-21 01:11:30 +02002117{
2118 PyObject *retval = NULL;
2119 char buf[PySSL_CB_MAXLEN];
Victor Stinner9ee02032013-06-23 15:08:23 +02002120 size_t len;
Antoine Pitroud6494802011-07-21 01:11:30 +02002121
2122 if (SSL_session_reused(self->ssl) ^ !self->socket_type) {
2123 /* if session is resumed XOR we are the client */
2124 len = SSL_get_finished(self->ssl, buf, PySSL_CB_MAXLEN);
2125 }
2126 else {
2127 /* if a new session XOR we are the server */
2128 len = SSL_get_peer_finished(self->ssl, buf, PySSL_CB_MAXLEN);
2129 }
2130
2131 /* It cannot be negative in current OpenSSL version as of July 2011 */
Antoine Pitroud6494802011-07-21 01:11:30 +02002132 if (len == 0)
2133 Py_RETURN_NONE;
2134
2135 retval = PyBytes_FromStringAndSize(buf, len);
2136
2137 return retval;
2138}
2139
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002140static PyGetSetDef ssl_getsetlist[] = {
2141 {"context", (getter) PySSL_get_context,
2142 (setter) PySSL_set_context, PySSL_set_context_doc},
Antoine Pitroub1fdf472014-10-05 20:41:53 +02002143 {"server_side", (getter) PySSL_get_server_side, NULL,
2144 PySSL_get_server_side_doc},
2145 {"server_hostname", (getter) PySSL_get_server_hostname, NULL,
2146 PySSL_get_server_hostname_doc},
2147 {"owner", (getter) PySSL_get_owner, (setter) PySSL_set_owner,
2148 PySSL_get_owner_doc},
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002149 {NULL}, /* sentinel */
2150};
2151
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00002152static PyMethodDef PySSLMethods[] = {
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002153 _SSL__SSLSOCKET_DO_HANDSHAKE_METHODDEF
2154 _SSL__SSLSOCKET_WRITE_METHODDEF
2155 _SSL__SSLSOCKET_READ_METHODDEF
2156 _SSL__SSLSOCKET_PENDING_METHODDEF
2157 _SSL__SSLSOCKET_PEER_CERTIFICATE_METHODDEF
2158 _SSL__SSLSOCKET_CIPHER_METHODDEF
2159 _SSL__SSLSOCKET_SHARED_CIPHERS_METHODDEF
2160 _SSL__SSLSOCKET_VERSION_METHODDEF
2161 _SSL__SSLSOCKET_SELECTED_NPN_PROTOCOL_METHODDEF
2162 _SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF
2163 _SSL__SSLSOCKET_COMPRESSION_METHODDEF
2164 _SSL__SSLSOCKET_SHUTDOWN_METHODDEF
2165 _SSL__SSLSOCKET_TLS_UNIQUE_CB_METHODDEF
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002166 {NULL, NULL}
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00002167};
2168
Antoine Pitrou152efa22010-05-16 18:19:27 +00002169static PyTypeObject PySSLSocket_Type = {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002170 PyVarObject_HEAD_INIT(NULL, 0)
Antoine Pitrou152efa22010-05-16 18:19:27 +00002171 "_ssl._SSLSocket", /*tp_name*/
2172 sizeof(PySSLSocket), /*tp_basicsize*/
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00002173 0, /*tp_itemsize*/
2174 /* methods */
2175 (destructor)PySSL_dealloc, /*tp_dealloc*/
2176 0, /*tp_print*/
2177 0, /*tp_getattr*/
2178 0, /*tp_setattr*/
2179 0, /*tp_reserved*/
2180 0, /*tp_repr*/
2181 0, /*tp_as_number*/
2182 0, /*tp_as_sequence*/
2183 0, /*tp_as_mapping*/
2184 0, /*tp_hash*/
2185 0, /*tp_call*/
2186 0, /*tp_str*/
2187 0, /*tp_getattro*/
2188 0, /*tp_setattro*/
2189 0, /*tp_as_buffer*/
2190 Py_TPFLAGS_DEFAULT, /*tp_flags*/
2191 0, /*tp_doc*/
2192 0, /*tp_traverse*/
2193 0, /*tp_clear*/
2194 0, /*tp_richcompare*/
2195 0, /*tp_weaklistoffset*/
2196 0, /*tp_iter*/
2197 0, /*tp_iternext*/
2198 PySSLMethods, /*tp_methods*/
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002199 0, /*tp_members*/
2200 ssl_getsetlist, /*tp_getset*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00002201};
2202
Antoine Pitrou152efa22010-05-16 18:19:27 +00002203
2204/*
2205 * _SSLContext objects
2206 */
2207
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002208/*[clinic input]
2209@classmethod
2210_ssl._SSLContext.__new__
2211 protocol as proto_version: int
2212 /
2213[clinic start generated code]*/
2214
Antoine Pitrou152efa22010-05-16 18:19:27 +00002215static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002216_ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
2217/*[clinic end generated code: output=2cf0d7a0741b6bd1 input=8d58a805b95fc534]*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00002218{
Antoine Pitrou152efa22010-05-16 18:19:27 +00002219 PySSLContext *self;
Antoine Pitroucd3d7ca2014-01-09 20:02:20 +01002220 long options;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002221 SSL_CTX *ctx = NULL;
2222
Antoine Pitrou152efa22010-05-16 18:19:27 +00002223 PySSL_BEGIN_ALLOW_THREADS
2224 if (proto_version == PY_SSL_VERSION_TLS1)
2225 ctx = SSL_CTX_new(TLSv1_method());
Antoine Pitrou2463e5f2013-03-28 22:24:43 +01002226#if HAVE_TLSv1_2
2227 else if (proto_version == PY_SSL_VERSION_TLS1_1)
2228 ctx = SSL_CTX_new(TLSv1_1_method());
2229 else if (proto_version == PY_SSL_VERSION_TLS1_2)
2230 ctx = SSL_CTX_new(TLSv1_2_method());
2231#endif
Benjamin Petersone32467c2014-12-05 21:59:35 -05002232#ifndef OPENSSL_NO_SSL3
Antoine Pitrou152efa22010-05-16 18:19:27 +00002233 else if (proto_version == PY_SSL_VERSION_SSL3)
2234 ctx = SSL_CTX_new(SSLv3_method());
Benjamin Petersone32467c2014-12-05 21:59:35 -05002235#endif
Victor Stinner3de49192011-05-09 00:42:58 +02002236#ifndef OPENSSL_NO_SSL2
Antoine Pitrou152efa22010-05-16 18:19:27 +00002237 else if (proto_version == PY_SSL_VERSION_SSL2)
2238 ctx = SSL_CTX_new(SSLv2_method());
Victor Stinner3de49192011-05-09 00:42:58 +02002239#endif
Antoine Pitrou152efa22010-05-16 18:19:27 +00002240 else if (proto_version == PY_SSL_VERSION_SSL23)
2241 ctx = SSL_CTX_new(SSLv23_method());
2242 else
2243 proto_version = -1;
2244 PySSL_END_ALLOW_THREADS
2245
2246 if (proto_version == -1) {
2247 PyErr_SetString(PyExc_ValueError,
2248 "invalid protocol version");
2249 return NULL;
2250 }
2251 if (ctx == NULL) {
2252 PyErr_SetString(PySSLErrorObject,
2253 "failed to allocate SSL context");
2254 return NULL;
2255 }
2256
2257 assert(type != NULL && type->tp_alloc != NULL);
2258 self = (PySSLContext *) type->tp_alloc(type, 0);
2259 if (self == NULL) {
2260 SSL_CTX_free(ctx);
2261 return NULL;
2262 }
2263 self->ctx = ctx;
Christian Heimes5cb31c92012-09-20 12:42:54 +02002264#ifdef OPENSSL_NPN_NEGOTIATED
2265 self->npn_protocols = NULL;
2266#endif
Benjamin Petersoncca27322015-01-23 16:35:37 -05002267#ifdef HAVE_ALPN
2268 self->alpn_protocols = NULL;
2269#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002270#ifndef OPENSSL_NO_TLSEXT
Victor Stinner7e001512013-06-25 00:44:31 +02002271 self->set_hostname = NULL;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002272#endif
Christian Heimes1aa9a752013-12-02 02:41:19 +01002273 /* Don't check host name by default */
2274 self->check_hostname = 0;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002275 /* Defaults */
2276 SSL_CTX_set_verify(self->ctx, SSL_VERIFY_NONE, NULL);
Antoine Pitroucd3d7ca2014-01-09 20:02:20 +01002277 options = SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS;
2278 if (proto_version != PY_SSL_VERSION_SSL2)
2279 options |= SSL_OP_NO_SSLv2;
Benjamin Petersona9dcdab2015-11-11 22:38:41 -08002280 if (proto_version != PY_SSL_VERSION_SSL3)
2281 options |= SSL_OP_NO_SSLv3;
Antoine Pitroucd3d7ca2014-01-09 20:02:20 +01002282 SSL_CTX_set_options(self->ctx, options);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002283
Antoine Pitrou0bebbc32014-03-22 18:13:50 +01002284#ifndef OPENSSL_NO_ECDH
2285 /* Allow automatic ECDH curve selection (on OpenSSL 1.0.2+), or use
2286 prime256v1 by default. This is Apache mod_ssl's initialization
2287 policy, so we should be safe. */
2288#if defined(SSL_CTX_set_ecdh_auto)
2289 SSL_CTX_set_ecdh_auto(self->ctx, 1);
2290#else
2291 {
2292 EC_KEY *key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
2293 SSL_CTX_set_tmp_ecdh(self->ctx, key);
2294 EC_KEY_free(key);
2295 }
2296#endif
2297#endif
2298
Antoine Pitroufc113ee2010-10-13 12:46:13 +00002299#define SID_CTX "Python"
2300 SSL_CTX_set_session_id_context(self->ctx, (const unsigned char *) SID_CTX,
2301 sizeof(SID_CTX));
2302#undef SID_CTX
2303
Benjamin Petersonfdb19712015-03-04 22:11:12 -05002304#ifdef X509_V_FLAG_TRUSTED_FIRST
2305 {
2306 /* Improve trust chain building when cross-signed intermediate
2307 certificates are present. See https://bugs.python.org/issue23476. */
2308 X509_STORE *store = SSL_CTX_get_cert_store(self->ctx);
2309 X509_STORE_set_flags(store, X509_V_FLAG_TRUSTED_FIRST);
2310 }
2311#endif
2312
Antoine Pitrou152efa22010-05-16 18:19:27 +00002313 return (PyObject *)self;
2314}
2315
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002316static int
2317context_traverse(PySSLContext *self, visitproc visit, void *arg)
2318{
2319#ifndef OPENSSL_NO_TLSEXT
2320 Py_VISIT(self->set_hostname);
2321#endif
2322 return 0;
2323}
2324
2325static int
2326context_clear(PySSLContext *self)
2327{
2328#ifndef OPENSSL_NO_TLSEXT
2329 Py_CLEAR(self->set_hostname);
2330#endif
2331 return 0;
2332}
2333
Antoine Pitrou152efa22010-05-16 18:19:27 +00002334static void
2335context_dealloc(PySSLContext *self)
2336{
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01002337 context_clear(self);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002338 SSL_CTX_free(self->ctx);
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002339#ifdef OPENSSL_NPN_NEGOTIATED
Benjamin Petersoncca27322015-01-23 16:35:37 -05002340 PyMem_FREE(self->npn_protocols);
2341#endif
2342#ifdef HAVE_ALPN
2343 PyMem_FREE(self->alpn_protocols);
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002344#endif
Antoine Pitrou152efa22010-05-16 18:19:27 +00002345 Py_TYPE(self)->tp_free(self);
2346}
2347
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002348/*[clinic input]
2349_ssl._SSLContext.set_ciphers
2350 cipherlist: str
2351 /
2352[clinic start generated code]*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00002353
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002354static PyObject *
2355_ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist)
2356/*[clinic end generated code: output=3a3162f3557c0f3f input=a7ac931b9f3ca7fc]*/
2357{
2358 int ret = SSL_CTX_set_cipher_list(self->ctx, cipherlist);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002359 if (ret == 0) {
Antoine Pitrou65ec8ae2010-05-16 19:56:32 +00002360 /* Clearing the error queue is necessary on some OpenSSL versions,
2361 otherwise the error will be reported again when another SSL call
2362 is done. */
2363 ERR_clear_error();
Antoine Pitrou152efa22010-05-16 18:19:27 +00002364 PyErr_SetString(PySSLErrorObject,
2365 "No cipher can be selected.");
2366 return NULL;
2367 }
2368 Py_RETURN_NONE;
2369}
2370
Benjamin Petersonc54de472015-01-28 12:06:39 -05002371#ifdef OPENSSL_NPN_NEGOTIATED
Benjamin Petersoncca27322015-01-23 16:35:37 -05002372static int
Benjamin Peterson88615022015-01-23 17:30:26 -05002373do_protocol_selection(int alpn, unsigned char **out, unsigned char *outlen,
2374 const unsigned char *server_protocols, unsigned int server_protocols_len,
2375 const unsigned char *client_protocols, unsigned int client_protocols_len)
Benjamin Petersoncca27322015-01-23 16:35:37 -05002376{
Benjamin Peterson88615022015-01-23 17:30:26 -05002377 int ret;
2378 if (client_protocols == NULL) {
2379 client_protocols = (unsigned char *)"";
2380 client_protocols_len = 0;
2381 }
2382 if (server_protocols == NULL) {
2383 server_protocols = (unsigned char *)"";
2384 server_protocols_len = 0;
Benjamin Petersoncca27322015-01-23 16:35:37 -05002385 }
2386
Benjamin Peterson88615022015-01-23 17:30:26 -05002387 ret = SSL_select_next_proto(out, outlen,
2388 server_protocols, server_protocols_len,
2389 client_protocols, client_protocols_len);
2390 if (alpn && ret != OPENSSL_NPN_NEGOTIATED)
2391 return SSL_TLSEXT_ERR_NOACK;
Benjamin Petersoncca27322015-01-23 16:35:37 -05002392
2393 return SSL_TLSEXT_ERR_OK;
2394}
2395
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002396/* this callback gets passed to SSL_CTX_set_next_protos_advertise_cb */
2397static int
Victor Stinner4569cd52013-06-23 14:58:43 +02002398_advertiseNPN_cb(SSL *s,
2399 const unsigned char **data, unsigned int *len,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002400 void *args)
2401{
2402 PySSLContext *ssl_ctx = (PySSLContext *) args;
2403
2404 if (ssl_ctx->npn_protocols == NULL) {
Benjamin Petersoncca27322015-01-23 16:35:37 -05002405 *data = (unsigned char *)"";
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002406 *len = 0;
2407 } else {
Benjamin Petersoncca27322015-01-23 16:35:37 -05002408 *data = ssl_ctx->npn_protocols;
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002409 *len = ssl_ctx->npn_protocols_len;
2410 }
2411
2412 return SSL_TLSEXT_ERR_OK;
2413}
2414/* this callback gets passed to SSL_CTX_set_next_proto_select_cb */
2415static int
Victor Stinner4569cd52013-06-23 14:58:43 +02002416_selectNPN_cb(SSL *s,
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002417 unsigned char **out, unsigned char *outlen,
2418 const unsigned char *server, unsigned int server_len,
2419 void *args)
2420{
Benjamin Petersoncca27322015-01-23 16:35:37 -05002421 PySSLContext *ctx = (PySSLContext *)args;
Benjamin Peterson88615022015-01-23 17:30:26 -05002422 return do_protocol_selection(0, out, outlen, server, server_len,
Benjamin Petersoncca27322015-01-23 16:35:37 -05002423 ctx->npn_protocols, ctx->npn_protocols_len);
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002424}
2425#endif
2426
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002427/*[clinic input]
2428_ssl._SSLContext._set_npn_protocols
2429 protos: Py_buffer
2430 /
2431[clinic start generated code]*/
2432
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002433static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002434_ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
2435 Py_buffer *protos)
2436/*[clinic end generated code: output=72b002c3324390c6 input=319fcb66abf95bd7]*/
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002437{
2438#ifdef OPENSSL_NPN_NEGOTIATED
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002439 PyMem_Free(self->npn_protocols);
2440 self->npn_protocols = PyMem_Malloc(protos->len);
2441 if (self->npn_protocols == NULL)
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002442 return PyErr_NoMemory();
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002443 memcpy(self->npn_protocols, protos->buf, protos->len);
2444 self->npn_protocols_len = (int) protos->len;
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002445
2446 /* set both server and client callbacks, because the context can
2447 * be used to create both types of sockets */
2448 SSL_CTX_set_next_protos_advertised_cb(self->ctx,
2449 _advertiseNPN_cb,
2450 self);
2451 SSL_CTX_set_next_proto_select_cb(self->ctx,
2452 _selectNPN_cb,
2453 self);
2454
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01002455 Py_RETURN_NONE;
2456#else
2457 PyErr_SetString(PyExc_NotImplementedError,
2458 "The NPN extension requires OpenSSL 1.0.1 or later.");
2459 return NULL;
2460#endif
2461}
2462
Benjamin Petersoncca27322015-01-23 16:35:37 -05002463#ifdef HAVE_ALPN
2464static int
2465_selectALPN_cb(SSL *s,
2466 const unsigned char **out, unsigned char *outlen,
2467 const unsigned char *client_protocols, unsigned int client_protocols_len,
2468 void *args)
2469{
2470 PySSLContext *ctx = (PySSLContext *)args;
Benjamin Peterson88615022015-01-23 17:30:26 -05002471 return do_protocol_selection(1, (unsigned char **)out, outlen,
2472 ctx->alpn_protocols, ctx->alpn_protocols_len,
2473 client_protocols, client_protocols_len);
Benjamin Petersoncca27322015-01-23 16:35:37 -05002474}
2475#endif
2476
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002477/*[clinic input]
2478_ssl._SSLContext._set_alpn_protocols
2479 protos: Py_buffer
2480 /
2481[clinic start generated code]*/
2482
Benjamin Petersoncca27322015-01-23 16:35:37 -05002483static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002484_ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,
2485 Py_buffer *protos)
2486/*[clinic end generated code: output=87599a7f76651a9b input=9bba964595d519be]*/
Benjamin Petersoncca27322015-01-23 16:35:37 -05002487{
2488#ifdef HAVE_ALPN
Benjamin Petersoncca27322015-01-23 16:35:37 -05002489 PyMem_FREE(self->alpn_protocols);
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002490 self->alpn_protocols = PyMem_Malloc(protos->len);
Benjamin Petersoncca27322015-01-23 16:35:37 -05002491 if (!self->alpn_protocols)
2492 return PyErr_NoMemory();
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002493 memcpy(self->alpn_protocols, protos->buf, protos->len);
2494 self->alpn_protocols_len = protos->len;
Benjamin Petersoncca27322015-01-23 16:35:37 -05002495
2496 if (SSL_CTX_set_alpn_protos(self->ctx, self->alpn_protocols, self->alpn_protocols_len))
2497 return PyErr_NoMemory();
2498 SSL_CTX_set_alpn_select_cb(self->ctx, _selectALPN_cb, self);
2499
Benjamin Petersoncca27322015-01-23 16:35:37 -05002500 Py_RETURN_NONE;
2501#else
2502 PyErr_SetString(PyExc_NotImplementedError,
2503 "The ALPN extension requires OpenSSL 1.0.2 or later.");
2504 return NULL;
2505#endif
2506}
2507
Antoine Pitrou152efa22010-05-16 18:19:27 +00002508static PyObject *
2509get_verify_mode(PySSLContext *self, void *c)
2510{
2511 switch (SSL_CTX_get_verify_mode(self->ctx)) {
2512 case SSL_VERIFY_NONE:
2513 return PyLong_FromLong(PY_SSL_CERT_NONE);
2514 case SSL_VERIFY_PEER:
2515 return PyLong_FromLong(PY_SSL_CERT_OPTIONAL);
2516 case SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT:
2517 return PyLong_FromLong(PY_SSL_CERT_REQUIRED);
2518 }
2519 PyErr_SetString(PySSLErrorObject,
2520 "invalid return value from SSL_CTX_get_verify_mode");
2521 return NULL;
2522}
2523
2524static int
2525set_verify_mode(PySSLContext *self, PyObject *arg, void *c)
2526{
2527 int n, mode;
2528 if (!PyArg_Parse(arg, "i", &n))
2529 return -1;
2530 if (n == PY_SSL_CERT_NONE)
2531 mode = SSL_VERIFY_NONE;
2532 else if (n == PY_SSL_CERT_OPTIONAL)
2533 mode = SSL_VERIFY_PEER;
2534 else if (n == PY_SSL_CERT_REQUIRED)
2535 mode = SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
2536 else {
2537 PyErr_SetString(PyExc_ValueError,
2538 "invalid value for verify_mode");
2539 return -1;
2540 }
Christian Heimes1aa9a752013-12-02 02:41:19 +01002541 if (mode == SSL_VERIFY_NONE && self->check_hostname) {
2542 PyErr_SetString(PyExc_ValueError,
2543 "Cannot set verify_mode to CERT_NONE when "
2544 "check_hostname is enabled.");
2545 return -1;
2546 }
Antoine Pitrou152efa22010-05-16 18:19:27 +00002547 SSL_CTX_set_verify(self->ctx, mode, NULL);
2548 return 0;
2549}
2550
2551static PyObject *
Christian Heimes22587792013-11-21 23:56:13 +01002552get_verify_flags(PySSLContext *self, void *c)
2553{
2554 X509_STORE *store;
2555 unsigned long flags;
2556
2557 store = SSL_CTX_get_cert_store(self->ctx);
2558 flags = X509_VERIFY_PARAM_get_flags(store->param);
2559 return PyLong_FromUnsignedLong(flags);
2560}
2561
2562static int
2563set_verify_flags(PySSLContext *self, PyObject *arg, void *c)
2564{
2565 X509_STORE *store;
2566 unsigned long new_flags, flags, set, clear;
2567
2568 if (!PyArg_Parse(arg, "k", &new_flags))
2569 return -1;
2570 store = SSL_CTX_get_cert_store(self->ctx);
2571 flags = X509_VERIFY_PARAM_get_flags(store->param);
2572 clear = flags & ~new_flags;
2573 set = ~flags & new_flags;
2574 if (clear) {
2575 if (!X509_VERIFY_PARAM_clear_flags(store->param, clear)) {
2576 _setSSLError(NULL, 0, __FILE__, __LINE__);
2577 return -1;
2578 }
2579 }
2580 if (set) {
2581 if (!X509_VERIFY_PARAM_set_flags(store->param, set)) {
2582 _setSSLError(NULL, 0, __FILE__, __LINE__);
2583 return -1;
2584 }
2585 }
2586 return 0;
2587}
2588
2589static PyObject *
Antoine Pitroub5218772010-05-21 09:56:06 +00002590get_options(PySSLContext *self, void *c)
2591{
2592 return PyLong_FromLong(SSL_CTX_get_options(self->ctx));
2593}
2594
2595static int
2596set_options(PySSLContext *self, PyObject *arg, void *c)
2597{
2598 long new_opts, opts, set, clear;
2599 if (!PyArg_Parse(arg, "l", &new_opts))
2600 return -1;
2601 opts = SSL_CTX_get_options(self->ctx);
2602 clear = opts & ~new_opts;
2603 set = ~opts & new_opts;
2604 if (clear) {
2605#ifdef HAVE_SSL_CTX_CLEAR_OPTIONS
2606 SSL_CTX_clear_options(self->ctx, clear);
2607#else
2608 PyErr_SetString(PyExc_ValueError,
2609 "can't clear options before OpenSSL 0.9.8m");
2610 return -1;
2611#endif
2612 }
2613 if (set)
2614 SSL_CTX_set_options(self->ctx, set);
2615 return 0;
2616}
2617
Christian Heimes1aa9a752013-12-02 02:41:19 +01002618static PyObject *
2619get_check_hostname(PySSLContext *self, void *c)
2620{
2621 return PyBool_FromLong(self->check_hostname);
2622}
2623
2624static int
2625set_check_hostname(PySSLContext *self, PyObject *arg, void *c)
2626{
2627 int check_hostname;
2628 if (!PyArg_Parse(arg, "p", &check_hostname))
2629 return -1;
2630 if (check_hostname &&
2631 SSL_CTX_get_verify_mode(self->ctx) == SSL_VERIFY_NONE) {
2632 PyErr_SetString(PyExc_ValueError,
2633 "check_hostname needs a SSL context with either "
2634 "CERT_OPTIONAL or CERT_REQUIRED");
2635 return -1;
2636 }
2637 self->check_hostname = check_hostname;
2638 return 0;
2639}
2640
2641
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002642typedef struct {
2643 PyThreadState *thread_state;
2644 PyObject *callable;
2645 char *password;
Victor Stinner9ee02032013-06-23 15:08:23 +02002646 int size;
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002647 int error;
2648} _PySSLPasswordInfo;
2649
2650static int
2651_pwinfo_set(_PySSLPasswordInfo *pw_info, PyObject* password,
2652 const char *bad_type_error)
2653{
2654 /* Set the password and size fields of a _PySSLPasswordInfo struct
2655 from a unicode, bytes, or byte array object.
2656 The password field will be dynamically allocated and must be freed
2657 by the caller */
2658 PyObject *password_bytes = NULL;
2659 const char *data = NULL;
2660 Py_ssize_t size;
2661
2662 if (PyUnicode_Check(password)) {
2663 password_bytes = PyUnicode_AsEncodedString(password, NULL, NULL);
2664 if (!password_bytes) {
2665 goto error;
2666 }
2667 data = PyBytes_AS_STRING(password_bytes);
2668 size = PyBytes_GET_SIZE(password_bytes);
2669 } else if (PyBytes_Check(password)) {
2670 data = PyBytes_AS_STRING(password);
2671 size = PyBytes_GET_SIZE(password);
2672 } else if (PyByteArray_Check(password)) {
2673 data = PyByteArray_AS_STRING(password);
2674 size = PyByteArray_GET_SIZE(password);
2675 } else {
2676 PyErr_SetString(PyExc_TypeError, bad_type_error);
2677 goto error;
2678 }
2679
Victor Stinner9ee02032013-06-23 15:08:23 +02002680 if (size > (Py_ssize_t)INT_MAX) {
2681 PyErr_Format(PyExc_ValueError,
2682 "password cannot be longer than %d bytes", INT_MAX);
2683 goto error;
2684 }
2685
Victor Stinner11ebff22013-07-07 17:07:52 +02002686 PyMem_Free(pw_info->password);
2687 pw_info->password = PyMem_Malloc(size);
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002688 if (!pw_info->password) {
2689 PyErr_SetString(PyExc_MemoryError,
2690 "unable to allocate password buffer");
2691 goto error;
2692 }
2693 memcpy(pw_info->password, data, size);
Victor Stinner9ee02032013-06-23 15:08:23 +02002694 pw_info->size = (int)size;
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002695
2696 Py_XDECREF(password_bytes);
2697 return 1;
2698
2699error:
2700 Py_XDECREF(password_bytes);
2701 return 0;
2702}
2703
2704static int
2705_password_callback(char *buf, int size, int rwflag, void *userdata)
2706{
2707 _PySSLPasswordInfo *pw_info = (_PySSLPasswordInfo*) userdata;
2708 PyObject *fn_ret = NULL;
2709
2710 PySSL_END_ALLOW_THREADS_S(pw_info->thread_state);
2711
2712 if (pw_info->callable) {
2713 fn_ret = PyObject_CallFunctionObjArgs(pw_info->callable, NULL);
2714 if (!fn_ret) {
2715 /* TODO: It would be nice to move _ctypes_add_traceback() into the
2716 core python API, so we could use it to add a frame here */
2717 goto error;
2718 }
2719
2720 if (!_pwinfo_set(pw_info, fn_ret,
2721 "password callback must return a string")) {
2722 goto error;
2723 }
2724 Py_CLEAR(fn_ret);
2725 }
2726
2727 if (pw_info->size > size) {
2728 PyErr_Format(PyExc_ValueError,
2729 "password cannot be longer than %d bytes", size);
2730 goto error;
2731 }
2732
2733 PySSL_BEGIN_ALLOW_THREADS_S(pw_info->thread_state);
2734 memcpy(buf, pw_info->password, pw_info->size);
2735 return pw_info->size;
2736
2737error:
2738 Py_XDECREF(fn_ret);
2739 PySSL_BEGIN_ALLOW_THREADS_S(pw_info->thread_state);
2740 pw_info->error = 1;
2741 return -1;
2742}
2743
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002744/*[clinic input]
2745_ssl._SSLContext.load_cert_chain
2746 certfile: object
2747 keyfile: object = NULL
2748 password: object = NULL
2749
2750[clinic start generated code]*/
2751
Antoine Pitroub5218772010-05-21 09:56:06 +00002752static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002753_ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,
2754 PyObject *keyfile, PyObject *password)
2755/*[clinic end generated code: output=9480bc1c380e2095 input=7cf9ac673cbee6fc]*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00002756{
Antoine Pitrou152efa22010-05-16 18:19:27 +00002757 PyObject *certfile_bytes = NULL, *keyfile_bytes = NULL;
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002758 pem_password_cb *orig_passwd_cb = self->ctx->default_passwd_callback;
2759 void *orig_passwd_userdata = self->ctx->default_passwd_callback_userdata;
2760 _PySSLPasswordInfo pw_info = { NULL, NULL, NULL, 0, 0 };
Antoine Pitrou152efa22010-05-16 18:19:27 +00002761 int r;
2762
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00002763 errno = 0;
Antoine Pitrou67e8e562010-09-01 20:55:41 +00002764 ERR_clear_error();
Antoine Pitrou152efa22010-05-16 18:19:27 +00002765 if (keyfile == Py_None)
2766 keyfile = NULL;
2767 if (!PyUnicode_FSConverter(certfile, &certfile_bytes)) {
2768 PyErr_SetString(PyExc_TypeError,
2769 "certfile should be a valid filesystem path");
2770 return NULL;
2771 }
2772 if (keyfile && !PyUnicode_FSConverter(keyfile, &keyfile_bytes)) {
2773 PyErr_SetString(PyExc_TypeError,
2774 "keyfile should be a valid filesystem path");
2775 goto error;
2776 }
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002777 if (password && password != Py_None) {
2778 if (PyCallable_Check(password)) {
2779 pw_info.callable = password;
2780 } else if (!_pwinfo_set(&pw_info, password,
2781 "password should be a string or callable")) {
2782 goto error;
2783 }
2784 SSL_CTX_set_default_passwd_cb(self->ctx, _password_callback);
2785 SSL_CTX_set_default_passwd_cb_userdata(self->ctx, &pw_info);
2786 }
2787 PySSL_BEGIN_ALLOW_THREADS_S(pw_info.thread_state);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002788 r = SSL_CTX_use_certificate_chain_file(self->ctx,
2789 PyBytes_AS_STRING(certfile_bytes));
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002790 PySSL_END_ALLOW_THREADS_S(pw_info.thread_state);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002791 if (r != 1) {
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002792 if (pw_info.error) {
2793 ERR_clear_error();
2794 /* the password callback has already set the error information */
2795 }
2796 else if (errno != 0) {
Giampaolo Rodolàe0f98632010-09-01 19:28:49 +00002797 ERR_clear_error();
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00002798 PyErr_SetFromErrno(PyExc_IOError);
2799 }
2800 else {
2801 _setSSLError(NULL, 0, __FILE__, __LINE__);
2802 }
Antoine Pitrou152efa22010-05-16 18:19:27 +00002803 goto error;
2804 }
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002805 PySSL_BEGIN_ALLOW_THREADS_S(pw_info.thread_state);
Antoine Pitrou9c254862011-04-03 18:15:34 +02002806 r = SSL_CTX_use_PrivateKey_file(self->ctx,
Antoine Pitrou152efa22010-05-16 18:19:27 +00002807 PyBytes_AS_STRING(keyfile ? keyfile_bytes : certfile_bytes),
2808 SSL_FILETYPE_PEM);
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002809 PySSL_END_ALLOW_THREADS_S(pw_info.thread_state);
2810 Py_CLEAR(keyfile_bytes);
2811 Py_CLEAR(certfile_bytes);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002812 if (r != 1) {
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002813 if (pw_info.error) {
2814 ERR_clear_error();
2815 /* the password callback has already set the error information */
2816 }
2817 else if (errno != 0) {
Giampaolo Rodolàe0f98632010-09-01 19:28:49 +00002818 ERR_clear_error();
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00002819 PyErr_SetFromErrno(PyExc_IOError);
2820 }
2821 else {
2822 _setSSLError(NULL, 0, __FILE__, __LINE__);
2823 }
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002824 goto error;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002825 }
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002826 PySSL_BEGIN_ALLOW_THREADS_S(pw_info.thread_state);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002827 r = SSL_CTX_check_private_key(self->ctx);
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002828 PySSL_END_ALLOW_THREADS_S(pw_info.thread_state);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002829 if (r != 1) {
2830 _setSSLError(NULL, 0, __FILE__, __LINE__);
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002831 goto error;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002832 }
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002833 SSL_CTX_set_default_passwd_cb(self->ctx, orig_passwd_cb);
2834 SSL_CTX_set_default_passwd_cb_userdata(self->ctx, orig_passwd_userdata);
Victor Stinner11ebff22013-07-07 17:07:52 +02002835 PyMem_Free(pw_info.password);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002836 Py_RETURN_NONE;
2837
2838error:
Antoine Pitrou4fd1e6a2011-08-25 14:39:44 +02002839 SSL_CTX_set_default_passwd_cb(self->ctx, orig_passwd_cb);
2840 SSL_CTX_set_default_passwd_cb_userdata(self->ctx, orig_passwd_userdata);
Victor Stinner11ebff22013-07-07 17:07:52 +02002841 PyMem_Free(pw_info.password);
Antoine Pitrou152efa22010-05-16 18:19:27 +00002842 Py_XDECREF(keyfile_bytes);
2843 Py_XDECREF(certfile_bytes);
2844 return NULL;
2845}
2846
Christian Heimesefff7062013-11-21 03:35:02 +01002847/* internal helper function, returns -1 on error
2848 */
2849static int
2850_add_ca_certs(PySSLContext *self, void *data, Py_ssize_t len,
2851 int filetype)
2852{
2853 BIO *biobuf = NULL;
2854 X509_STORE *store;
2855 int retval = 0, err, loaded = 0;
2856
2857 assert(filetype == SSL_FILETYPE_ASN1 || filetype == SSL_FILETYPE_PEM);
2858
2859 if (len <= 0) {
2860 PyErr_SetString(PyExc_ValueError,
2861 "Empty certificate data");
2862 return -1;
2863 } else if (len > INT_MAX) {
2864 PyErr_SetString(PyExc_OverflowError,
2865 "Certificate data is too long.");
2866 return -1;
2867 }
2868
Christian Heimes1dbf61f2013-11-22 00:34:18 +01002869 biobuf = BIO_new_mem_buf(data, (int)len);
Christian Heimesefff7062013-11-21 03:35:02 +01002870 if (biobuf == NULL) {
2871 _setSSLError("Can't allocate buffer", 0, __FILE__, __LINE__);
2872 return -1;
2873 }
2874
2875 store = SSL_CTX_get_cert_store(self->ctx);
2876 assert(store != NULL);
2877
2878 while (1) {
2879 X509 *cert = NULL;
2880 int r;
2881
2882 if (filetype == SSL_FILETYPE_ASN1) {
2883 cert = d2i_X509_bio(biobuf, NULL);
2884 } else {
2885 cert = PEM_read_bio_X509(biobuf, NULL,
2886 self->ctx->default_passwd_callback,
2887 self->ctx->default_passwd_callback_userdata);
2888 }
2889 if (cert == NULL) {
2890 break;
2891 }
2892 r = X509_STORE_add_cert(store, cert);
2893 X509_free(cert);
2894 if (!r) {
2895 err = ERR_peek_last_error();
2896 if ((ERR_GET_LIB(err) == ERR_LIB_X509) &&
2897 (ERR_GET_REASON(err) == X509_R_CERT_ALREADY_IN_HASH_TABLE)) {
2898 /* cert already in hash table, not an error */
2899 ERR_clear_error();
2900 } else {
2901 break;
2902 }
2903 }
2904 loaded++;
2905 }
2906
2907 err = ERR_peek_last_error();
2908 if ((filetype == SSL_FILETYPE_ASN1) &&
2909 (loaded > 0) &&
2910 (ERR_GET_LIB(err) == ERR_LIB_ASN1) &&
2911 (ERR_GET_REASON(err) == ASN1_R_HEADER_TOO_LONG)) {
2912 /* EOF ASN1 file, not an error */
2913 ERR_clear_error();
2914 retval = 0;
2915 } else if ((filetype == SSL_FILETYPE_PEM) &&
2916 (loaded > 0) &&
2917 (ERR_GET_LIB(err) == ERR_LIB_PEM) &&
2918 (ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) {
2919 /* EOF PEM file, not an error */
2920 ERR_clear_error();
2921 retval = 0;
2922 } else {
2923 _setSSLError(NULL, 0, __FILE__, __LINE__);
2924 retval = -1;
2925 }
2926
2927 BIO_free(biobuf);
2928 return retval;
2929}
2930
2931
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002932/*[clinic input]
2933_ssl._SSLContext.load_verify_locations
2934 cafile: object = NULL
2935 capath: object = NULL
2936 cadata: object = NULL
2937
2938[clinic start generated code]*/
2939
Antoine Pitrou152efa22010-05-16 18:19:27 +00002940static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03002941_ssl__SSLContext_load_verify_locations_impl(PySSLContext *self,
2942 PyObject *cafile,
2943 PyObject *capath,
2944 PyObject *cadata)
2945/*[clinic end generated code: output=454c7e41230ca551 input=997f1fb3a784ef88]*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00002946{
Antoine Pitrou152efa22010-05-16 18:19:27 +00002947 PyObject *cafile_bytes = NULL, *capath_bytes = NULL;
2948 const char *cafile_buf = NULL, *capath_buf = NULL;
Christian Heimesefff7062013-11-21 03:35:02 +01002949 int r = 0, ok = 1;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002950
Giampaolo Rodolà745ab382010-08-29 19:25:49 +00002951 errno = 0;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002952 if (cafile == Py_None)
2953 cafile = NULL;
2954 if (capath == Py_None)
2955 capath = NULL;
Christian Heimesefff7062013-11-21 03:35:02 +01002956 if (cadata == Py_None)
2957 cadata = NULL;
2958
2959 if (cafile == NULL && capath == NULL && cadata == NULL) {
Antoine Pitrou152efa22010-05-16 18:19:27 +00002960 PyErr_SetString(PyExc_TypeError,
Christian Heimesefff7062013-11-21 03:35:02 +01002961 "cafile, capath and cadata cannot be all omitted");
2962 goto error;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002963 }
2964 if (cafile && !PyUnicode_FSConverter(cafile, &cafile_bytes)) {
2965 PyErr_SetString(PyExc_TypeError,
2966 "cafile should be a valid filesystem path");
Christian Heimesefff7062013-11-21 03:35:02 +01002967 goto error;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002968 }
2969 if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) {
Antoine Pitrou152efa22010-05-16 18:19:27 +00002970 PyErr_SetString(PyExc_TypeError,
2971 "capath should be a valid filesystem path");
Christian Heimesefff7062013-11-21 03:35:02 +01002972 goto error;
Antoine Pitrou152efa22010-05-16 18:19:27 +00002973 }
Christian Heimesefff7062013-11-21 03:35:02 +01002974
2975 /* validata cadata type and load cadata */
2976 if (cadata) {
2977 Py_buffer buf;
2978 PyObject *cadata_ascii = NULL;
2979
2980 if (PyObject_GetBuffer(cadata, &buf, PyBUF_SIMPLE) == 0) {
2981 if (!PyBuffer_IsContiguous(&buf, 'C') || buf.ndim > 1) {
2982 PyBuffer_Release(&buf);
2983 PyErr_SetString(PyExc_TypeError,
2984 "cadata should be a contiguous buffer with "
2985 "a single dimension");
2986 goto error;
2987 }
2988 r = _add_ca_certs(self, buf.buf, buf.len, SSL_FILETYPE_ASN1);
2989 PyBuffer_Release(&buf);
2990 if (r == -1) {
2991 goto error;
2992 }
2993 } else {
2994 PyErr_Clear();
2995 cadata_ascii = PyUnicode_AsASCIIString(cadata);
2996 if (cadata_ascii == NULL) {
2997 PyErr_SetString(PyExc_TypeError,
Serhiy Storchakad65c9492015-11-02 14:10:23 +02002998 "cadata should be an ASCII string or a "
Christian Heimesefff7062013-11-21 03:35:02 +01002999 "bytes-like object");
3000 goto error;
3001 }
3002 r = _add_ca_certs(self,
3003 PyBytes_AS_STRING(cadata_ascii),
3004 PyBytes_GET_SIZE(cadata_ascii),
3005 SSL_FILETYPE_PEM);
3006 Py_DECREF(cadata_ascii);
3007 if (r == -1) {
3008 goto error;
3009 }
3010 }
3011 }
3012
3013 /* load cafile or capath */
3014 if (cafile || capath) {
3015 if (cafile)
3016 cafile_buf = PyBytes_AS_STRING(cafile_bytes);
3017 if (capath)
3018 capath_buf = PyBytes_AS_STRING(capath_bytes);
3019 PySSL_BEGIN_ALLOW_THREADS
3020 r = SSL_CTX_load_verify_locations(self->ctx, cafile_buf, capath_buf);
3021 PySSL_END_ALLOW_THREADS
3022 if (r != 1) {
3023 ok = 0;
3024 if (errno != 0) {
3025 ERR_clear_error();
3026 PyErr_SetFromErrno(PyExc_IOError);
3027 }
3028 else {
3029 _setSSLError(NULL, 0, __FILE__, __LINE__);
3030 }
3031 goto error;
3032 }
3033 }
3034 goto end;
3035
3036 error:
3037 ok = 0;
3038 end:
Antoine Pitrou152efa22010-05-16 18:19:27 +00003039 Py_XDECREF(cafile_bytes);
3040 Py_XDECREF(capath_bytes);
Christian Heimesefff7062013-11-21 03:35:02 +01003041 if (ok) {
3042 Py_RETURN_NONE;
3043 } else {
Antoine Pitrou152efa22010-05-16 18:19:27 +00003044 return NULL;
3045 }
Antoine Pitrou152efa22010-05-16 18:19:27 +00003046}
3047
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003048/*[clinic input]
3049_ssl._SSLContext.load_dh_params
3050 path as filepath: object
3051 /
3052
3053[clinic start generated code]*/
3054
Antoine Pitrou152efa22010-05-16 18:19:27 +00003055static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003056_ssl__SSLContext_load_dh_params(PySSLContext *self, PyObject *filepath)
3057/*[clinic end generated code: output=1c8e57a38e055af0 input=c8871f3c796ae1d6]*/
Antoine Pitrou0e576f12011-12-22 10:03:38 +01003058{
3059 FILE *f;
3060 DH *dh;
3061
Victor Stinnerdaf45552013-08-28 00:53:59 +02003062 f = _Py_fopen_obj(filepath, "rb");
Victor Stinnere42ccd22015-03-18 01:39:23 +01003063 if (f == NULL)
Antoine Pitrou0e576f12011-12-22 10:03:38 +01003064 return NULL;
Victor Stinnere42ccd22015-03-18 01:39:23 +01003065
Antoine Pitrou0e576f12011-12-22 10:03:38 +01003066 errno = 0;
3067 PySSL_BEGIN_ALLOW_THREADS
3068 dh = PEM_read_DHparams(f, NULL, NULL, NULL);
Antoine Pitrou457a2292013-01-12 21:43:45 +01003069 fclose(f);
Antoine Pitrou0e576f12011-12-22 10:03:38 +01003070 PySSL_END_ALLOW_THREADS
3071 if (dh == NULL) {
3072 if (errno != 0) {
3073 ERR_clear_error();
3074 PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, filepath);
3075 }
3076 else {
3077 _setSSLError(NULL, 0, __FILE__, __LINE__);
3078 }
3079 return NULL;
3080 }
3081 if (SSL_CTX_set_tmp_dh(self->ctx, dh) == 0)
3082 _setSSLError(NULL, 0, __FILE__, __LINE__);
3083 DH_free(dh);
3084 Py_RETURN_NONE;
3085}
3086
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003087/*[clinic input]
3088_ssl._SSLContext._wrap_socket
3089 sock: object(subclass_of="PySocketModule.Sock_Type")
3090 server_side: int
3091 server_hostname as hostname_obj: object = None
3092
3093[clinic start generated code]*/
3094
Antoine Pitrou0e576f12011-12-22 10:03:38 +01003095static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003096_ssl__SSLContext__wrap_socket_impl(PySSLContext *self, PyObject *sock,
3097 int server_side, PyObject *hostname_obj)
3098/*[clinic end generated code: output=6973e4b60995e933 input=83859b9156ddfc63]*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00003099{
Antoine Pitroud5323212010-10-22 18:19:07 +00003100 char *hostname = NULL;
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003101 PyObject *res;
Antoine Pitrou152efa22010-05-16 18:19:27 +00003102
Antoine Pitroud5323212010-10-22 18:19:07 +00003103 /* server_hostname is either None (or absent), or to be encoded
3104 using the idna encoding. */
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003105 if (hostname_obj != Py_None) {
3106 if (!PyArg_Parse(hostname_obj, "et", "idna", &hostname))
Antoine Pitroud5323212010-10-22 18:19:07 +00003107 return NULL;
Antoine Pitroud5323212010-10-22 18:19:07 +00003108 }
Antoine Pitrou152efa22010-05-16 18:19:27 +00003109
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003110 res = (PyObject *) newPySSLSocket(self, (PySocketSockObject *)sock,
3111 server_side, hostname,
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003112 NULL, NULL);
Antoine Pitroud5323212010-10-22 18:19:07 +00003113 if (hostname != NULL)
3114 PyMem_Free(hostname);
3115 return res;
Antoine Pitrou152efa22010-05-16 18:19:27 +00003116}
3117
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003118/*[clinic input]
3119_ssl._SSLContext._wrap_bio
3120 incoming: object(subclass_of="&PySSLMemoryBIO_Type", type="PySSLMemoryBIO *")
3121 outgoing: object(subclass_of="&PySSLMemoryBIO_Type", type="PySSLMemoryBIO *")
3122 server_side: int
3123 server_hostname as hostname_obj: object = None
3124
3125[clinic start generated code]*/
3126
Antoine Pitroub0182c82010-10-12 20:09:02 +00003127static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003128_ssl__SSLContext__wrap_bio_impl(PySSLContext *self, PySSLMemoryBIO *incoming,
3129 PySSLMemoryBIO *outgoing, int server_side,
3130 PyObject *hostname_obj)
3131/*[clinic end generated code: output=4fe4ba75ad95940d input=17725ecdac0bf220]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003132{
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003133 char *hostname = NULL;
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003134 PyObject *res;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003135
3136 /* server_hostname is either None (or absent), or to be encoded
3137 using the idna encoding. */
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003138 if (hostname_obj != Py_None) {
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003139 if (!PyArg_Parse(hostname_obj, "et", "idna", &hostname))
3140 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003141 }
3142
3143 res = (PyObject *) newPySSLSocket(self, NULL, server_side, hostname,
3144 incoming, outgoing);
3145
3146 PyMem_Free(hostname);
3147 return res;
3148}
3149
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003150/*[clinic input]
3151_ssl._SSLContext.session_stats
3152[clinic start generated code]*/
3153
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003154static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003155_ssl__SSLContext_session_stats_impl(PySSLContext *self)
3156/*[clinic end generated code: output=0d96411c42893bfb input=7e0a81fb11102c8b]*/
Antoine Pitroub0182c82010-10-12 20:09:02 +00003157{
3158 int r;
3159 PyObject *value, *stats = PyDict_New();
3160 if (!stats)
3161 return NULL;
3162
3163#define ADD_STATS(SSL_NAME, KEY_NAME) \
3164 value = PyLong_FromLong(SSL_CTX_sess_ ## SSL_NAME (self->ctx)); \
3165 if (value == NULL) \
3166 goto error; \
3167 r = PyDict_SetItemString(stats, KEY_NAME, value); \
3168 Py_DECREF(value); \
3169 if (r < 0) \
3170 goto error;
3171
3172 ADD_STATS(number, "number");
3173 ADD_STATS(connect, "connect");
3174 ADD_STATS(connect_good, "connect_good");
3175 ADD_STATS(connect_renegotiate, "connect_renegotiate");
3176 ADD_STATS(accept, "accept");
3177 ADD_STATS(accept_good, "accept_good");
3178 ADD_STATS(accept_renegotiate, "accept_renegotiate");
3179 ADD_STATS(accept, "accept");
3180 ADD_STATS(hits, "hits");
3181 ADD_STATS(misses, "misses");
3182 ADD_STATS(timeouts, "timeouts");
3183 ADD_STATS(cache_full, "cache_full");
3184
3185#undef ADD_STATS
3186
3187 return stats;
3188
3189error:
3190 Py_DECREF(stats);
3191 return NULL;
3192}
3193
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003194/*[clinic input]
3195_ssl._SSLContext.set_default_verify_paths
3196[clinic start generated code]*/
3197
Antoine Pitrou664c2d12010-11-17 20:29:42 +00003198static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003199_ssl__SSLContext_set_default_verify_paths_impl(PySSLContext *self)
3200/*[clinic end generated code: output=0bee74e6e09deaaa input=35f3408021463d74]*/
Antoine Pitrou664c2d12010-11-17 20:29:42 +00003201{
3202 if (!SSL_CTX_set_default_verify_paths(self->ctx)) {
3203 _setSSLError(NULL, 0, __FILE__, __LINE__);
3204 return NULL;
3205 }
3206 Py_RETURN_NONE;
3207}
3208
Antoine Pitrou501da612011-12-21 09:27:41 +01003209#ifndef OPENSSL_NO_ECDH
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003210/*[clinic input]
3211_ssl._SSLContext.set_ecdh_curve
3212 name: object
3213 /
3214
3215[clinic start generated code]*/
3216
Antoine Pitrou923df6f2011-12-19 17:16:51 +01003217static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003218_ssl__SSLContext_set_ecdh_curve(PySSLContext *self, PyObject *name)
3219/*[clinic end generated code: output=23022c196e40d7d2 input=c2bafb6f6e34726b]*/
Antoine Pitrou923df6f2011-12-19 17:16:51 +01003220{
3221 PyObject *name_bytes;
3222 int nid;
3223 EC_KEY *key;
3224
3225 if (!PyUnicode_FSConverter(name, &name_bytes))
3226 return NULL;
3227 assert(PyBytes_Check(name_bytes));
3228 nid = OBJ_sn2nid(PyBytes_AS_STRING(name_bytes));
3229 Py_DECREF(name_bytes);
3230 if (nid == 0) {
3231 PyErr_Format(PyExc_ValueError,
3232 "unknown elliptic curve name %R", name);
3233 return NULL;
3234 }
3235 key = EC_KEY_new_by_curve_name(nid);
3236 if (key == NULL) {
3237 _setSSLError(NULL, 0, __FILE__, __LINE__);
3238 return NULL;
3239 }
3240 SSL_CTX_set_tmp_ecdh(self->ctx, key);
3241 EC_KEY_free(key);
3242 Py_RETURN_NONE;
3243}
Antoine Pitrou501da612011-12-21 09:27:41 +01003244#endif
Antoine Pitrou923df6f2011-12-19 17:16:51 +01003245
Antoine Pitrou912fbff2013-03-30 16:29:32 +01003246#if HAVE_SNI && !defined(OPENSSL_NO_TLSEXT)
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003247static int
3248_servername_callback(SSL *s, int *al, void *args)
3249{
3250 int ret;
3251 PySSLContext *ssl_ctx = (PySSLContext *) args;
3252 PySSLSocket *ssl;
3253 PyObject *servername_o;
3254 PyObject *servername_idna;
3255 PyObject *result;
3256 /* The high-level ssl.SSLSocket object */
3257 PyObject *ssl_socket;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003258 const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
Stefan Krah20d60802013-01-17 17:07:17 +01003259#ifdef WITH_THREAD
3260 PyGILState_STATE gstate = PyGILState_Ensure();
3261#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003262
3263 if (ssl_ctx->set_hostname == NULL) {
3264 /* remove race condition in this the call back while if removing the
3265 * callback is in progress */
Stefan Krah20d60802013-01-17 17:07:17 +01003266#ifdef WITH_THREAD
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003267 PyGILState_Release(gstate);
Stefan Krah20d60802013-01-17 17:07:17 +01003268#endif
Antoine Pitrou5dd12a52013-01-06 15:25:36 +01003269 return SSL_TLSEXT_ERR_OK;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003270 }
3271
3272 ssl = SSL_get_app_data(s);
3273 assert(PySSLSocket_Check(ssl));
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003274
Serhiy Storchakaf51d7152015-11-02 14:40:41 +02003275 /* The servername callback expects an argument that represents the current
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003276 * SSL connection and that has a .context attribute that can be changed to
3277 * identify the requested hostname. Since the official API is the Python
3278 * level API we want to pass the callback a Python level object rather than
3279 * a _ssl.SSLSocket instance. If there's an "owner" (typically an
3280 * SSLObject) that will be passed. Otherwise if there's a socket then that
3281 * will be passed. If both do not exist only then the C-level object is
3282 * passed. */
3283 if (ssl->owner)
3284 ssl_socket = PyWeakref_GetObject(ssl->owner);
3285 else if (ssl->Socket)
3286 ssl_socket = PyWeakref_GetObject(ssl->Socket);
3287 else
3288 ssl_socket = (PyObject *) ssl;
3289
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003290 Py_INCREF(ssl_socket);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003291 if (ssl_socket == Py_None)
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003292 goto error;
Victor Stinner7e001512013-06-25 00:44:31 +02003293
Antoine Pitrou50b24d02013-04-11 20:48:42 +02003294 if (servername == NULL) {
3295 result = PyObject_CallFunctionObjArgs(ssl_ctx->set_hostname, ssl_socket,
3296 Py_None, ssl_ctx, NULL);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003297 }
Antoine Pitrou50b24d02013-04-11 20:48:42 +02003298 else {
3299 servername_o = PyBytes_FromString(servername);
3300 if (servername_o == NULL) {
3301 PyErr_WriteUnraisable((PyObject *) ssl_ctx);
3302 goto error;
3303 }
3304 servername_idna = PyUnicode_FromEncodedObject(servername_o, "idna", NULL);
3305 if (servername_idna == NULL) {
3306 PyErr_WriteUnraisable(servername_o);
3307 Py_DECREF(servername_o);
3308 goto error;
3309 }
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003310 Py_DECREF(servername_o);
Antoine Pitrou50b24d02013-04-11 20:48:42 +02003311 result = PyObject_CallFunctionObjArgs(ssl_ctx->set_hostname, ssl_socket,
3312 servername_idna, ssl_ctx, NULL);
3313 Py_DECREF(servername_idna);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003314 }
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003315 Py_DECREF(ssl_socket);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003316
3317 if (result == NULL) {
3318 PyErr_WriteUnraisable(ssl_ctx->set_hostname);
3319 *al = SSL_AD_HANDSHAKE_FAILURE;
3320 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3321 }
3322 else {
3323 if (result != Py_None) {
3324 *al = (int) PyLong_AsLong(result);
3325 if (PyErr_Occurred()) {
3326 PyErr_WriteUnraisable(result);
3327 *al = SSL_AD_INTERNAL_ERROR;
3328 }
3329 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3330 }
3331 else {
3332 ret = SSL_TLSEXT_ERR_OK;
3333 }
3334 Py_DECREF(result);
3335 }
3336
Stefan Krah20d60802013-01-17 17:07:17 +01003337#ifdef WITH_THREAD
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003338 PyGILState_Release(gstate);
Stefan Krah20d60802013-01-17 17:07:17 +01003339#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003340 return ret;
3341
3342error:
3343 Py_DECREF(ssl_socket);
3344 *al = SSL_AD_INTERNAL_ERROR;
3345 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
Stefan Krah20d60802013-01-17 17:07:17 +01003346#ifdef WITH_THREAD
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003347 PyGILState_Release(gstate);
Stefan Krah20d60802013-01-17 17:07:17 +01003348#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003349 return ret;
3350}
Antoine Pitroua5963382013-03-30 16:39:00 +01003351#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003352
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003353/*[clinic input]
3354_ssl._SSLContext.set_servername_callback
3355 method as cb: object
3356 /
3357
3358Set a callback that will be called when a server name is provided by the SSL/TLS client in the SNI extension.
3359
3360If the argument is None then the callback is disabled. The method is called
3361with the SSLSocket, the server name as a string, and the SSLContext object.
3362See RFC 6066 for details of the SNI extension.
3363[clinic start generated code]*/
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003364
3365static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003366_ssl__SSLContext_set_servername_callback(PySSLContext *self, PyObject *cb)
3367/*[clinic end generated code: output=3439a1b2d5d3b7ea input=a2a83620197d602b]*/
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003368{
Antoine Pitrou912fbff2013-03-30 16:29:32 +01003369#if HAVE_SNI && !defined(OPENSSL_NO_TLSEXT)
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003370 Py_CLEAR(self->set_hostname);
3371 if (cb == Py_None) {
3372 SSL_CTX_set_tlsext_servername_callback(self->ctx, NULL);
3373 }
3374 else {
3375 if (!PyCallable_Check(cb)) {
3376 SSL_CTX_set_tlsext_servername_callback(self->ctx, NULL);
3377 PyErr_SetString(PyExc_TypeError,
3378 "not a callable object");
3379 return NULL;
3380 }
3381 Py_INCREF(cb);
3382 self->set_hostname = cb;
3383 SSL_CTX_set_tlsext_servername_callback(self->ctx, _servername_callback);
3384 SSL_CTX_set_tlsext_servername_arg(self->ctx, self);
3385 }
3386 Py_RETURN_NONE;
3387#else
3388 PyErr_SetString(PyExc_NotImplementedError,
3389 "The TLS extension servername callback, "
3390 "SSL_CTX_set_tlsext_servername_callback, "
3391 "is not in the current OpenSSL library.");
Antoine Pitrou41f8c4f2013-03-30 16:36:54 +01003392 return NULL;
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003393#endif
3394}
3395
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003396/*[clinic input]
3397_ssl._SSLContext.cert_store_stats
3398
3399Returns quantities of loaded X.509 certificates.
3400
3401X.509 certificates with a CA extension and certificate revocation lists
3402inside the context's cert store.
3403
3404NOTE: Certificates in a capath directory aren't loaded unless they have
3405been used at least once.
3406[clinic start generated code]*/
Christian Heimes9a5395a2013-06-17 15:44:12 +02003407
3408static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003409_ssl__SSLContext_cert_store_stats_impl(PySSLContext *self)
3410/*[clinic end generated code: output=5f356f4d9cca874d input=eb40dd0f6d0e40cf]*/
Christian Heimes9a5395a2013-06-17 15:44:12 +02003411{
3412 X509_STORE *store;
3413 X509_OBJECT *obj;
3414 int x509 = 0, crl = 0, pkey = 0, ca = 0, i;
3415
3416 store = SSL_CTX_get_cert_store(self->ctx);
3417 for (i = 0; i < sk_X509_OBJECT_num(store->objs); i++) {
3418 obj = sk_X509_OBJECT_value(store->objs, i);
3419 switch (obj->type) {
3420 case X509_LU_X509:
3421 x509++;
3422 if (X509_check_ca(obj->data.x509)) {
3423 ca++;
3424 }
3425 break;
3426 case X509_LU_CRL:
3427 crl++;
3428 break;
3429 case X509_LU_PKEY:
3430 pkey++;
3431 break;
3432 default:
3433 /* Ignore X509_LU_FAIL, X509_LU_RETRY, X509_LU_PKEY.
3434 * As far as I can tell they are internal states and never
3435 * stored in a cert store */
3436 break;
3437 }
3438 }
3439 return Py_BuildValue("{sisisi}", "x509", x509, "crl", crl,
3440 "x509_ca", ca);
3441}
3442
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003443/*[clinic input]
3444_ssl._SSLContext.get_ca_certs
3445 binary_form: bool = False
3446
3447Returns a list of dicts with information of loaded CA certs.
3448
3449If the optional argument is True, returns a DER-encoded copy of the CA
3450certificate.
3451
3452NOTE: Certificates in a capath directory aren't loaded unless they have
3453been used at least once.
3454[clinic start generated code]*/
Christian Heimes9a5395a2013-06-17 15:44:12 +02003455
3456static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003457_ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form)
3458/*[clinic end generated code: output=0d58f148f37e2938 input=6887b5a09b7f9076]*/
Christian Heimes9a5395a2013-06-17 15:44:12 +02003459{
3460 X509_STORE *store;
3461 PyObject *ci = NULL, *rlist = NULL;
3462 int i;
Christian Heimes9a5395a2013-06-17 15:44:12 +02003463
3464 if ((rlist = PyList_New(0)) == NULL) {
3465 return NULL;
3466 }
3467
3468 store = SSL_CTX_get_cert_store(self->ctx);
3469 for (i = 0; i < sk_X509_OBJECT_num(store->objs); i++) {
3470 X509_OBJECT *obj;
3471 X509 *cert;
3472
3473 obj = sk_X509_OBJECT_value(store->objs, i);
3474 if (obj->type != X509_LU_X509) {
3475 /* not a x509 cert */
3476 continue;
3477 }
3478 /* CA for any purpose */
3479 cert = obj->data.x509;
3480 if (!X509_check_ca(cert)) {
3481 continue;
3482 }
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003483 if (binary_form) {
Christian Heimes9a5395a2013-06-17 15:44:12 +02003484 ci = _certificate_to_der(cert);
3485 } else {
3486 ci = _decode_certificate(cert);
3487 }
3488 if (ci == NULL) {
3489 goto error;
3490 }
3491 if (PyList_Append(rlist, ci) == -1) {
3492 goto error;
3493 }
3494 Py_CLEAR(ci);
3495 }
3496 return rlist;
3497
3498 error:
3499 Py_XDECREF(ci);
3500 Py_XDECREF(rlist);
3501 return NULL;
3502}
3503
3504
Antoine Pitrou152efa22010-05-16 18:19:27 +00003505static PyGetSetDef context_getsetlist[] = {
Christian Heimes1aa9a752013-12-02 02:41:19 +01003506 {"check_hostname", (getter) get_check_hostname,
3507 (setter) set_check_hostname, NULL},
Antoine Pitroub5218772010-05-21 09:56:06 +00003508 {"options", (getter) get_options,
3509 (setter) set_options, NULL},
Christian Heimes22587792013-11-21 23:56:13 +01003510 {"verify_flags", (getter) get_verify_flags,
3511 (setter) set_verify_flags, NULL},
Antoine Pitrou152efa22010-05-16 18:19:27 +00003512 {"verify_mode", (getter) get_verify_mode,
3513 (setter) set_verify_mode, NULL},
3514 {NULL}, /* sentinel */
3515};
3516
3517static struct PyMethodDef context_methods[] = {
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003518 _SSL__SSLCONTEXT__WRAP_SOCKET_METHODDEF
3519 _SSL__SSLCONTEXT__WRAP_BIO_METHODDEF
3520 _SSL__SSLCONTEXT_SET_CIPHERS_METHODDEF
3521 _SSL__SSLCONTEXT__SET_ALPN_PROTOCOLS_METHODDEF
3522 _SSL__SSLCONTEXT__SET_NPN_PROTOCOLS_METHODDEF
3523 _SSL__SSLCONTEXT_LOAD_CERT_CHAIN_METHODDEF
3524 _SSL__SSLCONTEXT_LOAD_DH_PARAMS_METHODDEF
3525 _SSL__SSLCONTEXT_LOAD_VERIFY_LOCATIONS_METHODDEF
3526 _SSL__SSLCONTEXT_SESSION_STATS_METHODDEF
3527 _SSL__SSLCONTEXT_SET_DEFAULT_VERIFY_PATHS_METHODDEF
3528 _SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF
3529 _SSL__SSLCONTEXT_SET_SERVERNAME_CALLBACK_METHODDEF
3530 _SSL__SSLCONTEXT_CERT_STORE_STATS_METHODDEF
3531 _SSL__SSLCONTEXT_GET_CA_CERTS_METHODDEF
Antoine Pitrou152efa22010-05-16 18:19:27 +00003532 {NULL, NULL} /* sentinel */
3533};
3534
3535static PyTypeObject PySSLContext_Type = {
3536 PyVarObject_HEAD_INIT(NULL, 0)
3537 "_ssl._SSLContext", /*tp_name*/
3538 sizeof(PySSLContext), /*tp_basicsize*/
3539 0, /*tp_itemsize*/
3540 (destructor)context_dealloc, /*tp_dealloc*/
3541 0, /*tp_print*/
3542 0, /*tp_getattr*/
3543 0, /*tp_setattr*/
3544 0, /*tp_reserved*/
3545 0, /*tp_repr*/
3546 0, /*tp_as_number*/
3547 0, /*tp_as_sequence*/
3548 0, /*tp_as_mapping*/
3549 0, /*tp_hash*/
3550 0, /*tp_call*/
3551 0, /*tp_str*/
3552 0, /*tp_getattro*/
3553 0, /*tp_setattro*/
3554 0, /*tp_as_buffer*/
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003555 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00003556 0, /*tp_doc*/
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01003557 (traverseproc) context_traverse, /*tp_traverse*/
3558 (inquiry) context_clear, /*tp_clear*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00003559 0, /*tp_richcompare*/
3560 0, /*tp_weaklistoffset*/
3561 0, /*tp_iter*/
3562 0, /*tp_iternext*/
3563 context_methods, /*tp_methods*/
3564 0, /*tp_members*/
3565 context_getsetlist, /*tp_getset*/
3566 0, /*tp_base*/
3567 0, /*tp_dict*/
3568 0, /*tp_descr_get*/
3569 0, /*tp_descr_set*/
3570 0, /*tp_dictoffset*/
3571 0, /*tp_init*/
3572 0, /*tp_alloc*/
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003573 _ssl__SSLContext, /*tp_new*/
Antoine Pitrou152efa22010-05-16 18:19:27 +00003574};
3575
3576
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003577/*
3578 * MemoryBIO objects
3579 */
3580
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003581/*[clinic input]
3582@classmethod
3583_ssl.MemoryBIO.__new__
3584
3585[clinic start generated code]*/
3586
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003587static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003588_ssl_MemoryBIO_impl(PyTypeObject *type)
3589/*[clinic end generated code: output=8820a58db78330ac input=26d22e4909ecb1b5]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003590{
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003591 BIO *bio;
3592 PySSLMemoryBIO *self;
3593
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003594 bio = BIO_new(BIO_s_mem());
3595 if (bio == NULL) {
3596 PyErr_SetString(PySSLErrorObject,
3597 "failed to allocate BIO");
3598 return NULL;
3599 }
3600 /* Since our BIO is non-blocking an empty read() does not indicate EOF,
3601 * just that no data is currently available. The SSL routines should retry
3602 * the read, which we can achieve by calling BIO_set_retry_read(). */
3603 BIO_set_retry_read(bio);
3604 BIO_set_mem_eof_return(bio, -1);
3605
3606 assert(type != NULL && type->tp_alloc != NULL);
3607 self = (PySSLMemoryBIO *) type->tp_alloc(type, 0);
3608 if (self == NULL) {
3609 BIO_free(bio);
3610 return NULL;
3611 }
3612 self->bio = bio;
3613 self->eof_written = 0;
3614
3615 return (PyObject *) self;
3616}
3617
3618static void
3619memory_bio_dealloc(PySSLMemoryBIO *self)
3620{
3621 BIO_free(self->bio);
3622 Py_TYPE(self)->tp_free(self);
3623}
3624
3625static PyObject *
3626memory_bio_get_pending(PySSLMemoryBIO *self, void *c)
3627{
3628 return PyLong_FromLong(BIO_ctrl_pending(self->bio));
3629}
3630
3631PyDoc_STRVAR(PySSL_memory_bio_pending_doc,
3632"The number of bytes pending in the memory BIO.");
3633
3634static PyObject *
3635memory_bio_get_eof(PySSLMemoryBIO *self, void *c)
3636{
3637 return PyBool_FromLong((BIO_ctrl_pending(self->bio) == 0)
3638 && self->eof_written);
3639}
3640
3641PyDoc_STRVAR(PySSL_memory_bio_eof_doc,
3642"Whether the memory BIO is at EOF.");
3643
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003644/*[clinic input]
3645_ssl.MemoryBIO.read
3646 size as len: int = -1
3647 /
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003648
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003649Read up to size bytes from the memory BIO.
3650
3651If size is not specified, read the entire buffer.
3652If the return value is an empty bytes instance, this means either
3653EOF or that no data is available. Use the "eof" property to
3654distinguish between the two.
3655[clinic start generated code]*/
3656
3657static PyObject *
3658_ssl_MemoryBIO_read_impl(PySSLMemoryBIO *self, int len)
3659/*[clinic end generated code: output=a657aa1e79cd01b3 input=574d7be06a902366]*/
3660{
3661 int avail, nbytes;
3662 PyObject *result;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003663
3664 avail = BIO_ctrl_pending(self->bio);
3665 if ((len < 0) || (len > avail))
3666 len = avail;
3667
3668 result = PyBytes_FromStringAndSize(NULL, len);
3669 if ((result == NULL) || (len == 0))
3670 return result;
3671
3672 nbytes = BIO_read(self->bio, PyBytes_AS_STRING(result), len);
3673 /* There should never be any short reads but check anyway. */
3674 if ((nbytes < len) && (_PyBytes_Resize(&result, len) < 0)) {
3675 Py_DECREF(result);
3676 return NULL;
3677 }
3678
3679 return result;
3680}
3681
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003682/*[clinic input]
3683_ssl.MemoryBIO.write
3684 b: Py_buffer
3685 /
3686
3687Writes the bytes b into the memory BIO.
3688
3689Returns the number of bytes written.
3690[clinic start generated code]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003691
3692static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003693_ssl_MemoryBIO_write_impl(PySSLMemoryBIO *self, Py_buffer *b)
3694/*[clinic end generated code: output=156ec59110d75935 input=e45757b3e17c4808]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003695{
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003696 int nbytes;
3697
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003698 if (b->len > INT_MAX) {
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003699 PyErr_Format(PyExc_OverflowError,
3700 "string longer than %d bytes", INT_MAX);
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003701 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003702 }
3703
3704 if (self->eof_written) {
3705 PyErr_SetString(PySSLErrorObject,
3706 "cannot write() after write_eof()");
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003707 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003708 }
3709
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003710 nbytes = BIO_write(self->bio, b->buf, b->len);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003711 if (nbytes < 0) {
3712 _setSSLError(NULL, 0, __FILE__, __LINE__);
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003713 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003714 }
3715
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003716 return PyLong_FromLong(nbytes);
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003717}
3718
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003719/*[clinic input]
3720_ssl.MemoryBIO.write_eof
3721
3722Write an EOF marker to the memory BIO.
3723
3724When all data has been read, the "eof" property will be True.
3725[clinic start generated code]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003726
3727static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003728_ssl_MemoryBIO_write_eof_impl(PySSLMemoryBIO *self)
3729/*[clinic end generated code: output=d4106276ccd1ed34 input=56a945f1d29e8bd6]*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003730{
3731 self->eof_written = 1;
3732 /* After an EOF is written, a zero return from read() should be a real EOF
3733 * i.e. it should not be retried. Clear the SHOULD_RETRY flag. */
3734 BIO_clear_retry_flags(self->bio);
3735 BIO_set_mem_eof_return(self->bio, 0);
3736
3737 Py_RETURN_NONE;
3738}
3739
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003740static PyGetSetDef memory_bio_getsetlist[] = {
3741 {"pending", (getter) memory_bio_get_pending, NULL,
3742 PySSL_memory_bio_pending_doc},
3743 {"eof", (getter) memory_bio_get_eof, NULL,
3744 PySSL_memory_bio_eof_doc},
3745 {NULL}, /* sentinel */
3746};
3747
3748static struct PyMethodDef memory_bio_methods[] = {
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003749 _SSL_MEMORYBIO_READ_METHODDEF
3750 _SSL_MEMORYBIO_WRITE_METHODDEF
3751 _SSL_MEMORYBIO_WRITE_EOF_METHODDEF
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003752 {NULL, NULL} /* sentinel */
3753};
3754
3755static PyTypeObject PySSLMemoryBIO_Type = {
3756 PyVarObject_HEAD_INIT(NULL, 0)
3757 "_ssl.MemoryBIO", /*tp_name*/
3758 sizeof(PySSLMemoryBIO), /*tp_basicsize*/
3759 0, /*tp_itemsize*/
3760 (destructor)memory_bio_dealloc, /*tp_dealloc*/
3761 0, /*tp_print*/
3762 0, /*tp_getattr*/
3763 0, /*tp_setattr*/
3764 0, /*tp_reserved*/
3765 0, /*tp_repr*/
3766 0, /*tp_as_number*/
3767 0, /*tp_as_sequence*/
3768 0, /*tp_as_mapping*/
3769 0, /*tp_hash*/
3770 0, /*tp_call*/
3771 0, /*tp_str*/
3772 0, /*tp_getattro*/
3773 0, /*tp_setattro*/
3774 0, /*tp_as_buffer*/
3775 Py_TPFLAGS_DEFAULT, /*tp_flags*/
3776 0, /*tp_doc*/
3777 0, /*tp_traverse*/
3778 0, /*tp_clear*/
3779 0, /*tp_richcompare*/
3780 0, /*tp_weaklistoffset*/
3781 0, /*tp_iter*/
3782 0, /*tp_iternext*/
3783 memory_bio_methods, /*tp_methods*/
3784 0, /*tp_members*/
3785 memory_bio_getsetlist, /*tp_getset*/
3786 0, /*tp_base*/
3787 0, /*tp_dict*/
3788 0, /*tp_descr_get*/
3789 0, /*tp_descr_set*/
3790 0, /*tp_dictoffset*/
3791 0, /*tp_init*/
3792 0, /*tp_alloc*/
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003793 _ssl_MemoryBIO, /*tp_new*/
Antoine Pitroub1fdf472014-10-05 20:41:53 +02003794};
3795
Antoine Pitrou152efa22010-05-16 18:19:27 +00003796
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003797/* helper routines for seeding the SSL PRNG */
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003798/*[clinic input]
3799_ssl.RAND_add
Larry Hastingsdbfdc382015-05-04 06:59:46 -07003800 string as view: Py_buffer(accept={str, buffer})
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003801 entropy: double
3802 /
3803
3804Mix string into the OpenSSL PRNG state.
3805
3806entropy (a float) is a lower bound on the entropy contained in
3807string. See RFC 1750.
3808[clinic start generated code]*/
3809
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003810static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003811_ssl_RAND_add_impl(PyModuleDef *module, Py_buffer *view, double entropy)
Larry Hastingsdbfdc382015-05-04 06:59:46 -07003812/*[clinic end generated code: output=0f8d5c8cce328958 input=580c85e6a3a4fe29]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003813{
Serhiy Storchaka8490f5a2015-03-20 09:00:36 +02003814 const char *buf;
Victor Stinner2e57b4e2014-07-01 16:37:17 +02003815 Py_ssize_t len, written;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003816
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003817 buf = (const char *)view->buf;
3818 len = view->len;
Victor Stinner2e57b4e2014-07-01 16:37:17 +02003819 do {
3820 written = Py_MIN(len, INT_MAX);
3821 RAND_add(buf, (int)written, entropy);
3822 buf += written;
3823 len -= written;
3824 } while (len);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003825 Py_INCREF(Py_None);
3826 return Py_None;
3827}
3828
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003829static PyObject *
Victor Stinner99c8b162011-05-24 12:05:19 +02003830PySSL_RAND(int len, int pseudo)
3831{
3832 int ok;
3833 PyObject *bytes;
3834 unsigned long err;
3835 const char *errstr;
3836 PyObject *v;
3837
Victor Stinner1e81a392013-12-19 16:47:04 +01003838 if (len < 0) {
3839 PyErr_SetString(PyExc_ValueError, "num must be positive");
3840 return NULL;
3841 }
3842
Victor Stinner99c8b162011-05-24 12:05:19 +02003843 bytes = PyBytes_FromStringAndSize(NULL, len);
3844 if (bytes == NULL)
3845 return NULL;
3846 if (pseudo) {
3847 ok = RAND_pseudo_bytes((unsigned char*)PyBytes_AS_STRING(bytes), len);
3848 if (ok == 0 || ok == 1)
3849 return Py_BuildValue("NO", bytes, ok == 1 ? Py_True : Py_False);
3850 }
3851 else {
3852 ok = RAND_bytes((unsigned char*)PyBytes_AS_STRING(bytes), len);
3853 if (ok == 1)
3854 return bytes;
3855 }
3856 Py_DECREF(bytes);
3857
3858 err = ERR_get_error();
3859 errstr = ERR_reason_error_string(err);
3860 v = Py_BuildValue("(ks)", err, errstr);
3861 if (v != NULL) {
3862 PyErr_SetObject(PySSLErrorObject, v);
3863 Py_DECREF(v);
3864 }
3865 return NULL;
3866}
3867
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003868/*[clinic input]
3869_ssl.RAND_bytes
3870 n: int
3871 /
3872
3873Generate n cryptographically strong pseudo-random bytes.
3874[clinic start generated code]*/
3875
Victor Stinner99c8b162011-05-24 12:05:19 +02003876static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003877_ssl_RAND_bytes_impl(PyModuleDef *module, int n)
3878/*[clinic end generated code: output=7d8741bdc1d435f3 input=678ddf2872dfebfc]*/
Victor Stinner99c8b162011-05-24 12:05:19 +02003879{
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003880 return PySSL_RAND(n, 0);
Victor Stinner99c8b162011-05-24 12:05:19 +02003881}
3882
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003883/*[clinic input]
3884_ssl.RAND_pseudo_bytes
3885 n: int
3886 /
3887
3888Generate n pseudo-random bytes.
3889
3890Return a pair (bytes, is_cryptographic). is_cryptographic is True
3891if the bytes generated are cryptographically strong.
3892[clinic start generated code]*/
Victor Stinner99c8b162011-05-24 12:05:19 +02003893
3894static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003895_ssl_RAND_pseudo_bytes_impl(PyModuleDef *module, int n)
3896/*[clinic end generated code: output=dd673813107f3875 input=58312bd53f9bbdd0]*/
Victor Stinner99c8b162011-05-24 12:05:19 +02003897{
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003898 return PySSL_RAND(n, 1);
Victor Stinner99c8b162011-05-24 12:05:19 +02003899}
3900
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003901/*[clinic input]
3902_ssl.RAND_status
3903
3904Returns 1 if the OpenSSL PRNG has been seeded with enough data and 0 if not.
3905
3906It is necessary to seed the PRNG with RAND_add() on some platforms before
3907using the ssl() function.
3908[clinic start generated code]*/
Victor Stinner99c8b162011-05-24 12:05:19 +02003909
3910static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003911_ssl_RAND_status_impl(PyModuleDef *module)
3912/*[clinic end generated code: output=7f7ef57bc7dd1d1c input=8a774b02d1dc81f3]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003913{
Christian Heimes217cfd12007-12-02 14:31:20 +00003914 return PyLong_FromLong(RAND_status());
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003915}
3916
Victor Stinnerbeeb5122014-11-28 13:28:25 +01003917#ifdef HAVE_RAND_EGD
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003918/*[clinic input]
3919_ssl.RAND_egd
3920 path: object(converter="PyUnicode_FSConverter")
3921 /
3922
3923Queries the entropy gather daemon (EGD) on the socket named by 'path'.
3924
3925Returns number of bytes read. Raises SSLError if connection to EGD
3926fails or if it does not provide enough data to seed PRNG.
3927[clinic start generated code]*/
3928
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003929static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003930_ssl_RAND_egd_impl(PyModuleDef *module, PyObject *path)
3931/*[clinic end generated code: output=8e728e501e28541b input=1aeb7eb948312195]*/
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003932{
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003933 int bytes = RAND_egd(PyBytes_AsString(path));
Victor Stinnerf9faaad2010-05-16 21:36:37 +00003934 Py_DECREF(path);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003935 if (bytes == -1) {
Antoine Pitrou525807b2010-05-12 14:05:24 +00003936 PyErr_SetString(PySSLErrorObject,
3937 "EGD connection failed or EGD did not return "
3938 "enough data to seed the PRNG");
3939 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003940 }
Christian Heimes217cfd12007-12-02 14:31:20 +00003941 return PyLong_FromLong(bytes);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003942}
Victor Stinnerbeeb5122014-11-28 13:28:25 +01003943#endif /* HAVE_RAND_EGD */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003944
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00003945
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003946
3947/*[clinic input]
3948_ssl.get_default_verify_paths
3949
3950Return search paths and environment vars that are used by SSLContext's set_default_verify_paths() to load default CAs.
3951
3952The values are 'cert_file_env', 'cert_file', 'cert_dir_env', 'cert_dir'.
3953[clinic start generated code]*/
Christian Heimes6d7ad132013-06-09 18:02:55 +02003954
3955static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03003956_ssl_get_default_verify_paths_impl(PyModuleDef *module)
3957/*[clinic end generated code: output=5a2820ce7e3304d3 input=5210c953d98c3eb5]*/
Christian Heimes6d7ad132013-06-09 18:02:55 +02003958{
3959 PyObject *ofile_env = NULL;
3960 PyObject *ofile = NULL;
3961 PyObject *odir_env = NULL;
3962 PyObject *odir = NULL;
3963
Benjamin Petersond113c962015-07-18 10:59:13 -07003964#define CONVERT(info, target) { \
Christian Heimes6d7ad132013-06-09 18:02:55 +02003965 const char *tmp = (info); \
3966 target = NULL; \
3967 if (!tmp) { Py_INCREF(Py_None); target = Py_None; } \
3968 else if ((target = PyUnicode_DecodeFSDefault(tmp)) == NULL) { \
3969 target = PyBytes_FromString(tmp); } \
3970 if (!target) goto error; \
Benjamin Peterson025a1fd2015-11-14 15:12:38 -08003971 }
Christian Heimes6d7ad132013-06-09 18:02:55 +02003972
Benjamin Petersond113c962015-07-18 10:59:13 -07003973 CONVERT(X509_get_default_cert_file_env(), ofile_env);
3974 CONVERT(X509_get_default_cert_file(), ofile);
3975 CONVERT(X509_get_default_cert_dir_env(), odir_env);
3976 CONVERT(X509_get_default_cert_dir(), odir);
3977#undef CONVERT
Christian Heimes6d7ad132013-06-09 18:02:55 +02003978
Christian Heimes200bb1b2013-06-14 15:14:29 +02003979 return Py_BuildValue("NNNN", ofile_env, ofile, odir_env, odir);
Christian Heimes6d7ad132013-06-09 18:02:55 +02003980
3981 error:
3982 Py_XDECREF(ofile_env);
3983 Py_XDECREF(ofile);
3984 Py_XDECREF(odir_env);
3985 Py_XDECREF(odir);
3986 return NULL;
3987}
3988
Christian Heimesa6bc95a2013-11-17 19:59:14 +01003989static PyObject*
3990asn1obj2py(ASN1_OBJECT *obj)
3991{
3992 int nid;
3993 const char *ln, *sn;
3994 char buf[100];
Victor Stinnercd752982014-07-07 21:52:29 +02003995 Py_ssize_t buflen;
Christian Heimesa6bc95a2013-11-17 19:59:14 +01003996
3997 nid = OBJ_obj2nid(obj);
3998 if (nid == NID_undef) {
3999 PyErr_Format(PyExc_ValueError, "Unknown object");
4000 return NULL;
4001 }
4002 sn = OBJ_nid2sn(nid);
4003 ln = OBJ_nid2ln(nid);
4004 buflen = OBJ_obj2txt(buf, sizeof(buf), obj, 1);
4005 if (buflen < 0) {
4006 _setSSLError(NULL, 0, __FILE__, __LINE__);
4007 return NULL;
4008 }
4009 if (buflen) {
4010 return Py_BuildValue("isss#", nid, sn, ln, buf, buflen);
4011 } else {
4012 return Py_BuildValue("issO", nid, sn, ln, Py_None);
4013 }
4014}
4015
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004016/*[clinic input]
4017_ssl.txt2obj
4018 txt: str
4019 name: bool = False
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004020
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004021Lookup NID, short name, long name and OID of an ASN1_OBJECT.
4022
4023By default objects are looked up by OID. With name=True short and
4024long name are also matched.
4025[clinic start generated code]*/
4026
4027static PyObject *
4028_ssl_txt2obj_impl(PyModuleDef *module, const char *txt, int name)
4029/*[clinic end generated code: output=2ae2c30531b8809f input=1c1e7d0aa7c48602]*/
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004030{
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004031 PyObject *result = NULL;
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004032 ASN1_OBJECT *obj;
4033
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004034 obj = OBJ_txt2obj(txt, name ? 0 : 1);
4035 if (obj == NULL) {
Christian Heimes5398e1a2013-11-22 16:20:53 +01004036 PyErr_Format(PyExc_ValueError, "unknown object '%.100s'", txt);
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004037 return NULL;
4038 }
4039 result = asn1obj2py(obj);
4040 ASN1_OBJECT_free(obj);
4041 return result;
4042}
4043
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004044/*[clinic input]
4045_ssl.nid2obj
4046 nid: int
4047 /
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004048
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004049Lookup NID, short name, long name and OID of an ASN1_OBJECT by NID.
4050[clinic start generated code]*/
4051
4052static PyObject *
4053_ssl_nid2obj_impl(PyModuleDef *module, int nid)
4054/*[clinic end generated code: output=8db1df89e44badb8 input=51787a3bee7d8f98]*/
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004055{
4056 PyObject *result = NULL;
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004057 ASN1_OBJECT *obj;
4058
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004059 if (nid < NID_undef) {
Christian Heimes5398e1a2013-11-22 16:20:53 +01004060 PyErr_SetString(PyExc_ValueError, "NID must be positive.");
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004061 return NULL;
4062 }
4063 obj = OBJ_nid2obj(nid);
4064 if (obj == NULL) {
Christian Heimes5398e1a2013-11-22 16:20:53 +01004065 PyErr_Format(PyExc_ValueError, "unknown NID %i", nid);
Christian Heimesa6bc95a2013-11-17 19:59:14 +01004066 return NULL;
4067 }
4068 result = asn1obj2py(obj);
4069 ASN1_OBJECT_free(obj);
4070 return result;
4071}
4072
Christian Heimes46bebee2013-06-09 19:03:31 +02004073#ifdef _MSC_VER
Christian Heimes44109d72013-11-22 01:51:30 +01004074
4075static PyObject*
4076certEncodingType(DWORD encodingType)
4077{
4078 static PyObject *x509_asn = NULL;
4079 static PyObject *pkcs_7_asn = NULL;
4080
4081 if (x509_asn == NULL) {
4082 x509_asn = PyUnicode_InternFromString("x509_asn");
4083 if (x509_asn == NULL)
4084 return NULL;
4085 }
4086 if (pkcs_7_asn == NULL) {
4087 pkcs_7_asn = PyUnicode_InternFromString("pkcs_7_asn");
4088 if (pkcs_7_asn == NULL)
4089 return NULL;
4090 }
4091 switch(encodingType) {
4092 case X509_ASN_ENCODING:
4093 Py_INCREF(x509_asn);
4094 return x509_asn;
4095 case PKCS_7_ASN_ENCODING:
4096 Py_INCREF(pkcs_7_asn);
4097 return pkcs_7_asn;
4098 default:
4099 return PyLong_FromLong(encodingType);
4100 }
4101}
4102
4103static PyObject*
4104parseKeyUsage(PCCERT_CONTEXT pCertCtx, DWORD flags)
4105{
4106 CERT_ENHKEY_USAGE *usage;
4107 DWORD size, error, i;
4108 PyObject *retval;
4109
4110 if (!CertGetEnhancedKeyUsage(pCertCtx, flags, NULL, &size)) {
4111 error = GetLastError();
4112 if (error == CRYPT_E_NOT_FOUND) {
4113 Py_RETURN_TRUE;
4114 }
4115 return PyErr_SetFromWindowsErr(error);
4116 }
4117
4118 usage = (CERT_ENHKEY_USAGE*)PyMem_Malloc(size);
4119 if (usage == NULL) {
4120 return PyErr_NoMemory();
4121 }
4122
4123 /* Now get the actual enhanced usage property */
4124 if (!CertGetEnhancedKeyUsage(pCertCtx, flags, usage, &size)) {
4125 PyMem_Free(usage);
4126 error = GetLastError();
4127 if (error == CRYPT_E_NOT_FOUND) {
4128 Py_RETURN_TRUE;
4129 }
4130 return PyErr_SetFromWindowsErr(error);
4131 }
4132 retval = PySet_New(NULL);
4133 if (retval == NULL) {
4134 goto error;
4135 }
4136 for (i = 0; i < usage->cUsageIdentifier; ++i) {
4137 if (usage->rgpszUsageIdentifier[i]) {
4138 PyObject *oid;
4139 int err;
4140 oid = PyUnicode_FromString(usage->rgpszUsageIdentifier[i]);
4141 if (oid == NULL) {
4142 Py_CLEAR(retval);
4143 goto error;
4144 }
4145 err = PySet_Add(retval, oid);
4146 Py_DECREF(oid);
4147 if (err == -1) {
4148 Py_CLEAR(retval);
4149 goto error;
4150 }
4151 }
4152 }
4153 error:
4154 PyMem_Free(usage);
4155 return retval;
4156}
4157
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004158/*[clinic input]
4159_ssl.enum_certificates
4160 store_name: str
4161
4162Retrieve certificates from Windows' cert store.
4163
4164store_name may be one of 'CA', 'ROOT' or 'MY'. The system may provide
4165more cert storages, too. The function returns a list of (bytes,
4166encoding_type, trust) tuples. The encoding_type flag can be interpreted
4167with X509_ASN_ENCODING or PKCS_7_ASN_ENCODING. The trust setting is either
4168a set of OIDs or the boolean True.
4169[clinic start generated code]*/
Bill Janssen40a0f662008-08-12 16:56:25 +00004170
Christian Heimes46bebee2013-06-09 19:03:31 +02004171static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004172_ssl_enum_certificates_impl(PyModuleDef *module, const char *store_name)
4173/*[clinic end generated code: output=cc4ebc10b8adacfc input=915f60d70461ea4e]*/
Christian Heimes46bebee2013-06-09 19:03:31 +02004174{
Christian Heimes46bebee2013-06-09 19:03:31 +02004175 HCERTSTORE hStore = NULL;
Christian Heimes44109d72013-11-22 01:51:30 +01004176 PCCERT_CONTEXT pCertCtx = NULL;
4177 PyObject *keyusage = NULL, *cert = NULL, *enc = NULL, *tup = NULL;
Christian Heimes46bebee2013-06-09 19:03:31 +02004178 PyObject *result = NULL;
Christian Heimes46bebee2013-06-09 19:03:31 +02004179
Christian Heimes44109d72013-11-22 01:51:30 +01004180 result = PyList_New(0);
4181 if (result == NULL) {
4182 return NULL;
4183 }
4184 hStore = CertOpenSystemStore((HCRYPTPROV)NULL, store_name);
4185 if (hStore == NULL) {
Christian Heimes46bebee2013-06-09 19:03:31 +02004186 Py_DECREF(result);
4187 return PyErr_SetFromWindowsErr(GetLastError());
4188 }
4189
Christian Heimes44109d72013-11-22 01:51:30 +01004190 while (pCertCtx = CertEnumCertificatesInStore(hStore, pCertCtx)) {
4191 cert = PyBytes_FromStringAndSize((const char*)pCertCtx->pbCertEncoded,
4192 pCertCtx->cbCertEncoded);
4193 if (!cert) {
4194 Py_CLEAR(result);
4195 break;
Christian Heimes46bebee2013-06-09 19:03:31 +02004196 }
Christian Heimes44109d72013-11-22 01:51:30 +01004197 if ((enc = certEncodingType(pCertCtx->dwCertEncodingType)) == NULL) {
4198 Py_CLEAR(result);
4199 break;
Christian Heimes46bebee2013-06-09 19:03:31 +02004200 }
Christian Heimes44109d72013-11-22 01:51:30 +01004201 keyusage = parseKeyUsage(pCertCtx, CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG);
4202 if (keyusage == Py_True) {
4203 Py_DECREF(keyusage);
4204 keyusage = parseKeyUsage(pCertCtx, CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG);
Christian Heimes46bebee2013-06-09 19:03:31 +02004205 }
Christian Heimes44109d72013-11-22 01:51:30 +01004206 if (keyusage == NULL) {
4207 Py_CLEAR(result);
4208 break;
Christian Heimes46bebee2013-06-09 19:03:31 +02004209 }
Christian Heimes44109d72013-11-22 01:51:30 +01004210 if ((tup = PyTuple_New(3)) == NULL) {
4211 Py_CLEAR(result);
4212 break;
4213 }
4214 PyTuple_SET_ITEM(tup, 0, cert);
4215 cert = NULL;
4216 PyTuple_SET_ITEM(tup, 1, enc);
4217 enc = NULL;
4218 PyTuple_SET_ITEM(tup, 2, keyusage);
4219 keyusage = NULL;
4220 if (PyList_Append(result, tup) < 0) {
4221 Py_CLEAR(result);
4222 break;
4223 }
4224 Py_CLEAR(tup);
4225 }
4226 if (pCertCtx) {
4227 /* loop ended with an error, need to clean up context manually */
4228 CertFreeCertificateContext(pCertCtx);
Christian Heimes46bebee2013-06-09 19:03:31 +02004229 }
4230
4231 /* In error cases cert, enc and tup may not be NULL */
4232 Py_XDECREF(cert);
4233 Py_XDECREF(enc);
Christian Heimes44109d72013-11-22 01:51:30 +01004234 Py_XDECREF(keyusage);
Christian Heimes46bebee2013-06-09 19:03:31 +02004235 Py_XDECREF(tup);
4236
4237 if (!CertCloseStore(hStore, 0)) {
4238 /* This error case might shadow another exception.*/
Christian Heimes44109d72013-11-22 01:51:30 +01004239 Py_XDECREF(result);
4240 return PyErr_SetFromWindowsErr(GetLastError());
4241 }
4242 return result;
4243}
4244
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004245/*[clinic input]
4246_ssl.enum_crls
4247 store_name: str
4248
4249Retrieve CRLs from Windows' cert store.
4250
4251store_name may be one of 'CA', 'ROOT' or 'MY'. The system may provide
4252more cert storages, too. The function returns a list of (bytes,
4253encoding_type) tuples. The encoding_type flag can be interpreted with
4254X509_ASN_ENCODING or PKCS_7_ASN_ENCODING.
4255[clinic start generated code]*/
Christian Heimes44109d72013-11-22 01:51:30 +01004256
4257static PyObject *
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004258_ssl_enum_crls_impl(PyModuleDef *module, const char *store_name)
4259/*[clinic end generated code: output=763490a2aa1c50d5 input=a1f1d7629f1c5d3d]*/
Christian Heimes44109d72013-11-22 01:51:30 +01004260{
Christian Heimes44109d72013-11-22 01:51:30 +01004261 HCERTSTORE hStore = NULL;
4262 PCCRL_CONTEXT pCrlCtx = NULL;
4263 PyObject *crl = NULL, *enc = NULL, *tup = NULL;
4264 PyObject *result = NULL;
4265
Christian Heimes44109d72013-11-22 01:51:30 +01004266 result = PyList_New(0);
4267 if (result == NULL) {
4268 return NULL;
4269 }
4270 hStore = CertOpenSystemStore((HCRYPTPROV)NULL, store_name);
4271 if (hStore == NULL) {
Christian Heimes46bebee2013-06-09 19:03:31 +02004272 Py_DECREF(result);
4273 return PyErr_SetFromWindowsErr(GetLastError());
4274 }
Christian Heimes44109d72013-11-22 01:51:30 +01004275
4276 while (pCrlCtx = CertEnumCRLsInStore(hStore, pCrlCtx)) {
4277 crl = PyBytes_FromStringAndSize((const char*)pCrlCtx->pbCrlEncoded,
4278 pCrlCtx->cbCrlEncoded);
4279 if (!crl) {
4280 Py_CLEAR(result);
4281 break;
4282 }
4283 if ((enc = certEncodingType(pCrlCtx->dwCertEncodingType)) == NULL) {
4284 Py_CLEAR(result);
4285 break;
4286 }
4287 if ((tup = PyTuple_New(2)) == NULL) {
4288 Py_CLEAR(result);
4289 break;
4290 }
4291 PyTuple_SET_ITEM(tup, 0, crl);
4292 crl = NULL;
4293 PyTuple_SET_ITEM(tup, 1, enc);
4294 enc = NULL;
4295
4296 if (PyList_Append(result, tup) < 0) {
4297 Py_CLEAR(result);
4298 break;
4299 }
4300 Py_CLEAR(tup);
Christian Heimes46bebee2013-06-09 19:03:31 +02004301 }
Christian Heimes44109d72013-11-22 01:51:30 +01004302 if (pCrlCtx) {
4303 /* loop ended with an error, need to clean up context manually */
4304 CertFreeCRLContext(pCrlCtx);
4305 }
4306
4307 /* In error cases cert, enc and tup may not be NULL */
4308 Py_XDECREF(crl);
4309 Py_XDECREF(enc);
4310 Py_XDECREF(tup);
4311
4312 if (!CertCloseStore(hStore, 0)) {
4313 /* This error case might shadow another exception.*/
4314 Py_XDECREF(result);
4315 return PyErr_SetFromWindowsErr(GetLastError());
4316 }
4317 return result;
Christian Heimes46bebee2013-06-09 19:03:31 +02004318}
Christian Heimes44109d72013-11-22 01:51:30 +01004319
4320#endif /* _MSC_VER */
Bill Janssen40a0f662008-08-12 16:56:25 +00004321
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004322/* List of functions exported by this module. */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004323static PyMethodDef PySSL_methods[] = {
Serhiy Storchaka4b7b82f2015-05-03 16:14:08 +03004324 _SSL__TEST_DECODE_CERT_METHODDEF
4325 _SSL_RAND_ADD_METHODDEF
4326 _SSL_RAND_BYTES_METHODDEF
4327 _SSL_RAND_PSEUDO_BYTES_METHODDEF
4328 _SSL_RAND_EGD_METHODDEF
4329 _SSL_RAND_STATUS_METHODDEF
4330 _SSL_GET_DEFAULT_VERIFY_PATHS_METHODDEF
4331 _SSL_ENUM_CERTIFICATES_METHODDEF
4332 _SSL_ENUM_CRLS_METHODDEF
4333 _SSL_TXT2OBJ_METHODDEF
4334 _SSL_NID2OBJ_METHODDEF
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004335 {NULL, NULL} /* Sentinel */
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004336};
4337
4338
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004339#ifdef WITH_THREAD
4340
4341/* an implementation of OpenSSL threading operations in terms
4342 of the Python C thread library */
4343
4344static PyThread_type_lock *_ssl_locks = NULL;
4345
Christian Heimes4d98ca92013-08-19 17:36:29 +02004346#if OPENSSL_VERSION_NUMBER >= 0x10000000
4347/* use new CRYPTO_THREADID API. */
4348static void
4349_ssl_threadid_callback(CRYPTO_THREADID *id)
4350{
4351 CRYPTO_THREADID_set_numeric(id,
4352 (unsigned long)PyThread_get_thread_ident());
4353}
4354#else
4355/* deprecated CRYPTO_set_id_callback() API. */
4356static unsigned long
4357_ssl_thread_id_function (void) {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004358 return PyThread_get_thread_ident();
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004359}
Christian Heimes4d98ca92013-08-19 17:36:29 +02004360#endif
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004361
Bill Janssen6e027db2007-11-15 22:23:56 +00004362static void _ssl_thread_locking_function
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004363 (int mode, int n, const char *file, int line) {
4364 /* this function is needed to perform locking on shared data
4365 structures. (Note that OpenSSL uses a number of global data
4366 structures that will be implicitly shared whenever multiple
4367 threads use OpenSSL.) Multi-threaded applications will
4368 crash at random if it is not set.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004369
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004370 locking_function() must be able to handle up to
4371 CRYPTO_num_locks() different mutex locks. It sets the n-th
4372 lock if mode & CRYPTO_LOCK, and releases it otherwise.
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004373
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004374 file and line are the file number of the function setting the
4375 lock. They can be useful for debugging.
4376 */
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004377
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004378 if ((_ssl_locks == NULL) ||
4379 (n < 0) || ((unsigned)n >= _ssl_locks_count))
4380 return;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004381
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004382 if (mode & CRYPTO_LOCK) {
4383 PyThread_acquire_lock(_ssl_locks[n], 1);
4384 } else {
4385 PyThread_release_lock(_ssl_locks[n]);
4386 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004387}
4388
4389static int _setup_ssl_threads(void) {
4390
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004391 unsigned int i;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004392
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004393 if (_ssl_locks == NULL) {
4394 _ssl_locks_count = CRYPTO_num_locks();
Serhiy Storchaka1a1ff292015-02-16 13:28:22 +02004395 _ssl_locks = PyMem_New(PyThread_type_lock, _ssl_locks_count);
4396 if (_ssl_locks == NULL) {
4397 PyErr_NoMemory();
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004398 return 0;
Serhiy Storchaka1a1ff292015-02-16 13:28:22 +02004399 }
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004400 memset(_ssl_locks, 0,
4401 sizeof(PyThread_type_lock) * _ssl_locks_count);
4402 for (i = 0; i < _ssl_locks_count; i++) {
4403 _ssl_locks[i] = PyThread_allocate_lock();
4404 if (_ssl_locks[i] == NULL) {
4405 unsigned int j;
4406 for (j = 0; j < i; j++) {
4407 PyThread_free_lock(_ssl_locks[j]);
4408 }
Victor Stinnerb6404912013-07-07 16:21:41 +02004409 PyMem_Free(_ssl_locks);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004410 return 0;
4411 }
4412 }
4413 CRYPTO_set_locking_callback(_ssl_thread_locking_function);
Christian Heimes4d98ca92013-08-19 17:36:29 +02004414#if OPENSSL_VERSION_NUMBER >= 0x10000000
4415 CRYPTO_THREADID_set_callback(_ssl_threadid_callback);
4416#else
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004417 CRYPTO_set_id_callback(_ssl_thread_id_function);
Christian Heimes4d98ca92013-08-19 17:36:29 +02004418#endif
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004419 }
4420 return 1;
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004421}
4422
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004423#endif /* def HAVE_THREAD */
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004424
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004425PyDoc_STRVAR(module_doc,
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004426"Implementation module for SSL socket operations. See the socket module\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004427for documentation.");
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004428
Martin v. Löwis1a214512008-06-11 05:26:20 +00004429
4430static struct PyModuleDef _sslmodule = {
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004431 PyModuleDef_HEAD_INIT,
4432 "_ssl",
4433 module_doc,
4434 -1,
4435 PySSL_methods,
4436 NULL,
4437 NULL,
4438 NULL,
4439 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00004440};
4441
Antoine Pitroub9ac25d2011-07-08 18:47:06 +02004442
4443static void
4444parse_openssl_version(unsigned long libver,
4445 unsigned int *major, unsigned int *minor,
4446 unsigned int *fix, unsigned int *patch,
4447 unsigned int *status)
4448{
4449 *status = libver & 0xF;
4450 libver >>= 4;
4451 *patch = libver & 0xFF;
4452 libver >>= 8;
4453 *fix = libver & 0xFF;
4454 libver >>= 8;
4455 *minor = libver & 0xFF;
4456 libver >>= 8;
4457 *major = libver & 0xFF;
4458}
4459
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004460PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00004461PyInit__ssl(void)
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004462{
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004463 PyObject *m, *d, *r;
4464 unsigned long libver;
4465 unsigned int major, minor, fix, patch, status;
4466 PySocketModule_APIObject *socket_api;
Antoine Pitrou3b36fb12012-06-22 21:11:52 +02004467 struct py_ssl_error_code *errcode;
4468 struct py_ssl_library_code *libcode;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004469
Antoine Pitrou152efa22010-05-16 18:19:27 +00004470 if (PyType_Ready(&PySSLContext_Type) < 0)
4471 return NULL;
4472 if (PyType_Ready(&PySSLSocket_Type) < 0)
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004473 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02004474 if (PyType_Ready(&PySSLMemoryBIO_Type) < 0)
4475 return NULL;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004476
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004477 m = PyModule_Create(&_sslmodule);
4478 if (m == NULL)
4479 return NULL;
4480 d = PyModule_GetDict(m);
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004481
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004482 /* Load _socket module and its C API */
4483 socket_api = PySocketModule_ImportModuleAndAPI();
4484 if (!socket_api)
4485 return NULL;
4486 PySocketModule = *socket_api;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004487
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004488 /* Init OpenSSL */
4489 SSL_load_error_strings();
4490 SSL_library_init();
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004491#ifdef WITH_THREAD
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004492 /* note that this will start threading if not already started */
4493 if (!_setup_ssl_threads()) {
4494 return NULL;
4495 }
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004496#endif
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004497 OpenSSL_add_all_algorithms();
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004498
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004499 /* Add symbols to module dict */
Antoine Pitrou3b36fb12012-06-22 21:11:52 +02004500 sslerror_type_slots[0].pfunc = PyExc_OSError;
4501 PySSLErrorObject = PyType_FromSpec(&sslerror_type_spec);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004502 if (PySSLErrorObject == NULL)
4503 return NULL;
Antoine Pitrou3b36fb12012-06-22 21:11:52 +02004504
Antoine Pitrou41032a62011-10-27 23:56:55 +02004505 PySSLZeroReturnErrorObject = PyErr_NewExceptionWithDoc(
4506 "ssl.SSLZeroReturnError", SSLZeroReturnError_doc,
4507 PySSLErrorObject, NULL);
4508 PySSLWantReadErrorObject = PyErr_NewExceptionWithDoc(
4509 "ssl.SSLWantReadError", SSLWantReadError_doc,
4510 PySSLErrorObject, NULL);
4511 PySSLWantWriteErrorObject = PyErr_NewExceptionWithDoc(
4512 "ssl.SSLWantWriteError", SSLWantWriteError_doc,
4513 PySSLErrorObject, NULL);
4514 PySSLSyscallErrorObject = PyErr_NewExceptionWithDoc(
4515 "ssl.SSLSyscallError", SSLSyscallError_doc,
4516 PySSLErrorObject, NULL);
4517 PySSLEOFErrorObject = PyErr_NewExceptionWithDoc(
4518 "ssl.SSLEOFError", SSLEOFError_doc,
4519 PySSLErrorObject, NULL);
4520 if (PySSLZeroReturnErrorObject == NULL
4521 || PySSLWantReadErrorObject == NULL
4522 || PySSLWantWriteErrorObject == NULL
4523 || PySSLSyscallErrorObject == NULL
4524 || PySSLEOFErrorObject == NULL)
4525 return NULL;
4526 if (PyDict_SetItemString(d, "SSLError", PySSLErrorObject) != 0
4527 || PyDict_SetItemString(d, "SSLZeroReturnError", PySSLZeroReturnErrorObject) != 0
4528 || PyDict_SetItemString(d, "SSLWantReadError", PySSLWantReadErrorObject) != 0
4529 || PyDict_SetItemString(d, "SSLWantWriteError", PySSLWantWriteErrorObject) != 0
4530 || PyDict_SetItemString(d, "SSLSyscallError", PySSLSyscallErrorObject) != 0
4531 || PyDict_SetItemString(d, "SSLEOFError", PySSLEOFErrorObject) != 0)
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004532 return NULL;
Antoine Pitrou152efa22010-05-16 18:19:27 +00004533 if (PyDict_SetItemString(d, "_SSLContext",
4534 (PyObject *)&PySSLContext_Type) != 0)
4535 return NULL;
4536 if (PyDict_SetItemString(d, "_SSLSocket",
4537 (PyObject *)&PySSLSocket_Type) != 0)
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004538 return NULL;
Antoine Pitroub1fdf472014-10-05 20:41:53 +02004539 if (PyDict_SetItemString(d, "MemoryBIO",
4540 (PyObject *)&PySSLMemoryBIO_Type) != 0)
4541 return NULL;
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004542 PyModule_AddIntConstant(m, "SSL_ERROR_ZERO_RETURN",
4543 PY_SSL_ERROR_ZERO_RETURN);
4544 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_READ",
4545 PY_SSL_ERROR_WANT_READ);
4546 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_WRITE",
4547 PY_SSL_ERROR_WANT_WRITE);
4548 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_X509_LOOKUP",
4549 PY_SSL_ERROR_WANT_X509_LOOKUP);
4550 PyModule_AddIntConstant(m, "SSL_ERROR_SYSCALL",
4551 PY_SSL_ERROR_SYSCALL);
4552 PyModule_AddIntConstant(m, "SSL_ERROR_SSL",
4553 PY_SSL_ERROR_SSL);
4554 PyModule_AddIntConstant(m, "SSL_ERROR_WANT_CONNECT",
4555 PY_SSL_ERROR_WANT_CONNECT);
4556 /* non ssl.h errorcodes */
4557 PyModule_AddIntConstant(m, "SSL_ERROR_EOF",
4558 PY_SSL_ERROR_EOF);
4559 PyModule_AddIntConstant(m, "SSL_ERROR_INVALID_ERROR_CODE",
4560 PY_SSL_ERROR_INVALID_ERROR_CODE);
4561 /* cert requirements */
4562 PyModule_AddIntConstant(m, "CERT_NONE",
4563 PY_SSL_CERT_NONE);
4564 PyModule_AddIntConstant(m, "CERT_OPTIONAL",
4565 PY_SSL_CERT_OPTIONAL);
4566 PyModule_AddIntConstant(m, "CERT_REQUIRED",
4567 PY_SSL_CERT_REQUIRED);
Christian Heimes22587792013-11-21 23:56:13 +01004568 /* CRL verification for verification_flags */
4569 PyModule_AddIntConstant(m, "VERIFY_DEFAULT",
4570 0);
4571 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_LEAF",
4572 X509_V_FLAG_CRL_CHECK);
4573 PyModule_AddIntConstant(m, "VERIFY_CRL_CHECK_CHAIN",
4574 X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4575 PyModule_AddIntConstant(m, "VERIFY_X509_STRICT",
4576 X509_V_FLAG_X509_STRICT);
Benjamin Peterson990fcaa2015-03-04 22:49:41 -05004577#ifdef X509_V_FLAG_TRUSTED_FIRST
4578 PyModule_AddIntConstant(m, "VERIFY_X509_TRUSTED_FIRST",
4579 X509_V_FLAG_TRUSTED_FIRST);
4580#endif
Martin v. Löwis6af3e2d2002-04-20 07:47:40 +00004581
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01004582 /* Alert Descriptions from ssl.h */
4583 /* note RESERVED constants no longer intended for use have been removed */
4584 /* http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6 */
4585
4586#define ADD_AD_CONSTANT(s) \
4587 PyModule_AddIntConstant(m, "ALERT_DESCRIPTION_"#s, \
4588 SSL_AD_##s)
4589
4590 ADD_AD_CONSTANT(CLOSE_NOTIFY);
4591 ADD_AD_CONSTANT(UNEXPECTED_MESSAGE);
4592 ADD_AD_CONSTANT(BAD_RECORD_MAC);
4593 ADD_AD_CONSTANT(RECORD_OVERFLOW);
4594 ADD_AD_CONSTANT(DECOMPRESSION_FAILURE);
4595 ADD_AD_CONSTANT(HANDSHAKE_FAILURE);
4596 ADD_AD_CONSTANT(BAD_CERTIFICATE);
4597 ADD_AD_CONSTANT(UNSUPPORTED_CERTIFICATE);
4598 ADD_AD_CONSTANT(CERTIFICATE_REVOKED);
4599 ADD_AD_CONSTANT(CERTIFICATE_EXPIRED);
4600 ADD_AD_CONSTANT(CERTIFICATE_UNKNOWN);
4601 ADD_AD_CONSTANT(ILLEGAL_PARAMETER);
4602 ADD_AD_CONSTANT(UNKNOWN_CA);
4603 ADD_AD_CONSTANT(ACCESS_DENIED);
4604 ADD_AD_CONSTANT(DECODE_ERROR);
4605 ADD_AD_CONSTANT(DECRYPT_ERROR);
4606 ADD_AD_CONSTANT(PROTOCOL_VERSION);
4607 ADD_AD_CONSTANT(INSUFFICIENT_SECURITY);
4608 ADD_AD_CONSTANT(INTERNAL_ERROR);
4609 ADD_AD_CONSTANT(USER_CANCELLED);
4610 ADD_AD_CONSTANT(NO_RENEGOTIATION);
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01004611 /* Not all constants are in old OpenSSL versions */
Antoine Pitrou912fbff2013-03-30 16:29:32 +01004612#ifdef SSL_AD_UNSUPPORTED_EXTENSION
4613 ADD_AD_CONSTANT(UNSUPPORTED_EXTENSION);
4614#endif
4615#ifdef SSL_AD_CERTIFICATE_UNOBTAINABLE
4616 ADD_AD_CONSTANT(CERTIFICATE_UNOBTAINABLE);
4617#endif
4618#ifdef SSL_AD_UNRECOGNIZED_NAME
4619 ADD_AD_CONSTANT(UNRECOGNIZED_NAME);
4620#endif
Antoine Pitrou58ddc9d2013-01-05 21:20:29 +01004621#ifdef SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE
4622 ADD_AD_CONSTANT(BAD_CERTIFICATE_STATUS_RESPONSE);
4623#endif
4624#ifdef SSL_AD_BAD_CERTIFICATE_HASH_VALUE
4625 ADD_AD_CONSTANT(BAD_CERTIFICATE_HASH_VALUE);
4626#endif
4627#ifdef SSL_AD_UNKNOWN_PSK_IDENTITY
4628 ADD_AD_CONSTANT(UNKNOWN_PSK_IDENTITY);
4629#endif
4630
4631#undef ADD_AD_CONSTANT
4632
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004633 /* protocol versions */
Victor Stinner3de49192011-05-09 00:42:58 +02004634#ifndef OPENSSL_NO_SSL2
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004635 PyModule_AddIntConstant(m, "PROTOCOL_SSLv2",
4636 PY_SSL_VERSION_SSL2);
Victor Stinner3de49192011-05-09 00:42:58 +02004637#endif
Benjamin Petersone32467c2014-12-05 21:59:35 -05004638#ifndef OPENSSL_NO_SSL3
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004639 PyModule_AddIntConstant(m, "PROTOCOL_SSLv3",
4640 PY_SSL_VERSION_SSL3);
Benjamin Petersone32467c2014-12-05 21:59:35 -05004641#endif
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004642 PyModule_AddIntConstant(m, "PROTOCOL_SSLv23",
4643 PY_SSL_VERSION_SSL23);
4644 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1",
4645 PY_SSL_VERSION_TLS1);
Antoine Pitrou2463e5f2013-03-28 22:24:43 +01004646#if HAVE_TLSv1_2
4647 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_1",
4648 PY_SSL_VERSION_TLS1_1);
4649 PyModule_AddIntConstant(m, "PROTOCOL_TLSv1_2",
4650 PY_SSL_VERSION_TLS1_2);
4651#endif
Antoine Pitrou04f6a322010-04-05 21:40:07 +00004652
Antoine Pitroub5218772010-05-21 09:56:06 +00004653 /* protocol options */
Antoine Pitrou3f366312012-01-27 09:50:45 +01004654 PyModule_AddIntConstant(m, "OP_ALL",
4655 SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS);
Antoine Pitroub5218772010-05-21 09:56:06 +00004656 PyModule_AddIntConstant(m, "OP_NO_SSLv2", SSL_OP_NO_SSLv2);
4657 PyModule_AddIntConstant(m, "OP_NO_SSLv3", SSL_OP_NO_SSLv3);
4658 PyModule_AddIntConstant(m, "OP_NO_TLSv1", SSL_OP_NO_TLSv1);
Antoine Pitrou2463e5f2013-03-28 22:24:43 +01004659#if HAVE_TLSv1_2
4660 PyModule_AddIntConstant(m, "OP_NO_TLSv1_1", SSL_OP_NO_TLSv1_1);
4661 PyModule_AddIntConstant(m, "OP_NO_TLSv1_2", SSL_OP_NO_TLSv1_2);
4662#endif
Antoine Pitrou6db49442011-12-19 13:27:11 +01004663 PyModule_AddIntConstant(m, "OP_CIPHER_SERVER_PREFERENCE",
4664 SSL_OP_CIPHER_SERVER_PREFERENCE);
Antoine Pitrou0e576f12011-12-22 10:03:38 +01004665 PyModule_AddIntConstant(m, "OP_SINGLE_DH_USE", SSL_OP_SINGLE_DH_USE);
Antoine Pitroue9fccb32012-02-17 11:53:10 +01004666#ifdef SSL_OP_SINGLE_ECDH_USE
Antoine Pitrou923df6f2011-12-19 17:16:51 +01004667 PyModule_AddIntConstant(m, "OP_SINGLE_ECDH_USE", SSL_OP_SINGLE_ECDH_USE);
Antoine Pitroue9fccb32012-02-17 11:53:10 +01004668#endif
Antoine Pitrou8abdb8a2011-12-20 10:13:40 +01004669#ifdef SSL_OP_NO_COMPRESSION
4670 PyModule_AddIntConstant(m, "OP_NO_COMPRESSION",
4671 SSL_OP_NO_COMPRESSION);
4672#endif
Antoine Pitroub5218772010-05-21 09:56:06 +00004673
Antoine Pitrou912fbff2013-03-30 16:29:32 +01004674#if HAVE_SNI
Antoine Pitroud5323212010-10-22 18:19:07 +00004675 r = Py_True;
4676#else
4677 r = Py_False;
4678#endif
4679 Py_INCREF(r);
4680 PyModule_AddObject(m, "HAS_SNI", r);
4681
Antoine Pitroud6494802011-07-21 01:11:30 +02004682 r = Py_True;
Antoine Pitroud6494802011-07-21 01:11:30 +02004683 Py_INCREF(r);
4684 PyModule_AddObject(m, "HAS_TLS_UNIQUE", r);
4685
Antoine Pitrou501da612011-12-21 09:27:41 +01004686#ifdef OPENSSL_NO_ECDH
4687 r = Py_False;
4688#else
4689 r = Py_True;
4690#endif
4691 Py_INCREF(r);
4692 PyModule_AddObject(m, "HAS_ECDH", r);
4693
Antoine Pitroud5d17eb2012-03-22 00:23:03 +01004694#ifdef OPENSSL_NPN_NEGOTIATED
4695 r = Py_True;
4696#else
4697 r = Py_False;
4698#endif
4699 Py_INCREF(r);
4700 PyModule_AddObject(m, "HAS_NPN", r);
4701
Benjamin Petersoncca27322015-01-23 16:35:37 -05004702#ifdef HAVE_ALPN
4703 r = Py_True;
4704#else
4705 r = Py_False;
4706#endif
4707 Py_INCREF(r);
4708 PyModule_AddObject(m, "HAS_ALPN", r);
4709
Antoine Pitrou3b36fb12012-06-22 21:11:52 +02004710 /* Mappings for error codes */
4711 err_codes_to_names = PyDict_New();
4712 err_names_to_codes = PyDict_New();
4713 if (err_codes_to_names == NULL || err_names_to_codes == NULL)
4714 return NULL;
4715 errcode = error_codes;
4716 while (errcode->mnemonic != NULL) {
4717 PyObject *mnemo, *key;
4718 mnemo = PyUnicode_FromString(errcode->mnemonic);
4719 key = Py_BuildValue("ii", errcode->library, errcode->reason);
4720 if (mnemo == NULL || key == NULL)
4721 return NULL;
4722 if (PyDict_SetItem(err_codes_to_names, key, mnemo))
4723 return NULL;
4724 if (PyDict_SetItem(err_names_to_codes, mnemo, key))
4725 return NULL;
4726 Py_DECREF(key);
4727 Py_DECREF(mnemo);
4728 errcode++;
4729 }
4730 if (PyModule_AddObject(m, "err_codes_to_names", err_codes_to_names))
4731 return NULL;
4732 if (PyModule_AddObject(m, "err_names_to_codes", err_names_to_codes))
4733 return NULL;
4734
4735 lib_codes_to_names = PyDict_New();
4736 if (lib_codes_to_names == NULL)
4737 return NULL;
4738 libcode = library_codes;
4739 while (libcode->library != NULL) {
4740 PyObject *mnemo, *key;
4741 key = PyLong_FromLong(libcode->code);
4742 mnemo = PyUnicode_FromString(libcode->library);
4743 if (key == NULL || mnemo == NULL)
4744 return NULL;
4745 if (PyDict_SetItem(lib_codes_to_names, key, mnemo))
4746 return NULL;
4747 Py_DECREF(key);
4748 Py_DECREF(mnemo);
4749 libcode++;
4750 }
4751 if (PyModule_AddObject(m, "lib_codes_to_names", lib_codes_to_names))
4752 return NULL;
Victor Stinner4569cd52013-06-23 14:58:43 +02004753
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004754 /* OpenSSL version */
4755 /* SSLeay() gives us the version of the library linked against,
4756 which could be different from the headers version.
4757 */
4758 libver = SSLeay();
4759 r = PyLong_FromUnsignedLong(libver);
4760 if (r == NULL)
4761 return NULL;
4762 if (PyModule_AddObject(m, "OPENSSL_VERSION_NUMBER", r))
4763 return NULL;
Antoine Pitroub9ac25d2011-07-08 18:47:06 +02004764 parse_openssl_version(libver, &major, &minor, &fix, &patch, &status);
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004765 r = Py_BuildValue("IIIII", major, minor, fix, patch, status);
4766 if (r == NULL || PyModule_AddObject(m, "OPENSSL_VERSION_INFO", r))
4767 return NULL;
4768 r = PyUnicode_FromString(SSLeay_version(SSLEAY_VERSION));
4769 if (r == NULL || PyModule_AddObject(m, "OPENSSL_VERSION", r))
4770 return NULL;
Antoine Pitrou04f6a322010-04-05 21:40:07 +00004771
Antoine Pitroub9ac25d2011-07-08 18:47:06 +02004772 libver = OPENSSL_VERSION_NUMBER;
4773 parse_openssl_version(libver, &major, &minor, &fix, &patch, &status);
4774 r = Py_BuildValue("IIIII", major, minor, fix, patch, status);
4775 if (r == NULL || PyModule_AddObject(m, "_OPENSSL_API_VERSION", r))
4776 return NULL;
4777
Antoine Pitroucbb82eb2010-05-05 15:57:33 +00004778 return m;
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +00004779}