From: Joel Brobecker <brobecker@adacore.com>
To: binutils@sourceware.org
Cc: gdb-patches@sourceware.org
Subject: [RFC/RFA] dangling bfd pointer in archive cache...
Date: Tue, 02 Oct 2012 14:14:00 -0000 [thread overview]
Message-ID: <20121002141405.GD3028@adacore.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2580 bytes --]
Hello,
I am trying to fix a crash that's occurring when running a program
from GDB on ppc-aix. Take any program that uses threading, and:
(gdb) run
Starting program: /[...]/task_switch
zsh: 46458 segmentation fault (core dumped) gdb-head -q task_switch
This is related to a recent patch that started counting references
to BFDs, and closing them when the reference count reached zero.
Here is what is happening in chronological order:
During the startup phase, GDB receives notification that libthread.a
has been mapped. It creates an archive BFD for it, and starts going
through it object files. It looks at the first one by calling:
bfd *result = bfd_openr_next_archived_file (archive, previous);
(where previous is NULL).
Following what archive.c:bfd_openr_next_archived_file does, we
find that it calls coff-rs6000.c:_bfd_xcoff_openr_next_archived_file,
which eventually calls archive.c:_bfd_get_elt_at_filepos. This
routine first checks the archive's cache for our bfd, and creates
a new one if not found. At the end of the element's creation, it
then adds it to the archive BFD's cache:
if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
return n_nfd;
Back to GDB, GDB looks at our elt bfd, finds that it's not the one
it is looking for, gets the next one using the same function, and
then unref's it. As the ref count of that first objfile reached zero,
it therefore calls bfd_close.
This is when things start going wrong, as bfd_close frees the memory
allocated to our elt bfd, but does not remove it from the archive's
cache. As a result, the next time we query the first elt of our archive,
we find the reference in the cache, and return that - a pointer to
free'ed memory, which eventually leads to a crash.
Looking further into this, I went back and forth between different
approaches, until I found that archive.c defines a function that
the cleanup: archive.c:_bfd_archive_close_and_cleanup. I don't
think it should be hooked up to the target vector to be called
automatically, since it's not entirely a target properly, more like
a "construct" property. So I've simply added a call to it from
include "bfd_close".
This fixes the problem on ppc-aix, tested using the gdb-testsuite
on ppc-aix and x86_64-linux. I'd be happy to do more testing if
someone told me which testsuites to run for this type of change.
But before doing so, I thought I'd make sure I am making the correct
type of change...
Thoughts?
bfd/ChangeLog:
* opncls.c (bfd_close); Add call to _bfd_archive_close_and_cleanup.
Thanks,
--
Joel
[-- Attachment #2: opncls.diff --]
[-- Type: text/x-diff, Size: 870 bytes --]
diff --git a/bfd/opncls.c b/bfd/opncls.c
index fdccba3..b9b3743 100644
--- a/bfd/opncls.c
+++ b/bfd/opncls.c
@@ -719,6 +719,17 @@ bfd_close (bfd *abfd)
if (! BFD_SEND (abfd, _close_and_cleanup, (abfd)))
return FALSE;
+ /* If ABFD is an archive bfd, or a bfd contained in an archive,
+ do any associated cleanup. This is necessary to avoid leaving
+ a dangling pointer somewhere. For instance, if ABFD is an object
+ contained in an archive, the archive's cache might have a reference
+ to ABFD that needs to be removed before we free ABFD.
+
+ _bfd_archive_close_and_cleanup does nothing if ABFD is neither
+ an archive BFD nor a BFD of an object contained in an archive,
+ so it is safe to call it without checking the bfd kind. */
+ _bfd_archive_close_and_cleanup (abfd);
+
ret = abfd->iovec->bclose (abfd);
if (ret)
next reply other threads:[~2012-10-02 14:14 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-02 14:14 Joel Brobecker [this message]
2012-10-03 5:29 ` Alan Modra
2012-10-03 13:30 ` Joel Brobecker
2012-10-04 8:01 ` Alan Modra
2012-10-15 18:01 ` Joel Brobecker
2012-10-16 1:48 ` Alan Modra
2012-10-16 22:58 ` Joel Brobecker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121002141405.GD3028@adacore.com \
--to=brobecker@adacore.com \
--cc=binutils@sourceware.org \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox