Home | History | Annotate | Line # | Download | only in libpthread
pthread_tsd.c revision 1.19
      1 /*	$NetBSD: pthread_tsd.c,v 1.19 2020/02/15 23:59:30 kamil Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2001, 2007 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Nathan J. Williams, by Andrew Doran, and by Christos Zoulas.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __RCSID("$NetBSD: pthread_tsd.c,v 1.19 2020/02/15 23:59:30 kamil Exp $");
     34 
     35 /* Functions and structures dealing with thread-specific data */
     36 #include <errno.h>
     37 #include <sys/mman.h>
     38 
     39 #include "pthread.h"
     40 #include "pthread_int.h"
     41 #include "reentrant.h"
     42 #include "tsd.h"
     43 
     44 int pthread_keys_max;
     45 static pthread_mutex_t tsd_mutex = PTHREAD_MUTEX_INITIALIZER;
     46 static int nextkey;
     47 
     48 PTQ_HEAD(pthread__tsd_list, pt_specific) *pthread__tsd_list = NULL;
     49 void (**pthread__tsd_destructors)(void *) = NULL;
     50 
     51 __strong_alias(__libc_thr_keycreate,pthread_key_create)
     52 __strong_alias(__libc_thr_keydelete,pthread_key_delete)
     53 
     54 static void
     55 /*ARGSUSED*/
     56 null_destructor(void *p)
     57 {
     58 }
     59 
     60 #include <err.h>
     61 #include <stdlib.h>
     62 #include <stdio.h>
     63 
     64 void *
     65 pthread_tsd_earlyinit(size_t *tlen)
     66 {
     67 	char *pkm;
     68 	size_t alen;
     69 	char *arena;
     70 
     71 	if ((pkm = pthread__getenv("PTHREAD_KEYS_MAX")) != NULL) {
     72 		pthread_keys_max = (int)strtol(pkm, NULL, 0);
     73 		if (pthread_keys_max < _POSIX_THREAD_KEYS_MAX)
     74 			pthread_keys_max = _POSIX_THREAD_KEYS_MAX;
     75 	} else {
     76 		pthread_keys_max = PTHREAD_KEYS_MAX;
     77 	}
     78 
     79 	/*
     80 	 * Can't use malloc here yet, because malloc will use the fake
     81 	 * libc thread functions to initialize itself, so mmap the space.
     82 	 */
     83 	*tlen = sizeof(struct __pthread_st)
     84 	    + pthread_keys_max * sizeof(struct pt_specific);
     85 	alen = *tlen
     86 	    + sizeof(*pthread__tsd_list) * pthread_keys_max
     87 	    + sizeof(*pthread__tsd_destructors) * pthread_keys_max;
     88 
     89 	arena = mmap(NULL, alen, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
     90 	if (arena == MAP_FAILED) {
     91 		pthread_keys_max = 0;
     92 		return NULL;
     93 	}
     94 
     95 	pthread__tsd_list = (void *)arena;
     96 	arena += sizeof(*pthread__tsd_list) * pthread_keys_max;
     97 	pthread__tsd_destructors = (void *)arena;
     98 	arena += sizeof(*pthread__tsd_destructors) * pthread_keys_max;
     99 	return arena;
    100 }
    101 
    102 static void
    103 pthread_tsd_prefork(void)
    104 {
    105 	pthread_mutex_lock(&tsd_mutex);
    106 }
    107 
    108 static void
    109 pthread_tsd_postfork(void)
    110 {
    111 	pthread_mutex_unlock(&tsd_mutex);
    112 }
    113 
    114 void
    115 pthread_tsd_init(void)
    116 {
    117 
    118 	pthread_atfork(pthread_tsd_prefork, pthread_tsd_postfork, pthread_tsd_postfork);
    119 }
    120 
    121 int
    122 pthread_key_create(pthread_key_t *key, void (*destructor)(void *))
    123 {
    124 	int i;
    125 
    126 	if (__predict_false(__uselibcstub))
    127 		return __libc_thr_keycreate_stub(key, destructor);
    128 
    129 	/* Get a lock on the allocation list */
    130 	pthread_mutex_lock(&tsd_mutex);
    131 
    132 	/* Find an available slot:
    133 	 * The condition for an available slot is one with the destructor
    134 	 * not being NULL. If the desired destructor is NULL we set it to
    135 	 * our own internal destructor to satisfy the non NULL condition.
    136 	 */
    137 	/* 1. Search from "nextkey" to the end of the list. */
    138 	for (i = nextkey; i < pthread_keys_max; i++)
    139 		if (pthread__tsd_destructors[i] == NULL)
    140 			break;
    141 
    142 	if (i == pthread_keys_max) {
    143 		/* 2. If that didn't work, search from the start
    144 		 *    of the list back to "nextkey".
    145 		 */
    146 		for (i = 0; i < nextkey; i++)
    147 			if (pthread__tsd_destructors[i] == NULL)
    148 				break;
    149 
    150 		if (i == nextkey) {
    151 			/* If we didn't find one here, there isn't one
    152 			 * to be found.
    153 			 */
    154 			pthread_mutex_unlock(&tsd_mutex);
    155 			return EAGAIN;
    156 		}
    157 	}
    158 
    159 	/* Got one. */
    160 	pthread__assert(PTQ_EMPTY(&pthread__tsd_list[i]));
    161 	pthread__tsd_destructors[i] = destructor ? destructor : null_destructor;
    162 
    163 	nextkey = (i + 1) % pthread_keys_max;
    164 	pthread_mutex_unlock(&tsd_mutex);
    165 	*key = i;
    166 
    167 	return 0;
    168 }
    169 
    170 /*
    171  * Each thread holds an array of pthread_keys_max pt_specific list
    172  * elements. When an element is used it is inserted into the appropriate
    173  * key bucket of pthread__tsd_list. This means that ptqe_prev == NULL,
    174  * means that the element is not threaded, ptqe_prev != NULL it is
    175  * already part of the list. When we set to a NULL value we delete from the
    176  * list if it was in the list, and when we set to non-NULL value, we insert
    177  * in the list if it was not already there.
    178  *
    179  * We keep this global array of lists of threads that have called
    180  * pthread_set_specific with non-null values, for each key so that
    181  * we don't have to check all threads for non-NULL values in
    182  * pthread_key_destroy
    183  *
    184  * We could keep an accounting of the number of specific used
    185  * entries per thread, so that we can update pt_havespecific when we delete
    186  * the last one, but we don't bother for now
    187  */
    188 int
    189 pthread__add_specific(pthread_t self, pthread_key_t key, const void *value)
    190 {
    191 	struct pt_specific *pt;
    192 
    193 	pthread__assert(key >= 0 && key < pthread_keys_max);
    194 
    195 	pthread_mutex_lock(&tsd_mutex);
    196 	pthread__assert(pthread__tsd_destructors[key] != NULL);
    197 	pt = &self->pt_specific[key];
    198 	self->pt_havespecific = 1;
    199 	if (value) {
    200 		if (pt->pts_next.ptqe_prev == NULL)
    201 			PTQ_INSERT_HEAD(&pthread__tsd_list[key], pt, pts_next);
    202 	} else {
    203 		if (pt->pts_next.ptqe_prev != NULL) {
    204 			PTQ_REMOVE(&pthread__tsd_list[key], pt, pts_next);
    205 			pt->pts_next.ptqe_prev = NULL;
    206 		}
    207 	}
    208 	pt->pts_value = __UNCONST(value);
    209 	pthread_mutex_unlock(&tsd_mutex);
    210 
    211 	return 0;
    212 }
    213 
    214 int
    215 pthread_key_delete(pthread_key_t key)
    216 {
    217 	/*
    218 	 * This is tricky.  The standard says of pthread_key_create()
    219 	 * that new keys have the value NULL associated with them in
    220 	 * all threads.  According to people who were present at the
    221 	 * standardization meeting, that requirement was written
    222 	 * before pthread_key_delete() was introduced, and not
    223 	 * reconsidered when it was.
    224 	 *
    225 	 * See David Butenhof's article in comp.programming.threads:
    226 	 * Subject: Re: TSD key reusing issue
    227 	 * Message-ID: <u97d8.29$fL6.200 (at) news.cpqcorp.net>
    228 	 * Date: Thu, 21 Feb 2002 09:06:17 -0500
    229 	 *	 http://groups.google.com/groups?\
    230 	 *	 hl=en&selm=u97d8.29%24fL6.200%40news.cpqcorp.net
    231 	 *
    232 	 * Given:
    233 	 *
    234 	 * 1: Applications are not required to clear keys in all
    235 	 *    threads before calling pthread_key_delete().
    236 	 * 2: Clearing pointers without running destructors is a
    237 	 *    memory leak.
    238 	 * 3: The pthread_key_delete() function is expressly forbidden
    239 	 *    to run any destructors.
    240 	 *
    241 	 * Option 1: Make this function effectively a no-op and
    242 	 * prohibit key reuse. This is a possible resource-exhaustion
    243 	 * problem given that we have a static storage area for keys,
    244 	 * but having a non-static storage area would make
    245 	 * pthread_setspecific() expensive (might need to realloc the
    246 	 * TSD array).
    247 	 *
    248 	 * Option 2: Ignore the specified behavior of
    249 	 * pthread_key_create() and leave the old values. If an
    250 	 * application deletes a key that still has non-NULL values in
    251 	 * some threads... it's probably a memory leak and hence
    252 	 * incorrect anyway, and we're within our rights to let the
    253 	 * application lose. However, it's possible (if unlikely) that
    254 	 * the application is storing pointers to non-heap data, or
    255 	 * non-pointers that have been wedged into a void pointer, so
    256 	 * we can't entirely write off such applications as incorrect.
    257 	 * This could also lead to running (new) destructors on old
    258 	 * data that was never supposed to be associated with that
    259 	 * destructor.
    260 	 *
    261 	 * Option 3: Follow the specified behavior of
    262 	 * pthread_key_create().  Either pthread_key_create() or
    263 	 * pthread_key_delete() would then have to clear the values in
    264 	 * every thread's slot for that key. In order to guarantee the
    265 	 * visibility of the NULL value in other threads, there would
    266 	 * have to be synchronization operations in both the clearer
    267 	 * and pthread_getspecific().  Putting synchronization in
    268 	 * pthread_getspecific() is a big performance lose.  But in
    269 	 * reality, only (buggy) reuse of an old key would require
    270 	 * this synchronization; for a new key, there has to be a
    271 	 * memory-visibility propagating event between the call to
    272 	 * pthread_key_create() and pthread_getspecific() with that
    273 	 * key, so setting the entries to NULL without synchronization
    274 	 * will work, subject to problem (2) above. However, it's kind
    275 	 * of slow.
    276 	 *
    277 	 * Note that the argument in option 3 only applies because we
    278 	 * keep TSD in ordinary memory which follows the pthreads
    279 	 * visibility rules. The visibility rules are not required by
    280 	 * the standard to apply to TSD, so the argument doesn't
    281 	 * apply in general, just to this implementation.
    282 	 */
    283 
    284 	/*
    285 	 * We do option 3; we find the list of all pt_specific structures
    286 	 * threaded on the key we are deleting, unthread them, and set the
    287 	 * pointer to NULL. Finally we unthread the entry, freeing it for
    288 	 * further use.
    289 	 *
    290 	 * We don't call the destructor here, it is the responsibility
    291 	 * of the application to cleanup the storage:
    292 	 * 	http://pubs.opengroup.org/onlinepubs/9699919799/functions/\
    293 	 *	pthread_key_delete.html
    294 	 */
    295 	struct pt_specific *pt;
    296 
    297 	if (__predict_false(__uselibcstub))
    298 		return __libc_thr_keydelete_stub(key);
    299 
    300 	pthread__assert(key >= 0 && key < pthread_keys_max);
    301 
    302 	pthread_mutex_lock(&tsd_mutex);
    303 
    304 	pthread__assert(pthread__tsd_destructors[key] != NULL);
    305 
    306 	while ((pt = PTQ_FIRST(&pthread__tsd_list[key])) != NULL) {
    307 		PTQ_REMOVE(&pthread__tsd_list[key], pt, pts_next);
    308 		pt->pts_value = NULL;
    309 		pt->pts_next.ptqe_prev = NULL;
    310 	}
    311 
    312 	pthread__tsd_destructors[key] = NULL;
    313 	pthread_mutex_unlock(&tsd_mutex);
    314 
    315 	return 0;
    316 }
    317 
    318 /* Perform thread-exit-time destruction of thread-specific data. */
    319 void
    320 pthread__destroy_tsd(pthread_t self)
    321 {
    322 	int i, done, iterations;
    323 	void *val;
    324 	void (*destructor)(void *);
    325 
    326 	if (!self->pt_havespecific)
    327 		return;
    328 	pthread_mutex_unlock(&self->pt_lock);
    329 
    330 	/* Butenhof, section 5.4.2 (page 167):
    331 	 *
    332 	 * ``Also, Pthreads sets the thread-specific data value for a
    333 	 * key to NULL before calling that key's destructor (passing
    334 	 * the previous value of the key) when a thread terminates [*].
    335 	 * ...
    336 	 * [*] That is, unfortunately, not what the standard
    337 	 * says. This is one of the problems with formal standards -
    338 	 * they say what they say, not what they were intended to
    339 	 * say. Somehow, an error crept in, and the sentence
    340 	 * specifying that "the implementation clears the
    341 	 * thread-specific data value before calling the destructor"
    342 	 * was deleted. Nobody noticed, and the standard was approved
    343 	 * with the error. So the standard says (by omission) that if
    344 	 * you want to write a portable application using
    345 	 * thread-specific data, that will not hang on thread
    346 	 * termination, you must call pthread_setspecific within your
    347 	 * destructor function to change the value to NULL. This would
    348 	 * be silly, and any serious implementation of Pthreads will
    349 	 * violate the standard in this respect. Of course, the
    350 	 * standard will be fixed, probably by the 1003.1n amendment
    351 	 * (assorted corrections to 1003.1c-1995), but that will take
    352 	 * a while.''
    353 	 */
    354 
    355 	/* We're not required to try very hard */
    356 	iterations = PTHREAD_DESTRUCTOR_ITERATIONS;
    357 	do {
    358 		done = 1;
    359 		for (i = 0; i < pthread_keys_max; i++) {
    360 			struct pt_specific *pt = &self->pt_specific[i];
    361 			if (pt->pts_next.ptqe_prev == NULL)
    362 				continue;
    363 			pthread_mutex_lock(&tsd_mutex);
    364 
    365 			if (pt->pts_next.ptqe_prev != NULL)  {
    366 				PTQ_REMOVE(&pthread__tsd_list[i], pt, pts_next);
    367 				val = pt->pts_value;
    368 				pt->pts_value = NULL;
    369 				pt->pts_next.ptqe_prev = NULL;
    370 				destructor = pthread__tsd_destructors[i];
    371 			} else
    372 				destructor = NULL;
    373 
    374 			pthread_mutex_unlock(&tsd_mutex);
    375 			if (destructor != NULL) {
    376 				done = 0;
    377 				(*destructor)(val);
    378 			}
    379 		}
    380 	} while (!done && --iterations);
    381 
    382 	self->pt_havespecific = 0;
    383 	pthread_mutex_lock(&self->pt_lock);
    384 }
    385 
    386 void
    387 pthread__copy_tsd(pthread_t self)
    388 {
    389 	for (size_t key = 0; key < TSD_KEYS_MAX; key++) {
    390 
    391 		if (__libc_tsd[key].tsd_inuse == 0)
    392 			continue;
    393 
    394 		pthread__assert(pthread__tsd_destructors[key] == NULL);
    395 		pthread__tsd_destructors[key] = __libc_tsd[key].tsd_dtor ?
    396 		    __libc_tsd[key].tsd_dtor : null_destructor;
    397 		nextkey = (key + 1) % pthread_keys_max;
    398 
    399 		self->pt_havespecific = 1;
    400 		struct pt_specific *pt = &self->pt_specific[key];
    401 		pt->pts_value = __libc_tsd[key].tsd_val;
    402 		__libc_tsd[key].tsd_inuse = 0;
    403 	}
    404 }
    405