zoukankan      html  css  js  c++  java
  • (转载)在C/C++程序里打印调用栈信息

    (转载)http://blog.csdn.net/ctthunagchneg/article/details/8926543

    我们知道,GDB的backtrace命令可以查看堆栈信息。但很多时候,GDB根本用不上。比如说,在线上环境中可能没有GDB,即使有,也不太可能让我们直接在上面调试。如果能让程序自己输出调用栈,那是最好不过了。本文介绍和调用椎栈相关的几个函数。

    NAME
           backtrace, backtrace_symbols, backtrace_symbols_fd - support for application self-debugging
    
    SYNOPSIS
           #include <execinfo.h>
    
           int backtrace(void **buffer, int size);
    
           char **backtrace_symbols(void *const *buffer, int size);
    
           void backtrace_symbols_fd(void *const *buffer, int size, int fd);

    以上内容源自这几个函数的man手册。

    先简单介绍一下这几个函数的功能:

    l backtrace:获取当前的调用栈信息,结果存储在buffer中,返回值为栈的深度,参数size限制栈的最大深度,即最大取size步的栈信息。

    l backtrace_symbols:把backtrace获取的栈信息转化为字符串,以字符指针数组的形式返回,参数size限定转换的深度,一般用backtrace调用的返回值。

    l backtrace_symbols_fd:它的功能和backtrace_symbols差不多,只不过它不把转换结果返回给调用方,而是写入fd指定的文件描述符。

    Man手册里,给出了一个简单的实例,我们看一下:

    #include<execinfo.h>
    #include<stdio.h>
    #include<stdlib.h>
    #include<unistd.h>
    
    void myfunc3(void)
    {
       int j, nptrs;
       #define SIZE 100
       void *buffer[100];
       char **strings;
    
       nptrs = backtrace(buffer, SIZE);
       printf("backtrace() returned %d addresses\n", nptrs);
    
       /* The call backtrace_symbols_fd(buffer, nptrs, STDOUT_FILENO)
        *  would produce similar output to the following: */
     
       strings = backtrace_symbols(buffer, nptrs);
       if (strings == NULL) {
           perror("backtrace_symbols");
           exit(EXIT_FAILURE);
       }
     
       for (j = 0; j < nptrs; j++)
           printf("%s\n", strings[j]);
       free(strings);
    }
    
    static void  /* "static" means don't export the symbol... */
    myfunc2(void)
    {
       myfunc3();
    }
    
    void myfunc(int ncalls)
    {
       if (ncalls > 1)
           myfunc(ncalls - 1);
       else
           myfunc2();
    }
    
    int main(int argc,char *argv[])
    {
       if (argc != 2) {
           fprintf(stderr,"%s num-calls\n", argv[0]);
           exit(EXIT_FAILURE);
       }
       myfunc(atoi(argv[1]));
    
       exit(EXIT_SUCCESS);
    }
    编译:
    # cc prog.c -o prog
    运行:
    # ./prog 0
    backtrace() returned 6 addresses
    ./prog() [0x80485a3]
    ./prog() [0x8048630]
    ./prog() [0x8048653]
    ./prog() [0x80486a7]

    这样,是输出了调用栈,不过只是以十六进制输出函数地址而已,可读性很差。仔细看下man手册,原来很简单,编译时加上个参数:

    重新编译:

    # cc -rdynamic  prog.c -o prog
    通过gcc手册,我们可以也解下参数的说明:
    -rdynamic
               Pass the flag -export-dynamic to the ELF linker, on targets that support it. 
    This instructs the linker to add all symbols, not only used ones, to the dynamic symbol table.
    This option is needed for some uses of "dlopen" or to allow obtaining backtraces from within a program. 再执行: # ./prog 0 backtrace() returned 6 addresses ./prog(myfunc3+0x1f) [0x8048763] ./prog() [0x80487f0] ./prog(myfunc+0x21) [0x8048813] ./prog(main+0x52) [0x8048867] /lib/libc.so.6(__libc_start_main+0xe6) [0xaf9cc6] ./prog() [0x80486b1] 这回,可以看到函数名了。是不是很酷呢?把它封装到你的调试代码中吧。
  • 相关阅读:
    Poj2516 最小费用最大流
    spss研究高等院校人文社会研究课题受什么因素影响
    使用bs4实现将诗词名句网站中三国演义小说章节内容爬取
    python爬虫1 爬虫概要
    解析出所有城市名称
    xpath爬取58二手房的房源信息
    Po两段小代码,说几个小细节____关于九九乘法表&amp;amp;amp;国际象棋棋盘
    小爬虫demo——爬取“妹子”等网站链接____使用requests库
    爬取京东历史图书图片并下载到本地____requests库
    python基础:复习整理笔记(一)____关于 工具、程序执行原理、python风格规范
  • 原文地址:https://www.cnblogs.com/Robotke1/p/3092824.html
Copyright © 2011-2022 走看看