diff options
Diffstat (limited to 'arch/x86/kernel/dumpstack_32.c')
| -rw-r--r-- | arch/x86/kernel/dumpstack_32.c | 89 | 
1 files changed, 56 insertions, 33 deletions
diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c index 1bc7f75a5bd..5abd4cd4230 100644 --- a/arch/x86/kernel/dumpstack_32.c +++ b/arch/x86/kernel/dumpstack_32.c @@ -16,12 +16,35 @@  #include <asm/stacktrace.h> +static void *is_irq_stack(void *p, void *irq) +{ +	if (p < irq || p >= (irq + THREAD_SIZE)) +		return NULL; +	return irq + THREAD_SIZE; +} + + +static void *is_hardirq_stack(unsigned long *stack, int cpu) +{ +	void *irq = per_cpu(hardirq_stack, cpu); + +	return is_irq_stack(stack, irq); +} + +static void *is_softirq_stack(unsigned long *stack, int cpu) +{ +	void *irq = per_cpu(softirq_stack, cpu); + +	return is_irq_stack(stack, irq); +}  void dump_trace(struct task_struct *task, struct pt_regs *regs,  		unsigned long *stack, unsigned long bp,  		const struct stacktrace_ops *ops, void *data)  { +	const unsigned cpu = get_cpu();  	int graph = 0; +	u32 *prev_esp;  	if (!task)  		task = current; @@ -30,36 +53,40 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,  		unsigned long dummy;  		stack = &dummy; -		if (task && task != current) +		if (task != current)  			stack = (unsigned long *)task->thread.sp;  	} -#ifdef CONFIG_FRAME_POINTER -	if (!bp) { -		if (task == current) { -			/* Grab bp right from our regs */ -			get_bp(bp); -		} else { -			/* bp is the last reg pushed by switch_to */ -			bp = *(unsigned long *) task->thread.sp; -		} -	} -#endif +	if (!bp) +		bp = stack_frame(task, regs);  	for (;;) {  		struct thread_info *context; +		void *end_stack; -		context = (struct thread_info *) -			((unsigned long)stack & (~(THREAD_SIZE - 1))); -		bp = ops->walk_stack(context, stack, bp, ops, data, NULL, &graph); +		end_stack = is_hardirq_stack(stack, cpu); +		if (!end_stack) +			end_stack = is_softirq_stack(stack, cpu); -		stack = (unsigned long *)context->previous_esp; +		context = task_thread_info(task); +		bp = ops->walk_stack(context, stack, bp, ops, data, +				     end_stack, &graph); + +		/* Stop if not on irq stack */ +		if (!end_stack) +			break; + +		/* The previous esp is saved on the bottom of the stack */ +		prev_esp = (u32 *)(end_stack - THREAD_SIZE); +		stack = (unsigned long *)*prev_esp;  		if (!stack)  			break; +  		if (ops->stack(data, "IRQ") < 0)  			break;  		touch_nmi_watchdog();  	} +	put_cpu();  }  EXPORT_SYMBOL(dump_trace); @@ -82,25 +109,22 @@ show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,  		if (kstack_end(stack))  			break;  		if (i && ((i % STACKSLOTS_PER_LINE) == 0)) -			printk(KERN_CONT "\n"); -		printk(KERN_CONT " %08lx", *stack++); +			pr_cont("\n"); +		pr_cont(" %08lx", *stack++);  		touch_nmi_watchdog();  	} -	printk(KERN_CONT "\n"); +	pr_cont("\n");  	show_trace_log_lvl(task, regs, sp, bp, log_lvl);  } -void show_registers(struct pt_regs *regs) +void show_regs(struct pt_regs *regs)  {  	int i; -	print_modules(); -	__show_regs(regs, 0); +	show_regs_print_info(KERN_EMERG); +	__show_regs(regs, !user_mode_vm(regs)); -	printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)\n", -		TASK_COMM_LEN, current->comm, task_pid_nr(current), -		current_thread_info(), current, task_thread_info(current));  	/*  	 * When in-kernel, we also print out the stack and code at the  	 * time of the fault.. @@ -111,11 +135,10 @@ void show_registers(struct pt_regs *regs)  		unsigned char c;  		u8 *ip; -		printk(KERN_EMERG "Stack:\n"); -		show_stack_log_lvl(NULL, regs, ®s->sp, -				0, KERN_EMERG); +		pr_emerg("Stack:\n"); +		show_stack_log_lvl(NULL, regs, ®s->sp, 0, KERN_EMERG); -		printk(KERN_EMERG "Code: "); +		pr_emerg("Code:");  		ip = (u8 *)regs->ip - code_prologue;  		if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) { @@ -126,16 +149,16 @@ void show_registers(struct pt_regs *regs)  		for (i = 0; i < code_len; i++, ip++) {  			if (ip < (u8 *)PAGE_OFFSET ||  					probe_kernel_address(ip, c)) { -				printk(" Bad EIP value."); +				pr_cont("  Bad EIP value.");  				break;  			}  			if (ip == (u8 *)regs->ip) -				printk("<%02x> ", c); +				pr_cont(" <%02x>", c);  			else -				printk("%02x ", c); +				pr_cont(" %02x", c);  		}  	} -	printk("\n"); +	pr_cont("\n");  }  int is_valid_bugaddr(unsigned long ip)  | 
