blob: d6015096387dc7b6e1d1a67446e4e2e1b35e0158 [file] [log] [blame]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001/* crypto/cryptlib.c */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#include <stdio.h>
60#include <string.h>
61#include "cryptlib.h"
Bodo Möllerec577821999-04-23 22:13:45 +000062#include <openssl/crypto.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000063#include "date.h"
64
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000065#if defined(WIN32) || defined(WIN16)
66static double SSLeay_MSVC5_hack=0.0; /* and for VC1.5 */
67#endif
68
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000069/* real #defines in crypto.h, keep these upto date */
Ben Lauriee7788021999-04-17 21:25:43 +000070static const char* lock_names[CRYPTO_NUM_LOCKS] =
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000071 {
72 "<<ERROR>>",
73 "err",
74 "err_hash",
75 "x509",
76 "x509_info",
77 "x509_pkey",
78 "x509_crl",
79 "x509_req",
80 "dsa",
81 "rsa",
82 "evp_pkey",
83 "x509_store",
84 "ssl_ctx",
85 "ssl_cert",
86 "ssl_session",
Bodo Möllerd36bcdf1999-05-14 11:57:17 +000087 "ssl_sess_cert",
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000088 "ssl",
89 "rand",
90 "debug_malloc",
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000091 "BIO",
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000092 "bio_gethostbyname",
93 "RSA_blinding",
Bodo Möllerd36bcdf1999-05-14 11:57:17 +000094#if CRYPTO_NUM_LOCKS != 22
95# error "Inconsistency between crypto.h and cryptlic.c"
96#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000097 };
98
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000099static STACK *app_locks=NULL;
100
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000101static void (MS_FAR *locking_callback)(int mode,int type,
Ben Lauriee7788021999-04-17 21:25:43 +0000102 const char *file,int line)=NULL;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000103static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
Ben Lauriee7788021999-04-17 21:25:43 +0000104 int type,const char *file,int line)=NULL;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000105static unsigned long (MS_FAR *id_callback)(void)=NULL;
Ulf Möller6b691a51999-04-19 21:31:43 +0000106int CRYPTO_get_new_lockid(char *name)
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000107 {
108 char *str;
109 int i;
110
111 /* A hack to make Visual C++ 5.0 work correctly when linking as
112 * a DLL using /MT. Without this, the application cannot use
113 * and floating point printf's.
114 * It also seems to be needed for Visual C 1.5 (win16) */
115#if defined(WIN32) || defined(WIN16)
116 SSLeay_MSVC5_hack=(double)name[0]*(double)name[1];
117#endif
118
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000119 if ((app_locks == NULL) && ((app_locks=sk_new_null()) == NULL))
120 {
121 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
122 return(0);
123 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000124 if ((str=BUF_strdup(name)) == NULL)
125 return(0);
126 i=sk_push(app_locks,str);
127 if (!i)
128 Free(str);
129 else
130 i+=CRYPTO_NUM_LOCKS; /* gap of one :-) */
131 return(i);
132 }
133
Ben Lauriee7788021999-04-17 21:25:43 +0000134void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
135 int line)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000136 {
137 return(locking_callback);
138 }
139
Ben Lauriee7788021999-04-17 21:25:43 +0000140int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
141 const char *file,int line)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000142 {
143 return(add_lock_callback);
144 }
145
Ben Lauriee7788021999-04-17 21:25:43 +0000146void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
147 const char *file,int line))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000148 {
149 locking_callback=func;
150 }
151
Ben Lauriee7788021999-04-17 21:25:43 +0000152void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
153 const char *file,int line))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000154 {
155 add_lock_callback=func;
156 }
157
Ulf Möller73d22571999-04-26 22:20:07 +0000158unsigned long (*CRYPTO_get_id_callback(void))(void)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000159 {
160 return(id_callback);
161 }
162
Ulf Möller73d22571999-04-26 22:20:07 +0000163void CRYPTO_set_id_callback(unsigned long (*func)(void))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000164 {
165 id_callback=func;
166 }
167
Ulf Möller6b691a51999-04-19 21:31:43 +0000168unsigned long CRYPTO_thread_id(void)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000169 {
170 unsigned long ret=0;
171
172 if (id_callback == NULL)
173 {
174#ifdef WIN16
175 ret=(unsigned long)GetCurrentTask();
176#elif defined(WIN32)
177 ret=(unsigned long)GetCurrentThreadId();
178#elif defined(MSDOS)
179 ret=1L;
180#else
181 ret=(unsigned long)getpid();
182#endif
183 }
184 else
185 ret=id_callback();
186 return(ret);
187 }
188
Ulf Möller6b691a51999-04-19 21:31:43 +0000189void CRYPTO_lock(int mode, int type, const char *file, int line)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000190 {
191#ifdef LOCK_DEBUG
192 {
193 char *rw_text,*operation_text;
194
195 if (mode & CRYPTO_LOCK)
196 operation_text="lock ";
197 else if (mode & CRYPTO_UNLOCK)
198 operation_text="unlock";
199 else
200 operation_text="ERROR ";
201
202 if (mode & CRYPTO_READ)
203 rw_text="r";
204 else if (mode & CRYPTO_WRITE)
205 rw_text="w";
206 else
207 rw_text="ERROR";
208
209 fprintf(stderr,"lock:%08lx:(%s)%s %-18s %s:%d\n",
210 CRYPTO_thread_id(), rw_text, operation_text,
211 CRYPTO_get_lock_name(type), file, line);
212 }
213#endif
214 if (locking_callback != NULL)
215 locking_callback(mode,type,file,line);
216 }
217
Ulf Möller6b691a51999-04-19 21:31:43 +0000218int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
219 int line)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000220 {
221 int ret;
222
223 if (add_lock_callback != NULL)
224 {
225#ifdef LOCK_DEBUG
226 int before= *pointer;
227#endif
228
229 ret=add_lock_callback(pointer,amount,type,file,line);
230#ifdef LOCK_DEBUG
231 fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
232 CRYPTO_thread_id(),
233 before,amount,ret,
234 CRYPTO_get_lock_name(type),
235 file,line);
236#endif
237 *pointer=ret;
238 }
239 else
240 {
241 CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,file,line);
242
243 ret= *pointer+amount;
244#ifdef LOCK_DEBUG
245 fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
246 CRYPTO_thread_id(),
247 *pointer,amount,ret,
248 CRYPTO_get_lock_name(type),
249 file,line);
250#endif
251 *pointer=ret;
252 CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,file,line);
253 }
254 return(ret);
255 }
256
Ulf Möller6b691a51999-04-19 21:31:43 +0000257const char *CRYPTO_get_lock_name(int type)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000258 {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000259 if (type < 0)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000260 return("ERROR");
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000261 else if (type < CRYPTO_NUM_LOCKS)
262 return(lock_names[type]);
263 else if (type-CRYPTO_NUM_LOCKS >= sk_num(app_locks))
264 return("ERROR");
265 else
266 return(sk_value(app_locks,type-CRYPTO_NUM_LOCKS));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000267 }
268
269#ifdef _DLL
270#ifdef WIN32
271
272/* All we really need to do is remove the 'error' state when a thread
273 * detaches */
274
Ulf Möller6b691a51999-04-19 21:31:43 +0000275BOOL WINAPI DLLEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason,
276 LPVOID lpvReserved)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000277 {
278 switch(fdwReason)
279 {
280 case DLL_PROCESS_ATTACH:
281 break;
282 case DLL_THREAD_ATTACH:
283 break;
284 case DLL_THREAD_DETACH:
285 ERR_remove_state(0);
286 break;
287 case DLL_PROCESS_DETACH:
288 break;
289 }
290 return(TRUE);
291 }
292#endif
293
294#endif