blob: 3174bf8e353852ae886743b8ffbe33e46fb03c02 [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
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020027int watchdog_user_enabled = 1;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070028int __read_mostly watchdog_thresh = 10;
Aaron Tomlined235872014-06-23 13:22:05 -070029#ifdef CONFIG_SMP
30int __read_mostly sysctl_softlockup_all_cpu_backtrace;
31#else
32#define sysctl_softlockup_all_cpu_backtrace 0
33#endif
34
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020035static int __read_mostly watchdog_running;
Chuansheng Liu0f34c402012-12-17 15:59:50 -080036static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -040037
38static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
39static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
40static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
41static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -040042static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000043static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
44static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
chai wenb1a8de12014-10-09 15:25:17 -070045static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved);
Frederic Weisbecker23637d42010-05-15 23:15:20 +020046#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickuscafcd802010-05-14 11:11:21 -040047static DEFINE_PER_CPU(bool, hard_watchdog_warn);
48static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
Don Zickus58687ac2010-05-07 17:11:44 -040049static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
50static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
51#endif
Aaron Tomlined235872014-06-23 13:22:05 -070052static unsigned long soft_lockup_nmi_warn;
Don Zickus58687ac2010-05-07 17:11:44 -040053
Don Zickus58687ac2010-05-07 17:11:44 -040054/* boot commands */
55/*
56 * Should we panic when a soft-lockup or hard-lockup occurs:
57 */
Frederic Weisbecker23637d42010-05-15 23:15:20 +020058#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusfef2c9b2011-03-22 16:34:16 -070059static int hardlockup_panic =
60 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
Don Zickus58687ac2010-05-07 17:11:44 -040061
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -070062static bool hardlockup_detector_enabled = true;
63/*
64 * We may not want to enable hard lockup detection by default in all cases,
65 * for example when running the kernel as a guest on a hypervisor. In these
66 * cases this function can be called to disable hard lockup detection. This
67 * function should only be executed once by the boot processor before the
68 * kernel command line parameters are parsed, because otherwise it is not
69 * possible to override this in hardlockup_panic_setup().
70 */
71void watchdog_enable_hardlockup_detector(bool val)
72{
73 hardlockup_detector_enabled = val;
74}
75
76bool watchdog_hardlockup_detector_is_enabled(void)
77{
78 return hardlockup_detector_enabled;
79}
80
Don Zickus58687ac2010-05-07 17:11:44 -040081static int __init hardlockup_panic_setup(char *str)
82{
83 if (!strncmp(str, "panic", 5))
84 hardlockup_panic = 1;
Don Zickusfef2c9b2011-03-22 16:34:16 -070085 else if (!strncmp(str, "nopanic", 7))
86 hardlockup_panic = 0;
Don Zickus5dc30552010-11-29 17:07:17 -050087 else if (!strncmp(str, "0", 1))
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020088 watchdog_user_enabled = 0;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -070089 else if (!strncmp(str, "1", 1) || !strncmp(str, "2", 1)) {
90 /*
91 * Setting 'nmi_watchdog=1' or 'nmi_watchdog=2' (legacy option)
92 * has the same effect.
93 */
94 watchdog_user_enabled = 1;
95 watchdog_enable_hardlockup_detector(true);
96 }
Don Zickus58687ac2010-05-07 17:11:44 -040097 return 1;
98}
99__setup("nmi_watchdog=", hardlockup_panic_setup);
100#endif
101
102unsigned int __read_mostly softlockup_panic =
103 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
104
105static int __init softlockup_panic_setup(char *str)
106{
107 softlockup_panic = simple_strtoul(str, NULL, 0);
108
109 return 1;
110}
111__setup("softlockup_panic=", softlockup_panic_setup);
112
113static int __init nowatchdog_setup(char *str)
114{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200115 watchdog_user_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400116 return 1;
117}
118__setup("nowatchdog", nowatchdog_setup);
119
120/* deprecated */
121static int __init nosoftlockup_setup(char *str)
122{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200123 watchdog_user_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400124 return 1;
125}
126__setup("nosoftlockup", nosoftlockup_setup);
127/* */
Aaron Tomlined235872014-06-23 13:22:05 -0700128#ifdef CONFIG_SMP
129static int __init softlockup_all_cpu_backtrace_setup(char *str)
130{
131 sysctl_softlockup_all_cpu_backtrace =
132 !!simple_strtol(str, NULL, 0);
133 return 1;
134}
135__setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup);
136#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400137
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700138/*
139 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
140 * lockups can have false positives under extreme conditions. So we generally
141 * want a higher threshold for soft lockups than for hard lockups. So we couple
142 * the thresholds with a factor: we make the soft threshold twice the amount of
143 * time the hard threshold is.
144 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200145static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700146{
147 return watchdog_thresh * 2;
148}
Don Zickus58687ac2010-05-07 17:11:44 -0400149
150/*
151 * Returns seconds, approximately. We don't need nanosecond
152 * resolution, and we don't need to waste time with a big divide when
153 * 2^30ns == 1.074s.
154 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900155static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400156{
Cyril Bur545a2bf2015-02-12 15:01:24 -0800157 return running_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400158}
159
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800160static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400161{
162 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700163 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500164 * the divide by 5 is to give hrtimer several chances (two
165 * or three with the current relation between the soft
166 * and hard thresholds) to increment before the
167 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400168 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800169 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400170}
171
172/* Commands for resetting the watchdog */
173static void __touch_watchdog(void)
174{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900175 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400176}
177
Don Zickus332fbdb2010-05-07 17:11:45 -0400178void touch_softlockup_watchdog(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400179{
Andrew Morton78611442014-04-18 15:07:12 -0700180 /*
181 * Preemption can be enabled. It doesn't matter which CPU's timestamp
182 * gets zeroed here, so use the raw_ operation.
183 */
184 raw_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400185}
Ingo Molnar0167c782010-05-13 08:53:33 +0200186EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400187
Don Zickus332fbdb2010-05-07 17:11:45 -0400188void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400189{
190 int cpu;
191
192 /*
193 * this is done lockless
194 * do we care if a 0 races with a timestamp?
195 * all it means is the softlock check starts one cycle later
196 */
197 for_each_online_cpu(cpu)
198 per_cpu(watchdog_touch_ts, cpu) = 0;
199}
200
Don Zickuscafcd802010-05-14 11:11:21 -0400201#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400202void touch_nmi_watchdog(void)
203{
Ben Zhang62572e22014-04-03 14:47:18 -0700204 /*
205 * Using __raw here because some code paths have
206 * preemption enabled. If preemption is enabled
207 * then interrupts should be enabled too, in which
208 * case we shouldn't have to worry about the watchdog
209 * going off.
210 */
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500211 raw_cpu_write(watchdog_nmi_touch, true);
Don Zickus332fbdb2010-05-07 17:11:45 -0400212 touch_softlockup_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400213}
214EXPORT_SYMBOL(touch_nmi_watchdog);
215
Don Zickuscafcd802010-05-14 11:11:21 -0400216#endif
217
Don Zickus58687ac2010-05-07 17:11:44 -0400218void touch_softlockup_watchdog_sync(void)
219{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500220 __this_cpu_write(softlockup_touch_sync, true);
221 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400222}
223
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200224#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400225/* watchdog detector functions */
Don Zickus26e09c62010-05-17 18:06:04 -0400226static int is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400227{
Christoph Lameter909ea962010-12-08 16:22:55 +0100228 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400229
Christoph Lameter909ea962010-12-08 16:22:55 +0100230 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Don Zickus58687ac2010-05-07 17:11:44 -0400231 return 1;
232
Christoph Lameter909ea962010-12-08 16:22:55 +0100233 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Don Zickus58687ac2010-05-07 17:11:44 -0400234 return 0;
235}
236#endif
237
Don Zickus26e09c62010-05-17 18:06:04 -0400238static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400239{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900240 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400241
242 /* Warn about unreasonable delays: */
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700243 if (time_after(now, touch_ts + get_softlockup_thresh()))
Don Zickus58687ac2010-05-07 17:11:44 -0400244 return now - touch_ts;
245
246 return 0;
247}
248
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200249#ifdef CONFIG_HARDLOCKUP_DETECTOR
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400250
Don Zickus58687ac2010-05-07 17:11:44 -0400251static struct perf_event_attr wd_hw_attr = {
252 .type = PERF_TYPE_HARDWARE,
253 .config = PERF_COUNT_HW_CPU_CYCLES,
254 .size = sizeof(struct perf_event_attr),
255 .pinned = 1,
256 .disabled = 1,
257};
258
259/* Callback function for perf event subsystem */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200260static void watchdog_overflow_callback(struct perf_event *event,
Don Zickus58687ac2010-05-07 17:11:44 -0400261 struct perf_sample_data *data,
262 struct pt_regs *regs)
263{
Peter Zijlstrac6db67c2010-08-20 11:49:15 +0200264 /* Ensure the watchdog never gets throttled */
265 event->hw.interrupts = 0;
266
Christoph Lameter909ea962010-12-08 16:22:55 +0100267 if (__this_cpu_read(watchdog_nmi_touch) == true) {
268 __this_cpu_write(watchdog_nmi_touch, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400269 return;
270 }
271
272 /* check for a hardlockup
273 * This is done by making sure our timer interrupt
274 * is incrementing. The timer interrupt should have
275 * fired multiple times before we overflow'd. If it hasn't
276 * then this is a good indication the cpu is stuck
277 */
Don Zickus26e09c62010-05-17 18:06:04 -0400278 if (is_hardlockup()) {
279 int this_cpu = smp_processor_id();
280
Don Zickus58687ac2010-05-07 17:11:44 -0400281 /* only print hardlockups once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100282 if (__this_cpu_read(hard_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400283 return;
284
285 if (hardlockup_panic)
Fabian Frederick656c3b72014-08-06 16:04:03 -0700286 panic("Watchdog detected hard LOCKUP on cpu %d",
287 this_cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400288 else
Fabian Frederick656c3b72014-08-06 16:04:03 -0700289 WARN(1, "Watchdog detected hard LOCKUP on cpu %d",
290 this_cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400291
Christoph Lameter909ea962010-12-08 16:22:55 +0100292 __this_cpu_write(hard_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400293 return;
294 }
295
Christoph Lameter909ea962010-12-08 16:22:55 +0100296 __this_cpu_write(hard_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400297 return;
298}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000299#endif /* CONFIG_HARDLOCKUP_DETECTOR */
300
Don Zickus58687ac2010-05-07 17:11:44 -0400301static void watchdog_interrupt_count(void)
302{
Christoph Lameter909ea962010-12-08 16:22:55 +0100303 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400304}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000305
306static int watchdog_nmi_enable(unsigned int cpu);
307static void watchdog_nmi_disable(unsigned int cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400308
309/* watchdog kicker functions */
310static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
311{
Christoph Lameter909ea962010-12-08 16:22:55 +0100312 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400313 struct pt_regs *regs = get_irq_regs();
314 int duration;
Aaron Tomlined235872014-06-23 13:22:05 -0700315 int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
Don Zickus58687ac2010-05-07 17:11:44 -0400316
317 /* kick the hardlockup detector */
318 watchdog_interrupt_count();
319
320 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100321 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400322
323 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800324 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400325
326 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100327 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400328 /*
329 * If the time stamp was touched atomically
330 * make sure the scheduler tick is up to date.
331 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100332 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400333 sched_clock_tick();
334 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500335
336 /* Clear the guest paused flag on watchdog reset */
337 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400338 __touch_watchdog();
339 return HRTIMER_RESTART;
340 }
341
342 /* check for a softlockup
343 * This is done by making sure a high priority task is
344 * being scheduled. The task touches the watchdog to
345 * indicate it is getting cpu time. If it hasn't then
346 * this is a good indication some task is hogging the cpu
347 */
Don Zickus26e09c62010-05-17 18:06:04 -0400348 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400349 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500350 /*
351 * If a virtual machine is stopped by the host it can look to
352 * the watchdog like a soft lockup, check to see if the host
353 * stopped the vm before we issue the warning
354 */
355 if (kvm_check_and_clear_guest_paused())
356 return HRTIMER_RESTART;
357
Don Zickus58687ac2010-05-07 17:11:44 -0400358 /* only warn once */
chai wenb1a8de12014-10-09 15:25:17 -0700359 if (__this_cpu_read(soft_watchdog_warn) == true) {
360 /*
361 * When multiple processes are causing softlockups the
362 * softlockup detector only warns on the first one
363 * because the code relies on a full quiet cycle to
364 * re-arm. The second process prevents the quiet cycle
365 * and never gets reported. Use task pointers to detect
366 * this.
367 */
368 if (__this_cpu_read(softlockup_task_ptr_saved) !=
369 current) {
370 __this_cpu_write(soft_watchdog_warn, false);
371 __touch_watchdog();
372 }
Don Zickus58687ac2010-05-07 17:11:44 -0400373 return HRTIMER_RESTART;
chai wenb1a8de12014-10-09 15:25:17 -0700374 }
Don Zickus58687ac2010-05-07 17:11:44 -0400375
Aaron Tomlined235872014-06-23 13:22:05 -0700376 if (softlockup_all_cpu_backtrace) {
377 /* Prevent multiple soft-lockup reports if one cpu is already
378 * engaged in dumping cpu back traces
379 */
380 if (test_and_set_bit(0, &soft_lockup_nmi_warn)) {
381 /* Someone else will report us. Let's give up */
382 __this_cpu_write(soft_watchdog_warn, true);
383 return HRTIMER_RESTART;
384 }
385 }
386
Fabian Frederick656c3b72014-08-06 16:04:03 -0700387 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400388 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400389 current->comm, task_pid_nr(current));
chai wenb1a8de12014-10-09 15:25:17 -0700390 __this_cpu_write(softlockup_task_ptr_saved, current);
Don Zickus58687ac2010-05-07 17:11:44 -0400391 print_modules();
392 print_irqtrace_events(current);
393 if (regs)
394 show_regs(regs);
395 else
396 dump_stack();
397
Aaron Tomlined235872014-06-23 13:22:05 -0700398 if (softlockup_all_cpu_backtrace) {
399 /* Avoid generating two back traces for current
400 * given that one is already made above
401 */
402 trigger_allbutself_cpu_backtrace();
403
404 clear_bit(0, &soft_lockup_nmi_warn);
405 /* Barrier to sync with other cpus */
406 smp_mb__after_atomic();
407 }
408
Josh Hunt69361ee2014-08-08 14:22:31 -0700409 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
Don Zickus58687ac2010-05-07 17:11:44 -0400410 if (softlockup_panic)
411 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100412 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400413 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100414 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400415
416 return HRTIMER_RESTART;
417}
418
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000419static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400420{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000421 struct sched_param param = { .sched_priority = prio };
422
423 sched_setscheduler(current, policy, &param);
424}
425
426static void watchdog_enable(unsigned int cpu)
427{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500428 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400429
Bjørn Mork3935e8952012-12-19 20:51:31 +0100430 /* kick off the timer for the hardlockup detector */
431 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
432 hrtimer->function = watchdog_timer_fn;
433
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000434 /* Enable the perf event */
435 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400436
Don Zickus58687ac2010-05-07 17:11:44 -0400437 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800438 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400439 HRTIMER_MODE_REL_PINNED);
440
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000441 /* initialize timestamp */
442 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
443 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400444}
445
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000446static void watchdog_disable(unsigned int cpu)
447{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500448 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000449
450 watchdog_set_prio(SCHED_NORMAL, 0);
451 hrtimer_cancel(hrtimer);
452 /* disable the perf event */
453 watchdog_nmi_disable(cpu);
454}
455
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200456static void watchdog_cleanup(unsigned int cpu, bool online)
457{
458 watchdog_disable(cpu);
459}
460
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000461static int watchdog_should_run(unsigned int cpu)
462{
463 return __this_cpu_read(hrtimer_interrupts) !=
464 __this_cpu_read(soft_lockup_hrtimer_cnt);
465}
466
467/*
468 * The watchdog thread function - touches the timestamp.
469 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800470 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000471 * default) to reset the softlockup timestamp. If this gets delayed
472 * for more than 2*watchdog_thresh seconds then the debug-printout
473 * triggers in watchdog_timer_fn().
474 */
475static void watchdog(unsigned int cpu)
476{
477 __this_cpu_write(soft_lockup_hrtimer_cnt,
478 __this_cpu_read(hrtimer_interrupts));
479 __touch_watchdog();
480}
Don Zickus58687ac2010-05-07 17:11:44 -0400481
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200482#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusa7027042012-06-13 09:35:48 -0400483/*
484 * People like the simple clean cpu node info on boot.
485 * Reduce the watchdog noise by only printing messages
486 * that are different from what cpu0 displayed.
487 */
488static unsigned long cpu0_err;
489
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000490static int watchdog_nmi_enable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400491{
492 struct perf_event_attr *wd_attr;
493 struct perf_event *event = per_cpu(watchdog_ev, cpu);
494
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700495 /*
496 * Some kernels need to default hard lockup detection to
497 * 'disabled', for example a guest on a hypervisor.
498 */
499 if (!watchdog_hardlockup_detector_is_enabled()) {
500 event = ERR_PTR(-ENOENT);
501 goto handle_err;
502 }
503
Don Zickus58687ac2010-05-07 17:11:44 -0400504 /* is it already setup and enabled? */
505 if (event && event->state > PERF_EVENT_STATE_OFF)
506 goto out;
507
508 /* it is setup but not enabled */
509 if (event != NULL)
510 goto out_enable;
511
Don Zickus58687ac2010-05-07 17:11:44 -0400512 wd_attr = &wd_hw_attr;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700513 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400514
515 /* Try to register using hardware perf events */
Avi Kivity4dc0da82011-06-29 18:42:35 +0300516 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
Don Zickusa7027042012-06-13 09:35:48 -0400517
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700518handle_err:
Don Zickusa7027042012-06-13 09:35:48 -0400519 /* save cpu0 error for future comparision */
520 if (cpu == 0 && IS_ERR(event))
521 cpu0_err = PTR_ERR(event);
522
Don Zickus58687ac2010-05-07 17:11:44 -0400523 if (!IS_ERR(event)) {
Don Zickusa7027042012-06-13 09:35:48 -0400524 /* only print for cpu0 or different than cpu0 */
525 if (cpu == 0 || cpu0_err)
526 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
Don Zickus58687ac2010-05-07 17:11:44 -0400527 goto out_save;
528 }
529
Don Zickusa7027042012-06-13 09:35:48 -0400530 /* skip displaying the same error again */
531 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
532 return PTR_ERR(event);
Don Zickus5651f7f2011-02-09 14:02:33 -0500533
534 /* vary the KERN level based on the returned errno */
535 if (PTR_ERR(event) == -EOPNOTSUPP)
Andrew Morton45019802012-03-23 15:01:55 -0700536 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500537 else if (PTR_ERR(event) == -ENOENT)
Fabian Frederick656c3b72014-08-06 16:04:03 -0700538 pr_warn("disabled (cpu%i): hardware events not enabled\n",
Andrew Morton45019802012-03-23 15:01:55 -0700539 cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500540 else
Andrew Morton45019802012-03-23 15:01:55 -0700541 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
542 cpu, PTR_ERR(event));
Akinobu Mitaeac24332010-08-31 23:00:08 -0400543 return PTR_ERR(event);
Don Zickus58687ac2010-05-07 17:11:44 -0400544
545 /* success path */
546out_save:
547 per_cpu(watchdog_ev, cpu) = event;
548out_enable:
549 perf_event_enable(per_cpu(watchdog_ev, cpu));
550out:
551 return 0;
552}
553
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000554static void watchdog_nmi_disable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400555{
556 struct perf_event *event = per_cpu(watchdog_ev, cpu);
557
558 if (event) {
559 perf_event_disable(event);
560 per_cpu(watchdog_ev, cpu) = NULL;
561
562 /* should be in cleanup, but blocks oprofile */
563 perf_event_release_kernel(event);
564 }
Ulrich Obergfelldf577142014-08-11 10:49:25 -0400565 if (cpu == 0) {
566 /* watchdog_nmi_enable() expects this to be zero initially. */
567 cpu0_err = 0;
568 }
Don Zickus58687ac2010-05-07 17:11:44 -0400569}
570#else
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000571static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
572static void watchdog_nmi_disable(unsigned int cpu) { return; }
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200573#endif /* CONFIG_HARDLOCKUP_DETECTOR */
Don Zickus58687ac2010-05-07 17:11:44 -0400574
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200575static struct smp_hotplug_thread watchdog_threads = {
576 .store = &softlockup_watchdog,
577 .thread_should_run = watchdog_should_run,
578 .thread_fn = watchdog,
579 .thread_comm = "watchdog/%u",
580 .setup = watchdog_enable,
581 .cleanup = watchdog_cleanup,
582 .park = watchdog_disable,
583 .unpark = watchdog_enable,
584};
585
Michal Hocko9809b182013-09-24 15:27:30 -0700586static void restart_watchdog_hrtimer(void *info)
587{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500588 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Michal Hocko9809b182013-09-24 15:27:30 -0700589 int ret;
590
591 /*
592 * No need to cancel and restart hrtimer if it is currently executing
593 * because it will reprogram itself with the new period now.
594 * We should never see it unqueued here because we are running per-cpu
595 * with interrupts disabled.
596 */
597 ret = hrtimer_try_to_cancel(hrtimer);
598 if (ret == 1)
599 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
600 HRTIMER_MODE_REL_PINNED);
601}
602
603static void update_timers(int cpu)
604{
Michal Hocko9809b182013-09-24 15:27:30 -0700605 /*
606 * Make sure that perf event counter will adopt to a new
607 * sampling period. Updating the sampling period directly would
608 * be much nicer but we do not have an API for that now so
609 * let's use a big hammer.
610 * Hrtimer will adopt the new period on the next tick but this
611 * might be late already so we have to restart the timer as well.
612 */
613 watchdog_nmi_disable(cpu);
Frederic Weisbeckere0a23b062014-02-24 16:40:00 +0100614 smp_call_function_single(cpu, restart_watchdog_hrtimer, NULL, 1);
Michal Hocko9809b182013-09-24 15:27:30 -0700615 watchdog_nmi_enable(cpu);
616}
617
618static void update_timers_all_cpus(void)
619{
620 int cpu;
621
622 get_online_cpus();
Michal Hocko9809b182013-09-24 15:27:30 -0700623 for_each_online_cpu(cpu)
624 update_timers(cpu);
Michal Hocko9809b182013-09-24 15:27:30 -0700625 put_online_cpus();
626}
627
628static int watchdog_enable_all_cpus(bool sample_period_changed)
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200629{
630 int err = 0;
631
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200632 if (!watchdog_running) {
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200633 err = smpboot_register_percpu_thread(&watchdog_threads);
634 if (err)
635 pr_err("Failed to create watchdog threads, disabled\n");
636 else
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200637 watchdog_running = 1;
Michal Hocko9809b182013-09-24 15:27:30 -0700638 } else if (sample_period_changed) {
639 update_timers_all_cpus();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200640 }
641
642 return err;
643}
644
Don Zickus58687ac2010-05-07 17:11:44 -0400645/* prepare/enable/disable routines */
Vasily Averin4ff81952011-10-31 17:11:18 -0700646/* sysctl functions */
647#ifdef CONFIG_SYSCTL
Don Zickus58687ac2010-05-07 17:11:44 -0400648static void watchdog_disable_all_cpus(void)
649{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200650 if (watchdog_running) {
651 watchdog_running = 0;
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200652 smpboot_unregister_percpu_thread(&watchdog_threads);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000653 }
Don Zickus58687ac2010-05-07 17:11:44 -0400654}
655
Don Zickus58687ac2010-05-07 17:11:44 -0400656/*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700657 * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh
Don Zickus58687ac2010-05-07 17:11:44 -0400658 */
659
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700660int proc_dowatchdog(struct ctl_table *table, int write,
661 void __user *buffer, size_t *lenp, loff_t *ppos)
Don Zickus58687ac2010-05-07 17:11:44 -0400662{
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200663 int err, old_thresh, old_enabled;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700664 bool old_hardlockup;
Michal Hocko359e6fa2013-09-24 15:27:29 -0700665 static DEFINE_MUTEX(watchdog_proc_mutex);
Don Zickus58687ac2010-05-07 17:11:44 -0400666
Michal Hocko359e6fa2013-09-24 15:27:29 -0700667 mutex_lock(&watchdog_proc_mutex);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200668 old_thresh = ACCESS_ONCE(watchdog_thresh);
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200669 old_enabled = ACCESS_ONCE(watchdog_user_enabled);
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700670 old_hardlockup = watchdog_hardlockup_detector_is_enabled();
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000671
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200672 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
673 if (err || !write)
Michal Hocko359e6fa2013-09-24 15:27:29 -0700674 goto out;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700675
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800676 set_sample_period();
anish kumarb66a2352013-03-12 14:44:08 -0400677 /*
678 * Watchdog threads shouldn't be enabled if they are
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200679 * disabled. The 'watchdog_running' variable check in
anish kumarb66a2352013-03-12 14:44:08 -0400680 * watchdog_*_all_cpus() function takes care of this.
681 */
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700682 if (watchdog_user_enabled && watchdog_thresh) {
683 /*
684 * Prevent a change in watchdog_thresh accidentally overriding
685 * the enablement of the hardlockup detector.
686 */
687 if (watchdog_user_enabled != old_enabled)
688 watchdog_enable_hardlockup_detector(true);
Michal Hocko9809b182013-09-24 15:27:30 -0700689 err = watchdog_enable_all_cpus(old_thresh != watchdog_thresh);
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700690 } else
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700691 watchdog_disable_all_cpus();
692
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200693 /* Restore old values on failure */
694 if (err) {
695 watchdog_thresh = old_thresh;
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200696 watchdog_user_enabled = old_enabled;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700697 watchdog_enable_hardlockup_detector(old_hardlockup);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200698 }
Michal Hocko359e6fa2013-09-24 15:27:29 -0700699out:
700 mutex_unlock(&watchdog_proc_mutex);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200701 return err;
Don Zickus58687ac2010-05-07 17:11:44 -0400702}
Don Zickus58687ac2010-05-07 17:11:44 -0400703#endif /* CONFIG_SYSCTL */
704
Peter Zijlstra004417a2010-11-25 18:38:29 +0100705void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400706{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800707 set_sample_period();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200708
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200709 if (watchdog_user_enabled)
Michal Hocko9809b182013-09-24 15:27:30 -0700710 watchdog_enable_all_cpus(false);
Don Zickus58687ac2010-05-07 17:11:44 -0400711}