mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
df94c66f71
Import Ruby/OpenSSL 2.0.5. The full commit history since v2.0.4 (imported at r59081) can be found at: https://github.com/ruby/openssl/compare/v2.0.4...v2.0.5 This will fix the test failure on latest Debian sid and the "no OPENSSL_Applink" issue on mswin. ---------------------------------------------------------------- Kazuki Yamaguchi (11): test/test_ssl: allow 3DES cipher suites in test_sslctx_set_params bio: prevent possible GC issue in ossl_obj2bio() bio: do not use the FILE BIO method in ossl_obj2bio() Rakefile: install_dependencies: install only when needed appveyor.yml: test against Ruby 2.4 ossl_pem_passwd_cb: relax passphrase length constraint ossl_pem_passwd_cb: do not check for taintedness ossl_pem_passwd_cb: handle nil from the block explicitly ssl: remove unsupported TLS versions from SSLContext::METHODS ssl: fix compile error with OpenSSL 1.0.0 Ruby/OpenSSL 2.0.5 Lars Kanis (1): Add msys2 library dependency tag in gem metadata git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
89 lines
2 KiB
C
89 lines
2 KiB
C
/*
|
|
* 'OpenSSL for Ruby' project
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licensed under the same licence as Ruby.
|
|
* (See the file 'LICENCE'.)
|
|
*/
|
|
#include "ossl.h"
|
|
|
|
|
|
/*
|
|
* Classes
|
|
*/
|
|
VALUE cConfig;
|
|
/* Document-class: OpenSSL::ConfigError
|
|
*
|
|
* General error for openssl library configuration files. Including formatting,
|
|
* parsing errors, etc.
|
|
*/
|
|
VALUE eConfigError;
|
|
|
|
/*
|
|
* Public
|
|
*/
|
|
|
|
/*
|
|
* DupConfigPtr is a public C-level function for getting OpenSSL CONF struct
|
|
* from an OpenSSL::Config(eConfig) instance. We decided to implement
|
|
* OpenSSL::Config in Ruby level but we need to pass native CONF struct for
|
|
* some OpenSSL features such as X509V3_EXT_*.
|
|
*/
|
|
CONF *
|
|
DupConfigPtr(VALUE obj)
|
|
{
|
|
CONF *conf;
|
|
VALUE str;
|
|
BIO *bio;
|
|
long eline = -1;
|
|
|
|
OSSL_Check_Kind(obj, cConfig);
|
|
str = rb_funcall(obj, rb_intern("to_s"), 0);
|
|
bio = ossl_obj2bio(&str);
|
|
conf = NCONF_new(NULL);
|
|
if(!conf){
|
|
BIO_free(bio);
|
|
ossl_raise(eConfigError, NULL);
|
|
}
|
|
if(!NCONF_load_bio(conf, bio, &eline)){
|
|
BIO_free(bio);
|
|
NCONF_free(conf);
|
|
if (eline <= 0)
|
|
ossl_raise(eConfigError, "wrong config format");
|
|
else
|
|
ossl_raise(eConfigError, "error in line %d", eline);
|
|
}
|
|
BIO_free(bio);
|
|
|
|
return conf;
|
|
}
|
|
|
|
/* Document-const: DEFAULT_CONFIG_FILE
|
|
*
|
|
* The default system configuration file for openssl
|
|
*/
|
|
|
|
/*
|
|
* INIT
|
|
*/
|
|
void
|
|
Init_ossl_config(void)
|
|
{
|
|
char *default_config_file;
|
|
|
|
#if 0
|
|
mOSSL = rb_define_module("OpenSSL");
|
|
eOSSLError = rb_define_class_under(mOSSL, "OpenSSLError", rb_eStandardError);
|
|
#endif
|
|
|
|
eConfigError = rb_define_class_under(mOSSL, "ConfigError", eOSSLError);
|
|
cConfig = rb_define_class_under(mOSSL, "Config", rb_cObject);
|
|
|
|
default_config_file = CONF_get1_default_config_file();
|
|
rb_define_const(cConfig, "DEFAULT_CONFIG_FILE",
|
|
rb_str_new2(default_config_file));
|
|
OPENSSL_free(default_config_file);
|
|
/* methods are defined by openssl/config.rb */
|
|
}
|