golang 調用 cgo coredump 獲得方法

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

寫一個錯誤的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
  • bt full 查看所有的frame

  • frame <number> 查看指定的frame

  • print <symbol> 查看指定的變數的值

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.