forked from luck/tmp_suning_uos_patched
196779b9b4
Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid, utsname and so on - in addition to the backtrace while the two are identical on other archs. The usages in arch-independent code of the two functions indicate show_stack(NULL, NULL) should print out bare backtrace while dump_stack() is used for debugging purposes when something went wrong, so it does make sense to print additional information on the task which triggered dump_stack(). There's no reason to require archs to implement two separate but mostly identical functions. It leads to unnecessary subtle information. This patch expands the dummy fallback dump_stack() implementation in lib/dump_stack.c such that it prints out debug information (taken from x86) and invokes show_stack(NULL, NULL) and drops arch-specific dump_stack() implementations in all archs except blackfin. Blackfin's dump_stack() does something wonky that I don't understand. Debug information can be printed separately by calling dump_stack_print_info() so that arch-specific dump_stack() implementation can still emit the same debug information. This is used in blackfin. This patch brings the following behavior changes. * On some archs, an extra level in backtrace for show_stack() could be printed. This is because the top frame was determined in dump_stack() on those archs while generic dump_stack() can't do that reliably. It can be compensated by inlining dump_stack() but not sure whether that'd be necessary. * Most archs didn't use to print debug info on dump_stack(). They do now. An example WARN dump follows. WARNING: at kernel/workqueue.c:4841 init_workqueues+0x35/0x505() Hardware name: empty Modules linked in: CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.9.0-rc1-work+ #9 0000000000000009 ffff88007c861e08 ffffffff81c614dc ffff88007c861e48 ffffffff8108f50f ffffffff82228240 0000000000000040 ffffffff8234a03c 0000000000000000 0000000000000000 0000000000000000 ffff88007c861e58 Call Trace: [<ffffffff81c614dc>] dump_stack+0x19/0x1b [<ffffffff8108f50f>] warn_slowpath_common+0x7f/0xc0 [<ffffffff8108f56a>] warn_slowpath_null+0x1a/0x20 [<ffffffff8234a071>] init_workqueues+0x35/0x505 ... v2: CPU number added to the generic debug info as requested by s390 folks and dropped the s390 specific dump_stack(). This loses %ksp from the debug message which the maintainers think isn't important enough to keep the s390-specific dump_stack() implementation. dump_stack_print_info() is moved to kernel/printk.c from lib/dump_stack.c. Because linkage is per objecct file, dump_stack_print_info() living in the same lib file as generic dump_stack() means that archs which implement custom dump_stack() - at this point, only blackfin - can't use dump_stack_print_info() as that will bring in the generic version of dump_stack() too. v1 The v1 patch broke build on blackfin due to this issue. The build breakage was reported by Fengguang Wu. Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Vineet Gupta <vgupta@synopsys.com> Acked-by: Jesper Nilsson <jesper.nilsson@axis.com> Acked-by: Vineet Gupta <vgupta@synopsys.com> Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com> [s390 bits] Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Mike Frysinger <vapier@gentoo.org> Cc: Fengguang Wu <fengguang.wu@intel.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Sam Ravnborg <sam@ravnborg.org> Acked-by: Richard Kuo <rkuo@codeaurora.org> [hexagon bits] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
248 lines
6.5 KiB
C
248 lines
6.5 KiB
C
/*
|
|
* stacktrace.c : stacktracing APIs needed by rest of kernel
|
|
* (wrappers over ARC dwarf based unwinder)
|
|
*
|
|
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* vineetg: aug 2009
|
|
* -Implemented CONFIG_STACKTRACE APIs, primarily save_stack_trace_tsk( )
|
|
* for displaying task's kernel mode call stack in /proc/<pid>/stack
|
|
* -Iterator based approach to have single copy of unwinding core and APIs
|
|
* needing unwinding, implement the logic in iterator regarding:
|
|
* = which frame onwards to start capture
|
|
* = which frame to stop capturing (wchan)
|
|
* = specifics of data structs where trace is saved(CONFIG_STACKTRACE etc)
|
|
*
|
|
* vineetg: March 2009
|
|
* -Implemented correct versions of thread_saved_pc() and get_wchan()
|
|
*
|
|
* rajeshwarr: 2008
|
|
* -Initial implementation
|
|
*/
|
|
|
|
#include <linux/ptrace.h>
|
|
#include <linux/export.h>
|
|
#include <linux/stacktrace.h>
|
|
#include <linux/kallsyms.h>
|
|
#include <asm/arcregs.h>
|
|
#include <asm/unwind.h>
|
|
#include <asm/switch_to.h>
|
|
|
|
/*-------------------------------------------------------------------------
|
|
* Unwinder Iterator
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifdef CONFIG_ARC_DW2_UNWIND
|
|
|
|
static void seed_unwind_frame_info(struct task_struct *tsk,
|
|
struct pt_regs *regs,
|
|
struct unwind_frame_info *frame_info)
|
|
{
|
|
if (tsk == NULL && regs == NULL) {
|
|
unsigned long fp, sp, blink, ret;
|
|
frame_info->task = current;
|
|
|
|
__asm__ __volatile__(
|
|
"mov %0,r27\n\t"
|
|
"mov %1,r28\n\t"
|
|
"mov %2,r31\n\t"
|
|
"mov %3,r63\n\t"
|
|
: "=r"(fp), "=r"(sp), "=r"(blink), "=r"(ret)
|
|
);
|
|
|
|
frame_info->regs.r27 = fp;
|
|
frame_info->regs.r28 = sp;
|
|
frame_info->regs.r31 = blink;
|
|
frame_info->regs.r63 = ret;
|
|
frame_info->call_frame = 0;
|
|
} else if (regs == NULL) {
|
|
|
|
frame_info->task = tsk;
|
|
|
|
frame_info->regs.r27 = KSTK_FP(tsk);
|
|
frame_info->regs.r28 = KSTK_ESP(tsk);
|
|
frame_info->regs.r31 = KSTK_BLINK(tsk);
|
|
frame_info->regs.r63 = (unsigned int)__switch_to;
|
|
|
|
/* In the prologue of __switch_to, first FP is saved on stack
|
|
* and then SP is copied to FP. Dwarf assumes cfa as FP based
|
|
* but we didn't save FP. The value retrieved above is FP's
|
|
* state in previous frame.
|
|
* As a work around for this, we unwind from __switch_to start
|
|
* and adjust SP accordingly. The other limitation is that
|
|
* __switch_to macro is dwarf rules are not generated for inline
|
|
* assembly code
|
|
*/
|
|
frame_info->regs.r27 = 0;
|
|
frame_info->regs.r28 += 64;
|
|
frame_info->call_frame = 0;
|
|
|
|
} else {
|
|
frame_info->task = tsk;
|
|
|
|
frame_info->regs.r27 = regs->fp;
|
|
frame_info->regs.r28 = regs->sp;
|
|
frame_info->regs.r31 = regs->blink;
|
|
frame_info->regs.r63 = regs->ret;
|
|
frame_info->call_frame = 0;
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
static noinline unsigned int
|
|
arc_unwind_core(struct task_struct *tsk, struct pt_regs *regs,
|
|
int (*consumer_fn) (unsigned int, void *), void *arg)
|
|
{
|
|
#ifdef CONFIG_ARC_DW2_UNWIND
|
|
int ret = 0;
|
|
unsigned int address;
|
|
struct unwind_frame_info frame_info;
|
|
|
|
seed_unwind_frame_info(tsk, regs, &frame_info);
|
|
|
|
while (1) {
|
|
address = UNW_PC(&frame_info);
|
|
|
|
if (address && __kernel_text_address(address)) {
|
|
if (consumer_fn(address, arg) == -1)
|
|
break;
|
|
}
|
|
|
|
ret = arc_unwind(&frame_info);
|
|
|
|
if (ret == 0) {
|
|
frame_info.regs.r63 = frame_info.regs.r31;
|
|
continue;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return address; /* return the last address it saw */
|
|
#else
|
|
/* On ARC, only Dward based unwinder works. fp based backtracing is
|
|
* not possible (-fno-omit-frame-pointer) because of the way function
|
|
* prelogue is setup (callee regs saved and then fp set and not other
|
|
* way around
|
|
*/
|
|
pr_warn("CONFIG_ARC_DW2_UNWIND needs to be enabled\n");
|
|
return 0;
|
|
|
|
#endif
|
|
}
|
|
|
|
/*-------------------------------------------------------------------------
|
|
* callbacks called by unwinder iterator to implement kernel APIs
|
|
*
|
|
* The callback can return -1 to force the iterator to stop, which by default
|
|
* keeps going till the bottom-most frame.
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* Call-back which plugs into unwinding core to dump the stack in
|
|
* case of panic/OOPs/BUG etc
|
|
*/
|
|
static int __print_sym(unsigned int address, void *unused)
|
|
{
|
|
__print_symbol(" %s\n", address);
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_STACKTRACE
|
|
|
|
/* Call-back which plugs into unwinding core to capture the
|
|
* traces needed by kernel on /proc/<pid>/stack
|
|
*/
|
|
static int __collect_all(unsigned int address, void *arg)
|
|
{
|
|
struct stack_trace *trace = arg;
|
|
|
|
if (trace->skip > 0)
|
|
trace->skip--;
|
|
else
|
|
trace->entries[trace->nr_entries++] = address;
|
|
|
|
if (trace->nr_entries >= trace->max_entries)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int __collect_all_but_sched(unsigned int address, void *arg)
|
|
{
|
|
struct stack_trace *trace = arg;
|
|
|
|
if (in_sched_functions(address))
|
|
return 0;
|
|
|
|
if (trace->skip > 0)
|
|
trace->skip--;
|
|
else
|
|
trace->entries[trace->nr_entries++] = address;
|
|
|
|
if (trace->nr_entries >= trace->max_entries)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
static int __get_first_nonsched(unsigned int address, void *unused)
|
|
{
|
|
if (in_sched_functions(address))
|
|
return 0;
|
|
|
|
return -1;
|
|
}
|
|
|
|
/*-------------------------------------------------------------------------
|
|
* APIs expected by various kernel sub-systems
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
noinline void show_stacktrace(struct task_struct *tsk, struct pt_regs *regs)
|
|
{
|
|
pr_info("\nStack Trace:\n");
|
|
arc_unwind_core(tsk, regs, __print_sym, NULL);
|
|
}
|
|
EXPORT_SYMBOL(show_stacktrace);
|
|
|
|
/* Expected by sched Code */
|
|
void show_stack(struct task_struct *tsk, unsigned long *sp)
|
|
{
|
|
show_stacktrace(tsk, NULL);
|
|
}
|
|
|
|
/* Another API expected by schedular, shows up in "ps" as Wait Channel
|
|
* Ofcourse just returning schedule( ) would be pointless so unwind until
|
|
* the function is not in schedular code
|
|
*/
|
|
unsigned int get_wchan(struct task_struct *tsk)
|
|
{
|
|
return arc_unwind_core(tsk, NULL, __get_first_nonsched, NULL);
|
|
}
|
|
|
|
#ifdef CONFIG_STACKTRACE
|
|
|
|
/*
|
|
* API required by CONFIG_STACKTRACE, CONFIG_LATENCYTOP.
|
|
* A typical use is when /proc/<pid>/stack is queried by userland
|
|
*/
|
|
void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
|
|
{
|
|
arc_unwind_core(tsk, NULL, __collect_all_but_sched, trace);
|
|
}
|
|
|
|
void save_stack_trace(struct stack_trace *trace)
|
|
{
|
|
arc_unwind_core(current, NULL, __collect_all, trace);
|
|
}
|
|
#endif
|