blob: 9a1c78769a33c371f0648e6dc6edb330c5880744 [file] [log] [blame]
Don Zickus58687ac2010-05-07 17:11:44 -04001/*
2 * Detect hard and soft lockups on a system
3 *
4 * started by Don Zickus, Copyright (C) 2010 Red Hat, Inc.
5 *
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -05006 * Note: Most of this code is borrowed heavily from the original softlockup
7 * detector, so thanks to Ingo for the initial implementation.
8 * Some chunks also taken from the old x86-specific nmi watchdog code, thanks
Don Zickus58687ac2010-05-07 17:11:44 -04009 * to those contributors as well.
10 */
11
Andrew Morton45019802012-03-23 15:01:55 -070012#define pr_fmt(fmt) "NMI watchdog: " fmt
13
Don Zickus58687ac2010-05-07 17:11:44 -040014#include <linux/mm.h>
15#include <linux/cpu.h>
16#include <linux/nmi.h>
17#include <linux/init.h>
Don Zickus58687ac2010-05-07 17:11:44 -040018#include <linux/module.h>
19#include <linux/sysctl.h>
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000020#include <linux/smpboot.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060021#include <linux/sched/rt.h>
Don Zickus58687ac2010-05-07 17:11:44 -040022
23#include <asm/irq_regs.h>
Eric B Munson5d1c0f42012-03-10 14:37:28 -050024#include <linux/kvm_para.h>
Don Zickus58687ac2010-05-07 17:11:44 -040025#include <linux/perf_event.h>
26
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070027/*
28 * The run state of the lockup detectors is controlled by the content of the
29 * 'watchdog_enabled' variable. Each lockup detector has its dedicated bit -
30 * bit 0 for the hard lockup detector and bit 1 for the soft lockup detector.
31 *
32 * 'watchdog_user_enabled', 'nmi_watchdog_enabled' and 'soft_watchdog_enabled'
33 * are variables that are only used as an 'interface' between the parameters
34 * in /proc/sys/kernel and the internal state bits in 'watchdog_enabled'. The
35 * 'watchdog_thresh' variable is handled differently because its value is not
36 * boolean, and the lockup detectors are 'suspended' while 'watchdog_thresh'
37 * is equal zero.
38 */
39#define NMI_WATCHDOG_ENABLED_BIT 0
40#define SOFT_WATCHDOG_ENABLED_BIT 1
41#define NMI_WATCHDOG_ENABLED (1 << NMI_WATCHDOG_ENABLED_BIT)
42#define SOFT_WATCHDOG_ENABLED (1 << SOFT_WATCHDOG_ENABLED_BIT)
43
44#ifdef CONFIG_HARDLOCKUP_DETECTOR
45static unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED|NMI_WATCHDOG_ENABLED;
46#else
47static unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED;
48#endif
49int __read_mostly nmi_watchdog_enabled;
50int __read_mostly soft_watchdog_enabled;
51int __read_mostly watchdog_user_enabled;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070052int __read_mostly watchdog_thresh = 10;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070053
Aaron Tomlined235872014-06-23 13:22:05 -070054#ifdef CONFIG_SMP
55int __read_mostly sysctl_softlockup_all_cpu_backtrace;
56#else
57#define sysctl_softlockup_all_cpu_backtrace 0
58#endif
59
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020060static int __read_mostly watchdog_running;
Chuansheng Liu0f34c402012-12-17 15:59:50 -080061static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -040062
63static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
64static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
65static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
66static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -040067static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000068static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
69static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
chai wenb1a8de12014-10-09 15:25:17 -070070static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved);
Frederic Weisbecker23637d42010-05-15 23:15:20 +020071#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickuscafcd802010-05-14 11:11:21 -040072static DEFINE_PER_CPU(bool, hard_watchdog_warn);
73static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
Don Zickus58687ac2010-05-07 17:11:44 -040074static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
75static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
76#endif
Aaron Tomlined235872014-06-23 13:22:05 -070077static unsigned long soft_lockup_nmi_warn;
Don Zickus58687ac2010-05-07 17:11:44 -040078
Don Zickus58687ac2010-05-07 17:11:44 -040079/* boot commands */
80/*
81 * Should we panic when a soft-lockup or hard-lockup occurs:
82 */
Frederic Weisbecker23637d42010-05-15 23:15:20 +020083#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusfef2c9b2011-03-22 16:34:16 -070084static int hardlockup_panic =
85 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
Don Zickus58687ac2010-05-07 17:11:44 -040086
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -070087static bool hardlockup_detector_enabled = true;
88/*
89 * We may not want to enable hard lockup detection by default in all cases,
90 * for example when running the kernel as a guest on a hypervisor. In these
91 * cases this function can be called to disable hard lockup detection. This
92 * function should only be executed once by the boot processor before the
93 * kernel command line parameters are parsed, because otherwise it is not
94 * possible to override this in hardlockup_panic_setup().
95 */
96void watchdog_enable_hardlockup_detector(bool val)
97{
98 hardlockup_detector_enabled = val;
99}
100
101bool watchdog_hardlockup_detector_is_enabled(void)
102{
103 return hardlockup_detector_enabled;
104}
105
Don Zickus58687ac2010-05-07 17:11:44 -0400106static int __init hardlockup_panic_setup(char *str)
107{
108 if (!strncmp(str, "panic", 5))
109 hardlockup_panic = 1;
Don Zickusfef2c9b2011-03-22 16:34:16 -0700110 else if (!strncmp(str, "nopanic", 7))
111 hardlockup_panic = 0;
Don Zickus5dc30552010-11-29 17:07:17 -0500112 else if (!strncmp(str, "0", 1))
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200113 watchdog_user_enabled = 0;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700114 else if (!strncmp(str, "1", 1) || !strncmp(str, "2", 1)) {
115 /*
116 * Setting 'nmi_watchdog=1' or 'nmi_watchdog=2' (legacy option)
117 * has the same effect.
118 */
119 watchdog_user_enabled = 1;
120 watchdog_enable_hardlockup_detector(true);
121 }
Don Zickus58687ac2010-05-07 17:11:44 -0400122 return 1;
123}
124__setup("nmi_watchdog=", hardlockup_panic_setup);
125#endif
126
127unsigned int __read_mostly softlockup_panic =
128 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
129
130static int __init softlockup_panic_setup(char *str)
131{
132 softlockup_panic = simple_strtoul(str, NULL, 0);
133
134 return 1;
135}
136__setup("softlockup_panic=", softlockup_panic_setup);
137
138static int __init nowatchdog_setup(char *str)
139{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200140 watchdog_user_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400141 return 1;
142}
143__setup("nowatchdog", nowatchdog_setup);
144
145/* deprecated */
146static int __init nosoftlockup_setup(char *str)
147{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200148 watchdog_user_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400149 return 1;
150}
151__setup("nosoftlockup", nosoftlockup_setup);
152/* */
Aaron Tomlined235872014-06-23 13:22:05 -0700153#ifdef CONFIG_SMP
154static int __init softlockup_all_cpu_backtrace_setup(char *str)
155{
156 sysctl_softlockup_all_cpu_backtrace =
157 !!simple_strtol(str, NULL, 0);
158 return 1;
159}
160__setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup);
161#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400162
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700163/*
164 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
165 * lockups can have false positives under extreme conditions. So we generally
166 * want a higher threshold for soft lockups than for hard lockups. So we couple
167 * the thresholds with a factor: we make the soft threshold twice the amount of
168 * time the hard threshold is.
169 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200170static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700171{
172 return watchdog_thresh * 2;
173}
Don Zickus58687ac2010-05-07 17:11:44 -0400174
175/*
176 * Returns seconds, approximately. We don't need nanosecond
177 * resolution, and we don't need to waste time with a big divide when
178 * 2^30ns == 1.074s.
179 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900180static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400181{
Cyril Bur545a2bf2015-02-12 15:01:24 -0800182 return running_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400183}
184
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800185static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400186{
187 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700188 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500189 * the divide by 5 is to give hrtimer several chances (two
190 * or three with the current relation between the soft
191 * and hard thresholds) to increment before the
192 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400193 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800194 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400195}
196
197/* Commands for resetting the watchdog */
198static void __touch_watchdog(void)
199{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900200 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400201}
202
Don Zickus332fbdb2010-05-07 17:11:45 -0400203void touch_softlockup_watchdog(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400204{
Andrew Morton78611442014-04-18 15:07:12 -0700205 /*
206 * Preemption can be enabled. It doesn't matter which CPU's timestamp
207 * gets zeroed here, so use the raw_ operation.
208 */
209 raw_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400210}
Ingo Molnar0167c782010-05-13 08:53:33 +0200211EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400212
Don Zickus332fbdb2010-05-07 17:11:45 -0400213void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400214{
215 int cpu;
216
217 /*
218 * this is done lockless
219 * do we care if a 0 races with a timestamp?
220 * all it means is the softlock check starts one cycle later
221 */
222 for_each_online_cpu(cpu)
223 per_cpu(watchdog_touch_ts, cpu) = 0;
224}
225
Don Zickuscafcd802010-05-14 11:11:21 -0400226#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400227void touch_nmi_watchdog(void)
228{
Ben Zhang62572e22014-04-03 14:47:18 -0700229 /*
230 * Using __raw here because some code paths have
231 * preemption enabled. If preemption is enabled
232 * then interrupts should be enabled too, in which
233 * case we shouldn't have to worry about the watchdog
234 * going off.
235 */
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500236 raw_cpu_write(watchdog_nmi_touch, true);
Don Zickus332fbdb2010-05-07 17:11:45 -0400237 touch_softlockup_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400238}
239EXPORT_SYMBOL(touch_nmi_watchdog);
240
Don Zickuscafcd802010-05-14 11:11:21 -0400241#endif
242
Don Zickus58687ac2010-05-07 17:11:44 -0400243void touch_softlockup_watchdog_sync(void)
244{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500245 __this_cpu_write(softlockup_touch_sync, true);
246 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400247}
248
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200249#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400250/* watchdog detector functions */
Don Zickus26e09c62010-05-17 18:06:04 -0400251static int is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400252{
Christoph Lameter909ea962010-12-08 16:22:55 +0100253 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400254
Christoph Lameter909ea962010-12-08 16:22:55 +0100255 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Don Zickus58687ac2010-05-07 17:11:44 -0400256 return 1;
257
Christoph Lameter909ea962010-12-08 16:22:55 +0100258 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Don Zickus58687ac2010-05-07 17:11:44 -0400259 return 0;
260}
261#endif
262
Don Zickus26e09c62010-05-17 18:06:04 -0400263static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400264{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900265 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400266
267 /* Warn about unreasonable delays: */
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700268 if (time_after(now, touch_ts + get_softlockup_thresh()))
Don Zickus58687ac2010-05-07 17:11:44 -0400269 return now - touch_ts;
270
271 return 0;
272}
273
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200274#ifdef CONFIG_HARDLOCKUP_DETECTOR
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400275
Don Zickus58687ac2010-05-07 17:11:44 -0400276static struct perf_event_attr wd_hw_attr = {
277 .type = PERF_TYPE_HARDWARE,
278 .config = PERF_COUNT_HW_CPU_CYCLES,
279 .size = sizeof(struct perf_event_attr),
280 .pinned = 1,
281 .disabled = 1,
282};
283
284/* Callback function for perf event subsystem */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200285static void watchdog_overflow_callback(struct perf_event *event,
Don Zickus58687ac2010-05-07 17:11:44 -0400286 struct perf_sample_data *data,
287 struct pt_regs *regs)
288{
Peter Zijlstrac6db67c2010-08-20 11:49:15 +0200289 /* Ensure the watchdog never gets throttled */
290 event->hw.interrupts = 0;
291
Christoph Lameter909ea962010-12-08 16:22:55 +0100292 if (__this_cpu_read(watchdog_nmi_touch) == true) {
293 __this_cpu_write(watchdog_nmi_touch, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400294 return;
295 }
296
297 /* check for a hardlockup
298 * This is done by making sure our timer interrupt
299 * is incrementing. The timer interrupt should have
300 * fired multiple times before we overflow'd. If it hasn't
301 * then this is a good indication the cpu is stuck
302 */
Don Zickus26e09c62010-05-17 18:06:04 -0400303 if (is_hardlockup()) {
304 int this_cpu = smp_processor_id();
305
Don Zickus58687ac2010-05-07 17:11:44 -0400306 /* only print hardlockups once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100307 if (__this_cpu_read(hard_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400308 return;
309
310 if (hardlockup_panic)
Fabian Frederick656c3b72014-08-06 16:04:03 -0700311 panic("Watchdog detected hard LOCKUP on cpu %d",
312 this_cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400313 else
Fabian Frederick656c3b72014-08-06 16:04:03 -0700314 WARN(1, "Watchdog detected hard LOCKUP on cpu %d",
315 this_cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400316
Christoph Lameter909ea962010-12-08 16:22:55 +0100317 __this_cpu_write(hard_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400318 return;
319 }
320
Christoph Lameter909ea962010-12-08 16:22:55 +0100321 __this_cpu_write(hard_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400322 return;
323}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000324#endif /* CONFIG_HARDLOCKUP_DETECTOR */
325
Don Zickus58687ac2010-05-07 17:11:44 -0400326static void watchdog_interrupt_count(void)
327{
Christoph Lameter909ea962010-12-08 16:22:55 +0100328 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400329}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000330
331static int watchdog_nmi_enable(unsigned int cpu);
332static void watchdog_nmi_disable(unsigned int cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400333
334/* watchdog kicker functions */
335static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
336{
Christoph Lameter909ea962010-12-08 16:22:55 +0100337 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400338 struct pt_regs *regs = get_irq_regs();
339 int duration;
Aaron Tomlined235872014-06-23 13:22:05 -0700340 int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
Don Zickus58687ac2010-05-07 17:11:44 -0400341
342 /* kick the hardlockup detector */
343 watchdog_interrupt_count();
344
345 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100346 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400347
348 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800349 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400350
351 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100352 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400353 /*
354 * If the time stamp was touched atomically
355 * make sure the scheduler tick is up to date.
356 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100357 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400358 sched_clock_tick();
359 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500360
361 /* Clear the guest paused flag on watchdog reset */
362 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400363 __touch_watchdog();
364 return HRTIMER_RESTART;
365 }
366
367 /* check for a softlockup
368 * This is done by making sure a high priority task is
369 * being scheduled. The task touches the watchdog to
370 * indicate it is getting cpu time. If it hasn't then
371 * this is a good indication some task is hogging the cpu
372 */
Don Zickus26e09c62010-05-17 18:06:04 -0400373 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400374 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500375 /*
376 * If a virtual machine is stopped by the host it can look to
377 * the watchdog like a soft lockup, check to see if the host
378 * stopped the vm before we issue the warning
379 */
380 if (kvm_check_and_clear_guest_paused())
381 return HRTIMER_RESTART;
382
Don Zickus58687ac2010-05-07 17:11:44 -0400383 /* only warn once */
chai wenb1a8de12014-10-09 15:25:17 -0700384 if (__this_cpu_read(soft_watchdog_warn) == true) {
385 /*
386 * When multiple processes are causing softlockups the
387 * softlockup detector only warns on the first one
388 * because the code relies on a full quiet cycle to
389 * re-arm. The second process prevents the quiet cycle
390 * and never gets reported. Use task pointers to detect
391 * this.
392 */
393 if (__this_cpu_read(softlockup_task_ptr_saved) !=
394 current) {
395 __this_cpu_write(soft_watchdog_warn, false);
396 __touch_watchdog();
397 }
Don Zickus58687ac2010-05-07 17:11:44 -0400398 return HRTIMER_RESTART;
chai wenb1a8de12014-10-09 15:25:17 -0700399 }
Don Zickus58687ac2010-05-07 17:11:44 -0400400
Aaron Tomlined235872014-06-23 13:22:05 -0700401 if (softlockup_all_cpu_backtrace) {
402 /* Prevent multiple soft-lockup reports if one cpu is already
403 * engaged in dumping cpu back traces
404 */
405 if (test_and_set_bit(0, &soft_lockup_nmi_warn)) {
406 /* Someone else will report us. Let's give up */
407 __this_cpu_write(soft_watchdog_warn, true);
408 return HRTIMER_RESTART;
409 }
410 }
411
Fabian Frederick656c3b72014-08-06 16:04:03 -0700412 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400413 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400414 current->comm, task_pid_nr(current));
chai wenb1a8de12014-10-09 15:25:17 -0700415 __this_cpu_write(softlockup_task_ptr_saved, current);
Don Zickus58687ac2010-05-07 17:11:44 -0400416 print_modules();
417 print_irqtrace_events(current);
418 if (regs)
419 show_regs(regs);
420 else
421 dump_stack();
422
Aaron Tomlined235872014-06-23 13:22:05 -0700423 if (softlockup_all_cpu_backtrace) {
424 /* Avoid generating two back traces for current
425 * given that one is already made above
426 */
427 trigger_allbutself_cpu_backtrace();
428
429 clear_bit(0, &soft_lockup_nmi_warn);
430 /* Barrier to sync with other cpus */
431 smp_mb__after_atomic();
432 }
433
Josh Hunt69361ee2014-08-08 14:22:31 -0700434 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
Don Zickus58687ac2010-05-07 17:11:44 -0400435 if (softlockup_panic)
436 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100437 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400438 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100439 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400440
441 return HRTIMER_RESTART;
442}
443
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000444static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400445{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000446 struct sched_param param = { .sched_priority = prio };
447
448 sched_setscheduler(current, policy, &param);
449}
450
451static void watchdog_enable(unsigned int cpu)
452{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500453 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400454
Bjørn Mork3935e8952012-12-19 20:51:31 +0100455 /* kick off the timer for the hardlockup detector */
456 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
457 hrtimer->function = watchdog_timer_fn;
458
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000459 /* Enable the perf event */
460 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400461
Don Zickus58687ac2010-05-07 17:11:44 -0400462 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800463 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400464 HRTIMER_MODE_REL_PINNED);
465
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000466 /* initialize timestamp */
467 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
468 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400469}
470
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000471static void watchdog_disable(unsigned int cpu)
472{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500473 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000474
475 watchdog_set_prio(SCHED_NORMAL, 0);
476 hrtimer_cancel(hrtimer);
477 /* disable the perf event */
478 watchdog_nmi_disable(cpu);
479}
480
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200481static void watchdog_cleanup(unsigned int cpu, bool online)
482{
483 watchdog_disable(cpu);
484}
485
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000486static int watchdog_should_run(unsigned int cpu)
487{
488 return __this_cpu_read(hrtimer_interrupts) !=
489 __this_cpu_read(soft_lockup_hrtimer_cnt);
490}
491
492/*
493 * The watchdog thread function - touches the timestamp.
494 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800495 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000496 * default) to reset the softlockup timestamp. If this gets delayed
497 * for more than 2*watchdog_thresh seconds then the debug-printout
498 * triggers in watchdog_timer_fn().
499 */
500static void watchdog(unsigned int cpu)
501{
502 __this_cpu_write(soft_lockup_hrtimer_cnt,
503 __this_cpu_read(hrtimer_interrupts));
504 __touch_watchdog();
505}
Don Zickus58687ac2010-05-07 17:11:44 -0400506
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200507#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusa7027042012-06-13 09:35:48 -0400508/*
509 * People like the simple clean cpu node info on boot.
510 * Reduce the watchdog noise by only printing messages
511 * that are different from what cpu0 displayed.
512 */
513static unsigned long cpu0_err;
514
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000515static int watchdog_nmi_enable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400516{
517 struct perf_event_attr *wd_attr;
518 struct perf_event *event = per_cpu(watchdog_ev, cpu);
519
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700520 /*
521 * Some kernels need to default hard lockup detection to
522 * 'disabled', for example a guest on a hypervisor.
523 */
524 if (!watchdog_hardlockup_detector_is_enabled()) {
525 event = ERR_PTR(-ENOENT);
526 goto handle_err;
527 }
528
Don Zickus58687ac2010-05-07 17:11:44 -0400529 /* is it already setup and enabled? */
530 if (event && event->state > PERF_EVENT_STATE_OFF)
531 goto out;
532
533 /* it is setup but not enabled */
534 if (event != NULL)
535 goto out_enable;
536
Don Zickus58687ac2010-05-07 17:11:44 -0400537 wd_attr = &wd_hw_attr;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700538 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400539
540 /* Try to register using hardware perf events */
Avi Kivity4dc0da82011-06-29 18:42:35 +0300541 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
Don Zickusa7027042012-06-13 09:35:48 -0400542
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700543handle_err:
Don Zickusa7027042012-06-13 09:35:48 -0400544 /* save cpu0 error for future comparision */
545 if (cpu == 0 && IS_ERR(event))
546 cpu0_err = PTR_ERR(event);
547
Don Zickus58687ac2010-05-07 17:11:44 -0400548 if (!IS_ERR(event)) {
Don Zickusa7027042012-06-13 09:35:48 -0400549 /* only print for cpu0 or different than cpu0 */
550 if (cpu == 0 || cpu0_err)
551 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
Don Zickus58687ac2010-05-07 17:11:44 -0400552 goto out_save;
553 }
554
Don Zickusa7027042012-06-13 09:35:48 -0400555 /* skip displaying the same error again */
556 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
557 return PTR_ERR(event);
Don Zickus5651f7f2011-02-09 14:02:33 -0500558
559 /* vary the KERN level based on the returned errno */
560 if (PTR_ERR(event) == -EOPNOTSUPP)
Andrew Morton45019802012-03-23 15:01:55 -0700561 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500562 else if (PTR_ERR(event) == -ENOENT)
Fabian Frederick656c3b72014-08-06 16:04:03 -0700563 pr_warn("disabled (cpu%i): hardware events not enabled\n",
Andrew Morton45019802012-03-23 15:01:55 -0700564 cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500565 else
Andrew Morton45019802012-03-23 15:01:55 -0700566 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
567 cpu, PTR_ERR(event));
Akinobu Mitaeac24332010-08-31 23:00:08 -0400568 return PTR_ERR(event);
Don Zickus58687ac2010-05-07 17:11:44 -0400569
570 /* success path */
571out_save:
572 per_cpu(watchdog_ev, cpu) = event;
573out_enable:
574 perf_event_enable(per_cpu(watchdog_ev, cpu));
575out:
576 return 0;
577}
578
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000579static void watchdog_nmi_disable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400580{
581 struct perf_event *event = per_cpu(watchdog_ev, cpu);
582
583 if (event) {
584 perf_event_disable(event);
585 per_cpu(watchdog_ev, cpu) = NULL;
586
587 /* should be in cleanup, but blocks oprofile */
588 perf_event_release_kernel(event);
589 }
Ulrich Obergfelldf577142014-08-11 10:49:25 -0400590 if (cpu == 0) {
591 /* watchdog_nmi_enable() expects this to be zero initially. */
592 cpu0_err = 0;
593 }
Don Zickus58687ac2010-05-07 17:11:44 -0400594}
595#else
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000596static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
597static void watchdog_nmi_disable(unsigned int cpu) { return; }
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200598#endif /* CONFIG_HARDLOCKUP_DETECTOR */
Don Zickus58687ac2010-05-07 17:11:44 -0400599
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200600static struct smp_hotplug_thread watchdog_threads = {
601 .store = &softlockup_watchdog,
602 .thread_should_run = watchdog_should_run,
603 .thread_fn = watchdog,
604 .thread_comm = "watchdog/%u",
605 .setup = watchdog_enable,
606 .cleanup = watchdog_cleanup,
607 .park = watchdog_disable,
608 .unpark = watchdog_enable,
609};
610
Michal Hocko9809b182013-09-24 15:27:30 -0700611static void restart_watchdog_hrtimer(void *info)
612{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500613 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Michal Hocko9809b182013-09-24 15:27:30 -0700614 int ret;
615
616 /*
617 * No need to cancel and restart hrtimer if it is currently executing
618 * because it will reprogram itself with the new period now.
619 * We should never see it unqueued here because we are running per-cpu
620 * with interrupts disabled.
621 */
622 ret = hrtimer_try_to_cancel(hrtimer);
623 if (ret == 1)
624 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
625 HRTIMER_MODE_REL_PINNED);
626}
627
628static void update_timers(int cpu)
629{
Michal Hocko9809b182013-09-24 15:27:30 -0700630 /*
631 * Make sure that perf event counter will adopt to a new
632 * sampling period. Updating the sampling period directly would
633 * be much nicer but we do not have an API for that now so
634 * let's use a big hammer.
635 * Hrtimer will adopt the new period on the next tick but this
636 * might be late already so we have to restart the timer as well.
637 */
638 watchdog_nmi_disable(cpu);
Frederic Weisbeckere0a23b062014-02-24 16:40:00 +0100639 smp_call_function_single(cpu, restart_watchdog_hrtimer, NULL, 1);
Michal Hocko9809b182013-09-24 15:27:30 -0700640 watchdog_nmi_enable(cpu);
641}
642
643static void update_timers_all_cpus(void)
644{
645 int cpu;
646
647 get_online_cpus();
Michal Hocko9809b182013-09-24 15:27:30 -0700648 for_each_online_cpu(cpu)
649 update_timers(cpu);
Michal Hocko9809b182013-09-24 15:27:30 -0700650 put_online_cpus();
651}
652
653static int watchdog_enable_all_cpus(bool sample_period_changed)
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200654{
655 int err = 0;
656
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200657 if (!watchdog_running) {
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200658 err = smpboot_register_percpu_thread(&watchdog_threads);
659 if (err)
660 pr_err("Failed to create watchdog threads, disabled\n");
661 else
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200662 watchdog_running = 1;
Michal Hocko9809b182013-09-24 15:27:30 -0700663 } else if (sample_period_changed) {
664 update_timers_all_cpus();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200665 }
666
667 return err;
668}
669
Don Zickus58687ac2010-05-07 17:11:44 -0400670/* prepare/enable/disable routines */
Vasily Averin4ff81952011-10-31 17:11:18 -0700671/* sysctl functions */
672#ifdef CONFIG_SYSCTL
Don Zickus58687ac2010-05-07 17:11:44 -0400673static void watchdog_disable_all_cpus(void)
674{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200675 if (watchdog_running) {
676 watchdog_running = 0;
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200677 smpboot_unregister_percpu_thread(&watchdog_threads);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000678 }
Don Zickus58687ac2010-05-07 17:11:44 -0400679}
680
Don Zickus58687ac2010-05-07 17:11:44 -0400681/*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700682 * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh
Don Zickus58687ac2010-05-07 17:11:44 -0400683 */
684
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700685int proc_dowatchdog(struct ctl_table *table, int write,
686 void __user *buffer, size_t *lenp, loff_t *ppos)
Don Zickus58687ac2010-05-07 17:11:44 -0400687{
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200688 int err, old_thresh, old_enabled;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700689 bool old_hardlockup;
Michal Hocko359e6fa2013-09-24 15:27:29 -0700690 static DEFINE_MUTEX(watchdog_proc_mutex);
Don Zickus58687ac2010-05-07 17:11:44 -0400691
Michal Hocko359e6fa2013-09-24 15:27:29 -0700692 mutex_lock(&watchdog_proc_mutex);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200693 old_thresh = ACCESS_ONCE(watchdog_thresh);
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200694 old_enabled = ACCESS_ONCE(watchdog_user_enabled);
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700695 old_hardlockup = watchdog_hardlockup_detector_is_enabled();
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000696
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200697 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
698 if (err || !write)
Michal Hocko359e6fa2013-09-24 15:27:29 -0700699 goto out;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700700
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800701 set_sample_period();
anish kumarb66a2352013-03-12 14:44:08 -0400702 /*
703 * Watchdog threads shouldn't be enabled if they are
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200704 * disabled. The 'watchdog_running' variable check in
anish kumarb66a2352013-03-12 14:44:08 -0400705 * watchdog_*_all_cpus() function takes care of this.
706 */
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700707 if (watchdog_user_enabled && watchdog_thresh) {
708 /*
709 * Prevent a change in watchdog_thresh accidentally overriding
710 * the enablement of the hardlockup detector.
711 */
712 if (watchdog_user_enabled != old_enabled)
713 watchdog_enable_hardlockup_detector(true);
Michal Hocko9809b182013-09-24 15:27:30 -0700714 err = watchdog_enable_all_cpus(old_thresh != watchdog_thresh);
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700715 } else
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700716 watchdog_disable_all_cpus();
717
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200718 /* Restore old values on failure */
719 if (err) {
720 watchdog_thresh = old_thresh;
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200721 watchdog_user_enabled = old_enabled;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700722 watchdog_enable_hardlockup_detector(old_hardlockup);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200723 }
Michal Hocko359e6fa2013-09-24 15:27:29 -0700724out:
725 mutex_unlock(&watchdog_proc_mutex);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200726 return err;
Don Zickus58687ac2010-05-07 17:11:44 -0400727}
Don Zickus58687ac2010-05-07 17:11:44 -0400728#endif /* CONFIG_SYSCTL */
729
Peter Zijlstra004417a2010-11-25 18:38:29 +0100730void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400731{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800732 set_sample_period();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200733
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200734 if (watchdog_user_enabled)
Michal Hocko9809b182013-09-24 15:27:30 -0700735 watchdog_enable_all_cpus(false);
Don Zickus58687ac2010-05-07 17:11:44 -0400736}