使用breakpad定位崩溃(windows&mac)

1 使用breakpad

1.1 安装breakpad

1.1.1 通过vcpkg安装breakpad

注:安装vcpkg时,如果报以下错误可能是电脑不能访问到vcpkg,可以多试几次:
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

1.1.1.1 windows

git clone https://github.com/microsoft/vcpkg
cd vcpkg
bootstrap-vcpkg.bat
vcpkg install breakpad:x64-windows

1.1.1.2 mac

git clone https://github.com/microsoft/vcpkg
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg install breakpad

1.2 通过cmake加载breakpad

1.2.1 cmakelists.txt

cmake_minimum_required(VERSION 3.20)

IF (WIN32)
    MESSAGE(STATUS "Now is windows")
    set(VCPKG_ROOT F:/git/vcpkg)
ELSEIF (APPLE)
    MESSAGE(STATUS "Now is Apple system.")
    set(VCPKG_ROOT /Users/hualongzhang/work/vcpkg)
ENDIF ()
set(VCPKG_CMAKE ${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake)
set(CMAKE_TOOLCHAIN_FILE ${VCPKG_CMAKE})

project(testbreakpad)

set(CMAKE_CXX_STANDARD 17)

find_package(unofficial-breakpad CONFIG REQUIRED)
link_libraries(unofficial::breakpad::libbreakpad unofficial::breakpad::libbreakpad_client)

add_executable(untitled1 main.cpp)

1.3 代码中使用breakpad

#include <iostream>
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
#include "client/windows/handler/exception_handler.h"
#elif defined(__APPLE__) && (defined(__GNUC__) || defined(__xlC__) || defined(__xlc__))
#include "client/mac/handler/exception_handler.h"
#endif


#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)

static bool minidumpCallback(const wchar_t* dump_path, const wchar_t* id,
    void* context, EXCEPTION_POINTERS* exinfo,
    MDRawAssertionInfo* assertion,
    bool succeeded)
{
    if (succeeded) {
        std::wcout << "Mini Dump file: " << id << ".dump Path: " << dump_path << std::endl;
    }
    return succeeded;
}

static google_breakpad::ExceptionHandler eh(
    L".", NULL, minidumpCallback, NULL,
    google_breakpad::ExceptionHandler::HANDLER_ALL);

#else
static bool minidumpCallback(const char* dump_path, const char* id, void* context, bool succeeded)
{
    if (succeeded) {
        std::cout << "Mini Dump file: " << id << ".dump Path: " << dump_path << std::endl;
    }
    return succeeded;
}

static google_breakpad::ExceptionHandler eh(".", NULL, minidumpCallback, NULL, true, NULL);

#endif


void testCrash()
{
    int* ptr = NULL;
    *ptr = 0;
}

int main() {
    testCrash();
    return 0;
}

1.4 build

1.4.1 cmake编译

mkdir build
cd build
cmake ..
cmake --build .

1.4.2 开发工具加载vcpkg编译

参见vcpkg总览

1.5 run

运行代码崩溃,输出:
Mini Dump file: 449BD1E3-1ECA-4968-A25B-DD6D8328D849.dump Path: .

2 排查breakpad崩溃

2.1 windows

参见:Dump调试

2.2 mac

2.2.1 编译dump_syms

打开dump_syms目录:
/Users/hualongzhang/work/vcpkg/buildtrees/breakpad/src/0b5fa7f760-4cf530ff2b.clean/src/tools/mac/dump_syms

用xcode打开dump_syms工程,我本机路径如下:
dump_syms.xcodeproj

配置release:
Product > Scheme > Edit Scheme... > Run > Info > Build Configuration,选择Release

编译,并找到生成的dump_syms,我本机路径如下:
/Users/hualongzhang/Library/Developer/Xcode/DerivedData/dump_syms-fptymbnkqoskmeasatvnedmomwzg/Build/Products/Release

拷贝dump_symsminidump_stackwalk同级目录(方便操作),我本机路径如下:
/Users/hualongzhang/work/vcpkg/buildtrees/breakpad/src/0b5fa7f760-4cf530ff2b.clean/src/processor

2.2.2 分析dump

2.2.2.1 进入processor目录

先cd到processor,即minidump_stackwalk目录:
cd /Users/hualongzhang/work/vcpkg/buildtrees/breakpad/src/0b5fa7f760-4cf530ff2b.clean/src/processor

要想查看完整的崩溃堆栈,app和dylib都得生成符号文件,现以cppdetector来示例

2.2.2.2 生成app sym

以app名称生成sym文件:
./dump_syms /Users/hualongzhang/work/cppdetector/bin/cppdetector > cppdetector.sym

查看sym的信息:

head -n1 cppdetector.sym

输出的sym信息:MODULE mac x86_64 07E8CDAF8CCA3B22849636E1AF94D4D70 cppdetector

根据二进制文件名称:cppdetector和上一步输出的:07E8CDAF8CCA3B22849636E1AF94D4D70创建目录:

mkdir -p ./symbols/cppdetector/07E8CDAF8CCA3B22849636E1AF94D4D70

将cppdetector.sym移动到新创建的目录中
mv cppdetector.sym ./symbols/cppdetector/07E8CDAF8CCA3B22849636E1AF94D4D70

2.2.2.3 生成dylib sym

./dump_syms /Users/hualongzhang/work/cppdetector/bin/libdetector_core.dylib > libdetector_core.dylib.sym
head -n1 libdetector_core.dylib.sym
mkdir -p ./symbols/libdetector_core.dylib/0E1F07DAE411385F9C409F87CDD8C9510
mv libdetector_core.dylib.sym ./symbols/libdetector_core.dylib/0E1F07DAE411385F9C409F87CDD8C9510

2.2.2.4 输出堆栈

通过minidump_stackwalk命令生成堆栈
./minidump_stackwalk /Users/hualongzhang/work/cppdetector/bin/A61B41CB-A7FE-46DD-881D-774AC907AC5C.dmp ./symbols

2.2.2.5 终端结果如下:

➜  processor git:(master) ✗ ./dump_syms /Users/hualongzhang/work/cppdetector/bin/cppdetector > cppdetector.sym
➜  processor git:(master) ✗ head -n1 cppdetector.sym
MODULE mac x86_64 07E8CDAF8CCA3B22849636E1AF94D4D70 cppdetector
➜  processor git:(master) ✗ mkdir -p ./symbols/cppdetector/07E8CDAF8CCA3B22849636E1AF94D4D70
➜  processor git:(master) ✗ mv cppdetector.sym ./symbols/cppdetector/07E8CDAF8CCA3B22849636E1AF94D4D70
➜  processor git:(master) ✗ ./dump_syms /Users/hualongzhang/work/cppdetector/bin/libdetector_core.dylib > libdetector_core.dylib.sym
➜  processor git:(master) ✗ head -n1 libdetector_core.dylib.sym
MODULE mac x86_64 0E1F07DAE411385F9C409F87CDD8C9510 libdetector_core.dylib
➜  processor git:(master) ✗ mkdir -p ./symbols/libdetector_core.dylib/0E1F07DAE411385F9C409F87CDD8C9510
➜  processor git:(master) ✗ mv libdetector_core.dylib.sym ./symbols/libdetector_core.dylib/0E1F07DAE411385F9C409F87CDD8C9510
➜  processor git:(master) ✗ ./minidump_stackwalk /Users/hualongzhang/work/cppdetector/bin/6419528F-7020-4DC1-8FB5-6B9C58395FEE.dmp ./symbols > dump.log

2.2.2.6 自动化脚本

上述示例过程如果全部手动执行及其繁琐,特别是拥有多个库的大型项目更是如此,有必要通过sh脚本将其自动化,将如下自动化脚本保存成:dumpanalyzer.sh

#!/bin/bash
 
if [ $# != 3 ] ; then 
echo "USAGE: $0 TARGET_DIR DMP_NAME OUTPUT_NAME" 
echo " e.g.: $0 appdir 4391167F-D2E0-4CD1-973D-BED11A9A7FE9.dmp callstack.log" 
exit 1; 
fi 
 
#获取输入参数
target_dir=$1
dmp_file_name=$2
output_file_name=$3

target_file_name=${target_dir##*/}
echo $target_file_name
 
getSymbol() {
    echo "@getSymbol: start get symbol: $target_dir/$target_file_name"
    ./dump\_syms $target_dir/$target_file_name > $target_file_name'.sym'
}
 
createSymDir() {
    echo "@getStackTrace: start get StackTrace"
    sym_file_name=$target_file_name'.sym'
 
    #获取符号文件中的第一行
    line1=`head -n1 $sym_file_name`
 
    #从第一行字符串中获取版本号
    OIFS=$IFS; IFS=" "; set -- $line1; aa=$1;bb=$2;cc=$3;dd=$4; IFS=$OIFS 
 
    version_number=$dd
 
    #创建特定的目录结构,并将符号文件移进去
    mkdir -p ./symbols/$target_file_name/$version_number
    mv $sym_file_name ./symbols/$target_file_name/$version_number
}

redirectStackToFile() {
    #将堆栈跟踪信息重定向到文件中
    minidump_stackwalk $dmp_file_name ./symbols > $output_file_name
}

getStackTrace() {
    for target_file_name in `ls $1`
    do
        echo "path: $target_file_name"
        getSymbol $target_file_name 
        createSymDir $target_file_name
    done

    redirectStackToFile
}
main() {
    echo $target_path
    getStackTrace $target_dir
}
 
#运行main
main

调用方式:

./dumpanalyzer.sh /Users/hualongzhang/work/cppdetector/bin /Users/hualongzhang/work/cppdetector/bin/4391167F-D2E0-4CD1-973D-BED11A9A7FE9.dmp callstack.log

第一个参数是app目录,第二个参数是dump文件路径,第三方参数是调用堆栈文件名

2.2.2.7 堆栈信息

堆栈信息如下,可以定位出崩溃的函数,但是\color{red}{在mac下还暂时还不清楚如何定位到行号,有了解的欢迎和我联系红色字体}

Operating system: Mac OS X
                  11.1.0 20C69
CPU: amd64
     family 6 model 158 stepping 10
     12 CPUs

GPU: UNKNOWN

Crash reason:  EXC_BAD_ACCESS / KERN_INVALID_ADDRESS
Crash address: 0x0
Process uptime: 0 seconds

Thread 0 (crashed)
 0  libdetector_core.dylib!CPPPath::CPPPath(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 0x55
    rax = 0x0000000000000000   rdx = 0x00007ffeea448ee8
    rcx = 0x00007ffeea4491c0   rbx = 0x0000000000000000
    rsi = 0x00007ffeea448ef0   rdi = 0x00007ffeea4491d8
    rbp = 0x00007ffeea449160   rsp = 0x00007ffeea448f70
     r8 = 0x0000000000000005    r9 = 0x0000000000000005
    r10 = 0x00007fcc64500000   r11 = 0x0000000000000000
    r12 = 0x0000000000000000   r13 = 0x0000000000000000
    r14 = 0x0000000000000000   r15 = 0x0000000000000000
    rip = 0x00000001058ad4f5
    Found by: given as instruction pointer in context
 1  libdetector_core.dylib!CPPPath::CPPPath(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 0x1d
    rbp = 0x00007ffeea449180   rsp = 0x00007ffeea449170
    rip = 0x00000001058ade7d
    Found by: previous frame's frame pointer
 2  libdetector_core.dylib!DetectorContext::makePathPairFromDir(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 0x41
    rbp = 0x00007ffeea449210   rsp = 0x00007ffeea449190
    rip = 0x00000001059378b1
    Found by: previous frame's frame pointer
 3  libdetector_core.dylib!DetectorContext::detect(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 0xa9
    rbp = 0x00007ffeea449300   rsp = 0x00007ffeea449220
    rip = 0x0000000105937199
    Found by: previous frame's frame pointer
 4  libdetector_core.dylib!DetectorContext::detectWithRuleNames(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > > > const&) + 0x1e0
    rbp = 0x00007ffeea449490   rsp = 0x00007ffeea449310
    rip = 0x00000001059367d0
    Found by: previous frame's frame pointer
 5  libdetector_core.dylib!DetectorContext::detectAll(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 0x64
    rbp = 0x00007ffeea449510   rsp = 0x00007ffeea4494a0
    rip = 0x00000001059365b4
    Found by: previous frame's frame pointer
 6  cppdetector!main + 0xcdf
    rbp = 0x00007ffeea449a00   rsp = 0x00007ffeea449520
    rip = 0x00000001057bc15f
    Found by: previous frame's frame pointer
 7  libdyld.dylib + 0x15621
    rbp = 0x00007ffeea449a10   rsp = 0x00007ffeea449a10
    rip = 0x00007fff20379621
    Found by: previous frame's frame pointer

Loaded modules:
0x1057b6000 - 0x1057e9fff  cppdetector  ???  (main)
0x105860000 - 0x105bbffff  libdetector_core.dylib  ???
0x7fff20094000 - 0x7fff20095fff  libsystem_blocks.dylib  ???
0x7fff20096000 - 0x7fff200cbfff  libxpc.dylib  ???
0x7fff200cc000 - 0x7fff200e3fff  libsystem_trace.dylib  ???
0x7fff200e4000 - 0x7fff20182fff  libcorecrypto.dylib  ???
0x7fff20183000 - 0x7fff201affff  libsystem_malloc.dylib  ???
0x7fff201b0000 - 0x7fff201f4fff  libdispatch.dylib  ???
0x7fff201f5000 - 0x7fff2022dfff  libobjc.A.dylib  ???
0x7fff2022e000 - 0x7fff20230fff  libsystem_featureflags.dylib  ???
0x7fff20231000 - 0x7fff202b9fff  libsystem_c.dylib  ???
0x7fff202ba000 - 0x7fff2030ffff  libc++.1.dylib  ???
0x7fff20310000 - 0x7fff20328fff  libc++abi.dylib  ???
0x7fff20329000 - 0x7fff20357fff  libsystem_kernel.dylib  ???
0x7fff20358000 - 0x7fff20363fff  libsystem_pthread.dylib  ???
0x7fff20364000 - 0x7fff2039efff  libdyld.dylib  ???  (WARNING: No symbols, libdyld.dylib, 000000000000000000000000000000000)
0x7fff2039f000 - 0x7fff203a8fff  libsystem_platform.dylib  ???
0x7fff203a9000 - 0x7fff203d4fff  libsystem_info.dylib  ???
0x7fff203d5000 - 0x7fff20870fff  CoreFoundation  ???
0x7fff2255f000 - 0x7fff227c0fff  libicucore.A.dylib  ???
0x7fff227c1000 - 0x7fff227cafff  libsystem_darwin.dylib  ???
0x7fff22bdb000 - 0x7fff22be6fff  libsystem_notify.dylib  ???
0x7fff24b36000 - 0x7fff24b44fff  libsystem_networkextension.dylib  ???
0x7fff24ba2000 - 0x7fff24bb8fff  libsystem_asl.dylib  ???
0x7fff262a0000 - 0x7fff262a7fff  libsystem_symptoms.dylib  ???
0x7fff282f2000 - 0x7fff28302fff  libsystem_containermanager.dylib  ???
0x7fff28ffe000 - 0x7fff29001fff  libsystem_configuration.dylib  ???
0x7fff29002000 - 0x7fff29006fff  libsystem_sandbox.dylib  ???
0x7fff29d09000 - 0x7fff29d0bfff  libquarantine.dylib  ???
0x7fff2a28a000 - 0x7fff2a28efff  libsystem_coreservices.dylib  ???
0x7fff2a4a5000 - 0x7fff2a4ecfff  libsystem_m.dylib  ???
0x7fff2a4ee000 - 0x7fff2a4f3fff  libmacho.dylib  ???
0x7fff2a510000 - 0x7fff2a51bfff  libcommonCrypto.dylib  ???
0x7fff2a51c000 - 0x7fff2a526fff  libunwind.dylib  ???
0x7fff2a527000 - 0x7fff2a52efff  liboah.dylib  ???
0x7fff2a52f000 - 0x7fff2a539fff  libcopyfile.dylib  ???
0x7fff2a53a000 - 0x7fff2a541fff  libcompiler_rt.dylib  ???
0x7fff2a542000 - 0x7fff2a544fff  libsystem_collections.dylib  ???
0x7fff2a545000 - 0x7fff2a547fff  libsystem_secinit.dylib  ???
0x7fff2a548000 - 0x7fff2a54afff  libremovefile.dylib  ???
0x7fff2a54b000 - 0x7fff2a54bfff  libkeymgr.dylib  ???
0x7fff2a54c000 - 0x7fff2a553fff  libsystem_dnssd.dylib  ???
0x7fff2a554000 - 0x7fff2a559fff  libcache.dylib  ???
0x7fff2a55a000 - 0x7fff2a55bfff  libSystem.B.dylib  ???
0x7fff2a55c000 - 0x7fff2a55ffff  libfakelink.dylib  ???
0x7fff2a560000 - 0x7fff2a560fff  SoftLinking  ???
0x7fff2d98d000 - 0x7fff2d98dfff  liblaunch.dylib  ???
0x7fff2fe3a000 - 0x7fff2fe3afff  libsystem_product_info_filter.dylib  ???
0x7fff5dc88000 - 0x7fff5dc97fff  libSimplifiedChineseConverter.dylib  ???

备注:
找到模块的符号文件,输出如下:

0x1057b6000 - 0x1057e9fff  cppdetector  ???  (main)
0x105860000 - 0x105bbffff  libdetector_core.dylib  ???

没有找到模块的符号文件会输出:
libdyld.dylib ??? (WARNING: No symbols, libdyld.dylib, 000000000000000000000000000000000)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,088评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,715评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,361评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,099评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 60,987评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,063评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,486评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,175评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,440评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,518评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,305评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,190评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,550评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,880评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,152评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,451评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,637评论 2 335

推荐阅读更多精彩内容