hc
2024-08-14 93e8ba98c407598d13d8ade71bc7802acfb19c58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * Stack trace utility for OpenRISC
 *
 * Copyright (C) 2017 Stafford Horne <shorne@gmail.com>
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2.  This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 *
 * Losely based on work from sh and powerpc.
 */
 
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/sched/debug.h>
#include <linux/sched/task_stack.h>
#include <linux/stacktrace.h>
 
#include <asm/processor.h>
#include <asm/unwinder.h>
 
/*
 * Save stack-backtrace addresses into a stack_trace buffer.
 */
static void
save_stack_address(void *data, unsigned long addr, int reliable)
{
   struct stack_trace *trace = data;
 
   if (!reliable)
       return;
 
   if (trace->skip > 0) {
       trace->skip--;
       return;
   }
 
   if (trace->nr_entries < trace->max_entries)
       trace->entries[trace->nr_entries++] = addr;
}
 
void save_stack_trace(struct stack_trace *trace)
{
   unwind_stack(trace, (unsigned long *) &trace, save_stack_address);
}
EXPORT_SYMBOL_GPL(save_stack_trace);
 
static void
save_stack_address_nosched(void *data, unsigned long addr, int reliable)
{
   struct stack_trace *trace = (struct stack_trace *)data;
 
   if (!reliable)
       return;
 
   if (in_sched_functions(addr))
       return;
 
   if (trace->skip > 0) {
       trace->skip--;
       return;
   }
 
   if (trace->nr_entries < trace->max_entries)
       trace->entries[trace->nr_entries++] = addr;
}
 
void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
{
   unsigned long *sp = NULL;
 
   if (!try_get_task_stack(tsk))
       return;
 
   if (tsk == current)
       sp = (unsigned long *) &sp;
   else {
       unsigned long ksp;
 
       /* Locate stack from kernel context */
       ksp = task_thread_info(tsk)->ksp;
       ksp += STACK_FRAME_OVERHEAD;    /* redzone */
       ksp += sizeof(struct pt_regs);
 
       sp = (unsigned long *) ksp;
   }
 
   unwind_stack(trace, sp, save_stack_address_nosched);
 
   put_task_stack(tsk);
}
EXPORT_SYMBOL_GPL(save_stack_trace_tsk);
 
void
save_stack_trace_regs(struct pt_regs *regs, struct stack_trace *trace)
{
   unwind_stack(trace, (unsigned long *) regs->sp,
            save_stack_address_nosched);
}
EXPORT_SYMBOL_GPL(save_stack_trace_regs);