public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug dynamic-link/15465] New: LD_DEBUG=symbols crashes when program name is not available
@ 2013-05-14  9:52 siddhesh at redhat dot com
  2013-05-14  9:57 ` [Bug dynamic-link/15465] " siddhesh at redhat dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: siddhesh at redhat dot com @ 2013-05-14  9:52 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=15465

             Bug #: 15465
           Summary: LD_DEBUG=symbols crashes when program name is not
                    available
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: dynamic-link
        AssignedTo: siddhesh@redhat.com
        ReportedBy: siddhesh@redhat.com
    Classification: Unclassified


Running a program with LD_DEBUG=symbols defined may crash if the program
tampers with argc and argv.

Steps to Reproduce:

foo.c:

#include <stdio.h>
#include <string.h>

int
main (int argc, char **argv)
{
  argv[0] = argv[1];
  argc--;

  foo ();
}

foo-lib.c:

void
foo (void)
{
  return; 
}

cc -o foo-lib.so -shared -fPIC foo-lib.c
cc -o foo foo.c ./foo-lib.so
LD_DEBUG=symbols ./foo

Actual Results:

Segfault

Expected Results:

No segfault.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-06-13 17:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-14  9:52 [Bug dynamic-link/15465] New: LD_DEBUG=symbols crashes when program name is not available siddhesh at redhat dot com
2013-05-14  9:57 ` [Bug dynamic-link/15465] " siddhesh at redhat dot com
2013-05-29 16:06 ` siddhesh at redhat dot com
2014-06-13 17:49 ` fweimer at redhat dot com

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).