~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/kernel/unwind_guess.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 #include <linux/sched.h>
  3 #include <linux/ftrace.h>
  4 #include <asm/ptrace.h>
  5 #include <asm/bitops.h>
  6 #include <asm/stacktrace.h>
  7 #include <asm/unwind.h>
  8 
  9 unsigned long unwind_get_return_address(struct unwind_state *state)
 10 {
 11         unsigned long addr;
 12 
 13         if (unwind_done(state))
 14                 return 0;
 15 
 16         addr = READ_ONCE_NOCHECK(*state->sp);
 17 
 18         return unwind_recover_ret_addr(state, addr, state->sp);
 19 }
 20 EXPORT_SYMBOL_GPL(unwind_get_return_address);
 21 
 22 unsigned long *unwind_get_return_address_ptr(struct unwind_state *state)
 23 {
 24         return NULL;
 25 }
 26 
 27 bool unwind_next_frame(struct unwind_state *state)
 28 {
 29         struct stack_info *info = &state->stack_info;
 30 
 31         if (unwind_done(state))
 32                 return false;
 33 
 34         do {
 35                 for (state->sp++; state->sp < info->end; state->sp++) {
 36                         unsigned long addr = READ_ONCE_NOCHECK(*state->sp);
 37 
 38                         if (__kernel_text_address(addr))
 39                                 return true;
 40                 }
 41 
 42                 state->sp = PTR_ALIGN(info->next_sp, sizeof(long));
 43 
 44         } while (!get_stack_info(state->sp, state->task, info,
 45                                  &state->stack_mask));
 46 
 47         return false;
 48 }
 49 EXPORT_SYMBOL_GPL(unwind_next_frame);
 50 
 51 void __unwind_start(struct unwind_state *state, struct task_struct *task,
 52                     struct pt_regs *regs, unsigned long *first_frame)
 53 {
 54         memset(state, 0, sizeof(*state));
 55 
 56         state->task = task;
 57         state->sp   = PTR_ALIGN(first_frame, sizeof(long));
 58 
 59         get_stack_info(first_frame, state->task, &state->stack_info,
 60                        &state->stack_mask);
 61 
 62         /*
 63          * The caller can provide the address of the first frame directly
 64          * (first_frame) or indirectly (regs->sp) to indicate which stack frame
 65          * to start unwinding at.  Skip ahead until we reach it.
 66          */
 67         if (!unwind_done(state) &&
 68             (!on_stack(&state->stack_info, first_frame, sizeof(long)) ||
 69             !__kernel_text_address(*first_frame)))
 70                 unwind_next_frame(state);
 71 }
 72 EXPORT_SYMBOL_GPL(__unwind_start);
 73 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php