2021-11-13 13:41:27 +01:00
|
|
|
---
|
|
|
|
author: Sanchayan Maity
|
|
|
|
title: Automate debugging using GDB scripting
|
|
|
|
tags: linux, gdb, gdb scripting, gstreamer
|
|
|
|
---
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
For a while, have had the pleasure of working on a GStreamer
|
2021-11-13 13:41:27 +01:00
|
|
|
[plugin](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/572)
|
2021-12-25 15:03:56 +01:00
|
|
|
in Rust at work. The plugin basically rounds the corners of an incoming video,
|
2021-11-13 13:41:27 +01:00
|
|
|
something akin to the `border-radius` property in CSS. Below is how it looks
|
|
|
|
like when running on a video.
|
|
|
|
|
|
|
|
![](/images/roundedcorners.jpg)
|
|
|
|
|
|
|
|
The GStreamer pipeline for the same.
|
|
|
|
|
|
|
|
```bash
|
2021-12-25 15:03:56 +01:00
|
|
|
gst-launch-1.0 filesrc location=~/Downloads/bunny.mp4 ! decodebin ! videoconvert ! roundedcorners border-radius-px=100 ! videoconvert ! gtksink
|
2021-11-13 13:41:27 +01:00
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
This was the first time working on a video plugin in GStreamer. Had a lot to
|
2021-11-13 13:41:27 +01:00
|
|
|
learn on how to use the `BaseTransform` class from GStreamer, among other
|
2021-12-25 15:03:56 +01:00
|
|
|
things. Without getting into the GStreamer specific details here, basically ran
|
|
|
|
into a problem for which needed some debugging for figuring out what was going
|
|
|
|
on in the internals of GStreamer.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Now, while using GDB from the command line has never been a problem, but, the
|
|
|
|
straight forward regular approach is time-consuming. Start the pipeline, then
|
2021-11-13 13:41:27 +01:00
|
|
|
attach gdb to a running process, place breakpoints by manually typing out the
|
2021-12-25 15:03:56 +01:00
|
|
|
whole thing and then start. For one off debugging sessions, where perhaps you
|
|
|
|
just want to inspect the backtrace from a crash or may be look into a
|
|
|
|
deadlock condition where your code hung, this could be fine. However, when you
|
|
|
|
have to repeat this multiple times do a source code change compile and then
|
|
|
|
select again it becomes frustrating.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
## GDB Dashboard
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Looking for a better way, [gdb-dashboard](https://github.com/cyrus-and/gdb-dashboard)
|
|
|
|
is what first came up as an option. This is quite useful since it can give the needed
|
|
|
|
information without having to type anything. Using gdb
|
2021-11-13 13:41:27 +01:00
|
|
|
[hooks](https://git.sr.ht/~sanchayanmaity/dotfiles/tree/master/item/gdb/.gdbinit.d/hooks),
|
2021-12-25 15:03:56 +01:00
|
|
|
the dashboard can be triggered when appropriate. See the rest of the [gdb
|
|
|
|
configuration](https://git.sr.ht/~sanchayanmaity/dotfiles/tree/master/item/gdb/.gdbinit.d)
|
|
|
|
to get an idea. This is useful in scenarios like where code is stuck due to a
|
|
|
|
deadlock and one needs to look at the backtrace of a crash or any such one off
|
|
|
|
simple investigation.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
## Construct breakpoint command in neovim & copy to clipboard
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
The next small improvement is more specific to neovim. Navigating source code
|
|
|
|
with neovim opened in one kitty tab and gdb running in terminal in next tab or
|
|
|
|
a split is a preferred workflow personally. Being able to place a breakpoint
|
|
|
|
without having to type anything out on the gdb prompt would be convenient. The
|
|
|
|
vimscript code below generates the gdb command, considering the current line
|
|
|
|
and file on which the cursor is at in the source when opened in neovim.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```vimscript
|
|
|
|
function! CopyBpLocToClipboard() abort
|
|
|
|
let linenumber = line(".")
|
|
|
|
let filepath = expand("%")
|
|
|
|
let breakpoint = "break " . filepath . ":" . linenumber
|
|
|
|
silent execute "!wl-copy " . breakpoint
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
nnoremap <silent> <Leader>yb :<C-U>call CopyBpLocToClipboard()<CR>
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
By using the preceding key binding, a command like below gets copied to the
|
|
|
|
clipboard which can be just pasted on gdb prompt.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/video-frame.c:104
|
|
|
|
```
|
|
|
|
|
|
|
|
Nifty!!!
|
|
|
|
|
|
|
|
## GDB scripting
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Now imagine a scenario where perhaps one wants to look at multiple places in the
|
2021-11-13 13:41:27 +01:00
|
|
|
source code and when the program is running, inspect certain variables or just
|
|
|
|
print out a back trace each time a specific code point is reached.
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
The manual way to do this is to load the executable in gdb or attach to a
|
|
|
|
running process, place a break point, run, inspect the local variables or print
|
|
|
|
stack trace, place the next break point and repeat this whole process. Just
|
|
|
|
time-consuming.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
GDB can completely automate the preceding process like below.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Below is the `.gdbinit` file applicable for the problem facing encountered at
|
|
|
|
work. This is what's called a command file by gdb.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
set confirm off
|
|
|
|
set breakpoint pending on
|
|
|
|
set logging on
|
|
|
|
set logging overwrite on
|
|
|
|
set print pretty on
|
|
|
|
set pagination off
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/video-frame.c:104 if meta->n_planes == 4
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:228
|
|
|
|
break subprojects/gstreamer/gst/gstbuffer.c:1410
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:231
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:237
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/video-frame.c:136
|
|
|
|
|
|
|
|
commands 1
|
|
|
|
print i
|
|
|
|
print *frame
|
|
|
|
enable 2
|
|
|
|
enable 3
|
|
|
|
enable 4
|
|
|
|
enable 5
|
|
|
|
enable 6
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
commands 2
|
|
|
|
print offset
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
commands 3
|
|
|
|
print offset
|
|
|
|
print size
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
commands 4
|
|
|
|
print *(GstBufferImpl *)buffer
|
|
|
|
print idx
|
|
|
|
print length
|
|
|
|
print skip
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
commands 5
|
|
|
|
disable 2
|
|
|
|
disable 3
|
|
|
|
disable 4
|
|
|
|
print *(GstBufferImpl *)buffer
|
|
|
|
print info->data
|
|
|
|
print skip
|
|
|
|
print *data
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
commands 6
|
|
|
|
print *frame
|
|
|
|
quit
|
|
|
|
end
|
|
|
|
|
|
|
|
disable 2
|
|
|
|
disable 3
|
|
|
|
disable 4
|
|
|
|
disable 5
|
|
|
|
disable 6
|
|
|
|
run
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Below is the command to debug the GStreamer plugin in this pipeline with gdb.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
gdb --nx -x .gdbinit --args env RUST_BACKTRACE=1 GST_DEBUG=3,basetransform:6 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:~/GitSources/gst-plugins-rs/target/debug gst-launch-1.0 filesrc location=~/Downloads/bunny.mp4 ! decodebin ! videoconvert ! video/x-raw,format=I420 ! roundedcorners border-radius-px=100 ! video/x-raw,format=A420 ! videoconvert ! gtksink
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
In the preceding command, the `-x` parameter tells gdb to use the command file.
|
|
|
|
The `--nx` flag tells gdb to not read any `.gdbinit` files in any directory, as
|
|
|
|
`gdb-dashboard` isn't intended to be used for this. `--args` is how one tells
|
|
|
|
gdb what to run, which is the GStreamer pipeline in this case. See `gdb --help`
|
|
|
|
for details on the flags.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Now, consider what the command file does. The ones below are just some
|
|
|
|
settings for gdb to use. Note that logging and pretty printing are enabled.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
set confirm off
|
|
|
|
set breakpoint pending on
|
|
|
|
set logging on
|
|
|
|
set logging overwrite on
|
|
|
|
set print pretty on
|
|
|
|
set pagination off
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Next, specify the breakpoints. There are six breakpoints. These are the source
|
|
|
|
code locations of interest.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/video-frame.c:104 if meta->n_planes == 4
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:228
|
|
|
|
break subprojects/gstreamer/gst/gstbuffer.c:1410
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:231
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/gstvideometa.c:237
|
|
|
|
break subprojects/gst-plugins-base/gst-libs/gst/video/video-frame.c:136
|
|
|
|
```
|
|
|
|
|
|
|
|
Breakpoints can be enabled conditionally. The `if meta->n_planes == 4` implies
|
2021-12-25 15:03:56 +01:00
|
|
|
to consider this breakpoint only when a video frame with 4 planes is received.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Next gdb has to be told what should be done when each of the preceding
|
|
|
|
breakpoints is hit.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
commands 1
|
|
|
|
print i
|
|
|
|
print *frame
|
|
|
|
enable 2
|
|
|
|
enable 3
|
|
|
|
enable 4
|
|
|
|
enable 5
|
|
|
|
enable 6
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
`commands 1` implies these are the commands for gdb to execute when breakpoint
|
2021-12-25 15:03:56 +01:00
|
|
|
1 is hit. When breakpoint 1 is hit, the value of `i` and `frame` gets printed.
|
2021-11-13 13:41:27 +01:00
|
|
|
The other breakpoints get enabled only after the first one is hit. This is
|
2021-12-25 15:03:56 +01:00
|
|
|
because at the end of command file, the following commands
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
disable 2
|
|
|
|
disable 3
|
|
|
|
disable 4
|
|
|
|
disable 5
|
|
|
|
disable 6
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
instruct gdb to start with these breakpoints off. These get enabled only
|
|
|
|
when breakpoint 1 is hit. The `continue` just tells gdb to continue, as gdb
|
|
|
|
shouldn't stop on hitting a breakpoint and logs can be inspected in the
|
|
|
|
end using gdb log.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Other breakpoints are specified similarly.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
The `run` at the end tells gdb to start executing immediately. In normal usage
|
2021-11-13 13:41:27 +01:00
|
|
|
one would have to explicitly type `run` on the gdb prompt to make gdb start
|
|
|
|
debugging.
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
If it's not clear so far, basically whatever gdb commands would have been used
|
|
|
|
for debugging at the gdb prompt, is what gets specified in the command file as
|
|
|
|
well.
|
2021-11-14 07:46:03 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
After running the below on the terminal
|
2021-11-13 13:41:27 +01:00
|
|
|
|
|
|
|
```bash
|
|
|
|
gdb --nx -x .gdbinit --args env RUST_BACKTRACE=1 GST_DEBUG=3,basetransform:6 GST_PLUGIN_PATH=$GST_PLUGIN_PATH:~/GitSources/gst-plugins-rs/target/debug gst-launch-1.0 filesrc location=~/Downloads/bunny.mp4 ! decodebin ! videoconvert ! video/x-raw,format=I420 ! roundedcorners border-radius-px=100 ! video/x-raw,format=A420 ! videoconvert ! gtksink
|
|
|
|
```
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
The pipeline gets executed by gdb, considering the command file it was passed
|
|
|
|
and log whatever it was asked to log when each breakpoint is encountered. Since
|
|
|
|
logging and pretty printing were enabled earlier, gdb logs everything in
|
|
|
|
default `gdb.txt` file. The exact log text file can be seen
|
2021-11-13 13:41:27 +01:00
|
|
|
[here](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/572#note_1107146),
|
2021-12-25 15:03:56 +01:00
|
|
|
with `gdbinit` and the other two log files attached.
|
2021-11-13 13:41:27 +01:00
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Now, one can comfortably look at this log and see what's going on. Once the
|
2021-11-13 13:41:27 +01:00
|
|
|
command file is written, the whole debugging process is completely automated.
|
|
|
|
Run, sit back and then look at the logs.
|
|
|
|
|
2021-12-25 15:03:56 +01:00
|
|
|
Using gdb is now a breeze and hassle-free experience. Being able to automate
|
2021-11-13 13:41:27 +01:00
|
|
|
and log the debugging process like this, also means you could share your
|
2021-12-25 15:03:56 +01:00
|
|
|
command file and someone else can replicate this.
|