2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-19 23:55:09 -04:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 12:12:24 -04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#if !defined(_OSSL_H_)
|
|
|
|
#define _OSSL_H_
|
|
|
|
|
2006-06-02 06:03:16 -04:00
|
|
|
#include RUBY_EXTCONF_H
|
|
|
|
|
2016-11-30 09:41:46 -05:00
|
|
|
#include <assert.h>
|
2006-07-27 03:48:04 -04:00
|
|
|
#include <ruby.h>
|
2018-11-21 15:39:09 -05:00
|
|
|
#include <errno.h>
|
2008-09-25 23:05:47 -04:00
|
|
|
#include <ruby/io.h>
|
2012-07-10 09:57:11 -04:00
|
|
|
#include <ruby/thread.h>
|
2003-07-23 12:12:24 -04:00
|
|
|
#include <openssl/opensslv.h>
|
2021-04-14 11:51:58 -04:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
#include <openssl/err.h>
|
2016-05-24 08:39:57 -04:00
|
|
|
#include <openssl/asn1.h>
|
2003-07-23 12:12:24 -04:00
|
|
|
#include <openssl/x509v3.h>
|
|
|
|
#include <openssl/ssl.h>
|
2003-12-11 07:29:08 -05:00
|
|
|
#include <openssl/pkcs12.h>
|
|
|
|
#include <openssl/pkcs7.h>
|
2003-07-23 12:12:24 -04:00
|
|
|
#include <openssl/rand.h>
|
2003-09-08 06:31:38 -04:00
|
|
|
#include <openssl/conf.h>
|
2020-02-16 01:21:29 -05:00
|
|
|
#ifndef OPENSSL_NO_TS
|
|
|
|
#include <openssl/ts.h>
|
|
|
|
#endif
|
2016-11-30 09:41:46 -05:00
|
|
|
#include <openssl/crypto.h>
|
2016-05-25 04:50:03 -04:00
|
|
|
#if !defined(OPENSSL_NO_OCSP)
|
2003-07-23 12:12:24 -04:00
|
|
|
# include <openssl/ocsp.h>
|
|
|
|
#endif
|
2017-11-25 09:12:08 -05:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/dh.h>
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2021-09-27 00:32:03 -04:00
|
|
|
#ifndef LIBRESSL_VERSION_NUMBER
|
|
|
|
# define OSSL_IS_LIBRESSL 0
|
|
|
|
# define OSSL_OPENSSL_PREREQ(maj, min, pat) \
|
|
|
|
(OPENSSL_VERSION_NUMBER >= (maj << 28) | (min << 20) | (pat << 12))
|
|
|
|
# define OSSL_LIBRESSL_PREREQ(maj, min, pat) 0
|
|
|
|
#else
|
|
|
|
# define OSSL_IS_LIBRESSL 1
|
|
|
|
# define OSSL_OPENSSL_PREREQ(maj, min, pat) 0
|
|
|
|
# define OSSL_LIBRESSL_PREREQ(maj, min, pat) \
|
|
|
|
(LIBRESSL_VERSION_NUMBER >= (maj << 28) | (min << 20) | (pat << 12))
|
|
|
|
#endif
|
|
|
|
|
2021-04-14 11:51:58 -04:00
|
|
|
#if !defined(OPENSSL_NO_ENGINE) && !OSSL_OPENSSL_PREREQ(3, 0, 0)
|
|
|
|
# define OSSL_USE_ENGINE
|
|
|
|
#endif
|
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* Common Module
|
|
|
|
*/
|
|
|
|
extern VALUE mOSSL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common Error Class
|
|
|
|
*/
|
|
|
|
extern VALUE eOSSLError;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CheckTypes
|
|
|
|
*/
|
|
|
|
#define OSSL_Check_Kind(obj, klass) do {\
|
2011-02-17 07:33:07 -05:00
|
|
|
if (!rb_obj_is_kind_of((obj), (klass))) {\
|
2014-01-12 19:57:38 -05:00
|
|
|
ossl_raise(rb_eTypeError, "wrong argument (%"PRIsVALUE")! (Expected kind of %"PRIsVALUE")",\
|
|
|
|
rb_obj_class(obj), (klass));\
|
2003-07-23 12:12:24 -04:00
|
|
|
}\
|
|
|
|
} while (0)
|
|
|
|
|
2017-09-03 08:35:27 -04:00
|
|
|
/*
|
|
|
|
* Type conversions
|
|
|
|
*/
|
|
|
|
#if !defined(NUM2UINT64T) /* in case Ruby starts to provide */
|
|
|
|
# if SIZEOF_LONG == 8
|
|
|
|
# define NUM2UINT64T(x) ((uint64_t)NUM2ULONG(x))
|
|
|
|
# elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 8
|
|
|
|
# define NUM2UINT64T(x) ((uint64_t)NUM2ULL(x))
|
|
|
|
# else
|
|
|
|
# error "unknown platform; no 64-bit width integer"
|
|
|
|
# endif
|
|
|
|
#endif
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Data Conversion
|
|
|
|
*/
|
|
|
|
STACK_OF(X509) *ossl_x509_ary2sk(VALUE);
|
|
|
|
STACK_OF(X509) *ossl_protect_x509_ary2sk(VALUE,int*);
|
2016-08-29 01:47:09 -04:00
|
|
|
VALUE ossl_x509_sk2ary(const STACK_OF(X509) *certs);
|
|
|
|
VALUE ossl_x509crl_sk2ary(const STACK_OF(X509_CRL) *crl);
|
|
|
|
VALUE ossl_x509name_sk2ary(const STACK_OF(X509_NAME) *names);
|
2003-09-17 05:05:02 -04:00
|
|
|
VALUE ossl_buf2str(char *buf, int len);
|
2017-09-03 08:35:27 -04:00
|
|
|
VALUE ossl_str_new(const char *, long, int *);
|
2003-09-17 05:05:02 -04:00
|
|
|
#define ossl_str_adjust(str, p) \
|
|
|
|
do{\
|
2014-01-12 19:57:42 -05:00
|
|
|
long newlen = (long)((p) - (unsigned char*)RSTRING_PTR(str));\
|
2020-05-13 00:45:31 -04:00
|
|
|
assert(newlen <= RSTRING_LEN(str));\
|
2011-02-17 07:33:07 -05:00
|
|
|
rb_str_set_len((str), newlen);\
|
2003-09-17 05:05:02 -04:00
|
|
|
}while(0)
|
2016-08-29 01:47:09 -04:00
|
|
|
/*
|
|
|
|
* Convert binary string to hex string. The caller is responsible for
|
|
|
|
* ensuring out has (2 * len) bytes of capacity.
|
|
|
|
*/
|
|
|
|
void ossl_bin2hex(unsigned char *in, char *out, size_t len);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
/*
|
2016-05-20 11:05:25 -04:00
|
|
|
* Our default PEM callback
|
2003-07-23 12:12:24 -04:00
|
|
|
*/
|
2016-05-20 11:05:25 -04:00
|
|
|
/* Convert the argument to String and validate the length. Note this may raise. */
|
|
|
|
VALUE ossl_pem_passwd_value(VALUE);
|
|
|
|
/* Can be casted to pem_password_cb. If a password (String) is passed as the
|
|
|
|
* "arbitrary data" (typically the last parameter of PEM_{read,write}_
|
|
|
|
* functions), uses the value. If not, but a block is given, yields to it.
|
|
|
|
* If not either, fallbacks to PEM_def_callback() which reads from stdin. */
|
2003-07-23 12:12:24 -04:00
|
|
|
int ossl_pem_passwd_cb(char *, int, int, void *);
|
|
|
|
|
2011-06-22 04:41:08 -04:00
|
|
|
/*
|
|
|
|
* Clear BIO* with this in PEM/DER fallback scenarios to avoid decoding
|
|
|
|
* errors piling up in OpenSSL::Errors
|
|
|
|
*/
|
2016-05-18 00:07:45 -04:00
|
|
|
#define OSSL_BIO_reset(bio) do { \
|
|
|
|
(void)BIO_reset((bio)); \
|
|
|
|
ossl_clear_error(); \
|
|
|
|
} while (0)
|
2011-06-22 04:41:08 -04:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* ERRor messages
|
|
|
|
*/
|
2021-09-11 11:44:18 -04:00
|
|
|
PRINTF_ARGS(NORETURN(void ossl_raise(VALUE, const char *, ...)), 2, 3);
|
2021-09-12 02:40:57 -04:00
|
|
|
/* Make exception instance from str and OpenSSL error reason string. */
|
|
|
|
VALUE ossl_make_error(VALUE exc, VALUE str);
|
2016-05-18 00:07:45 -04:00
|
|
|
/* Clear OpenSSL error queue. If dOSSL is set, rb_warn() them. */
|
|
|
|
void ossl_clear_error(void);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2003-09-17 05:05:02 -04:00
|
|
|
/*
|
|
|
|
* String to DER String
|
|
|
|
*/
|
|
|
|
VALUE ossl_to_der(VALUE);
|
|
|
|
VALUE ossl_to_der_if_possible(VALUE);
|
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* Debug
|
|
|
|
*/
|
|
|
|
extern VALUE dOSSL;
|
|
|
|
|
2003-07-24 02:56:02 -04:00
|
|
|
#if defined(HAVE_VA_ARGS_MACRO)
|
2009-03-12 09:44:37 -04:00
|
|
|
#define OSSL_Debug(...) do { \
|
2003-07-23 12:12:24 -04:00
|
|
|
if (dOSSL == Qtrue) { \
|
|
|
|
fprintf(stderr, "OSSL_DEBUG: "); \
|
2009-03-12 09:44:37 -04:00
|
|
|
fprintf(stderr, __VA_ARGS__); \
|
2006-02-19 11:00:04 -05:00
|
|
|
fprintf(stderr, " [%s:%d]\n", __FILE__, __LINE__); \
|
2003-07-23 12:12:24 -04:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
void ossl_debug(const char *, ...);
|
|
|
|
#define OSSL_Debug ossl_debug
|
2003-07-25 16:40:57 -04:00
|
|
|
#endif
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Include all parts
|
|
|
|
*/
|
|
|
|
#include "openssl_missing.h"
|
2003-09-12 09:46:48 -04:00
|
|
|
#include "ossl_asn1.h"
|
|
|
|
#include "ossl_bio.h"
|
2003-07-23 12:12:24 -04:00
|
|
|
#include "ossl_bn.h"
|
|
|
|
#include "ossl_cipher.h"
|
|
|
|
#include "ossl_config.h"
|
|
|
|
#include "ossl_digest.h"
|
|
|
|
#include "ossl_hmac.h"
|
|
|
|
#include "ossl_ns_spki.h"
|
2003-09-12 09:46:48 -04:00
|
|
|
#include "ossl_ocsp.h"
|
2003-12-11 07:29:08 -05:00
|
|
|
#include "ossl_pkcs12.h"
|
2003-07-23 12:12:24 -04:00
|
|
|
#include "ossl_pkcs7.h"
|
|
|
|
#include "ossl_pkey.h"
|
|
|
|
#include "ossl_rand.h"
|
|
|
|
#include "ossl_ssl.h"
|
2020-02-16 01:21:29 -05:00
|
|
|
#ifndef OPENSSL_NO_TS
|
|
|
|
#include "ossl_ts.h"
|
|
|
|
#endif
|
2003-07-23 12:12:24 -04:00
|
|
|
#include "ossl_x509.h"
|
2003-10-02 04:47:11 -04:00
|
|
|
#include "ossl_engine.h"
|
2017-09-03 08:35:27 -04:00
|
|
|
#include "ossl_kdf.h"
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
void Init_openssl(void);
|
|
|
|
|
|
|
|
#endif /* _OSSL_H_ */
|