1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/*
* Copyright (c) 2011 Collabora Ltd
* Copyright (c) 2012 Stef Walter
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
* * Redistributions in binary form must reproduce the
* above copyright notice, this list of conditions and
* the following disclaimer in the documentation and/or
* other materials provided with the distribution.
* * The names of contributors to this software may not be
* used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*
* CONTRIBUTORS
* Stef Walter <stef@thewalter.net>
*/
#include "config.h"
#include "compat.h"
#define P11_DEBUG_FLAG P11_DEBUG_LIB
#include "debug.h"
#include "library.h"
#include "message.h"
#include <assert.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define P11_MESSAGE_MAX 512
typedef struct {
char message[P11_MESSAGE_MAX];
} p11_local;
static p11_local * _p11_library_get_thread_local (void);
#ifdef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
p11_mutex_t p11_library_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
p11_mutex_t p11_virtual_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
#else
p11_mutex_t p11_library_mutex;
p11_mutex_t p11_virtual_mutex;
#endif
#ifdef OS_UNIX
#ifndef __GNUC__
pthread_once_t p11_library_once = PTHREAD_ONCE_INIT;
#endif
#endif
unsigned int p11_forkid = 1;
#ifdef HAVE_STRERROR_L
extern locale_t p11_message_locale;
#endif
#ifdef __linux__
/* used only under __linux__ in the getprogname() emulation in compat.c. */
char *p11_program_realpath;
#endif
static char *
thread_local_message (void)
{
p11_local *local;
local = _p11_library_get_thread_local ();
return local ? local->message : NULL;
}
static char *
dont_store_message (void)
{
return NULL;
}
static void
uninit_common (void)
{
p11_debug ("uninitializing library");
}
#ifdef OS_UNIX
#ifdef P11_TLS_KEYWORD
static p11_local *
_p11_library_get_thread_local (void)
{
static P11_TLS_KEYWORD p11_local local;
static P11_TLS_KEYWORD bool local_initialized = false;
if (!local_initialized) {
memset (&local, 0, sizeof (p11_local));
local_initialized = true;
}
return &local;
}
#else
static pthread_key_t threadlocal = 0;
static p11_local *
_p11_library_get_thread_local (void)
{
p11_local *local;
p11_library_init_once ();
local = pthread_getspecific (threadlocal);
if (local == NULL) {
local = calloc (1, sizeof (p11_local));
pthread_setspecific (threadlocal, local);
}
return local;
}
#endif
static void
count_forks (void)
{
/* Thread safe, executed in child, one thread exists */
p11_forkid++;
}
void
p11_library_init_impl (void)
{
p11_debug_init ();
p11_debug ("initializing library");
P11_RECURSIVE_MUTEX_INIT (p11_library_mutex);
P11_RECURSIVE_MUTEX_INIT (p11_virtual_mutex);
#ifndef P11_TLS_KEYWORD
pthread_key_create (&threadlocal, free);
#endif
p11_message_storage = thread_local_message;
#ifdef HAVE_STRERROR_L
if (p11_message_locale == (locale_t) 0)
p11_message_locale = newlocale (LC_ALL_MASK, "POSIX", (locale_t) 0);
#endif
pthread_atfork (NULL, NULL, count_forks);
}
void
p11_library_init (void)
{
p11_library_init_impl ();
}
void
p11_library_uninit (void)
{
uninit_common ();
#ifndef P11_TLS_KEYWORD
/* Some cleanup to pacify valgrind */
free (pthread_getspecific (threadlocal));
pthread_setspecific (threadlocal, NULL);
#endif
#ifdef HAVE_STRERROR_L
if (p11_message_locale != (locale_t) 0)
freelocale (p11_message_locale);
p11_message_locale = 0;
#endif
p11_message_storage = dont_store_message;
#ifndef P11_TLS_KEYWORD
pthread_key_delete (threadlocal);
#endif
p11_mutex_uninit (&p11_virtual_mutex);
p11_mutex_uninit (&p11_library_mutex);
#ifdef __linux__
free (p11_program_realpath);
#endif
}
#endif /* OS_UNIX */
#ifdef OS_WIN32
static DWORD threadlocal = TLS_OUT_OF_INDEXES;
BOOL WINAPI DllMain (HINSTANCE, DWORD, LPVOID);
static p11_local *
_p11_library_get_thread_local (void)
{
LPVOID data;
if (threadlocal == TLS_OUT_OF_INDEXES)
return NULL;
data = TlsGetValue (threadlocal);
if (data == NULL) {
data = LocalAlloc (LPTR, sizeof (p11_local));
TlsSetValue (threadlocal, data);
}
return (p11_local *)data;
}
void
p11_library_init (void)
{
p11_debug_init ();
p11_debug ("initializing library");
P11_RECURSIVE_MUTEX_INIT (p11_library_mutex);
P11_RECURSIVE_MUTEX_INIT (p11_virtual_mutex);
threadlocal = TlsAlloc ();
if (threadlocal == TLS_OUT_OF_INDEXES)
p11_debug ("couldn't setup tls");
else
p11_message_storage = thread_local_message;
}
void
p11_library_thread_cleanup (void)
{
p11_local *local;
if (threadlocal != TLS_OUT_OF_INDEXES) {
p11_debug ("thread stopped, freeing tls");
local = TlsGetValue (threadlocal);
LocalFree (local);
}
}
void
p11_library_uninit (void)
{
LPVOID data;
uninit_common ();
if (threadlocal != TLS_OUT_OF_INDEXES) {
p11_message_storage = dont_store_message;
data = TlsGetValue (threadlocal);
LocalFree (data);
TlsFree (threadlocal);
}
p11_mutex_uninit (&p11_virtual_mutex);
p11_mutex_uninit (&p11_library_mutex);
}
#endif /* OS_WIN32 */
|