2005-12-13 Ulrich Drepper <drepper@redhat.com>
[platform/upstream/linaro-glibc.git] / sysdeps / generic / dl-tls.c
1 /* Thread-local storage handling in the ELF dynamic linker.  Generic version.
2    Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <assert.h>
21 #include <errno.h>
22 #include <libintl.h>
23 #include <signal.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <sys/param.h>
27
28 #include <tls.h>
29
30 /* We don't need any of this if TLS is not supported.  */
31 #ifdef USE_TLS
32
33 # include <dl-tls.h>
34 # include <ldsodefs.h>
35
36 /* Amount of excess space to allocate in the static TLS area
37    to allow dynamic loading of modules defining IE-model TLS data.  */
38 # define TLS_STATIC_SURPLUS     64 + DL_NNS * 100
39
40 /* Value used for dtv entries for which the allocation is delayed.  */
41 # define TLS_DTV_UNALLOCATED    ((void *) -1l)
42
43
44 /* Out-of-memory handler.  */
45 # ifdef SHARED
46 static void
47 __attribute__ ((__noreturn__))
48 oom (void)
49 {
50   _dl_fatal_printf ("cannot allocate memory for thread-local data: ABORT\n");
51 }
52 # endif
53
54
55 size_t
56 internal_function
57 _dl_next_tls_modid (void)
58 {
59   size_t result;
60
61   if (__builtin_expect (GL(dl_tls_dtv_gaps), false))
62     {
63       size_t disp = 0;
64       struct dtv_slotinfo_list *runp = GL(dl_tls_dtv_slotinfo_list);
65
66       /* Note that this branch will never be executed during program
67          start since there are no gaps at that time.  Therefore it
68          does not matter that the dl_tls_dtv_slotinfo is not allocated
69          yet when the function is called for the first times.
70
71          NB: the offset +1 is due to the fact that DTV[0] is used
72          for something else.  */
73       result = GL(dl_tls_static_nelem) + 1;
74       if (result <= GL(dl_tls_max_dtv_idx))
75         do
76           {
77             while (result - disp < runp->len)
78               {
79                 if (runp->slotinfo[result - disp].map == NULL)
80                   break;
81
82                 ++result;
83                 assert (result <= GL(dl_tls_max_dtv_idx) + 1);
84               }
85
86             if (result - disp < runp->len)
87               break;
88
89             disp += runp->len;
90           }
91         while ((runp = runp->next) != NULL);
92
93       if (result > GL(dl_tls_max_dtv_idx))
94         {
95           /* The new index must indeed be exactly one higher than the
96              previous high.  */
97           assert (result == GL(dl_tls_max_dtv_idx) + 1);
98           /* There is no gap anymore.  */
99           GL(dl_tls_dtv_gaps) = false;
100
101           goto nogaps;
102         }
103     }
104   else
105     {
106       /* No gaps, allocate a new entry.  */
107     nogaps:
108
109       result = ++GL(dl_tls_max_dtv_idx);
110     }
111
112   return result;
113 }
114
115
116 # ifdef SHARED
117 void
118 internal_function
119 _dl_determine_tlsoffset (void)
120 {
121   size_t max_align = TLS_TCB_ALIGN;
122   size_t freetop = 0;
123   size_t freebottom = 0;
124
125   /* The first element of the dtv slot info list is allocated.  */
126   assert (GL(dl_tls_dtv_slotinfo_list) != NULL);
127   /* There is at this point only one element in the
128      dl_tls_dtv_slotinfo_list list.  */
129   assert (GL(dl_tls_dtv_slotinfo_list)->next == NULL);
130
131   struct dtv_slotinfo *slotinfo = GL(dl_tls_dtv_slotinfo_list)->slotinfo;
132
133   /* Determining the offset of the various parts of the static TLS
134      block has several dependencies.  In addition we have to work
135      around bugs in some toolchains.
136
137      Each TLS block from the objects available at link time has a size
138      and an alignment requirement.  The GNU ld computes the alignment
139      requirements for the data at the positions *in the file*, though.
140      I.e, it is not simply possible to allocate a block with the size
141      of the TLS program header entry.  The data is layed out assuming
142      that the first byte of the TLS block fulfills
143
144        p_vaddr mod p_align == &TLS_BLOCK mod p_align
145
146      This means we have to add artificial padding at the beginning of
147      the TLS block.  These bytes are never used for the TLS data in
148      this module but the first byte allocated must be aligned
149      according to mod p_align == 0 so that the first byte of the TLS
150      block is aligned according to p_vaddr mod p_align.  This is ugly
151      and the linker can help by computing the offsets in the TLS block
152      assuming the first byte of the TLS block is aligned according to
153      p_align.
154
155      The extra space which might be allocated before the first byte of
156      the TLS block need not go unused.  The code below tries to use
157      that memory for the next TLS block.  This can work if the total
158      memory requirement for the next TLS block is smaller than the
159      gap.  */
160
161 # if TLS_TCB_AT_TP
162   /* We simply start with zero.  */
163   size_t offset = 0;
164
165   for (size_t cnt = 0; slotinfo[cnt].map != NULL; ++cnt)
166     {
167       assert (cnt < GL(dl_tls_dtv_slotinfo_list)->len);
168
169       size_t firstbyte = (-slotinfo[cnt].map->l_tls_firstbyte_offset
170                           & (slotinfo[cnt].map->l_tls_align - 1));
171       size_t off;
172       max_align = MAX (max_align, slotinfo[cnt].map->l_tls_align);
173
174       if (freebottom - freetop >= slotinfo[cnt].map->l_tls_blocksize)
175         {
176           off = roundup (freetop + slotinfo[cnt].map->l_tls_blocksize
177                          - firstbyte, slotinfo[cnt].map->l_tls_align)
178                 + firstbyte;
179           if (off <= freebottom)
180             {
181               freetop = off;
182
183               /* XXX For some architectures we perhaps should store the
184                  negative offset.  */
185               slotinfo[cnt].map->l_tls_offset = off;
186               continue;
187             }
188         }
189
190       off = roundup (offset + slotinfo[cnt].map->l_tls_blocksize - firstbyte,
191                      slotinfo[cnt].map->l_tls_align) + firstbyte;
192       if (off > offset + slotinfo[cnt].map->l_tls_blocksize
193                 + (freebottom - freetop))
194         {
195           freetop = offset;
196           freebottom = off - slotinfo[cnt].map->l_tls_blocksize;
197         }
198       offset = off;
199
200       /* XXX For some architectures we perhaps should store the
201          negative offset.  */
202       slotinfo[cnt].map->l_tls_offset = off;
203     }
204
205   GL(dl_tls_static_used) = offset;
206   GL(dl_tls_static_size) = (roundup (offset + TLS_STATIC_SURPLUS, max_align)
207                             + TLS_TCB_SIZE);
208 # elif TLS_DTV_AT_TP
209   /* The TLS blocks start right after the TCB.  */
210   size_t offset = TLS_TCB_SIZE;
211
212   for (size_t cnt = 0; slotinfo[cnt].map != NULL; ++cnt)
213     {
214       assert (cnt < GL(dl_tls_dtv_slotinfo_list)->len);
215
216       size_t firstbyte = (-slotinfo[cnt].map->l_tls_firstbyte_offset
217                           & (slotinfo[cnt].map->l_tls_align - 1));
218       size_t off;
219       max_align = MAX (max_align, slotinfo[cnt].map->l_tls_align);
220
221       if (slotinfo[cnt].map->l_tls_blocksize <= freetop - freebottom)
222         {
223           off = roundup (freebottom, slotinfo[cnt].map->l_tls_align);
224           if (off - freebottom < firstbyte)
225             off += slotinfo[cnt].map->l_tls_align;
226           if (off + slotinfo[cnt].map->l_tls_blocksize - firstbyte <= freetop)
227             {
228               slotinfo[cnt].map->l_tls_offset = off - firstbyte;
229               freebottom = (off + slotinfo[cnt].map->l_tls_blocksize
230                             - firstbyte);
231               continue;
232             }
233         }
234
235       off = roundup (offset, slotinfo[cnt].map->l_tls_align);
236       if (off - offset < firstbyte)
237         off += slotinfo[cnt].map->l_tls_align;
238
239       slotinfo[cnt].map->l_tls_offset = off - firstbyte;
240       if (off - firstbyte - offset > freetop - freebottom)
241         {
242           freebottom = offset;
243           freetop = off - firstbyte;
244         }
245
246       offset = off + slotinfo[cnt].map->l_tls_blocksize - firstbyte;
247     }
248
249   GL(dl_tls_static_used) = offset;
250   GL(dl_tls_static_size) = roundup (offset + TLS_STATIC_SURPLUS,
251                                     TLS_TCB_ALIGN);
252 # else
253 #  error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
254 # endif
255
256   /* The alignment requirement for the static TLS block.  */
257   GL(dl_tls_static_align) = max_align;
258 }
259
260
261 /* This is called only when the data structure setup was skipped at startup,
262    when there was no need for it then.  Now we have dynamically loaded
263    something needing TLS, or libpthread needs it.  */
264 int
265 internal_function
266 _dl_tls_setup (void)
267 {
268   assert (GL(dl_tls_dtv_slotinfo_list) == NULL);
269   assert (GL(dl_tls_max_dtv_idx) == 0);
270
271   const size_t nelem = 2 + TLS_SLOTINFO_SURPLUS;
272
273   GL(dl_tls_dtv_slotinfo_list)
274     = calloc (1, (sizeof (struct dtv_slotinfo_list)
275                   + nelem * sizeof (struct dtv_slotinfo)));
276   if (GL(dl_tls_dtv_slotinfo_list) == NULL)
277     return -1;
278
279   GL(dl_tls_dtv_slotinfo_list)->len = nelem;
280
281   /* Number of elements in the static TLS block.  It can't be zero
282      because of various assumptions.  The one element is null.  */
283   GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx) = 1;
284
285   /* This initializes more variables for us.  */
286   _dl_determine_tlsoffset ();
287
288   return 0;
289 }
290 rtld_hidden_def (_dl_tls_setup)
291 # endif
292
293 static void *
294 internal_function
295 allocate_dtv (void *result)
296 {
297   dtv_t *dtv;
298   size_t dtv_length;
299
300   /* We allocate a few more elements in the dtv than are needed for the
301      initial set of modules.  This should avoid in most cases expansions
302      of the dtv.  */
303   dtv_length = GL(dl_tls_max_dtv_idx) + DTV_SURPLUS;
304   dtv = calloc (dtv_length + 2, sizeof (dtv_t));
305   if (dtv != NULL)
306     {
307       /* This is the initial length of the dtv.  */
308       dtv[0].counter = dtv_length;
309
310       /* The rest of the dtv (including the generation counter) is
311          Initialize with zero to indicate nothing there.  */
312
313       /* Add the dtv to the thread data structures.  */
314       INSTALL_DTV (result, dtv);
315     }
316   else
317     result = NULL;
318
319   return result;
320 }
321
322
323 /* Get size and alignment requirements of the static TLS block.  */
324 void
325 internal_function
326 _dl_get_tls_static_info (size_t *sizep, size_t *alignp)
327 {
328   *sizep = GL(dl_tls_static_size);
329   *alignp = GL(dl_tls_static_align);
330 }
331
332
333 void *
334 internal_function
335 _dl_allocate_tls_storage (void)
336 {
337   void *result;
338   size_t size = GL(dl_tls_static_size);
339
340 # if TLS_DTV_AT_TP
341   /* Memory layout is:
342      [ TLS_PRE_TCB_SIZE ] [ TLS_TCB_SIZE ] [ TLS blocks ]
343                           ^ This should be returned.  */
344   size += (TLS_PRE_TCB_SIZE + GL(dl_tls_static_align) - 1)
345           & ~(GL(dl_tls_static_align) - 1);
346 # endif
347
348   /* Allocate a correctly aligned chunk of memory.  */
349   result = __libc_memalign (GL(dl_tls_static_align), size);
350   if (__builtin_expect (result != NULL, 1))
351     {
352       /* Allocate the DTV.  */
353       void *allocated = result;
354
355 # if TLS_TCB_AT_TP
356       /* The TCB follows the TLS blocks.  */
357       result = (char *) result + size - TLS_TCB_SIZE;
358
359       /* Clear the TCB data structure.  We can't ask the caller (i.e.
360          libpthread) to do it, because we will initialize the DTV et al.  */
361       memset (result, '\0', TLS_TCB_SIZE);
362 # elif TLS_DTV_AT_TP
363       result = (char *) result + size - GL(dl_tls_static_size);
364
365       /* Clear the TCB data structure and TLS_PRE_TCB_SIZE bytes before it.
366          We can't ask the caller (i.e. libpthread) to do it, because we will
367          initialize the DTV et al.  */
368       memset ((char *) result - TLS_PRE_TCB_SIZE, '\0',
369               TLS_PRE_TCB_SIZE + TLS_TCB_SIZE);
370 # endif
371
372       result = allocate_dtv (result);
373       if (result == NULL)
374         free (allocated);
375     }
376
377   return result;
378 }
379
380
381 void *
382 internal_function
383 _dl_allocate_tls_init (void *result)
384 {
385   if (result == NULL)
386     /* The memory allocation failed.  */
387     return NULL;
388
389   dtv_t *dtv = GET_DTV (result);
390   struct dtv_slotinfo_list *listp;
391   size_t total = 0;
392   size_t maxgen = 0;
393
394   /* We have to prepare the dtv for all currently loaded modules using
395      TLS.  For those which are dynamically loaded we add the values
396      indicating deferred allocation.  */
397   listp = GL(dl_tls_dtv_slotinfo_list);
398   while (1)
399     {
400       size_t cnt;
401
402       for (cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt)
403         {
404           struct link_map *map;
405           void *dest;
406
407           /* Check for the total number of used slots.  */
408           if (total + cnt > GL(dl_tls_max_dtv_idx))
409             break;
410
411           map = listp->slotinfo[cnt].map;
412           if (map == NULL)
413             /* Unused entry.  */
414             continue;
415
416           /* Keep track of the maximum generation number.  This might
417              not be the generation counter.  */
418           maxgen = MAX (maxgen, listp->slotinfo[cnt].gen);
419
420           if (map->l_tls_offset == NO_TLS_OFFSET)
421             {
422               /* For dynamically loaded modules we simply store
423                  the value indicating deferred allocation.  */
424               dtv[map->l_tls_modid].pointer.val = TLS_DTV_UNALLOCATED;
425               dtv[map->l_tls_modid].pointer.is_static = false;
426               continue;
427             }
428
429           assert (map->l_tls_modid == cnt);
430           assert (map->l_tls_blocksize >= map->l_tls_initimage_size);
431 # if TLS_TCB_AT_TP
432           assert ((size_t) map->l_tls_offset >= map->l_tls_blocksize);
433           dest = (char *) result - map->l_tls_offset;
434 # elif TLS_DTV_AT_TP
435           dest = (char *) result + map->l_tls_offset;
436 # else
437 #  error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
438 # endif
439
440           /* Copy the initialization image and clear the BSS part.  */
441           dtv[map->l_tls_modid].pointer.val = dest;
442           dtv[map->l_tls_modid].pointer.is_static = true;
443           memset (__mempcpy (dest, map->l_tls_initimage,
444                              map->l_tls_initimage_size), '\0',
445                   map->l_tls_blocksize - map->l_tls_initimage_size);
446         }
447
448       total += cnt;
449       if (total >= GL(dl_tls_max_dtv_idx))
450         break;
451
452       listp = listp->next;
453       assert (listp != NULL);
454     }
455
456   /* The DTV version is up-to-date now.  */
457   dtv[0].counter = maxgen;
458
459   return result;
460 }
461 rtld_hidden_def (_dl_allocate_tls_init)
462
463 void *
464 internal_function
465 _dl_allocate_tls (void *mem)
466 {
467   return _dl_allocate_tls_init (mem == NULL
468                                 ? _dl_allocate_tls_storage ()
469                                 : allocate_dtv (mem));
470 }
471 rtld_hidden_def (_dl_allocate_tls)
472
473
474 void
475 internal_function
476 _dl_deallocate_tls (void *tcb, bool dealloc_tcb)
477 {
478   dtv_t *dtv = GET_DTV (tcb);
479
480   /* We need to free the memory allocated for non-static TLS.  */
481   for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt)
482     if (! dtv[1 + cnt].pointer.is_static
483         && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED)
484       free (dtv[1 + cnt].pointer.val);
485
486   /* The array starts with dtv[-1].  */
487 #ifdef SHARED
488   if (dtv != GL(dl_initial_dtv))
489 #endif
490     free (dtv - 1);
491
492   if (dealloc_tcb)
493     {
494 # if TLS_TCB_AT_TP
495       /* The TCB follows the TLS blocks.  Back up to free the whole block.  */
496       tcb -= GL(dl_tls_static_size) - TLS_TCB_SIZE;
497 # elif TLS_DTV_AT_TP
498       /* Back up the TLS_PRE_TCB_SIZE bytes.  */
499       tcb -= (TLS_PRE_TCB_SIZE + GL(dl_tls_static_align) - 1)
500              & ~(GL(dl_tls_static_align) - 1);
501 # endif
502       free (tcb);
503     }
504 }
505 rtld_hidden_def (_dl_deallocate_tls)
506
507
508 # ifdef SHARED
509 /* The __tls_get_addr function has two basic forms which differ in the
510    arguments.  The IA-64 form takes two parameters, the module ID and
511    offset.  The form used, among others, on IA-32 takes a reference to
512    a special structure which contain the same information.  The second
513    form seems to be more often used (in the moment) so we default to
514    it.  Users of the IA-64 form have to provide adequate definitions
515    of the following macros.  */
516 #  ifndef GET_ADDR_ARGS
517 #   define GET_ADDR_ARGS tls_index *ti
518 #  endif
519 #  ifndef GET_ADDR_MODULE
520 #   define GET_ADDR_MODULE ti->ti_module
521 #  endif
522 #  ifndef GET_ADDR_OFFSET
523 #   define GET_ADDR_OFFSET ti->ti_offset
524 #  endif
525
526
527 static void *
528 allocate_and_init (struct link_map *map)
529 {
530   void *newp;
531
532   newp = __libc_memalign (map->l_tls_align, map->l_tls_blocksize);
533   if (newp == NULL)
534     oom ();
535
536   /* Initialize the memory.  */
537   memset (__mempcpy (newp, map->l_tls_initimage, map->l_tls_initimage_size),
538           '\0', map->l_tls_blocksize - map->l_tls_initimage_size);
539
540   return newp;
541 }
542
543
544 struct link_map *
545 _dl_update_slotinfo (unsigned long int req_modid)
546 {
547   struct link_map *the_map = NULL;
548   dtv_t *dtv = THREAD_DTV ();
549
550   /* The global dl_tls_dtv_slotinfo array contains for each module
551      index the generation counter current when the entry was created.
552      This array never shrinks so that all module indices which were
553      valid at some time can be used to access it.  Before the first
554      use of a new module index in this function the array was extended
555      appropriately.  Access also does not have to be guarded against
556      modifications of the array.  It is assumed that pointer-size
557      values can be read atomically even in SMP environments.  It is
558      possible that other threads at the same time dynamically load
559      code and therefore add to the slotinfo list.  This is a problem
560      since we must not pick up any information about incomplete work.
561      The solution to this is to ignore all dtv slots which were
562      created after the one we are currently interested.  We know that
563      dynamic loading for this module is completed and this is the last
564      load operation we know finished.  */
565   unsigned long int idx = req_modid;
566   struct dtv_slotinfo_list *listp = GL(dl_tls_dtv_slotinfo_list);
567
568   while (idx >= listp->len)
569     {
570       idx -= listp->len;
571       listp = listp->next;
572     }
573
574   if (dtv[0].counter < listp->slotinfo[idx].gen)
575     {
576       /* The generation counter for the slot is higher than what the
577          current dtv implements.  We have to update the whole dtv but
578          only those entries with a generation counter <= the one for
579          the entry we need.  */
580       size_t new_gen = listp->slotinfo[idx].gen;
581       size_t total = 0;
582
583       /* We have to look through the entire dtv slotinfo list.  */
584       listp =  GL(dl_tls_dtv_slotinfo_list);
585       do
586         {
587           for (size_t cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt)
588             {
589               size_t gen = listp->slotinfo[cnt].gen;
590
591               if (gen > new_gen)
592                 /* This is a slot for a generation younger than the
593                    one we are handling now.  It might be incompletely
594                    set up so ignore it.  */
595                 continue;
596
597               /* If the entry is older than the current dtv layout we
598                  know we don't have to handle it.  */
599               if (gen <= dtv[0].counter)
600                 continue;
601
602               /* If there is no map this means the entry is empty.  */
603               struct link_map *map = listp->slotinfo[cnt].map;
604               if (map == NULL)
605                 {
606                   /* If this modid was used at some point the memory
607                      might still be allocated.  */
608                   if (! dtv[total + cnt].pointer.is_static
609                       && dtv[total + cnt].pointer.val != TLS_DTV_UNALLOCATED)
610                     {
611                       free (dtv[total + cnt].pointer.val);
612                       dtv[total + cnt].pointer.val = TLS_DTV_UNALLOCATED;
613                     }
614
615                   continue;
616                 }
617
618               /* Check whether the current dtv array is large enough.  */
619               size_t modid = map->l_tls_modid;
620               assert (total + cnt == modid);
621               if (dtv[-1].counter < modid)
622                 {
623                   /* Reallocate the dtv.  */
624                   dtv_t *newp;
625                   size_t newsize = GL(dl_tls_max_dtv_idx) + DTV_SURPLUS;
626                   size_t oldsize = dtv[-1].counter;
627
628                   assert (map->l_tls_modid <= newsize);
629
630                   if (dtv == GL(dl_initial_dtv))
631                     {
632                       /* This is the initial dtv that was allocated
633                          during rtld startup using the dl-minimal.c
634                          malloc instead of the real malloc.  We can't
635                          free it, we have to abandon the old storage.  */
636
637                       newp = malloc ((2 + newsize) * sizeof (dtv_t));
638                       if (newp == NULL)
639                         oom ();
640                       memcpy (newp, &dtv[-1], oldsize * sizeof (dtv_t));
641                     }
642                   else
643                     {
644                       newp = realloc (&dtv[-1],
645                                       (2 + newsize) * sizeof (dtv_t));
646                       if (newp == NULL)
647                         oom ();
648                     }
649
650                   newp[0].counter = newsize;
651
652                   /* Clear the newly allocated part.  */
653                   memset (newp + 2 + oldsize, '\0',
654                           (newsize - oldsize) * sizeof (dtv_t));
655
656                   /* Point dtv to the generation counter.  */
657                   dtv = &newp[1];
658
659                   /* Install this new dtv in the thread data
660                      structures.  */
661                   INSTALL_NEW_DTV (dtv);
662                 }
663
664               /* If there is currently memory allocate for this
665                  dtv entry free it.  */
666               /* XXX Ideally we will at some point create a memory
667                  pool.  */
668               if (! dtv[modid].pointer.is_static
669                   && dtv[modid].pointer.val != TLS_DTV_UNALLOCATED)
670                 /* Note that free is called for NULL is well.  We
671                    deallocate even if it is this dtv entry we are
672                    supposed to load.  The reason is that we call
673                    memalign and not malloc.  */
674                 free (dtv[modid].pointer.val);
675
676               /* This module is loaded dynamically- We defer memory
677                  allocation.  */
678               dtv[modid].pointer.is_static = false;
679               dtv[modid].pointer.val = TLS_DTV_UNALLOCATED;
680
681               if (modid == req_modid)
682                 the_map = map;
683             }
684
685           total += listp->len;
686         }
687       while ((listp = listp->next) != NULL);
688
689       /* This will be the new maximum generation counter.  */
690       dtv[0].counter = new_gen;
691     }
692
693   return the_map;
694 }
695
696
697 /* The generic dynamic and local dynamic model cannot be used in
698    statically linked applications.  */
699 void *
700 __tls_get_addr (GET_ADDR_ARGS)
701 {
702   dtv_t *dtv = THREAD_DTV ();
703   struct link_map *the_map = NULL;
704   void *p;
705
706   if (__builtin_expect (dtv[0].counter != GL(dl_tls_generation), 0))
707     the_map = _dl_update_slotinfo (GET_ADDR_MODULE);
708
709   p = dtv[GET_ADDR_MODULE].pointer.val;
710
711   if (__builtin_expect (p == TLS_DTV_UNALLOCATED, 0))
712     {
713       /* The allocation was deferred.  Do it now.  */
714       if (the_map == NULL)
715         {
716           /* Find the link map for this module.  */
717           size_t idx = GET_ADDR_MODULE;
718           struct dtv_slotinfo_list *listp = GL(dl_tls_dtv_slotinfo_list);
719
720           while (idx >= listp->len)
721             {
722               idx -= listp->len;
723               listp = listp->next;
724             }
725
726           the_map = listp->slotinfo[idx].map;
727         }
728
729       p = dtv[GET_ADDR_MODULE].pointer.val = allocate_and_init (the_map);
730       dtv[GET_ADDR_MODULE].pointer.is_static = false;
731     }
732
733   return (char *) p + GET_ADDR_OFFSET;
734 }
735 # endif
736
737
738
739 void
740 _dl_add_to_slotinfo (struct link_map  *l)
741 {
742   /* Now that we know the object is loaded successfully add
743      modules containing TLS data to the dtv info table.  We
744      might have to increase its size.  */
745   struct dtv_slotinfo_list *listp;
746   struct dtv_slotinfo_list *prevp;
747   size_t idx = l->l_tls_modid;
748
749   /* Find the place in the dtv slotinfo list.  */
750   listp = GL(dl_tls_dtv_slotinfo_list);
751   prevp = NULL;         /* Needed to shut up gcc.  */
752   do
753     {
754       /* Does it fit in the array of this list element?  */
755       if (idx < listp->len)
756         break;
757       idx -= listp->len;
758       prevp = listp;
759       listp = listp->next;
760     }
761   while (listp != NULL);
762
763   if (listp == NULL)
764     {
765       /* When we come here it means we have to add a new element
766          to the slotinfo list.  And the new module must be in
767          the first slot.  */
768       assert (idx == 0);
769
770       listp = prevp->next = (struct dtv_slotinfo_list *)
771         malloc (sizeof (struct dtv_slotinfo_list)
772                 + TLS_SLOTINFO_SURPLUS * sizeof (struct dtv_slotinfo));
773       if (listp == NULL)
774         {
775           /* We ran out of memory.  We will simply fail this
776              call but don't undo anything we did so far.  The
777              application will crash or be terminated anyway very
778              soon.  */
779
780           /* We have to do this since some entries in the dtv
781              slotinfo array might already point to this
782              generation.  */
783           ++GL(dl_tls_generation);
784
785           _dl_signal_error (ENOMEM, "dlopen", NULL, N_("\
786 cannot create TLS data structures"));
787         }
788
789       listp->len = TLS_SLOTINFO_SURPLUS;
790       listp->next = NULL;
791       memset (listp->slotinfo, '\0',
792               TLS_SLOTINFO_SURPLUS * sizeof (struct dtv_slotinfo));
793     }
794
795   /* Add the information into the slotinfo data structure.  */
796   listp->slotinfo[idx].map = l;
797   listp->slotinfo[idx].gen = GL(dl_tls_generation) + 1;
798 }
799 #endif  /* use TLS */