我正在尝试调试clang
with检测到的内存错误asan
,但valgrind
. 但我无法让我clang
构建的二进制文件为我提供任何有用的调试信息。我可以用一个简短的测试程序来证明这一点:
#include <stdlib.h>
#include <string.h>
int main(void)
{
char *a = malloc(8);
memset(a, 0, 9);
free(a);
return 0;
}
(很明显这个错误会被 发现valgrind
,纯粹是为了说明问题clang
。)
我用 Clang 3.4-1ubuntu1 编译它,如下所示:
clang -fsanitize=address -fno-sanitize-recover -o test -O0 -g test.c
果然,./test
中止,我看到一些调试信息:
==3309==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60200000eff8 at pc 0x43e950 bp 0x7fff168724f0 sp 0x7fff168724e8
WRITE of size 9 at 0x60200000eff8 thread T0
#0 0x43e94f (/home/jason/Code/astest/test+0x43e94f)
#1 0x7faa43c47de4 (/lib/x86_64-linux-gnu/libc.so.6+0x21de4)
#2 0x43e6ac (/home/jason/Code/astest/test+0x43e6ac)
0x60200000eff8 is located 0 bytes to the right of 8-byte region [0x60200000eff0,0x60200000eff8)
allocated by thread T0 here:
#0 0x42cc25 (/home/jason/Code/astest/test+0x42cc25)
#1 0x43e874 (/home/jason/Code/astest/test+0x43e874)
#2 0x7faa43c47de4 (/lib/x86_64-linux-gnu/libc.so.6+0x21de4)
但我真正想知道的是发生错误的行号,以及分配内存的位置。
如何从clang
+获取此信息asan
?