Re: debugging coredumps with the help of libraries (for example to pretty-print)

David Blaikie via Gdb <[email protected]>
Newsgroups gmane.comp.gdb.devel
Message-ID <CAENS6Esr1mawe+0nXV4PghCo1CVJiHBTMYDzxFDtvHeWzib6pA@mail.gmail.com>
Not sure about other answers/details, but generally it's encouraged to
do the latter - pretty printers that do not invoke any code in the
process, both for debugging cores, but also in general to avoid any
risk that the pretty printer might taint the process under test by
executing code that could risk changing the state of the process, etc.

On Thu, May 6, 2021 at 1:48 PM Simon Sobisch via Gdb <[email protected]> wrote:
>
> I currently think there is no way, but before "giving up" I've wanted to
> double-check, maybe I've missed something.
>
> To pretty-print some data types it seems quite feasible to use whatever
> library handles the typedefs normally and use its string functions to
> get the developer-view of the data and let gdb output that.
> And this actually works quite well, just `gdb.execute("call
> libfunc(...)") and you're done.
>
> But when I now create a core-dump (gcore dumpfile) and then start gdb
> with to debug that I see the full state and local variables - but none
> of those pretty printers work, resulting in "You can't do that without a
> process to debug." messages.
>
> Is it possible to let GDB itself load the libraries and pass resolve the
> string values that way (or somehow start a "new" process along with the
> coredump only for letting it print the values from the coredump data)?
>
> If not then it is either "disable the pretty printing when a coredump is
> processed" [what is the best check for that in a python extension btw?]
> or try to re-implement the string function completely in python.
>
> Note: I actually can also change the library in question if that helps,
> but I'd (also) be interested to know the answer of this question in general.
>
> Any hints welcome,
> Simon Sobisch
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.