Blame view

lib/nmi_backtrace.c 2.99 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
b2c0b2cbb   Russell King   nmi: create gener...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   *  NMI backtrace support
   *
   * Gratuitously copied from arch/x86/kernel/apic/hw_nmi.c by Russell King,
   * with the following header:
   *
   *  HW NMI watchdog support
   *
   *  started by Don Zickus, Copyright (C) 2010 Red Hat, Inc.
   *
   *  Arch specific calls to support NMI watchdog
   *
   *  Bits copied from original nmi.c file
   */
  #include <linux/cpumask.h>
  #include <linux/delay.h>
  #include <linux/kprobes.h>
  #include <linux/nmi.h>
6727ad9e2   Chris Metcalf   nmi_backtrace: ge...
20
  #include <linux/cpu.h>
b17b01533   Ingo Molnar   sched/headers: Pr...
21
  #include <linux/sched/debug.h>
b2c0b2cbb   Russell King   nmi: create gener...
22

9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
23
  #ifdef arch_trigger_cpumask_backtrace
b2c0b2cbb   Russell King   nmi: create gener...
24
25
  /* For reliability, we're prepared to waste bits here. */
  static DECLARE_BITMAP(backtrace_mask, NR_CPUS) __read_mostly;
b2c0b2cbb   Russell King   nmi: create gener...
26

9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
27
  /* "in progress" flag of arch_trigger_cpumask_backtrace */
b2c0b2cbb   Russell King   nmi: create gener...
28
  static unsigned long backtrace_flag;
0768330d4   Daniel Thompson   ARM: 8439/1: Fix ...
29
  /*
9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
30
   * When raise() is called it will be passed a pointer to the
0768330d4   Daniel Thompson   ARM: 8439/1: Fix ...
31
32
33
34
   * backtrace_mask. Architectures that call nmi_cpu_backtrace()
   * directly from their raise() functions may rely on the mask
   * they are passed being updated as a side effect of this call.
   */
9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
35
36
  void nmi_trigger_cpumask_backtrace(const cpumask_t *mask,
  				   bool exclude_self,
b2c0b2cbb   Russell King   nmi: create gener...
37
38
  				   void (*raise)(cpumask_t *mask))
  {
42a0bb3f7   Petr Mladek   printk/nmi: gener...
39
  	int i, this_cpu = get_cpu();
b2c0b2cbb   Russell King   nmi: create gener...
40
41
42
43
44
45
46
47
48
  
  	if (test_and_set_bit(0, &backtrace_flag)) {
  		/*
  		 * If there is already a trigger_all_cpu_backtrace() in progress
  		 * (backtrace_flag == 1), don't output double cpu dump infos.
  		 */
  		put_cpu();
  		return;
  	}
9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
49
50
  	cpumask_copy(to_cpumask(backtrace_mask), mask);
  	if (exclude_self)
b2c0b2cbb   Russell King   nmi: create gener...
51
  		cpumask_clear_cpu(this_cpu, to_cpumask(backtrace_mask));
677664895   Chris Metcalf   nmi_backtrace: do...
52
53
54
55
56
57
58
59
  	/*
  	 * Don't try to send an NMI to this cpu; it may work on some
  	 * architectures, but on others it may not, and we'll get
  	 * information at least as useful just by doing a dump_stack() here.
  	 * Note that nmi_cpu_backtrace(NULL) will clear the cpu bit.
  	 */
  	if (cpumask_test_cpu(this_cpu, to_cpumask(backtrace_mask)))
  		nmi_cpu_backtrace(NULL);
b2c0b2cbb   Russell King   nmi: create gener...
60
  	if (!cpumask_empty(to_cpumask(backtrace_mask))) {
9a01c3ed5   Chris Metcalf   nmi_backtrace: ad...
61
62
63
  		pr_info("Sending NMI from CPU %d to CPUs %*pbl:
  ",
  			this_cpu, nr_cpumask_bits, to_cpumask(backtrace_mask));
b2c0b2cbb   Russell King   nmi: create gener...
64
65
66
67
68
69
70
71
72
73
74
75
  		raise(to_cpumask(backtrace_mask));
  	}
  
  	/* Wait for up to 10 seconds for all CPUs to do the backtrace */
  	for (i = 0; i < 10 * 1000; i++) {
  		if (cpumask_empty(to_cpumask(backtrace_mask)))
  			break;
  		mdelay(1);
  		touch_softlockup_watchdog();
  	}
  
  	/*
42a0bb3f7   Petr Mladek   printk/nmi: gener...
76
77
  	 * Force flush any remote buffers that might be stuck in IRQ context
  	 * and therefore could not run their irq_work.
b2c0b2cbb   Russell King   nmi: create gener...
78
  	 */
f92bac3b1   Sergey Senozhatsky   printk: rename nm...
79
  	printk_safe_flush();
b2c0b2cbb   Russell King   nmi: create gener...
80

42a0bb3f7   Petr Mladek   printk/nmi: gener...
81
  	clear_bit_unlock(0, &backtrace_flag);
b2c0b2cbb   Russell King   nmi: create gener...
82
83
  	put_cpu();
  }
b2c0b2cbb   Russell King   nmi: create gener...
84
85
86
87
88
  bool nmi_cpu_backtrace(struct pt_regs *regs)
  {
  	int cpu = smp_processor_id();
  
  	if (cpumask_test_cpu(cpu, to_cpumask(backtrace_mask))) {
6727ad9e2   Chris Metcalf   nmi_backtrace: ge...
89
  		if (regs && cpu_in_idle(instruction_pointer(regs))) {
2f9b7e08c   Liu, Changcheng   lib/nmi_backtrace...
90
91
92
  			pr_warn("NMI backtrace for cpu %d skipped: idling at %pS
  ",
  				cpu, (void *)instruction_pointer(regs));
6727ad9e2   Chris Metcalf   nmi_backtrace: ge...
93
94
95
96
97
98
99
100
  		} else {
  			pr_warn("NMI backtrace for cpu %d
  ", cpu);
  			if (regs)
  				show_regs(regs);
  			else
  				dump_stack();
  		}
b2c0b2cbb   Russell King   nmi: create gener...
101
102
103
104
105
106
107
108
  		cpumask_clear_cpu(cpu, to_cpumask(backtrace_mask));
  		return true;
  	}
  
  	return false;
  }
  NOKPROBE_SYMBOL(nmi_cpu_backtrace);
  #endif