Debugging » History » Revision 21
Revision 20 (Jaroslav Kysela, 2017-06-06 17:27) → Revision 21/32 (Jaroslav Kysela, 2017-06-06 17:29)
h1. Debugging
If you use the packaged version of tvheadend, make sure that you use the debug version of tvheadend (with the debugging symbols). For debian/ubuntu these packages have *_dbg* suffix, for rpm packages, these symbols are in *debuginfo* rpm files.
If you're going to be regularly trying development versions of Tvheadend or need to report a crash or deadlock then you should really read this page!
If you are investigating problems within Tvheadend then its worth being familiar with tools such as gdb and valgrind or clang, although these are not covered here.
However one thing that can be useful in investigating crashes within Tvheadend is to ensure that coredumps are generated, this will allow post analysis in gdb without having to actual run Tvheadend within gdb.
You can enable temporarily by running:
<pre>
ulimit -c unlimited
</pre>
To make this permanent put this somewhere in your shell environment setup (.bashrc, .profile, etc...)
Firstly I'd recommend that if you're specifically trying to investigate an issue then you should consider running Tvheadend manually, rather than as a service, as documented [[Development|here]].
h2. Logging
I'd strongly recommend that if you're specifically trying to investigate a crash or other problem in Tvheadend that you enable debugging:
* *-s* will output debug info to syslog
* *--debug* allows you to specify which subsystem to debug (TODO: add more info)
* *--trace* allows you to enable trace (more in-depth) logging on specific subsystems
You can also get Tvheadend to log to it's own file using:
<pre>
-l FILE
</pre>
You may also modify the debug settings using WEB GUI as admin - Configuration/Debugging. Note that the information is not saved,
it is just set for run-time (current task).
* Debug log path - filename to store log
* Debug trace - enable traces
* Debug subsystems - comma separated list of subsystems
* Trace subsystems - comma separated list of subsystems
The traces must be compiled to the tvheadend binary - see [[Traces]].
h2. Incorrect (not useable) crash reports
<pre>
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: Signal: 11 in PRG: /usr/bin/tvheadend (4.3-193~ga4ff519) [15a15a895adaf9c5760b80707f582c2d60cfab01] CWD: /
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: Fault address 0x90 (Address not mapped)
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: STACKTRACE
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x555558549eba 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x7f3d97c0c0c0 0x7f3d97bfb000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x555558525620 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585257a8 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585db371 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585dc1f2 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585c3212 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585bb71d 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585bb8d1 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585b4589 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585b4796 0x555558350000
Jun 6 15:01:09 plantage tvheadend[10808]: CRASH: ??:0 0x555558511e44 0x555558350000
Jun 6 15:01:09 plantage tvheadend[10808]: CRASH: ??:0 0x7f3d97c02494 0x7f3d97bfb000
Jun 6 15:01:09 plantage kernel: [2320412.837462] tvh:mi-table[11208]: segfault at 90 ip 0000555558525620 sp 00007f3d85ff0b98 error 4 in tvheadend[555558350000+10d1000]
</pre>
In this case, the debug symbols are missing (look to the top of this page).
h2. Basic crash debug
You may run tvh in gdb directly using command:
<pre>
gdb --args /the standard tvh command line/
(gdb) run
</pre>
Or attach gdb to the running process:
<pre>
gdb tvheadend pid
(gdb) continue
</pre>
The 'continue' command will continue the execution of the program. If you need to _break_ the execution and return to gdb, just use 'Ctrl-C'.
You may need to replace _tvheadend_ with the full path to the binary and you will need to replace _pid_ with the PID of the running process. To find that run:
<pre>
ps -C tvheadend
</pre>
Once you have gdb attached grab a stack trace from every thread using the following command:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) bt full
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
h2. Enabling coredumps
If you need to investigate some running problem you can always attach (see below) later and if you need to trap crashes, then you can configure your system to generate a core file and then retrospectively analyse this with gdb.
If you're running manually you should enable coredumps in your environment:
<pre>
ulimit -c unlimited
</pre>
I'd recommend you enable this permanently by putting this command in your shell initialisation scripts (.bashrc etc..).
If you're running as a daemon then you should use the -D command line option, this will enable coredumps from the daemon. If you start using sysvinit, upstart etc... then you will need to put this in the configuration file, e.g.:
<pre>
TVH_ARGS="-D"
</pre>
Finally it's probably worth changing the coredump file format, personally I use the following configuration:
<pre>
echo core.%h.%e.%t | sudo tee /proc/sys/kernel/core_pattern
echo 0 | sudo tee /proc/sys/kernel/core_uses_pid
</pre>
Or put the following in /etc/sysctl.conf:
<pre>
kernel.core_pattern = core.%h.%e.%t
kernel.core_uses_pid = 0
</pre>
If you're using a system like Ubuntu that uses apport (and cripples the ability to change the core format) just set core_uses_pid=1 instead.
Note: coredumps are (by default) stored in the current working directory, to make it possible for the daemon to write files the current working directory is set to /tmp when using -D, so check there for core files.
To verify that you have everything configured properly you can use the -A option to force a crash on startup. Do this from the command line or add to /etc/default/tvheadend:
<pre>
TVH_ARGS="-D -A"
</pre>
Note: remember to remove the option after you've tested it!
h2. Processing core file.
Once you have a core file you can start up gdb with that coredump, just as if you'd caught the crash while running under gdb:
<pre>
gdb tvheadend core
</pre>
You may need to replace _tvheadend_ and _core_ above with the proper paths.
For most crashes the most useful information is the back trace, this will provide a stack trace showing where the code crashed and the stack information at the time of the crash:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) bt full
#0 0x00007f5b10cc1425 in __GI_raise (sig=<optimised out>)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
resultvar = 0
pid = <optimised out>
selftid = 7517
#1 0x00007f5b10cc4b10 in __GI_abort () at abort.c:120
act = {__sigaction_handler = {sa_handler = 0, sa_sigaction = 0},
sa_mask = {__val = {18446744073709551615 <repeats 16 times>}},
sa_flags = 0, sa_restorer = 0}
sigs = {__val = {32, 0 <repeats 15 times>}}
#2 0x000000000040744e in main (argc=<optimised out>, argv=<optimised out>)
at src/main.c:810
i = <optimised out>
set = {__val = {16386, 0 <repeats 15 times>}}
adapter_mask = <optimised out>
log_level = <optimised out>
log_options = <optimised out>
log_debug = <optimised out>
log_trace = <optimised out>
buf = "/tmp\000\000\000\000\360\350\364\023[\177\000\000\000\320\365\023[\177\000\000t\n\327\023[\177\000\000\370\271\311\020[\177\000\000\017\000\000\000\000\000\000\000:\000\000\000\000\000\000\000h\344\364\023[\177\000\000.N=\366\000\000\000\000\236\022\327\023[\177\000\000\300\304S\205\377\177\000\000.\000\000\000\000\000\000\000 \305S\205\377\177\000\000\377\377\377\377\000\000\000\000\264\352\310\020[\177\000\000\250\354\310\020[\177\000\000\360\304S\205\377\177\000\000\360\350\364\023[\177\000\000@\256\311\020[\177", '\000' <repeats 18 times>"\340, \346\364\023[\177\000\000\000\320\365\023[\177\000\000\231,@\000\000\000\000\000\370\271\311\020[\177\000\000\340\033@\000\000\000\000\000\000\000\000\000\001\000\000\000\021\b\000\000\001", '\000' <repeats 11 times>, " \266\370\023[\177\000\000`\305S\205\377\177\000\000.N=\366\000\000\000\000\340\346\364\023[\177\000\000\200\305S\205\377\177\000\000"...
opt_help = 0
opt_version = 0
opt_fork = 1
opt_firstrun = 0
opt_stderr = 0
opt_syslog = 0
opt_uidebug = 0
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
However I'd strongly recommend that you keep a copy of tvheadend binary and core file in case further analysis is required.
h2. Dead or Live Lock
If Tvheadend appears to die but the process is still running, then its quite possible that the process is deadlocked (or possibly live locked). The best way to help investigate such a problem is to get a full stack trace from every thread in the system.
First attach gdb to the running process:
<pre>
gdb tvheadend pid
(gdb) continue
</pre>
The 'continue' command will continue the execution of the program. If you need to _break_ the execution and return to gdb, just use 'Ctrl-C'.
You may need to replace _tvheadend_ with the full path to the binary and you will need to replace _pid_ with the PID of the running process. To find that run:
<pre>
ps -C tvheadend
</pre>
Once you have gdb attached grab a stack trace from every thread using the following command:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) thread apply all bt full
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
It might also be useful to generate a core file for good measure:
<pre>
(gdb) generate-core-file
</pre>
This information may give an indication as to why things are locked, often 2 threads are stuck trying to lock a mutex (probably each holds the opposite lock).
h2. Reporting crash (or lock)
If you're going to report a crash (or lockup) then please try to provide the above information, including a debug log (or whatever logging you have), a core file and the tvheadend binary and basic information about the platform (distribution, version and architecture) you're running on.
h1. Memory leaks or corruption
It may be really difficult to track these problems. There are basically two tools which may help to discover the memory leaks or memory corruptions.
h2. Valgrind
It is very slow, but it may be useable for things which are triggered everytime:
<pre>
valgrind --leak-check=full --show-reachable=yes /tvh_command_line/
</pre>
h2. clang
There is address sanitizer in the clang toolkit. The binary must be rebuild using the clang compiler and libraries:
<pre>
ARGS="/your_configure_arguments/"
SANITIZER=address
export CFLAGS="-fsanitize=$SANITIZER"
export LDFLAGS="-fsanitize=$SANITIZER"
./configure $ARGS --disable-pie --enable-ccdebug python=python3 cc=clang ld=clang nowerror
make -j4
</pre>
Example build script (build_with_clang.sh):
<pre>
#!/bin/sh
make distclean
ARGS="--enable-libffmpeg_static --disable-hdhomerun_static"
SANITIZER=address
export CFLAGS="-fsanitize=$SANITIZER"
export LDFLAGS="-fsanitize=$SANITIZER"
./configure $ARGS --disable-pie --enable-ccdebug python=python3 cc=clang ld=clang nowerror
make -j4
</pre>
Make sure to make your script executable.
If you do not see resolved the function names like:
<pre>
==16673==WARNING: Trying to symbolize code, but external symbolizer is not initialized!
#0 0x7fcda9407680 (/home/tvh/src/tvheadend/build.linux/tvheadend+0x65b680)
#1 0x7fcda943b115 (/home/tvh/src/tvheadend/build.linux/tvheadend+0x68f115)
</pre>
get the correct path for the llvm-symbolizer, i.e. with
<pre>whereis llvm-symbolizer</pre>
then make sure that you set the external symbolizer like:
<pre>
ASAN_OPTIONS=symbolize=1 ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer /home/ts/workspace/tvheadend/build.linux/tvheadend -l thv.log
</pre>
The error log should be like:
<pre>
==27911==ERROR: AddressSanitizer: heap-use-after-free on address 0x60700000d928 at pc 0x56409f916af4 bp 0x7ffc463d6670 sp 0x7ffc463d6668
READ of size 8 at 0x60700000d928 thread T0
#0 0x56409f916af3 in idnode_unlink /home/tvh/git/tvheadend/src/idnode.c:164:94
#1 0x56409f9c9f8a in memoryinfo_unregister /home/tvh/git/tvheadend/src/memoryinfo.h:52:3
#2 0x56409f9c9de2 in streaming_done /home/tvh/git/tvheadend/src/streaming.c:597:3
</pre>
If you use the packaged version of tvheadend, make sure that you use the debug version of tvheadend (with the debugging symbols). For debian/ubuntu these packages have *_dbg* suffix, for rpm packages, these symbols are in *debuginfo* rpm files.
If you're going to be regularly trying development versions of Tvheadend or need to report a crash or deadlock then you should really read this page!
If you are investigating problems within Tvheadend then its worth being familiar with tools such as gdb and valgrind or clang, although these are not covered here.
However one thing that can be useful in investigating crashes within Tvheadend is to ensure that coredumps are generated, this will allow post analysis in gdb without having to actual run Tvheadend within gdb.
You can enable temporarily by running:
<pre>
ulimit -c unlimited
</pre>
To make this permanent put this somewhere in your shell environment setup (.bashrc, .profile, etc...)
Firstly I'd recommend that if you're specifically trying to investigate an issue then you should consider running Tvheadend manually, rather than as a service, as documented [[Development|here]].
h2. Logging
I'd strongly recommend that if you're specifically trying to investigate a crash or other problem in Tvheadend that you enable debugging:
* *-s* will output debug info to syslog
* *--debug* allows you to specify which subsystem to debug (TODO: add more info)
* *--trace* allows you to enable trace (more in-depth) logging on specific subsystems
You can also get Tvheadend to log to it's own file using:
<pre>
-l FILE
</pre>
You may also modify the debug settings using WEB GUI as admin - Configuration/Debugging. Note that the information is not saved,
it is just set for run-time (current task).
* Debug log path - filename to store log
* Debug trace - enable traces
* Debug subsystems - comma separated list of subsystems
* Trace subsystems - comma separated list of subsystems
The traces must be compiled to the tvheadend binary - see [[Traces]].
h2. Incorrect (not useable) crash reports
<pre>
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: Signal: 11 in PRG: /usr/bin/tvheadend (4.3-193~ga4ff519) [15a15a895adaf9c5760b80707f582c2d60cfab01] CWD: /
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: Fault address 0x90 (Address not mapped)
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: STACKTRACE
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x555558549eba 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x7f3d97c0c0c0 0x7f3d97bfb000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x555558525620 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585257a8 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585db371 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585dc1f2 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585c3212 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585bb71d 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:? 0x5555585bb8d1 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585b4589 0x555558350000
Jun 6 15:01:08 plantage tvheadend[10808]: CRASH: ??:0 0x5555585b4796 0x555558350000
Jun 6 15:01:09 plantage tvheadend[10808]: CRASH: ??:0 0x555558511e44 0x555558350000
Jun 6 15:01:09 plantage tvheadend[10808]: CRASH: ??:0 0x7f3d97c02494 0x7f3d97bfb000
Jun 6 15:01:09 plantage kernel: [2320412.837462] tvh:mi-table[11208]: segfault at 90 ip 0000555558525620 sp 00007f3d85ff0b98 error 4 in tvheadend[555558350000+10d1000]
</pre>
In this case, the debug symbols are missing (look to the top of this page).
h2. Basic crash debug
You may run tvh in gdb directly using command:
<pre>
gdb --args /the standard tvh command line/
(gdb) run
</pre>
Or attach gdb to the running process:
<pre>
gdb tvheadend pid
(gdb) continue
</pre>
The 'continue' command will continue the execution of the program. If you need to _break_ the execution and return to gdb, just use 'Ctrl-C'.
You may need to replace _tvheadend_ with the full path to the binary and you will need to replace _pid_ with the PID of the running process. To find that run:
<pre>
ps -C tvheadend
</pre>
Once you have gdb attached grab a stack trace from every thread using the following command:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) bt full
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
h2. Enabling coredumps
If you need to investigate some running problem you can always attach (see below) later and if you need to trap crashes, then you can configure your system to generate a core file and then retrospectively analyse this with gdb.
If you're running manually you should enable coredumps in your environment:
<pre>
ulimit -c unlimited
</pre>
I'd recommend you enable this permanently by putting this command in your shell initialisation scripts (.bashrc etc..).
If you're running as a daemon then you should use the -D command line option, this will enable coredumps from the daemon. If you start using sysvinit, upstart etc... then you will need to put this in the configuration file, e.g.:
<pre>
TVH_ARGS="-D"
</pre>
Finally it's probably worth changing the coredump file format, personally I use the following configuration:
<pre>
echo core.%h.%e.%t | sudo tee /proc/sys/kernel/core_pattern
echo 0 | sudo tee /proc/sys/kernel/core_uses_pid
</pre>
Or put the following in /etc/sysctl.conf:
<pre>
kernel.core_pattern = core.%h.%e.%t
kernel.core_uses_pid = 0
</pre>
If you're using a system like Ubuntu that uses apport (and cripples the ability to change the core format) just set core_uses_pid=1 instead.
Note: coredumps are (by default) stored in the current working directory, to make it possible for the daemon to write files the current working directory is set to /tmp when using -D, so check there for core files.
To verify that you have everything configured properly you can use the -A option to force a crash on startup. Do this from the command line or add to /etc/default/tvheadend:
<pre>
TVH_ARGS="-D -A"
</pre>
Note: remember to remove the option after you've tested it!
h2. Processing core file.
Once you have a core file you can start up gdb with that coredump, just as if you'd caught the crash while running under gdb:
<pre>
gdb tvheadend core
</pre>
You may need to replace _tvheadend_ and _core_ above with the proper paths.
For most crashes the most useful information is the back trace, this will provide a stack trace showing where the code crashed and the stack information at the time of the crash:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) bt full
#0 0x00007f5b10cc1425 in __GI_raise (sig=<optimised out>)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
resultvar = 0
pid = <optimised out>
selftid = 7517
#1 0x00007f5b10cc4b10 in __GI_abort () at abort.c:120
act = {__sigaction_handler = {sa_handler = 0, sa_sigaction = 0},
sa_mask = {__val = {18446744073709551615 <repeats 16 times>}},
sa_flags = 0, sa_restorer = 0}
sigs = {__val = {32, 0 <repeats 15 times>}}
#2 0x000000000040744e in main (argc=<optimised out>, argv=<optimised out>)
at src/main.c:810
i = <optimised out>
set = {__val = {16386, 0 <repeats 15 times>}}
adapter_mask = <optimised out>
log_level = <optimised out>
log_options = <optimised out>
log_debug = <optimised out>
log_trace = <optimised out>
buf = "/tmp\000\000\000\000\360\350\364\023[\177\000\000\000\320\365\023[\177\000\000t\n\327\023[\177\000\000\370\271\311\020[\177\000\000\017\000\000\000\000\000\000\000:\000\000\000\000\000\000\000h\344\364\023[\177\000\000.N=\366\000\000\000\000\236\022\327\023[\177\000\000\300\304S\205\377\177\000\000.\000\000\000\000\000\000\000 \305S\205\377\177\000\000\377\377\377\377\000\000\000\000\264\352\310\020[\177\000\000\250\354\310\020[\177\000\000\360\304S\205\377\177\000\000\360\350\364\023[\177\000\000@\256\311\020[\177", '\000' <repeats 18 times>"\340, \346\364\023[\177\000\000\000\320\365\023[\177\000\000\231,@\000\000\000\000\000\370\271\311\020[\177\000\000\340\033@\000\000\000\000\000\000\000\000\000\001\000\000\000\021\b\000\000\001", '\000' <repeats 11 times>, " \266\370\023[\177\000\000`\305S\205\377\177\000\000.N=\366\000\000\000\000\340\346\364\023[\177\000\000\200\305S\205\377\177\000\000"...
opt_help = 0
opt_version = 0
opt_fork = 1
opt_firstrun = 0
opt_stderr = 0
opt_syslog = 0
opt_uidebug = 0
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
However I'd strongly recommend that you keep a copy of tvheadend binary and core file in case further analysis is required.
h2. Dead or Live Lock
If Tvheadend appears to die but the process is still running, then its quite possible that the process is deadlocked (or possibly live locked). The best way to help investigate such a problem is to get a full stack trace from every thread in the system.
First attach gdb to the running process:
<pre>
gdb tvheadend pid
(gdb) continue
</pre>
The 'continue' command will continue the execution of the program. If you need to _break_ the execution and return to gdb, just use 'Ctrl-C'.
You may need to replace _tvheadend_ with the full path to the binary and you will need to replace _pid_ with the PID of the running process. To find that run:
<pre>
ps -C tvheadend
</pre>
Once you have gdb attached grab a stack trace from every thread using the following command:
<pre>
(gdb) set logging on
(gdb) set pagination off
(gdb) thread apply all bt full
</pre>
Note: "set logging on" will cause GDB to write its output to a file, by default this will be gdb.txt in the current directory.
It might also be useful to generate a core file for good measure:
<pre>
(gdb) generate-core-file
</pre>
This information may give an indication as to why things are locked, often 2 threads are stuck trying to lock a mutex (probably each holds the opposite lock).
h2. Reporting crash (or lock)
If you're going to report a crash (or lockup) then please try to provide the above information, including a debug log (or whatever logging you have), a core file and the tvheadend binary and basic information about the platform (distribution, version and architecture) you're running on.
h1. Memory leaks or corruption
It may be really difficult to track these problems. There are basically two tools which may help to discover the memory leaks or memory corruptions.
h2. Valgrind
It is very slow, but it may be useable for things which are triggered everytime:
<pre>
valgrind --leak-check=full --show-reachable=yes /tvh_command_line/
</pre>
h2. clang
There is address sanitizer in the clang toolkit. The binary must be rebuild using the clang compiler and libraries:
<pre>
ARGS="/your_configure_arguments/"
SANITIZER=address
export CFLAGS="-fsanitize=$SANITIZER"
export LDFLAGS="-fsanitize=$SANITIZER"
./configure $ARGS --disable-pie --enable-ccdebug python=python3 cc=clang ld=clang nowerror
make -j4
</pre>
Example build script (build_with_clang.sh):
<pre>
#!/bin/sh
make distclean
ARGS="--enable-libffmpeg_static --disable-hdhomerun_static"
SANITIZER=address
export CFLAGS="-fsanitize=$SANITIZER"
export LDFLAGS="-fsanitize=$SANITIZER"
./configure $ARGS --disable-pie --enable-ccdebug python=python3 cc=clang ld=clang nowerror
make -j4
</pre>
Make sure to make your script executable.
If you do not see resolved the function names like:
<pre>
==16673==WARNING: Trying to symbolize code, but external symbolizer is not initialized!
#0 0x7fcda9407680 (/home/tvh/src/tvheadend/build.linux/tvheadend+0x65b680)
#1 0x7fcda943b115 (/home/tvh/src/tvheadend/build.linux/tvheadend+0x68f115)
</pre>
get the correct path for the llvm-symbolizer, i.e. with
<pre>whereis llvm-symbolizer</pre>
then make sure that you set the external symbolizer like:
<pre>
ASAN_OPTIONS=symbolize=1 ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer /home/ts/workspace/tvheadend/build.linux/tvheadend -l thv.log
</pre>
The error log should be like:
<pre>
==27911==ERROR: AddressSanitizer: heap-use-after-free on address 0x60700000d928 at pc 0x56409f916af4 bp 0x7ffc463d6670 sp 0x7ffc463d6668
READ of size 8 at 0x60700000d928 thread T0
#0 0x56409f916af3 in idnode_unlink /home/tvh/git/tvheadend/src/idnode.c:164:94
#1 0x56409f9c9f8a in memoryinfo_unregister /home/tvh/git/tvheadend/src/memoryinfo.h:52:3
#2 0x56409f9c9de2 in streaming_done /home/tvh/git/tvheadend/src/streaming.c:597:3
</pre>