Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to debug a SIGSEGV crash in Chrome. Running through GDB, and single stepping (using the gdb command n), I see that the crash occurs when calling -[NSApplication run] (). Here is the stack trace just before the crash:

#0  0x95706cb1 in -[NSApplication run] ()
#1  0x037255ee in ChromeMain ()
#2  0x03723fd4 in ChromeMain ()
#3  0x037b39f4 in ChromeMain ()
#4  0x03806aa9 in ChromeMain ()
#5  0x054375c3 in ChromeMain ()
#6  0x04aabd0b in ChromeMain ()
#7  0x04aaf6e7 in ChromeMain ()
#8  0x04aa9ec4 in ChromeMain ()
#9  0x073c8c35 in ChromeMain ()
#10 0x073ca242 in ChromeMain ()
#11 0x073c822a in ChromeMain ()
#12 0x01041ce4 in ChromeMain ()
#13 0x00001dd9 in _mh_execute_header ()
#14 0x00001d85 in _mh_execute_header ()

Now it seems that -[NSApplication run] () is a very generic function, giving me no information. I've also tried stepping one instruction at a time (using the gdb command si), but subroutines names are not given.

How can I gain further insight in this crash? I have also run Chrome with AddressSanitizer and here is what I get:

ASAN:SIGSEGV
==5087== ERROR: AddressSanitizer crashed on unknown address 0x00000008 (pc 0x081ac88a sp 0xbfff21e0 bp 0xbfff21f8 T0)
AddressSanitizer can not provide additional info. ABORTING

What strategy should I adopt to understand this crash further?

share|improve this question
1  
submit the bug ! – Jay D Aug 29 '12 at 23:56
@JayD: I'm trying to debug myself for the Pwn2Own competition. – Randomblue Aug 30 '12 at 0:15
is it part of an addon you wrote ? if yes may be there is an issue in your code ? – Jay D Aug 30 '12 at 0:35
1  
Try: disass 0x95706cb1, and see what instructions were being executed around that instruction pointer. – user315052 Aug 30 '12 at 1:20
@JayD: No, it's a crash in the main browser. – Randomblue Aug 30 '12 at 15:34

1 Answer

up vote 0 down vote accepted

To get debug symbols, the script ./tools/valgrind/asan/asan_symbolize.py is very useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.