summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-01-20 03:29:25 +0000
committerUlrich Drepper <drepper@redhat.com>2008-01-20 03:29:25 +0000
commitc182f90bd79ac9954a17aaa7792aac3e8103851d (patch)
tree4cc5674dd26a460fe70f66671b46cbbee0799a2b
parentb27ce0029031cec586ccd6b8ba1e26d3bccbcad9 (diff)
Fix memory leak in readelf.
Fix static linking in ld up a bit. Still not complete.
-rw-r--r--src/ChangeLog24
-rw-r--r--src/i386_ld.c10
-rw-r--r--src/ld.c4
-rw-r--r--src/ldgeneric.c60
-rw-r--r--src/readelf.c3
5 files changed, 74 insertions, 27 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index aeb501bd..b58102e2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,27 @@
+2008-01-19 Ulrich Drepper <drepper@redhat.com>
+
+ * i386_ld.c (elf_i386_count_relocations): PLT relocations for undefined
+ symbols are not carried over into statically linked output files.
+ Add dummy entries for more TLS relocations.
+
+ * ld.c (options): Add long names for -( and -).
+
+ * ldgeneric.c (check_definition): For newly found definitions don't
+ mark section as used if symbol is absolute.
+ (extract_from_archive): Only assign archive sequence number the first
+ time the archive is handled. Update ld_state.last_archive_used
+ if any symbol was used. Remove nround variable.
+ (file_process2): When using symbol from an archive, update
+ ld_state.group_start_archive, ld_state.archives, and
+ ld_state.tailarchives.
+ (ld_generic_file_process): If group is not handled anymore, after
+ freeing ELF handles for the archives, clear ld_state.archives and
+ *nextp. Fix wrong logic in recognizing first iteration of group
+ loop. When clearing flags, also clear ld_state.group_start_archive.
+
+ * src/readelf.c (process_elf_file): When re-reading pure file,
+ don't first open the file and then map from the mapped archive.
+
2008-01-11 Ulrich Drepper <drepper@redhat.com>
* objdump.c (show_disasm): Adjust disassembler format string for
diff --git a/src/i386_ld.c b/src/i386_ld.c
index c79804cd..82fb9473 100644
--- a/src/i386_ld.c
+++ b/src/i386_ld.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc.
+/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008 Red Hat, Inc.
This file is part of Red Hat elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2001.
@@ -592,10 +592,9 @@ elf_i386_count_relocations (struct ld_state *statep, struct scninfo *scninfo)
If the symbol is not defined and we are not creating
a statically linked binary, then we need in any case
a PLT entry. */
- if (! scninfo->fileinfo->symref[r_sym]->defined)
+ if (! scninfo->fileinfo->symref[r_sym]->defined
+ && !statep->statically)
{
- assert (!statep->statically);
-
sym = scninfo->fileinfo->symref[r_sym];
sym->type = STT_FUNC;
sym->in_dso = 1;
@@ -614,6 +613,9 @@ elf_i386_count_relocations (struct ld_state *statep, struct scninfo *scninfo)
}
break;
+ case R_386_TLS_IE:
+ case R_386_TLS_GOTIE:
+ case R_386_TLS_LE:
case R_386_TLS_GD:
case R_386_TLS_LDM:
case R_386_TLS_GD_32:
diff --git a/src/ld.c b/src/ld.c
index bede0e85..4ac3023a 100644
--- a/src/ld.c
+++ b/src/ld.c
@@ -88,8 +88,8 @@ static const struct argp_option options[] =
{ "no-whole-archive", ARGP_no_whole_archive, NULL, 0,
N_("Stop including the whole arhives in the output."), 0 },
{ NULL, 'l', N_("FILE"), OPTION_HIDDEN, NULL, 0 },
- { NULL, '(', NULL, 0, N_("Start a group."), 0 },
- { NULL, ')', NULL, 0, N_("End a group."), 0 },
+ { "start-group", '(', NULL, 0, N_("Start a group."), 0 },
+ { "end-group", ')', NULL, 0, N_("End a group."), 0 },
{ NULL, 'L', N_("PATH"), 0,
N_("Add PATH to list of directories files are searched in."), 0 },
{ "as-needed", ARGP_as_needed, NULL, 0,
diff --git a/src/ldgeneric.c b/src/ldgeneric.c
index cb184abf..63fc77ca 100644
--- a/src/ldgeneric.c
+++ b/src/ldgeneric.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc.
+/* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008 Red Hat, Inc.
This file is part of Red Hat elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2001.
@@ -726,7 +726,8 @@ check_definition (const XElf_Sym *sym, size_t symidx,
and it's indicating whether the reference is weak or not. */
oldp->weak = XELF_ST_BIND (sym->st_info) == STB_WEAK;
- if (sym->st_shndx != SHN_COMMON)
+ // XXX Really exclude SHN_ABS?
+ if (sym->st_shndx != SHN_COMMON && sym->st_shndx != SHN_ABS)
{
struct scninfo *ignore;
mark_section_used (&fileinfo->scninfo[sym->st_shndx],
@@ -1412,8 +1413,8 @@ add_relocatable_file (struct usedfiles *fileinfo, GElf_Word secttype)
/* The symbol is not used. */
continue;
- /* If the DSO uses symbols determine whether this is the default
- version. Otherwise we'll ignore the symbol. */
+ /* If the DSO uses symbol versions determine whether this is
+ the default version. Otherwise we'll ignore the symbol. */
if (versymdata != NULL)
{
XElf_Versym versym;
@@ -1785,15 +1786,16 @@ extract_from_archive (struct usedfiles *fileinfo)
static int archive_seq;
int res = 0;
- /* This is an archive we are not using completely. Give it a
- unique number. */
- fileinfo->archive_seq = ++archive_seq;
+ if (fileinfo->archive_seq == 0)
+ /* This is an archive we are not using completely. Give it a
+ unique number. */
+ fileinfo->archive_seq = ++archive_seq;
/* If there are no unresolved symbols don't do anything. */
+ assert (ld_state.extract_rule == defaultextract
+ || ld_state.extract_rule == weakextract);
if ((likely (ld_state.extract_rule == defaultextract)
- && ld_state.nunresolved_nonweak == 0)
- || (unlikely (ld_state.extract_rule == weakextract)
- && ld_state.nunresolved == 0))
+ ? ld_state.nunresolved_nonweak : ld_state.nunresolved) == 0)
return 0;
Elf_Arsym *syms;
@@ -1818,7 +1820,6 @@ extract_from_archive (struct usedfiles *fileinfo)
the first definition. */
// XXX Is this a compatible behavior?
bool any_used;
- int nround = 0;
do
{
any_used = false;
@@ -1876,7 +1877,7 @@ extract_from_archive (struct usedfiles *fileinfo)
}
}
- if (++nround == 1)
+ if (any_used)
{
/* This is an archive therefore it must have a number. */
assert (fileinfo->archive_seq != 0);
@@ -2069,9 +2070,22 @@ cannot use DSO '%s' when generating relocatable object file"),
res = 0;
}
else
- /* Extract only the members from the archive which are
- currently referenced by unresolved symbols. */
- res = extract_from_archive (fileinfo);
+ {
+ if (ld_state.group_start_requested
+ && ld_state.group_start_archive == NULL)
+ ld_state.group_start_archive = fileinfo;
+
+ if (ld_state.archives == NULL)
+ ld_state.archives = fileinfo;
+
+ if (ld_state.tailarchives != NULL)
+ ld_state.tailarchives->next = fileinfo;
+ ld_state.tailarchives = fileinfo;
+
+ /* Extract only the members from the archive which are
+ currently referenced by unresolved symbols. */
+ res = extract_from_archive (fileinfo);
+ }
}
else
/* This should never happen, we know about no other types. */
@@ -2127,7 +2141,7 @@ ld_generic_file_process (int fd, struct usedfiles *fileinfo,
/* We found the file. Now test whether it is a file type we can
handle.
- XXX Do we have to have the ability to start from a given
+ XXX Do we need to have the ability to start from a given
position in the search path again to look for another file if
the one found has not the right type? */
res = open_elf (fileinfo, elf_begin (fileinfo->fd,
@@ -2170,19 +2184,24 @@ ld_generic_file_process (int fd, struct usedfiles *fileinfo,
runp = runp->next;
}
while (runp != fileinfo->next);
+
+ /* Do not do this again. */
+ ld_state.archives = NULL;
+
+ /* Do not move on to the next archive. */
+ *nextp = fileinfo->next = NULL;
}
}
else if (unlikely (fileinfo->group_end))
{
- /* This is the end of a group. We possibly of to go back.
+ /* This is the end of a group. We possibly have to go back.
Determine which file we would go back to and see whether it
makes sense. If there has not been an archive we don't have
to do anything. */
- if (!ld_state.group_start_requested)
+ if (ld_state.group_start_requested)
{
if (ld_state.group_start_archive != ld_state.tailarchives)
- /* The loop would include more than one archive, add the
- pointer. */
+ /* The loop includes more than one archive, add the pointer. */
{
*nextp = ld_state.tailarchives->group_backref =
ld_state.group_start_archive;
@@ -2201,6 +2220,7 @@ ld_generic_file_process (int fd, struct usedfiles *fileinfo,
/* Clear the flags. */
ld_state.group_start_requested = false;
+ ld_state.group_start_archive = NULL;
fileinfo->group_end = false;
}
diff --git a/src/readelf.c b/src/readelf.c
index f243f626..e0352443 100644
--- a/src/readelf.c
+++ b/src/readelf.c
@@ -601,7 +601,6 @@ process_elf_file (Dwfl_Module *dwflmod, int fd)
if (ehdr->e_type == ET_REL && print_unrelocated)
{
/* Read the file afresh. */
- pure_elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
off64_t aroff = elf_getaroff (elf);
if (aroff > 0)
{
@@ -611,6 +610,8 @@ process_elf_file (Dwfl_Module *dwflmod, int fd)
elf_end (pure_elf);
pure_elf = armem;
}
+ else
+ pure_elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
if (pure_elf == NULL)
goto elf_error;
pure_ebl = ebl_openbackend (pure_elf);