Skip to content

Commit

Permalink
Also relocate in dependency order when doing symbol dependency testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Schwab committed Sep 14, 2011
1 parent 1ae12c7 commit 48b67d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2011-09-14 Andreas Schwab <schwab@redhat.com>

* elf/rtld.c (dl_main): Also relocate in dependency order when
doing symbol dependency testing.

2011-09-13 Andreas Schwab <schwab@linux-m68k.org>

* sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
Expand Down
11 changes: 4 additions & 7 deletions elf/rtld.c
Original file line number Diff line number Diff line change
Expand Up @@ -2027,24 +2027,21 @@ ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n",
{
/* We have to do symbol dependency testing. */
struct relocate_args args;
struct link_map *l;
unsigned int i;

args.reloc_mode = GLRO(dl_lazy) ? RTLD_LAZY : 0;

l = main_map;
while (l->l_next != NULL)
l = l->l_next;
do
i = main_map->l_searchlist.r_nlist;
while (i-- > 0)
{
struct link_map *l = main_map->l_initfini[i];
if (l != &GL(dl_rtld_map) && ! l->l_faked)
{
args.l = l;
_dl_receive_error (print_unresolved, relocate_doit,
&args);
}
l = l->l_prev;
}
while (l != NULL);

if ((GLRO(dl_debug_mask) & DL_DEBUG_PRELINK)
&& rtld_multiple_ref)
Expand Down

0 comments on commit 48b67d7

Please sign in to comment.