mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 23:44:01 +02:00
6d982ea81c
These have been noops since forever, but we're at a point where we can remove the type itself, so use one of the last consumers out of the way.
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
#1: XXX maybe this can go away now we have auto-init, I'm not sure exactly
|
|
what python's lock protects
|
|
|
|
#2: ERR_get_state is no longer used in OpenSSL 3.0 or libressl as of 20240303
|
|
|
|
#3, #4: Drop CRYPTO_THREADID noops
|
|
|
|
Index: Modules/_ssl.c
|
|
--- Modules/_ssl.c.orig
|
|
+++ Modules/_ssl.c
|
|
@@ -164,6 +164,9 @@ struct py_ssl_library_code {
|
|
#if defined(OPENSSL_VERSION_1_1) && !defined(OPENSSL_NO_SSL2)
|
|
#define OPENSSL_NO_SSL2
|
|
#endif
|
|
+#if defined(LIBRESSL_VERSION_NUMBER) && defined(WITH_THREAD)
|
|
+#define HAVE_OPENSSL_CRYPTO_LOCK
|
|
+#endif
|
|
|
|
#ifndef PY_OPENSSL_1_1_API
|
|
/* OpenSSL 1.1 API shims for OpenSSL < 1.1.0 and LibreSSL < 2.7.0 */
|
|
@@ -592,7 +595,6 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObjec
|
|
Py_INCREF(sslctx);
|
|
|
|
/* Make sure the SSL error state is initialized */
|
|
- (void) ERR_get_state();
|
|
ERR_clear_error();
|
|
|
|
PySSL_BEGIN_ALLOW_THREADS
|
|
@@ -4078,15 +4080,7 @@ static PyMethodDef PySSL_methods[] = {
|
|
|
|
static PyThread_type_lock *_ssl_locks = NULL;
|
|
|
|
-#if OPENSSL_VERSION_NUMBER >= 0x10000000
|
|
-/* use new CRYPTO_THREADID API. */
|
|
-static void
|
|
-_ssl_threadid_callback(CRYPTO_THREADID *id)
|
|
-{
|
|
- CRYPTO_THREADID_set_numeric(id,
|
|
- (unsigned long)PyThread_get_thread_ident());
|
|
-}
|
|
-#else
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10000000
|
|
/* deprecated CRYPTO_set_id_callback() API. */
|
|
static unsigned long
|
|
_ssl_thread_id_function (void) {
|
|
@@ -4146,9 +4140,7 @@ static int _setup_ssl_threads(void) {
|
|
}
|
|
}
|
|
CRYPTO_set_locking_callback(_ssl_thread_locking_function);
|
|
-#if OPENSSL_VERSION_NUMBER >= 0x10000000
|
|
- CRYPTO_THREADID_set_callback(_ssl_threadid_callback);
|
|
-#else
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10000000
|
|
CRYPTO_set_id_callback(_ssl_thread_id_function);
|
|
#endif
|
|
}
|