mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
f8aeae3473
for ChangeLog [BZ #17090] [BZ #17620] [BZ #17621] [BZ #17628] * NEWS: Update. * elf/dl-tls.c (_dl_update_slotinfo): Clean up outdated DTV entries with Static TLS too. Skip entries past the end of the allocated DTV, from Alan Modra. (tls_get_addr_tail): Update to glibc_likely/unlikely. Move Static TLS DTV entry set up from... (_dl_allocate_tls_init): ... here (fix modid assertion), ... * elf/dl-reloc.c (_dl_nothread_init_static_tls): ... here... * nptl/allocatestack.c (init_one_static_tls): ... and here... * elf/dlopen.c (dl_open_worker): Drop l_tls_modid upper bound for Static TLS. * elf/tlsdeschtab.h (map_generation): Return size_t. Check that the slot we find is associated with the given map before using its generation count. * nptl_db/db_info.c: Include ldsodefs.h. (rtld_global, dtv_slotinfo_list, dtv_slotinfo): New typedefs. * nptl_db/structs.def (DB_RTLD_VARIABLE): New macro. (DB_MAIN_VARIABLE, DB_RTLD_GLOBAL_FIELD): Likewise. (link_map::l_tls_offset): New struct field. (dtv_t::counter): Likewise. (rtld_global): New struct. (_rtld_global): New rtld variable. (dl_tls_dtv_slotinfo_list): New rtld global field. (dtv_slotinfo_list): New struct. (dtv_slotinfo): Likewise. * nptl_db/td_symbol_list.c: Drop gnu/lib-names.h include. (td_lookup): Rename to... (td_mod_lookup): ... this. Use new mod parameter instead of LIBPTHREAD_SO. * nptl_db/td_thr_tlsbase.c: Include link.h. (dtv_slotinfo_list, dtv_slotinfo): New functions. (td_thr_tlsbase): Check DTV generation. Compute Static TLS addresses even if the DTV is out of date or missing them. * nptl_db/fetch-value.c (_td_locate_field): Do not refuse to index zero-length arrays. * nptl_db/thread_dbP.h: Include gnu/lib-names.h. (td_lookup): Make it a macro implemented in terms of... (td_mod_lookup): ... this declaration. * nptl_db/db-symbols.awk (DB_RTLD_VARIABLE): Override. (DB_MAIN_VARIABLE): Likewise.
110 lines
3.6 KiB
C
110 lines
3.6 KiB
C
/* This file is included by pthread_create.c to define in libpthread
|
|
all the magic symbols required by libthread_db.
|
|
|
|
Copyright (C) 2003-2015 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <stdint.h>
|
|
#include "thread_dbP.h"
|
|
#include <tls.h>
|
|
#include <ldsodefs.h>
|
|
|
|
typedef struct pthread pthread;
|
|
typedef struct pthread_key_struct pthread_key_struct;
|
|
typedef struct pthread_key_data pthread_key_data;
|
|
typedef struct
|
|
{
|
|
struct pthread_key_data data[PTHREAD_KEY_2NDLEVEL_SIZE];
|
|
}
|
|
pthread_key_data_level2;
|
|
|
|
typedef struct
|
|
{
|
|
union dtv dtv[UINT32_MAX / 2 / sizeof (union dtv)]; /* No constant bound. */
|
|
} dtv;
|
|
|
|
typedef struct link_map link_map;
|
|
typedef struct rtld_global rtld_global;
|
|
typedef struct dtv_slotinfo_list dtv_slotinfo_list;
|
|
typedef struct dtv_slotinfo dtv_slotinfo;
|
|
|
|
/* Actually static in nptl/init.c, but we only need it for typeof. */
|
|
extern bool __nptl_initial_report_events;
|
|
|
|
#define schedparam_sched_priority schedparam.sched_priority
|
|
|
|
#define eventbuf_eventmask eventbuf.eventmask
|
|
#define eventbuf_eventmask_event_bits eventbuf.eventmask.event_bits
|
|
|
|
#define DESC(name, offset, obj) \
|
|
DB_DEFINE_DESC (name, 8 * sizeof (obj), 1, offset);
|
|
#define ARRAY_DESC(name, offset, obj) \
|
|
DB_DEFINE_DESC (name, \
|
|
8 * sizeof (obj)[0], sizeof (obj) / sizeof (obj)[0], \
|
|
offset);
|
|
|
|
#if TLS_TCB_AT_TP
|
|
# define dtvp header.dtv
|
|
#elif TLS_DTV_AT_TP
|
|
/* Special case hack. If TLS_TCB_SIZE == 0 (on PowerPC), there is no TCB
|
|
containing the DTV at the TP, but actually the TCB lies behind the TP,
|
|
i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE. */
|
|
DESC (_thread_db_pthread_dtvp,
|
|
TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv)
|
|
- (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv *)
|
|
#endif
|
|
|
|
|
|
#define DB_STRUCT(type) \
|
|
const uint32_t _thread_db_sizeof_##type = sizeof (type);
|
|
#define DB_STRUCT_FIELD(type, field) \
|
|
DESC (_thread_db_##type##_##field, \
|
|
offsetof (type, field), ((type *) 0)->field)
|
|
#define DB_STRUCT_ARRAY_FIELD(type, field) \
|
|
ARRAY_DESC (_thread_db_##type##_##field, \
|
|
offsetof (type, field), ((type *) 0)->field)
|
|
#define DB_VARIABLE(name) DESC (_thread_db_##name, 0, name)
|
|
#define DB_ARRAY_VARIABLE(name) ARRAY_DESC (_thread_db_##name, 0, name)
|
|
#define DB_SYMBOL(name) /* Nothing. */
|
|
#define DB_FUNCTION(name) /* Nothing. */
|
|
#include "structs.def"
|
|
#undef DB_STRUCT
|
|
#undef DB_STRUCT_FIELD
|
|
#undef DB_SYMBOL
|
|
#undef DB_FUNCTION
|
|
#undef DB_VARIABLE
|
|
#undef DESC
|
|
|
|
|
|
|
|
#ifdef DB_THREAD_SELF
|
|
# ifdef DB_THREAD_SELF_INCLUDE
|
|
# include DB_THREAD_SELF_INCLUDE
|
|
# endif
|
|
|
|
/* This macro is defined in the machine's tls.h using the three below. */
|
|
# define CONST_THREAD_AREA(bits, value) \
|
|
const uint32_t _thread_db_const_thread_area = (value);
|
|
# define REGISTER_THREAD_AREA(bits, regofs, scale) \
|
|
DB_DEFINE_DESC (_thread_db_register##bits##_thread_area, \
|
|
bits, (scale), (regofs));
|
|
# define REGISTER(bits, size, regofs, bias) \
|
|
DB_DEFINE_DESC (_thread_db_register##bits, size, (uint32_t)(bias), (regofs));
|
|
|
|
DB_THREAD_SELF
|
|
#endif
|