2002-07-23 23:12:01 +00:00
|
|
|
/* Initialization code for TLS in statically linked application.
|
|
|
|
Copyright (C) 2002 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, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
|
|
|
|
2002-08-08 04:16:54 +00:00
|
|
|
#include <errno.h>
|
2002-07-23 23:12:01 +00:00
|
|
|
#include <ldsodefs.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_TLS
|
|
|
|
extern ElfW(Phdr) *_dl_phdr;
|
|
|
|
extern size_t _dl_phnum;
|
|
|
|
|
|
|
|
|
|
|
|
/* DTV with just one element plus overhead. */
|
|
|
|
static dtv_t static_dtv[3];
|
|
|
|
|
|
|
|
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
struct dtv_slotinfo_list si;
|
|
|
|
/* The dtv_slotinfo_list data structure does not include the actual
|
|
|
|
informatin since it is defined as an array of size zero. We
|
|
|
|
define here the necessary entries. Not that it is not important
|
|
|
|
whether there is padding or not since we will always access the
|
|
|
|
informatin through the 'si' element. */
|
|
|
|
struct dtv_slotinfo info[2 + TLS_SLOTINFO_SURPLUS];
|
|
|
|
} static_slotinfo;
|
|
|
|
|
|
|
|
/* Fake link map for the application. */
|
|
|
|
static struct link_map static_map;
|
|
|
|
|
|
|
|
|
2002-08-15 13:04:07 +00:00
|
|
|
/* Additional definitions needed by TLS initialization. */
|
|
|
|
#ifdef TLS_INIT_HELPER
|
|
|
|
TLS_INIT_HELPER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-07-23 23:12:01 +00:00
|
|
|
void
|
|
|
|
__libc_setup_tls (size_t tcbsize, size_t tcbalign)
|
|
|
|
{
|
|
|
|
void *tlsblock;
|
|
|
|
size_t memsz = 0;
|
|
|
|
size_t filesz = 0;
|
2002-08-28 10:28:11 +00:00
|
|
|
void *initimage = NULL;
|
2002-07-23 23:12:01 +00:00
|
|
|
size_t align = 0;
|
|
|
|
size_t max_align = tcbalign;
|
|
|
|
size_t tcb_offset;
|
2002-08-05 06:38:00 +00:00
|
|
|
ElfW(Phdr) *phdr;
|
2002-07-23 23:12:01 +00:00
|
|
|
|
|
|
|
/* Look through the TLS segment if there is any. */
|
|
|
|
if (_dl_phdr != NULL)
|
2002-08-05 06:38:00 +00:00
|
|
|
for (phdr = _dl_phdr; phdr < &_dl_phdr[_dl_phnum]; ++phdr)
|
2002-08-28 10:28:11 +00:00
|
|
|
if (phdr->p_type == PT_TLS)
|
|
|
|
{
|
|
|
|
/* Remember the values we need. */
|
|
|
|
memsz = phdr->p_memsz;
|
|
|
|
filesz = phdr->p_filesz;
|
|
|
|
initimage = (void *) phdr->p_vaddr;
|
|
|
|
align = phdr->p_align;
|
|
|
|
if (phdr->p_align > max_align)
|
|
|
|
max_align = phdr->p_align;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-23 23:12:01 +00:00
|
|
|
|
|
|
|
if (memsz == 0 && tcbsize == 0)
|
|
|
|
/* We do not need a TLS block and no thread descriptor. */
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* We have to set up the TCB block which also (possibly) contains
|
|
|
|
'errno'. Therefore we avoid 'malloc' which might touch 'errno'.
|
|
|
|
Instead we use 'sbrk' which would only uses 'errno' if it fails.
|
|
|
|
In this case we are right away out of memory and the user gets
|
|
|
|
what she/he deserves. */
|
|
|
|
# if TLS_TCB_AT_TP
|
|
|
|
tlsblock = __sbrk (roundup (memsz, tcbalign) + tcbsize + max_align);
|
|
|
|
# elif TLS_DTV_AT_TP
|
|
|
|
tlsblock = __sbrk (roundup (tcbsize, align) + memsz + max_align);
|
|
|
|
# else
|
|
|
|
/* In case a model with a different layout for the TCB and DTV
|
|
|
|
is defined add another #elif here and in the following #ifs. */
|
|
|
|
# error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Align the TLS block. */
|
|
|
|
tlsblock = (void *) (((uintptr_t) tlsblock + max_align - 1)
|
|
|
|
& ~(max_align - 1));
|
|
|
|
|
|
|
|
/* Initialize the dtv. [0] is the length, [1] the generation counter. */
|
|
|
|
static_dtv[0].counter = 1;
|
|
|
|
// static_dtv[1].counter = 0; would be needed if not already done
|
|
|
|
|
|
|
|
/* Initialize the TLS block. */
|
|
|
|
# if TLS_TCB_AT_TP
|
|
|
|
static_dtv[2].pointer = tlsblock;
|
|
|
|
# elif TLS_DTV_AT_TP
|
|
|
|
tcb_offset = roundup (tcbsize, align);
|
|
|
|
static_dtv[2].pointer = (char *) tlsblock + tcb_offset;
|
|
|
|
# else
|
|
|
|
# error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
|
|
|
|
# endif
|
2002-08-28 10:28:11 +00:00
|
|
|
memset (__mempcpy (static_dtv[2].pointer, initimage, filesz),
|
2002-07-23 23:12:01 +00:00
|
|
|
'\0', memsz - filesz);
|
|
|
|
|
|
|
|
/* Install the pointer to the dtv. */
|
|
|
|
|
|
|
|
/* Initialize the thread pointer. */
|
|
|
|
# if TLS_TCB_AT_TP
|
|
|
|
tcb_offset = roundup (memsz, tcbalign);
|
|
|
|
|
|
|
|
INSTALL_DTV ((char *) tlsblock + tcb_offset, static_dtv);
|
|
|
|
|
2002-08-21 00:17:09 +00:00
|
|
|
TLS_INIT_TP ((char *) tlsblock + tcb_offset, 0);
|
2002-07-23 23:12:01 +00:00
|
|
|
# elif TLS_DTV_AT_TP
|
|
|
|
INSTALL_DTV (tlsblock, static_dtv);
|
2002-08-21 00:17:09 +00:00
|
|
|
TLS_INIT_TP (tlsblock, 0);
|
2002-07-23 23:12:01 +00:00
|
|
|
# else
|
|
|
|
# error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* We have to create a fake link map which normally would be created
|
2002-08-05 01:21:25 +00:00
|
|
|
by the dynamic linker. It just has to have enough information to
|
2002-07-23 23:12:01 +00:00
|
|
|
make the TLS routines happy. */
|
|
|
|
static_map.l_tls_align = align;
|
|
|
|
static_map.l_tls_blocksize = memsz;
|
|
|
|
static_map.l_tls_initimage_size = filesz;
|
2002-08-05 01:21:25 +00:00
|
|
|
static_map.l_tls_offset = tcb_offset;
|
2002-07-23 23:12:01 +00:00
|
|
|
static_map.l_type = lt_executable;
|
|
|
|
static_map.l_tls_modid = 1;
|
|
|
|
|
|
|
|
/* Create the slotinfo list. */
|
|
|
|
static_slotinfo.si.len = 1; /* Only one element. */
|
|
|
|
// static_slotinfo.si.next = NULL; already zero
|
|
|
|
|
|
|
|
static_slotinfo.si.slotinfo[1].gen = 0;
|
|
|
|
static_slotinfo.si.slotinfo[1].map = &static_map;
|
|
|
|
|
|
|
|
/* The slotinfo list. Will be extended by the code doing dynamic
|
|
|
|
linking. */
|
|
|
|
GL(dl_tls_max_dtv_idx) = 1;
|
|
|
|
GL(dl_tls_dtv_slotinfo_list) = &static_slotinfo.si;
|
|
|
|
|
|
|
|
/* That is the size of the TLS memory for this object. */
|
2002-08-12 08:48:51 +00:00
|
|
|
GL(dl_tls_static_size) = (roundup (memsz, align ?: 1)
|
2002-07-23 23:12:01 +00:00
|
|
|
# if TLS_TCB_AT_TP
|
2002-08-12 08:48:51 +00:00
|
|
|
+ tcbsize
|
|
|
|
# endif
|
|
|
|
);
|
|
|
|
/* The alignment requirement for the static TLS block. */
|
|
|
|
GL(dl_tls_static_align) = MAX (TLS_TCB_ALIGN, max_align);
|
|
|
|
/* Number of elements in the static TLS block. */
|
|
|
|
GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx);
|
2002-07-23 23:12:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is the minimal initialization function used when libpthread is
|
|
|
|
not used. */
|
|
|
|
void
|
|
|
|
__attribute__ ((weak))
|
|
|
|
__pthread_initialize_minimal (void)
|
|
|
|
{
|
|
|
|
__libc_setup_tls (0, 1);
|
|
|
|
}
|
|
|
|
#endif
|