[f6069801] | 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>
|
---|
[d99c1d2] | 37 | #include <typedefs.h>
|
---|
[f6069801] | 38 | #include <symtab.h>
|
---|
[5c8de00] | 39 | #include <print.h>
|
---|
[f6069801] | 40 |
|
---|
| 41 | #define STACK_FRAMES_MAX 20
|
---|
| 42 |
|
---|
| 43 | void
|
---|
| 44 | stack_trace_fp_pc(stack_trace_ops_t *ops, uintptr_t fp, uintptr_t pc)
|
---|
| 45 | {
|
---|
| 46 | int cnt = 0;
|
---|
[a000878c] | 47 | const char *symbol;
|
---|
[f6069801] | 48 | uintptr_t offset;
|
---|
[a000878c] | 49 |
|
---|
[f6069801] | 50 | while (cnt++ < STACK_FRAMES_MAX && ops->frame_pointer_validate(fp)) {
|
---|
| 51 | if (ops->symbol_resolve &&
|
---|
| 52 | ops->symbol_resolve(pc, &symbol, &offset)) {
|
---|
| 53 | if (offset)
|
---|
| 54 | printf("%p: %s+%p()\n", fp, symbol, offset);
|
---|
| 55 | else
|
---|
| 56 | printf("%p: %s()\n", fp, symbol);
|
---|
| 57 | } else {
|
---|
| 58 | printf("%p: %p()\n", fp, pc);
|
---|
| 59 | }
|
---|
| 60 | if (!ops->return_address_get(fp, &pc))
|
---|
| 61 | break;
|
---|
| 62 | if (!ops->frame_pointer_prev(fp, &fp))
|
---|
| 63 | break;
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | void stack_trace(void)
|
---|
| 68 | {
|
---|
| 69 | stack_trace_fp_pc(&kst_ops, frame_pointer_get(), program_counter_get());
|
---|
| 70 |
|
---|
| 71 | /*
|
---|
| 72 | * Prevent the tail call optimization of the previous call by
|
---|
| 73 | * making it a non-tail call.
|
---|
| 74 | */
|
---|
| 75 | (void) frame_pointer_get();
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | void stack_trace_istate(istate_t *istate)
|
---|
| 79 | {
|
---|
| 80 | if (istate_from_uspace(istate))
|
---|
| 81 | stack_trace_fp_pc(&ust_ops, istate_get_fp(istate),
|
---|
| 82 | istate_get_pc(istate));
|
---|
| 83 | else
|
---|
| 84 | stack_trace_fp_pc(&kst_ops, istate_get_fp(istate),
|
---|
| 85 | istate_get_pc(istate));
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[a000878c] | 88 | static bool kernel_symbol_resolve(uintptr_t addr, const char **sp, uintptr_t *op)
|
---|
[f6069801] | 89 | {
|
---|
| 90 | return (symtab_name_lookup(addr, sp, op) == 0);
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | stack_trace_ops_t kst_ops = {
|
---|
| 94 | .frame_pointer_validate = kernel_frame_pointer_validate,
|
---|
| 95 | .frame_pointer_prev = kernel_frame_pointer_prev,
|
---|
| 96 | .return_address_get = kernel_return_address_get,
|
---|
| 97 | .symbol_resolve = kernel_symbol_resolve
|
---|
| 98 | };
|
---|
| 99 |
|
---|
| 100 | stack_trace_ops_t ust_ops = {
|
---|
| 101 | .frame_pointer_validate = uspace_frame_pointer_validate,
|
---|
| 102 | .frame_pointer_prev = uspace_frame_pointer_prev,
|
---|
| 103 | .return_address_get = uspace_return_address_get,
|
---|
| 104 | .symbol_resolve = NULL
|
---|
| 105 | };
|
---|
| 106 |
|
---|
| 107 | /** @}
|
---|
| 108 | */
|
---|