]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
openssl: Don't use deprecated CRYPTO_set_id_callback() with OpenSSL >= 1.0.0
authorTobias Brunner <tobias@strongswan.org>
Wed, 17 Apr 2013 11:00:51 +0000 (13:00 +0200)
committerTobias Brunner <tobias@strongswan.org>
Wed, 8 May 2013 13:02:40 +0000 (15:02 +0200)
src/libstrongswan/plugins/openssl/openssl_plugin.c

index 174f94e0596a47ee41f9601523f7f15e123f2c36..7c880402bcc7ba76d0419216cdf6be4a5da29fbe 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Tobias Brunner
+ * Copyright (C) 2008-2013 Tobias Brunner
  * Copyright (C) 2008 Martin Willi
  * Hochschule fuer Technik Rapperswil
  *
@@ -142,6 +142,13 @@ static unsigned long id_function(void)
        return 1 + (unsigned long)thread_current_id();
 }
 
+#if OPENSSL_VERSION_NUMBER >= 0x1000000fL
+static void threadid_function(CRYPTO_THREADID *threadid)
+{
+       CRYPTO_THREADID_set_numeric(threadid, id_function());
+}
+#endif /* OPENSSL_VERSION_NUMBER */
+
 /**
  * initialize OpenSSL for multi-threaded use
  */
@@ -149,7 +156,12 @@ static void threading_init()
 {
        int i, num_locks;
 
+#if OPENSSL_VERSION_NUMBER >= 0x1000000fL
+       CRYPTO_THREADID_set_callback(threadid_function);
+#else
        CRYPTO_set_id_callback(id_function);
+#endif
+
        CRYPTO_set_locking_callback(locking_function);
 
        CRYPTO_set_dynlock_create_callback(create_function);
@@ -164,6 +176,22 @@ static void threading_init()
        }
 }
 
+/**
+ * cleanup OpenSSL threading locks
+ */
+static void threading_cleanup()
+{
+       int i, num_locks;
+
+       num_locks = CRYPTO_num_locks();
+       for (i = 0; i < num_locks; i++)
+       {
+               mutex[i]->destroy(mutex[i]);
+       }
+       free(mutex);
+       mutex = NULL;
+}
+
 /**
  * Seed the OpenSSL RNG, if required
  */
@@ -193,22 +221,6 @@ static bool seed_rng()
        return TRUE;
 }
 
-/**
- * cleanup OpenSSL threading locks
- */
-static void threading_cleanup()
-{
-       int i, num_locks;
-
-       num_locks = CRYPTO_num_locks();
-       for (i = 0; i < num_locks; i++)
-       {
-               mutex[i]->destroy(mutex[i]);
-       }
-       free(mutex);
-       mutex = NULL;
-}
-
 METHOD(plugin_t, get_name, char*,
        private_openssl_plugin_t *this)
 {