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