cryptlib.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. /* crypto/cryptlib.c */
  2. /* ====================================================================
  3. * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved.
  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. */
  55. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  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. */
  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. */
  116. #include "cryptlib.h"
  117. #include <openssl/safestack.h>
  118. #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16)
  119. static double SSLeay_MSVC5_hack=0.0; /* and for VC1.5 */
  120. #endif
  121. DECLARE_STACK_OF(CRYPTO_dynlock)
  122. IMPLEMENT_STACK_OF(CRYPTO_dynlock)
  123. /* real #defines in crypto.h, keep these upto date */
  124. static const char* lock_names[CRYPTO_NUM_LOCKS] =
  125. {
  126. "<<ERROR>>",
  127. "err",
  128. "ex_data",
  129. "x509",
  130. "x509_info",
  131. "x509_pkey",
  132. "x509_crl",
  133. "x509_req",
  134. "dsa",
  135. "rsa",
  136. "evp_pkey",
  137. "x509_store",
  138. "ssl_ctx",
  139. "ssl_cert",
  140. "ssl_session",
  141. "ssl_sess_cert",
  142. "ssl",
  143. "ssl_method",
  144. "rand",
  145. "rand2",
  146. "debug_malloc",
  147. "BIO",
  148. "gethostbyname",
  149. "getservbyname",
  150. "readdir",
  151. "RSA_blinding",
  152. "dh",
  153. "debug_malloc2",
  154. "dso",
  155. "dynlock",
  156. "engine",
  157. "ui",
  158. "ecdsa",
  159. "ec",
  160. "ecdh",
  161. "bn",
  162. "ec_pre_comp",
  163. "store",
  164. "comp",
  165. #if CRYPTO_NUM_LOCKS != 39
  166. # error "Inconsistency between crypto.h and cryptlib.c"
  167. #endif
  168. };
  169. /* This is for applications to allocate new type names in the non-dynamic
  170. array of lock names. These are numbered with positive numbers. */
  171. static STACK *app_locks=NULL;
  172. /* For applications that want a more dynamic way of handling threads, the
  173. following stack is used. These are externally numbered with negative
  174. numbers. */
  175. static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL;
  176. static void (MS_FAR *locking_callback)(int mode,int type,
  177. const char *file,int line)=NULL;
  178. static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
  179. int type,const char *file,int line)=NULL;
  180. static unsigned long (MS_FAR *id_callback)(void)=NULL;
  181. static struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback)
  182. (const char *file,int line)=NULL;
  183. static void (MS_FAR *dynlock_lock_callback)(int mode,
  184. struct CRYPTO_dynlock_value *l, const char *file,int line)=NULL;
  185. static void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l,
  186. const char *file,int line)=NULL;
  187. int CRYPTO_get_new_lockid(char *name)
  188. {
  189. char *str;
  190. int i;
  191. #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16)
  192. /* A hack to make Visual C++ 5.0 work correctly when linking as
  193. * a DLL using /MT. Without this, the application cannot use
  194. * and floating point printf's.
  195. * It also seems to be needed for Visual C 1.5 (win16) */
  196. SSLeay_MSVC5_hack=(double)name[0]*(double)name[1];
  197. #endif
  198. if ((app_locks == NULL) && ((app_locks=sk_new_null()) == NULL))
  199. {
  200. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
  201. return(0);
  202. }
  203. if ((str=BUF_strdup(name)) == NULL)
  204. {
  205. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
  206. return(0);
  207. }
  208. i=sk_push(app_locks,str);
  209. if (!i)
  210. OPENSSL_free(str);
  211. else
  212. i+=CRYPTO_NUM_LOCKS; /* gap of one :-) */
  213. return(i);
  214. }
  215. int CRYPTO_num_locks(void)
  216. {
  217. return CRYPTO_NUM_LOCKS;
  218. }
  219. int CRYPTO_get_new_dynlockid(void)
  220. {
  221. int i = 0;
  222. CRYPTO_dynlock *pointer = NULL;
  223. if (dynlock_create_callback == NULL)
  224. {
  225. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK);
  226. return(0);
  227. }
  228. CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
  229. if ((dyn_locks == NULL)
  230. && ((dyn_locks=sk_CRYPTO_dynlock_new_null()) == NULL))
  231. {
  232. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  233. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
  234. return(0);
  235. }
  236. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  237. pointer = (CRYPTO_dynlock *)OPENSSL_malloc(sizeof(CRYPTO_dynlock));
  238. if (pointer == NULL)
  239. {
  240. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
  241. return(0);
  242. }
  243. pointer->references = 1;
  244. pointer->data = dynlock_create_callback(__FILE__,__LINE__);
  245. if (pointer->data == NULL)
  246. {
  247. OPENSSL_free(pointer);
  248. CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,ERR_R_MALLOC_FAILURE);
  249. return(0);
  250. }
  251. CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
  252. /* First, try to find an existing empty slot */
  253. i=sk_CRYPTO_dynlock_find(dyn_locks,NULL);
  254. /* If there was none, push, thereby creating a new one */
  255. if (i == -1)
  256. /* Since sk_push() returns the number of items on the
  257. stack, not the location of the pushed item, we need
  258. to transform the returned number into a position,
  259. by decreasing it. */
  260. i=sk_CRYPTO_dynlock_push(dyn_locks,pointer) - 1;
  261. else
  262. /* If we found a place with a NULL pointer, put our pointer
  263. in it. */
  264. sk_CRYPTO_dynlock_set(dyn_locks,i,pointer);
  265. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  266. if (i == -1)
  267. {
  268. dynlock_destroy_callback(pointer->data,__FILE__,__LINE__);
  269. OPENSSL_free(pointer);
  270. }
  271. else
  272. i += 1; /* to avoid 0 */
  273. return -i;
  274. }
  275. void CRYPTO_destroy_dynlockid(int i)
  276. {
  277. CRYPTO_dynlock *pointer = NULL;
  278. if (i)
  279. i = -i-1;
  280. if (dynlock_destroy_callback == NULL)
  281. return;
  282. CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
  283. if (dyn_locks == NULL || i >= sk_CRYPTO_dynlock_num(dyn_locks))
  284. {
  285. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  286. return;
  287. }
  288. pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
  289. if (pointer != NULL)
  290. {
  291. --pointer->references;
  292. #ifdef REF_CHECK
  293. if (pointer->references < 0)
  294. {
  295. fprintf(stderr,"CRYPTO_destroy_dynlockid, bad reference count\n");
  296. abort();
  297. }
  298. else
  299. #endif
  300. if (pointer->references <= 0)
  301. {
  302. sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
  303. }
  304. else
  305. pointer = NULL;
  306. }
  307. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  308. if (pointer)
  309. {
  310. dynlock_destroy_callback(pointer->data,__FILE__,__LINE__);
  311. OPENSSL_free(pointer);
  312. }
  313. }
  314. struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i)
  315. {
  316. CRYPTO_dynlock *pointer = NULL;
  317. if (i)
  318. i = -i-1;
  319. CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
  320. if (dyn_locks != NULL && i < sk_CRYPTO_dynlock_num(dyn_locks))
  321. pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
  322. if (pointer)
  323. pointer->references++;
  324. CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
  325. if (pointer)
  326. return pointer->data;
  327. return NULL;
  328. }
  329. struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))
  330. (const char *file,int line)
  331. {
  332. return(dynlock_create_callback);
  333. }
  334. void (*CRYPTO_get_dynlock_lock_callback(void))(int mode,
  335. struct CRYPTO_dynlock_value *l, const char *file,int line)
  336. {
  337. return(dynlock_lock_callback);
  338. }
  339. void (*CRYPTO_get_dynlock_destroy_callback(void))
  340. (struct CRYPTO_dynlock_value *l, const char *file,int line)
  341. {
  342. return(dynlock_destroy_callback);
  343. }
  344. void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*func)
  345. (const char *file, int line))
  346. {
  347. dynlock_create_callback=func;
  348. }
  349. void CRYPTO_set_dynlock_lock_callback(void (*func)(int mode,
  350. struct CRYPTO_dynlock_value *l, const char *file, int line))
  351. {
  352. dynlock_lock_callback=func;
  353. }
  354. void CRYPTO_set_dynlock_destroy_callback(void (*func)
  355. (struct CRYPTO_dynlock_value *l, const char *file, int line))
  356. {
  357. dynlock_destroy_callback=func;
  358. }
  359. void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
  360. int line)
  361. {
  362. return(locking_callback);
  363. }
  364. int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
  365. const char *file,int line)
  366. {
  367. return(add_lock_callback);
  368. }
  369. void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
  370. const char *file,int line))
  371. {
  372. locking_callback=func;
  373. }
  374. void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
  375. const char *file,int line))
  376. {
  377. add_lock_callback=func;
  378. }
  379. unsigned long (*CRYPTO_get_id_callback(void))(void)
  380. {
  381. return(id_callback);
  382. }
  383. void CRYPTO_set_id_callback(unsigned long (*func)(void))
  384. {
  385. id_callback=func;
  386. }
  387. unsigned long CRYPTO_thread_id(void)
  388. {
  389. unsigned long ret=0;
  390. if (id_callback == NULL)
  391. {
  392. #ifdef OPENSSL_SYS_WIN16
  393. ret=(unsigned long)GetCurrentTask();
  394. #elif defined(OPENSSL_SYS_WIN32)
  395. ret=(unsigned long)GetCurrentThreadId();
  396. #elif defined(GETPID_IS_MEANINGLESS)
  397. ret=1L;
  398. #elif defined(OPENSSL_SYS_BEOS)
  399. ret=(unsigned long)find_thread(NULL);
  400. #else
  401. ret=(unsigned long)getpid();
  402. #endif
  403. }
  404. else
  405. ret=id_callback();
  406. return(ret);
  407. }
  408. void CRYPTO_lock(int mode, int type, const char *file, int line)
  409. {
  410. #ifdef LOCK_DEBUG
  411. {
  412. char *rw_text,*operation_text;
  413. if (mode & CRYPTO_LOCK)
  414. operation_text="lock ";
  415. else if (mode & CRYPTO_UNLOCK)
  416. operation_text="unlock";
  417. else
  418. operation_text="ERROR ";
  419. if (mode & CRYPTO_READ)
  420. rw_text="r";
  421. else if (mode & CRYPTO_WRITE)
  422. rw_text="w";
  423. else
  424. rw_text="ERROR";
  425. fprintf(stderr,"lock:%08lx:(%s)%s %-18s %s:%d\n",
  426. CRYPTO_thread_id(), rw_text, operation_text,
  427. CRYPTO_get_lock_name(type), file, line);
  428. }
  429. #endif
  430. if (type < 0)
  431. {
  432. if (dynlock_lock_callback != NULL)
  433. {
  434. struct CRYPTO_dynlock_value *pointer
  435. = CRYPTO_get_dynlock_value(type);
  436. OPENSSL_assert(pointer != NULL);
  437. dynlock_lock_callback(mode, pointer, file, line);
  438. CRYPTO_destroy_dynlockid(type);
  439. }
  440. }
  441. else
  442. if (locking_callback != NULL)
  443. locking_callback(mode,type,file,line);
  444. }
  445. int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
  446. int line)
  447. {
  448. int ret = 0;
  449. if (add_lock_callback != NULL)
  450. {
  451. #ifdef LOCK_DEBUG
  452. int before= *pointer;
  453. #endif
  454. ret=add_lock_callback(pointer,amount,type,file,line);
  455. #ifdef LOCK_DEBUG
  456. fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
  457. CRYPTO_thread_id(),
  458. before,amount,ret,
  459. CRYPTO_get_lock_name(type),
  460. file,line);
  461. #endif
  462. }
  463. else
  464. {
  465. CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,file,line);
  466. ret= *pointer+amount;
  467. #ifdef LOCK_DEBUG
  468. fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
  469. CRYPTO_thread_id(),
  470. *pointer,amount,ret,
  471. CRYPTO_get_lock_name(type),
  472. file,line);
  473. #endif
  474. *pointer=ret;
  475. CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,file,line);
  476. }
  477. return(ret);
  478. }
  479. const char *CRYPTO_get_lock_name(int type)
  480. {
  481. if (type < 0)
  482. return("dynamic");
  483. else if (type < CRYPTO_NUM_LOCKS)
  484. return(lock_names[type]);
  485. else if (type-CRYPTO_NUM_LOCKS > sk_num(app_locks))
  486. return("ERROR");
  487. else
  488. return(sk_value(app_locks,type-CRYPTO_NUM_LOCKS));
  489. }
  490. #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
  491. defined(__INTEL__) || \
  492. defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64)
  493. unsigned long OPENSSL_ia32cap_P=0;
  494. unsigned long *OPENSSL_ia32cap_loc(void) { return &OPENSSL_ia32cap_P; }
  495. #if defined(OPENSSL_CPUID_OBJ) && !defined(OPENSSL_NO_ASM) && !defined(I386_ONLY)
  496. #define OPENSSL_CPUID_SETUP
  497. void OPENSSL_cpuid_setup(void)
  498. { static int trigger=0;
  499. unsigned long OPENSSL_ia32_cpuid(void);
  500. char *env;
  501. if (trigger) return;
  502. trigger=1;
  503. if ((env=getenv("OPENSSL_ia32cap")))
  504. OPENSSL_ia32cap_P = strtoul(env,NULL,0)|(1<<10);
  505. else
  506. OPENSSL_ia32cap_P = OPENSSL_ia32_cpuid()|(1<<10);
  507. /*
  508. * |(1<<10) sets a reserved bit to signal that variable
  509. * was initialized already... This is to avoid interference
  510. * with cpuid snippets in ELF .init segment.
  511. */
  512. }
  513. #endif
  514. #else
  515. unsigned long *OPENSSL_ia32cap_loc(void) { return NULL; }
  516. #endif
  517. int OPENSSL_NONPIC_relocated = 0;
  518. #if !defined(OPENSSL_CPUID_SETUP) && !defined(OPENSSL_CPUID_OBJ)
  519. void OPENSSL_cpuid_setup(void) {}
  520. #endif
  521. #if (defined(_WIN32) || defined(__CYGWIN__)) && defined(_WINDLL)
  522. #ifdef __CYGWIN__
  523. /* pick DLL_[PROCESS|THREAD]_[ATTACH|DETACH] definitions */
  524. #include <windows.h>
  525. #endif
  526. /* All we really need to do is remove the 'error' state when a thread
  527. * detaches */
  528. BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
  529. LPVOID lpvReserved)
  530. {
  531. switch(fdwReason)
  532. {
  533. case DLL_PROCESS_ATTACH:
  534. OPENSSL_cpuid_setup();
  535. #if defined(_WIN32_WINNT)
  536. {
  537. IMAGE_DOS_HEADER *dos_header = (IMAGE_DOS_HEADER *)hinstDLL;
  538. IMAGE_NT_HEADERS *nt_headers;
  539. if (dos_header->e_magic==IMAGE_DOS_SIGNATURE)
  540. {
  541. nt_headers = (IMAGE_NT_HEADERS *)((char *)dos_header
  542. + dos_header->e_lfanew);
  543. if (nt_headers->Signature==IMAGE_NT_SIGNATURE &&
  544. hinstDLL!=(HINSTANCE)(nt_headers->OptionalHeader.ImageBase))
  545. OPENSSL_NONPIC_relocated=1;
  546. }
  547. }
  548. #endif
  549. break;
  550. case DLL_THREAD_ATTACH:
  551. break;
  552. case DLL_THREAD_DETACH:
  553. ERR_remove_state(0);
  554. break;
  555. case DLL_PROCESS_DETACH:
  556. break;
  557. }
  558. return(TRUE);
  559. }
  560. #endif
  561. #if defined(_WIN32) && !defined(__CYGWIN__)
  562. #include <tchar.h>
  563. #if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
  564. int OPENSSL_isservice(void)
  565. { HWINSTA h;
  566. DWORD len;
  567. WCHAR *name;
  568. (void)GetDesktopWindow(); /* return value is ignored */
  569. h = GetProcessWindowStation();
  570. if (h==NULL) return -1;
  571. if (GetUserObjectInformationW (h,UOI_NAME,NULL,0,&len) ||
  572. GetLastError() != ERROR_INSUFFICIENT_BUFFER)
  573. return -1;
  574. if (len>512) return -1; /* paranoia */
  575. len++,len&=~1; /* paranoia */
  576. #ifdef _MSC_VER
  577. name=(WCHAR *)_alloca(len+sizeof(WCHAR));
  578. #else
  579. name=(WCHAR *)alloca(len+sizeof(WCHAR));
  580. #endif
  581. if (!GetUserObjectInformationW (h,UOI_NAME,name,len,&len))
  582. return -1;
  583. len++,len&=~1; /* paranoia */
  584. name[len/sizeof(WCHAR)]=L'\0'; /* paranoia */
  585. #if 1
  586. /* This doesn't cover "interactive" services [working with real
  587. * WinSta0's] nor programs started non-interactively by Task
  588. * Scheduler [those are working with SAWinSta]. */
  589. if (wcsstr(name,L"Service-0x")) return 1;
  590. #else
  591. /* This covers all non-interactive programs such as services. */
  592. if (!wcsstr(name,L"WinSta0")) return 1;
  593. #endif
  594. else return 0;
  595. }
  596. #else
  597. int OPENSSL_isservice(void) { return 0; }
  598. #endif
  599. void OPENSSL_showfatal (const char *fmta,...)
  600. { va_list ap;
  601. TCHAR buf[256];
  602. const TCHAR *fmt;
  603. #ifdef STD_ERROR_HANDLE /* what a dirty trick! */
  604. HANDLE h;
  605. if ((h=GetStdHandle(STD_ERROR_HANDLE)) != NULL &&
  606. GetFileType(h)!=FILE_TYPE_UNKNOWN)
  607. { /* must be console application */
  608. va_start (ap,fmta);
  609. vfprintf (stderr,fmta,ap);
  610. va_end (ap);
  611. return;
  612. }
  613. #endif
  614. if (sizeof(TCHAR)==sizeof(char))
  615. fmt=(const TCHAR *)fmta;
  616. else do
  617. { int keepgoing;
  618. size_t len_0=strlen(fmta)+1,i;
  619. WCHAR *fmtw;
  620. #ifdef _MSC_VER
  621. fmtw = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
  622. #else
  623. fmtw = (WCHAR *)alloca (len_0*sizeof(WCHAR));
  624. #endif
  625. if (fmtw == NULL) { fmt=(const TCHAR *)L"no stack?"; break; }
  626. #ifndef OPENSSL_NO_MULTIBYTE
  627. if (!MultiByteToWideChar(CP_ACP,0,fmta,len_0,fmtw,len_0))
  628. #endif
  629. for (i=0;i<len_0;i++) fmtw[i]=(WCHAR)fmta[i];
  630. for (i=0;i<len_0;i++)
  631. { if (fmtw[i]==L'%') do
  632. { keepgoing=0;
  633. switch (fmtw[i+1])
  634. { case L'0': case L'1': case L'2': case L'3': case L'4':
  635. case L'5': case L'6': case L'7': case L'8': case L'9':
  636. case L'.': case L'*':
  637. case L'-': i++; keepgoing=1; break;
  638. case L's': fmtw[i+1]=L'S'; break;
  639. case L'S': fmtw[i+1]=L's'; break;
  640. case L'c': fmtw[i+1]=L'C'; break;
  641. case L'C': fmtw[i+1]=L'c'; break;
  642. }
  643. } while (keepgoing);
  644. }
  645. fmt = (const TCHAR *)fmtw;
  646. } while (0);
  647. va_start (ap,fmta);
  648. _vsntprintf (buf,sizeof(buf)/sizeof(TCHAR)-1,fmt,ap);
  649. buf [sizeof(buf)/sizeof(TCHAR)-1] = _T('\0');
  650. va_end (ap);
  651. #if defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0333
  652. /* this -------------v--- guards NT-specific calls */
  653. if (GetVersion() < 0x80000000 && OPENSSL_isservice())
  654. { HANDLE h = RegisterEventSource(0,_T("OPENSSL"));
  655. const TCHAR *pmsg=buf;
  656. ReportEvent(h,EVENTLOG_ERROR_TYPE,0,0,0,1,0,&pmsg,0);
  657. DeregisterEventSource(h);
  658. }
  659. else
  660. #endif
  661. MessageBox (NULL,buf,_T("OpenSSL: FATAL"),MB_OK|MB_ICONSTOP);
  662. }
  663. #else
  664. void OPENSSL_showfatal (const char *fmta,...)
  665. { va_list ap;
  666. va_start (ap,fmta);
  667. vfprintf (stderr,fmta,ap);
  668. va_end (ap);
  669. }
  670. int OPENSSL_isservice (void) { return 0; }
  671. #endif
  672. void OpenSSLDie(const char *file,int line,const char *assertion)
  673. {
  674. OPENSSL_showfatal(
  675. "%s(%d): OpenSSL internal error, assertion failed: %s\n",
  676. file,line,assertion);
  677. abort();
  678. }
  679. void *OPENSSL_stderr(void) { return stderr; }