這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
寫一個錯誤的c程式
package dlsymimport "testing"func Test_intercept(t *testing.T) { Intercept("gethostbyname\x00")}
package dlsym// #cgo CFLAGS: -I.// #include <stddef.h>// #include "dlsym_wrapper.h"import "C"import "unsafe"func Intercept(symbol string) { ptr := unsafe.Pointer(&([]byte(symbol)[0])) C.intercept((*C.char)(ptr), C.size_t(len(symbol)))}
#include <dlfcn.h>#include <stddef.h>#include <stdio.h>void intercept(char *symbol, size_t symbol_len) { symbol = NULL; // will cause SIGSEGV printf("%s\n", symbol); fflush(stdout);}
編譯測試為可執行檔
go test -c github.com/taowen/go-lib c/dlsym# will produce executable dlsym.test
這個是用於分析coredump的時候獲得符號表使用的。
執行測試,獲得coredump
GOTRACEBACK=crash ./dlsym.test# produced /tmp/core_dlsym.test.29937
如果找不到coredump的位置,執行之前先設定好coredump的寫出條件
echo '/tmp/core_%e.%p' | sudo tee /proc/sys/kernel/core_patternulimit -c unlimited # coredump can be any large
用gdb分析coredump
gdb dlsym.test /tmp/core_dlsym.test /tmp/core_dlsym.test.29937