2018-11-16 14:47:21 +01:00
|
|
|
#include "stack.h"
|
2019-05-17 09:35:23 +02:00
|
|
|
#include "klibc.h"
|
2020-04-27 00:14:37 +02:00
|
|
|
#include "types.h"
|
2018-11-16 14:47:21 +01:00
|
|
|
|
2018-11-19 13:56:19 +01:00
|
|
|
void printStackTrace(unsigned int maxFrames)
|
|
|
|
{
|
2018-11-16 14:47:21 +01:00
|
|
|
#ifdef DEBUG
|
2020-04-27 00:14:37 +02:00
|
|
|
// Now on Stack:
|
|
|
|
// ( potential second function argument )
|
|
|
|
// first function argument (maxFrames)
|
|
|
|
// return address from caller
|
|
|
|
// EBP (Extended Base Pointer) of calling function
|
|
|
|
//
|
|
|
|
// retrace function from address could done by optaining function address with gdb or
|
|
|
|
// objdump -S kernel
|
|
|
|
unsigned int *ebp = __builtin_frame_address(0);
|
|
|
|
for (unsigned int frame = 0; frame < maxFrames; frame++) {
|
|
|
|
unsigned int eip = ebp[1];
|
|
|
|
if (eip == 0) {
|
|
|
|
// No caller on stack
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
unsigned int *arguments = ebp + 2;
|
|
|
|
printf("[%d] 0x%x (", frame, eip);
|
|
|
|
int nbArg = 0;
|
|
|
|
do {
|
|
|
|
if ((_stack_bottom <= (vaddr_t)arguments) && ((vaddr_t)arguments <= _stack_top)) {
|
|
|
|
printf(" 0x%x", *arguments);
|
|
|
|
arguments += 1;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nbArg++;
|
|
|
|
if (nbArg >= 4) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
printf(")\n");
|
|
|
|
ebp = (unsigned int *)(ebp[0]);
|
|
|
|
}
|
2018-11-16 14:47:21 +01:00
|
|
|
#else
|
2020-04-27 00:14:37 +02:00
|
|
|
printf("Must be compiled with -fno-omit-frame-pointer for full stack\n");
|
|
|
|
unsigned int *ebp = &maxFrames - 2;
|
|
|
|
unsigned int eip = ebp[1];
|
|
|
|
printf("[0] 0x%x\n", eip);
|
2018-11-16 14:47:21 +01:00
|
|
|
#endif
|
|
|
|
}
|