Skip to content

Commit

Permalink
Fix bookkeeping of static TLS block for TLS_TCB_AT_TP architectures.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jul 29, 2009
1 parent b0948ff commit 9655389
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2009-07-28 Ulrich Drepper <drepper@redhat.com>

* csu/libc-tls.c (__libc_setup_tls) [TLS_TCB_AT_TP]: Don't add TCB
size to memsz.
(init_static_tls) [TLS_TCB_AT_TP]: Add it to GL(dl_tls_static_size)
here.
* elf/dl-reloc.c (_dl_try_allocate_static_tls): Compute freebytes in
two steps to catch bugs.

2009-07-27 Ulrich Drepper <drepper@redhat.com>

* sysdeps/x86_64/tst-xmmymm.sh: Refine testing. The script now
Expand Down
9 changes: 5 additions & 4 deletions csu/libc-tls.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Initialization code for TLS in statically linked application.
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
Copyright (C) 2002-2006, 2009 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
Expand Down Expand Up @@ -99,6 +99,9 @@ init_static_tls (size_t memsz, size_t align)
surplus that permits dynamic loading of modules with IE-model TLS. */
GL(dl_tls_static_size) = roundup (memsz + GL(dl_tls_static_size),
TLS_TCB_ALIGN);
#if TLS_TCB_AT_TP
GL(dl_tls_static_size) += TLS_TCB_SIZE;
#endif
GL(dl_tls_static_used) = memsz;
/* The alignment requirement for the static TLS block. */
GL(dl_tls_static_align) = align;
Expand Down Expand Up @@ -211,9 +214,7 @@ __libc_setup_tls (size_t tcbsize, size_t tcbalign)

memsz = roundup (memsz, align ?: 1);

#if TLS_TCB_AT_TP
memsz += tcbsize;
#elif TLS_DTV_AT_TP
#if TLS_DTV_AT_TP
memsz += tcb_offset;
#endif

Expand Down
5 changes: 4 additions & 1 deletion elf/dl-reloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ _dl_try_allocate_static_tls (struct link_map *map)
size_t n;
size_t blsize;

freebytes = GL(dl_tls_static_size) - GL(dl_tls_static_used) - TLS_TCB_SIZE;
freebytes = GL(dl_tls_static_size) - GL(dl_tls_static_used);
if (freebytes < TLS_TCB_SIZE)
goto fail;
freebytes -= TLS_TCB_SIZE;

blsize = map->l_tls_blocksize + map->l_tls_firstbyte_offset;
if (freebytes < blsize)
Expand Down

0 comments on commit 9655389

Please sign in to comment.