Extracting user stack traces from a crash dump

Ryan Stone rysto32 at gmail.com
Mon Mar 17 12:02:27 UTC 2014


On Mon, Mar 17, 2014 at 5:41 AM, Daniel O'Connor <doconnor at gsoft.com.au> wrote:
> Hi,
> Does anyone know of a tool that can extract userland stack traces from a crash dump?
> I did some googling and the closest I can see is to use DDB, but obviously that is only possible when I can access the console.
>
> Is it something procstat should/could be extended to do?

If I'm understanding you correctly, you have a kernel core and you
want to see the backtrace in *userland*?  e.g.

malloc()
strdup()
main()

That's not possible with a minidump.  A minidump does not include
memory for any userland processes, only the kernel, so you can't see
what any userland threads were doing at the time of the crash.  You
could find the trap frame for the thread at the bottom of the kernel
stack and map the instruction pointer for the top userland frame, but
that's it.


More information about the freebsd-hackers mailing list