public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/31465] New: gdb batch mode crashes when execute "gdb.post_event(lambda: gdb.execute("c"))" in a stop event handler
@ 2024-03-08 17:10 ydeng339 at gatech dot edu
  2024-03-08 21:25 ` [Bug gdb/31465] " tromey at sourceware dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ydeng339 at gatech dot edu @ 2024-03-08 17:10 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=31465

            Bug ID: 31465
           Summary: gdb batch mode crashes when execute
                    "gdb.post_event(lambda: gdb.execute("c"))" in a stop
                    event handler
           Product: gdb
           Version: 15.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: gdb
          Assignee: unassigned at sourceware dot org
          Reporter: ydeng339 at gatech dot edu
  Target Milestone: ---

I want to debug my program (with multiple breakpoints) automatically. When
reaching a breakpoint, I want to do some operations and continue the execution. 

Here is the code snippet of my python script:
```
def set_breakpoints():
    # Just add multiple breakpoints
    ...

def on_stop(event):
    # Do some operations
    gdb.post_event(lambda: gdb.execute("c"))

gdb.events.stop.connect(on_stop)

gdb.execute("run")
```

And here is my command: "gdb -x [MY_PYTHON_SCRIPT] --batch --args
[MY_PROGRAM]".

And then, gdb crashes with the following logs:
```
Fatal signal: Segmentation fault
----- Backtrace -----
0x55a013532077 ???
0x55a013634859 ???
0x55a013634a22 ???
0x7eff7742c51f ???
        ./signal/../sysdeps/unix/sysv/linux/x86_64/libc_sigaction.c:0
0x7eff780093eb ???
0x7eff78009f1b ???
0x55a013797a2a ???
0x55a0137d01d5 ???
0x7eff7742f494 __run_exit_handlers
        ./stdlib/exit.c:113
0x7eff7742f60f __GI_exit
        ./stdlib/exit.c:143
0x55a01385f3e4 ???
0x55a0136f3554 ???
0x55a0136f404e ???
0x55a01348a15f ???
0x7eff77413d8f __libc_start_call_main
        ../sysdeps/nptl/libc_start_call_main.h:58
0x7eff77413e3f __libc_start_main_impl
        ../csu/libc-start.c:392
0x55a01348fbf4 ???
0xffffffffffffffff ???
---------------------
```

Such crash only appears in batch mode. If I run the program in interactive
mode, the program will not crash (but interactive mode is inefficient). Based
on my test, this bug appears in version 12.1 and version 15.0.

-- 
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:[~2024-03-12 18:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-08 17:10 [Bug gdb/31465] New: gdb batch mode crashes when execute "gdb.post_event(lambda: gdb.execute("c"))" in a stop event handler ydeng339 at gatech dot edu
2024-03-08 21:25 ` [Bug gdb/31465] " tromey at sourceware dot org
2024-03-08 22:30 ` ydeng339 at gatech dot edu
2024-03-12 18:15 ` tromey at sourceware dot org

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