Cosmetic changes.
[openssl.git] / crypto / cryptlib.c
1 /* crypto/cryptlib.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * 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"
62 #include <openssl/crypto.h>
63
64 #if defined(WIN32) || defined(WIN16)
65 static double SSLeay_MSVC5_hack=0.0; /* and for VC1.5 */
66 #endif
67
68 /* real #defines in crypto.h, keep these upto date */
69 static const char* lock_names[CRYPTO_NUM_LOCKS] =
70         {
71         "<<ERROR>>",
72         "err",
73         "err_hash",
74         "x509",
75         "x509_info",
76         "x509_pkey",
77         "x509_crl",
78         "x509_req",
79         "dsa",
80         "rsa",
81         "evp_pkey",
82         "x509_store",
83         "ssl_ctx",
84         "ssl_cert",
85         "ssl_session",
86         "ssl_sess_cert",
87         "ssl",
88         "rand",
89         "debug_malloc",
90         "BIO",
91         "gethostbyname",
92         "getservbyname",
93         "readdir",
94         "RSA_blinding",
95         "dh",
96 #if CRYPTO_NUM_LOCKS != 25
97 # error "Inconsistency between crypto.h and cryptlib.c"
98 #endif
99         };
100
101 static STACK *app_locks=NULL;
102
103 static void (MS_FAR *locking_callback)(int mode,int type,
104         const char *file,int line)=NULL;
105 static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
106         int type,const char *file,int line)=NULL;
107 static unsigned long (MS_FAR *id_callback)(void)=NULL;
108 int CRYPTO_get_new_lockid(char *name)
109         {
110         char *str;
111         int i;
112
113         /* A hack to make Visual C++ 5.0 work correctly when linking as
114          * a DLL using /MT. Without this, the application cannot use
115          * and floating point printf's.
116          * It also seems to be needed for Visual C 1.5 (win16) */
117 #if defined(WIN32) || defined(WIN16)
118         SSLeay_MSVC5_hack=(double)name[0]*(double)name[1];
119 #endif
120
121         if ((app_locks == NULL) && ((app_locks=sk_new_null()) == NULL))
122                 {
123                 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID,ERR_R_MALLOC_FAILURE);
124                 return(0);
125                 }
126         if ((str=BUF_strdup(name)) == NULL)
127                 return(0);
128         i=sk_push(app_locks,str);
129         if (!i)
130                 Free(str);
131         else
132                 i+=CRYPTO_NUM_LOCKS; /* gap of one :-) */
133         return(i);
134         }
135
136 int CRYPTO_num_locks(void)
137         {
138         return CRYPTO_NUM_LOCKS;
139         }
140
141 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
142                 int line)
143         {
144         return(locking_callback);
145         }
146
147 int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
148                                           const char *file,int line)
149         {
150         return(add_lock_callback);
151         }
152
153 void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
154                                               const char *file,int line))
155         {
156         locking_callback=func;
157         }
158
159 void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
160                                               const char *file,int line))
161         {
162         add_lock_callback=func;
163         }
164
165 unsigned long (*CRYPTO_get_id_callback(void))(void)
166         {
167         return(id_callback);
168         }
169
170 void CRYPTO_set_id_callback(unsigned long (*func)(void))
171         {
172         id_callback=func;
173         }
174
175 unsigned long CRYPTO_thread_id(void)
176         {
177         unsigned long ret=0;
178
179         if (id_callback == NULL)
180                 {
181 #ifdef WIN16
182                 ret=(unsigned long)GetCurrentTask();
183 #elif defined(WIN32)
184                 ret=(unsigned long)GetCurrentThreadId();
185 #elif defined(MSDOS)
186                 ret=1L;
187 #else
188                 ret=(unsigned long)getpid();
189 #endif
190                 }
191         else
192                 ret=id_callback();
193         return(ret);
194         }
195
196 void CRYPTO_lock(int mode, int type, const char *file, int line)
197         {
198 #ifdef LOCK_DEBUG
199                 {
200                 char *rw_text,*operation_text;
201
202                 if (mode & CRYPTO_LOCK)
203                         operation_text="lock  ";
204                 else if (mode & CRYPTO_UNLOCK)
205                         operation_text="unlock";
206                 else
207                         operation_text="ERROR ";
208
209                 if (mode & CRYPTO_READ)
210                         rw_text="r";
211                 else if (mode & CRYPTO_WRITE)
212                         rw_text="w";
213                 else
214                         rw_text="ERROR";
215
216                 fprintf(stderr,"lock:%08lx:(%s)%s %-18s %s:%d\n",
217                         CRYPTO_thread_id(), rw_text, operation_text,
218                         CRYPTO_get_lock_name(type), file, line);
219                 }
220 #endif
221         if (locking_callback != NULL)
222                 locking_callback(mode,type,file,line);
223         }
224
225 int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
226              int line)
227         {
228         int ret;
229
230         if (add_lock_callback != NULL)
231                 {
232 #ifdef LOCK_DEBUG
233                 int before= *pointer;
234 #endif
235
236                 ret=add_lock_callback(pointer,amount,type,file,line);
237 #ifdef LOCK_DEBUG
238                 fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
239                         CRYPTO_thread_id(),
240                         before,amount,ret,
241                         CRYPTO_get_lock_name(type),
242                         file,line);
243 #endif
244                 *pointer=ret;
245                 }
246         else
247                 {
248                 CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,file,line);
249
250                 ret= *pointer+amount;
251 #ifdef LOCK_DEBUG
252                 fprintf(stderr,"ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
253                         CRYPTO_thread_id(),
254                         *pointer,amount,ret,
255                         CRYPTO_get_lock_name(type),
256                         file,line);
257 #endif
258                 *pointer=ret;
259                 CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,file,line);
260                 }
261         return(ret);
262         }
263
264 const char *CRYPTO_get_lock_name(int type)
265         {
266         if (type < 0)
267                 return("ERROR");
268         else if (type < CRYPTO_NUM_LOCKS)
269                 return(lock_names[type]);
270         else if (type-CRYPTO_NUM_LOCKS >= sk_num(app_locks))
271                 return("ERROR");
272         else
273                 return(sk_value(app_locks,type-CRYPTO_NUM_LOCKS));
274         }
275
276 #ifdef _DLL
277 #ifdef WIN32
278
279 /* All we really need to do is remove the 'error' state when a thread
280  * detaches */
281
282 BOOL WINAPI DLLEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason,
283              LPVOID lpvReserved)
284         {
285         switch(fdwReason)
286                 {
287         case DLL_PROCESS_ATTACH:
288                 break;
289         case DLL_THREAD_ATTACH:
290                 break;
291         case DLL_THREAD_DETACH:
292                 ERR_remove_state(0);
293                 break;
294         case DLL_PROCESS_DETACH:
295                 break;
296                 }
297         return(TRUE);
298         }
299 #endif
300
301 #endif