Update.
[platform/upstream/glibc.git] / elf / dl-deps.c
1 /* Load the dependencies of a mapped object.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000 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 Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    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    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #include <assert.h>
21 #include <dlfcn.h>
22 #include <errno.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/param.h>
27 #include <elf/ldsodefs.h>
28
29 #include <dl-dst.h>
30
31 /* Whether an shared object references one or more auxiliary objects
32    is signaled by the AUXTAG entry in l_info.  */
33 #define AUXTAG  (DT_NUM + DT_PROCNUM + DT_VERSIONTAGNUM \
34                  + DT_EXTRATAGIDX (DT_AUXILIARY))
35 /* Whether an shared object references one or more auxiliary objects
36    is signaled by the AUXTAG entry in l_info.  */
37 #define FILTERTAG (DT_NUM + DT_PROCNUM + DT_VERSIONTAGNUM \
38                    + DT_EXTRATAGIDX (DT_FILTER))
39
40 /* This is zero at program start to signal that the global scope map is
41    allocated by rtld.  Later it keeps the size of the map.  It might be
42    reset if in _dl_close if the last global object is removed.  */
43 size_t _dl_global_scope_alloc;
44
45 extern size_t _dl_platformlen;
46
47 /* When loading auxiliary objects we must ignore errors.  It's ok if
48    an object is missing.  */
49 struct openaux_args
50   {
51     /* The arguments to openaux.  */
52     struct link_map *map;
53     int trace_mode;
54     const char *strtab;
55     const char *name;
56
57     /* The return value of openaux.  */
58     struct link_map *aux;
59   };
60
61 static void
62 openaux (void *a)
63 {
64   struct openaux_args *args = (struct openaux_args *) a;
65
66   args->aux = _dl_map_object (args->map, args->name, 0,
67                               (args->map->l_type == lt_executable
68                                ? lt_library : args->map->l_type),
69                               args->trace_mode);
70 }
71
72
73
74 /* We use a very special kind of list to track the two kinds paths
75    through the list of loaded shared objects.  We have to
76
77    - produce a flat list with unique members of all involved objects
78
79    - produce a flat list of all shared objects.
80 */
81 struct list
82   {
83     int done;                   /* Nonzero if this map was processed.  */
84     struct link_map *map;       /* The data.  */
85
86     struct list *unique;        /* Elements for normal list.  */
87     struct list *dup;           /* Elements in complete list.  */
88   };
89
90
91 /* Macro to expand DST.  It is an macro since we use `alloca'.  */
92 #define expand_dst(l, str, fatal) \
93   ({                                                                          \
94     const char *__str = (str);                                                \
95     const char *__result = __str;                                             \
96     size_t __cnt = DL_DST_COUNT(__str, 0);                                    \
97                                                                               \
98     if (__cnt != 0)                                                           \
99       {                                                                       \
100         char *__newp;                                                         \
101                                                                               \
102         /* DST must not appear in SUID/SGID programs.  */                     \
103         if (__libc_enable_secure)                                             \
104           _dl_signal_error (0, __str,                                         \
105                             "DST not allowed in SUID/SGID programs");         \
106                                                                               \
107         __newp = (char *) alloca (DL_DST_REQUIRED (l, __str, strlen (__str),  \
108                                                    __cnt));                   \
109                                                                               \
110         __result = DL_DST_SUBSTITUTE (l, __str, __newp, 0);                   \
111                                                                               \
112         if (*__result == '\0')                                                \
113           {                                                                   \
114             /* The replacement for the DST is not known.  We can't            \
115                processed.  */                                                 \
116             if (fatal)                                                        \
117               _dl_signal_error (0, __str,                                     \
118                                 "empty dynamics string token substitution");  \
119             else                                                              \
120               {                                                               \
121                 /* This is for DT_AUXILIARY.  */                              \
122                 if (_dl_debug_libs)                                           \
123                   _dl_debug_message (1, "cannot load auxiliary `", __str,     \
124                                      "' because of empty dynamic string"      \
125                                      " token substitution\n", NULL);          \
126                 continue;                                                     \
127               }                                                               \
128           }                                                                   \
129       }                                                                       \
130                                                                               \
131     __result; })
132
133
134 void
135 internal_function
136 _dl_map_object_deps (struct link_map *map,
137                      struct link_map **preloads, unsigned int npreloads,
138                      int trace_mode)
139 {
140   struct list known[1 + npreloads + 1];
141   struct list *runp, *utail, *dtail;
142   unsigned int nlist, nduplist, i;
143
144   inline void preload (struct link_map *map)
145     {
146       known[nlist].done = 0;
147       known[nlist].map = map;
148
149       known[nlist].unique = &known[nlist + 1];
150       known[nlist].dup = &known[nlist + 1];
151
152       ++nlist;
153       /* We use `l_reserved' as a mark bit to detect objects we have
154          already put in the search list and avoid adding duplicate
155          elements later in the list.  */
156       map->l_reserved = 1;
157     }
158
159   /* No loaded object so far.  */
160   nlist = 0;
161
162   /* First load MAP itself.  */
163   preload (map);
164
165   /* Add the preloaded items after MAP but before any of its dependencies.  */
166   for (i = 0; i < npreloads; ++i)
167     preload (preloads[i]);
168
169   /* Terminate the lists.  */
170   known[nlist - 1].unique = NULL;
171   known[nlist - 1].dup = NULL;
172
173   /* Pointer to last unique object.  */
174   utail = &known[nlist - 1];
175   /* Pointer to last loaded object.  */
176   dtail = &known[nlist - 1];
177
178   /* Until now we have the same number of libraries in the normal and
179      the list with duplicates.  */
180   nduplist = nlist;
181
182   /* Process each element of the search list, loading each of its
183      auxiliary objects and immediate dependencies.  Auxiliary objects
184      will be added in the list before the object itself and
185      dependencies will be appended to the list as we step through it.
186      This produces a flat, ordered list that represents a
187      breadth-first search of the dependency tree.
188
189      The whole process is complicated by the fact that we better
190      should use alloca for the temporary list elements.  But using
191      alloca means we cannot use recursive function calls.  */
192   for (runp = known; runp; )
193     {
194       struct link_map *l = runp->map;
195
196       if (l->l_info[DT_NEEDED] || l->l_info[AUXTAG] || l->l_info[FILTERTAG])
197         {
198           const char *strtab = (const void *) l->l_info[DT_STRTAB]->d_un.d_ptr;
199           struct openaux_args args;
200           struct list *orig;
201           const ElfW(Dyn) *d;
202
203           /* Mark map as processed.  */
204           runp->done = 1;
205
206           args.strtab = strtab;
207           args.map = l;
208           args.trace_mode = trace_mode;
209           orig = runp;
210
211           for (d = l->l_ld; d->d_tag != DT_NULL; ++d)
212             if (__builtin_expect (d->d_tag, DT_NEEDED) == DT_NEEDED)
213               {
214                 /* Map in the needed object.  */
215                 struct link_map *dep;
216                 /* Allocate new entry.  */
217                 struct list *newp;
218                 /* Object name.  */
219                 const char *name;
220
221                 /* Recognize DSTs.  */
222                 name = expand_dst (l, strtab + d->d_un.d_val, 0);
223
224                 dep = _dl_map_object (l, name, 0,
225                                       l->l_type == lt_executable ? lt_library :
226                                       l->l_type, trace_mode);
227
228                 /* Add it in any case to the duplicate list.  */
229                 newp = alloca (sizeof (struct list));
230                 newp->map = dep;
231                 newp->dup = NULL;
232                 dtail->dup = newp;
233                 dtail = newp;
234                 ++nduplist;
235
236                 if (dep->l_reserved)
237                   /* This object is already in the search list we are
238                      building.  Don't add a duplicate pointer.
239                      Release the reference just added by
240                      _dl_map_object.  */
241                   --dep->l_opencount;
242                 else
243                   {
244                     /* Append DEP to the unique list.  */
245                     newp->done = 0;
246                     newp->unique = NULL;
247                     utail->unique = newp;
248                     utail = newp;
249                     ++nlist;
250                     /* Set the mark bit that says it's already in the list.  */
251                     dep->l_reserved = 1;
252                   }
253               }
254             else if (d->d_tag == DT_AUXILIARY || d->d_tag == DT_FILTER)
255               {
256                 char *errstring;
257                 struct list *newp;
258                 /* Object name.  */
259                 const char *name;
260
261                 /* Recognize DSTs.  */
262                 name = expand_dst (l, strtab + d->d_un.d_val,
263                                    d->d_tag == DT_AUXILIARY);
264
265                 if (d->d_tag == DT_AUXILIARY)
266                   {
267                     /* Store the tag in the argument structure.  */
268                     args.name = name;
269
270                     /* Say that we are about to load an auxiliary library.  */
271                     if (_dl_debug_libs)
272                       _dl_debug_message (1, "load auxiliary object=",
273                                          name, " requested by file=",
274                                          l->l_name[0]
275                                          ? l->l_name : _dl_argv[0],
276                                          "\n", NULL);
277
278                     /* We must be prepared that the addressed shared
279                        object is not available.  */
280                     if (_dl_catch_error (&errstring, openaux, &args))
281                       {
282                         /* We are not interested in the error message.  */
283                         assert (errstring != NULL);
284                         free (errstring);
285
286                         /* Simply ignore this error and continue the work.  */
287                         continue;
288                       }
289                   }
290                 else
291                   {
292                     /* Say that we are about to load an auxiliary library.  */
293                     if (_dl_debug_libs)
294                       _dl_debug_message (1, "load filtered object=", name,
295                                          " requested by file=",
296                                          l->l_name[0]
297                                          ? l->l_name : _dl_argv[0],
298                                          "\n", NULL);
299
300                     /* For filter objects the dependency must be available.  */
301                     args.aux = _dl_map_object (l, name, 0,
302                                                (l->l_type == lt_executable
303                                                 ? lt_library : l->l_type),
304                                                trace_mode);
305                   }
306
307                 /* The auxiliary object is actually available.
308                    Incorporate the map in all the lists.  */
309
310                 /* Allocate new entry.  This always has to be done.  */
311                 newp = alloca (sizeof (struct list));
312
313                 /* We want to insert the new map before the current one,
314                    but we have no back links.  So we copy the contents of
315                    the current entry over.  Note that ORIG and NEWP now
316                    have switched their meanings.  */
317                 orig->dup = memcpy (newp, orig, sizeof (*newp));
318
319                 /* Initialize new entry.  */
320                 orig->done = 0;
321                 orig->map = args.aux;
322
323                 /* We must handle two situations here: the map is new,
324                    so we must add it in all three lists.  If the map
325                    is already known, we have two further possibilities:
326                    - if the object is before the current map in the
327                    search list, we do nothing.  It is already found
328                    early
329                    - if the object is after the current one, we must
330                    move it just before the current map to make sure
331                    the symbols are found early enough
332                 */
333                 if (args.aux->l_reserved)
334                   {
335                     /* The object is already somewhere in the list.
336                        Locate it first.  */
337                     struct list *late;
338
339                     /* This object is already in the search list we
340                        are building.  Don't add a duplicate pointer.
341                        Release the reference just added by
342                        _dl_map_object.  */
343                     --args.aux->l_opencount;
344
345                     for (late = newp; late->unique; late = late->unique)
346                       if (late->unique->map == args.aux)
347                         break;
348
349                     if (late->unique)
350                       {
351                         /* The object is somewhere behind the current
352                            position in the search path.  We have to
353                            move it to this earlier position.  */
354                         orig->unique = newp;
355
356                         /* Now remove the later entry from the unique list
357                            and adjust the tail pointer.  */
358                         if (utail == late->unique)
359                           utail = late;
360                         late->unique = late->unique->unique;
361
362                         /* We must move the object earlier in the chain.  */
363                         if (args.aux->l_prev)
364                           args.aux->l_prev->l_next = args.aux->l_next;
365                         if (args.aux->l_next)
366                           args.aux->l_next->l_prev = args.aux->l_prev;
367
368                         args.aux->l_prev = newp->map->l_prev;
369                         newp->map->l_prev = args.aux;
370                         if (args.aux->l_prev != NULL)
371                           args.aux->l_prev->l_next = args.aux;
372                         args.aux->l_next = newp->map;
373                       }
374                     else
375                       {
376                         /* The object must be somewhere earlier in the
377                            list.  That's good, we only have to insert
378                            an entry for the duplicate list.  */
379                         orig->unique = NULL;    /* Never used.  */
380
381                         /* Now we have a problem.  The element
382                            pointing to ORIG in the unique list must
383                            point to NEWP now.  This is the only place
384                            where we need this backreference and this
385                            situation is really not that frequent.  So
386                            we don't use a double-linked list but
387                            instead search for the preceding element.  */
388                         late = known;
389                         while (late->unique != orig)
390                           late = late->unique;
391                         late->unique = newp;
392                       }
393                   }
394                 else
395                   {
396                     /* This is easy.  We just add the symbol right here.  */
397                     orig->unique = newp;
398                     ++nlist;
399                     /* Set the mark bit that says it's already in the list.  */
400                     args.aux->l_reserved = 1;
401
402                     /* The only problem is that in the double linked
403                        list of all objects we don't have this new
404                        object at the correct place.  Correct this here.  */
405                     if (args.aux->l_prev)
406                       args.aux->l_prev->l_next = args.aux->l_next;
407                     if (args.aux->l_next)
408                       args.aux->l_next->l_prev = args.aux->l_prev;
409
410                     args.aux->l_prev = newp->map->l_prev;
411                     newp->map->l_prev = args.aux;
412                     if (args.aux->l_prev != NULL)
413                       args.aux->l_prev->l_next = args.aux;
414                     args.aux->l_next = newp->map;
415                   }
416
417                 /* Move the tail pointers if necessary.  */
418                 if (orig == utail)
419                   utail = newp;
420                 if (orig == dtail)
421                   dtail = newp;
422
423                 /* Move on the insert point.  */
424                 orig = newp;
425
426                 /* We always add an entry to the duplicate list.  */
427                 ++nduplist;
428               }
429         }
430       else
431         /* Mark as processed.  */
432         runp->done = 1;
433
434       /* If we have no auxiliary objects just go on to the next map.  */
435       if (runp->done)
436         do
437           runp = runp->unique;
438         while (runp != NULL && runp->done);
439     }
440
441   /* Store the search list we built in the object.  It will be used for
442      searches in the scope of this object.  */
443   map->l_searchlist.r_list = malloc (nlist * sizeof (struct link_map *));
444   if (map->l_searchlist.r_list == NULL)
445     _dl_signal_error (ENOMEM, map->l_name,
446                       "cannot allocate symbol search list");
447   map->l_searchlist.r_nlist = nlist;
448
449   for (nlist = 0, runp = known; runp; runp = runp->unique)
450     {
451       if (trace_mode && runp->map->l_opencount == 0)
452         /* This can happen when we trace the loading.  */
453         --map->l_searchlist.r_nlist;
454       else
455         map->l_searchlist.r_list[nlist++] = runp->map;
456
457       /* Now clear all the mark bits we set in the objects on the search list
458          to avoid duplicates, so the next call starts fresh.  */
459       runp->map->l_reserved = 0;
460     }
461
462   map->l_searchlist.r_nduplist = nduplist;
463   if (nlist == nduplist)
464     map->l_searchlist.r_duplist = map->l_searchlist.r_list;
465   else
466     {
467       unsigned int cnt;
468
469       map->l_searchlist.r_duplist = malloc (nduplist
470                                             * sizeof (struct link_map *));
471       if (map->l_searchlist.r_duplist == NULL)
472         _dl_signal_error (ENOMEM, map->l_name,
473                           "cannot allocate symbol search list");
474
475       for (cnt = 0, runp = known; runp; runp = runp->dup)
476         if (trace_mode && runp->map->l_opencount == 0)
477           /* This can happen when we trace the loading.  */
478           --map->l_searchlist.r_nduplist;
479         else
480           map->l_searchlist.r_duplist[cnt++] = runp->map;
481     }
482 }