2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-10-09 03:50:24 +02:00
|
|
|
|
|
|
|
#ifndef __BIONIC_PRIVATE_BIONIC_TLS_H_
|
|
|
|
#define __BIONIC_PRIVATE_BIONIC_TLS_H_
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2013-12-12 20:02:41 +01:00
|
|
|
#include <sys/limits.h>
|
2014-06-13 22:57:51 +02:00
|
|
|
#include "bionic_macros.h"
|
2013-10-09 03:50:24 +02:00
|
|
|
#include "__get_tls.h"
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
/** WARNING WARNING WARNING
|
|
|
|
**
|
|
|
|
** This header file is *NOT* part of the public Bionic ABI/API
|
|
|
|
** and should not be used/included by user-serviceable parts of
|
|
|
|
** the system (e.g. applications).
|
|
|
|
**
|
|
|
|
** It is only provided here for the benefit of the system dynamic
|
|
|
|
** linker and the OpenGL sub-system (which needs to access the
|
|
|
|
** pre-allocated slot directly for performance reason).
|
|
|
|
**/
|
|
|
|
|
2014-05-28 21:35:33 +02:00
|
|
|
// Well-known TLS slots. What data goes in which slot is arbitrary unless otherwise noted.
|
2013-02-11 21:18:47 +01:00
|
|
|
enum {
|
2014-05-28 21:35:33 +02:00
|
|
|
TLS_SLOT_SELF = 0, // The kernel requires this specific slot for x86.
|
2013-02-11 21:18:47 +01:00
|
|
|
TLS_SLOT_THREAD_ID,
|
|
|
|
TLS_SLOT_ERRNO,
|
2013-02-12 17:40:24 +01:00
|
|
|
|
2014-05-28 21:35:33 +02:00
|
|
|
// These two aren't used by bionic itself, but allow the graphics code to
|
|
|
|
// access TLS directly rather than using the pthread API.
|
2013-02-11 21:18:47 +01:00
|
|
|
TLS_SLOT_OPENGL_API = 3,
|
|
|
|
TLS_SLOT_OPENGL = 4,
|
2013-02-12 17:40:24 +01:00
|
|
|
|
2014-05-28 21:35:33 +02:00
|
|
|
// This slot is only used to pass information from the dynamic linker to
|
|
|
|
// libc.so when the C library is loaded in to memory. The C runtime init
|
|
|
|
// function will then clear it. Since its use is extremely temporary,
|
|
|
|
// we reuse an existing location that isn't needed during libc startup.
|
2013-02-12 17:40:24 +01:00
|
|
|
TLS_SLOT_BIONIC_PREINIT = TLS_SLOT_OPENGL_API,
|
|
|
|
|
2014-05-28 21:35:33 +02:00
|
|
|
TLS_SLOT_STACK_GUARD = 5, // GCC requires this specific slot for x86.
|
2013-02-11 21:18:47 +01:00
|
|
|
TLS_SLOT_DLERROR,
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2014-05-28 21:35:33 +02:00
|
|
|
TLS_SLOT_FIRST_USER_SLOT // Must come last!
|
2013-02-11 21:18:47 +01:00
|
|
|
};
|
2012-10-17 00:54:46 +02:00
|
|
|
|
2013-02-12 17:40:24 +01:00
|
|
|
/*
|
|
|
|
* There are two kinds of slot used internally by bionic --- there are the well-known slots
|
|
|
|
* enumerated above, and then there are those that are allocated during startup by calls to
|
|
|
|
* pthread_key_create; grep for GLOBAL_INIT_THREAD_LOCAL_BUFFER to find those. We need to manually
|
|
|
|
* maintain that second number, but pthread_test will fail if we forget.
|
2014-12-12 05:50:41 +01:00
|
|
|
* Following are current pthread keys used internally:
|
|
|
|
* basename libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* dirname libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* uselocale libc
|
|
|
|
* getmntent_mntent libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* getmntent_strings libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* ptsname libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* ttyname libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* strerror libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* strsignal libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
2014-12-18 22:36:25 +01:00
|
|
|
* passwd libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
|
|
|
* group libc (GLOBAL_INIT_THREAD_LOCAL_BUFFER)
|
2014-12-12 05:50:41 +01:00
|
|
|
* _res_key libc
|
|
|
|
* je_thread_allocated_tsd jemalloc
|
|
|
|
* je_arenas_tsd jemalloc
|
|
|
|
* je_tcache_tsd jemalloc
|
|
|
|
* je_tcache_enabled_tsd jemalloc
|
|
|
|
* je_quarantine_tsd jemalloc
|
|
|
|
*
|
2009-07-17 17:55:01 +02:00
|
|
|
*/
|
2014-12-12 05:50:41 +01:00
|
|
|
|
2014-12-18 22:36:25 +01:00
|
|
|
#define LIBC_TLS_RESERVED_SLOTS 12
|
2013-12-12 20:02:41 +01:00
|
|
|
|
2014-05-08 20:14:03 +02:00
|
|
|
#if defined(USE_JEMALLOC)
|
|
|
|
/* jemalloc uses 5 keys for itself. */
|
2014-12-12 05:50:41 +01:00
|
|
|
#define BIONIC_TLS_RESERVED_SLOTS (LIBC_TLS_RESERVED_SLOTS + 5)
|
2014-05-08 20:14:03 +02:00
|
|
|
#else
|
2014-12-12 05:50:41 +01:00
|
|
|
#define BIONIC_TLS_RESERVED_SLOTS LIBC_TLS_RESERVED_SLOTS
|
2014-05-08 20:14:03 +02:00
|
|
|
#endif
|
|
|
|
|
2013-07-30 01:51:45 +02:00
|
|
|
/*
|
2013-12-12 20:02:41 +01:00
|
|
|
* Maximum number of elements in the TLS array.
|
|
|
|
* This includes space for pthread keys and our own internal slots.
|
2013-07-30 01:51:45 +02:00
|
|
|
*/
|
2014-12-12 05:50:41 +01:00
|
|
|
#define BIONIC_TLS_SLOTS (PTHREAD_KEYS_MAX + TLS_SLOT_FIRST_USER_SLOT + BIONIC_TLS_RESERVED_SLOTS)
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
2013-02-08 03:39:34 +01:00
|
|
|
#if defined(__cplusplus)
|
2013-09-18 23:37:00 +02:00
|
|
|
class KernelArgumentBlock;
|
2013-03-16 00:31:09 +01:00
|
|
|
extern __LIBC_HIDDEN__ void __libc_init_tls(KernelArgumentBlock& args);
|
2013-02-08 03:39:34 +01:00
|
|
|
#endif
|
|
|
|
|
2013-10-09 03:50:24 +02:00
|
|
|
#endif /* __BIONIC_PRIVATE_BIONIC_TLS_H_ */
|