program 내부에서의 backtrace 방안에 대한 질문.

air74의 이미지

안녕 하세요.

자동으로프로그램 내에서의 fault 나 필요한 경우 backtrace 기능을 구현 해야 합니다. (오해의 소지가 있겠지만 core 발생시 자동으로 display 되도록 해야 합니다. 개별적으로 프로그램 돌리다 core 가 발생하면 다시 GDB를 수행 하여 CORE file 을 열어서 bt 를 수행 하지 않고 프로그램내에서 자동으로.. )

모 좋은 방안 없을까요?

GLIBC 에서 제공하는 backtrace() 함수등을 이용하여 구현을 해보았더니 display 되는 정보가 자세하지 못 하더라구요. GDB 에서의 backtrace 한것과 같은 자세한 정보를 display 할 수 있는 방법이 없을까요?

다음은 backtrace 함수를 이용한 구현 인데. GDB 의 bt 와 많은 차이를 보입니다.

#include <execinfo.h>
#include <stdio.h>
#include <stdlib.h>

/* obtain a backtrace and print it to stdout */

void print_trace(void)
{
void *array[10];
size_t size;
char **strings;
size_t i;

size = backtrace(array, 10);
strings = backtrace_symbols(array, size);

printf("[BACKTRACE] obatining %zd stack frames !! \n", size);

for(i = 0; i < size; i++)
printf("%s\n", strings[i]);

free(strings);
}

void dummy_function(void)
{
print_trace();
}

int main(void)
{
dummy_function();
return 0;
}

그럼 여러 고수님들의 조언 기다리겠습니다.
감사 합니다. :shock:

saxboy의 이미지

심벌을 직접 다루는 것이외에는 어떤 방법이 있을 수 있는지 전혀 느낌이 없군요. 메모리 디버거들은 기본적으로 스택과 심벌을 찾아보여주게 되어 있으니 yamd같은 비교적 간단한 메모리 디버거를 찾아보시면 도움이 될 것 같습니다.
아니면 제가 써본 적은 없지만 libgdb 같은 것이 (아마 사용법은 조금 어려울 것 같지만) 괜찮지 않을까요.

softgear의 이미지

링크할때(단일파일일 경우 컴파일할때) -rdynamic 이라는 옵션을 넣지 않으면, 실행결과가 다음과 같이 나옵니다.

Quote:
[BACKTRACE] obatining 5 stack frames !!
./bt(backtrace_symbols+0xd4) [0x8048400]
./bt(backtrace_symbols+0x155) [0x8048481]
./bt(backtrace_symbols+0x16d) [0x8048499]
./bt(__libc_start_main+0xa4) [0x420158d4]
./bt(backtrace_symbols+0x31) [0x804835d]

그러나 -rdynamic 옵션을 넣으면, 실행결과가 다음과 같이 나옵니다.

Quote:
[BACKTRACE] obatining 5 stack frames !!
./bt(print_trace+0x14) [0x8048608]
./bt(dummy_function+0xb) [0x8048689]
./bt(main+0x15) [0x80486a1]
./bt(__libc_start_main+0xa4) [0x420158d4]
./bt(backtrace_symbols+0x31) [0x8048565]

뭐 이정도면 훌륭하지 않나요? 8)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.