From: manfred-h@t-online.de (Manfred Hollstein)
To: bug-gdb@gnu.org
Cc: bfd@cygnus.com, gdb-patches@cygnus.com
Subject: PATCH: fix unitialized memory reads in bfd/elf32-mips.c
Date: Wed, 14 Apr 1999 09:08:00 -0000 [thread overview]
Message-ID: <14100.46517.331398.118164@saturn.hollstein.net> (raw)
In-Reply-To: <14034.52083.787129.934623@exept.exept.de>
Hi,
I reported this problem already with bfd in binutils-2.9.1 and gdb-4.17;
as it is still present in gdb-4.18, I'm re-posting a patch.
manfred
On Tue, 23 February 1999, 17:20:23, manfred@s-direktnet.de wrote:
> This small patch fixes a bug I observed while running gdb-4.17
> on a mips-sgi-irix5.3 system. Since the debuggee's debug info
> was larger than the system's virtual memory was able to provide,
> the "goto error_return" in bfd/elf32-mips.c:_bfd_mips_elf_read_ecoff_info
> got executed, which in turn tries to cleanup allocated memory.
> Unfortunately, it's simply checking probably unitialized
> memory to decide whether it should.
1999-04-14 Manfred Hollstein <mhollstein@cygnus.com>
* elf32-mips.c (_bfd_mips_elf_read_ecoff_info): Set all
fields to 0 which may cause erroneous calls to free when
"goto error_return" is executed.
diff -rup -x CVS -x RCS -x *.o -x *.info* -x *.html* -x *.elc -x *.dvi -x *.orig -x *~ -x version.el gdb-4.18.orig/bfd/elf32-mips.c gdb-4.18/bfd/elf32-mips.c
--- gdb-4.18.orig/bfd/elf32-mips.c Wed Apr 7 22:57:07 1999
+++ gdb-4.18/bfd/elf32-mips.c Wed Apr 14 15:13:27 1999
@@ -3058,6 +3058,17 @@ _bfd_mips_elf_read_ecoff_info (abfd, sec
/* The symbolic header contains absolute file offsets and sizes to
read. */
+ debug->line = 0;
+ debug->external_dnr = 0;
+ debug->external_pdr = 0;
+ debug->external_sym = 0;
+ debug->external_opt = 0;
+ debug->external_aux = 0;
+ debug->ss = 0;
+ debug->ssext = 0;
+ debug->external_fdr = 0;
+ debug->external_rfd = 0;
+ debug->external_ext = 0;
#define READ(ptr, offset, count, size, type) \
if (symhdr->count == 0) \
debug->ptr = NULL; \
--
Manfred Hollstein If you have any questions about GNU software:
EMAIL: <mhollstein@cygnus.com> or <manfred.h@gmx.net>
WWW: < http://home.t-online.de/home/manfred-h/ >
PGP: < http://home.t-online.de/home/manfred-h/manfred.hATgmx.net.asc >
prev parent reply other threads:[~1999-04-14 9:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
1999-02-23 8:18 PATCH for bfd in binutils-2.9.1/gdb-4.17 Manfred Hollstein
1999-04-14 9:08 ` Manfred Hollstein [this message]
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=14100.46517.331398.118164@saturn.hollstein.net \
--to=manfred-h@t-online.de \
--cc=bfd@cygnus.com \
--cc=bug-gdb@gnu.org \
--cc=gdb-patches@cygnus.com \
/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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).