source: mainline/kernel/generic/src/debug/stacktrace.c@ f6069801

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f6069801 was f6069801, checked in by Jakub Jermar <jakub@…>, 15 years ago

Add generic support for kernel stack traces.
One can print "synchronous" stack traces or stack traces
based on istate information (both kernel and uspace stacks).
Kernel stack traces resolve addresses to symbols, if symbols
are included in the kernel.

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/*
2 * Copyright (c) 2009 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup genericdebug
30 * @{
31 */
32/** @file
33 */
34
35#include <stacktrace.h>
36#include <interrupt.h>
37#include <arch/types.h>
38#include <symtab.h>
39
40#define STACK_FRAMES_MAX 20
41
42void
43stack_trace_fp_pc(stack_trace_ops_t *ops, uintptr_t fp, uintptr_t pc)
44{
45 int cnt = 0;
46 char *symbol;
47 uintptr_t offset;
48
49 while (cnt++ < STACK_FRAMES_MAX && ops->frame_pointer_validate(fp)) {
50 if (ops->symbol_resolve &&
51 ops->symbol_resolve(pc, &symbol, &offset)) {
52 if (offset)
53 printf("%p: %s+%p()\n", fp, symbol, offset);
54 else
55 printf("%p: %s()\n", fp, symbol);
56 } else {
57 printf("%p: %p()\n", fp, pc);
58 }
59 if (!ops->return_address_get(fp, &pc))
60 break;
61 if (!ops->frame_pointer_prev(fp, &fp))
62 break;
63 }
64}
65
66void stack_trace(void)
67{
68 stack_trace_fp_pc(&kst_ops, frame_pointer_get(), program_counter_get());
69
70 /*
71 * Prevent the tail call optimization of the previous call by
72 * making it a non-tail call.
73 */
74 (void) frame_pointer_get();
75}
76
77void stack_trace_istate(istate_t *istate)
78{
79 if (istate_from_uspace(istate))
80 stack_trace_fp_pc(&ust_ops, istate_get_fp(istate),
81 istate_get_pc(istate));
82 else
83 stack_trace_fp_pc(&kst_ops, istate_get_fp(istate),
84 istate_get_pc(istate));
85}
86
87static bool kernel_symbol_resolve(uintptr_t addr, char **sp, uintptr_t *op)
88{
89 return (symtab_name_lookup(addr, sp, op) == 0);
90}
91
92stack_trace_ops_t kst_ops = {
93 .frame_pointer_validate = kernel_frame_pointer_validate,
94 .frame_pointer_prev = kernel_frame_pointer_prev,
95 .return_address_get = kernel_return_address_get,
96 .symbol_resolve = kernel_symbol_resolve
97};
98
99stack_trace_ops_t ust_ops = {
100 .frame_pointer_validate = uspace_frame_pointer_validate,
101 .frame_pointer_prev = uspace_frame_pointer_prev,
102 .return_address_get = uspace_return_address_get,
103 .symbol_resolve = NULL
104};
105
106/** @}
107 */
Note: See TracBrowser for help on using the repository browser.