1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <openssl/opensslv.h>
/* The test is only currently implemented for DSO_DLFCN and DSO_WIN32 */
#if defined(DSO_DLFCN) || defined(DSO_WIN32)
#define SSL_CTX_NEW "SSL_CTX_new"
#define SSL_CTX_FREE "SSL_CTX_free"
#define TLS_METHOD "TLS_method"
#define ERR_GET_ERROR "ERR_get_error"
#define OPENSSL_VERSION_NUM_FUNC "OpenSSL_version_num"
typedef struct ssl_ctx_st SSL_CTX;
typedef struct ssl_method_st SSL_METHOD;
typedef const SSL_METHOD * (*TLS_method_t)(void);
typedef SSL_CTX * (*SSL_CTX_new_t)(const SSL_METHOD *meth);
typedef void (*SSL_CTX_free_t)(SSL_CTX *);
typedef unsigned long (*ERR_get_error_t)(void);
typedef unsigned long (*OpenSSL_version_num_t)(void);
static TLS_method_t TLS_method;
static SSL_CTX_new_t SSL_CTX_new;
static SSL_CTX_free_t SSL_CTX_free;
static ERR_get_error_t ERR_get_error;
static OpenSSL_version_num_t OpenSSL_version_num;
#ifdef DSO_DLFCN
# define DSO_DSOBYADDR "DSO_dsobyaddr"
# define DSO_FREE "DSO_free"
typedef void DSO;
typedef DSO * (*DSO_dsobyaddr_t)(void (*addr)(void), int flags);
typedef int (*DSO_free_t)(DSO *dso);
static DSO_dsobyaddr_t DSO_dsobyaddr;
static DSO_free_t DSO_free;
# include <dlfcn.h>
typedef void * SHLIB;
typedef void * SHLIB_SYM;
# define SHLIB_INIT NULL
static int shlib_load(const char *filename, SHLIB *lib)
{
*lib = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
if (*lib == NULL)
return 0;
return 1;
}
static int shlib_sym(SHLIB lib, const char *symname, SHLIB_SYM *sym)
{
*sym = dlsym(lib, symname);
return *sym != NULL;
}
static int shlib_close(SHLIB lib)
{
if (dlclose(lib) != 0)
return 0;
return 1;
}
#elif defined(DSO_WIN32)
# include <windows.h>
typedef HINSTANCE SHLIB;
typedef void * SHLIB_SYM;
# define SHLIB_INIT 0
static int shlib_load(const char *filename, SHLIB *lib)
{
*lib = LoadLibraryA(filename);
if (*lib == NULL)
return 0;
return 1;
}
static int shlib_sym(SHLIB lib, const char *symname, SHLIB_SYM *sym)
{
*sym = (SHLIB_SYM)GetProcAddress(lib, symname);
return *sym != NULL;
}
static int shlib_close(SHLIB lib)
{
if (FreeLibrary(lib) == 0)
return 0;
return 1;
}
#endif
# define CRYPTO_FIRST_OPT "-crypto_first"
# define SSL_FIRST_OPT "-ssl_first"
# define JUST_CRYPTO_OPT "-just_crypto"
# define DSO_REFTEST_OPT "-dso_ref"
enum test_types_en {
CRYPTO_FIRST,
SSL_FIRST,
JUST_CRYPTO,
DSO_REFTEST
};
int main(int argc, char **argv)
{
SHLIB ssllib = SHLIB_INIT, cryptolib = SHLIB_INIT;
SSL_CTX *ctx;
union {
void (*func) (void);
SHLIB_SYM sym;
} tls_method_sym, ssl_ctx_new_sym, ssl_ctx_free_sym, err_get_error_sym,
openssl_version_num_sym, dso_dsobyaddr_sym, dso_free_sym;
enum test_types_en test_type;
int i;
if (argc != 4) {
printf("Unexpected number of arguments\n");
return 1;
}
if (strcmp(argv[1], CRYPTO_FIRST_OPT) == 0) {
test_type = CRYPTO_FIRST;
} else if (strcmp(argv[1], SSL_FIRST_OPT) == 0) {
test_type = SSL_FIRST;
} else if (strcmp(argv[1], JUST_CRYPTO_OPT) == 0) {
test_type = JUST_CRYPTO;
} else if (strcmp(argv[1], DSO_REFTEST_OPT) == 0) {
test_type = DSO_REFTEST;
} else {
printf("Unrecognised argument\n");
return 1;
}
for (i = 0; i < 2; i++) {
if ((i == 0 && (test_type == CRYPTO_FIRST
|| test_type == JUST_CRYPTO
|| test_type == DSO_REFTEST))
|| (i == 1 && test_type == SSL_FIRST)) {
if (!shlib_load(argv[2], &cryptolib)) {
printf("Unable to load libcrypto\n");
return 1;
}
}
if ((i == 0 && test_type == SSL_FIRST)
|| (i == 1 && test_type == CRYPTO_FIRST)) {
if (!shlib_load(argv[3], &ssllib)) {
printf("Unable to load libssl\n");
return 1;
}
}
}
if (test_type != JUST_CRYPTO && test_type != DSO_REFTEST) {
if (!shlib_sym(ssllib, TLS_METHOD, &tls_method_sym.sym)
|| !shlib_sym(ssllib, SSL_CTX_NEW, &ssl_ctx_new_sym.sym)
|| !shlib_sym(ssllib, SSL_CTX_FREE, &ssl_ctx_free_sym.sym)) {
printf("Unable to load ssl symbols\n");
return 1;
}
TLS_method = (TLS_method_t)tls_method_sym.func;
SSL_CTX_new = (SSL_CTX_new_t)ssl_ctx_new_sym.func;
SSL_CTX_free = (SSL_CTX_free_t)ssl_ctx_free_sym.func;
ctx = SSL_CTX_new(TLS_method());
if (ctx == NULL) {
printf("Unable to create SSL_CTX\n");
return 1;
}
SSL_CTX_free(ctx);
}
if (!shlib_sym(cryptolib, ERR_GET_ERROR, &err_get_error_sym.sym)
|| !shlib_sym(cryptolib, OPENSSL_VERSION_NUM_FUNC,
&openssl_version_num_sym.sym)) {
printf("Unable to load crypto symbols\n");
return 1;
}
ERR_get_error = (ERR_get_error_t)err_get_error_sym.func;
OpenSSL_version_num = (OpenSSL_version_num_t)openssl_version_num_sym.func;
if (ERR_get_error() != 0) {
printf("Unexpected error in error queue\n");
return 1;
}
/*
* The bits that COMPATIBILITY_MASK lets through MUST be the same in
* the library and in the application.
* The bits that are masked away MUST be a larger or equal number in
* the library compared to the application.
*/
# define COMPATIBILITY_MASK 0xfff00000L
if ((OpenSSL_version_num() & COMPATIBILITY_MASK)
!= (OPENSSL_VERSION_NUMBER & COMPATIBILITY_MASK)) {
printf("Unexpected library version loaded\n");
return 1;
}
if ((OpenSSL_version_num() & ~COMPATIBILITY_MASK)
< (OPENSSL_VERSION_NUMBER & ~COMPATIBILITY_MASK)) {
printf("Unexpected library version loaded\n");
return 1;
}
if (test_type == DSO_REFTEST) {
# ifdef DSO_DLFCN
/*
* This is resembling the code used in ossl_init_base() and
* OPENSSL_atexit() to block unloading the library after dlclose().
* We are not testing this on Windows, because it is done there in a
* completely different way. Especially as a call to DSO_dsobyaddr()
* will always return an error, because DSO_pathbyaddr() is not
* implemented there.
*/
if (!shlib_sym(cryptolib, DSO_DSOBYADDR, &dso_dsobyaddr_sym.sym)
|| !shlib_sym(cryptolib, DSO_FREE, &dso_free_sym.sym)) {
printf("Unable to load crypto dso symbols\n");
return 1;
}
DSO_dsobyaddr = (DSO_dsobyaddr_t)dso_dsobyaddr_sym.func;
DSO_free = (DSO_free_t)dso_free_sym.func;
{
DSO *hndl;
/* use known symbol from crypto module */
if ((hndl = DSO_dsobyaddr((void (*)(void))ERR_get_error, 0)) != NULL) {
DSO_free(hndl);
} else {
printf("Unable to obtain DSO reference from crypto symbol\n");
return 1;
}
}
# endif /* DSO_DLFCN */
}
for (i = 0; i < 2; i++) {
if ((i == 0 && test_type == CRYPTO_FIRST)
|| (i == 1 && test_type == SSL_FIRST)) {
if (!shlib_close(ssllib)) {
printf("Unable to close libssl\n");
return 1;
}
}
if ((i == 0 && (test_type == SSL_FIRST
|| test_type == JUST_CRYPTO
|| test_type == DSO_REFTEST))
|| (i == 1 && test_type == CRYPTO_FIRST)) {
if (!shlib_close(cryptolib)) {
printf("Unable to close libcrypto\n");
return 1;
}
}
}
printf("Success\n");
return 0;
}
#else
int main(void)
{
printf("Test not implemented on this platform\n");
return 0;
}
#endif
|