Tagged Questions

31
votes
11answers
25k views

How can one grab a stack trace in C?

I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.) Thanks for ...
17
votes
5answers
901 views

C - how can I invoke buffer overflow [hw problem, not hacking]?

I got a hw assignment asking me to invoke a function without explicitly calling it, using buffer overflow. The code is basically this: #include <stdio.h> #include <stdlib.h> void g() { ...
16
votes
4answers
2k views

How it's better to invoke gdb from program to print it's stacktrace?

Now I'm using function like this: #include <stdio.h> #include <stdlib.h> #include <sys/wait.h> #include <unistd.h> void print_trace() { char pid_buf[30]; ...
6
votes
2answers
122 views

Can an application programmatically generate its own stacktrace?

I have a program written in C that runs on Linux, MacOS and Windows. Is there a way I can call a function and generate a stack trace? This would be super-useful for me. Ideally I'd like to do it on ...
5
votes
1answer
748 views

Get stack backtrace of a running process

I'm trying to get the stack backtrace of a running process (PID and binary path are known) from another program. The program in question is written in C++ and compiled with g++ with gdb debugging ...
5
votes
2answers
615 views

Is DbgHelp.dll built-in to Windows? Can I rely on it being there?

I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL. It relies on DbgHelp.dll Is DbgHelp.dll built-in to Windows Vista, WS2008, ...
4
votes
3answers
4k views

How do I obtain a stack trace on Windows without using dbghelp.dll?

How do I obtain a stack trace of addresses on Windows without using dbghelp.dll? I don't need to know what the symbols or function names associated with the addresses, I just want the list of ...
3
votes
3answers
924 views

Stack unwinding on HP-UX and Linux

I need to get the stack information of my C application in certain points. I've read the documentation and searched the Net but still cannot figure out how I can do it. Can you point to a simple ...
2
votes
2answers
125 views

How to map function address to function in *.so files

backtrace function give set of backtrace how to map it with function name/file name/line number? for ex:- backtrace() returned 8 addresses ./libtst.so(myfunc5+0x2b) [0xb7767767] ...
2
votes
5answers
138 views

Stack trace running UNIX application

How can I perform a live stack trace on a running UNIX applicaiton, and are there any utilities that are useful in digesting the stack trace once its done? I'm looking to see if any functions are ...
2
votes
0answers
422 views

How to get fullstacktrace using _Unwind_Backtrace on SIGSEGV

I handle SIGSEGV by code: int C() { int *i = NULL; *i = 10; // Crash there } int B() { return C(); } int A() { return B(); } int main(void) { struct sigaction handler; ...
1
vote
1answer
238 views

backtrace() function during fault (SIGSEGV) signal handler

I have read (see here) that "common practice" to print a stack trace using backtrace() during a fault signal handler (e.g. when handling SIGSEGV) under Linux is to: 1 Get the instruction pointer (EIP ...
1
vote
1answer
431 views

How to get BACKTRACE (function + line number) on Solaris?

I have done some code in C that happily send the full backtrace with function name and line number to a log file. This was done using a mixture of backtrace, backtrace_symbols and dladdr and ...
1
vote
2answers
183 views

use callback function to report stack backtrace

Assume I have the following: typedef struct { char *name; char binding; int address; } Fn_Symbol //definition of function symbol static Fn_Symbol *fnSymbols; //array of ...
1
vote
2answers
132 views

Call Tracing Windows Driver

I wish to be able to record, in real time, the activity of a kernel mode driver (I have the full symbols for it). It's a HID miniclass driver. I wish to record the execution of calls in this driver ...
0
votes
1answer
57 views

Using libunwind on HP-UX and getting stacktrace

I have a C application that is executing in an HP-UX environment and I need to get the stacktrace. I am attempting to use U_STACK_TRACE, but output to stderr is going somewhere else and I need it ...
0
votes
1answer
220 views

help understanding stack trace: “#0 0x00000000 in ?? ()”

I am attempting to debug an Android application that uses native C code. I was able to setup GDB and get a stack trace of where I am segfaulting. I understand the stack trace up until the top most ...
0
votes
1answer
130 views

How do I find out the allocated memory (both the address and its size) for a given C function and the variables declared inside it?

If I have simple C program with just one main function. How do I find out the address of the block the code is allocated The size of the block of memory that the process is assigned ? The status ...
-1
votes
1answer
96 views

gcc C ***stack smashing detected*** array

The line of code causing the problem is char command_tb_temp[][1000]={"gcc -Wall ","-o3 -ftree-ccp -fno-align-jumps "," Scripts/*.c -o output -lm && time -f \"%e\" -o TB.log ./output 1.dat"}; ...