os/ossrv/ssl/libcrypto/src/crypto/cryptlib.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* crypto/cryptlib.c */
sl@0
     2
/* ====================================================================
sl@0
     3
 * Copyright (c) 1998-2003 The OpenSSL Project.  All rights reserved.
sl@0
     4
 *
sl@0
     5
 * Redistribution and use in source and binary forms, with or without
sl@0
     6
 * modification, are permitted provided that the following conditions
sl@0
     7
 * are met:
sl@0
     8
 *
sl@0
     9
 * 1. Redistributions of source code must retain the above copyright
sl@0
    10
 *    notice, this list of conditions and the following disclaimer. 
sl@0
    11
 *
sl@0
    12
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    13
 *    notice, this list of conditions and the following disclaimer in
sl@0
    14
 *    the documentation and/or other materials provided with the
sl@0
    15
 *    distribution.
sl@0
    16
 *
sl@0
    17
 * 3. All advertising materials mentioning features or use of this
sl@0
    18
 *    software must display the following acknowledgment:
sl@0
    19
 *    "This product includes software developed by the OpenSSL Project
sl@0
    20
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
sl@0
    21
 *
sl@0
    22
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
sl@0
    23
 *    endorse or promote products derived from this software without
sl@0
    24
 *    prior written permission. For written permission, please contact
sl@0
    25
 *    openssl-core@openssl.org.
sl@0
    26
 *
sl@0
    27
 * 5. Products derived from this software may not be called "OpenSSL"
sl@0
    28
 *    nor may "OpenSSL" appear in their names without prior written
sl@0
    29
 *    permission of the OpenSSL Project.
sl@0
    30
 *
sl@0
    31
 * 6. Redistributions of any form whatsoever must retain the following
sl@0
    32
 *    acknowledgment:
sl@0
    33
 *    "This product includes software developed by the OpenSSL Project
sl@0
    34
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
sl@0
    35
 *
sl@0
    36
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
sl@0
    37
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    38
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
sl@0
    39
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
sl@0
    40
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
sl@0
    41
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
sl@0
    42
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
sl@0
    43
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    44
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
sl@0
    45
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sl@0
    46
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
sl@0
    47
 * OF THE POSSIBILITY OF SUCH DAMAGE.
sl@0
    48
 * ====================================================================
sl@0
    49
 *
sl@0
    50
 * This product includes cryptographic software written by Eric Young
sl@0
    51
 * (eay@cryptsoft.com).  This product includes software written by Tim
sl@0
    52
 * Hudson (tjh@cryptsoft.com).
sl@0
    53
 *
sl@0
    54
 */
sl@0
    55
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
sl@0
    56
 * All rights reserved.
sl@0
    57
 *
sl@0
    58
 * This package is an SSL implementation written
sl@0
    59
 * by Eric Young (eay@cryptsoft.com).
sl@0
    60
 * The implementation was written so as to conform with Netscapes SSL.
sl@0
    61
 * 
sl@0
    62
 * This library is free for commercial and non-commercial use as long as
sl@0
    63
 * the following conditions are aheared to.  The following conditions
sl@0
    64
 * apply to all code found in this distribution, be it the RC4, RSA,
sl@0
    65
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
sl@0
    66
 * included with this distribution is covered by the same copyright terms
sl@0
    67
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
sl@0
    68
 * 
sl@0
    69
 * Copyright remains Eric Young's, and as such any Copyright notices in
sl@0
    70
 * the code are not to be removed.
sl@0
    71
 * If this package is used in a product, Eric Young should be given attribution
sl@0
    72
 * as the author of the parts of the library used.
sl@0
    73
 * This can be in the form of a textual message at program startup or
sl@0
    74
 * in documentation (online or textual) provided with the package.
sl@0
    75
 * 
sl@0
    76
 * Redistribution and use in source and binary forms, with or without
sl@0
    77
 * modification, are permitted provided that the following conditions
sl@0
    78
 * are met:
sl@0
    79
 * 1. Redistributions of source code must retain the copyright
sl@0
    80
 *    notice, this list of conditions and the following disclaimer.
sl@0
    81
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    82
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    83
 *    documentation and/or other materials provided with the distribution.
sl@0
    84
 * 3. All advertising materials mentioning features or use of this software
sl@0
    85
 *    must display the following acknowledgement:
sl@0
    86
 *    "This product includes cryptographic software written by
sl@0
    87
 *     Eric Young (eay@cryptsoft.com)"
sl@0
    88
 *    The word 'cryptographic' can be left out if the rouines from the library
sl@0
    89
 *    being used are not cryptographic related :-).
sl@0
    90
 * 4. If you include any Windows specific code (or a derivative thereof) from 
sl@0
    91
 *    the apps directory (application code) you must include an acknowledgement:
sl@0
    92
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
sl@0
    93
 * 
sl@0
    94
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
sl@0
    95
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    96
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    97
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
sl@0
    98
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    99
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
   100
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
   101
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
   102
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
   103
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
   104
 * SUCH DAMAGE.
sl@0
   105
 * 
sl@0
   106
 * The licence and distribution terms for any publically available version or
sl@0
   107
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
sl@0
   108
 * copied and put under another distribution licence
sl@0
   109
 * [including the GNU Public Licence.]
sl@0
   110
 */
sl@0
   111
/* ====================================================================
sl@0
   112
 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
sl@0
   113
 * ECDH support in OpenSSL originally developed by 
sl@0
   114
 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
sl@0
   115
 */
sl@0
   116
 /*
sl@0
   117
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
   118
 */
sl@0
   119
sl@0
   120
#include "cryptlib.h"
sl@0
   121
#include <openssl/safestack.h>
sl@0
   122
sl@0
   123
#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16)
sl@0
   124
static double SSLeay_MSVC5_hack=0.0; /* and for VC1.5 */
sl@0
   125
#endif
sl@0
   126
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
sl@0
   127
#include "libcrypto_wsd_macros.h"
sl@0
   128
#include "libcrypto_wsd.h"
sl@0
   129
#endif
sl@0
   130
sl@0
   131
DECLARE_STACK_OF(CRYPTO_dynlock)
sl@0
   132
IMPLEMENT_STACK_OF(CRYPTO_dynlock)
sl@0
   133
sl@0
   134
/* real #defines in crypto.h, keep these upto date */
sl@0
   135
#ifndef EMULATOR
sl@0
   136
static const char* lock_names[CRYPTO_NUM_LOCKS] =
sl@0
   137
	{
sl@0
   138
	"<<ERROR>>",
sl@0
   139
	"err",
sl@0
   140
	"ex_data",
sl@0
   141
	"x509",
sl@0
   142
	"x509_info",
sl@0
   143
	"x509_pkey",
sl@0
   144
	"x509_crl",
sl@0
   145
	"x509_req",
sl@0
   146
	"dsa",
sl@0
   147
	"rsa",
sl@0
   148
	"evp_pkey",
sl@0
   149
	"x509_store",
sl@0
   150
	"ssl_ctx",
sl@0
   151
	"ssl_cert",
sl@0
   152
	"ssl_session",
sl@0
   153
	"ssl_sess_cert",
sl@0
   154
	"ssl",
sl@0
   155
	"ssl_method",
sl@0
   156
	"rand",
sl@0
   157
	"rand2",
sl@0
   158
	"debug_malloc",
sl@0
   159
	"BIO",
sl@0
   160
	"gethostbyname",
sl@0
   161
	"getservbyname",
sl@0
   162
	"readdir",
sl@0
   163
	"RSA_blinding",
sl@0
   164
	"dh",
sl@0
   165
	"debug_malloc2",
sl@0
   166
	"dso",
sl@0
   167
	"dynlock",
sl@0
   168
	"engine",
sl@0
   169
	"ui",
sl@0
   170
	"ecdsa",
sl@0
   171
	"ec",
sl@0
   172
	"ecdh",
sl@0
   173
	"bn",
sl@0
   174
	"ec_pre_comp",
sl@0
   175
	"store",
sl@0
   176
	"comp",
sl@0
   177
#if CRYPTO_NUM_LOCKS != 39
sl@0
   178
# error "Inconsistency between crypto.h and cryptlib.c"
sl@0
   179
#endif
sl@0
   180
	};
sl@0
   181
#else
sl@0
   182
sl@0
   183
static const char *const lock_names[CRYPTO_NUM_LOCKS] =
sl@0
   184
	{
sl@0
   185
	"<<ERROR>>",
sl@0
   186
	"err",
sl@0
   187
	"ex_data",
sl@0
   188
	"x509",
sl@0
   189
	"x509_info",
sl@0
   190
	"x509_pkey",
sl@0
   191
	"x509_crl",
sl@0
   192
	"x509_req",
sl@0
   193
	"dsa",
sl@0
   194
	"rsa",
sl@0
   195
	"evp_pkey",
sl@0
   196
	"x509_store",
sl@0
   197
	"ssl_ctx",
sl@0
   198
	"ssl_cert",
sl@0
   199
	"ssl_session",
sl@0
   200
	"ssl_sess_cert",
sl@0
   201
	"ssl",
sl@0
   202
	"ssl_method",
sl@0
   203
	"rand",
sl@0
   204
	"rand2",
sl@0
   205
	"debug_malloc",
sl@0
   206
	"BIO",
sl@0
   207
	"gethostbyname",
sl@0
   208
	"getservbyname",
sl@0
   209
	"readdir",
sl@0
   210
	"RSA_blinding",
sl@0
   211
	"dh",
sl@0
   212
	"debug_malloc2",
sl@0
   213
	"dso",
sl@0
   214
	"dynlock",
sl@0
   215
	"engine",
sl@0
   216
	"ui",
sl@0
   217
	"ecdsa",
sl@0
   218
	"ec",
sl@0
   219
	"ecdh",
sl@0
   220
	"bn",
sl@0
   221
	"ec_pre_comp",
sl@0
   222
	"store",
sl@0
   223
	"comp",
sl@0
   224
#if CRYPTO_NUM_LOCKS != 39
sl@0
   225
# error "Inconsistency between crypto.h and cryptlib.c"
sl@0
   226
#endif
sl@0
   227
	};
sl@0
   228
#endif //EMULATOR
sl@0
   229
sl@0
   230
#ifndef EMULATOR
sl@0
   231
/* This is for applications to allocate new type names in the non-dynamic
sl@0
   232
   array of lock names.  These are numbered with positive numbers.  */
sl@0
   233
static STACK *app_locks=NULL;
sl@0
   234
/* For applications that want a more dynamic way of handling threads, the
sl@0
   235
   following stack is used.  These are externally numbered with negative
sl@0
   236
   numbers.  */
sl@0
   237
static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL;
sl@0
   238
sl@0
   239
#else
sl@0
   240
 GET_STATIC_VAR_FROM_TLS(app_locks,cryptlib,STACK *)
sl@0
   241
 #define app_locks (*GET_WSD_VAR_NAME(app_locks,cryptlib,s)())
sl@0
   242
 GET_STATIC_VAR_FROM_TLS(dyn_locks,cryptlib,STACK_OF(CRYPTO_dynlock)*)
sl@0
   243
 #define dyn_locks (*GET_WSD_VAR_NAME(dyn_locks,cryptlib,s)())
sl@0
   244
#endif
sl@0
   245
sl@0
   246
#ifndef EMULATOR
sl@0
   247
static void (MS_FAR *locking_callback)(int mode,int type,
sl@0
   248
	const char *file,int line)=NULL;
sl@0
   249
static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
sl@0
   250
	int type,const char *file,int line)=NULL;
sl@0
   251
static unsigned long (MS_FAR *id_callback)(void)=NULL;
sl@0
   252
static struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback)
sl@0
   253
	(const char *file,int line)=NULL;
sl@0
   254
static void (MS_FAR *dynlock_lock_callback)(int mode,
sl@0
   255
	struct CRYPTO_dynlock_value *l, const char *file,int line)=NULL;
sl@0
   256
static void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l,
sl@0
   257
	const char *file,int line)=NULL;
sl@0
   258
#else
sl@0
   259
#define locking_callback libcrypto_ImpurePtr()->locking_callback
sl@0
   260
#define add_lock_callback libcrypto_ImpurePtr()->add_lock_callback
sl@0
   261
#define id_callback libcrypto_ImpurePtr()->id_callback
sl@0
   262
#define dynlock_create_callback libcrypto_ImpurePtr()->dynlock_create_callback
sl@0
   263
#define dynlock_lock_callback libcrypto_ImpurePtr()->dynlock_lock_callback
sl@0
   264
#define dynlock_destroy_callback libcrypto_ImpurePtr()->dynlock_destroy_callback
sl@0
   265
#endif	
sl@0
   266
sl@0
   267
EXPORT_C int CRYPTO_get_new_lockid(char *name)
sl@0
   268
	{
sl@0
   269
	char *str;
sl@0
   270
	int i;
sl@0
   271
sl@0
   272
#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16)
sl@0
   273
	/* A hack to make Visual C++ 5.0 work correctly when linking as
sl@0
   274
	 * a DLL using /MT. Without this, the application cannot use
sl@0
   275
	 * and floating point printf's.
sl@0
   276
	 * It also seems to be needed for Visual C 1.5 (win16) */
sl@0
   277
	SSLeay_MSVC5_hack=(double)name[0]*(double)name[1];
sl@0
   278
#endif
sl@0
   279
sl@0
   280
	if ((app_locks == NULL) && ((app_locks=sk_new_null()) == NULL))
sl@0
   281
		{
sl@0
   282
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
sl@0
   283
		return(0);
sl@0
   284
		}
sl@0
   285
	if ((str=BUF_strdup(name)) == NULL)
sl@0
   286
		{
sl@0
   287
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
sl@0
   288
		return(0);
sl@0
   289
		}
sl@0
   290
	i=sk_push(app_locks,str);
sl@0
   291
	if (!i)
sl@0
   292
		OPENSSL_free(str);
sl@0
   293
	else
sl@0
   294
		i+=CRYPTO_NUM_LOCKS; /* gap of one :-) */
sl@0
   295
	return(i);
sl@0
   296
	}
sl@0
   297
sl@0
   298
EXPORT_C int CRYPTO_num_locks(void)
sl@0
   299
	{
sl@0
   300
	return CRYPTO_NUM_LOCKS;
sl@0
   301
	}
sl@0
   302
sl@0
   303
EXPORT_C int CRYPTO_get_new_dynlockid(void)
sl@0
   304
	{
sl@0
   305
	int i = 0;
sl@0
   306
	CRYPTO_dynlock *pointer = NULL;
sl@0
   307
sl@0
   308
	if (dynlock_create_callback == NULL)
sl@0
   309
		{
sl@0
   310
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK);
sl@0
   311
		return(0);
sl@0
   312
		}
sl@0
   313
	CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
sl@0
   314
	if ((dyn_locks == NULL)&&((dyn_locks=sk_CRYPTO_dynlock_new_null()) == NULL))
sl@0
   315
		{
sl@0
   316
		CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   317
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
sl@0
   318
		return(0);
sl@0
   319
		}
sl@0
   320
	CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   321
sl@0
   322
	pointer = (CRYPTO_dynlock *)OPENSSL_malloc(sizeof(CRYPTO_dynlock));
sl@0
   323
	if (pointer == NULL)
sl@0
   324
		{
sl@0
   325
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
sl@0
   326
		return(0);
sl@0
   327
		}
sl@0
   328
	pointer->references = 1;
sl@0
   329
	pointer->data = dynlock_create_callback(__FILE__,__LINE__);
sl@0
   330
	if (pointer->data == NULL)
sl@0
   331
		{
sl@0
   332
		OPENSSL_free(pointer);
sl@0
   333
		CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
sl@0
   334
		return(0);
sl@0
   335
		}
sl@0
   336
sl@0
   337
	CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
sl@0
   338
	/* First, try to find an existing empty slot */
sl@0
   339
	i=sk_CRYPTO_dynlock_find(dyn_locks,NULL);
sl@0
   340
	/* If there was none, push, thereby creating a new one */
sl@0
   341
	if (i == -1)
sl@0
   342
		/* Since sk_push() returns the number of items on the
sl@0
   343
		   stack, not the location of the pushed item, we need
sl@0
   344
		   to transform the returned number into a position,
sl@0
   345
		   by decreasing it.  */
sl@0
   346
		i=sk_CRYPTO_dynlock_push(dyn_locks,pointer) - 1;
sl@0
   347
	else
sl@0
   348
		/* If we found a place with a NULL pointer, put our pointer
sl@0
   349
		   in it.  */
sl@0
   350
		(void)sk_CRYPTO_dynlock_set(dyn_locks,i,pointer);
sl@0
   351
	CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   352
sl@0
   353
	if (i == -1)
sl@0
   354
		{
sl@0
   355
		dynlock_destroy_callback(pointer->data,__FILE__,__LINE__);
sl@0
   356
		OPENSSL_free(pointer);
sl@0
   357
		}
sl@0
   358
	else
sl@0
   359
		i += 1; /* to avoid 0 */
sl@0
   360
	return -i;
sl@0
   361
	}
sl@0
   362
sl@0
   363
EXPORT_C void CRYPTO_destroy_dynlockid(int i)
sl@0
   364
	{
sl@0
   365
	CRYPTO_dynlock *pointer = NULL;
sl@0
   366
	if (i)
sl@0
   367
		i = -i-1;
sl@0
   368
	if (dynlock_destroy_callback == NULL)
sl@0
   369
		return;
sl@0
   370
sl@0
   371
	CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
sl@0
   372
sl@0
   373
	if (dyn_locks == NULL || i >= sk_CRYPTO_dynlock_num(dyn_locks))
sl@0
   374
		{
sl@0
   375
		CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   376
		return;
sl@0
   377
		}
sl@0
   378
	pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
sl@0
   379
	if (pointer != NULL)
sl@0
   380
		{
sl@0
   381
		--pointer->references;
sl@0
   382
#ifdef REF_CHECK
sl@0
   383
		if (pointer->references < 0)
sl@0
   384
			{
sl@0
   385
			fprintf(stderr,"CRYPTO_destroy_dynlockid, bad reference count\n");
sl@0
   386
			abort();
sl@0
   387
			}
sl@0
   388
		else
sl@0
   389
#endif
sl@0
   390
			if (pointer->references <= 0)
sl@0
   391
				{
sl@0
   392
				(void)sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
sl@0
   393
				}
sl@0
   394
			else
sl@0
   395
				pointer = NULL;
sl@0
   396
		}
sl@0
   397
	CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   398
sl@0
   399
	if (pointer)
sl@0
   400
		{
sl@0
   401
		dynlock_destroy_callback(pointer->data,__FILE__,__LINE__);
sl@0
   402
		OPENSSL_free(pointer);
sl@0
   403
		}
sl@0
   404
	}
sl@0
   405
sl@0
   406
EXPORT_C struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i)
sl@0
   407
	{
sl@0
   408
	CRYPTO_dynlock *pointer = NULL;
sl@0
   409
	if (i)
sl@0
   410
		i = -i-1;
sl@0
   411
sl@0
   412
	CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
sl@0
   413
sl@0
   414
	if (dyn_locks != NULL && i < sk_CRYPTO_dynlock_num(dyn_locks))
sl@0
   415
		pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
sl@0
   416
	if (pointer)
sl@0
   417
		pointer->references++;
sl@0
   418
sl@0
   419
	CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
sl@0
   420
sl@0
   421
	if (pointer)
sl@0
   422
		return pointer->data;
sl@0
   423
	return NULL;
sl@0
   424
	}
sl@0
   425
sl@0
   426
EXPORT_C struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))
sl@0
   427
	(const char *file,int line)
sl@0
   428
	{
sl@0
   429
	return(dynlock_create_callback);
sl@0
   430
	}
sl@0
   431
sl@0
   432
EXPORT_C void (*CRYPTO_get_dynlock_lock_callback(void))(int mode,
sl@0
   433
	struct CRYPTO_dynlock_value *l, const char *file,int line)
sl@0
   434
	{
sl@0
   435
	return(dynlock_lock_callback);
sl@0
   436
	}
sl@0
   437
sl@0
   438
EXPORT_C void (*CRYPTO_get_dynlock_destroy_callback(void))
sl@0
   439
	(struct CRYPTO_dynlock_value *l, const char *file,int line)
sl@0
   440
	{
sl@0
   441
	return(dynlock_destroy_callback);
sl@0
   442
	}
sl@0
   443
sl@0
   444
EXPORT_C void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*func)
sl@0
   445
	(const char *file, int line))
sl@0
   446
	{
sl@0
   447
	dynlock_create_callback=func;
sl@0
   448
	}
sl@0
   449
sl@0
   450
EXPORT_C void CRYPTO_set_dynlock_lock_callback(void (*func)(int mode,
sl@0
   451
	struct CRYPTO_dynlock_value *l, const char *file, int line))
sl@0
   452
	{
sl@0
   453
	dynlock_lock_callback=func;
sl@0
   454
	}
sl@0
   455
sl@0
   456
EXPORT_C void CRYPTO_set_dynlock_destroy_callback(void (*func)
sl@0
   457
	(struct CRYPTO_dynlock_value *l, const char *file, int line))
sl@0
   458
	{
sl@0
   459
	dynlock_destroy_callback=func;
sl@0
   460
	}
sl@0
   461
sl@0
   462
sl@0
   463
EXPORT_C void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
sl@0
   464
		int line)
sl@0
   465
	{
sl@0
   466
	return(locking_callback);
sl@0
   467
	}
sl@0
   468
sl@0
   469
EXPORT_C int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
sl@0
   470
					  const char *file,int line)
sl@0
   471
	{
sl@0
   472
	return(add_lock_callback);
sl@0
   473
	}
sl@0
   474
sl@0
   475
EXPORT_C void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
sl@0
   476
					      const char *file,int line))
sl@0
   477
	{
sl@0
   478
	locking_callback=func;
sl@0
   479
	}
sl@0
   480
sl@0
   481
EXPORT_C void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
sl@0
   482
					      const char *file,int line))
sl@0
   483
	{
sl@0
   484
	add_lock_callback=func;
sl@0
   485
	}
sl@0
   486
sl@0
   487
EXPORT_C unsigned long (*CRYPTO_get_id_callback(void))(void)
sl@0
   488
	{
sl@0
   489
	return(id_callback);
sl@0
   490
	}
sl@0
   491
sl@0
   492
EXPORT_C void CRYPTO_set_id_callback(unsigned long (*func)(void))
sl@0
   493
	{
sl@0
   494
	id_callback=func;
sl@0
   495
	}
sl@0
   496
sl@0
   497
EXPORT_C unsigned long CRYPTO_thread_id(void)
sl@0
   498
	{
sl@0
   499
	unsigned long ret=0;
sl@0
   500
sl@0
   501
	if (id_callback == NULL)
sl@0
   502
		{
sl@0
   503
#ifdef OPENSSL_SYS_WIN16
sl@0
   504
		ret=(unsigned long)GetCurrentTask();
sl@0
   505
#elif defined(OPENSSL_SYS_WIN32)
sl@0
   506
		ret=(unsigned long)GetCurrentThreadId();
sl@0
   507
#elif defined(GETPID_IS_MEANINGLESS)
sl@0
   508
		ret=1L;
sl@0
   509
#else
sl@0
   510
		//ret=(unsigned long)getpid();
sl@0
   511
		//ret=(unsigned long)getpid(;
sl@0
   512
#endif
sl@0
   513
		}
sl@0
   514
	else
sl@0
   515
		ret=id_callback();
sl@0
   516
	return(ret);
sl@0
   517
	}
sl@0
   518
sl@0
   519
EXPORT_C void CRYPTO_lock(int mode, int type, const char *file, int line)
sl@0
   520
	{
sl@0
   521
#ifdef LOCK_DEBUG
sl@0
   522
		{
sl@0
   523
		char *rw_text,*operation_text;
sl@0
   524
sl@0
   525
		if (mode & CRYPTO_LOCK)
sl@0
   526
			operation_text="lock  ";
sl@0
   527
		else if (mode & CRYPTO_UNLOCK)
sl@0
   528
			operation_text="unlock";
sl@0
   529
		else
sl@0
   530
			operation_text="ERROR ";
sl@0
   531
sl@0
   532
		if (mode & CRYPTO_READ)
sl@0
   533
			rw_text="r";
sl@0
   534
		else if (mode & CRYPTO_WRITE)
sl@0
   535
			rw_text="w";
sl@0
   536
		else
sl@0
   537
			rw_text="ERROR";
sl@0
   538
sl@0
   539
		fprintf(stderr,"lock:%08lx:(%s)%s %-18s %s:%d\n",
sl@0
   540
			CRYPTO_thread_id(), rw_text, operation_text,
sl@0
   541
			CRYPTO_get_lock_name(type), file, line);
sl@0
   542
		}
sl@0
   543
#endif
sl@0
   544
	if (type < 0)
sl@0
   545
		{
sl@0
   546
		if (dynlock_lock_callback != NULL)
sl@0
   547
			{
sl@0
   548
			struct CRYPTO_dynlock_value *pointer
sl@0
   549
				= CRYPTO_get_dynlock_value(type);
sl@0
   550
sl@0
   551
			OPENSSL_assert(pointer != NULL);
sl@0
   552
sl@0
   553
			dynlock_lock_callback(mode, pointer, file, line);
sl@0
   554
sl@0
   555
			CRYPTO_destroy_dynlockid(type);
sl@0
   556
			}
sl@0
   557
		}
sl@0
   558
	else
sl@0
   559
		if (locking_callback != NULL)
sl@0
   560
			locking_callback(mode,type,file,line);
sl@0
   561
	}
sl@0
   562
sl@0
   563
EXPORT_C int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
sl@0
   564
	     int line)
sl@0
   565
	{
sl@0
   566
	int ret = 0;
sl@0
   567
sl@0
   568
	if (add_lock_callback != NULL)
sl@0
   569
		{
sl@0
   570
#ifdef LOCK_DEBUG
sl@0
   571
		int before= *pointer;
sl@0
   572
#endif
sl@0
   573
sl@0
   574
		ret=add_lock_callback(pointer,amount,type,file,line);
sl@0
   575
#ifdef LOCK_DEBUG
sl@0
   576
		fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
sl@0
   577
			CRYPTO_thread_id(),
sl@0
   578
			before,amount,ret,
sl@0
   579
			CRYPTO_get_lock_name(type),
sl@0
   580
			file,line);
sl@0
   581
#endif
sl@0
   582
		}
sl@0
   583
	else
sl@0
   584
		{
sl@0
   585
		CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,file,line);
sl@0
   586
sl@0
   587
		ret= *pointer+amount;
sl@0
   588
#ifdef LOCK_DEBUG
sl@0
   589
		fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
sl@0
   590
			CRYPTO_thread_id(),
sl@0
   591
			*pointer,amount,ret,
sl@0
   592
			CRYPTO_get_lock_name(type),
sl@0
   593
			file,line);
sl@0
   594
#endif
sl@0
   595
		*pointer=ret;
sl@0
   596
		CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,file,line);
sl@0
   597
		}
sl@0
   598
	return(ret);
sl@0
   599
	}
sl@0
   600
sl@0
   601
EXPORT_C const char *CRYPTO_get_lock_name(int type)
sl@0
   602
	{
sl@0
   603
	if (type < 0)
sl@0
   604
		return("dynamic");
sl@0
   605
	else if (type < CRYPTO_NUM_LOCKS)
sl@0
   606
		return(lock_names[type]);
sl@0
   607
	else if (type-CRYPTO_NUM_LOCKS > sk_num(app_locks))
sl@0
   608
		return("ERROR");
sl@0
   609
	else
sl@0
   610
		return(sk_value(app_locks,type-CRYPTO_NUM_LOCKS));
sl@0
   611
	}
sl@0
   612
sl@0
   613
#if	defined(__i386)   || defined(__i386__)   || defined(_M_IX86) || \
sl@0
   614
	defined(__INTEL__) || \
sl@0
   615
	defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64)
sl@0
   616
sl@0
   617
unsigned long  OPENSSL_ia32cap_P=0;
sl@0
   618
EXPORT_C unsigned long *OPENSSL_ia32cap_loc(void) { return &OPENSSL_ia32cap_P; }
sl@0
   619
sl@0
   620
#if defined(OPENSSL_CPUID_OBJ) && !defined(OPENSSL_NO_ASM) && !defined(I386_ONLY)
sl@0
   621
#define OPENSSL_CPUID_SETUP
sl@0
   622
EXPORT_C void OPENSSL_cpuid_setup(void)
sl@0
   623
{ static int trigger=0;
sl@0
   624
  unsigned long OPENSSL_ia32_cpuid(void);
sl@0
   625
  char *env;
sl@0
   626
sl@0
   627
    if (trigger)	return;
sl@0
   628
sl@0
   629
    trigger=1;
sl@0
   630
    if ((env=getenv("OPENSSL_ia32cap")))
sl@0
   631
	OPENSSL_ia32cap_P = strtoul(env,NULL,0)|(1<<10);
sl@0
   632
    else
sl@0
   633
	OPENSSL_ia32cap_P = OPENSSL_ia32_cpuid()|(1<<10);
sl@0
   634
    /*
sl@0
   635
     * |(1<<10) sets a reserved bit to signal that variable
sl@0
   636
     * was initialized already... This is to avoid interference
sl@0
   637
     * with cpuid snippets in ELF .init segment.
sl@0
   638
     */
sl@0
   639
}
sl@0
   640
#endif
sl@0
   641
sl@0
   642
#else
sl@0
   643
EXPORT_C unsigned long *OPENSSL_ia32cap_loc(void) { return NULL; }
sl@0
   644
#endif
sl@0
   645
int OPENSSL_NONPIC_relocated = 0;
sl@0
   646
#if !defined(OPENSSL_CPUID_SETUP)
sl@0
   647
EXPORT_C void OPENSSL_cpuid_setup(void) {}
sl@0
   648
#endif
sl@0
   649
sl@0
   650
#if (defined(_WIN32) || defined(__CYGWIN__)) && defined(_WINDLL)
sl@0
   651
#ifdef __CYGWIN__
sl@0
   652
/* pick DLL_[PROCESS|THREAD]_[ATTACH|DETACH] definitions */
sl@0
   653
#include <windows.h>
sl@0
   654
#endif
sl@0
   655
sl@0
   656
/* All we really need to do is remove the 'error' state when a thread
sl@0
   657
 * detaches */
sl@0
   658
sl@0
   659
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
sl@0
   660
	     LPVOID lpvReserved)
sl@0
   661
	{
sl@0
   662
	switch(fdwReason)
sl@0
   663
		{
sl@0
   664
	case DLL_PROCESS_ATTACH:
sl@0
   665
		OPENSSL_cpuid_setup();
sl@0
   666
#if defined(_WIN32_WINNT)
sl@0
   667
		{
sl@0
   668
		IMAGE_DOS_HEADER *dos_header = (IMAGE_DOS_HEADER *)hinstDLL;
sl@0
   669
		IMAGE_NT_HEADERS *nt_headers;
sl@0
   670
sl@0
   671
		if (dos_header->e_magic==IMAGE_DOS_SIGNATURE)
sl@0
   672
			{
sl@0
   673
			nt_headers = (IMAGE_NT_HEADERS *)((char *)dos_header
sl@0
   674
						+ dos_header->e_lfanew);
sl@0
   675
			if (nt_headers->Signature==IMAGE_NT_SIGNATURE &&
sl@0
   676
			    hinstDLL!=(HINSTANCE)(nt_headers->OptionalHeader.ImageBase))
sl@0
   677
				OPENSSL_NONPIC_relocated=1;
sl@0
   678
			}
sl@0
   679
		}
sl@0
   680
#endif
sl@0
   681
		break;
sl@0
   682
	case DLL_THREAD_ATTACH:
sl@0
   683
		break;
sl@0
   684
	case DLL_THREAD_DETACH:
sl@0
   685
		ERR_remove_state(0);
sl@0
   686
		break;
sl@0
   687
	case DLL_PROCESS_DETACH:
sl@0
   688
		break;
sl@0
   689
		}
sl@0
   690
	return(TRUE);
sl@0
   691
	}
sl@0
   692
#endif
sl@0
   693
sl@0
   694
#if defined(_WIN32) && !defined(__CYGWIN__)&& !defined(SYMBIAN)
sl@0
   695
#include <tchar.h>
sl@0
   696
sl@0
   697
#if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
sl@0
   698
EXPORT_C int OPENSSL_isservice(void)
sl@0
   699
{ HWINSTA h;
sl@0
   700
  DWORD len;
sl@0
   701
  WCHAR *name;
sl@0
   702
sl@0
   703
    (void)GetDesktopWindow(); /* return value is ignored */
sl@0
   704
sl@0
   705
    h = GetProcessWindowStation();
sl@0
   706
    if (h==NULL) return -1;
sl@0
   707
sl@0
   708
    if (GetUserObjectInformationW (h,UOI_NAME,NULL,0,&len) ||
sl@0
   709
	GetLastError() != ERROR_INSUFFICIENT_BUFFER)
sl@0
   710
	return -1;
sl@0
   711
sl@0
   712
    if (len>512) return -1;		/* paranoia */
sl@0
   713
    len++,len&=~1;			/* paranoia */
sl@0
   714
#ifdef _MSC_VER
sl@0
   715
    name=(WCHAR *)_alloca(len+sizeof(WCHAR));
sl@0
   716
#else
sl@0
   717
    name=(WCHAR *)alloca(len+sizeof(WCHAR));
sl@0
   718
#endif
sl@0
   719
    if (!GetUserObjectInformationW (h,UOI_NAME,name,len,&len))
sl@0
   720
	return -1;
sl@0
   721
sl@0
   722
    len++,len&=~1;			/* paranoia */
sl@0
   723
    name[len/sizeof(WCHAR)]=L'\0';	/* paranoia */
sl@0
   724
#if 1
sl@0
   725
    /* This doesn't cover "interactive" services [working with real
sl@0
   726
     * WinSta0's] nor programs started non-interactively by Task
sl@0
   727
     * Scheduler [those are working with SAWinSta]. */
sl@0
   728
    if (wcsstr(name,L"Service-0x"))	return 1;
sl@0
   729
#else
sl@0
   730
    /* This covers all non-interactive programs such as services. */
sl@0
   731
    if (!wcsstr(name,L"WinSta0"))	return 1;
sl@0
   732
#endif
sl@0
   733
    else				return 0;
sl@0
   734
}
sl@0
   735
#else
sl@0
   736
EXPORT_C int OPENSSL_isservice(void) { return 0; }
sl@0
   737
#endif
sl@0
   738
sl@0
   739
EXPORT_C void OPENSSL_showfatal (const char *fmta,...)
sl@0
   740
{ va_list ap;
sl@0
   741
#ifndef SYMBIAN	
sl@0
   742
  TCHAR buf[256];
sl@0
   743
#else
sl@0
   744
  TCHAR buf[100];
sl@0
   745
#endif  
sl@0
   746
  const TCHAR *fmt;
sl@0
   747
#ifdef STD_ERROR_HANDLE	/* what a dirty trick! */
sl@0
   748
  HANDLE h;
sl@0
   749
sl@0
   750
    if ((h=GetStdHandle(STD_ERROR_HANDLE)) != NULL &&
sl@0
   751
	GetFileType(h)!=FILE_TYPE_UNKNOWN)
sl@0
   752
    {	/* must be console application */
sl@0
   753
	va_start (ap,fmta);
sl@0
   754
	vfprintf (stderr,fmta,ap);
sl@0
   755
	va_end (ap);
sl@0
   756
	return;
sl@0
   757
    }
sl@0
   758
#endif
sl@0
   759
sl@0
   760
    if (sizeof(TCHAR)==sizeof(char))
sl@0
   761
	fmt=(const TCHAR *)fmta;
sl@0
   762
    else do
sl@0
   763
    { int    keepgoing;
sl@0
   764
      size_t len_0=strlen(fmta)+1,i;
sl@0
   765
      WCHAR *fmtw;
sl@0
   766
sl@0
   767
#ifdef _MSC_VER
sl@0
   768
	fmtw = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
sl@0
   769
#else
sl@0
   770
	fmtw = (WCHAR *)alloca (len_0*sizeof(WCHAR));
sl@0
   771
#endif
sl@0
   772
	if (fmtw == NULL) { fmt=(const TCHAR *)L"no stack?"; break; }
sl@0
   773
sl@0
   774
#ifndef OPENSSL_NO_MULTIBYTE
sl@0
   775
	if (!MultiByteToWideChar(CP_ACP,0,fmta,len_0,fmtw,len_0))
sl@0
   776
#endif
sl@0
   777
	    for (i=0;i<len_0;i++) fmtw[i]=(WCHAR)fmta[i];
sl@0
   778
sl@0
   779
	for (i=0;i<len_0;i++)
sl@0
   780
	{   if (fmtw[i]==L'%') do
sl@0
   781
	    {	keepgoing=0;
sl@0
   782
		switch (fmtw[i+1])
sl@0
   783
		{   case L'0': case L'1': case L'2': case L'3': case L'4':
sl@0
   784
		    case L'5': case L'6': case L'7': case L'8': case L'9':
sl@0
   785
		    case L'.': case L'*':
sl@0
   786
		    case L'-':	i++; keepgoing=1; break;
sl@0
   787
		    case L's':	fmtw[i+1]=L'S';   break;
sl@0
   788
		    case L'S':	fmtw[i+1]=L's';   break;
sl@0
   789
		    case L'c':	fmtw[i+1]=L'C';   break;
sl@0
   790
		    case L'C':	fmtw[i+1]=L'c';   break;
sl@0
   791
		}
sl@0
   792
	    } while (keepgoing);
sl@0
   793
	}
sl@0
   794
	fmt = (const TCHAR *)fmtw;
sl@0
   795
    } while (0);
sl@0
   796
sl@0
   797
    va_start (ap,fmta);
sl@0
   798
    _vsntprintf (buf,sizeof(buf)/sizeof(TCHAR)-1,fmt,ap);
sl@0
   799
    buf [sizeof(buf)/sizeof(TCHAR)-1] = _T('\0');
sl@0
   800
    va_end (ap);
sl@0
   801
sl@0
   802
#if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
sl@0
   803
    /* this -------------v--- guards NT-specific calls */
sl@0
   804
    if (GetVersion() < 0x80000000 && OPENSSL_isservice())
sl@0
   805
    {	HANDLE h = RegisterEventSource(0,_T("OPENSSL"));
sl@0
   806
	const TCHAR *pmsg=buf;
sl@0
   807
	ReportEvent(h,EVENTLOG_ERROR_TYPE,0,0,0,1,0,&pmsg,0);
sl@0
   808
	DeregisterEventSource(h);
sl@0
   809
    }
sl@0
   810
    else
sl@0
   811
#endif
sl@0
   812
	MessageBox (NULL,buf,_T("OpenSSL: FATAL"),MB_OK|MB_ICONSTOP);
sl@0
   813
}
sl@0
   814
#else
sl@0
   815
EXPORT_C void OPENSSL_showfatal (const char *fmta,...)
sl@0
   816
{ va_list ap;
sl@0
   817
sl@0
   818
    va_start (ap,fmta);
sl@0
   819
    vfprintf (stderr,fmta,ap);
sl@0
   820
    va_end (ap);
sl@0
   821
}
sl@0
   822
EXPORT_C int OPENSSL_isservice (void) { return 0; }
sl@0
   823
#endif
sl@0
   824
sl@0
   825
EXPORT_C void OpenSSLDie(const char *file,int line,const char *assertion)
sl@0
   826
	{
sl@0
   827
	OPENSSL_showfatal(
sl@0
   828
		"%s(%d): OpenSSL internal error, assertion failed: %s\n",
sl@0
   829
		file,line,assertion);
sl@0
   830
	abort();
sl@0
   831
	}
sl@0
   832
sl@0
   833
EXPORT_C void *OPENSSL_stderr(void)	{ return stderr; }
sl@0
   834