1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/ossl.c: Provide CRYPTO_set_locking_callback() and

CRYPTO_set_id_callback() callback functions ossl_thread_id and
  ossl_lock_callback to ensure the OpenSSL extension is usable in
  multi-threaded environments.
  [ruby-core:54900] [Bug #8386]

  Thanks, Dirkjan Bussink, for the patch!


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
emboss 2013-07-05 21:44:50 +00:00
parent a3a62f87e1
commit 7e443fcfea
2 changed files with 49 additions and 0 deletions

View file

@ -1,3 +1,13 @@
Sat Jul 6 06:37:10 2013 Martin Bosslet <Martin.Bosslet@gmail.com>
* ext/openssl/ossl.c: Provide CRYPTO_set_locking_callback() and
CRYPTO_set_id_callback() callback functions ossl_thread_id and
ossl_lock_callback to ensure the OpenSSL extension is usable in
multi-threaded environments.
[ruby-core:54900] [Bug #8386]
Thanks, Dirkjan Bussink, for the patch!
Sat Jul 6 06:06:16 2013 Martin Bosslet <Martin.Bosslet@gmail.com>
* lib/openssl/ssl.rb: Fix SSL client connection crash for SAN marked

View file

@ -458,6 +458,39 @@ ossl_fips_mode_set(VALUE self, VALUE enabled)
#endif
}
/**
* Stores locks needed for OpenSSL thread safety
*/
static VALUE* ossl_locks;
static void ossl_lock_callback(int mode, int type, char *file, int line)
{
if (mode & CRYPTO_LOCK) {
rb_mutex_lock(ossl_locks[type]);
} else {
rb_mutex_unlock(ossl_locks[type]);
}
}
static unsigned long ossl_thread_id(void)
{
return NUM2ULONG(rb_obj_id(rb_thread_current()));
}
static void Init_ossl_locks(void)
{
int i;
ossl_locks = (VALUE*) OPENSSL_malloc(CRYPTO_num_locks() * sizeof(VALUE));
for (i = 0; i < CRYPTO_num_locks(); i++) {
ossl_locks[i] = rb_mutex_new();
rb_global_variable(&(ossl_locks[i]));
}
CRYPTO_set_id_callback((unsigned long (*)())ossl_thread_id);
CRYPTO_set_locking_callback((void (*)())ossl_lock_callback);
}
/*
* OpenSSL provides SSL, TLS and general purpose cryptography. It wraps the
* OpenSSL[http://www.openssl.org/] library.
@ -977,6 +1010,7 @@ Init_openssl()
* Init main module
*/
mOSSL = rb_define_module("OpenSSL");
rb_global_variable(&mOSSL);
/*
* OpenSSL ruby extension version
@ -1009,6 +1043,7 @@ Init_openssl()
* common for all classes under OpenSSL module
*/
eOSSLError = rb_define_class_under(mOSSL,"OpenSSLError",rb_eStandardError);
rb_global_variable(&eOSSLError);
/*
* Verify callback Proc index for ext-data
@ -1020,6 +1055,8 @@ Init_openssl()
* Init debug core
*/
dOSSL = Qfalse;
rb_global_variable(&dOSSL);
rb_define_module_function(mOSSL, "debug", ossl_debug_get, 0);
rb_define_module_function(mOSSL, "debug=", ossl_debug_set, 1);
rb_define_module_function(mOSSL, "errors", ossl_get_errors, 0);
@ -1029,6 +1066,8 @@ Init_openssl()
*/
ossl_s_to_der = rb_intern("to_der");
Init_ossl_locks();
/*
* Init components
*/