mirror of
https://github.com/python/cpython.git
synced 2026-05-03 09:01:07 +00:00
[3.6] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5881)
Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit 29eab55309)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
192bff4e2d
commit
a79591cfb8
2 changed files with 29 additions and 24 deletions
|
|
@ -127,21 +127,26 @@ struct py_ssl_library_code {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
|
#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
|
||||||
# define HAVE_ALPN
|
# define HAVE_ALPN 1
|
||||||
|
#else
|
||||||
|
# define HAVE_ALPN 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* We cannot rely on OPENSSL_NO_NEXTPROTONEG because LibreSSL 2.6.1 dropped
|
/* We cannot rely on OPENSSL_NO_NEXTPROTONEG because LibreSSL 2.6.1 dropped
|
||||||
* NPN support but did not set OPENSSL_NO_NEXTPROTONEG for compatibility
|
* NPN support but did not set OPENSSL_NO_NEXTPROTONEG for compatibility
|
||||||
* reasons. The check for TLSEXT_TYPE_next_proto_neg works with
|
* reasons. The check for TLSEXT_TYPE_next_proto_neg works with
|
||||||
* OpenSSL 1.0.1+ and LibreSSL.
|
* OpenSSL 1.0.1+ and LibreSSL.
|
||||||
|
* OpenSSL 1.1.1-pre1 dropped NPN but still has TLSEXT_TYPE_next_proto_neg.
|
||||||
*/
|
*/
|
||||||
#ifdef OPENSSL_NO_NEXTPROTONEG
|
#ifdef OPENSSL_NO_NEXTPROTONEG
|
||||||
# define HAVE_NPN 0
|
# define HAVE_NPN 0
|
||||||
|
#elif (OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER)
|
||||||
|
# define HAVE_NPN 0
|
||||||
#elif defined(TLSEXT_TYPE_next_proto_neg)
|
#elif defined(TLSEXT_TYPE_next_proto_neg)
|
||||||
# define HAVE_NPN 1
|
# define HAVE_NPN 1
|
||||||
#else
|
#else
|
||||||
# define HAVE_NPN 0
|
# define HAVE_NPN 0
|
||||||
# endif
|
#endif
|
||||||
|
|
||||||
#ifndef INVALID_SOCKET /* MS defines this */
|
#ifndef INVALID_SOCKET /* MS defines this */
|
||||||
#define INVALID_SOCKET (-1)
|
#define INVALID_SOCKET (-1)
|
||||||
|
|
@ -297,11 +302,11 @@ static unsigned int _ssl_locks_count = 0;
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject_HEAD
|
PyObject_HEAD
|
||||||
SSL_CTX *ctx;
|
SSL_CTX *ctx;
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
unsigned char *npn_protocols;
|
unsigned char *npn_protocols;
|
||||||
int npn_protocols_len;
|
int npn_protocols_len;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
unsigned char *alpn_protocols;
|
unsigned char *alpn_protocols;
|
||||||
int alpn_protocols_len;
|
int alpn_protocols_len;
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -1789,7 +1794,7 @@ _ssl__SSLSocket_version_impl(PySSLSocket *self)
|
||||||
return PyUnicode_FromString(version);
|
return PyUnicode_FromString(version);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
/*[clinic input]
|
/*[clinic input]
|
||||||
_ssl._SSLSocket.selected_npn_protocol
|
_ssl._SSLSocket.selected_npn_protocol
|
||||||
[clinic start generated code]*/
|
[clinic start generated code]*/
|
||||||
|
|
@ -1810,7 +1815,7 @@ _ssl__SSLSocket_selected_npn_protocol_impl(PySSLSocket *self)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
/*[clinic input]
|
/*[clinic input]
|
||||||
_ssl._SSLSocket.selected_alpn_protocol
|
_ssl._SSLSocket.selected_alpn_protocol
|
||||||
[clinic start generated code]*/
|
[clinic start generated code]*/
|
||||||
|
|
@ -2745,7 +2750,7 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
|
||||||
#ifdef HAVE_NPN
|
#ifdef HAVE_NPN
|
||||||
self->npn_protocols = NULL;
|
self->npn_protocols = NULL;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
self->alpn_protocols = NULL;
|
self->alpn_protocols = NULL;
|
||||||
#endif
|
#endif
|
||||||
#ifndef OPENSSL_NO_TLSEXT
|
#ifndef OPENSSL_NO_TLSEXT
|
||||||
|
|
@ -2877,10 +2882,10 @@ context_dealloc(PySSLContext *self)
|
||||||
PyObject_GC_UnTrack(self);
|
PyObject_GC_UnTrack(self);
|
||||||
context_clear(self);
|
context_clear(self);
|
||||||
SSL_CTX_free(self->ctx);
|
SSL_CTX_free(self->ctx);
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
PyMem_FREE(self->npn_protocols);
|
PyMem_FREE(self->npn_protocols);
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
PyMem_FREE(self->alpn_protocols);
|
PyMem_FREE(self->alpn_protocols);
|
||||||
#endif
|
#endif
|
||||||
Py_TYPE(self)->tp_free(self);
|
Py_TYPE(self)->tp_free(self);
|
||||||
|
|
@ -2955,7 +2960,7 @@ _ssl__SSLContext_get_ciphers_impl(PySSLContext *self)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(HAVE_NPN) || defined(HAVE_ALPN)
|
#if HAVE_NPN || HAVE_ALPN
|
||||||
static int
|
static int
|
||||||
do_protocol_selection(int alpn, unsigned char **out, unsigned char *outlen,
|
do_protocol_selection(int alpn, unsigned char **out, unsigned char *outlen,
|
||||||
const unsigned char *server_protocols, unsigned int server_protocols_len,
|
const unsigned char *server_protocols, unsigned int server_protocols_len,
|
||||||
|
|
@ -2981,7 +2986,7 @@ do_protocol_selection(int alpn, unsigned char **out, unsigned char *outlen,
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
/* this callback gets passed to SSL_CTX_set_next_protos_advertise_cb */
|
/* this callback gets passed to SSL_CTX_set_next_protos_advertise_cb */
|
||||||
static int
|
static int
|
||||||
_advertiseNPN_cb(SSL *s,
|
_advertiseNPN_cb(SSL *s,
|
||||||
|
|
@ -3024,7 +3029,7 @@ _ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
|
||||||
Py_buffer *protos)
|
Py_buffer *protos)
|
||||||
/*[clinic end generated code: output=72b002c3324390c6 input=319fcb66abf95bd7]*/
|
/*[clinic end generated code: output=72b002c3324390c6 input=319fcb66abf95bd7]*/
|
||||||
{
|
{
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
PyMem_Free(self->npn_protocols);
|
PyMem_Free(self->npn_protocols);
|
||||||
self->npn_protocols = PyMem_Malloc(protos->len);
|
self->npn_protocols = PyMem_Malloc(protos->len);
|
||||||
if (self->npn_protocols == NULL)
|
if (self->npn_protocols == NULL)
|
||||||
|
|
@ -3049,7 +3054,7 @@ _ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
static int
|
static int
|
||||||
_selectALPN_cb(SSL *s,
|
_selectALPN_cb(SSL *s,
|
||||||
const unsigned char **out, unsigned char *outlen,
|
const unsigned char **out, unsigned char *outlen,
|
||||||
|
|
@ -3074,7 +3079,7 @@ _ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,
|
||||||
Py_buffer *protos)
|
Py_buffer *protos)
|
||||||
/*[clinic end generated code: output=87599a7f76651a9b input=9bba964595d519be]*/
|
/*[clinic end generated code: output=87599a7f76651a9b input=9bba964595d519be]*/
|
||||||
{
|
{
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
if ((size_t)protos->len > UINT_MAX) {
|
if ((size_t)protos->len > UINT_MAX) {
|
||||||
PyErr_Format(PyExc_OverflowError,
|
PyErr_Format(PyExc_OverflowError,
|
||||||
"protocols longer than %d bytes", UINT_MAX);
|
"protocols longer than %d bytes", UINT_MAX);
|
||||||
|
|
@ -5494,7 +5499,7 @@ PyInit__ssl(void)
|
||||||
Py_INCREF(r);
|
Py_INCREF(r);
|
||||||
PyModule_AddObject(m, "HAS_ECDH", r);
|
PyModule_AddObject(m, "HAS_ECDH", r);
|
||||||
|
|
||||||
#ifdef HAVE_NPN
|
#if HAVE_NPN
|
||||||
r = Py_True;
|
r = Py_True;
|
||||||
#else
|
#else
|
||||||
r = Py_False;
|
r = Py_False;
|
||||||
|
|
@ -5502,7 +5507,7 @@ PyInit__ssl(void)
|
||||||
Py_INCREF(r);
|
Py_INCREF(r);
|
||||||
PyModule_AddObject(m, "HAS_NPN", r);
|
PyModule_AddObject(m, "HAS_NPN", r);
|
||||||
|
|
||||||
#ifdef HAVE_ALPN
|
#if HAVE_ALPN
|
||||||
r = Py_True;
|
r = Py_True;
|
||||||
#else
|
#else
|
||||||
r = Py_False;
|
r = Py_False;
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ _ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored))
|
||||||
return _ssl__SSLSocket_version_impl(self);
|
return _ssl__SSLSocket_version_impl(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAVE_NPN)
|
#if (HAVE_NPN)
|
||||||
|
|
||||||
PyDoc_STRVAR(_ssl__SSLSocket_selected_npn_protocol__doc__,
|
PyDoc_STRVAR(_ssl__SSLSocket_selected_npn_protocol__doc__,
|
||||||
"selected_npn_protocol($self, /)\n"
|
"selected_npn_protocol($self, /)\n"
|
||||||
|
|
@ -151,9 +151,9 @@ _ssl__SSLSocket_selected_npn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ign
|
||||||
return _ssl__SSLSocket_selected_npn_protocol_impl(self);
|
return _ssl__SSLSocket_selected_npn_protocol_impl(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* defined(HAVE_NPN) */
|
#endif /* (HAVE_NPN) */
|
||||||
|
|
||||||
#if defined(HAVE_ALPN)
|
#if (HAVE_ALPN)
|
||||||
|
|
||||||
PyDoc_STRVAR(_ssl__SSLSocket_selected_alpn_protocol__doc__,
|
PyDoc_STRVAR(_ssl__SSLSocket_selected_alpn_protocol__doc__,
|
||||||
"selected_alpn_protocol($self, /)\n"
|
"selected_alpn_protocol($self, /)\n"
|
||||||
|
|
@ -172,7 +172,7 @@ _ssl__SSLSocket_selected_alpn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ig
|
||||||
return _ssl__SSLSocket_selected_alpn_protocol_impl(self);
|
return _ssl__SSLSocket_selected_alpn_protocol_impl(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* defined(HAVE_ALPN) */
|
#endif /* (HAVE_ALPN) */
|
||||||
|
|
||||||
PyDoc_STRVAR(_ssl__SSLSocket_compression__doc__,
|
PyDoc_STRVAR(_ssl__SSLSocket_compression__doc__,
|
||||||
"compression($self, /)\n"
|
"compression($self, /)\n"
|
||||||
|
|
@ -1168,4 +1168,4 @@ exit:
|
||||||
#ifndef _SSL_ENUM_CRLS_METHODDEF
|
#ifndef _SSL_ENUM_CRLS_METHODDEF
|
||||||
#define _SSL_ENUM_CRLS_METHODDEF
|
#define _SSL_ENUM_CRLS_METHODDEF
|
||||||
#endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */
|
#endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */
|
||||||
/*[clinic end generated code: output=3d801e1145e7a94e input=a9049054013a1b77]*/
|
/*[clinic end generated code: output=c79fb0dfd3c90784 input=a9049054013a1b77]*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue