]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/lock.c
Rename some BUF_xxx to OPENSSL_xxx
[thirdparty/openssl.git] / crypto / lock.c
1 /* crypto/cryptlib.c */
2 /* ====================================================================
3 * Copyright (c) 1998-2006 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
117 #include "internal/cryptlib.h"
118 #include <openssl/safestack.h>
119
120 #if defined(OPENSSL_SYS_WIN32)
121 static double OpenSSL_MSVC5_hack = 0.0; /* and for VC1.5 */
122 #endif
123
124 DECLARE_STACK_OF(CRYPTO_dynlock)
125
126 /* real #defines in crypto.h, keep these upto date */
127 static const char *const lock_names[CRYPTO_NUM_LOCKS] = {
128 "<<ERROR>>",
129 "err",
130 "ex_data",
131 "x509",
132 "x509_info",
133 "x509_pkey",
134 "x509_crl",
135 "x509_req",
136 "dsa",
137 "rsa",
138 "evp_pkey",
139 "x509_store",
140 "ssl_ctx",
141 "ssl_cert",
142 "ssl_session",
143 "ssl_sess_cert",
144 "ssl",
145 "ssl_method",
146 "rand",
147 "rand2",
148 "debug_malloc",
149 "BIO",
150 "gethostbyname",
151 "getservbyname",
152 "readdir",
153 "RSA_blinding",
154 "dh",
155 "debug_malloc2",
156 "dso",
157 "dynlock",
158 "engine",
159 "ui",
160 "ecdsa",
161 "ec",
162 "ecdh",
163 "bn",
164 "ec_pre_comp",
165 "store",
166 "comp",
167 "fips",
168 "fips2",
169 #if CRYPTO_NUM_LOCKS != 41
170 # error "Inconsistency between crypto.h and cryptlib.c"
171 #endif
172 };
173
174 /*
175 * This is for applications to allocate new type names in the non-dynamic
176 * array of lock names. These are numbered with positive numbers.
177 */
178 static STACK_OF(OPENSSL_STRING) *app_locks = NULL;
179
180 /*
181 * For applications that want a more dynamic way of handling threads, the
182 * following stack is used. These are externally numbered with negative
183 * numbers.
184 */
185 static STACK_OF(CRYPTO_dynlock) *dyn_locks = NULL;
186
187 static void (*locking_callback) (int mode, int type,
188 const char *file, int line) = 0;
189 static int (*add_lock_callback) (int *pointer, int amount,
190 int type, const char *file, int line) = 0;
191 static struct CRYPTO_dynlock_value *(*dynlock_create_callback)
192 (const char *file, int line) = 0;
193 static void (*dynlock_lock_callback) (int mode,
194 struct CRYPTO_dynlock_value *l,
195 const char *file, int line) = 0;
196 static void (*dynlock_destroy_callback) (struct CRYPTO_dynlock_value *l,
197 const char *file, int line) = 0;
198
199 int CRYPTO_get_new_lockid(char *name)
200 {
201 char *str;
202 int i;
203
204 #if defined(OPENSSL_SYS_WIN32)
205 /*
206 * A hack to make Visual C++ 5.0 work correctly when linking as a DLL
207 * using /MT. Without this, the application cannot use any floating point
208 * printf's. It also seems to be needed for Visual C 1.5 (win16)
209 */
210 OpenSSL_MSVC5_hack = (double)name[0] * (double)name[1];
211 #endif
212
213 if ((app_locks == NULL)
214 && ((app_locks = sk_OPENSSL_STRING_new_null()) == NULL)) {
215 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID, ERR_R_MALLOC_FAILURE);
216 return (0);
217 }
218 if ((str = OPENSSL_strdup(name)) == NULL) {
219 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_LOCKID, ERR_R_MALLOC_FAILURE);
220 return (0);
221 }
222 i = sk_OPENSSL_STRING_push(app_locks, str);
223 if (!i)
224 OPENSSL_free(str);
225 else
226 i += CRYPTO_NUM_LOCKS; /* gap of one :-) */
227 return (i);
228 }
229
230 int CRYPTO_num_locks(void)
231 {
232 return CRYPTO_NUM_LOCKS;
233 }
234
235 int CRYPTO_get_new_dynlockid(void)
236 {
237 int i = 0;
238 CRYPTO_dynlock *pointer = NULL;
239
240 if (dynlock_create_callback == NULL) {
241 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID,
242 CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK);
243 return (0);
244 }
245 CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
246 if ((dyn_locks == NULL)
247 && ((dyn_locks = sk_CRYPTO_dynlock_new_null()) == NULL)) {
248 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
249 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID, ERR_R_MALLOC_FAILURE);
250 return (0);
251 }
252 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
253
254 pointer = OPENSSL_malloc(sizeof(*pointer));
255 if (pointer == NULL) {
256 CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID, ERR_R_MALLOC_FAILURE);
257 return (0);
258 }
259 pointer->references = 1;
260 pointer->data = dynlock_create_callback(__FILE__, __LINE__);
261 if (pointer->data == NULL) {
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);
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)
272 /*
273 * Since sk_push() returns the number of items on the stack, not the
274 * location of the pushed item, we need to transform the returned
275 * number into a position, by decreasing it.
276 */
277 i = sk_CRYPTO_dynlock_push(dyn_locks, pointer) - 1;
278 else
279 /*
280 * If we found a place with a NULL pointer, put our pointer in it.
281 */
282 (void)sk_CRYPTO_dynlock_set(dyn_locks, i, pointer);
283 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
284
285 if (i == -1) {
286 dynlock_destroy_callback(pointer->data, __FILE__, __LINE__);
287 OPENSSL_free(pointer);
288 } else
289 i += 1; /* to avoid 0 */
290 return -i;
291 }
292
293 void CRYPTO_destroy_dynlockid(int i)
294 {
295 CRYPTO_dynlock *pointer = NULL;
296 if (i)
297 i = -i - 1;
298 if (dynlock_destroy_callback == NULL)
299 return;
300
301 CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
302
303 if (dyn_locks == NULL || i >= sk_CRYPTO_dynlock_num(dyn_locks)) {
304 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
305 return;
306 }
307 pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
308 if (pointer != NULL) {
309 --pointer->references;
310 #ifdef REF_CHECK
311 if (pointer->references < 0) {
312 OPENSSL_showfatal("CRYPTO_destroy_dynlockid, bad reference count\n");
313 abort();
314 } else
315 #endif
316 if (pointer->references <= 0) {
317 (void)sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
318 } else
319 pointer = NULL;
320 }
321 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
322
323 if (pointer) {
324 dynlock_destroy_callback(pointer->data, __FILE__, __LINE__);
325 OPENSSL_free(pointer);
326 }
327 }
328
329 struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i)
330 {
331 CRYPTO_dynlock *pointer = NULL;
332 if (i)
333 i = -i - 1;
334
335 CRYPTO_w_lock(CRYPTO_LOCK_DYNLOCK);
336
337 if (dyn_locks != NULL && i < sk_CRYPTO_dynlock_num(dyn_locks))
338 pointer = sk_CRYPTO_dynlock_value(dyn_locks, i);
339 if (pointer)
340 pointer->references++;
341
342 CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK);
343
344 if (pointer)
345 return pointer->data;
346 return NULL;
347 }
348
349 struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))
350 (const char *file, int line) {
351 return (dynlock_create_callback);
352 }
353
354 void (*CRYPTO_get_dynlock_lock_callback(void)) (int mode,
355 struct CRYPTO_dynlock_value
356 *l, const char *file,
357 int line) {
358 return (dynlock_lock_callback);
359 }
360
361 void (*CRYPTO_get_dynlock_destroy_callback(void))
362 (struct CRYPTO_dynlock_value *l, const char *file, int line) {
363 return (dynlock_destroy_callback);
364 }
365
366 void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*func)
367 (const char *file, int line))
368 {
369 dynlock_create_callback = func;
370 }
371
372 void CRYPTO_set_dynlock_lock_callback(void (*func) (int mode,
373 struct
374 CRYPTO_dynlock_value *l,
375 const char *file,
376 int line))
377 {
378 #ifdef OPENSSL_FIPS
379 FIPS_set_locking_callbacks(CRYPTO_lock, CRYPTO_add_lock);
380 #endif
381 dynlock_lock_callback = func;
382 }
383
384 void CRYPTO_set_dynlock_destroy_callback(void (*func)
385 (struct CRYPTO_dynlock_value *l,
386 const char *file, int line))
387 {
388 dynlock_destroy_callback = func;
389 }
390
391 void (*CRYPTO_get_locking_callback(void)) (int mode, int type,
392 const char *file, int line) {
393 return (locking_callback);
394 }
395
396 int (*CRYPTO_get_add_lock_callback(void)) (int *num, int mount, int type,
397 const char *file, int line) {
398 return (add_lock_callback);
399 }
400
401 void CRYPTO_set_locking_callback(void (*func) (int mode, int type,
402 const char *file, int line))
403 {
404 #ifdef OPENSSL_FIPS
405 FIPS_set_locking_callbacks(CRYPTO_lock, CRYPTO_add_lock);
406 #endif
407 locking_callback = func;
408 }
409
410 void CRYPTO_set_add_lock_callback(int (*func) (int *num, int mount, int type,
411 const char *file, int line))
412 {
413 add_lock_callback = func;
414 }
415
416 void CRYPTO_lock(int mode, int type, const char *file, int line)
417 {
418 #ifdef LOCK_DEBUG
419 {
420 CRYPTO_THREADID id;
421 char *rw_text, *operation_text;
422
423 if (mode & CRYPTO_LOCK)
424 operation_text = "lock ";
425 else if (mode & CRYPTO_UNLOCK)
426 operation_text = "unlock";
427 else
428 operation_text = "ERROR ";
429
430 if (mode & CRYPTO_READ)
431 rw_text = "r";
432 else if (mode & CRYPTO_WRITE)
433 rw_text = "w";
434 else
435 rw_text = "ERROR";
436
437 CRYPTO_THREADID_current(&id);
438 fprintf(stderr, "lock:%08lx:(%s)%s %-18s %s:%d\n",
439 CRYPTO_THREADID_hash(&id), rw_text, operation_text,
440 CRYPTO_get_lock_name(type), file, line);
441 }
442 #endif
443 if (type < 0) {
444 if (dynlock_lock_callback != NULL) {
445 struct CRYPTO_dynlock_value *pointer
446 = CRYPTO_get_dynlock_value(type);
447
448 OPENSSL_assert(pointer != NULL);
449
450 dynlock_lock_callback(mode, pointer, file, line);
451
452 CRYPTO_destroy_dynlockid(type);
453 }
454 } else if (locking_callback != NULL)
455 locking_callback(mode, type, file, line);
456 }
457
458 int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
459 int line)
460 {
461 int ret = 0;
462
463 if (add_lock_callback != NULL) {
464 #ifdef LOCK_DEBUG
465 int before = *pointer;
466 #endif
467
468 ret = add_lock_callback(pointer, amount, type, file, line);
469 #ifdef LOCK_DEBUG
470 {
471 CRYPTO_THREADID id;
472 CRYPTO_THREADID_current(&id);
473 fprintf(stderr, "ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
474 CRYPTO_THREADID_hash(&id), before, amount, ret,
475 CRYPTO_get_lock_name(type), file, line);
476 }
477 #endif
478 } else {
479 CRYPTO_lock(CRYPTO_LOCK | CRYPTO_WRITE, type, file, line);
480
481 ret = *pointer + amount;
482 #ifdef LOCK_DEBUG
483 {
484 CRYPTO_THREADID id;
485 CRYPTO_THREADID_current(&id);
486 fprintf(stderr, "ladd:%08lx:%2d+%2d->%2d %-18s %s:%d\n",
487 CRYPTO_THREADID_hash(&id),
488 *pointer, amount, ret,
489 CRYPTO_get_lock_name(type), file, line);
490 }
491 #endif
492 *pointer = ret;
493 CRYPTO_lock(CRYPTO_UNLOCK | CRYPTO_WRITE, type, file, line);
494 }
495 return (ret);
496 }
497
498 const char *CRYPTO_get_lock_name(int type)
499 {
500 if (type < 0)
501 return ("dynamic");
502 else if (type < CRYPTO_NUM_LOCKS)
503 return (lock_names[type]);
504 else if (type - CRYPTO_NUM_LOCKS > sk_OPENSSL_STRING_num(app_locks))
505 return ("ERROR");
506 else
507 return (sk_OPENSSL_STRING_value(app_locks, type - CRYPTO_NUM_LOCKS));
508 }