1 /* crypto/threads/th-lock.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
66 #ifdef OPENSSL_SYS_WIN32
75 #include <sys/prctl.h>
80 #include <openssl/lhash.h>
81 #include <openssl/crypto.h>
82 #include <openssl/buffer.h>
83 #include "../../e_os.h"
84 #include <openssl/x509.h>
85 #include <openssl/ssl.h>
86 #include <openssl/err.h>
88 void CRYPTO_thread_setup(void);
89 void CRYPTO_thread_cleanup(void);
91 static void irix_locking_callback(int mode
,int type
,char *file
,int line
);
92 static void solaris_locking_callback(int mode
,int type
,char *file
,int line
);
93 static void win32_locking_callback(int mode
,int type
,char *file
,int line
);
94 static void pthreads_locking_callback(int mode
,int type
,char *file
,int line
);
96 static unsigned long irix_thread_id(void );
97 static unsigned long solaris_thread_id(void );
98 static unsigned long pthreads_thread_id(void );
101 * CRYPTO_thread_setup();
103 * CRYPTO_thread_cleanup();
106 #define THREAD_STACK_SIZE (16*1024)
108 #ifdef OPENSSL_SYS_WIN32
110 static HANDLE
*lock_cs
;
112 void CRYPTO_thread_setup(void)
116 lock_cs
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(HANDLE
));
117 for (i
=0; i
<CRYPTO_num_locks(); i
++)
119 lock_cs
[i
]=CreateMutex(NULL
,FALSE
,NULL
);
122 CRYPTO_set_locking_callback((void (*)(int,int,char *,int))win32_locking_callback
);
123 /* id callback defined */
127 static void CRYPTO_thread_cleanup(void)
131 CRYPTO_set_locking_callback(NULL
);
132 for (i
=0; i
<CRYPTO_num_locks(); i
++)
133 CloseHandle(lock_cs
[i
]);
134 OPENSSL_free(lock_cs
);
137 void win32_locking_callback(int mode
, int type
, char *file
, int line
)
139 if (mode
& CRYPTO_LOCK
)
141 WaitForSingleObject(lock_cs
[type
],INFINITE
);
145 ReleaseMutex(lock_cs
[type
]);
149 #endif /* OPENSSL_SYS_WIN32 */
156 static mutex_t
*lock_cs
;
158 static rwlock_t
*lock_cs
;
160 static long *lock_count
;
162 void CRYPTO_thread_setup(void)
167 lock_cs
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(mutex_t
));
169 lock_cs
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(rwlock_t
));
171 lock_count
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
172 for (i
=0; i
<CRYPTO_num_locks(); i
++)
176 mutex_init(&(lock_cs
[i
]),USYNC_THREAD
,NULL
);
178 rwlock_init(&(lock_cs
[i
]),USYNC_THREAD
,NULL
);
182 CRYPTO_set_id_callback((unsigned long (*)())solaris_thread_id
);
183 CRYPTO_set_locking_callback((void (*)())solaris_locking_callback
);
186 void CRYPTO_thread_cleanup(void)
190 CRYPTO_set_locking_callback(NULL
);
191 for (i
=0; i
<CRYPTO_num_locks(); i
++)
194 mutex_destroy(&(lock_cs
[i
]));
196 rwlock_destroy(&(lock_cs
[i
]));
199 OPENSSL_free(lock_cs
);
200 OPENSSL_free(lock_count
);
203 void solaris_locking_callback(int mode
, int type
, char *file
, int line
)
206 fprintf(stderr
,"thread=%4d mode=%s lock=%s %s:%d\n",
208 (mode
&CRYPTO_LOCK
)?"l":"u",
209 (type
&CRYPTO_READ
)?"r":"w",file
,line
);
213 if (CRYPTO_LOCK_SSL_CERT
== type
)
214 fprintf(stderr
,"(t,m,f,l) %ld %d %s %d\n",
218 if (mode
& CRYPTO_LOCK
)
221 mutex_lock(&(lock_cs
[type
]));
223 if (mode
& CRYPTO_READ
)
224 rw_rdlock(&(lock_cs
[type
]));
226 rw_wrlock(&(lock_cs
[type
]));
233 mutex_unlock(&(lock_cs
[type
]));
235 rw_unlock(&(lock_cs
[type
]));
240 unsigned long solaris_thread_id(void)
244 ret
=(unsigned long)thr_self();
250 /* I don't think this works..... */
252 static usptr_t
*arena
;
253 static usema_t
**lock_cs
;
255 void CRYPTO_thread_setup(void)
260 strcpy(filename
,"/tmp/mttest.XXXXXX");
263 usconfig(CONF_STHREADIOOFF
);
264 usconfig(CONF_STHREADMALLOCOFF
);
265 usconfig(CONF_INITUSERS
,100);
266 usconfig(CONF_LOCKTYPE
,US_DEBUGPLUS
);
267 arena
=usinit(filename
);
270 lock_cs
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(usema_t
*));
271 for (i
=0; i
<CRYPTO_num_locks(); i
++)
273 lock_cs
[i
]=usnewsema(arena
,1);
276 CRYPTO_set_id_callback((unsigned long (*)())irix_thread_id
);
277 CRYPTO_set_locking_callback((void (*)())irix_locking_callback
);
280 void CRYPTO_thread_cleanup(void)
284 CRYPTO_set_locking_callback(NULL
);
285 for (i
=0; i
<CRYPTO_num_locks(); i
++)
289 sprintf(buf
,"%2d:",i
);
290 usdumpsema(lock_cs
[i
],stdout
,buf
);
291 usfreesema(lock_cs
[i
],arena
);
293 OPENSSL_free(lock_cs
);
296 void irix_locking_callback(int mode
, int type
, char *file
, int line
)
298 if (mode
& CRYPTO_LOCK
)
300 uspsema(lock_cs
[type
]);
304 usvsema(lock_cs
[type
]);
308 unsigned long irix_thread_id(void)
312 ret
=(unsigned long)getpid();
317 /* Linux and a few others */
320 static pthread_mutex_t
*lock_cs
;
321 static long *lock_count
;
323 void CRYPTO_thread_setup(void)
327 lock_cs
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t
));
328 lock_count
=OPENSSL_malloc(CRYPTO_num_locks() * sizeof(long));
329 for (i
=0; i
<CRYPTO_num_locks(); i
++)
332 pthread_mutex_init(&(lock_cs
[i
]),NULL
);
335 CRYPTO_set_id_callback((unsigned long (*)())pthreads_thread_id
);
336 CRYPTO_set_locking_callback((void (*)())pthreads_locking_callback
);
339 void thread_cleanup(void)
343 CRYPTO_set_locking_callback(NULL
);
344 for (i
=0; i
<CRYPTO_num_locks(); i
++)
346 pthread_mutex_destroy(&(lock_cs
[i
]));
348 OPENSSL_free(lock_cs
);
349 OPENSSL_free(lock_count
);
352 void pthreads_locking_callback(int mode
, int type
, char *file
,
356 fprintf(stderr
,"thread=%4d mode=%s lock=%s %s:%d\n",
358 (mode
&CRYPTO_LOCK
)?"l":"u",
359 (type
&CRYPTO_READ
)?"r":"w",file
,line
);
362 if (CRYPTO_LOCK_SSL_CERT
== type
)
363 fprintf(stderr
,"(t,m,f,l) %ld %d %s %d\n",
367 if (mode
& CRYPTO_LOCK
)
369 pthread_mutex_lock(&(lock_cs
[type
]));
374 pthread_mutex_unlock(&(lock_cs
[type
]));
378 unsigned long pthreads_thread_id(void)
382 ret
=(unsigned long)pthread_self();
386 #endif /* PTHREADS */